diff options
392 files changed, 17661 insertions, 25674 deletions
diff --git a/Mk/bsd.cmake.mk b/Mk/bsd.cmake.mk index 812642a27374..5fcd8cf2b617 100644 --- a/Mk/bsd.cmake.mk +++ b/Mk/bsd.cmake.mk @@ -10,6 +10,9 @@ # CMAKE_USE_PTHREAD - Instruct cmake to use pthreads when # compiling/linking # Default: not set +# CMAKE_BUILD_TYPE - Type of build (cmake predefined build types), +# affects on CFALGS and thus should not be set. +# Default: none (which respects CFLAGS) # CMAKE_VERBOSE - Verbose build # Default: not set # CMAKE_SOURCE_PATH - Path to sourcedir for cmake @@ -45,13 +48,14 @@ CMAKE_ARGS+= -DCMAKE_C_COMPILER:STRING="${CC}" \ -DCMAKE_C_FLAGS:STRING="${CFLAGS}" \ -DCMAKE_CXX_FLAGS:STRING="${CXXFLAGS}" \ -DCMAKE_INSTALL_PREFIX:PATH="${CMAKE_INSTALL_PREFIX}" \ - -DCMAKE_BUILD_TYPE:STRING="" + -DCMAKE_BUILD_TYPE:STRING="${CMAKE_BUILD_TYPE}" # # Default build type and sourcedir # CMAKE_SOURCE_PATH?= . CMAKE_INSTALL_PREFIX?= ${PREFIX} +CMAKE_BUILD_TYPE?= #none # # Instruct cmake to compile/link with pthreads diff --git a/Mk/bsd.kde4.mk b/Mk/bsd.kde4.mk index 12fc85149676..6a4c3ec2ba72 100644 --- a/Mk/bsd.kde4.mk +++ b/Mk/bsd.kde4.mk @@ -49,7 +49,8 @@ Kde_Include_MAINTAINER= kde@FreeBSD.org # but this could be changed in a future. # -KDE4_VERSION= 4.1.4 +KDE4_VERSION= 4.2.0 +KDE4_BRANCH?= stable # # KDE4 is installed into its own prefix to not conflict with KDE3 @@ -70,12 +71,12 @@ MASTER_SITE_KDE_kde= ${kmaster:S@%SUBDIR%/@${ksub}/@g} # # KDE4 modules # -_USE_KDE4_ALL= akonadi automoc4 kdebase kdehier kdelibs kdeprefix \ +_USE_KDE4_ALL= akonadi automoc4 kdebase kdehier kdelibs kdeprefix \ pimlibs runtime sharedmime workspace akonadi_LIB_DEPENDS= akonadiprotocolinternals.1:${PORTSDIR}/databases/akonadi -automoc4_BUILD_DEPENDS= ${KDE4_PREFIX}/bin/automoc4:${PORTSDIR}/devel/automoc4 +automoc4_BUILD_DEPENDS= ${LOCALBASE}/bin/automoc4:${PORTSDIR}/devel/automoc4 kdebase_LIB_DEPENDS= konq.7:${PORTSDIR}/x11/kdebase4 @@ -95,8 +96,45 @@ sharedmime_RUN_DEPENDS= kde4-shared-mime-info>=1:${PORTSDIR}/misc/kde4-shared-m workspace_LIB_DEPENDS= kscreensaver.5:${PORTSDIR}/x11/kdebase4-workspace +# +# 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 +# TODO: bsd.cmake.mk should be fixed first +# CMAKE_SOURCE_PATH= ${WRKSRC} +# CONFIGURE_WRKSRC?= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/build +# BUILD_WRKSRC?= ${CONFIGURE_WRKSRC} +# INSTALL_WRKSRC?= ${CONFIGURE_WRKSRC} + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/build +CMAKE_SOURCE_PATH= .. + +.endif # KDE4_BUILDENV + +.endif #!defined(_POSTMKINCLUDED) && !defined(Kde_Pre_Include) + .if defined(_POSTMKINCLUDED) && !defined(Kde_Post_Include) Kde_Post_Include= bsd.kde4.mk @@ -119,18 +157,4 @@ IGNORE= cannot install: Unknown component ${component} . endif .endfor -# -# Common build related stuff for kde4 ports. It's not intended for usage -# in KDE4-dependent ports -# -.if defined(KDE4_BUILDENV) -USE_CMAKE= yes - -USE_LDCONFIG= ${KDE4_PREFIX}/lib ${KDE4_PREFIX}/lib/kde4 - -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/build -CMAKE_SOURCE_PATH= .. - -.endif # KDE4_BUILDENV - -.endif +.endif #defined(_POSTMKINCLUDED) && !defined(Kde_Post_Include) diff --git a/Mk/bsd.qt.mk b/Mk/bsd.qt.mk index 9b55b13b9425..a4494200acf0 100644 --- a/Mk/bsd.qt.mk +++ b/Mk/bsd.qt.mk @@ -93,7 +93,7 @@ QT4_VERSION?= 4.4.3 _QT_COMPONENTS_ALL= accessible assistant assistant-adp assistantclient \ clucene codecs-cn codecs-jp codecs-kr codecs-tw corelib \ dbus designer doc help help-tools gui iconengines imageformats \ - inputmethods linguist makeqpf moc network opengl \ + inputmethods linguist l10n makeqpf moc network opengl \ pixeltool porting phonon phonon-gst qdbusviewer \ qmake qt3support qtconfig qtestlib qvfb rcc script \ sql svg uic uic3 webkit xml xmlpatterns xmlpatterns-tool @@ -119,6 +119,7 @@ iconengines_DEPENDS= graphics/qt4-iconengines imageformats_DEPENDS= graphics/qt4-imageformats inputmethods_DEPENDS= x11/qt4-inputmethods linguist_DEPENDS= devel/qt4-linguist +l10n_DEPENDS= misc/qt4-l10n makeqpf_DEPENDS= devel/qt4-makeqpf moc_DEPENDS= devel/qt4-moc network_DEPENDS= net/qt4-network @@ -165,6 +166,7 @@ iconengines_build_DEPENDS= ${iconengines_DEPENDS} imageformats_build_DEPENDS= ${imageformats_DEPENDS} inputmethods_build_DEPENDS= ${inputmethods_DEPENDS} linguist_build_DEPENDS= ${linguist_DEPENDS} +l10n_build_DEPENDS= ${l10n_DEPENDS} makeqpf_build_DEPENDS= ${makeqpf_DEPENDS} moc_build_DEPENDS= ${moc_DEPENDS} network_build_DEPENDS= ${network_DEPENDS} @@ -211,6 +213,7 @@ iconengines_run_DEPENDS= ${iconengines_DEPENDS} imageformats_run_DEPENDS= ${imageformats_DEPENDS} inputmethods_run_DEPENDS= ${inputmethods_DEPENDS} linguist_run_DEPENDS= ${linguist_DEPENDS} +l10n_run_DEPENDS= ${l10n_DEPENDS} makeqpf_run_DEPENDS= ${makeqpf_DEPENDS} moc_run_DEPENDS= ${moc_DEPENDS} network_run_DEPENDS= ${network_DEPENDS} @@ -262,9 +265,6 @@ RUN_DEPENDS+= ${${ext}_QT4_PREFIX}${${ext}_NAME}>=${${ext}_QT4_VERSION}:${PORTSD IGNORE= cannot install: unknown Qt4 component -- ${ext} .endif .endfor -.else -BUILD_DEPENDS+= qt4>=${QT4_VERSION}:${PORTSDIR}/devel/qt4 -RUN_DEPENDS+= qt4>=${QT4_VERSION}:${PORTSDIR}/devel/qt4 .endif .endif diff --git a/accessibility/kaccessible/Makefile b/accessibility/kaccessible/Makefile index a5b87bd375eb..e682fd7bc850 100644 --- a/accessibility/kaccessible/Makefile +++ b/accessibility/kaccessible/Makefile @@ -8,7 +8,7 @@ PORTNAME= kdeaccessibility PORTVERSION= ${KDE4_VERSION} CATEGORIES= accessibility kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org @@ -16,14 +16,19 @@ COMMENT= Accessibility applications for KDE4 LATEST_LINK= ${PORTNAME}4 -USE_KDE4= kdelibs workspace kdeprefix kdehier automoc4 -KDE4_BUILDENV= yes USE_BZIP2= yes +USE_KDE4= kdelibs kdeprefix kdehier automoc4 +KDE4_BUILDENV= yes USE_QT_VER= 4 QT_COMPONENTS= opengl gui qmake_build moc_build rcc_build uic_build +USE_LDCONFIG= yes CMAKE_ARGS+= -DKDE4_KTTSD_ALSA:BOOL=OFF +MAN1= kmag.1 \ + kmousetool.1 \ + kmouth.1 + post-extract: ${MKDIR} ${WRKSRC} diff --git a/accessibility/kaccessible/distinfo b/accessibility/kaccessible/distinfo index 3d3a2895c559..0c5d66145f60 100644 --- a/accessibility/kaccessible/distinfo +++ b/accessibility/kaccessible/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdeaccessibility-4.1.4.tar.bz2) = da6c157741d73eb1445cd60d9b78cd2e -SHA256 (KDE/kdeaccessibility-4.1.4.tar.bz2) = e85943f0f59fe2831c8618a2c2f9050e8d3fc0026f5b6e61eed5f96a04bf1bab -SIZE (KDE/kdeaccessibility-4.1.4.tar.bz2) = 6371585 +MD5 (KDE/kdeaccessibility-4.2.0.tar.bz2) = f32f24c4f07906b7af39ca18d47b5e27 +SHA256 (KDE/kdeaccessibility-4.2.0.tar.bz2) = 2ec7bab55ae0e41a616cdf10c81b6cf7a504442d01c631c7e268876dd959b434 +SIZE (KDE/kdeaccessibility-4.2.0.tar.bz2) = 6592084 diff --git a/accessibility/kaccessible/pkg-plist b/accessibility/kaccessible/pkg-plist index a7e8f9a69e99..20005d3b749f 100644 --- a/accessibility/kaccessible/pkg-plist +++ b/accessibility/kaccessible/pkg-plist @@ -18,7 +18,7 @@ lib/kde4/libkttsd_xmltransformerplugin.so lib/kde4/libkttsjobmgrpart.so lib/libkttsd.so lib/libkttsd.so.5 -lib/libkttsd.so.5.0.0 +lib/libkttsd.so.5.0.1 share/applications/kde4/kmag.desktop share/applications/kde4/kmousetool.desktop share/applications/kde4/kmouth.desktop @@ -204,7 +204,8 @@ share/icons/mono/scalable/actions/aocenterh.svgz share/icons/mono/scalable/actions/aocenterv.svgz share/icons/mono/scalable/actions/appearance.svgz share/icons/mono/scalable/actions/application-exit.svgz -share/icons/mono/scalable/actions/appointment.svgz +share/icons/mono/scalable/actions/appointment-new.svgz +share/icons/mono/scalable/actions/appointment-reminder.svgz share/icons/mono/scalable/actions/arc.svgz share/icons/mono/scalable/actions/arc_center.svgz share/icons/mono/scalable/actions/archive-extract.svgz @@ -252,6 +253,7 @@ share/icons/mono/scalable/actions/bold.svgz share/icons/mono/scalable/actions/bookmark-new-list.svgz share/icons/mono/scalable/actions/bookmark-new.svgz share/icons/mono/scalable/actions/bookmark-toolbar.svgz +share/icons/mono/scalable/actions/bookmarks-organize.svgz share/icons/mono/scalable/actions/border_all.svgz share/icons/mono/scalable/actions/border_bottom.svgz share/icons/mono/scalable/actions/border_fall.svgz @@ -321,6 +323,7 @@ share/icons/mono/scalable/actions/checkbox-widget.svgz share/icons/mono/scalable/actions/checkedbox.svgz share/icons/mono/scalable/actions/checkmark.svgz share/icons/mono/scalable/actions/chemical.svgz +share/icons/mono/scalable/actions/chronometer.svgz share/icons/mono/scalable/actions/circle.svgz share/icons/mono/scalable/actions/circlebcl.svgz share/icons/mono/scalable/actions/circlebcp.svgz @@ -365,9 +368,10 @@ share/icons/mono/scalable/actions/cpufreq_50.svgz share/icons/mono/scalable/actions/cpufreq_75.svgz share/icons/mono/scalable/actions/cpufreq_na.svgz share/icons/mono/scalable/actions/crop.svgz -share/icons/mono/scalable/actions/css.svgz +share/icons/mono/scalable/actions/cssvalidator.svgz share/icons/mono/scalable/actions/cubicbeziercurve.svgz share/icons/mono/scalable/actions/curvelineintersection.svgz +share/icons/mono/scalable/actions/dashboard-show.svgz share/icons/mono/scalable/actions/data-view.svgz share/icons/mono/scalable/actions/data.svgz share/icons/mono/scalable/actions/database-first-row.svgz @@ -396,6 +400,7 @@ share/icons/mono/scalable/actions/delslide.svgz share/icons/mono/scalable/actions/deriv_func.svgz share/icons/mono/scalable/actions/design-view.svgz share/icons/mono/scalable/actions/dialog-cancel.svgz +share/icons/mono/scalable/actions/dialog-close.svgz share/icons/mono/scalable/actions/dialog-ok-apply.svgz share/icons/mono/scalable/actions/dialog-ok.svgz share/icons/mono/scalable/actions/diff.svgz @@ -404,11 +409,15 @@ share/icons/mono/scalable/actions/dirsynch.svgz share/icons/mono/scalable/actions/dirsynch_new.svgz share/icons/mono/scalable/actions/dissociatecell.svgz share/icons/mono/scalable/actions/distance.svgz +share/icons/mono/scalable/actions/document-decrypt.svgz +share/icons/mono/scalable/actions/document-encrypt.svgz share/icons/mono/scalable/actions/document-export.svgz share/icons/mono/scalable/actions/document-import.svgz share/icons/mono/scalable/actions/document-new.svgz +share/icons/mono/scalable/actions/document-open-folder.svgz share/icons/mono/scalable/actions/document-open.svgz share/icons/mono/scalable/actions/document-preview-archive.svgz +share/icons/mono/scalable/actions/document-print-frame.svgz share/icons/mono/scalable/actions/document-print-preview.svgz share/icons/mono/scalable/actions/document-print.svgz share/icons/mono/scalable/actions/document-properties.svgz @@ -424,7 +433,9 @@ share/icons/mono/scalable/actions/draw-freehand.svgz share/icons/mono/scalable/actions/duringbreaks.svgz share/icons/mono/scalable/actions/dynamic.svgz share/icons/mono/scalable/actions/edit-add.svgz +share/icons/mono/scalable/actions/edit-bomb.svgz share/icons/mono/scalable/actions/edit-clear-history.svgz +share/icons/mono/scalable/actions/edit-clear-locationbar-ltr.svgz share/icons/mono/scalable/actions/edit-clear-locationbar-rtl.svgz share/icons/mono/scalable/actions/edit-clear-locationbar.svgz share/icons/mono/scalable/actions/edit-clear.svgz @@ -434,9 +445,12 @@ share/icons/mono/scalable/actions/edit-delete-mail.svgz share/icons/mono/scalable/actions/edit-delete-shred.svgz share/icons/mono/scalable/actions/edit-delete.svgz share/icons/mono/scalable/actions/edit-find.svgz +share/icons/mono/scalable/actions/edit-mail-find.svgz share/icons/mono/scalable/actions/edit-paste.svgz share/icons/mono/scalable/actions/edit-redo.svgz share/icons/mono/scalable/actions/edit-remove.svgz +share/icons/mono/scalable/actions/edit-rename.svgz +share/icons/mono/scalable/actions/edit-text.svgz share/icons/mono/scalable/actions/edit-trash.svgz share/icons/mono/scalable/actions/edit-undo.svgz share/icons/mono/scalable/actions/edit-user.svgz @@ -467,8 +481,8 @@ share/icons/mono/scalable/actions/fileblend.svgz share/icons/mono/scalable/actions/filereplace.svgz share/icons/mono/scalable/actions/filesimulate.svgz share/icons/mono/scalable/actions/filestop.svgz +share/icons/mono/scalable/actions/fill-color.svgz share/icons/mono/scalable/actions/fill.svgz -share/icons/mono/scalable/actions/fill_colour.svgz share/icons/mono/scalable/actions/filledcircle.svgz share/icons/mono/scalable/actions/filledellipse.svgz share/icons/mono/scalable/actions/filledrectangle.svgz @@ -483,19 +497,22 @@ share/icons/mono/scalable/actions/folder-open.svgz share/icons/mono/scalable/actions/folder.svgz share/icons/mono/scalable/actions/followmouse.svgz share/icons/mono/scalable/actions/fonts.svgz +share/icons/mono/scalable/actions/fork.svgz share/icons/mono/scalable/actions/form_edit.svgz share/icons/mono/scalable/actions/format-font-size-less.svgz share/icons/mono/scalable/actions/format-font-size-more.svgz share/icons/mono/scalable/actions/format-indent-less.svgz share/icons/mono/scalable/actions/format-indent-more.svgz -share/icons/mono/scalable/actions/format-justify-block.svgz share/icons/mono/scalable/actions/format-justify-bottom.svgz share/icons/mono/scalable/actions/format-justify-center.svgz +share/icons/mono/scalable/actions/format-justify-fill.svgz share/icons/mono/scalable/actions/format-justify-left.svgz share/icons/mono/scalable/actions/format-justify-right.svgz share/icons/mono/scalable/actions/format-justify-top.svgz share/icons/mono/scalable/actions/format-list-unordered.svgz share/icons/mono/scalable/actions/format-text-bold.svgz +share/icons/mono/scalable/actions/format-text-direction-ltr.svgz +share/icons/mono/scalable/actions/format-text-direction-rtl.svgz share/icons/mono/scalable/actions/format-text-italic.svgz share/icons/mono/scalable/actions/format-text-strikethrough.svgz share/icons/mono/scalable/actions/format-text-subscript.svgz @@ -552,6 +569,7 @@ share/icons/mono/scalable/actions/harmonichomology.svgz share/icons/mono/scalable/actions/hdd.svgz share/icons/mono/scalable/actions/help-about-kde.svgz share/icons/mono/scalable/actions/help-contextual.svgz +share/icons/mono/scalable/actions/help-hint.svgz share/icons/mono/scalable/actions/help.svgz share/icons/mono/scalable/actions/hexagonbcv.svgz share/icons/mono/scalable/actions/hibernate.svgz @@ -681,8 +699,18 @@ share/icons/mono/scalable/actions/kstars_stars.svgz share/icons/mono/scalable/actions/ksys1.svgz share/icons/mono/scalable/actions/ksys2.svgz share/icons/mono/scalable/actions/ksys3.svgz +share/icons/mono/scalable/actions/kt-check-data.svgz +share/icons/mono/scalable/actions/kt-chunks.svgz +share/icons/mono/scalable/actions/kt-info-widget.svgz +share/icons/mono/scalable/actions/kt-pause.svgz +share/icons/mono/scalable/actions/kt-plugins.svgz +share/icons/mono/scalable/actions/kt-queue-manager.svgz +share/icons/mono/scalable/actions/kt-remove.svgz +share/icons/mono/scalable/actions/kt-show-statusbar.svgz +share/icons/mono/scalable/actions/kt-start.svgz +share/icons/mono/scalable/actions/kt-stop-all.svgz +share/icons/mono/scalable/actions/kt-stop.svgz share/icons/mono/scalable/actions/ktinfowidget.svgz -share/icons/mono/scalable/actions/ktip.svgz share/icons/mono/scalable/actions/label-widget.svgz share/icons/mono/scalable/actions/lan.svgz share/icons/mono/scalable/actions/languages.svgz @@ -736,20 +764,22 @@ share/icons/mono/scalable/actions/lowerlayer.svgz share/icons/mono/scalable/actions/lsub.svgz share/icons/mono/scalable/actions/lsup.svgz share/icons/mono/scalable/actions/magnify.svgz -share/icons/mono/scalable/actions/mail-find.svgz share/icons/mono/scalable/actions/mail-flag.svgz share/icons/mono/scalable/actions/mail-forward.svgz -share/icons/mono/scalable/actions/mail-get.svgz +share/icons/mono/scalable/actions/mail-mark-important.svgz share/icons/mono/scalable/actions/mail-mark-junk.svgz share/icons/mono/scalable/actions/mail-mark-notjunk.svgz +share/icons/mono/scalable/actions/mail-mark-task.svgz +share/icons/mono/scalable/actions/mail-mark-unread.svgz share/icons/mono/scalable/actions/mail-message-new.svgz +share/icons/mono/scalable/actions/mail-queue.svgz +share/icons/mono/scalable/actions/mail-receive.svgz share/icons/mono/scalable/actions/mail-reply-all.svgz +share/icons/mono/scalable/actions/mail-reply-custom.svgz +share/icons/mono/scalable/actions/mail-reply-list.svgz share/icons/mono/scalable/actions/mail-reply-sender.svgz share/icons/mono/scalable/actions/mail-replylist.svgz share/icons/mono/scalable/actions/mail-send.svgz -share/icons/mono/scalable/actions/mail.svgz -share/icons/mono/scalable/actions/mail_post_to.svgz -share/icons/mono/scalable/actions/mail_todo.svgz share/icons/mono/scalable/actions/make.svgz share/icons/mono/scalable/actions/markasblank.svgz share/icons/mono/scalable/actions/math_abs.svgz @@ -912,9 +942,11 @@ share/icons/mono/scalable/actions/pgnum.svgz share/icons/mono/scalable/actions/pgp-keys.svgz share/icons/mono/scalable/actions/player-time.svgz share/icons/mono/scalable/actions/player-volume-down.svgz +share/icons/mono/scalable/actions/player-volume-muted.svgz share/icons/mono/scalable/actions/player-volume-up.svgz share/icons/mono/scalable/actions/player-volume.svgz share/icons/mono/scalable/actions/player_mute.svgz +share/icons/mono/scalable/actions/player_record.svgz share/icons/mono/scalable/actions/plot.svgz share/icons/mono/scalable/actions/podcast_new.svgz share/icons/mono/scalable/actions/point.svgz @@ -932,11 +964,13 @@ share/icons/mono/scalable/actions/precplus.svgz share/icons/mono/scalable/actions/preverror.svgz share/icons/mono/scalable/actions/prevfuzzy.svgz share/icons/mono/scalable/actions/prevfuzzyuntrans.svgz +share/icons/mono/scalable/actions/preview.svgz share/icons/mono/scalable/actions/previewprint.svgz share/icons/mono/scalable/actions/prevmarked.svgz share/icons/mono/scalable/actions/prevpo.svgz share/icons/mono/scalable/actions/prevtemplate.svgz share/icons/mono/scalable/actions/prevuntranslated.svgz +share/icons/mono/scalable/actions/process-stop.svgz share/icons/mono/scalable/actions/processor.svgz share/icons/mono/scalable/actions/prod.svgz share/icons/mono/scalable/actions/progress-bar-widget.svgz @@ -952,16 +986,17 @@ share/icons/mono/scalable/actions/quick_start.svgz share/icons/mono/scalable/actions/quiz.svgz share/icons/mono/scalable/actions/radicalline.svgz share/icons/mono/scalable/actions/radio-button-widget.svgz +share/icons/mono/scalable/actions/raindrop.svgz share/icons/mono/scalable/actions/raise.svgz share/icons/mono/scalable/actions/raiselayer.svgz share/icons/mono/scalable/actions/random.svgz +share/icons/mono/scalable/actions/rating.svgz share/icons/mono/scalable/actions/ray.svgz share/icons/mono/scalable/actions/rebuild.svgz share/icons/mono/scalable/actions/rectangle.svgz share/icons/mono/scalable/actions/recursive.svgz share/icons/mono/scalable/actions/redeyes.svgz share/icons/mono/scalable/actions/relation.svgz -share/icons/mono/scalable/actions/reload.svgz share/icons/mono/scalable/actions/remcol.svgz share/icons/mono/scalable/actions/removecell.svgz share/icons/mono/scalable/actions/removecomment.svgz @@ -1025,6 +1060,7 @@ share/icons/mono/scalable/actions/shadowRU.svgz share/icons/mono/scalable/actions/shadowU.svgz share/icons/mono/scalable/actions/share.svgz share/icons/mono/scalable/actions/shear.svgz +share/icons/mono/scalable/actions/show-menu.svgz share/icons/mono/scalable/actions/show_offliners.svgz share/icons/mono/scalable/actions/show_table_column.svgz share/icons/mono/scalable/actions/show_table_row.svgz @@ -1043,8 +1079,8 @@ share/icons/mono/scalable/actions/smallcal.svgz share/icons/mono/scalable/actions/smallthumbnails.svgz share/icons/mono/scalable/actions/smiley.svgz share/icons/mono/scalable/actions/solarizetool.svgz +share/icons/mono/scalable/actions/speaker.svgz share/icons/mono/scalable/actions/spectrum.svgz -share/icons/mono/scalable/actions/spellcheck.svgz share/icons/mono/scalable/actions/spellcheck_from_cursor.svgz share/icons/mono/scalable/actions/spellcheck_selected.svgz share/icons/mono/scalable/actions/spinbox-widget.svgz @@ -1071,10 +1107,16 @@ share/icons/mono/scalable/actions/suspend_to_disk.svgz share/icons/mono/scalable/actions/suspend_to_ram.svgz share/icons/mono/scalable/actions/syntax.svgz share/icons/mono/scalable/actions/system-lock-screen.svgz +share/icons/mono/scalable/actions/system-log-out.svgz +share/icons/mono/scalable/actions/system-restart.svgz share/icons/mono/scalable/actions/system-run.svgz share/icons/mono/scalable/actions/system-search.svgz +share/icons/mono/scalable/actions/system-shutdown.svgz +share/icons/mono/scalable/actions/system-suspend-hibernate.svgz +share/icons/mono/scalable/actions/system-suspend.svgz share/icons/mono/scalable/actions/system-switch-user.svgz share/icons/mono/scalable/actions/tab-breakoff.svgz +share/icons/mono/scalable/actions/tab-close.svgz share/icons/mono/scalable/actions/tab-duplicate.svgz share/icons/mono/scalable/actions/tab-new-background.svgz share/icons/mono/scalable/actions/tab-new.svgz @@ -1082,10 +1124,11 @@ share/icons/mono/scalable/actions/tab-widget.svgz share/icons/mono/scalable/actions/tab_first.svgz share/icons/mono/scalable/actions/tab_last.svgz share/icons/mono/scalable/actions/tab_left.svgz -share/icons/mono/scalable/actions/tab_remove.svgz share/icons/mono/scalable/actions/tab_right.svgz share/icons/mono/scalable/actions/tables.svgz share/icons/mono/scalable/actions/tangent.svgz +share/icons/mono/scalable/actions/task-new.svgz +share/icons/mono/scalable/actions/task-reminder.svgz share/icons/mono/scalable/actions/tea_not_ready.svgz share/icons/mono/scalable/actions/template_a4.svgz share/icons/mono/scalable/actions/template_balancesheet.svgz @@ -1179,7 +1222,10 @@ share/icons/mono/scalable/actions/tool_star.svgz share/icons/mono/scalable/actions/tool_text.svgz share/icons/mono/scalable/actions/tool_uselastdir.svgz share/icons/mono/scalable/actions/tool_wizard_selection.svgz +share/icons/mono/scalable/actions/tools-check-spelling.svgz share/icons/mono/scalable/actions/tools-media-optical-burn.svgz +share/icons/mono/scalable/actions/tools-report-bug.svgz +share/icons/mono/scalable/actions/tools-wizard.svgz share/icons/mono/scalable/actions/tooltip.svgz share/icons/mono/scalable/actions/transform-rotate.svgz share/icons/mono/scalable/actions/transform.svgz @@ -1209,17 +1255,25 @@ share/icons/mono/scalable/actions/vertical_text.svgz share/icons/mono/scalable/actions/view-calendar-day.svgz share/icons/mono/scalable/actions/view-calendar-list.svgz share/icons/mono/scalable/actions/view-calendar-month.svgz -share/icons/mono/scalable/actions/view-calendar-todo.svgz +share/icons/mono/scalable/actions/view-calendar-tasks.svgz share/icons/mono/scalable/actions/view-calendar-upcoming-days.svgz share/icons/mono/scalable/actions/view-calendar-upcoming-events.svgz share/icons/mono/scalable/actions/view-calendar-week.svgz share/icons/mono/scalable/actions/view-calendar-workweek.svgz share/icons/mono/scalable/actions/view-choose.svgz +share/icons/mono/scalable/actions/view-close.svgz +share/icons/mono/scalable/actions/view-columns.svgz +share/icons/mono/scalable/actions/view-file-columns.svgz share/icons/mono/scalable/actions/view-filter.svgz share/icons/mono/scalable/actions/view-fullscreen.svgz share/icons/mono/scalable/actions/view-history.svgz share/icons/mono/scalable/actions/view-icon.svgz share/icons/mono/scalable/actions/view-left-right.svgz +share/icons/mono/scalable/actions/view-list-details.svgz +share/icons/mono/scalable/actions/view-list-icons.svgz +share/icons/mono/scalable/actions/view-list-text.svgz +share/icons/mono/scalable/actions/view-list-tree.svgz +share/icons/mono/scalable/actions/view-media-artist.svgz share/icons/mono/scalable/actions/view-media-visualization.svgz share/icons/mono/scalable/actions/view-pim-calendar.svgz share/icons/mono/scalable/actions/view-pim-contacts.svgz @@ -1229,11 +1283,18 @@ share/icons/mono/scalable/actions/view-pim-news.svgz share/icons/mono/scalable/actions/view-pim-notes.svgz share/icons/mono/scalable/actions/view-pim-summary.svgz share/icons/mono/scalable/actions/view-pim-tasks.svgz +share/icons/mono/scalable/actions/view-presentation.svgz +share/icons/mono/scalable/actions/view-preview.svgz +share/icons/mono/scalable/actions/view-refresh.svgz share/icons/mono/scalable/actions/view-remove.svgz share/icons/mono/scalable/actions/view-restore.svgz +share/icons/mono/scalable/actions/view-right-close.svgz +share/icons/mono/scalable/actions/view-right-new.svgz share/icons/mono/scalable/actions/view-sidetree.svgz share/icons/mono/scalable/actions/view-sort-ascending.svgz share/icons/mono/scalable/actions/view-sort-descending.svgz +share/icons/mono/scalable/actions/view-split-left-right.svgz +share/icons/mono/scalable/actions/view-split-top-bottom.svgz share/icons/mono/scalable/actions/view-statistics.svgz share/icons/mono/scalable/actions/view-top-bottom.svgz share/icons/mono/scalable/actions/view-tree.svgz @@ -1249,8 +1310,6 @@ share/icons/mono/scalable/actions/view_right.svgz share/icons/mono/scalable/actions/view_ruler.svgz share/icons/mono/scalable/actions/view_split.svgz share/icons/mono/scalable/actions/view_text.svgz -share/icons/mono/scalable/actions/viewmag.svgz -share/icons/mono/scalable/actions/viewmag1.svgz share/icons/mono/scalable/actions/viewmag_bis+.svgz share/icons/mono/scalable/actions/viewmag_bis-.svgz share/icons/mono/scalable/actions/viewmag_enlarge.svgz @@ -1261,7 +1320,6 @@ share/icons/mono/scalable/actions/viewmag_lock.svgz share/icons/mono/scalable/actions/viewmag_no.svgz share/icons/mono/scalable/actions/viewmag_shrink.svgz share/icons/mono/scalable/actions/viewmag_w.svgz -share/icons/mono/scalable/actions/viewmagfit.svgz share/icons/mono/scalable/actions/voicecall.svgz share/icons/mono/scalable/actions/w.svgz share/icons/mono/scalable/actions/webarchiver.svgz @@ -1270,21 +1328,23 @@ share/icons/mono/scalable/actions/webcamsend.svgz share/icons/mono/scalable/actions/webexport.svgz share/icons/mono/scalable/actions/wiki.svgz share/icons/mono/scalable/actions/window-close.svgz +share/icons/mono/scalable/actions/window-duplicate.svgz share/icons/mono/scalable/actions/window-new.svgz share/icons/mono/scalable/actions/window-suppressed.svgz share/icons/mono/scalable/actions/window.svgz -share/icons/mono/scalable/actions/window_duplicate.svgz share/icons/mono/scalable/actions/wired.svgz share/icons/mono/scalable/actions/wireless.svgz -share/icons/mono/scalable/actions/wizard.svgz share/icons/mono/scalable/actions/yahoo_mobile.svgz +share/icons/mono/scalable/actions/zoom-best-fit.svgz share/icons/mono/scalable/actions/zoom-in.svgz +share/icons/mono/scalable/actions/zoom-original.svgz share/icons/mono/scalable/actions/zoom-out.svgz +share/icons/mono/scalable/actions/zoom.svgz share/icons/mono/scalable/actions/zoom_disabled.svgz share/icons/mono/scalable/actions/zoom_enabled.svgz +share/icons/mono/scalable/apps/VBox.svgz share/icons/mono/scalable/apps/abakus.svgz share/icons/mono/scalable/apps/abiword.svgz -share/icons/mono/scalable/apps/accessibility_section.svgz share/icons/mono/scalable/apps/accessories-calculator.svgz share/icons/mono/scalable/apps/accessories-character-map.svgz share/icons/mono/scalable/apps/accessories-dictionary.svgz @@ -1296,6 +1356,7 @@ share/icons/mono/scalable/apps/amarok.svgz share/icons/mono/scalable/apps/amor.svgz share/icons/mono/scalable/apps/antivirus.svgz share/icons/mono/scalable/apps/apollon.svgz +share/icons/mono/scalable/apps/arora.svgz share/icons/mono/scalable/apps/assistant.svgz share/icons/mono/scalable/apps/atlantik.svgz share/icons/mono/scalable/apps/audacity.svgz @@ -1305,8 +1366,6 @@ share/icons/mono/scalable/apps/blender.svgz share/icons/mono/scalable/apps/blinken.svgz share/icons/mono/scalable/apps/bluefish.svgz share/icons/mono/scalable/apps/bookcase.svgz -share/icons/mono/scalable/apps/browser.svgz -share/icons/mono/scalable/apps/bug.svgz share/icons/mono/scalable/apps/calc.svgz share/icons/mono/scalable/apps/catalogmanager.svgz share/icons/mono/scalable/apps/categories.svgz @@ -1322,6 +1381,7 @@ share/icons/mono/scalable/apps/displayconfig.svgz share/icons/mono/scalable/apps/dopewars-pill.svgz share/icons/mono/scalable/apps/download_manager.svgz share/icons/mono/scalable/apps/eclipse.svgz +share/icons/mono/scalable/apps/ekiga.svgz share/icons/mono/scalable/apps/emacs.svgz share/icons/mono/scalable/apps/email.svgz share/icons/mono/scalable/apps/energy_star.svgz @@ -1333,15 +1393,11 @@ share/icons/mono/scalable/apps/falconseye.svgz share/icons/mono/scalable/apps/fax.svgz share/icons/mono/scalable/apps/fifteenpieces.svgz share/icons/mono/scalable/apps/filelight.svgz -share/icons/mono/scalable/apps/fileshare.svgz -share/icons/mono/scalable/apps/filetypes.svgz share/icons/mono/scalable/apps/flashkard.svgz share/icons/mono/scalable/apps/fsview.svgz share/icons/mono/scalable/apps/gaim.svgz share/icons/mono/scalable/apps/gimp.svgz share/icons/mono/scalable/apps/gkrellm.svgz -share/icons/mono/scalable/apps/gnome.svgz -share/icons/mono/scalable/apps/gnomemeeting.svgz share/icons/mono/scalable/apps/gnucash.svgz share/icons/mono/scalable/apps/gnumeric.svgz share/icons/mono/scalable/apps/gnutella.svgz @@ -1353,10 +1409,10 @@ share/icons/mono/scalable/apps/gvim.svgz share/icons/mono/scalable/apps/gwenview.svgz share/icons/mono/scalable/apps/gxmame.svgz share/icons/mono/scalable/apps/hardware.svgz -share/icons/mono/scalable/apps/hardware_info.svgz share/icons/mono/scalable/apps/help-browser.svgz share/icons/mono/scalable/apps/highlight.svgz share/icons/mono/scalable/apps/hw_unknown.svgz +share/icons/mono/scalable/apps/hwinfo.svgz share/icons/mono/scalable/apps/icewm.svgz share/icons/mono/scalable/apps/ieee1394.svgz share/icons/mono/scalable/apps/im-aim.svgz @@ -1370,11 +1426,14 @@ share/icons/mono/scalable/apps/im-sms.svgz share/icons/mono/scalable/apps/im-yahoo.svgz share/icons/mono/scalable/apps/imagegallery.svgz share/icons/mono/scalable/apps/inkscape.svgz +share/icons/mono/scalable/apps/internet-web-browser.svgz share/icons/mono/scalable/apps/irkick.svgz share/icons/mono/scalable/apps/isp-disabled.svgz share/icons/mono/scalable/apps/juk.svgz share/icons/mono/scalable/apps/k3b.svgz share/icons/mono/scalable/apps/kaboodle.svgz +share/icons/mono/scalable/apps/kaddressbook.svgz +share/icons/mono/scalable/apps/kaffeine.svgz share/icons/mono/scalable/apps/kalarm.svgz share/icons/mono/scalable/apps/kalzium.svgz share/icons/mono/scalable/apps/kamix.svgz @@ -1389,7 +1448,6 @@ share/icons/mono/scalable/apps/kate.svgz share/icons/mono/scalable/apps/katomic.svgz share/icons/mono/scalable/apps/kaudiocreator.svgz share/icons/mono/scalable/apps/kazaa.svgz -share/icons/mono/scalable/apps/kbabel.svgz share/icons/mono/scalable/apps/kbackgammon.svgz share/icons/mono/scalable/apps/kbackgammon_engine.svgz share/icons/mono/scalable/apps/kbatterymonitor.svgz @@ -1423,7 +1481,6 @@ share/icons/mono/scalable/apps/kcolorchooser.svgz share/icons/mono/scalable/apps/kcoloredit.svgz share/icons/mono/scalable/apps/kconfigure.svgz share/icons/mono/scalable/apps/kcpuload.svgz -share/icons/mono/scalable/apps/kcron.svgz share/icons/mono/scalable/apps/kdat.svgz share/icons/mono/scalable/apps/kde.svgz share/icons/mono/scalable/apps/kdenlive.svgz @@ -1443,6 +1500,7 @@ share/icons/mono/scalable/apps/keurocalc.svgz share/icons/mono/scalable/apps/kexi.svgz share/icons/mono/scalable/apps/keyboard-shortcut.svgz share/icons/mono/scalable/apps/kfilereplace.svgz +share/icons/mono/scalable/apps/kfind.svgz share/icons/mono/scalable/apps/kflog.svgz share/icons/mono/scalable/apps/kfloppy.svgz share/icons/mono/scalable/apps/kformdesigner.svgz @@ -1493,7 +1551,6 @@ share/icons/mono/scalable/apps/kmerlin.svgz share/icons/mono/scalable/apps/kmidi.svgz share/icons/mono/scalable/apps/kmines.svgz share/icons/mono/scalable/apps/kmix.svgz -share/icons/mono/scalable/apps/kmixdocked_mute.svgz share/icons/mono/scalable/apps/kmldonkey.svgz share/icons/mono/scalable/apps/kmoon.svgz share/icons/mono/scalable/apps/kmousetool.svgz @@ -1508,6 +1565,7 @@ share/icons/mono/scalable/apps/knetwalk.svgz share/icons/mono/scalable/apps/knetworkmanager.svgz share/icons/mono/scalable/apps/knewsticker.svgz share/icons/mono/scalable/apps/knoda.svgz +share/icons/mono/scalable/apps/knode.svgz share/icons/mono/scalable/apps/knoppix-penguin.svgz share/icons/mono/scalable/apps/knotes.svgz share/icons/mono/scalable/apps/kodo.svgz @@ -1531,6 +1589,7 @@ share/icons/mono/scalable/apps/kopete_avdevice.svgz share/icons/mono/scalable/apps/kopete_offline.svgz share/icons/mono/scalable/apps/kopete_some_away.svgz share/icons/mono/scalable/apps/kopete_some_online.svgz +share/icons/mono/scalable/apps/korganizer.svgz share/icons/mono/scalable/apps/korn.svgz share/icons/mono/scalable/apps/kpager.svgz share/icons/mono/scalable/apps/kpaint.svgz @@ -1574,11 +1633,11 @@ share/icons/mono/scalable/apps/ksnake.svgz share/icons/mono/scalable/apps/ksnapshot.svgz share/icons/mono/scalable/apps/ksokoban.svgz share/icons/mono/scalable/apps/kspaceduel.svgz -share/icons/mono/scalable/apps/ksplash.svgz share/icons/mono/scalable/apps/kspread.svgz share/icons/mono/scalable/apps/kstars.svgz share/icons/mono/scalable/apps/kstreamripper.svgz share/icons/mono/scalable/apps/ksysguardd.svgz +share/icons/mono/scalable/apps/ksystemlog.svgz share/icons/mono/scalable/apps/ksysv.svgz share/icons/mono/scalable/apps/ktalkd.svgz share/icons/mono/scalable/apps/kteatime.svgz @@ -1603,13 +1662,11 @@ share/icons/mono/scalable/apps/kverbos.svgz share/icons/mono/scalable/apps/kview.svgz share/icons/mono/scalable/apps/kvim.svgz share/icons/mono/scalable/apps/kvirc.svgz -share/icons/mono/scalable/apps/kvoctrain.svgz -share/icons/mono/scalable/apps/kwallet.svgz +share/icons/mono/scalable/apps/kwalletmanager.svgz share/icons/mono/scalable/apps/kwave.svgz share/icons/mono/scalable/apps/kweather.svgz share/icons/mono/scalable/apps/kwifimanager.svgz share/icons/mono/scalable/apps/kwikdisk.svgz -share/icons/mono/scalable/apps/kwin4.svgz share/icons/mono/scalable/apps/kword.svgz share/icons/mono/scalable/apps/kwordquiz.svgz share/icons/mono/scalable/apps/kworldclock.svgz @@ -1617,12 +1674,15 @@ share/icons/mono/scalable/apps/kynaptic.svgz share/icons/mono/scalable/apps/kzenexplorer.svgz share/icons/mono/scalable/apps/laptop_battery.svgz share/icons/mono/scalable/apps/laptop_pcmcia.svgz +share/icons/mono/scalable/apps/lastfm.svgz share/icons/mono/scalable/apps/ldap_client.svgz share/icons/mono/scalable/apps/licq.svgz share/icons/mono/scalable/apps/limewire.svgz share/icons/mono/scalable/apps/linguist.svgz +share/icons/mono/scalable/apps/lokalize.svgz share/icons/mono/scalable/apps/lskat.svgz share/icons/mono/scalable/apps/mac.svgz +share/icons/mono/scalable/apps/mailody.svgz share/icons/mono/scalable/apps/mathematica.svgz share/icons/mono/scalable/apps/menubar.svgz share/icons/mono/scalable/apps/mozilla-firefox.svgz @@ -1638,49 +1698,63 @@ share/icons/mono/scalable/apps/nedit.svgz share/icons/mono/scalable/apps/netscape.svgz share/icons/mono/scalable/apps/network_advanced.svgz share/icons/mono/scalable/apps/nfs.svgz -share/icons/mono/scalable/apps/noatun.svgz share/icons/mono/scalable/apps/ntp-client.svgz share/icons/mono/scalable/apps/nvu.svgz +share/icons/mono/scalable/apps/nxclient-icon.svgz share/icons/mono/scalable/apps/office-addressbook.svgz share/icons/mono/scalable/apps/office-calendar.svgz -share/icons/mono/scalable/apps/ooo_calc.svgz +share/icons/mono/scalable/apps/ooo-calc.svgz +share/icons/mono/scalable/apps/ooo-draw.svgz +share/icons/mono/scalable/apps/ooo-impress.svgz +share/icons/mono/scalable/apps/ooo-math.svgz +share/icons/mono/scalable/apps/ooo-printeradmin.svgz +share/icons/mono/scalable/apps/ooo-template.svgz +share/icons/mono/scalable/apps/ooo-web.svgz +share/icons/mono/scalable/apps/ooo-writer.svgz share/icons/mono/scalable/apps/ooo_chart.svgz -share/icons/mono/scalable/apps/ooo_draw.svgz -share/icons/mono/scalable/apps/ooo_impress.svgz -share/icons/mono/scalable/apps/ooo_math.svgz -share/icons/mono/scalable/apps/ooo_printeradmin.svgz share/icons/mono/scalable/apps/ooo_setup.svgz -share/icons/mono/scalable/apps/ooo_template.svgz -share/icons/mono/scalable/apps/ooo_web.svgz -share/icons/mono/scalable/apps/ooo_writer.svgz share/icons/mono/scalable/apps/openft.svgz share/icons/mono/scalable/apps/openoffice.svgz share/icons/mono/scalable/apps/opera.svgz share/icons/mono/scalable/apps/palm-pilot.svgz share/icons/mono/scalable/apps/pan.svgz share/icons/mono/scalable/apps/panel_settings.svgz +share/icons/mono/scalable/apps/parley.svgz share/icons/mono/scalable/apps/password.svgz share/icons/mono/scalable/apps/pcmcia.svgz share/icons/mono/scalable/apps/photobook.svgz share/icons/mono/scalable/apps/potracegui.svgz +share/icons/mono/scalable/apps/preferences-desktop-accessibility.svgz share/icons/mono/scalable/apps/preferences-desktop-color.svgz +share/icons/mono/scalable/apps/preferences-desktop-display-randr.svgz +share/icons/mono/scalable/apps/preferences-desktop-display.svgz +share/icons/mono/scalable/apps/preferences-desktop-filetype-association.svgz share/icons/mono/scalable/apps/preferences-desktop-font.svgz +share/icons/mono/scalable/apps/preferences-desktop-gaming.svgz share/icons/mono/scalable/apps/preferences-desktop-icons.svgz +share/icons/mono/scalable/apps/preferences-desktop-keyboard.svgz share/icons/mono/scalable/apps/preferences-desktop-launch-feedback.svgz share/icons/mono/scalable/apps/preferences-desktop-locale.svgz +share/icons/mono/scalable/apps/preferences-desktop-mouse.svgz share/icons/mono/scalable/apps/preferences-desktop-notification.svgz share/icons/mono/scalable/apps/preferences-desktop-printer.svgz share/icons/mono/scalable/apps/preferences-desktop-screensaver.svgz share/icons/mono/scalable/apps/preferences-desktop-sound.svgz share/icons/mono/scalable/apps/preferences-desktop-text-to-speech.svgz +share/icons/mono/scalable/apps/preferences-desktop-theme-style.svgz share/icons/mono/scalable/apps/preferences-desktop-theme.svgz share/icons/mono/scalable/apps/preferences-desktop-user.svgz share/icons/mono/scalable/apps/preferences-desktop-wallpaper.svgz share/icons/mono/scalable/apps/preferences-system-bluetooth.svgz +share/icons/mono/scalable/apps/preferences-system-cron.svgz share/icons/mono/scalable/apps/preferences-system-login.svgz +share/icons/mono/scalable/apps/preferences-system-network-proxy.svgz +share/icons/mono/scalable/apps/preferences-system-network-sharing.svgz share/icons/mono/scalable/apps/preferences-system-performance.svgz share/icons/mono/scalable/apps/preferences-system-power-management.svgz share/icons/mono/scalable/apps/preferences-system-session-services.svgz +share/icons/mono/scalable/apps/preferences-system-solid.svgz +share/icons/mono/scalable/apps/preferences-system-splash.svgz share/icons/mono/scalable/apps/preferences-system-time.svgz share/icons/mono/scalable/apps/preferences-system-windows.svgz share/icons/mono/scalable/apps/preferences-web-browser-adblock.svgz @@ -1688,12 +1762,12 @@ share/icons/mono/scalable/apps/preferences-web-browser-cache.svgz share/icons/mono/scalable/apps/preferences-web-browser-cookies.svgz share/icons/mono/scalable/apps/preferences-web-browser-identification.svgz share/icons/mono/scalable/apps/preferences-web-browser-shortcuts.svgz -share/icons/mono/scalable/apps/proxy.svgz +share/icons/mono/scalable/apps/preferences-web-browser-stylesheets.svgz share/icons/mono/scalable/apps/qt.svgz +share/icons/mono/scalable/apps/qtconfig.svgz share/icons/mono/scalable/apps/qtella.svgz share/icons/mono/scalable/apps/quanta.svgz share/icons/mono/scalable/apps/quicktime.svgz -share/icons/mono/scalable/apps/randr.svgz share/icons/mono/scalable/apps/realplayer.svgz share/icons/mono/scalable/apps/remote.svgz share/icons/mono/scalable/apps/rsibreak.svgz @@ -1704,8 +1778,6 @@ share/icons/mono/scalable/apps/showfoto.svgz share/icons/mono/scalable/apps/showimg.svgz share/icons/mono/scalable/apps/shredder.svgz share/icons/mono/scalable/apps/sodipodi.svgz -share/icons/mono/scalable/apps/soundcard.svgz -share/icons/mono/scalable/apps/style.svgz share/icons/mono/scalable/apps/superkaramba.svgz share/icons/mono/scalable/apps/synaptic.svgz share/icons/mono/scalable/apps/system-file-manager.svgz @@ -1723,22 +1795,23 @@ share/icons/mono/scalable/apps/utilities-system-monitor.svgz share/icons/mono/scalable/apps/utilities-terminal.svgz share/icons/mono/scalable/apps/vnc.svgz share/icons/mono/scalable/apps/wabi.svgz -share/icons/mono/scalable/apps/web-browser.svgz share/icons/mono/scalable/apps/win_apps.svgz share/icons/mono/scalable/apps/wine.svgz share/icons/mono/scalable/apps/wp.svgz -share/icons/mono/scalable/apps/x.svgz share/icons/mono/scalable/apps/xeyes.svgz share/icons/mono/scalable/apps/xfig.svgz share/icons/mono/scalable/apps/xfmail.svgz share/icons/mono/scalable/apps/xine.svgz share/icons/mono/scalable/apps/xmms.svgz +share/icons/mono/scalable/apps/xorg.svgz share/icons/mono/scalable/apps/xosview.svgz share/icons/mono/scalable/apps/xv.svgz share/icons/mono/scalable/apps/yakuake.svgz share/icons/mono/scalable/apps/zip.svgz share/icons/mono/scalable/categories/applications-accessories.svgz share/icons/mono/scalable/categories/applications-development.svgz +share/icons/mono/scalable/categories/applications-education-language.svgz +share/icons/mono/scalable/categories/applications-education-mathematics.svgz share/icons/mono/scalable/categories/applications-education.svgz share/icons/mono/scalable/categories/applications-engineering.svgz share/icons/mono/scalable/categories/applications-games-arcade.svgz @@ -1760,16 +1833,22 @@ share/icons/mono/scalable/categories/applications-utilities.svgz share/icons/mono/scalable/categories/preferences-desktop-peripherals.svgz share/icons/mono/scalable/categories/preferences-desktop-personal.svgz share/icons/mono/scalable/categories/preferences-desktop.svgz +share/icons/mono/scalable/categories/preferences-other.svgz share/icons/mono/scalable/categories/preferences-system-network.svgz share/icons/mono/scalable/categories/preferences-system.svgz share/icons/mono/scalable/categories/system-help.svgz +share/icons/mono/scalable/devices/audio-card.svgz +share/icons/mono/scalable/devices/audio-headset.svgz +share/icons/mono/scalable/devices/audio-input-microphone.svgz share/icons/mono/scalable/devices/camera-photo.svgz share/icons/mono/scalable/devices/computer-laptop.svgz share/icons/mono/scalable/devices/computer.svgz share/icons/mono/scalable/devices/cpu.svgz share/icons/mono/scalable/devices/drive-harddisk.svgz +share/icons/mono/scalable/devices/drive-optical.svgz share/icons/mono/scalable/devices/drive-remote.svgz share/icons/mono/scalable/devices/drive-removable-media-firewire.svgz +share/icons/mono/scalable/devices/drive-removable-media-usb-pendrive.svgz share/icons/mono/scalable/devices/drive-removable-media-usb.svgz share/icons/mono/scalable/devices/drive-removable-media.svgz share/icons/mono/scalable/devices/input-gaming.svgz @@ -1784,165 +1863,273 @@ share/icons/mono/scalable/devices/media-floppy.svgz share/icons/mono/scalable/devices/media-optical-audio.svgz share/icons/mono/scalable/devices/media-optical-recordable.svgz share/icons/mono/scalable/devices/media-optical.svgz +share/icons/mono/scalable/devices/media-tape.svgz share/icons/mono/scalable/devices/memory.svgz share/icons/mono/scalable/devices/modem.svgz share/icons/mono/scalable/devices/multimedia-player-apple-ipod.svgz +share/icons/mono/scalable/devices/multimedia-player-ipod.svgz +share/icons/mono/scalable/devices/multimedia-player.svgz +share/icons/mono/scalable/devices/network-wired.svgz +share/icons/mono/scalable/devices/network-wireless.svgz share/icons/mono/scalable/devices/pda.svgz +share/icons/mono/scalable/devices/phone.svgz share/icons/mono/scalable/devices/printer.svgz share/icons/mono/scalable/devices/scanner.svgz +share/icons/mono/scalable/devices/video-display.svgz share/icons/mono/scalable/devices/video-television.svgz +share/icons/mono/scalable/emblems/emblem-important.svgz +share/icons/mono/scalable/emblems/emblem-link.svgz +share/icons/mono/scalable/emblems/emblem-symbolic-link.svgz +share/icons/mono/scalable/emotes/face-smile-big.svgz share/icons/mono/scalable/mimetypes/application-illustrator.svgz share/icons/mono/scalable/mimetypes/application-javascript.svgz share/icons/mono/scalable/mimetypes/application-msword.svgz +share/icons/mono/scalable/mimetypes/application-octet-stream.svgz share/icons/mono/scalable/mimetypes/application-pgp-encrypted.svgz share/icons/mono/scalable/mimetypes/application-postscript.svgz share/icons/mono/scalable/mimetypes/application-vnd.ms-excel.svgz share/icons/mono/scalable/mimetypes/application-vnd.ms-powerpoint.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.chart.svgz share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.database.svgz share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.formula.svgz -share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.graphics-template.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.graphics.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.image.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.presentation.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.spreadsheet.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.text.svgz +share/icons/mono/scalable/mimetypes/application-vnd.rn-realmedia.svgz +share/icons/mono/scalable/mimetypes/application-vnd.stardivision.calc.svgz share/icons/mono/scalable/mimetypes/application-vnd.stardivision.draw.svgz +share/icons/mono/scalable/mimetypes/application-vnd.sun.xml.draw.svgz +share/icons/mono/scalable/mimetypes/application-vnd.sun.xml.draw.template.svgz share/icons/mono/scalable/mimetypes/application-x-7z-compressed.svgz share/icons/mono/scalable/mimetypes/application-x-awk.svgz share/icons/mono/scalable/mimetypes/application-x-bittorrent.svgz share/icons/mono/scalable/mimetypes/application-x-blender.svgz +share/icons/mono/scalable/mimetypes/application-x-cd-image.svgz share/icons/mono/scalable/mimetypes/application-x-cda.svgz share/icons/mono/scalable/mimetypes/application-x-core.svgz share/icons/mono/scalable/mimetypes/application-x-cue.svgz share/icons/mono/scalable/mimetypes/application-x-deb.svgz share/icons/mono/scalable/mimetypes/application-x-dvi.svgz +share/icons/mono/scalable/mimetypes/application-x-egon.svgz share/icons/mono/scalable/mimetypes/application-x-font-speedo.svgz +share/icons/mono/scalable/mimetypes/application-x-font-ttf.svgz +share/icons/mono/scalable/mimetypes/application-x-font-type1.svgz +share/icons/mono/scalable/mimetypes/application-x-java-archive.svgz +share/icons/mono/scalable/mimetypes/application-x-java.svgz +share/icons/mono/scalable/mimetypes/application-x-kaffeine.svgz +share/icons/mono/scalable/mimetypes/application-x-karbon.svgz +share/icons/mono/scalable/mimetypes/application-x-kchart.svgz share/icons/mono/scalable/mimetypes/application-x-kcsrc.svgz +share/icons/mono/scalable/mimetypes/application-x-kexiproject-shortcut.svgz +share/icons/mono/scalable/mimetypes/application-x-kexiproject.svgz +share/icons/mono/scalable/mimetypes/application-x-kformula.svgz +share/icons/mono/scalable/mimetypes/application-x-kgetlist.svgz +share/icons/mono/scalable/mimetypes/application-x-kig.svgz +share/icons/mono/scalable/mimetypes/application-x-kivio.svgz share/icons/mono/scalable/mimetypes/application-x-kontour.svgz +share/icons/mono/scalable/mimetypes/application-x-kopete-emoticons.svgz +share/icons/mono/scalable/mimetypes/application-x-kpovmodeler.svgz +share/icons/mono/scalable/mimetypes/application-x-kpresenter.svgz +share/icons/mono/scalable/mimetypes/application-x-krita.svgz +share/icons/mono/scalable/mimetypes/application-x-kspread.svgz share/icons/mono/scalable/mimetypes/application-x-kudesigner.svgz +share/icons/mono/scalable/mimetypes/application-x-kugar.svgz +share/icons/mono/scalable/mimetypes/application-x-kword.svgz +share/icons/mono/scalable/mimetypes/application-x-kwordquiz.svgz +share/icons/mono/scalable/mimetypes/application-x-lyx.svgz share/icons/mono/scalable/mimetypes/application-x-mimearchive.svgz +share/icons/mono/scalable/mimetypes/application-x-mplayer2.svgz +share/icons/mono/scalable/mimetypes/application-x-ms-dos-executable.svgz +share/icons/mono/scalable/mimetypes/application-x-mswinurl.svgz share/icons/mono/scalable/mimetypes/application-x-mswrite.svgz share/icons/mono/scalable/mimetypes/application-x-object.svgz +share/icons/mono/scalable/mimetypes/application-x-perl.svgz +share/icons/mono/scalable/mimetypes/application-x-php.svgz +share/icons/mono/scalable/mimetypes/application-x-python-bytecode.svgz +share/icons/mono/scalable/mimetypes/application-x-quattropro.svgz share/icons/mono/scalable/mimetypes/application-x-rpm.svgz share/icons/mono/scalable/mimetypes/application-x-ruby.svgz -share/icons/mono/scalable/mimetypes/application-x-shockwave-flash.svgz +share/icons/mono/scalable/mimetypes/application-x-sharedlib.svgz +share/icons/mono/scalable/mimetypes/application-x-superkaramba.svgz +share/icons/mono/scalable/mimetypes/application-x-tar.svgz share/icons/mono/scalable/mimetypes/application-x-tex-gf.svgz share/icons/mono/scalable/mimetypes/application-x-tex-pk.svgz +share/icons/mono/scalable/mimetypes/application-x-tgif.svgz share/icons/mono/scalable/mimetypes/application-x-trash.svgz share/icons/mono/scalable/mimetypes/application-x-troff-man.svgz share/icons/mono/scalable/mimetypes/application-x-uml.svgz +share/icons/mono/scalable/mimetypes/application-x-vnd.kde.kexi.svgz +share/icons/mono/scalable/mimetypes/application-x-vnd.kde.kugar.mixed.svgz +share/icons/mono/scalable/mimetypes/application-x-vnd.stardivision.chart.svgz +share/icons/mono/scalable/mimetypes/application-x-wmf.svgz share/icons/mono/scalable/mimetypes/application-x-zerosize.svgz +share/icons/mono/scalable/mimetypes/application-xml.svgz +share/icons/mono/scalable/mimetypes/application-xscd.svgz +share/icons/mono/scalable/mimetypes/application-xslt+xml.svgz +share/icons/mono/scalable/mimetypes/application-zip.svgz share/icons/mono/scalable/mimetypes/applix.svgz share/icons/mono/scalable/mimetypes/ascii.svgz share/icons/mono/scalable/mimetypes/audio-aac.svgz +share/icons/mono/scalable/mimetypes/audio-ac3.svgz +share/icons/mono/scalable/mimetypes/audio-basic.svgz share/icons/mono/scalable/mimetypes/audio-midi.svgz +share/icons/mono/scalable/mimetypes/audio-mp4.svgz +share/icons/mono/scalable/mimetypes/audio-mpeg.svgz +share/icons/mono/scalable/mimetypes/audio-prs.sid.svgz +share/icons/mono/scalable/mimetypes/audio-template.svgz +share/icons/mono/scalable/mimetypes/audio-vnd.rn-realaudio.svgz +share/icons/mono/scalable/mimetypes/audio-vnd.rn-realvideo.svgz +share/icons/mono/scalable/mimetypes/audio-x-adpcm.svgz +share/icons/mono/scalable/mimetypes/audio-x-aiff.svgz +share/icons/mono/scalable/mimetypes/audio-x-flac+ogg.svgz +share/icons/mono/scalable/mimetypes/audio-x-flac.svgz +share/icons/mono/scalable/mimetypes/audio-x-generic.svgz +share/icons/mono/scalable/mimetypes/audio-x-matroska.svgz +share/icons/mono/scalable/mimetypes/audio-x-mod.svgz +share/icons/mono/scalable/mimetypes/audio-x-monkey.svgz +share/icons/mono/scalable/mimetypes/audio-x-mp2.svgz +share/icons/mono/scalable/mimetypes/audio-x-mpegurl.svgz +share/icons/mono/scalable/mimetypes/audio-x-ms-wma.svgz +share/icons/mono/scalable/mimetypes/audio-x-musepack.svgz +share/icons/mono/scalable/mimetypes/audio-x-scpls.svgz +share/icons/mono/scalable/mimetypes/audio-x-speex+ogg.svgz +share/icons/mono/scalable/mimetypes/audio-x-vorbis+ogg.svgz +share/icons/mono/scalable/mimetypes/audio-x-wav.svgz share/icons/mono/scalable/mimetypes/backup.svgz share/icons/mono/scalable/mimetypes/cdbo_list.svgz share/icons/mono/scalable/mimetypes/cdr.svgz -share/icons/mono/scalable/mimetypes/chart.svgz share/icons/mono/scalable/mimetypes/colorset.svgz share/icons/mono/scalable/mimetypes/configure.svgz share/icons/mono/scalable/mimetypes/document2.svgz -share/icons/mono/scalable/mimetypes/exec_wine.svgz share/icons/mono/scalable/mimetypes/executable.svgz share/icons/mono/scalable/mimetypes/file_locked.svgz share/icons/mono/scalable/mimetypes/file_temporary.svgz share/icons/mono/scalable/mimetypes/font_bitmap.svgz -share/icons/mono/scalable/mimetypes/font_truetype.svgz -share/icons/mono/scalable/mimetypes/font_type1.svgz share/icons/mono/scalable/mimetypes/gnome-library.svgz share/icons/mono/scalable/mimetypes/gnome_app_info.svgz share/icons/mono/scalable/mimetypes/graphic.svgz share/icons/mono/scalable/mimetypes/igc.svgz +share/icons/mono/scalable/mimetypes/image-bmp.svgz +share/icons/mono/scalable/mimetypes/image-cgm.svgz +share/icons/mono/scalable/mimetypes/image-fax-g3.svgz +share/icons/mono/scalable/mimetypes/image-gif.svgz +share/icons/mono/scalable/mimetypes/image-jp2.svgz +share/icons/mono/scalable/mimetypes/image-jpeg.svgz +share/icons/mono/scalable/mimetypes/image-png.svgz +share/icons/mono/scalable/mimetypes/image-svg+xml.svgz +share/icons/mono/scalable/mimetypes/image-template.svgz +share/icons/mono/scalable/mimetypes/image-tiff.svgz share/icons/mono/scalable/mimetypes/image-vnd.djvu.svgz -share/icons/mono/scalable/mimetypes/images.svgz -share/icons/mono/scalable/mimetypes/info.svgz +share/icons/mono/scalable/mimetypes/image-x-applix-graphics.svgz +share/icons/mono/scalable/mimetypes/image-x-dcraw.svgz +share/icons/mono/scalable/mimetypes/image-x-dds.svgz +share/icons/mono/scalable/mimetypes/image-x-eps.svgz +share/icons/mono/scalable/mimetypes/image-x-exr.svgz +share/icons/mono/scalable/mimetypes/image-x-fits.svgz +share/icons/mono/scalable/mimetypes/image-x-generic.svgz +share/icons/mono/scalable/mimetypes/image-x-hdr.svgz +share/icons/mono/scalable/mimetypes/image-x-ico.svgz +share/icons/mono/scalable/mimetypes/image-x-jng.svgz +share/icons/mono/scalable/mimetypes/image-x-msod.svgz +share/icons/mono/scalable/mimetypes/image-x-pcx.svgz +share/icons/mono/scalable/mimetypes/image-x-photo-cd.svgz +share/icons/mono/scalable/mimetypes/image-x-portable-bitmap.svgz +share/icons/mono/scalable/mimetypes/image-x-portable-graymap.svgz +share/icons/mono/scalable/mimetypes/image-x-portable-pixmap.svgz +share/icons/mono/scalable/mimetypes/image-x-psd.svgz +share/icons/mono/scalable/mimetypes/image-x-rgb.svgz +share/icons/mono/scalable/mimetypes/image-x-tga.svgz +share/icons/mono/scalable/mimetypes/image-x-vnd.trolltech.qpicture.svgz +share/icons/mono/scalable/mimetypes/image-x-xbitmap.svgz +share/icons/mono/scalable/mimetypes/image-x-xcf.svgz +share/icons/mono/scalable/mimetypes/image-x-xfig.svgz +share/icons/mono/scalable/mimetypes/image-x-xpixmap.svgz +share/icons/mono/scalable/mimetypes/inode-directory.svgz share/icons/mono/scalable/mimetypes/ipod.svgz -share/icons/mono/scalable/mimetypes/java_jar.svgz -share/icons/mono/scalable/mimetypes/karbon_karbon.svgz -share/icons/mono/scalable/mimetypes/kchart_chrt.svgz share/icons/mono/scalable/mimetypes/kdevelop_project.svgz -share/icons/mono/scalable/mimetypes/kexi.svgz -share/icons/mono/scalable/mimetypes/kexi_kexi.svgz -share/icons/mono/scalable/mimetypes/kexiproject_shortcut.svgz -share/icons/mono/scalable/mimetypes/kexiproject_sqlite.svgz -share/icons/mono/scalable/mimetypes/kexiproject_sqlite2.svgz -share/icons/mono/scalable/mimetypes/kformula_kfo.svgz -share/icons/mono/scalable/mimetypes/kget_list.svgz -share/icons/mono/scalable/mimetypes/kig_doc.svgz -share/icons/mono/scalable/mimetypes/kivio_flw.svgz share/icons/mono/scalable/mimetypes/kmultiple.svgz share/icons/mono/scalable/mimetypes/kmy.svgz share/icons/mono/scalable/mimetypes/koffice.svgz -share/icons/mono/scalable/mimetypes/kopete_emoticons.svgz -share/icons/mono/scalable/mimetypes/kpovmodeler_doc.svgz -share/icons/mono/scalable/mimetypes/kpresenter_kpr.svgz -share/icons/mono/scalable/mimetypes/krita_kra.svgz -share/icons/mono/scalable/mimetypes/kspread_ksp.svgz -share/icons/mono/scalable/mimetypes/kugar_kud.svgz -share/icons/mono/scalable/mimetypes/kword_kwd.svgz -share/icons/mono/scalable/mimetypes/kwordquiz_doc.svgz share/icons/mono/scalable/mimetypes/lpl.svgz share/icons/mono/scalable/mimetypes/message-news.svgz share/icons/mono/scalable/mimetypes/metafont.svgz share/icons/mono/scalable/mimetypes/mime.svgz -share/icons/mono/scalable/mimetypes/mime_kaffeine.svgz -share/icons/mono/scalable/mimetypes/mime_lyx.svgz -share/icons/mono/scalable/mimetypes/mime_video.svgz share/icons/mono/scalable/mimetypes/misc.svgz -share/icons/mono/scalable/mimetypes/misc_doc.svgz -share/icons/mono/scalable/mimetypes/moc_src.svgz share/icons/mono/scalable/mimetypes/money.svgz share/icons/mono/scalable/mimetypes/mozilla_doc.svgz share/icons/mono/scalable/mimetypes/netscape.svgz share/icons/mono/scalable/mimetypes/netscape_doc.svgz -share/icons/mono/scalable/mimetypes/php.svgz share/icons/mono/scalable/mimetypes/printer.svgz -share/icons/mono/scalable/mimetypes/psd.svgz -share/icons/mono/scalable/mimetypes/quicktime.svgz -share/icons/mono/scalable/mimetypes/readme.svgz -share/icons/mono/scalable/mimetypes/real.svgz -share/icons/mono/scalable/mimetypes/real_doc.svgz share/icons/mono/scalable/mimetypes/reject.svgz share/icons/mono/scalable/mimetypes/resource.svgz share/icons/mono/scalable/mimetypes/soffice.svgz -share/icons/mono/scalable/mimetypes/source_c.svgz -share/icons/mono/scalable/mimetypes/source_cpp.svgz -share/icons/mono/scalable/mimetypes/source_f.svgz -share/icons/mono/scalable/mimetypes/source_h.svgz share/icons/mono/scalable/mimetypes/source_j.svgz -share/icons/mono/scalable/mimetypes/source_java.svgz share/icons/mono/scalable/mimetypes/source_l.svgz -share/icons/mono/scalable/mimetypes/source_moc.svgz -share/icons/mono/scalable/mimetypes/source_mono.svgz share/icons/mono/scalable/mimetypes/source_o.svgz -share/icons/mono/scalable/mimetypes/source_p.svgz -share/icons/mono/scalable/mimetypes/source_php.svgz -share/icons/mono/scalable/mimetypes/source_pl.svgz -share/icons/mono/scalable/mimetypes/source_py.svgz share/icons/mono/scalable/mimetypes/source_s.svgz -share/icons/mono/scalable/mimetypes/source_xml.svgz share/icons/mono/scalable/mimetypes/source_y.svgz -share/icons/mono/scalable/mimetypes/sql.svgz -share/icons/mono/scalable/mimetypes/superkaramba_theme.svgz -share/icons/mono/scalable/mimetypes/tar.svgz share/icons/mono/scalable/mimetypes/tellico.svgz share/icons/mono/scalable/mimetypes/template.svgz share/icons/mono/scalable/mimetypes/template_source.svgz share/icons/mono/scalable/mimetypes/text-calendar.svgz share/icons/mono/scalable/mimetypes/text-css.svgz share/icons/mono/scalable/mimetypes/text-directory.svgz +share/icons/mono/scalable/mimetypes/text-enriched.svgz +share/icons/mono/scalable/mimetypes/text-html.svgz share/icons/mono/scalable/mimetypes/text-mathml.svgz +share/icons/mono/scalable/mimetypes/text-plain.svgz +share/icons/mono/scalable/mimetypes/text-rtf.svgz +share/icons/mono/scalable/mimetypes/text-sgml.svgz +share/icons/mono/scalable/mimetypes/text-template.svgz +share/icons/mono/scalable/mimetypes/text-troff.svgz +share/icons/mono/scalable/mimetypes/text-vcalendar.svgz +share/icons/mono/scalable/mimetypes/text-vnd.abc.svgz +share/icons/mono/scalable/mimetypes/text-vnd.wap.wml.svgz share/icons/mono/scalable/mimetypes/text-x-bibtex.svgz +share/icons/mono/scalable/mimetypes/text-x-c++src.svgz +share/icons/mono/scalable/mimetypes/text-x-chdr.svgz +share/icons/mono/scalable/mimetypes/text-x-csharp.svgz +share/icons/mono/scalable/mimetypes/text-x-csrc.svgz +share/icons/mono/scalable/mimetypes/text-x-fortran.svgz +share/icons/mono/scalable/mimetypes/text-x-generic.svgz share/icons/mono/scalable/mimetypes/text-x-gettext-translation.svgz +share/icons/mono/scalable/mimetypes/text-x-java.svgz share/icons/mono/scalable/mimetypes/text-x-katefilelist.svgz share/icons/mono/scalable/mimetypes/text-x-log.svgz share/icons/mono/scalable/mimetypes/text-x-makefile.svgz +share/icons/mono/scalable/mimetypes/text-x-moc.svgz +share/icons/mono/scalable/mimetypes/text-x-pascal.svgz +share/icons/mono/scalable/mimetypes/text-x-python.svgz +share/icons/mono/scalable/mimetypes/text-x-readme.svgz +share/icons/mono/scalable/mimetypes/text-x-sql.svgz +share/icons/mono/scalable/mimetypes/text-x-texinfo.svgz +share/icons/mono/scalable/mimetypes/text-xml.svgz share/icons/mono/scalable/mimetypes/text.svgz share/icons/mono/scalable/mimetypes/trash.svgz -share/icons/mono/scalable/mimetypes/txt2.svgz +share/icons/mono/scalable/mimetypes/video-mp4.svgz +share/icons/mono/scalable/mimetypes/video-mpeg.svgz +share/icons/mono/scalable/mimetypes/video-quicktime.svgz +share/icons/mono/scalable/mimetypes/video-template.svgz +share/icons/mono/scalable/mimetypes/video-x-flic.svgz +share/icons/mono/scalable/mimetypes/video-x-flv.svgz +share/icons/mono/scalable/mimetypes/video-x-generic.svgz +share/icons/mono/scalable/mimetypes/video-x-matroska.svgz +share/icons/mono/scalable/mimetypes/video-x-mng.svgz share/icons/mono/scalable/mimetypes/video-x-ms-asf.svgz +share/icons/mono/scalable/mimetypes/video-x-ms-wmv.svgz +share/icons/mono/scalable/mimetypes/video-x-msvideo.svgz +share/icons/mono/scalable/mimetypes/video-x-ogm+ogg.svgz +share/icons/mono/scalable/mimetypes/video-x-theora+ogg.svgz share/icons/mono/scalable/mimetypes/widget_doc.svgz +share/icons/mono/scalable/mimetypes/x-office-calendar.svgz +share/icons/mono/scalable/mimetypes/x-office-spreadsheet.svgz share/icons/mono/scalable/mimetypes/you.svgz -share/icons/mono/scalable/mimetypes/zip.svgz -share/icons/mono/scalable/places/bookmark.svgz +share/icons/mono/scalable/places/bookmarks.svgz share/icons/mono/scalable/places/contact.svgz share/icons/mono/scalable/places/document-multiple.svgz +share/icons/mono/scalable/places/favorites.svgz share/icons/mono/scalable/places/folder-blue.svgz share/icons/mono/scalable/places/folder-bookmarks.svgz share/icons/mono/scalable/places/folder-brown.svgz @@ -1959,6 +2146,7 @@ share/icons/mono/scalable/places/folder-locked.svgz share/icons/mono/scalable/places/folder-orange.svgz share/icons/mono/scalable/places/folder-print.svgz share/icons/mono/scalable/places/folder-red.svgz +share/icons/mono/scalable/places/folder-remote.svgz share/icons/mono/scalable/places/folder-sound.svgz share/icons/mono/scalable/places/folder-tar.svgz share/icons/mono/scalable/places/folder-txt.svgz @@ -1968,6 +2156,9 @@ share/icons/mono/scalable/places/folder-yellow.svgz share/icons/mono/scalable/places/folder.svgz share/icons/mono/scalable/places/link-overlay.svgz share/icons/mono/scalable/places/lock-overlay.svgz +share/icons/mono/scalable/places/mail-folder-inbox.svgz +share/icons/mono/scalable/places/mail-folder-outbox.svgz +share/icons/mono/scalable/places/mail-folder-sent.svgz share/icons/mono/scalable/places/mail-inbox.svgz share/icons/mono/scalable/places/mail-message.svgz share/icons/mono/scalable/places/mail-outbox.svgz @@ -1978,15 +2169,20 @@ share/icons/mono/scalable/places/network-server-database.svgz share/icons/mono/scalable/places/network-server.svgz share/icons/mono/scalable/places/network-workgroup.svgz share/icons/mono/scalable/places/network.svgz +share/icons/mono/scalable/places/start-here-gnome.svgz +share/icons/mono/scalable/places/start-here-kde.svgz share/icons/mono/scalable/places/start-here.svgz share/icons/mono/scalable/places/user-desktop.svgz share/icons/mono/scalable/places/user-home.svgz +share/icons/mono/scalable/places/user-identity.svgz share/icons/mono/scalable/places/user-trash.svgz share/icons/mono/scalable/places/zip-overlay.svgz +share/icons/mono/scalable/status/audio-volume-muted.svgz share/icons/mono/scalable/status/dialog-error.svgz share/icons/mono/scalable/status/dialog-information.svgz share/icons/mono/scalable/status/dialog-warning.svgz share/icons/mono/scalable/status/mail-attachment.svgz +share/icons/mono/scalable/status/mail-task.svgz share/icons/mono/scalable/status/object-locked.svgz share/icons/mono/scalable/status/object-unlocked.svgz share/icons/mono/scalable/status/security-high.svgz @@ -2015,12 +2211,11 @@ share/kde4/services/kttsjobmgr.desktop share/kde4/servicetypes/kttsd_audioplugin.desktop share/kde4/servicetypes/kttsd_filterplugin.desktop share/kde4/servicetypes/kttsd_synthplugin.desktop -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services -@dirrmtry share/kde4 @dirrm share/icons/mono/scalable/status @dirrm share/icons/mono/scalable/places @dirrm share/icons/mono/scalable/mimetypes +@dirrm share/icons/mono/scalable/emotes +@dirrm share/icons/mono/scalable/emblems @dirrm share/icons/mono/scalable/devices @dirrm share/icons/mono/scalable/categories @dirrm share/icons/mono/scalable/apps @@ -2039,27 +2234,10 @@ share/kde4/servicetypes/kttsd_synthplugin.desktop @dirrm share/icons/mono/128x128/animations @dirrm share/icons/mono/128x128 @dirrm share/icons/mono -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48/actions -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32/actions -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22/actions -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16/actions -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons @dirrm share/doc/HTML/en/kttsd @dirrm share/doc/HTML/en/kmouth @dirrm share/doc/HTML/en/kmousetool @dirrm share/doc/HTML/en/kmag -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/config @dirrm share/apps/kttsd/xslt @dirrm share/apps/kttsd/xmltransformer @dirrm share/apps/kttsd/talkerchooser @@ -2088,8 +2266,3 @@ share/kde4/servicetypes/kttsd_synthplugin.desktop @dirrm share/apps/kmousetool/sounds @dirrm share/apps/kmousetool @dirrm share/apps/kmag -@dirrmtry share/apps/color-schemes -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/kde4 diff --git a/accessibility/kdeaccessibility4/Makefile b/accessibility/kdeaccessibility4/Makefile index a5b87bd375eb..e682fd7bc850 100644 --- a/accessibility/kdeaccessibility4/Makefile +++ b/accessibility/kdeaccessibility4/Makefile @@ -8,7 +8,7 @@ PORTNAME= kdeaccessibility PORTVERSION= ${KDE4_VERSION} CATEGORIES= accessibility kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org @@ -16,14 +16,19 @@ COMMENT= Accessibility applications for KDE4 LATEST_LINK= ${PORTNAME}4 -USE_KDE4= kdelibs workspace kdeprefix kdehier automoc4 -KDE4_BUILDENV= yes USE_BZIP2= yes +USE_KDE4= kdelibs kdeprefix kdehier automoc4 +KDE4_BUILDENV= yes USE_QT_VER= 4 QT_COMPONENTS= opengl gui qmake_build moc_build rcc_build uic_build +USE_LDCONFIG= yes CMAKE_ARGS+= -DKDE4_KTTSD_ALSA:BOOL=OFF +MAN1= kmag.1 \ + kmousetool.1 \ + kmouth.1 + post-extract: ${MKDIR} ${WRKSRC} diff --git a/accessibility/kdeaccessibility4/distinfo b/accessibility/kdeaccessibility4/distinfo index 3d3a2895c559..0c5d66145f60 100644 --- a/accessibility/kdeaccessibility4/distinfo +++ b/accessibility/kdeaccessibility4/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdeaccessibility-4.1.4.tar.bz2) = da6c157741d73eb1445cd60d9b78cd2e -SHA256 (KDE/kdeaccessibility-4.1.4.tar.bz2) = e85943f0f59fe2831c8618a2c2f9050e8d3fc0026f5b6e61eed5f96a04bf1bab -SIZE (KDE/kdeaccessibility-4.1.4.tar.bz2) = 6371585 +MD5 (KDE/kdeaccessibility-4.2.0.tar.bz2) = f32f24c4f07906b7af39ca18d47b5e27 +SHA256 (KDE/kdeaccessibility-4.2.0.tar.bz2) = 2ec7bab55ae0e41a616cdf10c81b6cf7a504442d01c631c7e268876dd959b434 +SIZE (KDE/kdeaccessibility-4.2.0.tar.bz2) = 6592084 diff --git a/accessibility/kdeaccessibility4/pkg-plist b/accessibility/kdeaccessibility4/pkg-plist index a7e8f9a69e99..20005d3b749f 100644 --- a/accessibility/kdeaccessibility4/pkg-plist +++ b/accessibility/kdeaccessibility4/pkg-plist @@ -18,7 +18,7 @@ lib/kde4/libkttsd_xmltransformerplugin.so lib/kde4/libkttsjobmgrpart.so lib/libkttsd.so lib/libkttsd.so.5 -lib/libkttsd.so.5.0.0 +lib/libkttsd.so.5.0.1 share/applications/kde4/kmag.desktop share/applications/kde4/kmousetool.desktop share/applications/kde4/kmouth.desktop @@ -204,7 +204,8 @@ share/icons/mono/scalable/actions/aocenterh.svgz share/icons/mono/scalable/actions/aocenterv.svgz share/icons/mono/scalable/actions/appearance.svgz share/icons/mono/scalable/actions/application-exit.svgz -share/icons/mono/scalable/actions/appointment.svgz +share/icons/mono/scalable/actions/appointment-new.svgz +share/icons/mono/scalable/actions/appointment-reminder.svgz share/icons/mono/scalable/actions/arc.svgz share/icons/mono/scalable/actions/arc_center.svgz share/icons/mono/scalable/actions/archive-extract.svgz @@ -252,6 +253,7 @@ share/icons/mono/scalable/actions/bold.svgz share/icons/mono/scalable/actions/bookmark-new-list.svgz share/icons/mono/scalable/actions/bookmark-new.svgz share/icons/mono/scalable/actions/bookmark-toolbar.svgz +share/icons/mono/scalable/actions/bookmarks-organize.svgz share/icons/mono/scalable/actions/border_all.svgz share/icons/mono/scalable/actions/border_bottom.svgz share/icons/mono/scalable/actions/border_fall.svgz @@ -321,6 +323,7 @@ share/icons/mono/scalable/actions/checkbox-widget.svgz share/icons/mono/scalable/actions/checkedbox.svgz share/icons/mono/scalable/actions/checkmark.svgz share/icons/mono/scalable/actions/chemical.svgz +share/icons/mono/scalable/actions/chronometer.svgz share/icons/mono/scalable/actions/circle.svgz share/icons/mono/scalable/actions/circlebcl.svgz share/icons/mono/scalable/actions/circlebcp.svgz @@ -365,9 +368,10 @@ share/icons/mono/scalable/actions/cpufreq_50.svgz share/icons/mono/scalable/actions/cpufreq_75.svgz share/icons/mono/scalable/actions/cpufreq_na.svgz share/icons/mono/scalable/actions/crop.svgz -share/icons/mono/scalable/actions/css.svgz +share/icons/mono/scalable/actions/cssvalidator.svgz share/icons/mono/scalable/actions/cubicbeziercurve.svgz share/icons/mono/scalable/actions/curvelineintersection.svgz +share/icons/mono/scalable/actions/dashboard-show.svgz share/icons/mono/scalable/actions/data-view.svgz share/icons/mono/scalable/actions/data.svgz share/icons/mono/scalable/actions/database-first-row.svgz @@ -396,6 +400,7 @@ share/icons/mono/scalable/actions/delslide.svgz share/icons/mono/scalable/actions/deriv_func.svgz share/icons/mono/scalable/actions/design-view.svgz share/icons/mono/scalable/actions/dialog-cancel.svgz +share/icons/mono/scalable/actions/dialog-close.svgz share/icons/mono/scalable/actions/dialog-ok-apply.svgz share/icons/mono/scalable/actions/dialog-ok.svgz share/icons/mono/scalable/actions/diff.svgz @@ -404,11 +409,15 @@ share/icons/mono/scalable/actions/dirsynch.svgz share/icons/mono/scalable/actions/dirsynch_new.svgz share/icons/mono/scalable/actions/dissociatecell.svgz share/icons/mono/scalable/actions/distance.svgz +share/icons/mono/scalable/actions/document-decrypt.svgz +share/icons/mono/scalable/actions/document-encrypt.svgz share/icons/mono/scalable/actions/document-export.svgz share/icons/mono/scalable/actions/document-import.svgz share/icons/mono/scalable/actions/document-new.svgz +share/icons/mono/scalable/actions/document-open-folder.svgz share/icons/mono/scalable/actions/document-open.svgz share/icons/mono/scalable/actions/document-preview-archive.svgz +share/icons/mono/scalable/actions/document-print-frame.svgz share/icons/mono/scalable/actions/document-print-preview.svgz share/icons/mono/scalable/actions/document-print.svgz share/icons/mono/scalable/actions/document-properties.svgz @@ -424,7 +433,9 @@ share/icons/mono/scalable/actions/draw-freehand.svgz share/icons/mono/scalable/actions/duringbreaks.svgz share/icons/mono/scalable/actions/dynamic.svgz share/icons/mono/scalable/actions/edit-add.svgz +share/icons/mono/scalable/actions/edit-bomb.svgz share/icons/mono/scalable/actions/edit-clear-history.svgz +share/icons/mono/scalable/actions/edit-clear-locationbar-ltr.svgz share/icons/mono/scalable/actions/edit-clear-locationbar-rtl.svgz share/icons/mono/scalable/actions/edit-clear-locationbar.svgz share/icons/mono/scalable/actions/edit-clear.svgz @@ -434,9 +445,12 @@ share/icons/mono/scalable/actions/edit-delete-mail.svgz share/icons/mono/scalable/actions/edit-delete-shred.svgz share/icons/mono/scalable/actions/edit-delete.svgz share/icons/mono/scalable/actions/edit-find.svgz +share/icons/mono/scalable/actions/edit-mail-find.svgz share/icons/mono/scalable/actions/edit-paste.svgz share/icons/mono/scalable/actions/edit-redo.svgz share/icons/mono/scalable/actions/edit-remove.svgz +share/icons/mono/scalable/actions/edit-rename.svgz +share/icons/mono/scalable/actions/edit-text.svgz share/icons/mono/scalable/actions/edit-trash.svgz share/icons/mono/scalable/actions/edit-undo.svgz share/icons/mono/scalable/actions/edit-user.svgz @@ -467,8 +481,8 @@ share/icons/mono/scalable/actions/fileblend.svgz share/icons/mono/scalable/actions/filereplace.svgz share/icons/mono/scalable/actions/filesimulate.svgz share/icons/mono/scalable/actions/filestop.svgz +share/icons/mono/scalable/actions/fill-color.svgz share/icons/mono/scalable/actions/fill.svgz -share/icons/mono/scalable/actions/fill_colour.svgz share/icons/mono/scalable/actions/filledcircle.svgz share/icons/mono/scalable/actions/filledellipse.svgz share/icons/mono/scalable/actions/filledrectangle.svgz @@ -483,19 +497,22 @@ share/icons/mono/scalable/actions/folder-open.svgz share/icons/mono/scalable/actions/folder.svgz share/icons/mono/scalable/actions/followmouse.svgz share/icons/mono/scalable/actions/fonts.svgz +share/icons/mono/scalable/actions/fork.svgz share/icons/mono/scalable/actions/form_edit.svgz share/icons/mono/scalable/actions/format-font-size-less.svgz share/icons/mono/scalable/actions/format-font-size-more.svgz share/icons/mono/scalable/actions/format-indent-less.svgz share/icons/mono/scalable/actions/format-indent-more.svgz -share/icons/mono/scalable/actions/format-justify-block.svgz share/icons/mono/scalable/actions/format-justify-bottom.svgz share/icons/mono/scalable/actions/format-justify-center.svgz +share/icons/mono/scalable/actions/format-justify-fill.svgz share/icons/mono/scalable/actions/format-justify-left.svgz share/icons/mono/scalable/actions/format-justify-right.svgz share/icons/mono/scalable/actions/format-justify-top.svgz share/icons/mono/scalable/actions/format-list-unordered.svgz share/icons/mono/scalable/actions/format-text-bold.svgz +share/icons/mono/scalable/actions/format-text-direction-ltr.svgz +share/icons/mono/scalable/actions/format-text-direction-rtl.svgz share/icons/mono/scalable/actions/format-text-italic.svgz share/icons/mono/scalable/actions/format-text-strikethrough.svgz share/icons/mono/scalable/actions/format-text-subscript.svgz @@ -552,6 +569,7 @@ share/icons/mono/scalable/actions/harmonichomology.svgz share/icons/mono/scalable/actions/hdd.svgz share/icons/mono/scalable/actions/help-about-kde.svgz share/icons/mono/scalable/actions/help-contextual.svgz +share/icons/mono/scalable/actions/help-hint.svgz share/icons/mono/scalable/actions/help.svgz share/icons/mono/scalable/actions/hexagonbcv.svgz share/icons/mono/scalable/actions/hibernate.svgz @@ -681,8 +699,18 @@ share/icons/mono/scalable/actions/kstars_stars.svgz share/icons/mono/scalable/actions/ksys1.svgz share/icons/mono/scalable/actions/ksys2.svgz share/icons/mono/scalable/actions/ksys3.svgz +share/icons/mono/scalable/actions/kt-check-data.svgz +share/icons/mono/scalable/actions/kt-chunks.svgz +share/icons/mono/scalable/actions/kt-info-widget.svgz +share/icons/mono/scalable/actions/kt-pause.svgz +share/icons/mono/scalable/actions/kt-plugins.svgz +share/icons/mono/scalable/actions/kt-queue-manager.svgz +share/icons/mono/scalable/actions/kt-remove.svgz +share/icons/mono/scalable/actions/kt-show-statusbar.svgz +share/icons/mono/scalable/actions/kt-start.svgz +share/icons/mono/scalable/actions/kt-stop-all.svgz +share/icons/mono/scalable/actions/kt-stop.svgz share/icons/mono/scalable/actions/ktinfowidget.svgz -share/icons/mono/scalable/actions/ktip.svgz share/icons/mono/scalable/actions/label-widget.svgz share/icons/mono/scalable/actions/lan.svgz share/icons/mono/scalable/actions/languages.svgz @@ -736,20 +764,22 @@ share/icons/mono/scalable/actions/lowerlayer.svgz share/icons/mono/scalable/actions/lsub.svgz share/icons/mono/scalable/actions/lsup.svgz share/icons/mono/scalable/actions/magnify.svgz -share/icons/mono/scalable/actions/mail-find.svgz share/icons/mono/scalable/actions/mail-flag.svgz share/icons/mono/scalable/actions/mail-forward.svgz -share/icons/mono/scalable/actions/mail-get.svgz +share/icons/mono/scalable/actions/mail-mark-important.svgz share/icons/mono/scalable/actions/mail-mark-junk.svgz share/icons/mono/scalable/actions/mail-mark-notjunk.svgz +share/icons/mono/scalable/actions/mail-mark-task.svgz +share/icons/mono/scalable/actions/mail-mark-unread.svgz share/icons/mono/scalable/actions/mail-message-new.svgz +share/icons/mono/scalable/actions/mail-queue.svgz +share/icons/mono/scalable/actions/mail-receive.svgz share/icons/mono/scalable/actions/mail-reply-all.svgz +share/icons/mono/scalable/actions/mail-reply-custom.svgz +share/icons/mono/scalable/actions/mail-reply-list.svgz share/icons/mono/scalable/actions/mail-reply-sender.svgz share/icons/mono/scalable/actions/mail-replylist.svgz share/icons/mono/scalable/actions/mail-send.svgz -share/icons/mono/scalable/actions/mail.svgz -share/icons/mono/scalable/actions/mail_post_to.svgz -share/icons/mono/scalable/actions/mail_todo.svgz share/icons/mono/scalable/actions/make.svgz share/icons/mono/scalable/actions/markasblank.svgz share/icons/mono/scalable/actions/math_abs.svgz @@ -912,9 +942,11 @@ share/icons/mono/scalable/actions/pgnum.svgz share/icons/mono/scalable/actions/pgp-keys.svgz share/icons/mono/scalable/actions/player-time.svgz share/icons/mono/scalable/actions/player-volume-down.svgz +share/icons/mono/scalable/actions/player-volume-muted.svgz share/icons/mono/scalable/actions/player-volume-up.svgz share/icons/mono/scalable/actions/player-volume.svgz share/icons/mono/scalable/actions/player_mute.svgz +share/icons/mono/scalable/actions/player_record.svgz share/icons/mono/scalable/actions/plot.svgz share/icons/mono/scalable/actions/podcast_new.svgz share/icons/mono/scalable/actions/point.svgz @@ -932,11 +964,13 @@ share/icons/mono/scalable/actions/precplus.svgz share/icons/mono/scalable/actions/preverror.svgz share/icons/mono/scalable/actions/prevfuzzy.svgz share/icons/mono/scalable/actions/prevfuzzyuntrans.svgz +share/icons/mono/scalable/actions/preview.svgz share/icons/mono/scalable/actions/previewprint.svgz share/icons/mono/scalable/actions/prevmarked.svgz share/icons/mono/scalable/actions/prevpo.svgz share/icons/mono/scalable/actions/prevtemplate.svgz share/icons/mono/scalable/actions/prevuntranslated.svgz +share/icons/mono/scalable/actions/process-stop.svgz share/icons/mono/scalable/actions/processor.svgz share/icons/mono/scalable/actions/prod.svgz share/icons/mono/scalable/actions/progress-bar-widget.svgz @@ -952,16 +986,17 @@ share/icons/mono/scalable/actions/quick_start.svgz share/icons/mono/scalable/actions/quiz.svgz share/icons/mono/scalable/actions/radicalline.svgz share/icons/mono/scalable/actions/radio-button-widget.svgz +share/icons/mono/scalable/actions/raindrop.svgz share/icons/mono/scalable/actions/raise.svgz share/icons/mono/scalable/actions/raiselayer.svgz share/icons/mono/scalable/actions/random.svgz +share/icons/mono/scalable/actions/rating.svgz share/icons/mono/scalable/actions/ray.svgz share/icons/mono/scalable/actions/rebuild.svgz share/icons/mono/scalable/actions/rectangle.svgz share/icons/mono/scalable/actions/recursive.svgz share/icons/mono/scalable/actions/redeyes.svgz share/icons/mono/scalable/actions/relation.svgz -share/icons/mono/scalable/actions/reload.svgz share/icons/mono/scalable/actions/remcol.svgz share/icons/mono/scalable/actions/removecell.svgz share/icons/mono/scalable/actions/removecomment.svgz @@ -1025,6 +1060,7 @@ share/icons/mono/scalable/actions/shadowRU.svgz share/icons/mono/scalable/actions/shadowU.svgz share/icons/mono/scalable/actions/share.svgz share/icons/mono/scalable/actions/shear.svgz +share/icons/mono/scalable/actions/show-menu.svgz share/icons/mono/scalable/actions/show_offliners.svgz share/icons/mono/scalable/actions/show_table_column.svgz share/icons/mono/scalable/actions/show_table_row.svgz @@ -1043,8 +1079,8 @@ share/icons/mono/scalable/actions/smallcal.svgz share/icons/mono/scalable/actions/smallthumbnails.svgz share/icons/mono/scalable/actions/smiley.svgz share/icons/mono/scalable/actions/solarizetool.svgz +share/icons/mono/scalable/actions/speaker.svgz share/icons/mono/scalable/actions/spectrum.svgz -share/icons/mono/scalable/actions/spellcheck.svgz share/icons/mono/scalable/actions/spellcheck_from_cursor.svgz share/icons/mono/scalable/actions/spellcheck_selected.svgz share/icons/mono/scalable/actions/spinbox-widget.svgz @@ -1071,10 +1107,16 @@ share/icons/mono/scalable/actions/suspend_to_disk.svgz share/icons/mono/scalable/actions/suspend_to_ram.svgz share/icons/mono/scalable/actions/syntax.svgz share/icons/mono/scalable/actions/system-lock-screen.svgz +share/icons/mono/scalable/actions/system-log-out.svgz +share/icons/mono/scalable/actions/system-restart.svgz share/icons/mono/scalable/actions/system-run.svgz share/icons/mono/scalable/actions/system-search.svgz +share/icons/mono/scalable/actions/system-shutdown.svgz +share/icons/mono/scalable/actions/system-suspend-hibernate.svgz +share/icons/mono/scalable/actions/system-suspend.svgz share/icons/mono/scalable/actions/system-switch-user.svgz share/icons/mono/scalable/actions/tab-breakoff.svgz +share/icons/mono/scalable/actions/tab-close.svgz share/icons/mono/scalable/actions/tab-duplicate.svgz share/icons/mono/scalable/actions/tab-new-background.svgz share/icons/mono/scalable/actions/tab-new.svgz @@ -1082,10 +1124,11 @@ share/icons/mono/scalable/actions/tab-widget.svgz share/icons/mono/scalable/actions/tab_first.svgz share/icons/mono/scalable/actions/tab_last.svgz share/icons/mono/scalable/actions/tab_left.svgz -share/icons/mono/scalable/actions/tab_remove.svgz share/icons/mono/scalable/actions/tab_right.svgz share/icons/mono/scalable/actions/tables.svgz share/icons/mono/scalable/actions/tangent.svgz +share/icons/mono/scalable/actions/task-new.svgz +share/icons/mono/scalable/actions/task-reminder.svgz share/icons/mono/scalable/actions/tea_not_ready.svgz share/icons/mono/scalable/actions/template_a4.svgz share/icons/mono/scalable/actions/template_balancesheet.svgz @@ -1179,7 +1222,10 @@ share/icons/mono/scalable/actions/tool_star.svgz share/icons/mono/scalable/actions/tool_text.svgz share/icons/mono/scalable/actions/tool_uselastdir.svgz share/icons/mono/scalable/actions/tool_wizard_selection.svgz +share/icons/mono/scalable/actions/tools-check-spelling.svgz share/icons/mono/scalable/actions/tools-media-optical-burn.svgz +share/icons/mono/scalable/actions/tools-report-bug.svgz +share/icons/mono/scalable/actions/tools-wizard.svgz share/icons/mono/scalable/actions/tooltip.svgz share/icons/mono/scalable/actions/transform-rotate.svgz share/icons/mono/scalable/actions/transform.svgz @@ -1209,17 +1255,25 @@ share/icons/mono/scalable/actions/vertical_text.svgz share/icons/mono/scalable/actions/view-calendar-day.svgz share/icons/mono/scalable/actions/view-calendar-list.svgz share/icons/mono/scalable/actions/view-calendar-month.svgz -share/icons/mono/scalable/actions/view-calendar-todo.svgz +share/icons/mono/scalable/actions/view-calendar-tasks.svgz share/icons/mono/scalable/actions/view-calendar-upcoming-days.svgz share/icons/mono/scalable/actions/view-calendar-upcoming-events.svgz share/icons/mono/scalable/actions/view-calendar-week.svgz share/icons/mono/scalable/actions/view-calendar-workweek.svgz share/icons/mono/scalable/actions/view-choose.svgz +share/icons/mono/scalable/actions/view-close.svgz +share/icons/mono/scalable/actions/view-columns.svgz +share/icons/mono/scalable/actions/view-file-columns.svgz share/icons/mono/scalable/actions/view-filter.svgz share/icons/mono/scalable/actions/view-fullscreen.svgz share/icons/mono/scalable/actions/view-history.svgz share/icons/mono/scalable/actions/view-icon.svgz share/icons/mono/scalable/actions/view-left-right.svgz +share/icons/mono/scalable/actions/view-list-details.svgz +share/icons/mono/scalable/actions/view-list-icons.svgz +share/icons/mono/scalable/actions/view-list-text.svgz +share/icons/mono/scalable/actions/view-list-tree.svgz +share/icons/mono/scalable/actions/view-media-artist.svgz share/icons/mono/scalable/actions/view-media-visualization.svgz share/icons/mono/scalable/actions/view-pim-calendar.svgz share/icons/mono/scalable/actions/view-pim-contacts.svgz @@ -1229,11 +1283,18 @@ share/icons/mono/scalable/actions/view-pim-news.svgz share/icons/mono/scalable/actions/view-pim-notes.svgz share/icons/mono/scalable/actions/view-pim-summary.svgz share/icons/mono/scalable/actions/view-pim-tasks.svgz +share/icons/mono/scalable/actions/view-presentation.svgz +share/icons/mono/scalable/actions/view-preview.svgz +share/icons/mono/scalable/actions/view-refresh.svgz share/icons/mono/scalable/actions/view-remove.svgz share/icons/mono/scalable/actions/view-restore.svgz +share/icons/mono/scalable/actions/view-right-close.svgz +share/icons/mono/scalable/actions/view-right-new.svgz share/icons/mono/scalable/actions/view-sidetree.svgz share/icons/mono/scalable/actions/view-sort-ascending.svgz share/icons/mono/scalable/actions/view-sort-descending.svgz +share/icons/mono/scalable/actions/view-split-left-right.svgz +share/icons/mono/scalable/actions/view-split-top-bottom.svgz share/icons/mono/scalable/actions/view-statistics.svgz share/icons/mono/scalable/actions/view-top-bottom.svgz share/icons/mono/scalable/actions/view-tree.svgz @@ -1249,8 +1310,6 @@ share/icons/mono/scalable/actions/view_right.svgz share/icons/mono/scalable/actions/view_ruler.svgz share/icons/mono/scalable/actions/view_split.svgz share/icons/mono/scalable/actions/view_text.svgz -share/icons/mono/scalable/actions/viewmag.svgz -share/icons/mono/scalable/actions/viewmag1.svgz share/icons/mono/scalable/actions/viewmag_bis+.svgz share/icons/mono/scalable/actions/viewmag_bis-.svgz share/icons/mono/scalable/actions/viewmag_enlarge.svgz @@ -1261,7 +1320,6 @@ share/icons/mono/scalable/actions/viewmag_lock.svgz share/icons/mono/scalable/actions/viewmag_no.svgz share/icons/mono/scalable/actions/viewmag_shrink.svgz share/icons/mono/scalable/actions/viewmag_w.svgz -share/icons/mono/scalable/actions/viewmagfit.svgz share/icons/mono/scalable/actions/voicecall.svgz share/icons/mono/scalable/actions/w.svgz share/icons/mono/scalable/actions/webarchiver.svgz @@ -1270,21 +1328,23 @@ share/icons/mono/scalable/actions/webcamsend.svgz share/icons/mono/scalable/actions/webexport.svgz share/icons/mono/scalable/actions/wiki.svgz share/icons/mono/scalable/actions/window-close.svgz +share/icons/mono/scalable/actions/window-duplicate.svgz share/icons/mono/scalable/actions/window-new.svgz share/icons/mono/scalable/actions/window-suppressed.svgz share/icons/mono/scalable/actions/window.svgz -share/icons/mono/scalable/actions/window_duplicate.svgz share/icons/mono/scalable/actions/wired.svgz share/icons/mono/scalable/actions/wireless.svgz -share/icons/mono/scalable/actions/wizard.svgz share/icons/mono/scalable/actions/yahoo_mobile.svgz +share/icons/mono/scalable/actions/zoom-best-fit.svgz share/icons/mono/scalable/actions/zoom-in.svgz +share/icons/mono/scalable/actions/zoom-original.svgz share/icons/mono/scalable/actions/zoom-out.svgz +share/icons/mono/scalable/actions/zoom.svgz share/icons/mono/scalable/actions/zoom_disabled.svgz share/icons/mono/scalable/actions/zoom_enabled.svgz +share/icons/mono/scalable/apps/VBox.svgz share/icons/mono/scalable/apps/abakus.svgz share/icons/mono/scalable/apps/abiword.svgz -share/icons/mono/scalable/apps/accessibility_section.svgz share/icons/mono/scalable/apps/accessories-calculator.svgz share/icons/mono/scalable/apps/accessories-character-map.svgz share/icons/mono/scalable/apps/accessories-dictionary.svgz @@ -1296,6 +1356,7 @@ share/icons/mono/scalable/apps/amarok.svgz share/icons/mono/scalable/apps/amor.svgz share/icons/mono/scalable/apps/antivirus.svgz share/icons/mono/scalable/apps/apollon.svgz +share/icons/mono/scalable/apps/arora.svgz share/icons/mono/scalable/apps/assistant.svgz share/icons/mono/scalable/apps/atlantik.svgz share/icons/mono/scalable/apps/audacity.svgz @@ -1305,8 +1366,6 @@ share/icons/mono/scalable/apps/blender.svgz share/icons/mono/scalable/apps/blinken.svgz share/icons/mono/scalable/apps/bluefish.svgz share/icons/mono/scalable/apps/bookcase.svgz -share/icons/mono/scalable/apps/browser.svgz -share/icons/mono/scalable/apps/bug.svgz share/icons/mono/scalable/apps/calc.svgz share/icons/mono/scalable/apps/catalogmanager.svgz share/icons/mono/scalable/apps/categories.svgz @@ -1322,6 +1381,7 @@ share/icons/mono/scalable/apps/displayconfig.svgz share/icons/mono/scalable/apps/dopewars-pill.svgz share/icons/mono/scalable/apps/download_manager.svgz share/icons/mono/scalable/apps/eclipse.svgz +share/icons/mono/scalable/apps/ekiga.svgz share/icons/mono/scalable/apps/emacs.svgz share/icons/mono/scalable/apps/email.svgz share/icons/mono/scalable/apps/energy_star.svgz @@ -1333,15 +1393,11 @@ share/icons/mono/scalable/apps/falconseye.svgz share/icons/mono/scalable/apps/fax.svgz share/icons/mono/scalable/apps/fifteenpieces.svgz share/icons/mono/scalable/apps/filelight.svgz -share/icons/mono/scalable/apps/fileshare.svgz -share/icons/mono/scalable/apps/filetypes.svgz share/icons/mono/scalable/apps/flashkard.svgz share/icons/mono/scalable/apps/fsview.svgz share/icons/mono/scalable/apps/gaim.svgz share/icons/mono/scalable/apps/gimp.svgz share/icons/mono/scalable/apps/gkrellm.svgz -share/icons/mono/scalable/apps/gnome.svgz -share/icons/mono/scalable/apps/gnomemeeting.svgz share/icons/mono/scalable/apps/gnucash.svgz share/icons/mono/scalable/apps/gnumeric.svgz share/icons/mono/scalable/apps/gnutella.svgz @@ -1353,10 +1409,10 @@ share/icons/mono/scalable/apps/gvim.svgz share/icons/mono/scalable/apps/gwenview.svgz share/icons/mono/scalable/apps/gxmame.svgz share/icons/mono/scalable/apps/hardware.svgz -share/icons/mono/scalable/apps/hardware_info.svgz share/icons/mono/scalable/apps/help-browser.svgz share/icons/mono/scalable/apps/highlight.svgz share/icons/mono/scalable/apps/hw_unknown.svgz +share/icons/mono/scalable/apps/hwinfo.svgz share/icons/mono/scalable/apps/icewm.svgz share/icons/mono/scalable/apps/ieee1394.svgz share/icons/mono/scalable/apps/im-aim.svgz @@ -1370,11 +1426,14 @@ share/icons/mono/scalable/apps/im-sms.svgz share/icons/mono/scalable/apps/im-yahoo.svgz share/icons/mono/scalable/apps/imagegallery.svgz share/icons/mono/scalable/apps/inkscape.svgz +share/icons/mono/scalable/apps/internet-web-browser.svgz share/icons/mono/scalable/apps/irkick.svgz share/icons/mono/scalable/apps/isp-disabled.svgz share/icons/mono/scalable/apps/juk.svgz share/icons/mono/scalable/apps/k3b.svgz share/icons/mono/scalable/apps/kaboodle.svgz +share/icons/mono/scalable/apps/kaddressbook.svgz +share/icons/mono/scalable/apps/kaffeine.svgz share/icons/mono/scalable/apps/kalarm.svgz share/icons/mono/scalable/apps/kalzium.svgz share/icons/mono/scalable/apps/kamix.svgz @@ -1389,7 +1448,6 @@ share/icons/mono/scalable/apps/kate.svgz share/icons/mono/scalable/apps/katomic.svgz share/icons/mono/scalable/apps/kaudiocreator.svgz share/icons/mono/scalable/apps/kazaa.svgz -share/icons/mono/scalable/apps/kbabel.svgz share/icons/mono/scalable/apps/kbackgammon.svgz share/icons/mono/scalable/apps/kbackgammon_engine.svgz share/icons/mono/scalable/apps/kbatterymonitor.svgz @@ -1423,7 +1481,6 @@ share/icons/mono/scalable/apps/kcolorchooser.svgz share/icons/mono/scalable/apps/kcoloredit.svgz share/icons/mono/scalable/apps/kconfigure.svgz share/icons/mono/scalable/apps/kcpuload.svgz -share/icons/mono/scalable/apps/kcron.svgz share/icons/mono/scalable/apps/kdat.svgz share/icons/mono/scalable/apps/kde.svgz share/icons/mono/scalable/apps/kdenlive.svgz @@ -1443,6 +1500,7 @@ share/icons/mono/scalable/apps/keurocalc.svgz share/icons/mono/scalable/apps/kexi.svgz share/icons/mono/scalable/apps/keyboard-shortcut.svgz share/icons/mono/scalable/apps/kfilereplace.svgz +share/icons/mono/scalable/apps/kfind.svgz share/icons/mono/scalable/apps/kflog.svgz share/icons/mono/scalable/apps/kfloppy.svgz share/icons/mono/scalable/apps/kformdesigner.svgz @@ -1493,7 +1551,6 @@ share/icons/mono/scalable/apps/kmerlin.svgz share/icons/mono/scalable/apps/kmidi.svgz share/icons/mono/scalable/apps/kmines.svgz share/icons/mono/scalable/apps/kmix.svgz -share/icons/mono/scalable/apps/kmixdocked_mute.svgz share/icons/mono/scalable/apps/kmldonkey.svgz share/icons/mono/scalable/apps/kmoon.svgz share/icons/mono/scalable/apps/kmousetool.svgz @@ -1508,6 +1565,7 @@ share/icons/mono/scalable/apps/knetwalk.svgz share/icons/mono/scalable/apps/knetworkmanager.svgz share/icons/mono/scalable/apps/knewsticker.svgz share/icons/mono/scalable/apps/knoda.svgz +share/icons/mono/scalable/apps/knode.svgz share/icons/mono/scalable/apps/knoppix-penguin.svgz share/icons/mono/scalable/apps/knotes.svgz share/icons/mono/scalable/apps/kodo.svgz @@ -1531,6 +1589,7 @@ share/icons/mono/scalable/apps/kopete_avdevice.svgz share/icons/mono/scalable/apps/kopete_offline.svgz share/icons/mono/scalable/apps/kopete_some_away.svgz share/icons/mono/scalable/apps/kopete_some_online.svgz +share/icons/mono/scalable/apps/korganizer.svgz share/icons/mono/scalable/apps/korn.svgz share/icons/mono/scalable/apps/kpager.svgz share/icons/mono/scalable/apps/kpaint.svgz @@ -1574,11 +1633,11 @@ share/icons/mono/scalable/apps/ksnake.svgz share/icons/mono/scalable/apps/ksnapshot.svgz share/icons/mono/scalable/apps/ksokoban.svgz share/icons/mono/scalable/apps/kspaceduel.svgz -share/icons/mono/scalable/apps/ksplash.svgz share/icons/mono/scalable/apps/kspread.svgz share/icons/mono/scalable/apps/kstars.svgz share/icons/mono/scalable/apps/kstreamripper.svgz share/icons/mono/scalable/apps/ksysguardd.svgz +share/icons/mono/scalable/apps/ksystemlog.svgz share/icons/mono/scalable/apps/ksysv.svgz share/icons/mono/scalable/apps/ktalkd.svgz share/icons/mono/scalable/apps/kteatime.svgz @@ -1603,13 +1662,11 @@ share/icons/mono/scalable/apps/kverbos.svgz share/icons/mono/scalable/apps/kview.svgz share/icons/mono/scalable/apps/kvim.svgz share/icons/mono/scalable/apps/kvirc.svgz -share/icons/mono/scalable/apps/kvoctrain.svgz -share/icons/mono/scalable/apps/kwallet.svgz +share/icons/mono/scalable/apps/kwalletmanager.svgz share/icons/mono/scalable/apps/kwave.svgz share/icons/mono/scalable/apps/kweather.svgz share/icons/mono/scalable/apps/kwifimanager.svgz share/icons/mono/scalable/apps/kwikdisk.svgz -share/icons/mono/scalable/apps/kwin4.svgz share/icons/mono/scalable/apps/kword.svgz share/icons/mono/scalable/apps/kwordquiz.svgz share/icons/mono/scalable/apps/kworldclock.svgz @@ -1617,12 +1674,15 @@ share/icons/mono/scalable/apps/kynaptic.svgz share/icons/mono/scalable/apps/kzenexplorer.svgz share/icons/mono/scalable/apps/laptop_battery.svgz share/icons/mono/scalable/apps/laptop_pcmcia.svgz +share/icons/mono/scalable/apps/lastfm.svgz share/icons/mono/scalable/apps/ldap_client.svgz share/icons/mono/scalable/apps/licq.svgz share/icons/mono/scalable/apps/limewire.svgz share/icons/mono/scalable/apps/linguist.svgz +share/icons/mono/scalable/apps/lokalize.svgz share/icons/mono/scalable/apps/lskat.svgz share/icons/mono/scalable/apps/mac.svgz +share/icons/mono/scalable/apps/mailody.svgz share/icons/mono/scalable/apps/mathematica.svgz share/icons/mono/scalable/apps/menubar.svgz share/icons/mono/scalable/apps/mozilla-firefox.svgz @@ -1638,49 +1698,63 @@ share/icons/mono/scalable/apps/nedit.svgz share/icons/mono/scalable/apps/netscape.svgz share/icons/mono/scalable/apps/network_advanced.svgz share/icons/mono/scalable/apps/nfs.svgz -share/icons/mono/scalable/apps/noatun.svgz share/icons/mono/scalable/apps/ntp-client.svgz share/icons/mono/scalable/apps/nvu.svgz +share/icons/mono/scalable/apps/nxclient-icon.svgz share/icons/mono/scalable/apps/office-addressbook.svgz share/icons/mono/scalable/apps/office-calendar.svgz -share/icons/mono/scalable/apps/ooo_calc.svgz +share/icons/mono/scalable/apps/ooo-calc.svgz +share/icons/mono/scalable/apps/ooo-draw.svgz +share/icons/mono/scalable/apps/ooo-impress.svgz +share/icons/mono/scalable/apps/ooo-math.svgz +share/icons/mono/scalable/apps/ooo-printeradmin.svgz +share/icons/mono/scalable/apps/ooo-template.svgz +share/icons/mono/scalable/apps/ooo-web.svgz +share/icons/mono/scalable/apps/ooo-writer.svgz share/icons/mono/scalable/apps/ooo_chart.svgz -share/icons/mono/scalable/apps/ooo_draw.svgz -share/icons/mono/scalable/apps/ooo_impress.svgz -share/icons/mono/scalable/apps/ooo_math.svgz -share/icons/mono/scalable/apps/ooo_printeradmin.svgz share/icons/mono/scalable/apps/ooo_setup.svgz -share/icons/mono/scalable/apps/ooo_template.svgz -share/icons/mono/scalable/apps/ooo_web.svgz -share/icons/mono/scalable/apps/ooo_writer.svgz share/icons/mono/scalable/apps/openft.svgz share/icons/mono/scalable/apps/openoffice.svgz share/icons/mono/scalable/apps/opera.svgz share/icons/mono/scalable/apps/palm-pilot.svgz share/icons/mono/scalable/apps/pan.svgz share/icons/mono/scalable/apps/panel_settings.svgz +share/icons/mono/scalable/apps/parley.svgz share/icons/mono/scalable/apps/password.svgz share/icons/mono/scalable/apps/pcmcia.svgz share/icons/mono/scalable/apps/photobook.svgz share/icons/mono/scalable/apps/potracegui.svgz +share/icons/mono/scalable/apps/preferences-desktop-accessibility.svgz share/icons/mono/scalable/apps/preferences-desktop-color.svgz +share/icons/mono/scalable/apps/preferences-desktop-display-randr.svgz +share/icons/mono/scalable/apps/preferences-desktop-display.svgz +share/icons/mono/scalable/apps/preferences-desktop-filetype-association.svgz share/icons/mono/scalable/apps/preferences-desktop-font.svgz +share/icons/mono/scalable/apps/preferences-desktop-gaming.svgz share/icons/mono/scalable/apps/preferences-desktop-icons.svgz +share/icons/mono/scalable/apps/preferences-desktop-keyboard.svgz share/icons/mono/scalable/apps/preferences-desktop-launch-feedback.svgz share/icons/mono/scalable/apps/preferences-desktop-locale.svgz +share/icons/mono/scalable/apps/preferences-desktop-mouse.svgz share/icons/mono/scalable/apps/preferences-desktop-notification.svgz share/icons/mono/scalable/apps/preferences-desktop-printer.svgz share/icons/mono/scalable/apps/preferences-desktop-screensaver.svgz share/icons/mono/scalable/apps/preferences-desktop-sound.svgz share/icons/mono/scalable/apps/preferences-desktop-text-to-speech.svgz +share/icons/mono/scalable/apps/preferences-desktop-theme-style.svgz share/icons/mono/scalable/apps/preferences-desktop-theme.svgz share/icons/mono/scalable/apps/preferences-desktop-user.svgz share/icons/mono/scalable/apps/preferences-desktop-wallpaper.svgz share/icons/mono/scalable/apps/preferences-system-bluetooth.svgz +share/icons/mono/scalable/apps/preferences-system-cron.svgz share/icons/mono/scalable/apps/preferences-system-login.svgz +share/icons/mono/scalable/apps/preferences-system-network-proxy.svgz +share/icons/mono/scalable/apps/preferences-system-network-sharing.svgz share/icons/mono/scalable/apps/preferences-system-performance.svgz share/icons/mono/scalable/apps/preferences-system-power-management.svgz share/icons/mono/scalable/apps/preferences-system-session-services.svgz +share/icons/mono/scalable/apps/preferences-system-solid.svgz +share/icons/mono/scalable/apps/preferences-system-splash.svgz share/icons/mono/scalable/apps/preferences-system-time.svgz share/icons/mono/scalable/apps/preferences-system-windows.svgz share/icons/mono/scalable/apps/preferences-web-browser-adblock.svgz @@ -1688,12 +1762,12 @@ share/icons/mono/scalable/apps/preferences-web-browser-cache.svgz share/icons/mono/scalable/apps/preferences-web-browser-cookies.svgz share/icons/mono/scalable/apps/preferences-web-browser-identification.svgz share/icons/mono/scalable/apps/preferences-web-browser-shortcuts.svgz -share/icons/mono/scalable/apps/proxy.svgz +share/icons/mono/scalable/apps/preferences-web-browser-stylesheets.svgz share/icons/mono/scalable/apps/qt.svgz +share/icons/mono/scalable/apps/qtconfig.svgz share/icons/mono/scalable/apps/qtella.svgz share/icons/mono/scalable/apps/quanta.svgz share/icons/mono/scalable/apps/quicktime.svgz -share/icons/mono/scalable/apps/randr.svgz share/icons/mono/scalable/apps/realplayer.svgz share/icons/mono/scalable/apps/remote.svgz share/icons/mono/scalable/apps/rsibreak.svgz @@ -1704,8 +1778,6 @@ share/icons/mono/scalable/apps/showfoto.svgz share/icons/mono/scalable/apps/showimg.svgz share/icons/mono/scalable/apps/shredder.svgz share/icons/mono/scalable/apps/sodipodi.svgz -share/icons/mono/scalable/apps/soundcard.svgz -share/icons/mono/scalable/apps/style.svgz share/icons/mono/scalable/apps/superkaramba.svgz share/icons/mono/scalable/apps/synaptic.svgz share/icons/mono/scalable/apps/system-file-manager.svgz @@ -1723,22 +1795,23 @@ share/icons/mono/scalable/apps/utilities-system-monitor.svgz share/icons/mono/scalable/apps/utilities-terminal.svgz share/icons/mono/scalable/apps/vnc.svgz share/icons/mono/scalable/apps/wabi.svgz -share/icons/mono/scalable/apps/web-browser.svgz share/icons/mono/scalable/apps/win_apps.svgz share/icons/mono/scalable/apps/wine.svgz share/icons/mono/scalable/apps/wp.svgz -share/icons/mono/scalable/apps/x.svgz share/icons/mono/scalable/apps/xeyes.svgz share/icons/mono/scalable/apps/xfig.svgz share/icons/mono/scalable/apps/xfmail.svgz share/icons/mono/scalable/apps/xine.svgz share/icons/mono/scalable/apps/xmms.svgz +share/icons/mono/scalable/apps/xorg.svgz share/icons/mono/scalable/apps/xosview.svgz share/icons/mono/scalable/apps/xv.svgz share/icons/mono/scalable/apps/yakuake.svgz share/icons/mono/scalable/apps/zip.svgz share/icons/mono/scalable/categories/applications-accessories.svgz share/icons/mono/scalable/categories/applications-development.svgz +share/icons/mono/scalable/categories/applications-education-language.svgz +share/icons/mono/scalable/categories/applications-education-mathematics.svgz share/icons/mono/scalable/categories/applications-education.svgz share/icons/mono/scalable/categories/applications-engineering.svgz share/icons/mono/scalable/categories/applications-games-arcade.svgz @@ -1760,16 +1833,22 @@ share/icons/mono/scalable/categories/applications-utilities.svgz share/icons/mono/scalable/categories/preferences-desktop-peripherals.svgz share/icons/mono/scalable/categories/preferences-desktop-personal.svgz share/icons/mono/scalable/categories/preferences-desktop.svgz +share/icons/mono/scalable/categories/preferences-other.svgz share/icons/mono/scalable/categories/preferences-system-network.svgz share/icons/mono/scalable/categories/preferences-system.svgz share/icons/mono/scalable/categories/system-help.svgz +share/icons/mono/scalable/devices/audio-card.svgz +share/icons/mono/scalable/devices/audio-headset.svgz +share/icons/mono/scalable/devices/audio-input-microphone.svgz share/icons/mono/scalable/devices/camera-photo.svgz share/icons/mono/scalable/devices/computer-laptop.svgz share/icons/mono/scalable/devices/computer.svgz share/icons/mono/scalable/devices/cpu.svgz share/icons/mono/scalable/devices/drive-harddisk.svgz +share/icons/mono/scalable/devices/drive-optical.svgz share/icons/mono/scalable/devices/drive-remote.svgz share/icons/mono/scalable/devices/drive-removable-media-firewire.svgz +share/icons/mono/scalable/devices/drive-removable-media-usb-pendrive.svgz share/icons/mono/scalable/devices/drive-removable-media-usb.svgz share/icons/mono/scalable/devices/drive-removable-media.svgz share/icons/mono/scalable/devices/input-gaming.svgz @@ -1784,165 +1863,273 @@ share/icons/mono/scalable/devices/media-floppy.svgz share/icons/mono/scalable/devices/media-optical-audio.svgz share/icons/mono/scalable/devices/media-optical-recordable.svgz share/icons/mono/scalable/devices/media-optical.svgz +share/icons/mono/scalable/devices/media-tape.svgz share/icons/mono/scalable/devices/memory.svgz share/icons/mono/scalable/devices/modem.svgz share/icons/mono/scalable/devices/multimedia-player-apple-ipod.svgz +share/icons/mono/scalable/devices/multimedia-player-ipod.svgz +share/icons/mono/scalable/devices/multimedia-player.svgz +share/icons/mono/scalable/devices/network-wired.svgz +share/icons/mono/scalable/devices/network-wireless.svgz share/icons/mono/scalable/devices/pda.svgz +share/icons/mono/scalable/devices/phone.svgz share/icons/mono/scalable/devices/printer.svgz share/icons/mono/scalable/devices/scanner.svgz +share/icons/mono/scalable/devices/video-display.svgz share/icons/mono/scalable/devices/video-television.svgz +share/icons/mono/scalable/emblems/emblem-important.svgz +share/icons/mono/scalable/emblems/emblem-link.svgz +share/icons/mono/scalable/emblems/emblem-symbolic-link.svgz +share/icons/mono/scalable/emotes/face-smile-big.svgz share/icons/mono/scalable/mimetypes/application-illustrator.svgz share/icons/mono/scalable/mimetypes/application-javascript.svgz share/icons/mono/scalable/mimetypes/application-msword.svgz +share/icons/mono/scalable/mimetypes/application-octet-stream.svgz share/icons/mono/scalable/mimetypes/application-pgp-encrypted.svgz share/icons/mono/scalable/mimetypes/application-postscript.svgz share/icons/mono/scalable/mimetypes/application-vnd.ms-excel.svgz share/icons/mono/scalable/mimetypes/application-vnd.ms-powerpoint.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.chart.svgz share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.database.svgz share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.formula.svgz -share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.graphics-template.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.graphics.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.image.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.presentation.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.spreadsheet.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.text.svgz +share/icons/mono/scalable/mimetypes/application-vnd.rn-realmedia.svgz +share/icons/mono/scalable/mimetypes/application-vnd.stardivision.calc.svgz share/icons/mono/scalable/mimetypes/application-vnd.stardivision.draw.svgz +share/icons/mono/scalable/mimetypes/application-vnd.sun.xml.draw.svgz +share/icons/mono/scalable/mimetypes/application-vnd.sun.xml.draw.template.svgz share/icons/mono/scalable/mimetypes/application-x-7z-compressed.svgz share/icons/mono/scalable/mimetypes/application-x-awk.svgz share/icons/mono/scalable/mimetypes/application-x-bittorrent.svgz share/icons/mono/scalable/mimetypes/application-x-blender.svgz +share/icons/mono/scalable/mimetypes/application-x-cd-image.svgz share/icons/mono/scalable/mimetypes/application-x-cda.svgz share/icons/mono/scalable/mimetypes/application-x-core.svgz share/icons/mono/scalable/mimetypes/application-x-cue.svgz share/icons/mono/scalable/mimetypes/application-x-deb.svgz share/icons/mono/scalable/mimetypes/application-x-dvi.svgz +share/icons/mono/scalable/mimetypes/application-x-egon.svgz share/icons/mono/scalable/mimetypes/application-x-font-speedo.svgz +share/icons/mono/scalable/mimetypes/application-x-font-ttf.svgz +share/icons/mono/scalable/mimetypes/application-x-font-type1.svgz +share/icons/mono/scalable/mimetypes/application-x-java-archive.svgz +share/icons/mono/scalable/mimetypes/application-x-java.svgz +share/icons/mono/scalable/mimetypes/application-x-kaffeine.svgz +share/icons/mono/scalable/mimetypes/application-x-karbon.svgz +share/icons/mono/scalable/mimetypes/application-x-kchart.svgz share/icons/mono/scalable/mimetypes/application-x-kcsrc.svgz +share/icons/mono/scalable/mimetypes/application-x-kexiproject-shortcut.svgz +share/icons/mono/scalable/mimetypes/application-x-kexiproject.svgz +share/icons/mono/scalable/mimetypes/application-x-kformula.svgz +share/icons/mono/scalable/mimetypes/application-x-kgetlist.svgz +share/icons/mono/scalable/mimetypes/application-x-kig.svgz +share/icons/mono/scalable/mimetypes/application-x-kivio.svgz share/icons/mono/scalable/mimetypes/application-x-kontour.svgz +share/icons/mono/scalable/mimetypes/application-x-kopete-emoticons.svgz +share/icons/mono/scalable/mimetypes/application-x-kpovmodeler.svgz +share/icons/mono/scalable/mimetypes/application-x-kpresenter.svgz +share/icons/mono/scalable/mimetypes/application-x-krita.svgz +share/icons/mono/scalable/mimetypes/application-x-kspread.svgz share/icons/mono/scalable/mimetypes/application-x-kudesigner.svgz +share/icons/mono/scalable/mimetypes/application-x-kugar.svgz +share/icons/mono/scalable/mimetypes/application-x-kword.svgz +share/icons/mono/scalable/mimetypes/application-x-kwordquiz.svgz +share/icons/mono/scalable/mimetypes/application-x-lyx.svgz share/icons/mono/scalable/mimetypes/application-x-mimearchive.svgz +share/icons/mono/scalable/mimetypes/application-x-mplayer2.svgz +share/icons/mono/scalable/mimetypes/application-x-ms-dos-executable.svgz +share/icons/mono/scalable/mimetypes/application-x-mswinurl.svgz share/icons/mono/scalable/mimetypes/application-x-mswrite.svgz share/icons/mono/scalable/mimetypes/application-x-object.svgz +share/icons/mono/scalable/mimetypes/application-x-perl.svgz +share/icons/mono/scalable/mimetypes/application-x-php.svgz +share/icons/mono/scalable/mimetypes/application-x-python-bytecode.svgz +share/icons/mono/scalable/mimetypes/application-x-quattropro.svgz share/icons/mono/scalable/mimetypes/application-x-rpm.svgz share/icons/mono/scalable/mimetypes/application-x-ruby.svgz -share/icons/mono/scalable/mimetypes/application-x-shockwave-flash.svgz +share/icons/mono/scalable/mimetypes/application-x-sharedlib.svgz +share/icons/mono/scalable/mimetypes/application-x-superkaramba.svgz +share/icons/mono/scalable/mimetypes/application-x-tar.svgz share/icons/mono/scalable/mimetypes/application-x-tex-gf.svgz share/icons/mono/scalable/mimetypes/application-x-tex-pk.svgz +share/icons/mono/scalable/mimetypes/application-x-tgif.svgz share/icons/mono/scalable/mimetypes/application-x-trash.svgz share/icons/mono/scalable/mimetypes/application-x-troff-man.svgz share/icons/mono/scalable/mimetypes/application-x-uml.svgz +share/icons/mono/scalable/mimetypes/application-x-vnd.kde.kexi.svgz +share/icons/mono/scalable/mimetypes/application-x-vnd.kde.kugar.mixed.svgz +share/icons/mono/scalable/mimetypes/application-x-vnd.stardivision.chart.svgz +share/icons/mono/scalable/mimetypes/application-x-wmf.svgz share/icons/mono/scalable/mimetypes/application-x-zerosize.svgz +share/icons/mono/scalable/mimetypes/application-xml.svgz +share/icons/mono/scalable/mimetypes/application-xscd.svgz +share/icons/mono/scalable/mimetypes/application-xslt+xml.svgz +share/icons/mono/scalable/mimetypes/application-zip.svgz share/icons/mono/scalable/mimetypes/applix.svgz share/icons/mono/scalable/mimetypes/ascii.svgz share/icons/mono/scalable/mimetypes/audio-aac.svgz +share/icons/mono/scalable/mimetypes/audio-ac3.svgz +share/icons/mono/scalable/mimetypes/audio-basic.svgz share/icons/mono/scalable/mimetypes/audio-midi.svgz +share/icons/mono/scalable/mimetypes/audio-mp4.svgz +share/icons/mono/scalable/mimetypes/audio-mpeg.svgz +share/icons/mono/scalable/mimetypes/audio-prs.sid.svgz +share/icons/mono/scalable/mimetypes/audio-template.svgz +share/icons/mono/scalable/mimetypes/audio-vnd.rn-realaudio.svgz +share/icons/mono/scalable/mimetypes/audio-vnd.rn-realvideo.svgz +share/icons/mono/scalable/mimetypes/audio-x-adpcm.svgz +share/icons/mono/scalable/mimetypes/audio-x-aiff.svgz +share/icons/mono/scalable/mimetypes/audio-x-flac+ogg.svgz +share/icons/mono/scalable/mimetypes/audio-x-flac.svgz +share/icons/mono/scalable/mimetypes/audio-x-generic.svgz +share/icons/mono/scalable/mimetypes/audio-x-matroska.svgz +share/icons/mono/scalable/mimetypes/audio-x-mod.svgz +share/icons/mono/scalable/mimetypes/audio-x-monkey.svgz +share/icons/mono/scalable/mimetypes/audio-x-mp2.svgz +share/icons/mono/scalable/mimetypes/audio-x-mpegurl.svgz +share/icons/mono/scalable/mimetypes/audio-x-ms-wma.svgz +share/icons/mono/scalable/mimetypes/audio-x-musepack.svgz +share/icons/mono/scalable/mimetypes/audio-x-scpls.svgz +share/icons/mono/scalable/mimetypes/audio-x-speex+ogg.svgz +share/icons/mono/scalable/mimetypes/audio-x-vorbis+ogg.svgz +share/icons/mono/scalable/mimetypes/audio-x-wav.svgz share/icons/mono/scalable/mimetypes/backup.svgz share/icons/mono/scalable/mimetypes/cdbo_list.svgz share/icons/mono/scalable/mimetypes/cdr.svgz -share/icons/mono/scalable/mimetypes/chart.svgz share/icons/mono/scalable/mimetypes/colorset.svgz share/icons/mono/scalable/mimetypes/configure.svgz share/icons/mono/scalable/mimetypes/document2.svgz -share/icons/mono/scalable/mimetypes/exec_wine.svgz share/icons/mono/scalable/mimetypes/executable.svgz share/icons/mono/scalable/mimetypes/file_locked.svgz share/icons/mono/scalable/mimetypes/file_temporary.svgz share/icons/mono/scalable/mimetypes/font_bitmap.svgz -share/icons/mono/scalable/mimetypes/font_truetype.svgz -share/icons/mono/scalable/mimetypes/font_type1.svgz share/icons/mono/scalable/mimetypes/gnome-library.svgz share/icons/mono/scalable/mimetypes/gnome_app_info.svgz share/icons/mono/scalable/mimetypes/graphic.svgz share/icons/mono/scalable/mimetypes/igc.svgz +share/icons/mono/scalable/mimetypes/image-bmp.svgz +share/icons/mono/scalable/mimetypes/image-cgm.svgz +share/icons/mono/scalable/mimetypes/image-fax-g3.svgz +share/icons/mono/scalable/mimetypes/image-gif.svgz +share/icons/mono/scalable/mimetypes/image-jp2.svgz +share/icons/mono/scalable/mimetypes/image-jpeg.svgz +share/icons/mono/scalable/mimetypes/image-png.svgz +share/icons/mono/scalable/mimetypes/image-svg+xml.svgz +share/icons/mono/scalable/mimetypes/image-template.svgz +share/icons/mono/scalable/mimetypes/image-tiff.svgz share/icons/mono/scalable/mimetypes/image-vnd.djvu.svgz -share/icons/mono/scalable/mimetypes/images.svgz -share/icons/mono/scalable/mimetypes/info.svgz +share/icons/mono/scalable/mimetypes/image-x-applix-graphics.svgz +share/icons/mono/scalable/mimetypes/image-x-dcraw.svgz +share/icons/mono/scalable/mimetypes/image-x-dds.svgz +share/icons/mono/scalable/mimetypes/image-x-eps.svgz +share/icons/mono/scalable/mimetypes/image-x-exr.svgz +share/icons/mono/scalable/mimetypes/image-x-fits.svgz +share/icons/mono/scalable/mimetypes/image-x-generic.svgz +share/icons/mono/scalable/mimetypes/image-x-hdr.svgz +share/icons/mono/scalable/mimetypes/image-x-ico.svgz +share/icons/mono/scalable/mimetypes/image-x-jng.svgz +share/icons/mono/scalable/mimetypes/image-x-msod.svgz +share/icons/mono/scalable/mimetypes/image-x-pcx.svgz +share/icons/mono/scalable/mimetypes/image-x-photo-cd.svgz +share/icons/mono/scalable/mimetypes/image-x-portable-bitmap.svgz +share/icons/mono/scalable/mimetypes/image-x-portable-graymap.svgz +share/icons/mono/scalable/mimetypes/image-x-portable-pixmap.svgz +share/icons/mono/scalable/mimetypes/image-x-psd.svgz +share/icons/mono/scalable/mimetypes/image-x-rgb.svgz +share/icons/mono/scalable/mimetypes/image-x-tga.svgz +share/icons/mono/scalable/mimetypes/image-x-vnd.trolltech.qpicture.svgz +share/icons/mono/scalable/mimetypes/image-x-xbitmap.svgz +share/icons/mono/scalable/mimetypes/image-x-xcf.svgz +share/icons/mono/scalable/mimetypes/image-x-xfig.svgz +share/icons/mono/scalable/mimetypes/image-x-xpixmap.svgz +share/icons/mono/scalable/mimetypes/inode-directory.svgz share/icons/mono/scalable/mimetypes/ipod.svgz -share/icons/mono/scalable/mimetypes/java_jar.svgz -share/icons/mono/scalable/mimetypes/karbon_karbon.svgz -share/icons/mono/scalable/mimetypes/kchart_chrt.svgz share/icons/mono/scalable/mimetypes/kdevelop_project.svgz -share/icons/mono/scalable/mimetypes/kexi.svgz -share/icons/mono/scalable/mimetypes/kexi_kexi.svgz -share/icons/mono/scalable/mimetypes/kexiproject_shortcut.svgz -share/icons/mono/scalable/mimetypes/kexiproject_sqlite.svgz -share/icons/mono/scalable/mimetypes/kexiproject_sqlite2.svgz -share/icons/mono/scalable/mimetypes/kformula_kfo.svgz -share/icons/mono/scalable/mimetypes/kget_list.svgz -share/icons/mono/scalable/mimetypes/kig_doc.svgz -share/icons/mono/scalable/mimetypes/kivio_flw.svgz share/icons/mono/scalable/mimetypes/kmultiple.svgz share/icons/mono/scalable/mimetypes/kmy.svgz share/icons/mono/scalable/mimetypes/koffice.svgz -share/icons/mono/scalable/mimetypes/kopete_emoticons.svgz -share/icons/mono/scalable/mimetypes/kpovmodeler_doc.svgz -share/icons/mono/scalable/mimetypes/kpresenter_kpr.svgz -share/icons/mono/scalable/mimetypes/krita_kra.svgz -share/icons/mono/scalable/mimetypes/kspread_ksp.svgz -share/icons/mono/scalable/mimetypes/kugar_kud.svgz -share/icons/mono/scalable/mimetypes/kword_kwd.svgz -share/icons/mono/scalable/mimetypes/kwordquiz_doc.svgz share/icons/mono/scalable/mimetypes/lpl.svgz share/icons/mono/scalable/mimetypes/message-news.svgz share/icons/mono/scalable/mimetypes/metafont.svgz share/icons/mono/scalable/mimetypes/mime.svgz -share/icons/mono/scalable/mimetypes/mime_kaffeine.svgz -share/icons/mono/scalable/mimetypes/mime_lyx.svgz -share/icons/mono/scalable/mimetypes/mime_video.svgz share/icons/mono/scalable/mimetypes/misc.svgz -share/icons/mono/scalable/mimetypes/misc_doc.svgz -share/icons/mono/scalable/mimetypes/moc_src.svgz share/icons/mono/scalable/mimetypes/money.svgz share/icons/mono/scalable/mimetypes/mozilla_doc.svgz share/icons/mono/scalable/mimetypes/netscape.svgz share/icons/mono/scalable/mimetypes/netscape_doc.svgz -share/icons/mono/scalable/mimetypes/php.svgz share/icons/mono/scalable/mimetypes/printer.svgz -share/icons/mono/scalable/mimetypes/psd.svgz -share/icons/mono/scalable/mimetypes/quicktime.svgz -share/icons/mono/scalable/mimetypes/readme.svgz -share/icons/mono/scalable/mimetypes/real.svgz -share/icons/mono/scalable/mimetypes/real_doc.svgz share/icons/mono/scalable/mimetypes/reject.svgz share/icons/mono/scalable/mimetypes/resource.svgz share/icons/mono/scalable/mimetypes/soffice.svgz -share/icons/mono/scalable/mimetypes/source_c.svgz -share/icons/mono/scalable/mimetypes/source_cpp.svgz -share/icons/mono/scalable/mimetypes/source_f.svgz -share/icons/mono/scalable/mimetypes/source_h.svgz share/icons/mono/scalable/mimetypes/source_j.svgz -share/icons/mono/scalable/mimetypes/source_java.svgz share/icons/mono/scalable/mimetypes/source_l.svgz -share/icons/mono/scalable/mimetypes/source_moc.svgz -share/icons/mono/scalable/mimetypes/source_mono.svgz share/icons/mono/scalable/mimetypes/source_o.svgz -share/icons/mono/scalable/mimetypes/source_p.svgz -share/icons/mono/scalable/mimetypes/source_php.svgz -share/icons/mono/scalable/mimetypes/source_pl.svgz -share/icons/mono/scalable/mimetypes/source_py.svgz share/icons/mono/scalable/mimetypes/source_s.svgz -share/icons/mono/scalable/mimetypes/source_xml.svgz share/icons/mono/scalable/mimetypes/source_y.svgz -share/icons/mono/scalable/mimetypes/sql.svgz -share/icons/mono/scalable/mimetypes/superkaramba_theme.svgz -share/icons/mono/scalable/mimetypes/tar.svgz share/icons/mono/scalable/mimetypes/tellico.svgz share/icons/mono/scalable/mimetypes/template.svgz share/icons/mono/scalable/mimetypes/template_source.svgz share/icons/mono/scalable/mimetypes/text-calendar.svgz share/icons/mono/scalable/mimetypes/text-css.svgz share/icons/mono/scalable/mimetypes/text-directory.svgz +share/icons/mono/scalable/mimetypes/text-enriched.svgz +share/icons/mono/scalable/mimetypes/text-html.svgz share/icons/mono/scalable/mimetypes/text-mathml.svgz +share/icons/mono/scalable/mimetypes/text-plain.svgz +share/icons/mono/scalable/mimetypes/text-rtf.svgz +share/icons/mono/scalable/mimetypes/text-sgml.svgz +share/icons/mono/scalable/mimetypes/text-template.svgz +share/icons/mono/scalable/mimetypes/text-troff.svgz +share/icons/mono/scalable/mimetypes/text-vcalendar.svgz +share/icons/mono/scalable/mimetypes/text-vnd.abc.svgz +share/icons/mono/scalable/mimetypes/text-vnd.wap.wml.svgz share/icons/mono/scalable/mimetypes/text-x-bibtex.svgz +share/icons/mono/scalable/mimetypes/text-x-c++src.svgz +share/icons/mono/scalable/mimetypes/text-x-chdr.svgz +share/icons/mono/scalable/mimetypes/text-x-csharp.svgz +share/icons/mono/scalable/mimetypes/text-x-csrc.svgz +share/icons/mono/scalable/mimetypes/text-x-fortran.svgz +share/icons/mono/scalable/mimetypes/text-x-generic.svgz share/icons/mono/scalable/mimetypes/text-x-gettext-translation.svgz +share/icons/mono/scalable/mimetypes/text-x-java.svgz share/icons/mono/scalable/mimetypes/text-x-katefilelist.svgz share/icons/mono/scalable/mimetypes/text-x-log.svgz share/icons/mono/scalable/mimetypes/text-x-makefile.svgz +share/icons/mono/scalable/mimetypes/text-x-moc.svgz +share/icons/mono/scalable/mimetypes/text-x-pascal.svgz +share/icons/mono/scalable/mimetypes/text-x-python.svgz +share/icons/mono/scalable/mimetypes/text-x-readme.svgz +share/icons/mono/scalable/mimetypes/text-x-sql.svgz +share/icons/mono/scalable/mimetypes/text-x-texinfo.svgz +share/icons/mono/scalable/mimetypes/text-xml.svgz share/icons/mono/scalable/mimetypes/text.svgz share/icons/mono/scalable/mimetypes/trash.svgz -share/icons/mono/scalable/mimetypes/txt2.svgz +share/icons/mono/scalable/mimetypes/video-mp4.svgz +share/icons/mono/scalable/mimetypes/video-mpeg.svgz +share/icons/mono/scalable/mimetypes/video-quicktime.svgz +share/icons/mono/scalable/mimetypes/video-template.svgz +share/icons/mono/scalable/mimetypes/video-x-flic.svgz +share/icons/mono/scalable/mimetypes/video-x-flv.svgz +share/icons/mono/scalable/mimetypes/video-x-generic.svgz +share/icons/mono/scalable/mimetypes/video-x-matroska.svgz +share/icons/mono/scalable/mimetypes/video-x-mng.svgz share/icons/mono/scalable/mimetypes/video-x-ms-asf.svgz +share/icons/mono/scalable/mimetypes/video-x-ms-wmv.svgz +share/icons/mono/scalable/mimetypes/video-x-msvideo.svgz +share/icons/mono/scalable/mimetypes/video-x-ogm+ogg.svgz +share/icons/mono/scalable/mimetypes/video-x-theora+ogg.svgz share/icons/mono/scalable/mimetypes/widget_doc.svgz +share/icons/mono/scalable/mimetypes/x-office-calendar.svgz +share/icons/mono/scalable/mimetypes/x-office-spreadsheet.svgz share/icons/mono/scalable/mimetypes/you.svgz -share/icons/mono/scalable/mimetypes/zip.svgz -share/icons/mono/scalable/places/bookmark.svgz +share/icons/mono/scalable/places/bookmarks.svgz share/icons/mono/scalable/places/contact.svgz share/icons/mono/scalable/places/document-multiple.svgz +share/icons/mono/scalable/places/favorites.svgz share/icons/mono/scalable/places/folder-blue.svgz share/icons/mono/scalable/places/folder-bookmarks.svgz share/icons/mono/scalable/places/folder-brown.svgz @@ -1959,6 +2146,7 @@ share/icons/mono/scalable/places/folder-locked.svgz share/icons/mono/scalable/places/folder-orange.svgz share/icons/mono/scalable/places/folder-print.svgz share/icons/mono/scalable/places/folder-red.svgz +share/icons/mono/scalable/places/folder-remote.svgz share/icons/mono/scalable/places/folder-sound.svgz share/icons/mono/scalable/places/folder-tar.svgz share/icons/mono/scalable/places/folder-txt.svgz @@ -1968,6 +2156,9 @@ share/icons/mono/scalable/places/folder-yellow.svgz share/icons/mono/scalable/places/folder.svgz share/icons/mono/scalable/places/link-overlay.svgz share/icons/mono/scalable/places/lock-overlay.svgz +share/icons/mono/scalable/places/mail-folder-inbox.svgz +share/icons/mono/scalable/places/mail-folder-outbox.svgz +share/icons/mono/scalable/places/mail-folder-sent.svgz share/icons/mono/scalable/places/mail-inbox.svgz share/icons/mono/scalable/places/mail-message.svgz share/icons/mono/scalable/places/mail-outbox.svgz @@ -1978,15 +2169,20 @@ share/icons/mono/scalable/places/network-server-database.svgz share/icons/mono/scalable/places/network-server.svgz share/icons/mono/scalable/places/network-workgroup.svgz share/icons/mono/scalable/places/network.svgz +share/icons/mono/scalable/places/start-here-gnome.svgz +share/icons/mono/scalable/places/start-here-kde.svgz share/icons/mono/scalable/places/start-here.svgz share/icons/mono/scalable/places/user-desktop.svgz share/icons/mono/scalable/places/user-home.svgz +share/icons/mono/scalable/places/user-identity.svgz share/icons/mono/scalable/places/user-trash.svgz share/icons/mono/scalable/places/zip-overlay.svgz +share/icons/mono/scalable/status/audio-volume-muted.svgz share/icons/mono/scalable/status/dialog-error.svgz share/icons/mono/scalable/status/dialog-information.svgz share/icons/mono/scalable/status/dialog-warning.svgz share/icons/mono/scalable/status/mail-attachment.svgz +share/icons/mono/scalable/status/mail-task.svgz share/icons/mono/scalable/status/object-locked.svgz share/icons/mono/scalable/status/object-unlocked.svgz share/icons/mono/scalable/status/security-high.svgz @@ -2015,12 +2211,11 @@ share/kde4/services/kttsjobmgr.desktop share/kde4/servicetypes/kttsd_audioplugin.desktop share/kde4/servicetypes/kttsd_filterplugin.desktop share/kde4/servicetypes/kttsd_synthplugin.desktop -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services -@dirrmtry share/kde4 @dirrm share/icons/mono/scalable/status @dirrm share/icons/mono/scalable/places @dirrm share/icons/mono/scalable/mimetypes +@dirrm share/icons/mono/scalable/emotes +@dirrm share/icons/mono/scalable/emblems @dirrm share/icons/mono/scalable/devices @dirrm share/icons/mono/scalable/categories @dirrm share/icons/mono/scalable/apps @@ -2039,27 +2234,10 @@ share/kde4/servicetypes/kttsd_synthplugin.desktop @dirrm share/icons/mono/128x128/animations @dirrm share/icons/mono/128x128 @dirrm share/icons/mono -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48/actions -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32/actions -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22/actions -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16/actions -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons @dirrm share/doc/HTML/en/kttsd @dirrm share/doc/HTML/en/kmouth @dirrm share/doc/HTML/en/kmousetool @dirrm share/doc/HTML/en/kmag -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/config @dirrm share/apps/kttsd/xslt @dirrm share/apps/kttsd/xmltransformer @dirrm share/apps/kttsd/talkerchooser @@ -2088,8 +2266,3 @@ share/kde4/servicetypes/kttsd_synthplugin.desktop @dirrm share/apps/kmousetool/sounds @dirrm share/apps/kmousetool @dirrm share/apps/kmag -@dirrmtry share/apps/color-schemes -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/kde4 diff --git a/accessibility/kmag/Makefile b/accessibility/kmag/Makefile index a5b87bd375eb..e682fd7bc850 100644 --- a/accessibility/kmag/Makefile +++ b/accessibility/kmag/Makefile @@ -8,7 +8,7 @@ PORTNAME= kdeaccessibility PORTVERSION= ${KDE4_VERSION} CATEGORIES= accessibility kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org @@ -16,14 +16,19 @@ COMMENT= Accessibility applications for KDE4 LATEST_LINK= ${PORTNAME}4 -USE_KDE4= kdelibs workspace kdeprefix kdehier automoc4 -KDE4_BUILDENV= yes USE_BZIP2= yes +USE_KDE4= kdelibs kdeprefix kdehier automoc4 +KDE4_BUILDENV= yes USE_QT_VER= 4 QT_COMPONENTS= opengl gui qmake_build moc_build rcc_build uic_build +USE_LDCONFIG= yes CMAKE_ARGS+= -DKDE4_KTTSD_ALSA:BOOL=OFF +MAN1= kmag.1 \ + kmousetool.1 \ + kmouth.1 + post-extract: ${MKDIR} ${WRKSRC} diff --git a/accessibility/kmag/distinfo b/accessibility/kmag/distinfo index 3d3a2895c559..0c5d66145f60 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdeaccessibility-4.1.4.tar.bz2) = da6c157741d73eb1445cd60d9b78cd2e -SHA256 (KDE/kdeaccessibility-4.1.4.tar.bz2) = e85943f0f59fe2831c8618a2c2f9050e8d3fc0026f5b6e61eed5f96a04bf1bab -SIZE (KDE/kdeaccessibility-4.1.4.tar.bz2) = 6371585 +MD5 (KDE/kdeaccessibility-4.2.0.tar.bz2) = f32f24c4f07906b7af39ca18d47b5e27 +SHA256 (KDE/kdeaccessibility-4.2.0.tar.bz2) = 2ec7bab55ae0e41a616cdf10c81b6cf7a504442d01c631c7e268876dd959b434 +SIZE (KDE/kdeaccessibility-4.2.0.tar.bz2) = 6592084 diff --git a/accessibility/kmag/pkg-plist b/accessibility/kmag/pkg-plist index a7e8f9a69e99..20005d3b749f 100644 --- a/accessibility/kmag/pkg-plist +++ b/accessibility/kmag/pkg-plist @@ -18,7 +18,7 @@ lib/kde4/libkttsd_xmltransformerplugin.so lib/kde4/libkttsjobmgrpart.so lib/libkttsd.so lib/libkttsd.so.5 -lib/libkttsd.so.5.0.0 +lib/libkttsd.so.5.0.1 share/applications/kde4/kmag.desktop share/applications/kde4/kmousetool.desktop share/applications/kde4/kmouth.desktop @@ -204,7 +204,8 @@ share/icons/mono/scalable/actions/aocenterh.svgz share/icons/mono/scalable/actions/aocenterv.svgz share/icons/mono/scalable/actions/appearance.svgz share/icons/mono/scalable/actions/application-exit.svgz -share/icons/mono/scalable/actions/appointment.svgz +share/icons/mono/scalable/actions/appointment-new.svgz +share/icons/mono/scalable/actions/appointment-reminder.svgz share/icons/mono/scalable/actions/arc.svgz share/icons/mono/scalable/actions/arc_center.svgz share/icons/mono/scalable/actions/archive-extract.svgz @@ -252,6 +253,7 @@ share/icons/mono/scalable/actions/bold.svgz share/icons/mono/scalable/actions/bookmark-new-list.svgz share/icons/mono/scalable/actions/bookmark-new.svgz share/icons/mono/scalable/actions/bookmark-toolbar.svgz +share/icons/mono/scalable/actions/bookmarks-organize.svgz share/icons/mono/scalable/actions/border_all.svgz share/icons/mono/scalable/actions/border_bottom.svgz share/icons/mono/scalable/actions/border_fall.svgz @@ -321,6 +323,7 @@ share/icons/mono/scalable/actions/checkbox-widget.svgz share/icons/mono/scalable/actions/checkedbox.svgz share/icons/mono/scalable/actions/checkmark.svgz share/icons/mono/scalable/actions/chemical.svgz +share/icons/mono/scalable/actions/chronometer.svgz share/icons/mono/scalable/actions/circle.svgz share/icons/mono/scalable/actions/circlebcl.svgz share/icons/mono/scalable/actions/circlebcp.svgz @@ -365,9 +368,10 @@ share/icons/mono/scalable/actions/cpufreq_50.svgz share/icons/mono/scalable/actions/cpufreq_75.svgz share/icons/mono/scalable/actions/cpufreq_na.svgz share/icons/mono/scalable/actions/crop.svgz -share/icons/mono/scalable/actions/css.svgz +share/icons/mono/scalable/actions/cssvalidator.svgz share/icons/mono/scalable/actions/cubicbeziercurve.svgz share/icons/mono/scalable/actions/curvelineintersection.svgz +share/icons/mono/scalable/actions/dashboard-show.svgz share/icons/mono/scalable/actions/data-view.svgz share/icons/mono/scalable/actions/data.svgz share/icons/mono/scalable/actions/database-first-row.svgz @@ -396,6 +400,7 @@ share/icons/mono/scalable/actions/delslide.svgz share/icons/mono/scalable/actions/deriv_func.svgz share/icons/mono/scalable/actions/design-view.svgz share/icons/mono/scalable/actions/dialog-cancel.svgz +share/icons/mono/scalable/actions/dialog-close.svgz share/icons/mono/scalable/actions/dialog-ok-apply.svgz share/icons/mono/scalable/actions/dialog-ok.svgz share/icons/mono/scalable/actions/diff.svgz @@ -404,11 +409,15 @@ share/icons/mono/scalable/actions/dirsynch.svgz share/icons/mono/scalable/actions/dirsynch_new.svgz share/icons/mono/scalable/actions/dissociatecell.svgz share/icons/mono/scalable/actions/distance.svgz +share/icons/mono/scalable/actions/document-decrypt.svgz +share/icons/mono/scalable/actions/document-encrypt.svgz share/icons/mono/scalable/actions/document-export.svgz share/icons/mono/scalable/actions/document-import.svgz share/icons/mono/scalable/actions/document-new.svgz +share/icons/mono/scalable/actions/document-open-folder.svgz share/icons/mono/scalable/actions/document-open.svgz share/icons/mono/scalable/actions/document-preview-archive.svgz +share/icons/mono/scalable/actions/document-print-frame.svgz share/icons/mono/scalable/actions/document-print-preview.svgz share/icons/mono/scalable/actions/document-print.svgz share/icons/mono/scalable/actions/document-properties.svgz @@ -424,7 +433,9 @@ share/icons/mono/scalable/actions/draw-freehand.svgz share/icons/mono/scalable/actions/duringbreaks.svgz share/icons/mono/scalable/actions/dynamic.svgz share/icons/mono/scalable/actions/edit-add.svgz +share/icons/mono/scalable/actions/edit-bomb.svgz share/icons/mono/scalable/actions/edit-clear-history.svgz +share/icons/mono/scalable/actions/edit-clear-locationbar-ltr.svgz share/icons/mono/scalable/actions/edit-clear-locationbar-rtl.svgz share/icons/mono/scalable/actions/edit-clear-locationbar.svgz share/icons/mono/scalable/actions/edit-clear.svgz @@ -434,9 +445,12 @@ share/icons/mono/scalable/actions/edit-delete-mail.svgz share/icons/mono/scalable/actions/edit-delete-shred.svgz share/icons/mono/scalable/actions/edit-delete.svgz share/icons/mono/scalable/actions/edit-find.svgz +share/icons/mono/scalable/actions/edit-mail-find.svgz share/icons/mono/scalable/actions/edit-paste.svgz share/icons/mono/scalable/actions/edit-redo.svgz share/icons/mono/scalable/actions/edit-remove.svgz +share/icons/mono/scalable/actions/edit-rename.svgz +share/icons/mono/scalable/actions/edit-text.svgz share/icons/mono/scalable/actions/edit-trash.svgz share/icons/mono/scalable/actions/edit-undo.svgz share/icons/mono/scalable/actions/edit-user.svgz @@ -467,8 +481,8 @@ share/icons/mono/scalable/actions/fileblend.svgz share/icons/mono/scalable/actions/filereplace.svgz share/icons/mono/scalable/actions/filesimulate.svgz share/icons/mono/scalable/actions/filestop.svgz +share/icons/mono/scalable/actions/fill-color.svgz share/icons/mono/scalable/actions/fill.svgz -share/icons/mono/scalable/actions/fill_colour.svgz share/icons/mono/scalable/actions/filledcircle.svgz share/icons/mono/scalable/actions/filledellipse.svgz share/icons/mono/scalable/actions/filledrectangle.svgz @@ -483,19 +497,22 @@ share/icons/mono/scalable/actions/folder-open.svgz share/icons/mono/scalable/actions/folder.svgz share/icons/mono/scalable/actions/followmouse.svgz share/icons/mono/scalable/actions/fonts.svgz +share/icons/mono/scalable/actions/fork.svgz share/icons/mono/scalable/actions/form_edit.svgz share/icons/mono/scalable/actions/format-font-size-less.svgz share/icons/mono/scalable/actions/format-font-size-more.svgz share/icons/mono/scalable/actions/format-indent-less.svgz share/icons/mono/scalable/actions/format-indent-more.svgz -share/icons/mono/scalable/actions/format-justify-block.svgz share/icons/mono/scalable/actions/format-justify-bottom.svgz share/icons/mono/scalable/actions/format-justify-center.svgz +share/icons/mono/scalable/actions/format-justify-fill.svgz share/icons/mono/scalable/actions/format-justify-left.svgz share/icons/mono/scalable/actions/format-justify-right.svgz share/icons/mono/scalable/actions/format-justify-top.svgz share/icons/mono/scalable/actions/format-list-unordered.svgz share/icons/mono/scalable/actions/format-text-bold.svgz +share/icons/mono/scalable/actions/format-text-direction-ltr.svgz +share/icons/mono/scalable/actions/format-text-direction-rtl.svgz share/icons/mono/scalable/actions/format-text-italic.svgz share/icons/mono/scalable/actions/format-text-strikethrough.svgz share/icons/mono/scalable/actions/format-text-subscript.svgz @@ -552,6 +569,7 @@ share/icons/mono/scalable/actions/harmonichomology.svgz share/icons/mono/scalable/actions/hdd.svgz share/icons/mono/scalable/actions/help-about-kde.svgz share/icons/mono/scalable/actions/help-contextual.svgz +share/icons/mono/scalable/actions/help-hint.svgz share/icons/mono/scalable/actions/help.svgz share/icons/mono/scalable/actions/hexagonbcv.svgz share/icons/mono/scalable/actions/hibernate.svgz @@ -681,8 +699,18 @@ share/icons/mono/scalable/actions/kstars_stars.svgz share/icons/mono/scalable/actions/ksys1.svgz share/icons/mono/scalable/actions/ksys2.svgz share/icons/mono/scalable/actions/ksys3.svgz +share/icons/mono/scalable/actions/kt-check-data.svgz +share/icons/mono/scalable/actions/kt-chunks.svgz +share/icons/mono/scalable/actions/kt-info-widget.svgz +share/icons/mono/scalable/actions/kt-pause.svgz +share/icons/mono/scalable/actions/kt-plugins.svgz +share/icons/mono/scalable/actions/kt-queue-manager.svgz +share/icons/mono/scalable/actions/kt-remove.svgz +share/icons/mono/scalable/actions/kt-show-statusbar.svgz +share/icons/mono/scalable/actions/kt-start.svgz +share/icons/mono/scalable/actions/kt-stop-all.svgz +share/icons/mono/scalable/actions/kt-stop.svgz share/icons/mono/scalable/actions/ktinfowidget.svgz -share/icons/mono/scalable/actions/ktip.svgz share/icons/mono/scalable/actions/label-widget.svgz share/icons/mono/scalable/actions/lan.svgz share/icons/mono/scalable/actions/languages.svgz @@ -736,20 +764,22 @@ share/icons/mono/scalable/actions/lowerlayer.svgz share/icons/mono/scalable/actions/lsub.svgz share/icons/mono/scalable/actions/lsup.svgz share/icons/mono/scalable/actions/magnify.svgz -share/icons/mono/scalable/actions/mail-find.svgz share/icons/mono/scalable/actions/mail-flag.svgz share/icons/mono/scalable/actions/mail-forward.svgz -share/icons/mono/scalable/actions/mail-get.svgz +share/icons/mono/scalable/actions/mail-mark-important.svgz share/icons/mono/scalable/actions/mail-mark-junk.svgz share/icons/mono/scalable/actions/mail-mark-notjunk.svgz +share/icons/mono/scalable/actions/mail-mark-task.svgz +share/icons/mono/scalable/actions/mail-mark-unread.svgz share/icons/mono/scalable/actions/mail-message-new.svgz +share/icons/mono/scalable/actions/mail-queue.svgz +share/icons/mono/scalable/actions/mail-receive.svgz share/icons/mono/scalable/actions/mail-reply-all.svgz +share/icons/mono/scalable/actions/mail-reply-custom.svgz +share/icons/mono/scalable/actions/mail-reply-list.svgz share/icons/mono/scalable/actions/mail-reply-sender.svgz share/icons/mono/scalable/actions/mail-replylist.svgz share/icons/mono/scalable/actions/mail-send.svgz -share/icons/mono/scalable/actions/mail.svgz -share/icons/mono/scalable/actions/mail_post_to.svgz -share/icons/mono/scalable/actions/mail_todo.svgz share/icons/mono/scalable/actions/make.svgz share/icons/mono/scalable/actions/markasblank.svgz share/icons/mono/scalable/actions/math_abs.svgz @@ -912,9 +942,11 @@ share/icons/mono/scalable/actions/pgnum.svgz share/icons/mono/scalable/actions/pgp-keys.svgz share/icons/mono/scalable/actions/player-time.svgz share/icons/mono/scalable/actions/player-volume-down.svgz +share/icons/mono/scalable/actions/player-volume-muted.svgz share/icons/mono/scalable/actions/player-volume-up.svgz share/icons/mono/scalable/actions/player-volume.svgz share/icons/mono/scalable/actions/player_mute.svgz +share/icons/mono/scalable/actions/player_record.svgz share/icons/mono/scalable/actions/plot.svgz share/icons/mono/scalable/actions/podcast_new.svgz share/icons/mono/scalable/actions/point.svgz @@ -932,11 +964,13 @@ share/icons/mono/scalable/actions/precplus.svgz share/icons/mono/scalable/actions/preverror.svgz share/icons/mono/scalable/actions/prevfuzzy.svgz share/icons/mono/scalable/actions/prevfuzzyuntrans.svgz +share/icons/mono/scalable/actions/preview.svgz share/icons/mono/scalable/actions/previewprint.svgz share/icons/mono/scalable/actions/prevmarked.svgz share/icons/mono/scalable/actions/prevpo.svgz share/icons/mono/scalable/actions/prevtemplate.svgz share/icons/mono/scalable/actions/prevuntranslated.svgz +share/icons/mono/scalable/actions/process-stop.svgz share/icons/mono/scalable/actions/processor.svgz share/icons/mono/scalable/actions/prod.svgz share/icons/mono/scalable/actions/progress-bar-widget.svgz @@ -952,16 +986,17 @@ share/icons/mono/scalable/actions/quick_start.svgz share/icons/mono/scalable/actions/quiz.svgz share/icons/mono/scalable/actions/radicalline.svgz share/icons/mono/scalable/actions/radio-button-widget.svgz +share/icons/mono/scalable/actions/raindrop.svgz share/icons/mono/scalable/actions/raise.svgz share/icons/mono/scalable/actions/raiselayer.svgz share/icons/mono/scalable/actions/random.svgz +share/icons/mono/scalable/actions/rating.svgz share/icons/mono/scalable/actions/ray.svgz share/icons/mono/scalable/actions/rebuild.svgz share/icons/mono/scalable/actions/rectangle.svgz share/icons/mono/scalable/actions/recursive.svgz share/icons/mono/scalable/actions/redeyes.svgz share/icons/mono/scalable/actions/relation.svgz -share/icons/mono/scalable/actions/reload.svgz share/icons/mono/scalable/actions/remcol.svgz share/icons/mono/scalable/actions/removecell.svgz share/icons/mono/scalable/actions/removecomment.svgz @@ -1025,6 +1060,7 @@ share/icons/mono/scalable/actions/shadowRU.svgz share/icons/mono/scalable/actions/shadowU.svgz share/icons/mono/scalable/actions/share.svgz share/icons/mono/scalable/actions/shear.svgz +share/icons/mono/scalable/actions/show-menu.svgz share/icons/mono/scalable/actions/show_offliners.svgz share/icons/mono/scalable/actions/show_table_column.svgz share/icons/mono/scalable/actions/show_table_row.svgz @@ -1043,8 +1079,8 @@ share/icons/mono/scalable/actions/smallcal.svgz share/icons/mono/scalable/actions/smallthumbnails.svgz share/icons/mono/scalable/actions/smiley.svgz share/icons/mono/scalable/actions/solarizetool.svgz +share/icons/mono/scalable/actions/speaker.svgz share/icons/mono/scalable/actions/spectrum.svgz -share/icons/mono/scalable/actions/spellcheck.svgz share/icons/mono/scalable/actions/spellcheck_from_cursor.svgz share/icons/mono/scalable/actions/spellcheck_selected.svgz share/icons/mono/scalable/actions/spinbox-widget.svgz @@ -1071,10 +1107,16 @@ share/icons/mono/scalable/actions/suspend_to_disk.svgz share/icons/mono/scalable/actions/suspend_to_ram.svgz share/icons/mono/scalable/actions/syntax.svgz share/icons/mono/scalable/actions/system-lock-screen.svgz +share/icons/mono/scalable/actions/system-log-out.svgz +share/icons/mono/scalable/actions/system-restart.svgz share/icons/mono/scalable/actions/system-run.svgz share/icons/mono/scalable/actions/system-search.svgz +share/icons/mono/scalable/actions/system-shutdown.svgz +share/icons/mono/scalable/actions/system-suspend-hibernate.svgz +share/icons/mono/scalable/actions/system-suspend.svgz share/icons/mono/scalable/actions/system-switch-user.svgz share/icons/mono/scalable/actions/tab-breakoff.svgz +share/icons/mono/scalable/actions/tab-close.svgz share/icons/mono/scalable/actions/tab-duplicate.svgz share/icons/mono/scalable/actions/tab-new-background.svgz share/icons/mono/scalable/actions/tab-new.svgz @@ -1082,10 +1124,11 @@ share/icons/mono/scalable/actions/tab-widget.svgz share/icons/mono/scalable/actions/tab_first.svgz share/icons/mono/scalable/actions/tab_last.svgz share/icons/mono/scalable/actions/tab_left.svgz -share/icons/mono/scalable/actions/tab_remove.svgz share/icons/mono/scalable/actions/tab_right.svgz share/icons/mono/scalable/actions/tables.svgz share/icons/mono/scalable/actions/tangent.svgz +share/icons/mono/scalable/actions/task-new.svgz +share/icons/mono/scalable/actions/task-reminder.svgz share/icons/mono/scalable/actions/tea_not_ready.svgz share/icons/mono/scalable/actions/template_a4.svgz share/icons/mono/scalable/actions/template_balancesheet.svgz @@ -1179,7 +1222,10 @@ share/icons/mono/scalable/actions/tool_star.svgz share/icons/mono/scalable/actions/tool_text.svgz share/icons/mono/scalable/actions/tool_uselastdir.svgz share/icons/mono/scalable/actions/tool_wizard_selection.svgz +share/icons/mono/scalable/actions/tools-check-spelling.svgz share/icons/mono/scalable/actions/tools-media-optical-burn.svgz +share/icons/mono/scalable/actions/tools-report-bug.svgz +share/icons/mono/scalable/actions/tools-wizard.svgz share/icons/mono/scalable/actions/tooltip.svgz share/icons/mono/scalable/actions/transform-rotate.svgz share/icons/mono/scalable/actions/transform.svgz @@ -1209,17 +1255,25 @@ share/icons/mono/scalable/actions/vertical_text.svgz share/icons/mono/scalable/actions/view-calendar-day.svgz share/icons/mono/scalable/actions/view-calendar-list.svgz share/icons/mono/scalable/actions/view-calendar-month.svgz -share/icons/mono/scalable/actions/view-calendar-todo.svgz +share/icons/mono/scalable/actions/view-calendar-tasks.svgz share/icons/mono/scalable/actions/view-calendar-upcoming-days.svgz share/icons/mono/scalable/actions/view-calendar-upcoming-events.svgz share/icons/mono/scalable/actions/view-calendar-week.svgz share/icons/mono/scalable/actions/view-calendar-workweek.svgz share/icons/mono/scalable/actions/view-choose.svgz +share/icons/mono/scalable/actions/view-close.svgz +share/icons/mono/scalable/actions/view-columns.svgz +share/icons/mono/scalable/actions/view-file-columns.svgz share/icons/mono/scalable/actions/view-filter.svgz share/icons/mono/scalable/actions/view-fullscreen.svgz share/icons/mono/scalable/actions/view-history.svgz share/icons/mono/scalable/actions/view-icon.svgz share/icons/mono/scalable/actions/view-left-right.svgz +share/icons/mono/scalable/actions/view-list-details.svgz +share/icons/mono/scalable/actions/view-list-icons.svgz +share/icons/mono/scalable/actions/view-list-text.svgz +share/icons/mono/scalable/actions/view-list-tree.svgz +share/icons/mono/scalable/actions/view-media-artist.svgz share/icons/mono/scalable/actions/view-media-visualization.svgz share/icons/mono/scalable/actions/view-pim-calendar.svgz share/icons/mono/scalable/actions/view-pim-contacts.svgz @@ -1229,11 +1283,18 @@ share/icons/mono/scalable/actions/view-pim-news.svgz share/icons/mono/scalable/actions/view-pim-notes.svgz share/icons/mono/scalable/actions/view-pim-summary.svgz share/icons/mono/scalable/actions/view-pim-tasks.svgz +share/icons/mono/scalable/actions/view-presentation.svgz +share/icons/mono/scalable/actions/view-preview.svgz +share/icons/mono/scalable/actions/view-refresh.svgz share/icons/mono/scalable/actions/view-remove.svgz share/icons/mono/scalable/actions/view-restore.svgz +share/icons/mono/scalable/actions/view-right-close.svgz +share/icons/mono/scalable/actions/view-right-new.svgz share/icons/mono/scalable/actions/view-sidetree.svgz share/icons/mono/scalable/actions/view-sort-ascending.svgz share/icons/mono/scalable/actions/view-sort-descending.svgz +share/icons/mono/scalable/actions/view-split-left-right.svgz +share/icons/mono/scalable/actions/view-split-top-bottom.svgz share/icons/mono/scalable/actions/view-statistics.svgz share/icons/mono/scalable/actions/view-top-bottom.svgz share/icons/mono/scalable/actions/view-tree.svgz @@ -1249,8 +1310,6 @@ share/icons/mono/scalable/actions/view_right.svgz share/icons/mono/scalable/actions/view_ruler.svgz share/icons/mono/scalable/actions/view_split.svgz share/icons/mono/scalable/actions/view_text.svgz -share/icons/mono/scalable/actions/viewmag.svgz -share/icons/mono/scalable/actions/viewmag1.svgz share/icons/mono/scalable/actions/viewmag_bis+.svgz share/icons/mono/scalable/actions/viewmag_bis-.svgz share/icons/mono/scalable/actions/viewmag_enlarge.svgz @@ -1261,7 +1320,6 @@ share/icons/mono/scalable/actions/viewmag_lock.svgz share/icons/mono/scalable/actions/viewmag_no.svgz share/icons/mono/scalable/actions/viewmag_shrink.svgz share/icons/mono/scalable/actions/viewmag_w.svgz -share/icons/mono/scalable/actions/viewmagfit.svgz share/icons/mono/scalable/actions/voicecall.svgz share/icons/mono/scalable/actions/w.svgz share/icons/mono/scalable/actions/webarchiver.svgz @@ -1270,21 +1328,23 @@ share/icons/mono/scalable/actions/webcamsend.svgz share/icons/mono/scalable/actions/webexport.svgz share/icons/mono/scalable/actions/wiki.svgz share/icons/mono/scalable/actions/window-close.svgz +share/icons/mono/scalable/actions/window-duplicate.svgz share/icons/mono/scalable/actions/window-new.svgz share/icons/mono/scalable/actions/window-suppressed.svgz share/icons/mono/scalable/actions/window.svgz -share/icons/mono/scalable/actions/window_duplicate.svgz share/icons/mono/scalable/actions/wired.svgz share/icons/mono/scalable/actions/wireless.svgz -share/icons/mono/scalable/actions/wizard.svgz share/icons/mono/scalable/actions/yahoo_mobile.svgz +share/icons/mono/scalable/actions/zoom-best-fit.svgz share/icons/mono/scalable/actions/zoom-in.svgz +share/icons/mono/scalable/actions/zoom-original.svgz share/icons/mono/scalable/actions/zoom-out.svgz +share/icons/mono/scalable/actions/zoom.svgz share/icons/mono/scalable/actions/zoom_disabled.svgz share/icons/mono/scalable/actions/zoom_enabled.svgz +share/icons/mono/scalable/apps/VBox.svgz share/icons/mono/scalable/apps/abakus.svgz share/icons/mono/scalable/apps/abiword.svgz -share/icons/mono/scalable/apps/accessibility_section.svgz share/icons/mono/scalable/apps/accessories-calculator.svgz share/icons/mono/scalable/apps/accessories-character-map.svgz share/icons/mono/scalable/apps/accessories-dictionary.svgz @@ -1296,6 +1356,7 @@ share/icons/mono/scalable/apps/amarok.svgz share/icons/mono/scalable/apps/amor.svgz share/icons/mono/scalable/apps/antivirus.svgz share/icons/mono/scalable/apps/apollon.svgz +share/icons/mono/scalable/apps/arora.svgz share/icons/mono/scalable/apps/assistant.svgz share/icons/mono/scalable/apps/atlantik.svgz share/icons/mono/scalable/apps/audacity.svgz @@ -1305,8 +1366,6 @@ share/icons/mono/scalable/apps/blender.svgz share/icons/mono/scalable/apps/blinken.svgz share/icons/mono/scalable/apps/bluefish.svgz share/icons/mono/scalable/apps/bookcase.svgz -share/icons/mono/scalable/apps/browser.svgz -share/icons/mono/scalable/apps/bug.svgz share/icons/mono/scalable/apps/calc.svgz share/icons/mono/scalable/apps/catalogmanager.svgz share/icons/mono/scalable/apps/categories.svgz @@ -1322,6 +1381,7 @@ share/icons/mono/scalable/apps/displayconfig.svgz share/icons/mono/scalable/apps/dopewars-pill.svgz share/icons/mono/scalable/apps/download_manager.svgz share/icons/mono/scalable/apps/eclipse.svgz +share/icons/mono/scalable/apps/ekiga.svgz share/icons/mono/scalable/apps/emacs.svgz share/icons/mono/scalable/apps/email.svgz share/icons/mono/scalable/apps/energy_star.svgz @@ -1333,15 +1393,11 @@ share/icons/mono/scalable/apps/falconseye.svgz share/icons/mono/scalable/apps/fax.svgz share/icons/mono/scalable/apps/fifteenpieces.svgz share/icons/mono/scalable/apps/filelight.svgz -share/icons/mono/scalable/apps/fileshare.svgz -share/icons/mono/scalable/apps/filetypes.svgz share/icons/mono/scalable/apps/flashkard.svgz share/icons/mono/scalable/apps/fsview.svgz share/icons/mono/scalable/apps/gaim.svgz share/icons/mono/scalable/apps/gimp.svgz share/icons/mono/scalable/apps/gkrellm.svgz -share/icons/mono/scalable/apps/gnome.svgz -share/icons/mono/scalable/apps/gnomemeeting.svgz share/icons/mono/scalable/apps/gnucash.svgz share/icons/mono/scalable/apps/gnumeric.svgz share/icons/mono/scalable/apps/gnutella.svgz @@ -1353,10 +1409,10 @@ share/icons/mono/scalable/apps/gvim.svgz share/icons/mono/scalable/apps/gwenview.svgz share/icons/mono/scalable/apps/gxmame.svgz share/icons/mono/scalable/apps/hardware.svgz -share/icons/mono/scalable/apps/hardware_info.svgz share/icons/mono/scalable/apps/help-browser.svgz share/icons/mono/scalable/apps/highlight.svgz share/icons/mono/scalable/apps/hw_unknown.svgz +share/icons/mono/scalable/apps/hwinfo.svgz share/icons/mono/scalable/apps/icewm.svgz share/icons/mono/scalable/apps/ieee1394.svgz share/icons/mono/scalable/apps/im-aim.svgz @@ -1370,11 +1426,14 @@ share/icons/mono/scalable/apps/im-sms.svgz share/icons/mono/scalable/apps/im-yahoo.svgz share/icons/mono/scalable/apps/imagegallery.svgz share/icons/mono/scalable/apps/inkscape.svgz +share/icons/mono/scalable/apps/internet-web-browser.svgz share/icons/mono/scalable/apps/irkick.svgz share/icons/mono/scalable/apps/isp-disabled.svgz share/icons/mono/scalable/apps/juk.svgz share/icons/mono/scalable/apps/k3b.svgz share/icons/mono/scalable/apps/kaboodle.svgz +share/icons/mono/scalable/apps/kaddressbook.svgz +share/icons/mono/scalable/apps/kaffeine.svgz share/icons/mono/scalable/apps/kalarm.svgz share/icons/mono/scalable/apps/kalzium.svgz share/icons/mono/scalable/apps/kamix.svgz @@ -1389,7 +1448,6 @@ share/icons/mono/scalable/apps/kate.svgz share/icons/mono/scalable/apps/katomic.svgz share/icons/mono/scalable/apps/kaudiocreator.svgz share/icons/mono/scalable/apps/kazaa.svgz -share/icons/mono/scalable/apps/kbabel.svgz share/icons/mono/scalable/apps/kbackgammon.svgz share/icons/mono/scalable/apps/kbackgammon_engine.svgz share/icons/mono/scalable/apps/kbatterymonitor.svgz @@ -1423,7 +1481,6 @@ share/icons/mono/scalable/apps/kcolorchooser.svgz share/icons/mono/scalable/apps/kcoloredit.svgz share/icons/mono/scalable/apps/kconfigure.svgz share/icons/mono/scalable/apps/kcpuload.svgz -share/icons/mono/scalable/apps/kcron.svgz share/icons/mono/scalable/apps/kdat.svgz share/icons/mono/scalable/apps/kde.svgz share/icons/mono/scalable/apps/kdenlive.svgz @@ -1443,6 +1500,7 @@ share/icons/mono/scalable/apps/keurocalc.svgz share/icons/mono/scalable/apps/kexi.svgz share/icons/mono/scalable/apps/keyboard-shortcut.svgz share/icons/mono/scalable/apps/kfilereplace.svgz +share/icons/mono/scalable/apps/kfind.svgz share/icons/mono/scalable/apps/kflog.svgz share/icons/mono/scalable/apps/kfloppy.svgz share/icons/mono/scalable/apps/kformdesigner.svgz @@ -1493,7 +1551,6 @@ share/icons/mono/scalable/apps/kmerlin.svgz share/icons/mono/scalable/apps/kmidi.svgz share/icons/mono/scalable/apps/kmines.svgz share/icons/mono/scalable/apps/kmix.svgz -share/icons/mono/scalable/apps/kmixdocked_mute.svgz share/icons/mono/scalable/apps/kmldonkey.svgz share/icons/mono/scalable/apps/kmoon.svgz share/icons/mono/scalable/apps/kmousetool.svgz @@ -1508,6 +1565,7 @@ share/icons/mono/scalable/apps/knetwalk.svgz share/icons/mono/scalable/apps/knetworkmanager.svgz share/icons/mono/scalable/apps/knewsticker.svgz share/icons/mono/scalable/apps/knoda.svgz +share/icons/mono/scalable/apps/knode.svgz share/icons/mono/scalable/apps/knoppix-penguin.svgz share/icons/mono/scalable/apps/knotes.svgz share/icons/mono/scalable/apps/kodo.svgz @@ -1531,6 +1589,7 @@ share/icons/mono/scalable/apps/kopete_avdevice.svgz share/icons/mono/scalable/apps/kopete_offline.svgz share/icons/mono/scalable/apps/kopete_some_away.svgz share/icons/mono/scalable/apps/kopete_some_online.svgz +share/icons/mono/scalable/apps/korganizer.svgz share/icons/mono/scalable/apps/korn.svgz share/icons/mono/scalable/apps/kpager.svgz share/icons/mono/scalable/apps/kpaint.svgz @@ -1574,11 +1633,11 @@ share/icons/mono/scalable/apps/ksnake.svgz share/icons/mono/scalable/apps/ksnapshot.svgz share/icons/mono/scalable/apps/ksokoban.svgz share/icons/mono/scalable/apps/kspaceduel.svgz -share/icons/mono/scalable/apps/ksplash.svgz share/icons/mono/scalable/apps/kspread.svgz share/icons/mono/scalable/apps/kstars.svgz share/icons/mono/scalable/apps/kstreamripper.svgz share/icons/mono/scalable/apps/ksysguardd.svgz +share/icons/mono/scalable/apps/ksystemlog.svgz share/icons/mono/scalable/apps/ksysv.svgz share/icons/mono/scalable/apps/ktalkd.svgz share/icons/mono/scalable/apps/kteatime.svgz @@ -1603,13 +1662,11 @@ share/icons/mono/scalable/apps/kverbos.svgz share/icons/mono/scalable/apps/kview.svgz share/icons/mono/scalable/apps/kvim.svgz share/icons/mono/scalable/apps/kvirc.svgz -share/icons/mono/scalable/apps/kvoctrain.svgz -share/icons/mono/scalable/apps/kwallet.svgz +share/icons/mono/scalable/apps/kwalletmanager.svgz share/icons/mono/scalable/apps/kwave.svgz share/icons/mono/scalable/apps/kweather.svgz share/icons/mono/scalable/apps/kwifimanager.svgz share/icons/mono/scalable/apps/kwikdisk.svgz -share/icons/mono/scalable/apps/kwin4.svgz share/icons/mono/scalable/apps/kword.svgz share/icons/mono/scalable/apps/kwordquiz.svgz share/icons/mono/scalable/apps/kworldclock.svgz @@ -1617,12 +1674,15 @@ share/icons/mono/scalable/apps/kynaptic.svgz share/icons/mono/scalable/apps/kzenexplorer.svgz share/icons/mono/scalable/apps/laptop_battery.svgz share/icons/mono/scalable/apps/laptop_pcmcia.svgz +share/icons/mono/scalable/apps/lastfm.svgz share/icons/mono/scalable/apps/ldap_client.svgz share/icons/mono/scalable/apps/licq.svgz share/icons/mono/scalable/apps/limewire.svgz share/icons/mono/scalable/apps/linguist.svgz +share/icons/mono/scalable/apps/lokalize.svgz share/icons/mono/scalable/apps/lskat.svgz share/icons/mono/scalable/apps/mac.svgz +share/icons/mono/scalable/apps/mailody.svgz share/icons/mono/scalable/apps/mathematica.svgz share/icons/mono/scalable/apps/menubar.svgz share/icons/mono/scalable/apps/mozilla-firefox.svgz @@ -1638,49 +1698,63 @@ share/icons/mono/scalable/apps/nedit.svgz share/icons/mono/scalable/apps/netscape.svgz share/icons/mono/scalable/apps/network_advanced.svgz share/icons/mono/scalable/apps/nfs.svgz -share/icons/mono/scalable/apps/noatun.svgz share/icons/mono/scalable/apps/ntp-client.svgz share/icons/mono/scalable/apps/nvu.svgz +share/icons/mono/scalable/apps/nxclient-icon.svgz share/icons/mono/scalable/apps/office-addressbook.svgz share/icons/mono/scalable/apps/office-calendar.svgz -share/icons/mono/scalable/apps/ooo_calc.svgz +share/icons/mono/scalable/apps/ooo-calc.svgz +share/icons/mono/scalable/apps/ooo-draw.svgz +share/icons/mono/scalable/apps/ooo-impress.svgz +share/icons/mono/scalable/apps/ooo-math.svgz +share/icons/mono/scalable/apps/ooo-printeradmin.svgz +share/icons/mono/scalable/apps/ooo-template.svgz +share/icons/mono/scalable/apps/ooo-web.svgz +share/icons/mono/scalable/apps/ooo-writer.svgz share/icons/mono/scalable/apps/ooo_chart.svgz -share/icons/mono/scalable/apps/ooo_draw.svgz -share/icons/mono/scalable/apps/ooo_impress.svgz -share/icons/mono/scalable/apps/ooo_math.svgz -share/icons/mono/scalable/apps/ooo_printeradmin.svgz share/icons/mono/scalable/apps/ooo_setup.svgz -share/icons/mono/scalable/apps/ooo_template.svgz -share/icons/mono/scalable/apps/ooo_web.svgz -share/icons/mono/scalable/apps/ooo_writer.svgz share/icons/mono/scalable/apps/openft.svgz share/icons/mono/scalable/apps/openoffice.svgz share/icons/mono/scalable/apps/opera.svgz share/icons/mono/scalable/apps/palm-pilot.svgz share/icons/mono/scalable/apps/pan.svgz share/icons/mono/scalable/apps/panel_settings.svgz +share/icons/mono/scalable/apps/parley.svgz share/icons/mono/scalable/apps/password.svgz share/icons/mono/scalable/apps/pcmcia.svgz share/icons/mono/scalable/apps/photobook.svgz share/icons/mono/scalable/apps/potracegui.svgz +share/icons/mono/scalable/apps/preferences-desktop-accessibility.svgz share/icons/mono/scalable/apps/preferences-desktop-color.svgz +share/icons/mono/scalable/apps/preferences-desktop-display-randr.svgz +share/icons/mono/scalable/apps/preferences-desktop-display.svgz +share/icons/mono/scalable/apps/preferences-desktop-filetype-association.svgz share/icons/mono/scalable/apps/preferences-desktop-font.svgz +share/icons/mono/scalable/apps/preferences-desktop-gaming.svgz share/icons/mono/scalable/apps/preferences-desktop-icons.svgz +share/icons/mono/scalable/apps/preferences-desktop-keyboard.svgz share/icons/mono/scalable/apps/preferences-desktop-launch-feedback.svgz share/icons/mono/scalable/apps/preferences-desktop-locale.svgz +share/icons/mono/scalable/apps/preferences-desktop-mouse.svgz share/icons/mono/scalable/apps/preferences-desktop-notification.svgz share/icons/mono/scalable/apps/preferences-desktop-printer.svgz share/icons/mono/scalable/apps/preferences-desktop-screensaver.svgz share/icons/mono/scalable/apps/preferences-desktop-sound.svgz share/icons/mono/scalable/apps/preferences-desktop-text-to-speech.svgz +share/icons/mono/scalable/apps/preferences-desktop-theme-style.svgz share/icons/mono/scalable/apps/preferences-desktop-theme.svgz share/icons/mono/scalable/apps/preferences-desktop-user.svgz share/icons/mono/scalable/apps/preferences-desktop-wallpaper.svgz share/icons/mono/scalable/apps/preferences-system-bluetooth.svgz +share/icons/mono/scalable/apps/preferences-system-cron.svgz share/icons/mono/scalable/apps/preferences-system-login.svgz +share/icons/mono/scalable/apps/preferences-system-network-proxy.svgz +share/icons/mono/scalable/apps/preferences-system-network-sharing.svgz share/icons/mono/scalable/apps/preferences-system-performance.svgz share/icons/mono/scalable/apps/preferences-system-power-management.svgz share/icons/mono/scalable/apps/preferences-system-session-services.svgz +share/icons/mono/scalable/apps/preferences-system-solid.svgz +share/icons/mono/scalable/apps/preferences-system-splash.svgz share/icons/mono/scalable/apps/preferences-system-time.svgz share/icons/mono/scalable/apps/preferences-system-windows.svgz share/icons/mono/scalable/apps/preferences-web-browser-adblock.svgz @@ -1688,12 +1762,12 @@ share/icons/mono/scalable/apps/preferences-web-browser-cache.svgz share/icons/mono/scalable/apps/preferences-web-browser-cookies.svgz share/icons/mono/scalable/apps/preferences-web-browser-identification.svgz share/icons/mono/scalable/apps/preferences-web-browser-shortcuts.svgz -share/icons/mono/scalable/apps/proxy.svgz +share/icons/mono/scalable/apps/preferences-web-browser-stylesheets.svgz share/icons/mono/scalable/apps/qt.svgz +share/icons/mono/scalable/apps/qtconfig.svgz share/icons/mono/scalable/apps/qtella.svgz share/icons/mono/scalable/apps/quanta.svgz share/icons/mono/scalable/apps/quicktime.svgz -share/icons/mono/scalable/apps/randr.svgz share/icons/mono/scalable/apps/realplayer.svgz share/icons/mono/scalable/apps/remote.svgz share/icons/mono/scalable/apps/rsibreak.svgz @@ -1704,8 +1778,6 @@ share/icons/mono/scalable/apps/showfoto.svgz share/icons/mono/scalable/apps/showimg.svgz share/icons/mono/scalable/apps/shredder.svgz share/icons/mono/scalable/apps/sodipodi.svgz -share/icons/mono/scalable/apps/soundcard.svgz -share/icons/mono/scalable/apps/style.svgz share/icons/mono/scalable/apps/superkaramba.svgz share/icons/mono/scalable/apps/synaptic.svgz share/icons/mono/scalable/apps/system-file-manager.svgz @@ -1723,22 +1795,23 @@ share/icons/mono/scalable/apps/utilities-system-monitor.svgz share/icons/mono/scalable/apps/utilities-terminal.svgz share/icons/mono/scalable/apps/vnc.svgz share/icons/mono/scalable/apps/wabi.svgz -share/icons/mono/scalable/apps/web-browser.svgz share/icons/mono/scalable/apps/win_apps.svgz share/icons/mono/scalable/apps/wine.svgz share/icons/mono/scalable/apps/wp.svgz -share/icons/mono/scalable/apps/x.svgz share/icons/mono/scalable/apps/xeyes.svgz share/icons/mono/scalable/apps/xfig.svgz share/icons/mono/scalable/apps/xfmail.svgz share/icons/mono/scalable/apps/xine.svgz share/icons/mono/scalable/apps/xmms.svgz +share/icons/mono/scalable/apps/xorg.svgz share/icons/mono/scalable/apps/xosview.svgz share/icons/mono/scalable/apps/xv.svgz share/icons/mono/scalable/apps/yakuake.svgz share/icons/mono/scalable/apps/zip.svgz share/icons/mono/scalable/categories/applications-accessories.svgz share/icons/mono/scalable/categories/applications-development.svgz +share/icons/mono/scalable/categories/applications-education-language.svgz +share/icons/mono/scalable/categories/applications-education-mathematics.svgz share/icons/mono/scalable/categories/applications-education.svgz share/icons/mono/scalable/categories/applications-engineering.svgz share/icons/mono/scalable/categories/applications-games-arcade.svgz @@ -1760,16 +1833,22 @@ share/icons/mono/scalable/categories/applications-utilities.svgz share/icons/mono/scalable/categories/preferences-desktop-peripherals.svgz share/icons/mono/scalable/categories/preferences-desktop-personal.svgz share/icons/mono/scalable/categories/preferences-desktop.svgz +share/icons/mono/scalable/categories/preferences-other.svgz share/icons/mono/scalable/categories/preferences-system-network.svgz share/icons/mono/scalable/categories/preferences-system.svgz share/icons/mono/scalable/categories/system-help.svgz +share/icons/mono/scalable/devices/audio-card.svgz +share/icons/mono/scalable/devices/audio-headset.svgz +share/icons/mono/scalable/devices/audio-input-microphone.svgz share/icons/mono/scalable/devices/camera-photo.svgz share/icons/mono/scalable/devices/computer-laptop.svgz share/icons/mono/scalable/devices/computer.svgz share/icons/mono/scalable/devices/cpu.svgz share/icons/mono/scalable/devices/drive-harddisk.svgz +share/icons/mono/scalable/devices/drive-optical.svgz share/icons/mono/scalable/devices/drive-remote.svgz share/icons/mono/scalable/devices/drive-removable-media-firewire.svgz +share/icons/mono/scalable/devices/drive-removable-media-usb-pendrive.svgz share/icons/mono/scalable/devices/drive-removable-media-usb.svgz share/icons/mono/scalable/devices/drive-removable-media.svgz share/icons/mono/scalable/devices/input-gaming.svgz @@ -1784,165 +1863,273 @@ share/icons/mono/scalable/devices/media-floppy.svgz share/icons/mono/scalable/devices/media-optical-audio.svgz share/icons/mono/scalable/devices/media-optical-recordable.svgz share/icons/mono/scalable/devices/media-optical.svgz +share/icons/mono/scalable/devices/media-tape.svgz share/icons/mono/scalable/devices/memory.svgz share/icons/mono/scalable/devices/modem.svgz share/icons/mono/scalable/devices/multimedia-player-apple-ipod.svgz +share/icons/mono/scalable/devices/multimedia-player-ipod.svgz +share/icons/mono/scalable/devices/multimedia-player.svgz +share/icons/mono/scalable/devices/network-wired.svgz +share/icons/mono/scalable/devices/network-wireless.svgz share/icons/mono/scalable/devices/pda.svgz +share/icons/mono/scalable/devices/phone.svgz share/icons/mono/scalable/devices/printer.svgz share/icons/mono/scalable/devices/scanner.svgz +share/icons/mono/scalable/devices/video-display.svgz share/icons/mono/scalable/devices/video-television.svgz +share/icons/mono/scalable/emblems/emblem-important.svgz +share/icons/mono/scalable/emblems/emblem-link.svgz +share/icons/mono/scalable/emblems/emblem-symbolic-link.svgz +share/icons/mono/scalable/emotes/face-smile-big.svgz share/icons/mono/scalable/mimetypes/application-illustrator.svgz share/icons/mono/scalable/mimetypes/application-javascript.svgz share/icons/mono/scalable/mimetypes/application-msword.svgz +share/icons/mono/scalable/mimetypes/application-octet-stream.svgz share/icons/mono/scalable/mimetypes/application-pgp-encrypted.svgz share/icons/mono/scalable/mimetypes/application-postscript.svgz share/icons/mono/scalable/mimetypes/application-vnd.ms-excel.svgz share/icons/mono/scalable/mimetypes/application-vnd.ms-powerpoint.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.chart.svgz share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.database.svgz share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.formula.svgz -share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.graphics-template.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.graphics.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.image.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.presentation.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.spreadsheet.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.text.svgz +share/icons/mono/scalable/mimetypes/application-vnd.rn-realmedia.svgz +share/icons/mono/scalable/mimetypes/application-vnd.stardivision.calc.svgz share/icons/mono/scalable/mimetypes/application-vnd.stardivision.draw.svgz +share/icons/mono/scalable/mimetypes/application-vnd.sun.xml.draw.svgz +share/icons/mono/scalable/mimetypes/application-vnd.sun.xml.draw.template.svgz share/icons/mono/scalable/mimetypes/application-x-7z-compressed.svgz share/icons/mono/scalable/mimetypes/application-x-awk.svgz share/icons/mono/scalable/mimetypes/application-x-bittorrent.svgz share/icons/mono/scalable/mimetypes/application-x-blender.svgz +share/icons/mono/scalable/mimetypes/application-x-cd-image.svgz share/icons/mono/scalable/mimetypes/application-x-cda.svgz share/icons/mono/scalable/mimetypes/application-x-core.svgz share/icons/mono/scalable/mimetypes/application-x-cue.svgz share/icons/mono/scalable/mimetypes/application-x-deb.svgz share/icons/mono/scalable/mimetypes/application-x-dvi.svgz +share/icons/mono/scalable/mimetypes/application-x-egon.svgz share/icons/mono/scalable/mimetypes/application-x-font-speedo.svgz +share/icons/mono/scalable/mimetypes/application-x-font-ttf.svgz +share/icons/mono/scalable/mimetypes/application-x-font-type1.svgz +share/icons/mono/scalable/mimetypes/application-x-java-archive.svgz +share/icons/mono/scalable/mimetypes/application-x-java.svgz +share/icons/mono/scalable/mimetypes/application-x-kaffeine.svgz +share/icons/mono/scalable/mimetypes/application-x-karbon.svgz +share/icons/mono/scalable/mimetypes/application-x-kchart.svgz share/icons/mono/scalable/mimetypes/application-x-kcsrc.svgz +share/icons/mono/scalable/mimetypes/application-x-kexiproject-shortcut.svgz +share/icons/mono/scalable/mimetypes/application-x-kexiproject.svgz +share/icons/mono/scalable/mimetypes/application-x-kformula.svgz +share/icons/mono/scalable/mimetypes/application-x-kgetlist.svgz +share/icons/mono/scalable/mimetypes/application-x-kig.svgz +share/icons/mono/scalable/mimetypes/application-x-kivio.svgz share/icons/mono/scalable/mimetypes/application-x-kontour.svgz +share/icons/mono/scalable/mimetypes/application-x-kopete-emoticons.svgz +share/icons/mono/scalable/mimetypes/application-x-kpovmodeler.svgz +share/icons/mono/scalable/mimetypes/application-x-kpresenter.svgz +share/icons/mono/scalable/mimetypes/application-x-krita.svgz +share/icons/mono/scalable/mimetypes/application-x-kspread.svgz share/icons/mono/scalable/mimetypes/application-x-kudesigner.svgz +share/icons/mono/scalable/mimetypes/application-x-kugar.svgz +share/icons/mono/scalable/mimetypes/application-x-kword.svgz +share/icons/mono/scalable/mimetypes/application-x-kwordquiz.svgz +share/icons/mono/scalable/mimetypes/application-x-lyx.svgz share/icons/mono/scalable/mimetypes/application-x-mimearchive.svgz +share/icons/mono/scalable/mimetypes/application-x-mplayer2.svgz +share/icons/mono/scalable/mimetypes/application-x-ms-dos-executable.svgz +share/icons/mono/scalable/mimetypes/application-x-mswinurl.svgz share/icons/mono/scalable/mimetypes/application-x-mswrite.svgz share/icons/mono/scalable/mimetypes/application-x-object.svgz +share/icons/mono/scalable/mimetypes/application-x-perl.svgz +share/icons/mono/scalable/mimetypes/application-x-php.svgz +share/icons/mono/scalable/mimetypes/application-x-python-bytecode.svgz +share/icons/mono/scalable/mimetypes/application-x-quattropro.svgz share/icons/mono/scalable/mimetypes/application-x-rpm.svgz share/icons/mono/scalable/mimetypes/application-x-ruby.svgz -share/icons/mono/scalable/mimetypes/application-x-shockwave-flash.svgz +share/icons/mono/scalable/mimetypes/application-x-sharedlib.svgz +share/icons/mono/scalable/mimetypes/application-x-superkaramba.svgz +share/icons/mono/scalable/mimetypes/application-x-tar.svgz share/icons/mono/scalable/mimetypes/application-x-tex-gf.svgz share/icons/mono/scalable/mimetypes/application-x-tex-pk.svgz +share/icons/mono/scalable/mimetypes/application-x-tgif.svgz share/icons/mono/scalable/mimetypes/application-x-trash.svgz share/icons/mono/scalable/mimetypes/application-x-troff-man.svgz share/icons/mono/scalable/mimetypes/application-x-uml.svgz +share/icons/mono/scalable/mimetypes/application-x-vnd.kde.kexi.svgz +share/icons/mono/scalable/mimetypes/application-x-vnd.kde.kugar.mixed.svgz +share/icons/mono/scalable/mimetypes/application-x-vnd.stardivision.chart.svgz +share/icons/mono/scalable/mimetypes/application-x-wmf.svgz share/icons/mono/scalable/mimetypes/application-x-zerosize.svgz +share/icons/mono/scalable/mimetypes/application-xml.svgz +share/icons/mono/scalable/mimetypes/application-xscd.svgz +share/icons/mono/scalable/mimetypes/application-xslt+xml.svgz +share/icons/mono/scalable/mimetypes/application-zip.svgz share/icons/mono/scalable/mimetypes/applix.svgz share/icons/mono/scalable/mimetypes/ascii.svgz share/icons/mono/scalable/mimetypes/audio-aac.svgz +share/icons/mono/scalable/mimetypes/audio-ac3.svgz +share/icons/mono/scalable/mimetypes/audio-basic.svgz share/icons/mono/scalable/mimetypes/audio-midi.svgz +share/icons/mono/scalable/mimetypes/audio-mp4.svgz +share/icons/mono/scalable/mimetypes/audio-mpeg.svgz +share/icons/mono/scalable/mimetypes/audio-prs.sid.svgz +share/icons/mono/scalable/mimetypes/audio-template.svgz +share/icons/mono/scalable/mimetypes/audio-vnd.rn-realaudio.svgz +share/icons/mono/scalable/mimetypes/audio-vnd.rn-realvideo.svgz +share/icons/mono/scalable/mimetypes/audio-x-adpcm.svgz +share/icons/mono/scalable/mimetypes/audio-x-aiff.svgz +share/icons/mono/scalable/mimetypes/audio-x-flac+ogg.svgz +share/icons/mono/scalable/mimetypes/audio-x-flac.svgz +share/icons/mono/scalable/mimetypes/audio-x-generic.svgz +share/icons/mono/scalable/mimetypes/audio-x-matroska.svgz +share/icons/mono/scalable/mimetypes/audio-x-mod.svgz +share/icons/mono/scalable/mimetypes/audio-x-monkey.svgz +share/icons/mono/scalable/mimetypes/audio-x-mp2.svgz +share/icons/mono/scalable/mimetypes/audio-x-mpegurl.svgz +share/icons/mono/scalable/mimetypes/audio-x-ms-wma.svgz +share/icons/mono/scalable/mimetypes/audio-x-musepack.svgz +share/icons/mono/scalable/mimetypes/audio-x-scpls.svgz +share/icons/mono/scalable/mimetypes/audio-x-speex+ogg.svgz +share/icons/mono/scalable/mimetypes/audio-x-vorbis+ogg.svgz +share/icons/mono/scalable/mimetypes/audio-x-wav.svgz share/icons/mono/scalable/mimetypes/backup.svgz share/icons/mono/scalable/mimetypes/cdbo_list.svgz share/icons/mono/scalable/mimetypes/cdr.svgz -share/icons/mono/scalable/mimetypes/chart.svgz share/icons/mono/scalable/mimetypes/colorset.svgz share/icons/mono/scalable/mimetypes/configure.svgz share/icons/mono/scalable/mimetypes/document2.svgz -share/icons/mono/scalable/mimetypes/exec_wine.svgz share/icons/mono/scalable/mimetypes/executable.svgz share/icons/mono/scalable/mimetypes/file_locked.svgz share/icons/mono/scalable/mimetypes/file_temporary.svgz share/icons/mono/scalable/mimetypes/font_bitmap.svgz -share/icons/mono/scalable/mimetypes/font_truetype.svgz -share/icons/mono/scalable/mimetypes/font_type1.svgz share/icons/mono/scalable/mimetypes/gnome-library.svgz share/icons/mono/scalable/mimetypes/gnome_app_info.svgz share/icons/mono/scalable/mimetypes/graphic.svgz share/icons/mono/scalable/mimetypes/igc.svgz +share/icons/mono/scalable/mimetypes/image-bmp.svgz +share/icons/mono/scalable/mimetypes/image-cgm.svgz +share/icons/mono/scalable/mimetypes/image-fax-g3.svgz +share/icons/mono/scalable/mimetypes/image-gif.svgz +share/icons/mono/scalable/mimetypes/image-jp2.svgz +share/icons/mono/scalable/mimetypes/image-jpeg.svgz +share/icons/mono/scalable/mimetypes/image-png.svgz +share/icons/mono/scalable/mimetypes/image-svg+xml.svgz +share/icons/mono/scalable/mimetypes/image-template.svgz +share/icons/mono/scalable/mimetypes/image-tiff.svgz share/icons/mono/scalable/mimetypes/image-vnd.djvu.svgz -share/icons/mono/scalable/mimetypes/images.svgz -share/icons/mono/scalable/mimetypes/info.svgz +share/icons/mono/scalable/mimetypes/image-x-applix-graphics.svgz +share/icons/mono/scalable/mimetypes/image-x-dcraw.svgz +share/icons/mono/scalable/mimetypes/image-x-dds.svgz +share/icons/mono/scalable/mimetypes/image-x-eps.svgz +share/icons/mono/scalable/mimetypes/image-x-exr.svgz +share/icons/mono/scalable/mimetypes/image-x-fits.svgz +share/icons/mono/scalable/mimetypes/image-x-generic.svgz +share/icons/mono/scalable/mimetypes/image-x-hdr.svgz +share/icons/mono/scalable/mimetypes/image-x-ico.svgz +share/icons/mono/scalable/mimetypes/image-x-jng.svgz +share/icons/mono/scalable/mimetypes/image-x-msod.svgz +share/icons/mono/scalable/mimetypes/image-x-pcx.svgz +share/icons/mono/scalable/mimetypes/image-x-photo-cd.svgz +share/icons/mono/scalable/mimetypes/image-x-portable-bitmap.svgz +share/icons/mono/scalable/mimetypes/image-x-portable-graymap.svgz +share/icons/mono/scalable/mimetypes/image-x-portable-pixmap.svgz +share/icons/mono/scalable/mimetypes/image-x-psd.svgz +share/icons/mono/scalable/mimetypes/image-x-rgb.svgz +share/icons/mono/scalable/mimetypes/image-x-tga.svgz +share/icons/mono/scalable/mimetypes/image-x-vnd.trolltech.qpicture.svgz +share/icons/mono/scalable/mimetypes/image-x-xbitmap.svgz +share/icons/mono/scalable/mimetypes/image-x-xcf.svgz +share/icons/mono/scalable/mimetypes/image-x-xfig.svgz +share/icons/mono/scalable/mimetypes/image-x-xpixmap.svgz +share/icons/mono/scalable/mimetypes/inode-directory.svgz share/icons/mono/scalable/mimetypes/ipod.svgz -share/icons/mono/scalable/mimetypes/java_jar.svgz -share/icons/mono/scalable/mimetypes/karbon_karbon.svgz -share/icons/mono/scalable/mimetypes/kchart_chrt.svgz share/icons/mono/scalable/mimetypes/kdevelop_project.svgz -share/icons/mono/scalable/mimetypes/kexi.svgz -share/icons/mono/scalable/mimetypes/kexi_kexi.svgz -share/icons/mono/scalable/mimetypes/kexiproject_shortcut.svgz -share/icons/mono/scalable/mimetypes/kexiproject_sqlite.svgz -share/icons/mono/scalable/mimetypes/kexiproject_sqlite2.svgz -share/icons/mono/scalable/mimetypes/kformula_kfo.svgz -share/icons/mono/scalable/mimetypes/kget_list.svgz -share/icons/mono/scalable/mimetypes/kig_doc.svgz -share/icons/mono/scalable/mimetypes/kivio_flw.svgz share/icons/mono/scalable/mimetypes/kmultiple.svgz share/icons/mono/scalable/mimetypes/kmy.svgz share/icons/mono/scalable/mimetypes/koffice.svgz -share/icons/mono/scalable/mimetypes/kopete_emoticons.svgz -share/icons/mono/scalable/mimetypes/kpovmodeler_doc.svgz -share/icons/mono/scalable/mimetypes/kpresenter_kpr.svgz -share/icons/mono/scalable/mimetypes/krita_kra.svgz -share/icons/mono/scalable/mimetypes/kspread_ksp.svgz -share/icons/mono/scalable/mimetypes/kugar_kud.svgz -share/icons/mono/scalable/mimetypes/kword_kwd.svgz -share/icons/mono/scalable/mimetypes/kwordquiz_doc.svgz share/icons/mono/scalable/mimetypes/lpl.svgz share/icons/mono/scalable/mimetypes/message-news.svgz share/icons/mono/scalable/mimetypes/metafont.svgz share/icons/mono/scalable/mimetypes/mime.svgz -share/icons/mono/scalable/mimetypes/mime_kaffeine.svgz -share/icons/mono/scalable/mimetypes/mime_lyx.svgz -share/icons/mono/scalable/mimetypes/mime_video.svgz share/icons/mono/scalable/mimetypes/misc.svgz -share/icons/mono/scalable/mimetypes/misc_doc.svgz -share/icons/mono/scalable/mimetypes/moc_src.svgz share/icons/mono/scalable/mimetypes/money.svgz share/icons/mono/scalable/mimetypes/mozilla_doc.svgz share/icons/mono/scalable/mimetypes/netscape.svgz share/icons/mono/scalable/mimetypes/netscape_doc.svgz -share/icons/mono/scalable/mimetypes/php.svgz share/icons/mono/scalable/mimetypes/printer.svgz -share/icons/mono/scalable/mimetypes/psd.svgz -share/icons/mono/scalable/mimetypes/quicktime.svgz -share/icons/mono/scalable/mimetypes/readme.svgz -share/icons/mono/scalable/mimetypes/real.svgz -share/icons/mono/scalable/mimetypes/real_doc.svgz share/icons/mono/scalable/mimetypes/reject.svgz share/icons/mono/scalable/mimetypes/resource.svgz share/icons/mono/scalable/mimetypes/soffice.svgz -share/icons/mono/scalable/mimetypes/source_c.svgz -share/icons/mono/scalable/mimetypes/source_cpp.svgz -share/icons/mono/scalable/mimetypes/source_f.svgz -share/icons/mono/scalable/mimetypes/source_h.svgz share/icons/mono/scalable/mimetypes/source_j.svgz -share/icons/mono/scalable/mimetypes/source_java.svgz share/icons/mono/scalable/mimetypes/source_l.svgz -share/icons/mono/scalable/mimetypes/source_moc.svgz -share/icons/mono/scalable/mimetypes/source_mono.svgz share/icons/mono/scalable/mimetypes/source_o.svgz -share/icons/mono/scalable/mimetypes/source_p.svgz -share/icons/mono/scalable/mimetypes/source_php.svgz -share/icons/mono/scalable/mimetypes/source_pl.svgz -share/icons/mono/scalable/mimetypes/source_py.svgz share/icons/mono/scalable/mimetypes/source_s.svgz -share/icons/mono/scalable/mimetypes/source_xml.svgz share/icons/mono/scalable/mimetypes/source_y.svgz -share/icons/mono/scalable/mimetypes/sql.svgz -share/icons/mono/scalable/mimetypes/superkaramba_theme.svgz -share/icons/mono/scalable/mimetypes/tar.svgz share/icons/mono/scalable/mimetypes/tellico.svgz share/icons/mono/scalable/mimetypes/template.svgz share/icons/mono/scalable/mimetypes/template_source.svgz share/icons/mono/scalable/mimetypes/text-calendar.svgz share/icons/mono/scalable/mimetypes/text-css.svgz share/icons/mono/scalable/mimetypes/text-directory.svgz +share/icons/mono/scalable/mimetypes/text-enriched.svgz +share/icons/mono/scalable/mimetypes/text-html.svgz share/icons/mono/scalable/mimetypes/text-mathml.svgz +share/icons/mono/scalable/mimetypes/text-plain.svgz +share/icons/mono/scalable/mimetypes/text-rtf.svgz +share/icons/mono/scalable/mimetypes/text-sgml.svgz +share/icons/mono/scalable/mimetypes/text-template.svgz +share/icons/mono/scalable/mimetypes/text-troff.svgz +share/icons/mono/scalable/mimetypes/text-vcalendar.svgz +share/icons/mono/scalable/mimetypes/text-vnd.abc.svgz +share/icons/mono/scalable/mimetypes/text-vnd.wap.wml.svgz share/icons/mono/scalable/mimetypes/text-x-bibtex.svgz +share/icons/mono/scalable/mimetypes/text-x-c++src.svgz +share/icons/mono/scalable/mimetypes/text-x-chdr.svgz +share/icons/mono/scalable/mimetypes/text-x-csharp.svgz +share/icons/mono/scalable/mimetypes/text-x-csrc.svgz +share/icons/mono/scalable/mimetypes/text-x-fortran.svgz +share/icons/mono/scalable/mimetypes/text-x-generic.svgz share/icons/mono/scalable/mimetypes/text-x-gettext-translation.svgz +share/icons/mono/scalable/mimetypes/text-x-java.svgz share/icons/mono/scalable/mimetypes/text-x-katefilelist.svgz share/icons/mono/scalable/mimetypes/text-x-log.svgz share/icons/mono/scalable/mimetypes/text-x-makefile.svgz +share/icons/mono/scalable/mimetypes/text-x-moc.svgz +share/icons/mono/scalable/mimetypes/text-x-pascal.svgz +share/icons/mono/scalable/mimetypes/text-x-python.svgz +share/icons/mono/scalable/mimetypes/text-x-readme.svgz +share/icons/mono/scalable/mimetypes/text-x-sql.svgz +share/icons/mono/scalable/mimetypes/text-x-texinfo.svgz +share/icons/mono/scalable/mimetypes/text-xml.svgz share/icons/mono/scalable/mimetypes/text.svgz share/icons/mono/scalable/mimetypes/trash.svgz -share/icons/mono/scalable/mimetypes/txt2.svgz +share/icons/mono/scalable/mimetypes/video-mp4.svgz +share/icons/mono/scalable/mimetypes/video-mpeg.svgz +share/icons/mono/scalable/mimetypes/video-quicktime.svgz +share/icons/mono/scalable/mimetypes/video-template.svgz +share/icons/mono/scalable/mimetypes/video-x-flic.svgz +share/icons/mono/scalable/mimetypes/video-x-flv.svgz +share/icons/mono/scalable/mimetypes/video-x-generic.svgz +share/icons/mono/scalable/mimetypes/video-x-matroska.svgz +share/icons/mono/scalable/mimetypes/video-x-mng.svgz share/icons/mono/scalable/mimetypes/video-x-ms-asf.svgz +share/icons/mono/scalable/mimetypes/video-x-ms-wmv.svgz +share/icons/mono/scalable/mimetypes/video-x-msvideo.svgz +share/icons/mono/scalable/mimetypes/video-x-ogm+ogg.svgz +share/icons/mono/scalable/mimetypes/video-x-theora+ogg.svgz share/icons/mono/scalable/mimetypes/widget_doc.svgz +share/icons/mono/scalable/mimetypes/x-office-calendar.svgz +share/icons/mono/scalable/mimetypes/x-office-spreadsheet.svgz share/icons/mono/scalable/mimetypes/you.svgz -share/icons/mono/scalable/mimetypes/zip.svgz -share/icons/mono/scalable/places/bookmark.svgz +share/icons/mono/scalable/places/bookmarks.svgz share/icons/mono/scalable/places/contact.svgz share/icons/mono/scalable/places/document-multiple.svgz +share/icons/mono/scalable/places/favorites.svgz share/icons/mono/scalable/places/folder-blue.svgz share/icons/mono/scalable/places/folder-bookmarks.svgz share/icons/mono/scalable/places/folder-brown.svgz @@ -1959,6 +2146,7 @@ share/icons/mono/scalable/places/folder-locked.svgz share/icons/mono/scalable/places/folder-orange.svgz share/icons/mono/scalable/places/folder-print.svgz share/icons/mono/scalable/places/folder-red.svgz +share/icons/mono/scalable/places/folder-remote.svgz share/icons/mono/scalable/places/folder-sound.svgz share/icons/mono/scalable/places/folder-tar.svgz share/icons/mono/scalable/places/folder-txt.svgz @@ -1968,6 +2156,9 @@ share/icons/mono/scalable/places/folder-yellow.svgz share/icons/mono/scalable/places/folder.svgz share/icons/mono/scalable/places/link-overlay.svgz share/icons/mono/scalable/places/lock-overlay.svgz +share/icons/mono/scalable/places/mail-folder-inbox.svgz +share/icons/mono/scalable/places/mail-folder-outbox.svgz +share/icons/mono/scalable/places/mail-folder-sent.svgz share/icons/mono/scalable/places/mail-inbox.svgz share/icons/mono/scalable/places/mail-message.svgz share/icons/mono/scalable/places/mail-outbox.svgz @@ -1978,15 +2169,20 @@ share/icons/mono/scalable/places/network-server-database.svgz share/icons/mono/scalable/places/network-server.svgz share/icons/mono/scalable/places/network-workgroup.svgz share/icons/mono/scalable/places/network.svgz +share/icons/mono/scalable/places/start-here-gnome.svgz +share/icons/mono/scalable/places/start-here-kde.svgz share/icons/mono/scalable/places/start-here.svgz share/icons/mono/scalable/places/user-desktop.svgz share/icons/mono/scalable/places/user-home.svgz +share/icons/mono/scalable/places/user-identity.svgz share/icons/mono/scalable/places/user-trash.svgz share/icons/mono/scalable/places/zip-overlay.svgz +share/icons/mono/scalable/status/audio-volume-muted.svgz share/icons/mono/scalable/status/dialog-error.svgz share/icons/mono/scalable/status/dialog-information.svgz share/icons/mono/scalable/status/dialog-warning.svgz share/icons/mono/scalable/status/mail-attachment.svgz +share/icons/mono/scalable/status/mail-task.svgz share/icons/mono/scalable/status/object-locked.svgz share/icons/mono/scalable/status/object-unlocked.svgz share/icons/mono/scalable/status/security-high.svgz @@ -2015,12 +2211,11 @@ share/kde4/services/kttsjobmgr.desktop share/kde4/servicetypes/kttsd_audioplugin.desktop share/kde4/servicetypes/kttsd_filterplugin.desktop share/kde4/servicetypes/kttsd_synthplugin.desktop -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services -@dirrmtry share/kde4 @dirrm share/icons/mono/scalable/status @dirrm share/icons/mono/scalable/places @dirrm share/icons/mono/scalable/mimetypes +@dirrm share/icons/mono/scalable/emotes +@dirrm share/icons/mono/scalable/emblems @dirrm share/icons/mono/scalable/devices @dirrm share/icons/mono/scalable/categories @dirrm share/icons/mono/scalable/apps @@ -2039,27 +2234,10 @@ share/kde4/servicetypes/kttsd_synthplugin.desktop @dirrm share/icons/mono/128x128/animations @dirrm share/icons/mono/128x128 @dirrm share/icons/mono -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48/actions -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32/actions -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22/actions -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16/actions -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons @dirrm share/doc/HTML/en/kttsd @dirrm share/doc/HTML/en/kmouth @dirrm share/doc/HTML/en/kmousetool @dirrm share/doc/HTML/en/kmag -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/config @dirrm share/apps/kttsd/xslt @dirrm share/apps/kttsd/xmltransformer @dirrm share/apps/kttsd/talkerchooser @@ -2088,8 +2266,3 @@ share/kde4/servicetypes/kttsd_synthplugin.desktop @dirrm share/apps/kmousetool/sounds @dirrm share/apps/kmousetool @dirrm share/apps/kmag -@dirrmtry share/apps/color-schemes -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/kde4 diff --git a/accessibility/kmousetool/Makefile b/accessibility/kmousetool/Makefile index a5b87bd375eb..e682fd7bc850 100644 --- a/accessibility/kmousetool/Makefile +++ b/accessibility/kmousetool/Makefile @@ -8,7 +8,7 @@ PORTNAME= kdeaccessibility PORTVERSION= ${KDE4_VERSION} CATEGORIES= accessibility kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org @@ -16,14 +16,19 @@ COMMENT= Accessibility applications for KDE4 LATEST_LINK= ${PORTNAME}4 -USE_KDE4= kdelibs workspace kdeprefix kdehier automoc4 -KDE4_BUILDENV= yes USE_BZIP2= yes +USE_KDE4= kdelibs kdeprefix kdehier automoc4 +KDE4_BUILDENV= yes USE_QT_VER= 4 QT_COMPONENTS= opengl gui qmake_build moc_build rcc_build uic_build +USE_LDCONFIG= yes CMAKE_ARGS+= -DKDE4_KTTSD_ALSA:BOOL=OFF +MAN1= kmag.1 \ + kmousetool.1 \ + kmouth.1 + post-extract: ${MKDIR} ${WRKSRC} diff --git a/accessibility/kmousetool/distinfo b/accessibility/kmousetool/distinfo index 3d3a2895c559..0c5d66145f60 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdeaccessibility-4.1.4.tar.bz2) = da6c157741d73eb1445cd60d9b78cd2e -SHA256 (KDE/kdeaccessibility-4.1.4.tar.bz2) = e85943f0f59fe2831c8618a2c2f9050e8d3fc0026f5b6e61eed5f96a04bf1bab -SIZE (KDE/kdeaccessibility-4.1.4.tar.bz2) = 6371585 +MD5 (KDE/kdeaccessibility-4.2.0.tar.bz2) = f32f24c4f07906b7af39ca18d47b5e27 +SHA256 (KDE/kdeaccessibility-4.2.0.tar.bz2) = 2ec7bab55ae0e41a616cdf10c81b6cf7a504442d01c631c7e268876dd959b434 +SIZE (KDE/kdeaccessibility-4.2.0.tar.bz2) = 6592084 diff --git a/accessibility/kmousetool/pkg-plist b/accessibility/kmousetool/pkg-plist index a7e8f9a69e99..20005d3b749f 100644 --- a/accessibility/kmousetool/pkg-plist +++ b/accessibility/kmousetool/pkg-plist @@ -18,7 +18,7 @@ lib/kde4/libkttsd_xmltransformerplugin.so lib/kde4/libkttsjobmgrpart.so lib/libkttsd.so lib/libkttsd.so.5 -lib/libkttsd.so.5.0.0 +lib/libkttsd.so.5.0.1 share/applications/kde4/kmag.desktop share/applications/kde4/kmousetool.desktop share/applications/kde4/kmouth.desktop @@ -204,7 +204,8 @@ share/icons/mono/scalable/actions/aocenterh.svgz share/icons/mono/scalable/actions/aocenterv.svgz share/icons/mono/scalable/actions/appearance.svgz share/icons/mono/scalable/actions/application-exit.svgz -share/icons/mono/scalable/actions/appointment.svgz +share/icons/mono/scalable/actions/appointment-new.svgz +share/icons/mono/scalable/actions/appointment-reminder.svgz share/icons/mono/scalable/actions/arc.svgz share/icons/mono/scalable/actions/arc_center.svgz share/icons/mono/scalable/actions/archive-extract.svgz @@ -252,6 +253,7 @@ share/icons/mono/scalable/actions/bold.svgz share/icons/mono/scalable/actions/bookmark-new-list.svgz share/icons/mono/scalable/actions/bookmark-new.svgz share/icons/mono/scalable/actions/bookmark-toolbar.svgz +share/icons/mono/scalable/actions/bookmarks-organize.svgz share/icons/mono/scalable/actions/border_all.svgz share/icons/mono/scalable/actions/border_bottom.svgz share/icons/mono/scalable/actions/border_fall.svgz @@ -321,6 +323,7 @@ share/icons/mono/scalable/actions/checkbox-widget.svgz share/icons/mono/scalable/actions/checkedbox.svgz share/icons/mono/scalable/actions/checkmark.svgz share/icons/mono/scalable/actions/chemical.svgz +share/icons/mono/scalable/actions/chronometer.svgz share/icons/mono/scalable/actions/circle.svgz share/icons/mono/scalable/actions/circlebcl.svgz share/icons/mono/scalable/actions/circlebcp.svgz @@ -365,9 +368,10 @@ share/icons/mono/scalable/actions/cpufreq_50.svgz share/icons/mono/scalable/actions/cpufreq_75.svgz share/icons/mono/scalable/actions/cpufreq_na.svgz share/icons/mono/scalable/actions/crop.svgz -share/icons/mono/scalable/actions/css.svgz +share/icons/mono/scalable/actions/cssvalidator.svgz share/icons/mono/scalable/actions/cubicbeziercurve.svgz share/icons/mono/scalable/actions/curvelineintersection.svgz +share/icons/mono/scalable/actions/dashboard-show.svgz share/icons/mono/scalable/actions/data-view.svgz share/icons/mono/scalable/actions/data.svgz share/icons/mono/scalable/actions/database-first-row.svgz @@ -396,6 +400,7 @@ share/icons/mono/scalable/actions/delslide.svgz share/icons/mono/scalable/actions/deriv_func.svgz share/icons/mono/scalable/actions/design-view.svgz share/icons/mono/scalable/actions/dialog-cancel.svgz +share/icons/mono/scalable/actions/dialog-close.svgz share/icons/mono/scalable/actions/dialog-ok-apply.svgz share/icons/mono/scalable/actions/dialog-ok.svgz share/icons/mono/scalable/actions/diff.svgz @@ -404,11 +409,15 @@ share/icons/mono/scalable/actions/dirsynch.svgz share/icons/mono/scalable/actions/dirsynch_new.svgz share/icons/mono/scalable/actions/dissociatecell.svgz share/icons/mono/scalable/actions/distance.svgz +share/icons/mono/scalable/actions/document-decrypt.svgz +share/icons/mono/scalable/actions/document-encrypt.svgz share/icons/mono/scalable/actions/document-export.svgz share/icons/mono/scalable/actions/document-import.svgz share/icons/mono/scalable/actions/document-new.svgz +share/icons/mono/scalable/actions/document-open-folder.svgz share/icons/mono/scalable/actions/document-open.svgz share/icons/mono/scalable/actions/document-preview-archive.svgz +share/icons/mono/scalable/actions/document-print-frame.svgz share/icons/mono/scalable/actions/document-print-preview.svgz share/icons/mono/scalable/actions/document-print.svgz share/icons/mono/scalable/actions/document-properties.svgz @@ -424,7 +433,9 @@ share/icons/mono/scalable/actions/draw-freehand.svgz share/icons/mono/scalable/actions/duringbreaks.svgz share/icons/mono/scalable/actions/dynamic.svgz share/icons/mono/scalable/actions/edit-add.svgz +share/icons/mono/scalable/actions/edit-bomb.svgz share/icons/mono/scalable/actions/edit-clear-history.svgz +share/icons/mono/scalable/actions/edit-clear-locationbar-ltr.svgz share/icons/mono/scalable/actions/edit-clear-locationbar-rtl.svgz share/icons/mono/scalable/actions/edit-clear-locationbar.svgz share/icons/mono/scalable/actions/edit-clear.svgz @@ -434,9 +445,12 @@ share/icons/mono/scalable/actions/edit-delete-mail.svgz share/icons/mono/scalable/actions/edit-delete-shred.svgz share/icons/mono/scalable/actions/edit-delete.svgz share/icons/mono/scalable/actions/edit-find.svgz +share/icons/mono/scalable/actions/edit-mail-find.svgz share/icons/mono/scalable/actions/edit-paste.svgz share/icons/mono/scalable/actions/edit-redo.svgz share/icons/mono/scalable/actions/edit-remove.svgz +share/icons/mono/scalable/actions/edit-rename.svgz +share/icons/mono/scalable/actions/edit-text.svgz share/icons/mono/scalable/actions/edit-trash.svgz share/icons/mono/scalable/actions/edit-undo.svgz share/icons/mono/scalable/actions/edit-user.svgz @@ -467,8 +481,8 @@ share/icons/mono/scalable/actions/fileblend.svgz share/icons/mono/scalable/actions/filereplace.svgz share/icons/mono/scalable/actions/filesimulate.svgz share/icons/mono/scalable/actions/filestop.svgz +share/icons/mono/scalable/actions/fill-color.svgz share/icons/mono/scalable/actions/fill.svgz -share/icons/mono/scalable/actions/fill_colour.svgz share/icons/mono/scalable/actions/filledcircle.svgz share/icons/mono/scalable/actions/filledellipse.svgz share/icons/mono/scalable/actions/filledrectangle.svgz @@ -483,19 +497,22 @@ share/icons/mono/scalable/actions/folder-open.svgz share/icons/mono/scalable/actions/folder.svgz share/icons/mono/scalable/actions/followmouse.svgz share/icons/mono/scalable/actions/fonts.svgz +share/icons/mono/scalable/actions/fork.svgz share/icons/mono/scalable/actions/form_edit.svgz share/icons/mono/scalable/actions/format-font-size-less.svgz share/icons/mono/scalable/actions/format-font-size-more.svgz share/icons/mono/scalable/actions/format-indent-less.svgz share/icons/mono/scalable/actions/format-indent-more.svgz -share/icons/mono/scalable/actions/format-justify-block.svgz share/icons/mono/scalable/actions/format-justify-bottom.svgz share/icons/mono/scalable/actions/format-justify-center.svgz +share/icons/mono/scalable/actions/format-justify-fill.svgz share/icons/mono/scalable/actions/format-justify-left.svgz share/icons/mono/scalable/actions/format-justify-right.svgz share/icons/mono/scalable/actions/format-justify-top.svgz share/icons/mono/scalable/actions/format-list-unordered.svgz share/icons/mono/scalable/actions/format-text-bold.svgz +share/icons/mono/scalable/actions/format-text-direction-ltr.svgz +share/icons/mono/scalable/actions/format-text-direction-rtl.svgz share/icons/mono/scalable/actions/format-text-italic.svgz share/icons/mono/scalable/actions/format-text-strikethrough.svgz share/icons/mono/scalable/actions/format-text-subscript.svgz @@ -552,6 +569,7 @@ share/icons/mono/scalable/actions/harmonichomology.svgz share/icons/mono/scalable/actions/hdd.svgz share/icons/mono/scalable/actions/help-about-kde.svgz share/icons/mono/scalable/actions/help-contextual.svgz +share/icons/mono/scalable/actions/help-hint.svgz share/icons/mono/scalable/actions/help.svgz share/icons/mono/scalable/actions/hexagonbcv.svgz share/icons/mono/scalable/actions/hibernate.svgz @@ -681,8 +699,18 @@ share/icons/mono/scalable/actions/kstars_stars.svgz share/icons/mono/scalable/actions/ksys1.svgz share/icons/mono/scalable/actions/ksys2.svgz share/icons/mono/scalable/actions/ksys3.svgz +share/icons/mono/scalable/actions/kt-check-data.svgz +share/icons/mono/scalable/actions/kt-chunks.svgz +share/icons/mono/scalable/actions/kt-info-widget.svgz +share/icons/mono/scalable/actions/kt-pause.svgz +share/icons/mono/scalable/actions/kt-plugins.svgz +share/icons/mono/scalable/actions/kt-queue-manager.svgz +share/icons/mono/scalable/actions/kt-remove.svgz +share/icons/mono/scalable/actions/kt-show-statusbar.svgz +share/icons/mono/scalable/actions/kt-start.svgz +share/icons/mono/scalable/actions/kt-stop-all.svgz +share/icons/mono/scalable/actions/kt-stop.svgz share/icons/mono/scalable/actions/ktinfowidget.svgz -share/icons/mono/scalable/actions/ktip.svgz share/icons/mono/scalable/actions/label-widget.svgz share/icons/mono/scalable/actions/lan.svgz share/icons/mono/scalable/actions/languages.svgz @@ -736,20 +764,22 @@ share/icons/mono/scalable/actions/lowerlayer.svgz share/icons/mono/scalable/actions/lsub.svgz share/icons/mono/scalable/actions/lsup.svgz share/icons/mono/scalable/actions/magnify.svgz -share/icons/mono/scalable/actions/mail-find.svgz share/icons/mono/scalable/actions/mail-flag.svgz share/icons/mono/scalable/actions/mail-forward.svgz -share/icons/mono/scalable/actions/mail-get.svgz +share/icons/mono/scalable/actions/mail-mark-important.svgz share/icons/mono/scalable/actions/mail-mark-junk.svgz share/icons/mono/scalable/actions/mail-mark-notjunk.svgz +share/icons/mono/scalable/actions/mail-mark-task.svgz +share/icons/mono/scalable/actions/mail-mark-unread.svgz share/icons/mono/scalable/actions/mail-message-new.svgz +share/icons/mono/scalable/actions/mail-queue.svgz +share/icons/mono/scalable/actions/mail-receive.svgz share/icons/mono/scalable/actions/mail-reply-all.svgz +share/icons/mono/scalable/actions/mail-reply-custom.svgz +share/icons/mono/scalable/actions/mail-reply-list.svgz share/icons/mono/scalable/actions/mail-reply-sender.svgz share/icons/mono/scalable/actions/mail-replylist.svgz share/icons/mono/scalable/actions/mail-send.svgz -share/icons/mono/scalable/actions/mail.svgz -share/icons/mono/scalable/actions/mail_post_to.svgz -share/icons/mono/scalable/actions/mail_todo.svgz share/icons/mono/scalable/actions/make.svgz share/icons/mono/scalable/actions/markasblank.svgz share/icons/mono/scalable/actions/math_abs.svgz @@ -912,9 +942,11 @@ share/icons/mono/scalable/actions/pgnum.svgz share/icons/mono/scalable/actions/pgp-keys.svgz share/icons/mono/scalable/actions/player-time.svgz share/icons/mono/scalable/actions/player-volume-down.svgz +share/icons/mono/scalable/actions/player-volume-muted.svgz share/icons/mono/scalable/actions/player-volume-up.svgz share/icons/mono/scalable/actions/player-volume.svgz share/icons/mono/scalable/actions/player_mute.svgz +share/icons/mono/scalable/actions/player_record.svgz share/icons/mono/scalable/actions/plot.svgz share/icons/mono/scalable/actions/podcast_new.svgz share/icons/mono/scalable/actions/point.svgz @@ -932,11 +964,13 @@ share/icons/mono/scalable/actions/precplus.svgz share/icons/mono/scalable/actions/preverror.svgz share/icons/mono/scalable/actions/prevfuzzy.svgz share/icons/mono/scalable/actions/prevfuzzyuntrans.svgz +share/icons/mono/scalable/actions/preview.svgz share/icons/mono/scalable/actions/previewprint.svgz share/icons/mono/scalable/actions/prevmarked.svgz share/icons/mono/scalable/actions/prevpo.svgz share/icons/mono/scalable/actions/prevtemplate.svgz share/icons/mono/scalable/actions/prevuntranslated.svgz +share/icons/mono/scalable/actions/process-stop.svgz share/icons/mono/scalable/actions/processor.svgz share/icons/mono/scalable/actions/prod.svgz share/icons/mono/scalable/actions/progress-bar-widget.svgz @@ -952,16 +986,17 @@ share/icons/mono/scalable/actions/quick_start.svgz share/icons/mono/scalable/actions/quiz.svgz share/icons/mono/scalable/actions/radicalline.svgz share/icons/mono/scalable/actions/radio-button-widget.svgz +share/icons/mono/scalable/actions/raindrop.svgz share/icons/mono/scalable/actions/raise.svgz share/icons/mono/scalable/actions/raiselayer.svgz share/icons/mono/scalable/actions/random.svgz +share/icons/mono/scalable/actions/rating.svgz share/icons/mono/scalable/actions/ray.svgz share/icons/mono/scalable/actions/rebuild.svgz share/icons/mono/scalable/actions/rectangle.svgz share/icons/mono/scalable/actions/recursive.svgz share/icons/mono/scalable/actions/redeyes.svgz share/icons/mono/scalable/actions/relation.svgz -share/icons/mono/scalable/actions/reload.svgz share/icons/mono/scalable/actions/remcol.svgz share/icons/mono/scalable/actions/removecell.svgz share/icons/mono/scalable/actions/removecomment.svgz @@ -1025,6 +1060,7 @@ share/icons/mono/scalable/actions/shadowRU.svgz share/icons/mono/scalable/actions/shadowU.svgz share/icons/mono/scalable/actions/share.svgz share/icons/mono/scalable/actions/shear.svgz +share/icons/mono/scalable/actions/show-menu.svgz share/icons/mono/scalable/actions/show_offliners.svgz share/icons/mono/scalable/actions/show_table_column.svgz share/icons/mono/scalable/actions/show_table_row.svgz @@ -1043,8 +1079,8 @@ share/icons/mono/scalable/actions/smallcal.svgz share/icons/mono/scalable/actions/smallthumbnails.svgz share/icons/mono/scalable/actions/smiley.svgz share/icons/mono/scalable/actions/solarizetool.svgz +share/icons/mono/scalable/actions/speaker.svgz share/icons/mono/scalable/actions/spectrum.svgz -share/icons/mono/scalable/actions/spellcheck.svgz share/icons/mono/scalable/actions/spellcheck_from_cursor.svgz share/icons/mono/scalable/actions/spellcheck_selected.svgz share/icons/mono/scalable/actions/spinbox-widget.svgz @@ -1071,10 +1107,16 @@ share/icons/mono/scalable/actions/suspend_to_disk.svgz share/icons/mono/scalable/actions/suspend_to_ram.svgz share/icons/mono/scalable/actions/syntax.svgz share/icons/mono/scalable/actions/system-lock-screen.svgz +share/icons/mono/scalable/actions/system-log-out.svgz +share/icons/mono/scalable/actions/system-restart.svgz share/icons/mono/scalable/actions/system-run.svgz share/icons/mono/scalable/actions/system-search.svgz +share/icons/mono/scalable/actions/system-shutdown.svgz +share/icons/mono/scalable/actions/system-suspend-hibernate.svgz +share/icons/mono/scalable/actions/system-suspend.svgz share/icons/mono/scalable/actions/system-switch-user.svgz share/icons/mono/scalable/actions/tab-breakoff.svgz +share/icons/mono/scalable/actions/tab-close.svgz share/icons/mono/scalable/actions/tab-duplicate.svgz share/icons/mono/scalable/actions/tab-new-background.svgz share/icons/mono/scalable/actions/tab-new.svgz @@ -1082,10 +1124,11 @@ share/icons/mono/scalable/actions/tab-widget.svgz share/icons/mono/scalable/actions/tab_first.svgz share/icons/mono/scalable/actions/tab_last.svgz share/icons/mono/scalable/actions/tab_left.svgz -share/icons/mono/scalable/actions/tab_remove.svgz share/icons/mono/scalable/actions/tab_right.svgz share/icons/mono/scalable/actions/tables.svgz share/icons/mono/scalable/actions/tangent.svgz +share/icons/mono/scalable/actions/task-new.svgz +share/icons/mono/scalable/actions/task-reminder.svgz share/icons/mono/scalable/actions/tea_not_ready.svgz share/icons/mono/scalable/actions/template_a4.svgz share/icons/mono/scalable/actions/template_balancesheet.svgz @@ -1179,7 +1222,10 @@ share/icons/mono/scalable/actions/tool_star.svgz share/icons/mono/scalable/actions/tool_text.svgz share/icons/mono/scalable/actions/tool_uselastdir.svgz share/icons/mono/scalable/actions/tool_wizard_selection.svgz +share/icons/mono/scalable/actions/tools-check-spelling.svgz share/icons/mono/scalable/actions/tools-media-optical-burn.svgz +share/icons/mono/scalable/actions/tools-report-bug.svgz +share/icons/mono/scalable/actions/tools-wizard.svgz share/icons/mono/scalable/actions/tooltip.svgz share/icons/mono/scalable/actions/transform-rotate.svgz share/icons/mono/scalable/actions/transform.svgz @@ -1209,17 +1255,25 @@ share/icons/mono/scalable/actions/vertical_text.svgz share/icons/mono/scalable/actions/view-calendar-day.svgz share/icons/mono/scalable/actions/view-calendar-list.svgz share/icons/mono/scalable/actions/view-calendar-month.svgz -share/icons/mono/scalable/actions/view-calendar-todo.svgz +share/icons/mono/scalable/actions/view-calendar-tasks.svgz share/icons/mono/scalable/actions/view-calendar-upcoming-days.svgz share/icons/mono/scalable/actions/view-calendar-upcoming-events.svgz share/icons/mono/scalable/actions/view-calendar-week.svgz share/icons/mono/scalable/actions/view-calendar-workweek.svgz share/icons/mono/scalable/actions/view-choose.svgz +share/icons/mono/scalable/actions/view-close.svgz +share/icons/mono/scalable/actions/view-columns.svgz +share/icons/mono/scalable/actions/view-file-columns.svgz share/icons/mono/scalable/actions/view-filter.svgz share/icons/mono/scalable/actions/view-fullscreen.svgz share/icons/mono/scalable/actions/view-history.svgz share/icons/mono/scalable/actions/view-icon.svgz share/icons/mono/scalable/actions/view-left-right.svgz +share/icons/mono/scalable/actions/view-list-details.svgz +share/icons/mono/scalable/actions/view-list-icons.svgz +share/icons/mono/scalable/actions/view-list-text.svgz +share/icons/mono/scalable/actions/view-list-tree.svgz +share/icons/mono/scalable/actions/view-media-artist.svgz share/icons/mono/scalable/actions/view-media-visualization.svgz share/icons/mono/scalable/actions/view-pim-calendar.svgz share/icons/mono/scalable/actions/view-pim-contacts.svgz @@ -1229,11 +1283,18 @@ share/icons/mono/scalable/actions/view-pim-news.svgz share/icons/mono/scalable/actions/view-pim-notes.svgz share/icons/mono/scalable/actions/view-pim-summary.svgz share/icons/mono/scalable/actions/view-pim-tasks.svgz +share/icons/mono/scalable/actions/view-presentation.svgz +share/icons/mono/scalable/actions/view-preview.svgz +share/icons/mono/scalable/actions/view-refresh.svgz share/icons/mono/scalable/actions/view-remove.svgz share/icons/mono/scalable/actions/view-restore.svgz +share/icons/mono/scalable/actions/view-right-close.svgz +share/icons/mono/scalable/actions/view-right-new.svgz share/icons/mono/scalable/actions/view-sidetree.svgz share/icons/mono/scalable/actions/view-sort-ascending.svgz share/icons/mono/scalable/actions/view-sort-descending.svgz +share/icons/mono/scalable/actions/view-split-left-right.svgz +share/icons/mono/scalable/actions/view-split-top-bottom.svgz share/icons/mono/scalable/actions/view-statistics.svgz share/icons/mono/scalable/actions/view-top-bottom.svgz share/icons/mono/scalable/actions/view-tree.svgz @@ -1249,8 +1310,6 @@ share/icons/mono/scalable/actions/view_right.svgz share/icons/mono/scalable/actions/view_ruler.svgz share/icons/mono/scalable/actions/view_split.svgz share/icons/mono/scalable/actions/view_text.svgz -share/icons/mono/scalable/actions/viewmag.svgz -share/icons/mono/scalable/actions/viewmag1.svgz share/icons/mono/scalable/actions/viewmag_bis+.svgz share/icons/mono/scalable/actions/viewmag_bis-.svgz share/icons/mono/scalable/actions/viewmag_enlarge.svgz @@ -1261,7 +1320,6 @@ share/icons/mono/scalable/actions/viewmag_lock.svgz share/icons/mono/scalable/actions/viewmag_no.svgz share/icons/mono/scalable/actions/viewmag_shrink.svgz share/icons/mono/scalable/actions/viewmag_w.svgz -share/icons/mono/scalable/actions/viewmagfit.svgz share/icons/mono/scalable/actions/voicecall.svgz share/icons/mono/scalable/actions/w.svgz share/icons/mono/scalable/actions/webarchiver.svgz @@ -1270,21 +1328,23 @@ share/icons/mono/scalable/actions/webcamsend.svgz share/icons/mono/scalable/actions/webexport.svgz share/icons/mono/scalable/actions/wiki.svgz share/icons/mono/scalable/actions/window-close.svgz +share/icons/mono/scalable/actions/window-duplicate.svgz share/icons/mono/scalable/actions/window-new.svgz share/icons/mono/scalable/actions/window-suppressed.svgz share/icons/mono/scalable/actions/window.svgz -share/icons/mono/scalable/actions/window_duplicate.svgz share/icons/mono/scalable/actions/wired.svgz share/icons/mono/scalable/actions/wireless.svgz -share/icons/mono/scalable/actions/wizard.svgz share/icons/mono/scalable/actions/yahoo_mobile.svgz +share/icons/mono/scalable/actions/zoom-best-fit.svgz share/icons/mono/scalable/actions/zoom-in.svgz +share/icons/mono/scalable/actions/zoom-original.svgz share/icons/mono/scalable/actions/zoom-out.svgz +share/icons/mono/scalable/actions/zoom.svgz share/icons/mono/scalable/actions/zoom_disabled.svgz share/icons/mono/scalable/actions/zoom_enabled.svgz +share/icons/mono/scalable/apps/VBox.svgz share/icons/mono/scalable/apps/abakus.svgz share/icons/mono/scalable/apps/abiword.svgz -share/icons/mono/scalable/apps/accessibility_section.svgz share/icons/mono/scalable/apps/accessories-calculator.svgz share/icons/mono/scalable/apps/accessories-character-map.svgz share/icons/mono/scalable/apps/accessories-dictionary.svgz @@ -1296,6 +1356,7 @@ share/icons/mono/scalable/apps/amarok.svgz share/icons/mono/scalable/apps/amor.svgz share/icons/mono/scalable/apps/antivirus.svgz share/icons/mono/scalable/apps/apollon.svgz +share/icons/mono/scalable/apps/arora.svgz share/icons/mono/scalable/apps/assistant.svgz share/icons/mono/scalable/apps/atlantik.svgz share/icons/mono/scalable/apps/audacity.svgz @@ -1305,8 +1366,6 @@ share/icons/mono/scalable/apps/blender.svgz share/icons/mono/scalable/apps/blinken.svgz share/icons/mono/scalable/apps/bluefish.svgz share/icons/mono/scalable/apps/bookcase.svgz -share/icons/mono/scalable/apps/browser.svgz -share/icons/mono/scalable/apps/bug.svgz share/icons/mono/scalable/apps/calc.svgz share/icons/mono/scalable/apps/catalogmanager.svgz share/icons/mono/scalable/apps/categories.svgz @@ -1322,6 +1381,7 @@ share/icons/mono/scalable/apps/displayconfig.svgz share/icons/mono/scalable/apps/dopewars-pill.svgz share/icons/mono/scalable/apps/download_manager.svgz share/icons/mono/scalable/apps/eclipse.svgz +share/icons/mono/scalable/apps/ekiga.svgz share/icons/mono/scalable/apps/emacs.svgz share/icons/mono/scalable/apps/email.svgz share/icons/mono/scalable/apps/energy_star.svgz @@ -1333,15 +1393,11 @@ share/icons/mono/scalable/apps/falconseye.svgz share/icons/mono/scalable/apps/fax.svgz share/icons/mono/scalable/apps/fifteenpieces.svgz share/icons/mono/scalable/apps/filelight.svgz -share/icons/mono/scalable/apps/fileshare.svgz -share/icons/mono/scalable/apps/filetypes.svgz share/icons/mono/scalable/apps/flashkard.svgz share/icons/mono/scalable/apps/fsview.svgz share/icons/mono/scalable/apps/gaim.svgz share/icons/mono/scalable/apps/gimp.svgz share/icons/mono/scalable/apps/gkrellm.svgz -share/icons/mono/scalable/apps/gnome.svgz -share/icons/mono/scalable/apps/gnomemeeting.svgz share/icons/mono/scalable/apps/gnucash.svgz share/icons/mono/scalable/apps/gnumeric.svgz share/icons/mono/scalable/apps/gnutella.svgz @@ -1353,10 +1409,10 @@ share/icons/mono/scalable/apps/gvim.svgz share/icons/mono/scalable/apps/gwenview.svgz share/icons/mono/scalable/apps/gxmame.svgz share/icons/mono/scalable/apps/hardware.svgz -share/icons/mono/scalable/apps/hardware_info.svgz share/icons/mono/scalable/apps/help-browser.svgz share/icons/mono/scalable/apps/highlight.svgz share/icons/mono/scalable/apps/hw_unknown.svgz +share/icons/mono/scalable/apps/hwinfo.svgz share/icons/mono/scalable/apps/icewm.svgz share/icons/mono/scalable/apps/ieee1394.svgz share/icons/mono/scalable/apps/im-aim.svgz @@ -1370,11 +1426,14 @@ share/icons/mono/scalable/apps/im-sms.svgz share/icons/mono/scalable/apps/im-yahoo.svgz share/icons/mono/scalable/apps/imagegallery.svgz share/icons/mono/scalable/apps/inkscape.svgz +share/icons/mono/scalable/apps/internet-web-browser.svgz share/icons/mono/scalable/apps/irkick.svgz share/icons/mono/scalable/apps/isp-disabled.svgz share/icons/mono/scalable/apps/juk.svgz share/icons/mono/scalable/apps/k3b.svgz share/icons/mono/scalable/apps/kaboodle.svgz +share/icons/mono/scalable/apps/kaddressbook.svgz +share/icons/mono/scalable/apps/kaffeine.svgz share/icons/mono/scalable/apps/kalarm.svgz share/icons/mono/scalable/apps/kalzium.svgz share/icons/mono/scalable/apps/kamix.svgz @@ -1389,7 +1448,6 @@ share/icons/mono/scalable/apps/kate.svgz share/icons/mono/scalable/apps/katomic.svgz share/icons/mono/scalable/apps/kaudiocreator.svgz share/icons/mono/scalable/apps/kazaa.svgz -share/icons/mono/scalable/apps/kbabel.svgz share/icons/mono/scalable/apps/kbackgammon.svgz share/icons/mono/scalable/apps/kbackgammon_engine.svgz share/icons/mono/scalable/apps/kbatterymonitor.svgz @@ -1423,7 +1481,6 @@ share/icons/mono/scalable/apps/kcolorchooser.svgz share/icons/mono/scalable/apps/kcoloredit.svgz share/icons/mono/scalable/apps/kconfigure.svgz share/icons/mono/scalable/apps/kcpuload.svgz -share/icons/mono/scalable/apps/kcron.svgz share/icons/mono/scalable/apps/kdat.svgz share/icons/mono/scalable/apps/kde.svgz share/icons/mono/scalable/apps/kdenlive.svgz @@ -1443,6 +1500,7 @@ share/icons/mono/scalable/apps/keurocalc.svgz share/icons/mono/scalable/apps/kexi.svgz share/icons/mono/scalable/apps/keyboard-shortcut.svgz share/icons/mono/scalable/apps/kfilereplace.svgz +share/icons/mono/scalable/apps/kfind.svgz share/icons/mono/scalable/apps/kflog.svgz share/icons/mono/scalable/apps/kfloppy.svgz share/icons/mono/scalable/apps/kformdesigner.svgz @@ -1493,7 +1551,6 @@ share/icons/mono/scalable/apps/kmerlin.svgz share/icons/mono/scalable/apps/kmidi.svgz share/icons/mono/scalable/apps/kmines.svgz share/icons/mono/scalable/apps/kmix.svgz -share/icons/mono/scalable/apps/kmixdocked_mute.svgz share/icons/mono/scalable/apps/kmldonkey.svgz share/icons/mono/scalable/apps/kmoon.svgz share/icons/mono/scalable/apps/kmousetool.svgz @@ -1508,6 +1565,7 @@ share/icons/mono/scalable/apps/knetwalk.svgz share/icons/mono/scalable/apps/knetworkmanager.svgz share/icons/mono/scalable/apps/knewsticker.svgz share/icons/mono/scalable/apps/knoda.svgz +share/icons/mono/scalable/apps/knode.svgz share/icons/mono/scalable/apps/knoppix-penguin.svgz share/icons/mono/scalable/apps/knotes.svgz share/icons/mono/scalable/apps/kodo.svgz @@ -1531,6 +1589,7 @@ share/icons/mono/scalable/apps/kopete_avdevice.svgz share/icons/mono/scalable/apps/kopete_offline.svgz share/icons/mono/scalable/apps/kopete_some_away.svgz share/icons/mono/scalable/apps/kopete_some_online.svgz +share/icons/mono/scalable/apps/korganizer.svgz share/icons/mono/scalable/apps/korn.svgz share/icons/mono/scalable/apps/kpager.svgz share/icons/mono/scalable/apps/kpaint.svgz @@ -1574,11 +1633,11 @@ share/icons/mono/scalable/apps/ksnake.svgz share/icons/mono/scalable/apps/ksnapshot.svgz share/icons/mono/scalable/apps/ksokoban.svgz share/icons/mono/scalable/apps/kspaceduel.svgz -share/icons/mono/scalable/apps/ksplash.svgz share/icons/mono/scalable/apps/kspread.svgz share/icons/mono/scalable/apps/kstars.svgz share/icons/mono/scalable/apps/kstreamripper.svgz share/icons/mono/scalable/apps/ksysguardd.svgz +share/icons/mono/scalable/apps/ksystemlog.svgz share/icons/mono/scalable/apps/ksysv.svgz share/icons/mono/scalable/apps/ktalkd.svgz share/icons/mono/scalable/apps/kteatime.svgz @@ -1603,13 +1662,11 @@ share/icons/mono/scalable/apps/kverbos.svgz share/icons/mono/scalable/apps/kview.svgz share/icons/mono/scalable/apps/kvim.svgz share/icons/mono/scalable/apps/kvirc.svgz -share/icons/mono/scalable/apps/kvoctrain.svgz -share/icons/mono/scalable/apps/kwallet.svgz +share/icons/mono/scalable/apps/kwalletmanager.svgz share/icons/mono/scalable/apps/kwave.svgz share/icons/mono/scalable/apps/kweather.svgz share/icons/mono/scalable/apps/kwifimanager.svgz share/icons/mono/scalable/apps/kwikdisk.svgz -share/icons/mono/scalable/apps/kwin4.svgz share/icons/mono/scalable/apps/kword.svgz share/icons/mono/scalable/apps/kwordquiz.svgz share/icons/mono/scalable/apps/kworldclock.svgz @@ -1617,12 +1674,15 @@ share/icons/mono/scalable/apps/kynaptic.svgz share/icons/mono/scalable/apps/kzenexplorer.svgz share/icons/mono/scalable/apps/laptop_battery.svgz share/icons/mono/scalable/apps/laptop_pcmcia.svgz +share/icons/mono/scalable/apps/lastfm.svgz share/icons/mono/scalable/apps/ldap_client.svgz share/icons/mono/scalable/apps/licq.svgz share/icons/mono/scalable/apps/limewire.svgz share/icons/mono/scalable/apps/linguist.svgz +share/icons/mono/scalable/apps/lokalize.svgz share/icons/mono/scalable/apps/lskat.svgz share/icons/mono/scalable/apps/mac.svgz +share/icons/mono/scalable/apps/mailody.svgz share/icons/mono/scalable/apps/mathematica.svgz share/icons/mono/scalable/apps/menubar.svgz share/icons/mono/scalable/apps/mozilla-firefox.svgz @@ -1638,49 +1698,63 @@ share/icons/mono/scalable/apps/nedit.svgz share/icons/mono/scalable/apps/netscape.svgz share/icons/mono/scalable/apps/network_advanced.svgz share/icons/mono/scalable/apps/nfs.svgz -share/icons/mono/scalable/apps/noatun.svgz share/icons/mono/scalable/apps/ntp-client.svgz share/icons/mono/scalable/apps/nvu.svgz +share/icons/mono/scalable/apps/nxclient-icon.svgz share/icons/mono/scalable/apps/office-addressbook.svgz share/icons/mono/scalable/apps/office-calendar.svgz -share/icons/mono/scalable/apps/ooo_calc.svgz +share/icons/mono/scalable/apps/ooo-calc.svgz +share/icons/mono/scalable/apps/ooo-draw.svgz +share/icons/mono/scalable/apps/ooo-impress.svgz +share/icons/mono/scalable/apps/ooo-math.svgz +share/icons/mono/scalable/apps/ooo-printeradmin.svgz +share/icons/mono/scalable/apps/ooo-template.svgz +share/icons/mono/scalable/apps/ooo-web.svgz +share/icons/mono/scalable/apps/ooo-writer.svgz share/icons/mono/scalable/apps/ooo_chart.svgz -share/icons/mono/scalable/apps/ooo_draw.svgz -share/icons/mono/scalable/apps/ooo_impress.svgz -share/icons/mono/scalable/apps/ooo_math.svgz -share/icons/mono/scalable/apps/ooo_printeradmin.svgz share/icons/mono/scalable/apps/ooo_setup.svgz -share/icons/mono/scalable/apps/ooo_template.svgz -share/icons/mono/scalable/apps/ooo_web.svgz -share/icons/mono/scalable/apps/ooo_writer.svgz share/icons/mono/scalable/apps/openft.svgz share/icons/mono/scalable/apps/openoffice.svgz share/icons/mono/scalable/apps/opera.svgz share/icons/mono/scalable/apps/palm-pilot.svgz share/icons/mono/scalable/apps/pan.svgz share/icons/mono/scalable/apps/panel_settings.svgz +share/icons/mono/scalable/apps/parley.svgz share/icons/mono/scalable/apps/password.svgz share/icons/mono/scalable/apps/pcmcia.svgz share/icons/mono/scalable/apps/photobook.svgz share/icons/mono/scalable/apps/potracegui.svgz +share/icons/mono/scalable/apps/preferences-desktop-accessibility.svgz share/icons/mono/scalable/apps/preferences-desktop-color.svgz +share/icons/mono/scalable/apps/preferences-desktop-display-randr.svgz +share/icons/mono/scalable/apps/preferences-desktop-display.svgz +share/icons/mono/scalable/apps/preferences-desktop-filetype-association.svgz share/icons/mono/scalable/apps/preferences-desktop-font.svgz +share/icons/mono/scalable/apps/preferences-desktop-gaming.svgz share/icons/mono/scalable/apps/preferences-desktop-icons.svgz +share/icons/mono/scalable/apps/preferences-desktop-keyboard.svgz share/icons/mono/scalable/apps/preferences-desktop-launch-feedback.svgz share/icons/mono/scalable/apps/preferences-desktop-locale.svgz +share/icons/mono/scalable/apps/preferences-desktop-mouse.svgz share/icons/mono/scalable/apps/preferences-desktop-notification.svgz share/icons/mono/scalable/apps/preferences-desktop-printer.svgz share/icons/mono/scalable/apps/preferences-desktop-screensaver.svgz share/icons/mono/scalable/apps/preferences-desktop-sound.svgz share/icons/mono/scalable/apps/preferences-desktop-text-to-speech.svgz +share/icons/mono/scalable/apps/preferences-desktop-theme-style.svgz share/icons/mono/scalable/apps/preferences-desktop-theme.svgz share/icons/mono/scalable/apps/preferences-desktop-user.svgz share/icons/mono/scalable/apps/preferences-desktop-wallpaper.svgz share/icons/mono/scalable/apps/preferences-system-bluetooth.svgz +share/icons/mono/scalable/apps/preferences-system-cron.svgz share/icons/mono/scalable/apps/preferences-system-login.svgz +share/icons/mono/scalable/apps/preferences-system-network-proxy.svgz +share/icons/mono/scalable/apps/preferences-system-network-sharing.svgz share/icons/mono/scalable/apps/preferences-system-performance.svgz share/icons/mono/scalable/apps/preferences-system-power-management.svgz share/icons/mono/scalable/apps/preferences-system-session-services.svgz +share/icons/mono/scalable/apps/preferences-system-solid.svgz +share/icons/mono/scalable/apps/preferences-system-splash.svgz share/icons/mono/scalable/apps/preferences-system-time.svgz share/icons/mono/scalable/apps/preferences-system-windows.svgz share/icons/mono/scalable/apps/preferences-web-browser-adblock.svgz @@ -1688,12 +1762,12 @@ share/icons/mono/scalable/apps/preferences-web-browser-cache.svgz share/icons/mono/scalable/apps/preferences-web-browser-cookies.svgz share/icons/mono/scalable/apps/preferences-web-browser-identification.svgz share/icons/mono/scalable/apps/preferences-web-browser-shortcuts.svgz -share/icons/mono/scalable/apps/proxy.svgz +share/icons/mono/scalable/apps/preferences-web-browser-stylesheets.svgz share/icons/mono/scalable/apps/qt.svgz +share/icons/mono/scalable/apps/qtconfig.svgz share/icons/mono/scalable/apps/qtella.svgz share/icons/mono/scalable/apps/quanta.svgz share/icons/mono/scalable/apps/quicktime.svgz -share/icons/mono/scalable/apps/randr.svgz share/icons/mono/scalable/apps/realplayer.svgz share/icons/mono/scalable/apps/remote.svgz share/icons/mono/scalable/apps/rsibreak.svgz @@ -1704,8 +1778,6 @@ share/icons/mono/scalable/apps/showfoto.svgz share/icons/mono/scalable/apps/showimg.svgz share/icons/mono/scalable/apps/shredder.svgz share/icons/mono/scalable/apps/sodipodi.svgz -share/icons/mono/scalable/apps/soundcard.svgz -share/icons/mono/scalable/apps/style.svgz share/icons/mono/scalable/apps/superkaramba.svgz share/icons/mono/scalable/apps/synaptic.svgz share/icons/mono/scalable/apps/system-file-manager.svgz @@ -1723,22 +1795,23 @@ share/icons/mono/scalable/apps/utilities-system-monitor.svgz share/icons/mono/scalable/apps/utilities-terminal.svgz share/icons/mono/scalable/apps/vnc.svgz share/icons/mono/scalable/apps/wabi.svgz -share/icons/mono/scalable/apps/web-browser.svgz share/icons/mono/scalable/apps/win_apps.svgz share/icons/mono/scalable/apps/wine.svgz share/icons/mono/scalable/apps/wp.svgz -share/icons/mono/scalable/apps/x.svgz share/icons/mono/scalable/apps/xeyes.svgz share/icons/mono/scalable/apps/xfig.svgz share/icons/mono/scalable/apps/xfmail.svgz share/icons/mono/scalable/apps/xine.svgz share/icons/mono/scalable/apps/xmms.svgz +share/icons/mono/scalable/apps/xorg.svgz share/icons/mono/scalable/apps/xosview.svgz share/icons/mono/scalable/apps/xv.svgz share/icons/mono/scalable/apps/yakuake.svgz share/icons/mono/scalable/apps/zip.svgz share/icons/mono/scalable/categories/applications-accessories.svgz share/icons/mono/scalable/categories/applications-development.svgz +share/icons/mono/scalable/categories/applications-education-language.svgz +share/icons/mono/scalable/categories/applications-education-mathematics.svgz share/icons/mono/scalable/categories/applications-education.svgz share/icons/mono/scalable/categories/applications-engineering.svgz share/icons/mono/scalable/categories/applications-games-arcade.svgz @@ -1760,16 +1833,22 @@ share/icons/mono/scalable/categories/applications-utilities.svgz share/icons/mono/scalable/categories/preferences-desktop-peripherals.svgz share/icons/mono/scalable/categories/preferences-desktop-personal.svgz share/icons/mono/scalable/categories/preferences-desktop.svgz +share/icons/mono/scalable/categories/preferences-other.svgz share/icons/mono/scalable/categories/preferences-system-network.svgz share/icons/mono/scalable/categories/preferences-system.svgz share/icons/mono/scalable/categories/system-help.svgz +share/icons/mono/scalable/devices/audio-card.svgz +share/icons/mono/scalable/devices/audio-headset.svgz +share/icons/mono/scalable/devices/audio-input-microphone.svgz share/icons/mono/scalable/devices/camera-photo.svgz share/icons/mono/scalable/devices/computer-laptop.svgz share/icons/mono/scalable/devices/computer.svgz share/icons/mono/scalable/devices/cpu.svgz share/icons/mono/scalable/devices/drive-harddisk.svgz +share/icons/mono/scalable/devices/drive-optical.svgz share/icons/mono/scalable/devices/drive-remote.svgz share/icons/mono/scalable/devices/drive-removable-media-firewire.svgz +share/icons/mono/scalable/devices/drive-removable-media-usb-pendrive.svgz share/icons/mono/scalable/devices/drive-removable-media-usb.svgz share/icons/mono/scalable/devices/drive-removable-media.svgz share/icons/mono/scalable/devices/input-gaming.svgz @@ -1784,165 +1863,273 @@ share/icons/mono/scalable/devices/media-floppy.svgz share/icons/mono/scalable/devices/media-optical-audio.svgz share/icons/mono/scalable/devices/media-optical-recordable.svgz share/icons/mono/scalable/devices/media-optical.svgz +share/icons/mono/scalable/devices/media-tape.svgz share/icons/mono/scalable/devices/memory.svgz share/icons/mono/scalable/devices/modem.svgz share/icons/mono/scalable/devices/multimedia-player-apple-ipod.svgz +share/icons/mono/scalable/devices/multimedia-player-ipod.svgz +share/icons/mono/scalable/devices/multimedia-player.svgz +share/icons/mono/scalable/devices/network-wired.svgz +share/icons/mono/scalable/devices/network-wireless.svgz share/icons/mono/scalable/devices/pda.svgz +share/icons/mono/scalable/devices/phone.svgz share/icons/mono/scalable/devices/printer.svgz share/icons/mono/scalable/devices/scanner.svgz +share/icons/mono/scalable/devices/video-display.svgz share/icons/mono/scalable/devices/video-television.svgz +share/icons/mono/scalable/emblems/emblem-important.svgz +share/icons/mono/scalable/emblems/emblem-link.svgz +share/icons/mono/scalable/emblems/emblem-symbolic-link.svgz +share/icons/mono/scalable/emotes/face-smile-big.svgz share/icons/mono/scalable/mimetypes/application-illustrator.svgz share/icons/mono/scalable/mimetypes/application-javascript.svgz share/icons/mono/scalable/mimetypes/application-msword.svgz +share/icons/mono/scalable/mimetypes/application-octet-stream.svgz share/icons/mono/scalable/mimetypes/application-pgp-encrypted.svgz share/icons/mono/scalable/mimetypes/application-postscript.svgz share/icons/mono/scalable/mimetypes/application-vnd.ms-excel.svgz share/icons/mono/scalable/mimetypes/application-vnd.ms-powerpoint.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.chart.svgz share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.database.svgz share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.formula.svgz -share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.graphics-template.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.graphics.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.image.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.presentation.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.spreadsheet.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.text.svgz +share/icons/mono/scalable/mimetypes/application-vnd.rn-realmedia.svgz +share/icons/mono/scalable/mimetypes/application-vnd.stardivision.calc.svgz share/icons/mono/scalable/mimetypes/application-vnd.stardivision.draw.svgz +share/icons/mono/scalable/mimetypes/application-vnd.sun.xml.draw.svgz +share/icons/mono/scalable/mimetypes/application-vnd.sun.xml.draw.template.svgz share/icons/mono/scalable/mimetypes/application-x-7z-compressed.svgz share/icons/mono/scalable/mimetypes/application-x-awk.svgz share/icons/mono/scalable/mimetypes/application-x-bittorrent.svgz share/icons/mono/scalable/mimetypes/application-x-blender.svgz +share/icons/mono/scalable/mimetypes/application-x-cd-image.svgz share/icons/mono/scalable/mimetypes/application-x-cda.svgz share/icons/mono/scalable/mimetypes/application-x-core.svgz share/icons/mono/scalable/mimetypes/application-x-cue.svgz share/icons/mono/scalable/mimetypes/application-x-deb.svgz share/icons/mono/scalable/mimetypes/application-x-dvi.svgz +share/icons/mono/scalable/mimetypes/application-x-egon.svgz share/icons/mono/scalable/mimetypes/application-x-font-speedo.svgz +share/icons/mono/scalable/mimetypes/application-x-font-ttf.svgz +share/icons/mono/scalable/mimetypes/application-x-font-type1.svgz +share/icons/mono/scalable/mimetypes/application-x-java-archive.svgz +share/icons/mono/scalable/mimetypes/application-x-java.svgz +share/icons/mono/scalable/mimetypes/application-x-kaffeine.svgz +share/icons/mono/scalable/mimetypes/application-x-karbon.svgz +share/icons/mono/scalable/mimetypes/application-x-kchart.svgz share/icons/mono/scalable/mimetypes/application-x-kcsrc.svgz +share/icons/mono/scalable/mimetypes/application-x-kexiproject-shortcut.svgz +share/icons/mono/scalable/mimetypes/application-x-kexiproject.svgz +share/icons/mono/scalable/mimetypes/application-x-kformula.svgz +share/icons/mono/scalable/mimetypes/application-x-kgetlist.svgz +share/icons/mono/scalable/mimetypes/application-x-kig.svgz +share/icons/mono/scalable/mimetypes/application-x-kivio.svgz share/icons/mono/scalable/mimetypes/application-x-kontour.svgz +share/icons/mono/scalable/mimetypes/application-x-kopete-emoticons.svgz +share/icons/mono/scalable/mimetypes/application-x-kpovmodeler.svgz +share/icons/mono/scalable/mimetypes/application-x-kpresenter.svgz +share/icons/mono/scalable/mimetypes/application-x-krita.svgz +share/icons/mono/scalable/mimetypes/application-x-kspread.svgz share/icons/mono/scalable/mimetypes/application-x-kudesigner.svgz +share/icons/mono/scalable/mimetypes/application-x-kugar.svgz +share/icons/mono/scalable/mimetypes/application-x-kword.svgz +share/icons/mono/scalable/mimetypes/application-x-kwordquiz.svgz +share/icons/mono/scalable/mimetypes/application-x-lyx.svgz share/icons/mono/scalable/mimetypes/application-x-mimearchive.svgz +share/icons/mono/scalable/mimetypes/application-x-mplayer2.svgz +share/icons/mono/scalable/mimetypes/application-x-ms-dos-executable.svgz +share/icons/mono/scalable/mimetypes/application-x-mswinurl.svgz share/icons/mono/scalable/mimetypes/application-x-mswrite.svgz share/icons/mono/scalable/mimetypes/application-x-object.svgz +share/icons/mono/scalable/mimetypes/application-x-perl.svgz +share/icons/mono/scalable/mimetypes/application-x-php.svgz +share/icons/mono/scalable/mimetypes/application-x-python-bytecode.svgz +share/icons/mono/scalable/mimetypes/application-x-quattropro.svgz share/icons/mono/scalable/mimetypes/application-x-rpm.svgz share/icons/mono/scalable/mimetypes/application-x-ruby.svgz -share/icons/mono/scalable/mimetypes/application-x-shockwave-flash.svgz +share/icons/mono/scalable/mimetypes/application-x-sharedlib.svgz +share/icons/mono/scalable/mimetypes/application-x-superkaramba.svgz +share/icons/mono/scalable/mimetypes/application-x-tar.svgz share/icons/mono/scalable/mimetypes/application-x-tex-gf.svgz share/icons/mono/scalable/mimetypes/application-x-tex-pk.svgz +share/icons/mono/scalable/mimetypes/application-x-tgif.svgz share/icons/mono/scalable/mimetypes/application-x-trash.svgz share/icons/mono/scalable/mimetypes/application-x-troff-man.svgz share/icons/mono/scalable/mimetypes/application-x-uml.svgz +share/icons/mono/scalable/mimetypes/application-x-vnd.kde.kexi.svgz +share/icons/mono/scalable/mimetypes/application-x-vnd.kde.kugar.mixed.svgz +share/icons/mono/scalable/mimetypes/application-x-vnd.stardivision.chart.svgz +share/icons/mono/scalable/mimetypes/application-x-wmf.svgz share/icons/mono/scalable/mimetypes/application-x-zerosize.svgz +share/icons/mono/scalable/mimetypes/application-xml.svgz +share/icons/mono/scalable/mimetypes/application-xscd.svgz +share/icons/mono/scalable/mimetypes/application-xslt+xml.svgz +share/icons/mono/scalable/mimetypes/application-zip.svgz share/icons/mono/scalable/mimetypes/applix.svgz share/icons/mono/scalable/mimetypes/ascii.svgz share/icons/mono/scalable/mimetypes/audio-aac.svgz +share/icons/mono/scalable/mimetypes/audio-ac3.svgz +share/icons/mono/scalable/mimetypes/audio-basic.svgz share/icons/mono/scalable/mimetypes/audio-midi.svgz +share/icons/mono/scalable/mimetypes/audio-mp4.svgz +share/icons/mono/scalable/mimetypes/audio-mpeg.svgz +share/icons/mono/scalable/mimetypes/audio-prs.sid.svgz +share/icons/mono/scalable/mimetypes/audio-template.svgz +share/icons/mono/scalable/mimetypes/audio-vnd.rn-realaudio.svgz +share/icons/mono/scalable/mimetypes/audio-vnd.rn-realvideo.svgz +share/icons/mono/scalable/mimetypes/audio-x-adpcm.svgz +share/icons/mono/scalable/mimetypes/audio-x-aiff.svgz +share/icons/mono/scalable/mimetypes/audio-x-flac+ogg.svgz +share/icons/mono/scalable/mimetypes/audio-x-flac.svgz +share/icons/mono/scalable/mimetypes/audio-x-generic.svgz +share/icons/mono/scalable/mimetypes/audio-x-matroska.svgz +share/icons/mono/scalable/mimetypes/audio-x-mod.svgz +share/icons/mono/scalable/mimetypes/audio-x-monkey.svgz +share/icons/mono/scalable/mimetypes/audio-x-mp2.svgz +share/icons/mono/scalable/mimetypes/audio-x-mpegurl.svgz +share/icons/mono/scalable/mimetypes/audio-x-ms-wma.svgz +share/icons/mono/scalable/mimetypes/audio-x-musepack.svgz +share/icons/mono/scalable/mimetypes/audio-x-scpls.svgz +share/icons/mono/scalable/mimetypes/audio-x-speex+ogg.svgz +share/icons/mono/scalable/mimetypes/audio-x-vorbis+ogg.svgz +share/icons/mono/scalable/mimetypes/audio-x-wav.svgz share/icons/mono/scalable/mimetypes/backup.svgz share/icons/mono/scalable/mimetypes/cdbo_list.svgz share/icons/mono/scalable/mimetypes/cdr.svgz -share/icons/mono/scalable/mimetypes/chart.svgz share/icons/mono/scalable/mimetypes/colorset.svgz share/icons/mono/scalable/mimetypes/configure.svgz share/icons/mono/scalable/mimetypes/document2.svgz -share/icons/mono/scalable/mimetypes/exec_wine.svgz share/icons/mono/scalable/mimetypes/executable.svgz share/icons/mono/scalable/mimetypes/file_locked.svgz share/icons/mono/scalable/mimetypes/file_temporary.svgz share/icons/mono/scalable/mimetypes/font_bitmap.svgz -share/icons/mono/scalable/mimetypes/font_truetype.svgz -share/icons/mono/scalable/mimetypes/font_type1.svgz share/icons/mono/scalable/mimetypes/gnome-library.svgz share/icons/mono/scalable/mimetypes/gnome_app_info.svgz share/icons/mono/scalable/mimetypes/graphic.svgz share/icons/mono/scalable/mimetypes/igc.svgz +share/icons/mono/scalable/mimetypes/image-bmp.svgz +share/icons/mono/scalable/mimetypes/image-cgm.svgz +share/icons/mono/scalable/mimetypes/image-fax-g3.svgz +share/icons/mono/scalable/mimetypes/image-gif.svgz +share/icons/mono/scalable/mimetypes/image-jp2.svgz +share/icons/mono/scalable/mimetypes/image-jpeg.svgz +share/icons/mono/scalable/mimetypes/image-png.svgz +share/icons/mono/scalable/mimetypes/image-svg+xml.svgz +share/icons/mono/scalable/mimetypes/image-template.svgz +share/icons/mono/scalable/mimetypes/image-tiff.svgz share/icons/mono/scalable/mimetypes/image-vnd.djvu.svgz -share/icons/mono/scalable/mimetypes/images.svgz -share/icons/mono/scalable/mimetypes/info.svgz +share/icons/mono/scalable/mimetypes/image-x-applix-graphics.svgz +share/icons/mono/scalable/mimetypes/image-x-dcraw.svgz +share/icons/mono/scalable/mimetypes/image-x-dds.svgz +share/icons/mono/scalable/mimetypes/image-x-eps.svgz +share/icons/mono/scalable/mimetypes/image-x-exr.svgz +share/icons/mono/scalable/mimetypes/image-x-fits.svgz +share/icons/mono/scalable/mimetypes/image-x-generic.svgz +share/icons/mono/scalable/mimetypes/image-x-hdr.svgz +share/icons/mono/scalable/mimetypes/image-x-ico.svgz +share/icons/mono/scalable/mimetypes/image-x-jng.svgz +share/icons/mono/scalable/mimetypes/image-x-msod.svgz +share/icons/mono/scalable/mimetypes/image-x-pcx.svgz +share/icons/mono/scalable/mimetypes/image-x-photo-cd.svgz +share/icons/mono/scalable/mimetypes/image-x-portable-bitmap.svgz +share/icons/mono/scalable/mimetypes/image-x-portable-graymap.svgz +share/icons/mono/scalable/mimetypes/image-x-portable-pixmap.svgz +share/icons/mono/scalable/mimetypes/image-x-psd.svgz +share/icons/mono/scalable/mimetypes/image-x-rgb.svgz +share/icons/mono/scalable/mimetypes/image-x-tga.svgz +share/icons/mono/scalable/mimetypes/image-x-vnd.trolltech.qpicture.svgz +share/icons/mono/scalable/mimetypes/image-x-xbitmap.svgz +share/icons/mono/scalable/mimetypes/image-x-xcf.svgz +share/icons/mono/scalable/mimetypes/image-x-xfig.svgz +share/icons/mono/scalable/mimetypes/image-x-xpixmap.svgz +share/icons/mono/scalable/mimetypes/inode-directory.svgz share/icons/mono/scalable/mimetypes/ipod.svgz -share/icons/mono/scalable/mimetypes/java_jar.svgz -share/icons/mono/scalable/mimetypes/karbon_karbon.svgz -share/icons/mono/scalable/mimetypes/kchart_chrt.svgz share/icons/mono/scalable/mimetypes/kdevelop_project.svgz -share/icons/mono/scalable/mimetypes/kexi.svgz -share/icons/mono/scalable/mimetypes/kexi_kexi.svgz -share/icons/mono/scalable/mimetypes/kexiproject_shortcut.svgz -share/icons/mono/scalable/mimetypes/kexiproject_sqlite.svgz -share/icons/mono/scalable/mimetypes/kexiproject_sqlite2.svgz -share/icons/mono/scalable/mimetypes/kformula_kfo.svgz -share/icons/mono/scalable/mimetypes/kget_list.svgz -share/icons/mono/scalable/mimetypes/kig_doc.svgz -share/icons/mono/scalable/mimetypes/kivio_flw.svgz share/icons/mono/scalable/mimetypes/kmultiple.svgz share/icons/mono/scalable/mimetypes/kmy.svgz share/icons/mono/scalable/mimetypes/koffice.svgz -share/icons/mono/scalable/mimetypes/kopete_emoticons.svgz -share/icons/mono/scalable/mimetypes/kpovmodeler_doc.svgz -share/icons/mono/scalable/mimetypes/kpresenter_kpr.svgz -share/icons/mono/scalable/mimetypes/krita_kra.svgz -share/icons/mono/scalable/mimetypes/kspread_ksp.svgz -share/icons/mono/scalable/mimetypes/kugar_kud.svgz -share/icons/mono/scalable/mimetypes/kword_kwd.svgz -share/icons/mono/scalable/mimetypes/kwordquiz_doc.svgz share/icons/mono/scalable/mimetypes/lpl.svgz share/icons/mono/scalable/mimetypes/message-news.svgz share/icons/mono/scalable/mimetypes/metafont.svgz share/icons/mono/scalable/mimetypes/mime.svgz -share/icons/mono/scalable/mimetypes/mime_kaffeine.svgz -share/icons/mono/scalable/mimetypes/mime_lyx.svgz -share/icons/mono/scalable/mimetypes/mime_video.svgz share/icons/mono/scalable/mimetypes/misc.svgz -share/icons/mono/scalable/mimetypes/misc_doc.svgz -share/icons/mono/scalable/mimetypes/moc_src.svgz share/icons/mono/scalable/mimetypes/money.svgz share/icons/mono/scalable/mimetypes/mozilla_doc.svgz share/icons/mono/scalable/mimetypes/netscape.svgz share/icons/mono/scalable/mimetypes/netscape_doc.svgz -share/icons/mono/scalable/mimetypes/php.svgz share/icons/mono/scalable/mimetypes/printer.svgz -share/icons/mono/scalable/mimetypes/psd.svgz -share/icons/mono/scalable/mimetypes/quicktime.svgz -share/icons/mono/scalable/mimetypes/readme.svgz -share/icons/mono/scalable/mimetypes/real.svgz -share/icons/mono/scalable/mimetypes/real_doc.svgz share/icons/mono/scalable/mimetypes/reject.svgz share/icons/mono/scalable/mimetypes/resource.svgz share/icons/mono/scalable/mimetypes/soffice.svgz -share/icons/mono/scalable/mimetypes/source_c.svgz -share/icons/mono/scalable/mimetypes/source_cpp.svgz -share/icons/mono/scalable/mimetypes/source_f.svgz -share/icons/mono/scalable/mimetypes/source_h.svgz share/icons/mono/scalable/mimetypes/source_j.svgz -share/icons/mono/scalable/mimetypes/source_java.svgz share/icons/mono/scalable/mimetypes/source_l.svgz -share/icons/mono/scalable/mimetypes/source_moc.svgz -share/icons/mono/scalable/mimetypes/source_mono.svgz share/icons/mono/scalable/mimetypes/source_o.svgz -share/icons/mono/scalable/mimetypes/source_p.svgz -share/icons/mono/scalable/mimetypes/source_php.svgz -share/icons/mono/scalable/mimetypes/source_pl.svgz -share/icons/mono/scalable/mimetypes/source_py.svgz share/icons/mono/scalable/mimetypes/source_s.svgz -share/icons/mono/scalable/mimetypes/source_xml.svgz share/icons/mono/scalable/mimetypes/source_y.svgz -share/icons/mono/scalable/mimetypes/sql.svgz -share/icons/mono/scalable/mimetypes/superkaramba_theme.svgz -share/icons/mono/scalable/mimetypes/tar.svgz share/icons/mono/scalable/mimetypes/tellico.svgz share/icons/mono/scalable/mimetypes/template.svgz share/icons/mono/scalable/mimetypes/template_source.svgz share/icons/mono/scalable/mimetypes/text-calendar.svgz share/icons/mono/scalable/mimetypes/text-css.svgz share/icons/mono/scalable/mimetypes/text-directory.svgz +share/icons/mono/scalable/mimetypes/text-enriched.svgz +share/icons/mono/scalable/mimetypes/text-html.svgz share/icons/mono/scalable/mimetypes/text-mathml.svgz +share/icons/mono/scalable/mimetypes/text-plain.svgz +share/icons/mono/scalable/mimetypes/text-rtf.svgz +share/icons/mono/scalable/mimetypes/text-sgml.svgz +share/icons/mono/scalable/mimetypes/text-template.svgz +share/icons/mono/scalable/mimetypes/text-troff.svgz +share/icons/mono/scalable/mimetypes/text-vcalendar.svgz +share/icons/mono/scalable/mimetypes/text-vnd.abc.svgz +share/icons/mono/scalable/mimetypes/text-vnd.wap.wml.svgz share/icons/mono/scalable/mimetypes/text-x-bibtex.svgz +share/icons/mono/scalable/mimetypes/text-x-c++src.svgz +share/icons/mono/scalable/mimetypes/text-x-chdr.svgz +share/icons/mono/scalable/mimetypes/text-x-csharp.svgz +share/icons/mono/scalable/mimetypes/text-x-csrc.svgz +share/icons/mono/scalable/mimetypes/text-x-fortran.svgz +share/icons/mono/scalable/mimetypes/text-x-generic.svgz share/icons/mono/scalable/mimetypes/text-x-gettext-translation.svgz +share/icons/mono/scalable/mimetypes/text-x-java.svgz share/icons/mono/scalable/mimetypes/text-x-katefilelist.svgz share/icons/mono/scalable/mimetypes/text-x-log.svgz share/icons/mono/scalable/mimetypes/text-x-makefile.svgz +share/icons/mono/scalable/mimetypes/text-x-moc.svgz +share/icons/mono/scalable/mimetypes/text-x-pascal.svgz +share/icons/mono/scalable/mimetypes/text-x-python.svgz +share/icons/mono/scalable/mimetypes/text-x-readme.svgz +share/icons/mono/scalable/mimetypes/text-x-sql.svgz +share/icons/mono/scalable/mimetypes/text-x-texinfo.svgz +share/icons/mono/scalable/mimetypes/text-xml.svgz share/icons/mono/scalable/mimetypes/text.svgz share/icons/mono/scalable/mimetypes/trash.svgz -share/icons/mono/scalable/mimetypes/txt2.svgz +share/icons/mono/scalable/mimetypes/video-mp4.svgz +share/icons/mono/scalable/mimetypes/video-mpeg.svgz +share/icons/mono/scalable/mimetypes/video-quicktime.svgz +share/icons/mono/scalable/mimetypes/video-template.svgz +share/icons/mono/scalable/mimetypes/video-x-flic.svgz +share/icons/mono/scalable/mimetypes/video-x-flv.svgz +share/icons/mono/scalable/mimetypes/video-x-generic.svgz +share/icons/mono/scalable/mimetypes/video-x-matroska.svgz +share/icons/mono/scalable/mimetypes/video-x-mng.svgz share/icons/mono/scalable/mimetypes/video-x-ms-asf.svgz +share/icons/mono/scalable/mimetypes/video-x-ms-wmv.svgz +share/icons/mono/scalable/mimetypes/video-x-msvideo.svgz +share/icons/mono/scalable/mimetypes/video-x-ogm+ogg.svgz +share/icons/mono/scalable/mimetypes/video-x-theora+ogg.svgz share/icons/mono/scalable/mimetypes/widget_doc.svgz +share/icons/mono/scalable/mimetypes/x-office-calendar.svgz +share/icons/mono/scalable/mimetypes/x-office-spreadsheet.svgz share/icons/mono/scalable/mimetypes/you.svgz -share/icons/mono/scalable/mimetypes/zip.svgz -share/icons/mono/scalable/places/bookmark.svgz +share/icons/mono/scalable/places/bookmarks.svgz share/icons/mono/scalable/places/contact.svgz share/icons/mono/scalable/places/document-multiple.svgz +share/icons/mono/scalable/places/favorites.svgz share/icons/mono/scalable/places/folder-blue.svgz share/icons/mono/scalable/places/folder-bookmarks.svgz share/icons/mono/scalable/places/folder-brown.svgz @@ -1959,6 +2146,7 @@ share/icons/mono/scalable/places/folder-locked.svgz share/icons/mono/scalable/places/folder-orange.svgz share/icons/mono/scalable/places/folder-print.svgz share/icons/mono/scalable/places/folder-red.svgz +share/icons/mono/scalable/places/folder-remote.svgz share/icons/mono/scalable/places/folder-sound.svgz share/icons/mono/scalable/places/folder-tar.svgz share/icons/mono/scalable/places/folder-txt.svgz @@ -1968,6 +2156,9 @@ share/icons/mono/scalable/places/folder-yellow.svgz share/icons/mono/scalable/places/folder.svgz share/icons/mono/scalable/places/link-overlay.svgz share/icons/mono/scalable/places/lock-overlay.svgz +share/icons/mono/scalable/places/mail-folder-inbox.svgz +share/icons/mono/scalable/places/mail-folder-outbox.svgz +share/icons/mono/scalable/places/mail-folder-sent.svgz share/icons/mono/scalable/places/mail-inbox.svgz share/icons/mono/scalable/places/mail-message.svgz share/icons/mono/scalable/places/mail-outbox.svgz @@ -1978,15 +2169,20 @@ share/icons/mono/scalable/places/network-server-database.svgz share/icons/mono/scalable/places/network-server.svgz share/icons/mono/scalable/places/network-workgroup.svgz share/icons/mono/scalable/places/network.svgz +share/icons/mono/scalable/places/start-here-gnome.svgz +share/icons/mono/scalable/places/start-here-kde.svgz share/icons/mono/scalable/places/start-here.svgz share/icons/mono/scalable/places/user-desktop.svgz share/icons/mono/scalable/places/user-home.svgz +share/icons/mono/scalable/places/user-identity.svgz share/icons/mono/scalable/places/user-trash.svgz share/icons/mono/scalable/places/zip-overlay.svgz +share/icons/mono/scalable/status/audio-volume-muted.svgz share/icons/mono/scalable/status/dialog-error.svgz share/icons/mono/scalable/status/dialog-information.svgz share/icons/mono/scalable/status/dialog-warning.svgz share/icons/mono/scalable/status/mail-attachment.svgz +share/icons/mono/scalable/status/mail-task.svgz share/icons/mono/scalable/status/object-locked.svgz share/icons/mono/scalable/status/object-unlocked.svgz share/icons/mono/scalable/status/security-high.svgz @@ -2015,12 +2211,11 @@ share/kde4/services/kttsjobmgr.desktop share/kde4/servicetypes/kttsd_audioplugin.desktop share/kde4/servicetypes/kttsd_filterplugin.desktop share/kde4/servicetypes/kttsd_synthplugin.desktop -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services -@dirrmtry share/kde4 @dirrm share/icons/mono/scalable/status @dirrm share/icons/mono/scalable/places @dirrm share/icons/mono/scalable/mimetypes +@dirrm share/icons/mono/scalable/emotes +@dirrm share/icons/mono/scalable/emblems @dirrm share/icons/mono/scalable/devices @dirrm share/icons/mono/scalable/categories @dirrm share/icons/mono/scalable/apps @@ -2039,27 +2234,10 @@ share/kde4/servicetypes/kttsd_synthplugin.desktop @dirrm share/icons/mono/128x128/animations @dirrm share/icons/mono/128x128 @dirrm share/icons/mono -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48/actions -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32/actions -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22/actions -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16/actions -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons @dirrm share/doc/HTML/en/kttsd @dirrm share/doc/HTML/en/kmouth @dirrm share/doc/HTML/en/kmousetool @dirrm share/doc/HTML/en/kmag -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/config @dirrm share/apps/kttsd/xslt @dirrm share/apps/kttsd/xmltransformer @dirrm share/apps/kttsd/talkerchooser @@ -2088,8 +2266,3 @@ share/kde4/servicetypes/kttsd_synthplugin.desktop @dirrm share/apps/kmousetool/sounds @dirrm share/apps/kmousetool @dirrm share/apps/kmag -@dirrmtry share/apps/color-schemes -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/kde4 diff --git a/accessibility/kmouth/Makefile b/accessibility/kmouth/Makefile index a5b87bd375eb..e682fd7bc850 100644 --- a/accessibility/kmouth/Makefile +++ b/accessibility/kmouth/Makefile @@ -8,7 +8,7 @@ PORTNAME= kdeaccessibility PORTVERSION= ${KDE4_VERSION} CATEGORIES= accessibility kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org @@ -16,14 +16,19 @@ COMMENT= Accessibility applications for KDE4 LATEST_LINK= ${PORTNAME}4 -USE_KDE4= kdelibs workspace kdeprefix kdehier automoc4 -KDE4_BUILDENV= yes USE_BZIP2= yes +USE_KDE4= kdelibs kdeprefix kdehier automoc4 +KDE4_BUILDENV= yes USE_QT_VER= 4 QT_COMPONENTS= opengl gui qmake_build moc_build rcc_build uic_build +USE_LDCONFIG= yes CMAKE_ARGS+= -DKDE4_KTTSD_ALSA:BOOL=OFF +MAN1= kmag.1 \ + kmousetool.1 \ + kmouth.1 + post-extract: ${MKDIR} ${WRKSRC} diff --git a/accessibility/kmouth/distinfo b/accessibility/kmouth/distinfo index 3d3a2895c559..0c5d66145f60 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdeaccessibility-4.1.4.tar.bz2) = da6c157741d73eb1445cd60d9b78cd2e -SHA256 (KDE/kdeaccessibility-4.1.4.tar.bz2) = e85943f0f59fe2831c8618a2c2f9050e8d3fc0026f5b6e61eed5f96a04bf1bab -SIZE (KDE/kdeaccessibility-4.1.4.tar.bz2) = 6371585 +MD5 (KDE/kdeaccessibility-4.2.0.tar.bz2) = f32f24c4f07906b7af39ca18d47b5e27 +SHA256 (KDE/kdeaccessibility-4.2.0.tar.bz2) = 2ec7bab55ae0e41a616cdf10c81b6cf7a504442d01c631c7e268876dd959b434 +SIZE (KDE/kdeaccessibility-4.2.0.tar.bz2) = 6592084 diff --git a/accessibility/kmouth/pkg-plist b/accessibility/kmouth/pkg-plist index a7e8f9a69e99..20005d3b749f 100644 --- a/accessibility/kmouth/pkg-plist +++ b/accessibility/kmouth/pkg-plist @@ -18,7 +18,7 @@ lib/kde4/libkttsd_xmltransformerplugin.so lib/kde4/libkttsjobmgrpart.so lib/libkttsd.so lib/libkttsd.so.5 -lib/libkttsd.so.5.0.0 +lib/libkttsd.so.5.0.1 share/applications/kde4/kmag.desktop share/applications/kde4/kmousetool.desktop share/applications/kde4/kmouth.desktop @@ -204,7 +204,8 @@ share/icons/mono/scalable/actions/aocenterh.svgz share/icons/mono/scalable/actions/aocenterv.svgz share/icons/mono/scalable/actions/appearance.svgz share/icons/mono/scalable/actions/application-exit.svgz -share/icons/mono/scalable/actions/appointment.svgz +share/icons/mono/scalable/actions/appointment-new.svgz +share/icons/mono/scalable/actions/appointment-reminder.svgz share/icons/mono/scalable/actions/arc.svgz share/icons/mono/scalable/actions/arc_center.svgz share/icons/mono/scalable/actions/archive-extract.svgz @@ -252,6 +253,7 @@ share/icons/mono/scalable/actions/bold.svgz share/icons/mono/scalable/actions/bookmark-new-list.svgz share/icons/mono/scalable/actions/bookmark-new.svgz share/icons/mono/scalable/actions/bookmark-toolbar.svgz +share/icons/mono/scalable/actions/bookmarks-organize.svgz share/icons/mono/scalable/actions/border_all.svgz share/icons/mono/scalable/actions/border_bottom.svgz share/icons/mono/scalable/actions/border_fall.svgz @@ -321,6 +323,7 @@ share/icons/mono/scalable/actions/checkbox-widget.svgz share/icons/mono/scalable/actions/checkedbox.svgz share/icons/mono/scalable/actions/checkmark.svgz share/icons/mono/scalable/actions/chemical.svgz +share/icons/mono/scalable/actions/chronometer.svgz share/icons/mono/scalable/actions/circle.svgz share/icons/mono/scalable/actions/circlebcl.svgz share/icons/mono/scalable/actions/circlebcp.svgz @@ -365,9 +368,10 @@ share/icons/mono/scalable/actions/cpufreq_50.svgz share/icons/mono/scalable/actions/cpufreq_75.svgz share/icons/mono/scalable/actions/cpufreq_na.svgz share/icons/mono/scalable/actions/crop.svgz -share/icons/mono/scalable/actions/css.svgz +share/icons/mono/scalable/actions/cssvalidator.svgz share/icons/mono/scalable/actions/cubicbeziercurve.svgz share/icons/mono/scalable/actions/curvelineintersection.svgz +share/icons/mono/scalable/actions/dashboard-show.svgz share/icons/mono/scalable/actions/data-view.svgz share/icons/mono/scalable/actions/data.svgz share/icons/mono/scalable/actions/database-first-row.svgz @@ -396,6 +400,7 @@ share/icons/mono/scalable/actions/delslide.svgz share/icons/mono/scalable/actions/deriv_func.svgz share/icons/mono/scalable/actions/design-view.svgz share/icons/mono/scalable/actions/dialog-cancel.svgz +share/icons/mono/scalable/actions/dialog-close.svgz share/icons/mono/scalable/actions/dialog-ok-apply.svgz share/icons/mono/scalable/actions/dialog-ok.svgz share/icons/mono/scalable/actions/diff.svgz @@ -404,11 +409,15 @@ share/icons/mono/scalable/actions/dirsynch.svgz share/icons/mono/scalable/actions/dirsynch_new.svgz share/icons/mono/scalable/actions/dissociatecell.svgz share/icons/mono/scalable/actions/distance.svgz +share/icons/mono/scalable/actions/document-decrypt.svgz +share/icons/mono/scalable/actions/document-encrypt.svgz share/icons/mono/scalable/actions/document-export.svgz share/icons/mono/scalable/actions/document-import.svgz share/icons/mono/scalable/actions/document-new.svgz +share/icons/mono/scalable/actions/document-open-folder.svgz share/icons/mono/scalable/actions/document-open.svgz share/icons/mono/scalable/actions/document-preview-archive.svgz +share/icons/mono/scalable/actions/document-print-frame.svgz share/icons/mono/scalable/actions/document-print-preview.svgz share/icons/mono/scalable/actions/document-print.svgz share/icons/mono/scalable/actions/document-properties.svgz @@ -424,7 +433,9 @@ share/icons/mono/scalable/actions/draw-freehand.svgz share/icons/mono/scalable/actions/duringbreaks.svgz share/icons/mono/scalable/actions/dynamic.svgz share/icons/mono/scalable/actions/edit-add.svgz +share/icons/mono/scalable/actions/edit-bomb.svgz share/icons/mono/scalable/actions/edit-clear-history.svgz +share/icons/mono/scalable/actions/edit-clear-locationbar-ltr.svgz share/icons/mono/scalable/actions/edit-clear-locationbar-rtl.svgz share/icons/mono/scalable/actions/edit-clear-locationbar.svgz share/icons/mono/scalable/actions/edit-clear.svgz @@ -434,9 +445,12 @@ share/icons/mono/scalable/actions/edit-delete-mail.svgz share/icons/mono/scalable/actions/edit-delete-shred.svgz share/icons/mono/scalable/actions/edit-delete.svgz share/icons/mono/scalable/actions/edit-find.svgz +share/icons/mono/scalable/actions/edit-mail-find.svgz share/icons/mono/scalable/actions/edit-paste.svgz share/icons/mono/scalable/actions/edit-redo.svgz share/icons/mono/scalable/actions/edit-remove.svgz +share/icons/mono/scalable/actions/edit-rename.svgz +share/icons/mono/scalable/actions/edit-text.svgz share/icons/mono/scalable/actions/edit-trash.svgz share/icons/mono/scalable/actions/edit-undo.svgz share/icons/mono/scalable/actions/edit-user.svgz @@ -467,8 +481,8 @@ share/icons/mono/scalable/actions/fileblend.svgz share/icons/mono/scalable/actions/filereplace.svgz share/icons/mono/scalable/actions/filesimulate.svgz share/icons/mono/scalable/actions/filestop.svgz +share/icons/mono/scalable/actions/fill-color.svgz share/icons/mono/scalable/actions/fill.svgz -share/icons/mono/scalable/actions/fill_colour.svgz share/icons/mono/scalable/actions/filledcircle.svgz share/icons/mono/scalable/actions/filledellipse.svgz share/icons/mono/scalable/actions/filledrectangle.svgz @@ -483,19 +497,22 @@ share/icons/mono/scalable/actions/folder-open.svgz share/icons/mono/scalable/actions/folder.svgz share/icons/mono/scalable/actions/followmouse.svgz share/icons/mono/scalable/actions/fonts.svgz +share/icons/mono/scalable/actions/fork.svgz share/icons/mono/scalable/actions/form_edit.svgz share/icons/mono/scalable/actions/format-font-size-less.svgz share/icons/mono/scalable/actions/format-font-size-more.svgz share/icons/mono/scalable/actions/format-indent-less.svgz share/icons/mono/scalable/actions/format-indent-more.svgz -share/icons/mono/scalable/actions/format-justify-block.svgz share/icons/mono/scalable/actions/format-justify-bottom.svgz share/icons/mono/scalable/actions/format-justify-center.svgz +share/icons/mono/scalable/actions/format-justify-fill.svgz share/icons/mono/scalable/actions/format-justify-left.svgz share/icons/mono/scalable/actions/format-justify-right.svgz share/icons/mono/scalable/actions/format-justify-top.svgz share/icons/mono/scalable/actions/format-list-unordered.svgz share/icons/mono/scalable/actions/format-text-bold.svgz +share/icons/mono/scalable/actions/format-text-direction-ltr.svgz +share/icons/mono/scalable/actions/format-text-direction-rtl.svgz share/icons/mono/scalable/actions/format-text-italic.svgz share/icons/mono/scalable/actions/format-text-strikethrough.svgz share/icons/mono/scalable/actions/format-text-subscript.svgz @@ -552,6 +569,7 @@ share/icons/mono/scalable/actions/harmonichomology.svgz share/icons/mono/scalable/actions/hdd.svgz share/icons/mono/scalable/actions/help-about-kde.svgz share/icons/mono/scalable/actions/help-contextual.svgz +share/icons/mono/scalable/actions/help-hint.svgz share/icons/mono/scalable/actions/help.svgz share/icons/mono/scalable/actions/hexagonbcv.svgz share/icons/mono/scalable/actions/hibernate.svgz @@ -681,8 +699,18 @@ share/icons/mono/scalable/actions/kstars_stars.svgz share/icons/mono/scalable/actions/ksys1.svgz share/icons/mono/scalable/actions/ksys2.svgz share/icons/mono/scalable/actions/ksys3.svgz +share/icons/mono/scalable/actions/kt-check-data.svgz +share/icons/mono/scalable/actions/kt-chunks.svgz +share/icons/mono/scalable/actions/kt-info-widget.svgz +share/icons/mono/scalable/actions/kt-pause.svgz +share/icons/mono/scalable/actions/kt-plugins.svgz +share/icons/mono/scalable/actions/kt-queue-manager.svgz +share/icons/mono/scalable/actions/kt-remove.svgz +share/icons/mono/scalable/actions/kt-show-statusbar.svgz +share/icons/mono/scalable/actions/kt-start.svgz +share/icons/mono/scalable/actions/kt-stop-all.svgz +share/icons/mono/scalable/actions/kt-stop.svgz share/icons/mono/scalable/actions/ktinfowidget.svgz -share/icons/mono/scalable/actions/ktip.svgz share/icons/mono/scalable/actions/label-widget.svgz share/icons/mono/scalable/actions/lan.svgz share/icons/mono/scalable/actions/languages.svgz @@ -736,20 +764,22 @@ share/icons/mono/scalable/actions/lowerlayer.svgz share/icons/mono/scalable/actions/lsub.svgz share/icons/mono/scalable/actions/lsup.svgz share/icons/mono/scalable/actions/magnify.svgz -share/icons/mono/scalable/actions/mail-find.svgz share/icons/mono/scalable/actions/mail-flag.svgz share/icons/mono/scalable/actions/mail-forward.svgz -share/icons/mono/scalable/actions/mail-get.svgz +share/icons/mono/scalable/actions/mail-mark-important.svgz share/icons/mono/scalable/actions/mail-mark-junk.svgz share/icons/mono/scalable/actions/mail-mark-notjunk.svgz +share/icons/mono/scalable/actions/mail-mark-task.svgz +share/icons/mono/scalable/actions/mail-mark-unread.svgz share/icons/mono/scalable/actions/mail-message-new.svgz +share/icons/mono/scalable/actions/mail-queue.svgz +share/icons/mono/scalable/actions/mail-receive.svgz share/icons/mono/scalable/actions/mail-reply-all.svgz +share/icons/mono/scalable/actions/mail-reply-custom.svgz +share/icons/mono/scalable/actions/mail-reply-list.svgz share/icons/mono/scalable/actions/mail-reply-sender.svgz share/icons/mono/scalable/actions/mail-replylist.svgz share/icons/mono/scalable/actions/mail-send.svgz -share/icons/mono/scalable/actions/mail.svgz -share/icons/mono/scalable/actions/mail_post_to.svgz -share/icons/mono/scalable/actions/mail_todo.svgz share/icons/mono/scalable/actions/make.svgz share/icons/mono/scalable/actions/markasblank.svgz share/icons/mono/scalable/actions/math_abs.svgz @@ -912,9 +942,11 @@ share/icons/mono/scalable/actions/pgnum.svgz share/icons/mono/scalable/actions/pgp-keys.svgz share/icons/mono/scalable/actions/player-time.svgz share/icons/mono/scalable/actions/player-volume-down.svgz +share/icons/mono/scalable/actions/player-volume-muted.svgz share/icons/mono/scalable/actions/player-volume-up.svgz share/icons/mono/scalable/actions/player-volume.svgz share/icons/mono/scalable/actions/player_mute.svgz +share/icons/mono/scalable/actions/player_record.svgz share/icons/mono/scalable/actions/plot.svgz share/icons/mono/scalable/actions/podcast_new.svgz share/icons/mono/scalable/actions/point.svgz @@ -932,11 +964,13 @@ share/icons/mono/scalable/actions/precplus.svgz share/icons/mono/scalable/actions/preverror.svgz share/icons/mono/scalable/actions/prevfuzzy.svgz share/icons/mono/scalable/actions/prevfuzzyuntrans.svgz +share/icons/mono/scalable/actions/preview.svgz share/icons/mono/scalable/actions/previewprint.svgz share/icons/mono/scalable/actions/prevmarked.svgz share/icons/mono/scalable/actions/prevpo.svgz share/icons/mono/scalable/actions/prevtemplate.svgz share/icons/mono/scalable/actions/prevuntranslated.svgz +share/icons/mono/scalable/actions/process-stop.svgz share/icons/mono/scalable/actions/processor.svgz share/icons/mono/scalable/actions/prod.svgz share/icons/mono/scalable/actions/progress-bar-widget.svgz @@ -952,16 +986,17 @@ share/icons/mono/scalable/actions/quick_start.svgz share/icons/mono/scalable/actions/quiz.svgz share/icons/mono/scalable/actions/radicalline.svgz share/icons/mono/scalable/actions/radio-button-widget.svgz +share/icons/mono/scalable/actions/raindrop.svgz share/icons/mono/scalable/actions/raise.svgz share/icons/mono/scalable/actions/raiselayer.svgz share/icons/mono/scalable/actions/random.svgz +share/icons/mono/scalable/actions/rating.svgz share/icons/mono/scalable/actions/ray.svgz share/icons/mono/scalable/actions/rebuild.svgz share/icons/mono/scalable/actions/rectangle.svgz share/icons/mono/scalable/actions/recursive.svgz share/icons/mono/scalable/actions/redeyes.svgz share/icons/mono/scalable/actions/relation.svgz -share/icons/mono/scalable/actions/reload.svgz share/icons/mono/scalable/actions/remcol.svgz share/icons/mono/scalable/actions/removecell.svgz share/icons/mono/scalable/actions/removecomment.svgz @@ -1025,6 +1060,7 @@ share/icons/mono/scalable/actions/shadowRU.svgz share/icons/mono/scalable/actions/shadowU.svgz share/icons/mono/scalable/actions/share.svgz share/icons/mono/scalable/actions/shear.svgz +share/icons/mono/scalable/actions/show-menu.svgz share/icons/mono/scalable/actions/show_offliners.svgz share/icons/mono/scalable/actions/show_table_column.svgz share/icons/mono/scalable/actions/show_table_row.svgz @@ -1043,8 +1079,8 @@ share/icons/mono/scalable/actions/smallcal.svgz share/icons/mono/scalable/actions/smallthumbnails.svgz share/icons/mono/scalable/actions/smiley.svgz share/icons/mono/scalable/actions/solarizetool.svgz +share/icons/mono/scalable/actions/speaker.svgz share/icons/mono/scalable/actions/spectrum.svgz -share/icons/mono/scalable/actions/spellcheck.svgz share/icons/mono/scalable/actions/spellcheck_from_cursor.svgz share/icons/mono/scalable/actions/spellcheck_selected.svgz share/icons/mono/scalable/actions/spinbox-widget.svgz @@ -1071,10 +1107,16 @@ share/icons/mono/scalable/actions/suspend_to_disk.svgz share/icons/mono/scalable/actions/suspend_to_ram.svgz share/icons/mono/scalable/actions/syntax.svgz share/icons/mono/scalable/actions/system-lock-screen.svgz +share/icons/mono/scalable/actions/system-log-out.svgz +share/icons/mono/scalable/actions/system-restart.svgz share/icons/mono/scalable/actions/system-run.svgz share/icons/mono/scalable/actions/system-search.svgz +share/icons/mono/scalable/actions/system-shutdown.svgz +share/icons/mono/scalable/actions/system-suspend-hibernate.svgz +share/icons/mono/scalable/actions/system-suspend.svgz share/icons/mono/scalable/actions/system-switch-user.svgz share/icons/mono/scalable/actions/tab-breakoff.svgz +share/icons/mono/scalable/actions/tab-close.svgz share/icons/mono/scalable/actions/tab-duplicate.svgz share/icons/mono/scalable/actions/tab-new-background.svgz share/icons/mono/scalable/actions/tab-new.svgz @@ -1082,10 +1124,11 @@ share/icons/mono/scalable/actions/tab-widget.svgz share/icons/mono/scalable/actions/tab_first.svgz share/icons/mono/scalable/actions/tab_last.svgz share/icons/mono/scalable/actions/tab_left.svgz -share/icons/mono/scalable/actions/tab_remove.svgz share/icons/mono/scalable/actions/tab_right.svgz share/icons/mono/scalable/actions/tables.svgz share/icons/mono/scalable/actions/tangent.svgz +share/icons/mono/scalable/actions/task-new.svgz +share/icons/mono/scalable/actions/task-reminder.svgz share/icons/mono/scalable/actions/tea_not_ready.svgz share/icons/mono/scalable/actions/template_a4.svgz share/icons/mono/scalable/actions/template_balancesheet.svgz @@ -1179,7 +1222,10 @@ share/icons/mono/scalable/actions/tool_star.svgz share/icons/mono/scalable/actions/tool_text.svgz share/icons/mono/scalable/actions/tool_uselastdir.svgz share/icons/mono/scalable/actions/tool_wizard_selection.svgz +share/icons/mono/scalable/actions/tools-check-spelling.svgz share/icons/mono/scalable/actions/tools-media-optical-burn.svgz +share/icons/mono/scalable/actions/tools-report-bug.svgz +share/icons/mono/scalable/actions/tools-wizard.svgz share/icons/mono/scalable/actions/tooltip.svgz share/icons/mono/scalable/actions/transform-rotate.svgz share/icons/mono/scalable/actions/transform.svgz @@ -1209,17 +1255,25 @@ share/icons/mono/scalable/actions/vertical_text.svgz share/icons/mono/scalable/actions/view-calendar-day.svgz share/icons/mono/scalable/actions/view-calendar-list.svgz share/icons/mono/scalable/actions/view-calendar-month.svgz -share/icons/mono/scalable/actions/view-calendar-todo.svgz +share/icons/mono/scalable/actions/view-calendar-tasks.svgz share/icons/mono/scalable/actions/view-calendar-upcoming-days.svgz share/icons/mono/scalable/actions/view-calendar-upcoming-events.svgz share/icons/mono/scalable/actions/view-calendar-week.svgz share/icons/mono/scalable/actions/view-calendar-workweek.svgz share/icons/mono/scalable/actions/view-choose.svgz +share/icons/mono/scalable/actions/view-close.svgz +share/icons/mono/scalable/actions/view-columns.svgz +share/icons/mono/scalable/actions/view-file-columns.svgz share/icons/mono/scalable/actions/view-filter.svgz share/icons/mono/scalable/actions/view-fullscreen.svgz share/icons/mono/scalable/actions/view-history.svgz share/icons/mono/scalable/actions/view-icon.svgz share/icons/mono/scalable/actions/view-left-right.svgz +share/icons/mono/scalable/actions/view-list-details.svgz +share/icons/mono/scalable/actions/view-list-icons.svgz +share/icons/mono/scalable/actions/view-list-text.svgz +share/icons/mono/scalable/actions/view-list-tree.svgz +share/icons/mono/scalable/actions/view-media-artist.svgz share/icons/mono/scalable/actions/view-media-visualization.svgz share/icons/mono/scalable/actions/view-pim-calendar.svgz share/icons/mono/scalable/actions/view-pim-contacts.svgz @@ -1229,11 +1283,18 @@ share/icons/mono/scalable/actions/view-pim-news.svgz share/icons/mono/scalable/actions/view-pim-notes.svgz share/icons/mono/scalable/actions/view-pim-summary.svgz share/icons/mono/scalable/actions/view-pim-tasks.svgz +share/icons/mono/scalable/actions/view-presentation.svgz +share/icons/mono/scalable/actions/view-preview.svgz +share/icons/mono/scalable/actions/view-refresh.svgz share/icons/mono/scalable/actions/view-remove.svgz share/icons/mono/scalable/actions/view-restore.svgz +share/icons/mono/scalable/actions/view-right-close.svgz +share/icons/mono/scalable/actions/view-right-new.svgz share/icons/mono/scalable/actions/view-sidetree.svgz share/icons/mono/scalable/actions/view-sort-ascending.svgz share/icons/mono/scalable/actions/view-sort-descending.svgz +share/icons/mono/scalable/actions/view-split-left-right.svgz +share/icons/mono/scalable/actions/view-split-top-bottom.svgz share/icons/mono/scalable/actions/view-statistics.svgz share/icons/mono/scalable/actions/view-top-bottom.svgz share/icons/mono/scalable/actions/view-tree.svgz @@ -1249,8 +1310,6 @@ share/icons/mono/scalable/actions/view_right.svgz share/icons/mono/scalable/actions/view_ruler.svgz share/icons/mono/scalable/actions/view_split.svgz share/icons/mono/scalable/actions/view_text.svgz -share/icons/mono/scalable/actions/viewmag.svgz -share/icons/mono/scalable/actions/viewmag1.svgz share/icons/mono/scalable/actions/viewmag_bis+.svgz share/icons/mono/scalable/actions/viewmag_bis-.svgz share/icons/mono/scalable/actions/viewmag_enlarge.svgz @@ -1261,7 +1320,6 @@ share/icons/mono/scalable/actions/viewmag_lock.svgz share/icons/mono/scalable/actions/viewmag_no.svgz share/icons/mono/scalable/actions/viewmag_shrink.svgz share/icons/mono/scalable/actions/viewmag_w.svgz -share/icons/mono/scalable/actions/viewmagfit.svgz share/icons/mono/scalable/actions/voicecall.svgz share/icons/mono/scalable/actions/w.svgz share/icons/mono/scalable/actions/webarchiver.svgz @@ -1270,21 +1328,23 @@ share/icons/mono/scalable/actions/webcamsend.svgz share/icons/mono/scalable/actions/webexport.svgz share/icons/mono/scalable/actions/wiki.svgz share/icons/mono/scalable/actions/window-close.svgz +share/icons/mono/scalable/actions/window-duplicate.svgz share/icons/mono/scalable/actions/window-new.svgz share/icons/mono/scalable/actions/window-suppressed.svgz share/icons/mono/scalable/actions/window.svgz -share/icons/mono/scalable/actions/window_duplicate.svgz share/icons/mono/scalable/actions/wired.svgz share/icons/mono/scalable/actions/wireless.svgz -share/icons/mono/scalable/actions/wizard.svgz share/icons/mono/scalable/actions/yahoo_mobile.svgz +share/icons/mono/scalable/actions/zoom-best-fit.svgz share/icons/mono/scalable/actions/zoom-in.svgz +share/icons/mono/scalable/actions/zoom-original.svgz share/icons/mono/scalable/actions/zoom-out.svgz +share/icons/mono/scalable/actions/zoom.svgz share/icons/mono/scalable/actions/zoom_disabled.svgz share/icons/mono/scalable/actions/zoom_enabled.svgz +share/icons/mono/scalable/apps/VBox.svgz share/icons/mono/scalable/apps/abakus.svgz share/icons/mono/scalable/apps/abiword.svgz -share/icons/mono/scalable/apps/accessibility_section.svgz share/icons/mono/scalable/apps/accessories-calculator.svgz share/icons/mono/scalable/apps/accessories-character-map.svgz share/icons/mono/scalable/apps/accessories-dictionary.svgz @@ -1296,6 +1356,7 @@ share/icons/mono/scalable/apps/amarok.svgz share/icons/mono/scalable/apps/amor.svgz share/icons/mono/scalable/apps/antivirus.svgz share/icons/mono/scalable/apps/apollon.svgz +share/icons/mono/scalable/apps/arora.svgz share/icons/mono/scalable/apps/assistant.svgz share/icons/mono/scalable/apps/atlantik.svgz share/icons/mono/scalable/apps/audacity.svgz @@ -1305,8 +1366,6 @@ share/icons/mono/scalable/apps/blender.svgz share/icons/mono/scalable/apps/blinken.svgz share/icons/mono/scalable/apps/bluefish.svgz share/icons/mono/scalable/apps/bookcase.svgz -share/icons/mono/scalable/apps/browser.svgz -share/icons/mono/scalable/apps/bug.svgz share/icons/mono/scalable/apps/calc.svgz share/icons/mono/scalable/apps/catalogmanager.svgz share/icons/mono/scalable/apps/categories.svgz @@ -1322,6 +1381,7 @@ share/icons/mono/scalable/apps/displayconfig.svgz share/icons/mono/scalable/apps/dopewars-pill.svgz share/icons/mono/scalable/apps/download_manager.svgz share/icons/mono/scalable/apps/eclipse.svgz +share/icons/mono/scalable/apps/ekiga.svgz share/icons/mono/scalable/apps/emacs.svgz share/icons/mono/scalable/apps/email.svgz share/icons/mono/scalable/apps/energy_star.svgz @@ -1333,15 +1393,11 @@ share/icons/mono/scalable/apps/falconseye.svgz share/icons/mono/scalable/apps/fax.svgz share/icons/mono/scalable/apps/fifteenpieces.svgz share/icons/mono/scalable/apps/filelight.svgz -share/icons/mono/scalable/apps/fileshare.svgz -share/icons/mono/scalable/apps/filetypes.svgz share/icons/mono/scalable/apps/flashkard.svgz share/icons/mono/scalable/apps/fsview.svgz share/icons/mono/scalable/apps/gaim.svgz share/icons/mono/scalable/apps/gimp.svgz share/icons/mono/scalable/apps/gkrellm.svgz -share/icons/mono/scalable/apps/gnome.svgz -share/icons/mono/scalable/apps/gnomemeeting.svgz share/icons/mono/scalable/apps/gnucash.svgz share/icons/mono/scalable/apps/gnumeric.svgz share/icons/mono/scalable/apps/gnutella.svgz @@ -1353,10 +1409,10 @@ share/icons/mono/scalable/apps/gvim.svgz share/icons/mono/scalable/apps/gwenview.svgz share/icons/mono/scalable/apps/gxmame.svgz share/icons/mono/scalable/apps/hardware.svgz -share/icons/mono/scalable/apps/hardware_info.svgz share/icons/mono/scalable/apps/help-browser.svgz share/icons/mono/scalable/apps/highlight.svgz share/icons/mono/scalable/apps/hw_unknown.svgz +share/icons/mono/scalable/apps/hwinfo.svgz share/icons/mono/scalable/apps/icewm.svgz share/icons/mono/scalable/apps/ieee1394.svgz share/icons/mono/scalable/apps/im-aim.svgz @@ -1370,11 +1426,14 @@ share/icons/mono/scalable/apps/im-sms.svgz share/icons/mono/scalable/apps/im-yahoo.svgz share/icons/mono/scalable/apps/imagegallery.svgz share/icons/mono/scalable/apps/inkscape.svgz +share/icons/mono/scalable/apps/internet-web-browser.svgz share/icons/mono/scalable/apps/irkick.svgz share/icons/mono/scalable/apps/isp-disabled.svgz share/icons/mono/scalable/apps/juk.svgz share/icons/mono/scalable/apps/k3b.svgz share/icons/mono/scalable/apps/kaboodle.svgz +share/icons/mono/scalable/apps/kaddressbook.svgz +share/icons/mono/scalable/apps/kaffeine.svgz share/icons/mono/scalable/apps/kalarm.svgz share/icons/mono/scalable/apps/kalzium.svgz share/icons/mono/scalable/apps/kamix.svgz @@ -1389,7 +1448,6 @@ share/icons/mono/scalable/apps/kate.svgz share/icons/mono/scalable/apps/katomic.svgz share/icons/mono/scalable/apps/kaudiocreator.svgz share/icons/mono/scalable/apps/kazaa.svgz -share/icons/mono/scalable/apps/kbabel.svgz share/icons/mono/scalable/apps/kbackgammon.svgz share/icons/mono/scalable/apps/kbackgammon_engine.svgz share/icons/mono/scalable/apps/kbatterymonitor.svgz @@ -1423,7 +1481,6 @@ share/icons/mono/scalable/apps/kcolorchooser.svgz share/icons/mono/scalable/apps/kcoloredit.svgz share/icons/mono/scalable/apps/kconfigure.svgz share/icons/mono/scalable/apps/kcpuload.svgz -share/icons/mono/scalable/apps/kcron.svgz share/icons/mono/scalable/apps/kdat.svgz share/icons/mono/scalable/apps/kde.svgz share/icons/mono/scalable/apps/kdenlive.svgz @@ -1443,6 +1500,7 @@ share/icons/mono/scalable/apps/keurocalc.svgz share/icons/mono/scalable/apps/kexi.svgz share/icons/mono/scalable/apps/keyboard-shortcut.svgz share/icons/mono/scalable/apps/kfilereplace.svgz +share/icons/mono/scalable/apps/kfind.svgz share/icons/mono/scalable/apps/kflog.svgz share/icons/mono/scalable/apps/kfloppy.svgz share/icons/mono/scalable/apps/kformdesigner.svgz @@ -1493,7 +1551,6 @@ share/icons/mono/scalable/apps/kmerlin.svgz share/icons/mono/scalable/apps/kmidi.svgz share/icons/mono/scalable/apps/kmines.svgz share/icons/mono/scalable/apps/kmix.svgz -share/icons/mono/scalable/apps/kmixdocked_mute.svgz share/icons/mono/scalable/apps/kmldonkey.svgz share/icons/mono/scalable/apps/kmoon.svgz share/icons/mono/scalable/apps/kmousetool.svgz @@ -1508,6 +1565,7 @@ share/icons/mono/scalable/apps/knetwalk.svgz share/icons/mono/scalable/apps/knetworkmanager.svgz share/icons/mono/scalable/apps/knewsticker.svgz share/icons/mono/scalable/apps/knoda.svgz +share/icons/mono/scalable/apps/knode.svgz share/icons/mono/scalable/apps/knoppix-penguin.svgz share/icons/mono/scalable/apps/knotes.svgz share/icons/mono/scalable/apps/kodo.svgz @@ -1531,6 +1589,7 @@ share/icons/mono/scalable/apps/kopete_avdevice.svgz share/icons/mono/scalable/apps/kopete_offline.svgz share/icons/mono/scalable/apps/kopete_some_away.svgz share/icons/mono/scalable/apps/kopete_some_online.svgz +share/icons/mono/scalable/apps/korganizer.svgz share/icons/mono/scalable/apps/korn.svgz share/icons/mono/scalable/apps/kpager.svgz share/icons/mono/scalable/apps/kpaint.svgz @@ -1574,11 +1633,11 @@ share/icons/mono/scalable/apps/ksnake.svgz share/icons/mono/scalable/apps/ksnapshot.svgz share/icons/mono/scalable/apps/ksokoban.svgz share/icons/mono/scalable/apps/kspaceduel.svgz -share/icons/mono/scalable/apps/ksplash.svgz share/icons/mono/scalable/apps/kspread.svgz share/icons/mono/scalable/apps/kstars.svgz share/icons/mono/scalable/apps/kstreamripper.svgz share/icons/mono/scalable/apps/ksysguardd.svgz +share/icons/mono/scalable/apps/ksystemlog.svgz share/icons/mono/scalable/apps/ksysv.svgz share/icons/mono/scalable/apps/ktalkd.svgz share/icons/mono/scalable/apps/kteatime.svgz @@ -1603,13 +1662,11 @@ share/icons/mono/scalable/apps/kverbos.svgz share/icons/mono/scalable/apps/kview.svgz share/icons/mono/scalable/apps/kvim.svgz share/icons/mono/scalable/apps/kvirc.svgz -share/icons/mono/scalable/apps/kvoctrain.svgz -share/icons/mono/scalable/apps/kwallet.svgz +share/icons/mono/scalable/apps/kwalletmanager.svgz share/icons/mono/scalable/apps/kwave.svgz share/icons/mono/scalable/apps/kweather.svgz share/icons/mono/scalable/apps/kwifimanager.svgz share/icons/mono/scalable/apps/kwikdisk.svgz -share/icons/mono/scalable/apps/kwin4.svgz share/icons/mono/scalable/apps/kword.svgz share/icons/mono/scalable/apps/kwordquiz.svgz share/icons/mono/scalable/apps/kworldclock.svgz @@ -1617,12 +1674,15 @@ share/icons/mono/scalable/apps/kynaptic.svgz share/icons/mono/scalable/apps/kzenexplorer.svgz share/icons/mono/scalable/apps/laptop_battery.svgz share/icons/mono/scalable/apps/laptop_pcmcia.svgz +share/icons/mono/scalable/apps/lastfm.svgz share/icons/mono/scalable/apps/ldap_client.svgz share/icons/mono/scalable/apps/licq.svgz share/icons/mono/scalable/apps/limewire.svgz share/icons/mono/scalable/apps/linguist.svgz +share/icons/mono/scalable/apps/lokalize.svgz share/icons/mono/scalable/apps/lskat.svgz share/icons/mono/scalable/apps/mac.svgz +share/icons/mono/scalable/apps/mailody.svgz share/icons/mono/scalable/apps/mathematica.svgz share/icons/mono/scalable/apps/menubar.svgz share/icons/mono/scalable/apps/mozilla-firefox.svgz @@ -1638,49 +1698,63 @@ share/icons/mono/scalable/apps/nedit.svgz share/icons/mono/scalable/apps/netscape.svgz share/icons/mono/scalable/apps/network_advanced.svgz share/icons/mono/scalable/apps/nfs.svgz -share/icons/mono/scalable/apps/noatun.svgz share/icons/mono/scalable/apps/ntp-client.svgz share/icons/mono/scalable/apps/nvu.svgz +share/icons/mono/scalable/apps/nxclient-icon.svgz share/icons/mono/scalable/apps/office-addressbook.svgz share/icons/mono/scalable/apps/office-calendar.svgz -share/icons/mono/scalable/apps/ooo_calc.svgz +share/icons/mono/scalable/apps/ooo-calc.svgz +share/icons/mono/scalable/apps/ooo-draw.svgz +share/icons/mono/scalable/apps/ooo-impress.svgz +share/icons/mono/scalable/apps/ooo-math.svgz +share/icons/mono/scalable/apps/ooo-printeradmin.svgz +share/icons/mono/scalable/apps/ooo-template.svgz +share/icons/mono/scalable/apps/ooo-web.svgz +share/icons/mono/scalable/apps/ooo-writer.svgz share/icons/mono/scalable/apps/ooo_chart.svgz -share/icons/mono/scalable/apps/ooo_draw.svgz -share/icons/mono/scalable/apps/ooo_impress.svgz -share/icons/mono/scalable/apps/ooo_math.svgz -share/icons/mono/scalable/apps/ooo_printeradmin.svgz share/icons/mono/scalable/apps/ooo_setup.svgz -share/icons/mono/scalable/apps/ooo_template.svgz -share/icons/mono/scalable/apps/ooo_web.svgz -share/icons/mono/scalable/apps/ooo_writer.svgz share/icons/mono/scalable/apps/openft.svgz share/icons/mono/scalable/apps/openoffice.svgz share/icons/mono/scalable/apps/opera.svgz share/icons/mono/scalable/apps/palm-pilot.svgz share/icons/mono/scalable/apps/pan.svgz share/icons/mono/scalable/apps/panel_settings.svgz +share/icons/mono/scalable/apps/parley.svgz share/icons/mono/scalable/apps/password.svgz share/icons/mono/scalable/apps/pcmcia.svgz share/icons/mono/scalable/apps/photobook.svgz share/icons/mono/scalable/apps/potracegui.svgz +share/icons/mono/scalable/apps/preferences-desktop-accessibility.svgz share/icons/mono/scalable/apps/preferences-desktop-color.svgz +share/icons/mono/scalable/apps/preferences-desktop-display-randr.svgz +share/icons/mono/scalable/apps/preferences-desktop-display.svgz +share/icons/mono/scalable/apps/preferences-desktop-filetype-association.svgz share/icons/mono/scalable/apps/preferences-desktop-font.svgz +share/icons/mono/scalable/apps/preferences-desktop-gaming.svgz share/icons/mono/scalable/apps/preferences-desktop-icons.svgz +share/icons/mono/scalable/apps/preferences-desktop-keyboard.svgz share/icons/mono/scalable/apps/preferences-desktop-launch-feedback.svgz share/icons/mono/scalable/apps/preferences-desktop-locale.svgz +share/icons/mono/scalable/apps/preferences-desktop-mouse.svgz share/icons/mono/scalable/apps/preferences-desktop-notification.svgz share/icons/mono/scalable/apps/preferences-desktop-printer.svgz share/icons/mono/scalable/apps/preferences-desktop-screensaver.svgz share/icons/mono/scalable/apps/preferences-desktop-sound.svgz share/icons/mono/scalable/apps/preferences-desktop-text-to-speech.svgz +share/icons/mono/scalable/apps/preferences-desktop-theme-style.svgz share/icons/mono/scalable/apps/preferences-desktop-theme.svgz share/icons/mono/scalable/apps/preferences-desktop-user.svgz share/icons/mono/scalable/apps/preferences-desktop-wallpaper.svgz share/icons/mono/scalable/apps/preferences-system-bluetooth.svgz +share/icons/mono/scalable/apps/preferences-system-cron.svgz share/icons/mono/scalable/apps/preferences-system-login.svgz +share/icons/mono/scalable/apps/preferences-system-network-proxy.svgz +share/icons/mono/scalable/apps/preferences-system-network-sharing.svgz share/icons/mono/scalable/apps/preferences-system-performance.svgz share/icons/mono/scalable/apps/preferences-system-power-management.svgz share/icons/mono/scalable/apps/preferences-system-session-services.svgz +share/icons/mono/scalable/apps/preferences-system-solid.svgz +share/icons/mono/scalable/apps/preferences-system-splash.svgz share/icons/mono/scalable/apps/preferences-system-time.svgz share/icons/mono/scalable/apps/preferences-system-windows.svgz share/icons/mono/scalable/apps/preferences-web-browser-adblock.svgz @@ -1688,12 +1762,12 @@ share/icons/mono/scalable/apps/preferences-web-browser-cache.svgz share/icons/mono/scalable/apps/preferences-web-browser-cookies.svgz share/icons/mono/scalable/apps/preferences-web-browser-identification.svgz share/icons/mono/scalable/apps/preferences-web-browser-shortcuts.svgz -share/icons/mono/scalable/apps/proxy.svgz +share/icons/mono/scalable/apps/preferences-web-browser-stylesheets.svgz share/icons/mono/scalable/apps/qt.svgz +share/icons/mono/scalable/apps/qtconfig.svgz share/icons/mono/scalable/apps/qtella.svgz share/icons/mono/scalable/apps/quanta.svgz share/icons/mono/scalable/apps/quicktime.svgz -share/icons/mono/scalable/apps/randr.svgz share/icons/mono/scalable/apps/realplayer.svgz share/icons/mono/scalable/apps/remote.svgz share/icons/mono/scalable/apps/rsibreak.svgz @@ -1704,8 +1778,6 @@ share/icons/mono/scalable/apps/showfoto.svgz share/icons/mono/scalable/apps/showimg.svgz share/icons/mono/scalable/apps/shredder.svgz share/icons/mono/scalable/apps/sodipodi.svgz -share/icons/mono/scalable/apps/soundcard.svgz -share/icons/mono/scalable/apps/style.svgz share/icons/mono/scalable/apps/superkaramba.svgz share/icons/mono/scalable/apps/synaptic.svgz share/icons/mono/scalable/apps/system-file-manager.svgz @@ -1723,22 +1795,23 @@ share/icons/mono/scalable/apps/utilities-system-monitor.svgz share/icons/mono/scalable/apps/utilities-terminal.svgz share/icons/mono/scalable/apps/vnc.svgz share/icons/mono/scalable/apps/wabi.svgz -share/icons/mono/scalable/apps/web-browser.svgz share/icons/mono/scalable/apps/win_apps.svgz share/icons/mono/scalable/apps/wine.svgz share/icons/mono/scalable/apps/wp.svgz -share/icons/mono/scalable/apps/x.svgz share/icons/mono/scalable/apps/xeyes.svgz share/icons/mono/scalable/apps/xfig.svgz share/icons/mono/scalable/apps/xfmail.svgz share/icons/mono/scalable/apps/xine.svgz share/icons/mono/scalable/apps/xmms.svgz +share/icons/mono/scalable/apps/xorg.svgz share/icons/mono/scalable/apps/xosview.svgz share/icons/mono/scalable/apps/xv.svgz share/icons/mono/scalable/apps/yakuake.svgz share/icons/mono/scalable/apps/zip.svgz share/icons/mono/scalable/categories/applications-accessories.svgz share/icons/mono/scalable/categories/applications-development.svgz +share/icons/mono/scalable/categories/applications-education-language.svgz +share/icons/mono/scalable/categories/applications-education-mathematics.svgz share/icons/mono/scalable/categories/applications-education.svgz share/icons/mono/scalable/categories/applications-engineering.svgz share/icons/mono/scalable/categories/applications-games-arcade.svgz @@ -1760,16 +1833,22 @@ share/icons/mono/scalable/categories/applications-utilities.svgz share/icons/mono/scalable/categories/preferences-desktop-peripherals.svgz share/icons/mono/scalable/categories/preferences-desktop-personal.svgz share/icons/mono/scalable/categories/preferences-desktop.svgz +share/icons/mono/scalable/categories/preferences-other.svgz share/icons/mono/scalable/categories/preferences-system-network.svgz share/icons/mono/scalable/categories/preferences-system.svgz share/icons/mono/scalable/categories/system-help.svgz +share/icons/mono/scalable/devices/audio-card.svgz +share/icons/mono/scalable/devices/audio-headset.svgz +share/icons/mono/scalable/devices/audio-input-microphone.svgz share/icons/mono/scalable/devices/camera-photo.svgz share/icons/mono/scalable/devices/computer-laptop.svgz share/icons/mono/scalable/devices/computer.svgz share/icons/mono/scalable/devices/cpu.svgz share/icons/mono/scalable/devices/drive-harddisk.svgz +share/icons/mono/scalable/devices/drive-optical.svgz share/icons/mono/scalable/devices/drive-remote.svgz share/icons/mono/scalable/devices/drive-removable-media-firewire.svgz +share/icons/mono/scalable/devices/drive-removable-media-usb-pendrive.svgz share/icons/mono/scalable/devices/drive-removable-media-usb.svgz share/icons/mono/scalable/devices/drive-removable-media.svgz share/icons/mono/scalable/devices/input-gaming.svgz @@ -1784,165 +1863,273 @@ share/icons/mono/scalable/devices/media-floppy.svgz share/icons/mono/scalable/devices/media-optical-audio.svgz share/icons/mono/scalable/devices/media-optical-recordable.svgz share/icons/mono/scalable/devices/media-optical.svgz +share/icons/mono/scalable/devices/media-tape.svgz share/icons/mono/scalable/devices/memory.svgz share/icons/mono/scalable/devices/modem.svgz share/icons/mono/scalable/devices/multimedia-player-apple-ipod.svgz +share/icons/mono/scalable/devices/multimedia-player-ipod.svgz +share/icons/mono/scalable/devices/multimedia-player.svgz +share/icons/mono/scalable/devices/network-wired.svgz +share/icons/mono/scalable/devices/network-wireless.svgz share/icons/mono/scalable/devices/pda.svgz +share/icons/mono/scalable/devices/phone.svgz share/icons/mono/scalable/devices/printer.svgz share/icons/mono/scalable/devices/scanner.svgz +share/icons/mono/scalable/devices/video-display.svgz share/icons/mono/scalable/devices/video-television.svgz +share/icons/mono/scalable/emblems/emblem-important.svgz +share/icons/mono/scalable/emblems/emblem-link.svgz +share/icons/mono/scalable/emblems/emblem-symbolic-link.svgz +share/icons/mono/scalable/emotes/face-smile-big.svgz share/icons/mono/scalable/mimetypes/application-illustrator.svgz share/icons/mono/scalable/mimetypes/application-javascript.svgz share/icons/mono/scalable/mimetypes/application-msword.svgz +share/icons/mono/scalable/mimetypes/application-octet-stream.svgz share/icons/mono/scalable/mimetypes/application-pgp-encrypted.svgz share/icons/mono/scalable/mimetypes/application-postscript.svgz share/icons/mono/scalable/mimetypes/application-vnd.ms-excel.svgz share/icons/mono/scalable/mimetypes/application-vnd.ms-powerpoint.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.chart.svgz share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.database.svgz share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.formula.svgz -share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.graphics-template.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.graphics.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.image.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.presentation.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.spreadsheet.svgz +share/icons/mono/scalable/mimetypes/application-vnd.oasis.opendocument.text.svgz +share/icons/mono/scalable/mimetypes/application-vnd.rn-realmedia.svgz +share/icons/mono/scalable/mimetypes/application-vnd.stardivision.calc.svgz share/icons/mono/scalable/mimetypes/application-vnd.stardivision.draw.svgz +share/icons/mono/scalable/mimetypes/application-vnd.sun.xml.draw.svgz +share/icons/mono/scalable/mimetypes/application-vnd.sun.xml.draw.template.svgz share/icons/mono/scalable/mimetypes/application-x-7z-compressed.svgz share/icons/mono/scalable/mimetypes/application-x-awk.svgz share/icons/mono/scalable/mimetypes/application-x-bittorrent.svgz share/icons/mono/scalable/mimetypes/application-x-blender.svgz +share/icons/mono/scalable/mimetypes/application-x-cd-image.svgz share/icons/mono/scalable/mimetypes/application-x-cda.svgz share/icons/mono/scalable/mimetypes/application-x-core.svgz share/icons/mono/scalable/mimetypes/application-x-cue.svgz share/icons/mono/scalable/mimetypes/application-x-deb.svgz share/icons/mono/scalable/mimetypes/application-x-dvi.svgz +share/icons/mono/scalable/mimetypes/application-x-egon.svgz share/icons/mono/scalable/mimetypes/application-x-font-speedo.svgz +share/icons/mono/scalable/mimetypes/application-x-font-ttf.svgz +share/icons/mono/scalable/mimetypes/application-x-font-type1.svgz +share/icons/mono/scalable/mimetypes/application-x-java-archive.svgz +share/icons/mono/scalable/mimetypes/application-x-java.svgz +share/icons/mono/scalable/mimetypes/application-x-kaffeine.svgz +share/icons/mono/scalable/mimetypes/application-x-karbon.svgz +share/icons/mono/scalable/mimetypes/application-x-kchart.svgz share/icons/mono/scalable/mimetypes/application-x-kcsrc.svgz +share/icons/mono/scalable/mimetypes/application-x-kexiproject-shortcut.svgz +share/icons/mono/scalable/mimetypes/application-x-kexiproject.svgz +share/icons/mono/scalable/mimetypes/application-x-kformula.svgz +share/icons/mono/scalable/mimetypes/application-x-kgetlist.svgz +share/icons/mono/scalable/mimetypes/application-x-kig.svgz +share/icons/mono/scalable/mimetypes/application-x-kivio.svgz share/icons/mono/scalable/mimetypes/application-x-kontour.svgz +share/icons/mono/scalable/mimetypes/application-x-kopete-emoticons.svgz +share/icons/mono/scalable/mimetypes/application-x-kpovmodeler.svgz +share/icons/mono/scalable/mimetypes/application-x-kpresenter.svgz +share/icons/mono/scalable/mimetypes/application-x-krita.svgz +share/icons/mono/scalable/mimetypes/application-x-kspread.svgz share/icons/mono/scalable/mimetypes/application-x-kudesigner.svgz +share/icons/mono/scalable/mimetypes/application-x-kugar.svgz +share/icons/mono/scalable/mimetypes/application-x-kword.svgz +share/icons/mono/scalable/mimetypes/application-x-kwordquiz.svgz +share/icons/mono/scalable/mimetypes/application-x-lyx.svgz share/icons/mono/scalable/mimetypes/application-x-mimearchive.svgz +share/icons/mono/scalable/mimetypes/application-x-mplayer2.svgz +share/icons/mono/scalable/mimetypes/application-x-ms-dos-executable.svgz +share/icons/mono/scalable/mimetypes/application-x-mswinurl.svgz share/icons/mono/scalable/mimetypes/application-x-mswrite.svgz share/icons/mono/scalable/mimetypes/application-x-object.svgz +share/icons/mono/scalable/mimetypes/application-x-perl.svgz +share/icons/mono/scalable/mimetypes/application-x-php.svgz +share/icons/mono/scalable/mimetypes/application-x-python-bytecode.svgz +share/icons/mono/scalable/mimetypes/application-x-quattropro.svgz share/icons/mono/scalable/mimetypes/application-x-rpm.svgz share/icons/mono/scalable/mimetypes/application-x-ruby.svgz -share/icons/mono/scalable/mimetypes/application-x-shockwave-flash.svgz +share/icons/mono/scalable/mimetypes/application-x-sharedlib.svgz +share/icons/mono/scalable/mimetypes/application-x-superkaramba.svgz +share/icons/mono/scalable/mimetypes/application-x-tar.svgz share/icons/mono/scalable/mimetypes/application-x-tex-gf.svgz share/icons/mono/scalable/mimetypes/application-x-tex-pk.svgz +share/icons/mono/scalable/mimetypes/application-x-tgif.svgz share/icons/mono/scalable/mimetypes/application-x-trash.svgz share/icons/mono/scalable/mimetypes/application-x-troff-man.svgz share/icons/mono/scalable/mimetypes/application-x-uml.svgz +share/icons/mono/scalable/mimetypes/application-x-vnd.kde.kexi.svgz +share/icons/mono/scalable/mimetypes/application-x-vnd.kde.kugar.mixed.svgz +share/icons/mono/scalable/mimetypes/application-x-vnd.stardivision.chart.svgz +share/icons/mono/scalable/mimetypes/application-x-wmf.svgz share/icons/mono/scalable/mimetypes/application-x-zerosize.svgz +share/icons/mono/scalable/mimetypes/application-xml.svgz +share/icons/mono/scalable/mimetypes/application-xscd.svgz +share/icons/mono/scalable/mimetypes/application-xslt+xml.svgz +share/icons/mono/scalable/mimetypes/application-zip.svgz share/icons/mono/scalable/mimetypes/applix.svgz share/icons/mono/scalable/mimetypes/ascii.svgz share/icons/mono/scalable/mimetypes/audio-aac.svgz +share/icons/mono/scalable/mimetypes/audio-ac3.svgz +share/icons/mono/scalable/mimetypes/audio-basic.svgz share/icons/mono/scalable/mimetypes/audio-midi.svgz +share/icons/mono/scalable/mimetypes/audio-mp4.svgz +share/icons/mono/scalable/mimetypes/audio-mpeg.svgz +share/icons/mono/scalable/mimetypes/audio-prs.sid.svgz +share/icons/mono/scalable/mimetypes/audio-template.svgz +share/icons/mono/scalable/mimetypes/audio-vnd.rn-realaudio.svgz +share/icons/mono/scalable/mimetypes/audio-vnd.rn-realvideo.svgz +share/icons/mono/scalable/mimetypes/audio-x-adpcm.svgz +share/icons/mono/scalable/mimetypes/audio-x-aiff.svgz +share/icons/mono/scalable/mimetypes/audio-x-flac+ogg.svgz +share/icons/mono/scalable/mimetypes/audio-x-flac.svgz +share/icons/mono/scalable/mimetypes/audio-x-generic.svgz +share/icons/mono/scalable/mimetypes/audio-x-matroska.svgz +share/icons/mono/scalable/mimetypes/audio-x-mod.svgz +share/icons/mono/scalable/mimetypes/audio-x-monkey.svgz +share/icons/mono/scalable/mimetypes/audio-x-mp2.svgz +share/icons/mono/scalable/mimetypes/audio-x-mpegurl.svgz +share/icons/mono/scalable/mimetypes/audio-x-ms-wma.svgz +share/icons/mono/scalable/mimetypes/audio-x-musepack.svgz +share/icons/mono/scalable/mimetypes/audio-x-scpls.svgz +share/icons/mono/scalable/mimetypes/audio-x-speex+ogg.svgz +share/icons/mono/scalable/mimetypes/audio-x-vorbis+ogg.svgz +share/icons/mono/scalable/mimetypes/audio-x-wav.svgz share/icons/mono/scalable/mimetypes/backup.svgz share/icons/mono/scalable/mimetypes/cdbo_list.svgz share/icons/mono/scalable/mimetypes/cdr.svgz -share/icons/mono/scalable/mimetypes/chart.svgz share/icons/mono/scalable/mimetypes/colorset.svgz share/icons/mono/scalable/mimetypes/configure.svgz share/icons/mono/scalable/mimetypes/document2.svgz -share/icons/mono/scalable/mimetypes/exec_wine.svgz share/icons/mono/scalable/mimetypes/executable.svgz share/icons/mono/scalable/mimetypes/file_locked.svgz share/icons/mono/scalable/mimetypes/file_temporary.svgz share/icons/mono/scalable/mimetypes/font_bitmap.svgz -share/icons/mono/scalable/mimetypes/font_truetype.svgz -share/icons/mono/scalable/mimetypes/font_type1.svgz share/icons/mono/scalable/mimetypes/gnome-library.svgz share/icons/mono/scalable/mimetypes/gnome_app_info.svgz share/icons/mono/scalable/mimetypes/graphic.svgz share/icons/mono/scalable/mimetypes/igc.svgz +share/icons/mono/scalable/mimetypes/image-bmp.svgz +share/icons/mono/scalable/mimetypes/image-cgm.svgz +share/icons/mono/scalable/mimetypes/image-fax-g3.svgz +share/icons/mono/scalable/mimetypes/image-gif.svgz +share/icons/mono/scalable/mimetypes/image-jp2.svgz +share/icons/mono/scalable/mimetypes/image-jpeg.svgz +share/icons/mono/scalable/mimetypes/image-png.svgz +share/icons/mono/scalable/mimetypes/image-svg+xml.svgz +share/icons/mono/scalable/mimetypes/image-template.svgz +share/icons/mono/scalable/mimetypes/image-tiff.svgz share/icons/mono/scalable/mimetypes/image-vnd.djvu.svgz -share/icons/mono/scalable/mimetypes/images.svgz -share/icons/mono/scalable/mimetypes/info.svgz +share/icons/mono/scalable/mimetypes/image-x-applix-graphics.svgz +share/icons/mono/scalable/mimetypes/image-x-dcraw.svgz +share/icons/mono/scalable/mimetypes/image-x-dds.svgz +share/icons/mono/scalable/mimetypes/image-x-eps.svgz +share/icons/mono/scalable/mimetypes/image-x-exr.svgz +share/icons/mono/scalable/mimetypes/image-x-fits.svgz +share/icons/mono/scalable/mimetypes/image-x-generic.svgz +share/icons/mono/scalable/mimetypes/image-x-hdr.svgz +share/icons/mono/scalable/mimetypes/image-x-ico.svgz +share/icons/mono/scalable/mimetypes/image-x-jng.svgz +share/icons/mono/scalable/mimetypes/image-x-msod.svgz +share/icons/mono/scalable/mimetypes/image-x-pcx.svgz +share/icons/mono/scalable/mimetypes/image-x-photo-cd.svgz +share/icons/mono/scalable/mimetypes/image-x-portable-bitmap.svgz +share/icons/mono/scalable/mimetypes/image-x-portable-graymap.svgz +share/icons/mono/scalable/mimetypes/image-x-portable-pixmap.svgz +share/icons/mono/scalable/mimetypes/image-x-psd.svgz +share/icons/mono/scalable/mimetypes/image-x-rgb.svgz +share/icons/mono/scalable/mimetypes/image-x-tga.svgz +share/icons/mono/scalable/mimetypes/image-x-vnd.trolltech.qpicture.svgz +share/icons/mono/scalable/mimetypes/image-x-xbitmap.svgz +share/icons/mono/scalable/mimetypes/image-x-xcf.svgz +share/icons/mono/scalable/mimetypes/image-x-xfig.svgz +share/icons/mono/scalable/mimetypes/image-x-xpixmap.svgz +share/icons/mono/scalable/mimetypes/inode-directory.svgz share/icons/mono/scalable/mimetypes/ipod.svgz -share/icons/mono/scalable/mimetypes/java_jar.svgz -share/icons/mono/scalable/mimetypes/karbon_karbon.svgz -share/icons/mono/scalable/mimetypes/kchart_chrt.svgz share/icons/mono/scalable/mimetypes/kdevelop_project.svgz -share/icons/mono/scalable/mimetypes/kexi.svgz -share/icons/mono/scalable/mimetypes/kexi_kexi.svgz -share/icons/mono/scalable/mimetypes/kexiproject_shortcut.svgz -share/icons/mono/scalable/mimetypes/kexiproject_sqlite.svgz -share/icons/mono/scalable/mimetypes/kexiproject_sqlite2.svgz -share/icons/mono/scalable/mimetypes/kformula_kfo.svgz -share/icons/mono/scalable/mimetypes/kget_list.svgz -share/icons/mono/scalable/mimetypes/kig_doc.svgz -share/icons/mono/scalable/mimetypes/kivio_flw.svgz share/icons/mono/scalable/mimetypes/kmultiple.svgz share/icons/mono/scalable/mimetypes/kmy.svgz share/icons/mono/scalable/mimetypes/koffice.svgz -share/icons/mono/scalable/mimetypes/kopete_emoticons.svgz -share/icons/mono/scalable/mimetypes/kpovmodeler_doc.svgz -share/icons/mono/scalable/mimetypes/kpresenter_kpr.svgz -share/icons/mono/scalable/mimetypes/krita_kra.svgz -share/icons/mono/scalable/mimetypes/kspread_ksp.svgz -share/icons/mono/scalable/mimetypes/kugar_kud.svgz -share/icons/mono/scalable/mimetypes/kword_kwd.svgz -share/icons/mono/scalable/mimetypes/kwordquiz_doc.svgz share/icons/mono/scalable/mimetypes/lpl.svgz share/icons/mono/scalable/mimetypes/message-news.svgz share/icons/mono/scalable/mimetypes/metafont.svgz share/icons/mono/scalable/mimetypes/mime.svgz -share/icons/mono/scalable/mimetypes/mime_kaffeine.svgz -share/icons/mono/scalable/mimetypes/mime_lyx.svgz -share/icons/mono/scalable/mimetypes/mime_video.svgz share/icons/mono/scalable/mimetypes/misc.svgz -share/icons/mono/scalable/mimetypes/misc_doc.svgz -share/icons/mono/scalable/mimetypes/moc_src.svgz share/icons/mono/scalable/mimetypes/money.svgz share/icons/mono/scalable/mimetypes/mozilla_doc.svgz share/icons/mono/scalable/mimetypes/netscape.svgz share/icons/mono/scalable/mimetypes/netscape_doc.svgz -share/icons/mono/scalable/mimetypes/php.svgz share/icons/mono/scalable/mimetypes/printer.svgz -share/icons/mono/scalable/mimetypes/psd.svgz -share/icons/mono/scalable/mimetypes/quicktime.svgz -share/icons/mono/scalable/mimetypes/readme.svgz -share/icons/mono/scalable/mimetypes/real.svgz -share/icons/mono/scalable/mimetypes/real_doc.svgz share/icons/mono/scalable/mimetypes/reject.svgz share/icons/mono/scalable/mimetypes/resource.svgz share/icons/mono/scalable/mimetypes/soffice.svgz -share/icons/mono/scalable/mimetypes/source_c.svgz -share/icons/mono/scalable/mimetypes/source_cpp.svgz -share/icons/mono/scalable/mimetypes/source_f.svgz -share/icons/mono/scalable/mimetypes/source_h.svgz share/icons/mono/scalable/mimetypes/source_j.svgz -share/icons/mono/scalable/mimetypes/source_java.svgz share/icons/mono/scalable/mimetypes/source_l.svgz -share/icons/mono/scalable/mimetypes/source_moc.svgz -share/icons/mono/scalable/mimetypes/source_mono.svgz share/icons/mono/scalable/mimetypes/source_o.svgz -share/icons/mono/scalable/mimetypes/source_p.svgz -share/icons/mono/scalable/mimetypes/source_php.svgz -share/icons/mono/scalable/mimetypes/source_pl.svgz -share/icons/mono/scalable/mimetypes/source_py.svgz share/icons/mono/scalable/mimetypes/source_s.svgz -share/icons/mono/scalable/mimetypes/source_xml.svgz share/icons/mono/scalable/mimetypes/source_y.svgz -share/icons/mono/scalable/mimetypes/sql.svgz -share/icons/mono/scalable/mimetypes/superkaramba_theme.svgz -share/icons/mono/scalable/mimetypes/tar.svgz share/icons/mono/scalable/mimetypes/tellico.svgz share/icons/mono/scalable/mimetypes/template.svgz share/icons/mono/scalable/mimetypes/template_source.svgz share/icons/mono/scalable/mimetypes/text-calendar.svgz share/icons/mono/scalable/mimetypes/text-css.svgz share/icons/mono/scalable/mimetypes/text-directory.svgz +share/icons/mono/scalable/mimetypes/text-enriched.svgz +share/icons/mono/scalable/mimetypes/text-html.svgz share/icons/mono/scalable/mimetypes/text-mathml.svgz +share/icons/mono/scalable/mimetypes/text-plain.svgz +share/icons/mono/scalable/mimetypes/text-rtf.svgz +share/icons/mono/scalable/mimetypes/text-sgml.svgz +share/icons/mono/scalable/mimetypes/text-template.svgz +share/icons/mono/scalable/mimetypes/text-troff.svgz +share/icons/mono/scalable/mimetypes/text-vcalendar.svgz +share/icons/mono/scalable/mimetypes/text-vnd.abc.svgz +share/icons/mono/scalable/mimetypes/text-vnd.wap.wml.svgz share/icons/mono/scalable/mimetypes/text-x-bibtex.svgz +share/icons/mono/scalable/mimetypes/text-x-c++src.svgz +share/icons/mono/scalable/mimetypes/text-x-chdr.svgz +share/icons/mono/scalable/mimetypes/text-x-csharp.svgz +share/icons/mono/scalable/mimetypes/text-x-csrc.svgz +share/icons/mono/scalable/mimetypes/text-x-fortran.svgz +share/icons/mono/scalable/mimetypes/text-x-generic.svgz share/icons/mono/scalable/mimetypes/text-x-gettext-translation.svgz +share/icons/mono/scalable/mimetypes/text-x-java.svgz share/icons/mono/scalable/mimetypes/text-x-katefilelist.svgz share/icons/mono/scalable/mimetypes/text-x-log.svgz share/icons/mono/scalable/mimetypes/text-x-makefile.svgz +share/icons/mono/scalable/mimetypes/text-x-moc.svgz +share/icons/mono/scalable/mimetypes/text-x-pascal.svgz +share/icons/mono/scalable/mimetypes/text-x-python.svgz +share/icons/mono/scalable/mimetypes/text-x-readme.svgz +share/icons/mono/scalable/mimetypes/text-x-sql.svgz +share/icons/mono/scalable/mimetypes/text-x-texinfo.svgz +share/icons/mono/scalable/mimetypes/text-xml.svgz share/icons/mono/scalable/mimetypes/text.svgz share/icons/mono/scalable/mimetypes/trash.svgz -share/icons/mono/scalable/mimetypes/txt2.svgz +share/icons/mono/scalable/mimetypes/video-mp4.svgz +share/icons/mono/scalable/mimetypes/video-mpeg.svgz +share/icons/mono/scalable/mimetypes/video-quicktime.svgz +share/icons/mono/scalable/mimetypes/video-template.svgz +share/icons/mono/scalable/mimetypes/video-x-flic.svgz +share/icons/mono/scalable/mimetypes/video-x-flv.svgz +share/icons/mono/scalable/mimetypes/video-x-generic.svgz +share/icons/mono/scalable/mimetypes/video-x-matroska.svgz +share/icons/mono/scalable/mimetypes/video-x-mng.svgz share/icons/mono/scalable/mimetypes/video-x-ms-asf.svgz +share/icons/mono/scalable/mimetypes/video-x-ms-wmv.svgz +share/icons/mono/scalable/mimetypes/video-x-msvideo.svgz +share/icons/mono/scalable/mimetypes/video-x-ogm+ogg.svgz +share/icons/mono/scalable/mimetypes/video-x-theora+ogg.svgz share/icons/mono/scalable/mimetypes/widget_doc.svgz +share/icons/mono/scalable/mimetypes/x-office-calendar.svgz +share/icons/mono/scalable/mimetypes/x-office-spreadsheet.svgz share/icons/mono/scalable/mimetypes/you.svgz -share/icons/mono/scalable/mimetypes/zip.svgz -share/icons/mono/scalable/places/bookmark.svgz +share/icons/mono/scalable/places/bookmarks.svgz share/icons/mono/scalable/places/contact.svgz share/icons/mono/scalable/places/document-multiple.svgz +share/icons/mono/scalable/places/favorites.svgz share/icons/mono/scalable/places/folder-blue.svgz share/icons/mono/scalable/places/folder-bookmarks.svgz share/icons/mono/scalable/places/folder-brown.svgz @@ -1959,6 +2146,7 @@ share/icons/mono/scalable/places/folder-locked.svgz share/icons/mono/scalable/places/folder-orange.svgz share/icons/mono/scalable/places/folder-print.svgz share/icons/mono/scalable/places/folder-red.svgz +share/icons/mono/scalable/places/folder-remote.svgz share/icons/mono/scalable/places/folder-sound.svgz share/icons/mono/scalable/places/folder-tar.svgz share/icons/mono/scalable/places/folder-txt.svgz @@ -1968,6 +2156,9 @@ share/icons/mono/scalable/places/folder-yellow.svgz share/icons/mono/scalable/places/folder.svgz share/icons/mono/scalable/places/link-overlay.svgz share/icons/mono/scalable/places/lock-overlay.svgz +share/icons/mono/scalable/places/mail-folder-inbox.svgz +share/icons/mono/scalable/places/mail-folder-outbox.svgz +share/icons/mono/scalable/places/mail-folder-sent.svgz share/icons/mono/scalable/places/mail-inbox.svgz share/icons/mono/scalable/places/mail-message.svgz share/icons/mono/scalable/places/mail-outbox.svgz @@ -1978,15 +2169,20 @@ share/icons/mono/scalable/places/network-server-database.svgz share/icons/mono/scalable/places/network-server.svgz share/icons/mono/scalable/places/network-workgroup.svgz share/icons/mono/scalable/places/network.svgz +share/icons/mono/scalable/places/start-here-gnome.svgz +share/icons/mono/scalable/places/start-here-kde.svgz share/icons/mono/scalable/places/start-here.svgz share/icons/mono/scalable/places/user-desktop.svgz share/icons/mono/scalable/places/user-home.svgz +share/icons/mono/scalable/places/user-identity.svgz share/icons/mono/scalable/places/user-trash.svgz share/icons/mono/scalable/places/zip-overlay.svgz +share/icons/mono/scalable/status/audio-volume-muted.svgz share/icons/mono/scalable/status/dialog-error.svgz share/icons/mono/scalable/status/dialog-information.svgz share/icons/mono/scalable/status/dialog-warning.svgz share/icons/mono/scalable/status/mail-attachment.svgz +share/icons/mono/scalable/status/mail-task.svgz share/icons/mono/scalable/status/object-locked.svgz share/icons/mono/scalable/status/object-unlocked.svgz share/icons/mono/scalable/status/security-high.svgz @@ -2015,12 +2211,11 @@ share/kde4/services/kttsjobmgr.desktop share/kde4/servicetypes/kttsd_audioplugin.desktop share/kde4/servicetypes/kttsd_filterplugin.desktop share/kde4/servicetypes/kttsd_synthplugin.desktop -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services -@dirrmtry share/kde4 @dirrm share/icons/mono/scalable/status @dirrm share/icons/mono/scalable/places @dirrm share/icons/mono/scalable/mimetypes +@dirrm share/icons/mono/scalable/emotes +@dirrm share/icons/mono/scalable/emblems @dirrm share/icons/mono/scalable/devices @dirrm share/icons/mono/scalable/categories @dirrm share/icons/mono/scalable/apps @@ -2039,27 +2234,10 @@ share/kde4/servicetypes/kttsd_synthplugin.desktop @dirrm share/icons/mono/128x128/animations @dirrm share/icons/mono/128x128 @dirrm share/icons/mono -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48/actions -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32/actions -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22/actions -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16/actions -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons @dirrm share/doc/HTML/en/kttsd @dirrm share/doc/HTML/en/kmouth @dirrm share/doc/HTML/en/kmousetool @dirrm share/doc/HTML/en/kmag -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/config @dirrm share/apps/kttsd/xslt @dirrm share/apps/kttsd/xmltransformer @dirrm share/apps/kttsd/talkerchooser @@ -2088,8 +2266,3 @@ share/kde4/servicetypes/kttsd_synthplugin.desktop @dirrm share/apps/kmousetool/sounds @dirrm share/apps/kmousetool @dirrm share/apps/kmag -@dirrmtry share/apps/color-schemes -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/kde4 diff --git a/arabic/Makefile b/arabic/Makefile index dfb4ab0743f3..c4ba95f617fe 100644 --- a/arabic/Makefile +++ b/arabic/Makefile @@ -9,6 +9,7 @@ SUBDIR += aspell SUBDIR += kacst_fonts SUBDIR += kde3-i18n + SUBDIR += kde4-l10n SUBDIR += khotot SUBDIR += koffice-i18n SUBDIR += libitl diff --git a/arabic/kde4-l10n/Makefile b/arabic/kde4-l10n/Makefile index 39b0ec6c863f..283f9ef0244a 100644 --- a/arabic/kde4-l10n/Makefile +++ b/arabic/kde4-l10n/Makefile @@ -1,29 +1,21 @@ -# New ports collection makefile for: kde3-i18n-ar -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> +# New ports collection makefile for: kde4-l10n +# Date created: 2009-01-25 +# Whom: Max Brazhnikov <makc@FreeBSD.org> # # $FreeBSD$ # -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} +PORTNAME= kde-l10n +PORTVERSION= ${KDE4_VERSION} CATEGORIES?= arabic kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= ar- -DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org -COMMENT= Arabic messages and documentation for KDE3 +COMMENT= Arabic messages and documentation for KDE4 -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext +KDE4_L10N= ar -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes +post-extract: + ${MKDIR} ${WRKSRC}/build -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> +.include "${.CURDIR}/../../misc/kde4-l10n/files/bsd.l10n.mk" +.include <bsd.port.mk>
\ No newline at end of file diff --git a/arabic/kde4-l10n/distinfo b/arabic/kde4-l10n/distinfo index 320498bdf49a..0afff7429390 100644 --- a/arabic/kde4-l10n/distinfo +++ b/arabic/kde4-l10n/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-i18n/kde-i18n-ar-3.5.10.tar.bz2) = ff3f9b816be41df76dfdfa7dbefadb2f -SHA256 (KDE/kde-i18n/kde-i18n-ar-3.5.10.tar.bz2) = 11e7d26dfab2916826d480087b6607845865306a0dd9a14a9f03efc9b34948c9 -SIZE (KDE/kde-i18n/kde-i18n-ar-3.5.10.tar.bz2) = 1896233 +MD5 (KDE/kde-l10n/kde-l10n-ar-4.2.0.tar.bz2) = 058b0bd3a7b2ca4ef56730488a234afa +SHA256 (KDE/kde-l10n/kde-l10n-ar-4.2.0.tar.bz2) = c2e7258475f2718b7db8076008f840ea5587d34007dcd10ce26ea1a2294ae677 +SIZE (KDE/kde-l10n/kde-l10n-ar-4.2.0.tar.bz2) = 3036530 diff --git a/arabic/kde4-l10n/pkg-descr b/arabic/kde4-l10n/pkg-descr index 3354ca873ecc..3073b1096b79 100644 --- a/arabic/kde4-l10n/pkg-descr +++ b/arabic/kde4-l10n/pkg-descr @@ -1,3 +1,3 @@ -Localized messages and documentation for KDE3. +Localized messages and documentation for KDE4. WWW: http://i18n.kde.org/ diff --git a/arabic/kde4-l10n/pkg-plist b/arabic/kde4-l10n/pkg-plist index 0871a5fe1b6e..f92ceab7d50a 100644 --- a/arabic/kde4-l10n/pkg-plist +++ b/arabic/kde4-l10n/pkg-plist @@ -1,106 +1,114 @@ +share/apps/klettres/ar/alpha/a-01.ogg +share/apps/klettres/ar/alpha/a-02.ogg +share/apps/klettres/ar/alpha/a-03.ogg +share/apps/klettres/ar/alpha/a-04.ogg +share/apps/klettres/ar/alpha/a-05.ogg +share/apps/klettres/ar/alpha/a-06.ogg +share/apps/klettres/ar/alpha/a-07.ogg +share/apps/klettres/ar/alpha/a-08.ogg +share/apps/klettres/ar/alpha/a-09.ogg +share/apps/klettres/ar/alpha/a-10.ogg +share/apps/klettres/ar/alpha/a-11.ogg +share/apps/klettres/ar/alpha/a-12.ogg +share/apps/klettres/ar/alpha/a-13.ogg +share/apps/klettres/ar/alpha/a-14.ogg +share/apps/klettres/ar/alpha/a-15.ogg +share/apps/klettres/ar/alpha/a-16.ogg +share/apps/klettres/ar/alpha/a-17.ogg +share/apps/klettres/ar/alpha/a-18.ogg +share/apps/klettres/ar/alpha/a-19.ogg +share/apps/klettres/ar/alpha/a-20.ogg +share/apps/klettres/ar/alpha/a-21.ogg +share/apps/klettres/ar/alpha/a-22.ogg +share/apps/klettres/ar/alpha/a-23.ogg +share/apps/klettres/ar/alpha/a-24.ogg +share/apps/klettres/ar/alpha/a-25.ogg +share/apps/klettres/ar/alpha/a-26.ogg +share/apps/klettres/ar/alpha/a-27.ogg +share/apps/klettres/ar/alpha/a-28.ogg +share/apps/klettres/ar/sounds.xml share/locale/ar/LC_MESSAGES/akregator.mo -share/locale/ar/LC_MESSAGES/akregator_konqplugin.mo -share/locale/ar/LC_MESSAGES/alsaplayerui.mo share/locale/ar/LC_MESSAGES/amor.mo -share/locale/ar/LC_MESSAGES/appletproxy.mo share/locale/ar/LC_MESSAGES/ark.mo -share/locale/ar/LC_MESSAGES/ark_plugin.mo -share/locale/ar/LC_MESSAGES/artsbuilder.mo -share/locale/ar/LC_MESSAGES/artscontrol.mo -share/locale/ar/LC_MESSAGES/artsmodules.mo -share/locale/ar/LC_MESSAGES/atlantik.mo -share/locale/ar/LC_MESSAGES/atlantikdesigner.mo share/locale/ar/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ar/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ar/LC_MESSAGES/audiorename_plugin.mo -share/locale/ar/LC_MESSAGES/autorefresh.mo -share/locale/ar/LC_MESSAGES/babelfish.mo share/locale/ar/LC_MESSAGES/blinken.mo +share/locale/ar/LC_MESSAGES/bovo.mo share/locale/ar/LC_MESSAGES/cervisia.mo -share/locale/ar/LC_MESSAGES/charlatanui.mo -share/locale/ar/LC_MESSAGES/clockapplet.mo -share/locale/ar/LC_MESSAGES/crashesplugin.mo -share/locale/ar/LC_MESSAGES/cupsdconf.mo share/locale/ar/LC_MESSAGES/cvsservice.mo -share/locale/ar/LC_MESSAGES/dcoprss.mo -share/locale/ar/LC_MESSAGES/dirfilterplugin.mo share/locale/ar/LC_MESSAGES/display.mo -share/locale/ar/LC_MESSAGES/dockbarextension.mo -share/locale/ar/LC_MESSAGES/domtreeviewer.mo +share/locale/ar/LC_MESSAGES/dolphin.mo +share/locale/ar/LC_MESSAGES/dragonplayer.mo share/locale/ar/LC_MESSAGES/drkonqi.mo -share/locale/ar/LC_MESSAGES/dub.mo -share/locale/ar/LC_MESSAGES/extensionproxy.mo -share/locale/ar/LC_MESSAGES/ffrs.mo share/locale/ar/LC_MESSAGES/filetypes.mo -share/locale/ar/LC_MESSAGES/fsview.mo +share/locale/ar/LC_MESSAGES/gwenview.mo share/locale/ar/LC_MESSAGES/htmlsearch.mo share/locale/ar/LC_MESSAGES/imagerename_plugin.mo -share/locale/ar/LC_MESSAGES/imgalleryplugin.mo -share/locale/ar/LC_MESSAGES/irkick.mo share/locale/ar/LC_MESSAGES/joystick.mo share/locale/ar/LC_MESSAGES/juk.mo -share/locale/ar/LC_MESSAGES/kabc2mutt.mo +share/locale/ar/LC_MESSAGES/kabc.mo share/locale/ar/LC_MESSAGES/kabc_dir.mo share/locale/ar/LC_MESSAGES/kabc_file.mo share/locale/ar/LC_MESSAGES/kabc_ldapkio.mo share/locale/ar/LC_MESSAGES/kabc_net.mo share/locale/ar/LC_MESSAGES/kabc_slox.mo -share/locale/ar/LC_MESSAGES/kabc_sql.mo +share/locale/ar/LC_MESSAGES/kabcakonadi.mo +share/locale/ar/LC_MESSAGES/kabcclient.mo share/locale/ar/LC_MESSAGES/kabcformat_binary.mo -share/locale/ar/LC_MESSAGES/kaboodle.mo share/locale/ar/LC_MESSAGES/kaccess.mo share/locale/ar/LC_MESSAGES/kaddressbook.mo share/locale/ar/LC_MESSAGES/kalarm.mo +share/locale/ar/LC_MESSAGES/kalgebra.mo share/locale/ar/LC_MESSAGES/kalzium.mo +share/locale/ar/LC_MESSAGES/kalzium_qt.mo share/locale/ar/LC_MESSAGES/kanagram.mo -share/locale/ar/LC_MESSAGES/kandy.mo share/locale/ar/LC_MESSAGES/kappfinder.mo -share/locale/ar/LC_MESSAGES/karm.mo -share/locale/ar/LC_MESSAGES/kasbarextension.mo -share/locale/ar/LC_MESSAGES/kasteroids.mo share/locale/ar/LC_MESSAGES/kate.mo -share/locale/ar/LC_MESSAGES/katecppsymbolviewer.mo +share/locale/ar/LC_MESSAGES/kateexternaltoolsplugin.mo +share/locale/ar/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ar/LC_MESSAGES/katefiletemplates.mo -share/locale/ar/LC_MESSAGES/katefll_initplugin.mo -share/locale/ar/LC_MESSAGES/katefll_plugin.mo +share/locale/ar/LC_MESSAGES/katefindinfilesplugin.mo share/locale/ar/LC_MESSAGES/katehelloworld.mo share/locale/ar/LC_MESSAGES/katehtmltools.mo share/locale/ar/LC_MESSAGES/kateinsertcommand.mo share/locale/ar/LC_MESSAGES/katekjswrapper.mo -share/locale/ar/LC_MESSAGES/katemake.mo -share/locale/ar/LC_MESSAGES/katemodeline.mo +share/locale/ar/LC_MESSAGES/katekonsoleplugin.mo +share/locale/ar/LC_MESSAGES/katemailfilesplugin.mo share/locale/ar/LC_MESSAGES/kateopenheader.mo -share/locale/ar/LC_MESSAGES/katepart.mo +share/locale/ar/LC_MESSAGES/katepart4.mo share/locale/ar/LC_MESSAGES/katepybrowse.mo +share/locale/ar/LC_MESSAGES/katequickdocumentswitcherplugin.mo share/locale/ar/LC_MESSAGES/katesnippets.mo +share/locale/ar/LC_MESSAGES/katesymbolviewer.mo share/locale/ar/LC_MESSAGES/katetabbarextension.mo share/locale/ar/LC_MESSAGES/katetextfilter.mo share/locale/ar/LC_MESSAGES/katexmlcheck.mo share/locale/ar/LC_MESSAGES/katexmltools.mo share/locale/ar/LC_MESSAGES/katomic.mo -share/locale/ar/LC_MESSAGES/kaudiocreator.mo -share/locale/ar/LC_MESSAGES/kay.mo -share/locale/ar/LC_MESSAGES/kbabel.mo -share/locale/ar/LC_MESSAGES/kbackgammon.mo share/locale/ar/LC_MESSAGES/kbattleship.mo -share/locale/ar/LC_MESSAGES/kbinaryclock.mo share/locale/ar/LC_MESSAGES/kblackbox.mo +share/locale/ar/LC_MESSAGES/kblankscrn.mo share/locale/ar/LC_MESSAGES/kbounce.mo share/locale/ar/LC_MESSAGES/kbruch.mo -share/locale/ar/LC_MESSAGES/kbstateapplet.mo share/locale/ar/LC_MESSAGES/kbugbuster.mo share/locale/ar/LC_MESSAGES/kcachegrind.mo share/locale/ar/LC_MESSAGES/kcalc.mo +share/locale/ar/LC_MESSAGES/kcertpart.mo share/locale/ar/LC_MESSAGES/kcharselect.mo -share/locale/ar/LC_MESSAGES/kcharselectapplet.mo +share/locale/ar/LC_MESSAGES/kcm_autostart.mo +share/locale/ar/LC_MESSAGES/kcm_desktopthemedetails.mo +share/locale/ar/LC_MESSAGES/kcm_emoticons.mo share/locale/ar/LC_MESSAGES/kcm_krfb.mo -share/locale/ar/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/ar/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/ar/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/ar/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo +share/locale/ar/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ar/LC_MESSAGES/kcm_memory.mo +share/locale/ar/LC_MESSAGES/kcm_partition.mo +share/locale/ar/LC_MESSAGES/kcm_pci.mo +share/locale/ar/LC_MESSAGES/kcm_phonon.mo +share/locale/ar/LC_MESSAGES/kcm_phononxine.mo +share/locale/ar/LC_MESSAGES/kcm_solid.mo +share/locale/ar/LC_MESSAGES/kcm_standard_actions.mo share/locale/ar/LC_MESSAGES/kcmaccess.mo -share/locale/ar/LC_MESSAGES/kcmaccessibility.mo -share/locale/ar/LC_MESSAGES/kcmarts.mo share/locale/ar/LC_MESSAGES/kcmaudiocd.mo share/locale/ar/LC_MESSAGES/kcmbackground.mo share/locale/ar/LC_MESSAGES/kcmbell.mo @@ -115,6 +123,7 @@ share/locale/ar/LC_MESSAGES/kcmfonts.mo share/locale/ar/LC_MESSAGES/kcmhtmlsearch.mo share/locale/ar/LC_MESSAGES/kcmicons.mo share/locale/ar/LC_MESSAGES/kcminfo.mo +share/locale/ar/LC_MESSAGES/kcminit.mo share/locale/ar/LC_MESSAGES/kcminput.mo share/locale/ar/LC_MESSAGES/kcmioslaveinfo.mo share/locale/ar/LC_MESSAGES/kcmkabconfig.mo @@ -122,202 +131,141 @@ share/locale/ar/LC_MESSAGES/kcmkamera.mo share/locale/ar/LC_MESSAGES/kcmkclock.mo share/locale/ar/LC_MESSAGES/kcmkded.mo share/locale/ar/LC_MESSAGES/kcmkdnssd.mo +share/locale/ar/LC_MESSAGES/kcmkeyboard.mo share/locale/ar/LC_MESSAGES/kcmkeys.mo -share/locale/ar/LC_MESSAGES/kcmkicker.mo +share/locale/ar/LC_MESSAGES/kcmkgamma.mo share/locale/ar/LC_MESSAGES/kcmkio.mo share/locale/ar/LC_MESSAGES/kcmkonq.mo share/locale/ar/LC_MESSAGES/kcmkonqhtml.mo -share/locale/ar/LC_MESSAGES/kcmkonsole.mo -share/locale/ar/LC_MESSAGES/kcmkontactnt.mo -share/locale/ar/LC_MESSAGES/kcmktalkd.mo -share/locale/ar/LC_MESSAGES/kcmkuick.mo share/locale/ar/LC_MESSAGES/kcmkurifilt.mo -share/locale/ar/LC_MESSAGES/kcmkvaio.mo share/locale/ar/LC_MESSAGES/kcmkwallet.mo +share/locale/ar/LC_MESSAGES/kcmkwincompositing.mo share/locale/ar/LC_MESSAGES/kcmkwindecoration.mo share/locale/ar/LC_MESSAGES/kcmkwinrules.mo share/locale/ar/LC_MESSAGES/kcmkwm.mo -share/locale/ar/LC_MESSAGES/kcmlanbrowser.mo -share/locale/ar/LC_MESSAGES/kcmlaptop.mo share/locale/ar/LC_MESSAGES/kcmlaunch.mo -share/locale/ar/LC_MESSAGES/kcmlayout.mo share/locale/ar/LC_MESSAGES/kcmlilo.mo -share/locale/ar/LC_MESSAGES/kcmlirc.mo share/locale/ar/LC_MESSAGES/kcmlocale.mo -share/locale/ar/LC_MESSAGES/kcmmedia.mo share/locale/ar/LC_MESSAGES/kcmnic.mo share/locale/ar/LC_MESSAGES/kcmnotify.mo +share/locale/ar/LC_MESSAGES/kcmopengl.mo share/locale/ar/LC_MESSAGES/kcmperformance.mo -share/locale/ar/LC_MESSAGES/kcmprintmgr.mo share/locale/ar/LC_MESSAGES/kcmsamba.mo share/locale/ar/LC_MESSAGES/kcmscreensaver.mo share/locale/ar/LC_MESSAGES/kcmshell.mo share/locale/ar/LC_MESSAGES/kcmsmartcard.mo share/locale/ar/LC_MESSAGES/kcmsmserver.mo -share/locale/ar/LC_MESSAGES/kcmspellchecking.mo +share/locale/ar/LC_MESSAGES/kcmsolidproc.mo share/locale/ar/LC_MESSAGES/kcmstyle.mo -share/locale/ar/LC_MESSAGES/kcmtaskbar.mo -share/locale/ar/LC_MESSAGES/kcmthinkpad.mo share/locale/ar/LC_MESSAGES/kcmusb.mo share/locale/ar/LC_MESSAGES/kcmview1394.mo -share/locale/ar/LC_MESSAGES/kcmwifi.mo share/locale/ar/LC_MESSAGES/kcmxinerama.mo -share/locale/ar/LC_MESSAGES/kcoloredit.mo -share/locale/ar/LC_MESSAGES/kcontrol.mo +share/locale/ar/LC_MESSAGES/kcolorchooser.mo share/locale/ar/LC_MESSAGES/kcron.mo share/locale/ar/LC_MESSAGES/kdat.mo -share/locale/ar/LC_MESSAGES/kdcop.mo +share/locale/ar/LC_MESSAGES/kde-menu.mo share/locale/ar/LC_MESSAGES/kdebugdialog.mo -share/locale/ar/LC_MESSAGES/kdelibs.mo -share/locale/ar/LC_MESSAGES/kdelibs_colors.mo -share/locale/ar/LC_MESSAGES/kdelirc.mo +share/locale/ar/LC_MESSAGES/kded_phononserver.mo +share/locale/ar/LC_MESSAGES/kdelibs4.mo +share/locale/ar/LC_MESSAGES/kdelibs_colors4.mo share/locale/ar/LC_MESSAGES/kdepasswd.mo share/locale/ar/LC_MESSAGES/kdepimresources.mo share/locale/ar/LC_MESSAGES/kdepimwizards.mo -share/locale/ar/LC_MESSAGES/kdeprint.mo -share/locale/ar/LC_MESSAGES/kdeprint_part.mo -share/locale/ar/LC_MESSAGES/kdeprintfax.mo -share/locale/ar/LC_MESSAGES/kdesktop.mo +share/locale/ar/LC_MESSAGES/kdeqt.mo share/locale/ar/LC_MESSAGES/kdessh.mo share/locale/ar/LC_MESSAGES/kdesu.mo share/locale/ar/LC_MESSAGES/kdesud.mo -share/locale/ar/LC_MESSAGES/kdevdesigner.mo -share/locale/ar/LC_MESSAGES/kdevelop.mo -share/locale/ar/LC_MESSAGES/kdevtipofday.mo share/locale/ar/LC_MESSAGES/kdf.mo -share/locale/ar/LC_MESSAGES/kdgantt.mo +share/locale/ar/LC_MESSAGES/kdgantt1.mo share/locale/ar/LC_MESSAGES/kdialog.mo -share/locale/ar/LC_MESSAGES/kdict.mo -share/locale/ar/LC_MESSAGES/kdictapplet.mo -share/locale/ar/LC_MESSAGES/kdjview.mo share/locale/ar/LC_MESSAGES/kdmconfig.mo share/locale/ar/LC_MESSAGES/kdmgreet.mo -share/locale/ar/LC_MESSAGES/kdvi.mo -share/locale/ar/LC_MESSAGES/kedit.mo -share/locale/ar/LC_MESSAGES/keduca.mo -share/locale/ar/LC_MESSAGES/kenolaba.mo -share/locale/ar/LC_MESSAGES/kfax.mo -share/locale/ar/LC_MESSAGES/kfaxview.mo -share/locale/ar/LC_MESSAGES/kfifteenapplet.mo -share/locale/ar/LC_MESSAGES/kfile_au.mo +share/locale/ar/LC_MESSAGES/keditbookmarks.mo +share/locale/ar/LC_MESSAGES/kfile.mo share/locale/ar/LC_MESSAGES/kfile_avi.mo -share/locale/ar/LC_MESSAGES/kfile_bmp.mo -share/locale/ar/LC_MESSAGES/kfile_cert.mo -share/locale/ar/LC_MESSAGES/kfile_cpp.mo share/locale/ar/LC_MESSAGES/kfile_dds.mo -share/locale/ar/LC_MESSAGES/kfile_deb.mo -share/locale/ar/LC_MESSAGES/kfile_desktop.mo -share/locale/ar/LC_MESSAGES/kfile_diff.mo share/locale/ar/LC_MESSAGES/kfile_drgeo.mo share/locale/ar/LC_MESSAGES/kfile_dvi.mo share/locale/ar/LC_MESSAGES/kfile_exr.mo share/locale/ar/LC_MESSAGES/kfile_flac.mo -share/locale/ar/LC_MESSAGES/kfile_folder.mo -share/locale/ar/LC_MESSAGES/kfile_gif.mo -share/locale/ar/LC_MESSAGES/kfile_html.mo -share/locale/ar/LC_MESSAGES/kfile_ico.mo -share/locale/ar/LC_MESSAGES/kfile_ics.mo -share/locale/ar/LC_MESSAGES/kfile_jpeg.mo share/locale/ar/LC_MESSAGES/kfile_kig.mo -share/locale/ar/LC_MESSAGES/kfile_lnk.mo -share/locale/ar/LC_MESSAGES/kfile_m3u.mo -share/locale/ar/LC_MESSAGES/kfile_mhtml.mo share/locale/ar/LC_MESSAGES/kfile_mp3.mo share/locale/ar/LC_MESSAGES/kfile_mpc.mo -share/locale/ar/LC_MESSAGES/kfile_mpeg.mo share/locale/ar/LC_MESSAGES/kfile_ogg.mo -share/locale/ar/LC_MESSAGES/kfile_palm.mo -share/locale/ar/LC_MESSAGES/kfile_pcx.mo -share/locale/ar/LC_MESSAGES/kfile_pdf.mo -share/locale/ar/LC_MESSAGES/kfile_png.mo share/locale/ar/LC_MESSAGES/kfile_pnm.mo -share/locale/ar/LC_MESSAGES/kfile_po.mo -share/locale/ar/LC_MESSAGES/kfile_ps.mo -share/locale/ar/LC_MESSAGES/kfile_rfc822.mo +share/locale/ar/LC_MESSAGES/kfile_raw.mo share/locale/ar/LC_MESSAGES/kfile_rgb.mo share/locale/ar/LC_MESSAGES/kfile_rpm.mo share/locale/ar/LC_MESSAGES/kfile_sid.mo -share/locale/ar/LC_MESSAGES/kfile_tga.mo share/locale/ar/LC_MESSAGES/kfile_theora.mo share/locale/ar/LC_MESSAGES/kfile_tiff.mo share/locale/ar/LC_MESSAGES/kfile_torrent.mo -share/locale/ar/LC_MESSAGES/kfile_ts.mo -share/locale/ar/LC_MESSAGES/kfile_txt.mo -share/locale/ar/LC_MESSAGES/kfile_vcf.mo share/locale/ar/LC_MESSAGES/kfile_wav.mo -share/locale/ar/LC_MESSAGES/kfile_xbm.mo -share/locale/ar/LC_MESSAGES/kfile_xpm.mo -share/locale/ar/LC_MESSAGES/kfileaudiopreview.mo +share/locale/ar/LC_MESSAGES/kfile_xps.mo +share/locale/ar/LC_MESSAGES/kfileaudiopreview4.mo +share/locale/ar/LC_MESSAGES/kfilereplace.mo share/locale/ar/LC_MESSAGES/kfileshare.mo share/locale/ar/LC_MESSAGES/kfindpart.mo share/locale/ar/LC_MESSAGES/kfloppy.mo share/locale/ar/LC_MESSAGES/kfmclient.mo share/locale/ar/LC_MESSAGES/kfontinst.mo -share/locale/ar/LC_MESSAGES/kfouleggs.mo -share/locale/ar/LC_MESSAGES/kgamma.mo -share/locale/ar/LC_MESSAGES/kgantt.mo +share/locale/ar/LC_MESSAGES/kfourinline.mo share/locale/ar/LC_MESSAGES/kgeography.mo share/locale/ar/LC_MESSAGES/kget.mo -share/locale/ar/LC_MESSAGES/kghostview.mo share/locale/ar/LC_MESSAGES/kgoldrunner.mo share/locale/ar/LC_MESSAGES/kgpg.mo share/locale/ar/LC_MESSAGES/kgreet_classic.mo +share/locale/ar/LC_MESSAGES/kgreet_generic.mo share/locale/ar/LC_MESSAGES/kgreet_winbind.mo share/locale/ar/LC_MESSAGES/khangman.mo share/locale/ar/LC_MESSAGES/khelpcenter.mo -share/locale/ar/LC_MESSAGES/khexedit.mo -share/locale/ar/LC_MESSAGES/khexedit2part.mo share/locale/ar/LC_MESSAGES/khotkeys.mo +share/locale/ar/LC_MESSAGES/khotnewstuff.mo share/locale/ar/LC_MESSAGES/khtmlkttsd.mo -share/locale/ar/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/ar/LC_MESSAGES/kicker.mo -share/locale/ar/LC_MESSAGES/kickermenu_kate.mo -share/locale/ar/LC_MESSAGES/kiconedit.mo +share/locale/ar/LC_MESSAGES/kiconfinder.mo share/locale/ar/LC_MESSAGES/kig.mo +share/locale/ar/LC_MESSAGES/kimagemapeditor.mo share/locale/ar/LC_MESSAGES/kinetd.mo -share/locale/ar/LC_MESSAGES/kio.mo +share/locale/ar/LC_MESSAGES/kinfocenter.mo +share/locale/ar/LC_MESSAGES/kio4.mo +share/locale/ar/LC_MESSAGES/kio_applications.mo +share/locale/ar/LC_MESSAGES/kio_archive.mo share/locale/ar/LC_MESSAGES/kio_audiocd.mo +share/locale/ar/LC_MESSAGES/kio_bookmarks.mo share/locale/ar/LC_MESSAGES/kio_finger.mo share/locale/ar/LC_MESSAGES/kio_fish.mo share/locale/ar/LC_MESSAGES/kio_floppy.mo share/locale/ar/LC_MESSAGES/kio_groupwise.mo -share/locale/ar/LC_MESSAGES/kio_help.mo -share/locale/ar/LC_MESSAGES/kio_home.mo +share/locale/ar/LC_MESSAGES/kio_help4.mo share/locale/ar/LC_MESSAGES/kio_imap4.mo share/locale/ar/LC_MESSAGES/kio_jabberdisco.mo -share/locale/ar/LC_MESSAGES/kio_lan.mo share/locale/ar/LC_MESSAGES/kio_ldap.mo -share/locale/ar/LC_MESSAGES/kio_mac.mo share/locale/ar/LC_MESSAGES/kio_man.mo -share/locale/ar/LC_MESSAGES/kio_media.mo -share/locale/ar/LC_MESSAGES/kio_mobile.mo +share/locale/ar/LC_MESSAGES/kio_mbox.mo +share/locale/ar/LC_MESSAGES/kio_nepomuksearch.mo share/locale/ar/LC_MESSAGES/kio_nfs.mo share/locale/ar/LC_MESSAGES/kio_nntp.mo share/locale/ar/LC_MESSAGES/kio_pop3.mo -share/locale/ar/LC_MESSAGES/kio_print.mo share/locale/ar/LC_MESSAGES/kio_remote.mo -share/locale/ar/LC_MESSAGES/kio_settings.mo share/locale/ar/LC_MESSAGES/kio_sftp.mo share/locale/ar/LC_MESSAGES/kio_sieve.mo share/locale/ar/LC_MESSAGES/kio_smb.mo share/locale/ar/LC_MESSAGES/kio_smtp.mo share/locale/ar/LC_MESSAGES/kio_svn.mo -share/locale/ar/LC_MESSAGES/kio_system.mo -share/locale/ar/LC_MESSAGES/kio_tar.mo share/locale/ar/LC_MESSAGES/kio_thumbnail.mo share/locale/ar/LC_MESSAGES/kio_trash.mo share/locale/ar/LC_MESSAGES/kio_zeroconf.mo +share/locale/ar/LC_MESSAGES/kioclient.mo share/locale/ar/LC_MESSAGES/kioexec.mo +share/locale/ar/LC_MESSAGES/kiriki.mo +share/locale/ar/LC_MESSAGES/kitchensync.mo share/locale/ar/LC_MESSAGES/kiten.mo -share/locale/ar/LC_MESSAGES/kjobviewer.mo share/locale/ar/LC_MESSAGES/kjots.mo share/locale/ar/LC_MESSAGES/kjumpingcube.mo -share/locale/ar/LC_MESSAGES/klaptopdaemon.mo -share/locale/ar/LC_MESSAGES/klatin.mo share/locale/ar/LC_MESSAGES/kleopatra.mo share/locale/ar/LC_MESSAGES/klettres.mo -share/locale/ar/LC_MESSAGES/klickety.mo share/locale/ar/LC_MESSAGES/klines.mo +share/locale/ar/LC_MESSAGES/klinkstatus.mo share/locale/ar/LC_MESSAGES/klipper.mo share/locale/ar/LC_MESSAGES/klock.mo share/locale/ar/LC_MESSAGES/kmag.mo @@ -325,76 +273,51 @@ share/locale/ar/LC_MESSAGES/kmahjongg.mo share/locale/ar/LC_MESSAGES/kmail.mo share/locale/ar/LC_MESSAGES/kmail_text_calendar_plugin.mo share/locale/ar/LC_MESSAGES/kmail_text_vcard_plugin.mo +share/locale/ar/LC_MESSAGES/kmail_text_xdiff_plugin.mo share/locale/ar/LC_MESSAGES/kmailcvt.mo -share/locale/ar/LC_MESSAGES/kmathapplet.mo -share/locale/ar/LC_MESSAGES/kmcop.mo -share/locale/ar/LC_MESSAGES/kmenuapplet.mo share/locale/ar/LC_MESSAGES/kmenuedit.mo -share/locale/ar/LC_MESSAGES/kmid.mo -share/locale/ar/LC_MESSAGES/kmilo_delli8k.mo -share/locale/ar/LC_MESSAGES/kmilo_generic.mo -share/locale/ar/LC_MESSAGES/kmilo_kvaio.mo -share/locale/ar/LC_MESSAGES/kmilo_powerbook.mo -share/locale/ar/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/ar/LC_MESSAGES/kmilod.mo +share/locale/ar/LC_MESSAGES/kmimetypefinder.mo share/locale/ar/LC_MESSAGES/kmines.mo -share/locale/ar/LC_MESSAGES/kminipagerapplet.mo share/locale/ar/LC_MESSAGES/kmix.mo -share/locale/ar/LC_MESSAGES/kmobile.mo -share/locale/ar/LC_MESSAGES/kmoon.mo +share/locale/ar/LC_MESSAGES/kmobiletools.mo +share/locale/ar/LC_MESSAGES/kmobiletools_at_engine.mo share/locale/ar/LC_MESSAGES/kmousetool.mo share/locale/ar/LC_MESSAGES/kmouth.mo share/locale/ar/LC_MESSAGES/kmplot.mo -share/locale/ar/LC_MESSAGES/kmrml.mo share/locale/ar/LC_MESSAGES/knetattach.mo share/locale/ar/LC_MESSAGES/knetwalk.mo -share/locale/ar/LC_MESSAGES/knetworkconf.mo -share/locale/ar/LC_MESSAGES/knewsticker.mo +share/locale/ar/LC_MESSAGES/knetworkconfmodule.mo share/locale/ar/LC_MESSAGES/knode.mo share/locale/ar/LC_MESSAGES/knotes.mo -share/locale/ar/LC_MESSAGES/knotify.mo -share/locale/ar/LC_MESSAGES/kodo.mo +share/locale/ar/LC_MESSAGES/knotify4.mo +share/locale/ar/LC_MESSAGES/kode.mo share/locale/ar/LC_MESSAGES/kolf.mo share/locale/ar/LC_MESSAGES/kolourpaint.mo -share/locale/ar/LC_MESSAGES/kolourpicker.mo +share/locale/ar/LC_MESSAGES/kommander.mo share/locale/ar/LC_MESSAGES/kompare.mo -share/locale/ar/LC_MESSAGES/konqsidebar_delicious.mo -share/locale/ar/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/ar/LC_MESSAGES/konqsidebar_metabar.mo -share/locale/ar/LC_MESSAGES/konqsidebar_news.mo share/locale/ar/LC_MESSAGES/konqueror.mo share/locale/ar/LC_MESSAGES/konquest.mo share/locale/ar/LC_MESSAGES/konsole.mo share/locale/ar/LC_MESSAGES/konsolekalendar.mo share/locale/ar/LC_MESSAGES/kontact.mo -share/locale/ar/LC_MESSAGES/kooka.mo share/locale/ar/LC_MESSAGES/kopete.mo share/locale/ar/LC_MESSAGES/korganizer.mo share/locale/ar/LC_MESSAGES/korn.mo share/locale/ar/LC_MESSAGES/kpackage.mo -share/locale/ar/LC_MESSAGES/kpager.mo share/locale/ar/LC_MESSAGES/kpartsaver.mo +share/locale/ar/LC_MESSAGES/kpasswdserver.mo share/locale/ar/LC_MESSAGES/kpat.mo -share/locale/ar/LC_MESSAGES/kpdf.mo -share/locale/ar/LC_MESSAGES/kpercentage.mo -share/locale/ar/LC_MESSAGES/kpersonalizer.mo -share/locale/ar/LC_MESSAGES/kpf.mo share/locale/ar/LC_MESSAGES/kpilot.mo -share/locale/ar/LC_MESSAGES/kpoker.mo -share/locale/ar/LC_MESSAGES/kpovmodeler.mo share/locale/ar/LC_MESSAGES/kppp.mo share/locale/ar/LC_MESSAGES/kppplogview.mo -share/locale/ar/LC_MESSAGES/kprinter.mo +share/locale/ar/LC_MESSAGES/kquitapp.mo share/locale/ar/LC_MESSAGES/krandr.mo share/locale/ar/LC_MESSAGES/krdb.mo share/locale/ar/LC_MESSAGES/krdc.mo share/locale/ar/LC_MESSAGES/kreadconfig.mo -share/locale/ar/LC_MESSAGES/krec.mo -share/locale/ar/LC_MESSAGES/kregexpeditor.mo share/locale/ar/LC_MESSAGES/kres_birthday.mo -share/locale/ar/LC_MESSAGES/kres_blogging.mo +share/locale/ar/LC_MESSAGES/kres_blog.mo share/locale/ar/LC_MESSAGES/kres_bugzilla.mo -share/locale/ar/LC_MESSAGES/kres_exchange.mo share/locale/ar/LC_MESSAGES/kres_featureplan.mo share/locale/ar/LC_MESSAGES/kres_groupware.mo share/locale/ar/LC_MESSAGES/kres_groupwise.mo @@ -405,145 +328,214 @@ share/locale/ar/LC_MESSAGES/kres_xmlrpc.mo share/locale/ar/LC_MESSAGES/kreversi.mo share/locale/ar/LC_MESSAGES/krfb.mo share/locale/ar/LC_MESSAGES/kruler.mo -share/locale/ar/LC_MESSAGES/krunapplet.mo +share/locale/ar/LC_MESSAGES/krunner.mo share/locale/ar/LC_MESSAGES/ksame.mo +share/locale/ar/LC_MESSAGES/ksaneplugin.mo share/locale/ar/LC_MESSAGES/ksayit.mo share/locale/ar/LC_MESSAGES/kscd.mo share/locale/ar/LC_MESSAGES/kscreensaver.mo share/locale/ar/LC_MESSAGES/kshisen.mo -share/locale/ar/LC_MESSAGES/ksig.mo -share/locale/ar/LC_MESSAGES/ksim.mo -share/locale/ar/LC_MESSAGES/ksirc.mo -share/locale/ar/LC_MESSAGES/ksirtet.mo -share/locale/ar/LC_MESSAGES/ksmiletris.mo +share/locale/ar/LC_MESSAGES/kshorturifilter.mo +share/locale/ar/LC_MESSAGES/ksirk.mo share/locale/ar/LC_MESSAGES/ksmserver.mo -share/locale/ar/LC_MESSAGES/ksnake.mo share/locale/ar/LC_MESSAGES/ksnapshot.mo -share/locale/ar/LC_MESSAGES/ksokoban.mo share/locale/ar/LC_MESSAGES/kspaceduel.mo -share/locale/ar/LC_MESSAGES/ksplash.mo share/locale/ar/LC_MESSAGES/ksplashthemes.mo +share/locale/ar/LC_MESSAGES/ksquares.mo share/locale/ar/LC_MESSAGES/kstars.mo share/locale/ar/LC_MESSAGES/kstart.mo share/locale/ar/LC_MESSAGES/kstartperf.mo -share/locale/ar/LC_MESSAGES/kstyle_highcontrast_config.mo +share/locale/ar/LC_MESSAGES/kstyle_config.mo share/locale/ar/LC_MESSAGES/kstyle_keramik_config.mo share/locale/ar/LC_MESSAGES/kstyle_phase_config.mo -share/locale/ar/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/ar/LC_MESSAGES/ksvgplugin.mo +share/locale/ar/LC_MESSAGES/ksudoku.mo share/locale/ar/LC_MESSAGES/ksysguard.mo -share/locale/ar/LC_MESSAGES/ksystemtrayapplet.mo +share/locale/ar/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/ar/LC_MESSAGES/ksystemlog.mo share/locale/ar/LC_MESSAGES/ksystraycmd.mo share/locale/ar/LC_MESSAGES/ksysv.mo share/locale/ar/LC_MESSAGES/kteatime.mo -share/locale/ar/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/ar/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/ar/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/ar/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/ar/LC_MESSAGES/ktexteditor_kdatatool.mo +share/locale/ar/LC_MESSAGES/ktexteditor_plugins.mo +share/locale/ar/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/ar/LC_MESSAGES/kthememanager.mo -share/locale/ar/LC_MESSAGES/ktimemon.mo share/locale/ar/LC_MESSAGES/ktimer.mo -share/locale/ar/LC_MESSAGES/ktip.mo -share/locale/ar/LC_MESSAGES/ktnef.mo +share/locale/ar/LC_MESSAGES/ktimetracker.mo share/locale/ar/LC_MESSAGES/ktouch.mo -share/locale/ar/LC_MESSAGES/ktron.mo +share/locale/ar/LC_MESSAGES/ktraderclient.mo share/locale/ar/LC_MESSAGES/kttsd.mo share/locale/ar/LC_MESSAGES/ktuberling.mo share/locale/ar/LC_MESSAGES/kturtle.mo share/locale/ar/LC_MESSAGES/ktux.mo -share/locale/ar/LC_MESSAGES/kuick_plugin.mo -share/locale/ar/LC_MESSAGES/kuickshow.mo +share/locale/ar/LC_MESSAGES/kuiserver.mo share/locale/ar/LC_MESSAGES/kuiviewer.mo +share/locale/ar/LC_MESSAGES/kurifilter.mo share/locale/ar/LC_MESSAGES/kuser.mo -share/locale/ar/LC_MESSAGES/kverbos.mo -share/locale/ar/LC_MESSAGES/kview.mo -share/locale/ar/LC_MESSAGES/kview_scale.mo -share/locale/ar/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/ar/LC_MESSAGES/kviewcanvas.mo -share/locale/ar/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/ar/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/ar/LC_MESSAGES/kviewscannerplugin.mo -share/locale/ar/LC_MESSAGES/kviewshell.mo -share/locale/ar/LC_MESSAGES/kviewviewer.mo -share/locale/ar/LC_MESSAGES/kvoctrain.mo +share/locale/ar/LC_MESSAGES/kwalletd.mo share/locale/ar/LC_MESSAGES/kwalletmanager.mo share/locale/ar/LC_MESSAGES/kwatchgnupg.mo share/locale/ar/LC_MESSAGES/kweather.mo -share/locale/ar/LC_MESSAGES/kwifimanager.mo share/locale/ar/LC_MESSAGES/kwin.mo -share/locale/ar/LC_MESSAGES/kwin4.mo share/locale/ar/LC_MESSAGES/kwin_art_clients.mo share/locale/ar/LC_MESSAGES/kwin_clients.mo +share/locale/ar/LC_MESSAGES/kwin_effects.mo share/locale/ar/LC_MESSAGES/kwin_lib.mo -share/locale/ar/LC_MESSAGES/kwireless.mo +share/locale/ar/LC_MESSAGES/kwinstartmenu.mo share/locale/ar/LC_MESSAGES/kwordquiz.mo -share/locale/ar/LC_MESSAGES/kworldclock.mo +share/locale/ar/LC_MESSAGES/kwrite.mo share/locale/ar/LC_MESSAGES/kwriteconfig.mo +share/locale/ar/LC_MESSAGES/kxforms.mo share/locale/ar/LC_MESSAGES/kxkb.mo share/locale/ar/LC_MESSAGES/kxsconfig.mo -share/locale/ar/LC_MESSAGES/libKTTSD.mo -share/locale/ar/LC_MESSAGES/libdmctl.mo -share/locale/ar/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/ar/LC_MESSAGES/libkaddrbk_gmx_xxport.mo +share/locale/ar/LC_MESSAGES/kxsldbg.mo +share/locale/ar/LC_MESSAGES/lancelot.mo +share/locale/ar/LC_MESSAGES/libakonadi.mo +share/locale/ar/LC_MESSAGES/libkblog.mo share/locale/ar/LC_MESSAGES/libkcal.mo share/locale/ar/LC_MESSAGES/libkcddb.mo +share/locale/ar/LC_MESSAGES/libkcompactdisc.mo +share/locale/ar/LC_MESSAGES/libkdcraw.mo share/locale/ar/LC_MESSAGES/libkdeedu.mo share/locale/ar/LC_MESSAGES/libkdegames.mo share/locale/ar/LC_MESSAGES/libkdepim.mo -share/locale/ar/LC_MESSAGES/libkfaximgage.mo share/locale/ar/LC_MESSAGES/libkholidays.mo -share/locale/ar/LC_MESSAGES/libkicker.mo -share/locale/ar/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/ar/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/ar/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/ar/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/ar/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/ar/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/ar/LC_MESSAGES/libkickermenu_tom.mo +share/locale/ar/LC_MESSAGES/libkldap.mo share/locale/ar/LC_MESSAGES/libkleopatra.mo +share/locale/ar/LC_MESSAGES/libkmahjongg.mo share/locale/ar/LC_MESSAGES/libkmime.mo share/locale/ar/LC_MESSAGES/libkonq.mo share/locale/ar/LC_MESSAGES/libkpgp.mo -share/locale/ar/LC_MESSAGES/libkpimexchange.mo -share/locale/ar/LC_MESSAGES/libkscan.mo +share/locale/ar/LC_MESSAGES/libkpimidentities.mo +share/locale/ar/LC_MESSAGES/libkpimutils.mo +share/locale/ar/LC_MESSAGES/libkresources.mo +share/locale/ar/LC_MESSAGES/libksane.mo share/locale/ar/LC_MESSAGES/libkscreensaver.mo share/locale/ar/LC_MESSAGES/libksieve.mo -share/locale/ar/LC_MESSAGES/libksirtet.mo -share/locale/ar/LC_MESSAGES/libksync.mo -share/locale/ar/LC_MESSAGES/libtaskbar.mo +share/locale/ar/LC_MESSAGES/libktnef.mo +share/locale/ar/LC_MESSAGES/libkworkspace.mo +share/locale/ar/LC_MESSAGES/libkxmlrpcclient.mo +share/locale/ar/LC_MESSAGES/libmailtransport.mo +share/locale/ar/LC_MESSAGES/liboktetacore.mo +share/locale/ar/LC_MESSAGES/libphonon.mo +share/locale/ar/LC_MESSAGES/libplasma.mo +share/locale/ar/LC_MESSAGES/libplasmaclock.mo share/locale/ar/LC_MESSAGES/libtaskmanager.mo -share/locale/ar/LC_MESSAGES/lockout.mo +share/locale/ar/LC_MESSAGES/lokalize.mo share/locale/ar/LC_MESSAGES/lskat.mo -share/locale/ar/LC_MESSAGES/lyrics.mo -share/locale/ar/LC_MESSAGES/mediaapplet.mo -share/locale/ar/LC_MESSAGES/mediacontrol.mo -share/locale/ar/LC_MESSAGES/mf_konqplugin.mo -share/locale/ar/LC_MESSAGES/minitoolsplugin.mo -share/locale/ar/LC_MESSAGES/naughtyapplet.mo -share/locale/ar/LC_MESSAGES/nexscope.mo -share/locale/ar/LC_MESSAGES/noatun.mo +share/locale/ar/LC_MESSAGES/marble.mo +share/locale/ar/LC_MESSAGES/marble_qt.mo +share/locale/ar/LC_MESSAGES/nepomuk.mo +share/locale/ar/LC_MESSAGES/nepomuksearch.mo share/locale/ar/LC_MESSAGES/nsplugin.mo -share/locale/ar/LC_MESSAGES/pitchablespeed.mo -share/locale/ar/LC_MESSAGES/ppdtranslations.mo -share/locale/ar/LC_MESSAGES/privacy.mo -share/locale/ar/LC_MESSAGES/quicklauncher.mo -share/locale/ar/LC_MESSAGES/rellinks.mo -share/locale/ar/LC_MESSAGES/searchbarplugin.mo -share/locale/ar/LC_MESSAGES/secpolicy.mo +share/locale/ar/LC_MESSAGES/okteta.mo +share/locale/ar/LC_MESSAGES/oktetapart.mo +share/locale/ar/LC_MESSAGES/okular.mo +share/locale/ar/LC_MESSAGES/okular_chm.mo +share/locale/ar/LC_MESSAGES/okular_comicbook.mo +share/locale/ar/LC_MESSAGES/okular_djvu.mo +share/locale/ar/LC_MESSAGES/okular_dvi.mo +share/locale/ar/LC_MESSAGES/okular_epub.mo +share/locale/ar/LC_MESSAGES/okular_fax.mo +share/locale/ar/LC_MESSAGES/okular_fictionbook.mo +share/locale/ar/LC_MESSAGES/okular_ghostview.mo +share/locale/ar/LC_MESSAGES/okular_kimgio.mo +share/locale/ar/LC_MESSAGES/okular_ooo.mo +share/locale/ar/LC_MESSAGES/okular_plucker.mo +share/locale/ar/LC_MESSAGES/okular_poppler.mo +share/locale/ar/LC_MESSAGES/okular_tiff.mo +share/locale/ar/LC_MESSAGES/okular_xps.mo +share/locale/ar/LC_MESSAGES/parley.mo +share/locale/ar/LC_MESSAGES/phonon-xine.mo +share/locale/ar/LC_MESSAGES/phonon_kde.mo +share/locale/ar/LC_MESSAGES/plasma-overlay.mo +share/locale/ar/LC_MESSAGES/plasma-shells-common.mo +share/locale/ar/LC_MESSAGES/plasma.mo +share/locale/ar/LC_MESSAGES/plasma_applet_battery.mo +share/locale/ar/LC_MESSAGES/plasma_applet_bball.mo +share/locale/ar/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/ar/LC_MESSAGES/plasma_applet_bluemarble.mo +share/locale/ar/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/ar/LC_MESSAGES/plasma_applet_charselect.mo +share/locale/ar/LC_MESSAGES/plasma_applet_clock.mo +share/locale/ar/LC_MESSAGES/plasma_applet_comic.mo +share/locale/ar/LC_MESSAGES/plasma_applet_desktop.mo +share/locale/ar/LC_MESSAGES/plasma_applet_devicenotifier.mo +share/locale/ar/LC_MESSAGES/plasma_applet_dict.mo +share/locale/ar/LC_MESSAGES/plasma_applet_dig_clock.mo +share/locale/ar/LC_MESSAGES/plasma_applet_fifteenPuzzle.mo +share/locale/ar/LC_MESSAGES/plasma_applet_fileWatcher.mo +share/locale/ar/LC_MESSAGES/plasma_applet_folderview.mo +share/locale/ar/LC_MESSAGES/plasma_applet_frame.mo +share/locale/ar/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/ar/LC_MESSAGES/plasma_applet_incomingmsg.mo +share/locale/ar/LC_MESSAGES/plasma_applet_kget.mo +share/locale/ar/LC_MESSAGES/plasma_applet_kolourpicker.mo +share/locale/ar/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/ar/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/ar/LC_MESSAGES/plasma_applet_life.mo +share/locale/ar/LC_MESSAGES/plasma_applet_luna.mo +share/locale/ar/LC_MESSAGES/plasma_applet_news.mo +share/locale/ar/LC_MESSAGES/plasma_applet_notes.mo +share/locale/ar/LC_MESSAGES/plasma_applet_nowplaying.mo +share/locale/ar/LC_MESSAGES/plasma_applet_pager.mo +share/locale/ar/LC_MESSAGES/plasma_applet_panel.mo +share/locale/ar/LC_MESSAGES/plasma_applet_paste.mo +share/locale/ar/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/ar/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/ar/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/ar/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/ar/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/ar/LC_MESSAGES/plasma_applet_showdesktop.mo +share/locale/ar/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/ar/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/ar/LC_MESSAGES/plasma_applet_systemtray.mo +share/locale/ar/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/ar/LC_MESSAGES/plasma_applet_timer.mo +share/locale/ar/LC_MESSAGES/plasma_applet_trash.mo +share/locale/ar/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/ar/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/ar/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/ar/LC_MESSAGES/plasma_appletscript_qedje.mo +share/locale/ar/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo +share/locale/ar/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/ar/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ar/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ar/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/ar/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ar/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/ar/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ar/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/ar/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ar/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ar/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ar/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ar/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ar/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ar/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/ar/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/ar/LC_MESSAGES/plasma_wallpaper_image.mo +share/locale/ar/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ar/LC_MESSAGES/plasmapkg.mo +share/locale/ar/LC_MESSAGES/plasmoidviewer.mo +share/locale/ar/LC_MESSAGES/powerdevil.mo +share/locale/ar/LC_MESSAGES/printer-applet.mo +share/locale/ar/LC_MESSAGES/processcore.mo +share/locale/ar/LC_MESSAGES/processui.mo +share/locale/ar/LC_MESSAGES/solid-bluetooth.mo +share/locale/ar/LC_MESSAGES/solid-hardware.mo +share/locale/ar/LC_MESSAGES/solid-network.mo +share/locale/ar/LC_MESSAGES/solid-powermanagement.mo +share/locale/ar/LC_MESSAGES/solidcontrol.mo +share/locale/ar/LC_MESSAGES/soliduiserver.mo share/locale/ar/LC_MESSAGES/spy.mo +share/locale/ar/LC_MESSAGES/strigila_diff.mo share/locale/ar/LC_MESSAGES/superkaramba.mo -share/locale/ar/LC_MESSAGES/synaescope.mo -share/locale/ar/LC_MESSAGES/timezones.mo -share/locale/ar/LC_MESSAGES/tippecanoe.mo -share/locale/ar/LC_MESSAGES/trashapplet.mo -share/locale/ar/LC_MESSAGES/tyler.mo -share/locale/ar/LC_MESSAGES/uachangerplugin.mo +share/locale/ar/LC_MESSAGES/svgpart.mo +share/locale/ar/LC_MESSAGES/sweeper.mo +share/locale/ar/LC_MESSAGES/systemsettings.mo +share/locale/ar/LC_MESSAGES/timezones4.mo share/locale/ar/LC_MESSAGES/umbrello.mo share/locale/ar/LC_MESSAGES/useraccount.mo -share/locale/ar/LC_MESSAGES/validatorsplugin.mo -share/locale/ar/LC_MESSAGES/wakeup.mo -share/locale/ar/LC_MESSAGES/wavecapture.mo -share/locale/ar/LC_MESSAGES/webarchiver.mo -share/locale/ar/charset share/locale/ar/entry.desktop +@dirrm share/apps/klettres/ar/alpha +@dirrm share/apps/klettres/ar +@dirrm share/apps/klettres diff --git a/archivers/ark/Makefile b/archivers/ark/Makefile index 4b1a79df695a..23a75146b16a 100644 --- a/archivers/ark/Makefile +++ b/archivers/ark/Makefile @@ -8,16 +8,15 @@ PORTNAME= kdeutils PORTVERSION= ${KDE4_VERSION} CATEGORIES= misc kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Utilities for the KDE4 integrated X11 Desktop LIB_DEPENDS= gmp.7:${PORTSDIR}/math/libgmp4 \ - netsnmp:${PORTSDIR}/net-mgmt/net-snmp \ - qimageblitz.4:${PORTSDIR}/x11/qimageblitz \ - zip.1:${PORTSDIR}/archivers/libzip + zip.1:${PORTSDIR}/archivers/libzip \ + qimageblitz.4:${PORTSDIR}/x11/qimageblitz RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg LATEST_LINK= ${PORTNAME}4 @@ -25,10 +24,12 @@ LATEST_LINK= ${PORTNAME}4 USE_BZIP2= yes USE_QT_VER= 4 KDE4_BUILDENV= yes -USE_KDE4= kdelibs pimlibs workspace kdeprefix kdehier automoc4 +USE_KDE4= kdelibs pimlibs kdeprefix kdehier automoc4 QT_COMPONENTS= network gui porting xml \ qmake_build moc_build rcc_build uic_build +MAN1= ark.1 + post-extract: ${MKDIR} ${WRKSRC} diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index b32341e6b180..5bf5f73fd46e 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdeutils-4.1.4.tar.bz2) = 542663eeae777978dafab2dcf9d422c2 -SHA256 (KDE/kdeutils-4.1.4.tar.bz2) = fc20381de8df78548a88361dc845624c66eeaa9415c883461ba24b094c81b7df -SIZE (KDE/kdeutils-4.1.4.tar.bz2) = 2285905 +MD5 (KDE/kdeutils-4.2.0.tar.bz2) = f0ca24c7d3e5bb0ab55bf6b26fc6224e +SHA256 (KDE/kdeutils-4.2.0.tar.bz2) = 1b811b5ea12641aa4003dcc97ea19570418e83a909866f78c08a358a1e1a1cfd +SIZE (KDE/kdeutils-4.2.0.tar.bz2) = 2234345 diff --git a/archivers/ark/files/patch-ark_plugins_libzipplugin-zipplugin.cpp b/archivers/ark/files/patch-ark_plugins_libzipplugin-zipplugin.cpp index c5e3f75034b6..eb03ee5e2287 100644 --- a/archivers/ark/files/patch-ark_plugins_libzipplugin-zipplugin.cpp +++ b/archivers/ark/files/patch-ark_plugins_libzipplugin-zipplugin.cpp @@ -1,13 +1,13 @@ ---- ../ark/plugins/libzipplugin/zipplugin.cpp.orig 2008-08-30 13:07:45.000000000 +0400 -+++ ../ark/plugins/libzipplugin/zipplugin.cpp 2008-08-30 13:12:59.000000000 +0400 -@@ -30,8 +30,8 @@ - //usually compiled with off_t to 32bit. in the long run libzip should be - //compiled according to bugs.kde.org bug #167018 - //but for now this will probably do +--- ../ark/plugins/libzipplugin/zipplugin.cpp.orig 2008-12-10 16:13:03.000000000 +0000 ++++ ../ark/plugins/libzipplugin/zipplugin.cpp 2008-12-29 22:16:13.000000000 +0000 +@@ -28,8 +28,8 @@ + + #ifdef LIBZIP_COMPILED_WITH_32BIT_OFF_T + -#define __off_t_defined -typedef quint32 off_t; +// #define __off_t_defined +// typedef quint32 off_t; - #include "kerfuffle/archiveinterface.h" - #include "kerfuffle/archivefactory.h" + #endif /* LIBZIP_COMPILED_WITH_32BIT_OFF_T */ + diff --git a/archivers/ark/pkg-plist b/archivers/ark/pkg-plist index 1f32022c99f9..03f698c23b80 100644 --- a/archivers/ark/pkg-plist +++ b/archivers/ark/pkg-plist @@ -13,8 +13,9 @@ bin/superkaramba bin/sweeper lib/kde4/kcm_kdf.so lib/kde4/kcm_kwallet.so -lib/kde4/kerfuffle_bk.so +lib/kde4/kerfuffle_7zip.so lib/kde4/kerfuffle_libarchive.so +lib/kde4/kerfuffle_libgz.so lib/kde4/kerfuffle_libzip.so lib/kde4/kerfuffle_rar.so lib/kde4/libarkpart.so @@ -25,16 +26,16 @@ lib/kde4/plasma_scriptengine_superkaramba.so lib/libkdeinit4_kcalc.so lib/libkerfuffle.so lib/libkerfuffle.so.5 -lib/libkerfuffle.so.5.0.0 +lib/libkerfuffle.so.5.0.1 lib/liboktetacore.so lib/liboktetacore.so.5 -lib/liboktetacore.so.5.0.0 +lib/liboktetacore.so.5.0.1 lib/liboktetagui.so lib/liboktetagui.so.5 -lib/liboktetagui.so.5.0.0 +lib/liboktetagui.so.5.0.1 lib/libsuperkaramba.so lib/libsuperkaramba.so.5 -lib/libsuperkaramba.so.5.0.0 +lib/libsuperkaramba.so.5.0.1 share/applications/kde4/KCharSelect.desktop share/applications/kde4/KFloppy.desktop share/applications/kde4/ark.desktop @@ -145,8 +146,12 @@ share/doc/HTML/en/kgpg/keyserver.png share/doc/HTML/en/kgpg/kicker.png share/doc/HTML/en/kgpg/options.png share/doc/HTML/en/ktimer/common +share/doc/HTML/en/ktimer/first.png share/doc/HTML/en/ktimer/index.cache.bz2 share/doc/HTML/en/ktimer/index.docbook +share/doc/HTML/en/ktimer/main.png +share/doc/HTML/en/ktimer/running.png +share/doc/HTML/en/ktimer/two.at.once.png share/doc/HTML/en/kwallet/common share/doc/HTML/en/kwallet/edit1.png share/doc/HTML/en/kwallet/edit2.png @@ -176,7 +181,6 @@ share/icons/hicolor/128x128/apps/kwalletmanager.png share/icons/hicolor/128x128/apps/kwalletmanager2.png share/icons/hicolor/128x128/apps/kwikdisk.png share/icons/hicolor/128x128/apps/superkaramba.png -share/icons/hicolor/16x16/apps/kcalc.png share/icons/hicolor/16x16/apps/kdf.png share/icons/hicolor/16x16/apps/kfloppy.png share/icons/hicolor/16x16/apps/kgpg.png @@ -186,14 +190,12 @@ share/icons/hicolor/16x16/apps/kwalletmanager2.png share/icons/hicolor/16x16/apps/kwikdisk.png share/icons/hicolor/16x16/apps/okteta.png share/icons/hicolor/16x16/apps/superkaramba.png -share/icons/hicolor/22x22/apps/kcalc.png share/icons/hicolor/22x22/apps/kdf.png share/icons/hicolor/22x22/apps/kfloppy.png share/icons/hicolor/22x22/apps/kgpg.png share/icons/hicolor/22x22/apps/kwalletmanager.png share/icons/hicolor/22x22/apps/kwikdisk.png share/icons/hicolor/22x22/apps/superkaramba.png -share/icons/hicolor/32x32/apps/kcalc.png share/icons/hicolor/32x32/apps/kdf.png share/icons/hicolor/32x32/apps/kfloppy.png share/icons/hicolor/32x32/apps/kgpg.png @@ -203,7 +205,6 @@ share/icons/hicolor/32x32/apps/kwalletmanager2.png share/icons/hicolor/32x32/apps/kwikdisk.png share/icons/hicolor/32x32/apps/okteta.png share/icons/hicolor/32x32/apps/superkaramba.png -share/icons/hicolor/48x48/apps/kcalc.png share/icons/hicolor/48x48/apps/kdf.png share/icons/hicolor/48x48/apps/kfloppy.png share/icons/hicolor/48x48/apps/kgpg.png @@ -213,26 +214,28 @@ share/icons/hicolor/48x48/apps/kwalletmanager2.png share/icons/hicolor/48x48/apps/kwikdisk.png share/icons/hicolor/48x48/apps/okteta.png share/icons/hicolor/48x48/apps/superkaramba.png -share/icons/hicolor/64x64/apps/kcalc.png share/icons/hicolor/64x64/apps/kdf.png share/icons/hicolor/64x64/apps/kfloppy.png share/icons/hicolor/64x64/apps/kwalletmanager.png share/icons/hicolor/64x64/apps/kwalletmanager2.png share/icons/hicolor/64x64/apps/kwikdisk.png share/icons/hicolor/64x64/apps/superkaramba.png -share/icons/hicolor/scalable/apps/kcalc.svgz share/icons/hicolor/scalable/apps/superkaramba.svgz share/icons/oxygen/16x16/apps/kcmdf.png share/icons/oxygen/22x22/apps/kcmdf.png share/icons/oxygen/32x32/apps/kcmdf.png +share/kde4/services/ServiceMenus/ark_addtoservicemenu.desktop +share/kde4/services/ServiceMenus/ark_servicemenu.desktop share/kde4/services/ServiceMenus/encryptfile.desktop share/kde4/services/ServiceMenus/encryptfolder.desktop share/kde4/services/ServiceMenus/floppy_format.desktop +share/kde4/services/ServiceMenus/viewdecrypted.desktop share/kde4/services/ark_part.desktop share/kde4/services/kbytearrayedit.desktop share/kde4/services/kcmdf.desktop -share/kde4/services/kerfuffle_bk.desktop +share/kde4/services/kerfuffle_7zip.desktop share/kde4/services/kerfuffle_libarchive.desktop +share/kde4/services/kerfuffle_libgz.desktop share/kde4/services/kerfuffle_libzip.desktop share/kde4/services/kerfuffle_rar.desktop share/kde4/services/kwalletconfig.desktop @@ -241,33 +244,6 @@ share/kde4/services/oktetapart.desktop share/kde4/services/plasma-package-superkaramba.desktop share/kde4/services/plasma-scriptengine-superkaramba.desktop share/kde4/servicetypes/kerfufflePlugin.desktop -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services/ServiceMenus -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/oxygen/32x32/apps -@dirrmtry share/icons/oxygen/32x32 -@dirrmtry share/icons/oxygen/22x22/apps -@dirrmtry share/icons/oxygen/22x22 -@dirrmtry share/icons/oxygen/16x16/apps -@dirrmtry share/icons/oxygen/16x16 -@dirrmtry share/icons/oxygen -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons @dirrm share/doc/HTML/en/superkaramba @dirrm share/doc/HTML/en/okteta @dirrm share/doc/HTML/en/kwallet @@ -279,13 +255,6 @@ share/kde4/servicetypes/kerfufflePlugin.desktop @dirrm share/doc/HTML/en/kcharselect @dirrm share/doc/HTML/en/kcalc @dirrm share/doc/HTML/en/ark -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 -@dirrmtry share/config.kcfg -@dirrmtry share/config -@dirrmtry share/autostart @dirrm share/apps/sweeper @dirrm share/apps/superkaramba @dirrm share/apps/oktetapart @@ -316,11 +285,5 @@ share/kde4/servicetypes/kerfufflePlugin.desktop @dirrm share/apps/kgpg @dirrm share/apps/kdf/pics @dirrm share/apps/kdf -@dirrmtry share/apps/kconf_update -@dirrmtry share/apps/kcharselect @dirrm share/apps/kcalc @dirrm share/apps/ark -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/kde4 diff --git a/chinese/kde4-l10n-zh_CN/distinfo b/chinese/kde4-l10n-zh_CN/distinfo index d10160790e2a..ddda608a4a09 100644 --- a/chinese/kde4-l10n-zh_CN/distinfo +++ b/chinese/kde4-l10n-zh_CN/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-zh_CN-4.1.4.tar.bz2) = cfe9af2f9f3df568623b0c35cc307403 -SHA256 (KDE/kde-l10n/kde-l10n-zh_CN-4.1.4.tar.bz2) = 6b17663bca5e60cdb3f7e1c3db0565c229ee47c68cc9e47da2ed4de51d6ca66c -SIZE (KDE/kde-l10n/kde-l10n-zh_CN-4.1.4.tar.bz2) = 2263187 +MD5 (KDE/kde-l10n/kde-l10n-zh_CN-4.2.0.tar.bz2) = c4730babc7bef39cea255c9528607fdc +SHA256 (KDE/kde-l10n/kde-l10n-zh_CN-4.2.0.tar.bz2) = e80ae8ba6d0e4c1f8c1452298e713ff667554f4069cb1fc53b22352362f44d50 +SIZE (KDE/kde-l10n/kde-l10n-zh_CN-4.2.0.tar.bz2) = 3152936 diff --git a/chinese/kde4-l10n-zh_CN/pkg-plist b/chinese/kde4-l10n-zh_CN/pkg-plist index 13ab00d87b8f..89bf57cfb2cf 100644 --- a/chinese/kde4-l10n-zh_CN/pkg-plist +++ b/chinese/kde4-l10n-zh_CN/pkg-plist @@ -12,6 +12,27 @@ share/apps/kvtml/zh_CN/idiom6.kvtml share/apps/kvtml/zh_CN/idiom7.kvtml share/apps/kvtml/zh_CN/idiom8.kvtml share/apps/kvtml/zh_CN/idiom9.kvtml +share/apps/step/objinfo/l10n/zh_CN/Box.html +share/apps/step/objinfo/l10n/zh_CN/ChargedParticle.html +share/apps/step/objinfo/l10n/zh_CN/Disk.html +share/apps/step/objinfo/l10n/zh_CN/Gas.html +share/apps/step/objinfo/l10n/zh_CN/GasParticle.html +share/apps/step/objinfo/l10n/zh_CN/Meter.html +share/apps/step/objinfo/l10n/zh_CN/Note.html +share/apps/step/objinfo/l10n/zh_CN/Particle.html +share/apps/step/objinfo/l10n/zh_CN/Polygon.html +share/apps/step/objinfo/l10n/zh_CN/Spring.html +share/apps/step/objinfo/l10n/zh_CN/World.html +share/doc/HTML/zh_CN/gwenview/browse_mode.png +share/doc/HTML/zh_CN/gwenview/common +share/doc/HTML/zh_CN/gwenview/fullscreen_mode.png +share/doc/HTML/zh_CN/gwenview/index.cache.bz2 +share/doc/HTML/zh_CN/gwenview/index.docbook +share/doc/HTML/zh_CN/gwenview/interface.docbook +share/doc/HTML/zh_CN/gwenview/introduction.docbook +share/doc/HTML/zh_CN/gwenview/keybindings.docbook +share/doc/HTML/zh_CN/gwenview/mouse.docbook +share/doc/HTML/zh_CN/gwenview/view_mode.png share/locale/zh_CN/LC_MESSAGES/akonaditray.mo share/locale/zh_CN/LC_MESSAGES/akregator.mo share/locale/zh_CN/LC_MESSAGES/amor.mo @@ -20,6 +41,7 @@ share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/zh_CN/LC_MESSAGES/audiorename_plugin.mo share/locale/zh_CN/LC_MESSAGES/blinken.mo +share/locale/zh_CN/LC_MESSAGES/bomber.mo share/locale/zh_CN/LC_MESSAGES/bovo.mo share/locale/zh_CN/LC_MESSAGES/cervisia.mo share/locale/zh_CN/LC_MESSAGES/cvsservice.mo @@ -34,6 +56,7 @@ share/locale/zh_CN/LC_MESSAGES/imagerename_plugin.mo share/locale/zh_CN/LC_MESSAGES/joystick.mo share/locale/zh_CN/LC_MESSAGES/juk.mo share/locale/zh_CN/LC_MESSAGES/kabc.mo +share/locale/zh_CN/LC_MESSAGES/kabc_akonadi.mo share/locale/zh_CN/LC_MESSAGES/kabc_dir.mo share/locale/zh_CN/LC_MESSAGES/kabc_file.mo share/locale/zh_CN/LC_MESSAGES/kabc_ldapkio.mo @@ -47,10 +70,14 @@ share/locale/zh_CN/LC_MESSAGES/kaddressbook.mo share/locale/zh_CN/LC_MESSAGES/kalarm.mo share/locale/zh_CN/LC_MESSAGES/kalgebra.mo share/locale/zh_CN/LC_MESSAGES/kalzium.mo +share/locale/zh_CN/LC_MESSAGES/kalzium_qt.mo share/locale/zh_CN/LC_MESSAGES/kanagram.mo +share/locale/zh_CN/LC_MESSAGES/kapman.mo share/locale/zh_CN/LC_MESSAGES/kappfinder.mo share/locale/zh_CN/LC_MESSAGES/kapptemplate.mo +share/locale/zh_CN/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate.mo +share/locale/zh_CN/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_CN/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katefiletemplates.mo @@ -61,7 +88,6 @@ share/locale/zh_CN/LC_MESSAGES/kateinsertcommand.mo share/locale/zh_CN/LC_MESSAGES/katekjswrapper.mo share/locale/zh_CN/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_CN/LC_MESSAGES/katemailfilesplugin.mo -share/locale/zh_CN/LC_MESSAGES/katemake.mo share/locale/zh_CN/LC_MESSAGES/kateopenheader.mo share/locale/zh_CN/LC_MESSAGES/katepart4.mo share/locale/zh_CN/LC_MESSAGES/katepybrowse.mo @@ -80,14 +106,14 @@ share/locale/zh_CN/LC_MESSAGES/kblocks.mo share/locale/zh_CN/LC_MESSAGES/kbounce.mo share/locale/zh_CN/LC_MESSAGES/kbreakout.mo share/locale/zh_CN/LC_MESSAGES/kbruch.mo -share/locale/zh_CN/LC_MESSAGES/kbstateapplet.mo share/locale/zh_CN/LC_MESSAGES/kbugbuster.mo share/locale/zh_CN/LC_MESSAGES/kcachegrind.mo share/locale/zh_CN/LC_MESSAGES/kcalc.mo share/locale/zh_CN/LC_MESSAGES/kcertpart.mo share/locale/zh_CN/LC_MESSAGES/kcharselect.mo -share/locale/zh_CN/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/zh_CN/LC_MESSAGES/kcm_akonadi.mo share/locale/zh_CN/LC_MESSAGES/kcm_autostart.mo +share/locale/zh_CN/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/zh_CN/LC_MESSAGES/kcm_emoticons.mo share/locale/zh_CN/LC_MESSAGES/kcm_krfb.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwindesktop.mo @@ -97,6 +123,7 @@ share/locale/zh_CN/LC_MESSAGES/kcm_pci.mo share/locale/zh_CN/LC_MESSAGES/kcm_phonon.mo share/locale/zh_CN/LC_MESSAGES/kcm_phononxine.mo share/locale/zh_CN/LC_MESSAGES/kcm_solid.mo +share/locale/zh_CN/LC_MESSAGES/kcm_standard_actions.mo share/locale/zh_CN/LC_MESSAGES/kcmaccess.mo share/locale/zh_CN/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_CN/LC_MESSAGES/kcmbackground.mo @@ -146,7 +173,6 @@ share/locale/zh_CN/LC_MESSAGES/kcmsmartcard.mo share/locale/zh_CN/LC_MESSAGES/kcmsmserver.mo share/locale/zh_CN/LC_MESSAGES/kcmsolidproc.mo share/locale/zh_CN/LC_MESSAGES/kcmstyle.mo -share/locale/zh_CN/LC_MESSAGES/kcmtaskbar.mo share/locale/zh_CN/LC_MESSAGES/kcmusb.mo share/locale/zh_CN/LC_MESSAGES/kcmview1394.mo share/locale/zh_CN/LC_MESSAGES/kcmxinerama.mo @@ -154,7 +180,9 @@ share/locale/zh_CN/LC_MESSAGES/kcolorchooser.mo share/locale/zh_CN/LC_MESSAGES/kcron.mo share/locale/zh_CN/LC_MESSAGES/kdat.mo share/locale/zh_CN/LC_MESSAGES/kde-menu.mo +share/locale/zh_CN/LC_MESSAGES/kdeasciiquarium.mo share/locale/zh_CN/LC_MESSAGES/kdebugdialog.mo +share/locale/zh_CN/LC_MESSAGES/kded_phononserver.mo share/locale/zh_CN/LC_MESSAGES/kdelibs4.mo share/locale/zh_CN/LC_MESSAGES/kdelibs_colors4.mo share/locale/zh_CN/LC_MESSAGES/kdepasswd.mo @@ -165,6 +193,7 @@ share/locale/zh_CN/LC_MESSAGES/kdessh.mo share/locale/zh_CN/LC_MESSAGES/kdesu.mo share/locale/zh_CN/LC_MESSAGES/kdesud.mo share/locale/zh_CN/LC_MESSAGES/kdf.mo +share/locale/zh_CN/LC_MESSAGES/kdgantt.mo share/locale/zh_CN/LC_MESSAGES/kdgantt1.mo share/locale/zh_CN/LC_MESSAGES/kdialog.mo share/locale/zh_CN/LC_MESSAGES/kdiamond.mo @@ -214,12 +243,15 @@ share/locale/zh_CN/LC_MESSAGES/khotnewstuff.mo share/locale/zh_CN/LC_MESSAGES/khtmlkttsd.mo share/locale/zh_CN/LC_MESSAGES/kiconfinder.mo share/locale/zh_CN/LC_MESSAGES/kig.mo +share/locale/zh_CN/LC_MESSAGES/killbots.mo share/locale/zh_CN/LC_MESSAGES/kimagemapeditor.mo share/locale/zh_CN/LC_MESSAGES/kinetd.mo share/locale/zh_CN/LC_MESSAGES/kinfocenter.mo share/locale/zh_CN/LC_MESSAGES/kio4.mo +share/locale/zh_CN/LC_MESSAGES/kio_applications.mo share/locale/zh_CN/LC_MESSAGES/kio_archive.mo share/locale/zh_CN/LC_MESSAGES/kio_audiocd.mo +share/locale/zh_CN/LC_MESSAGES/kio_bookmarks.mo share/locale/zh_CN/LC_MESSAGES/kio_finger.mo share/locale/zh_CN/LC_MESSAGES/kio_fish.mo share/locale/zh_CN/LC_MESSAGES/kio_floppy.mo @@ -230,11 +262,12 @@ share/locale/zh_CN/LC_MESSAGES/kio_jabberdisco.mo share/locale/zh_CN/LC_MESSAGES/kio_ldap.mo share/locale/zh_CN/LC_MESSAGES/kio_man.mo share/locale/zh_CN/LC_MESSAGES/kio_mbox.mo +share/locale/zh_CN/LC_MESSAGES/kio_nepomuksearch.mo share/locale/zh_CN/LC_MESSAGES/kio_nfs.mo share/locale/zh_CN/LC_MESSAGES/kio_nntp.mo +share/locale/zh_CN/LC_MESSAGES/kio_perldoc.mo share/locale/zh_CN/LC_MESSAGES/kio_pop3.mo share/locale/zh_CN/LC_MESSAGES/kio_remote.mo -share/locale/zh_CN/LC_MESSAGES/kio_settings.mo share/locale/zh_CN/LC_MESSAGES/kio_sftp.mo share/locale/zh_CN/LC_MESSAGES/kio_sieve.mo share/locale/zh_CN/LC_MESSAGES/kio_smb.mo @@ -294,10 +327,10 @@ share/locale/zh_CN/LC_MESSAGES/kopete.mo share/locale/zh_CN/LC_MESSAGES/korganizer.mo share/locale/zh_CN/LC_MESSAGES/korn.mo share/locale/zh_CN/LC_MESSAGES/kpackage.mo +share/locale/zh_CN/LC_MESSAGES/kpartloader.mo share/locale/zh_CN/LC_MESSAGES/kpartsaver.mo share/locale/zh_CN/LC_MESSAGES/kpasswdserver.mo share/locale/zh_CN/LC_MESSAGES/kpat.mo -share/locale/zh_CN/LC_MESSAGES/kpercentage.mo share/locale/zh_CN/LC_MESSAGES/kpilot.mo share/locale/zh_CN/LC_MESSAGES/kppp.mo share/locale/zh_CN/LC_MESSAGES/kppplogview.mo @@ -321,20 +354,12 @@ share/locale/zh_CN/LC_MESSAGES/kreversi.mo share/locale/zh_CN/LC_MESSAGES/krfb.mo share/locale/zh_CN/LC_MESSAGES/kruler.mo share/locale/zh_CN/LC_MESSAGES/krunner.mo -share/locale/zh_CN/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/zh_CN/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/zh_CN/LC_MESSAGES/krunner_contacts.mo -share/locale/zh_CN/LC_MESSAGES/krunner_converterrunner.mo -share/locale/zh_CN/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/zh_CN/LC_MESSAGES/krunner_sessions.mo -share/locale/zh_CN/LC_MESSAGES/krunner_shellrunner.mo -share/locale/zh_CN/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/zh_CN/LC_MESSAGES/krunner_xesam.mo share/locale/zh_CN/LC_MESSAGES/ksame.mo share/locale/zh_CN/LC_MESSAGES/ksaneplugin.mo share/locale/zh_CN/LC_MESSAGES/ksayit.mo share/locale/zh_CN/LC_MESSAGES/kscd.mo share/locale/zh_CN/LC_MESSAGES/kscreensaver.mo +share/locale/zh_CN/LC_MESSAGES/ksendemail.mo share/locale/zh_CN/LC_MESSAGES/kshisen.mo share/locale/zh_CN/LC_MESSAGES/kshorturifilter.mo share/locale/zh_CN/LC_MESSAGES/ksirk.mo @@ -351,6 +376,7 @@ share/locale/zh_CN/LC_MESSAGES/kstyle_keramik_config.mo share/locale/zh_CN/LC_MESSAGES/kstyle_phase_config.mo share/locale/zh_CN/LC_MESSAGES/ksudoku.mo share/locale/zh_CN/LC_MESSAGES/ksysguard.mo +share/locale/zh_CN/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/zh_CN/LC_MESSAGES/ksystemlog.mo share/locale/zh_CN/LC_MESSAGES/ksystraycmd.mo share/locale/zh_CN/LC_MESSAGES/ksysv.mo @@ -360,7 +386,6 @@ share/locale/zh_CN/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/zh_CN/LC_MESSAGES/kthememanager.mo share/locale/zh_CN/LC_MESSAGES/ktimer.mo share/locale/zh_CN/LC_MESSAGES/ktimetracker.mo -share/locale/zh_CN/LC_MESSAGES/ktnef.mo share/locale/zh_CN/LC_MESSAGES/ktouch.mo share/locale/zh_CN/LC_MESSAGES/ktraderclient.mo share/locale/zh_CN/LC_MESSAGES/kttsd.mo @@ -372,6 +397,7 @@ share/locale/zh_CN/LC_MESSAGES/kuiserver.mo share/locale/zh_CN/LC_MESSAGES/kuiviewer.mo share/locale/zh_CN/LC_MESSAGES/kurifilter.mo share/locale/zh_CN/LC_MESSAGES/kuser.mo +share/locale/zh_CN/LC_MESSAGES/kwalletd.mo share/locale/zh_CN/LC_MESSAGES/kwalletmanager.mo share/locale/zh_CN/LC_MESSAGES/kwatchgnupg.mo share/locale/zh_CN/LC_MESSAGES/kweather.mo @@ -418,11 +444,14 @@ share/locale/zh_CN/LC_MESSAGES/libmailtransport.mo share/locale/zh_CN/LC_MESSAGES/liboktetacore.mo share/locale/zh_CN/LC_MESSAGES/libphonon.mo share/locale/zh_CN/LC_MESSAGES/libplasma.mo +share/locale/zh_CN/LC_MESSAGES/libplasmaclock.mo share/locale/zh_CN/LC_MESSAGES/libtaskmanager.mo share/locale/zh_CN/LC_MESSAGES/lokalize.mo share/locale/zh_CN/LC_MESSAGES/lskat.mo share/locale/zh_CN/LC_MESSAGES/marble.mo +share/locale/zh_CN/LC_MESSAGES/marble_qt.mo share/locale/zh_CN/LC_MESSAGES/nepomuk.mo +share/locale/zh_CN/LC_MESSAGES/nepomuksearch.mo share/locale/zh_CN/LC_MESSAGES/nsplugin.mo share/locale/zh_CN/LC_MESSAGES/okteta.mo share/locale/zh_CN/LC_MESSAGES/oktetapart.mo @@ -432,6 +461,7 @@ share/locale/zh_CN/LC_MESSAGES/okular_comicbook.mo share/locale/zh_CN/LC_MESSAGES/okular_djvu.mo share/locale/zh_CN/LC_MESSAGES/okular_dvi.mo share/locale/zh_CN/LC_MESSAGES/okular_epub.mo +share/locale/zh_CN/LC_MESSAGES/okular_fax.mo share/locale/zh_CN/LC_MESSAGES/okular_fictionbook.mo share/locale/zh_CN/LC_MESSAGES/okular_ghostview.mo share/locale/zh_CN/LC_MESSAGES/okular_kimgio.mo @@ -444,10 +474,15 @@ share/locale/zh_CN/LC_MESSAGES/parley.mo share/locale/zh_CN/LC_MESSAGES/phonon-xine.mo share/locale/zh_CN/LC_MESSAGES/phonon_gstreamer.mo share/locale/zh_CN/LC_MESSAGES/phonon_kde.mo +share/locale/zh_CN/LC_MESSAGES/plasma-overlay.mo +share/locale/zh_CN/LC_MESSAGES/plasma-shells-common.mo share/locale/zh_CN/LC_MESSAGES/plasma.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_battery.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_bball.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_charselect.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_clock.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_comic.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_desktop.mo @@ -459,26 +494,61 @@ share/locale/zh_CN/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_folderview.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_frame.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_katesession.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_kget.mo -share/locale/zh_CN/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_life.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_luna.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_news.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_notes.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_pager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_panel.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_paste.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_timer.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_trash.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/zh_CN/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/zh_CN/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/zh_CN/LC_MESSAGES/plasma_engine_dict.mo +share/locale/zh_CN/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/zh_CN/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/zh_CN/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/zh_CN/LC_MESSAGES/plasma_engine_rss.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_locations.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_shell.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/zh_CN/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/zh_CN/LC_MESSAGES/plasmaengineexplorer.mo share/locale/zh_CN/LC_MESSAGES/plasmapkg.mo share/locale/zh_CN/LC_MESSAGES/plasmoidviewer.mo +share/locale/zh_CN/LC_MESSAGES/powerdevil.mo share/locale/zh_CN/LC_MESSAGES/printer-applet.mo share/locale/zh_CN/LC_MESSAGES/processcore.mo share/locale/zh_CN/LC_MESSAGES/processui.mo @@ -490,10 +560,12 @@ share/locale/zh_CN/LC_MESSAGES/solidcontrol.mo share/locale/zh_CN/LC_MESSAGES/soliduiserver.mo share/locale/zh_CN/LC_MESSAGES/spy.mo share/locale/zh_CN/LC_MESSAGES/step.mo +share/locale/zh_CN/LC_MESSAGES/step_qt.mo share/locale/zh_CN/LC_MESSAGES/strigila_diff.mo share/locale/zh_CN/LC_MESSAGES/superkaramba.mo share/locale/zh_CN/LC_MESSAGES/svgpart.mo share/locale/zh_CN/LC_MESSAGES/sweeper.mo +share/locale/zh_CN/LC_MESSAGES/system-config-printer-kde.mo share/locale/zh_CN/LC_MESSAGES/systemsettings.mo share/locale/zh_CN/LC_MESSAGES/timezones4.mo share/locale/zh_CN/LC_MESSAGES/umbrello.mo @@ -504,5 +576,10 @@ share/locale/zh_CN/entry.desktop share/locale/zh_CN/flag.png @dirrm share/locale/zh_CN/LC_SCRIPTS/kdelibs4 @dirrm share/locale/zh_CN/LC_SCRIPTS +@dirrm share/doc/HTML/zh_CN/gwenview +@dirrm share/apps/step/objinfo/l10n/zh_CN +@dirrm share/apps/step/objinfo/l10n +@dirrm share/apps/step/objinfo +@dirrm share/apps/step @dirrm share/apps/kvtml/zh_CN @dirrm share/apps/kvtml diff --git a/chinese/kde4-l10n-zh_TW/distinfo b/chinese/kde4-l10n-zh_TW/distinfo index f8b18c82c550..775e4b3b8de2 100644 --- a/chinese/kde4-l10n-zh_TW/distinfo +++ b/chinese/kde4-l10n-zh_TW/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-zh_TW-4.1.4.tar.bz2) = 02f9104908ad1e3e28f78716b0a562cc -SHA256 (KDE/kde-l10n/kde-l10n-zh_TW-4.1.4.tar.bz2) = 02cf644cb3130e6d564027a037361ab1573a1731d08dad5456f680a546d6b19f -SIZE (KDE/kde-l10n/kde-l10n-zh_TW-4.1.4.tar.bz2) = 1884790 +MD5 (KDE/kde-l10n/kde-l10n-zh_TW-4.2.0.tar.bz2) = 08af73c8b0f82689f5ab046f0700bf9d +SHA256 (KDE/kde-l10n/kde-l10n-zh_TW-4.2.0.tar.bz2) = f76e5b9e3a20cc53988620681d0c294b4f48c4906149871b146b03cdcd3535ae +SIZE (KDE/kde-l10n/kde-l10n-zh_TW-4.2.0.tar.bz2) = 2072103 diff --git a/chinese/kde4-l10n-zh_TW/pkg-plist b/chinese/kde4-l10n-zh_TW/pkg-plist index fee363e14c23..da01701c59aa 100644 --- a/chinese/kde4-l10n-zh_TW/pkg-plist +++ b/chinese/kde4-l10n-zh_TW/pkg-plist @@ -29,6 +29,7 @@ share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/zh_TW/LC_MESSAGES/audiorename_plugin.mo share/locale/zh_TW/LC_MESSAGES/blinken.mo +share/locale/zh_TW/LC_MESSAGES/bomber.mo share/locale/zh_TW/LC_MESSAGES/bovo.mo share/locale/zh_TW/LC_MESSAGES/cervisia.mo share/locale/zh_TW/LC_MESSAGES/cvsservice.mo @@ -43,6 +44,7 @@ share/locale/zh_TW/LC_MESSAGES/imagerename_plugin.mo share/locale/zh_TW/LC_MESSAGES/joystick.mo share/locale/zh_TW/LC_MESSAGES/juk.mo share/locale/zh_TW/LC_MESSAGES/kabc.mo +share/locale/zh_TW/LC_MESSAGES/kabc_akonadi.mo share/locale/zh_TW/LC_MESSAGES/kabc_dir.mo share/locale/zh_TW/LC_MESSAGES/kabc_file.mo share/locale/zh_TW/LC_MESSAGES/kabc_ldapkio.mo @@ -56,10 +58,14 @@ share/locale/zh_TW/LC_MESSAGES/kaddressbook.mo share/locale/zh_TW/LC_MESSAGES/kalarm.mo share/locale/zh_TW/LC_MESSAGES/kalgebra.mo share/locale/zh_TW/LC_MESSAGES/kalzium.mo +share/locale/zh_TW/LC_MESSAGES/kalzium_qt.mo share/locale/zh_TW/LC_MESSAGES/kanagram.mo +share/locale/zh_TW/LC_MESSAGES/kapman.mo share/locale/zh_TW/LC_MESSAGES/kappfinder.mo share/locale/zh_TW/LC_MESSAGES/kapptemplate.mo +share/locale/zh_TW/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate.mo +share/locale/zh_TW/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_TW/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katefiletemplates.mo @@ -70,7 +76,6 @@ share/locale/zh_TW/LC_MESSAGES/kateinsertcommand.mo share/locale/zh_TW/LC_MESSAGES/katekjswrapper.mo share/locale/zh_TW/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_TW/LC_MESSAGES/katemailfilesplugin.mo -share/locale/zh_TW/LC_MESSAGES/katemake.mo share/locale/zh_TW/LC_MESSAGES/kateopenheader.mo share/locale/zh_TW/LC_MESSAGES/katepart4.mo share/locale/zh_TW/LC_MESSAGES/katepybrowse.mo @@ -89,14 +94,14 @@ share/locale/zh_TW/LC_MESSAGES/kblocks.mo share/locale/zh_TW/LC_MESSAGES/kbounce.mo share/locale/zh_TW/LC_MESSAGES/kbreakout.mo share/locale/zh_TW/LC_MESSAGES/kbruch.mo -share/locale/zh_TW/LC_MESSAGES/kbstateapplet.mo share/locale/zh_TW/LC_MESSAGES/kbugbuster.mo share/locale/zh_TW/LC_MESSAGES/kcachegrind.mo share/locale/zh_TW/LC_MESSAGES/kcalc.mo share/locale/zh_TW/LC_MESSAGES/kcertpart.mo share/locale/zh_TW/LC_MESSAGES/kcharselect.mo -share/locale/zh_TW/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/zh_TW/LC_MESSAGES/kcm_akonadi.mo share/locale/zh_TW/LC_MESSAGES/kcm_autostart.mo +share/locale/zh_TW/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/zh_TW/LC_MESSAGES/kcm_emoticons.mo share/locale/zh_TW/LC_MESSAGES/kcm_krfb.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwindesktop.mo @@ -106,6 +111,7 @@ share/locale/zh_TW/LC_MESSAGES/kcm_pci.mo share/locale/zh_TW/LC_MESSAGES/kcm_phonon.mo share/locale/zh_TW/LC_MESSAGES/kcm_phononxine.mo share/locale/zh_TW/LC_MESSAGES/kcm_solid.mo +share/locale/zh_TW/LC_MESSAGES/kcm_standard_actions.mo share/locale/zh_TW/LC_MESSAGES/kcmaccess.mo share/locale/zh_TW/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_TW/LC_MESSAGES/kcmbackground.mo @@ -155,7 +161,6 @@ share/locale/zh_TW/LC_MESSAGES/kcmsmartcard.mo share/locale/zh_TW/LC_MESSAGES/kcmsmserver.mo share/locale/zh_TW/LC_MESSAGES/kcmsolidproc.mo share/locale/zh_TW/LC_MESSAGES/kcmstyle.mo -share/locale/zh_TW/LC_MESSAGES/kcmtaskbar.mo share/locale/zh_TW/LC_MESSAGES/kcmusb.mo share/locale/zh_TW/LC_MESSAGES/kcmview1394.mo share/locale/zh_TW/LC_MESSAGES/kcmxinerama.mo @@ -163,7 +168,9 @@ share/locale/zh_TW/LC_MESSAGES/kcolorchooser.mo share/locale/zh_TW/LC_MESSAGES/kcron.mo share/locale/zh_TW/LC_MESSAGES/kdat.mo share/locale/zh_TW/LC_MESSAGES/kde-menu.mo +share/locale/zh_TW/LC_MESSAGES/kdeasciiquarium.mo share/locale/zh_TW/LC_MESSAGES/kdebugdialog.mo +share/locale/zh_TW/LC_MESSAGES/kded_phononserver.mo share/locale/zh_TW/LC_MESSAGES/kdelibs4.mo share/locale/zh_TW/LC_MESSAGES/kdelibs_colors4.mo share/locale/zh_TW/LC_MESSAGES/kdepasswd.mo @@ -174,6 +181,7 @@ share/locale/zh_TW/LC_MESSAGES/kdessh.mo share/locale/zh_TW/LC_MESSAGES/kdesu.mo share/locale/zh_TW/LC_MESSAGES/kdesud.mo share/locale/zh_TW/LC_MESSAGES/kdf.mo +share/locale/zh_TW/LC_MESSAGES/kdgantt.mo share/locale/zh_TW/LC_MESSAGES/kdgantt1.mo share/locale/zh_TW/LC_MESSAGES/kdialog.mo share/locale/zh_TW/LC_MESSAGES/kdiamond.mo @@ -223,12 +231,15 @@ share/locale/zh_TW/LC_MESSAGES/khotnewstuff.mo share/locale/zh_TW/LC_MESSAGES/khtmlkttsd.mo share/locale/zh_TW/LC_MESSAGES/kiconfinder.mo share/locale/zh_TW/LC_MESSAGES/kig.mo +share/locale/zh_TW/LC_MESSAGES/killbots.mo share/locale/zh_TW/LC_MESSAGES/kimagemapeditor.mo share/locale/zh_TW/LC_MESSAGES/kinetd.mo share/locale/zh_TW/LC_MESSAGES/kinfocenter.mo share/locale/zh_TW/LC_MESSAGES/kio4.mo +share/locale/zh_TW/LC_MESSAGES/kio_applications.mo share/locale/zh_TW/LC_MESSAGES/kio_archive.mo share/locale/zh_TW/LC_MESSAGES/kio_audiocd.mo +share/locale/zh_TW/LC_MESSAGES/kio_bookmarks.mo share/locale/zh_TW/LC_MESSAGES/kio_finger.mo share/locale/zh_TW/LC_MESSAGES/kio_fish.mo share/locale/zh_TW/LC_MESSAGES/kio_floppy.mo @@ -239,11 +250,12 @@ share/locale/zh_TW/LC_MESSAGES/kio_jabberdisco.mo share/locale/zh_TW/LC_MESSAGES/kio_ldap.mo share/locale/zh_TW/LC_MESSAGES/kio_man.mo share/locale/zh_TW/LC_MESSAGES/kio_mbox.mo +share/locale/zh_TW/LC_MESSAGES/kio_nepomuksearch.mo share/locale/zh_TW/LC_MESSAGES/kio_nfs.mo share/locale/zh_TW/LC_MESSAGES/kio_nntp.mo +share/locale/zh_TW/LC_MESSAGES/kio_perldoc.mo share/locale/zh_TW/LC_MESSAGES/kio_pop3.mo share/locale/zh_TW/LC_MESSAGES/kio_remote.mo -share/locale/zh_TW/LC_MESSAGES/kio_settings.mo share/locale/zh_TW/LC_MESSAGES/kio_sftp.mo share/locale/zh_TW/LC_MESSAGES/kio_sieve.mo share/locale/zh_TW/LC_MESSAGES/kio_smb.mo @@ -303,10 +315,10 @@ share/locale/zh_TW/LC_MESSAGES/kopete.mo share/locale/zh_TW/LC_MESSAGES/korganizer.mo share/locale/zh_TW/LC_MESSAGES/korn.mo share/locale/zh_TW/LC_MESSAGES/kpackage.mo +share/locale/zh_TW/LC_MESSAGES/kpartloader.mo share/locale/zh_TW/LC_MESSAGES/kpartsaver.mo share/locale/zh_TW/LC_MESSAGES/kpasswdserver.mo share/locale/zh_TW/LC_MESSAGES/kpat.mo -share/locale/zh_TW/LC_MESSAGES/kpercentage.mo share/locale/zh_TW/LC_MESSAGES/kpilot.mo share/locale/zh_TW/LC_MESSAGES/kppp.mo share/locale/zh_TW/LC_MESSAGES/kppplogview.mo @@ -330,20 +342,12 @@ share/locale/zh_TW/LC_MESSAGES/kreversi.mo share/locale/zh_TW/LC_MESSAGES/krfb.mo share/locale/zh_TW/LC_MESSAGES/kruler.mo share/locale/zh_TW/LC_MESSAGES/krunner.mo -share/locale/zh_TW/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/zh_TW/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/zh_TW/LC_MESSAGES/krunner_contacts.mo -share/locale/zh_TW/LC_MESSAGES/krunner_converterrunner.mo -share/locale/zh_TW/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/zh_TW/LC_MESSAGES/krunner_sessions.mo -share/locale/zh_TW/LC_MESSAGES/krunner_shellrunner.mo -share/locale/zh_TW/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/zh_TW/LC_MESSAGES/krunner_xesam.mo share/locale/zh_TW/LC_MESSAGES/ksame.mo share/locale/zh_TW/LC_MESSAGES/ksaneplugin.mo share/locale/zh_TW/LC_MESSAGES/ksayit.mo share/locale/zh_TW/LC_MESSAGES/kscd.mo share/locale/zh_TW/LC_MESSAGES/kscreensaver.mo +share/locale/zh_TW/LC_MESSAGES/ksendemail.mo share/locale/zh_TW/LC_MESSAGES/kshisen.mo share/locale/zh_TW/LC_MESSAGES/kshorturifilter.mo share/locale/zh_TW/LC_MESSAGES/ksirk.mo @@ -360,6 +364,7 @@ share/locale/zh_TW/LC_MESSAGES/kstyle_keramik_config.mo share/locale/zh_TW/LC_MESSAGES/kstyle_phase_config.mo share/locale/zh_TW/LC_MESSAGES/ksudoku.mo share/locale/zh_TW/LC_MESSAGES/ksysguard.mo +share/locale/zh_TW/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/zh_TW/LC_MESSAGES/ksystemlog.mo share/locale/zh_TW/LC_MESSAGES/ksystraycmd.mo share/locale/zh_TW/LC_MESSAGES/ksysv.mo @@ -369,7 +374,6 @@ share/locale/zh_TW/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/zh_TW/LC_MESSAGES/kthememanager.mo share/locale/zh_TW/LC_MESSAGES/ktimer.mo share/locale/zh_TW/LC_MESSAGES/ktimetracker.mo -share/locale/zh_TW/LC_MESSAGES/ktnef.mo share/locale/zh_TW/LC_MESSAGES/ktouch.mo share/locale/zh_TW/LC_MESSAGES/ktraderclient.mo share/locale/zh_TW/LC_MESSAGES/kttsd.mo @@ -381,6 +385,7 @@ share/locale/zh_TW/LC_MESSAGES/kuiserver.mo share/locale/zh_TW/LC_MESSAGES/kuiviewer.mo share/locale/zh_TW/LC_MESSAGES/kurifilter.mo share/locale/zh_TW/LC_MESSAGES/kuser.mo +share/locale/zh_TW/LC_MESSAGES/kwalletd.mo share/locale/zh_TW/LC_MESSAGES/kwalletmanager.mo share/locale/zh_TW/LC_MESSAGES/kwatchgnupg.mo share/locale/zh_TW/LC_MESSAGES/kweather.mo @@ -427,11 +432,14 @@ share/locale/zh_TW/LC_MESSAGES/libmailtransport.mo share/locale/zh_TW/LC_MESSAGES/liboktetacore.mo share/locale/zh_TW/LC_MESSAGES/libphonon.mo share/locale/zh_TW/LC_MESSAGES/libplasma.mo +share/locale/zh_TW/LC_MESSAGES/libplasmaclock.mo share/locale/zh_TW/LC_MESSAGES/libtaskmanager.mo share/locale/zh_TW/LC_MESSAGES/lokalize.mo share/locale/zh_TW/LC_MESSAGES/lskat.mo share/locale/zh_TW/LC_MESSAGES/marble.mo +share/locale/zh_TW/LC_MESSAGES/marble_qt.mo share/locale/zh_TW/LC_MESSAGES/nepomuk.mo +share/locale/zh_TW/LC_MESSAGES/nepomuksearch.mo share/locale/zh_TW/LC_MESSAGES/nsplugin.mo share/locale/zh_TW/LC_MESSAGES/okteta.mo share/locale/zh_TW/LC_MESSAGES/oktetapart.mo @@ -441,6 +449,7 @@ share/locale/zh_TW/LC_MESSAGES/okular_comicbook.mo share/locale/zh_TW/LC_MESSAGES/okular_djvu.mo share/locale/zh_TW/LC_MESSAGES/okular_dvi.mo share/locale/zh_TW/LC_MESSAGES/okular_epub.mo +share/locale/zh_TW/LC_MESSAGES/okular_fax.mo share/locale/zh_TW/LC_MESSAGES/okular_fictionbook.mo share/locale/zh_TW/LC_MESSAGES/okular_ghostview.mo share/locale/zh_TW/LC_MESSAGES/okular_kimgio.mo @@ -453,10 +462,15 @@ share/locale/zh_TW/LC_MESSAGES/parley.mo share/locale/zh_TW/LC_MESSAGES/phonon-xine.mo share/locale/zh_TW/LC_MESSAGES/phonon_gstreamer.mo share/locale/zh_TW/LC_MESSAGES/phonon_kde.mo +share/locale/zh_TW/LC_MESSAGES/plasma-overlay.mo +share/locale/zh_TW/LC_MESSAGES/plasma-shells-common.mo share/locale/zh_TW/LC_MESSAGES/plasma.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_battery.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_bball.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_charselect.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_clock.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_comic.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_desktop.mo @@ -468,26 +482,61 @@ share/locale/zh_TW/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_folderview.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_frame.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_katesession.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_kget.mo -share/locale/zh_TW/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_life.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_luna.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_news.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_notes.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_pager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_panel.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_paste.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_timer.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_trash.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/zh_TW/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/zh_TW/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/zh_TW/LC_MESSAGES/plasma_engine_dict.mo +share/locale/zh_TW/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/zh_TW/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/zh_TW/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/zh_TW/LC_MESSAGES/plasma_engine_rss.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_locations.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_shell.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/zh_TW/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/zh_TW/LC_MESSAGES/plasmaengineexplorer.mo share/locale/zh_TW/LC_MESSAGES/plasmapkg.mo share/locale/zh_TW/LC_MESSAGES/plasmoidviewer.mo +share/locale/zh_TW/LC_MESSAGES/powerdevil.mo share/locale/zh_TW/LC_MESSAGES/printer-applet.mo share/locale/zh_TW/LC_MESSAGES/processcore.mo share/locale/zh_TW/LC_MESSAGES/processui.mo @@ -499,10 +548,12 @@ share/locale/zh_TW/LC_MESSAGES/solidcontrol.mo share/locale/zh_TW/LC_MESSAGES/soliduiserver.mo share/locale/zh_TW/LC_MESSAGES/spy.mo share/locale/zh_TW/LC_MESSAGES/step.mo +share/locale/zh_TW/LC_MESSAGES/step_qt.mo share/locale/zh_TW/LC_MESSAGES/strigila_diff.mo share/locale/zh_TW/LC_MESSAGES/superkaramba.mo share/locale/zh_TW/LC_MESSAGES/svgpart.mo share/locale/zh_TW/LC_MESSAGES/sweeper.mo +share/locale/zh_TW/LC_MESSAGES/system-config-printer-kde.mo share/locale/zh_TW/LC_MESSAGES/systemsettings.mo share/locale/zh_TW/LC_MESSAGES/timezones4.mo share/locale/zh_TW/LC_MESSAGES/umbrello.mo diff --git a/comms/kremotecontrol/Makefile b/comms/kremotecontrol/Makefile index 4b1a79df695a..23a75146b16a 100644 --- a/comms/kremotecontrol/Makefile +++ b/comms/kremotecontrol/Makefile @@ -8,16 +8,15 @@ PORTNAME= kdeutils PORTVERSION= ${KDE4_VERSION} CATEGORIES= misc kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Utilities for the KDE4 integrated X11 Desktop LIB_DEPENDS= gmp.7:${PORTSDIR}/math/libgmp4 \ - netsnmp:${PORTSDIR}/net-mgmt/net-snmp \ - qimageblitz.4:${PORTSDIR}/x11/qimageblitz \ - zip.1:${PORTSDIR}/archivers/libzip + zip.1:${PORTSDIR}/archivers/libzip \ + qimageblitz.4:${PORTSDIR}/x11/qimageblitz RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg LATEST_LINK= ${PORTNAME}4 @@ -25,10 +24,12 @@ LATEST_LINK= ${PORTNAME}4 USE_BZIP2= yes USE_QT_VER= 4 KDE4_BUILDENV= yes -USE_KDE4= kdelibs pimlibs workspace kdeprefix kdehier automoc4 +USE_KDE4= kdelibs pimlibs kdeprefix kdehier automoc4 QT_COMPONENTS= network gui porting xml \ qmake_build moc_build rcc_build uic_build +MAN1= ark.1 + post-extract: ${MKDIR} ${WRKSRC} diff --git a/comms/kremotecontrol/distinfo b/comms/kremotecontrol/distinfo index b32341e6b180..5bf5f73fd46e 100644 --- a/comms/kremotecontrol/distinfo +++ b/comms/kremotecontrol/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdeutils-4.1.4.tar.bz2) = 542663eeae777978dafab2dcf9d422c2 -SHA256 (KDE/kdeutils-4.1.4.tar.bz2) = fc20381de8df78548a88361dc845624c66eeaa9415c883461ba24b094c81b7df -SIZE (KDE/kdeutils-4.1.4.tar.bz2) = 2285905 +MD5 (KDE/kdeutils-4.2.0.tar.bz2) = f0ca24c7d3e5bb0ab55bf6b26fc6224e +SHA256 (KDE/kdeutils-4.2.0.tar.bz2) = 1b811b5ea12641aa4003dcc97ea19570418e83a909866f78c08a358a1e1a1cfd +SIZE (KDE/kdeutils-4.2.0.tar.bz2) = 2234345 diff --git a/comms/kremotecontrol/files/patch-ark_plugins_libzipplugin-zipplugin.cpp b/comms/kremotecontrol/files/patch-ark_plugins_libzipplugin-zipplugin.cpp index c5e3f75034b6..eb03ee5e2287 100644 --- a/comms/kremotecontrol/files/patch-ark_plugins_libzipplugin-zipplugin.cpp +++ b/comms/kremotecontrol/files/patch-ark_plugins_libzipplugin-zipplugin.cpp @@ -1,13 +1,13 @@ ---- ../ark/plugins/libzipplugin/zipplugin.cpp.orig 2008-08-30 13:07:45.000000000 +0400 -+++ ../ark/plugins/libzipplugin/zipplugin.cpp 2008-08-30 13:12:59.000000000 +0400 -@@ -30,8 +30,8 @@ - //usually compiled with off_t to 32bit. in the long run libzip should be - //compiled according to bugs.kde.org bug #167018 - //but for now this will probably do +--- ../ark/plugins/libzipplugin/zipplugin.cpp.orig 2008-12-10 16:13:03.000000000 +0000 ++++ ../ark/plugins/libzipplugin/zipplugin.cpp 2008-12-29 22:16:13.000000000 +0000 +@@ -28,8 +28,8 @@ + + #ifdef LIBZIP_COMPILED_WITH_32BIT_OFF_T + -#define __off_t_defined -typedef quint32 off_t; +// #define __off_t_defined +// typedef quint32 off_t; - #include "kerfuffle/archiveinterface.h" - #include "kerfuffle/archivefactory.h" + #endif /* LIBZIP_COMPILED_WITH_32BIT_OFF_T */ + diff --git a/comms/kremotecontrol/pkg-plist b/comms/kremotecontrol/pkg-plist index 1f32022c99f9..03f698c23b80 100644 --- a/comms/kremotecontrol/pkg-plist +++ b/comms/kremotecontrol/pkg-plist @@ -13,8 +13,9 @@ bin/superkaramba bin/sweeper lib/kde4/kcm_kdf.so lib/kde4/kcm_kwallet.so -lib/kde4/kerfuffle_bk.so +lib/kde4/kerfuffle_7zip.so lib/kde4/kerfuffle_libarchive.so +lib/kde4/kerfuffle_libgz.so lib/kde4/kerfuffle_libzip.so lib/kde4/kerfuffle_rar.so lib/kde4/libarkpart.so @@ -25,16 +26,16 @@ lib/kde4/plasma_scriptengine_superkaramba.so lib/libkdeinit4_kcalc.so lib/libkerfuffle.so lib/libkerfuffle.so.5 -lib/libkerfuffle.so.5.0.0 +lib/libkerfuffle.so.5.0.1 lib/liboktetacore.so lib/liboktetacore.so.5 -lib/liboktetacore.so.5.0.0 +lib/liboktetacore.so.5.0.1 lib/liboktetagui.so lib/liboktetagui.so.5 -lib/liboktetagui.so.5.0.0 +lib/liboktetagui.so.5.0.1 lib/libsuperkaramba.so lib/libsuperkaramba.so.5 -lib/libsuperkaramba.so.5.0.0 +lib/libsuperkaramba.so.5.0.1 share/applications/kde4/KCharSelect.desktop share/applications/kde4/KFloppy.desktop share/applications/kde4/ark.desktop @@ -145,8 +146,12 @@ share/doc/HTML/en/kgpg/keyserver.png share/doc/HTML/en/kgpg/kicker.png share/doc/HTML/en/kgpg/options.png share/doc/HTML/en/ktimer/common +share/doc/HTML/en/ktimer/first.png share/doc/HTML/en/ktimer/index.cache.bz2 share/doc/HTML/en/ktimer/index.docbook +share/doc/HTML/en/ktimer/main.png +share/doc/HTML/en/ktimer/running.png +share/doc/HTML/en/ktimer/two.at.once.png share/doc/HTML/en/kwallet/common share/doc/HTML/en/kwallet/edit1.png share/doc/HTML/en/kwallet/edit2.png @@ -176,7 +181,6 @@ share/icons/hicolor/128x128/apps/kwalletmanager.png share/icons/hicolor/128x128/apps/kwalletmanager2.png share/icons/hicolor/128x128/apps/kwikdisk.png share/icons/hicolor/128x128/apps/superkaramba.png -share/icons/hicolor/16x16/apps/kcalc.png share/icons/hicolor/16x16/apps/kdf.png share/icons/hicolor/16x16/apps/kfloppy.png share/icons/hicolor/16x16/apps/kgpg.png @@ -186,14 +190,12 @@ share/icons/hicolor/16x16/apps/kwalletmanager2.png share/icons/hicolor/16x16/apps/kwikdisk.png share/icons/hicolor/16x16/apps/okteta.png share/icons/hicolor/16x16/apps/superkaramba.png -share/icons/hicolor/22x22/apps/kcalc.png share/icons/hicolor/22x22/apps/kdf.png share/icons/hicolor/22x22/apps/kfloppy.png share/icons/hicolor/22x22/apps/kgpg.png share/icons/hicolor/22x22/apps/kwalletmanager.png share/icons/hicolor/22x22/apps/kwikdisk.png share/icons/hicolor/22x22/apps/superkaramba.png -share/icons/hicolor/32x32/apps/kcalc.png share/icons/hicolor/32x32/apps/kdf.png share/icons/hicolor/32x32/apps/kfloppy.png share/icons/hicolor/32x32/apps/kgpg.png @@ -203,7 +205,6 @@ share/icons/hicolor/32x32/apps/kwalletmanager2.png share/icons/hicolor/32x32/apps/kwikdisk.png share/icons/hicolor/32x32/apps/okteta.png share/icons/hicolor/32x32/apps/superkaramba.png -share/icons/hicolor/48x48/apps/kcalc.png share/icons/hicolor/48x48/apps/kdf.png share/icons/hicolor/48x48/apps/kfloppy.png share/icons/hicolor/48x48/apps/kgpg.png @@ -213,26 +214,28 @@ share/icons/hicolor/48x48/apps/kwalletmanager2.png share/icons/hicolor/48x48/apps/kwikdisk.png share/icons/hicolor/48x48/apps/okteta.png share/icons/hicolor/48x48/apps/superkaramba.png -share/icons/hicolor/64x64/apps/kcalc.png share/icons/hicolor/64x64/apps/kdf.png share/icons/hicolor/64x64/apps/kfloppy.png share/icons/hicolor/64x64/apps/kwalletmanager.png share/icons/hicolor/64x64/apps/kwalletmanager2.png share/icons/hicolor/64x64/apps/kwikdisk.png share/icons/hicolor/64x64/apps/superkaramba.png -share/icons/hicolor/scalable/apps/kcalc.svgz share/icons/hicolor/scalable/apps/superkaramba.svgz share/icons/oxygen/16x16/apps/kcmdf.png share/icons/oxygen/22x22/apps/kcmdf.png share/icons/oxygen/32x32/apps/kcmdf.png +share/kde4/services/ServiceMenus/ark_addtoservicemenu.desktop +share/kde4/services/ServiceMenus/ark_servicemenu.desktop share/kde4/services/ServiceMenus/encryptfile.desktop share/kde4/services/ServiceMenus/encryptfolder.desktop share/kde4/services/ServiceMenus/floppy_format.desktop +share/kde4/services/ServiceMenus/viewdecrypted.desktop share/kde4/services/ark_part.desktop share/kde4/services/kbytearrayedit.desktop share/kde4/services/kcmdf.desktop -share/kde4/services/kerfuffle_bk.desktop +share/kde4/services/kerfuffle_7zip.desktop share/kde4/services/kerfuffle_libarchive.desktop +share/kde4/services/kerfuffle_libgz.desktop share/kde4/services/kerfuffle_libzip.desktop share/kde4/services/kerfuffle_rar.desktop share/kde4/services/kwalletconfig.desktop @@ -241,33 +244,6 @@ share/kde4/services/oktetapart.desktop share/kde4/services/plasma-package-superkaramba.desktop share/kde4/services/plasma-scriptengine-superkaramba.desktop share/kde4/servicetypes/kerfufflePlugin.desktop -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services/ServiceMenus -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/oxygen/32x32/apps -@dirrmtry share/icons/oxygen/32x32 -@dirrmtry share/icons/oxygen/22x22/apps -@dirrmtry share/icons/oxygen/22x22 -@dirrmtry share/icons/oxygen/16x16/apps -@dirrmtry share/icons/oxygen/16x16 -@dirrmtry share/icons/oxygen -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons @dirrm share/doc/HTML/en/superkaramba @dirrm share/doc/HTML/en/okteta @dirrm share/doc/HTML/en/kwallet @@ -279,13 +255,6 @@ share/kde4/servicetypes/kerfufflePlugin.desktop @dirrm share/doc/HTML/en/kcharselect @dirrm share/doc/HTML/en/kcalc @dirrm share/doc/HTML/en/ark -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 -@dirrmtry share/config.kcfg -@dirrmtry share/config -@dirrmtry share/autostart @dirrm share/apps/sweeper @dirrm share/apps/superkaramba @dirrm share/apps/oktetapart @@ -316,11 +285,5 @@ share/kde4/servicetypes/kerfufflePlugin.desktop @dirrm share/apps/kgpg @dirrm share/apps/kdf/pics @dirrm share/apps/kdf -@dirrmtry share/apps/kconf_update -@dirrmtry share/apps/kcharselect @dirrm share/apps/kcalc @dirrm share/apps/ark -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/kde4 diff --git a/databases/akonadi/Makefile b/databases/akonadi/Makefile index d3fba1472de9..b754f7958b5c 100644 --- a/databases/akonadi/Makefile +++ b/databases/akonadi/Makefile @@ -5,8 +5,7 @@ # $FreeBSD$ PORTNAME= akonadi -PORTVERSION= 1.0.0 -PORTREVISION= 1 +PORTVERSION= 1.1.1 CATEGORIES= databases kde ipv6 MASTER_SITES= http://akonadi.omat.nl/ DIST_SUBDIR= KDE @@ -14,16 +13,17 @@ DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Storage server for kdepim +LIB_DEPENDS= boost_python:${PORTSDIR}/devel/boost-python BUILD_DEPENDS+= xsltproc:${PORTSDIR}/textproc/libxslt \ - ${LOCALBASE}/lib/qt4/plugins/sqldrivers/libqsqlmysql.so:${PORTSDIR}/databases/qt4-mysql-plugin \ ${LOCALBASE}/bin/mysqld_safe:${PORTSDIR}/databases/mysql${MYSQL_VER}-server RUN_DEPENDS+= update-mime-database:${PORTSDIR}/misc/shared-mime-info \ - ${LOCALBASE}/bin/mysqld_safe:${PORTSDIR}/databases/mysql${MYSQL_VER}-server + ${LOCALBASE}/bin/mysqld_safe:${PORTSDIR}/databases/mysql${MYSQL_VER}-server \ + ${QT_PREFIX}/lib/qt4/plugins/sqldrivers/libqsqlmysql.so:${PORTSDIR}/databases/qt4-mysql-plugin USE_BZIP2= yes USE_QT_VER= 4 USE_XORG= x11 -QT_COMPONENTS= corelib network qtestlib dbus \ +QT_COMPONENTS= corelib network qtestlib dbus sql \ qmake_build moc_build rcc_build uic_build USE_MYSQL= yes USE_KDE4= kdeprefix kdehier automoc4 sharedmime @@ -34,9 +34,6 @@ post-extract: ${MKDIR} ${WRKSRC} post-patch: -#fix finding automoc when PREFIX is not matched KDE4_PREFIX - ${REINPLACE_CMD} -e 's|NO_DEFAULT_PATH|${KDE4_PREFIX} NO_DEFAULT_PATH|' \ - ${WRKSRC}/../cmake/modules/FindAutomoc4.cmake ${REINPLACE_CMD} -e '/akonadi.pc/s|pkgconfig|../libdata/pkgconfig|' \ ${PATCH_WRKSRC}/CMakeLists.txt ${CP} ${PATCH_WRKSRC}/server/src/storage/entities-header.xsl \ @@ -52,7 +49,7 @@ post-patch: ${REINPLACE_CMD} -e 's|include "entities.h"|include <entitiesKDE4.h>|g' \ -e 's|include <entities.h>|include <entitiesKDE4.h>|g' .endfor - ${REINPLACE_CMD} -e 's| MYSQLD_EXECUTABLE mysqld | MYSQLD_EXECUTABLE mysqld_safe /usr/local/bin |g' \ + ${REINPLACE_CMD} -e '/find_program/s|mysqld|mysqld_safe ${LOCALBASE}/bin|g' \ ${PATCH_WRKSRC}/server/CMakeLists.txt #prevent updating mime during build ${REINPLACE_CMD} -e '/^update_xdg_mimetypes/d; /SharedMimeInfo/d' \ diff --git a/databases/akonadi/distinfo b/databases/akonadi/distinfo index 24eb5a0e0ac2..1f98707dea7d 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/akonadi-1.0.0.tar.bz2) = 90039928f818a55a7e2a1bf852a32f2d -SHA256 (KDE/akonadi-1.0.0.tar.bz2) = fab1f59019d277ad461acaa866a520350240927c3c526cbfdebe825cc6be55fd -SIZE (KDE/akonadi-1.0.0.tar.bz2) = 122815 +MD5 (KDE/akonadi-1.1.1.tar.bz2) = 2e98b42cec9ec4e60a2e3c096f1a3106 +SHA256 (KDE/akonadi-1.1.1.tar.bz2) = 7706b9de686a746c0832cd92bd2567114d6257781f3190a9e63a9f5a53d44913 +SIZE (KDE/akonadi-1.1.1.tar.bz2) = 134761 diff --git a/databases/akonadi/pkg-plist b/databases/akonadi/pkg-plist index 34540c408bb6..a66711f37f39 100644 --- a/databases/akonadi/pkg-plist +++ b/databases/akonadi/pkg-plist @@ -9,16 +9,17 @@ include/akonadi/private/protocol_p.h include/akonadi/private/xdgbasedirs_p.h lib/libakonadiprivate.so lib/libakonadiprivate.so.1 -lib/libakonadiprivate.so.1.0.0 +lib/libakonadiprivate.so.1.1.1 lib/libakonadiprotocolinternals.so lib/libakonadiprotocolinternals.so.1 -lib/libakonadiprotocolinternals.so.1.0.0 +lib/libakonadiprotocolinternals.so.1.1.1 libdata/pkgconfig/akonadi.pc share/config/akonadi/mysql-global.conf share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Control.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Status.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.AgentManager.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.ControlManager.xml +share/dbus-1/interfaces/org.freedesktop.Akonadi.DebugInterface.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.NotificationManager.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Resource.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Search.xml @@ -29,13 +30,8 @@ share/dbus-1/interfaces/org.freedesktop.Akonadi.Tracer.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.TracerNotification.xml share/dbus-1/services/org.freedesktop.Akonadi.Control.service share/mime/packages/akonadi-mime.xml -@dirrmtry share/mime/packages -@dirrmtry share/mime -@dirrmtry share/dbus-1/services @dirrm share/config/akonadi -@dirrmtry share/config -@dirrmtry share/pixmaps -@dirrm include/akonadi/private -@dirrm include/akonadi +@dirrmtry include/akonadi/private +@dirrmtry include/akonadi @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 diff --git a/deskutils/kcharselect/Makefile b/deskutils/kcharselect/Makefile index 4b1a79df695a..23a75146b16a 100644 --- a/deskutils/kcharselect/Makefile +++ b/deskutils/kcharselect/Makefile @@ -8,16 +8,15 @@ PORTNAME= kdeutils PORTVERSION= ${KDE4_VERSION} CATEGORIES= misc kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Utilities for the KDE4 integrated X11 Desktop LIB_DEPENDS= gmp.7:${PORTSDIR}/math/libgmp4 \ - netsnmp:${PORTSDIR}/net-mgmt/net-snmp \ - qimageblitz.4:${PORTSDIR}/x11/qimageblitz \ - zip.1:${PORTSDIR}/archivers/libzip + zip.1:${PORTSDIR}/archivers/libzip \ + qimageblitz.4:${PORTSDIR}/x11/qimageblitz RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg LATEST_LINK= ${PORTNAME}4 @@ -25,10 +24,12 @@ LATEST_LINK= ${PORTNAME}4 USE_BZIP2= yes USE_QT_VER= 4 KDE4_BUILDENV= yes -USE_KDE4= kdelibs pimlibs workspace kdeprefix kdehier automoc4 +USE_KDE4= kdelibs pimlibs kdeprefix kdehier automoc4 QT_COMPONENTS= network gui porting xml \ qmake_build moc_build rcc_build uic_build +MAN1= ark.1 + post-extract: ${MKDIR} ${WRKSRC} diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index b32341e6b180..5bf5f73fd46e 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdeutils-4.1.4.tar.bz2) = 542663eeae777978dafab2dcf9d422c2 -SHA256 (KDE/kdeutils-4.1.4.tar.bz2) = fc20381de8df78548a88361dc845624c66eeaa9415c883461ba24b094c81b7df -SIZE (KDE/kdeutils-4.1.4.tar.bz2) = 2285905 +MD5 (KDE/kdeutils-4.2.0.tar.bz2) = f0ca24c7d3e5bb0ab55bf6b26fc6224e +SHA256 (KDE/kdeutils-4.2.0.tar.bz2) = 1b811b5ea12641aa4003dcc97ea19570418e83a909866f78c08a358a1e1a1cfd +SIZE (KDE/kdeutils-4.2.0.tar.bz2) = 2234345 diff --git a/deskutils/kcharselect/files/patch-ark_plugins_libzipplugin-zipplugin.cpp b/deskutils/kcharselect/files/patch-ark_plugins_libzipplugin-zipplugin.cpp index c5e3f75034b6..eb03ee5e2287 100644 --- a/deskutils/kcharselect/files/patch-ark_plugins_libzipplugin-zipplugin.cpp +++ b/deskutils/kcharselect/files/patch-ark_plugins_libzipplugin-zipplugin.cpp @@ -1,13 +1,13 @@ ---- ../ark/plugins/libzipplugin/zipplugin.cpp.orig 2008-08-30 13:07:45.000000000 +0400 -+++ ../ark/plugins/libzipplugin/zipplugin.cpp 2008-08-30 13:12:59.000000000 +0400 -@@ -30,8 +30,8 @@ - //usually compiled with off_t to 32bit. in the long run libzip should be - //compiled according to bugs.kde.org bug #167018 - //but for now this will probably do +--- ../ark/plugins/libzipplugin/zipplugin.cpp.orig 2008-12-10 16:13:03.000000000 +0000 ++++ ../ark/plugins/libzipplugin/zipplugin.cpp 2008-12-29 22:16:13.000000000 +0000 +@@ -28,8 +28,8 @@ + + #ifdef LIBZIP_COMPILED_WITH_32BIT_OFF_T + -#define __off_t_defined -typedef quint32 off_t; +// #define __off_t_defined +// typedef quint32 off_t; - #include "kerfuffle/archiveinterface.h" - #include "kerfuffle/archivefactory.h" + #endif /* LIBZIP_COMPILED_WITH_32BIT_OFF_T */ + diff --git a/deskutils/kcharselect/pkg-plist b/deskutils/kcharselect/pkg-plist index 1f32022c99f9..03f698c23b80 100644 --- a/deskutils/kcharselect/pkg-plist +++ b/deskutils/kcharselect/pkg-plist @@ -13,8 +13,9 @@ bin/superkaramba bin/sweeper lib/kde4/kcm_kdf.so lib/kde4/kcm_kwallet.so -lib/kde4/kerfuffle_bk.so +lib/kde4/kerfuffle_7zip.so lib/kde4/kerfuffle_libarchive.so +lib/kde4/kerfuffle_libgz.so lib/kde4/kerfuffle_libzip.so lib/kde4/kerfuffle_rar.so lib/kde4/libarkpart.so @@ -25,16 +26,16 @@ lib/kde4/plasma_scriptengine_superkaramba.so lib/libkdeinit4_kcalc.so lib/libkerfuffle.so lib/libkerfuffle.so.5 -lib/libkerfuffle.so.5.0.0 +lib/libkerfuffle.so.5.0.1 lib/liboktetacore.so lib/liboktetacore.so.5 -lib/liboktetacore.so.5.0.0 +lib/liboktetacore.so.5.0.1 lib/liboktetagui.so lib/liboktetagui.so.5 -lib/liboktetagui.so.5.0.0 +lib/liboktetagui.so.5.0.1 lib/libsuperkaramba.so lib/libsuperkaramba.so.5 -lib/libsuperkaramba.so.5.0.0 +lib/libsuperkaramba.so.5.0.1 share/applications/kde4/KCharSelect.desktop share/applications/kde4/KFloppy.desktop share/applications/kde4/ark.desktop @@ -145,8 +146,12 @@ share/doc/HTML/en/kgpg/keyserver.png share/doc/HTML/en/kgpg/kicker.png share/doc/HTML/en/kgpg/options.png share/doc/HTML/en/ktimer/common +share/doc/HTML/en/ktimer/first.png share/doc/HTML/en/ktimer/index.cache.bz2 share/doc/HTML/en/ktimer/index.docbook +share/doc/HTML/en/ktimer/main.png +share/doc/HTML/en/ktimer/running.png +share/doc/HTML/en/ktimer/two.at.once.png share/doc/HTML/en/kwallet/common share/doc/HTML/en/kwallet/edit1.png share/doc/HTML/en/kwallet/edit2.png @@ -176,7 +181,6 @@ share/icons/hicolor/128x128/apps/kwalletmanager.png share/icons/hicolor/128x128/apps/kwalletmanager2.png share/icons/hicolor/128x128/apps/kwikdisk.png share/icons/hicolor/128x128/apps/superkaramba.png -share/icons/hicolor/16x16/apps/kcalc.png share/icons/hicolor/16x16/apps/kdf.png share/icons/hicolor/16x16/apps/kfloppy.png share/icons/hicolor/16x16/apps/kgpg.png @@ -186,14 +190,12 @@ share/icons/hicolor/16x16/apps/kwalletmanager2.png share/icons/hicolor/16x16/apps/kwikdisk.png share/icons/hicolor/16x16/apps/okteta.png share/icons/hicolor/16x16/apps/superkaramba.png -share/icons/hicolor/22x22/apps/kcalc.png share/icons/hicolor/22x22/apps/kdf.png share/icons/hicolor/22x22/apps/kfloppy.png share/icons/hicolor/22x22/apps/kgpg.png share/icons/hicolor/22x22/apps/kwalletmanager.png share/icons/hicolor/22x22/apps/kwikdisk.png share/icons/hicolor/22x22/apps/superkaramba.png -share/icons/hicolor/32x32/apps/kcalc.png share/icons/hicolor/32x32/apps/kdf.png share/icons/hicolor/32x32/apps/kfloppy.png share/icons/hicolor/32x32/apps/kgpg.png @@ -203,7 +205,6 @@ share/icons/hicolor/32x32/apps/kwalletmanager2.png share/icons/hicolor/32x32/apps/kwikdisk.png share/icons/hicolor/32x32/apps/okteta.png share/icons/hicolor/32x32/apps/superkaramba.png -share/icons/hicolor/48x48/apps/kcalc.png share/icons/hicolor/48x48/apps/kdf.png share/icons/hicolor/48x48/apps/kfloppy.png share/icons/hicolor/48x48/apps/kgpg.png @@ -213,26 +214,28 @@ share/icons/hicolor/48x48/apps/kwalletmanager2.png share/icons/hicolor/48x48/apps/kwikdisk.png share/icons/hicolor/48x48/apps/okteta.png share/icons/hicolor/48x48/apps/superkaramba.png -share/icons/hicolor/64x64/apps/kcalc.png share/icons/hicolor/64x64/apps/kdf.png share/icons/hicolor/64x64/apps/kfloppy.png share/icons/hicolor/64x64/apps/kwalletmanager.png share/icons/hicolor/64x64/apps/kwalletmanager2.png share/icons/hicolor/64x64/apps/kwikdisk.png share/icons/hicolor/64x64/apps/superkaramba.png -share/icons/hicolor/scalable/apps/kcalc.svgz share/icons/hicolor/scalable/apps/superkaramba.svgz share/icons/oxygen/16x16/apps/kcmdf.png share/icons/oxygen/22x22/apps/kcmdf.png share/icons/oxygen/32x32/apps/kcmdf.png +share/kde4/services/ServiceMenus/ark_addtoservicemenu.desktop +share/kde4/services/ServiceMenus/ark_servicemenu.desktop share/kde4/services/ServiceMenus/encryptfile.desktop share/kde4/services/ServiceMenus/encryptfolder.desktop share/kde4/services/ServiceMenus/floppy_format.desktop +share/kde4/services/ServiceMenus/viewdecrypted.desktop share/kde4/services/ark_part.desktop share/kde4/services/kbytearrayedit.desktop share/kde4/services/kcmdf.desktop -share/kde4/services/kerfuffle_bk.desktop +share/kde4/services/kerfuffle_7zip.desktop share/kde4/services/kerfuffle_libarchive.desktop +share/kde4/services/kerfuffle_libgz.desktop share/kde4/services/kerfuffle_libzip.desktop share/kde4/services/kerfuffle_rar.desktop share/kde4/services/kwalletconfig.desktop @@ -241,33 +244,6 @@ share/kde4/services/oktetapart.desktop share/kde4/services/plasma-package-superkaramba.desktop share/kde4/services/plasma-scriptengine-superkaramba.desktop share/kde4/servicetypes/kerfufflePlugin.desktop -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services/ServiceMenus -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/oxygen/32x32/apps -@dirrmtry share/icons/oxygen/32x32 -@dirrmtry share/icons/oxygen/22x22/apps -@dirrmtry share/icons/oxygen/22x22 -@dirrmtry share/icons/oxygen/16x16/apps -@dirrmtry share/icons/oxygen/16x16 -@dirrmtry share/icons/oxygen -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons @dirrm share/doc/HTML/en/superkaramba @dirrm share/doc/HTML/en/okteta @dirrm share/doc/HTML/en/kwallet @@ -279,13 +255,6 @@ share/kde4/servicetypes/kerfufflePlugin.desktop @dirrm share/doc/HTML/en/kcharselect @dirrm share/doc/HTML/en/kcalc @dirrm share/doc/HTML/en/ark -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 -@dirrmtry share/config.kcfg -@dirrmtry share/config -@dirrmtry share/autostart @dirrm share/apps/sweeper @dirrm share/apps/superkaramba @dirrm share/apps/oktetapart @@ -316,11 +285,5 @@ share/kde4/servicetypes/kerfufflePlugin.desktop @dirrm share/apps/kgpg @dirrm share/apps/kdf/pics @dirrm share/apps/kdf -@dirrmtry share/apps/kconf_update -@dirrmtry share/apps/kcharselect @dirrm share/apps/kcalc @dirrm share/apps/ark -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/kde4 diff --git a/deskutils/kdepim4/Makefile b/deskutils/kdepim4/Makefile index f2338d0ccca3..e7b240153c85 100644 --- a/deskutils/kdepim4/Makefile +++ b/deskutils/kdepim4/Makefile @@ -6,10 +6,9 @@ PORTNAME= kdepim PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde ipv6 MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org @@ -20,7 +19,8 @@ LIB_DEPENDS= gpgme:${PORTSDIR}/security/gpgme \ sasl2:${PORTSDIR}/security/cyrus-sasl2 \ boost_python:${PORTSDIR}/devel/boost-python \ mal.1:${PORTSDIR}/palm/libmal \ - pisock.9:${PORTSDIR}/palm/pilot-link + pisock.9:${PORTSDIR}/palm/pilot-link \ + qca.2:${PORTSDIR}/devel/qca LATEST_LINK= ${PORTNAME}4 @@ -32,8 +32,13 @@ QT_COMPONENTS= corelib opengl dbus qt3support designer network svg qtestlib \ qmake_build moc_build rcc_build uic_build USE_OPENLDAP= yes -OPTIONS= GNOKII "KAdressbook import/export for Nokia phones" off \ - KITCHENSYNC "PIM synchronization utility" off +#fix build when kdepim3 is here +CMAKE_ARGS+= -DGPGME_LIBRARY_DIR:PATH="${KDE4_PREFIX}/lib" + +MAN1= kabcclient.1 + +OPTIONS= GNOKII "KAdressbook import/export for Nokia phones" off +# KITCHENSYNC "PIM synchronization utility" off .include <bsd.port.pre.mk> @@ -45,15 +50,21 @@ CMAKE_ARGS+= -DWITH_GNOKII:BOOL=off PLIST_SUB+= GNOKII="@comment " .endif -.if defined(WITH_KITCHENSYNC) -LIB_DEPENDS+= opensync.1:${PORTSDIR}/devel/libopensync -PLIST_SUB+= KITCHENSYNC="" -.else -CMAKE_ARGS+= -DWITH_Opensync:BOOL=off -PLIST_SUB+= KITCHENSYNC="@comment " -.endif +# kitchensync is disabled in KDE 4.2 +# .if defined(WITH_KITCHENSYNC) +# LIB_DEPENDS+= opensync.1:${PORTSDIR}/devel/libopensync +# PLIST_SUB+= KITCHENSYNC="" +# .else +# CMAKE_ARGS+= -DWITH_Opensync:BOOL=off +# PLIST_SUB+= KITCHENSYNC="@comment " +# .endif post-extract: ${MKDIR} ${WRKSRC} +pre-configure: + #respect prefix + ${FIND} ${WRKSRC}/.. -type f -name CMakeLists.txt | ${XARGS} \ + ${REINPLACE_CMD} -e '/^install/s,KDE4_DBUS_INTERFACES_DIR,DBUS_INTERFACES_INSTALL_DIR,g' + .include <bsd.port.post.mk> diff --git a/deskutils/kdepim4/distinfo b/deskutils/kdepim4/distinfo index 77ab72de87e6..45abad85ea51 100644 --- a/deskutils/kdepim4/distinfo +++ b/deskutils/kdepim4/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdepim-4.1.4.tar.bz2) = 297ffe93343bc0dd62c7d90feae0ee6c -SHA256 (KDE/kdepim-4.1.4.tar.bz2) = 0e8b1d68975a4e898d2e1794d6f63360e9178af7e9d689501166e7153cc2c11c -SIZE (KDE/kdepim-4.1.4.tar.bz2) = 13465584 +MD5 (KDE/kdepim-4.2.0.tar.bz2) = a80631de21930b2544c86722138aaa6c +SHA256 (KDE/kdepim-4.2.0.tar.bz2) = 20f4f22bc9284cefd9c196ba7636c68992c615a976050f43169dd108ebd63788 +SIZE (KDE/kdepim-4.2.0.tar.bz2) = 13549914 diff --git a/deskutils/kdepim4/files/patch-kmail_accountmanager.cpp b/deskutils/kdepim4/files/patch-kmail_accountmanager.cpp deleted file mode 100644 index 6d6c1e53e6bf..000000000000 --- a/deskutils/kdepim4/files/patch-kmail_accountmanager.cpp +++ /dev/null @@ -1,131 +0,0 @@ ---- ../kmail/accountmanager.cpp 2009/01/20 11:56:48 914004 -+++ ../kmail/accountmanager.cpp 2009/01/20 12:11:59 914005 -@@ -39,88 +39,68 @@ - qDeleteAll(mAcctList); - } - -+//----------------------------------------------------------------------------- -+QStringList AccountManager::accountGroups() const -+{ -+ return KMKernel::config()->groupList().filter( QRegExp( "Account \\d+" ) ); -+} - - //----------------------------------------------------------------------------- - void AccountManager::writeConfig( bool withSync ) - { - KConfig* config = KMKernel::config(); - -- // Delete all accounts for groups in the config file not having -- // Enabled=false flag (accountGroups) -- // and replace them with account groups existing in memory (mAcctList) -- uint accounts = 0; -- QStringList accountGroups = -- config->groupList().filter( QRegExp( "Account \\d+" ) ); -- AccountList::ConstIterator enabledAccountIt = mAcctList.constBegin(); -- for ( QStringList::ConstIterator it = accountGroups.constBegin() ;; ) { -- QString groupName; -- bool appendNewGroup = false; -- if ( it == accountGroups.constEnd() ) { -- if ( enabledAccountIt == mAcctList.constEnd() ) -- break; -- appendNewGroup = true; -- groupName.sprintf( "Account %d", accounts + 1 ); -- } -- else { -- groupName = *it; -- ++it; -- } -+ QStringList accountGroupsInConfig = accountGroups(); -+ QStringList accountGroupsToKeep; - -- KConfigGroup group(config, groupName); -- uint id = group.readEntry( "Id", 0 ); -- if ( mDisabledAccounts.contains( id ) ) -- accounts++; // do not modify disabled account - skip -- else { -- if ( appendNewGroup ) { -- (*enabledAccountIt)->writeConfig( group ); -- ++enabledAccountIt; -- accounts++; -- } -- else // no such account on the list - disabled / enabled -- config->deleteGroup( groupName ); -- } -+ // Write all account config groups to the config file and remember -+ // the config group names -+ foreach( KMAccount *account, mAcctList ) { -+ uint accountId = account->id(); -+ QString groupName = QString( "Account %1" ).arg( accountId ); -+ accountGroupsToKeep += groupName; -+ KConfigGroup group( config, groupName ); -+ account->writeConfig( group ); - } - -- KConfigGroup group(config, "General"); -- group.writeEntry("accounts", accounts); -+ // Now, delete all config groups with "Account" in them which don't -+ // belong to the accounts we just saved (these are deleted accounts, then -+ // NOTE: This has to be done _after_ writing out the accounts, otherwise -+ // there is the risk of data loss, see bug 169166 -+ foreach( const QString &groupName, accountGroupsInConfig ) { -+ if ( !accountGroupsToKeep.contains( groupName ) ) -+ config->deleteGroup( groupName ); -+ } - -- if (withSync) config->sync(); -+ if ( withSync ) -+ config->sync(); - } - - - //----------------------------------------------------------------------------- - void AccountManager::readConfig(void) - { -- KConfig* config = KMKernel::config(); -- KMAccount* acct; -- QString acctName; -- QString groupName; -- int i, num; -- -+ // Delete all in-memory accounts - for ( AccountList::Iterator it( mAcctList.begin() ), end( mAcctList.end() ); it != end; ++it ) - delete *it; - mAcctList.clear(); - -- KConfigGroup general(config, "General"); -- num = general.readEntry( "accounts", 0 ); -- -- for (i=1; i<=num; i++) -- { -- groupName.sprintf("Account %d", i); -- KConfigGroup group(config, groupName); -+ // Now loop over all account groups and load the accounts in them -+ KConfig* config = KMKernel::config(); -+ QStringList accountGroupNames = accountGroups(); -+ int accountNum = 1; -+ foreach( const QString &accountGroupName, accountGroupNames ) { -+ KConfigGroup group( config, accountGroupName ); - uint id = group.readEntry( "Id", 0 ); -- if ( !group.readEntry("Enabled", true) ) { -- mDisabledAccounts += id; -- continue; -- } -- - KAccount::Type acctType = KAccount::typeForName( group.readEntry( "Type" ) ); -- acctName = group.readEntry("Name"); -- if (acctName.isEmpty()) acctName = i18n("Account %1", i); -- acct = create(acctType, acctName, id); -- if (!acct) continue; -- add(acct); -- acct->readConfig(group); -+ QString accountName = group.readEntry( "Name" ); -+ if ( accountName.isEmpty() ) -+ accountName = i18n( "Account %1", accountNum++ ); -+ KMAccount *account = create( acctType, accountName, id ); -+ if ( !account ) -+ continue; -+ add( account ); -+ account->readConfig( group ); - } - } - diff --git a/deskutils/kdepim4/files/patch-kmail_accountmanager.h b/deskutils/kdepim4/files/patch-kmail_accountmanager.h deleted file mode 100644 index af0d5132723b..000000000000 --- a/deskutils/kdepim4/files/patch-kmail_accountmanager.h +++ /dev/null @@ -1,39 +0,0 @@ ---- ../kmail/accountmanager.h 2009/01/20 11:56:48 914004 -+++ ../kmail/accountmanager.h 2009/01/20 12:11:59 914005 -@@ -80,13 +80,6 @@ - KMAccount *find( const uint id ) const; - - /** -- @return true if account with ID @p id is enabled. -- Accounts can be disabled by setting "enabled" flag to false -- in "Account #" groups of kmailrc. -- */ -- bool isEnabled( const uint id ) const { return !mDisabledAccounts.contains(id); } -- -- /** - Physically remove account. Also deletes the given account object ! - Returns false and does nothing if the account cannot be removed. - */ -@@ -163,6 +156,12 @@ - */ - uint createId(); - -+ /** -+ * Return a list of config group names of all config groups that store -+ * receiving accounts. -+ */ -+ QStringList accountGroups() const; -+ - AccountList mAcctList; - AccountList::Iterator mPtrListInterfaceProxyIterator; - AccountList mAcctChecking; -@@ -176,9 +175,6 @@ - - // if a summary should be displayed - bool mDisplaySummary; -- -- // IDs of disabled accounts, used in AccountManager::writeConfig() -- QSet<uint> mDisabledAccounts; - }; - - } // namespace KMail diff --git a/deskutils/kdepim4/files/patch-kmail_kmkernel.cpp b/deskutils/kdepim4/files/patch-kmail_kmkernel.cpp deleted file mode 100644 index e561b7a9a5f9..000000000000 --- a/deskutils/kdepim4/files/patch-kmail_kmkernel.cpp +++ /dev/null @@ -1,12 +0,0 @@ ---- ../kmail/kmkernel.cpp 2009/01/20 11:56:48 914004 -+++ ../kmail/kmkernel.cpp 2009/01/20 12:11:59 914005 -@@ -1480,8 +1480,7 @@ - { - KMFolderNode *node = *it; - if (node->isDir() || ((acct = the_acctMgr->find(node->id())) -- && ( acct->type() == KAccount::Imap )) -- || !the_acctMgr->isEnabled( node->id() )) -+ && ( acct->type() == KAccount::Imap ))) - { - ++it; - } else { diff --git a/deskutils/kdepim4/files/patch-kpilot_conduits_todo-todoconduit.cc b/deskutils/kdepim4/files/patch-kpilot_conduits_todo-todoconduit.cc new file mode 100644 index 000000000000..2ccddb36fd90 --- /dev/null +++ b/deskutils/kdepim4/files/patch-kpilot_conduits_todo-todoconduit.cc @@ -0,0 +1,10 @@ +--- ../kpilot/conduits/todo/todoconduit.cc 2009/01/24 05:11:42 915906 ++++ ../kpilot/conduits/todo/todoconduit.cc 2009/01/24 05:19:21 915907 +@@ -68,6 +68,7 @@ + + TodoSettings::self()->readConfig(); + d->fCollectionId = TodoSettings::akonadiCollection(); ++ d->fPrevCollectionId = TodoSettings::prevAkonadiCollection(); + } + + bool TodoConduit::initDataProxies() diff --git a/deskutils/kdepim4/pkg-plist b/deskutils/kdepim4/pkg-plist index 7f6996b523c6..b68e8a57a049 100644 --- a/deskutils/kdepim4/pkg-plist +++ b/deskutils/kdepim4/pkg-plist @@ -1,3 +1,4 @@ +bin/akonadi_distlist_resource bin/akonadi_ical_resource bin/akonadi_imaplib_resource bin/akonadi_kabc_resource @@ -8,9 +9,11 @@ bin/akonadi_maildir_resource bin/akonadi_mailthreader_agent bin/akonadi_nepomuk_contact_feeder bin/akonadi_nepomuk_email_feeder +bin/akonadi_nepomuktag_resource bin/akonadi_nntp_resource bin/akonadi_strigi_feeder bin/akonadi_vcard_resource +bin/akonadi_vcarddir_resource bin/akonadiconsole bin/akonaditray bin/akregator @@ -20,12 +23,12 @@ bin/groupwisewizard bin/ical2vcal bin/kabc2mutt bin/kabcclient +bin/kabcdistlistupdater bin/kaddressbook bin/kalarm bin/kalarmautostart bin/karm bin/kgpgconf -%%KITCHENSYNC%%bin/kitchensync bin/kjots bin/kleopatra bin/kmail @@ -42,8 +45,11 @@ bin/konsolekalendar bin/kontact bin/korgac bin/korganizer +bin/kpilot +bin/kpilotDaemon +bin/kres-migrator +bin/ksendemail bin/ktimetracker -bin/ktnefviewer bin/kung bin/kwatchgnupg bin/kwsdl_compiler @@ -53,7 +59,6 @@ bin/scalixadmin bin/scalixwizard bin/schematest bin/sloxwizard -bin/thememain include/akregator/akregator_export.h include/akregator/article.h include/akregator/command.h @@ -126,6 +131,20 @@ include/kpgp/kpgpblock.h include/kpgp/kpgpkey.h include/kpgp/kpgpui.h include/kpgp/libkpgp_export.h +include/kpilot/kpilot_export.h +include/kpilot/kpilotdevicelink.h +include/kpilot/kpilotlink.h +include/kpilot/kpilotlocallink.h +include/kpilot/options.h +include/kpilot/pilot.h +include/kpilot/pilotDatabase.h +include/kpilot/pilotLinkVersion.h +include/kpilot/pilotLocalDatabase.h +include/kpilot/pilotRecord.h +include/kpilot/pilotSerialDatabase.h +include/kpilot/plugin.h +include/kpilot/pluginfactory.h +include/kpilot/syncAction.h include/ksieve/error.h include/ksieve/lexer.h include/ksieve/libksieve_export.h @@ -139,6 +158,7 @@ include/libkleopatraclient/gui/certificaterequester.h include/libkleopatraclient/kleopatraclient_export.h lib/kde4/akonadi_serializer_addressee.so lib/kde4/akonadi_serializer_bookmark.so +lib/kde4/akonadi_serializer_contactgroup.so lib/kde4/akonadi_serializer_kcal.so lib/kde4/akonadi_serializer_mail.so lib/kde4/akregator_config_advanced.so @@ -177,7 +197,6 @@ lib/kde4/kaddressbookpart.so lib/kde4/kalarm_local.so lib/kde4/kalarm_localdir.so lib/kde4/kalarm_remote.so -lib/kde4/karmpart.so lib/kde4/kcal_akonadi.so lib/kde4/kcal_blog.so lib/kde4/kcal_groupdav.so @@ -189,7 +208,9 @@ lib/kde4/kcal_resourcefeatureplan_plugin.so lib/kde4/kcal_scalix.so lib/kde4/kcal_slox.so lib/kde4/kcal_xmlrpc.so +lib/kde4/kcm_akonadi.so lib/kde4/kcm_akonadi_resources.so +lib/kde4/kcm_akonadi_server.so lib/kde4/kcm_apptsummary.so lib/kde4/kcm_kabconfig.so lib/kde4/kcm_kabcustomfields.so @@ -201,13 +222,14 @@ lib/kde4/kcm_knode.so lib/kde4/kcm_kontact.so lib/kde4/kcm_kontactsummary.so lib/kde4/kcm_korganizer.so +lib/kde4/kcm_kpilot.so lib/kde4/kcm_ktimetrackerconfig.so +lib/kde4/kcm_planner.so lib/kde4/kcm_sdsummary.so lib/kde4/kcm_todosummary.so lib/kde4/kio_akonadi.so lib/kde4/kio_groupwise.so lib/kde4/kio_scalix.so -%%KITCHENSYNC%%lib/kde4/kitchensyncpart.so lib/kde4/kjotspart.so lib/kde4/kmail_bodypartformatter_application_octetstream.so lib/kde4/kmail_bodypartformatter_text_calendar.so @@ -222,12 +244,13 @@ lib/kde4/knotes_xmlrpc.so lib/kde4/kontact_akregatorplugin.so lib/kde4/kontact_journalplugin.so lib/kde4/kontact_kaddressbookplugin.so -lib/kde4/kontact_karmplugin.so lib/kde4/kontact_kjotsplugin.so lib/kde4/kontact_kmailplugin.so lib/kde4/kontact_knodeplugin.so lib/kde4/kontact_knotesplugin.so lib/kde4/kontact_korganizerplugin.so +lib/kde4/kontact_ktimetrackerplugin.so +lib/kde4/kontact_plannerplugin.so lib/kde4/kontact_specialdatesplugin.so lib/kde4/kontact_summaryplugin.so lib/kde4/kontact_todoplugin.so @@ -239,187 +262,187 @@ lib/kde4/korg_thisdayinhistory.so lib/kde4/korg_yearprint.so lib/kde4/korganizerpart.so lib/kde4/kpartsdesignerplugin.so +lib/kde4/kpilot_conduit_calendar.so +lib/kde4/kpilot_conduit_contacts.so +lib/kde4/kpilot_conduit_memofile.so +lib/kde4/kpilot_conduit_time.so +lib/kde4/kpilot_conduit_todo.so lib/kde4/ktexteditorkabcbridge.so +lib/kde4/ktimetrackerpart.so lib/kde4/ldifvcardthumbnail.so lib/kde4/plugins/designer/kdepimwidgets.so -lib/libakonadi-kabc.so -lib/libakonadi-kabc.so.5 -lib/libakonadi-kabc.so.5.0.0 +lib/libakonadi-kabccommon.so +lib/libakonadi-kabccommon.so.5 +lib/libakonadi-kabccommon.so.5.0.1 lib/libakonadi-kcal.so lib/libakonadi-kcal.so.5 -lib/libakonadi-kcal.so.5.0.0 +lib/libakonadi-kcal.so.5.0.1 lib/libakregatorinterfaces.so lib/libakregatorinterfaces.so.5 -lib/libakregatorinterfaces.so.5.0.0 -lib/libakregatorprivate.so +lib/libakregatorinterfaces.so.5.0.1 lib/libakregatorprivate.so.5 -lib/libakregatorprivate.so.5.0.0 +lib/libakregatorprivate.so.5.0.1 lib/libgwsoap.so lib/libgwsoap.so.5 -lib/libgwsoap.so.5.0.0 +lib/libgwsoap.so.5.0.1 lib/libimap.so lib/libimap.so.5 -lib/libimap.so.5.0.0 +lib/libimap.so.5.0.1 lib/libkabc_groupdav.so lib/libkabc_groupdav.so.5 -lib/libkabc_groupdav.so.5.0.0 +lib/libkabc_groupdav.so.5.0.1 lib/libkabc_slox.so lib/libkabc_slox.so.5 -lib/libkabc_slox.so.5.0.0 +lib/libkabc_slox.so.5.0.1 lib/libkabc_xmlrpc.so lib/libkabc_xmlrpc.so.5 -lib/libkabc_xmlrpc.so.5.0.0 +lib/libkabc_xmlrpc.so.5.0.1 lib/libkabcgroupwise.so lib/libkabcgroupwise.so.5 -lib/libkabcgroupwise.so.5.0.0 +lib/libkabcgroupwise.so.5.0.1 lib/libkabckolab.so lib/libkabckolab.so.5 -lib/libkabckolab.so.5.0.0 +lib/libkabckolab.so.5.0.1 lib/libkabcommon.so lib/libkabcommon.so.5 -lib/libkabcommon.so.5.0.0 +lib/libkabcommon.so.5.0.1 lib/libkabcscalix.so lib/libkabcscalix.so.5 -lib/libkabcscalix.so.5.0.0 +lib/libkabcscalix.so.5.0.1 lib/libkabinterfaces.so lib/libkabinterfaces.so.5 -lib/libkabinterfaces.so.5.0.0 -lib/libkaddressbookprivate.so +lib/libkabinterfaces.so.5.0.1 lib/libkaddressbookprivate.so.5 -lib/libkaddressbookprivate.so.5.0.0 +lib/libkaddressbookprivate.so.5.0.1 lib/libkalarm_resources.so lib/libkalarm_resources.so.5 -lib/libkalarm_resources.so.5.0.0 +lib/libkalarm_resources.so.5.0.1 lib/libkcal_groupdav.so lib/libkcal_groupdav.so.5 -lib/libkcal_groupdav.so.5.0.0 +lib/libkcal_groupdav.so.5.0.1 lib/libkcal_resourceblog.so lib/libkcal_resourceblog.so.5 -lib/libkcal_resourceblog.so.5.0.0 +lib/libkcal_resourceblog.so.5.0.1 lib/libkcal_resourcefeatureplan.so lib/libkcal_resourcefeatureplan.so.5 -lib/libkcal_resourcefeatureplan.so.5.0.0 +lib/libkcal_resourcefeatureplan.so.5.0.1 lib/libkcal_resourceremote.so lib/libkcal_resourceremote.so.5 -lib/libkcal_resourceremote.so.5.0.0 +lib/libkcal_resourceremote.so.5.0.1 lib/libkcal_slox.so lib/libkcal_slox.so.5 -lib/libkcal_slox.so.5.0.0 +lib/libkcal_slox.so.5.0.1 lib/libkcal_xmlrpc.so lib/libkcal_xmlrpc.so.5 -lib/libkcal_xmlrpc.so.5.0.0 +lib/libkcal_xmlrpc.so.5.0.1 lib/libkcalgroupwise.so lib/libkcalgroupwise.so.5 -lib/libkcalgroupwise.so.5.0.0 +lib/libkcalgroupwise.so.5.0.1 lib/libkcalkolab.so lib/libkcalkolab.so.5 -lib/libkcalkolab.so.5.0.0 +lib/libkcalkolab.so.5.0.1 lib/libkcalscalix.so lib/libkcalscalix.so.5 -lib/libkcalscalix.so.5.0.0 +lib/libkcalscalix.so.5.0.1 lib/libkdepim.so lib/libkdepim.so.5 -lib/libkdepim.so.5.0.0 +lib/libkdepim.so.5.0.1 lib/libkgroupwarebase.so lib/libkgroupwarebase.so.5 -lib/libkgroupwarebase.so.5.0.0 +lib/libkgroupwarebase.so.5.0.1 lib/libkgroupwaredav.so lib/libkgroupwaredav.so.5 -lib/libkgroupwaredav.so.5.0.0 +lib/libkgroupwaredav.so.5.0.1 lib/libkholidays.so lib/libkholidays.so.5 -lib/libkholidays.so.5.0.0 -%%KITCHENSYNC%%lib/libkitchensyncprivate.so -%%KITCHENSYNC%%lib/libkitchensyncprivate.so.5 -%%KITCHENSYNC%%lib/libkitchensyncprivate.so.5.0.0 +lib/libkholidays.so.5.0.1 lib/libkleo.so lib/libkleo.so.5 -lib/libkleo.so.5.0.0 +lib/libkleo.so.5.0.1 lib/libkleopatraclientcore.so -lib/libkleopatraclientcore.so.0.2.0 +lib/libkleopatraclientcore.so.0.2.1 lib/libkleopatraclientgui.so -lib/libkleopatraclientgui.so.0.2.0 -lib/libkmailprivate.so +lib/libkleopatraclientgui.so.0.2.1 lib/libkmailprivate.so.5 -lib/libkmailprivate.so.5.0.0 +lib/libkmailprivate.so.5.0.1 lib/libknodecommon.so lib/libknodecommon.so.5 -lib/libknodecommon.so.5.0.0 +lib/libknodecommon.so.5.0.1 lib/libknotes_xmlrpc.so lib/libknotes_xmlrpc.so.5 -lib/libknotes_xmlrpc.so.5.0.0 +lib/libknotes_xmlrpc.so.5.0.1 lib/libknoteskolab.so lib/libknoteskolab.so.5 -lib/libknoteskolab.so.5.0.0 +lib/libknoteskolab.so.5.0.1 lib/libknotesscalix.so lib/libknotesscalix.so.5 -lib/libknotesscalix.so.5.0.0 +lib/libknotesscalix.so.5.0.1 lib/libkocorehelper.so lib/libkocorehelper.so.5 -lib/libkocorehelper.so.5.0.0 +lib/libkocorehelper.so.5.0.1 lib/libkode.so lib/libkode.so.5 -lib/libkode.so.5.0.0 +lib/libkode.so.5.0.1 lib/libkontactinterfaces.so lib/libkontactinterfaces.so.5 -lib/libkontactinterfaces.so.5.0.0 -lib/libkontactprivate.so +lib/libkontactinterfaces.so.5.0.1 lib/libkontactprivate.so.5 -lib/libkontactprivate.so.5.0.0 +lib/libkontactprivate.so.5.0.1 lib/libkorg_stdprinting.so lib/libkorg_stdprinting.so.5 -lib/libkorg_stdprinting.so.5.0.0 +lib/libkorg_stdprinting.so.5.0.1 lib/libkorganizer_calendar.so lib/libkorganizer_calendar.so.5 -lib/libkorganizer_calendar.so.5.0.0 +lib/libkorganizer_calendar.so.5.0.1 lib/libkorganizer_eventviewer.so lib/libkorganizer_eventviewer.so.5 -lib/libkorganizer_eventviewer.so.5.0.0 +lib/libkorganizer_eventviewer.so.5.0.1 lib/libkorganizer_interfaces.so lib/libkorganizer_interfaces.so.5 -lib/libkorganizer_interfaces.so.5.0.0 -lib/libkorganizerprivate.so +lib/libkorganizer_interfaces.so.5.0.1 lib/libkorganizerprivate.so.5 -lib/libkorganizerprivate.so.5.0.0 +lib/libkorganizerprivate.so.5.0.1 lib/libkpgp.so lib/libkpgp.so.5 -lib/libkpgp.so.5.0.0 +lib/libkpgp.so.5.0.1 +lib/libkpilot.so +lib/libkpilot.so.5 +lib/libkpilot.so.5.0.1 +lib/libkpilot_akonadibase.so +lib/libkpilot_conduit_base.so lib/libkschema.so lib/libkschema.so.5 -lib/libkschema.so.5.0.0 +lib/libkschema.so.5.0.1 lib/libkschemawidgets.so lib/libkschemawidgets.so.5 -lib/libkschemawidgets.so.5.0.0 +lib/libkschemawidgets.so.5.0.1 lib/libksieve.so lib/libksieve.so.5 -lib/libksieve.so.5.0.0 +lib/libksieve.so.5.0.1 lib/libkslox.so lib/libkslox.so.5 -lib/libkslox.so.5.0.0 +lib/libkslox.so.5.0.1 lib/libkxmlcommon.so lib/libkxmlcommon.so.5 -lib/libkxmlcommon.so.5.0.0 +lib/libkxmlcommon.so.5.0.1 lib/libmaildir.so lib/libmaildir.so.5 -lib/libmaildir.so.5.0.0 +lib/libmaildir.so.5.0.1 lib/libmimelib.so lib/libmimelib.so.5 -lib/libmimelib.so.5.0.0 -%%KITCHENSYNC%%lib/libqopensync.so -%%KITCHENSYNC%%lib/libqopensync.so.5 -%%KITCHENSYNC%%lib/libqopensync.so.5.0.0 +lib/libmimelib.so.5.0.1 lib/libschema.so lib/libschema.so.5 -lib/libschema.so.5.0.0 +lib/libschema.so.5.0.1 lib/libwscl.so lib/libwscl.so.5 -lib/libwscl.so.5.0.0 +lib/libwscl.so.5.0.1 lib/libwsdl.so lib/libwsdl.so.5 -lib/libwsdl.so.5.0.0 +lib/libwsdl.so.5.0.1 lib/strigi/strigiea_ics.so -lib/strigi/strigiea_rfc822.so lib/strigi/strigiea_vcf.so +share/akonadi/agents/distlistresource.desktop share/akonadi/agents/icalresource.desktop share/akonadi/agents/imaplibresource.desktop share/akonadi/agents/kabcresource.desktop @@ -430,8 +453,10 @@ share/akonadi/agents/maildirresource.desktop share/akonadi/agents/mailthreaderagent.desktop share/akonadi/agents/nepomukcontactfeeder.desktop share/akonadi/agents/nepomukemailfeeder.desktop +share/akonadi/agents/nepomuktagresource.desktop share/akonadi/agents/nntpresource.desktop share/akonadi/agents/strigifeeder.desktop +share/akonadi/agents/vcarddirresource.desktop share/akonadi/agents/vcardresource.desktop share/applications/kde4/KMail.desktop share/applications/kde4/KNode.desktop @@ -443,18 +468,19 @@ share/applications/kde4/akregator.desktop share/applications/kde4/groupwarewizard.desktop share/applications/kde4/kaddressbook.desktop share/applications/kde4/kalarm.desktop -share/applications/kde4/karm.desktop -%%KITCHENSYNC%%share/applications/kde4/kitchensync.desktop share/applications/kde4/kleopatra_import.desktop share/applications/kde4/kmail_view.desktop share/applications/kde4/knotes.desktop share/applications/kde4/konsolekalendar.desktop share/applications/kde4/korganizer-import.desktop share/applications/kde4/korganizer.desktop -share/applications/kde4/ktnef.desktop +share/applications/kde4/kpilot.desktop +share/applications/kde4/kpilotdaemon.desktop +share/applications/kde4/ktimetracker.desktop share/applications/kde4/kwsdl_compiler.desktop share/apps/akonadi/plugins/serializer/akonadi_serializer_addressee.desktop share/apps/akonadi/plugins/serializer/akonadi_serializer_bookmark.desktop +share/apps/akonadi/plugins/serializer/akonadi_serializer_contactgroup.desktop share/apps/akonadi/plugins/serializer/akonadi_serializer_kcal.desktop share/apps/akonadi/plugins/serializer/akonadi_serializer_mail.desktop share/apps/akonadiconsole/akonadiconsoleui.rc @@ -503,7 +529,6 @@ share/apps/kaddressbook/printing/ringbinder-style.png share/apps/kaddressbook/vcard_xxportui.rc share/apps/kaddressbook/zone.tab share/apps/kalarm/kalarmui.rc -share/apps/karmpart/karmui.rc share/apps/kconf_update/kalarm-1.2.1-general.pl share/apps/kconf_update/kalarm-1.9.5-defaults.pl share/apps/kconf_update/kalarm-2.0.2-general.pl @@ -531,6 +556,7 @@ share/apps/kconf_update/kolab-resource.upd share/apps/kconf_update/korganizer.upd share/apps/kconf_update/kpgp-3.1-upgrade-address-data.pl share/apps/kconf_update/kpgp.upd +share/apps/kconf_update/kpilot.upd share/apps/kconf_update/upgrade-resourcetype.pl share/apps/kconf_update/upgrade-signature.pl share/apps/kconf_update/upgrade-transport.pl @@ -538,11 +564,6 @@ share/apps/kdepimwidgets/pics/addresseelineedit.png share/apps/kdepimwidgets/pics/clicklineedit.png share/apps/kdepimwidgets/pics/kdateedit.png share/apps/kdepimwidgets/pics/ktimeedit.png -%%KITCHENSYNC%%share/apps/kitchensync/about/kitchensync.css -%%KITCHENSYNC%%share/apps/kitchensync/about/main.html -%%KITCHENSYNC%%share/apps/kitchensync/about/top-right-kitchensync.png -%%KITCHENSYNC%%share/apps/kitchensync/kitchensync_part.rc -%%KITCHENSYNC%%share/apps/kitchensync/kitchensyncui.rc share/apps/kjots/kjotspartui.rc share/apps/kjots/kjotsui.rc share/apps/kleopatra/kleopatra.rc @@ -558,6 +579,23 @@ share/apps/kmail/kmail_part.rc share/apps/kmail/kmcomposerui.rc share/apps/kmail/kmmainwin.rc share/apps/kmail/kmreadermainwin.rc +share/apps/kmail/pics/attachmentQuicklistClosed.png +share/apps/kmail/pics/attachmentQuicklistOpened.png +share/apps/kmail/pics/enterprise_bottom.png +share/apps/kmail/pics/enterprise_bottom_left.png +share/apps/kmail/pics/enterprise_bottom_right.png +share/apps/kmail/pics/enterprise_icon.png +share/apps/kmail/pics/enterprise_left.png +share/apps/kmail/pics/enterprise_right.png +share/apps/kmail/pics/enterprise_s_left.png +share/apps/kmail/pics/enterprise_s_right.png +share/apps/kmail/pics/enterprise_sbar.png +share/apps/kmail/pics/enterprise_sp_right.png +share/apps/kmail/pics/enterprise_sw.png +share/apps/kmail/pics/enterprise_top.png +share/apps/kmail/pics/enterprise_top_left.png +share/apps/kmail/pics/enterprise_top_right.png +share/apps/kmail/pics/enterprise_w.png share/apps/kmail/pics/key.png share/apps/kmail/pics/key_bad.png share/apps/kmail/pics/key_ok.png @@ -567,8 +605,14 @@ share/apps/kmail/pics/mail-deleted.png share/apps/kmail/pics/mail-encrypted-full.png share/apps/kmail/pics/mail-encrypted-part.png share/apps/kmail/pics/mail-encrypted.png +share/apps/kmail/pics/mail-horizontal-space.png share/apps/kmail/pics/mail-thread-ignored.png share/apps/kmail/pics/mail-thread-watch.png +share/apps/kmail/pics/mail-vertical-separator-line.png +share/apps/kmail/pics/overlay-busy-clock-1.png +share/apps/kmail/pics/overlay-busy-clock-2.png +share/apps/kmail/pics/overlay-busy-clock-3.png +share/apps/kmail/pics/overlay-busy-clock-4.png share/apps/kmail/pics/pgp-keys.png share/apps/kmail/pics/quotecollapse.png share/apps/kmail/pics/quoteexpand.png @@ -636,6 +680,7 @@ share/apps/kontact/ksettingsdialog/knode.setdlg share/apps/kontact/ksettingsdialog/knotes.setdlg share/apps/kontact/ksettingsdialog/korganizer.setdlg share/apps/kontact/ksettingsdialog/ktimetracker.setdlg +share/apps/kontact/ksettingsdialog/planner.setdlg share/apps/kontact/ksettingsdialog/specialdates.setdlg share/apps/kontact/ksettingsdialog/summary.setdlg share/apps/kontactsummary/kontactsummary_part.rc @@ -648,6 +693,7 @@ share/apps/korganizer/sounds/lightmag.wav share/apps/korganizer/sounds/onscreen.wav share/apps/korganizer/sounds/spinout.wav share/apps/korganizer/tips +share/apps/kpilot/kpilotui.rc share/apps/ktimetracker/icons/oxygen/128x128/actions/subtask-new-ktimetracker.png share/apps/ktimetracker/icons/oxygen/16x16/actions/subtask-new-ktimetracker.png share/apps/ktimetracker/icons/oxygen/22x22/actions/subtask-new-ktimetracker.png @@ -655,7 +701,7 @@ share/apps/ktimetracker/icons/oxygen/32x32/actions/subtask-new-ktimetracker.png share/apps/ktimetracker/icons/oxygen/48x48/actions/subtask-new-ktimetracker.png share/apps/ktimetracker/icons/oxygen/64x64/actions/subtask-new-ktimetracker.png share/apps/ktimetracker/icons/oxygen/scalable/actions/subtask-new-ktimetracker.svgz -share/apps/ktimetracker/karmui.rc +share/apps/ktimetracker/ktimetrackerui.rc share/apps/ktimetracker/pics/active-icon-0.xpm share/apps/ktimetracker/pics/active-icon-1.xpm share/apps/ktimetracker/pics/active-icon-2.xpm @@ -678,7 +724,6 @@ share/apps/ktimetracker/pics/watch-4.xpm share/apps/ktimetracker/pics/watch-5.xpm share/apps/ktimetracker/pics/watch-6.xpm share/apps/ktimetracker/pics/watch-7.xpm -share/apps/ktnef/ktnefui.rc share/apps/kwatchgnupg/kwatchgnupgui.rc share/apps/kwatchgnupg/pics/kwatchgnupg.png share/apps/kwatchgnupg/pics/kwatchgnupg2.png @@ -765,9 +810,12 @@ share/apps/nepomuk/ontologies/nco.desktop share/apps/nepomuk/ontologies/nco.trig share/apps/nepomuk/ontologies/nmo.desktop share/apps/nepomuk/ontologies/nmo.trig +share/autostart/kabcdistlistupdater.desktop share/autostart/kalarm.autostart.desktop share/autostart/korgac.desktop share/config.kcfg/akregator.kcfg +share/config.kcfg/calendarsettings.kcfg +share/config.kcfg/contactssettings.kcfg share/config.kcfg/custommimeheader.kcfg share/config.kcfg/customtemplates_kfg.kcfg share/config.kcfg/egroupware.kcfg @@ -780,14 +828,20 @@ share/config.kcfg/knotesglobalconfig.kcfg share/config.kcfg/kolab.kcfg share/config.kcfg/kontact.kcfg share/config.kcfg/korganizer.kcfg +share/config.kcfg/kpilot.kcfg +share/config.kcfg/kpilotlib.kcfg share/config.kcfg/kxforms.kcfg +share/config.kcfg/memofileconduit.kcfg share/config.kcfg/replyphrases.kcfg share/config.kcfg/scalix.kcfg share/config.kcfg/slox.kcfg share/config.kcfg/templatesconfiguration_kfg.kcfg +share/config.kcfg/timeconduit.kcfg +share/config.kcfg/todosettings.kcfg share/config/kmail.antispamrc share/config/kmail.antivirusrc share/config/korganizer.knsrc +share/config/kres-migratorrc share/config/libkleopatrarc share/dbus-1/interfaces/org.kde.KAddressbook.Core.xml share/dbus-1/interfaces/org.kde.KNotes.xml @@ -825,6 +879,10 @@ share/doc/HTML/en/akregator/main-window4.png share/doc/HTML/en/akregator/quick-filter.png share/doc/HTML/en/akregator/rss.png share/doc/HTML/en/akregator/rss3.png +share/doc/HTML/en/kabcclient/common +share/doc/HTML/en/kabcclient/index.cache.bz2 +share/doc/HTML/en/kabcclient/index.docbook +share/doc/HTML/en/kabcclient/man-kabcclient.1.docbook share/doc/HTML/en/kaddressbook/addhost.png share/doc/HTML/en/kaddressbook/common share/doc/HTML/en/kaddressbook/conf.png @@ -841,11 +899,15 @@ share/doc/HTML/en/kaddressbook/resourcesdlg.png share/doc/HTML/en/kaddressbook/vieweditdlg.png share/doc/HTML/en/kalarm/alarmmessage.png share/doc/HTML/en/kalarm/common +share/doc/HTML/en/kalarm/editwindow-simple.png share/doc/HTML/en/kalarm/editwindow.png share/doc/HTML/en/kalarm/index.cache.bz2 share/doc/HTML/en/kalarm/index.docbook share/doc/HTML/en/kalarm/mainwindow.png share/doc/HTML/en/kalarm/spinbox.png +share/doc/HTML/en/kioslave/news/common +share/doc/HTML/en/kioslave/news/index.cache.bz2 +share/doc/HTML/en/kioslave/news/index.docbook share/doc/HTML/en/kjots/common share/doc/HTML/en/kjots/index.cache.bz2 share/doc/HTML/en/kjots/index.docbook @@ -993,6 +1055,41 @@ share/doc/HTML/en/korganizer/outlook-to-vcalendar.docbook share/doc/HTML/en/korganizer/plugins-chapter.docbook share/doc/HTML/en/korganizer/remotefile-resource.png share/doc/HTML/en/korganizer/todo-general.png +share/doc/HTML/en/kpilot/address-app.png +share/doc/HTML/en/kpilot/common +share/doc/HTML/en/kpilot/conduit-knotes.png +share/doc/HTML/en/kpilot/conduit-mal.png +share/doc/HTML/en/kpilot/conduit-palmdoc.png +share/doc/HTML/en/kpilot/conduit-popmail-kmail.png +share/doc/HTML/en/kpilot/conduit-sysinfo.png +share/doc/HTML/en/kpilot/conduit-vcal.png +share/doc/HTML/en/kpilot/configuration.docbook +share/doc/HTML/en/kpilot/daemon-menu.png +share/doc/HTML/en/kpilot/db-app.png +share/doc/HTML/en/kpilot/faq.docbook +share/doc/HTML/en/kpilot/file-app.png +share/doc/HTML/en/kpilot/index.cache.bz2 +share/doc/HTML/en/kpilot/index.docbook +share/doc/HTML/en/kpilot/main-app.png +share/doc/HTML/en/kpilot/memo-app.png +share/doc/HTML/en/kpilot/setup-address.png +share/doc/HTML/en/kpilot/setup-conduit.png +share/doc/HTML/en/kpilot/setup-dbspecial.png +share/doc/HTML/en/kpilot/setup-general.png +share/doc/HTML/en/kpilot/setup-hotsync.png +share/doc/HTML/en/kpilot/setup-items.png +share/doc/HTML/en/kpilot/setup-startup-exit.png +share/doc/HTML/en/kpilot/setup-tabs.png +share/doc/HTML/en/kpilot/setup-viewer.png +share/doc/HTML/en/kpilot/sidebar.png +share/doc/HTML/en/kpilot/sync.docbook +share/doc/HTML/en/kpilot/todo-app.png +share/doc/HTML/en/kpilot/toolbar_backup.png +share/doc/HTML/en/kpilot/toolbar_hotsync.png +share/doc/HTML/en/kpilot/usage.docbook +share/doc/HTML/en/kpilot/wizard-conduits.png +share/doc/HTML/en/kpilot/wizard-connection.png +share/doc/HTML/en/kpilot/wizard-general.png share/doc/HTML/en/ktimetracker/clipboard-history.png share/doc/HTML/en/ktimetracker/common share/doc/HTML/en/ktimetracker/copy-this-task.png @@ -1003,9 +1100,6 @@ share/doc/HTML/en/ktimetracker/index.cache.bz2 share/doc/HTML/en/ktimetracker/index.docbook share/doc/HTML/en/ktimetracker/karm.png share/doc/HTML/en/ktimetracker/systray.png -share/doc/HTML/en/kwsdl_compiler/common -share/doc/HTML/en/kwsdl_compiler/index.cache.bz2 -share/doc/HTML/en/kwsdl_compiler/index.docbook share/icons/hicolor/128x128/apps/akregator.png share/icons/hicolor/128x128/apps/kaddressbook.png share/icons/hicolor/128x128/apps/kjots.png @@ -1016,12 +1110,18 @@ share/icons/hicolor/128x128/apps/knotes.png share/icons/hicolor/128x128/apps/kontact.png share/icons/hicolor/128x128/apps/korganizer.png share/icons/hicolor/128x128/apps/ktimetracker.png -%%KITCHENSYNC%%share/icons/hicolor/16x16/actions/sync-start.png +share/icons/hicolor/16x16/actions/kpilot_backup.png +share/icons/hicolor/16x16/actions/kpilot_busysync.png +share/icons/hicolor/16x16/actions/kpilot_fullsync.png +share/icons/hicolor/16x16/actions/kpilot_hhtopc.png +share/icons/hicolor/16x16/actions/kpilot_hotsync.png +share/icons/hicolor/16x16/actions/kpilot_nosync.png +share/icons/hicolor/16x16/actions/kpilot_reset.png +share/icons/hicolor/16x16/actions/kpilot_restore.png share/icons/hicolor/16x16/apps/akregator.png share/icons/hicolor/16x16/apps/akregator_empty.png share/icons/hicolor/16x16/apps/kaddressbook.png share/icons/hicolor/16x16/apps/kalarm.png -%%KITCHENSYNC%%share/icons/hicolor/16x16/apps/kitchensync.png share/icons/hicolor/16x16/apps/kjots.png share/icons/hicolor/16x16/apps/kmail.png share/icons/hicolor/16x16/apps/knode.png @@ -1029,23 +1129,34 @@ share/icons/hicolor/16x16/apps/knode2.png share/icons/hicolor/16x16/apps/knotes.png share/icons/hicolor/16x16/apps/kontact.png share/icons/hicolor/16x16/apps/korganizer.png +share/icons/hicolor/16x16/apps/kpilot.png +share/icons/hicolor/16x16/apps/kpilotDaemon.png share/icons/hicolor/16x16/apps/ktimetracker.png -%%KITCHENSYNC%%share/icons/hicolor/22x22/actions/sync-start.png +share/icons/hicolor/22x22/actions/kpilot_backup.png +share/icons/hicolor/22x22/actions/kpilot_busysync.png +share/icons/hicolor/22x22/actions/kpilot_fullsync.png +share/icons/hicolor/22x22/actions/kpilot_hhtopc.png +share/icons/hicolor/22x22/actions/kpilot_hotsync.png +share/icons/hicolor/22x22/actions/kpilot_nosync.png +share/icons/hicolor/22x22/actions/kpilot_reset.png +share/icons/hicolor/22x22/actions/kpilot_restore.png share/icons/hicolor/22x22/apps/akregator.png share/icons/hicolor/22x22/apps/kaddressbook.png -share/icons/hicolor/22x22/apps/kalarm.png -%%KITCHENSYNC%%share/icons/hicolor/22x22/apps/kitchensync.png share/icons/hicolor/22x22/apps/kjots.png share/icons/hicolor/22x22/apps/kmail.png share/icons/hicolor/22x22/apps/knotes.png share/icons/hicolor/22x22/apps/kontact.png share/icons/hicolor/22x22/apps/korganizer.png +share/icons/hicolor/22x22/apps/kpilot.png +share/icons/hicolor/22x22/apps/kpilotDaemon.png share/icons/hicolor/22x22/apps/ktimetracker.png -%%KITCHENSYNC%%share/icons/hicolor/32x32/actions/sync-start.png +share/icons/hicolor/32x32/actions/kpilot_fullsync.png +share/icons/hicolor/32x32/actions/kpilot_hhtopc.png +share/icons/hicolor/32x32/actions/kpilot_hotsync.png +share/icons/hicolor/32x32/actions/kpilot_reset.png share/icons/hicolor/32x32/apps/akregator.png share/icons/hicolor/32x32/apps/kaddressbook.png share/icons/hicolor/32x32/apps/kalarm.png -%%KITCHENSYNC%%share/icons/hicolor/32x32/apps/kitchensync.png share/icons/hicolor/32x32/apps/kjots.png share/icons/hicolor/32x32/apps/kmail.png share/icons/hicolor/32x32/apps/knode.png @@ -1053,12 +1164,16 @@ share/icons/hicolor/32x32/apps/knode2.png share/icons/hicolor/32x32/apps/knotes.png share/icons/hicolor/32x32/apps/kontact.png share/icons/hicolor/32x32/apps/korganizer.png +share/icons/hicolor/32x32/apps/kpilot.png +share/icons/hicolor/32x32/apps/kpilotDaemon.png share/icons/hicolor/32x32/apps/ktimetracker.png -%%KITCHENSYNC%%share/icons/hicolor/48x48/actions/sync-start.png +share/icons/hicolor/48x48/actions/kpilot_fullsync.png +share/icons/hicolor/48x48/actions/kpilot_hhtopc.png +share/icons/hicolor/48x48/actions/kpilot_hotsync.png +share/icons/hicolor/48x48/actions/kpilot_reset.png share/icons/hicolor/48x48/apps/akregator.png share/icons/hicolor/48x48/apps/kaddressbook.png share/icons/hicolor/48x48/apps/kalarm.png -%%KITCHENSYNC%%share/icons/hicolor/48x48/apps/kitchensync.png share/icons/hicolor/48x48/apps/kjots.png share/icons/hicolor/48x48/apps/kmail.png share/icons/hicolor/48x48/apps/knode.png @@ -1066,8 +1181,16 @@ share/icons/hicolor/48x48/apps/knode2.png share/icons/hicolor/48x48/apps/knotes.png share/icons/hicolor/48x48/apps/kontact.png share/icons/hicolor/48x48/apps/korganizer.png +share/icons/hicolor/48x48/apps/kpilot.png +share/icons/hicolor/48x48/apps/kpilotDaemon.png share/icons/hicolor/48x48/apps/ktimetracker.png -share/icons/hicolor/48x48/apps/ktnef.png +share/icons/hicolor/64x64/actions/kpilot_address.png +share/icons/hicolor/64x64/actions/kpilot_bhotsync.png +share/icons/hicolor/64x64/actions/kpilot_calendar.png +share/icons/hicolor/64x64/actions/kpilot_db.png +share/icons/hicolor/64x64/actions/kpilot_fileinstaller.png +share/icons/hicolor/64x64/actions/kpilot_knotes.png +share/icons/hicolor/64x64/actions/kpilot_todo.png share/icons/hicolor/64x64/apps/akregator.png share/icons/hicolor/64x64/apps/kaddressbook.png share/icons/hicolor/64x64/apps/kjots.png @@ -1083,6 +1206,7 @@ share/icons/hicolor/scalable/apps/kaddressbook.svgz share/icons/hicolor/scalable/apps/kjots.svgz share/icons/hicolor/scalable/apps/kmail.svgz share/icons/hicolor/scalable/apps/korganizer.svgz +share/icons/oxygen/128x128/apps/kalarm.png share/icons/oxygen/128x128/apps/kleopatra.png share/icons/oxygen/16x16/actions/document-new-from-template.png share/icons/oxygen/16x16/actions/edit-delete-page.png @@ -1090,8 +1214,8 @@ share/icons/oxygen/16x16/actions/ldap_lookup.png share/icons/oxygen/16x16/actions/mail-forwarded-replied.png share/icons/oxygen/16x16/actions/mail-forwarded.png share/icons/oxygen/16x16/actions/mail-reply-custom.png +share/icons/oxygen/16x16/actions/mail-signed-fully.png share/icons/oxygen/16x16/actions/mail-signed-part.png -share/icons/oxygen/16x16/actions/mail-signed-verified.png share/icons/oxygen/16x16/actions/mail-signed.png share/icons/oxygen/16x16/actions/meeting-attending-tentative.png share/icons/oxygen/16x16/actions/meeting-attending.png @@ -1115,6 +1239,7 @@ share/icons/oxygen/22x22/actions/button_more.png share/icons/oxygen/22x22/actions/checkmark.png share/icons/oxygen/22x22/actions/document-new-from-template.png share/icons/oxygen/22x22/actions/edit-delete-page.png +share/icons/oxygen/22x22/actions/kalarm.png share/icons/oxygen/22x22/actions/mail-reply-custom.png share/icons/oxygen/22x22/actions/meeting-attending-tentative.png share/icons/oxygen/22x22/actions/meeting-attending.png @@ -1154,14 +1279,16 @@ share/icons/oxygen/48x48/apps/kleopatra.png share/icons/oxygen/48x48/apps/kmailcvt.png share/icons/oxygen/48x48/mimetypes/x-mail-distribution-list.png share/icons/oxygen/48x48/status/mail-tagged.png +share/icons/oxygen/64x64/apps/kalarm.png share/icons/oxygen/64x64/apps/kleopatra.png share/icons/oxygen/scalable/actions/edit-delete-page.svgz share/icons/oxygen/scalable/actions/mail-forwarded-replied.svgz share/icons/oxygen/scalable/actions/mail-forwarded.svgz share/icons/oxygen/scalable/actions/mail-reply-custom.svgz +share/icons/oxygen/scalable/actions/mail-signed-fully.svgz share/icons/oxygen/scalable/actions/mail-signed-part.svgz -share/icons/oxygen/scalable/actions/mail-signed-verified.svgz share/icons/oxygen/scalable/actions/mail-signed.svgz +share/icons/oxygen/scalable/apps/kalarm.svgz share/icons/oxygen/scalable/apps/kleopatra.svgz share/icons/oxygen/scalable/mimetypes/x-mail-distribution-list.svgz share/icons/oxygen/scalable/status/mail-tagged.svgz @@ -1209,11 +1336,14 @@ share/kde4/services/kaddressbook/smsprotocol.desktop share/kde4/services/kaddressbook/tableview.desktop share/kde4/services/kaddressbook/vcard_xxport.desktop share/kde4/services/kaddressbook/yahooprotocol.desktop -share/kde4/services/karm_part.desktop +share/kde4/services/kaddressbookpart.desktop +share/kde4/services/kcm_akonadi.desktop share/kde4/services/kcm_akonadi_resources.desktop +share/kde4/services/kcm_akonadi_server.desktop share/kde4/services/kcmapptsummary.desktop share/kde4/services/kcmkmailsummary.desktop share/kde4/services/kcmkontactsummary.desktop +share/kde4/services/kcmplanner.desktop share/kde4/services/kcmsdsummary.desktop share/kde4/services/kcmtodosummary.desktop share/kde4/services/kjotspart.desktop @@ -1248,6 +1378,7 @@ share/kde4/services/kontact/knodeplugin.desktop share/kde4/services/kontact/knotesplugin.desktop share/kde4/services/kontact/korganizerplugin.desktop share/kde4/services/kontact/ktimetracker_plugin.desktop +share/kde4/services/kontact/plannerplugin.desktop share/kde4/services/kontact/specialdatesplugin.desktop share/kde4/services/kontact/summaryplugin.desktop share/kde4/services/kontact/todoplugin.desktop @@ -1266,6 +1397,10 @@ share/kde4/services/korganizer_configmain.desktop share/kde4/services/korganizer_configplugins.desktop share/kde4/services/korganizer_configtime.desktop share/kde4/services/korganizer_configviews.desktop +share/kde4/services/kpilot-conduit-calendar.desktop +share/kde4/services/kpilot-conduit-contacts.desktop +share/kde4/services/kpilot-conduit-todo.desktop +share/kde4/services/kpilot_config.desktop share/kde4/services/kresources/alarms/local.desktop share/kde4/services/kresources/alarms/localdir.desktop share/kde4/services/kresources/alarms/remote.desktop @@ -1298,9 +1433,12 @@ share/kde4/services/kresources/knotes/local.desktop share/kde4/services/kresources/knotes/scalix.desktop share/kde4/services/kresources/knotes_manager.desktop share/kde4/services/ktimetrackerconfig.desktop +share/kde4/services/ktimetrackerpart.desktop share/kde4/services/ldifvcardthumbnail.desktop +share/kde4/services/memofile-conduit.desktop share/kde4/services/scalix.protocol share/kde4/services/scalixs.protocol +share/kde4/services/time_conduit.desktop share/kde4/services/webcal.protocol share/kde4/servicetypes/akregator_plugin.desktop share/kde4/servicetypes/calendardecoration.desktop @@ -1317,13 +1455,14 @@ share/kde4/servicetypes/kaddressbookimprotocol.desktop share/kde4/servicetypes/kontactplugin.desktop share/kde4/servicetypes/korganizerpart.desktop share/kde4/servicetypes/korgprintplugin.desktop +share/kde4/servicetypes/kpilotconduit.desktop @dirrm share/kde4/services/kresources/knotes @dirrm share/kde4/services/kresources/alarms @dirrm share/kde4/services/korganizer @dirrm share/kde4/services/kontact @dirrm share/kde4/services/kaddressbook -@dirrm share/doc/HTML/en/kwsdl_compiler @dirrm share/doc/HTML/en/ktimetracker +@dirrm share/doc/HTML/en/kpilot @dirrm share/doc/HTML/en/korganizer @dirrm share/doc/HTML/en/kontact @dirrm share/doc/HTML/en/konsolekalendar @@ -1332,12 +1471,11 @@ share/kde4/servicetypes/korgprintplugin.desktop @dirrm share/doc/HTML/en/kmail @dirrm share/doc/HTML/en/kleopatra @dirrm share/doc/HTML/en/kjots +@dirrm share/doc/HTML/en/kioslave/news @dirrm share/doc/HTML/en/kalarm @dirrm share/doc/HTML/en/kaddressbook +@dirrm share/doc/HTML/en/kabcclient @dirrm share/doc/HTML/en/akregator -@dirrmtry share/autostart -@dirrmtry share/apps/nepomuk/ontologies -@dirrmtry share/apps/nepomuk @dirrm share/apps/libkleopatra/pics @dirrm share/apps/libkleopatra @dirrm share/apps/libkholidays @@ -1346,7 +1484,6 @@ share/kde4/servicetypes/korgprintplugin.desktop @dirrm share/apps/kxforms @dirrm share/apps/kwatchgnupg/pics @dirrm share/apps/kwatchgnupg -@dirrm share/apps/ktnef @dirrm share/apps/ktimetracker/pics @dirrm share/apps/ktimetracker/icons/oxygen/scalable/actions @dirrm share/apps/ktimetracker/icons/oxygen/scalable @@ -1365,6 +1502,7 @@ share/kde4/servicetypes/korgprintplugin.desktop @dirrm share/apps/ktimetracker/icons/oxygen @dirrm share/apps/ktimetracker/icons @dirrm share/apps/ktimetracker +@dirrm share/apps/kpilot @dirrm share/apps/korganizer/sounds @dirrm share/apps/korganizer @dirrm share/apps/korgac/icons/oxygen/22x22/actions @@ -1394,12 +1532,8 @@ share/kde4/servicetypes/korgprintplugin.desktop @dirrm share/apps/kleopatra/pics @dirrm share/apps/kleopatra @dirrm share/apps/kjots -%%KITCHENSYNC%%@dirrm share/apps/kitchensync/about -%%KITCHENSYNC%%@dirrm share/apps/kitchensync @dirrm share/apps/kdepimwidgets/pics @dirrm share/apps/kdepimwidgets -@dirrmtry share/apps/kconf_update -@dirrm share/apps/karmpart @dirrm share/apps/kalarm @dirrm share/apps/kaddressbook/printing @dirrm share/apps/kaddressbook/pics @@ -1409,24 +1543,21 @@ share/kde4/servicetypes/korgprintplugin.desktop @dirrm share/apps/kaddressbook/icons @dirrm share/apps/kaddressbook/csv-templates @dirrm share/apps/kaddressbook -@dirrmtry share/apps/cmake/modules -@dirrmtry share/apps/cmake @dirrm share/apps/akregator_onlinesync_plugin -@dirrm share/apps/akregator/pics +@dirrmtry share/apps/akregator/pics @dirrm share/apps/akregator/about -@dirrm share/apps/akregator +@dirrmtry share/apps/akregator @dirrm share/apps/akonadiconsole @dirrm share/apps/akonadi/plugins/serializer @dirrm share/apps/akonadi/plugins @dirrm share/apps/akonadi @dirrm share/akonadi/agents @dirrm share/akonadi -@dirrmtry lib/strigi -@dirrmtry lib/kde4/plugins/designer @dirrm include/libkleopatraclient/gui @dirrm include/libkleopatraclient/core @dirrm include/libkleopatraclient @dirrm include/ksieve +@dirrm include/kpilot @dirrm include/kpgp @dirrm include/kmail/interfaces @dirrm include/kmail diff --git a/deskutils/kdepim44/Makefile b/deskutils/kdepim44/Makefile index f2338d0ccca3..e7b240153c85 100644 --- a/deskutils/kdepim44/Makefile +++ b/deskutils/kdepim44/Makefile @@ -6,10 +6,9 @@ PORTNAME= kdepim PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde ipv6 MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org @@ -20,7 +19,8 @@ LIB_DEPENDS= gpgme:${PORTSDIR}/security/gpgme \ sasl2:${PORTSDIR}/security/cyrus-sasl2 \ boost_python:${PORTSDIR}/devel/boost-python \ mal.1:${PORTSDIR}/palm/libmal \ - pisock.9:${PORTSDIR}/palm/pilot-link + pisock.9:${PORTSDIR}/palm/pilot-link \ + qca.2:${PORTSDIR}/devel/qca LATEST_LINK= ${PORTNAME}4 @@ -32,8 +32,13 @@ QT_COMPONENTS= corelib opengl dbus qt3support designer network svg qtestlib \ qmake_build moc_build rcc_build uic_build USE_OPENLDAP= yes -OPTIONS= GNOKII "KAdressbook import/export for Nokia phones" off \ - KITCHENSYNC "PIM synchronization utility" off +#fix build when kdepim3 is here +CMAKE_ARGS+= -DGPGME_LIBRARY_DIR:PATH="${KDE4_PREFIX}/lib" + +MAN1= kabcclient.1 + +OPTIONS= GNOKII "KAdressbook import/export for Nokia phones" off +# KITCHENSYNC "PIM synchronization utility" off .include <bsd.port.pre.mk> @@ -45,15 +50,21 @@ CMAKE_ARGS+= -DWITH_GNOKII:BOOL=off PLIST_SUB+= GNOKII="@comment " .endif -.if defined(WITH_KITCHENSYNC) -LIB_DEPENDS+= opensync.1:${PORTSDIR}/devel/libopensync -PLIST_SUB+= KITCHENSYNC="" -.else -CMAKE_ARGS+= -DWITH_Opensync:BOOL=off -PLIST_SUB+= KITCHENSYNC="@comment " -.endif +# kitchensync is disabled in KDE 4.2 +# .if defined(WITH_KITCHENSYNC) +# LIB_DEPENDS+= opensync.1:${PORTSDIR}/devel/libopensync +# PLIST_SUB+= KITCHENSYNC="" +# .else +# CMAKE_ARGS+= -DWITH_Opensync:BOOL=off +# PLIST_SUB+= KITCHENSYNC="@comment " +# .endif post-extract: ${MKDIR} ${WRKSRC} +pre-configure: + #respect prefix + ${FIND} ${WRKSRC}/.. -type f -name CMakeLists.txt | ${XARGS} \ + ${REINPLACE_CMD} -e '/^install/s,KDE4_DBUS_INTERFACES_DIR,DBUS_INTERFACES_INSTALL_DIR,g' + .include <bsd.port.post.mk> diff --git a/deskutils/kdepim44/distinfo b/deskutils/kdepim44/distinfo index 77ab72de87e6..45abad85ea51 100644 --- a/deskutils/kdepim44/distinfo +++ b/deskutils/kdepim44/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdepim-4.1.4.tar.bz2) = 297ffe93343bc0dd62c7d90feae0ee6c -SHA256 (KDE/kdepim-4.1.4.tar.bz2) = 0e8b1d68975a4e898d2e1794d6f63360e9178af7e9d689501166e7153cc2c11c -SIZE (KDE/kdepim-4.1.4.tar.bz2) = 13465584 +MD5 (KDE/kdepim-4.2.0.tar.bz2) = a80631de21930b2544c86722138aaa6c +SHA256 (KDE/kdepim-4.2.0.tar.bz2) = 20f4f22bc9284cefd9c196ba7636c68992c615a976050f43169dd108ebd63788 +SIZE (KDE/kdepim-4.2.0.tar.bz2) = 13549914 diff --git a/deskutils/kdepim44/files/patch-kmail_accountmanager.cpp b/deskutils/kdepim44/files/patch-kmail_accountmanager.cpp deleted file mode 100644 index 6d6c1e53e6bf..000000000000 --- a/deskutils/kdepim44/files/patch-kmail_accountmanager.cpp +++ /dev/null @@ -1,131 +0,0 @@ ---- ../kmail/accountmanager.cpp 2009/01/20 11:56:48 914004 -+++ ../kmail/accountmanager.cpp 2009/01/20 12:11:59 914005 -@@ -39,88 +39,68 @@ - qDeleteAll(mAcctList); - } - -+//----------------------------------------------------------------------------- -+QStringList AccountManager::accountGroups() const -+{ -+ return KMKernel::config()->groupList().filter( QRegExp( "Account \\d+" ) ); -+} - - //----------------------------------------------------------------------------- - void AccountManager::writeConfig( bool withSync ) - { - KConfig* config = KMKernel::config(); - -- // Delete all accounts for groups in the config file not having -- // Enabled=false flag (accountGroups) -- // and replace them with account groups existing in memory (mAcctList) -- uint accounts = 0; -- QStringList accountGroups = -- config->groupList().filter( QRegExp( "Account \\d+" ) ); -- AccountList::ConstIterator enabledAccountIt = mAcctList.constBegin(); -- for ( QStringList::ConstIterator it = accountGroups.constBegin() ;; ) { -- QString groupName; -- bool appendNewGroup = false; -- if ( it == accountGroups.constEnd() ) { -- if ( enabledAccountIt == mAcctList.constEnd() ) -- break; -- appendNewGroup = true; -- groupName.sprintf( "Account %d", accounts + 1 ); -- } -- else { -- groupName = *it; -- ++it; -- } -+ QStringList accountGroupsInConfig = accountGroups(); -+ QStringList accountGroupsToKeep; - -- KConfigGroup group(config, groupName); -- uint id = group.readEntry( "Id", 0 ); -- if ( mDisabledAccounts.contains( id ) ) -- accounts++; // do not modify disabled account - skip -- else { -- if ( appendNewGroup ) { -- (*enabledAccountIt)->writeConfig( group ); -- ++enabledAccountIt; -- accounts++; -- } -- else // no such account on the list - disabled / enabled -- config->deleteGroup( groupName ); -- } -+ // Write all account config groups to the config file and remember -+ // the config group names -+ foreach( KMAccount *account, mAcctList ) { -+ uint accountId = account->id(); -+ QString groupName = QString( "Account %1" ).arg( accountId ); -+ accountGroupsToKeep += groupName; -+ KConfigGroup group( config, groupName ); -+ account->writeConfig( group ); - } - -- KConfigGroup group(config, "General"); -- group.writeEntry("accounts", accounts); -+ // Now, delete all config groups with "Account" in them which don't -+ // belong to the accounts we just saved (these are deleted accounts, then -+ // NOTE: This has to be done _after_ writing out the accounts, otherwise -+ // there is the risk of data loss, see bug 169166 -+ foreach( const QString &groupName, accountGroupsInConfig ) { -+ if ( !accountGroupsToKeep.contains( groupName ) ) -+ config->deleteGroup( groupName ); -+ } - -- if (withSync) config->sync(); -+ if ( withSync ) -+ config->sync(); - } - - - //----------------------------------------------------------------------------- - void AccountManager::readConfig(void) - { -- KConfig* config = KMKernel::config(); -- KMAccount* acct; -- QString acctName; -- QString groupName; -- int i, num; -- -+ // Delete all in-memory accounts - for ( AccountList::Iterator it( mAcctList.begin() ), end( mAcctList.end() ); it != end; ++it ) - delete *it; - mAcctList.clear(); - -- KConfigGroup general(config, "General"); -- num = general.readEntry( "accounts", 0 ); -- -- for (i=1; i<=num; i++) -- { -- groupName.sprintf("Account %d", i); -- KConfigGroup group(config, groupName); -+ // Now loop over all account groups and load the accounts in them -+ KConfig* config = KMKernel::config(); -+ QStringList accountGroupNames = accountGroups(); -+ int accountNum = 1; -+ foreach( const QString &accountGroupName, accountGroupNames ) { -+ KConfigGroup group( config, accountGroupName ); - uint id = group.readEntry( "Id", 0 ); -- if ( !group.readEntry("Enabled", true) ) { -- mDisabledAccounts += id; -- continue; -- } -- - KAccount::Type acctType = KAccount::typeForName( group.readEntry( "Type" ) ); -- acctName = group.readEntry("Name"); -- if (acctName.isEmpty()) acctName = i18n("Account %1", i); -- acct = create(acctType, acctName, id); -- if (!acct) continue; -- add(acct); -- acct->readConfig(group); -+ QString accountName = group.readEntry( "Name" ); -+ if ( accountName.isEmpty() ) -+ accountName = i18n( "Account %1", accountNum++ ); -+ KMAccount *account = create( acctType, accountName, id ); -+ if ( !account ) -+ continue; -+ add( account ); -+ account->readConfig( group ); - } - } - diff --git a/deskutils/kdepim44/files/patch-kmail_accountmanager.h b/deskutils/kdepim44/files/patch-kmail_accountmanager.h deleted file mode 100644 index af0d5132723b..000000000000 --- a/deskutils/kdepim44/files/patch-kmail_accountmanager.h +++ /dev/null @@ -1,39 +0,0 @@ ---- ../kmail/accountmanager.h 2009/01/20 11:56:48 914004 -+++ ../kmail/accountmanager.h 2009/01/20 12:11:59 914005 -@@ -80,13 +80,6 @@ - KMAccount *find( const uint id ) const; - - /** -- @return true if account with ID @p id is enabled. -- Accounts can be disabled by setting "enabled" flag to false -- in "Account #" groups of kmailrc. -- */ -- bool isEnabled( const uint id ) const { return !mDisabledAccounts.contains(id); } -- -- /** - Physically remove account. Also deletes the given account object ! - Returns false and does nothing if the account cannot be removed. - */ -@@ -163,6 +156,12 @@ - */ - uint createId(); - -+ /** -+ * Return a list of config group names of all config groups that store -+ * receiving accounts. -+ */ -+ QStringList accountGroups() const; -+ - AccountList mAcctList; - AccountList::Iterator mPtrListInterfaceProxyIterator; - AccountList mAcctChecking; -@@ -176,9 +175,6 @@ - - // if a summary should be displayed - bool mDisplaySummary; -- -- // IDs of disabled accounts, used in AccountManager::writeConfig() -- QSet<uint> mDisabledAccounts; - }; - - } // namespace KMail diff --git a/deskutils/kdepim44/files/patch-kmail_kmkernel.cpp b/deskutils/kdepim44/files/patch-kmail_kmkernel.cpp deleted file mode 100644 index e561b7a9a5f9..000000000000 --- a/deskutils/kdepim44/files/patch-kmail_kmkernel.cpp +++ /dev/null @@ -1,12 +0,0 @@ ---- ../kmail/kmkernel.cpp 2009/01/20 11:56:48 914004 -+++ ../kmail/kmkernel.cpp 2009/01/20 12:11:59 914005 -@@ -1480,8 +1480,7 @@ - { - KMFolderNode *node = *it; - if (node->isDir() || ((acct = the_acctMgr->find(node->id())) -- && ( acct->type() == KAccount::Imap )) -- || !the_acctMgr->isEnabled( node->id() )) -+ && ( acct->type() == KAccount::Imap ))) - { - ++it; - } else { diff --git a/deskutils/kdepim44/files/patch-kpilot_conduits_todo-todoconduit.cc b/deskutils/kdepim44/files/patch-kpilot_conduits_todo-todoconduit.cc new file mode 100644 index 000000000000..2ccddb36fd90 --- /dev/null +++ b/deskutils/kdepim44/files/patch-kpilot_conduits_todo-todoconduit.cc @@ -0,0 +1,10 @@ +--- ../kpilot/conduits/todo/todoconduit.cc 2009/01/24 05:11:42 915906 ++++ ../kpilot/conduits/todo/todoconduit.cc 2009/01/24 05:19:21 915907 +@@ -68,6 +68,7 @@ + + TodoSettings::self()->readConfig(); + d->fCollectionId = TodoSettings::akonadiCollection(); ++ d->fPrevCollectionId = TodoSettings::prevAkonadiCollection(); + } + + bool TodoConduit::initDataProxies() diff --git a/deskutils/kdepim44/pkg-plist b/deskutils/kdepim44/pkg-plist index 7f6996b523c6..b68e8a57a049 100644 --- a/deskutils/kdepim44/pkg-plist +++ b/deskutils/kdepim44/pkg-plist @@ -1,3 +1,4 @@ +bin/akonadi_distlist_resource bin/akonadi_ical_resource bin/akonadi_imaplib_resource bin/akonadi_kabc_resource @@ -8,9 +9,11 @@ bin/akonadi_maildir_resource bin/akonadi_mailthreader_agent bin/akonadi_nepomuk_contact_feeder bin/akonadi_nepomuk_email_feeder +bin/akonadi_nepomuktag_resource bin/akonadi_nntp_resource bin/akonadi_strigi_feeder bin/akonadi_vcard_resource +bin/akonadi_vcarddir_resource bin/akonadiconsole bin/akonaditray bin/akregator @@ -20,12 +23,12 @@ bin/groupwisewizard bin/ical2vcal bin/kabc2mutt bin/kabcclient +bin/kabcdistlistupdater bin/kaddressbook bin/kalarm bin/kalarmautostart bin/karm bin/kgpgconf -%%KITCHENSYNC%%bin/kitchensync bin/kjots bin/kleopatra bin/kmail @@ -42,8 +45,11 @@ bin/konsolekalendar bin/kontact bin/korgac bin/korganizer +bin/kpilot +bin/kpilotDaemon +bin/kres-migrator +bin/ksendemail bin/ktimetracker -bin/ktnefviewer bin/kung bin/kwatchgnupg bin/kwsdl_compiler @@ -53,7 +59,6 @@ bin/scalixadmin bin/scalixwizard bin/schematest bin/sloxwizard -bin/thememain include/akregator/akregator_export.h include/akregator/article.h include/akregator/command.h @@ -126,6 +131,20 @@ include/kpgp/kpgpblock.h include/kpgp/kpgpkey.h include/kpgp/kpgpui.h include/kpgp/libkpgp_export.h +include/kpilot/kpilot_export.h +include/kpilot/kpilotdevicelink.h +include/kpilot/kpilotlink.h +include/kpilot/kpilotlocallink.h +include/kpilot/options.h +include/kpilot/pilot.h +include/kpilot/pilotDatabase.h +include/kpilot/pilotLinkVersion.h +include/kpilot/pilotLocalDatabase.h +include/kpilot/pilotRecord.h +include/kpilot/pilotSerialDatabase.h +include/kpilot/plugin.h +include/kpilot/pluginfactory.h +include/kpilot/syncAction.h include/ksieve/error.h include/ksieve/lexer.h include/ksieve/libksieve_export.h @@ -139,6 +158,7 @@ include/libkleopatraclient/gui/certificaterequester.h include/libkleopatraclient/kleopatraclient_export.h lib/kde4/akonadi_serializer_addressee.so lib/kde4/akonadi_serializer_bookmark.so +lib/kde4/akonadi_serializer_contactgroup.so lib/kde4/akonadi_serializer_kcal.so lib/kde4/akonadi_serializer_mail.so lib/kde4/akregator_config_advanced.so @@ -177,7 +197,6 @@ lib/kde4/kaddressbookpart.so lib/kde4/kalarm_local.so lib/kde4/kalarm_localdir.so lib/kde4/kalarm_remote.so -lib/kde4/karmpart.so lib/kde4/kcal_akonadi.so lib/kde4/kcal_blog.so lib/kde4/kcal_groupdav.so @@ -189,7 +208,9 @@ lib/kde4/kcal_resourcefeatureplan_plugin.so lib/kde4/kcal_scalix.so lib/kde4/kcal_slox.so lib/kde4/kcal_xmlrpc.so +lib/kde4/kcm_akonadi.so lib/kde4/kcm_akonadi_resources.so +lib/kde4/kcm_akonadi_server.so lib/kde4/kcm_apptsummary.so lib/kde4/kcm_kabconfig.so lib/kde4/kcm_kabcustomfields.so @@ -201,13 +222,14 @@ lib/kde4/kcm_knode.so lib/kde4/kcm_kontact.so lib/kde4/kcm_kontactsummary.so lib/kde4/kcm_korganizer.so +lib/kde4/kcm_kpilot.so lib/kde4/kcm_ktimetrackerconfig.so +lib/kde4/kcm_planner.so lib/kde4/kcm_sdsummary.so lib/kde4/kcm_todosummary.so lib/kde4/kio_akonadi.so lib/kde4/kio_groupwise.so lib/kde4/kio_scalix.so -%%KITCHENSYNC%%lib/kde4/kitchensyncpart.so lib/kde4/kjotspart.so lib/kde4/kmail_bodypartformatter_application_octetstream.so lib/kde4/kmail_bodypartformatter_text_calendar.so @@ -222,12 +244,13 @@ lib/kde4/knotes_xmlrpc.so lib/kde4/kontact_akregatorplugin.so lib/kde4/kontact_journalplugin.so lib/kde4/kontact_kaddressbookplugin.so -lib/kde4/kontact_karmplugin.so lib/kde4/kontact_kjotsplugin.so lib/kde4/kontact_kmailplugin.so lib/kde4/kontact_knodeplugin.so lib/kde4/kontact_knotesplugin.so lib/kde4/kontact_korganizerplugin.so +lib/kde4/kontact_ktimetrackerplugin.so +lib/kde4/kontact_plannerplugin.so lib/kde4/kontact_specialdatesplugin.so lib/kde4/kontact_summaryplugin.so lib/kde4/kontact_todoplugin.so @@ -239,187 +262,187 @@ lib/kde4/korg_thisdayinhistory.so lib/kde4/korg_yearprint.so lib/kde4/korganizerpart.so lib/kde4/kpartsdesignerplugin.so +lib/kde4/kpilot_conduit_calendar.so +lib/kde4/kpilot_conduit_contacts.so +lib/kde4/kpilot_conduit_memofile.so +lib/kde4/kpilot_conduit_time.so +lib/kde4/kpilot_conduit_todo.so lib/kde4/ktexteditorkabcbridge.so +lib/kde4/ktimetrackerpart.so lib/kde4/ldifvcardthumbnail.so lib/kde4/plugins/designer/kdepimwidgets.so -lib/libakonadi-kabc.so -lib/libakonadi-kabc.so.5 -lib/libakonadi-kabc.so.5.0.0 +lib/libakonadi-kabccommon.so +lib/libakonadi-kabccommon.so.5 +lib/libakonadi-kabccommon.so.5.0.1 lib/libakonadi-kcal.so lib/libakonadi-kcal.so.5 -lib/libakonadi-kcal.so.5.0.0 +lib/libakonadi-kcal.so.5.0.1 lib/libakregatorinterfaces.so lib/libakregatorinterfaces.so.5 -lib/libakregatorinterfaces.so.5.0.0 -lib/libakregatorprivate.so +lib/libakregatorinterfaces.so.5.0.1 lib/libakregatorprivate.so.5 -lib/libakregatorprivate.so.5.0.0 +lib/libakregatorprivate.so.5.0.1 lib/libgwsoap.so lib/libgwsoap.so.5 -lib/libgwsoap.so.5.0.0 +lib/libgwsoap.so.5.0.1 lib/libimap.so lib/libimap.so.5 -lib/libimap.so.5.0.0 +lib/libimap.so.5.0.1 lib/libkabc_groupdav.so lib/libkabc_groupdav.so.5 -lib/libkabc_groupdav.so.5.0.0 +lib/libkabc_groupdav.so.5.0.1 lib/libkabc_slox.so lib/libkabc_slox.so.5 -lib/libkabc_slox.so.5.0.0 +lib/libkabc_slox.so.5.0.1 lib/libkabc_xmlrpc.so lib/libkabc_xmlrpc.so.5 -lib/libkabc_xmlrpc.so.5.0.0 +lib/libkabc_xmlrpc.so.5.0.1 lib/libkabcgroupwise.so lib/libkabcgroupwise.so.5 -lib/libkabcgroupwise.so.5.0.0 +lib/libkabcgroupwise.so.5.0.1 lib/libkabckolab.so lib/libkabckolab.so.5 -lib/libkabckolab.so.5.0.0 +lib/libkabckolab.so.5.0.1 lib/libkabcommon.so lib/libkabcommon.so.5 -lib/libkabcommon.so.5.0.0 +lib/libkabcommon.so.5.0.1 lib/libkabcscalix.so lib/libkabcscalix.so.5 -lib/libkabcscalix.so.5.0.0 +lib/libkabcscalix.so.5.0.1 lib/libkabinterfaces.so lib/libkabinterfaces.so.5 -lib/libkabinterfaces.so.5.0.0 -lib/libkaddressbookprivate.so +lib/libkabinterfaces.so.5.0.1 lib/libkaddressbookprivate.so.5 -lib/libkaddressbookprivate.so.5.0.0 +lib/libkaddressbookprivate.so.5.0.1 lib/libkalarm_resources.so lib/libkalarm_resources.so.5 -lib/libkalarm_resources.so.5.0.0 +lib/libkalarm_resources.so.5.0.1 lib/libkcal_groupdav.so lib/libkcal_groupdav.so.5 -lib/libkcal_groupdav.so.5.0.0 +lib/libkcal_groupdav.so.5.0.1 lib/libkcal_resourceblog.so lib/libkcal_resourceblog.so.5 -lib/libkcal_resourceblog.so.5.0.0 +lib/libkcal_resourceblog.so.5.0.1 lib/libkcal_resourcefeatureplan.so lib/libkcal_resourcefeatureplan.so.5 -lib/libkcal_resourcefeatureplan.so.5.0.0 +lib/libkcal_resourcefeatureplan.so.5.0.1 lib/libkcal_resourceremote.so lib/libkcal_resourceremote.so.5 -lib/libkcal_resourceremote.so.5.0.0 +lib/libkcal_resourceremote.so.5.0.1 lib/libkcal_slox.so lib/libkcal_slox.so.5 -lib/libkcal_slox.so.5.0.0 +lib/libkcal_slox.so.5.0.1 lib/libkcal_xmlrpc.so lib/libkcal_xmlrpc.so.5 -lib/libkcal_xmlrpc.so.5.0.0 +lib/libkcal_xmlrpc.so.5.0.1 lib/libkcalgroupwise.so lib/libkcalgroupwise.so.5 -lib/libkcalgroupwise.so.5.0.0 +lib/libkcalgroupwise.so.5.0.1 lib/libkcalkolab.so lib/libkcalkolab.so.5 -lib/libkcalkolab.so.5.0.0 +lib/libkcalkolab.so.5.0.1 lib/libkcalscalix.so lib/libkcalscalix.so.5 -lib/libkcalscalix.so.5.0.0 +lib/libkcalscalix.so.5.0.1 lib/libkdepim.so lib/libkdepim.so.5 -lib/libkdepim.so.5.0.0 +lib/libkdepim.so.5.0.1 lib/libkgroupwarebase.so lib/libkgroupwarebase.so.5 -lib/libkgroupwarebase.so.5.0.0 +lib/libkgroupwarebase.so.5.0.1 lib/libkgroupwaredav.so lib/libkgroupwaredav.so.5 -lib/libkgroupwaredav.so.5.0.0 +lib/libkgroupwaredav.so.5.0.1 lib/libkholidays.so lib/libkholidays.so.5 -lib/libkholidays.so.5.0.0 -%%KITCHENSYNC%%lib/libkitchensyncprivate.so -%%KITCHENSYNC%%lib/libkitchensyncprivate.so.5 -%%KITCHENSYNC%%lib/libkitchensyncprivate.so.5.0.0 +lib/libkholidays.so.5.0.1 lib/libkleo.so lib/libkleo.so.5 -lib/libkleo.so.5.0.0 +lib/libkleo.so.5.0.1 lib/libkleopatraclientcore.so -lib/libkleopatraclientcore.so.0.2.0 +lib/libkleopatraclientcore.so.0.2.1 lib/libkleopatraclientgui.so -lib/libkleopatraclientgui.so.0.2.0 -lib/libkmailprivate.so +lib/libkleopatraclientgui.so.0.2.1 lib/libkmailprivate.so.5 -lib/libkmailprivate.so.5.0.0 +lib/libkmailprivate.so.5.0.1 lib/libknodecommon.so lib/libknodecommon.so.5 -lib/libknodecommon.so.5.0.0 +lib/libknodecommon.so.5.0.1 lib/libknotes_xmlrpc.so lib/libknotes_xmlrpc.so.5 -lib/libknotes_xmlrpc.so.5.0.0 +lib/libknotes_xmlrpc.so.5.0.1 lib/libknoteskolab.so lib/libknoteskolab.so.5 -lib/libknoteskolab.so.5.0.0 +lib/libknoteskolab.so.5.0.1 lib/libknotesscalix.so lib/libknotesscalix.so.5 -lib/libknotesscalix.so.5.0.0 +lib/libknotesscalix.so.5.0.1 lib/libkocorehelper.so lib/libkocorehelper.so.5 -lib/libkocorehelper.so.5.0.0 +lib/libkocorehelper.so.5.0.1 lib/libkode.so lib/libkode.so.5 -lib/libkode.so.5.0.0 +lib/libkode.so.5.0.1 lib/libkontactinterfaces.so lib/libkontactinterfaces.so.5 -lib/libkontactinterfaces.so.5.0.0 -lib/libkontactprivate.so +lib/libkontactinterfaces.so.5.0.1 lib/libkontactprivate.so.5 -lib/libkontactprivate.so.5.0.0 +lib/libkontactprivate.so.5.0.1 lib/libkorg_stdprinting.so lib/libkorg_stdprinting.so.5 -lib/libkorg_stdprinting.so.5.0.0 +lib/libkorg_stdprinting.so.5.0.1 lib/libkorganizer_calendar.so lib/libkorganizer_calendar.so.5 -lib/libkorganizer_calendar.so.5.0.0 +lib/libkorganizer_calendar.so.5.0.1 lib/libkorganizer_eventviewer.so lib/libkorganizer_eventviewer.so.5 -lib/libkorganizer_eventviewer.so.5.0.0 +lib/libkorganizer_eventviewer.so.5.0.1 lib/libkorganizer_interfaces.so lib/libkorganizer_interfaces.so.5 -lib/libkorganizer_interfaces.so.5.0.0 -lib/libkorganizerprivate.so +lib/libkorganizer_interfaces.so.5.0.1 lib/libkorganizerprivate.so.5 -lib/libkorganizerprivate.so.5.0.0 +lib/libkorganizerprivate.so.5.0.1 lib/libkpgp.so lib/libkpgp.so.5 -lib/libkpgp.so.5.0.0 +lib/libkpgp.so.5.0.1 +lib/libkpilot.so +lib/libkpilot.so.5 +lib/libkpilot.so.5.0.1 +lib/libkpilot_akonadibase.so +lib/libkpilot_conduit_base.so lib/libkschema.so lib/libkschema.so.5 -lib/libkschema.so.5.0.0 +lib/libkschema.so.5.0.1 lib/libkschemawidgets.so lib/libkschemawidgets.so.5 -lib/libkschemawidgets.so.5.0.0 +lib/libkschemawidgets.so.5.0.1 lib/libksieve.so lib/libksieve.so.5 -lib/libksieve.so.5.0.0 +lib/libksieve.so.5.0.1 lib/libkslox.so lib/libkslox.so.5 -lib/libkslox.so.5.0.0 +lib/libkslox.so.5.0.1 lib/libkxmlcommon.so lib/libkxmlcommon.so.5 -lib/libkxmlcommon.so.5.0.0 +lib/libkxmlcommon.so.5.0.1 lib/libmaildir.so lib/libmaildir.so.5 -lib/libmaildir.so.5.0.0 +lib/libmaildir.so.5.0.1 lib/libmimelib.so lib/libmimelib.so.5 -lib/libmimelib.so.5.0.0 -%%KITCHENSYNC%%lib/libqopensync.so -%%KITCHENSYNC%%lib/libqopensync.so.5 -%%KITCHENSYNC%%lib/libqopensync.so.5.0.0 +lib/libmimelib.so.5.0.1 lib/libschema.so lib/libschema.so.5 -lib/libschema.so.5.0.0 +lib/libschema.so.5.0.1 lib/libwscl.so lib/libwscl.so.5 -lib/libwscl.so.5.0.0 +lib/libwscl.so.5.0.1 lib/libwsdl.so lib/libwsdl.so.5 -lib/libwsdl.so.5.0.0 +lib/libwsdl.so.5.0.1 lib/strigi/strigiea_ics.so -lib/strigi/strigiea_rfc822.so lib/strigi/strigiea_vcf.so +share/akonadi/agents/distlistresource.desktop share/akonadi/agents/icalresource.desktop share/akonadi/agents/imaplibresource.desktop share/akonadi/agents/kabcresource.desktop @@ -430,8 +453,10 @@ share/akonadi/agents/maildirresource.desktop share/akonadi/agents/mailthreaderagent.desktop share/akonadi/agents/nepomukcontactfeeder.desktop share/akonadi/agents/nepomukemailfeeder.desktop +share/akonadi/agents/nepomuktagresource.desktop share/akonadi/agents/nntpresource.desktop share/akonadi/agents/strigifeeder.desktop +share/akonadi/agents/vcarddirresource.desktop share/akonadi/agents/vcardresource.desktop share/applications/kde4/KMail.desktop share/applications/kde4/KNode.desktop @@ -443,18 +468,19 @@ share/applications/kde4/akregator.desktop share/applications/kde4/groupwarewizard.desktop share/applications/kde4/kaddressbook.desktop share/applications/kde4/kalarm.desktop -share/applications/kde4/karm.desktop -%%KITCHENSYNC%%share/applications/kde4/kitchensync.desktop share/applications/kde4/kleopatra_import.desktop share/applications/kde4/kmail_view.desktop share/applications/kde4/knotes.desktop share/applications/kde4/konsolekalendar.desktop share/applications/kde4/korganizer-import.desktop share/applications/kde4/korganizer.desktop -share/applications/kde4/ktnef.desktop +share/applications/kde4/kpilot.desktop +share/applications/kde4/kpilotdaemon.desktop +share/applications/kde4/ktimetracker.desktop share/applications/kde4/kwsdl_compiler.desktop share/apps/akonadi/plugins/serializer/akonadi_serializer_addressee.desktop share/apps/akonadi/plugins/serializer/akonadi_serializer_bookmark.desktop +share/apps/akonadi/plugins/serializer/akonadi_serializer_contactgroup.desktop share/apps/akonadi/plugins/serializer/akonadi_serializer_kcal.desktop share/apps/akonadi/plugins/serializer/akonadi_serializer_mail.desktop share/apps/akonadiconsole/akonadiconsoleui.rc @@ -503,7 +529,6 @@ share/apps/kaddressbook/printing/ringbinder-style.png share/apps/kaddressbook/vcard_xxportui.rc share/apps/kaddressbook/zone.tab share/apps/kalarm/kalarmui.rc -share/apps/karmpart/karmui.rc share/apps/kconf_update/kalarm-1.2.1-general.pl share/apps/kconf_update/kalarm-1.9.5-defaults.pl share/apps/kconf_update/kalarm-2.0.2-general.pl @@ -531,6 +556,7 @@ share/apps/kconf_update/kolab-resource.upd share/apps/kconf_update/korganizer.upd share/apps/kconf_update/kpgp-3.1-upgrade-address-data.pl share/apps/kconf_update/kpgp.upd +share/apps/kconf_update/kpilot.upd share/apps/kconf_update/upgrade-resourcetype.pl share/apps/kconf_update/upgrade-signature.pl share/apps/kconf_update/upgrade-transport.pl @@ -538,11 +564,6 @@ share/apps/kdepimwidgets/pics/addresseelineedit.png share/apps/kdepimwidgets/pics/clicklineedit.png share/apps/kdepimwidgets/pics/kdateedit.png share/apps/kdepimwidgets/pics/ktimeedit.png -%%KITCHENSYNC%%share/apps/kitchensync/about/kitchensync.css -%%KITCHENSYNC%%share/apps/kitchensync/about/main.html -%%KITCHENSYNC%%share/apps/kitchensync/about/top-right-kitchensync.png -%%KITCHENSYNC%%share/apps/kitchensync/kitchensync_part.rc -%%KITCHENSYNC%%share/apps/kitchensync/kitchensyncui.rc share/apps/kjots/kjotspartui.rc share/apps/kjots/kjotsui.rc share/apps/kleopatra/kleopatra.rc @@ -558,6 +579,23 @@ share/apps/kmail/kmail_part.rc share/apps/kmail/kmcomposerui.rc share/apps/kmail/kmmainwin.rc share/apps/kmail/kmreadermainwin.rc +share/apps/kmail/pics/attachmentQuicklistClosed.png +share/apps/kmail/pics/attachmentQuicklistOpened.png +share/apps/kmail/pics/enterprise_bottom.png +share/apps/kmail/pics/enterprise_bottom_left.png +share/apps/kmail/pics/enterprise_bottom_right.png +share/apps/kmail/pics/enterprise_icon.png +share/apps/kmail/pics/enterprise_left.png +share/apps/kmail/pics/enterprise_right.png +share/apps/kmail/pics/enterprise_s_left.png +share/apps/kmail/pics/enterprise_s_right.png +share/apps/kmail/pics/enterprise_sbar.png +share/apps/kmail/pics/enterprise_sp_right.png +share/apps/kmail/pics/enterprise_sw.png +share/apps/kmail/pics/enterprise_top.png +share/apps/kmail/pics/enterprise_top_left.png +share/apps/kmail/pics/enterprise_top_right.png +share/apps/kmail/pics/enterprise_w.png share/apps/kmail/pics/key.png share/apps/kmail/pics/key_bad.png share/apps/kmail/pics/key_ok.png @@ -567,8 +605,14 @@ share/apps/kmail/pics/mail-deleted.png share/apps/kmail/pics/mail-encrypted-full.png share/apps/kmail/pics/mail-encrypted-part.png share/apps/kmail/pics/mail-encrypted.png +share/apps/kmail/pics/mail-horizontal-space.png share/apps/kmail/pics/mail-thread-ignored.png share/apps/kmail/pics/mail-thread-watch.png +share/apps/kmail/pics/mail-vertical-separator-line.png +share/apps/kmail/pics/overlay-busy-clock-1.png +share/apps/kmail/pics/overlay-busy-clock-2.png +share/apps/kmail/pics/overlay-busy-clock-3.png +share/apps/kmail/pics/overlay-busy-clock-4.png share/apps/kmail/pics/pgp-keys.png share/apps/kmail/pics/quotecollapse.png share/apps/kmail/pics/quoteexpand.png @@ -636,6 +680,7 @@ share/apps/kontact/ksettingsdialog/knode.setdlg share/apps/kontact/ksettingsdialog/knotes.setdlg share/apps/kontact/ksettingsdialog/korganizer.setdlg share/apps/kontact/ksettingsdialog/ktimetracker.setdlg +share/apps/kontact/ksettingsdialog/planner.setdlg share/apps/kontact/ksettingsdialog/specialdates.setdlg share/apps/kontact/ksettingsdialog/summary.setdlg share/apps/kontactsummary/kontactsummary_part.rc @@ -648,6 +693,7 @@ share/apps/korganizer/sounds/lightmag.wav share/apps/korganizer/sounds/onscreen.wav share/apps/korganizer/sounds/spinout.wav share/apps/korganizer/tips +share/apps/kpilot/kpilotui.rc share/apps/ktimetracker/icons/oxygen/128x128/actions/subtask-new-ktimetracker.png share/apps/ktimetracker/icons/oxygen/16x16/actions/subtask-new-ktimetracker.png share/apps/ktimetracker/icons/oxygen/22x22/actions/subtask-new-ktimetracker.png @@ -655,7 +701,7 @@ share/apps/ktimetracker/icons/oxygen/32x32/actions/subtask-new-ktimetracker.png share/apps/ktimetracker/icons/oxygen/48x48/actions/subtask-new-ktimetracker.png share/apps/ktimetracker/icons/oxygen/64x64/actions/subtask-new-ktimetracker.png share/apps/ktimetracker/icons/oxygen/scalable/actions/subtask-new-ktimetracker.svgz -share/apps/ktimetracker/karmui.rc +share/apps/ktimetracker/ktimetrackerui.rc share/apps/ktimetracker/pics/active-icon-0.xpm share/apps/ktimetracker/pics/active-icon-1.xpm share/apps/ktimetracker/pics/active-icon-2.xpm @@ -678,7 +724,6 @@ share/apps/ktimetracker/pics/watch-4.xpm share/apps/ktimetracker/pics/watch-5.xpm share/apps/ktimetracker/pics/watch-6.xpm share/apps/ktimetracker/pics/watch-7.xpm -share/apps/ktnef/ktnefui.rc share/apps/kwatchgnupg/kwatchgnupgui.rc share/apps/kwatchgnupg/pics/kwatchgnupg.png share/apps/kwatchgnupg/pics/kwatchgnupg2.png @@ -765,9 +810,12 @@ share/apps/nepomuk/ontologies/nco.desktop share/apps/nepomuk/ontologies/nco.trig share/apps/nepomuk/ontologies/nmo.desktop share/apps/nepomuk/ontologies/nmo.trig +share/autostart/kabcdistlistupdater.desktop share/autostart/kalarm.autostart.desktop share/autostart/korgac.desktop share/config.kcfg/akregator.kcfg +share/config.kcfg/calendarsettings.kcfg +share/config.kcfg/contactssettings.kcfg share/config.kcfg/custommimeheader.kcfg share/config.kcfg/customtemplates_kfg.kcfg share/config.kcfg/egroupware.kcfg @@ -780,14 +828,20 @@ share/config.kcfg/knotesglobalconfig.kcfg share/config.kcfg/kolab.kcfg share/config.kcfg/kontact.kcfg share/config.kcfg/korganizer.kcfg +share/config.kcfg/kpilot.kcfg +share/config.kcfg/kpilotlib.kcfg share/config.kcfg/kxforms.kcfg +share/config.kcfg/memofileconduit.kcfg share/config.kcfg/replyphrases.kcfg share/config.kcfg/scalix.kcfg share/config.kcfg/slox.kcfg share/config.kcfg/templatesconfiguration_kfg.kcfg +share/config.kcfg/timeconduit.kcfg +share/config.kcfg/todosettings.kcfg share/config/kmail.antispamrc share/config/kmail.antivirusrc share/config/korganizer.knsrc +share/config/kres-migratorrc share/config/libkleopatrarc share/dbus-1/interfaces/org.kde.KAddressbook.Core.xml share/dbus-1/interfaces/org.kde.KNotes.xml @@ -825,6 +879,10 @@ share/doc/HTML/en/akregator/main-window4.png share/doc/HTML/en/akregator/quick-filter.png share/doc/HTML/en/akregator/rss.png share/doc/HTML/en/akregator/rss3.png +share/doc/HTML/en/kabcclient/common +share/doc/HTML/en/kabcclient/index.cache.bz2 +share/doc/HTML/en/kabcclient/index.docbook +share/doc/HTML/en/kabcclient/man-kabcclient.1.docbook share/doc/HTML/en/kaddressbook/addhost.png share/doc/HTML/en/kaddressbook/common share/doc/HTML/en/kaddressbook/conf.png @@ -841,11 +899,15 @@ share/doc/HTML/en/kaddressbook/resourcesdlg.png share/doc/HTML/en/kaddressbook/vieweditdlg.png share/doc/HTML/en/kalarm/alarmmessage.png share/doc/HTML/en/kalarm/common +share/doc/HTML/en/kalarm/editwindow-simple.png share/doc/HTML/en/kalarm/editwindow.png share/doc/HTML/en/kalarm/index.cache.bz2 share/doc/HTML/en/kalarm/index.docbook share/doc/HTML/en/kalarm/mainwindow.png share/doc/HTML/en/kalarm/spinbox.png +share/doc/HTML/en/kioslave/news/common +share/doc/HTML/en/kioslave/news/index.cache.bz2 +share/doc/HTML/en/kioslave/news/index.docbook share/doc/HTML/en/kjots/common share/doc/HTML/en/kjots/index.cache.bz2 share/doc/HTML/en/kjots/index.docbook @@ -993,6 +1055,41 @@ share/doc/HTML/en/korganizer/outlook-to-vcalendar.docbook share/doc/HTML/en/korganizer/plugins-chapter.docbook share/doc/HTML/en/korganizer/remotefile-resource.png share/doc/HTML/en/korganizer/todo-general.png +share/doc/HTML/en/kpilot/address-app.png +share/doc/HTML/en/kpilot/common +share/doc/HTML/en/kpilot/conduit-knotes.png +share/doc/HTML/en/kpilot/conduit-mal.png +share/doc/HTML/en/kpilot/conduit-palmdoc.png +share/doc/HTML/en/kpilot/conduit-popmail-kmail.png +share/doc/HTML/en/kpilot/conduit-sysinfo.png +share/doc/HTML/en/kpilot/conduit-vcal.png +share/doc/HTML/en/kpilot/configuration.docbook +share/doc/HTML/en/kpilot/daemon-menu.png +share/doc/HTML/en/kpilot/db-app.png +share/doc/HTML/en/kpilot/faq.docbook +share/doc/HTML/en/kpilot/file-app.png +share/doc/HTML/en/kpilot/index.cache.bz2 +share/doc/HTML/en/kpilot/index.docbook +share/doc/HTML/en/kpilot/main-app.png +share/doc/HTML/en/kpilot/memo-app.png +share/doc/HTML/en/kpilot/setup-address.png +share/doc/HTML/en/kpilot/setup-conduit.png +share/doc/HTML/en/kpilot/setup-dbspecial.png +share/doc/HTML/en/kpilot/setup-general.png +share/doc/HTML/en/kpilot/setup-hotsync.png +share/doc/HTML/en/kpilot/setup-items.png +share/doc/HTML/en/kpilot/setup-startup-exit.png +share/doc/HTML/en/kpilot/setup-tabs.png +share/doc/HTML/en/kpilot/setup-viewer.png +share/doc/HTML/en/kpilot/sidebar.png +share/doc/HTML/en/kpilot/sync.docbook +share/doc/HTML/en/kpilot/todo-app.png +share/doc/HTML/en/kpilot/toolbar_backup.png +share/doc/HTML/en/kpilot/toolbar_hotsync.png +share/doc/HTML/en/kpilot/usage.docbook +share/doc/HTML/en/kpilot/wizard-conduits.png +share/doc/HTML/en/kpilot/wizard-connection.png +share/doc/HTML/en/kpilot/wizard-general.png share/doc/HTML/en/ktimetracker/clipboard-history.png share/doc/HTML/en/ktimetracker/common share/doc/HTML/en/ktimetracker/copy-this-task.png @@ -1003,9 +1100,6 @@ share/doc/HTML/en/ktimetracker/index.cache.bz2 share/doc/HTML/en/ktimetracker/index.docbook share/doc/HTML/en/ktimetracker/karm.png share/doc/HTML/en/ktimetracker/systray.png -share/doc/HTML/en/kwsdl_compiler/common -share/doc/HTML/en/kwsdl_compiler/index.cache.bz2 -share/doc/HTML/en/kwsdl_compiler/index.docbook share/icons/hicolor/128x128/apps/akregator.png share/icons/hicolor/128x128/apps/kaddressbook.png share/icons/hicolor/128x128/apps/kjots.png @@ -1016,12 +1110,18 @@ share/icons/hicolor/128x128/apps/knotes.png share/icons/hicolor/128x128/apps/kontact.png share/icons/hicolor/128x128/apps/korganizer.png share/icons/hicolor/128x128/apps/ktimetracker.png -%%KITCHENSYNC%%share/icons/hicolor/16x16/actions/sync-start.png +share/icons/hicolor/16x16/actions/kpilot_backup.png +share/icons/hicolor/16x16/actions/kpilot_busysync.png +share/icons/hicolor/16x16/actions/kpilot_fullsync.png +share/icons/hicolor/16x16/actions/kpilot_hhtopc.png +share/icons/hicolor/16x16/actions/kpilot_hotsync.png +share/icons/hicolor/16x16/actions/kpilot_nosync.png +share/icons/hicolor/16x16/actions/kpilot_reset.png +share/icons/hicolor/16x16/actions/kpilot_restore.png share/icons/hicolor/16x16/apps/akregator.png share/icons/hicolor/16x16/apps/akregator_empty.png share/icons/hicolor/16x16/apps/kaddressbook.png share/icons/hicolor/16x16/apps/kalarm.png -%%KITCHENSYNC%%share/icons/hicolor/16x16/apps/kitchensync.png share/icons/hicolor/16x16/apps/kjots.png share/icons/hicolor/16x16/apps/kmail.png share/icons/hicolor/16x16/apps/knode.png @@ -1029,23 +1129,34 @@ share/icons/hicolor/16x16/apps/knode2.png share/icons/hicolor/16x16/apps/knotes.png share/icons/hicolor/16x16/apps/kontact.png share/icons/hicolor/16x16/apps/korganizer.png +share/icons/hicolor/16x16/apps/kpilot.png +share/icons/hicolor/16x16/apps/kpilotDaemon.png share/icons/hicolor/16x16/apps/ktimetracker.png -%%KITCHENSYNC%%share/icons/hicolor/22x22/actions/sync-start.png +share/icons/hicolor/22x22/actions/kpilot_backup.png +share/icons/hicolor/22x22/actions/kpilot_busysync.png +share/icons/hicolor/22x22/actions/kpilot_fullsync.png +share/icons/hicolor/22x22/actions/kpilot_hhtopc.png +share/icons/hicolor/22x22/actions/kpilot_hotsync.png +share/icons/hicolor/22x22/actions/kpilot_nosync.png +share/icons/hicolor/22x22/actions/kpilot_reset.png +share/icons/hicolor/22x22/actions/kpilot_restore.png share/icons/hicolor/22x22/apps/akregator.png share/icons/hicolor/22x22/apps/kaddressbook.png -share/icons/hicolor/22x22/apps/kalarm.png -%%KITCHENSYNC%%share/icons/hicolor/22x22/apps/kitchensync.png share/icons/hicolor/22x22/apps/kjots.png share/icons/hicolor/22x22/apps/kmail.png share/icons/hicolor/22x22/apps/knotes.png share/icons/hicolor/22x22/apps/kontact.png share/icons/hicolor/22x22/apps/korganizer.png +share/icons/hicolor/22x22/apps/kpilot.png +share/icons/hicolor/22x22/apps/kpilotDaemon.png share/icons/hicolor/22x22/apps/ktimetracker.png -%%KITCHENSYNC%%share/icons/hicolor/32x32/actions/sync-start.png +share/icons/hicolor/32x32/actions/kpilot_fullsync.png +share/icons/hicolor/32x32/actions/kpilot_hhtopc.png +share/icons/hicolor/32x32/actions/kpilot_hotsync.png +share/icons/hicolor/32x32/actions/kpilot_reset.png share/icons/hicolor/32x32/apps/akregator.png share/icons/hicolor/32x32/apps/kaddressbook.png share/icons/hicolor/32x32/apps/kalarm.png -%%KITCHENSYNC%%share/icons/hicolor/32x32/apps/kitchensync.png share/icons/hicolor/32x32/apps/kjots.png share/icons/hicolor/32x32/apps/kmail.png share/icons/hicolor/32x32/apps/knode.png @@ -1053,12 +1164,16 @@ share/icons/hicolor/32x32/apps/knode2.png share/icons/hicolor/32x32/apps/knotes.png share/icons/hicolor/32x32/apps/kontact.png share/icons/hicolor/32x32/apps/korganizer.png +share/icons/hicolor/32x32/apps/kpilot.png +share/icons/hicolor/32x32/apps/kpilotDaemon.png share/icons/hicolor/32x32/apps/ktimetracker.png -%%KITCHENSYNC%%share/icons/hicolor/48x48/actions/sync-start.png +share/icons/hicolor/48x48/actions/kpilot_fullsync.png +share/icons/hicolor/48x48/actions/kpilot_hhtopc.png +share/icons/hicolor/48x48/actions/kpilot_hotsync.png +share/icons/hicolor/48x48/actions/kpilot_reset.png share/icons/hicolor/48x48/apps/akregator.png share/icons/hicolor/48x48/apps/kaddressbook.png share/icons/hicolor/48x48/apps/kalarm.png -%%KITCHENSYNC%%share/icons/hicolor/48x48/apps/kitchensync.png share/icons/hicolor/48x48/apps/kjots.png share/icons/hicolor/48x48/apps/kmail.png share/icons/hicolor/48x48/apps/knode.png @@ -1066,8 +1181,16 @@ share/icons/hicolor/48x48/apps/knode2.png share/icons/hicolor/48x48/apps/knotes.png share/icons/hicolor/48x48/apps/kontact.png share/icons/hicolor/48x48/apps/korganizer.png +share/icons/hicolor/48x48/apps/kpilot.png +share/icons/hicolor/48x48/apps/kpilotDaemon.png share/icons/hicolor/48x48/apps/ktimetracker.png -share/icons/hicolor/48x48/apps/ktnef.png +share/icons/hicolor/64x64/actions/kpilot_address.png +share/icons/hicolor/64x64/actions/kpilot_bhotsync.png +share/icons/hicolor/64x64/actions/kpilot_calendar.png +share/icons/hicolor/64x64/actions/kpilot_db.png +share/icons/hicolor/64x64/actions/kpilot_fileinstaller.png +share/icons/hicolor/64x64/actions/kpilot_knotes.png +share/icons/hicolor/64x64/actions/kpilot_todo.png share/icons/hicolor/64x64/apps/akregator.png share/icons/hicolor/64x64/apps/kaddressbook.png share/icons/hicolor/64x64/apps/kjots.png @@ -1083,6 +1206,7 @@ share/icons/hicolor/scalable/apps/kaddressbook.svgz share/icons/hicolor/scalable/apps/kjots.svgz share/icons/hicolor/scalable/apps/kmail.svgz share/icons/hicolor/scalable/apps/korganizer.svgz +share/icons/oxygen/128x128/apps/kalarm.png share/icons/oxygen/128x128/apps/kleopatra.png share/icons/oxygen/16x16/actions/document-new-from-template.png share/icons/oxygen/16x16/actions/edit-delete-page.png @@ -1090,8 +1214,8 @@ share/icons/oxygen/16x16/actions/ldap_lookup.png share/icons/oxygen/16x16/actions/mail-forwarded-replied.png share/icons/oxygen/16x16/actions/mail-forwarded.png share/icons/oxygen/16x16/actions/mail-reply-custom.png +share/icons/oxygen/16x16/actions/mail-signed-fully.png share/icons/oxygen/16x16/actions/mail-signed-part.png -share/icons/oxygen/16x16/actions/mail-signed-verified.png share/icons/oxygen/16x16/actions/mail-signed.png share/icons/oxygen/16x16/actions/meeting-attending-tentative.png share/icons/oxygen/16x16/actions/meeting-attending.png @@ -1115,6 +1239,7 @@ share/icons/oxygen/22x22/actions/button_more.png share/icons/oxygen/22x22/actions/checkmark.png share/icons/oxygen/22x22/actions/document-new-from-template.png share/icons/oxygen/22x22/actions/edit-delete-page.png +share/icons/oxygen/22x22/actions/kalarm.png share/icons/oxygen/22x22/actions/mail-reply-custom.png share/icons/oxygen/22x22/actions/meeting-attending-tentative.png share/icons/oxygen/22x22/actions/meeting-attending.png @@ -1154,14 +1279,16 @@ share/icons/oxygen/48x48/apps/kleopatra.png share/icons/oxygen/48x48/apps/kmailcvt.png share/icons/oxygen/48x48/mimetypes/x-mail-distribution-list.png share/icons/oxygen/48x48/status/mail-tagged.png +share/icons/oxygen/64x64/apps/kalarm.png share/icons/oxygen/64x64/apps/kleopatra.png share/icons/oxygen/scalable/actions/edit-delete-page.svgz share/icons/oxygen/scalable/actions/mail-forwarded-replied.svgz share/icons/oxygen/scalable/actions/mail-forwarded.svgz share/icons/oxygen/scalable/actions/mail-reply-custom.svgz +share/icons/oxygen/scalable/actions/mail-signed-fully.svgz share/icons/oxygen/scalable/actions/mail-signed-part.svgz -share/icons/oxygen/scalable/actions/mail-signed-verified.svgz share/icons/oxygen/scalable/actions/mail-signed.svgz +share/icons/oxygen/scalable/apps/kalarm.svgz share/icons/oxygen/scalable/apps/kleopatra.svgz share/icons/oxygen/scalable/mimetypes/x-mail-distribution-list.svgz share/icons/oxygen/scalable/status/mail-tagged.svgz @@ -1209,11 +1336,14 @@ share/kde4/services/kaddressbook/smsprotocol.desktop share/kde4/services/kaddressbook/tableview.desktop share/kde4/services/kaddressbook/vcard_xxport.desktop share/kde4/services/kaddressbook/yahooprotocol.desktop -share/kde4/services/karm_part.desktop +share/kde4/services/kaddressbookpart.desktop +share/kde4/services/kcm_akonadi.desktop share/kde4/services/kcm_akonadi_resources.desktop +share/kde4/services/kcm_akonadi_server.desktop share/kde4/services/kcmapptsummary.desktop share/kde4/services/kcmkmailsummary.desktop share/kde4/services/kcmkontactsummary.desktop +share/kde4/services/kcmplanner.desktop share/kde4/services/kcmsdsummary.desktop share/kde4/services/kcmtodosummary.desktop share/kde4/services/kjotspart.desktop @@ -1248,6 +1378,7 @@ share/kde4/services/kontact/knodeplugin.desktop share/kde4/services/kontact/knotesplugin.desktop share/kde4/services/kontact/korganizerplugin.desktop share/kde4/services/kontact/ktimetracker_plugin.desktop +share/kde4/services/kontact/plannerplugin.desktop share/kde4/services/kontact/specialdatesplugin.desktop share/kde4/services/kontact/summaryplugin.desktop share/kde4/services/kontact/todoplugin.desktop @@ -1266,6 +1397,10 @@ share/kde4/services/korganizer_configmain.desktop share/kde4/services/korganizer_configplugins.desktop share/kde4/services/korganizer_configtime.desktop share/kde4/services/korganizer_configviews.desktop +share/kde4/services/kpilot-conduit-calendar.desktop +share/kde4/services/kpilot-conduit-contacts.desktop +share/kde4/services/kpilot-conduit-todo.desktop +share/kde4/services/kpilot_config.desktop share/kde4/services/kresources/alarms/local.desktop share/kde4/services/kresources/alarms/localdir.desktop share/kde4/services/kresources/alarms/remote.desktop @@ -1298,9 +1433,12 @@ share/kde4/services/kresources/knotes/local.desktop share/kde4/services/kresources/knotes/scalix.desktop share/kde4/services/kresources/knotes_manager.desktop share/kde4/services/ktimetrackerconfig.desktop +share/kde4/services/ktimetrackerpart.desktop share/kde4/services/ldifvcardthumbnail.desktop +share/kde4/services/memofile-conduit.desktop share/kde4/services/scalix.protocol share/kde4/services/scalixs.protocol +share/kde4/services/time_conduit.desktop share/kde4/services/webcal.protocol share/kde4/servicetypes/akregator_plugin.desktop share/kde4/servicetypes/calendardecoration.desktop @@ -1317,13 +1455,14 @@ share/kde4/servicetypes/kaddressbookimprotocol.desktop share/kde4/servicetypes/kontactplugin.desktop share/kde4/servicetypes/korganizerpart.desktop share/kde4/servicetypes/korgprintplugin.desktop +share/kde4/servicetypes/kpilotconduit.desktop @dirrm share/kde4/services/kresources/knotes @dirrm share/kde4/services/kresources/alarms @dirrm share/kde4/services/korganizer @dirrm share/kde4/services/kontact @dirrm share/kde4/services/kaddressbook -@dirrm share/doc/HTML/en/kwsdl_compiler @dirrm share/doc/HTML/en/ktimetracker +@dirrm share/doc/HTML/en/kpilot @dirrm share/doc/HTML/en/korganizer @dirrm share/doc/HTML/en/kontact @dirrm share/doc/HTML/en/konsolekalendar @@ -1332,12 +1471,11 @@ share/kde4/servicetypes/korgprintplugin.desktop @dirrm share/doc/HTML/en/kmail @dirrm share/doc/HTML/en/kleopatra @dirrm share/doc/HTML/en/kjots +@dirrm share/doc/HTML/en/kioslave/news @dirrm share/doc/HTML/en/kalarm @dirrm share/doc/HTML/en/kaddressbook +@dirrm share/doc/HTML/en/kabcclient @dirrm share/doc/HTML/en/akregator -@dirrmtry share/autostart -@dirrmtry share/apps/nepomuk/ontologies -@dirrmtry share/apps/nepomuk @dirrm share/apps/libkleopatra/pics @dirrm share/apps/libkleopatra @dirrm share/apps/libkholidays @@ -1346,7 +1484,6 @@ share/kde4/servicetypes/korgprintplugin.desktop @dirrm share/apps/kxforms @dirrm share/apps/kwatchgnupg/pics @dirrm share/apps/kwatchgnupg -@dirrm share/apps/ktnef @dirrm share/apps/ktimetracker/pics @dirrm share/apps/ktimetracker/icons/oxygen/scalable/actions @dirrm share/apps/ktimetracker/icons/oxygen/scalable @@ -1365,6 +1502,7 @@ share/kde4/servicetypes/korgprintplugin.desktop @dirrm share/apps/ktimetracker/icons/oxygen @dirrm share/apps/ktimetracker/icons @dirrm share/apps/ktimetracker +@dirrm share/apps/kpilot @dirrm share/apps/korganizer/sounds @dirrm share/apps/korganizer @dirrm share/apps/korgac/icons/oxygen/22x22/actions @@ -1394,12 +1532,8 @@ share/kde4/servicetypes/korgprintplugin.desktop @dirrm share/apps/kleopatra/pics @dirrm share/apps/kleopatra @dirrm share/apps/kjots -%%KITCHENSYNC%%@dirrm share/apps/kitchensync/about -%%KITCHENSYNC%%@dirrm share/apps/kitchensync @dirrm share/apps/kdepimwidgets/pics @dirrm share/apps/kdepimwidgets -@dirrmtry share/apps/kconf_update -@dirrm share/apps/karmpart @dirrm share/apps/kalarm @dirrm share/apps/kaddressbook/printing @dirrm share/apps/kaddressbook/pics @@ -1409,24 +1543,21 @@ share/kde4/servicetypes/korgprintplugin.desktop @dirrm share/apps/kaddressbook/icons @dirrm share/apps/kaddressbook/csv-templates @dirrm share/apps/kaddressbook -@dirrmtry share/apps/cmake/modules -@dirrmtry share/apps/cmake @dirrm share/apps/akregator_onlinesync_plugin -@dirrm share/apps/akregator/pics +@dirrmtry share/apps/akregator/pics @dirrm share/apps/akregator/about -@dirrm share/apps/akregator +@dirrmtry share/apps/akregator @dirrm share/apps/akonadiconsole @dirrm share/apps/akonadi/plugins/serializer @dirrm share/apps/akonadi/plugins @dirrm share/apps/akonadi @dirrm share/akonadi/agents @dirrm share/akonadi -@dirrmtry lib/strigi -@dirrmtry lib/kde4/plugins/designer @dirrm include/libkleopatraclient/gui @dirrm include/libkleopatraclient/core @dirrm include/libkleopatraclient @dirrm include/ksieve +@dirrm include/kpilot @dirrm include/kpgp @dirrm include/kmail/interfaces @dirrm include/kmail diff --git a/deskutils/kdepimlibs4/Makefile b/deskutils/kdepimlibs4/Makefile index f9b569a3afef..f50691491554 100644 --- a/deskutils/kdepimlibs4/Makefile +++ b/deskutils/kdepimlibs4/Makefile @@ -8,7 +8,7 @@ PORTNAME= kdepimlibs PORTVERSION= ${KDE4_VERSION} CATEGORIES= deskutils kde ipv6 MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org @@ -16,7 +16,8 @@ COMMENT= Libraries for KDE-PIM applications LIB_DEPENDS= gpgme:${PORTSDIR}/security/gpgme \ sasl2:${PORTSDIR}/security/cyrus-sasl2 \ - boost_python:${PORTSDIR}/devel/boost-python + boost_python:${PORTSDIR}/devel/boost-python \ + ical.42:${PORTSDIR}/devel/libical USE_KDE4= kdelibs akonadi kdeprefix kdehier automoc4 KDE4_BUILDENV= yes @@ -35,5 +36,7 @@ PLIST_SUB+= WITH_PTH='@comment ' post-extract: ${MKDIR} ${WRKSRC} + ${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ + ${WRKSRC}/../cmake/modules/*.cmake .include <bsd.port.mk> diff --git a/deskutils/kdepimlibs4/distinfo b/deskutils/kdepimlibs4/distinfo index 351dcf41822c..978a0c7565b7 100644 --- a/deskutils/kdepimlibs4/distinfo +++ b/deskutils/kdepimlibs4/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdepimlibs-4.1.4.tar.bz2) = 9546430309b1f34707bffdceec0fbc4b -SHA256 (KDE/kdepimlibs-4.1.4.tar.bz2) = 4aca66ce34a6e944a4707ff06b6c950c096d9b9383d46961b8be1d0a93826d7e -SIZE (KDE/kdepimlibs-4.1.4.tar.bz2) = 1891181 +MD5 (KDE/kdepimlibs-4.2.0.tar.bz2) = 8a91677e2dca7d4db26b33c78e239e5e +SHA256 (KDE/kdepimlibs-4.2.0.tar.bz2) = e6a6c5c1eb69141a6925b182e94704cda37ef48eb488bb71dc224bc00583b254 +SIZE (KDE/kdepimlibs-4.2.0.tar.bz2) = 1589202 diff --git a/deskutils/kdepimlibs4/files/patch-akonadi-tests-testrunner-setup.cpp b/deskutils/kdepimlibs4/files/patch-akonadi-tests-testrunner-setup.cpp new file mode 100644 index 000000000000..958847c15879 --- /dev/null +++ b/deskutils/kdepimlibs4/files/patch-akonadi-tests-testrunner-setup.cpp @@ -0,0 +1,16 @@ +--- ../akonadi/tests/testrunner/setup.cpp.orig 2009-01-31 17:51:35.000000000 +0100 ++++ ../akonadi/tests/testrunner/setup.cpp 2009-01-31 20:19:24.000000000 +0100 +@@ -50,9 +50,13 @@ + + foreach(const QString& s, environment.keys()) { + if (s != "HOME") { ++#if defined(Q_OS_FREEBSD) && __FreeBSD_version < 700038 ++ unsetenv( s.toAscii() ); ++#else + if ( !unsetenv( s.toAscii() )) { + return false; + } ++#endif + } + } + diff --git a/deskutils/kdepimlibs4/pkg-plist b/deskutils/kdepimlibs4/pkg-plist index af9dc4d46d7b..faa899b0ccd5 100644 --- a/deskutils/kdepimlibs4/pkg-plist +++ b/deskutils/kdepimlibs4/pkg-plist @@ -6,6 +6,7 @@ include/akonadi/agentinstancemodel.h include/akonadi/agentinstancewidget.h include/akonadi/agentmanager.h include/akonadi/agenttype.h +include/akonadi/agenttypedialog.h include/akonadi/agenttypemodel.h include/akonadi/agenttypewidget.h include/akonadi/akonadi_export.h @@ -30,6 +31,7 @@ include/akonadi/collectionstatisticsmodel.h include/akonadi/collectionview.h include/akonadi/control.h include/akonadi/entity.h +include/akonadi/entitydisplayattribute.h include/akonadi/item.h include/akonadi/itemcopyjob.h include/akonadi/itemcreatejob.h @@ -45,21 +47,25 @@ include/akonadi/itemserializerplugin.h include/akonadi/itemsync.h include/akonadi/itemview.h include/akonadi/job.h +include/akonadi/kabc/akonadi-kabc_export.h +include/akonadi/kabc/contactparts.h include/akonadi/kmime/akonadi-kmime_export.h include/akonadi/kmime/messagemodel.h include/akonadi/kmime/messageparts.h include/akonadi/kmime/messagethreaderproxymodel.h include/akonadi/kmime/messagethreadingattribute.h +include/akonadi/linkjob.h include/akonadi/monitor.h include/akonadi/private/collectionpathresolver_p.h include/akonadi/resourcebase.h include/akonadi/searchcreatejob.h +include/akonadi/servermanager.h include/akonadi/session.h include/akonadi/standardactionmanager.h include/akonadi/transactionjobs.h include/akonadi/transactionsequence.h +include/akonadi/unlinkjob.h include/gpgme++/context.h -include/gpgme++/gpgadduserideditinteractor.h include/gpgme++/data.h include/gpgme++/decryptionresult.h include/gpgme++/editinteractor.h @@ -69,6 +75,7 @@ include/gpgme++/error.h include/gpgme++/eventloopinteractor.h include/gpgme++/exception.h include/gpgme++/global.h +include/gpgme++/gpgadduserideditinteractor.h include/gpgme++/gpgme++_export.h include/gpgme++/gpgmefw.h include/gpgme++/gpgsetexpirytimeeditinteractor.h @@ -326,6 +333,10 @@ include/syndication/specificitem.h include/syndication/specificitemvisitor.h include/syndication/syndication.h include/syndication/tools.h +lib/KdepimLibs-%%KDE4_VERSION%%/cmake/KDEPimLibsLibraryTargetsWithPrefix-%%KDE4_BUILD_TYPE%%.cmake +lib/KdepimLibs-%%KDE4_VERSION%%/cmake/KDEPimLibsLibraryTargetsWithPrefix.cmake +lib/KdepimLibs-%%KDE4_VERSION%%/cmake/KdepimLibsConfig.cmake +lib/KdepimLibs-%%KDE4_VERSION%%/cmake/KdepimLibsConfigVersion.cmake lib/gpgmepp/GpgmeppConfig.cmake lib/gpgmepp/GpgmeppLibraryDepends.cmake lib/kde4/kabc_directory.so @@ -344,12 +355,18 @@ lib/kde4/kio_nntp.so lib/kde4/kio_pop3.so lib/kde4/kio_sieve.so lib/kde4/kio_smtp.so +lib/libakonadi-kabc.so +lib/libakonadi-kabc.so.5 +lib/libakonadi-kabc.so.5.0.1 lib/libakonadi-kde.so lib/libakonadi-kde.so.5 -lib/libakonadi-kde.so.5.0.0 +lib/libakonadi-kde.so.5.0.1 lib/libakonadi-kmime.so lib/libakonadi-kmime.so.5 -lib/libakonadi-kmime.so.5.0.0 +lib/libakonadi-kmime.so.5.0.1 +%%WITH_PTH%%lib/libgpgme++-pth.so +%%WITH_PTH%%lib/libgpgme++-pth.so.2 +%%WITH_PTH%%lib/libgpgme++-pth.so.2.0.2 lib/libgpgme++-pthread.so lib/libgpgme++-pthread.so.2 lib/libgpgme++-pthread.so.2.0.2 @@ -358,49 +375,49 @@ lib/libgpgme++.so.2 lib/libgpgme++.so.2.0.2 lib/libkabc.so lib/libkabc.so.5 -lib/libkabc.so.5.0.0 +lib/libkabc.so.5.0.1 lib/libkabc_file_core.so lib/libkabc_file_core.so.5 -lib/libkabc_file_core.so.5.0.0 +lib/libkabc_file_core.so.5.0.1 lib/libkblog.so lib/libkblog.so.5 -lib/libkblog.so.5.0.0 +lib/libkblog.so.5.0.1 lib/libkcal.so lib/libkcal.so.5 -lib/libkcal.so.5.0.0 +lib/libkcal.so.5.0.1 lib/libkimap.so lib/libkimap.so.5 -lib/libkimap.so.5.0.0 +lib/libkimap.so.5.0.1 lib/libkldap.so lib/libkldap.so.5 -lib/libkldap.so.5.0.0 +lib/libkldap.so.5.0.1 lib/libkmime.so lib/libkmime.so.5 -lib/libkmime.so.5.0.0 +lib/libkmime.so.5.0.1 lib/libkpimidentities.so lib/libkpimidentities.so.5 -lib/libkpimidentities.so.5.0.0 +lib/libkpimidentities.so.5.0.1 lib/libkpimutils.so lib/libkpimutils.so.5 -lib/libkpimutils.so.5.0.0 +lib/libkpimutils.so.5.0.1 lib/libkresources.so lib/libkresources.so.5 -lib/libkresources.so.5.0.0 +lib/libkresources.so.5.0.1 lib/libktnef.so lib/libktnef.so.5 -lib/libktnef.so.5.0.0 +lib/libktnef.so.5.0.1 lib/libkxmlrpcclient.so lib/libkxmlrpcclient.so.5 -lib/libkxmlrpcclient.so.5.0.0 +lib/libkxmlrpcclient.so.5.0.1 lib/libmailtransport.so lib/libmailtransport.so.5 -lib/libmailtransport.so.5.0.0 +lib/libmailtransport.so.5.0.1 lib/libqgpgme.so lib/libqgpgme.so.1 lib/libqgpgme.so.1.0.1 lib/libsyndication.so lib/libsyndication.so.5 -lib/libsyndication.so.5.0.0 +lib/libsyndication.so.5.0.1 share/apps/akonadi-kde/kcfg2dbus.xsl share/apps/cmake/modules/CheckTimezone.cmake share/apps/cmake/modules/FindAkonadi.cmake @@ -413,412 +430,27 @@ share/apps/kabc/countrytransl.map share/apps/kabc/formats/binary.desktop share/apps/kconf_update/mailtransports.upd share/apps/kconf_update/migrate-transports.pl -share/apps/libical/zoneinfo/Africa/Abidjan.ics -share/apps/libical/zoneinfo/Africa/Accra.ics -share/apps/libical/zoneinfo/Africa/Addis_Ababa.ics -share/apps/libical/zoneinfo/Africa/Algiers.ics -share/apps/libical/zoneinfo/Africa/Asmara.ics -share/apps/libical/zoneinfo/Africa/Bamako.ics -share/apps/libical/zoneinfo/Africa/Bangui.ics -share/apps/libical/zoneinfo/Africa/Banjul.ics -share/apps/libical/zoneinfo/Africa/Bissau.ics -share/apps/libical/zoneinfo/Africa/Blantyre.ics -share/apps/libical/zoneinfo/Africa/Brazzaville.ics -share/apps/libical/zoneinfo/Africa/Bujumbura.ics -share/apps/libical/zoneinfo/Africa/Cairo.ics -share/apps/libical/zoneinfo/Africa/Casablanca.ics -share/apps/libical/zoneinfo/Africa/Ceuta.ics -share/apps/libical/zoneinfo/Africa/Conakry.ics -share/apps/libical/zoneinfo/Africa/Dakar.ics -share/apps/libical/zoneinfo/Africa/Dar_es_Salaam.ics -share/apps/libical/zoneinfo/Africa/Djibouti.ics -share/apps/libical/zoneinfo/Africa/Douala.ics -share/apps/libical/zoneinfo/Africa/El_Aaiun.ics -share/apps/libical/zoneinfo/Africa/Freetown.ics -share/apps/libical/zoneinfo/Africa/Gaborone.ics -share/apps/libical/zoneinfo/Africa/Harare.ics -share/apps/libical/zoneinfo/Africa/Johannesburg.ics -share/apps/libical/zoneinfo/Africa/Kampala.ics -share/apps/libical/zoneinfo/Africa/Khartoum.ics -share/apps/libical/zoneinfo/Africa/Kigali.ics -share/apps/libical/zoneinfo/Africa/Kinshasa.ics -share/apps/libical/zoneinfo/Africa/Lagos.ics -share/apps/libical/zoneinfo/Africa/Libreville.ics -share/apps/libical/zoneinfo/Africa/Lome.ics -share/apps/libical/zoneinfo/Africa/Luanda.ics -share/apps/libical/zoneinfo/Africa/Lubumbashi.ics -share/apps/libical/zoneinfo/Africa/Lusaka.ics -share/apps/libical/zoneinfo/Africa/Malabo.ics -share/apps/libical/zoneinfo/Africa/Maputo.ics -share/apps/libical/zoneinfo/Africa/Maseru.ics -share/apps/libical/zoneinfo/Africa/Mbabane.ics -share/apps/libical/zoneinfo/Africa/Mogadishu.ics -share/apps/libical/zoneinfo/Africa/Monrovia.ics -share/apps/libical/zoneinfo/Africa/Nairobi.ics -share/apps/libical/zoneinfo/Africa/Ndjamena.ics -share/apps/libical/zoneinfo/Africa/Niamey.ics -share/apps/libical/zoneinfo/Africa/Nouakchott.ics -share/apps/libical/zoneinfo/Africa/Ouagadougou.ics -share/apps/libical/zoneinfo/Africa/Porto-Novo.ics -share/apps/libical/zoneinfo/Africa/Sao_Tome.ics -share/apps/libical/zoneinfo/Africa/Tripoli.ics -share/apps/libical/zoneinfo/Africa/Tunis.ics -share/apps/libical/zoneinfo/Africa/Windhoek.ics -share/apps/libical/zoneinfo/America/Adak.ics -share/apps/libical/zoneinfo/America/Anchorage.ics -share/apps/libical/zoneinfo/America/Anguilla.ics -share/apps/libical/zoneinfo/America/Antigua.ics -share/apps/libical/zoneinfo/America/Araguaina.ics -share/apps/libical/zoneinfo/America/Argentina/Buenos_Aires.ics -share/apps/libical/zoneinfo/America/Argentina/Catamarca.ics -share/apps/libical/zoneinfo/America/Argentina/Cordoba.ics -share/apps/libical/zoneinfo/America/Argentina/Jujuy.ics -share/apps/libical/zoneinfo/America/Argentina/La_Rioja.ics -share/apps/libical/zoneinfo/America/Argentina/Mendoza.ics -share/apps/libical/zoneinfo/America/Argentina/Rio_Gallegos.ics -share/apps/libical/zoneinfo/America/Argentina/San_Juan.ics -share/apps/libical/zoneinfo/America/Argentina/San_Luis.ics -share/apps/libical/zoneinfo/America/Argentina/Tucuman.ics -share/apps/libical/zoneinfo/America/Argentina/Ushuaia.ics -share/apps/libical/zoneinfo/America/Aruba.ics -share/apps/libical/zoneinfo/America/Asuncion.ics -share/apps/libical/zoneinfo/America/Atikokan.ics -share/apps/libical/zoneinfo/America/Bahia.ics -share/apps/libical/zoneinfo/America/Barbados.ics -share/apps/libical/zoneinfo/America/Belem.ics -share/apps/libical/zoneinfo/America/Belize.ics -share/apps/libical/zoneinfo/America/Blanc-Sablon.ics -share/apps/libical/zoneinfo/America/Boa_Vista.ics -share/apps/libical/zoneinfo/America/Bogota.ics -share/apps/libical/zoneinfo/America/Boise.ics -share/apps/libical/zoneinfo/America/Cambridge_Bay.ics -share/apps/libical/zoneinfo/America/Campo_Grande.ics -share/apps/libical/zoneinfo/America/Cancun.ics -share/apps/libical/zoneinfo/America/Caracas.ics -share/apps/libical/zoneinfo/America/Cayenne.ics -share/apps/libical/zoneinfo/America/Cayman.ics -share/apps/libical/zoneinfo/America/Chicago.ics -share/apps/libical/zoneinfo/America/Chihuahua.ics -share/apps/libical/zoneinfo/America/Costa_Rica.ics -share/apps/libical/zoneinfo/America/Cuiaba.ics -share/apps/libical/zoneinfo/America/Curacao.ics -share/apps/libical/zoneinfo/America/Danmarkshavn.ics -share/apps/libical/zoneinfo/America/Dawson.ics -share/apps/libical/zoneinfo/America/Dawson_Creek.ics -share/apps/libical/zoneinfo/America/Denver.ics -share/apps/libical/zoneinfo/America/Detroit.ics -share/apps/libical/zoneinfo/America/Dominica.ics -share/apps/libical/zoneinfo/America/Edmonton.ics -share/apps/libical/zoneinfo/America/Eirunepe.ics -share/apps/libical/zoneinfo/America/El_Salvador.ics -share/apps/libical/zoneinfo/America/Fortaleza.ics -share/apps/libical/zoneinfo/America/Glace_Bay.ics -share/apps/libical/zoneinfo/America/Godthab.ics -share/apps/libical/zoneinfo/America/Goose_Bay.ics -share/apps/libical/zoneinfo/America/Grand_Turk.ics -share/apps/libical/zoneinfo/America/Grenada.ics -share/apps/libical/zoneinfo/America/Guadeloupe.ics -share/apps/libical/zoneinfo/America/Guatemala.ics -share/apps/libical/zoneinfo/America/Guayaquil.ics -share/apps/libical/zoneinfo/America/Guyana.ics -share/apps/libical/zoneinfo/America/Halifax.ics -share/apps/libical/zoneinfo/America/Havana.ics -share/apps/libical/zoneinfo/America/Hermosillo.ics -share/apps/libical/zoneinfo/America/Indiana/Indianapolis.ics -share/apps/libical/zoneinfo/America/Indiana/Knox.ics -share/apps/libical/zoneinfo/America/Indiana/Marengo.ics -share/apps/libical/zoneinfo/America/Indiana/Petersburg.ics -share/apps/libical/zoneinfo/America/Indiana/Tell_City.ics -share/apps/libical/zoneinfo/America/Indiana/Vevay.ics -share/apps/libical/zoneinfo/America/Indiana/Vincennes.ics -share/apps/libical/zoneinfo/America/Indiana/Winamac.ics -share/apps/libical/zoneinfo/America/Inuvik.ics -share/apps/libical/zoneinfo/America/Iqaluit.ics -share/apps/libical/zoneinfo/America/Jamaica.ics -share/apps/libical/zoneinfo/America/Juneau.ics -share/apps/libical/zoneinfo/America/Kentucky/Louisville.ics -share/apps/libical/zoneinfo/America/Kentucky/Monticello.ics -share/apps/libical/zoneinfo/America/La_Paz.ics -share/apps/libical/zoneinfo/America/Lima.ics -share/apps/libical/zoneinfo/America/Los_Angeles.ics -share/apps/libical/zoneinfo/America/Maceio.ics -share/apps/libical/zoneinfo/America/Managua.ics -share/apps/libical/zoneinfo/America/Manaus.ics -share/apps/libical/zoneinfo/America/Marigot.ics -share/apps/libical/zoneinfo/America/Martinique.ics -share/apps/libical/zoneinfo/America/Mazatlan.ics -share/apps/libical/zoneinfo/America/Menominee.ics -share/apps/libical/zoneinfo/America/Merida.ics -share/apps/libical/zoneinfo/America/Mexico_City.ics -share/apps/libical/zoneinfo/America/Miquelon.ics -share/apps/libical/zoneinfo/America/Moncton.ics -share/apps/libical/zoneinfo/America/Monterrey.ics -share/apps/libical/zoneinfo/America/Montevideo.ics -share/apps/libical/zoneinfo/America/Montreal.ics -share/apps/libical/zoneinfo/America/Montserrat.ics -share/apps/libical/zoneinfo/America/Nassau.ics -share/apps/libical/zoneinfo/America/New_York.ics -share/apps/libical/zoneinfo/America/Nipigon.ics -share/apps/libical/zoneinfo/America/Nome.ics -share/apps/libical/zoneinfo/America/Noronha.ics -share/apps/libical/zoneinfo/America/Panama.ics -share/apps/libical/zoneinfo/America/Pangnirtung.ics -share/apps/libical/zoneinfo/America/Paramaribo.ics -share/apps/libical/zoneinfo/America/Phoenix.ics -share/apps/libical/zoneinfo/America/Port-au-Prince.ics -share/apps/libical/zoneinfo/America/Port_of_Spain.ics -share/apps/libical/zoneinfo/America/Porto_Velho.ics -share/apps/libical/zoneinfo/America/Puerto_Rico.ics -share/apps/libical/zoneinfo/America/Rainy_River.ics -share/apps/libical/zoneinfo/America/Rankin_Inlet.ics -share/apps/libical/zoneinfo/America/Recife.ics -share/apps/libical/zoneinfo/America/Regina.ics -share/apps/libical/zoneinfo/America/Resolute.ics -share/apps/libical/zoneinfo/America/Rio_Branco.ics -share/apps/libical/zoneinfo/America/Santiago.ics -share/apps/libical/zoneinfo/America/Santo_Domingo.ics -share/apps/libical/zoneinfo/America/Sao_Paulo.ics -share/apps/libical/zoneinfo/America/Scoresbysund.ics -share/apps/libical/zoneinfo/America/Shiprock.ics -share/apps/libical/zoneinfo/America/St_Barthelemy.ics -share/apps/libical/zoneinfo/America/St_Johns.ics -share/apps/libical/zoneinfo/America/St_Kitts.ics -share/apps/libical/zoneinfo/America/St_Lucia.ics -share/apps/libical/zoneinfo/America/St_Thomas.ics -share/apps/libical/zoneinfo/America/St_Vincent.ics -share/apps/libical/zoneinfo/America/Swift_Current.ics -share/apps/libical/zoneinfo/America/Tegucigalpa.ics -share/apps/libical/zoneinfo/America/Thule.ics -share/apps/libical/zoneinfo/America/Thunder_Bay.ics -share/apps/libical/zoneinfo/America/Tijuana.ics -share/apps/libical/zoneinfo/America/Toronto.ics -share/apps/libical/zoneinfo/America/Tortola.ics -share/apps/libical/zoneinfo/America/Vancouver.ics -share/apps/libical/zoneinfo/America/Whitehorse.ics -share/apps/libical/zoneinfo/America/Winnipeg.ics -share/apps/libical/zoneinfo/America/Yakutat.ics -share/apps/libical/zoneinfo/America/Yellowknife.ics -share/apps/libical/zoneinfo/Antarctica/Casey.ics -share/apps/libical/zoneinfo/Antarctica/Davis.ics -share/apps/libical/zoneinfo/Antarctica/DumontDUrville.ics -share/apps/libical/zoneinfo/Antarctica/Mawson.ics -share/apps/libical/zoneinfo/Antarctica/McMurdo.ics -share/apps/libical/zoneinfo/Antarctica/Palmer.ics -share/apps/libical/zoneinfo/Antarctica/Rothera.ics -share/apps/libical/zoneinfo/Antarctica/South_Pole.ics -share/apps/libical/zoneinfo/Antarctica/Syowa.ics -share/apps/libical/zoneinfo/Antarctica/Vostok.ics -share/apps/libical/zoneinfo/Arctic/Longyearbyen.ics -share/apps/libical/zoneinfo/Asia/Aden.ics -share/apps/libical/zoneinfo/Asia/Almaty.ics -share/apps/libical/zoneinfo/Asia/Amman.ics -share/apps/libical/zoneinfo/Asia/Anadyr.ics -share/apps/libical/zoneinfo/Asia/Aqtau.ics -share/apps/libical/zoneinfo/Asia/Aqtobe.ics -share/apps/libical/zoneinfo/Asia/Ashgabat.ics -share/apps/libical/zoneinfo/Asia/Baghdad.ics -share/apps/libical/zoneinfo/Asia/Bahrain.ics -share/apps/libical/zoneinfo/Asia/Baku.ics -share/apps/libical/zoneinfo/Asia/Bangkok.ics -share/apps/libical/zoneinfo/Asia/Beirut.ics -share/apps/libical/zoneinfo/Asia/Bishkek.ics -share/apps/libical/zoneinfo/Asia/Brunei.ics -share/apps/libical/zoneinfo/Asia/Calcutta.ics -share/apps/libical/zoneinfo/Asia/Choibalsan.ics -share/apps/libical/zoneinfo/Asia/Chongqing.ics -share/apps/libical/zoneinfo/Asia/Colombo.ics -share/apps/libical/zoneinfo/Asia/Damascus.ics -share/apps/libical/zoneinfo/Asia/Dhaka.ics -share/apps/libical/zoneinfo/Asia/Dili.ics -share/apps/libical/zoneinfo/Asia/Dubai.ics -share/apps/libical/zoneinfo/Asia/Dushanbe.ics -share/apps/libical/zoneinfo/Asia/Gaza.ics -share/apps/libical/zoneinfo/Asia/Harbin.ics -share/apps/libical/zoneinfo/Asia/Ho_Chi_Minh.ics -share/apps/libical/zoneinfo/Asia/Hong_Kong.ics -share/apps/libical/zoneinfo/Asia/Hovd.ics -share/apps/libical/zoneinfo/Asia/Irkutsk.ics -share/apps/libical/zoneinfo/Asia/Istanbul.ics -share/apps/libical/zoneinfo/Asia/Jakarta.ics -share/apps/libical/zoneinfo/Asia/Jayapura.ics -share/apps/libical/zoneinfo/Asia/Jerusalem.ics -share/apps/libical/zoneinfo/Asia/Kabul.ics -share/apps/libical/zoneinfo/Asia/Kamchatka.ics -share/apps/libical/zoneinfo/Asia/Karachi.ics -share/apps/libical/zoneinfo/Asia/Kashgar.ics -share/apps/libical/zoneinfo/Asia/Katmandu.ics -share/apps/libical/zoneinfo/Asia/Kolkata.ics -share/apps/libical/zoneinfo/Asia/Krasnoyarsk.ics -share/apps/libical/zoneinfo/Asia/Kuala_Lumpur.ics -share/apps/libical/zoneinfo/Asia/Kuching.ics -share/apps/libical/zoneinfo/Asia/Kuwait.ics -share/apps/libical/zoneinfo/Asia/Macau.ics -share/apps/libical/zoneinfo/Asia/Magadan.ics -share/apps/libical/zoneinfo/Asia/Makassar.ics -share/apps/libical/zoneinfo/Asia/Manila.ics -share/apps/libical/zoneinfo/Asia/Muscat.ics -share/apps/libical/zoneinfo/Asia/Nicosia.ics -share/apps/libical/zoneinfo/Asia/Novosibirsk.ics -share/apps/libical/zoneinfo/Asia/Omsk.ics -share/apps/libical/zoneinfo/Asia/Oral.ics -share/apps/libical/zoneinfo/Asia/Phnom_Penh.ics -share/apps/libical/zoneinfo/Asia/Pontianak.ics -share/apps/libical/zoneinfo/Asia/Pyongyang.ics -share/apps/libical/zoneinfo/Asia/Qatar.ics -share/apps/libical/zoneinfo/Asia/Qyzylorda.ics -share/apps/libical/zoneinfo/Asia/Rangoon.ics -share/apps/libical/zoneinfo/Asia/Riyadh.ics -share/apps/libical/zoneinfo/Asia/Saigon.ics -share/apps/libical/zoneinfo/Asia/Sakhalin.ics -share/apps/libical/zoneinfo/Asia/Samarkand.ics -share/apps/libical/zoneinfo/Asia/Seoul.ics -share/apps/libical/zoneinfo/Asia/Shanghai.ics -share/apps/libical/zoneinfo/Asia/Singapore.ics -share/apps/libical/zoneinfo/Asia/Taipei.ics -share/apps/libical/zoneinfo/Asia/Tashkent.ics -share/apps/libical/zoneinfo/Asia/Tbilisi.ics -share/apps/libical/zoneinfo/Asia/Tehran.ics -share/apps/libical/zoneinfo/Asia/Thimphu.ics -share/apps/libical/zoneinfo/Asia/Tokyo.ics -share/apps/libical/zoneinfo/Asia/Ulaanbaatar.ics -share/apps/libical/zoneinfo/Asia/Urumqi.ics -share/apps/libical/zoneinfo/Asia/Vientiane.ics -share/apps/libical/zoneinfo/Asia/Vladivostok.ics -share/apps/libical/zoneinfo/Asia/Yakutsk.ics -share/apps/libical/zoneinfo/Asia/Yekaterinburg.ics -share/apps/libical/zoneinfo/Asia/Yerevan.ics -share/apps/libical/zoneinfo/Atlantic/Azores.ics -share/apps/libical/zoneinfo/Atlantic/Bermuda.ics -share/apps/libical/zoneinfo/Atlantic/Canary.ics -share/apps/libical/zoneinfo/Atlantic/Cape_Verde.ics -share/apps/libical/zoneinfo/Atlantic/Faroe.ics -share/apps/libical/zoneinfo/Atlantic/Jan_Mayen.ics -share/apps/libical/zoneinfo/Atlantic/Madeira.ics -share/apps/libical/zoneinfo/Atlantic/Reykjavik.ics -share/apps/libical/zoneinfo/Atlantic/South_Georgia.ics -share/apps/libical/zoneinfo/Atlantic/St_Helena.ics -share/apps/libical/zoneinfo/Atlantic/Stanley.ics -share/apps/libical/zoneinfo/Australia/Adelaide.ics -share/apps/libical/zoneinfo/Australia/Brisbane.ics -share/apps/libical/zoneinfo/Australia/Broken_Hill.ics -share/apps/libical/zoneinfo/Australia/Currie.ics -share/apps/libical/zoneinfo/Australia/Darwin.ics -share/apps/libical/zoneinfo/Australia/Eucla.ics -share/apps/libical/zoneinfo/Australia/Hobart.ics -share/apps/libical/zoneinfo/Australia/Lindeman.ics -share/apps/libical/zoneinfo/Australia/Lord_Howe.ics -share/apps/libical/zoneinfo/Australia/Melbourne.ics -share/apps/libical/zoneinfo/Australia/Perth.ics -share/apps/libical/zoneinfo/Australia/Sydney.ics -share/apps/libical/zoneinfo/Europe/Amsterdam.ics -share/apps/libical/zoneinfo/Europe/Andorra.ics -share/apps/libical/zoneinfo/Europe/Athens.ics -share/apps/libical/zoneinfo/Europe/Belgrade.ics -share/apps/libical/zoneinfo/Europe/Berlin.ics -share/apps/libical/zoneinfo/Europe/Bratislava.ics -share/apps/libical/zoneinfo/Europe/Brussels.ics -share/apps/libical/zoneinfo/Europe/Bucharest.ics -share/apps/libical/zoneinfo/Europe/Budapest.ics -share/apps/libical/zoneinfo/Europe/Chisinau.ics -share/apps/libical/zoneinfo/Europe/Copenhagen.ics -share/apps/libical/zoneinfo/Europe/Dublin.ics -share/apps/libical/zoneinfo/Europe/Gibraltar.ics -share/apps/libical/zoneinfo/Europe/Guernsey.ics -share/apps/libical/zoneinfo/Europe/Helsinki.ics -share/apps/libical/zoneinfo/Europe/Isle_of_Man.ics -share/apps/libical/zoneinfo/Europe/Istanbul.ics -share/apps/libical/zoneinfo/Europe/Jersey.ics -share/apps/libical/zoneinfo/Europe/Kaliningrad.ics -share/apps/libical/zoneinfo/Europe/Kiev.ics -share/apps/libical/zoneinfo/Europe/Lisbon.ics -share/apps/libical/zoneinfo/Europe/Ljubljana.ics -share/apps/libical/zoneinfo/Europe/London.ics -share/apps/libical/zoneinfo/Europe/Luxembourg.ics -share/apps/libical/zoneinfo/Europe/Madrid.ics -share/apps/libical/zoneinfo/Europe/Malta.ics -share/apps/libical/zoneinfo/Europe/Mariehamn.ics -share/apps/libical/zoneinfo/Europe/Minsk.ics -share/apps/libical/zoneinfo/Europe/Monaco.ics -share/apps/libical/zoneinfo/Europe/Moscow.ics -share/apps/libical/zoneinfo/Europe/Nicosia.ics -share/apps/libical/zoneinfo/Europe/Oslo.ics -share/apps/libical/zoneinfo/Europe/Paris.ics -share/apps/libical/zoneinfo/Europe/Podgorica.ics -share/apps/libical/zoneinfo/Europe/Prague.ics -share/apps/libical/zoneinfo/Europe/Riga.ics -share/apps/libical/zoneinfo/Europe/Rome.ics -share/apps/libical/zoneinfo/Europe/Samara.ics -share/apps/libical/zoneinfo/Europe/San_Marino.ics -share/apps/libical/zoneinfo/Europe/Sarajevo.ics -share/apps/libical/zoneinfo/Europe/Simferopol.ics -share/apps/libical/zoneinfo/Europe/Skopje.ics -share/apps/libical/zoneinfo/Europe/Sofia.ics -share/apps/libical/zoneinfo/Europe/Stockholm.ics -share/apps/libical/zoneinfo/Europe/Tallinn.ics -share/apps/libical/zoneinfo/Europe/Tirane.ics -share/apps/libical/zoneinfo/Europe/Uzhgorod.ics -share/apps/libical/zoneinfo/Europe/Vaduz.ics -share/apps/libical/zoneinfo/Europe/Vatican.ics -share/apps/libical/zoneinfo/Europe/Vienna.ics -share/apps/libical/zoneinfo/Europe/Vilnius.ics -share/apps/libical/zoneinfo/Europe/Volgograd.ics -share/apps/libical/zoneinfo/Europe/Warsaw.ics -share/apps/libical/zoneinfo/Europe/Zagreb.ics -share/apps/libical/zoneinfo/Europe/Zaporozhye.ics -share/apps/libical/zoneinfo/Europe/Zurich.ics -share/apps/libical/zoneinfo/Indian/Antananarivo.ics -share/apps/libical/zoneinfo/Indian/Chagos.ics -share/apps/libical/zoneinfo/Indian/Christmas.ics -share/apps/libical/zoneinfo/Indian/Cocos.ics -share/apps/libical/zoneinfo/Indian/Comoro.ics -share/apps/libical/zoneinfo/Indian/Kerguelen.ics -share/apps/libical/zoneinfo/Indian/Mahe.ics -share/apps/libical/zoneinfo/Indian/Maldives.ics -share/apps/libical/zoneinfo/Indian/Mauritius.ics -share/apps/libical/zoneinfo/Indian/Mayotte.ics -share/apps/libical/zoneinfo/Indian/Reunion.ics -share/apps/libical/zoneinfo/Pacific/Apia.ics -share/apps/libical/zoneinfo/Pacific/Auckland.ics -share/apps/libical/zoneinfo/Pacific/Chatham.ics -share/apps/libical/zoneinfo/Pacific/Easter.ics -share/apps/libical/zoneinfo/Pacific/Efate.ics -share/apps/libical/zoneinfo/Pacific/Enderbury.ics -share/apps/libical/zoneinfo/Pacific/Fakaofo.ics -share/apps/libical/zoneinfo/Pacific/Fiji.ics -share/apps/libical/zoneinfo/Pacific/Funafuti.ics -share/apps/libical/zoneinfo/Pacific/Galapagos.ics -share/apps/libical/zoneinfo/Pacific/Gambier.ics -share/apps/libical/zoneinfo/Pacific/Guadalcanal.ics -share/apps/libical/zoneinfo/Pacific/Guam.ics -share/apps/libical/zoneinfo/Pacific/Honolulu.ics -share/apps/libical/zoneinfo/Pacific/Johnston.ics -share/apps/libical/zoneinfo/Pacific/Kiritimati.ics -share/apps/libical/zoneinfo/Pacific/Kosrae.ics -share/apps/libical/zoneinfo/Pacific/Kwajalein.ics -share/apps/libical/zoneinfo/Pacific/Majuro.ics -share/apps/libical/zoneinfo/Pacific/Marquesas.ics -share/apps/libical/zoneinfo/Pacific/Midway.ics -share/apps/libical/zoneinfo/Pacific/Nauru.ics -share/apps/libical/zoneinfo/Pacific/Niue.ics -share/apps/libical/zoneinfo/Pacific/Norfolk.ics -share/apps/libical/zoneinfo/Pacific/Noumea.ics -share/apps/libical/zoneinfo/Pacific/Pago_Pago.ics -share/apps/libical/zoneinfo/Pacific/Palau.ics -share/apps/libical/zoneinfo/Pacific/Pitcairn.ics -share/apps/libical/zoneinfo/Pacific/Ponape.ics -share/apps/libical/zoneinfo/Pacific/Port_Moresby.ics -share/apps/libical/zoneinfo/Pacific/Rarotonga.ics -share/apps/libical/zoneinfo/Pacific/Saipan.ics -share/apps/libical/zoneinfo/Pacific/Tahiti.ics -share/apps/libical/zoneinfo/Pacific/Tarawa.ics -share/apps/libical/zoneinfo/Pacific/Tongatapu.ics -share/apps/libical/zoneinfo/Pacific/Truk.ics -share/apps/libical/zoneinfo/Pacific/Wake.ics -share/apps/libical/zoneinfo/Pacific/Wallis.ics -share/apps/libical/zoneinfo/zones.tab share/config.kcfg/mailtransport.kcfg share/dbus-1/interfaces/org.kde.KResourcesManager.xml share/dbus-1/interfaces/org.kde.pim.IdentityManager.xml +share/doc/HTML/en/kcontrol/kresources/common +share/doc/HTML/en/kcontrol/kresources/index.cache.bz2 +share/doc/HTML/en/kcontrol/kresources/index.docbook +share/doc/HTML/en/kioslave/imap/common +share/doc/HTML/en/kioslave/imap/index.cache.bz2 +share/doc/HTML/en/kioslave/imap/index.docbook +share/doc/HTML/en/kioslave/ldap/common +share/doc/HTML/en/kioslave/ldap/index.cache.bz2 +share/doc/HTML/en/kioslave/ldap/index.docbook +share/doc/HTML/en/kioslave/nntp/common +share/doc/HTML/en/kioslave/nntp/index.cache.bz2 +share/doc/HTML/en/kioslave/nntp/index.docbook +share/doc/HTML/en/kioslave/pop3/common +share/doc/HTML/en/kioslave/pop3/index.cache.bz2 +share/doc/HTML/en/kioslave/pop3/index.docbook +share/doc/HTML/en/kioslave/smtp/common +share/doc/HTML/en/kioslave/smtp/index.cache.bz2 +share/doc/HTML/en/kioslave/smtp/index.docbook share/kde4/services/imap4.protocol share/kde4/services/imaps.protocol share/kde4/services/kcm_mailtransport.desktop @@ -843,32 +475,16 @@ share/kde4/services/smtp.protocol share/kde4/services/smtps.protocol share/kde4/servicetypes/kresources_manager.desktop share/kde4/servicetypes/kresources_plugin.desktop -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services/kresources/kcal -@dirrmtry share/kde4/services/kresources/kabc -@dirrmtry share/kde4/services/kresources -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrm share/apps/libical/zoneinfo/Pacific -@dirrm share/apps/libical/zoneinfo/Indian -@dirrm share/apps/libical/zoneinfo/Europe -@dirrm share/apps/libical/zoneinfo/Australia -@dirrm share/apps/libical/zoneinfo/Atlantic -@dirrm share/apps/libical/zoneinfo/Asia -@dirrm share/apps/libical/zoneinfo/Arctic -@dirrm share/apps/libical/zoneinfo/Antarctica -@dirrm share/apps/libical/zoneinfo/America/Kentucky -@dirrm share/apps/libical/zoneinfo/America/Indiana -@dirrm share/apps/libical/zoneinfo/America/Argentina -@dirrm share/apps/libical/zoneinfo/America -@dirrm share/apps/libical/zoneinfo/Africa -@dirrm share/apps/libical/zoneinfo -@dirrm share/apps/libical -@dirrmtry share/apps/kconf_update -@dirrmtry share/apps/cmake/modules -@dirrmtry share/apps/cmake -@dirrmtry share/apps/akonadi-kde +@dirrm share/doc/HTML/en/kioslave/smtp +@dirrm share/doc/HTML/en/kioslave/pop3 +@dirrm share/doc/HTML/en/kioslave/nntp +@dirrm share/doc/HTML/en/kioslave/ldap +@dirrm share/doc/HTML/en/kioslave/imap +@dirrm share/doc/HTML/en/kcontrol/kresources +@dirrm share/apps/akonadi-kde @dirrm lib/gpgmepp +@dirrm lib/KdepimLibs-%%KDE4_VERSION%%/cmake +@dirrm lib/KdepimLibs-%%KDE4_VERSION%% @dirrm include/syndication/rss2 @dirrm include/syndication/rdf @dirrm include/syndication/atom @@ -889,5 +505,6 @@ share/kde4/servicetypes/kresources_plugin.desktop @dirrm include/gpgme++/interfaces @dirrm include/gpgme++ @dirrmtry include/akonadi/private -@dirrmtry include/akonadi/kmime +@dirrm include/akonadi/kmime +@dirrm include/akonadi/kabc @dirrmtry include/akonadi diff --git a/deskutils/kdeplasma-addons/Makefile b/deskutils/kdeplasma-addons/Makefile index 76f395d325be..43f7daa06105 100644 --- a/deskutils/kdeplasma-addons/Makefile +++ b/deskutils/kdeplasma-addons/Makefile @@ -9,13 +9,13 @@ PORTNAME= kdeplasma-addons PORTVERSION= ${KDE4_VERSION} CATEGORIES= deskutils kde ipv6 MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@freebsd.org COMMENT= Extra plasmoids for KDE4 -USE_KDE4= kdelibs pimlibs workspace kdeprefix kdehier automoc4 +USE_KDE4= kdelibs pimlibs workspace kdeprefix kdehier automoc4 sharedmime KDE4_BUILDENV= yes USE_BZIP2= yes USE_QT_VER= 4 @@ -25,4 +25,13 @@ QT_COMPONENTS= opengl webkit xml network \ post-extract: ${MKDIR} ${WRKSRC} +pre-configure: + #respect prefix, don't update mime when installing + ${REINPLACE_CMD} -e '/^update_xdg_mimetypes/d; /SharedMimeInfo/d' \ + -e '/^set/s,DBUS_INTERFACES_INSTALL_DIR,KDE4_DBUS_INTERFACES_DIR,g' \ + ${WRKSRC}/../applets/lancelot/app/src/CMakeLists.txt + +post-install: + @-update-mime-database ${PREFIX}/share/mime + .include <bsd.port.mk> diff --git a/deskutils/kdeplasma-addons/distinfo b/deskutils/kdeplasma-addons/distinfo index 673153a46568..674febf9ef31 100644 --- a/deskutils/kdeplasma-addons/distinfo +++ b/deskutils/kdeplasma-addons/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdeplasma-addons-4.1.4.tar.bz2) = 4a0df1a79854539a4022df2308629dc9 -SHA256 (KDE/kdeplasma-addons-4.1.4.tar.bz2) = 6357e3ddb80f59760561a1787e460eba992cf4602917a61a57ea50e97ac3a5d7 -SIZE (KDE/kdeplasma-addons-4.1.4.tar.bz2) = 4074997 +MD5 (KDE/kdeplasma-addons-4.2.0.tar.bz2) = d98f805f4c9b7af7278067f9e544b2ec +SHA256 (KDE/kdeplasma-addons-4.2.0.tar.bz2) = 8c2d917788873521d0379a060a2b049d1eec4917e9b7c1cb90a632c0bb392d6b +SIZE (KDE/kdeplasma-addons-4.2.0.tar.bz2) = 4269323 diff --git a/deskutils/kdeplasma-addons/pkg-plist b/deskutils/kdeplasma-addons/pkg-plist index 9a23bfd90652..780ec760b056 100644 --- a/deskutils/kdeplasma-addons/pkg-plist +++ b/deskutils/kdeplasma-addons/pkg-plist @@ -1,166 +1,248 @@ -include/plasmaappletdialog.h -include/plasmaappletdialog_export.h +bin/lancelot +include/lancelot/Global.h +include/lancelot/lancelot.h +include/lancelot/lancelot_export.h +include/lancelot/layouts/CardLayout.h +include/lancelot/layouts/ColumnLayout.h +include/lancelot/models/ActionListViewModels.h +include/lancelot/models/PassagewayViewModels.h +include/lancelot/widgets/ActionListView.h +include/lancelot/widgets/BasicWidget.h +include/lancelot/widgets/ExtenderButton.h +include/lancelot/widgets/HoverIcon.h +include/lancelot/widgets/Panel.h +include/lancelot/widgets/PassagewayView.h +include/lancelot/widgets/ResizeBordersPanel.h +include/lancelot/widgets/Widget.h +include/lancelot/widgets/WidgetPositioner.h +lib/kde4/kcm_krunner_spellcheck.so +lib/kde4/krunner_browserhistory.so lib/kde4/krunner_contacts.so -lib/kde4/krunner_converterrunner.so +lib/kde4/krunner_converter.so +lib/kde4/krunner_katesessions.so +lib/kde4/krunner_konquerorsessions.so +lib/kde4/krunner_konsolesessions.so +lib/kde4/krunner_spellcheckrunner.so +lib/kde4/plasma_applet_bball.so lib/kde4/plasma_applet_binaryclock.so +lib/kde4/plasma_applet_bluemarble.so lib/kde4/plasma_applet_calculator.so +lib/kde4/plasma_applet_charselect.so lib/kde4/plasma_applet_comic.so lib/kde4/plasma_applet_dict.so +lib/kde4/plasma_applet_eyes.so lib/kde4/plasma_applet_fifteenPuzzle.so lib/kde4/plasma_applet_fileWatcher.so lib/kde4/plasma_applet_frame.so lib/kde4/plasma_applet_fuzzy_clock.so +lib/kde4/plasma_applet_incomingmsg.so lib/kde4/plasma_applet_kolourpicker.so lib/kde4/plasma_applet_konqprofiles.so lib/kde4/plasma_applet_konsoleprofiles.so +lib/kde4/plasma_applet_lancelot_launcher.so +lib/kde4/plasma_applet_lancelot_part.so +lib/kde4/plasma_applet_leavenote.so +lib/kde4/plasma_applet_life.so lib/kde4/plasma_applet_luna.so +lib/kde4/plasma_applet_news.so lib/kde4/plasma_applet_notes.so lib/kde4/plasma_applet_nowplaying.so +lib/kde4/plasma_applet_paste.so +lib/kde4/plasma_applet_pastebin.so +lib/kde4/plasma_applet_previewer.so +lib/kde4/plasma_applet_rssnow.so lib/kde4/plasma_applet_showdashboard.so lib/kde4/plasma_applet_showdesktop.so +lib/kde4/plasma_applet_timer.so lib/kde4/plasma_applet_twitter.so -lib/kde4/plasma_comic_dilbertprovider.so -lib/kde4/plasma_comic_garfieldprovider.so -lib/kde4/plasma_comic_osnewsprovider.so -lib/kde4/plasma_comic_phdprovider.so -lib/kde4/plasma_comic_snoopyprovider.so -lib/kde4/plasma_comic_userfriendlyprovider.so -lib/kde4/plasma_comic_xkcdprovider.so +lib/kde4/plasma_applet_weatherstation.so +lib/kde4/plasma_comic_krossprovider.so lib/kde4/plasma_engine_comic.so lib/kde4/plasma_engine_twitter.so -lib/libplasmaappletdialog.so -lib/libplasmaappletdialog.so.5 -lib/libplasmaappletdialog.so.5.0.0 +lib/kde4/plasma_packagestructure_comic.so +lib/liblancelot.so +lib/liblancelot.so.0 +lib/liblancelot.so.0.5.0 lib/libplasmacomicprovidercore.so lib/libplasmacomicprovidercore.so.1 lib/libplasmacomicprovidercore.so.1.0.0 -share/apps/desktoptheme/Aya/dialogs/background.svg -share/apps/desktoptheme/Aya/dialogs/krunner.svg -share/apps/desktoptheme/Aya/dialogs/shutdowndialog.svg -share/apps/desktoptheme/Aya/metadata.desktop -share/apps/desktoptheme/Aya/opaque/dialogs/background.svg -share/apps/desktoptheme/Aya/opaque/widgets/tooltip.svg -share/apps/desktoptheme/Aya/widgets/analog_meter.svg -share/apps/desktoptheme/Aya/widgets/background.svg -share/apps/desktoptheme/Aya/widgets/bar_meter_horizontal.svg -share/apps/desktoptheme/Aya/widgets/bar_meter_vertical.svg -share/apps/desktoptheme/Aya/widgets/battery-oxygen.svg -share/apps/desktoptheme/Aya/widgets/battery.svg -share/apps/desktoptheme/Aya/widgets/clock.svg -share/apps/desktoptheme/Aya/widgets/connection-established.svg -share/apps/desktoptheme/Aya/widgets/iconbutton.svg -share/apps/desktoptheme/Aya/widgets/pager.svg -share/apps/desktoptheme/Aya/widgets/panel-background.svg -share/apps/desktoptheme/Aya/widgets/plot-background.svg -share/apps/desktoptheme/Aya/widgets/systemtray.svg -share/apps/desktoptheme/Aya/widgets/tasks.svg -share/apps/desktoptheme/Aya/widgets/toolbox-button.svg -share/apps/desktoptheme/Aya/widgets/tooltip.svg -share/apps/desktoptheme/Aya/widgets/translucentbackground.svg -share/apps/desktoptheme/Elegance/colors -share/apps/desktoptheme/Elegance/dialogs/background.svg -share/apps/desktoptheme/Elegance/dialogs/krunner.svg -share/apps/desktoptheme/Elegance/dialogs/shutdowndialog.svg -share/apps/desktoptheme/Elegance/dialogs/shutdowndlg.svg -share/apps/desktoptheme/Elegance/metadata.desktop -share/apps/desktoptheme/Elegance/widgets/analog_meter.svg -share/apps/desktoptheme/Elegance/widgets/background.svg -share/apps/desktoptheme/Elegance/widgets/battery-oxygen.svg -share/apps/desktoptheme/Elegance/widgets/containment-controls.svg -share/apps/desktoptheme/Elegance/widgets/clock.svg -share/apps/desktoptheme/Elegance/widgets/iconbutton.svg -share/apps/desktoptheme/Elegance/widgets/panel-background.svg -share/apps/desktoptheme/Elegance/widgets/plot-background.svg -share/apps/desktoptheme/Elegance/widgets/systemtray.svg -share/apps/desktoptheme/Elegance/widgets/tasks.svg -share/apps/desktoptheme/Elegance/widgets/toolbox-button.svg -share/apps/desktoptheme/Elegance/widgets/tooltip.svg -share/apps/desktoptheme/Elegance/widgets/translucentbackground.svg -share/apps/desktoptheme/Silicon/colors -share/apps/desktoptheme/Silicon/dialogs/background.svg -share/apps/desktoptheme/Silicon/dialogs/krunner.svg -share/apps/desktoptheme/Silicon/metadata.desktop -share/apps/desktoptheme/Silicon/opaque/dialogs/background.svg -share/apps/desktoptheme/Silicon/opaque/dialogs/krunner.svg -share/apps/desktoptheme/Silicon/widgets/background.svg -share/apps/desktoptheme/Silicon/widgets/clock.svg -share/apps/desktoptheme/Silicon/widgets/iconbutton.svg -share/apps/desktoptheme/Silicon/widgets/notes.svg -share/apps/desktoptheme/Silicon/widgets/pager.svg -share/apps/desktoptheme/Silicon/widgets/panel-background.svg -share/apps/desktoptheme/Silicon/widgets/plot-background.svg -share/apps/desktoptheme/Silicon/widgets/systemtray.svg -share/apps/desktoptheme/Silicon/widgets/tasks.svg -share/apps/desktoptheme/Silicon/widgets/tooltip.svg -share/apps/desktoptheme/default/widgets/luna.svg -share/apps/desktoptheme/default/widgets/notes.svg -share/apps/desktoptheme/default/widgets/picture-frame-default.svg -share/apps/desktoptheme/default/widgets/twitter.svg -share/apps/desktoptheme/heron/colors -share/apps/desktoptheme/heron/dialogs/background.svg -share/apps/desktoptheme/heron/dialogs/shutdowndialog.svg -share/apps/desktoptheme/heron/metadata.desktop -share/apps/desktoptheme/heron/opaque/dialogs/background.svg -share/apps/desktoptheme/heron/opaque/widgets/panel-background.svg -share/apps/desktoptheme/heron/opaque/widgets/tooltip.svg -share/apps/desktoptheme/heron/widgets/analog_meter.svg -share/apps/desktoptheme/heron/widgets/background.svg -share/apps/desktoptheme/heron/widgets/bar_meter_horizontal.svg -share/apps/desktoptheme/heron/widgets/bar_meter_vertical.svg -share/apps/desktoptheme/heron/widgets/clock.svg -share/apps/desktoptheme/heron/widgets/connection-established.svg -share/apps/desktoptheme/heron/widgets/iconbutton.svg -share/apps/desktoptheme/heron/widgets/notes.svg -share/apps/desktoptheme/heron/widgets/panel-background.svg -share/apps/desktoptheme/heron/widgets/picture-frame-default.svg -share/apps/desktoptheme/heron/widgets/plot-background.svg -share/apps/desktoptheme/heron/widgets/tasks.svg -share/apps/desktoptheme/heron/widgets/tooltip.svg -share/apps/desktoptheme/slim-glow/LICENSE -share/apps/desktoptheme/slim-glow/colors -share/apps/desktoptheme/slim-glow/dialogs/background.svg -share/apps/desktoptheme/slim-glow/dialogs/krunner.svg -share/apps/desktoptheme/slim-glow/dialogs/shutdowndialog.svg -share/apps/desktoptheme/slim-glow/metadata.desktop -share/apps/desktoptheme/slim-glow/opaque/dialogs/background.svg -share/apps/desktoptheme/slim-glow/opaque/widgets/panel-background.svg -share/apps/desktoptheme/slim-glow/opaque/widgets/tooltip.svg -share/apps/desktoptheme/slim-glow/widgets/analog_meter.svg -share/apps/desktoptheme/slim-glow/widgets/background.svg -share/apps/desktoptheme/slim-glow/widgets/bar_meter_horizontal.svg -share/apps/desktoptheme/slim-glow/widgets/bar_meter_vertical.svg -share/apps/desktoptheme/slim-glow/widgets/clock.svg -share/apps/desktoptheme/slim-glow/widgets/connection-established.svg -share/apps/desktoptheme/slim-glow/widgets/iconbutton.svg -share/apps/desktoptheme/slim-glow/widgets/notes.svg -share/apps/desktoptheme/slim-glow/widgets/panel-background.svg -share/apps/desktoptheme/slim-glow/widgets/picture-frame-default.svg -share/apps/desktoptheme/slim-glow/widgets/plot-background.svg -share/apps/desktoptheme/slim-glow/widgets/tasks.svg -share/apps/desktoptheme/slim-glow/widgets/toolbox-button.svg -share/apps/desktoptheme/slim-glow/widgets/tooltip.svg -share/apps/desktoptheme/slim-glow/widgets/translucentbackground.svg -share/apps/plasma-comic/plasma_comic_dilbert.png -share/apps/plasma-comic/plasma_comic_garfield.png -share/apps/plasma-comic/plasma_comic_osnews.png -share/apps/plasma-comic/plasma_comic_phd.png -share/apps/plasma-comic/plasma_comic_snoopy.png -share/apps/plasma-comic/plasma_comic_userfriendly.png -share/apps/plasma-comic/plasma_comic_xkcd.png +lib/libplasmaconverter.so +lib/libplasmaconverter.so.5 +lib/libplasmaconverter.so.5.0.1 +share/apps/bball/bball.svgz +share/apps/bball/bounce.ogg +share/apps/bball/football.svgz +share/apps/desktoptheme/Aya/lancelot/main-background.svgz +share/apps/desktoptheme/Aya/lancelot/passageway-view-buttons-extender.svgz +share/apps/desktoptheme/Aya/lancelot/passageway-view-buttons.svgz +share/apps/desktoptheme/Aya/lancelot/passageway-view-inactivebuttons.svgz +share/apps/desktoptheme/Aya/lancelot/passageway-view-spacer.svgz +share/apps/desktoptheme/Aya/lancelot/plasma-theme.config +share/apps/desktoptheme/Aya/lancelot/section-buttons.svgz +share/apps/desktoptheme/Aya/lancelot/system-buttons-extender.svgz +share/apps/desktoptheme/Aya/lancelot/system-buttons.svgz +share/apps/desktoptheme/Aya/lancelot/theme.config +share/apps/desktoptheme/Elegance/lancelot/action-list-view-categories-extender.svgz +share/apps/desktoptheme/Elegance/lancelot/action-list-view-categories.svgz +share/apps/desktoptheme/Elegance/lancelot/action-list-view-items-extender.svgz +share/apps/desktoptheme/Elegance/lancelot/action-list-view-items.svgz +share/apps/desktoptheme/Elegance/lancelot/main-background.svgz +share/apps/desktoptheme/Elegance/lancelot/passageway-view-buttons-extender.svgz +share/apps/desktoptheme/Elegance/lancelot/passageway-view-buttons.svgz +share/apps/desktoptheme/Elegance/lancelot/passageway-view-inactivebuttons.svgz +share/apps/desktoptheme/Elegance/lancelot/passageway-view-spacer.svgz +share/apps/desktoptheme/Elegance/lancelot/plasma-theme.config +share/apps/desktoptheme/Elegance/lancelot/section-buttons.svgz +share/apps/desktoptheme/Elegance/lancelot/system-buttons.svgz +share/apps/desktoptheme/Elegance/lancelot/theme.config +share/apps/desktoptheme/Silicon/lancelot/action-list-view-categories-extender.svgz +share/apps/desktoptheme/Silicon/lancelot/action-list-view-categories.svgz +share/apps/desktoptheme/Silicon/lancelot/action-list-view-items-extender.svgz +share/apps/desktoptheme/Silicon/lancelot/action-list-view-items.svgz +share/apps/desktoptheme/Silicon/lancelot/main-background.svgz +share/apps/desktoptheme/Silicon/lancelot/passageway-view-buttons-extender.svgz +share/apps/desktoptheme/Silicon/lancelot/passageway-view-buttons.svgz +share/apps/desktoptheme/Silicon/lancelot/passageway-view-inactivebuttons.svgz +share/apps/desktoptheme/Silicon/lancelot/passageway-view-spacer.svgz +share/apps/desktoptheme/Silicon/lancelot/plasma-theme.config +share/apps/desktoptheme/Silicon/lancelot/section-buttons.svgz +share/apps/desktoptheme/Silicon/lancelot/system-buttons.svgz +share/apps/desktoptheme/Silicon/lancelot/theme.config +share/apps/desktoptheme/default/lancelot/action-list-view-categories-extender.svgz +share/apps/desktoptheme/default/lancelot/action-list-view-categories.svgz +share/apps/desktoptheme/default/lancelot/action-list-view-headers-plasma-applet.svgz +share/apps/desktoptheme/default/lancelot/action-list-view-headers.svgz +share/apps/desktoptheme/default/lancelot/action-list-view-items-extender.svgz +share/apps/desktoptheme/default/lancelot/action-list-view-items.svgz +share/apps/desktoptheme/default/lancelot/action-list-view-scroll-down-plasma-applet.svgz +share/apps/desktoptheme/default/lancelot/action-list-view-scroll-down.svgz +share/apps/desktoptheme/default/lancelot/action-list-view-scroll-up-plasma-applet.svgz +share/apps/desktoptheme/default/lancelot/action-list-view-scroll-up.svgz +share/apps/desktoptheme/default/lancelot/extender-button-icon.svgz +share/apps/desktoptheme/default/lancelot/inner-background.svgz +share/apps/desktoptheme/default/lancelot/lancelot-context-extender.svgz +share/apps/desktoptheme/default/lancelot/lancelot-context.svgz +share/apps/desktoptheme/default/lancelot/main-background.svgz +share/apps/desktoptheme/default/lancelot/passageway-view-buttons-extender.svgz +share/apps/desktoptheme/default/lancelot/passageway-view-buttons.svgz +share/apps/desktoptheme/default/lancelot/passageway-view-inactivebuttons.svgz +share/apps/desktoptheme/default/lancelot/passageway-view-spacer.svgz +share/apps/desktoptheme/default/lancelot/plasma-theme.config +share/apps/desktoptheme/default/lancelot/scroll-bar-background-bar-down.svgz +share/apps/desktoptheme/default/lancelot/scroll-bar-background-bar-left.svgz +share/apps/desktoptheme/default/lancelot/scroll-bar-background-bar-right.svgz +share/apps/desktoptheme/default/lancelot/scroll-bar-background-bar-up.svgz +share/apps/desktoptheme/default/lancelot/scroll-bar-background.svgz +share/apps/desktoptheme/default/lancelot/scroll-bar-button-down-icon.svgz +share/apps/desktoptheme/default/lancelot/scroll-bar-button-left-icon.svgz +share/apps/desktoptheme/default/lancelot/scroll-bar-button-right-icon.svgz +share/apps/desktoptheme/default/lancelot/scroll-bar-button-up-icon.svgz +share/apps/desktoptheme/default/lancelot/scroll-bar-handle-horizontal.svgz +share/apps/desktoptheme/default/lancelot/scroll-bar-handle-vertical.svgz +share/apps/desktoptheme/default/lancelot/section-buttons.svgz +share/apps/desktoptheme/default/lancelot/system-buttons-extender.svgz +share/apps/desktoptheme/default/lancelot/system-buttons.svgz +share/apps/desktoptheme/default/lancelot/theme.config +share/apps/desktoptheme/default/rssnow/background.svgz +share/apps/desktoptheme/default/rssnow/left.svgz +share/apps/desktoptheme/default/rssnow/right.svgz +share/apps/desktoptheme/default/rssnow/rssnow.svgz +share/apps/desktoptheme/default/stylesheets/news.css +share/apps/desktoptheme/default/weatherstation/lcd.svgz +share/apps/desktoptheme/default/weatherstation/lcd_panel.svgz +share/apps/desktoptheme/default/widgets/eyes.svgz +share/apps/desktoptheme/default/widgets/luna.svgz +share/apps/desktoptheme/default/widgets/notes.svgz +share/apps/desktoptheme/default/widgets/picture-frame-default.svgz +share/apps/desktoptheme/default/widgets/previewer-16.svgz +share/apps/desktoptheme/default/widgets/previewer-22.svgz +share/apps/desktoptheme/default/widgets/timer.svgz +share/apps/desktoptheme/default/widgets/twitter.svgz +share/apps/desktoptheme/heron/lancelot/action-list-view-categories-extender.svgz +share/apps/desktoptheme/heron/lancelot/action-list-view-categories.svgz +share/apps/desktoptheme/heron/lancelot/action-list-view-items-extender.svgz +share/apps/desktoptheme/heron/lancelot/action-list-view-items.svgz +share/apps/desktoptheme/heron/lancelot/main-background.svgz +share/apps/desktoptheme/heron/lancelot/passageway-view-buttons-extender.svgz +share/apps/desktoptheme/heron/lancelot/passageway-view-buttons.svgz +share/apps/desktoptheme/heron/lancelot/passageway-view-inactivebuttons.svgz +share/apps/desktoptheme/heron/lancelot/passageway-view-spacer.svgz +share/apps/desktoptheme/heron/lancelot/plasma-theme.config +share/apps/desktoptheme/heron/lancelot/section-buttons.svgz +share/apps/desktoptheme/heron/lancelot/system-buttons.svgz +share/apps/desktoptheme/heron/lancelot/theme.config +share/apps/desktoptheme/slim-glow/lancelot/action-list-view-categories-extender.svgz +share/apps/desktoptheme/slim-glow/lancelot/action-list-view-categories.svgz +share/apps/desktoptheme/slim-glow/lancelot/action-list-view-items-extender.svgz +share/apps/desktoptheme/slim-glow/lancelot/action-list-view-items.svgz +share/apps/desktoptheme/slim-glow/lancelot/main-background.svgz +share/apps/desktoptheme/slim-glow/lancelot/passageway-view-buttons-extender.svgz +share/apps/desktoptheme/slim-glow/lancelot/passageway-view-buttons.svgz +share/apps/desktoptheme/slim-glow/lancelot/passageway-view-inactivebuttons.svgz +share/apps/desktoptheme/slim-glow/lancelot/passageway-view-spacer.svgz +share/apps/desktoptheme/slim-glow/lancelot/plasma-theme.config +share/apps/desktoptheme/slim-glow/lancelot/section-buttons.svgz +share/apps/desktoptheme/slim-glow/lancelot/theme.config +share/apps/plasma-bluemarble/atmosphere.frag +share/apps/plasma-bluemarble/atmosphere.vert +share/apps/plasma-bluemarble/earth-night.png +share/apps/plasma-bluemarble/earth.frag +share/apps/plasma-bluemarble/earth.png +share/apps/plasma-bluemarble/earth.vert +share/apps/plasma/services/tweet.operations +share/apps/rssnow/feeds +share/config/comic.knsrc +share/dbus-1/services/org.kde.lancelot.service +share/icons/hicolor/128x128/apps/lancelot-part.png +share/icons/hicolor/128x128/apps/lancelot.png +share/icons/hicolor/128x128/apps/previewer.png +share/icons/hicolor/16x16/apps/lancelot-part.png +share/icons/hicolor/16x16/apps/lancelot.png +share/icons/hicolor/16x16/apps/previewer.png +share/icons/hicolor/22x22/apps/lancelot-part.png +share/icons/hicolor/22x22/apps/lancelot.png +share/icons/hicolor/22x22/apps/previewer.png +share/icons/hicolor/32x32/apps/lancelot-part.png +share/icons/hicolor/32x32/apps/lancelot.png +share/icons/hicolor/32x32/apps/previewer.png +share/icons/hicolor/48x48/apps/lancelot-part.png +share/icons/hicolor/48x48/apps/lancelot.png +share/icons/hicolor/48x48/apps/previewer.png +share/icons/hicolor/64x64/apps/lancelot-part.png +share/icons/hicolor/64x64/apps/lancelot.png +share/icons/hicolor/64x64/apps/previewer.png share/icons/hicolor/scalable/apps/fifteenpuzzle.svgz -share/kde4/services/dilbertprovider.desktop -share/kde4/services/garfieldprovider.desktop -share/kde4/services/osnewsprovider.desktop -share/kde4/services/phdprovider.desktop +share/icons/oxygen/scalable/apps/bball.svgz +share/kde4/services/ServiceMenus/preview.desktop +share/kde4/services/browserhistory.desktop +share/kde4/services/katesessions.desktop +share/kde4/services/konquerorsessions.desktop +share/kde4/services/konsolesessions.desktop +share/kde4/services/plasma-applet-bball.desktop share/kde4/services/plasma-applet-binaryclock.desktop +share/kde4/services/plasma-applet-bluemarble.desktop share/kde4/services/plasma-applet-calculator.desktop +share/kde4/services/plasma-applet-charselect.desktop +share/kde4/services/plasma-applet-eyes.desktop share/kde4/services/plasma-applet-fifteenPuzzle.desktop +share/kde4/services/plasma-applet-incomingmsg.desktop share/kde4/services/plasma-applet-konqprofiles.desktop share/kde4/services/plasma-applet-konsoleprofiles.desktop +share/kde4/services/plasma-applet-lancelot-launcher.desktop +share/kde4/services/plasma-applet-lancelot-part.desktop +share/kde4/services/plasma-applet-leavenote.desktop +share/kde4/services/plasma-applet-life.desktop share/kde4/services/plasma-applet-luna.desktop +share/kde4/services/plasma-applet-news.desktop share/kde4/services/plasma-applet-nowplaying.desktop +share/kde4/services/plasma-applet-paste.desktop +share/kde4/services/plasma-applet-pastebin.desktop +share/kde4/services/plasma-applet-previewer.desktop +share/kde4/services/plasma-applet-rssnow.desktop share/kde4/services/plasma-applet-showdashboard.desktop share/kde4/services/plasma-applet-showdesktop.desktop +share/kde4/services/plasma-applet-timer.desktop +share/kde4/services/plasma-applet-weatherstation.desktop share/kde4/services/plasma-clock-fuzzy.desktop share/kde4/services/plasma-comic-default.desktop share/kde4/services/plasma-dataengine-comic.desktop @@ -170,39 +252,35 @@ share/kde4/services/plasma-fileWatcher-default.desktop share/kde4/services/plasma-frame-default.desktop share/kde4/services/plasma-kolourpicker-default.desktop share/kde4/services/plasma-notes-default.desktop +share/kde4/services/plasma-packagestructure-comic.desktop share/kde4/services/plasma-runner-contacts.desktop share/kde4/services/plasma-runner-converter.desktop +share/kde4/services/plasma-runner-spellchecker.desktop +share/kde4/services/plasma-runner-spellchecker_config.desktop share/kde4/services/plasma-twitter-default.desktop -share/kde4/services/snoopyprovider.desktop -share/kde4/services/userfriendlyprovider.desktop -share/kde4/services/xkcdprovider.desktop share/kde4/servicetypes/plasma_comicprovider.desktop -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrm share/apps/plasma-comic -@dirrm share/apps/desktoptheme/slim-glow/widgets -@dirrm share/apps/desktoptheme/slim-glow/opaque/widgets -@dirrm share/apps/desktoptheme/slim-glow/opaque/dialogs -@dirrm share/apps/desktoptheme/slim-glow/opaque -@dirrm share/apps/desktoptheme/slim-glow/dialogs +share/mime/packages/lancelotpart-mime.xml +share/mime/text/x-lancelotpart.xml +@dirrm share/apps/rssnow +@dirrm share/apps/plasma-bluemarble +@dirrm share/apps/desktoptheme/slim-glow/lancelot @dirrm share/apps/desktoptheme/slim-glow -@dirrm share/apps/desktoptheme/heron/widgets -@dirrm share/apps/desktoptheme/heron/opaque/widgets -@dirrm share/apps/desktoptheme/heron/opaque/dialogs -@dirrm share/apps/desktoptheme/heron/opaque -@dirrm share/apps/desktoptheme/heron/dialogs +@dirrm share/apps/desktoptheme/heron/lancelot @dirrm share/apps/desktoptheme/heron -@dirrm share/apps/desktoptheme/Silicon/opaque/dialogs -@dirrm share/apps/desktoptheme/Silicon/opaque -@dirrm share/apps/desktoptheme/Silicon/widgets -@dirrm share/apps/desktoptheme/Silicon/dialogs +@dirrm share/apps/desktoptheme/default/weatherstation +@dirrm share/apps/desktoptheme/default/stylesheets +@dirrm share/apps/desktoptheme/default/rssnow +@dirrm share/apps/desktoptheme/default/lancelot +@dirrm share/apps/desktoptheme/Silicon/lancelot @dirrm share/apps/desktoptheme/Silicon -@dirrm share/apps/desktoptheme/Elegance/widgets -@dirrm share/apps/desktoptheme/Elegance/dialogs +@dirrm share/apps/desktoptheme/Elegance/lancelot @dirrm share/apps/desktoptheme/Elegance -@dirrm share/apps/desktoptheme/Aya/widgets -@dirrm share/apps/desktoptheme/Aya/opaque/widgets -@dirrm share/apps/desktoptheme/Aya/opaque/dialogs -@dirrm share/apps/desktoptheme/Aya/opaque -@dirrm share/apps/desktoptheme/Aya/dialogs +@dirrm share/apps/desktoptheme/Aya/lancelot @dirrm share/apps/desktoptheme/Aya +@dirrm share/apps/bball +@dirrm include/lancelot/widgets +@dirrm include/lancelot/models +@dirrm include/lancelot/layouts +@dirrm include/lancelot +@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 diff --git a/deskutils/plasma-applet-panelspacer/Makefile b/deskutils/plasma-applet-panelspacer/Makefile index b829aa97e00c..0357d38be88e 100644 --- a/deskutils/plasma-applet-panelspacer/Makefile +++ b/deskutils/plasma-applet-panelspacer/Makefile @@ -21,6 +21,8 @@ USE_QT_VER= 4 QT_COMPONENTS= gui dbus network opengl svg webkit xml \ qmake_build moc_build rcc_build uic_build +BROKEN= Does not compile with KDE 4.2 + WRKSRC= ${WRKDIR}/plasmaspacer_${PORTVERSION} PLIST_FILES= lib/kde4/plasma_applet_panelspacer.so \ diff --git a/deskutils/plasma-applet-quicklauncher/Makefile b/deskutils/plasma-applet-quicklauncher/Makefile index c4586d13fc70..d44a39dab66e 100644 --- a/deskutils/plasma-applet-quicklauncher/Makefile +++ b/deskutils/plasma-applet-quicklauncher/Makefile @@ -21,6 +21,8 @@ USE_QT_VER= 4 QT_COMPONENTS= gui dbus network opengl svg webkit xml \ qmake_build moc_build rcc_build uic_build +BROKEN= Does not compile with KDE 4.2 + WRKSRC= ${WRKDIR}/${DISTNAME}/src/ PLIST_FILES= lib/kde4/plasma_applet_quicklauncher.so \ diff --git a/deskutils/plasma-applet-teacooker/Makefile b/deskutils/plasma-applet-teacooker/Makefile index 1750d4e973f2..1312ce506abf 100644 --- a/deskutils/plasma-applet-teacooker/Makefile +++ b/deskutils/plasma-applet-teacooker/Makefile @@ -21,6 +21,8 @@ USE_QT_VER= 4 QT_COMPONENTS= gui dbus network opengl svg webkit xml \ qmake_build moc_build rcc_build uic_build +BROKEN= Does not compile with KDE 4.2 + WRKSRC= ${WRKDIR}/TeaCooker .include <bsd.port.mk> diff --git a/deskutils/strigi/Makefile b/deskutils/strigi/Makefile index bf0eed332bbe..8e12334d8b1a 100644 --- a/deskutils/strigi/Makefile +++ b/deskutils/strigi/Makefile @@ -5,10 +5,9 @@ # $FreeBSD$ PORTNAME= strigi -PORTVERSION= 0.5.11 -PORTREVISION= 1 +PORTVERSION= 0.6.3 CATEGORIES= deskutils -MASTER_SITES= http://www.vandenoever.info/software/strigi/ +MASTER_SITES= SF MAINTAINER= kde@FreeBSD.org COMMENT= Desktop searching program @@ -21,7 +20,7 @@ USE_QT_VER= 4 QT_COMPONENTS= gui dbus moc_build uic_build qmake_build USE_BZIP2= yes USE_GNOME= libxml2 pkgconfig -USE_FAM= yes +# USE_FAM= yes USE_LDCONFIG= yes USE_CMAKE= yes @@ -31,7 +30,5 @@ post-patch: 's,$${LIB_DESTINATION}/pkgconfig,libdata/pkgconfig,' \ ${WRKSRC}/src/streamanalyzer/CMakeLists.txt \ ${WRKSRC}/src/streams/CMakeLists.txt - ${REINPLACE_CMD} -e 's,find_package(Qt4),,' \ - ${WRKSRC}/CMakeLists.txt .include <bsd.port.mk> diff --git a/deskutils/strigi/distinfo b/deskutils/strigi/distinfo index f17e4a31d560..eaad360a4348 100644 --- a/deskutils/strigi/distinfo +++ b/deskutils/strigi/distinfo @@ -1,3 +1,3 @@ -MD5 (strigi-0.5.11.tar.bz2) = f1fa3488a9c2fe1e8128f4d44088c4ad -SHA256 (strigi-0.5.11.tar.bz2) = 29c3a1d6151e5b6984897dc89570380b9caa600c34982285d43998dae9479279 -SIZE (strigi-0.5.11.tar.bz2) = 877002 +MD5 (strigi-0.6.3.tar.bz2) = 56088c25dedacf55cfc11f7ba7c18ba7 +SHA256 (strigi-0.6.3.tar.bz2) = 5671cc0b8e98b59ffd809e59390d420f4650d6a298737af19fb2d32c2ad8fd99 +SIZE (strigi-0.6.3.tar.bz2) = 881044 diff --git a/deskutils/strigi/pkg-descr b/deskutils/strigi/pkg-descr index e5e6e38ad288..ad1a60a25644 100644 --- a/deskutils/strigi/pkg-descr +++ b/deskutils/strigi/pkg-descr @@ -1,8 +1,9 @@ -Strigi is a daemon which uses a very fast and efficient crawler that can index -data on your harddrive. Indexing operations are performed without hammering -your system, this makes Strigi the fastest and smallest desktop searching -program. -Strigi can index different file formats, including the contents of the archive -files. +Strigi is a daemon which uses a very fast and efficient crawler +that can index data on your harddrive. Indexing operations are +performed without hammering your system, this makes Strigi the +fastest and smallest desktop searching program. -WWW: http://www.vandenoever.info/software/strigi/ +Strigi can index different file formats, including the contents of +the archive files. + +WWW: http://strigi.sourceforge.net/ diff --git a/deskutils/strigi/pkg-plist b/deskutils/strigi/pkg-plist index b13f1fadc817..a21428c1d0d2 100644 --- a/deskutils/strigi/pkg-plist +++ b/deskutils/strigi/pkg-plist @@ -23,6 +23,7 @@ include/strigi/fileinputstream.h include/strigi/indexeddocument.h include/strigi/indexmanager.h include/strigi/indexplugin.h +include/strigi/indexpluginloader.h include/strigi/indexreader.h include/strigi/indexwriter.h include/strigi/inputstream.h @@ -54,20 +55,21 @@ include/strigi/textutils.h include/strigi/variant.h lib/libsearchclient.so lib/libsearchclient.so.0 -lib/libsearchclient.so.0.5.11 +lib/libsearchclient.so.0.6.3 lib/libstreamanalyzer.so lib/libstreamanalyzer.so.0 -lib/libstreamanalyzer.so.0.5.11 +lib/libstreamanalyzer.so.0.6.3 lib/libstreams.so lib/libstreams.so.0 -lib/libstreams.so.0.5.11 +lib/libstreams.so.0.6.3 lib/libstrigihtmlgui.so lib/libstrigihtmlgui.so.0 -lib/libstrigihtmlgui.so.0.5.11 +lib/libstrigihtmlgui.so.0.6.3 lib/libstrigiqtdbusclient.so lib/libstrigiqtdbusclient.so.0 -lib/libstrigiqtdbusclient.so.0.5.11 +lib/libstrigiqtdbusclient.so.0.6.3 lib/strigi/StrigiConfig.cmake +lib/strigi/strigiea_jpeg.so lib/strigi/strigiindex_clucene.so lib/strigi/strigila_cpp.so lib/strigi/strigila_deb.so @@ -91,7 +93,7 @@ share/dbus-1/services/vandenoever.strigi.service %%DATADIR%%/fieldproperties/strigi.rdfs %%DATADIR%%/fieldproperties/xesam-convenience.rdfs %%DATADIR%%/fieldproperties/xesam.rdfs -@dirrm %%DATADIR%%/fieldproperties +@dirrmtry %%DATADIR%%/fieldproperties @dirrmtry %%DATADIR%% @dirrmtry lib/strigi @dirrmtry include/strigi/qtdbus diff --git a/devel/automoc4/Makefile b/devel/automoc4/Makefile index 73cfc12674cb..222bb55d4cbb 100644 --- a/devel/automoc4/Makefile +++ b/devel/automoc4/Makefile @@ -1,15 +1,14 @@ -# New ports collection makefile for: kdesupport4 +# New ports collection makefile for: automoc4 # Date created: today # Whom: miwi # # $FreeBSD$ PORTNAME= automoc4 -PORTVERSION= 0.9.84 -PORTREVISION= 1 +PORTVERSION= 0.9.88 CATEGORIES= devel kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= unstable/automoc4/0.9.84/ +MASTER_SITE_SUBDIR= stable/${PORTNAME}/${PORTVERSION}/ DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org @@ -17,11 +16,9 @@ COMMENT= Automatic moc for Qt 4 packages USE_BZIP2= yes USE_ICONV= yes -USE_KDE4= kdeprefix kdehier USE_QT_VER= 4 QT_COMPONENTS= corelib qmake_build moc rcc_build uic_build USE_CMAKE= yes -CMAKE_VERBOSE= yes CMAKE_USE_PTHREAD= yes .include <bsd.port.mk> diff --git a/devel/automoc4/distinfo b/devel/automoc4/distinfo index 460bcdc0bf1d..1d08112d5e37 100644 --- a/devel/automoc4/distinfo +++ b/devel/automoc4/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/automoc4-0.9.84.tar.bz2) = 6e1167594b8edd0fd2156aad75b4b2b0 -SHA256 (KDE/automoc4-0.9.84.tar.bz2) = c76b56ef3f9ee1a0b060c409417b5b1add4fd483406dffd580c6eba9466b521a -SIZE (KDE/automoc4-0.9.84.tar.bz2) = 7918 +MD5 (KDE/automoc4-0.9.88.tar.bz2) = 91bf517cb940109180ecd07bc90c69ec +SHA256 (KDE/automoc4-0.9.88.tar.bz2) = 234116f4c05ae21d828594d652b4c4a052ef75727e2d8a4f3a4fb605de9e4c49 +SIZE (KDE/automoc4-0.9.88.tar.bz2) = 9153 diff --git a/devel/kdesdk4/Makefile b/devel/kdesdk4/Makefile index 2a1169c45009..ef883e0fc167 100644 --- a/devel/kdesdk4/Makefile +++ b/devel/kdesdk4/Makefile @@ -8,7 +8,7 @@ PORTNAME= kdesdk PORTVERSION= ${KDE4_VERSION} CATEGORIES= devel kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org @@ -20,16 +20,39 @@ LIB_DEPENDS= svn_client-1.0:${PORTSDIR}/devel/subversion LATEST_LINK= ${PORTNAME}4 USE_BZIP2= yes -KDE4_BUILDENV= yes -USE_KDE4= kdelibs pimlibs workspace kdeprefix kdehier \ +USE_KDE4= kdelibs pimlibs kdeprefix kdehier \ automoc4 akonadi +KDE4_BUILDENV= yes USE_QT_VER= 4 QT_COMPONENTS= network gui svg qt3support \ - qmake_build moc_build rcc_build uic_build - -MAN1= cervisia.1 - -CMAKE_ARGS+= -DBUILD_kapptemplate:BOOL=Off + qmake_build moc_build rcc_build uic_build \ + porting_build uic3_build + +MAN1= adddebug.1 \ + cervisia.1 \ + cheatmake.1 \ + create_cvsignore.1 \ + create_makefile.1 \ + create_makefiles.1 \ + cvscheck.1 \ + cvslastchange.1 \ + cvslastlog.1 \ + cvsrevertlast.1 \ + cxxmetric.1 \ + demangle.1 \ + extend_dmalloc.1 \ + extractrc.1 \ + fixincludes.1 \ + kate.1 \ + po2xml.1 \ + pruneemptydirs.1 \ + qtdoc.1 \ + reportview.1 \ + split2po.1 \ + swappo.1 \ + transxx.1 \ + xml2pot.1 \ + zonetab2pot.py.1 post-extract: ${MKDIR} ${WRKSRC} diff --git a/devel/kdesdk4/distinfo b/devel/kdesdk4/distinfo index 15487e67aa68..7031361bedad 100644 --- a/devel/kdesdk4/distinfo +++ b/devel/kdesdk4/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdesdk-4.1.4.tar.bz2) = 1ca874a1d239018472bf27d0f2b98feb -SHA256 (KDE/kdesdk-4.1.4.tar.bz2) = 115544852a0f4d7f8a44fd989e77f5f555498f02069d1d9f4e929e89b9b32cd0 -SIZE (KDE/kdesdk-4.1.4.tar.bz2) = 4979915 +MD5 (KDE/kdesdk-4.2.0.tar.bz2) = 79d01b4f10f1ecc283f7860d2c7973e9 +SHA256 (KDE/kdesdk-4.2.0.tar.bz2) = 2e53f7ff3331d3b72ce45bb71701ae38529212a5d35b7d8c8e26da2ee557fa05 +SIZE (KDE/kdesdk-4.2.0.tar.bz2) = 5434773 diff --git a/devel/kdesdk4/pkg-plist b/devel/kdesdk4/pkg-plist index 7b283c3054e2..d886e94f239d 100644 --- a/devel/kdesdk4/pkg-plist +++ b/devel/kdesdk4/pkg-plist @@ -31,6 +31,7 @@ bin/fixkdeincludes bin/fixuifiles bin/hotshot2calltree bin/includemocs +bin/kapptemplate bin/kate bin/kbugbuster bin/kcachegrind @@ -42,6 +43,7 @@ bin/kdemangen.pl bin/kdesvn-build bin/kio_svn_helper bin/kompare +bin/kpartloader bin/krazy-licensecheck bin/kuiviewer bin/lokalize @@ -82,7 +84,11 @@ include/kate/pluginconfigpageinterface.h include/kate/pluginmanager.h include/kate_export.h include/kprofilemethod.h +lib/kde4/cervisiapart.so lib/kde4/kabcformat_kdeaccounts.so +lib/kde4/katebacktracebrowserplugin.so +lib/kde4/katebuildplugin.so +lib/kde4/katectagsplugin.so lib/kde4/kateexternaltoolsplugin.so lib/kde4/katefilebrowserplugin.so lib/kde4/katefiletemplates.so @@ -91,13 +97,14 @@ lib/kde4/katekonsoleplugin.so lib/kde4/katemailfilesplugin.so lib/kde4/kateopenheaderplugin.so lib/kde4/katequickdocumentswitcherplugin.so +lib/kde4/katesnippetsplugin.so lib/kde4/katesymbolviewerplugin.so lib/kde4/katetabbarextensionplugin.so lib/kde4/katetextfilterplugin.so lib/kde4/kcal_bugzilla.so lib/kde4/kded_ksvnd.so +lib/kde4/kio_perldoc.so lib/kde4/kio_svn.so -lib/kde4/libcervisiapart.so lib/kde4/libkomparenavtreepart.so lib/kde4/libkomparepart.so lib/kde4/libkuiviewerpart.so @@ -105,27 +112,28 @@ lib/kde4/plasma_applet_katesession.so lib/kde4/quithumbnail.so lib/libantlr.so lib/libantlr.so.5 -lib/libantlr.so.5.0.0 +lib/libantlr.so.5.0.1 lib/libkateinterfaces.so lib/libkateinterfaces.so.5 -lib/libkateinterfaces.so.5.0.0 +lib/libkateinterfaces.so.5.0.1 lib/libkdeinit4_cervisia.so lib/libkdeinit4_cvsaskpass.so lib/libkdeinit4_cvsservice.so lib/libkdeinit4_kate.so lib/libkomparedialogpages.so lib/libkomparedialogpages.so.5 -lib/libkomparedialogpages.so.5.0.0 +lib/libkomparedialogpages.so.5.0.1 lib/libkomparediff2.so lib/libkomparediff2.so.5 -lib/libkomparediff2.so.5.0.0 +lib/libkomparediff2.so.5.0.1 lib/libkompareinterface.so lib/libkompareinterface.so.5 -lib/libkompareinterface.so.5.0.0 +lib/libkompareinterface.so.5.0.1 lib/strigi/strigila_diff.so lib/strigi/strigila_po.so lib/strigi/strigita_ts.so share/applications/kde4/cervisia.desktop +share/applications/kde4/kapptemplate.desktop share/applications/kde4/kate.desktop share/applications/kde4/kbugbuster.desktop share/applications/kde4/kcachegrind.desktop @@ -145,7 +153,9 @@ share/apps/kate/icons/oxygen/16x16/actions/modmod.png share/apps/kate/icons/oxygen/16x16/actions/modonhd.png share/apps/kate/icons/oxygen/16x16/actions/null.png share/apps/kate/kateui.rc -share/apps/kate/pics/sessionchooser.png +share/apps/kate/plugins/findinfiles/ui.rc +share/apps/kate/plugins/katebuild/ui.rc +share/apps/kate/plugins/katectags/ui.rc share/apps/kate/plugins/kateexternaltools/ui.rc share/apps/kate/plugins/katefiletemplates/templates/cppgpl.cpp.katetemplate share/apps/kate/plugins/katefiletemplates/templates/cppgpl.hh.katetemplate @@ -159,6 +169,7 @@ share/apps/kate/plugins/katekonsole/ui.rc share/apps/kate/plugins/katemailfiles/ui.rc share/apps/kate/plugins/kateopenheader/ui.rc share/apps/kate/plugins/katequickdocumentswitcher/ui.rc +share/apps/kate/plugins/katesnippets/plugin_katesnippets.rc share/apps/kate/plugins/katesymbolviewer/ui.rc share/apps/kate/plugins/katetabbarextension/ui.rc share/apps/kate/plugins/katetextfilter/ui.rc @@ -182,12 +193,31 @@ share/apps/kconf_update/cervisia-normalize_cvsroot.pl share/apps/kconf_update/cervisia.upd share/apps/kconf_update/change_colors.pl share/apps/kconf_update/kate-2.4.upd +share/apps/kdevappwizard/template_previews/akonadi-resources.png +share/apps/kdevappwizard/template_previews/default.png +share/apps/kdevappwizard/template_previews/kapp4.png +share/apps/kdevappwizard/template_previews/kderubyapp.png +share/apps/kdevappwizard/template_previews/kpartapp.png +share/apps/kdevappwizard/template_previews/plasma-applet.png +share/apps/kdevappwizard/template_previews/pykde4.png +share/apps/kdevappwizard/template_previews/pyqt4app.png +share/apps/kdevappwizard/template_previews/qmake4gui.png +share/apps/kdevappwizard/template_previews/runner.png +share/apps/kio_perldoc/kio_perldoc.css +share/apps/kio_perldoc/pod2html.pl share/apps/kompare/komparepartui.rc share/apps/kompare/kompareui.rc +share/apps/kpartloader/kpartloaderui.rc share/apps/kuiviewer/kuiviewerui.rc share/apps/kuiviewerpart/kuiviewer_part.rc -share/apps/lokalize/lokalizeui.rc +share/apps/lokalize/editorui.rc +share/apps/lokalize/find-gui-text.sh +share/apps/lokalize/lokalizemainwindowui.rc share/apps/lokalize/projectmanagerui.rc +share/apps/lokalize/scripts/widget-text-capture.py +share/apps/lokalize/scripts/widget-text-capture.rc +share/apps/lokalize/scripts/widget-text-capture.ui +share/apps/lokalize/translationmemoryrui.rc share/apps/umbrello/common.ent share/apps/umbrello/docbook2xhtml.xsl share/apps/umbrello/headings/heading.adb @@ -324,6 +354,7 @@ share/apps/umbrello/pics/exception.png share/apps/umbrello/pics/final_activity.png share/apps/umbrello/pics/foreignkey_constraint.png share/apps/umbrello/pics/generalisation.png +share/apps/umbrello/pics/hi64-app-umbrello.png share/apps/umbrello/pics/initial_state.png share/apps/umbrello/pics/interface.png share/apps/umbrello/pics/join.png @@ -357,6 +388,7 @@ share/apps/umbrello/umbrelloui.rc share/apps/umbrello/xmi.css share/apps/umbrello/xmi2docbook.xsl share/config.kcfg/cervisiapart.kcfg +share/config.kcfg/kapptemplate.kcfg share/config.kcfg/lokalize.kcfg share/config/katefiletemplates.knsrc share/config/katerc @@ -482,6 +514,8 @@ share/doc/HTML/en/umbrello/umbrello-ui.png share/doc/HTML/en/umbrello/uml_basics.docbook share/doc/HTML/en/umbrello/use-case-diagram.png share/doc/HTML/en/umbrello/working_with_umbrello.docbook +share/icons/hicolor/128x128/apps/kapptemplate.png +share/icons/hicolor/128x128/apps/kate.png share/icons/hicolor/128x128/apps/kbugbuster.png share/icons/hicolor/128x128/apps/kompare.png share/icons/hicolor/128x128/apps/lokalize.png @@ -501,6 +535,8 @@ share/icons/hicolor/16x16/actions/prevuntranslated.png share/icons/hicolor/16x16/actions/search2msgstr.png share/icons/hicolor/16x16/actions/transsearch.png share/icons/hicolor/16x16/apps/cervisia.png +share/icons/hicolor/16x16/apps/kapptemplate.png +share/icons/hicolor/16x16/apps/kate.png share/icons/hicolor/16x16/apps/kbugbuster.png share/icons/hicolor/16x16/apps/kompare.png share/icons/hicolor/16x16/apps/kuiviewer.png @@ -522,6 +558,8 @@ share/icons/hicolor/22x22/actions/prevuntranslated.png share/icons/hicolor/22x22/actions/search2msgstr.png share/icons/hicolor/22x22/actions/transsearch.png share/icons/hicolor/22x22/apps/cervisia.png +share/icons/hicolor/22x22/apps/kapptemplate.png +share/icons/hicolor/22x22/apps/kate.png share/icons/hicolor/22x22/apps/kbugbuster.png share/icons/hicolor/22x22/apps/kompare.png share/icons/hicolor/22x22/apps/umbrello.png @@ -543,6 +581,8 @@ share/icons/hicolor/32x32/actions/prevuntranslated.png share/icons/hicolor/32x32/actions/search2msgstr.png share/icons/hicolor/32x32/actions/transsearch.png share/icons/hicolor/32x32/apps/cervisia.png +share/icons/hicolor/32x32/apps/kapptemplate.png +share/icons/hicolor/32x32/apps/kate.png share/icons/hicolor/32x32/apps/kbugbuster.png share/icons/hicolor/32x32/apps/kcachegrind.png share/icons/hicolor/32x32/apps/kompare.png @@ -552,15 +592,20 @@ share/icons/hicolor/32x32/apps/umbrello.png share/icons/hicolor/32x32/mimetypes/umbrellofile.png share/icons/hicolor/48x48/actions/approved.png share/icons/hicolor/48x48/apps/cervisia.png +share/icons/hicolor/48x48/apps/kapptemplate.png +share/icons/hicolor/48x48/apps/kate.png share/icons/hicolor/48x48/apps/kbugbuster.png share/icons/hicolor/48x48/apps/kcachegrind.png share/icons/hicolor/48x48/apps/kompare.png share/icons/hicolor/48x48/apps/kuiviewer.png share/icons/hicolor/48x48/apps/umbrello.png +share/icons/hicolor/64x64/apps/kapptemplate.png +share/icons/hicolor/64x64/apps/kate.png share/icons/hicolor/64x64/apps/kbugbuster.png share/icons/hicolor/64x64/apps/lokalize.png share/icons/hicolor/64x64/apps/umbrello.png share/icons/hicolor/scalable/actions/approved.svgz +share/icons/hicolor/scalable/apps/kate.svgz share/icons/hicolor/scalable/apps/kompare.svgz share/icons/hicolor/scalable/apps/lokalize.svgz share/icons/hicolor/scalable/apps/umbrello.svgz @@ -687,8 +732,12 @@ share/icons/oxygen/scalable/actions/vcs_status.svgz share/icons/oxygen/scalable/actions/vcs_update.svgz share/kde4/services/ServiceMenus/subversion.desktop share/kde4/services/ServiceMenus/subversion_toplevel.desktop +share/kde4/services/cervisiapart.desktop share/kde4/services/cvsservice.desktop share/kde4/services/designerthumbnail.desktop +share/kde4/services/katebacktracebrowserplugin.desktop +share/kde4/services/katebuildplugin.desktop +share/kde4/services/katectagsplugin.desktop share/kde4/services/kateexternaltoolsplugin.desktop share/kde4/services/katefilebrowserplugin.desktop share/kde4/services/katefiletemplates.desktop @@ -697,6 +746,7 @@ share/kde4/services/katekonsoleplugin.desktop share/kde4/services/katemailfilesplugin.desktop share/kde4/services/kateopenheader.desktop share/kde4/services/katequickdocumentswitcher.desktop +share/kde4/services/katesnippets.desktop share/kde4/services/katesymbolviewer.desktop share/kde4/services/katetabbarextension.desktop share/kde4/services/katetextfilter.desktop @@ -705,6 +755,7 @@ share/kde4/services/komparenavtreepart.desktop share/kde4/services/komparepart.desktop share/kde4/services/kresources/kcal/bugzilla.desktop share/kde4/services/kuiviewer_part.desktop +share/kde4/services/perldoc.protocol share/kde4/services/plasma-applet-katesession.desktop share/kde4/services/svn+file.protocol share/kde4/services/svn+http.protocol @@ -715,58 +766,13 @@ share/kde4/servicetypes/kateplugin.desktop share/kde4/servicetypes/komparenavigationpart.desktop share/kde4/servicetypes/kompareviewpart.desktop share/strigi/fieldproperties/strigi_translation.fieldproperties -@dirrmtry share/strigi/fieldproperties -@dirrmtry share/strigi -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services/kresources/kcal -@dirrmtry share/kde4/services/kresources -@dirrmtry share/kde4/services/kded -@dirrmtry share/kde4/services/ServiceMenus -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/oxygen/scalable/actions -@dirrmtry share/icons/oxygen/scalable -@dirrmtry share/icons/oxygen/64x64/actions -@dirrmtry share/icons/oxygen/64x64 -@dirrmtry share/icons/oxygen/48x48/actions -@dirrmtry share/icons/oxygen/48x48 -@dirrmtry share/icons/oxygen/32x32/actions -@dirrmtry share/icons/oxygen/32x32 -@dirrmtry share/icons/oxygen/22x22/actions -@dirrmtry share/icons/oxygen/22x22 -@dirrmtry share/icons/oxygen/16x16/actions -@dirrmtry share/icons/oxygen/16x16 -@dirrmtry share/icons/oxygen/128x128/actions -@dirrmtry share/icons/oxygen/128x128 -@dirrmtry share/icons/oxygen -@dirrmtry share/icons/locolor/32x32/actions -@dirrmtry share/icons/locolor/32x32 -@dirrmtry share/icons/locolor/16x16/actions -@dirrmtry share/icons/locolor/16x16 -@dirrmtry share/icons/locolor -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable/actions -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48/actions -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/mimetypes -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32/actions -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22/actions -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/mimetypes -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16/actions -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons +@dirrm share/strigi/fieldproperties +@dirrm share/strigi +@dirrm share/icons/locolor/32x32/actions +@dirrm share/icons/locolor/32x32 +@dirrm share/icons/locolor/16x16/actions +@dirrm share/icons/locolor/16x16 +@dirrm share/icons/locolor @dirrm share/doc/HTML/en/umbrello @dirrm share/doc/HTML/en/lokalize @dirrm share/doc/HTML/en/kompare @@ -777,20 +783,18 @@ share/strigi/fieldproperties/strigi_translation.fieldproperties @dirrm share/doc/HTML/en/kate @dirrm share/doc/HTML/en/kapptemplate @dirrm share/doc/HTML/en/cervisia -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 -@dirrmtry share/config.kcfg -@dirrmtry share/config @dirrm share/apps/umbrello/pics @dirrm share/apps/umbrello/headings @dirrm share/apps/umbrello +@dirrm share/apps/lokalize/scripts @dirrm share/apps/lokalize @dirrm share/apps/kuiviewerpart @dirrm share/apps/kuiviewer +@dirrm share/apps/kpartloader @dirrm share/apps/kompare -@dirrmtry share/apps/kconf_update +@dirrm share/apps/kio_perldoc +@dirrm share/apps/kdevappwizard/template_previews +@dirrm share/apps/kdevappwizard @dirrm share/apps/kcachegrind/icons/hicolor/32x32/actions @dirrm share/apps/kcachegrind/icons/hicolor/32x32 @dirrm share/apps/kcachegrind/icons/hicolor/22x22/actions @@ -802,11 +806,10 @@ share/strigi/fieldproperties/strigi_translation.fieldproperties @dirrm share/apps/kcachegrind @dirrm share/apps/kbugbuster/pics @dirrm share/apps/kbugbuster -@dirrmtry share/apps/katepart/syntax -@dirrmtry share/apps/katepart @dirrm share/apps/kate/plugins/katetextfilter @dirrm share/apps/kate/plugins/katetabbarextension @dirrm share/apps/kate/plugins/katesymbolviewer +@dirrm share/apps/kate/plugins/katesnippets @dirrm share/apps/kate/plugins/katequickdocumentswitcher @dirrm share/apps/kate/plugins/kateopenheader @dirrm share/apps/kate/plugins/katemailfiles @@ -814,20 +817,15 @@ share/strigi/fieldproperties/strigi_translation.fieldproperties @dirrm share/apps/kate/plugins/katefiletemplates/templates @dirrm share/apps/kate/plugins/katefiletemplates @dirrm share/apps/kate/plugins/kateexternaltools +@dirrm share/apps/kate/plugins/katectags +@dirrm share/apps/kate/plugins/katebuild +@dirrm share/apps/kate/plugins/findinfiles @dirrm share/apps/kate/plugins -@dirrm share/apps/kate/pics @dirrm share/apps/kate/icons/oxygen/16x16/actions @dirrm share/apps/kate/icons/oxygen/16x16 @dirrm share/apps/kate/icons/oxygen @dirrm share/apps/kate/icons -@dirrmtry share/apps/kate -@dirrmtry share/apps/kabc/formats -@dirrmtry share/apps/kabc +@dirrm share/apps/kate @dirrm share/apps/cervisiapart @dirrm share/apps/cervisia -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/strigi -@dirrmtry lib/kde4 @dirrm include/kate diff --git a/french/kde4-l10n/Makefile b/french/kde4-l10n/Makefile index 756c81685ab9..22163b4e784d 100644 --- a/french/kde4-l10n/Makefile +++ b/french/kde4-l10n/Makefile @@ -14,6 +14,9 @@ COMMENT= French messages and documentation for KDE4 KDE4_L10N= fr +MANLANG= ${KDE4_L10N} +.include <${.CURDIR}/Makefile.man> + post-extract: ${MKDIR} ${WRKSRC}/build diff --git a/french/kde4-l10n/distinfo b/french/kde4-l10n/distinfo index 5aa80a29466b..21d40a279e33 100644 --- a/french/kde4-l10n/distinfo +++ b/french/kde4-l10n/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-fr-4.1.4.tar.bz2) = dd6b5b97e47b28ca8c8d72c432a12056 -SHA256 (KDE/kde-l10n/kde-l10n-fr-4.1.4.tar.bz2) = 233267cc0ce71f0c017a4753537b455b5848f97ff3aa794baf5abe33ab2ce8dc -SIZE (KDE/kde-l10n/kde-l10n-fr-4.1.4.tar.bz2) = 21009936 +MD5 (KDE/kde-l10n/kde-l10n-fr-4.2.0.tar.bz2) = ca231f7972a5269a589cad934cd4ab81 +SHA256 (KDE/kde-l10n/kde-l10n-fr-4.2.0.tar.bz2) = 198b0bece4e9d7cf70e0043f9371df3a00b52739b32341195f70c83f1fbfa099 +SIZE (KDE/kde-l10n/kde-l10n-fr-4.2.0.tar.bz2) = 20955373 diff --git a/french/kde4-l10n/pkg-plist b/french/kde4-l10n/pkg-plist index 3e653638552d..eb8ad20b52a6 100644 --- a/french/kde4-l10n/pkg-plist +++ b/french/kde4-l10n/pkg-plist @@ -144,9 +144,6 @@ share/doc/HTML/fr/kalarm/editwindow.png share/doc/HTML/fr/kalarm/index.cache.bz2 share/doc/HTML/fr/kalarm/index.docbook share/doc/HTML/fr/kalarm/mainwindow.png -share/doc/HTML/fr/kalgebra/common -share/doc/HTML/fr/kalgebra/index.cache.bz2 -share/doc/HTML/fr/kalgebra/index.docbook share/doc/HTML/fr/kalzium/common share/doc/HTML/fr/kalzium/index.cache.bz2 share/doc/HTML/fr/kalzium/index.docbook @@ -173,9 +170,6 @@ share/doc/HTML/fr/kanagram/newstuff-settings.png share/doc/HTML/fr/kanagram/standard-fonts.png share/doc/HTML/fr/kanagram/vocab-editor.png share/doc/HTML/fr/kanagram/vocab-settings.png -share/doc/HTML/fr/kapptemplate/common -share/doc/HTML/fr/kapptemplate/index.cache.bz2 -share/doc/HTML/fr/kapptemplate/index.docbook share/doc/HTML/fr/karm/common share/doc/HTML/fr/karm/index.cache.bz2 share/doc/HTML/fr/karm/index.docbook @@ -189,23 +183,6 @@ share/doc/HTML/fr/kate-plugins/openheader.docbook share/doc/HTML/fr/kate-plugins/textfilter.docbook share/doc/HTML/fr/kate-plugins/xmlcheck.docbook share/doc/HTML/fr/kate-plugins/xmltools.docbook -share/doc/HTML/fr/kate/advanced.docbook -share/doc/HTML/fr/kate/common -share/doc/HTML/fr/kate/configdialog01.png -share/doc/HTML/fr/kate/configdialog02.png -share/doc/HTML/fr/kate/configuring.docbook -share/doc/HTML/fr/kate/fundamentals.docbook -share/doc/HTML/fr/kate/highlighting.docbook -share/doc/HTML/fr/kate/index.cache.bz2 -share/doc/HTML/fr/kate/index.docbook -share/doc/HTML/fr/kate/kate.png -share/doc/HTML/fr/kate/man-kate.1.docbook -share/doc/HTML/fr/kate/mdi.docbook -share/doc/HTML/fr/kate/menus.docbook -share/doc/HTML/fr/kate/mimetypechooser.png -share/doc/HTML/fr/kate/part.docbook -share/doc/HTML/fr/kate/plugins.docbook -share/doc/HTML/fr/kate/regular-expressions.docbook share/doc/HTML/fr/katomic/common share/doc/HTML/fr/katomic/index.cache.bz2 share/doc/HTML/fr/katomic/index.docbook @@ -218,17 +195,12 @@ share/doc/HTML/fr/kblackbox/index.docbook share/doc/HTML/fr/kblocks/common share/doc/HTML/fr/kblocks/index.cache.bz2 share/doc/HTML/fr/kblocks/index.docbook -share/doc/HTML/fr/kbounce/button-new.png -share/doc/HTML/fr/kbounce/button-pause.png share/doc/HTML/fr/kbounce/common share/doc/HTML/fr/kbounce/index.cache.bz2 share/doc/HTML/fr/kbounce/index.docbook -share/doc/HTML/fr/kbounce/kbounce_corridor1.png -share/doc/HTML/fr/kbounce/kbounce_corridor2.png -share/doc/HTML/fr/kbounce/menu-game.png -share/doc/HTML/fr/kbounce/menu-help.png -share/doc/HTML/fr/kbounce/menu-settings.png -share/doc/HTML/fr/kbounce/toolbar.png +share/doc/HTML/fr/kbounce/jezball_corridor1.png +share/doc/HTML/fr/kbounce/jezball_corridor2.png +share/doc/HTML/fr/kbounce/jezball_newWall.png share/doc/HTML/fr/kbreakout/common share/doc/HTML/fr/kbreakout/index.cache.bz2 share/doc/HTML/fr/kbreakout/index.docbook @@ -269,6 +241,9 @@ share/doc/HTML/fr/kcontrol/bell/index.docbook share/doc/HTML/fr/kcontrol/blockdevices/common share/doc/HTML/fr/kcontrol/blockdevices/index.cache.bz2 share/doc/HTML/fr/kcontrol/blockdevices/index.docbook +share/doc/HTML/fr/kcontrol/bookmarks/common +share/doc/HTML/fr/kcontrol/bookmarks/index.cache.bz2 +share/doc/HTML/fr/kcontrol/bookmarks/index.docbook share/doc/HTML/fr/kcontrol/cache/common share/doc/HTML/fr/kcontrol/cache/index.cache.bz2 share/doc/HTML/fr/kcontrol/cache/index.docbook @@ -389,9 +364,6 @@ share/doc/HTML/fr/kcontrol/kthememgr/index.docbook share/doc/HTML/fr/kcontrol/kwindecoration/common share/doc/HTML/fr/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/fr/kcontrol/kwindecoration/index.docbook -share/doc/HTML/fr/kcontrol/kxkb/common -share/doc/HTML/fr/kcontrol/kxkb/index.cache.bz2 -share/doc/HTML/fr/kcontrol/kxkb/index.docbook share/doc/HTML/fr/kcontrol/language/common share/doc/HTML/fr/kcontrol/language/index.cache.bz2 share/doc/HTML/fr/kcontrol/language/index.docbook @@ -464,9 +436,6 @@ share/doc/HTML/fr/kdat/index.docbook share/doc/HTML/fr/kdebugdialog/common share/doc/HTML/fr/kdebugdialog/index.cache.bz2 share/doc/HTML/fr/kdebugdialog/index.docbook -share/doc/HTML/fr/kdepasswd/common -share/doc/HTML/fr/kdepasswd/index.cache.bz2 -share/doc/HTML/fr/kdepasswd/index.docbook share/doc/HTML/fr/kdesu/common share/doc/HTML/fr/kdesu/index.cache.bz2 share/doc/HTML/fr/kdesu/index.docbook @@ -714,48 +683,93 @@ share/doc/HTML/fr/kinfocenter/usb/index.docbook share/doc/HTML/fr/kinfocenter/xserver/common share/doc/HTML/fr/kinfocenter/xserver/index.cache.bz2 share/doc/HTML/fr/kinfocenter/xserver/index.docbook -share/doc/HTML/fr/kioslave/bzip.docbook -share/doc/HTML/fr/kioslave/bzip2.docbook -share/doc/HTML/fr/kioslave/cgi.docbook -share/doc/HTML/fr/kioslave/common -share/doc/HTML/fr/kioslave/data.docbook -share/doc/HTML/fr/kioslave/file.docbook -share/doc/HTML/fr/kioslave/finger.docbook -share/doc/HTML/fr/kioslave/fish.docbook -share/doc/HTML/fr/kioslave/floppy.docbook -share/doc/HTML/fr/kioslave/ftp.docbook -share/doc/HTML/fr/kioslave/gopher.docbook -share/doc/HTML/fr/kioslave/gzip.docbook -share/doc/HTML/fr/kioslave/help.docbook -share/doc/HTML/fr/kioslave/http.docbook -share/doc/HTML/fr/kioslave/https.docbook -share/doc/HTML/fr/kioslave/imap.docbook -share/doc/HTML/fr/kioslave/imaps.docbook -share/doc/HTML/fr/kioslave/index.cache.bz2 -share/doc/HTML/fr/kioslave/index.docbook -share/doc/HTML/fr/kioslave/info.docbook -share/doc/HTML/fr/kioslave/lan.docbook -share/doc/HTML/fr/kioslave/ldap.docbook -share/doc/HTML/fr/kioslave/mac.docbook -share/doc/HTML/fr/kioslave/mailto.docbook -share/doc/HTML/fr/kioslave/man.docbook -share/doc/HTML/fr/kioslave/mrml.docbook -share/doc/HTML/fr/kioslave/news.docbook -share/doc/HTML/fr/kioslave/nfs.docbook -share/doc/HTML/fr/kioslave/nntp.docbook -share/doc/HTML/fr/kioslave/pop3.docbook -share/doc/HTML/fr/kioslave/pop3s.docbook -share/doc/HTML/fr/kioslave/print.docbook -share/doc/HTML/fr/kioslave/rlan.docbook -share/doc/HTML/fr/kioslave/rlogin.docbook -share/doc/HTML/fr/kioslave/sftp.docbook -share/doc/HTML/fr/kioslave/smb.docbook -share/doc/HTML/fr/kioslave/smtp.docbook -share/doc/HTML/fr/kioslave/tar.docbook -share/doc/HTML/fr/kioslave/telnet.docbook -share/doc/HTML/fr/kioslave/thumbnail.docbook -share/doc/HTML/fr/kioslave/webdav.docbook -share/doc/HTML/fr/kioslave/webdavs.docbook +share/doc/HTML/fr/kioslave/bookmarks/common +share/doc/HTML/fr/kioslave/bookmarks/index.cache.bz2 +share/doc/HTML/fr/kioslave/bookmarks/index.docbook +share/doc/HTML/fr/kioslave/bzip2/common +share/doc/HTML/fr/kioslave/bzip2/index.cache.bz2 +share/doc/HTML/fr/kioslave/bzip2/index.docbook +share/doc/HTML/fr/kioslave/cgi/common +share/doc/HTML/fr/kioslave/cgi/index.cache.bz2 +share/doc/HTML/fr/kioslave/cgi/index.docbook +share/doc/HTML/fr/kioslave/data/common +share/doc/HTML/fr/kioslave/data/index.cache.bz2 +share/doc/HTML/fr/kioslave/data/index.docbook +share/doc/HTML/fr/kioslave/file/common +share/doc/HTML/fr/kioslave/file/index.cache.bz2 +share/doc/HTML/fr/kioslave/file/index.docbook +share/doc/HTML/fr/kioslave/finger/common +share/doc/HTML/fr/kioslave/finger/index.cache.bz2 +share/doc/HTML/fr/kioslave/finger/index.docbook +share/doc/HTML/fr/kioslave/fish/common +share/doc/HTML/fr/kioslave/fish/index.cache.bz2 +share/doc/HTML/fr/kioslave/fish/index.docbook +share/doc/HTML/fr/kioslave/floppy/common +share/doc/HTML/fr/kioslave/floppy/index.cache.bz2 +share/doc/HTML/fr/kioslave/floppy/index.docbook +share/doc/HTML/fr/kioslave/ftp/common +share/doc/HTML/fr/kioslave/ftp/index.cache.bz2 +share/doc/HTML/fr/kioslave/ftp/index.docbook +share/doc/HTML/fr/kioslave/gzip/common +share/doc/HTML/fr/kioslave/gzip/index.cache.bz2 +share/doc/HTML/fr/kioslave/gzip/index.docbook +share/doc/HTML/fr/kioslave/help/common +share/doc/HTML/fr/kioslave/help/index.cache.bz2 +share/doc/HTML/fr/kioslave/help/index.docbook +share/doc/HTML/fr/kioslave/http/common +share/doc/HTML/fr/kioslave/http/index.cache.bz2 +share/doc/HTML/fr/kioslave/http/index.docbook +share/doc/HTML/fr/kioslave/imap/common +share/doc/HTML/fr/kioslave/imap/index.cache.bz2 +share/doc/HTML/fr/kioslave/imap/index.docbook +share/doc/HTML/fr/kioslave/info/common +share/doc/HTML/fr/kioslave/info/index.cache.bz2 +share/doc/HTML/fr/kioslave/info/index.docbook +share/doc/HTML/fr/kioslave/ldap/common +share/doc/HTML/fr/kioslave/ldap/index.cache.bz2 +share/doc/HTML/fr/kioslave/ldap/index.docbook +share/doc/HTML/fr/kioslave/mailto/common +share/doc/HTML/fr/kioslave/mailto/index.cache.bz2 +share/doc/HTML/fr/kioslave/mailto/index.docbook +share/doc/HTML/fr/kioslave/man/common +share/doc/HTML/fr/kioslave/man/index.cache.bz2 +share/doc/HTML/fr/kioslave/man/index.docbook +share/doc/HTML/fr/kioslave/news/common +share/doc/HTML/fr/kioslave/news/index.cache.bz2 +share/doc/HTML/fr/kioslave/news/index.docbook +share/doc/HTML/fr/kioslave/nfs/common +share/doc/HTML/fr/kioslave/nfs/index.cache.bz2 +share/doc/HTML/fr/kioslave/nfs/index.docbook +share/doc/HTML/fr/kioslave/nntp/common +share/doc/HTML/fr/kioslave/nntp/index.cache.bz2 +share/doc/HTML/fr/kioslave/nntp/index.docbook +share/doc/HTML/fr/kioslave/pop3/common +share/doc/HTML/fr/kioslave/pop3/index.cache.bz2 +share/doc/HTML/fr/kioslave/pop3/index.docbook +share/doc/HTML/fr/kioslave/rlogin/common +share/doc/HTML/fr/kioslave/rlogin/index.cache.bz2 +share/doc/HTML/fr/kioslave/rlogin/index.docbook +share/doc/HTML/fr/kioslave/sftp/common +share/doc/HTML/fr/kioslave/sftp/index.cache.bz2 +share/doc/HTML/fr/kioslave/sftp/index.docbook +share/doc/HTML/fr/kioslave/smb/common +share/doc/HTML/fr/kioslave/smb/index.cache.bz2 +share/doc/HTML/fr/kioslave/smb/index.docbook +share/doc/HTML/fr/kioslave/smtp/common +share/doc/HTML/fr/kioslave/smtp/index.cache.bz2 +share/doc/HTML/fr/kioslave/smtp/index.docbook +share/doc/HTML/fr/kioslave/tar/common +share/doc/HTML/fr/kioslave/tar/index.cache.bz2 +share/doc/HTML/fr/kioslave/tar/index.docbook +share/doc/HTML/fr/kioslave/telnet/common +share/doc/HTML/fr/kioslave/telnet/index.cache.bz2 +share/doc/HTML/fr/kioslave/telnet/index.docbook +share/doc/HTML/fr/kioslave/thumbnail/common +share/doc/HTML/fr/kioslave/thumbnail/index.cache.bz2 +share/doc/HTML/fr/kioslave/thumbnail/index.docbook +share/doc/HTML/fr/kioslave/webdav/common +share/doc/HTML/fr/kioslave/webdav/index.cache.bz2 +share/doc/HTML/fr/kioslave/webdav/index.docbook share/doc/HTML/fr/kiriki/common share/doc/HTML/fr/kiriki/index.cache.bz2 share/doc/HTML/fr/kiriki/index.docbook @@ -836,9 +850,6 @@ share/doc/HTML/fr/kmines/kmines2.png share/doc/HTML/fr/kmix/common share/doc/HTML/fr/kmix/index.cache.bz2 share/doc/HTML/fr/kmix/index.docbook -share/doc/HTML/fr/kmobiletools/common -share/doc/HTML/fr/kmobiletools/index.cache.bz2 -share/doc/HTML/fr/kmobiletools/index.docbook share/doc/HTML/fr/kmoon/common share/doc/HTML/fr/kmoon/index.cache.bz2 share/doc/HTML/fr/kmoon/index.docbook @@ -995,7 +1006,6 @@ share/doc/HTML/fr/konsolekalendar/index.docbook share/doc/HTML/fr/kontact/common share/doc/HTML/fr/kontact/index.cache.bz2 share/doc/HTML/fr/kontact/index.docbook -share/doc/HTML/fr/kopete/chatstyle.docbook share/doc/HTML/fr/kopete/common share/doc/HTML/fr/kopete/index.cache.bz2 share/doc/HTML/fr/kopete/index.docbook @@ -1247,8 +1257,6 @@ share/doc/HTML/fr/kstars/lightcurve.png share/doc/HTML/fr/kstars/lightcurves.docbook share/doc/HTML/fr/kstars/luminosity.docbook share/doc/HTML/fr/kstars/magnitude.docbook -share/doc/HTML/fr/kstars/man-indi_v4l_generic.1.docbook -share/doc/HTML/fr/kstars/man-v4ldriver.1.docbook share/doc/HTML/fr/kstars/meridian.docbook share/doc/HTML/fr/kstars/newfov.png share/doc/HTML/fr/kstars/observinglist.docbook @@ -1390,20 +1398,9 @@ share/doc/HTML/fr/marble/measure-1.png share/doc/HTML/fr/marble/quick-1.png share/doc/HTML/fr/marble/search-1.png share/doc/HTML/fr/marble/search-2.png -share/doc/HTML/fr/okteta/basics.docbook -share/doc/HTML/fr/okteta/common -share/doc/HTML/fr/okteta/credits.docbook -share/doc/HTML/fr/okteta/index.cache.bz2 -share/doc/HTML/fr/okteta/index.docbook -share/doc/HTML/fr/okteta/introduction.docbook -share/doc/HTML/fr/okteta/menu.docbook -share/doc/HTML/fr/okteta/tools.docbook share/doc/HTML/fr/okular/common share/doc/HTML/fr/okular/index.cache.bz2 share/doc/HTML/fr/okular/index.docbook -share/doc/HTML/fr/plasma/common -share/doc/HTML/fr/plasma/index.cache.bz2 -share/doc/HTML/fr/plasma/index.docbook share/doc/HTML/fr/sonnet/common share/doc/HTML/fr/sonnet/index.cache.bz2 share/doc/HTML/fr/sonnet/index.docbook @@ -1426,6 +1423,7 @@ share/locale/fr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fr/LC_MESSAGES/audiorename_plugin.mo share/locale/fr/LC_MESSAGES/blinken.mo +share/locale/fr/LC_MESSAGES/bomber.mo share/locale/fr/LC_MESSAGES/bovo.mo share/locale/fr/LC_MESSAGES/cervisia.mo share/locale/fr/LC_MESSAGES/cvsservice.mo @@ -1440,6 +1438,7 @@ share/locale/fr/LC_MESSAGES/imagerename_plugin.mo share/locale/fr/LC_MESSAGES/joystick.mo share/locale/fr/LC_MESSAGES/juk.mo share/locale/fr/LC_MESSAGES/kabc.mo +share/locale/fr/LC_MESSAGES/kabc_akonadi.mo share/locale/fr/LC_MESSAGES/kabc_dir.mo share/locale/fr/LC_MESSAGES/kabc_file.mo share/locale/fr/LC_MESSAGES/kabc_ldapkio.mo @@ -1453,10 +1452,14 @@ share/locale/fr/LC_MESSAGES/kaddressbook.mo share/locale/fr/LC_MESSAGES/kalarm.mo share/locale/fr/LC_MESSAGES/kalgebra.mo share/locale/fr/LC_MESSAGES/kalzium.mo +share/locale/fr/LC_MESSAGES/kalzium_qt.mo share/locale/fr/LC_MESSAGES/kanagram.mo +share/locale/fr/LC_MESSAGES/kapman.mo share/locale/fr/LC_MESSAGES/kappfinder.mo share/locale/fr/LC_MESSAGES/kapptemplate.mo +share/locale/fr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fr/LC_MESSAGES/kate.mo +share/locale/fr/LC_MESSAGES/katebuild-plugin.mo share/locale/fr/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/fr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fr/LC_MESSAGES/katefiletemplates.mo @@ -1467,7 +1470,6 @@ share/locale/fr/LC_MESSAGES/kateinsertcommand.mo share/locale/fr/LC_MESSAGES/katekjswrapper.mo share/locale/fr/LC_MESSAGES/katekonsoleplugin.mo share/locale/fr/LC_MESSAGES/katemailfilesplugin.mo -share/locale/fr/LC_MESSAGES/katemake.mo share/locale/fr/LC_MESSAGES/kateopenheader.mo share/locale/fr/LC_MESSAGES/katepart4.mo share/locale/fr/LC_MESSAGES/katepybrowse.mo @@ -1486,14 +1488,14 @@ share/locale/fr/LC_MESSAGES/kblocks.mo share/locale/fr/LC_MESSAGES/kbounce.mo share/locale/fr/LC_MESSAGES/kbreakout.mo share/locale/fr/LC_MESSAGES/kbruch.mo -share/locale/fr/LC_MESSAGES/kbstateapplet.mo share/locale/fr/LC_MESSAGES/kbugbuster.mo share/locale/fr/LC_MESSAGES/kcachegrind.mo share/locale/fr/LC_MESSAGES/kcalc.mo share/locale/fr/LC_MESSAGES/kcertpart.mo share/locale/fr/LC_MESSAGES/kcharselect.mo -share/locale/fr/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/fr/LC_MESSAGES/kcm_akonadi.mo share/locale/fr/LC_MESSAGES/kcm_autostart.mo +share/locale/fr/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/fr/LC_MESSAGES/kcm_emoticons.mo share/locale/fr/LC_MESSAGES/kcm_krfb.mo share/locale/fr/LC_MESSAGES/kcm_kwindesktop.mo @@ -1503,6 +1505,7 @@ share/locale/fr/LC_MESSAGES/kcm_pci.mo share/locale/fr/LC_MESSAGES/kcm_phonon.mo share/locale/fr/LC_MESSAGES/kcm_phononxine.mo share/locale/fr/LC_MESSAGES/kcm_solid.mo +share/locale/fr/LC_MESSAGES/kcm_standard_actions.mo share/locale/fr/LC_MESSAGES/kcmaccess.mo share/locale/fr/LC_MESSAGES/kcmaudiocd.mo share/locale/fr/LC_MESSAGES/kcmbackground.mo @@ -1552,7 +1555,6 @@ share/locale/fr/LC_MESSAGES/kcmsmartcard.mo share/locale/fr/LC_MESSAGES/kcmsmserver.mo share/locale/fr/LC_MESSAGES/kcmsolidproc.mo share/locale/fr/LC_MESSAGES/kcmstyle.mo -share/locale/fr/LC_MESSAGES/kcmtaskbar.mo share/locale/fr/LC_MESSAGES/kcmusb.mo share/locale/fr/LC_MESSAGES/kcmview1394.mo share/locale/fr/LC_MESSAGES/kcmxinerama.mo @@ -1560,7 +1562,9 @@ share/locale/fr/LC_MESSAGES/kcolorchooser.mo share/locale/fr/LC_MESSAGES/kcron.mo share/locale/fr/LC_MESSAGES/kdat.mo share/locale/fr/LC_MESSAGES/kde-menu.mo +share/locale/fr/LC_MESSAGES/kdeasciiquarium.mo share/locale/fr/LC_MESSAGES/kdebugdialog.mo +share/locale/fr/LC_MESSAGES/kded_phononserver.mo share/locale/fr/LC_MESSAGES/kdelibs4.mo share/locale/fr/LC_MESSAGES/kdelibs_colors4.mo share/locale/fr/LC_MESSAGES/kdepasswd.mo @@ -1571,6 +1575,7 @@ share/locale/fr/LC_MESSAGES/kdessh.mo share/locale/fr/LC_MESSAGES/kdesu.mo share/locale/fr/LC_MESSAGES/kdesud.mo share/locale/fr/LC_MESSAGES/kdf.mo +share/locale/fr/LC_MESSAGES/kdgantt.mo share/locale/fr/LC_MESSAGES/kdgantt1.mo share/locale/fr/LC_MESSAGES/kdialog.mo share/locale/fr/LC_MESSAGES/kdiamond.mo @@ -1620,12 +1625,15 @@ share/locale/fr/LC_MESSAGES/khotnewstuff.mo share/locale/fr/LC_MESSAGES/khtmlkttsd.mo share/locale/fr/LC_MESSAGES/kiconfinder.mo share/locale/fr/LC_MESSAGES/kig.mo +share/locale/fr/LC_MESSAGES/killbots.mo share/locale/fr/LC_MESSAGES/kimagemapeditor.mo share/locale/fr/LC_MESSAGES/kinetd.mo share/locale/fr/LC_MESSAGES/kinfocenter.mo share/locale/fr/LC_MESSAGES/kio4.mo +share/locale/fr/LC_MESSAGES/kio_applications.mo share/locale/fr/LC_MESSAGES/kio_archive.mo share/locale/fr/LC_MESSAGES/kio_audiocd.mo +share/locale/fr/LC_MESSAGES/kio_bookmarks.mo share/locale/fr/LC_MESSAGES/kio_finger.mo share/locale/fr/LC_MESSAGES/kio_fish.mo share/locale/fr/LC_MESSAGES/kio_floppy.mo @@ -1636,11 +1644,12 @@ share/locale/fr/LC_MESSAGES/kio_jabberdisco.mo share/locale/fr/LC_MESSAGES/kio_ldap.mo share/locale/fr/LC_MESSAGES/kio_man.mo share/locale/fr/LC_MESSAGES/kio_mbox.mo +share/locale/fr/LC_MESSAGES/kio_nepomuksearch.mo share/locale/fr/LC_MESSAGES/kio_nfs.mo share/locale/fr/LC_MESSAGES/kio_nntp.mo +share/locale/fr/LC_MESSAGES/kio_perldoc.mo share/locale/fr/LC_MESSAGES/kio_pop3.mo share/locale/fr/LC_MESSAGES/kio_remote.mo -share/locale/fr/LC_MESSAGES/kio_settings.mo share/locale/fr/LC_MESSAGES/kio_sftp.mo share/locale/fr/LC_MESSAGES/kio_sieve.mo share/locale/fr/LC_MESSAGES/kio_smb.mo @@ -1700,10 +1709,10 @@ share/locale/fr/LC_MESSAGES/kopete.mo share/locale/fr/LC_MESSAGES/korganizer.mo share/locale/fr/LC_MESSAGES/korn.mo share/locale/fr/LC_MESSAGES/kpackage.mo +share/locale/fr/LC_MESSAGES/kpartloader.mo share/locale/fr/LC_MESSAGES/kpartsaver.mo share/locale/fr/LC_MESSAGES/kpasswdserver.mo share/locale/fr/LC_MESSAGES/kpat.mo -share/locale/fr/LC_MESSAGES/kpercentage.mo share/locale/fr/LC_MESSAGES/kpilot.mo share/locale/fr/LC_MESSAGES/kppp.mo share/locale/fr/LC_MESSAGES/kppplogview.mo @@ -1727,20 +1736,12 @@ share/locale/fr/LC_MESSAGES/kreversi.mo share/locale/fr/LC_MESSAGES/krfb.mo share/locale/fr/LC_MESSAGES/kruler.mo share/locale/fr/LC_MESSAGES/krunner.mo -share/locale/fr/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/fr/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/fr/LC_MESSAGES/krunner_contacts.mo -share/locale/fr/LC_MESSAGES/krunner_converterrunner.mo -share/locale/fr/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/fr/LC_MESSAGES/krunner_sessions.mo -share/locale/fr/LC_MESSAGES/krunner_shellrunner.mo -share/locale/fr/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/fr/LC_MESSAGES/krunner_xesam.mo share/locale/fr/LC_MESSAGES/ksame.mo share/locale/fr/LC_MESSAGES/ksaneplugin.mo share/locale/fr/LC_MESSAGES/ksayit.mo share/locale/fr/LC_MESSAGES/kscd.mo share/locale/fr/LC_MESSAGES/kscreensaver.mo +share/locale/fr/LC_MESSAGES/ksendemail.mo share/locale/fr/LC_MESSAGES/kshisen.mo share/locale/fr/LC_MESSAGES/kshorturifilter.mo share/locale/fr/LC_MESSAGES/ksirk.mo @@ -1757,6 +1758,7 @@ share/locale/fr/LC_MESSAGES/kstyle_keramik_config.mo share/locale/fr/LC_MESSAGES/kstyle_phase_config.mo share/locale/fr/LC_MESSAGES/ksudoku.mo share/locale/fr/LC_MESSAGES/ksysguard.mo +share/locale/fr/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/fr/LC_MESSAGES/ksystemlog.mo share/locale/fr/LC_MESSAGES/ksystraycmd.mo share/locale/fr/LC_MESSAGES/ksysv.mo @@ -1766,7 +1768,6 @@ share/locale/fr/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/fr/LC_MESSAGES/kthememanager.mo share/locale/fr/LC_MESSAGES/ktimer.mo share/locale/fr/LC_MESSAGES/ktimetracker.mo -share/locale/fr/LC_MESSAGES/ktnef.mo share/locale/fr/LC_MESSAGES/ktouch.mo share/locale/fr/LC_MESSAGES/ktraderclient.mo share/locale/fr/LC_MESSAGES/kttsd.mo @@ -1778,6 +1779,7 @@ share/locale/fr/LC_MESSAGES/kuiserver.mo share/locale/fr/LC_MESSAGES/kuiviewer.mo share/locale/fr/LC_MESSAGES/kurifilter.mo share/locale/fr/LC_MESSAGES/kuser.mo +share/locale/fr/LC_MESSAGES/kwalletd.mo share/locale/fr/LC_MESSAGES/kwalletmanager.mo share/locale/fr/LC_MESSAGES/kwatchgnupg.mo share/locale/fr/LC_MESSAGES/kweather.mo @@ -1824,11 +1826,14 @@ share/locale/fr/LC_MESSAGES/libmailtransport.mo share/locale/fr/LC_MESSAGES/liboktetacore.mo share/locale/fr/LC_MESSAGES/libphonon.mo share/locale/fr/LC_MESSAGES/libplasma.mo +share/locale/fr/LC_MESSAGES/libplasmaclock.mo share/locale/fr/LC_MESSAGES/libtaskmanager.mo share/locale/fr/LC_MESSAGES/lokalize.mo share/locale/fr/LC_MESSAGES/lskat.mo share/locale/fr/LC_MESSAGES/marble.mo +share/locale/fr/LC_MESSAGES/marble_qt.mo share/locale/fr/LC_MESSAGES/nepomuk.mo +share/locale/fr/LC_MESSAGES/nepomuksearch.mo share/locale/fr/LC_MESSAGES/nsplugin.mo share/locale/fr/LC_MESSAGES/okteta.mo share/locale/fr/LC_MESSAGES/oktetapart.mo @@ -1838,6 +1843,7 @@ share/locale/fr/LC_MESSAGES/okular_comicbook.mo share/locale/fr/LC_MESSAGES/okular_djvu.mo share/locale/fr/LC_MESSAGES/okular_dvi.mo share/locale/fr/LC_MESSAGES/okular_epub.mo +share/locale/fr/LC_MESSAGES/okular_fax.mo share/locale/fr/LC_MESSAGES/okular_fictionbook.mo share/locale/fr/LC_MESSAGES/okular_ghostview.mo share/locale/fr/LC_MESSAGES/okular_kimgio.mo @@ -1850,10 +1856,15 @@ share/locale/fr/LC_MESSAGES/parley.mo share/locale/fr/LC_MESSAGES/phonon-xine.mo share/locale/fr/LC_MESSAGES/phonon_gstreamer.mo share/locale/fr/LC_MESSAGES/phonon_kde.mo +share/locale/fr/LC_MESSAGES/plasma-overlay.mo +share/locale/fr/LC_MESSAGES/plasma-shells-common.mo share/locale/fr/LC_MESSAGES/plasma.mo share/locale/fr/LC_MESSAGES/plasma_applet_battery.mo +share/locale/fr/LC_MESSAGES/plasma_applet_bball.mo share/locale/fr/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/fr/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/fr/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/fr/LC_MESSAGES/plasma_applet_charselect.mo share/locale/fr/LC_MESSAGES/plasma_applet_clock.mo share/locale/fr/LC_MESSAGES/plasma_applet_comic.mo share/locale/fr/LC_MESSAGES/plasma_applet_desktop.mo @@ -1865,26 +1876,61 @@ share/locale/fr/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/fr/LC_MESSAGES/plasma_applet_folderview.mo share/locale/fr/LC_MESSAGES/plasma_applet_frame.mo share/locale/fr/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/fr/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/fr/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/fr/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/fr/LC_MESSAGES/plasma_applet_katesession.mo share/locale/fr/LC_MESSAGES/plasma_applet_kget.mo -share/locale/fr/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/fr/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/fr/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/fr/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/fr/LC_MESSAGES/plasma_applet_life.mo share/locale/fr/LC_MESSAGES/plasma_applet_luna.mo +share/locale/fr/LC_MESSAGES/plasma_applet_news.mo share/locale/fr/LC_MESSAGES/plasma_applet_notes.mo share/locale/fr/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/fr/LC_MESSAGES/plasma_applet_pager.mo share/locale/fr/LC_MESSAGES/plasma_applet_panel.mo +share/locale/fr/LC_MESSAGES/plasma_applet_paste.mo +share/locale/fr/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/fr/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/fr/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/fr/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/fr/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/fr/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/fr/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/fr/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/fr/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/fr/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/fr/LC_MESSAGES/plasma_applet_timer.mo share/locale/fr/LC_MESSAGES/plasma_applet_trash.mo share/locale/fr/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/fr/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/fr/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/fr/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/fr/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/fr/LC_MESSAGES/plasma_engine_dict.mo +share/locale/fr/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/fr/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/fr/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/fr/LC_MESSAGES/plasma_engine_rss.mo +share/locale/fr/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/fr/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/fr/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/fr/LC_MESSAGES/plasma_runner_locations.mo +share/locale/fr/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/fr/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/fr/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/fr/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/fr/LC_MESSAGES/plasma_runner_shell.mo +share/locale/fr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/fr/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/fr/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/fr/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/fr/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/fr/LC_MESSAGES/plasmaengineexplorer.mo share/locale/fr/LC_MESSAGES/plasmapkg.mo share/locale/fr/LC_MESSAGES/plasmoidviewer.mo +share/locale/fr/LC_MESSAGES/powerdevil.mo share/locale/fr/LC_MESSAGES/printer-applet.mo share/locale/fr/LC_MESSAGES/processcore.mo share/locale/fr/LC_MESSAGES/processui.mo @@ -1896,10 +1942,12 @@ share/locale/fr/LC_MESSAGES/solidcontrol.mo share/locale/fr/LC_MESSAGES/soliduiserver.mo share/locale/fr/LC_MESSAGES/spy.mo share/locale/fr/LC_MESSAGES/step.mo +share/locale/fr/LC_MESSAGES/step_qt.mo share/locale/fr/LC_MESSAGES/strigila_diff.mo share/locale/fr/LC_MESSAGES/superkaramba.mo share/locale/fr/LC_MESSAGES/svgpart.mo share/locale/fr/LC_MESSAGES/sweeper.mo +share/locale/fr/LC_MESSAGES/system-config-printer-kde.mo share/locale/fr/LC_MESSAGES/systemsettings.mo share/locale/fr/LC_MESSAGES/timezones4.mo share/locale/fr/LC_MESSAGES/umbrello.mo @@ -1909,9 +1957,7 @@ share/locale/fr/entry.desktop @dirrm share/doc/HTML/fr/superkaramba @dirrm share/doc/HTML/fr/step @dirrm share/doc/HTML/fr/sonnet -@dirrm share/doc/HTML/fr/plasma @dirrm share/doc/HTML/fr/okular -@dirrm share/doc/HTML/fr/okteta @dirrm share/doc/HTML/fr/marble @dirrm share/doc/HTML/fr/lskat @dirrm share/doc/HTML/fr/lokalize @@ -1977,7 +2023,6 @@ share/locale/fr/entry.desktop @dirrm share/doc/HTML/fr/kmouth @dirrm share/doc/HTML/fr/kmousetool @dirrm share/doc/HTML/fr/kmoon -@dirrm share/doc/HTML/fr/kmobiletools @dirrm share/doc/HTML/fr/kmix @dirrm share/doc/HTML/fr/kmines @dirrm share/doc/HTML/fr/kmenuedit @@ -1993,6 +2038,35 @@ share/locale/fr/entry.desktop @dirrm share/doc/HTML/fr/kjumpingcube @dirrm share/doc/HTML/fr/kjots @dirrm share/doc/HTML/fr/kiriki +@dirrm share/doc/HTML/fr/kioslave/webdav +@dirrm share/doc/HTML/fr/kioslave/thumbnail +@dirrm share/doc/HTML/fr/kioslave/telnet +@dirrm share/doc/HTML/fr/kioslave/tar +@dirrm share/doc/HTML/fr/kioslave/smtp +@dirrm share/doc/HTML/fr/kioslave/smb +@dirrm share/doc/HTML/fr/kioslave/sftp +@dirrm share/doc/HTML/fr/kioslave/rlogin +@dirrm share/doc/HTML/fr/kioslave/pop3 +@dirrm share/doc/HTML/fr/kioslave/nntp +@dirrm share/doc/HTML/fr/kioslave/nfs +@dirrm share/doc/HTML/fr/kioslave/news +@dirrm share/doc/HTML/fr/kioslave/man +@dirrm share/doc/HTML/fr/kioslave/mailto +@dirrm share/doc/HTML/fr/kioslave/ldap +@dirrm share/doc/HTML/fr/kioslave/info +@dirrm share/doc/HTML/fr/kioslave/imap +@dirrm share/doc/HTML/fr/kioslave/http +@dirrm share/doc/HTML/fr/kioslave/help +@dirrm share/doc/HTML/fr/kioslave/gzip +@dirrm share/doc/HTML/fr/kioslave/ftp +@dirrm share/doc/HTML/fr/kioslave/floppy +@dirrm share/doc/HTML/fr/kioslave/fish +@dirrm share/doc/HTML/fr/kioslave/finger +@dirrm share/doc/HTML/fr/kioslave/file +@dirrm share/doc/HTML/fr/kioslave/data +@dirrm share/doc/HTML/fr/kioslave/cgi +@dirrm share/doc/HTML/fr/kioslave/bzip2 +@dirrm share/doc/HTML/fr/kioslave/bookmarks @dirrm share/doc/HTML/fr/kioslave @dirrm share/doc/HTML/fr/kinfocenter/xserver @dirrm share/doc/HTML/fr/kinfocenter/usb @@ -2035,7 +2109,6 @@ share/locale/fr/entry.desktop @dirrm share/doc/HTML/fr/kdiamond @dirrm share/doc/HTML/fr/kdf @dirrm share/doc/HTML/fr/kdesu -@dirrm share/doc/HTML/fr/kdepasswd @dirrm share/doc/HTML/fr/kdebugdialog @dirrm share/doc/HTML/fr/kdat @dirrm share/doc/HTML/fr/kcron @@ -2058,7 +2131,6 @@ share/locale/fr/entry.desktop @dirrm share/doc/HTML/fr/kcontrol/mouse @dirrm share/doc/HTML/fr/kcontrol/laptop @dirrm share/doc/HTML/fr/kcontrol/language -@dirrm share/doc/HTML/fr/kcontrol/kxkb @dirrm share/doc/HTML/fr/kcontrol/kwindecoration @dirrm share/doc/HTML/fr/kcontrol/kthememgr @dirrm share/doc/HTML/fr/kcontrol/knetworkconf @@ -2098,6 +2170,7 @@ share/locale/fr/entry.desktop @dirrm share/doc/HTML/fr/kcontrol/colors @dirrm share/doc/HTML/fr/kcontrol/clock @dirrm share/doc/HTML/fr/kcontrol/cache +@dirrm share/doc/HTML/fr/kcontrol/bookmarks @dirrm share/doc/HTML/fr/kcontrol/blockdevices @dirrm share/doc/HTML/fr/kcontrol/bell @dirrm share/doc/HTML/fr/kcontrol/background @@ -2116,13 +2189,10 @@ share/locale/fr/entry.desktop @dirrm share/doc/HTML/fr/kbattleship @dirrm share/doc/HTML/fr/katomic @dirrm share/doc/HTML/fr/kate-plugins -@dirrm share/doc/HTML/fr/kate @dirrm share/doc/HTML/fr/karm -@dirrm share/doc/HTML/fr/kapptemplate @dirrm share/doc/HTML/fr/kanagram @dirrm share/doc/HTML/fr/kamera @dirrm share/doc/HTML/fr/kalzium -@dirrm share/doc/HTML/fr/kalgebra @dirrm share/doc/HTML/fr/kalarm @dirrm share/doc/HTML/fr/kaddressbook @dirrm share/doc/HTML/fr/juk @@ -2142,3 +2212,6 @@ share/locale/fr/entry.desktop @dirrm share/apps/ktuberling/sounds @dirrm share/apps/ktuberling @dirrm share/apps/khangman +@dirrmtry man/fr/man6 +@dirrmtry man/fr/man1 +@dirrmtry man/fr diff --git a/games/kdegames4/Makefile b/games/kdegames4/Makefile index cac8bf0d606a..6a1d89c8a833 100644 --- a/games/kdegames4/Makefile +++ b/games/kdegames4/Makefile @@ -8,13 +8,14 @@ PORTNAME= kdegames PORTVERSION= ${KDE4_VERSION} CATEGORIES= games kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Games for the KDE integrated X11 desktop -LIB_DEPENDS= ggzcore.9:${PORTSDIR}/games/ggz-client-libs +LIB_DEPENDS= ggzcore.9:${PORTSDIR}/games/ggz-client-libs \ + qca.2:${PORTSDIR}/devel/qca LATEST_LINK= ${PORTNAME}4 diff --git a/games/kdegames4/distinfo b/games/kdegames4/distinfo index c969e2797433..f411a62c2e31 100644 --- a/games/kdegames4/distinfo +++ b/games/kdegames4/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdegames-4.1.4.tar.bz2) = b18b4b89c83ea20a76bab5fac03bcc0b -SHA256 (KDE/kdegames-4.1.4.tar.bz2) = 8d6e100c1ba4d76b5e1b951f14a4d55082b48340d16b7727f177c712bd75002c -SIZE (KDE/kdegames-4.1.4.tar.bz2) = 31912439 +MD5 (KDE/kdegames-4.2.0.tar.bz2) = 68cefd627025be99ba136e5a4e35e554 +SHA256 (KDE/kdegames-4.2.0.tar.bz2) = 27c8c4c611ff839cacd537ae7bb2145ac77b02fc952112ed158bc2d3c4bbbe75 +SIZE (KDE/kdegames-4.2.0.tar.bz2) = 38708839 diff --git a/games/kdegames4/pkg-plist b/games/kdegames4/pkg-plist index a7328dd9c867..65850e0a0e1b 100644 --- a/games/kdegames4/pkg-plist +++ b/games/kdegames4/pkg-plist @@ -1,4 +1,6 @@ +bin/bomber bin/bovo +bin/kapman bin/katomic bin/kbattleship bin/kblackbox @@ -9,6 +11,7 @@ bin/kdiamond bin/kfourinline bin/kfourinlineproc bin/kgoldrunner +bin/killbots bin/kiriki bin/kjumpingcube bin/klines @@ -23,6 +26,7 @@ bin/kreversi bin/ksame bin/kshisen bin/ksirk +bin/ksirkskineditor bin/kspaceduel bin/ksquares bin/ksudoku @@ -133,26 +137,31 @@ include/kmahjonggtileset.h include/kstandardgameaction.h include/libkdegames_export.h include/libkmahjongg_export.h +lib/libiris_ksirk.so +lib/libiris_ksirk.so.2 +lib/libiris_ksirk.so.2.0.0 lib/libkdegames.so lib/libkdegames.so.5 lib/libkdegames.so.5.0.0 lib/libkggzgames.so lib/libkggzgames.so.5 -lib/libkggzgames.so.5.0.0 +lib/libkggzgames.so.5.0.1 lib/libkggzmod.so lib/libkggzmod.so.5 -lib/libkggzmod.so.5.0.0 +lib/libkggzmod.so.5.0.1 lib/libkggznet.so lib/libkggznet.so.5 -lib/libkggznet.so.5.0.0 +lib/libkggznet.so.5.0.1 lib/libkmahjongglib.so lib/libkmahjongglib.so.5 -lib/libkmahjongglib.so.5.0.0 +lib/libkmahjongglib.so.5.0.1 lib/libkolfprivate.so lib/libkolfprivate.so.5 -lib/libkolfprivate.so.5.0.0 +lib/libkolfprivate.so.5.0.1 share/applications/kde4/KGoldrunner.desktop +share/applications/kde4/bomber.desktop share/applications/kde4/bovo.desktop +share/applications/kde4/kapman.desktop share/applications/kde4/katomic.desktop share/applications/kde4/kbattleship.desktop share/applications/kde4/kblackbox.desktop @@ -161,6 +170,7 @@ share/applications/kde4/kbounce.desktop share/applications/kde4/kbreakout.desktop share/applications/kde4/kdiamond.desktop share/applications/kde4/kfourinline.desktop +share/applications/kde4/killbots.desktop share/applications/kde4/kiriki.desktop share/applications/kde4/kjumpingcube.desktop share/applications/kde4/klines.desktop @@ -175,12 +185,20 @@ share/applications/kde4/kreversi.desktop share/applications/kde4/ksame.desktop share/applications/kde4/kshisen.desktop share/applications/kde4/ksirk.desktop +share/applications/kde4/ksirkskineditor.desktop share/applications/kde4/kspaceduel.desktop share/applications/kde4/ksquares.desktop share/applications/kde4/ksudoku.desktop share/applications/kde4/ktuberling.desktop share/applications/kde4/kubrick.desktop share/applications/kde4/lskat.desktop +share/apps/bomber/bomberui.rc +share/apps/bomber/themes/Lava-Island.desktop +share/apps/bomber/themes/Lava-Island.svgz +share/apps/bomber/themes/kbomber.desktop +share/apps/bomber/themes/kbomber.png +share/apps/bomber/themes/kbomber.svgz +share/apps/bomber/themes/lava-Island.png share/apps/bovo/bovoui.rc share/apps/bovo/themes/gomoku/theme.svg share/apps/bovo/themes/gomoku/themerc @@ -458,40 +476,50 @@ share/apps/carddecks/cards-xskat-german/8.png share/apps/carddecks/cards-xskat-german/9.png share/apps/carddecks/cards-xskat-german/COPYRIGHT share/apps/carddecks/cards-xskat-german/index.desktop -share/apps/carddecks/decks/deck0.desktop -share/apps/carddecks/decks/deck0.png +share/apps/carddecks/decks/deck1.desktop +share/apps/carddecks/decks/deck1.png share/apps/carddecks/decks/deck10.desktop share/apps/carddecks/decks/deck10.png +share/apps/carddecks/decks/deck10.svgz share/apps/carddecks/decks/deck11.desktop share/apps/carddecks/decks/deck11.png +share/apps/carddecks/decks/deck11.svgz +share/apps/carddecks/decks/deck12.desktop +share/apps/carddecks/decks/deck12.png +share/apps/carddecks/decks/deck12.svgz +share/apps/carddecks/decks/deck13.desktop +share/apps/carddecks/decks/deck13.png +share/apps/carddecks/decks/deck13.svgz share/apps/carddecks/decks/deck14.desktop share/apps/carddecks/decks/deck14.png -share/apps/carddecks/decks/deck15.desktop -share/apps/carddecks/decks/deck15.png -share/apps/carddecks/decks/deck16.desktop -share/apps/carddecks/decks/deck16.png -share/apps/carddecks/decks/deck17.desktop -share/apps/carddecks/decks/deck17.png -share/apps/carddecks/decks/deck24.desktop -share/apps/carddecks/decks/deck24.png -share/apps/carddecks/decks/deck25.desktop -share/apps/carddecks/decks/deck25.png -share/apps/carddecks/decks/deck25_dondorf.svgz -share/apps/carddecks/decks/deck26.desktop -share/apps/carddecks/decks/deck26.png -share/apps/carddecks/decks/deck26_ornamental.svg -share/apps/carddecks/decks/deck27.desktop -share/apps/carddecks/decks/deck27.png -share/apps/carddecks/decks/deck27_classic.svgz -share/apps/carddecks/decks/deck28.desktop -share/apps/carddecks/decks/deck28.png -share/apps/carddecks/decks/deck28_oxygen.svgz +share/apps/carddecks/decks/deck14.svgz +share/apps/carddecks/decks/deck2.desktop +share/apps/carddecks/decks/deck2.png +share/apps/carddecks/decks/deck3.desktop +share/apps/carddecks/decks/deck3.png +share/apps/carddecks/decks/deck4.desktop +share/apps/carddecks/decks/deck4.png +share/apps/carddecks/decks/deck5.desktop +share/apps/carddecks/decks/deck5.png +share/apps/carddecks/decks/deck6.desktop +share/apps/carddecks/decks/deck6.png +share/apps/carddecks/decks/deck7.desktop +share/apps/carddecks/decks/deck7.png +share/apps/carddecks/decks/deck8.desktop +share/apps/carddecks/decks/deck8.png +share/apps/carddecks/decks/deck8.svgz +share/apps/carddecks/decks/deck9.desktop +share/apps/carddecks/decks/deck9.png +share/apps/carddecks/decks/deck9.svgz share/apps/carddecks/svg-dondorf/11.png share/apps/carddecks/svg-dondorf/dondorf.svgz share/apps/carddecks/svg-dondorf/index.desktop share/apps/carddecks/svg-gm-paris/11.png share/apps/carddecks/svg-gm-paris/index.desktop share/apps/carddecks/svg-gm-paris/paris.svgz +share/apps/carddecks/svg-jolly-royal/11.png +share/apps/carddecks/svg-jolly-royal/index.desktop +share/apps/carddecks/svg-jolly-royal/jolly-royal.svgz share/apps/carddecks/svg-nicu-ornamental/11.png share/apps/carddecks/svg-nicu-ornamental/AUTHORS share/apps/carddecks/svg-nicu-ornamental/COPYING @@ -504,15 +532,30 @@ share/apps/carddecks/svg-nicu-white/index.desktop share/apps/carddecks/svg-nicu-white/white.svgz share/apps/carddecks/svg-oxygen-white/11.png share/apps/carddecks/svg-oxygen-white/index.desktop -share/apps/carddecks/svg-oxygen-white/oxygen-white.svg +share/apps/carddecks/svg-oxygen-white/oxygen-white.svgz share/apps/carddecks/svg-oxygen/11.png share/apps/carddecks/svg-oxygen/index.desktop share/apps/carddecks/svg-oxygen/oxygen.svgz share/apps/carddecks/svg-tigullio-international/index.desktop share/apps/carddecks/svg-tigullio-international/queen-of-hearts.png -share/apps/carddecks/svg-tigullio-international/tigullio-international.svg +share/apps/carddecks/svg-tigullio-international/tigullio-international.svgz share/apps/cmake/modules/FindLibKDEGames.cmake share/apps/cmake/modules/GGZ.cmake +share/apps/kapman/defaultmaze.xml +share/apps/kapman/kapmanui.rc +share/apps/kapman/themes/invisible.desktop +share/apps/kapman/themes/invisible.svgz +share/apps/kapman/themes/invisible_preview.png +share/apps/kapman/themes/matches.desktop +share/apps/kapman/themes/matches.svgz +share/apps/kapman/themes/matches_preview.png +share/apps/kapman/themes/mountain.copyright +share/apps/kapman/themes/mountain.desktop +share/apps/kapman/themes/mountain.svgz +share/apps/kapman/themes/mountain_preview.png +share/apps/kapman/themes/retro.desktop +share/apps/kapman/themes/retro.svgz +share/apps/kapman/themes/retro_preview.png share/apps/katomic/katomicui.rc share/apps/katomic/levels/level_1 share/apps/katomic/levels/level_10 @@ -608,6 +651,8 @@ share/apps/kblackbox/kblackboxui.rc share/apps/kblackbox/pics/kblackbox.svgz share/apps/kblocks/kblocksui.rc share/apps/kblocks/themes/default.desktop +share/apps/kblocks/themes/default_block_fall.ogg +share/apps/kblocks/themes/default_block_move.ogg share/apps/kblocks/themes/default_preview.png share/apps/kblocks/themes/default_theme.svg share/apps/kbounce/kbounceui.rc @@ -623,16 +668,24 @@ share/apps/kbounce/themes/default_theme.svgz share/apps/kbounce/themes/geometry.desktop share/apps/kbounce/themes/geometry.png share/apps/kbounce/themes/kbounce.svg +share/apps/kbounce/themes/oxygen.desktop +share/apps/kbounce/themes/oxygen.png +share/apps/kbounce/themes/oxygen.svgz share/apps/kbreakout/levelsets/default.levelset +share/apps/kbreakout/themes/IceWorld.desktop +share/apps/kbreakout/themes/IceWorld.svgz +share/apps/kbreakout/themes/IceWorld_preview.png share/apps/kbreakout/themes/crystal.desktop share/apps/kbreakout/themes/crystal.svgz share/apps/kbreakout/themes/crystal_preview.png share/apps/kbreakout/themes/default.desktop share/apps/kbreakout/themes/default.svgz -share/apps/kbreakout/themes/default_preview.png share/apps/kbreakout/themes/simple.desktop share/apps/kbreakout/themes/simple.svgz share/apps/kbreakout/themes/simple_preview.png +share/apps/kbreakout/themes/web20.desktop +share/apps/kbreakout/themes/web20.svgz +share/apps/kbreakout/themes/web20_preview.png share/apps/kconf_update/kpat_update_cardwidth.upd share/apps/kdegames/pics/star.png share/apps/kdiamond/kdiamond.kcfg @@ -654,6 +707,7 @@ share/apps/kfourinline/grafix/yellow_reflection.desktop share/apps/kfourinline/grafix/yellow_reflection.rc share/apps/kfourinline/kfourinlineui.rc share/apps/kgoldrunner/kgoldrunnerui.rc +share/apps/kgoldrunner/system/game_cnt.txt share/apps/kgoldrunner/system/game_ende.txt share/apps/kgoldrunner/system/game_kgr.txt share/apps/kgoldrunner/system/game_plws.txt @@ -673,9 +727,13 @@ share/apps/kgoldrunner/themes/black-on-white.desktop share/apps/kgoldrunner/themes/default.desktop share/apps/kgoldrunner/themes/default/actors.svg share/apps/kgoldrunner/themes/default/climb.wav +share/apps/kgoldrunner/themes/default/completed.wav +share/apps/kgoldrunner/themes/default/death.wav share/apps/kgoldrunner/themes/default/dig.wav share/apps/kgoldrunner/themes/default/falling.wav +share/apps/kgoldrunner/themes/default/gameover.wav share/apps/kgoldrunner/themes/default/gold.wav +share/apps/kgoldrunner/themes/default/ladder.wav share/apps/kgoldrunner/themes/default/set.svg share/apps/kgoldrunner/themes/default/step.wav share/apps/kgoldrunner/themes/egypt.desktop @@ -690,6 +748,19 @@ share/apps/kgoldrunner/themes/nostalgia/actors.svg share/apps/kgoldrunner/themes/nostalgia/blue-actors.svg share/apps/kgoldrunner/themes/nostalgia/blue-set.svg share/apps/kgoldrunner/themes/nostalgia/set.svg +share/apps/killbots/killbotsui.rc +share/apps/killbots/rulesets/classic.desktop +share/apps/killbots/rulesets/default.desktop +share/apps/killbots/rulesets/easy.desktop +share/apps/killbots/themes/classic.desktop +share/apps/killbots/themes/classic.png +share/apps/killbots/themes/classic.svg +share/apps/killbots/themes/default.desktop +share/apps/killbots/themes/default.png +share/apps/killbots/themes/default.svg +share/apps/killbots/themes/mountainadventure.desktop +share/apps/killbots/themes/mountainadventure.png +share/apps/killbots/themes/mountainadventure.svg share/apps/kiriki/images/dice-1.png share/apps/kiriki/images/dice-2.png share/apps/kiriki/images/dice-3.png @@ -803,7 +874,20 @@ share/apps/kollision/sounds/you_lose.ogg share/apps/konquest/konquestui.rc share/apps/konquest/pics/default_theme.svgz share/apps/konquest/pics/konquest-splash.png -share/apps/kpat/backgrounds/background.svg +share/apps/kpat/background.svg +share/apps/kpat/demo_bubble.svg +share/apps/kpat/demos/demo_1.png +share/apps/kpat/demos/demo_10.png +share/apps/kpat/demos/demo_11.png +share/apps/kpat/demos/demo_12.png +share/apps/kpat/demos/demo_17.png +share/apps/kpat/demos/demo_18.png +share/apps/kpat/demos/demo_2.png +share/apps/kpat/demos/demo_3.png +share/apps/kpat/demos/demo_5.png +share/apps/kpat/demos/demo_7.png +share/apps/kpat/demos/demo_8.png +share/apps/kpat/demos/demo_9.png share/apps/kpat/kpatui.rc share/apps/kpat/pile.svg share/apps/kpat/won.svg @@ -816,6 +900,7 @@ share/apps/ksame/ksameui.rc share/apps/ksame/pics/default_theme.svgz share/apps/ksame/pics/old_theme.svgz share/apps/kshisen/kshisenui.rc +share/apps/ksirk/jabber.png share/apps/ksirk/ksirkui.rc share/apps/ksirk/skins/default/Data/world.desktop share/apps/ksirk/skins/default/Images/2DownArrow.png @@ -854,42 +939,9 @@ share/apps/ksirk/skins/default/Sounds/cannon.wav share/apps/ksirk/skins/default/Sounds/crash.wav share/apps/ksirk/skins/default/Sounds/roll.wav share/apps/ksirk/skins/skinsdir -share/apps/ksirk/skins/static/Data/world.desktop -share/apps/ksirk/skins/static/Images/2DownArrow.png -share/apps/ksirk/skins/static/Images/2UpArrow.png -share/apps/ksirk/skins/static/Images/arena.svg -share/apps/ksirk/skins/static/Images/attackAuto.png -share/apps/ksirk/skins/static/Images/attackOne.png -share/apps/ksirk/skins/static/Images/attackThree.png -share/apps/ksirk/skins/static/Images/attackTwo.png -share/apps/ksirk/skins/static/Images/cancel.png -share/apps/ksirk/skins/static/Images/defendOne.png -share/apps/ksirk/skins/static/Images/defendTwo.png -share/apps/ksirk/skins/static/Images/downArrow.png -share/apps/ksirk/skins/static/Images/loader.gif -share/apps/ksirk/skins/static/Images/logoLeft.png -share/apps/ksirk/skins/static/Images/logoRight.png -share/apps/ksirk/skins/static/Images/map-mask.png -share/apps/ksirk/skins/static/Images/moveArmies.png -share/apps/ksirk/skins/static/Images/moveBackFive.png -share/apps/ksirk/skins/static/Images/moveBackOne.png -share/apps/ksirk/skins/static/Images/moveBackTen.png -share/apps/ksirk/skins/static/Images/moveFinish.png -share/apps/ksirk/skins/static/Images/moveFive.png -share/apps/ksirk/skins/static/Images/moveOne.png -share/apps/ksirk/skins/static/Images/moveTen.png -share/apps/ksirk/skins/static/Images/newNetGame.png -share/apps/ksirk/skins/static/Images/nextPlayer.png -share/apps/ksirk/skins/static/Images/pool.svg -share/apps/ksirk/skins/static/Images/recycling.png -share/apps/ksirk/skins/static/Images/recyclingFinished.png -share/apps/ksirk/skins/static/Images/snapshot.jpg -share/apps/ksirk/skins/static/Images/soldierKneeling.png -share/apps/ksirk/skins/static/Images/stopAttackAuto.png -share/apps/ksirk/skins/static/Images/upArrow.png -share/apps/ksirk/skins/static/Sounds/cannon.wav -share/apps/ksirk/skins/static/Sounds/crash.wav -share/apps/ksirk/skins/static/Sounds/roll.wav +share/apps/ksirkskineditor/cross.png +share/apps/ksirkskineditor/ksirkskineditorui.rc +share/apps/ksirkskineditor/target.png share/apps/kspaceduel/icons/oxygen/16x16/actions/spnewgame.png share/apps/kspaceduel/icons/oxygen/16x16/actions/spnewround.png share/apps/kspaceduel/icons/oxygen/16x16/actions/sppausegame.png @@ -1020,6 +1072,9 @@ share/apps/ktuberling/pics/pizzeria.theme share/apps/ktuberling/pics/potato-game.desktop share/apps/ktuberling/pics/potato-game.svg share/apps/ktuberling/pics/potato-game.theme +share/apps/ktuberling/pics/robin-tux.desktop +share/apps/ktuberling/pics/robin-tux.svgz +share/apps/ktuberling/pics/robin-tux.theme share/apps/ktuberling/pics/train_valley.desktop share/apps/ktuberling/pics/train_valley.svgz share/apps/ktuberling/pics/train_valley.theme @@ -1128,12 +1183,15 @@ share/apps/lskat/grafix/default.desktop share/apps/lskat/grafix/default.rc share/apps/lskat/grafix/default.svg share/apps/lskat/lskatui.rc +share/config.kcfg/bomber.kcfg share/config.kcfg/kblocks.kcfg +share/config.kcfg/killbots.kcfg share/config.kcfg/kjumpingcube.kcfg share/config.kcfg/klines.kcfg share/config.kcfg/kmahjongg.kcfg share/config.kcfg/kshisen.kcfg share/config.kcfg/ksirksettings.kcfg +share/config.kcfg/ksirkskineditorsettings.kcfg share/config.kcfg/kspaceduel.kcfg share/config.kcfg/ksquares.kcfg share/config.kcfg/kwin4.kcfg @@ -1141,10 +1199,19 @@ share/config/kblocks.knsrc share/config/kdiamond.knsrc share/config/kgoldrunner.knsrc share/config/kmines.knsrc +share/config/ksirk.knsrc share/config/ksudokurc +share/doc/HTML/en/bomber/common +share/doc/HTML/en/bomber/index.cache.bz2 +share/doc/HTML/en/bomber/index.docbook share/doc/HTML/en/bovo/common share/doc/HTML/en/bovo/index.cache.bz2 share/doc/HTML/en/bovo/index.docbook +share/doc/HTML/en/kapman/common +share/doc/HTML/en/kapman/config.png +share/doc/HTML/en/kapman/index.cache.bz2 +share/doc/HTML/en/kapman/index.docbook +share/doc/HTML/en/kapman/kapman.png share/doc/HTML/en/katomic/common share/doc/HTML/en/katomic/index.cache.bz2 share/doc/HTML/en/katomic/index.docbook @@ -1183,6 +1250,16 @@ share/doc/HTML/en/kgoldrunner/index.cache.bz2 share/doc/HTML/en/kgoldrunner/index.docbook share/doc/HTML/en/kgoldrunner/select.png share/doc/HTML/en/kgoldrunner/tute008.png +share/doc/HTML/en/killbots/common +share/doc/HTML/en/killbots/enemy.png +share/doc/HTML/en/killbots/fastenemy.png +share/doc/HTML/en/killbots/grid.png +share/doc/HTML/en/killbots/hero.png +share/doc/HTML/en/killbots/index.cache.bz2 +share/doc/HTML/en/killbots/index.docbook +share/doc/HTML/en/killbots/junkheap.png +share/doc/HTML/en/killbots/status.png +share/doc/HTML/en/killbots/waitoutround.png share/doc/HTML/en/kiriki/common share/doc/HTML/en/kiriki/index.cache.bz2 share/doc/HTML/en/kiriki/index.docbook @@ -1249,6 +1326,7 @@ share/doc/HTML/en/ksirk/8020.png share/doc/HTML/en/ksirk/SoldatAGenoux1.png share/doc/HTML/en/ksirk/afterDistribution.png share/doc/HTML/en/ksirk/aide.png +share/doc/HTML/en/ksirk/alaska.png share/doc/HTML/en/ksirk/annuler.png share/doc/HTML/en/ksirk/attackOne.png share/doc/HTML/en/ksirk/attackThree.png @@ -1256,6 +1334,7 @@ share/doc/HTML/en/ksirk/attackTwo.png share/doc/HTML/en/ksirk/attackmenu.png share/doc/HTML/en/ksirk/autoattack.png share/doc/HTML/en/ksirk/belgium.png +share/doc/HTML/en/ksirk/bluedices.png share/doc/HTML/en/ksirk/cannon.png share/doc/HTML/en/ksirk/cavalry.png share/doc/HTML/en/ksirk/common @@ -1284,6 +1363,7 @@ share/doc/HTML/en/ksirk/logoLeft.png share/doc/HTML/en/ksirk/logoRight.png share/doc/HTML/en/ksirk/map-mask.png share/doc/HTML/en/ksirk/map.png +share/doc/HTML/en/ksirk/mark1.png share/doc/HTML/en/ksirk/messagesent.png share/doc/HTML/en/ksirk/moveArmies.png share/doc/HTML/en/ksirk/moveBackFive.png @@ -1297,6 +1377,7 @@ share/doc/HTML/en/ksirk/movement.png share/doc/HTML/en/ksirk/newGame.png share/doc/HTML/en/ksirk/newNetGame.png share/doc/HTML/en/ksirk/newgamedialog.png +share/doc/HTML/en/ksirk/nextPlayer.png share/doc/HTML/en/ksirk/nouveauJeu.png share/doc/HTML/en/ksirk/numnetplayersdialog.png share/doc/HTML/en/ksirk/ouvrirJeu.png @@ -1306,6 +1387,9 @@ share/doc/HTML/en/ksirk/playersetupdialog.png share/doc/HTML/en/ksirk/preferences.png share/doc/HTML/en/ksirk/quit.png share/doc/HTML/en/ksirk/quitter.png +share/doc/HTML/en/ksirk/recycling.png +share/doc/HTML/en/ksirk/recyclingFinished.png +share/doc/HTML/en/ksirk/reddices.png share/doc/HTML/en/ksirk/saveGame.png share/doc/HTML/en/ksirk/shownumberofarmies.png share/doc/HTML/en/ksirk/uk.png @@ -1344,6 +1428,8 @@ share/doc/HTML/en/lskat/common share/doc/HTML/en/lskat/index.cache.bz2 share/doc/HTML/en/lskat/index.docbook share/doc/HTML/en/lskat/lskat_screen_01.png +share/icons/hicolor/128x128/apps/bomber.png +share/icons/hicolor/128x128/apps/kapman.png share/icons/hicolor/128x128/apps/katomic.png share/icons/hicolor/128x128/apps/kbattleship.png share/icons/hicolor/128x128/apps/kblackbox.png @@ -1353,6 +1439,7 @@ share/icons/hicolor/128x128/apps/kbreakout.png share/icons/hicolor/128x128/apps/kdiamond.png share/icons/hicolor/128x128/apps/kfourinline.png share/icons/hicolor/128x128/apps/kgoldrunner.png +share/icons/hicolor/128x128/apps/killbots.png share/icons/hicolor/128x128/apps/kiriki.png share/icons/hicolor/128x128/apps/kjumpingcube.png share/icons/hicolor/128x128/apps/klines.png @@ -1366,12 +1453,14 @@ share/icons/hicolor/128x128/apps/kpat.png share/icons/hicolor/128x128/apps/kreversi.png share/icons/hicolor/128x128/apps/ksame.png share/icons/hicolor/128x128/apps/kshisen.png +share/icons/hicolor/128x128/apps/ksirk.png share/icons/hicolor/128x128/apps/kspaceduel.png share/icons/hicolor/128x128/apps/ksquares.png share/icons/hicolor/128x128/apps/ksudoku.png share/icons/hicolor/128x128/apps/ktuberling.png share/icons/hicolor/128x128/apps/kubrick.png share/icons/hicolor/128x128/apps/lskat.png +share/icons/hicolor/16x16/apps/kapman.png share/icons/hicolor/16x16/apps/katomic.png share/icons/hicolor/16x16/apps/kbattleship.png share/icons/hicolor/16x16/apps/kblackbox.png @@ -1381,6 +1470,7 @@ share/icons/hicolor/16x16/apps/kbreakout.png share/icons/hicolor/16x16/apps/kdiamond.png share/icons/hicolor/16x16/apps/kfourinline.png share/icons/hicolor/16x16/apps/kgoldrunner.png +share/icons/hicolor/16x16/apps/killbots.png share/icons/hicolor/16x16/apps/kiriki.png share/icons/hicolor/16x16/apps/kjumpingcube.png share/icons/hicolor/16x16/apps/klines.png @@ -1401,6 +1491,7 @@ share/icons/hicolor/16x16/apps/ksudoku.png share/icons/hicolor/16x16/apps/ktuberling.png share/icons/hicolor/16x16/apps/kubrick.png share/icons/hicolor/16x16/apps/lskat.png +share/icons/hicolor/22x22/apps/kapman.png share/icons/hicolor/22x22/apps/katomic.png share/icons/hicolor/22x22/apps/kbattleship.png share/icons/hicolor/22x22/apps/kblackbox.png @@ -1410,6 +1501,7 @@ share/icons/hicolor/22x22/apps/kbreakout.png share/icons/hicolor/22x22/apps/kdiamond.png share/icons/hicolor/22x22/apps/kfourinline.png share/icons/hicolor/22x22/apps/kgoldrunner.png +share/icons/hicolor/22x22/apps/killbots.png share/icons/hicolor/22x22/apps/kiriki.png share/icons/hicolor/22x22/apps/kjumpingcube.png share/icons/hicolor/22x22/apps/klines.png @@ -1423,11 +1515,14 @@ share/icons/hicolor/22x22/apps/kpat.png share/icons/hicolor/22x22/apps/kreversi.png share/icons/hicolor/22x22/apps/ksame.png share/icons/hicolor/22x22/apps/kshisen.png +share/icons/hicolor/22x22/apps/ksirk.png share/icons/hicolor/22x22/apps/kspaceduel.png share/icons/hicolor/22x22/apps/ksquares.png share/icons/hicolor/22x22/apps/ktuberling.png share/icons/hicolor/22x22/apps/kubrick.png share/icons/hicolor/22x22/apps/lskat.png +share/icons/hicolor/32x32/apps/bomber.png +share/icons/hicolor/32x32/apps/kapman.png share/icons/hicolor/32x32/apps/katomic.png share/icons/hicolor/32x32/apps/kbattleship.png share/icons/hicolor/32x32/apps/kblackbox.png @@ -1437,6 +1532,7 @@ share/icons/hicolor/32x32/apps/kbreakout.png share/icons/hicolor/32x32/apps/kdiamond.png share/icons/hicolor/32x32/apps/kfourinline.png share/icons/hicolor/32x32/apps/kgoldrunner.png +share/icons/hicolor/32x32/apps/killbots.png share/icons/hicolor/32x32/apps/kiriki.png share/icons/hicolor/32x32/apps/kjumpingcube.png share/icons/hicolor/32x32/apps/klines.png @@ -1457,6 +1553,8 @@ share/icons/hicolor/32x32/apps/ksudoku.png share/icons/hicolor/32x32/apps/ktuberling.png share/icons/hicolor/32x32/apps/kubrick.png share/icons/hicolor/32x32/apps/lskat.png +share/icons/hicolor/48x48/apps/bomber.png +share/icons/hicolor/48x48/apps/kapman.png share/icons/hicolor/48x48/apps/katomic.png share/icons/hicolor/48x48/apps/kbattleship.png share/icons/hicolor/48x48/apps/kblackbox.png @@ -1466,6 +1564,7 @@ share/icons/hicolor/48x48/apps/kbreakout.png share/icons/hicolor/48x48/apps/kdiamond.png share/icons/hicolor/48x48/apps/kfourinline.png share/icons/hicolor/48x48/apps/kgoldrunner.png +share/icons/hicolor/48x48/apps/killbots.png share/icons/hicolor/48x48/apps/kiriki.png share/icons/hicolor/48x48/apps/kjumpingcube.png share/icons/hicolor/48x48/apps/klines.png @@ -1485,6 +1584,8 @@ share/icons/hicolor/48x48/apps/ksquares.png share/icons/hicolor/48x48/apps/ktuberling.png share/icons/hicolor/48x48/apps/kubrick.png share/icons/hicolor/48x48/apps/lskat.png +share/icons/hicolor/64x64/apps/bomber.png +share/icons/hicolor/64x64/apps/kapman.png share/icons/hicolor/64x64/apps/katomic.png share/icons/hicolor/64x64/apps/kbattleship.png share/icons/hicolor/64x64/apps/kblackbox.png @@ -1494,6 +1595,7 @@ share/icons/hicolor/64x64/apps/kbreakout.png share/icons/hicolor/64x64/apps/kdiamond.png share/icons/hicolor/64x64/apps/kfourinline.png share/icons/hicolor/64x64/apps/kgoldrunner.png +share/icons/hicolor/64x64/apps/killbots.png share/icons/hicolor/64x64/apps/kiriki.png share/icons/hicolor/64x64/apps/kjumpingcube.png share/icons/hicolor/64x64/apps/klines.png @@ -1507,12 +1609,16 @@ share/icons/hicolor/64x64/apps/kpat.png share/icons/hicolor/64x64/apps/kreversi.png share/icons/hicolor/64x64/apps/ksame.png share/icons/hicolor/64x64/apps/kshisen.png +share/icons/hicolor/64x64/apps/ksirk.png share/icons/hicolor/64x64/apps/kspaceduel.png share/icons/hicolor/64x64/apps/ksquares.png share/icons/hicolor/64x64/apps/ktuberling.png share/icons/hicolor/64x64/apps/kubrick.png share/icons/hicolor/64x64/apps/lskat.png +share/icons/hicolor/scalable/apps/bomber.svgz +share/icons/hicolor/scalable/apps/kapman.svgz share/icons/hicolor/scalable/apps/kdiamond.svgz +share/icons/hicolor/scalable/apps/kmahjongg.svgz share/icons/hicolor/scalable/apps/knetwalk.svgz share/icons/locolor/16x16/apps/ksirk.png share/icons/locolor/32x32/apps/ksirk.png @@ -1533,41 +1639,22 @@ share/icons/oxygen/64x64/apps/kollision.png share/icons/oxygen/scalable/actions/lastmoves.svgz share/icons/oxygen/scalable/actions/legalmoves.svgz share/icons/oxygen/scalable/apps/kollision.svgz -@dirrmtry share/icons/oxygen/scalable/apps -@dirrmtry share/icons/oxygen/scalable/actions -@dirrmtry share/icons/oxygen/scalable -@dirrmtry share/icons/oxygen/64x64/apps -@dirrmtry share/icons/oxygen/64x64 -@dirrmtry share/icons/oxygen/48x48/apps -@dirrmtry share/icons/oxygen/48x48/actions -@dirrmtry share/icons/oxygen/48x48 -@dirrmtry share/icons/oxygen/32x32/apps -@dirrmtry share/icons/oxygen/32x32/actions -@dirrmtry share/icons/oxygen/32x32 -@dirrmtry share/icons/oxygen/22x22/apps -@dirrmtry share/icons/oxygen/22x22/actions -@dirrmtry share/icons/oxygen/22x22 -@dirrmtry share/icons/oxygen/16x16/apps -@dirrmtry share/icons/oxygen/16x16/actions -@dirrmtry share/icons/oxygen/16x16 -@dirrmtry share/icons/oxygen/128x128/apps -@dirrmtry share/icons/oxygen/128x128 -@dirrmtry share/icons/oxygen -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor +share/sounds/KDiamond-Stone-Drop.ogg +share/sounds/KDiamond-Stone-Swap.ogg +share/sounds/KDiamond-Stone-Touch.ogg +share/sounds/kapman/bonus.ogg +share/sounds/kapman/energizer.ogg +share/sounds/kapman/gameover.ogg +share/sounds/kapman/ghost.ogg +share/sounds/kapman/levelup.ogg +share/sounds/kapman/life.ogg +share/sounds/kapman/pill.ogg +@dirrm share/sounds/kapman +@dirrm share/icons/locolor/32x32/apps +@dirrm share/icons/locolor/32x32 +@dirrm share/icons/locolor/16x16/apps +@dirrm share/icons/locolor/16x16 +@dirrm share/icons/locolor @dirrm share/doc/HTML/en/lskat @dirrm share/doc/HTML/en/kubrick @dirrm share/doc/HTML/en/ktuberling @@ -1588,6 +1675,7 @@ share/icons/oxygen/scalable/apps/kollision.svgz @dirrm share/doc/HTML/en/klines @dirrm share/doc/HTML/en/kjumpingcube @dirrm share/doc/HTML/en/kiriki +@dirrm share/doc/HTML/en/killbots @dirrm share/doc/HTML/en/kgoldrunner @dirrm share/doc/HTML/en/kfourinline @dirrm share/doc/HTML/en/kdiamond @@ -1597,7 +1685,9 @@ share/icons/oxygen/scalable/apps/kollision.svgz @dirrm share/doc/HTML/en/kblackbox @dirrm share/doc/HTML/en/kbattleship @dirrm share/doc/HTML/en/katomic +@dirrm share/doc/HTML/en/kapman @dirrm share/doc/HTML/en/bovo +@dirrm share/doc/HTML/en/bomber @dirrm share/apps/lskat/grafix @dirrm share/apps/lskat @dirrm share/apps/kubrick/themes @@ -1634,10 +1724,7 @@ share/icons/oxygen/scalable/apps/kollision.svgz @dirrm share/apps/kspaceduel/icons/oxygen @dirrm share/apps/kspaceduel/icons @dirrm share/apps/kspaceduel -@dirrm share/apps/ksirk/skins/static/Sounds -@dirrm share/apps/ksirk/skins/static/Images -@dirrm share/apps/ksirk/skins/static/Data -@dirrm share/apps/ksirk/skins/static +@dirrm share/apps/ksirkskineditor @dirrm share/apps/ksirk/skins/default/Sounds @dirrm share/apps/ksirk/skins/default/Images @dirrm share/apps/ksirk/skins/default/Data @@ -1650,7 +1737,7 @@ share/icons/oxygen/scalable/apps/kollision.svgz @dirrm share/apps/kreversi/sounds @dirrm share/apps/kreversi/pics @dirrm share/apps/kreversi -@dirrm share/apps/kpat/backgrounds +@dirrm share/apps/kpat/demos @dirrm share/apps/kpat @dirrm share/apps/konquest/pics @dirrm share/apps/konquest @@ -1677,6 +1764,9 @@ share/icons/oxygen/scalable/apps/kollision.svgz @dirrm share/apps/kjumpingcube @dirrm share/apps/kiriki/images @dirrm share/apps/kiriki +@dirrm share/apps/killbots/themes +@dirrm share/apps/killbots/rulesets +@dirrm share/apps/killbots @dirrm share/apps/kgoldrunner/themes/nostalgia @dirrm share/apps/kgoldrunner/themes/kgr_geek @dirrm share/apps/kgoldrunner/themes/egypt @@ -1707,11 +1797,14 @@ share/icons/oxygen/scalable/apps/kollision.svgz @dirrm share/apps/katomic/pics @dirrm share/apps/katomic/levels @dirrm share/apps/katomic +@dirrm share/apps/kapman/themes +@dirrm share/apps/kapman @dirrm share/apps/carddecks/svg-tigullio-international @dirrm share/apps/carddecks/svg-oxygen-white @dirrm share/apps/carddecks/svg-oxygen @dirrm share/apps/carddecks/svg-nicu-white @dirrm share/apps/carddecks/svg-nicu-ornamental +@dirrm share/apps/carddecks/svg-jolly-royal @dirrm share/apps/carddecks/svg-gm-paris @dirrm share/apps/carddecks/svg-dondorf @dirrm share/apps/carddecks/decks @@ -1727,8 +1820,8 @@ share/icons/oxygen/scalable/apps/kollision.svgz @dirrm share/apps/bovo/themes/gomoku @dirrm share/apps/bovo/themes @dirrm share/apps/bovo -@dirrmtry share/applications/kde4 -@dirrmtry share/app +@dirrm share/apps/bomber/themes +@dirrm share/apps/bomber @dirrm include/kggznet @dirrm include/kggzmod @dirrm include/kggzgames @@ -1736,4 +1829,3 @@ share/icons/oxygen/scalable/apps/kollision.svgz @dirrm include/highscore @dirrm include/digits @dirrm include/KDE/KGame -@dirrmtry include/KDE/ diff --git a/german/kde4-l10n/Makefile b/german/kde4-l10n/Makefile index fb341e9d3c92..ba3f457ff366 100644 --- a/german/kde4-l10n/Makefile +++ b/german/kde4-l10n/Makefile @@ -14,6 +14,9 @@ COMMENT= German messages and documentation for KDE4 KDE4_L10N= de +MANLANG= ${KDE4_L10N} +.include <${.CURDIR}/Makefile.man> + post-extract: ${MKDIR} ${WRKSRC}/build diff --git a/german/kde4-l10n/distinfo b/german/kde4-l10n/distinfo index ce24a513af86..18a88896f61c 100644 --- a/german/kde4-l10n/distinfo +++ b/german/kde4-l10n/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-de-4.1.4.tar.bz2) = bf5db9e7c2708e4ecd01345137009cab -SHA256 (KDE/kde-l10n/kde-l10n-de-4.1.4.tar.bz2) = 9e99134ade8ac780e468e9fa049c5b464ddeb6ec81f5bb8a68624849926b2879 -SIZE (KDE/kde-l10n/kde-l10n-de-4.1.4.tar.bz2) = 19867556 +MD5 (KDE/kde-l10n/kde-l10n-de-4.2.0.tar.bz2) = da8184a7380795790d498c7d5e4a6b62 +SHA256 (KDE/kde-l10n/kde-l10n-de-4.2.0.tar.bz2) = f2ccd1c4c1fb2dbca280bd9dcda6d42e08dd072b3c5935735729af4588d57666 +SIZE (KDE/kde-l10n/kde-l10n-de-4.2.0.tar.bz2) = 18178410 diff --git a/german/kde4-l10n/pkg-plist b/german/kde4-l10n/pkg-plist index a60391874347..55de4463f606 100644 --- a/german/kde4-l10n/pkg-plist +++ b/german/kde4-l10n/pkg-plist @@ -132,45 +132,11 @@ share/apps/ktuberling/sounds/de/spectacles.ogg share/apps/ktuberling/sounds/de/stick.ogg share/apps/ktuberling/sounds/de/sunglasses.ogg share/apps/ktuberling/sounds/de/tie.ogg -share/apps/ktuberling/sounds/de/tv_accident.ogg -share/apps/ktuberling/sounds/de/tv_ball.ogg -share/apps/ktuberling/sounds/de/tv_barrier.ogg share/apps/ktuberling/sounds/de/tv_bicycle.ogg -share/apps/ktuberling/sounds/de/tv_breakdown_lorry.ogg share/apps/ktuberling/sounds/de/tv_car.ogg -share/apps/ktuberling/sounds/de/tv_caravan.ogg share/apps/ktuberling/sounds/de/tv_cyclist.ogg -share/apps/ktuberling/sounds/de/tv_elephant.ogg -share/apps/ktuberling/sounds/de/tv_excavator.ogg -share/apps/ktuberling/sounds/de/tv_fence.ogg -share/apps/ktuberling/sounds/de/tv_fire.ogg -share/apps/ktuberling/sounds/de/tv_fireengine.ogg -share/apps/ktuberling/sounds/de/tv_fireman.ogg -share/apps/ktuberling/sounds/de/tv_fisherman.ogg -share/apps/ktuberling/sounds/de/tv_giraffe.ogg -share/apps/ktuberling/sounds/de/tv_guitar.ogg -share/apps/ktuberling/sounds/de/tv_guitarist.ogg -share/apps/ktuberling/sounds/de/tv_house.ogg -share/apps/ktuberling/sounds/de/tv_ladder.ogg -share/apps/ktuberling/sounds/de/tv_lion.ogg -share/apps/ktuberling/sounds/de/tv_lorry.ogg -share/apps/ktuberling/sounds/de/tv_lorry_tractor.ogg -share/apps/ktuberling/sounds/de/tv_man.ogg -share/apps/ktuberling/sounds/de/tv_mechanic.ogg -share/apps/ktuberling/sounds/de/tv_monkey.ogg -share/apps/ktuberling/sounds/de/tv_path.ogg -share/apps/ktuberling/sounds/de/tv_rock.ogg -share/apps/ktuberling/sounds/de/tv_school.ogg -share/apps/ktuberling/sounds/de/tv_shop.ogg -share/apps/ktuberling/sounds/de/tv_smoke.ogg -share/apps/ktuberling/sounds/de/tv_tipper.ogg -share/apps/ktuberling/sounds/de/tv_trailer.ogg share/apps/ktuberling/sounds/de/tv_train.ogg share/apps/ktuberling/sounds/de/tv_tree.ogg -share/apps/ktuberling/sounds/de/tv_tunnel.ogg -share/apps/ktuberling/sounds/de/tv_volley_net.ogg -share/apps/ktuberling/sounds/de/tv_wagon.ogg -share/apps/ktuberling/sounds/de/tv_woman.ogg share/apps/ktuberling/sounds/de/umbrella.ogg share/apps/kvtml/de/animals.kvtml share/apps/kvtml/de/clothing.kvtml @@ -190,6 +156,18 @@ share/apps/kvtml/de/sports.kvtml share/apps/kvtml/de/transportation.kvtml share/apps/kvtml/de/vegetables.kvtml share/apps/kvtml/de/worldcapitals.kvtml +share/apps/step/objinfo/l10n/de/Box.html +share/apps/step/objinfo/l10n/de/ChargedParticle.html +share/apps/step/objinfo/l10n/de/Disk.html +share/apps/step/objinfo/l10n/de/Gas.html +share/apps/step/objinfo/l10n/de/GasLJForce.html +share/apps/step/objinfo/l10n/de/GasParticle.html +share/apps/step/objinfo/l10n/de/Meter.html +share/apps/step/objinfo/l10n/de/Note.html +share/apps/step/objinfo/l10n/de/Particle.html +share/apps/step/objinfo/l10n/de/Polygon.html +share/apps/step/objinfo/l10n/de/Spring.html +share/apps/step/objinfo/l10n/de/World.html share/doc/HTML/de/akregator/add-feed.png share/doc/HTML/de/akregator/add-feed2.png share/doc/HTML/de/akregator/add-folder.png @@ -242,7 +220,6 @@ share/doc/HTML/de/common/lgpl-translated.html share/doc/HTML/de/dolphin/bookmarkbutton.png share/doc/HTML/de/dolphin/bookmarksidebar.png share/doc/HTML/de/dolphin/breadcrumb.png -share/doc/HTML/de/dolphin/browsebutton.png share/doc/HTML/de/dolphin/common share/doc/HTML/de/dolphin/configurationwindow.png share/doc/HTML/de/dolphin/configurationwindow2.png @@ -260,6 +237,8 @@ share/doc/HTML/de/dragonplayer/index.cache.bz2 share/doc/HTML/de/dragonplayer/index.docbook share/doc/HTML/de/gwenview/browse_mode.png share/doc/HTML/de/gwenview/common +share/doc/HTML/de/gwenview/dock_grip.png +share/doc/HTML/de/gwenview/external_tools_dialog.png share/doc/HTML/de/gwenview/index.cache.bz2 share/doc/HTML/de/gwenview/index.docbook share/doc/HTML/de/gwenview/interface.docbook @@ -289,31 +268,26 @@ share/doc/HTML/de/kalzium/gradient.png share/doc/HTML/de/kalzium/index.cache.bz2 share/doc/HTML/de/kalzium/index.docbook share/doc/HTML/de/kalzium/infodialog_bohr.png -share/doc/HTML/de/kalzium/infodialog_data_overview.png -share/doc/HTML/de/kalzium/infodialog_isotopes.png +share/doc/HTML/de/kalzium/infodialog_chemicaldata.png +share/doc/HTML/de/kalzium/infodialog_energies.png share/doc/HTML/de/kalzium/infodialog_misc.png share/doc/HTML/de/kalzium/infodialog_overview.png +share/doc/HTML/de/kalzium/infodialog_picture.png share/doc/HTML/de/kalzium/infodialog_spectrum.png share/doc/HTML/de/kalzium/man-kalzium.1.docbook +share/doc/HTML/de/kalzium/plottingdialog.png share/doc/HTML/de/kalzium/quick-1.png -share/doc/HTML/de/kalzium/quick-2.png -share/doc/HTML/de/kalzium/quick-3.png -share/doc/HTML/de/kalzium/quick-4.png share/doc/HTML/de/kalzium/screenshot1.png share/doc/HTML/de/kalzium/screenshot2.png -share/doc/HTML/de/kalzium/screenshot5.png -share/doc/HTML/de/kalzium/screenshot6.png share/doc/HTML/de/kalzium/screenshot7.png share/doc/HTML/de/kalzium/screenshoteqsolver.png -share/doc/HTML/de/kalzium/screenshotnuclidboard.png share/doc/HTML/de/kalzium/settings1.png share/doc/HTML/de/kalzium/settings2.png share/doc/HTML/de/kalzium/settings3.png share/doc/HTML/de/kalzium/sidebar1.png share/doc/HTML/de/kalzium/sidebar2.png -share/doc/HTML/de/kamera/common -share/doc/HTML/de/kamera/index.cache.bz2 -share/doc/HTML/de/kamera/index.docbook +share/doc/HTML/de/kalzium/sidebar3.png +share/doc/HTML/de/kalzium/timeline.png share/doc/HTML/de/kanagram/answer-highlight.png share/doc/HTML/de/kanagram/common share/doc/HTML/de/kanagram/general-settings.png @@ -327,6 +301,9 @@ share/doc/HTML/de/kanagram/newstuff-settings.png share/doc/HTML/de/kanagram/standard-fonts.png share/doc/HTML/de/kanagram/vocab-editor.png share/doc/HTML/de/kanagram/vocab-settings.png +share/doc/HTML/de/kapman/common +share/doc/HTML/de/kapman/index.cache.bz2 +share/doc/HTML/de/kapman/index.docbook share/doc/HTML/de/kate-plugins/common share/doc/HTML/de/kate-plugins/configure_insertcommand.png share/doc/HTML/de/kate-plugins/filetemplates.docbook @@ -413,6 +390,9 @@ share/doc/HTML/de/kcontrol/bell/index.docbook share/doc/HTML/de/kcontrol/blockdevices/common share/doc/HTML/de/kcontrol/blockdevices/index.cache.bz2 share/doc/HTML/de/kcontrol/blockdevices/index.docbook +share/doc/HTML/de/kcontrol/bookmarks/common +share/doc/HTML/de/kcontrol/bookmarks/index.cache.bz2 +share/doc/HTML/de/kcontrol/bookmarks/index.docbook share/doc/HTML/de/kcontrol/cache/common share/doc/HTML/de/kcontrol/cache/index.cache.bz2 share/doc/HTML/de/kcontrol/cache/index.docbook @@ -467,6 +447,9 @@ share/doc/HTML/de/kcontrol/icons/index.docbook share/doc/HTML/de/kcontrol/joystick/common share/doc/HTML/de/kcontrol/joystick/index.cache.bz2 share/doc/HTML/de/kcontrol/joystick/index.docbook +share/doc/HTML/de/kcontrol/kamera/common +share/doc/HTML/de/kcontrol/kamera/index.cache.bz2 +share/doc/HTML/de/kcontrol/kamera/index.docbook share/doc/HTML/de/kcontrol/kcmaccess/common share/doc/HTML/de/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmaccess/index.docbook @@ -518,12 +501,12 @@ share/doc/HTML/de/kcontrol/knetworkconf/09.png share/doc/HTML/de/kcontrol/knetworkconf/common share/doc/HTML/de/kcontrol/knetworkconf/index.cache.bz2 share/doc/HTML/de/kcontrol/knetworkconf/index.docbook +share/doc/HTML/de/kcontrol/kwincompositing/common +share/doc/HTML/de/kcontrol/kwincompositing/index.cache.bz2 +share/doc/HTML/de/kcontrol/kwincompositing/index.docbook share/doc/HTML/de/kcontrol/kwindecoration/common share/doc/HTML/de/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/de/kcontrol/kwindecoration/index.docbook -share/doc/HTML/de/kcontrol/kxkb/common -share/doc/HTML/de/kcontrol/kxkb/index.cache.bz2 -share/doc/HTML/de/kcontrol/kxkb/index.docbook share/doc/HTML/de/kcontrol/language/common share/doc/HTML/de/kcontrol/language/index.cache.bz2 share/doc/HTML/de/kcontrol/language/index.docbook @@ -590,7 +573,6 @@ share/doc/HTML/de/kdebugdialog/index.docbook share/doc/HTML/de/kdepasswd/common share/doc/HTML/de/kdepasswd/index.cache.bz2 share/doc/HTML/de/kdepasswd/index.docbook -share/doc/HTML/de/kdepasswd/password.png share/doc/HTML/de/kdesu/common share/doc/HTML/de/kdesu/index.cache.bz2 share/doc/HTML/de/kdesu/index.docbook @@ -598,9 +580,6 @@ share/doc/HTML/de/kdesu/man-kdesu.1.docbook share/doc/HTML/de/kdf/common share/doc/HTML/de/kdf/index.cache.bz2 share/doc/HTML/de/kdf/index.docbook -share/doc/HTML/de/kdiamond/common -share/doc/HTML/de/kdiamond/index.cache.bz2 -share/doc/HTML/de/kdiamond/index.docbook share/doc/HTML/de/kdm/common share/doc/HTML/de/kdm/index.cache.bz2 share/doc/HTML/de/kdm/index.docbook @@ -813,6 +792,9 @@ share/doc/HTML/de/kig/test_run_macro.png share/doc/HTML/de/kig/text_label_attaching.png share/doc/HTML/de/kig/text_label_wizard.png share/doc/HTML/de/kig/text_label_wizard__select_property.png +share/doc/HTML/de/killbots/common +share/doc/HTML/de/killbots/index.cache.bz2 +share/doc/HTML/de/killbots/index.docbook share/doc/HTML/de/kinfocenter/devices/common share/doc/HTML/de/kinfocenter/devices/index.cache.bz2 share/doc/HTML/de/kinfocenter/devices/index.docbook @@ -864,47 +846,96 @@ share/doc/HTML/de/kinfocenter/usb/index.docbook share/doc/HTML/de/kinfocenter/xserver/common share/doc/HTML/de/kinfocenter/xserver/index.cache.bz2 share/doc/HTML/de/kinfocenter/xserver/index.docbook -share/doc/HTML/de/kioslave/bzip.docbook -share/doc/HTML/de/kioslave/bzip2.docbook -share/doc/HTML/de/kioslave/cgi.docbook -share/doc/HTML/de/kioslave/common -share/doc/HTML/de/kioslave/data.docbook -share/doc/HTML/de/kioslave/file.docbook -share/doc/HTML/de/kioslave/finger.docbook -share/doc/HTML/de/kioslave/fish.docbook -share/doc/HTML/de/kioslave/floppy.docbook -share/doc/HTML/de/kioslave/ftp.docbook -share/doc/HTML/de/kioslave/gopher.docbook -share/doc/HTML/de/kioslave/gzip.docbook -share/doc/HTML/de/kioslave/help.docbook -share/doc/HTML/de/kioslave/http.docbook -share/doc/HTML/de/kioslave/https.docbook -share/doc/HTML/de/kioslave/imap.docbook -share/doc/HTML/de/kioslave/imaps.docbook -share/doc/HTML/de/kioslave/index.cache.bz2 -share/doc/HTML/de/kioslave/index.docbook -share/doc/HTML/de/kioslave/info.docbook -share/doc/HTML/de/kioslave/lan.docbook -share/doc/HTML/de/kioslave/ldap.docbook -share/doc/HTML/de/kioslave/mac.docbook -share/doc/HTML/de/kioslave/mailto.docbook -share/doc/HTML/de/kioslave/man.docbook -share/doc/HTML/de/kioslave/mrml.docbook -share/doc/HTML/de/kioslave/news.docbook -share/doc/HTML/de/kioslave/nfs.docbook -share/doc/HTML/de/kioslave/nntp.docbook -share/doc/HTML/de/kioslave/pop3.docbook -share/doc/HTML/de/kioslave/pop3s.docbook -share/doc/HTML/de/kioslave/rlan.docbook -share/doc/HTML/de/kioslave/rlogin.docbook -share/doc/HTML/de/kioslave/sftp.docbook -share/doc/HTML/de/kioslave/smb.docbook -share/doc/HTML/de/kioslave/smtp.docbook -share/doc/HTML/de/kioslave/tar.docbook -share/doc/HTML/de/kioslave/telnet.docbook -share/doc/HTML/de/kioslave/thumbnail.docbook -share/doc/HTML/de/kioslave/webdav.docbook -share/doc/HTML/de/kioslave/webdavs.docbook +share/doc/HTML/de/kioslave/audiocd/common +share/doc/HTML/de/kioslave/audiocd/index.cache.bz2 +share/doc/HTML/de/kioslave/audiocd/index.docbook +share/doc/HTML/de/kioslave/bookmarks/common +share/doc/HTML/de/kioslave/bookmarks/index.cache.bz2 +share/doc/HTML/de/kioslave/bookmarks/index.docbook +share/doc/HTML/de/kioslave/bzip2/common +share/doc/HTML/de/kioslave/bzip2/index.cache.bz2 +share/doc/HTML/de/kioslave/bzip2/index.docbook +share/doc/HTML/de/kioslave/cgi/common +share/doc/HTML/de/kioslave/cgi/index.cache.bz2 +share/doc/HTML/de/kioslave/cgi/index.docbook +share/doc/HTML/de/kioslave/data/common +share/doc/HTML/de/kioslave/data/index.cache.bz2 +share/doc/HTML/de/kioslave/data/index.docbook +share/doc/HTML/de/kioslave/file/common +share/doc/HTML/de/kioslave/file/index.cache.bz2 +share/doc/HTML/de/kioslave/file/index.docbook +share/doc/HTML/de/kioslave/finger/common +share/doc/HTML/de/kioslave/finger/index.cache.bz2 +share/doc/HTML/de/kioslave/finger/index.docbook +share/doc/HTML/de/kioslave/fish/common +share/doc/HTML/de/kioslave/fish/index.cache.bz2 +share/doc/HTML/de/kioslave/fish/index.docbook +share/doc/HTML/de/kioslave/floppy/common +share/doc/HTML/de/kioslave/floppy/index.cache.bz2 +share/doc/HTML/de/kioslave/floppy/index.docbook +share/doc/HTML/de/kioslave/ftp/common +share/doc/HTML/de/kioslave/ftp/index.cache.bz2 +share/doc/HTML/de/kioslave/ftp/index.docbook +share/doc/HTML/de/kioslave/gzip/common +share/doc/HTML/de/kioslave/gzip/index.cache.bz2 +share/doc/HTML/de/kioslave/gzip/index.docbook +share/doc/HTML/de/kioslave/help/common +share/doc/HTML/de/kioslave/help/index.cache.bz2 +share/doc/HTML/de/kioslave/help/index.docbook +share/doc/HTML/de/kioslave/http/common +share/doc/HTML/de/kioslave/http/index.cache.bz2 +share/doc/HTML/de/kioslave/http/index.docbook +share/doc/HTML/de/kioslave/imap/common +share/doc/HTML/de/kioslave/imap/index.cache.bz2 +share/doc/HTML/de/kioslave/imap/index.docbook +share/doc/HTML/de/kioslave/info/common +share/doc/HTML/de/kioslave/info/index.cache.bz2 +share/doc/HTML/de/kioslave/info/index.docbook +share/doc/HTML/de/kioslave/ldap/common +share/doc/HTML/de/kioslave/ldap/index.cache.bz2 +share/doc/HTML/de/kioslave/ldap/index.docbook +share/doc/HTML/de/kioslave/mailto/common +share/doc/HTML/de/kioslave/mailto/index.cache.bz2 +share/doc/HTML/de/kioslave/mailto/index.docbook +share/doc/HTML/de/kioslave/man/common +share/doc/HTML/de/kioslave/man/index.cache.bz2 +share/doc/HTML/de/kioslave/man/index.docbook +share/doc/HTML/de/kioslave/news/common +share/doc/HTML/de/kioslave/news/index.cache.bz2 +share/doc/HTML/de/kioslave/news/index.docbook +share/doc/HTML/de/kioslave/nfs/common +share/doc/HTML/de/kioslave/nfs/index.cache.bz2 +share/doc/HTML/de/kioslave/nfs/index.docbook +share/doc/HTML/de/kioslave/nntp/common +share/doc/HTML/de/kioslave/nntp/index.cache.bz2 +share/doc/HTML/de/kioslave/nntp/index.docbook +share/doc/HTML/de/kioslave/pop3/common +share/doc/HTML/de/kioslave/pop3/index.cache.bz2 +share/doc/HTML/de/kioslave/pop3/index.docbook +share/doc/HTML/de/kioslave/rlogin/common +share/doc/HTML/de/kioslave/rlogin/index.cache.bz2 +share/doc/HTML/de/kioslave/rlogin/index.docbook +share/doc/HTML/de/kioslave/sftp/common +share/doc/HTML/de/kioslave/sftp/index.cache.bz2 +share/doc/HTML/de/kioslave/sftp/index.docbook +share/doc/HTML/de/kioslave/smb/common +share/doc/HTML/de/kioslave/smb/index.cache.bz2 +share/doc/HTML/de/kioslave/smb/index.docbook +share/doc/HTML/de/kioslave/smtp/common +share/doc/HTML/de/kioslave/smtp/index.cache.bz2 +share/doc/HTML/de/kioslave/smtp/index.docbook +share/doc/HTML/de/kioslave/tar/common +share/doc/HTML/de/kioslave/tar/index.cache.bz2 +share/doc/HTML/de/kioslave/tar/index.docbook +share/doc/HTML/de/kioslave/telnet/common +share/doc/HTML/de/kioslave/telnet/index.cache.bz2 +share/doc/HTML/de/kioslave/telnet/index.docbook +share/doc/HTML/de/kioslave/thumbnail/common +share/doc/HTML/de/kioslave/thumbnail/index.cache.bz2 +share/doc/HTML/de/kioslave/thumbnail/index.docbook +share/doc/HTML/de/kioslave/webdav/common +share/doc/HTML/de/kioslave/webdav/index.cache.bz2 +share/doc/HTML/de/kioslave/webdav/index.docbook share/doc/HTML/de/kiriki/common share/doc/HTML/de/kiriki/index.cache.bz2 share/doc/HTML/de/kiriki/index.docbook @@ -1009,17 +1040,6 @@ share/doc/HTML/de/knetattach/index.docbook share/doc/HTML/de/knetwalk/common share/doc/HTML/de/knetwalk/index.cache.bz2 share/doc/HTML/de/knetwalk/index.docbook -share/doc/HTML/de/knewsticker/common -share/doc/HTML/de/knewsticker/contextmenu.png -share/doc/HTML/de/knewsticker/index.cache.bz2 -share/doc/HTML/de/knewsticker/index.docbook -share/doc/HTML/de/knewsticker/kcmnewsticker-childpanel.png -share/doc/HTML/de/knewsticker/kcmnewsticker-filters.png -share/doc/HTML/de/knewsticker/kcmnewsticker-general.png -share/doc/HTML/de/knewsticker/kcmnewsticker-kicker.png -share/doc/HTML/de/knewsticker/kcmnewsticker-newssources.png -share/doc/HTML/de/knewsticker/kcmnewsticker-ownwindow.png -share/doc/HTML/de/knewsticker/kcmnewsticker-scrollerprefs.png share/doc/HTML/de/knode/commands.docbook share/doc/HTML/de/knode/common share/doc/HTML/de/knode/credits.docbook @@ -1155,20 +1175,6 @@ share/doc/HTML/de/kpat/common share/doc/HTML/de/kpat/index.cache.bz2 share/doc/HTML/de/kpat/index.docbook share/doc/HTML/de/kpat/man-kpat.6.docbook -share/doc/HTML/de/kpercentage/answer.png -share/doc/HTML/de/kpercentage/commands.docbook -share/doc/HTML/de/kpercentage/common -share/doc/HTML/de/kpercentage/credits.docbook -share/doc/HTML/de/kpercentage/devel.docbook -share/doc/HTML/de/kpercentage/faq.docbook -share/doc/HTML/de/kpercentage/help.png -share/doc/HTML/de/kpercentage/index.cache.bz2 -share/doc/HTML/de/kpercentage/index.docbook -share/doc/HTML/de/kpercentage/install.docbook -share/doc/HTML/de/kpercentage/introduction.docbook -share/doc/HTML/de/kpercentage/main.png -share/doc/HTML/de/kpercentage/using.docbook -share/doc/HTML/de/kpercentage/welcome.png share/doc/HTML/de/kpilot/common share/doc/HTML/de/kpilot/faq.docbook share/doc/HTML/de/kpilot/index.cache.bz2 @@ -1317,16 +1323,6 @@ share/doc/HTML/de/kstars/leapyear.docbook share/doc/HTML/de/kstars/lightcurves.docbook share/doc/HTML/de/kstars/luminosity.docbook share/doc/HTML/de/kstars/magnitude.docbook -share/doc/HTML/de/kstars/man-indi_celestron_gps.1.docbook -share/doc/HTML/de/kstars/man-indi_fli_ccd.1.docbook -share/doc/HTML/de/kstars/man-indi_lx200_16.1.docbook -share/doc/HTML/de/kstars/man-indi_lx200autostar.1.docbook -share/doc/HTML/de/kstars/man-indi_lx200classic.1.docbook -share/doc/HTML/de/kstars/man-indi_lx200generic.1.docbook -share/doc/HTML/de/kstars/man-indi_temma.1.docbook -share/doc/HTML/de/kstars/man-indi_v4l_generic.1.docbook -share/doc/HTML/de/kstars/man-indi_v4l_philips.1.docbook -share/doc/HTML/de/kstars/man-indiserver.1.docbook share/doc/HTML/de/kstars/meridian.docbook share/doc/HTML/de/kstars/newfov.png share/doc/HTML/de/kstars/observinglist.docbook @@ -1354,6 +1350,9 @@ share/doc/HTML/de/kstars/viewops.png share/doc/HTML/de/kstars/wut.docbook share/doc/HTML/de/kstars/wut.png share/doc/HTML/de/kstars/zenith.docbook +share/doc/HTML/de/ksudoku/common +share/doc/HTML/de/ksudoku/index.cache.bz2 +share/doc/HTML/de/ksudoku/index.docbook share/doc/HTML/de/ksysguard/common share/doc/HTML/de/ksysguard/index.cache.bz2 share/doc/HTML/de/ksysguard/index.docbook @@ -1373,9 +1372,6 @@ share/doc/HTML/de/ktimer/index.docbook share/doc/HTML/de/ktimetracker/common share/doc/HTML/de/ktimetracker/index.cache.bz2 share/doc/HTML/de/ktimetracker/index.docbook -share/doc/HTML/de/ktnef/common -share/doc/HTML/de/ktnef/index.cache.bz2 -share/doc/HTML/de/ktnef/index.docbook share/doc/HTML/de/ktouch/common share/doc/HTML/de/ktouch/index.cache.bz2 share/doc/HTML/de/ktouch/index.docbook @@ -1477,9 +1473,6 @@ share/doc/HTML/de/kxsldbg/walk_window.png share/doc/HTML/de/lilo-config/common share/doc/HTML/de/lilo-config/index.cache.bz2 share/doc/HTML/de/lilo-config/index.docbook -share/doc/HTML/de/lokalize/common -share/doc/HTML/de/lokalize/index.cache.bz2 -share/doc/HTML/de/lokalize/index.docbook share/doc/HTML/de/lskat/common share/doc/HTML/de/lskat/index.cache.bz2 share/doc/HTML/de/lskat/index.docbook @@ -1547,6 +1540,7 @@ share/locale/de/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/de/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/de/LC_MESSAGES/audiorename_plugin.mo share/locale/de/LC_MESSAGES/blinken.mo +share/locale/de/LC_MESSAGES/bomber.mo share/locale/de/LC_MESSAGES/bovo.mo share/locale/de/LC_MESSAGES/cervisia.mo share/locale/de/LC_MESSAGES/cvsservice.mo @@ -1561,6 +1555,7 @@ share/locale/de/LC_MESSAGES/imagerename_plugin.mo share/locale/de/LC_MESSAGES/joystick.mo share/locale/de/LC_MESSAGES/juk.mo share/locale/de/LC_MESSAGES/kabc.mo +share/locale/de/LC_MESSAGES/kabc_akonadi.mo share/locale/de/LC_MESSAGES/kabc_dir.mo share/locale/de/LC_MESSAGES/kabc_file.mo share/locale/de/LC_MESSAGES/kabc_ldapkio.mo @@ -1574,10 +1569,14 @@ share/locale/de/LC_MESSAGES/kaddressbook.mo share/locale/de/LC_MESSAGES/kalarm.mo share/locale/de/LC_MESSAGES/kalgebra.mo share/locale/de/LC_MESSAGES/kalzium.mo +share/locale/de/LC_MESSAGES/kalzium_qt.mo share/locale/de/LC_MESSAGES/kanagram.mo +share/locale/de/LC_MESSAGES/kapman.mo share/locale/de/LC_MESSAGES/kappfinder.mo share/locale/de/LC_MESSAGES/kapptemplate.mo +share/locale/de/LC_MESSAGES/kate-ctags-plugin.mo share/locale/de/LC_MESSAGES/kate.mo +share/locale/de/LC_MESSAGES/katebuild-plugin.mo share/locale/de/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/de/LC_MESSAGES/katefilebrowserplugin.mo share/locale/de/LC_MESSAGES/katefiletemplates.mo @@ -1588,7 +1587,6 @@ share/locale/de/LC_MESSAGES/kateinsertcommand.mo share/locale/de/LC_MESSAGES/katekjswrapper.mo share/locale/de/LC_MESSAGES/katekonsoleplugin.mo share/locale/de/LC_MESSAGES/katemailfilesplugin.mo -share/locale/de/LC_MESSAGES/katemake.mo share/locale/de/LC_MESSAGES/kateopenheader.mo share/locale/de/LC_MESSAGES/katepart4.mo share/locale/de/LC_MESSAGES/katepybrowse.mo @@ -1607,14 +1605,14 @@ share/locale/de/LC_MESSAGES/kblocks.mo share/locale/de/LC_MESSAGES/kbounce.mo share/locale/de/LC_MESSAGES/kbreakout.mo share/locale/de/LC_MESSAGES/kbruch.mo -share/locale/de/LC_MESSAGES/kbstateapplet.mo share/locale/de/LC_MESSAGES/kbugbuster.mo share/locale/de/LC_MESSAGES/kcachegrind.mo share/locale/de/LC_MESSAGES/kcalc.mo share/locale/de/LC_MESSAGES/kcertpart.mo share/locale/de/LC_MESSAGES/kcharselect.mo -share/locale/de/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/de/LC_MESSAGES/kcm_akonadi.mo share/locale/de/LC_MESSAGES/kcm_autostart.mo +share/locale/de/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/de/LC_MESSAGES/kcm_emoticons.mo share/locale/de/LC_MESSAGES/kcm_krfb.mo share/locale/de/LC_MESSAGES/kcm_kwindesktop.mo @@ -1624,6 +1622,7 @@ share/locale/de/LC_MESSAGES/kcm_pci.mo share/locale/de/LC_MESSAGES/kcm_phonon.mo share/locale/de/LC_MESSAGES/kcm_phononxine.mo share/locale/de/LC_MESSAGES/kcm_solid.mo +share/locale/de/LC_MESSAGES/kcm_standard_actions.mo share/locale/de/LC_MESSAGES/kcmaccess.mo share/locale/de/LC_MESSAGES/kcmaudiocd.mo share/locale/de/LC_MESSAGES/kcmbackground.mo @@ -1673,7 +1672,6 @@ share/locale/de/LC_MESSAGES/kcmsmartcard.mo share/locale/de/LC_MESSAGES/kcmsmserver.mo share/locale/de/LC_MESSAGES/kcmsolidproc.mo share/locale/de/LC_MESSAGES/kcmstyle.mo -share/locale/de/LC_MESSAGES/kcmtaskbar.mo share/locale/de/LC_MESSAGES/kcmusb.mo share/locale/de/LC_MESSAGES/kcmview1394.mo share/locale/de/LC_MESSAGES/kcmxinerama.mo @@ -1681,7 +1679,9 @@ share/locale/de/LC_MESSAGES/kcolorchooser.mo share/locale/de/LC_MESSAGES/kcron.mo share/locale/de/LC_MESSAGES/kdat.mo share/locale/de/LC_MESSAGES/kde-menu.mo +share/locale/de/LC_MESSAGES/kdeasciiquarium.mo share/locale/de/LC_MESSAGES/kdebugdialog.mo +share/locale/de/LC_MESSAGES/kded_phononserver.mo share/locale/de/LC_MESSAGES/kdelibs4.mo share/locale/de/LC_MESSAGES/kdelibs_colors4.mo share/locale/de/LC_MESSAGES/kdepasswd.mo @@ -1692,6 +1692,7 @@ share/locale/de/LC_MESSAGES/kdessh.mo share/locale/de/LC_MESSAGES/kdesu.mo share/locale/de/LC_MESSAGES/kdesud.mo share/locale/de/LC_MESSAGES/kdf.mo +share/locale/de/LC_MESSAGES/kdgantt.mo share/locale/de/LC_MESSAGES/kdgantt1.mo share/locale/de/LC_MESSAGES/kdialog.mo share/locale/de/LC_MESSAGES/kdiamond.mo @@ -1741,12 +1742,15 @@ share/locale/de/LC_MESSAGES/khotnewstuff.mo share/locale/de/LC_MESSAGES/khtmlkttsd.mo share/locale/de/LC_MESSAGES/kiconfinder.mo share/locale/de/LC_MESSAGES/kig.mo +share/locale/de/LC_MESSAGES/killbots.mo share/locale/de/LC_MESSAGES/kimagemapeditor.mo share/locale/de/LC_MESSAGES/kinetd.mo share/locale/de/LC_MESSAGES/kinfocenter.mo share/locale/de/LC_MESSAGES/kio4.mo +share/locale/de/LC_MESSAGES/kio_applications.mo share/locale/de/LC_MESSAGES/kio_archive.mo share/locale/de/LC_MESSAGES/kio_audiocd.mo +share/locale/de/LC_MESSAGES/kio_bookmarks.mo share/locale/de/LC_MESSAGES/kio_finger.mo share/locale/de/LC_MESSAGES/kio_fish.mo share/locale/de/LC_MESSAGES/kio_floppy.mo @@ -1757,11 +1761,12 @@ share/locale/de/LC_MESSAGES/kio_jabberdisco.mo share/locale/de/LC_MESSAGES/kio_ldap.mo share/locale/de/LC_MESSAGES/kio_man.mo share/locale/de/LC_MESSAGES/kio_mbox.mo +share/locale/de/LC_MESSAGES/kio_nepomuksearch.mo share/locale/de/LC_MESSAGES/kio_nfs.mo share/locale/de/LC_MESSAGES/kio_nntp.mo +share/locale/de/LC_MESSAGES/kio_perldoc.mo share/locale/de/LC_MESSAGES/kio_pop3.mo share/locale/de/LC_MESSAGES/kio_remote.mo -share/locale/de/LC_MESSAGES/kio_settings.mo share/locale/de/LC_MESSAGES/kio_sftp.mo share/locale/de/LC_MESSAGES/kio_sieve.mo share/locale/de/LC_MESSAGES/kio_smb.mo @@ -1821,10 +1826,10 @@ share/locale/de/LC_MESSAGES/kopete.mo share/locale/de/LC_MESSAGES/korganizer.mo share/locale/de/LC_MESSAGES/korn.mo share/locale/de/LC_MESSAGES/kpackage.mo +share/locale/de/LC_MESSAGES/kpartloader.mo share/locale/de/LC_MESSAGES/kpartsaver.mo share/locale/de/LC_MESSAGES/kpasswdserver.mo share/locale/de/LC_MESSAGES/kpat.mo -share/locale/de/LC_MESSAGES/kpercentage.mo share/locale/de/LC_MESSAGES/kpilot.mo share/locale/de/LC_MESSAGES/kppp.mo share/locale/de/LC_MESSAGES/kppplogview.mo @@ -1848,20 +1853,12 @@ share/locale/de/LC_MESSAGES/kreversi.mo share/locale/de/LC_MESSAGES/krfb.mo share/locale/de/LC_MESSAGES/kruler.mo share/locale/de/LC_MESSAGES/krunner.mo -share/locale/de/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/de/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/de/LC_MESSAGES/krunner_contacts.mo -share/locale/de/LC_MESSAGES/krunner_converterrunner.mo -share/locale/de/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/de/LC_MESSAGES/krunner_sessions.mo -share/locale/de/LC_MESSAGES/krunner_shellrunner.mo -share/locale/de/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/de/LC_MESSAGES/krunner_xesam.mo share/locale/de/LC_MESSAGES/ksame.mo share/locale/de/LC_MESSAGES/ksaneplugin.mo share/locale/de/LC_MESSAGES/ksayit.mo share/locale/de/LC_MESSAGES/kscd.mo share/locale/de/LC_MESSAGES/kscreensaver.mo +share/locale/de/LC_MESSAGES/ksendemail.mo share/locale/de/LC_MESSAGES/kshisen.mo share/locale/de/LC_MESSAGES/kshorturifilter.mo share/locale/de/LC_MESSAGES/ksirk.mo @@ -1878,6 +1875,7 @@ share/locale/de/LC_MESSAGES/kstyle_keramik_config.mo share/locale/de/LC_MESSAGES/kstyle_phase_config.mo share/locale/de/LC_MESSAGES/ksudoku.mo share/locale/de/LC_MESSAGES/ksysguard.mo +share/locale/de/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/de/LC_MESSAGES/ksystemlog.mo share/locale/de/LC_MESSAGES/ksystraycmd.mo share/locale/de/LC_MESSAGES/ksysv.mo @@ -1887,7 +1885,6 @@ share/locale/de/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/de/LC_MESSAGES/kthememanager.mo share/locale/de/LC_MESSAGES/ktimer.mo share/locale/de/LC_MESSAGES/ktimetracker.mo -share/locale/de/LC_MESSAGES/ktnef.mo share/locale/de/LC_MESSAGES/ktouch.mo share/locale/de/LC_MESSAGES/ktraderclient.mo share/locale/de/LC_MESSAGES/kttsd.mo @@ -1899,6 +1896,7 @@ share/locale/de/LC_MESSAGES/kuiserver.mo share/locale/de/LC_MESSAGES/kuiviewer.mo share/locale/de/LC_MESSAGES/kurifilter.mo share/locale/de/LC_MESSAGES/kuser.mo +share/locale/de/LC_MESSAGES/kwalletd.mo share/locale/de/LC_MESSAGES/kwalletmanager.mo share/locale/de/LC_MESSAGES/kwatchgnupg.mo share/locale/de/LC_MESSAGES/kweather.mo @@ -1945,11 +1943,14 @@ share/locale/de/LC_MESSAGES/libmailtransport.mo share/locale/de/LC_MESSAGES/liboktetacore.mo share/locale/de/LC_MESSAGES/libphonon.mo share/locale/de/LC_MESSAGES/libplasma.mo +share/locale/de/LC_MESSAGES/libplasmaclock.mo share/locale/de/LC_MESSAGES/libtaskmanager.mo share/locale/de/LC_MESSAGES/lokalize.mo share/locale/de/LC_MESSAGES/lskat.mo share/locale/de/LC_MESSAGES/marble.mo +share/locale/de/LC_MESSAGES/marble_qt.mo share/locale/de/LC_MESSAGES/nepomuk.mo +share/locale/de/LC_MESSAGES/nepomuksearch.mo share/locale/de/LC_MESSAGES/nsplugin.mo share/locale/de/LC_MESSAGES/okteta.mo share/locale/de/LC_MESSAGES/oktetapart.mo @@ -1959,6 +1960,7 @@ share/locale/de/LC_MESSAGES/okular_comicbook.mo share/locale/de/LC_MESSAGES/okular_djvu.mo share/locale/de/LC_MESSAGES/okular_dvi.mo share/locale/de/LC_MESSAGES/okular_epub.mo +share/locale/de/LC_MESSAGES/okular_fax.mo share/locale/de/LC_MESSAGES/okular_fictionbook.mo share/locale/de/LC_MESSAGES/okular_ghostview.mo share/locale/de/LC_MESSAGES/okular_kimgio.mo @@ -1971,10 +1973,15 @@ share/locale/de/LC_MESSAGES/parley.mo share/locale/de/LC_MESSAGES/phonon-xine.mo share/locale/de/LC_MESSAGES/phonon_gstreamer.mo share/locale/de/LC_MESSAGES/phonon_kde.mo +share/locale/de/LC_MESSAGES/plasma-overlay.mo +share/locale/de/LC_MESSAGES/plasma-shells-common.mo share/locale/de/LC_MESSAGES/plasma.mo share/locale/de/LC_MESSAGES/plasma_applet_battery.mo +share/locale/de/LC_MESSAGES/plasma_applet_bball.mo share/locale/de/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/de/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/de/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/de/LC_MESSAGES/plasma_applet_charselect.mo share/locale/de/LC_MESSAGES/plasma_applet_clock.mo share/locale/de/LC_MESSAGES/plasma_applet_comic.mo share/locale/de/LC_MESSAGES/plasma_applet_desktop.mo @@ -1986,26 +1993,61 @@ share/locale/de/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/de/LC_MESSAGES/plasma_applet_folderview.mo share/locale/de/LC_MESSAGES/plasma_applet_frame.mo share/locale/de/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/de/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/de/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/de/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/de/LC_MESSAGES/plasma_applet_katesession.mo share/locale/de/LC_MESSAGES/plasma_applet_kget.mo -share/locale/de/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/de/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/de/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/de/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/de/LC_MESSAGES/plasma_applet_life.mo share/locale/de/LC_MESSAGES/plasma_applet_luna.mo +share/locale/de/LC_MESSAGES/plasma_applet_news.mo share/locale/de/LC_MESSAGES/plasma_applet_notes.mo share/locale/de/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/de/LC_MESSAGES/plasma_applet_pager.mo share/locale/de/LC_MESSAGES/plasma_applet_panel.mo +share/locale/de/LC_MESSAGES/plasma_applet_paste.mo +share/locale/de/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/de/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/de/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/de/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/de/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/de/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/de/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/de/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/de/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/de/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/de/LC_MESSAGES/plasma_applet_timer.mo share/locale/de/LC_MESSAGES/plasma_applet_trash.mo share/locale/de/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/de/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/de/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/de/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/de/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/de/LC_MESSAGES/plasma_engine_dict.mo +share/locale/de/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/de/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/de/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/de/LC_MESSAGES/plasma_engine_rss.mo +share/locale/de/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/de/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/de/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/de/LC_MESSAGES/plasma_runner_locations.mo +share/locale/de/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/de/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/de/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/de/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/de/LC_MESSAGES/plasma_runner_shell.mo +share/locale/de/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/de/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/de/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/de/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/de/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/de/LC_MESSAGES/plasmaengineexplorer.mo share/locale/de/LC_MESSAGES/plasmapkg.mo share/locale/de/LC_MESSAGES/plasmoidviewer.mo +share/locale/de/LC_MESSAGES/powerdevil.mo share/locale/de/LC_MESSAGES/printer-applet.mo share/locale/de/LC_MESSAGES/processcore.mo share/locale/de/LC_MESSAGES/processui.mo @@ -2017,10 +2059,12 @@ share/locale/de/LC_MESSAGES/solidcontrol.mo share/locale/de/LC_MESSAGES/soliduiserver.mo share/locale/de/LC_MESSAGES/spy.mo share/locale/de/LC_MESSAGES/step.mo +share/locale/de/LC_MESSAGES/step_qt.mo share/locale/de/LC_MESSAGES/strigila_diff.mo share/locale/de/LC_MESSAGES/superkaramba.mo share/locale/de/LC_MESSAGES/svgpart.mo share/locale/de/LC_MESSAGES/sweeper.mo +share/locale/de/LC_MESSAGES/system-config-printer-kde.mo share/locale/de/LC_MESSAGES/systemsettings.mo share/locale/de/LC_MESSAGES/timezones4.mo share/locale/de/LC_MESSAGES/umbrello.mo @@ -2038,7 +2082,6 @@ share/locale/de/entry.desktop @dirrm share/doc/HTML/de/okteta @dirrm share/doc/HTML/de/marble @dirrm share/doc/HTML/de/lskat -@dirrm share/doc/HTML/de/lokalize @dirrm share/doc/HTML/de/lilo-config @dirrm share/doc/HTML/de/kxsldbg @dirrm share/doc/HTML/de/kwrite @@ -2052,13 +2095,13 @@ share/locale/de/entry.desktop @dirrm share/doc/HTML/de/ktuberling @dirrm share/doc/HTML/de/kttsd @dirrm share/doc/HTML/de/ktouch -@dirrm share/doc/HTML/de/ktnef @dirrm share/doc/HTML/de/ktimetracker @dirrm share/doc/HTML/de/ktimer @dirrm share/doc/HTML/de/kteatime @dirrm share/doc/HTML/de/ksysv @dirrm share/doc/HTML/de/ksystemlog @dirrm share/doc/HTML/de/ksysguard +@dirrm share/doc/HTML/de/ksudoku @dirrm share/doc/HTML/de/kstars @dirrm share/doc/HTML/de/ksquares @dirrm share/doc/HTML/de/kspaceduel @@ -2073,7 +2116,6 @@ share/locale/de/entry.desktop @dirrm share/doc/HTML/de/krdc @dirrm share/doc/HTML/de/kppp @dirrm share/doc/HTML/de/kpilot -@dirrm share/doc/HTML/de/kpercentage @dirrm share/doc/HTML/de/kpat @dirrm share/doc/HTML/de/kpackage @dirrm share/doc/HTML/de/korn @@ -2090,7 +2132,6 @@ share/locale/de/entry.desktop @dirrm share/doc/HTML/de/kolf @dirrm share/doc/HTML/de/knotes @dirrm share/doc/HTML/de/knode -@dirrm share/doc/HTML/de/knewsticker @dirrm share/doc/HTML/de/knetwalk @dirrm share/doc/HTML/de/knetattach @dirrm share/doc/HTML/de/kmplot @@ -2111,6 +2152,36 @@ share/locale/de/entry.desktop @dirrm share/doc/HTML/de/kjots @dirrm share/doc/HTML/de/kiten @dirrm share/doc/HTML/de/kiriki +@dirrm share/doc/HTML/de/kioslave/webdav +@dirrm share/doc/HTML/de/kioslave/thumbnail +@dirrm share/doc/HTML/de/kioslave/telnet +@dirrm share/doc/HTML/de/kioslave/tar +@dirrm share/doc/HTML/de/kioslave/smtp +@dirrm share/doc/HTML/de/kioslave/smb +@dirrm share/doc/HTML/de/kioslave/sftp +@dirrm share/doc/HTML/de/kioslave/rlogin +@dirrm share/doc/HTML/de/kioslave/pop3 +@dirrm share/doc/HTML/de/kioslave/nntp +@dirrm share/doc/HTML/de/kioslave/nfs +@dirrm share/doc/HTML/de/kioslave/news +@dirrm share/doc/HTML/de/kioslave/man +@dirrm share/doc/HTML/de/kioslave/mailto +@dirrm share/doc/HTML/de/kioslave/ldap +@dirrm share/doc/HTML/de/kioslave/info +@dirrm share/doc/HTML/de/kioslave/imap +@dirrm share/doc/HTML/de/kioslave/http +@dirrm share/doc/HTML/de/kioslave/help +@dirrm share/doc/HTML/de/kioslave/gzip +@dirrm share/doc/HTML/de/kioslave/ftp +@dirrm share/doc/HTML/de/kioslave/floppy +@dirrm share/doc/HTML/de/kioslave/fish +@dirrm share/doc/HTML/de/kioslave/finger +@dirrm share/doc/HTML/de/kioslave/file +@dirrm share/doc/HTML/de/kioslave/data +@dirrm share/doc/HTML/de/kioslave/cgi +@dirrm share/doc/HTML/de/kioslave/bzip2 +@dirrm share/doc/HTML/de/kioslave/bookmarks +@dirrm share/doc/HTML/de/kioslave/audiocd @dirrm share/doc/HTML/de/kioslave @dirrm share/doc/HTML/de/kinfocenter/xserver @dirrm share/doc/HTML/de/kinfocenter/usb @@ -2130,6 +2201,7 @@ share/locale/de/entry.desktop @dirrm share/doc/HTML/de/kinfocenter/dma @dirrm share/doc/HTML/de/kinfocenter/devices @dirrm share/doc/HTML/de/kinfocenter +@dirrm share/doc/HTML/de/killbots @dirrm share/doc/HTML/de/kig @dirrm share/doc/HTML/de/khelpcenter/visualdict @dirrm share/doc/HTML/de/khelpcenter/userguide @@ -2148,7 +2220,6 @@ share/locale/de/entry.desktop @dirrm share/doc/HTML/de/kfind @dirrm share/doc/HTML/de/kfilereplace @dirrm share/doc/HTML/de/kdm -@dirrm share/doc/HTML/de/kdiamond @dirrm share/doc/HTML/de/kdf @dirrm share/doc/HTML/de/kdesu @dirrm share/doc/HTML/de/kdepasswd @@ -2171,8 +2242,8 @@ share/locale/de/entry.desktop @dirrm share/doc/HTML/de/kcontrol/netpref @dirrm share/doc/HTML/de/kcontrol/mouse @dirrm share/doc/HTML/de/kcontrol/language -@dirrm share/doc/HTML/de/kcontrol/kxkb @dirrm share/doc/HTML/de/kcontrol/kwindecoration +@dirrm share/doc/HTML/de/kcontrol/kwincompositing @dirrm share/doc/HTML/de/kcontrol/knetworkconf @dirrm share/doc/HTML/de/kcontrol/khtml @dirrm share/doc/HTML/de/kcontrol/keys @@ -2187,6 +2258,7 @@ share/locale/de/entry.desktop @dirrm share/doc/HTML/de/kcontrol/kcmdisplay @dirrm share/doc/HTML/de/kcontrol/kcmcss @dirrm share/doc/HTML/de/kcontrol/kcmaccess +@dirrm share/doc/HTML/de/kcontrol/kamera @dirrm share/doc/HTML/de/kcontrol/joystick @dirrm share/doc/HTML/de/kcontrol/icons @dirrm share/doc/HTML/de/kcontrol/helpindex @@ -2205,6 +2277,7 @@ share/locale/de/entry.desktop @dirrm share/doc/HTML/de/kcontrol/colors @dirrm share/doc/HTML/de/kcontrol/clock @dirrm share/doc/HTML/de/kcontrol/cache +@dirrm share/doc/HTML/de/kcontrol/bookmarks @dirrm share/doc/HTML/de/kcontrol/blockdevices @dirrm share/doc/HTML/de/kcontrol/bell @dirrm share/doc/HTML/de/kcontrol/background @@ -2223,8 +2296,8 @@ share/locale/de/entry.desktop @dirrm share/doc/HTML/de/katomic @dirrm share/doc/HTML/de/kate-plugins @dirrm share/doc/HTML/de/kate +@dirrm share/doc/HTML/de/kapman @dirrm share/doc/HTML/de/kanagram -@dirrm share/doc/HTML/de/kamera @dirrm share/doc/HTML/de/kalzium @dirrm share/doc/HTML/de/kalarm @dirrm share/doc/HTML/de/kaddressbook @@ -2239,6 +2312,10 @@ share/locale/de/entry.desktop @dirrm share/doc/HTML/de/ark @dirrm share/doc/HTML/de/amor @dirrm share/doc/HTML/de/akregator +@dirrm share/apps/step/objinfo/l10n/de +@dirrm share/apps/step/objinfo/l10n +@dirrm share/apps/step/objinfo +@dirrm share/apps/step @dirrm share/apps/kvtml/de @dirrm share/apps/kvtml @dirrm share/apps/ktuberling/sounds/de @@ -2249,3 +2326,8 @@ share/locale/de/entry.desktop @dirrm share/apps/klettres/de @dirrm share/apps/klettres @dirrm share/apps/khangman +@dirrmtry man/de/man8 +@dirrmtry man/de/man7 +@dirrmtry man/de/man6 +@dirrmtry man/de/man1 +@dirrmtry man/de diff --git a/graphics/Makefile b/graphics/Makefile index e9ffd4e6eac3..45aefb20a77c 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -361,6 +361,7 @@ SUBDIR += kgraphviewer SUBDIR += kiconedit SUBDIR += kipi-plugins + SUBDIR += kipi-plugins-kde4 SUBDIR += kisomandel SUBDIR += kix-kmod SUBDIR += kludge3d diff --git a/graphics/kcoloredit/Makefile b/graphics/kcoloredit/Makefile index b85d114b8495..699772c3fb13 100644 --- a/graphics/kcoloredit/Makefile +++ b/graphics/kcoloredit/Makefile @@ -23,6 +23,6 @@ QT_COMPONENTS= corelib qmake_build moc_build rcc_build uic_build USE_CMAKE= yes APP_VER= 2.0.0 -EXTRA_VER= 4.1.2 +EXTRA_VER= 4.2.0 .include <bsd.port.mk> diff --git a/graphics/kcoloredit/distinfo b/graphics/kcoloredit/distinfo index a4e87765762d..4dd701d4388b 100644 --- a/graphics/kcoloredit/distinfo +++ b/graphics/kcoloredit/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/extragear/kcoloredit-2.0.0-kde4.1.2.tar.bz2) = 619d188297ccd71a85fb16384cf17ef4 -SHA256 (KDE/extragear/kcoloredit-2.0.0-kde4.1.2.tar.bz2) = 00f2ade729d988cb39e60aebff974dad27199d3db35f47ffd80f44f367ab7014 -SIZE (KDE/extragear/kcoloredit-2.0.0-kde4.1.2.tar.bz2) = 101929 +MD5 (KDE/extragear/kcoloredit-2.0.0-kde4.2.0.tar.bz2) = 7f11e3e19cae7dec2d013cec40027e70 +SHA256 (KDE/extragear/kcoloredit-2.0.0-kde4.2.0.tar.bz2) = f4d8e2e5b0dc0fbebb4fc9433a2211950ff0f266c02f7f37306c79f8dd3f8143 +SIZE (KDE/extragear/kcoloredit-2.0.0-kde4.2.0.tar.bz2) = 110359 diff --git a/graphics/kcoloredit/pkg-plist b/graphics/kcoloredit/pkg-plist index 6766c34fba7a..1098a1723618 100644 --- a/graphics/kcoloredit/pkg-plist +++ b/graphics/kcoloredit/pkg-plist @@ -35,6 +35,7 @@ share/locale/is/LC_MESSAGES/kcoloredit.mo share/locale/it/LC_MESSAGES/kcoloredit.mo share/locale/ja/LC_MESSAGES/kcoloredit.mo share/locale/km/LC_MESSAGES/kcoloredit.mo +share/locale/ku/LC_MESSAGES/kcoloredit.mo share/locale/lt/LC_MESSAGES/kcoloredit.mo share/locale/lv/LC_MESSAGES/kcoloredit.mo share/locale/mk/LC_MESSAGES/kcoloredit.mo @@ -67,15 +68,9 @@ share/locale/zh_HK/LC_MESSAGES/kcoloredit.mo share/locale/zh_TW/LC_MESSAGES/kcoloredit.mo @dirrmtry share/locale/zh_HK/LC_MESSAGES @dirrmtry share/locale/zh_HK -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh @dirrmtry share/locale/se/LC_MESSAGES @dirrmtry share/locale/se @dirrmtry share/locale/oc/LC_MESSAGES @dirrmtry share/locale/oc -@dirrmtry share/locale/nds/LC_MESSAGES -@dirrmtry share/locale/nds -@dirrmtry share/locale/km/LC_MESSAGES -@dirrmtry share/locale/km @dirrm share/doc/HTML/en/kcoloredit @dirrm share/apps/kcoloredit diff --git a/graphics/kdegraphics4/Makefile b/graphics/kdegraphics4/Makefile index a23cc2066aa2..6ffad4ee7eef 100644 --- a/graphics/kdegraphics4/Makefile +++ b/graphics/kdegraphics4/Makefile @@ -6,10 +6,9 @@ PORTNAME= kdegraphics PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org @@ -37,7 +36,7 @@ LATEST_LINK= ${PORTNAME}4 USE_GL= glut USE_GHOSTSCRIPT= yes -USE_KDE4= kdelibs workspace kdeprefix kdehier automoc4 +USE_KDE4= kdelibs kdeprefix kdehier automoc4 KDE4_BUILDENV= yes USE_BZIP2= yes USE_QT_VER= 4 diff --git a/graphics/kdegraphics4/distinfo b/graphics/kdegraphics4/distinfo index ef7766f1c622..714a1f7c05f0 100644 --- a/graphics/kdegraphics4/distinfo +++ b/graphics/kdegraphics4/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdegraphics-4.1.4.tar.bz2) = c2a67098d9df60e839d2af6b866989ef -SHA256 (KDE/kdegraphics-4.1.4.tar.bz2) = 9ae2b3774e14d7341989ce48aaca4d1f121ebc8da3fe4509db46d2d33e828f2b -SIZE (KDE/kdegraphics-4.1.4.tar.bz2) = 3435480 +MD5 (KDE/kdegraphics-4.2.0.tar.bz2) = 8beb6fe5d475d0b0245ea6d4cc7e9732 +SHA256 (KDE/kdegraphics-4.2.0.tar.bz2) = 09cbf2aa80351eacf4f59f73d608b382f77a200a9e869e8f586e9629388e0898 +SIZE (KDE/kdegraphics-4.2.0.tar.bz2) = 3565632 diff --git a/graphics/kdegraphics4/pkg-plist b/graphics/kdegraphics4/pkg-plist index 6994de26e9d6..e6e42982c017 100644 --- a/graphics/kdegraphics4/pkg-plist +++ b/graphics/kdegraphics4/pkg-plist @@ -6,13 +6,15 @@ bin/kruler bin/ksnapshot bin/okular bin/xf86gammacfg -include/libkdcraw/dcrawbinary.h include/libkdcraw/dcrawinfocontainer.h include/libkdcraw/dcrawsettingswidget.h include/libkdcraw/kdcraw.h include/libkdcraw/libkdcraw_export.h include/libkdcraw/rawdecodingsettings.h include/libkdcraw/rawfiles.h +include/libkdcraw/rcombobox.h +include/libkdcraw/rnuminput.h +include/libkdcraw/squeezedcombobox.h include/libkdcraw/version.h include/libkexiv2/kexiv2.h include/libkexiv2/libkexiv2_export.h @@ -65,6 +67,7 @@ lib/kde4/okularGenerator_comicbook.so lib/kde4/okularGenerator_djvu.so lib/kde4/okularGenerator_dvi.so lib/kde4/okularGenerator_epub.so +lib/kde4/okularGenerator_fax.so lib/kde4/okularGenerator_fb.so lib/kde4/okularGenerator_ghostview.so lib/kde4/okularGenerator_kimgio.so @@ -77,27 +80,25 @@ lib/kde4/okularpart.so lib/kde4/svgpart.so lib/libgwenviewlib.so lib/libgwenviewlib.so.5 -lib/libgwenviewlib.so.5.0.0 +lib/libgwenviewlib.so.5.0.1 lib/libkdcraw.so -lib/libkdcraw.so.5 -lib/libkdcraw.so.5.0.0 -lib/libkdcraw5/CAMERALIST -lib/libkdcraw5/kdcraw +lib/libkdcraw.so.7 +lib/libkdcraw.so.7.0.0 lib/libkexiv2.so -lib/libkexiv2.so.6 -lib/libkexiv2.so.6.0.0 +lib/libkexiv2.so.7 +lib/libkexiv2.so.7.2.0 lib/libkipi.so -lib/libkipi.so.5 -lib/libkipi.so.5.0.0 +lib/libkipi.so.6 +lib/libkipi.so.6.0.0 lib/libkolourpaint_lgpl.so lib/libkolourpaint_lgpl.so.5 -lib/libkolourpaint_lgpl.so.5.0.0 +lib/libkolourpaint_lgpl.so.5.0.1 lib/libksane.so lib/libksane.so.0 lib/libksane.so.0.1.1 lib/libokularcore.so lib/libokularcore.so.1 -lib/libokularcore.so.1.1.0 +lib/libokularcore.so.1.2.0 lib/strigi/strigita_dvi.so libdata/pkgconfig/libkdcraw-kde4.pc libdata/pkgconfig/libkexiv2-kde4.pc @@ -114,6 +115,7 @@ share/applications/kde4/okularApplication_comicbook.desktop share/applications/kde4/okularApplication_djvu.desktop share/applications/kde4/okularApplication_dvi.desktop share/applications/kde4/okularApplication_epub.desktop +share/applications/kde4/okularApplication_fax.desktop share/applications/kde4/okularApplication_fb.desktop share/applications/kde4/okularApplication_ghostview.desktop share/applications/kde4/okularApplication_kimgio.desktop @@ -124,7 +126,6 @@ share/applications/kde4/okularApplication_tiff.desktop share/applications/kde4/okularApplication_xps.desktop share/apps/cmake/modules/FindKSane.cmake share/apps/cmake/modules/FindOkular.cmake -share/apps/gvpart/gvpart-gwenview.rc share/apps/gvpart/gvpart.rc share/apps/gwenview/cursors/zoom.png share/apps/gwenview/fullscreenthemes/blackglass/checked.png @@ -274,16 +275,19 @@ share/apps/okular/pics/paragraph.png share/apps/okular/pics/pushpin.png share/apps/okular/pics/rightarrow.png share/apps/okular/pics/rightpointer.png +share/apps/okular/pics/stamps.svg share/apps/okular/pics/star.png +share/apps/okular/pics/tool-ellipse-okular.png +share/apps/okular/pics/tool-highlighter-okular.png +share/apps/okular/pics/tool-ink-okular.png +share/apps/okular/pics/tool-line-okular.png +share/apps/okular/pics/tool-note-inline-okular.png share/apps/okular/pics/tool-note-inline.png +share/apps/okular/pics/tool-note-okular.png share/apps/okular/pics/tool-note.png -share/apps/okular/pics/tool-stamp.png -share/apps/okular/pics/tool_ellipse_okular.png -share/apps/okular/pics/tool_hl_yellow.png -share/apps/okular/pics/tool_ink_green.png -share/apps/okular/pics/tool_line_okular.png -share/apps/okular/pics/tool_note.png -share/apps/okular/pics/tool_polygon_okular.png +share/apps/okular/pics/tool-polygon-okular.png +share/apps/okular/pics/tool-stamp-okular.png +share/apps/okular/pics/tool-underline-okular.png share/apps/okular/pics/uparrow.png share/apps/okular/pics/upleftarrow.png share/apps/okular/shell.rc @@ -303,9 +307,9 @@ share/doc/HTML/en/gwenview/introduction.docbook share/doc/HTML/en/gwenview/keybindings.docbook share/doc/HTML/en/gwenview/mouse.docbook share/doc/HTML/en/gwenview/view_mode.png -share/doc/HTML/en/kamera/common -share/doc/HTML/en/kamera/index.cache.bz2 -share/doc/HTML/en/kamera/index.docbook +share/doc/HTML/en/kcontrol/kamera/common +share/doc/HTML/en/kcontrol/kamera/index.cache.bz2 +share/doc/HTML/en/kcontrol/kamera/index.docbook share/doc/HTML/en/kgamma/common share/doc/HTML/en/kgamma/index.cache.bz2 share/doc/HTML/en/kgamma/index.docbook @@ -435,6 +439,7 @@ share/kde4/services/libokularGenerator_comicbook.desktop share/kde4/services/libokularGenerator_djvu.desktop share/kde4/services/libokularGenerator_dvi.desktop share/kde4/services/libokularGenerator_epub.desktop +share/kde4/services/libokularGenerator_fax.desktop share/kde4/services/libokularGenerator_fb.desktop share/kde4/services/libokularGenerator_ghostview.desktop share/kde4/services/libokularGenerator_kimgio.desktop @@ -449,6 +454,7 @@ share/kde4/services/okularComicbook.desktop share/kde4/services/okularDjvu.desktop share/kde4/services/okularDvi.desktop share/kde4/services/okularEPub.desktop +share/kde4/services/okularFax.desktop share/kde4/services/okularFb.desktop share/kde4/services/okularGhostview.desktop share/kde4/services/okularKimgio.desktop @@ -461,42 +467,14 @@ share/kde4/services/okular_part.desktop share/kde4/services/svgpart.desktop share/kde4/servicetypes/kipiplugin.desktop share/kde4/servicetypes/okularGenerator.desktop -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services/ServiceMenus -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16/actions -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons @dirrm share/doc/HTML/en/okular @dirrm share/doc/HTML/en/ksnapshot @dirrm share/doc/HTML/en/kruler @dirrm share/doc/HTML/en/kolourpaint @dirrm share/doc/HTML/en/kgamma -@dirrm share/doc/HTML/en/kamera +@dirrm share/doc/HTML/en/kcontrol/kamera @dirrm share/doc/HTML/en/gwenview -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/doc -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 -@dirrmtry share/config.kcfg -@dirrmtry share/config -@dirrmtry share/apps/svgpart +@dirrm share/apps/svgpart @dirrm share/apps/okular/pics @dirrm share/apps/okular/icons/hicolor/32x32/apps @dirrm share/apps/okular/icons/hicolor/32x32 @@ -533,13 +511,6 @@ share/kde4/servicetypes/okularGenerator.desktop @dirrm share/apps/gwenview/cursors @dirrm share/apps/gwenview @dirrm share/apps/gvpart -@dirrmtry share/apps/cmake/modules -@dirrmtry share/apps/cmake -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/strigi -@dirrm lib/libkdcraw5 @dirrm include/okular/interfaces @dirrm include/okular/core @dirrm include/okular diff --git a/graphics/kgraphviewer/Makefile b/graphics/kgraphviewer/Makefile index a32847a5ef00..e061d9ada44c 100644 --- a/graphics/kgraphviewer/Makefile +++ b/graphics/kgraphviewer/Makefile @@ -23,6 +23,6 @@ QT_COMPONENTS= corelib qmake_build moc_build rcc_build uic_build USE_CMAKE= yes APP_VER= 2.0.2 -EXTRA_VER= 4.1.2 +EXTRA_VER= 4.2.0 .include <bsd.port.mk> diff --git a/graphics/kgraphviewer/distinfo b/graphics/kgraphviewer/distinfo index 9e879540a38b..9e1aecab7e71 100644 --- a/graphics/kgraphviewer/distinfo +++ b/graphics/kgraphviewer/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/extragear/kgraphviewer-2.0.2-kde4.1.2.tar.bz2) = 6751a209560450f079977844bcbbcbab -SHA256 (KDE/extragear/kgraphviewer-2.0.2-kde4.1.2.tar.bz2) = 2ec9914f61ef0ffc6671d8450598695bceb9979386ccd35b7facb695eb1c22aa -SIZE (KDE/extragear/kgraphviewer-2.0.2-kde4.1.2.tar.bz2) = 1055639 +MD5 (KDE/extragear/kgraphviewer-2.0.2-kde4.2.0.tar.bz2) = 5bc4492d271de18914a8b300a64de814 +SHA256 (KDE/extragear/kgraphviewer-2.0.2-kde4.2.0.tar.bz2) = fdacd5600235a8d12fac3c7324e1e81f852cd70253f19f12366a7984d9e576bd +SIZE (KDE/extragear/kgraphviewer-2.0.2-kde4.2.0.tar.bz2) = 786460 diff --git a/graphics/kgraphviewer/pkg-plist b/graphics/kgraphviewer/pkg-plist index a160443e3516..55d75c9758ed 100644 --- a/graphics/kgraphviewer/pkg-plist +++ b/graphics/kgraphviewer/pkg-plist @@ -49,6 +49,7 @@ share/locale/cs/LC_MESSAGES/kgraphviewer.mo share/locale/da/LC_MESSAGES/kgraphviewer.mo share/locale/de/LC_MESSAGES/kgraphviewer.mo share/locale/el/LC_MESSAGES/kgraphviewer.mo +share/locale/es/LC_MESSAGES/kgraphviewer.mo share/locale/et/LC_MESSAGES/kgraphviewer.mo share/locale/fr/LC_MESSAGES/kgraphviewer.mo share/locale/ga/LC_MESSAGES/kgraphviewer.mo @@ -57,11 +58,13 @@ share/locale/hi/LC_MESSAGES/kgraphviewer.mo share/locale/it/LC_MESSAGES/kgraphviewer.mo share/locale/ja/LC_MESSAGES/kgraphviewer.mo share/locale/km/LC_MESSAGES/kgraphviewer.mo +share/locale/ku/LC_MESSAGES/kgraphviewer.mo share/locale/lt/LC_MESSAGES/kgraphviewer.mo share/locale/nb/LC_MESSAGES/kgraphviewer.mo share/locale/nds/LC_MESSAGES/kgraphviewer.mo share/locale/nl/LC_MESSAGES/kgraphviewer.mo share/locale/nn/LC_MESSAGES/kgraphviewer.mo +share/locale/pa/LC_MESSAGES/kgraphviewer.mo share/locale/pl/LC_MESSAGES/kgraphviewer.mo share/locale/pt/LC_MESSAGES/kgraphviewer.mo share/locale/pt_BR/LC_MESSAGES/kgraphviewer.mo @@ -76,10 +79,6 @@ share/locale/vi/LC_MESSAGES/kgraphviewer.mo share/locale/zh_CN/LC_MESSAGES/kgraphviewer.mo @dirrmtry share/locale/se/LC_MESSAGES @dirrmtry share/locale/se -@dirrmtry share/locale/nds/LC_MESSAGES -@dirrmtry share/locale/nds -@dirrmtry share/locale/km/LC_MESSAGES -@dirrmtry share/locale/km @dirrm share/doc/HTML/en/kgraphviewer @dirrm share/apps/kgraphviewerpart/pics @dirrm share/apps/kgraphviewerpart diff --git a/graphics/kiconedit/Makefile b/graphics/kiconedit/Makefile index ecc7846c2972..de85973cd8bd 100644 --- a/graphics/kiconedit/Makefile +++ b/graphics/kiconedit/Makefile @@ -21,6 +21,6 @@ USE_QT_VER= 4 QT_COMPONENTS= corelib qmake_build moc_build rcc_build uic_build USE_CMAKE= yes -EXTRA_VER= 4.1.2 +EXTRA_VER= 4.2.0 .include <bsd.port.mk> diff --git a/graphics/kiconedit/distinfo b/graphics/kiconedit/distinfo index 7fa552b1ac4e..5155c5ccea75 100644 --- a/graphics/kiconedit/distinfo +++ b/graphics/kiconedit/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/extragear/kiconedit-4.1.2.tar.bz2) = 8814fc494fe5b6f06768b38a0a5f8a97 -SHA256 (KDE/extragear/kiconedit-4.1.2.tar.bz2) = b326ad9e88ab719177a1987370e8498295ab3a0d78e950e5d09bcaa751db93da -SIZE (KDE/extragear/kiconedit-4.1.2.tar.bz2) = 234642 +MD5 (KDE/extragear/kiconedit-4.2.0.tar.bz2) = b9700b5380880d6bb857ac7594583ff3 +SHA256 (KDE/extragear/kiconedit-4.2.0.tar.bz2) = ce5a574df1b8b86199410ff68493257f4002bc986c3cee776711befa310670bc +SIZE (KDE/extragear/kiconedit-4.2.0.tar.bz2) = 239432 diff --git a/graphics/kipi-plugins-kde4/Makefile b/graphics/kipi-plugins-kde4/Makefile index efb0eaffdd59..80917958e0fb 100644 --- a/graphics/kipi-plugins-kde4/Makefile +++ b/graphics/kipi-plugins-kde4/Makefile @@ -1,226 +1,31 @@ -# New ports collection makefile for: digikam-plugins -# Date created: 15 February 2004 -# Whom: Arjan van Leeuwen <avleeuwen@piwebs.com> +# New ports collection makefile for: kipi-plugins-kde4 +# Date created: Jan 23, 2009 +# Whom: Kris Moore # # $FreeBSD$ # PORTNAME= kipi-plugins -PORTVERSION= 0.1.7 -PORTREVISION= 2 -PORTEPOCH= 1 -CATEGORIES= graphics kde +DISTVERSION= 0.2.0-beta6 +CATEGORIES= multimedia graphics kde MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= kipi +PKGNAMESUFFIX= -kde4 -MAINTAINER= ale@FreeBSD.org -COMMENT= KDE Image Plugin Interface plugins +MAINTAINER= kris@pcbsd.org +COMMENT= KDE4 kipi graphics plugins -LIB_DEPENDS= kipi.2:${PORTSDIR}/graphics/libkipi \ - kexiv2.5:${PORTSDIR}/graphics/libkexiv2 \ - kdcraw.4:${PORTSDIR}/graphics/libkdcraw - -OPTIONS= ACQUIREIMAGES "scanner/screenshot plugin" on \ - BATCHPROCESSIMAGES "batch processing on images" on \ - CALENDAR "create calendars" on \ - CDARCHIVING "create album CDs" on \ - FINDIMAGES "find duplicate images in albums" on \ - FLICKREXPORT "export images to flickr account" on \ - GALLERYEXPORT "export images to remote Gallery server" on \ - GPSSYNC "geolocalize pictures" on \ - HTMLEXPORT "export images collections into HTML page" on \ - IMAGEVIEWER "OpenGL based image viewer" on \ - JPEGLOSSLESS "batch processing without losing metainfo" on \ - KAMERAKLIENT "GPhoto2 interface (import from cameras)" on \ - METADATAEDIT "edit EXIF and IPTC pictures metadata" on \ - MPEGENCODER "tool to build a video from images" on \ - PICASAWEBEXPORT "export images to Picasa web service" on \ - PRINTWIZARD "a print wizard" on \ - RAWCONVERTER "convert RAW images from digital cameras" on \ - SENDIMAGES "send images by email" on \ - SIMPLEVIEWEREXPORT "export images to SimpleViewer" on \ - SLIDESHOW "create a slideshow" on \ - TIMEADJUST "adjust image file time and date" on \ - WALLPAPER "set your image as wallpaper" on +LIB_DEPENDS= cv.1:${PORTSDIR}/graphics/opencv \ + gpod.3:${PORTSDIR}/audio/libgpod \ + expat.6:${PORTSDIR}/textproc/expat2 \ + kipi.6:${PORTSDIR}/graphics/kdegraphics4 +RUN_DEPENDS= convert:${PORTSDIR}/graphics/ImageMagick USE_BZIP2= yes -USE_AUTOTOOLS= libtool:15 -USE_GMAKE= yes -USE_KDELIBS_VER=3 -USE_GETTEXT= yes +USE_CMAKE= yes +USE_KDE4= automoc4 kdehier kdeprefix pimlibs kdebase +USE_QT4= yes +QT_COMPONENTS= corelib qmake_build moc_build rcc_build uic_build USE_LDCONFIG= yes -CONFIGURE_ARGS= --disable-ipodexport - -.include <bsd.port.pre.mk> - -.if !defined(WITHOUT_ACQUIREIMAGES) -PLIST_SUB+= ACQUIREIMAGES:="" -LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff -.else -PLIST_SUB+= ACQUIREIMAGES:="@comment " -CONFIGURE_ARGS+=--disable-acquireimages -.endif - -.if !defined(WITHOUT_BATCHPROCESSIMAGES) -PLIST_SUB+= BATCHPROCESSIMAGES:="" -RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick -.else -PLIST_SUB+= BATCHPROCESSIMAGES:="@comment " -CONFIGURE_ARGS+=--disable-batchprocessimages -.endif - -.if !defined(WITHOUT_CALENDAR) -PLIST_SUB+= CALENDAR:="" -LIB_DEPENDS+= kcal.2:${PORTSDIR}/deskutils/kdepim3 -.else -PLIST_SUB+= CALENDAR:="@comment " -CONFIGURE_ARGS+=--disable-calendar -.endif - -.if !defined(WITHOUT_CDARCHIVING) -PLIST_SUB+= CDARCHIVING:="" -RUN_DEPENDS+= k3b:${PORTSDIR}/sysutils/k3b -.else -PLIST_SUB+= CDARCHIVING:="@comment " -CONFIGURE_ARGS+=--disable-cdarchiving -.endif - -.if !defined(WITHOUT_FINDIMAGES) -PLIST_SUB+= FINDIMAGES:="" -.else -PLIST_SUB+= FINDIMAGES:="@comment " -CONFIGURE_ARGS+=--disable-findimages -.endif - -.if !defined(WITHOUT_FLICKREXPORT) -PLIST_SUB+= FLICKREXPORT:="" -.else -PLIST_SUB+= FLICKREXPORT:="@comment " -CONFIGURE_ARGS+=--disable-flickrexport -.endif - -.if !defined(WITHOUT_GALLERYEXPORT) -PLIST_SUB+= GALLERYEXPORT:="" -.else -PLIST_SUB+= GALLERYEXPORT:="@comment " -CONFIGURE_ARGS+=--disable-galleryexport -.endif - -.if !defined(WITHOUT_GPSSYNC) -PLIST_SUB+= GPSSYNC:="" -.else -PLIST_SUB+= GPSSYNC:="@comment " -CONFIGURE_ARGS+=--disable-gpssync -.endif - -.if !defined(WITHOUT_HTMLEXPORT) -PLIST_SUB+= HTMLEXPORT:="" -LIB_DEPENDS+= xslt.2:${PORTSDIR}/textproc/libxslt -.else -PLIST_SUB+= HTMLEXPORT:="@comment " -CONFIGURE_ARGS+=--disable-htmlexport -.endif - -.if !defined(WITHOUT_IMAGEVIEWER) -PLIST_SUB+= IMAGEVIEWER:="" -.else -PLIST_SUB+= IMAGEVIEWER:="@comment " -CONFIGURE_ARGS+=--disable-imageviewer -.endif - -.if !defined(WITHOUT_JPEGLOSSLESS) -PLIST_SUB+= JPEGLOSSLESS:="" -RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick -.else -PLIST_SUB+= JPEGLOSSLESS:="@comment " -CONFIGURE_ARGS+=--disable-jpeglossless -.endif - -.if !defined(WITHOUT_KAMERAKLIENT) -PLIST_SUB+= KAMERAKLIENT:="" -LIB_DEPENDS+= gphoto2.2:${PORTSDIR}/graphics/libgphoto2 -.else -PLIST_SUB+= KAMERAKLIENT:="@comment " -CONFIGURE_ARGS+=--disable-kameraklient -.endif - -.if !defined(WITHOUT_METADATAEDIT) -PLIST_SUB+= METADATAEDIT:="" -.else -PLIST_SUB+= METADATAEDIT:="@comment " -CONFIGURE_ARGS+=--disable-metadataedit -.endif - -.if !defined(WITHOUT_MPEGENCODER) -PLIST_SUB+= MPEGENCODER:="" -RUN_DEPENDS+= mpeg2enc:${PORTSDIR}/multimedia/mjpegtools \ - convert:${PORTSDIR}/graphics/ImageMagick -MAN1+= images2mpg.1 -.else -PLIST_SUB+= MPEGENCODER:="@comment " -CONFIGURE_ARGS+=--disable-mpegencoder -.endif - -.if !defined(WITHOUT_PICASAWEBEXPORT) -PLIST_SUB+= PICASAWEBEXPORT:="" -.else -PLIST_SUB+= PICASAWEBEXPORT:="@comment " -CONFIGURE_ARGS+=--disable-picasawebexport -.endif - -.if !defined(WITHOUT_PRINTWIZARD) -PLIST_SUB+= PRINTWIZARD:="" -.else -PLIST_SUB+= PRINTWIZARD:="@comment " -CONFIGURE_ARGS+=--disable-printwizard -.endif - -.if !defined(WITHOUT_RAWCONVERTER) -PLIST_SUB+= RAWCONVERTER:="" -LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff -.else -PLIST_SUB+= RAWCONVERTER:="@comment " -CONFIGURE_ARGS+=--disable-rawconverter -.endif - -.if !defined(WITHOUT_SENDIMAGES) -PLIST_SUB+= SENDIMAGES:="" -.else -PLIST_SUB+= SENDIMAGES:="@comment " -CONFIGURE_ARGS+=--disable-sendimages -.endif - -.if !defined(WITHOUT_SIMPLEVIEWEREXPORT) -PLIST_SUB+= SIMPLEVIEWEREXPORT:="" -.else -PLIST_SUB+= SIMPLEVIEWEREXPORT:="@comment " -CONFIGURE_ARGS+=--disable-simpleviewerexport -.endif - -.if !defined(WITHOUT_SLIDESHOW) -PLIST_SUB+= SLIDESHOW:="" -.else -PLIST_SUB+= SLIDESHOW:="@comment " -CONFIGURE_ARGS+=--disable-slideshow -.endif - -.if !defined(WITHOUT_TIMEADJUST) -PLIST_SUB+= TIMEADJUST:="" -.else -PLIST_SUB+= TIMEADJUST:="@comment " -CONFIGURE_ARGS+=--disable-timeadjust -.endif - -.if !defined(WITHOUT_WALLPAPER) -PLIST_SUB+= WALLPAPER:="" -.else -PLIST_SUB+= WALLPAPER:="@comment " -CONFIGURE_ARGS+=--disable-wallpaper -.endif - -post-patch:: - @${REINPLACE_CMD} -e 's|-O2||g;s|-fno-schedule-insns -fno-inline||g' \ - ${WRKSRC}/${CONFIGURE_SCRIPT} - @${REINPLACE_CMD} -e 's@-lpthread@${PTHREAD_LIBS}@g' ${WRKSRC}/configure -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/graphics/kipi-plugins-kde4/distinfo b/graphics/kipi-plugins-kde4/distinfo index 11cde4b638b5..c0834d2c135c 100644 --- a/graphics/kipi-plugins-kde4/distinfo +++ b/graphics/kipi-plugins-kde4/distinfo @@ -1,3 +1,3 @@ -MD5 (kipi-plugins-0.1.7.tar.bz2) = e746988ca6e46c9c43d76132b8acb139 -SHA256 (kipi-plugins-0.1.7.tar.bz2) = 3c8a73d0658935b75fc0e0ed48f66cd72225249152bce969f4c9676c7038124b -SIZE (kipi-plugins-0.1.7.tar.bz2) = 8836654 +MD5 (kipi-plugins-0.2.0-beta6.tar.bz2) = 0442a58f2f9a68163025c205d89269d0 +SHA256 (kipi-plugins-0.2.0-beta6.tar.bz2) = 92d8945c7402d0376870ebf9432245da0d371f2331d887f535222c7d62691f1d +SIZE (kipi-plugins-0.2.0-beta6.tar.bz2) = 2922877 diff --git a/graphics/kipi-plugins-kde4/files/patch-CMakeLists.txt b/graphics/kipi-plugins-kde4/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..1c5e15761d42 --- /dev/null +++ b/graphics/kipi-plugins-kde4/files/patch-CMakeLists.txt @@ -0,0 +1,206 @@ +--- CMakeLists.txt.orig 2009-01-05 02:37:00.000000000 -0600 ++++ CMakeLists.txt 2009-01-28 11:30:36.000000000 -0600 +@@ -33,6 +33,183 @@ + INCLUDE(KDE4Defaults) + INCLUDE(MacroLibrary) + ++ message(STATUS "Check Kexiv2 library using pkg-config...") ++ ++ # use pkg-config to get the directories and then use these values ++ # in the FIND_PATH() and FIND_LIBRARY() calls ++ INCLUDE(UsePkgConfig) ++ ++ PKGCONFIG(libkexiv2-kde4 _KEXIV2IncDir _KEXIV2LinkDir _KEXIV2LinkFlags _KEXIV2Cflags) ++ ++ if(_KEXIV2LinkFlags) ++ # query pkg-config asking for a libkexiv2 >= 0.2.0 ++ EXEC_PROGRAM(${PKGCONFIG_EXECUTABLE} ARGS --atleast-version=0.2.0 libkexiv2-kde4 RETURN_VALUE _return_VALUE OUTPUT_VARIABLE _pkgconfigDevNull ) ++ if(_return_VALUE STREQUAL "0") ++ message(STATUS "Found libkexiv2 release >= 0.2.0") ++ set(KEXIV2_VERSION_GOOD_FOUND TRUE) ++ else(_return_VALUE STREQUAL "0") ++ message(STATUS "Found libkexiv2 release < 0.2.0, too old") ++ set(KEXIV2_VERSION_GOOD_FOUND FALSE) ++ set(KEXIV2_FOUND FALSE) ++ endif(_return_VALUE STREQUAL "0") ++ else(_KEXIV2LinkFlags) ++ set(KEXIV2_VERSION_GOOD_FOUND FALSE) ++ set(KEXIV2_FOUND FALSE) ++ endif(_KEXIV2LinkFlags) ++ ++ if(KEXIV2_VERSION_GOOD_FOUND) ++ set(KEXIV2_DEFINITIONS "${_KEXIV2Cflags}") ++ ++ FIND_PATH(KEXIV2_INCLUDE_DIR libkexiv2/version.h ++ ${_KEXIV2IncDir} ++ ) ++ ++ FIND_LIBRARY(KEXIV2_LIBRARIES NAMES kexiv2 ++ PATHS ++ ${_KEXIV2LinkDir} ++ ) ++ ++ if (KEXIV2_INCLUDE_DIR AND KEXIV2_LIBRARIES) ++ set(KEXIV2_FOUND TRUE) ++ endif (KEXIV2_INCLUDE_DIR AND KEXIV2_LIBRARIES) ++ endif(KEXIV2_VERSION_GOOD_FOUND) ++ if (KEXIV2_FOUND) ++ if (NOT Kexiv2_FIND_QUIETLY) ++ message(STATUS "Found libkexiv2: ${KEXIV2_LIBRARIES}") ++ endif (NOT Kexiv2_FIND_QUIETLY) ++ else (KEXIV2_FOUND) ++ if (Kexiv2_FIND_REQUIRED) ++ if (NOT KEXIV2_INCLUDE_DIR) ++ message(FATAL_ERROR "Could NOT find libkexiv2 header files") ++ endif (NOT KEXIV2_INCLUDE_DIR) ++ if (NOT KEXIV2_LIBRARIES) ++ message(FATAL_ERROR "Could NOT find libkexiv2 library") ++ endif (NOT KEXIV2_LIBRARIES) ++ endif (Kexiv2_FIND_REQUIRED) ++ endif (KEXIV2_FOUND) ++ ++ MARK_AS_ADVANCED(KEXIV2_INCLUDE_DIR KEXIV2_LIBRARIES) ++ ++ ++# Find the KDCraw libary now ++ message(STATUS "Check Kdcraw library using pkg-config...") ++ if(NOT WIN32) ++ # use pkg-config to get the directories and then use these values ++ # in the FIND_PATH() and FIND_LIBRARY() calls ++ INCLUDE(UsePkgConfig) ++ ++ PKGCONFIG(libkdcraw-kde4 _KDCRAWIncDir _KDCRAWLinkDir _KDCRAWLinkFlags _KDCRAWCflags) ++ ++ if(_KDCRAWLinkFlags) ++ # query pkg-config asking for a libkdcraw >= 0.2.0 ++ EXEC_PROGRAM(${PKGCONFIG_EXECUTABLE} ARGS --atleast-version=0.2.0 libkdcraw-kde4 RETURN_VALUE _return_VALUE OUTPUT_VARIABLE _pkgconfigDevNull ) ++ if(_return_VALUE STREQUAL "0") ++ message(STATUS "Found libkdcraw release >= 0.2.0") ++ set(KDCRAW_VERSION_GOOD_FOUND TRUE) ++ else(_return_VALUE STREQUAL "0") ++ message(STATUS "Found libkdcaw release < 0.2.0, too old") ++ set(KDCRAW_VERSION_GOOD_FOUND FALSE) ++ set(KDCRAW_FOUND FALSE) ++ endif(_return_VALUE STREQUAL "0") ++ else(_KDCRAWLinkFlags) ++ set(KDCRAW_VERSION_GOOD_FOUND FALSE) ++ set(KDCRAW_FOUND FALSE) ++ endif(_KDCRAWLinkFlags) ++ ELSE(NOT WIN32) ++ set(KDCRAW_VERSION_GOOD_FOUND TRUE) ++ ENDif(NOT WIN32) ++ ++ if(KDCRAW_VERSION_GOOD_FOUND) ++ set(KDCRAW_DEFINITIONS "${_KDCRAWCflags}") ++ ++ FIND_PATH(KDCRAW_INCLUDE_DIR libkdcraw/version.h ++ ${_KDCRAWIncDir} ++ ) ++ ++ FIND_LIBRARY(KDCRAW_LIBRARIES NAMES kdcraw ++ PATHS ++ ${_KDCRAWLinkDir} ++ ) ++ ++ if (KDCRAW_INCLUDE_DIR AND KDCRAW_LIBRARIES) ++ set(KDCRAW_FOUND TRUE) ++ set(KDCRAW_FOR_DNGCONVERTER TRUE) ++ endif (KDCRAW_INCLUDE_DIR AND KDCRAW_LIBRARIES) ++ endif(KDCRAW_VERSION_GOOD_FOUND) ++ if (KDCRAW_FOUND) ++ if (NOT Kdcraw_FIND_QUIETLY) ++ message(STATUS "Found libkdcraw: ${KDCRAW_LIBRARIES}") ++ endif (NOT Kdcraw_FIND_QUIETLY) ++ else (KDCRAW_FOUND) ++ if (Kdcraw_FIND_REQUIRED) ++ if (NOT KDCRAW_INCLUDE_DIR) ++ message(FATAL_ERROR "Could NOT find libkdcraw header files") ++ endif (NOT KDCRAW_INCLUDE_DIR) ++ if (NOT KDCRAW_LIBRARIES) ++ message(FATAL_ERROR "Could NOT find libkdcraw library") ++ endif (NOT KDCRAW_LIBRARIES) ++ endif (Kdcraw_FIND_REQUIRED) ++ endif (KDCRAW_FOUND) ++ ++ MARK_AS_ADVANCED(KDCRAW_INCLUDE_DIR KDCRAW_LIBRARIES) ++ ++ ++# Find the Kipi module now ++ if(NOT WIN32) ++ message(STATUS "Check Kipi library using pkg-config...") ++ ++ # use pkg-config to get the directories and then use these values ++ # in the FIND_PATH() and FIND_LIBRARY() calls ++ INCLUDE(UsePkgConfig) ++ ++ PKGCONFIG(libkipi-kde4 _KIPIIncDir _KIPILinkDir _KIPILinkFlags _KIPICflags) ++ ++ if(_KIPILinkFlags) ++ # query pkg-config asking for a libkipi >= 0.2.0 ++ exec_program(${PKGCONFIG_EXECUTABLE} ARGS --atleast-version=0.2.0 libkipi-kde4 RETURN_VALUE _return_VALUE OUTPUT_VARIABLE _pkgconfigDevNull ) ++ if(_return_VALUE STREQUAL "0") ++ message(STATUS "Found libkipi release >= 0.2.0") ++ set(KIPI_VERSION_GOOD_FOUND TRUE) ++ else(_return_VALUE STREQUAL "0") ++ message(STATUS "Found libkipi release < 0.2.0, too old") ++ set(KIPI_VERSION_GOOD_FOUND FALSE) ++ set(KIPI_FOUND FALSE) ++ endif(_return_VALUE STREQUAL "0") ++ else(_KIPILinkFlags) ++ set(KIPI_VERSION_GOOD_FOUND FALSE) ++ set(KIPI_FOUND FALSE) ++ endif(_KIPILinkFlags) ++ else(NOT WIN32) ++ set(KIPI_VERSION_GOOD_FOUND TRUE) ++ endif(NOT WIN32) ++ if(KIPI_VERSION_GOOD_FOUND) ++ set(KIPI_DEFINITIONS ${_KIPICflags}) ++ ++ find_path(KIPI_INCLUDE_DIR NAMES libkipi/version.h PATHS ${KDE4_INCLUDE_DIR} ${_KIPIIncDir}) ++ find_library(KIPI_LIBRARIES NAMES kipi PATHS ${KDE4_LIB_DIR} ${_KIPILinkDir}) ++ ++ if (KIPI_INCLUDE_DIR AND KIPI_LIBRARIES) ++ set(KIPI_FOUND TRUE) ++ endif (KIPI_INCLUDE_DIR AND KIPI_LIBRARIES) ++ endif(KIPI_VERSION_GOOD_FOUND) ++ if (KIPI_FOUND) ++ if (NOT Kipi_FIND_QUIETLY) ++ message(STATUS "Found libkipi: ${KIPI_LIBRARIES}") ++ endif (NOT Kipi_FIND_QUIETLY) ++ else (KIPI_FOUND) ++ if (Kipi_FIND_REQUIRED) ++ if (NOT KIPI_INCLUDE_DIR) ++ message(FATAL_ERROR "Could NOT find libkipi header files") ++ endif (NOT KIPI_INCLUDE_DIR) ++ if (NOT KIPI_LIBRARIES) ++ message(FATAL_ERROR "Could NOT find libkipi library") ++ endif (NOT KIPI_LIBRARIES) ++ endif (Kipi_FIND_REQUIRED) ++ endif (KIPI_FOUND) ++ ++ MARK_AS_ADVANCED(KIPI_INCLUDE_DIR KIPI_LIBRARIES) ++ ++ + # Depencies detection required by all plugins + FIND_PACKAGE(Kexiv2 REQUIRED) + FIND_PACKAGE(Kdcraw REQUIRED) +@@ -62,19 +239,6 @@ + MACRO_OPTIONAL_FIND_PACKAGE(X11) # For Slideshow and ImageViewer. + ENDIF(NOT WIN32 AND NOT APPLE) + +-IF(NOT WIN32) +- # Check KDcraw version installed to compile fine DngConverter plugin. +- FIND_PACKAGE(PkgConfig) +- PKG_CHECK_MODULES(Kdcraw libkdcraw>=0.4.0) +- IF(Kdcraw_FOUND) +- SET(KDCRAW_FOR_DNGCONVERTER TRUE) +- ELSE(Kdcraw_FOUND) +- SET(KDCRAW_FOR_DNGCONVERTER FALSE) +- ENDIF(Kdcraw_FOUND) +-ELSE(NOT WIN32) +- SET(KDCRAW_FOR_DNGCONVERTER TRUE) +-ENDIF(NOT WIN32) +- + INCLUDE(MacroOptionalDependPackage) + + # LINUX Only. diff --git a/graphics/kipi-plugins-kde4/pkg-descr b/graphics/kipi-plugins-kde4/pkg-descr index 9ab0d4a0beff..e17465bea03f 100644 --- a/graphics/kipi-plugins-kde4/pkg-descr +++ b/graphics/kipi-plugins-kde4/pkg-descr @@ -2,9 +2,6 @@ Kipi (KDE Image Plugin Interface) is an effort to develop a common plugin structure for Digikam, KimDaBa, Showimg and Gwenview. Its aim is to share image plugins among graphic applications. -This is a set of plugins using Kipi. +This is a set of plugins using Kipi for KDE 4.2 and higher. WWW: http://www.kipi-plugins.org/ - -- Alex Dupre -ale@FreeBSD.org diff --git a/graphics/kipi-plugins-kde4/pkg-plist b/graphics/kipi-plugins-kde4/pkg-plist index 40ef06303bb0..8354d3b4279a 100644 --- a/graphics/kipi-plugins-kde4/pkg-plist +++ b/graphics/kipi-plugins-kde4/pkg-plist @@ -1,1431 +1,927 @@ -%%ACQUIREIMAGES:%%lib/kde3/kipiplugin_acquireimages.a -%%ACQUIREIMAGES:%%lib/kde3/kipiplugin_acquireimages.la -%%ACQUIREIMAGES:%%lib/kde3/kipiplugin_acquireimages.so -%%ACQUIREIMAGES:%%share/services/kipiplugin_acquireimages.desktop - -%%BATCHPROCESSIMAGES:%%lib/kde3/kipiplugin_batchprocessimages.a -%%BATCHPROCESSIMAGES:%%lib/kde3/kipiplugin_batchprocessimages.la -%%BATCHPROCESSIMAGES:%%lib/kde3/kipiplugin_batchprocessimages.so -%%BATCHPROCESSIMAGES:%%share/apps/kipiplugin_batchprocessimages/data/handcursor.png -%%BATCHPROCESSIMAGES:%%share/apps/kipiplugin_batchprocessimages/icons/hicolor/32x32/actions/borderimages.png -%%BATCHPROCESSIMAGES:%%share/apps/kipiplugin_batchprocessimages/icons/hicolor/32x32/actions/colorimages.png -%%BATCHPROCESSIMAGES:%%share/apps/kipiplugin_batchprocessimages/icons/hicolor/32x32/actions/convertimages.png -%%BATCHPROCESSIMAGES:%%share/apps/kipiplugin_batchprocessimages/icons/hicolor/32x32/actions/effectimages.png -%%BATCHPROCESSIMAGES:%%share/apps/kipiplugin_batchprocessimages/icons/hicolor/32x32/actions/filterimages.png -%%BATCHPROCESSIMAGES:%%share/apps/kipiplugin_batchprocessimages/icons/hicolor/32x32/actions/recompressimages.png -%%BATCHPROCESSIMAGES:%%share/apps/kipiplugin_batchprocessimages/icons/hicolor/32x32/actions/renameimages.png -%%BATCHPROCESSIMAGES:%%share/apps/kipiplugin_batchprocessimages/icons/hicolor/32x32/actions/resizeimages.png -%%BATCHPROCESSIMAGES:%%share/services/kipiplugin_batchprocessimages.desktop -%%BATCHPROCESSIMAGES:%%@dirrm share/apps/kipiplugin_batchprocessimages/icons/hicolor/32x32/actions -%%BATCHPROCESSIMAGES:%%@dirrm share/apps/kipiplugin_batchprocessimages/icons/hicolor/32x32 -%%BATCHPROCESSIMAGES:%%@dirrm share/apps/kipiplugin_batchprocessimages/icons/hicolor -%%BATCHPROCESSIMAGES:%%@dirrm share/apps/kipiplugin_batchprocessimages/icons -%%BATCHPROCESSIMAGES:%%@dirrm share/apps/kipiplugin_batchprocessimages/data -%%BATCHPROCESSIMAGES:%%@dirrm share/apps/kipiplugin_batchprocessimages - -%%CALENDAR:%%lib/kde3/kipiplugin_calendar.a -%%CALENDAR:%%lib/kde3/kipiplugin_calendar.la -%%CALENDAR:%%lib/kde3/kipiplugin_calendar.so -%%CALENDAR:%%share/services/kipiplugin_calendar.desktop - -%%CDARCHIVING:%%lib/kde3/kipiplugin_cdarchiving.a -%%CDARCHIVING:%%lib/kde3/kipiplugin_cdarchiving.la -%%CDARCHIVING:%%lib/kde3/kipiplugin_cdarchiving.so -%%CDARCHIVING:%%share/apps/kipi/data/autorun/ShellExecute.bat -%%CDARCHIVING:%%share/apps/kipi/data/autorun/cdalbums.ico -%%CDARCHIVING:%%share/apps/kipi/data/image_broken.png -%%CDARCHIVING:%%share/apps/kipi/data/index.htm -%%CDARCHIVING:%%share/apps/kipi/gohome.png -%%CDARCHIVING:%%share/apps/kipi/up.png -%%CDARCHIVING:%%share/apps/kipi/valid-html401.png -%%CDARCHIVING:%%share/services/kipiplugin_cdarchiving.desktop -%%CDARCHIVING:%%@dirrm share/apps/kipi/data/autorun - -%%FINDIMAGES:%%lib/kde3/kipiplugin_findimages.a -%%FINDIMAGES:%%lib/kde3/kipiplugin_findimages.la -%%FINDIMAGES:%%lib/kde3/kipiplugin_findimages.so -%%FINDIMAGES:%%share/apps/kipiplugin_findimages/icons/hicolor/32x32/actions/finddupplicateimages.png -%%FINDIMAGES:%%share/services/kipiplugin_findimages.desktop -%%FINDIMAGES:%%@dirrm share/apps/kipiplugin_findimages/icons/hicolor/32x32/actions -%%FINDIMAGES:%%@dirrm share/apps/kipiplugin_findimages/icons/hicolor/32x32 -%%FINDIMAGES:%%@dirrm share/apps/kipiplugin_findimages/icons/hicolor -%%FINDIMAGES:%%@dirrm share/apps/kipiplugin_findimages/icons -%%FINDIMAGES:%%@dirrm share/apps/kipiplugin_findimages - -%%FLICKREXPORT:%%lib/kde3/kipiplugin_flickrexport.a -%%FLICKREXPORT:%%lib/kde3/kipiplugin_flickrexport.la -%%FLICKREXPORT:%%lib/kde3/kipiplugin_flickrexport.so -%%FLICKREXPORT:%%share/services/kipiplugin_flickrexport.desktop - -%%GALLERYEXPORT:%%lib/kde3/kipiplugin_galleryexport.a -%%GALLERYEXPORT:%%lib/kde3/kipiplugin_galleryexport.so -%%GALLERYEXPORT:%%lib/kde3/kipiplugin_galleryexport.la -%%GALLERYEXPORT:%%share/apps/kipiplugin_galleryexport/pics/gallery.png -%%GALLERYEXPORT:%%share/services/kipiplugin_galleryexport.desktop -%%GALLERYEXPORT:%%@dirrm share/apps/kipiplugin_galleryexport/pics -%%GALLERYEXPORT:%%@dirrm share/apps/kipiplugin_galleryexport - -%%GPSSYNC:%%lib/kde3/kipiplugin_gpssync.a -%%GPSSYNC:%%lib/kde3/kipiplugin_gpssync.la -%%GPSSYNC:%%lib/kde3/kipiplugin_gpssync.so -%%GPSSYNC:%%share/apps/kipiplugin_gpssync/icons/hicolor/16x16/actions/gpsimagetag.png -%%GPSSYNC:%%share/apps/kipiplugin_gpssync/icons/hicolor/32x32/actions/gpsimagetag.png -%%GPSSYNC:%%share/services/kipiplugin_gpssync.desktop -%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync/icons/hicolor/16x16/actions -%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync/icons/hicolor/16x16 -%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync/icons/hicolor/32x32/actions -%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync/icons/hicolor/32x32 -%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync/icons/hicolor -%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync/icons -%%GPSSYNC:%%@dirrm share/apps/kipiplugin_gpssync - -%%HTMLEXPORT:%%lib/kde3/kipiplugin_htmlexport.a -%%HTMLEXPORT:%%lib/kde3/kipiplugin_htmlexport.la -%%HTMLEXPORT:%%lib/kde3/kipiplugin_htmlexport.so -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/classic/classic.desktop -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/classic/gohome.png -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/classic/template.xsl -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/classic/up.png -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/cleanframes/black.css -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/cleanframes/blue.css -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/cleanframes/brown.css -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/cleanframes/cleanframes.desktop -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/cleanframes/green.css -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/cleanframes/lavender.css -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/cleanframes/pink.css -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/cleanframes/red.css -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/cleanframes/star.png -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/cleanframes/template.xsl -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/cleanframes/yellow.css -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/frames/frames.desktop -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/frames/style.css -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/frames/template.xsl -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/matrix/bg.png -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/matrix/matrix.desktop -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/matrix/style.css -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/matrix/template.xsl -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/s0/next.png -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/s0/next_disabled.png -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/s0/previous.png -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/s0/previous_disabled.png -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/s0/s0.desktop -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/s0/style.css -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/s0/template.xsl -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/s0/up.png -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/simple/dark.css -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/simple/natural.css -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/simple/simple.desktop -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/simple/template.xsl -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/snow/next.png -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/snow/next_disabled.png -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/snow/previous.png -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/snow/previous_disabled.png -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/snow/snow.desktop -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/snow/style.css -%%HTMLEXPORT:%%share/apps/kipiplugin_htmlexport/themes/snow/template.xsl -%%HTMLEXPORT:%%share/config.kcfg/htmlexportconfig.kcfg -%%HTMLEXPORT:%%share/services/kipiplugin_htmlexport.desktop -%%HTMLEXPORT:%%@dirrm share/apps/kipiplugin_htmlexport/themes/classic -%%HTMLEXPORT:%%@dirrm share/apps/kipiplugin_htmlexport/themes/cleanframes -%%HTMLEXPORT:%%@dirrm share/apps/kipiplugin_htmlexport/themes/frames -%%HTMLEXPORT:%%@dirrm share/apps/kipiplugin_htmlexport/themes/matrix -%%HTMLEXPORT:%%@dirrm share/apps/kipiplugin_htmlexport/themes/s0 -%%HTMLEXPORT:%%@dirrm share/apps/kipiplugin_htmlexport/themes/simple -%%HTMLEXPORT:%%@dirrm share/apps/kipiplugin_htmlexport/themes/snow -%%HTMLEXPORT:%%@dirrm share/apps/kipiplugin_htmlexport/themes -%%HTMLEXPORT:%%@dirrm share/apps/kipiplugin_htmlexport - -%%IMAGEVIEWER:%%lib/kde3/kipiplugin_viewer.a -%%IMAGEVIEWER:%%lib/kde3/kipiplugin_viewer.la -%%IMAGEVIEWER:%%lib/kde3/kipiplugin_viewer.so -%%IMAGEVIEWER:%%share/apps/kipiplugin_viewer/icons/hicolor/16x16/actions/ogl.png -%%IMAGEVIEWER:%%share/apps/kipiplugin_viewer/icons/hicolor/32x32/actions/ogl.png -%%IMAGEVIEWER:%%share/services/kipiplugin_viewer.desktop -%%IMAGEVIEWER:%%@dirrm share/apps/kipiplugin_viewer/icons/hicolor/16x16/actions -%%IMAGEVIEWER:%%@dirrm share/apps/kipiplugin_viewer/icons/hicolor/16x16 -%%IMAGEVIEWER:%%@dirrm share/apps/kipiplugin_viewer/icons/hicolor/32x32/actions -%%IMAGEVIEWER:%%@dirrm share/apps/kipiplugin_viewer/icons/hicolor/32x32 -%%IMAGEVIEWER:%%@dirrm share/apps/kipiplugin_viewer/icons/hicolor -%%IMAGEVIEWER:%%@dirrm share/apps/kipiplugin_viewer/icons -%%IMAGEVIEWER:%%@dirrm share/apps/kipiplugin_viewer - -%%JPEGLOSSLESS:%%lib/kde3/kipiplugin_jpeglossless.a -%%JPEGLOSSLESS:%%lib/kde3/kipiplugin_jpeglossless.la -%%JPEGLOSSLESS:%%lib/kde3/kipiplugin_jpeglossless.so -%%JPEGLOSSLESS:%%share/apps/kipiplugin_jpeglossless/icons/hicolor/32x32/actions/flip.png -%%JPEGLOSSLESS:%%share/apps/kipiplugin_jpeglossless/icons/hicolor/32x32/actions/grayscaleconvert.png -%%JPEGLOSSLESS:%%share/services/kipiplugin_jpeglossless.desktop -%%JPEGLOSSLESS:%%@dirrm share/apps/kipiplugin_jpeglossless/icons/hicolor/32x32/actions -%%JPEGLOSSLESS:%%@dirrm share/apps/kipiplugin_jpeglossless/icons/hicolor/32x32 -%%JPEGLOSSLESS:%%@dirrm share/apps/kipiplugin_jpeglossless/icons/hicolor -%%JPEGLOSSLESS:%%@dirrm share/apps/kipiplugin_jpeglossless/icons -%%JPEGLOSSLESS:%%@dirrm share/apps/kipiplugin_jpeglossless - -%%KAMERAKLIENT:%%lib/kde3/kipiplugin_kameraklient.a -%%KAMERAKLIENT:%%lib/kde3/kipiplugin_kameraklient.la -%%KAMERAKLIENT:%%lib/kde3/kipiplugin_kameraklient.so -%%KAMERAKLIENT:%%share/services/kipiplugin_kameraklient.desktop - -%%METADATAEDIT:%%lib/kde3/kipiplugin_metadataedit.a -%%METADATAEDIT:%%lib/kde3/kipiplugin_metadataedit.la -%%METADATAEDIT:%%lib/kde3/kipiplugin_metadataedit.so -%%METADATAEDIT:%%share/services/kipiplugin_metadataedit.desktop - -%%MPEGENCODER:%%bin/images2mpg -%%MPEGENCODER:%%lib/kde3/kipiplugin_mpegencoder.a -%%MPEGENCODER:%%lib/kde3/kipiplugin_mpegencoder.la -%%MPEGENCODER:%%lib/kde3/kipiplugin_mpegencoder.so -%%MPEGENCODER:%%share/services/kipiplugin_mpegencoder.desktop - -%%PICASAWEBEXPORT:%%lib/kde3/kipiplugin_picasawebexport.a -%%PICASAWEBEXPORT:%%lib/kde3/kipiplugin_picasawebexport.la -%%PICASAWEBEXPORT:%%lib/kde3/kipiplugin_picasawebexport.so -%%PICASAWEBEXPORT:%%share/services/kipiplugin_picasawebexport.desktop - -%%PRINTWIZARD:%%lib/kde3/kipiplugin_printwizard.a -%%PRINTWIZARD:%%lib/kde3/kipiplugin_printwizard.la -%%PRINTWIZARD:%%lib/kde3/kipiplugin_printwizard.so -%%PRINTWIZARD:%%share/services/kipiplugin_printwizard.desktop - -%%RAWCONVERTER:%%lib/kde3/kipiplugin_rawconverter.a -%%RAWCONVERTER:%%lib/kde3/kipiplugin_rawconverter.la -%%RAWCONVERTER:%%lib/kde3/kipiplugin_rawconverter.so -%%RAWCONVERTER:%%share/apps/kipiplugin_rawconverter/icons/hicolor/128x128/actions/rawconverterbatch.png -%%RAWCONVERTER:%%share/apps/kipiplugin_rawconverter/icons/hicolor/128x128/actions/rawconvertersingle.png -%%RAWCONVERTER:%%share/apps/kipiplugin_rawconverter/profiles/adobergb.icm -%%RAWCONVERTER:%%share/apps/kipiplugin_rawconverter/profiles/prophoto.icm -%%RAWCONVERTER:%%share/apps/kipiplugin_rawconverter/profiles/srgb.icm -%%RAWCONVERTER:%%share/apps/kipiplugin_rawconverter/profiles/widegamut.icm -%%RAWCONVERTER:%%share/services/kipiplugin_rawconverter.desktop -%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/icons/hicolor/128x128/actions -%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/icons/hicolor/128x128 -%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/icons/hicolor -%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/icons -%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter/profiles -%%RAWCONVERTER:%%@dirrm share/apps/kipiplugin_rawconverter - -%%SENDIMAGES:%%lib/kde3/kipiplugin_sendimages.a -%%SENDIMAGES:%%lib/kde3/kipiplugin_sendimages.la -%%SENDIMAGES:%%lib/kde3/kipiplugin_sendimages.so -%%SENDIMAGES:%%share/services/kipiplugin_sendimages.desktop - -%%SIMPLEVIEWEREXPORT:%%lib/kde3/kipiplugin_simpleviewer.a -%%SIMPLEVIEWEREXPORT:%%lib/kde3/kipiplugin_simpleviewer.la -%%SIMPLEVIEWEREXPORT:%%lib/kde3/kipiplugin_simpleviewer.so -%%SIMPLEVIEWEREXPORT:%%share/apps/kipiplugin_simpleviewerexport/index.template -%%SIMPLEVIEWEREXPORT:%%share/apps/kipiplugin_simpleviewerexport/simpleviewer_html/space.png -%%SIMPLEVIEWEREXPORT:%%share/services/kipiplugin_simpleviewer.desktop -%%SIMPLEVIEWEREXPORT:%%@dirrm share/apps/kipiplugin_simpleviewerexport/simpleviewer_html -%%SIMPLEVIEWEREXPORT:%%@dirrm share/apps/kipiplugin_simpleviewerexport - -%%SLIDESHOW:%%lib/kde3/kipiplugin_slideshow.a -%%SLIDESHOW:%%lib/kde3/kipiplugin_slideshow.la -%%SLIDESHOW:%%lib/kde3/kipiplugin_slideshow.so -%%SLIDESHOW:%%share/apps/kipiplugin_slideshow/icons/hicolor/22x22/actions/slideshow.png -%%SLIDESHOW:%%share/services/kipiplugin_slideshow.desktop -%%SLIDESHOW:%%@dirrm share/apps/kipiplugin_slideshow/icons/hicolor/22x22/actions -%%SLIDESHOW:%%@dirrm share/apps/kipiplugin_slideshow/icons/hicolor/22x22 -%%SLIDESHOW:%%@dirrm share/apps/kipiplugin_slideshow/icons/hicolor -%%SLIDESHOW:%%@dirrm share/apps/kipiplugin_slideshow/icons -%%SLIDESHOW:%%@dirrm share/apps/kipiplugin_slideshow - -%%TIMEADJUST:%%lib/kde3/kipiplugin_timeadjust.a -%%TIMEADJUST:%%lib/kde3/kipiplugin_timeadjust.la -%%TIMEADJUST:%%lib/kde3/kipiplugin_timeadjust.so -%%TIMEADJUST:%%share/services/kipiplugin_timeadjust.desktop - -%%WALLPAPER:%%lib/kde3/kipiplugin_wallpaper.a -%%WALLPAPER:%%lib/kde3/kipiplugin_wallpaper.la -%%WALLPAPER:%%lib/kde3/kipiplugin_wallpaper.so -%%WALLPAPER:%%share/services/kipiplugin_wallpaper.desktop - -lib/libkipiplugins.a -lib/libkipiplugins.la +bin/dngconverter +lib/kde4/kipiplugin_acquireimages.so +lib/kde4/kipiplugin_calendar.so +lib/kde4/kipiplugin_fbexport.so +lib/kde4/kipiplugin_flickrexport.so +lib/kde4/kipiplugin_galleryexport.so +lib/kde4/kipiplugin_gpssync.so +lib/kde4/kipiplugin_htmlexport.so +lib/kde4/kipiplugin_imageviewer.so +lib/kde4/kipiplugin_jpeglossless.so +lib/kde4/kipiplugin_metadataedit.so +lib/kde4/kipiplugin_picasawebexport.so +lib/kde4/kipiplugin_printwizard.so +lib/kde4/kipiplugin_rawconverter.so +lib/kde4/kipiplugin_sendimages.so +lib/kde4/kipiplugin_simpleviewer.so +lib/kde4/kipiplugin_slideshow.so +lib/kde4/kipiplugin_smugexport.so +lib/kde4/kipiplugin_timeadjust.so +lib/kde4/kipiplugin_dngconverter.so +lib/kde4/kipiplugin_ipodexport.so +lib/kde4/kipiplugin_removeredeyes.so lib/libkipiplugins.so -lib/libkipiplugins.so.0 - -share/apps/kipi/tips - -share/doc/HTML/de/kipi-plugins/acquire-savetargetpreview.png -share/doc/HTML/de/kipi-plugins/acquire-screenshotpreview.png -share/doc/HTML/de/kipi-plugins/acquireimages.docbook -share/doc/HTML/de/kipi-plugins/borderimages.docbook -share/doc/HTML/de/kipi-plugins/calendar.docbook -share/doc/HTML/de/kipi-plugins/cdarchiving.docbook -share/doc/HTML/de/kipi-plugins/colorimages.docbook -share/doc/HTML/de/kipi-plugins/common -share/doc/HTML/de/kipi-plugins/convertimages.docbook -share/doc/HTML/de/kipi-plugins/effectimages.docbook -share/doc/HTML/de/kipi-plugins/filterimages.docbook -share/doc/HTML/de/kipi-plugins/findduplicateimages.docbook -share/doc/HTML/de/kipi-plugins/flickrexport.docbook -share/doc/HTML/de/kipi-plugins/flickrexportauthenticated.png -share/doc/HTML/de/kipi-plugins/flickrexportcontinue.png -share/doc/HTML/de/kipi-plugins/flickrexportsignup.png -share/doc/HTML/de/kipi-plugins/flickrexportuploaddialog.png -share/doc/HTML/de/kipi-plugins/flickrexportuploading.png -share/doc/HTML/de/kipi-plugins/galleryexport.docbook -share/doc/HTML/de/kipi-plugins/geolocalization.docbook -share/doc/HTML/de/kipi-plugins/imagegallery_albumsettings.png -share/doc/HTML/de/kipi-plugins/imagegallery_collectionselection.png -share/doc/HTML/de/kipi-plugins/imagegallery_looksettings.png -share/doc/HTML/de/kipi-plugins/imagegallery_preview.png -share/doc/HTML/de/kipi-plugins/imagegallery_progress.png -share/doc/HTML/de/kipi-plugins/imagegallery_thumbsettings.png -share/doc/HTML/de/kipi-plugins/imagesgallery.docbook -share/doc/HTML/de/kipi-plugins/imageviewer.docbook -share/doc/HTML/de/kipi-plugins/index.cache.bz2 -share/doc/HTML/de/kipi-plugins/index.docbook -share/doc/HTML/de/kipi-plugins/jpeglossless.docbook -share/doc/HTML/de/kipi-plugins/kameraklient.docbook -share/doc/HTML/de/kipi-plugins/metadataeditor.docbook -share/doc/HTML/de/kipi-plugins/mpeg_encode_dialog.png -share/doc/HTML/de/kipi-plugins/mpegencoder.docbook -share/doc/HTML/de/kipi-plugins/printwizard.docbook -share/doc/HTML/de/kipi-plugins/raw_converter_batch.png -share/doc/HTML/de/kipi-plugins/raw_converter_single.png -share/doc/HTML/de/kipi-plugins/rawconverter.docbook -share/doc/HTML/de/kipi-plugins/recompressimages.docbook -share/doc/HTML/de/kipi-plugins/renameimages.docbook -share/doc/HTML/de/kipi-plugins/resizeimages.docbook -share/doc/HTML/de/kipi-plugins/sendimages.docbook -share/doc/HTML/de/kipi-plugins/sendimages_imageselection.png -share/doc/HTML/de/kipi-plugins/sendimages_mail.png -share/doc/HTML/de/kipi-plugins/sendimages_progress.png -share/doc/HTML/de/kipi-plugins/slideshow.docbook -share/doc/HTML/de/kipi-plugins/slideshow.png -share/doc/HTML/de/kipi-plugins/slideshow_dialog.png -share/doc/HTML/de/kipi-plugins/timeadjust.docbook -share/doc/HTML/de/kipi-plugins/wallpaper.docbook -share/doc/HTML/en/kipi-plugins/README -share/doc/HTML/en/kipi-plugins/acquire-savetargetpreview.png -share/doc/HTML/en/kipi-plugins/acquire-screenshotpreview.png -share/doc/HTML/en/kipi-plugins/acquireimages.docbook -share/doc/HTML/en/kipi-plugins/calendar.docbook -share/doc/HTML/en/kipi-plugins/cdarchiving.docbook -share/doc/HTML/en/kipi-plugins/colorimages.docbook -share/doc/HTML/en/kipi-plugins/common -share/doc/HTML/en/kipi-plugins/convertimages.docbook -share/doc/HTML/en/kipi-plugins/effectimages.docbook -share/doc/HTML/en/kipi-plugins/filterimages.docbook -share/doc/HTML/en/kipi-plugins/findduplicateimages.docbook -share/doc/HTML/en/kipi-plugins/flickrexport.docbook -share/doc/HTML/en/kipi-plugins/flickrexportauthenticated.png -share/doc/HTML/en/kipi-plugins/flickrexportcontinue.png -share/doc/HTML/en/kipi-plugins/flickrexportsignup.png -share/doc/HTML/en/kipi-plugins/flickrexportuploaddialog.png -share/doc/HTML/en/kipi-plugins/flickrexportuploading.png -share/doc/HTML/en/kipi-plugins/galleryexport.docbook -share/doc/HTML/en/kipi-plugins/geolocation.docbook -share/doc/HTML/en/kipi-plugins/geolocationcorrelate.png -share/doc/HTML/en/kipi-plugins/geolocationcorrelate1.png -share/doc/HTML/en/kipi-plugins/geolocationeditcoords.png -share/doc/HTML/en/kipi-plugins/imagegallery_albumsettings.png -share/doc/HTML/en/kipi-plugins/imagegallery_collectionselection.png -share/doc/HTML/en/kipi-plugins/imagegallery_looksettings.png -share/doc/HTML/en/kipi-plugins/imagegallery_preview.png -share/doc/HTML/en/kipi-plugins/imagegallery_progress.png -share/doc/HTML/en/kipi-plugins/imagegallery_thumbsettings.png -share/doc/HTML/en/kipi-plugins/imagesgallery.docbook -share/doc/HTML/en/kipi-plugins/imageviewer.docbook -share/doc/HTML/en/kipi-plugins/index.cache.bz2 -share/doc/HTML/en/kipi-plugins/index.docbook -share/doc/HTML/en/kipi-plugins/jpeglossless.docbook -share/doc/HTML/en/kipi-plugins/kameraklient.docbook -share/doc/HTML/en/kipi-plugins/metadataeditor.docbook -share/doc/HTML/en/kipi-plugins/mpeg_encode_dialog.png -share/doc/HTML/en/kipi-plugins/mpegencoder.docbook -share/doc/HTML/en/kipi-plugins/printwizard.docbook -share/doc/HTML/en/kipi-plugins/raw_converter_batch.png -share/doc/HTML/en/kipi-plugins/raw_converter_single.png -share/doc/HTML/en/kipi-plugins/rawconverter.docbook -share/doc/HTML/en/kipi-plugins/recompressimages.docbook -share/doc/HTML/en/kipi-plugins/renameimages.docbook -share/doc/HTML/en/kipi-plugins/resizeimages.docbook -share/doc/HTML/en/kipi-plugins/sendimages.docbook -share/doc/HTML/en/kipi-plugins/sendimages_imageselection.png -share/doc/HTML/en/kipi-plugins/sendimages_mail.png -share/doc/HTML/en/kipi-plugins/sendimages_progress.png -share/doc/HTML/en/kipi-plugins/slideshow.docbook -share/doc/HTML/en/kipi-plugins/slideshow.png -share/doc/HTML/en/kipi-plugins/slideshow_dialog.png -share/doc/HTML/en/kipi-plugins/timeadjust.docbook -share/doc/HTML/en/kipi-plugins/wallpaper.docbook -share/doc/HTML/es/kipi-plugins/acquire-savetargetpreview.png -share/doc/HTML/es/kipi-plugins/acquire-screenshotpreview.png -share/doc/HTML/es/kipi-plugins/acquireimages.docbook -share/doc/HTML/es/kipi-plugins/borderimages.docbook -share/doc/HTML/es/kipi-plugins/calendar.docbook -share/doc/HTML/es/kipi-plugins/cdarchiving.docbook -share/doc/HTML/es/kipi-plugins/colorimages.docbook -share/doc/HTML/es/kipi-plugins/common -share/doc/HTML/es/kipi-plugins/convertimages.docbook -share/doc/HTML/es/kipi-plugins/effectimages.docbook -share/doc/HTML/es/kipi-plugins/filterimages.docbook -share/doc/HTML/es/kipi-plugins/findduplicateimages.docbook -share/doc/HTML/es/kipi-plugins/flickrexport.docbook -share/doc/HTML/es/kipi-plugins/flickrexportauthenticated.png -share/doc/HTML/es/kipi-plugins/flickrexportcontinue.png -share/doc/HTML/es/kipi-plugins/flickrexportsignup.png -share/doc/HTML/es/kipi-plugins/flickrexportuploaddialog.png -share/doc/HTML/es/kipi-plugins/flickrexportuploading.png -share/doc/HTML/es/kipi-plugins/galleryexport.docbook -share/doc/HTML/es/kipi-plugins/geolocalization.docbook -share/doc/HTML/es/kipi-plugins/geolocation.docbook -share/doc/HTML/es/kipi-plugins/imagegallery_albumsettings.png -share/doc/HTML/es/kipi-plugins/imagegallery_collectionselection.png -share/doc/HTML/es/kipi-plugins/imagegallery_looksettings.png -share/doc/HTML/es/kipi-plugins/imagegallery_preview.png -share/doc/HTML/es/kipi-plugins/imagegallery_progress.png -share/doc/HTML/es/kipi-plugins/imagegallery_thumbsettings.png -share/doc/HTML/es/kipi-plugins/imagesgallery.docbook -share/doc/HTML/es/kipi-plugins/imageviewer.docbook -share/doc/HTML/es/kipi-plugins/index.cache.bz2 -share/doc/HTML/es/kipi-plugins/index.docbook -share/doc/HTML/es/kipi-plugins/jpeglossless.docbook -share/doc/HTML/es/kipi-plugins/kameraklient.docbook -share/doc/HTML/es/kipi-plugins/metadataeditor.docbook -share/doc/HTML/es/kipi-plugins/mpeg_encode_dialog.png -share/doc/HTML/es/kipi-plugins/mpegencoder.docbook -share/doc/HTML/es/kipi-plugins/printwizard.docbook -share/doc/HTML/es/kipi-plugins/raw_converter_batch.png -share/doc/HTML/es/kipi-plugins/raw_converter_single.png -share/doc/HTML/es/kipi-plugins/rawconverter.docbook -share/doc/HTML/es/kipi-plugins/recompressimages.docbook -share/doc/HTML/es/kipi-plugins/renameimages.docbook -share/doc/HTML/es/kipi-plugins/resizeimages.docbook -share/doc/HTML/es/kipi-plugins/sendimages.docbook -share/doc/HTML/es/kipi-plugins/sendimages_imageselection.png -share/doc/HTML/es/kipi-plugins/sendimages_mail.png -share/doc/HTML/es/kipi-plugins/sendimages_progress.png -share/doc/HTML/es/kipi-plugins/slideshow.docbook -share/doc/HTML/es/kipi-plugins/slideshow.png -share/doc/HTML/es/kipi-plugins/slideshow_dialog.png -share/doc/HTML/es/kipi-plugins/timeadjust.docbook -share/doc/HTML/es/kipi-plugins/wallpaper.docbook -share/doc/HTML/et/kipi-plugins/acquireimages.docbook -share/doc/HTML/et/kipi-plugins/borderimages.docbook -share/doc/HTML/et/kipi-plugins/calendar.docbook -share/doc/HTML/et/kipi-plugins/cdarchiving.docbook -share/doc/HTML/et/kipi-plugins/colorimages.docbook -share/doc/HTML/et/kipi-plugins/common -share/doc/HTML/et/kipi-plugins/convertimages.docbook -share/doc/HTML/et/kipi-plugins/effectimages.docbook -share/doc/HTML/et/kipi-plugins/filterimages.docbook -share/doc/HTML/et/kipi-plugins/findduplicateimages.docbook -share/doc/HTML/et/kipi-plugins/flickrexport.docbook -share/doc/HTML/et/kipi-plugins/galleryexport.docbook -share/doc/HTML/et/kipi-plugins/geolocation.docbook -share/doc/HTML/et/kipi-plugins/imagesgallery.docbook -share/doc/HTML/et/kipi-plugins/imageviewer.docbook -share/doc/HTML/et/kipi-plugins/index.cache.bz2 -share/doc/HTML/et/kipi-plugins/index.docbook -share/doc/HTML/et/kipi-plugins/jpeglossless.docbook -share/doc/HTML/et/kipi-plugins/kameraklient.docbook -share/doc/HTML/et/kipi-plugins/metadataeditor.docbook -share/doc/HTML/et/kipi-plugins/mpegencoder.docbook -share/doc/HTML/et/kipi-plugins/printwizard.docbook -share/doc/HTML/et/kipi-plugins/rawconverter.docbook -share/doc/HTML/et/kipi-plugins/recompressimages.docbook -share/doc/HTML/et/kipi-plugins/renameimages.docbook -share/doc/HTML/et/kipi-plugins/resizeimages.docbook -share/doc/HTML/et/kipi-plugins/sendimages.docbook -share/doc/HTML/et/kipi-plugins/slideshow.docbook -share/doc/HTML/et/kipi-plugins/timeadjust.docbook -share/doc/HTML/et/kipi-plugins/wallpaper.docbook -share/doc/HTML/it/kipi-plugins/acquireimages.docbook -share/doc/HTML/it/kipi-plugins/borderimages.docbook -share/doc/HTML/it/kipi-plugins/calendar.docbook -share/doc/HTML/it/kipi-plugins/cdarchiving.docbook -share/doc/HTML/it/kipi-plugins/colorimages.docbook -share/doc/HTML/it/kipi-plugins/common -share/doc/HTML/it/kipi-plugins/convertimages.docbook -share/doc/HTML/it/kipi-plugins/effectimages.docbook -share/doc/HTML/it/kipi-plugins/filterimages.docbook -share/doc/HTML/it/kipi-plugins/findduplicateimages.docbook -share/doc/HTML/it/kipi-plugins/flickrexport.docbook -share/doc/HTML/it/kipi-plugins/galleryexport.docbook -share/doc/HTML/it/kipi-plugins/geolocation.docbook -share/doc/HTML/it/kipi-plugins/geolocalization.docbook -share/doc/HTML/it/kipi-plugins/imagesgallery.docbook -share/doc/HTML/it/kipi-plugins/imageviewer.docbook -share/doc/HTML/it/kipi-plugins/index.cache.bz2 -share/doc/HTML/it/kipi-plugins/index.docbook -share/doc/HTML/it/kipi-plugins/jpeglossless.docbook -share/doc/HTML/it/kipi-plugins/kameraklient.docbook -share/doc/HTML/it/kipi-plugins/metadataeditor.docbook -share/doc/HTML/it/kipi-plugins/mpegencoder.docbook -share/doc/HTML/it/kipi-plugins/printwizard.docbook -share/doc/HTML/it/kipi-plugins/rawconverter.docbook -share/doc/HTML/it/kipi-plugins/recompressimages.docbook -share/doc/HTML/it/kipi-plugins/renameimages.docbook -share/doc/HTML/it/kipi-plugins/resizeimages.docbook -share/doc/HTML/it/kipi-plugins/sendimages.docbook -share/doc/HTML/it/kipi-plugins/slideshow.docbook -share/doc/HTML/it/kipi-plugins/timeadjust.docbook -share/doc/HTML/it/kipi-plugins/wallpaper.docbook -share/doc/HTML/nl/kipi-plugins/acquireimages.docbook -share/doc/HTML/nl/kipi-plugins/borderimages.docbook -share/doc/HTML/nl/kipi-plugins/calendar.docbook -share/doc/HTML/nl/kipi-plugins/cdarchiving.docbook -share/doc/HTML/nl/kipi-plugins/colorimages.docbook -share/doc/HTML/nl/kipi-plugins/common -share/doc/HTML/nl/kipi-plugins/convertimages.docbook -share/doc/HTML/nl/kipi-plugins/diroperations.docbook -share/doc/HTML/nl/kipi-plugins/effectimages.docbook -share/doc/HTML/nl/kipi-plugins/filterimages.docbook -share/doc/HTML/nl/kipi-plugins/findduplicateimages.docbook -share/doc/HTML/nl/kipi-plugins/flickrexport.docbook -share/doc/HTML/nl/kipi-plugins/galleryexport.docbook -share/doc/HTML/nl/kipi-plugins/gammacalibration.docbook -share/doc/HTML/nl/kipi-plugins/imagesgallery.docbook -share/doc/HTML/nl/kipi-plugins/index.cache.bz2 -share/doc/HTML/nl/kipi-plugins/index.docbook -share/doc/HTML/nl/kipi-plugins/jpeglossless.docbook -share/doc/HTML/nl/kipi-plugins/kameraklient.docbook -share/doc/HTML/nl/kipi-plugins/mpegencoder.docbook -share/doc/HTML/nl/kipi-plugins/printwizard.docbook -share/doc/HTML/nl/kipi-plugins/raw_converter_batch.png -share/doc/HTML/nl/kipi-plugins/raw_converter_single.png -share/doc/HTML/nl/kipi-plugins/rawconverter.docbook -share/doc/HTML/nl/kipi-plugins/recompressimages.docbook -share/doc/HTML/nl/kipi-plugins/renameimages.docbook -share/doc/HTML/nl/kipi-plugins/resizeimages.docbook -share/doc/HTML/nl/kipi-plugins/sendimages.docbook -share/doc/HTML/nl/kipi-plugins/sendimages_imageselection.png -share/doc/HTML/nl/kipi-plugins/sendimages_mail.png -share/doc/HTML/nl/kipi-plugins/sendimages_progress.png -share/doc/HTML/nl/kipi-plugins/slideshow.docbook -share/doc/HTML/nl/kipi-plugins/slideshow_dialog.png -share/doc/HTML/nl/kipi-plugins/timeadjust.docbook -share/doc/HTML/nl/kipi-plugins/wallpaper.docbook -share/doc/HTML/pt_BR/kipi-plugins/acquireimages.docbook -share/doc/HTML/pt_BR/kipi-plugins/borderimages.docbook -share/doc/HTML/pt_BR/kipi-plugins/calendar.docbook -share/doc/HTML/pt_BR/kipi-plugins/cdarchiving.docbook -share/doc/HTML/pt_BR/kipi-plugins/colorimages.docbook -share/doc/HTML/pt_BR/kipi-plugins/commenteditor.docbook -share/doc/HTML/pt_BR/kipi-plugins/common -share/doc/HTML/pt_BR/kipi-plugins/convertimages.docbook -share/doc/HTML/pt_BR/kipi-plugins/diroperations.docbook -share/doc/HTML/pt_BR/kipi-plugins/effectimages.docbook -share/doc/HTML/pt_BR/kipi-plugins/filterimages.docbook -share/doc/HTML/pt_BR/kipi-plugins/findimages.docbook -share/doc/HTML/pt_BR/kipi-plugins/gammacalibration.docbook -share/doc/HTML/pt_BR/kipi-plugins/imagesgallery.docbook -share/doc/HTML/pt_BR/kipi-plugins/index.cache.bz2 -share/doc/HTML/pt_BR/kipi-plugins/index.docbook -share/doc/HTML/pt_BR/kipi-plugins/jpeglossless.docbook -share/doc/HTML/pt_BR/kipi-plugins/kameraklient.docbook -share/doc/HTML/pt_BR/kipi-plugins/mpegencoder.docbook -share/doc/HTML/pt_BR/kipi-plugins/printwizard.docbook -share/doc/HTML/pt_BR/kipi-plugins/rawconverter.docbook -share/doc/HTML/pt_BR/kipi-plugins/recompressimages.docbook -share/doc/HTML/pt_BR/kipi-plugins/renameimages.docbook -share/doc/HTML/pt_BR/kipi-plugins/resizeimages.docbook -share/doc/HTML/pt_BR/kipi-plugins/sendimages.docbook -share/doc/HTML/pt_BR/kipi-plugins/slideshow.docbook -share/doc/HTML/pt_BR/kipi-plugins/timeadjust.docbook -share/doc/HTML/pt_BR/kipi-plugins/wallpaper.docbook -share/doc/HTML/ru/kipi-plugins/calendar.docbook -share/doc/HTML/sv/kipi-plugins/acquireimages.docbook -share/doc/HTML/sv/kipi-plugins/calendar.docbook -share/doc/HTML/sv/kipi-plugins/cdarchiving.docbook -share/doc/HTML/sv/kipi-plugins/colorimages.docbook -share/doc/HTML/sv/kipi-plugins/common -share/doc/HTML/sv/kipi-plugins/convertimages.docbook -share/doc/HTML/sv/kipi-plugins/effectimages.docbook -share/doc/HTML/sv/kipi-plugins/filterimages.docbook -share/doc/HTML/sv/kipi-plugins/findduplicateimages.docbook -share/doc/HTML/sv/kipi-plugins/acquire-savetargetpreview.png -share/doc/HTML/sv/kipi-plugins/acquire-screenshotpreview.png -share/doc/HTML/sv/kipi-plugins/flickrexport.docbook -share/doc/HTML/sv/kipi-plugins/flickrexportcontinue.png -share/doc/HTML/sv/kipi-plugins/flickrexportsignup.png -share/doc/HTML/sv/kipi-plugins/flickrexportuploaddialog.png -share/doc/HTML/sv/kipi-plugins/flickrexportuploading.png -share/doc/HTML/sv/kipi-plugins/galleryexport.docbook -share/doc/HTML/sv/kipi-plugins/geolocation.docbook -share/doc/HTML/sv/kipi-plugins/geolocationcorrelate.png -share/doc/HTML/sv/kipi-plugins/geolocationcorrelate1.png -share/doc/HTML/sv/kipi-plugins/geolocationeditcoords.png -share/doc/HTML/sv/kipi-plugins/imagegallery_albumsettings.png -share/doc/HTML/sv/kipi-plugins/imagegallery_collectionselection.png -share/doc/HTML/sv/kipi-plugins/imagegallery_looksettings.png -share/doc/HTML/sv/kipi-plugins/imagegallery_preview.png -share/doc/HTML/sv/kipi-plugins/imagegallery_progress.png -share/doc/HTML/sv/kipi-plugins/imagegallery_thumbsettings.png -share/doc/HTML/sv/kipi-plugins/imagesgallery.docbook -share/doc/HTML/sv/kipi-plugins/imageviewer.docbook -share/doc/HTML/sv/kipi-plugins/index.cache.bz2 -share/doc/HTML/sv/kipi-plugins/index.docbook -share/doc/HTML/sv/kipi-plugins/jpeglossless.docbook -share/doc/HTML/sv/kipi-plugins/kameraklient.docbook -share/doc/HTML/sv/kipi-plugins/metadataeditor.docbook -share/doc/HTML/sv/kipi-plugins/mpeg_encode_dialog.png -share/doc/HTML/sv/kipi-plugins/mpegencoder.docbook -share/doc/HTML/sv/kipi-plugins/printwizard.docbook -share/doc/HTML/sv/kipi-plugins/raw_converter_batch.png -share/doc/HTML/sv/kipi-plugins/raw_converter_single.png -share/doc/HTML/sv/kipi-plugins/rawconverter.docbook -share/doc/HTML/sv/kipi-plugins/recompressimages.docbook -share/doc/HTML/sv/kipi-plugins/renameimages.docbook -share/doc/HTML/sv/kipi-plugins/resizeimages.docbook -share/doc/HTML/sv/kipi-plugins/sendimages.docbook -share/doc/HTML/sv/kipi-plugins/sendimages_imageselection.png -share/doc/HTML/sv/kipi-plugins/sendimages_mail.png -share/doc/HTML/sv/kipi-plugins/sendimages_progress.png -share/doc/HTML/sv/kipi-plugins/slideshow.docbook -share/doc/HTML/sv/kipi-plugins/slideshow_dialog.png -share/doc/HTML/sv/kipi-plugins/timeadjust.docbook -share/doc/HTML/sv/kipi-plugins/wallpaper.docbook - -share/locale/ar/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/ar/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/ar/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/ar/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/ar/LC_MESSAGES/kipiplugin_findimages.mo -share/locale/ar/LC_MESSAGES/kipiplugin_flickrexport.mo -share/locale/ar/LC_MESSAGES/kipiplugin_galleryexport.mo -share/locale/ar/LC_MESSAGES/kipiplugin_gpssync.mo -share/locale/ar/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/ar/LC_MESSAGES/kipiplugin_imagesgallery.mo +lib/libkipiplugins.so.1 +lib/libkipiplugins.so.1.0.0 +share/applications/kde4/dngconverter.desktop +share/apps/kipiplugin_galleryexport/pics/gallery.png +share/apps/kipiplugin_htmlexport/themes/classic/classic.desktop +share/apps/kipiplugin_htmlexport/themes/classic/gohome.png +share/apps/kipiplugin_htmlexport/themes/classic/template.xsl +share/apps/kipiplugin_htmlexport/themes/classic/up.png +share/apps/kipiplugin_htmlexport/themes/cleanframes/black.css +share/apps/kipiplugin_htmlexport/themes/cleanframes/blue.css +share/apps/kipiplugin_htmlexport/themes/cleanframes/brown.css +share/apps/kipiplugin_htmlexport/themes/cleanframes/cleanframes.desktop +share/apps/kipiplugin_htmlexport/themes/cleanframes/green.css +share/apps/kipiplugin_htmlexport/themes/cleanframes/lavender.css +share/apps/kipiplugin_htmlexport/themes/cleanframes/pink.css +share/apps/kipiplugin_htmlexport/themes/cleanframes/red.css +share/apps/kipiplugin_htmlexport/themes/cleanframes/star.png +share/apps/kipiplugin_htmlexport/themes/cleanframes/template.xsl +share/apps/kipiplugin_htmlexport/themes/cleanframes/yellow.css +share/apps/kipiplugin_htmlexport/themes/frames/frames.desktop +share/apps/kipiplugin_htmlexport/themes/frames/style.css +share/apps/kipiplugin_htmlexport/themes/frames/template.xsl +share/apps/kipiplugin_htmlexport/themes/matrix/bg.png +share/apps/kipiplugin_htmlexport/themes/matrix/matrix.desktop +share/apps/kipiplugin_htmlexport/themes/matrix/style.css +share/apps/kipiplugin_htmlexport/themes/matrix/template.xsl +share/apps/kipiplugin_htmlexport/themes/s0/arrows_source.svg +share/apps/kipiplugin_htmlexport/themes/s0/next.png +share/apps/kipiplugin_htmlexport/themes/s0/next_disabled.png +share/apps/kipiplugin_htmlexport/themes/s0/previous.png +share/apps/kipiplugin_htmlexport/themes/s0/previous_disabled.png +share/apps/kipiplugin_htmlexport/themes/s0/s0.desktop +share/apps/kipiplugin_htmlexport/themes/s0/style.css +share/apps/kipiplugin_htmlexport/themes/s0/template.xsl +share/apps/kipiplugin_htmlexport/themes/s0/up.png +share/apps/kipiplugin_htmlexport/themes/simple/dark.css +share/apps/kipiplugin_htmlexport/themes/simple/natural.css +share/apps/kipiplugin_htmlexport/themes/simple/simple.desktop +share/apps/kipiplugin_htmlexport/themes/simple/template.xsl +share/apps/kipiplugin_htmlexport/themes/snow/next.png +share/apps/kipiplugin_htmlexport/themes/snow/next.svg +share/apps/kipiplugin_htmlexport/themes/snow/next_disabled.png +share/apps/kipiplugin_htmlexport/themes/snow/previous.png +share/apps/kipiplugin_htmlexport/themes/snow/previous_disabled.png +share/apps/kipiplugin_htmlexport/themes/snow/snow.desktop +share/apps/kipiplugin_htmlexport/themes/snow/style.css +share/apps/kipiplugin_htmlexport/themes/snow/template.xsl +share/apps/kipiplugin_imageviewer/pics/hand.png +share/apps/kipiplugin_imageviewer/pics/nullImage.png +share/apps/kipiplugin_imageviewer/pics/zoom.png +share/apps/kipiplugin_metadataedit/data/topicset.iptc-subjectcode.xml +share/apps/kipiplugin_simpleviewerexport/index.template +share/apps/kipiplugin_simpleviewerexport/simpleviewer_html/space.png +share/apps/kipiplugin_slideshow/KIPIicon.svg +share/apps/kipiplugin_removeredeyes/controlwidget.svg +share/apps/kipiplugin_removeredeyes/removeredeyes_classifier_eye_20_20.xml +share/icons/hicolor/128x128/actions/rawconverterbatch.png +share/icons/hicolor/128x128/actions/rawconvertersingle.png +share/icons/hicolor/16x16/actions/gpsimagetag.png +share/icons/hicolor/16x16/actions/ogl.png +share/icons/hicolor/22x22/actions/slideshow.png +share/icons/hicolor/32x32/actions/flip-horizontal.png +share/icons/hicolor/32x32/actions/gpsimagetag.png +share/icons/hicolor/32x32/actions/grayscaleconvert.png +share/icons/hicolor/32x32/actions/ogl.png +share/icons/hicolor/32x32/actions/timeadjust.png +share/icons/hicolor/32x32/actions/dngconverter.png +share/icons/hicolor/64x64/actions/metadataedit.png +share/kde4/services/kipiplugin_dngconverter.desktop +share/kde4/services/kipiplugin_ipodexport.desktop +share/kde4/services/kipiplugin_removeredeyes.desktop +share/kde4/services/kipiplugin_acquireimages.desktop +share/kde4/services/kipiplugin_calendar.desktop +share/kde4/services/kipiplugin_fbexport.desktop +share/kde4/services/kipiplugin_flickrexport.desktop +share/kde4/services/kipiplugin_galleryexport.desktop +share/kde4/services/kipiplugin_gpssync.desktop +share/kde4/services/kipiplugin_htmlexport.desktop +share/kde4/services/kipiplugin_imageviewer.desktop +share/kde4/services/kipiplugin_jpeglossless.desktop +share/kde4/services/kipiplugin_metadataedit.desktop +share/kde4/services/kipiplugin_picasawebexport.desktop +share/kde4/services/kipiplugin_printwizard.desktop +share/kde4/services/kipiplugin_rawconverter.desktop +share/kde4/services/kipiplugin_sendimages.desktop +share/kde4/services/kipiplugin_simpleviewer.desktop +share/kde4/services/kipiplugin_slideshow.desktop +share/kde4/services/kipiplugin_smugexport.desktop +share/kde4/services/kipiplugin_timeadjust.desktop share/locale/ar/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/ar/LC_MESSAGES/kipiplugin_kameraklient.mo -share/locale/ar/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/ar/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/ar/LC_MESSAGES/kipiplugin_printwizard.mo -share/locale/ar/LC_MESSAGES/kipiplugin_rawconverter.mo -share/locale/ar/LC_MESSAGES/kipiplugin_sendimages.mo -share/locale/ar/LC_MESSAGES/kipiplugin_slideshow.mo share/locale/ar/LC_MESSAGES/kipiplugin_timeadjust.mo share/locale/ar/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/ar/LC_MESSAGES/kipiplugins.mo -share/locale/be/LC_MESSAGES/kipiplugin_viewer.mo -share/locale/br/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/br/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/br/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/br/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/br/LC_MESSAGES/kipiplugin_findimages.mo -share/locale/br/LC_MESSAGES/kipiplugin_flickrexport.mo -share/locale/br/LC_MESSAGES/kipiplugin_galleryexport.mo -share/locale/br/LC_MESSAGES/kipiplugin_gpssync.mo -share/locale/br/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/br/LC_MESSAGES/kipiplugin_imagesgallery.mo -share/locale/br/LC_MESSAGES/kipiplugin_ipodexport.mo -share/locale/br/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/br/LC_MESSAGES/kipiplugin_kameraklient.mo -share/locale/br/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/br/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/br/LC_MESSAGES/kipiplugin_printwizard.mo -share/locale/br/LC_MESSAGES/kipiplugin_rawconverter.mo -share/locale/br/LC_MESSAGES/kipiplugin_sendimages.mo -share/locale/br/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/br/LC_MESSAGES/kipiplugin_sync.mo -share/locale/br/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/br/LC_MESSAGES/kipiplugin_wallpaper.mo -share/locale/br/LC_MESSAGES/kipiplugins.mo +share/locale/be/LC_MESSAGES/kipiplugin_acquireimages.mo +share/locale/be/LC_MESSAGES/kipiplugin_jpeglossless.mo +share/locale/be/LC_MESSAGES/kipiplugin_metadataedit.mo +share/locale/be/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/be/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/be/LC_MESSAGES/kipiplugin_slideshow.mo +share/locale/be/LC_MESSAGES/kipiplugin_timeadjust.mo +share/locale/be/LC_MESSAGES/kipiplugin_wallpaper.mo +share/locale/be/LC_MESSAGES/kipiplugins.mo share/locale/ca/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/ca/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/ca/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/ca/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/ca/LC_MESSAGES/kipiplugin_findimages.mo +share/locale/ca/LC_MESSAGES/kipiplugin_dngconverter.mo share/locale/ca/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/ca/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/ca/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/ca/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/ca/LC_MESSAGES/kipiplugin_imagesgallery.mo -share/locale/ca/LC_MESSAGES/kipiplugin_ipodexport.mo +share/locale/ca/LC_MESSAGES/kipiplugin_imageviewer.mo share/locale/ca/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/ca/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/ca/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/ca/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/ca/LC_MESSAGES/kipiplugin_printwizard.mo +share/locale/ca/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/ca/LC_MESSAGES/kipiplugin_rawconverter.mo share/locale/ca/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/ca/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/ca/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/ca/LC_MESSAGES/kipiplugin_sync.mo share/locale/ca/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/ca/LC_MESSAGES/kipiplugin_viewer.mo share/locale/ca/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/ca/LC_MESSAGES/kipiplugins.mo share/locale/cs/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/cs/LC_MESSAGES/kipiplugin_batchprocessimages.mo share/locale/cs/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/cs/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/cs/LC_MESSAGES/kipiplugin_findimages.mo +share/locale/cs/LC_MESSAGES/kipiplugin_dngconverter.mo share/locale/cs/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/cs/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/cs/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/cs/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/cs/LC_MESSAGES/kipiplugin_imagesgallery.mo +share/locale/cs/LC_MESSAGES/kipiplugin_imageviewer.mo +share/locale/cs/LC_MESSAGES/kipiplugin_ipodexport.mo share/locale/cs/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/cs/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/cs/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/cs/LC_MESSAGES/kipiplugin_mpegencoder.mo +share/locale/cs/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/cs/LC_MESSAGES/kipiplugin_printwizard.mo share/locale/cs/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/cs/LC_MESSAGES/kipiplugin_removeredeyes.mo share/locale/cs/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/cs/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/cs/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/cs/LC_MESSAGES/kipiplugin_sync.mo share/locale/cs/LC_MESSAGES/kipiplugin_timeadjust.mo share/locale/cs/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/cs/LC_MESSAGES/kipiplugins.mo -share/locale/cy/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/cy/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/cy/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/cy/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/cy/LC_MESSAGES/kipiplugin_findimages.mo -share/locale/cy/LC_MESSAGES/kipiplugin_flickrexport.mo -share/locale/cy/LC_MESSAGES/kipiplugin_galleryexport.mo -share/locale/cy/LC_MESSAGES/kipiplugin_imagesgallery.mo -share/locale/cy/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/cy/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/cy/LC_MESSAGES/kipiplugin_printwizard.mo -share/locale/cy/LC_MESSAGES/kipiplugin_rawconverter.mo -share/locale/cy/LC_MESSAGES/kipiplugin_sendimages.mo -share/locale/cy/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/cy/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/cy/LC_MESSAGES/kipiplugin_wallpaper.mo -share/locale/cy/LC_MESSAGES/kipiplugins.mo share/locale/da/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/da/LC_MESSAGES/kipiplugin_batchprocessimages.mo share/locale/da/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/da/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/da/LC_MESSAGES/kipiplugin_findimages.mo +share/locale/da/LC_MESSAGES/kipiplugin_dngconverter.mo share/locale/da/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/da/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/da/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/da/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/da/LC_MESSAGES/kipiplugin_imagesgallery.mo +share/locale/da/LC_MESSAGES/kipiplugin_imageviewer.mo share/locale/da/LC_MESSAGES/kipiplugin_ipodexport.mo share/locale/da/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/da/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/da/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/da/LC_MESSAGES/kipiplugin_mpegencoder.mo +share/locale/da/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/da/LC_MESSAGES/kipiplugin_printwizard.mo share/locale/da/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/da/LC_MESSAGES/kipiplugin_removeredeyes.mo share/locale/da/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/da/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/da/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/da/LC_MESSAGES/kipiplugin_sync.mo +share/locale/da/LC_MESSAGES/kipiplugin_smugexport.mo share/locale/da/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/da/LC_MESSAGES/kipiplugin_viewer.mo share/locale/da/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/da/LC_MESSAGES/kipiplugins.mo share/locale/de/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/de/LC_MESSAGES/kipiplugin_batchprocessimages.mo share/locale/de/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/de/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/de/LC_MESSAGES/kipiplugin_findimages.mo +share/locale/de/LC_MESSAGES/kipiplugin_dngconverter.mo share/locale/de/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/de/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/de/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/de/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/de/LC_MESSAGES/kipiplugin_imagesgallery.mo +share/locale/de/LC_MESSAGES/kipiplugin_imageviewer.mo share/locale/de/LC_MESSAGES/kipiplugin_ipodexport.mo share/locale/de/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/de/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/de/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/de/LC_MESSAGES/kipiplugin_mpegencoder.mo +share/locale/de/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/de/LC_MESSAGES/kipiplugin_printwizard.mo share/locale/de/LC_MESSAGES/kipiplugin_rawconverter.mo share/locale/de/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/de/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/de/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/de/LC_MESSAGES/kipiplugin_sync.mo +share/locale/de/LC_MESSAGES/kipiplugin_smugexport.mo share/locale/de/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/de/LC_MESSAGES/kipiplugin_viewer.mo share/locale/de/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/de/LC_MESSAGES/kipiplugins.mo share/locale/el/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/el/LC_MESSAGES/kipiplugin_batchprocessimages.mo share/locale/el/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/el/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/el/LC_MESSAGES/kipiplugin_findimages.mo +share/locale/el/LC_MESSAGES/kipiplugin_dngconverter.mo share/locale/el/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/el/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/el/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/el/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/el/LC_MESSAGES/kipiplugin_imagesgallery.mo +share/locale/el/LC_MESSAGES/kipiplugin_imageviewer.mo share/locale/el/LC_MESSAGES/kipiplugin_ipodexport.mo share/locale/el/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/el/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/el/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/el/LC_MESSAGES/kipiplugin_mpegencoder.mo +share/locale/el/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/el/LC_MESSAGES/kipiplugin_printwizard.mo share/locale/el/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/el/LC_MESSAGES/kipiplugin_removeredeyes.mo share/locale/el/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/el/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/el/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/el/LC_MESSAGES/kipiplugin_sync.mo +share/locale/el/LC_MESSAGES/kipiplugin_smugexport.mo share/locale/el/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/el/LC_MESSAGES/kipiplugin_viewer.mo share/locale/el/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/el/LC_MESSAGES/kipiplugins.mo -share/locale/en_GB/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/en_GB/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/en_GB/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/en_GB/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/en_GB/LC_MESSAGES/kipiplugin_findimages.mo -share/locale/en_GB/LC_MESSAGES/kipiplugin_galleryexport.mo -share/locale/en_GB/LC_MESSAGES/kipiplugin_imagesgallery.mo -share/locale/en_GB/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/en_GB/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/en_GB/LC_MESSAGES/kipiplugin_printwizard.mo -share/locale/en_GB/LC_MESSAGES/kipiplugin_rawconverter.mo -share/locale/en_GB/LC_MESSAGES/kipiplugin_sendimages.mo -share/locale/en_GB/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/en_GB/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/en_GB/LC_MESSAGES/kipiplugin_wallpaper.mo -share/locale/en_GB/LC_MESSAGES/kipiplugins.mo share/locale/es/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/es/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/es/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/es/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/es/LC_MESSAGES/kipiplugin_findimages.mo -share/locale/es/LC_MESSAGES/kipiplugin_flickrexport.mo -share/locale/es/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/es/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/es/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/es/LC_MESSAGES/kipiplugin_imagesgallery.mo -share/locale/es/LC_MESSAGES/kipiplugin_ipodexport.mo share/locale/es/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/es/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/es/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/es/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/es/LC_MESSAGES/kipiplugin_printwizard.mo share/locale/es/LC_MESSAGES/kipiplugin_rawconverter.mo share/locale/es/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/es/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/es/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/es/LC_MESSAGES/kipiplugin_sync.mo share/locale/es/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/es/LC_MESSAGES/kipiplugin_viewer.mo share/locale/es/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/es/LC_MESSAGES/kipiplugins.mo share/locale/et/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/et/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/et/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/et/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/et/LC_MESSAGES/kipiplugin_findimages.mo share/locale/et/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/et/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/et/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/et/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/et/LC_MESSAGES/kipiplugin_imagesgallery.mo -share/locale/et/LC_MESSAGES/kipiplugin_ipodexport.mo +share/locale/et/LC_MESSAGES/kipiplugin_imageviewer.mo share/locale/et/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/et/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/et/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/et/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/et/LC_MESSAGES/kipiplugin_printwizard.mo +share/locale/et/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/et/LC_MESSAGES/kipiplugin_rawconverter.mo share/locale/et/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/et/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/et/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/et/LC_MESSAGES/kipiplugin_sync.mo share/locale/et/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/et/LC_MESSAGES/kipiplugin_viewer.mo share/locale/et/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/et/LC_MESSAGES/kipiplugins.mo -share/locale/fi/LC_MESSAGES/kipiplugin_findimages.mo -share/locale/fi/LC_MESSAGES/kipiplugin_galleryexport.mo -share/locale/fi/LC_MESSAGES/kipiplugin_gpssync.mo -share/locale/fi/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/fi/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/fi/LC_MESSAGES/kipiplugin_printwizard.mo -share/locale/fi/LC_MESSAGES/kipiplugin_sendimages.mo -share/locale/fi/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/fr/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/fr/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/fr/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/fr/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/fr/LC_MESSAGES/kipiplugin_findimages.mo share/locale/fr/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/fr/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/fr/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/fr/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/fr/LC_MESSAGES/kipiplugin_imagesgallery.mo +share/locale/fr/LC_MESSAGES/kipiplugin_imageviewer.mo share/locale/fr/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/fr/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/fr/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/fr/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/fr/LC_MESSAGES/kipiplugin_printwizard.mo +share/locale/fr/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/fr/LC_MESSAGES/kipiplugin_rawconverter.mo share/locale/fr/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/fr/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/fr/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/fr/LC_MESSAGES/kipiplugin_sync.mo share/locale/fr/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/fr/LC_MESSAGES/kipiplugin_viewer.mo share/locale/fr/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/fr/LC_MESSAGES/kipiplugins.mo share/locale/ga/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/ga/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/ga/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/ga/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/ga/LC_MESSAGES/kipiplugin_findimages.mo share/locale/ga/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/ga/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/ga/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/ga/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/ga/LC_MESSAGES/kipiplugin_imagesgallery.mo +share/locale/ga/LC_MESSAGES/kipiplugin_imageviewer.mo share/locale/ga/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/ga/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/ga/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/ga/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/ga/LC_MESSAGES/kipiplugin_printwizard.mo +share/locale/ga/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/ga/LC_MESSAGES/kipiplugin_rawconverter.mo share/locale/ga/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/ga/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/ga/LC_MESSAGES/kipiplugin_slideshow.mo share/locale/ga/LC_MESSAGES/kipiplugin_timeadjust.mo share/locale/ga/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/ga/LC_MESSAGES/kipiplugins.mo share/locale/gl/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/gl/LC_MESSAGES/kipiplugin_batchprocessimages.mo share/locale/gl/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/gl/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/gl/LC_MESSAGES/kipiplugin_findimages.mo +share/locale/gl/LC_MESSAGES/kipiplugin_dngconverter.mo +share/locale/gl/LC_MESSAGES/kipiplugin_fbexport.mo share/locale/gl/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/gl/LC_MESSAGES/kipiplugin_galleryexport.mo +share/locale/gl/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/gl/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/gl/LC_MESSAGES/kipiplugin_imagesgallery.mo +share/locale/gl/LC_MESSAGES/kipiplugin_imageviewer.mo +share/locale/gl/LC_MESSAGES/kipiplugin_ipodexport.mo share/locale/gl/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/gl/LC_MESSAGES/kipiplugin_kameraklient.mo -share/locale/gl/LC_MESSAGES/kipiplugin_mpegencoder.mo +share/locale/gl/LC_MESSAGES/kipiplugin_metadataedit.mo +share/locale/gl/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/gl/LC_MESSAGES/kipiplugin_printwizard.mo share/locale/gl/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/gl/LC_MESSAGES/kipiplugin_removeredeyes.mo share/locale/gl/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/gl/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/gl/LC_MESSAGES/kipiplugin_slideshow.mo +share/locale/gl/LC_MESSAGES/kipiplugin_smugexport.mo share/locale/gl/LC_MESSAGES/kipiplugin_timeadjust.mo share/locale/gl/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/gl/LC_MESSAGES/kipiplugins.mo -share/locale/hu/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/hu/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/hu/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/hu/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/hu/LC_MESSAGES/kipiplugin_findimages.mo -share/locale/hu/LC_MESSAGES/kipiplugin_imagesgallery.mo -share/locale/hu/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/hu/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/hu/LC_MESSAGES/kipiplugin_printwizard.mo -share/locale/hu/LC_MESSAGES/kipiplugin_rawconverter.mo -share/locale/hu/LC_MESSAGES/kipiplugin_sendimages.mo -share/locale/hu/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/is/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/is/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/is/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/is/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/is/LC_MESSAGES/kipiplugin_findimages.mo -share/locale/is/LC_MESSAGES/kipiplugin_flickrexport.mo -share/locale/is/LC_MESSAGES/kipiplugin_galleryexport.mo -share/locale/is/LC_MESSAGES/kipiplugin_gpssync.mo -share/locale/is/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/is/LC_MESSAGES/kipiplugin_imagesgallery.mo -share/locale/is/LC_MESSAGES/kipiplugin_ipodexport.mo -share/locale/is/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/is/LC_MESSAGES/kipiplugin_kameraklient.mo +share/locale/hi/LC_MESSAGES/kipiplugin_acquireimages.mo +share/locale/hi/LC_MESSAGES/kipiplugin_gpssync.mo +share/locale/hi/LC_MESSAGES/kipiplugin_jpeglossless.mo +share/locale/hi/LC_MESSAGES/kipiplugin_metadataedit.mo +share/locale/hi/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/hi/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/hi/LC_MESSAGES/kipiplugin_simpleviewerexport.mo +share/locale/hi/LC_MESSAGES/kipiplugin_slideshow.mo +share/locale/hi/LC_MESSAGES/kipiplugin_timeadjust.mo +share/locale/hi/LC_MESSAGES/kipiplugin_wallpaper.mo +share/locale/hi/LC_MESSAGES/kipiplugins.mo +share/locale/is/LC_MESSAGES/kipiplugin_dngconverter.mo share/locale/is/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/is/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/is/LC_MESSAGES/kipiplugin_printwizard.mo -share/locale/is/LC_MESSAGES/kipiplugin_rawconverter.mo share/locale/is/LC_MESSAGES/kipiplugin_sendimages.mo -share/locale/is/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/is/LC_MESSAGES/kipiplugin_sync.mo -share/locale/is/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/is/LC_MESSAGES/kipiplugin_viewer.mo -share/locale/is/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/is/LC_MESSAGES/kipiplugins.mo share/locale/it/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/it/LC_MESSAGES/kipiplugin_batchprocessimages.mo share/locale/it/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/it/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/it/LC_MESSAGES/kipiplugin_findimages.mo +share/locale/it/LC_MESSAGES/kipiplugin_dngconverter.mo share/locale/it/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/it/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/it/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/it/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/it/LC_MESSAGES/kipiplugin_imagesgallery.mo +share/locale/it/LC_MESSAGES/kipiplugin_imageviewer.mo share/locale/it/LC_MESSAGES/kipiplugin_ipodexport.mo share/locale/it/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/it/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/it/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/it/LC_MESSAGES/kipiplugin_mpegencoder.mo +share/locale/it/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/it/LC_MESSAGES/kipiplugin_printwizard.mo share/locale/it/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/it/LC_MESSAGES/kipiplugin_removeredeyes.mo share/locale/it/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/it/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/it/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/it/LC_MESSAGES/kipiplugin_sync.mo +share/locale/it/LC_MESSAGES/kipiplugin_smugexport.mo share/locale/it/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/it/LC_MESSAGES/kipiplugin_viewer.mo share/locale/it/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/it/LC_MESSAGES/kipiplugins.mo share/locale/ja/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/ja/LC_MESSAGES/kipiplugin_batchprocessimages.mo share/locale/ja/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/ja/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/ja/LC_MESSAGES/kipiplugin_findimages.mo +share/locale/ja/LC_MESSAGES/kipiplugin_dngconverter.mo +share/locale/ja/LC_MESSAGES/kipiplugin_fbexport.mo share/locale/ja/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/ja/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/ja/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/ja/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/ja/LC_MESSAGES/kipiplugin_imagesgallery.mo +share/locale/ja/LC_MESSAGES/kipiplugin_imageviewer.mo share/locale/ja/LC_MESSAGES/kipiplugin_ipodexport.mo share/locale/ja/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/ja/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/ja/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/ja/LC_MESSAGES/kipiplugin_mpegencoder.mo +share/locale/ja/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/ja/LC_MESSAGES/kipiplugin_printwizard.mo share/locale/ja/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/ja/LC_MESSAGES/kipiplugin_removeredeyes.mo share/locale/ja/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/ja/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/ja/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/ja/LC_MESSAGES/kipiplugin_sync.mo +share/locale/ja/LC_MESSAGES/kipiplugin_smugexport.mo share/locale/ja/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/ja/LC_MESSAGES/kipiplugin_viewer.mo share/locale/ja/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/ja/LC_MESSAGES/kipiplugins.mo -share/locale/lt/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/lt/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/lt/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/lt/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/lt/LC_MESSAGES/kipiplugin_findimages.mo -share/locale/lt/LC_MESSAGES/kipiplugin_flickrexport.mo -share/locale/lt/LC_MESSAGES/kipiplugin_galleryexport.mo -share/locale/lt/LC_MESSAGES/kipiplugin_imagesgallery.mo -share/locale/lt/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/lt/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/lt/LC_MESSAGES/kipiplugin_printwizard.mo -share/locale/lt/LC_MESSAGES/kipiplugin_rawconverter.mo -share/locale/lt/LC_MESSAGES/kipiplugin_sendimages.mo -share/locale/lt/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/lt/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/lt/LC_MESSAGES/kipiplugin_wallpaper.mo -share/locale/lt/LC_MESSAGES/kipiplugins.mo -share/locale/ms/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/ms/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/ms/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/ms/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/ms/LC_MESSAGES/kipiplugin_findimages.mo -share/locale/ms/LC_MESSAGES/kipiplugin_flickrexport.mo -share/locale/ms/LC_MESSAGES/kipiplugin_galleryexport.mo -share/locale/ms/LC_MESSAGES/kipiplugin_gpssync.mo -share/locale/ms/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/ms/LC_MESSAGES/kipiplugin_imagesgallery.mo -share/locale/ms/LC_MESSAGES/kipiplugin_ipodexport.mo -share/locale/ms/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/ms/LC_MESSAGES/kipiplugin_kameraklient.mo -share/locale/ms/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/ms/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/ms/LC_MESSAGES/kipiplugin_printwizard.mo -share/locale/ms/LC_MESSAGES/kipiplugin_rawconverter.mo -share/locale/ms/LC_MESSAGES/kipiplugin_sendimages.mo -share/locale/ms/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/ms/LC_MESSAGES/kipiplugin_sync.mo -share/locale/ms/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/ms/LC_MESSAGES/kipiplugin_viewer.mo -share/locale/ms/LC_MESSAGES/kipiplugin_wallpaper.mo +share/locale/km/LC_MESSAGES/kipiplugin_acquireimages.mo +share/locale/km/LC_MESSAGES/kipiplugin_jpeglossless.mo +share/locale/km/LC_MESSAGES/kipiplugin_metadataedit.mo +share/locale/km/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/km/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/km/LC_MESSAGES/kipiplugin_slideshow.mo +share/locale/km/LC_MESSAGES/kipiplugin_timeadjust.mo +share/locale/km/LC_MESSAGES/kipiplugin_wallpaper.mo +share/locale/km/LC_MESSAGES/kipiplugins.mo +share/locale/lv/LC_MESSAGES/kipiplugin_acquireimages.mo +share/locale/lv/LC_MESSAGES/kipiplugin_dngconverter.mo +share/locale/lv/LC_MESSAGES/kipiplugin_gpssync.mo +share/locale/lv/LC_MESSAGES/kipiplugin_imageviewer.mo +share/locale/lv/LC_MESSAGES/kipiplugin_jpeglossless.mo +share/locale/lv/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/lv/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/lv/LC_MESSAGES/kipiplugin_slideshow.mo +share/locale/lv/LC_MESSAGES/kipiplugin_timeadjust.mo +share/locale/lv/LC_MESSAGES/kipiplugin_wallpaper.mo +share/locale/lv/LC_MESSAGES/kipiplugins.mo share/locale/ms/LC_MESSAGES/kipiplugins.mo -share/locale/mt/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/mt/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/mt/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/mt/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/mt/LC_MESSAGES/kipiplugin_findimages.mo -share/locale/mt/LC_MESSAGES/kipiplugin_galleryexport.mo -share/locale/mt/LC_MESSAGES/kipiplugin_imagesgallery.mo -share/locale/mt/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/mt/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/mt/LC_MESSAGES/kipiplugin_printwizard.mo -share/locale/mt/LC_MESSAGES/kipiplugin_rawconverter.mo -share/locale/mt/LC_MESSAGES/kipiplugin_sendimages.mo -share/locale/mt/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/mt/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/mt/LC_MESSAGES/kipiplugin_wallpaper.mo -share/locale/mt/LC_MESSAGES/kipiplugins.mo share/locale/nb/LC_MESSAGES/kipiplugin_acquireimages.mo share/locale/nb/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/nb/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/nb/LC_MESSAGES/kipiplugin_findimages.mo +share/locale/nb/LC_MESSAGES/kipiplugin_dngconverter.mo +share/locale/nb/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/nb/LC_MESSAGES/kipiplugin_galleryexport.mo +share/locale/nb/LC_MESSAGES/kipiplugin_gpssync.mo +share/locale/nb/LC_MESSAGES/kipiplugin_htmlexport.mo +share/locale/nb/LC_MESSAGES/kipiplugin_imageviewer.mo +share/locale/nb/LC_MESSAGES/kipiplugin_ipodexport.mo share/locale/nb/LC_MESSAGES/kipiplugin_jpeglossless.mo +share/locale/nb/LC_MESSAGES/kipiplugin_metadataedit.mo +share/locale/nb/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/nb/LC_MESSAGES/kipiplugin_printwizard.mo share/locale/nb/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/nb/LC_MESSAGES/kipiplugin_removeredeyes.mo share/locale/nb/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/nb/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/nb/LC_MESSAGES/kipiplugin_slideshow.mo +share/locale/nb/LC_MESSAGES/kipiplugin_smugexport.mo share/locale/nb/LC_MESSAGES/kipiplugin_timeadjust.mo share/locale/nb/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/nb/LC_MESSAGES/kipiplugins.mo share/locale/nds/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/nds/LC_MESSAGES/kipiplugin_batchprocessimages.mo share/locale/nds/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/nds/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/nds/LC_MESSAGES/kipiplugin_findimages.mo +share/locale/nds/LC_MESSAGES/kipiplugin_dngconverter.mo +share/locale/nds/LC_MESSAGES/kipiplugin_fbexport.mo share/locale/nds/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/nds/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/nds/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/nds/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/nds/LC_MESSAGES/kipiplugin_imagesgallery.mo +share/locale/nds/LC_MESSAGES/kipiplugin_imageviewer.mo share/locale/nds/LC_MESSAGES/kipiplugin_ipodexport.mo share/locale/nds/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/nds/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/nds/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/nds/LC_MESSAGES/kipiplugin_mpegencoder.mo +share/locale/nds/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/nds/LC_MESSAGES/kipiplugin_printwizard.mo share/locale/nds/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/nds/LC_MESSAGES/kipiplugin_removeredeyes.mo share/locale/nds/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/nds/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/nds/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/nds/LC_MESSAGES/kipiplugin_sync.mo +share/locale/nds/LC_MESSAGES/kipiplugin_smugexport.mo share/locale/nds/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/nds/LC_MESSAGES/kipiplugin_viewer.mo share/locale/nds/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/nds/LC_MESSAGES/kipiplugins.mo share/locale/nl/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/nl/LC_MESSAGES/kipiplugin_batchprocessimages.mo share/locale/nl/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/nl/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/nl/LC_MESSAGES/kipiplugin_findimages.mo +share/locale/nl/LC_MESSAGES/kipiplugin_dngconverter.mo share/locale/nl/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/nl/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/nl/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/nl/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/nl/LC_MESSAGES/kipiplugin_imagesgallery.mo +share/locale/nl/LC_MESSAGES/kipiplugin_imageviewer.mo share/locale/nl/LC_MESSAGES/kipiplugin_ipodexport.mo share/locale/nl/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/nl/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/nl/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/nl/LC_MESSAGES/kipiplugin_mpegencoder.mo +share/locale/nl/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/nl/LC_MESSAGES/kipiplugin_printwizard.mo share/locale/nl/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/nl/LC_MESSAGES/kipiplugin_removeredeyes.mo share/locale/nl/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/nl/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/nl/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/nl/LC_MESSAGES/kipiplugin_sync.mo +share/locale/nl/LC_MESSAGES/kipiplugin_smugexport.mo share/locale/nl/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/nl/LC_MESSAGES/kipiplugin_viewer.mo share/locale/nl/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/nl/LC_MESSAGES/kipiplugins.mo +share/locale/nn/LC_MESSAGES/kipiplugin_acquireimages.mo share/locale/nn/LC_MESSAGES/kipiplugin_calendar.mo +share/locale/nn/LC_MESSAGES/kipiplugin_dngconverter.mo +share/locale/nn/LC_MESSAGES/kipiplugin_flickrexport.mo +share/locale/nn/LC_MESSAGES/kipiplugin_galleryexport.mo +share/locale/nn/LC_MESSAGES/kipiplugin_gpssync.mo +share/locale/nn/LC_MESSAGES/kipiplugin_htmlexport.mo +share/locale/nn/LC_MESSAGES/kipiplugin_imageviewer.mo +share/locale/nn/LC_MESSAGES/kipiplugin_ipodexport.mo +share/locale/nn/LC_MESSAGES/kipiplugin_jpeglossless.mo +share/locale/nn/LC_MESSAGES/kipiplugin_metadataedit.mo +share/locale/nn/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/nn/LC_MESSAGES/kipiplugin_printwizard.mo +share/locale/nn/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/nn/LC_MESSAGES/kipiplugin_removeredeyes.mo +share/locale/nn/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/nn/LC_MESSAGES/kipiplugin_simpleviewerexport.mo +share/locale/nn/LC_MESSAGES/kipiplugin_slideshow.mo +share/locale/nn/LC_MESSAGES/kipiplugin_timeadjust.mo share/locale/nn/LC_MESSAGES/kipiplugin_wallpaper.mo +share/locale/nn/LC_MESSAGES/kipiplugins.mo +share/locale/oc/LC_MESSAGES/kipiplugin_acquireimages.mo +share/locale/oc/LC_MESSAGES/kipiplugin_jpeglossless.mo +share/locale/oc/LC_MESSAGES/kipiplugin_metadataedit.mo +share/locale/oc/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/oc/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/oc/LC_MESSAGES/kipiplugin_slideshow.mo +share/locale/oc/LC_MESSAGES/kipiplugin_timeadjust.mo +share/locale/oc/LC_MESSAGES/kipiplugin_wallpaper.mo +share/locale/oc/LC_MESSAGES/kipiplugins.mo share/locale/pa/LC_MESSAGES/kipiplugin_acquireimages.mo share/locale/pa/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/pa/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/pa/LC_MESSAGES/kipiplugin_findimages.mo +share/locale/pa/LC_MESSAGES/kipiplugin_dngconverter.mo +share/locale/pa/LC_MESSAGES/kipiplugin_fbexport.mo share/locale/pa/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/pa/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/pa/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/pa/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/pa/LC_MESSAGES/kipiplugin_imagesgallery.mo +share/locale/pa/LC_MESSAGES/kipiplugin_imageviewer.mo +share/locale/pa/LC_MESSAGES/kipiplugin_ipodexport.mo share/locale/pa/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/pa/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/pa/LC_MESSAGES/kipiplugin_metadataedit.mo +share/locale/pa/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/pa/LC_MESSAGES/kipiplugin_printwizard.mo -share/locale/pa/LC_MESSAGES/kipiplugin_rawconverter.mo -share/locale/pa/LC_MESSAGES/kipiplugin_sendimages.mo -share/locale/pa/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/pa/LC_MESSAGES/kipiplugin_sync.mo share/locale/pa/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/pa/LC_MESSAGES/kipiplugin_viewer.mo share/locale/pa/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/pa/LC_MESSAGES/kipiplugins.mo share/locale/pl/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/pl/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/pl/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/pl/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/pl/LC_MESSAGES/kipiplugin_findimages.mo -share/locale/pl/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/pl/LC_MESSAGES/kipiplugin_galleryexport.mo -share/locale/pl/LC_MESSAGES/kipiplugin_gpssync.mo -share/locale/pl/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/pl/LC_MESSAGES/kipiplugin_imagesgallery.mo -share/locale/pl/LC_MESSAGES/kipiplugin_ipodexport.mo share/locale/pl/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/pl/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/pl/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/pl/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/pl/LC_MESSAGES/kipiplugin_printwizard.mo share/locale/pl/LC_MESSAGES/kipiplugin_rawconverter.mo share/locale/pl/LC_MESSAGES/kipiplugin_sendimages.mo -share/locale/pl/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/pl/LC_MESSAGES/kipiplugin_sync.mo share/locale/pl/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/pl/LC_MESSAGES/kipiplugin_viewer.mo share/locale/pl/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/pl/LC_MESSAGES/kipiplugins.mo share/locale/pt/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/pt/LC_MESSAGES/kipiplugin_batchprocessimages.mo share/locale/pt/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/pt/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/pt/LC_MESSAGES/kipiplugin_findimages.mo +share/locale/pt/LC_MESSAGES/kipiplugin_dngconverter.mo +share/locale/pt/LC_MESSAGES/kipiplugin_fbexport.mo share/locale/pt/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/pt/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/pt/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/pt/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/pt/LC_MESSAGES/kipiplugin_imagesgallery.mo +share/locale/pt/LC_MESSAGES/kipiplugin_imageviewer.mo share/locale/pt/LC_MESSAGES/kipiplugin_ipodexport.mo share/locale/pt/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/pt/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/pt/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/pt/LC_MESSAGES/kipiplugin_mpegencoder.mo +share/locale/pt/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/pt/LC_MESSAGES/kipiplugin_printwizard.mo share/locale/pt/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/pt/LC_MESSAGES/kipiplugin_removeredeyes.mo share/locale/pt/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/pt/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/pt/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/pt/LC_MESSAGES/kipiplugin_sync.mo +share/locale/pt/LC_MESSAGES/kipiplugin_smugexport.mo share/locale/pt/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/pt/LC_MESSAGES/kipiplugin_viewer.mo share/locale/pt/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/pt/LC_MESSAGES/kipiplugins.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/pt_BR/LC_MESSAGES/kipiplugin_batchprocessimages.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/pt_BR/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/pt_BR/LC_MESSAGES/kipiplugin_findimages.mo +share/locale/pt_BR/LC_MESSAGES/kipiplugin_dngconverter.mo +share/locale/pt_BR/LC_MESSAGES/kipiplugin_fbexport.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/pt_BR/LC_MESSAGES/kipiplugin_imagesgallery.mo +share/locale/pt_BR/LC_MESSAGES/kipiplugin_imageviewer.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_ipodexport.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/pt_BR/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/pt_BR/LC_MESSAGES/kipiplugin_mpegencoder.mo +share/locale/pt_BR/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_printwizard.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/pt_BR/LC_MESSAGES/kipiplugin_removeredeyes.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/pt_BR/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/pt_BR/LC_MESSAGES/kipiplugin_sync.mo +share/locale/pt_BR/LC_MESSAGES/kipiplugin_smugexport.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/pt_BR/LC_MESSAGES/kipiplugin_viewer.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/pt_BR/LC_MESSAGES/kipiplugins.mo -share/locale/ru/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/ru/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/ru/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/ru/LC_MESSAGES/kipiplugin_findimages.mo -share/locale/ru/LC_MESSAGES/kipiplugin_galleryexport.mo +share/locale/ro/LC_MESSAGES/kipiplugin_acquireimages.mo +share/locale/ro/LC_MESSAGES/kipiplugin_gpssync.mo +share/locale/ro/LC_MESSAGES/kipiplugin_jpeglossless.mo +share/locale/ro/LC_MESSAGES/kipiplugin_metadataedit.mo +share/locale/ro/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/ro/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/ro/LC_MESSAGES/kipiplugin_simpleviewerexport.mo +share/locale/ro/LC_MESSAGES/kipiplugin_slideshow.mo +share/locale/ro/LC_MESSAGES/kipiplugin_timeadjust.mo +share/locale/ro/LC_MESSAGES/kipiplugin_wallpaper.mo +share/locale/ro/LC_MESSAGES/kipiplugins.mo +share/locale/ru/LC_MESSAGES/kipiplugin_acquireimages.mo +share/locale/ru/LC_MESSAGES/kipiplugin_flickrexport.mo +share/locale/ru/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/ru/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/ru/LC_MESSAGES/kipiplugin_imagesgallery.mo +share/locale/ru/LC_MESSAGES/kipiplugin_imageviewer.mo share/locale/ru/LC_MESSAGES/kipiplugin_jpeglossless.mo share/locale/ru/LC_MESSAGES/kipiplugin_metadataedit.mo +share/locale/ru/LC_MESSAGES/kipiplugin_picasawebexport.mo +share/locale/ru/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/ru/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/ru/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/ru/LC_MESSAGES/kipiplugin_slideshow.mo share/locale/ru/LC_MESSAGES/kipiplugin_timeadjust.mo share/locale/ru/LC_MESSAGES/kipiplugin_wallpaper.mo -share/locale/rw/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/rw/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/rw/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/rw/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/rw/LC_MESSAGES/kipiplugin_findimages.mo -share/locale/rw/LC_MESSAGES/kipiplugin_flickrexport.mo -share/locale/rw/LC_MESSAGES/kipiplugin_galleryexport.mo -share/locale/rw/LC_MESSAGES/kipiplugin_imagesgallery.mo -share/locale/rw/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/rw/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/rw/LC_MESSAGES/kipiplugin_printwizard.mo -share/locale/rw/LC_MESSAGES/kipiplugin_rawconverter.mo -share/locale/rw/LC_MESSAGES/kipiplugin_sendimages.mo -share/locale/rw/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/rw/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/rw/LC_MESSAGES/kipiplugin_wallpaper.mo -share/locale/rw/LC_MESSAGES/kipiplugins.mo +share/locale/ru/LC_MESSAGES/kipiplugins.mo +share/locale/se/LC_MESSAGES/kipiplugin_jpeglossless.mo +share/locale/se/LC_MESSAGES/kipiplugin_timeadjust.mo +share/locale/se/LC_MESSAGES/kipiplugin_wallpaper.mo +share/locale/se/LC_MESSAGES/kipiplugins.mo share/locale/sk/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/sk/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/sk/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/sk/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/sk/LC_MESSAGES/kipiplugin_findimages.mo -share/locale/sk/LC_MESSAGES/kipiplugin_flickrexport.mo -share/locale/sk/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/sk/LC_MESSAGES/kipiplugin_gpssync.mo -share/locale/sk/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/sk/LC_MESSAGES/kipiplugin_imagesgallery.mo -share/locale/sk/LC_MESSAGES/kipiplugin_ipodexport.mo share/locale/sk/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/sk/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/sk/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/sk/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/sk/LC_MESSAGES/kipiplugin_printwizard.mo share/locale/sk/LC_MESSAGES/kipiplugin_rawconverter.mo share/locale/sk/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/sk/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/sk/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/sk/LC_MESSAGES/kipiplugin_sync.mo share/locale/sk/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/sk/LC_MESSAGES/kipiplugin_viewer.mo share/locale/sk/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/sk/LC_MESSAGES/kipiplugins.mo -share/locale/sr/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/sr/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/sr/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/sr/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/sr/LC_MESSAGES/kipiplugin_findimages.mo -share/locale/sr/LC_MESSAGES/kipiplugin_flickrexport.mo -share/locale/sr/LC_MESSAGES/kipiplugin_galleryexport.mo -share/locale/sr/LC_MESSAGES/kipiplugin_gpssync.mo -share/locale/sr/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/sr/LC_MESSAGES/kipiplugin_imagesgallery.mo -share/locale/sr/LC_MESSAGES/kipiplugin_ipodexport.mo -share/locale/sr/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/sr/LC_MESSAGES/kipiplugin_kameraklient.mo -share/locale/sr/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/sr/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/sr/LC_MESSAGES/kipiplugin_printwizard.mo -share/locale/sr/LC_MESSAGES/kipiplugin_rawconverter.mo -share/locale/sr/LC_MESSAGES/kipiplugin_sendimages.mo -share/locale/sr/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/sr/LC_MESSAGES/kipiplugin_sync.mo -share/locale/sr/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/sr/LC_MESSAGES/kipiplugin_viewer.mo -share/locale/sr/LC_MESSAGES/kipiplugin_wallpaper.mo -share/locale/sr/LC_MESSAGES/kipiplugins.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_findimages.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_flickrexport.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_galleryexport.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_gpssync.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_imagesgallery.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_ipodexport.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_kameraklient.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_printwizard.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_rawconverter.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_sendimages.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_sync.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_viewer.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugin_wallpaper.mo -share/locale/sr@Latn/LC_MESSAGES/kipiplugins.mo share/locale/sv/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/sv/LC_MESSAGES/kipiplugin_batchprocessimages.mo share/locale/sv/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/sv/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/sv/LC_MESSAGES/kipiplugin_findimages.mo +share/locale/sv/LC_MESSAGES/kipiplugin_dngconverter.mo +share/locale/sv/LC_MESSAGES/kipiplugin_fbexport.mo share/locale/sv/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/sv/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/sv/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/sv/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/sv/LC_MESSAGES/kipiplugin_imagesgallery.mo +share/locale/sv/LC_MESSAGES/kipiplugin_imageviewer.mo share/locale/sv/LC_MESSAGES/kipiplugin_ipodexport.mo share/locale/sv/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/sv/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/sv/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/sv/LC_MESSAGES/kipiplugin_mpegencoder.mo +share/locale/sv/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/sv/LC_MESSAGES/kipiplugin_printwizard.mo share/locale/sv/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/sv/LC_MESSAGES/kipiplugin_removeredeyes.mo share/locale/sv/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/sv/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/sv/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/sv/LC_MESSAGES/kipiplugin_sync.mo +share/locale/sv/LC_MESSAGES/kipiplugin_smugexport.mo share/locale/sv/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/sv/LC_MESSAGES/kipiplugin_viewer.mo share/locale/sv/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/sv/LC_MESSAGES/kipiplugins.mo -share/locale/ta/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/ta/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/ta/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/ta/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/ta/LC_MESSAGES/kipiplugin_findimages.mo -share/locale/ta/LC_MESSAGES/kipiplugin_galleryexport.mo -share/locale/ta/LC_MESSAGES/kipiplugin_imagesgallery.mo -share/locale/ta/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/ta/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/ta/LC_MESSAGES/kipiplugin_printwizard.mo -share/locale/ta/LC_MESSAGES/kipiplugin_rawconverter.mo -share/locale/ta/LC_MESSAGES/kipiplugin_sendimages.mo -share/locale/ta/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/ta/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/ta/LC_MESSAGES/kipiplugin_wallpaper.mo -share/locale/ta/LC_MESSAGES/kipiplugins.mo share/locale/th/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/th/LC_MESSAGES/kipiplugin_batchprocessimages.mo -share/locale/th/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/th/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/th/LC_MESSAGES/kipiplugin_findimages.mo share/locale/th/LC_MESSAGES/kipiplugin_flickrexport.mo -share/locale/th/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/th/LC_MESSAGES/kipiplugin_gpssync.mo -share/locale/th/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/th/LC_MESSAGES/kipiplugin_imagesgallery.mo -share/locale/th/LC_MESSAGES/kipiplugin_ipodexport.mo +share/locale/th/LC_MESSAGES/kipiplugin_imageviewer.mo share/locale/th/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/th/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/th/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/th/LC_MESSAGES/kipiplugin_mpegencoder.mo -share/locale/th/LC_MESSAGES/kipiplugin_printwizard.mo +share/locale/th/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/th/LC_MESSAGES/kipiplugin_rawconverter.mo share/locale/th/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/th/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/th/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/th/LC_MESSAGES/kipiplugin_sync.mo share/locale/th/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/th/LC_MESSAGES/kipiplugin_viewer.mo share/locale/th/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/th/LC_MESSAGES/kipiplugins.mo share/locale/tr/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/tr/LC_MESSAGES/kipiplugin_batchprocessimages.mo share/locale/tr/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/tr/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/tr/LC_MESSAGES/kipiplugin_findimages.mo +share/locale/tr/LC_MESSAGES/kipiplugin_dngconverter.mo share/locale/tr/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/tr/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/tr/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/tr/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/tr/LC_MESSAGES/kipiplugin_imagesgallery.mo +share/locale/tr/LC_MESSAGES/kipiplugin_imageviewer.mo +share/locale/tr/LC_MESSAGES/kipiplugin_ipodexport.mo share/locale/tr/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/tr/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/tr/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/tr/LC_MESSAGES/kipiplugin_mpegencoder.mo +share/locale/tr/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/tr/LC_MESSAGES/kipiplugin_printwizard.mo share/locale/tr/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/tr/LC_MESSAGES/kipiplugin_removeredeyes.mo share/locale/tr/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/tr/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/tr/LC_MESSAGES/kipiplugin_slideshow.mo share/locale/tr/LC_MESSAGES/kipiplugin_timeadjust.mo share/locale/tr/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/tr/LC_MESSAGES/kipiplugins.mo share/locale/uk/LC_MESSAGES/kipiplugin_acquireimages.mo -share/locale/uk/LC_MESSAGES/kipiplugin_batchprocessimages.mo share/locale/uk/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/uk/LC_MESSAGES/kipiplugin_cdarchiving.mo -share/locale/uk/LC_MESSAGES/kipiplugin_findimages.mo +share/locale/uk/LC_MESSAGES/kipiplugin_dngconverter.mo +share/locale/uk/LC_MESSAGES/kipiplugin_fbexport.mo share/locale/uk/LC_MESSAGES/kipiplugin_flickrexport.mo share/locale/uk/LC_MESSAGES/kipiplugin_galleryexport.mo share/locale/uk/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/uk/LC_MESSAGES/kipiplugin_htmlexport.mo -share/locale/uk/LC_MESSAGES/kipiplugin_imagesgallery.mo +share/locale/uk/LC_MESSAGES/kipiplugin_imageviewer.mo share/locale/uk/LC_MESSAGES/kipiplugin_ipodexport.mo share/locale/uk/LC_MESSAGES/kipiplugin_jpeglossless.mo -share/locale/uk/LC_MESSAGES/kipiplugin_kameraklient.mo share/locale/uk/LC_MESSAGES/kipiplugin_metadataedit.mo -share/locale/uk/LC_MESSAGES/kipiplugin_mpegencoder.mo +share/locale/uk/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/uk/LC_MESSAGES/kipiplugin_printwizard.mo share/locale/uk/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/uk/LC_MESSAGES/kipiplugin_removeredeyes.mo share/locale/uk/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/uk/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/uk/LC_MESSAGES/kipiplugin_slideshow.mo -share/locale/uk/LC_MESSAGES/kipiplugin_sync.mo +share/locale/uk/LC_MESSAGES/kipiplugin_smugexport.mo share/locale/uk/LC_MESSAGES/kipiplugin_timeadjust.mo -share/locale/uk/LC_MESSAGES/kipiplugin_viewer.mo share/locale/uk/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/uk/LC_MESSAGES/kipiplugins.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_acquireimages.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_calendar.mo -share/locale/zh_CN/LC_MESSAGES/kipiplugin_imagesgallery.mo +share/locale/zh_CN/LC_MESSAGES/kipiplugin_dngconverter.mo +share/locale/zh_CN/LC_MESSAGES/kipiplugin_fbexport.mo +share/locale/zh_CN/LC_MESSAGES/kipiplugin_flickrexport.mo +share/locale/zh_CN/LC_MESSAGES/kipiplugin_galleryexport.mo +share/locale/zh_CN/LC_MESSAGES/kipiplugin_gpssync.mo +share/locale/zh_CN/LC_MESSAGES/kipiplugin_htmlexport.mo +share/locale/zh_CN/LC_MESSAGES/kipiplugin_imageviewer.mo +share/locale/zh_CN/LC_MESSAGES/kipiplugin_ipodexport.mo +share/locale/zh_CN/LC_MESSAGES/kipiplugin_jpeglossless.mo +share/locale/zh_CN/LC_MESSAGES/kipiplugin_metadataedit.mo +share/locale/zh_CN/LC_MESSAGES/kipiplugin_picasawebexport.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_printwizard.mo +share/locale/zh_CN/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/zh_CN/LC_MESSAGES/kipiplugin_removeredeyes.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/zh_CN/LC_MESSAGES/kipiplugin_simpleviewerexport.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_slideshow.mo +share/locale/zh_CN/LC_MESSAGES/kipiplugin_smugexport.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_timeadjust.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_wallpaper.mo share/locale/zh_CN/LC_MESSAGES/kipiplugins.mo - -@dirrm share/doc/HTML/sv/kipi-plugins -@dirrm share/doc/HTML/ru/kipi-plugins -@dirrm share/doc/HTML/pt_BR/kipi-plugins -@dirrm share/doc/HTML/nl/kipi-plugins -@dirrm share/doc/HTML/it/kipi-plugins -@dirrm share/doc/HTML/et/kipi-plugins -@dirrm share/doc/HTML/es/kipi-plugins -@dirrm share/doc/HTML/en/kipi-plugins -@dirrm share/doc/HTML/de/kipi-plugins - -@dirrmtry share/locale/be/LC_MESSAGES -@dirrmtry share/locale/be +@dirrmtry share/locale/zh_TW/LC_MESSAGES +@dirrmtry share/locale/zh_TW.Big5/LC_MESSAGES +@dirrmtry share/locale/zh_TW.Big5 +@dirrmtry share/locale/zh_TW +@dirrmtry share/locale/zh_CN/LC_MESSAGES +@dirrmtry share/locale/zh_CN.GB2312/LC_MESSAGES +@dirrmtry share/locale/zh_CN.GB2312 +@dirrmtry share/locale/zh_CN +@dirrmtry share/locale/zh/LC_MESSAGES +@dirrmtry share/locale/zh +@dirrmtry share/locale/wa/LC_MESSAGES +@dirrmtry share/locale/wa +@dirrmtry share/locale/vi/LC_MESSAGES +@dirrmtry share/locale/vi +@dirrmtry share/locale/uz/LC_MESSAGES +@dirrmtry share/locale/uz +@dirrmtry share/locale/uk/LC_MESSAGES +@dirrmtry share/locale/uk +@dirrmtry share/locale/tr/LC_MESSAGES +@dirrmtry share/locale/tr +@dirrmtry share/locale/tk/LC_MESSAGES +@dirrmtry share/locale/tk +@dirrmtry share/locale/th/LC_MESSAGES +@dirrmtry share/locale/th +@dirrmtry share/locale/tg/LC_MESSAGES +@dirrmtry share/locale/tg +@dirrmtry share/locale/ta/LC_MESSAGES +@dirrmtry share/locale/ta +@dirrmtry share/locale/sv/LC_MESSAGES +@dirrmtry share/locale/sv +@dirrmtry share/locale/sr@Latn/LC_MESSAGES +@dirrmtry share/locale/sr@Latn +@dirrmtry share/locale/sr/LC_MESSAGES +@dirrmtry share/locale/sr +@dirrmtry share/locale/sq/LC_MESSAGES +@dirrmtry share/locale/sq +@dirrmtry share/locale/sl/LC_MESSAGES +@dirrmtry share/locale/sl +@dirrmtry share/locale/sk/LC_MESSAGES +@dirrmtry share/locale/sk +@dirrmtry share/locale/se/LC_MESSAGES +@dirrmtry share/locale/se +@dirrmtry share/locale/ru/LC_MESSAGES +@dirrmtry share/locale/ru +@dirrmtry share/locale/ro/LC_MESSAGES +@dirrmtry share/locale/ro +@dirrmtry share/locale/pt_PT/LC_MESSAGES +@dirrmtry share/locale/pt_PT +@dirrmtry share/locale/pt_BR/LC_MESSAGES +@dirrmtry share/locale/pt_BR +@dirrmtry share/locale/pt/LC_MESSAGES +@dirrmtry share/locale/pt +@dirrmtry share/locale/pl/LC_MESSAGES +@dirrmtry share/locale/pl +@dirrmtry share/locale/pa/LC_MESSAGES +@dirrmtry share/locale/pa +@dirrmtry share/locale/or/LC_MESSAGES +@dirrmtry share/locale/or +@dirrmtry share/locale/oc/LC_MESSAGES +@dirrmtry share/locale/oc +@dirrmtry share/locale/no/LC_MESSAGES +@dirrmtry share/locale/no +@dirrmtry share/locale/nn/LC_MESSAGES +@dirrmtry share/locale/nn +@dirrmtry share/locale/nl/LC_MESSAGES +@dirrmtry share/locale/nl +@dirrmtry share/locale/ne/LC_MESSAGES +@dirrmtry share/locale/ne @dirrmtry share/locale/nds/LC_MESSAGES @dirrmtry share/locale/nds -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw +@dirrmtry share/locale/nb/LC_MESSAGES +@dirrmtry share/locale/nb +@dirrmtry share/locale/mt/LC_MESSAGES +@dirrmtry share/locale/mt +@dirrmtry share/locale/ms/LC_MESSAGES +@dirrmtry share/locale/ms +@dirrmtry share/locale/mn/LC_MESSAGES +@dirrmtry share/locale/mn +@dirrmtry share/locale/ml/LC_MESSAGES +@dirrmtry share/locale/ml +@dirrmtry share/locale/mk/LC_MESSAGES +@dirrmtry share/locale/mk +@dirrmtry share/locale/lv/LC_MESSAGES +@dirrmtry share/locale/lv +@dirrmtry share/locale/lt/LC_MESSAGES +@dirrmtry share/locale/lt +@dirrmtry share/locale/li/LC_MESSAGES +@dirrmtry share/locale/li +@dirrmtry share/locale/ko/LC_MESSAGES +@dirrmtry share/locale/ko +@dirrmtry share/locale/kn/LC_MESSAGES +@dirrmtry share/locale/kn +@dirrmtry share/locale/km/LC_MESSAGES +@dirrmtry share/locale/km +@dirrmtry share/locale/ka/LC_MESSAGES +@dirrmtry share/locale/ka +@dirrmtry share/locale/ja/LC_MESSAGES +@dirrmtry share/locale/ja +@dirrmtry share/locale/it/LC_MESSAGES +@dirrmtry share/locale/it +@dirrmtry share/locale/is/LC_MESSAGES +@dirrmtry share/locale/is +@dirrmtry share/locale/id/LC_MESSAGES +@dirrmtry share/locale/id +@dirrmtry share/locale/hu/LC_MESSAGES +@dirrmtry share/locale/hu +@dirrmtry share/locale/hr/LC_MESSAGES +@dirrmtry share/locale/hr +@dirrmtry share/locale/hi/LC_MESSAGES +@dirrmtry share/locale/hi +@dirrmtry share/locale/he/LC_MESSAGES +@dirrmtry share/locale/he +@dirrmtry share/locale/gu/LC_MESSAGES +@dirrmtry share/locale/gu +@dirrmtry share/locale/gl/LC_MESSAGES +@dirrmtry share/locale/gl +@dirrmtry share/locale/ga/LC_MESSAGES +@dirrmtry share/locale/ga +@dirrmtry share/locale/fr_FR/LC_MESSAGES +@dirrmtry share/locale/fr_FR +@dirrmtry share/locale/fr/LC_MESSAGES +@dirrmtry share/locale/fr +@dirrmtry share/locale/fi/LC_MESSAGES +@dirrmtry share/locale/fi +@dirrmtry share/locale/fa_IR/LC_MESSAGES +@dirrmtry share/locale/fa_IR +@dirrmtry share/locale/fa/LC_MESSAGES +@dirrmtry share/locale/fa +@dirrmtry share/locale/eu/LC_MESSAGES +@dirrmtry share/locale/eu +@dirrmtry share/locale/et/LC_MESSAGES +@dirrmtry share/locale/et +@dirrmtry share/locale/es_MX/LC_MESSAGES +@dirrmtry share/locale/es_MX +@dirrmtry share/locale/es_ES/LC_MESSAGES +@dirrmtry share/locale/es_ES +@dirrmtry share/locale/es/LC_MESSAGES +@dirrmtry share/locale/es +@dirrmtry share/locale/eo/LC_MESSAGES +@dirrmtry share/locale/eo +@dirrmtry share/locale/en_GB/LC_MESSAGES +@dirrmtry share/locale/en_GB +@dirrmtry share/locale/en_CA/LC_MESSAGES +@dirrmtry share/locale/en_CA +@dirrmtry share/locale/en_AU/LC_MESSAGES +@dirrmtry share/locale/en_AU +@dirrmtry share/locale/en/LC_MESSAGES +@dirrmtry share/locale/en +@dirrmtry share/locale/el/LC_MESSAGES +@dirrmtry share/locale/el +@dirrmtry share/locale/ee/LC_MESSAGES +@dirrmtry share/locale/ee +@dirrmtry share/locale/dk/LC_MESSAGES +@dirrmtry share/locale/dk +@dirrmtry share/locale/de_AT/LC_MESSAGES +@dirrmtry share/locale/de_AT +@dirrmtry share/locale/de/LC_MESSAGES +@dirrmtry share/locale/de +@dirrmtry share/locale/da/LC_MESSAGES +@dirrmtry share/locale/da +@dirrmtry share/locale/cy/LC_MESSAGES +@dirrmtry share/locale/cy +@dirrmtry share/locale/cs/LC_MESSAGES +@dirrmtry share/locale/cs +@dirrmtry share/locale/ca/LC_MESSAGES +@dirrmtry share/locale/ca +@dirrmtry share/locale/bs/LC_MESSAGES +@dirrmtry share/locale/bs +@dirrmtry share/locale/br/LC_MESSAGES +@dirrmtry share/locale/br +@dirrmtry share/locale/bn/LC_MESSAGES +@dirrmtry share/locale/bn +@dirrmtry share/locale/bg/LC_MESSAGES +@dirrmtry share/locale/bg +@dirrmtry share/locale/be/LC_MESSAGES +@dirrmtry share/locale/be +@dirrmtry share/locale/az/LC_MESSAGES +@dirrmtry share/locale/az +@dirrmtry share/locale/ar/LC_MESSAGES +@dirrmtry share/locale/ar +@dirrmtry share/locale/am/LC_MESSAGES +@dirrmtry share/locale/am +@dirrmtry share/locale/af/LC_MESSAGES +@dirrmtry share/locale/af +@dirrmtry share/locale +@dirrmtry share/kde4/services +@dirrmtry share/kde4 +@dirrmtry share/java/classes +@dirrmtry share/java +@dirrmtry share/icons/hicolor/64x64/actions +@dirrmtry share/icons/hicolor/64x64 +@dirrmtry share/icons/hicolor/32x32/actions +@dirrmtry share/icons/hicolor/32x32 +@dirrmtry share/icons/hicolor/22x22/actions +@dirrmtry share/icons/hicolor/22x22 +@dirrmtry share/icons/hicolor/16x16/actions +@dirrmtry share/icons/hicolor/16x16 +@dirrmtry share/icons/hicolor/128x128/actions +@dirrmtry share/icons/hicolor/128x128 +@dirrmtry share/icons/hicolor +@dirrmtry share/icons +@dirrmtry share/apps/kipiplugin_slideshow +@dirrmtry share/apps/kipiplugin_simpleviewerexport/simpleviewer_html +@dirrmtry share/apps/kipiplugin_simpleviewerexport +@dirrmtry share/apps/kipiplugin_metadataedit/data +@dirrmtry share/apps/kipiplugin_metadataedit +@dirrmtry share/apps/kipiplugin_imageviewer/pics +@dirrmtry share/apps/kipiplugin_imageviewer +@dirrmtry share/apps/kipiplugin_htmlexport/themes/snow +@dirrmtry share/apps/kipiplugin_htmlexport/themes/simple +@dirrmtry share/apps/kipiplugin_htmlexport/themes/s0 +@dirrmtry share/apps/kipiplugin_htmlexport/themes/matrix +@dirrmtry share/apps/kipiplugin_htmlexport/themes/frames +@dirrmtry share/apps/kipiplugin_htmlexport/themes/cleanframes +@dirrmtry share/apps/kipiplugin_htmlexport/themes/classic +@dirrmtry share/apps/kipiplugin_htmlexport/themes +@dirrmtry share/apps/kipiplugin_htmlexport +@dirrmtry share/apps/kipiplugin_galleryexport/pics +@dirrmtry share/apps/kipiplugin_galleryexport +@dirrmtry share/apps/kipiplugin_removeredeyes +@dirrmtry lib/kde4 diff --git a/graphics/kpovmodeler/Makefile b/graphics/kpovmodeler/Makefile index 760c5e34e07b..ed8a8e532612 100644 --- a/graphics/kpovmodeler/Makefile +++ b/graphics/kpovmodeler/Makefile @@ -24,6 +24,6 @@ USE_CMAKE= yes USE_GETTEXT= yes APP_VER= 1.1.3 -EXTRA_VER= 4.1.2 +EXTRA_VER= 4.2.0 .include <bsd.port.mk> diff --git a/graphics/kpovmodeler/distinfo b/graphics/kpovmodeler/distinfo index 24701f7cb041..542bb2c8c500 100644 --- a/graphics/kpovmodeler/distinfo +++ b/graphics/kpovmodeler/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/extragear/kpovmodeler-1.1.3-kde4.1.2.tar.bz2) = 9b07ccf380a68427458b05e0b6fd70ec -SHA256 (KDE/extragear/kpovmodeler-1.1.3-kde4.1.2.tar.bz2) = 8bb0e337432ca1f99f0df05662d7c52a8b03fe0e2cc046df2a6f9876123e91df -SIZE (KDE/extragear/kpovmodeler-1.1.3-kde4.1.2.tar.bz2) = 1867240 +MD5 (KDE/extragear/kpovmodeler-1.1.3-kde4.2.0.tar.bz2) = 747f17289a12f5e4f73255952f783fd5 +SHA256 (KDE/extragear/kpovmodeler-1.1.3-kde4.2.0.tar.bz2) = b3fd33c83ffdb8e86e70225214eab5ff73fb0ec0861bdfa33582814588e2f95a +SIZE (KDE/extragear/kpovmodeler-1.1.3-kde4.2.0.tar.bz2) = 1842555 diff --git a/graphics/skanlite/Makefile b/graphics/skanlite/Makefile index 2244fb672823..8ec8c543fb69 100644 --- a/graphics/skanlite/Makefile +++ b/graphics/skanlite/Makefile @@ -25,6 +25,6 @@ QT_COMPONENTS= corelib qmake_build moc_build rcc_build uic_build USE_CMAKE= yes APP_VER= 0.2 -EXTRA_VER= 4.1.2 +EXTRA_VER= 4.2.0 .include <bsd.port.mk> diff --git a/graphics/skanlite/distinfo b/graphics/skanlite/distinfo index f546fff3f353..2488f057d7fb 100644 --- a/graphics/skanlite/distinfo +++ b/graphics/skanlite/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/extragear/skanlite-0.2-kde4.1.2.tar.bz2) = 3c23fbd137c92ee4add4a6bcd9ebc453 -SHA256 (KDE/extragear/skanlite-0.2-kde4.1.2.tar.bz2) = 798c952502186668b6717432886d8b896a10004c90f547f6df83bd43177d8e2b -SIZE (KDE/extragear/skanlite-0.2-kde4.1.2.tar.bz2) = 1224251 +MD5 (KDE/extragear/skanlite-0.2-kde4.2.0.tar.bz2) = a3442f520720099af98510dd7714a07e +SHA256 (KDE/extragear/skanlite-0.2-kde4.2.0.tar.bz2) = b5720950b8fecfd9f772bb38564dee2534bfe3d9a3f36e265f41451353a0434e +SIZE (KDE/extragear/skanlite-0.2-kde4.2.0.tar.bz2) = 1177331 diff --git a/graphics/skanlite/pkg-plist b/graphics/skanlite/pkg-plist index c9cb1e1a458d..16a79c783685 100644 --- a/graphics/skanlite/pkg-plist +++ b/graphics/skanlite/pkg-plist @@ -14,7 +14,18 @@ share/doc/HTML/en/skanlite/scanning.png share/doc/HTML/en/skanlite/settings.png share/doc/HTML/en/skanlite/zoom-in.png share/doc/HTML/en/skanlite/zoom-to-fit.png +share/doc/HTML/pt/skanlite/common +share/doc/HTML/pt/skanlite/index.cache.bz2 +share/doc/HTML/pt/skanlite/index.docbook +share/doc/HTML/sv/skanlite/common +share/doc/HTML/sv/skanlite/index.cache.bz2 +share/doc/HTML/sv/skanlite/index.docbook +share/doc/HTML/uk/skanlite/common +share/doc/HTML/uk/skanlite/index.cache.bz2 +share/doc/HTML/uk/skanlite/index.docbook share/locale/be/LC_MESSAGES/skanlite.mo +share/locale/cs/LC_MESSAGES/skanlite.mo +share/locale/da/LC_MESSAGES/skanlite.mo share/locale/de/LC_MESSAGES/skanlite.mo share/locale/el/LC_MESSAGES/skanlite.mo share/locale/es/LC_MESSAGES/skanlite.mo @@ -22,11 +33,16 @@ share/locale/et/LC_MESSAGES/skanlite.mo share/locale/fr/LC_MESSAGES/skanlite.mo share/locale/ga/LC_MESSAGES/skanlite.mo share/locale/gl/LC_MESSAGES/skanlite.mo +share/locale/it/LC_MESSAGES/skanlite.mo share/locale/ja/LC_MESSAGES/skanlite.mo share/locale/km/LC_MESSAGES/skanlite.mo +share/locale/lt/LC_MESSAGES/skanlite.mo share/locale/lv/LC_MESSAGES/skanlite.mo +share/locale/nb/LC_MESSAGES/skanlite.mo share/locale/nds/LC_MESSAGES/skanlite.mo share/locale/nl/LC_MESSAGES/skanlite.mo +share/locale/nn/LC_MESSAGES/skanlite.mo +share/locale/pa/LC_MESSAGES/skanlite.mo share/locale/pl/LC_MESSAGES/skanlite.mo share/locale/pt/LC_MESSAGES/skanlite.mo share/locale/pt_BR/LC_MESSAGES/skanlite.mo @@ -35,10 +51,10 @@ share/locale/sk/LC_MESSAGES/skanlite.mo share/locale/sv/LC_MESSAGES/skanlite.mo share/locale/tr/LC_MESSAGES/skanlite.mo share/locale/uk/LC_MESSAGES/skanlite.mo +share/locale/wa/LC_MESSAGES/skanlite.mo share/locale/zh_CN/LC_MESSAGES/skanlite.mo share/locale/zh_TW/LC_MESSAGES/skanlite.mo -@dirrmtry share/locale/nds/LC_MESSAGES -@dirrmtry share/locale/nds -@dirrmtry share/locale/km/LC_MESSAGES -@dirrmtry share/locale/km +@dirrm share/doc/HTML/uk/skanlite +@dirrm share/doc/HTML/sv/skanlite +@dirrm share/doc/HTML/pt/skanlite @dirrm share/doc/HTML/en/skanlite diff --git a/hebrew/Makefile b/hebrew/Makefile index a9b99ffdb424..a69cbbc87215 100644 --- a/hebrew/Makefile +++ b/hebrew/Makefile @@ -9,6 +9,7 @@ SUBDIR += he2 SUBDIR += hspell SUBDIR += kde3-i18n + SUBDIR += kde4-l10n SUBDIR += koffice-i18n .include <bsd.port.subdir.mk> diff --git a/hebrew/kde4-l10n/Makefile b/hebrew/kde4-l10n/Makefile index 18dba3b7090b..d0ceb5d3e03c 100644 --- a/hebrew/kde4-l10n/Makefile +++ b/hebrew/kde4-l10n/Makefile @@ -1,29 +1,21 @@ -# New ports collection makefile for: kde3-i18n-he -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> +# New ports collection makefile for: kde4-l10n +# Date created: 2009-01-25 +# Whom: Max Brazhnikov <makc@FreeBSD.org> # # $FreeBSD$ # -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} +PORTNAME= kde-l10n +PORTVERSION= ${KDE4_VERSION} CATEGORIES?= hebrew kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= he- -DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org -COMMENT= Hebrew messages and documentation for KDE3 +COMMENT= Hebrew messages and documentation for KDE4 -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext +KDE4_L10N= he -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" +post-extract: + ${MKDIR} ${WRKSRC}/build +.include "${.CURDIR}/../../misc/kde4-l10n/files/bsd.l10n.mk" .include <bsd.port.mk> diff --git a/hebrew/kde4-l10n/distinfo b/hebrew/kde4-l10n/distinfo index bc5431169dfb..86a695dc22ec 100644 --- a/hebrew/kde4-l10n/distinfo +++ b/hebrew/kde4-l10n/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-i18n/kde-i18n-he-3.5.10.tar.bz2) = 4ba23539fa791d7a9e9b93c6992031a5 -SHA256 (KDE/kde-i18n/kde-i18n-he-3.5.10.tar.bz2) = 382d7aeee7e5e4c7c9442e612255ead6e9258ee7fe9392e9ba7e7b4fbd9bc1c1 -SIZE (KDE/kde-i18n/kde-i18n-he-3.5.10.tar.bz2) = 2193058 +MD5 (KDE/kde-l10n/kde-l10n-he-4.2.0.tar.bz2) = e45690f965c153b2f25ebba5358d1912 +SHA256 (KDE/kde-l10n/kde-l10n-he-4.2.0.tar.bz2) = f14f993ee90dad6ac56d5b03f3c46afa319bea6dd9882b20a3ca3023aaccbe6f +SIZE (KDE/kde-l10n/kde-l10n-he-4.2.0.tar.bz2) = 2004541 diff --git a/hebrew/kde4-l10n/pkg-descr b/hebrew/kde4-l10n/pkg-descr index 3354ca873ecc..3073b1096b79 100644 --- a/hebrew/kde4-l10n/pkg-descr +++ b/hebrew/kde4-l10n/pkg-descr @@ -1,3 +1,3 @@ -Localized messages and documentation for KDE3. +Localized messages and documentation for KDE4. WWW: http://i18n.kde.org/ diff --git a/hebrew/kde4-l10n/pkg-plist b/hebrew/kde4-l10n/pkg-plist index c88f8dacebff..d0f3fbb125b6 100644 --- a/hebrew/kde4-l10n/pkg-plist +++ b/hebrew/kde4-l10n/pkg-plist @@ -51,167 +51,65 @@ share/apps/klettres/he/syllab/ad-23.ogg share/apps/klettres/he/syllab/ad-24.ogg share/apps/klettres/he/syllab/ad-25.ogg share/apps/klettres/he/syllab/ad-26.ogg -share/doc/HTML/he/common/1.png -share/doc/HTML/he/common/10.png -share/doc/HTML/he/common/2.png -share/doc/HTML/he/common/3.png -share/doc/HTML/he/common/4.png -share/doc/HTML/he/common/5.png -share/doc/HTML/he/common/6.png -share/doc/HTML/he/common/7.png -share/doc/HTML/he/common/8.png -share/doc/HTML/he/common/9.png -share/doc/HTML/he/common/appheader.html -share/doc/HTML/he/common/artistic-license.html -share/doc/HTML/he/common/bottom-left.png -share/doc/HTML/he/common/bottom-middle.png -share/doc/HTML/he/common/bottom-right.png -share/doc/HTML/he/common/bottom1.png -share/doc/HTML/he/common/bottom2.png -share/doc/HTML/he/common/bsd-license.html -share/doc/HTML/he/common/docheadergears.png -share/doc/HTML/he/common/doctop1.png -share/doc/HTML/he/common/doctop1a.png -share/doc/HTML/he/common/doctop1b.png -share/doc/HTML/he/common/doctop2.png -share/doc/HTML/he/common/doxygen.css -share/doc/HTML/he/common/favicon.ico -share/doc/HTML/he/common/fdl-license -share/doc/HTML/he/common/fdl-license.html -share/doc/HTML/he/common/fdl-notice.html -share/doc/HTML/he/common/fdl-translated.html -share/doc/HTML/he/common/footer.html -share/doc/HTML/he/common/gpl-license -share/doc/HTML/he/common/gpl-license.html -share/doc/HTML/he/common/gpl-translated.html -share/doc/HTML/he/common/grad.png -share/doc/HTML/he/common/header.html -share/doc/HTML/he/common/headerbg.png -share/doc/HTML/he/common/kde-common.css -share/doc/HTML/he/common/kde-default.css -share/doc/HTML/he/common/kde-localised.css -share/doc/HTML/he/common/kde-localised.css.template -share/doc/HTML/he/common/kde-web.css -share/doc/HTML/he/common/kde_gear_64.png -share/doc/HTML/he/common/kde_logo.png -share/doc/HTML/he/common/kde_logo_bg.png -share/doc/HTML/he/common/kmenu.png -share/doc/HTML/he/common/lgpl-license -share/doc/HTML/he/common/lgpl-license.html -share/doc/HTML/he/common/lgpl-translated.html -share/doc/HTML/he/common/logotp3.png -share/doc/HTML/he/common/mainfooter.html -share/doc/HTML/he/common/mainheader.html -share/doc/HTML/he/common/qpl-license.html -share/doc/HTML/he/common/shadow.png -share/doc/HTML/he/common/top-left.png -share/doc/HTML/he/common/top-middle.png -share/doc/HTML/he/common/top-right-konqueror.png -share/doc/HTML/he/common/web-docbottom.png -share/doc/HTML/he/common/web-doctop.png -share/doc/HTML/he/common/x11-license.html -share/doc/HTML/he/common/xml.dcl -share/doc/HTML/he/khelpcenter/khelpcenter.png -share/doc/HTML/he/khelpcenter/konq.css -share/doc/HTML/he/khelpcenter/main.html share/locale/he/LC_MESSAGES/akregator.mo -share/locale/he/LC_MESSAGES/akregator_konqplugin.mo -share/locale/he/LC_MESSAGES/alsaplayerui.mo share/locale/he/LC_MESSAGES/amor.mo -share/locale/he/LC_MESSAGES/appletproxy.mo share/locale/he/LC_MESSAGES/ark.mo -share/locale/he/LC_MESSAGES/ark_plugin.mo -share/locale/he/LC_MESSAGES/artsbuilder.mo -share/locale/he/LC_MESSAGES/artscontrol.mo -share/locale/he/LC_MESSAGES/artsmodules.mo -share/locale/he/LC_MESSAGES/atlantik.mo -share/locale/he/LC_MESSAGES/atlantikdesigner.mo share/locale/he/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/he/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/he/LC_MESSAGES/audiorename_plugin.mo -share/locale/he/LC_MESSAGES/autorefresh.mo -share/locale/he/LC_MESSAGES/babelfish.mo share/locale/he/LC_MESSAGES/blinken.mo share/locale/he/LC_MESSAGES/cervisia.mo -share/locale/he/LC_MESSAGES/charlatanui.mo -share/locale/he/LC_MESSAGES/clockapplet.mo -share/locale/he/LC_MESSAGES/crashesplugin.mo -share/locale/he/LC_MESSAGES/cupsdconf.mo -share/locale/he/LC_MESSAGES/dcoprss.mo -share/locale/he/LC_MESSAGES/dirfilterplugin.mo share/locale/he/LC_MESSAGES/display.mo -share/locale/he/LC_MESSAGES/dockbarextension.mo -share/locale/he/LC_MESSAGES/domtreeviewer.mo +share/locale/he/LC_MESSAGES/dolphin.mo +share/locale/he/LC_MESSAGES/dragonplayer.mo share/locale/he/LC_MESSAGES/drkonqi.mo -share/locale/he/LC_MESSAGES/dub.mo -share/locale/he/LC_MESSAGES/extensionproxy.mo -share/locale/he/LC_MESSAGES/ffrs.mo share/locale/he/LC_MESSAGES/filetypes.mo -share/locale/he/LC_MESSAGES/fsview.mo share/locale/he/LC_MESSAGES/htmlsearch.mo share/locale/he/LC_MESSAGES/imagerename_plugin.mo -share/locale/he/LC_MESSAGES/imgalleryplugin.mo -share/locale/he/LC_MESSAGES/irkick.mo share/locale/he/LC_MESSAGES/joystick.mo share/locale/he/LC_MESSAGES/juk.mo -share/locale/he/LC_MESSAGES/kabc2mutt.mo share/locale/he/LC_MESSAGES/kabc_dir.mo share/locale/he/LC_MESSAGES/kabc_file.mo share/locale/he/LC_MESSAGES/kabc_ldapkio.mo share/locale/he/LC_MESSAGES/kabc_net.mo share/locale/he/LC_MESSAGES/kabc_slox.mo -share/locale/he/LC_MESSAGES/kabc_sql.mo share/locale/he/LC_MESSAGES/kabcformat_binary.mo -share/locale/he/LC_MESSAGES/kaboodle.mo share/locale/he/LC_MESSAGES/kaccess.mo share/locale/he/LC_MESSAGES/kaddressbook.mo share/locale/he/LC_MESSAGES/kalarm.mo share/locale/he/LC_MESSAGES/kalzium.mo +share/locale/he/LC_MESSAGES/kalzium_qt.mo share/locale/he/LC_MESSAGES/kanagram.mo -share/locale/he/LC_MESSAGES/kandy.mo share/locale/he/LC_MESSAGES/kappfinder.mo -share/locale/he/LC_MESSAGES/karm.mo -share/locale/he/LC_MESSAGES/kasbarextension.mo -share/locale/he/LC_MESSAGES/kasteroids.mo share/locale/he/LC_MESSAGES/kate.mo -share/locale/he/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/he/LC_MESSAGES/katefiletemplates.mo -share/locale/he/LC_MESSAGES/katefll_initplugin.mo -share/locale/he/LC_MESSAGES/katefll_plugin.mo share/locale/he/LC_MESSAGES/katehelloworld.mo share/locale/he/LC_MESSAGES/katehtmltools.mo -share/locale/he/LC_MESSAGES/kateinsertcommand.mo -share/locale/he/LC_MESSAGES/katekjswrapper.mo -share/locale/he/LC_MESSAGES/katemake.mo -share/locale/he/LC_MESSAGES/katemodeline.mo share/locale/he/LC_MESSAGES/kateopenheader.mo -share/locale/he/LC_MESSAGES/katepart.mo +share/locale/he/LC_MESSAGES/katepart4.mo share/locale/he/LC_MESSAGES/katepybrowse.mo share/locale/he/LC_MESSAGES/katetabbarextension.mo share/locale/he/LC_MESSAGES/katetextfilter.mo share/locale/he/LC_MESSAGES/katexmlcheck.mo share/locale/he/LC_MESSAGES/katexmltools.mo share/locale/he/LC_MESSAGES/katomic.mo -share/locale/he/LC_MESSAGES/kaudiocreator.mo -share/locale/he/LC_MESSAGES/kay.mo -share/locale/he/LC_MESSAGES/kbabel.mo -share/locale/he/LC_MESSAGES/kbackgammon.mo share/locale/he/LC_MESSAGES/kbattleship.mo -share/locale/he/LC_MESSAGES/kbinaryclock.mo share/locale/he/LC_MESSAGES/kblackbox.mo +share/locale/he/LC_MESSAGES/kblankscrn.mo share/locale/he/LC_MESSAGES/kbounce.mo share/locale/he/LC_MESSAGES/kbruch.mo share/locale/he/LC_MESSAGES/kcalc.mo +share/locale/he/LC_MESSAGES/kcertpart.mo share/locale/he/LC_MESSAGES/kcharselect.mo -share/locale/he/LC_MESSAGES/kcharselectapplet.mo +share/locale/he/LC_MESSAGES/kcm_autostart.mo +share/locale/he/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/he/LC_MESSAGES/kcm_krfb.mo -share/locale/he/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/he/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/he/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/he/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo +share/locale/he/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/he/LC_MESSAGES/kcm_memory.mo +share/locale/he/LC_MESSAGES/kcm_partition.mo +share/locale/he/LC_MESSAGES/kcm_phonon.mo +share/locale/he/LC_MESSAGES/kcm_solid.mo +share/locale/he/LC_MESSAGES/kcm_standard_actions.mo share/locale/he/LC_MESSAGES/kcmaccess.mo -share/locale/he/LC_MESSAGES/kcmaccessibility.mo -share/locale/he/LC_MESSAGES/kcmarts.mo share/locale/he/LC_MESSAGES/kcmaudiocd.mo share/locale/he/LC_MESSAGES/kcmbackground.mo share/locale/he/LC_MESSAGES/kcmbell.mo @@ -226,6 +124,7 @@ share/locale/he/LC_MESSAGES/kcmfonts.mo share/locale/he/LC_MESSAGES/kcmhtmlsearch.mo share/locale/he/LC_MESSAGES/kcmicons.mo share/locale/he/LC_MESSAGES/kcminfo.mo +share/locale/he/LC_MESSAGES/kcminit.mo share/locale/he/LC_MESSAGES/kcminput.mo share/locale/he/LC_MESSAGES/kcmioslaveinfo.mo share/locale/he/LC_MESSAGES/kcmkabconfig.mo @@ -233,182 +132,122 @@ share/locale/he/LC_MESSAGES/kcmkamera.mo share/locale/he/LC_MESSAGES/kcmkclock.mo share/locale/he/LC_MESSAGES/kcmkded.mo share/locale/he/LC_MESSAGES/kcmkdnssd.mo +share/locale/he/LC_MESSAGES/kcmkeyboard.mo share/locale/he/LC_MESSAGES/kcmkeys.mo -share/locale/he/LC_MESSAGES/kcmkicker.mo +share/locale/he/LC_MESSAGES/kcmkgamma.mo share/locale/he/LC_MESSAGES/kcmkio.mo share/locale/he/LC_MESSAGES/kcmkonq.mo share/locale/he/LC_MESSAGES/kcmkonqhtml.mo -share/locale/he/LC_MESSAGES/kcmkonsole.mo -share/locale/he/LC_MESSAGES/kcmkontactnt.mo -share/locale/he/LC_MESSAGES/kcmktalkd.mo -share/locale/he/LC_MESSAGES/kcmkuick.mo share/locale/he/LC_MESSAGES/kcmkurifilt.mo -share/locale/he/LC_MESSAGES/kcmkvaio.mo +share/locale/he/LC_MESSAGES/kcmkwincompositing.mo share/locale/he/LC_MESSAGES/kcmkwindecoration.mo share/locale/he/LC_MESSAGES/kcmkwinrules.mo share/locale/he/LC_MESSAGES/kcmkwm.mo -share/locale/he/LC_MESSAGES/kcmlanbrowser.mo -share/locale/he/LC_MESSAGES/kcmlaptop.mo share/locale/he/LC_MESSAGES/kcmlaunch.mo -share/locale/he/LC_MESSAGES/kcmlayout.mo share/locale/he/LC_MESSAGES/kcmlilo.mo -share/locale/he/LC_MESSAGES/kcmlirc.mo share/locale/he/LC_MESSAGES/kcmlocale.mo -share/locale/he/LC_MESSAGES/kcmmedia.mo share/locale/he/LC_MESSAGES/kcmnic.mo share/locale/he/LC_MESSAGES/kcmnotify.mo +share/locale/he/LC_MESSAGES/kcmopengl.mo share/locale/he/LC_MESSAGES/kcmperformance.mo -share/locale/he/LC_MESSAGES/kcmprintmgr.mo share/locale/he/LC_MESSAGES/kcmsamba.mo share/locale/he/LC_MESSAGES/kcmscreensaver.mo share/locale/he/LC_MESSAGES/kcmshell.mo share/locale/he/LC_MESSAGES/kcmsmartcard.mo share/locale/he/LC_MESSAGES/kcmsmserver.mo -share/locale/he/LC_MESSAGES/kcmspellchecking.mo +share/locale/he/LC_MESSAGES/kcmsolidproc.mo share/locale/he/LC_MESSAGES/kcmstyle.mo -share/locale/he/LC_MESSAGES/kcmtaskbar.mo share/locale/he/LC_MESSAGES/kcmusb.mo share/locale/he/LC_MESSAGES/kcmview1394.mo -share/locale/he/LC_MESSAGES/kcmwifi.mo share/locale/he/LC_MESSAGES/kcmxinerama.mo -share/locale/he/LC_MESSAGES/kcoloredit.mo -share/locale/he/LC_MESSAGES/kcontrol.mo share/locale/he/LC_MESSAGES/kcron.mo share/locale/he/LC_MESSAGES/kdat.mo -share/locale/he/LC_MESSAGES/kdcop.mo share/locale/he/LC_MESSAGES/kdebugdialog.mo -share/locale/he/LC_MESSAGES/kdelibs.mo -share/locale/he/LC_MESSAGES/kdelirc.mo +share/locale/he/LC_MESSAGES/kded_phononserver.mo +share/locale/he/LC_MESSAGES/kdelibs4.mo +share/locale/he/LC_MESSAGES/kdelibs_colors4.mo share/locale/he/LC_MESSAGES/kdepasswd.mo share/locale/he/LC_MESSAGES/kdepimresources.mo share/locale/he/LC_MESSAGES/kdepimwizards.mo -share/locale/he/LC_MESSAGES/kdeprint.mo -share/locale/he/LC_MESSAGES/kdeprint_part.mo -share/locale/he/LC_MESSAGES/kdeprintfax.mo -share/locale/he/LC_MESSAGES/kdesktop.mo +share/locale/he/LC_MESSAGES/kdeqt.mo share/locale/he/LC_MESSAGES/kdessh.mo share/locale/he/LC_MESSAGES/kdesu.mo share/locale/he/LC_MESSAGES/kdesud.mo share/locale/he/LC_MESSAGES/kdf.mo -share/locale/he/LC_MESSAGES/kdgantt.mo +share/locale/he/LC_MESSAGES/kdgantt1.mo share/locale/he/LC_MESSAGES/kdialog.mo -share/locale/he/LC_MESSAGES/kdict.mo -share/locale/he/LC_MESSAGES/kdictapplet.mo share/locale/he/LC_MESSAGES/kdmconfig.mo share/locale/he/LC_MESSAGES/kdmgreet.mo -share/locale/he/LC_MESSAGES/kdvi.mo -share/locale/he/LC_MESSAGES/kedit.mo -share/locale/he/LC_MESSAGES/keduca.mo -share/locale/he/LC_MESSAGES/kenolaba.mo -share/locale/he/LC_MESSAGES/kfax.mo -share/locale/he/LC_MESSAGES/kfifteenapplet.mo -share/locale/he/LC_MESSAGES/kfile_au.mo +share/locale/he/LC_MESSAGES/keditbookmarks.mo share/locale/he/LC_MESSAGES/kfile_avi.mo -share/locale/he/LC_MESSAGES/kfile_bmp.mo -share/locale/he/LC_MESSAGES/kfile_cpp.mo share/locale/he/LC_MESSAGES/kfile_dds.mo -share/locale/he/LC_MESSAGES/kfile_deb.mo -share/locale/he/LC_MESSAGES/kfile_desktop.mo -share/locale/he/LC_MESSAGES/kfile_diff.mo share/locale/he/LC_MESSAGES/kfile_drgeo.mo share/locale/he/LC_MESSAGES/kfile_dvi.mo share/locale/he/LC_MESSAGES/kfile_exr.mo share/locale/he/LC_MESSAGES/kfile_flac.mo -share/locale/he/LC_MESSAGES/kfile_folder.mo -share/locale/he/LC_MESSAGES/kfile_gif.mo -share/locale/he/LC_MESSAGES/kfile_html.mo -share/locale/he/LC_MESSAGES/kfile_ico.mo -share/locale/he/LC_MESSAGES/kfile_ics.mo -share/locale/he/LC_MESSAGES/kfile_jpeg.mo share/locale/he/LC_MESSAGES/kfile_kig.mo -share/locale/he/LC_MESSAGES/kfile_lnk.mo -share/locale/he/LC_MESSAGES/kfile_m3u.mo share/locale/he/LC_MESSAGES/kfile_mp3.mo share/locale/he/LC_MESSAGES/kfile_mpc.mo -share/locale/he/LC_MESSAGES/kfile_mpeg.mo share/locale/he/LC_MESSAGES/kfile_ogg.mo -share/locale/he/LC_MESSAGES/kfile_palm.mo -share/locale/he/LC_MESSAGES/kfile_pcx.mo -share/locale/he/LC_MESSAGES/kfile_pdf.mo -share/locale/he/LC_MESSAGES/kfile_png.mo share/locale/he/LC_MESSAGES/kfile_pnm.mo -share/locale/he/LC_MESSAGES/kfile_po.mo -share/locale/he/LC_MESSAGES/kfile_ps.mo -share/locale/he/LC_MESSAGES/kfile_rfc822.mo share/locale/he/LC_MESSAGES/kfile_rgb.mo share/locale/he/LC_MESSAGES/kfile_rpm.mo share/locale/he/LC_MESSAGES/kfile_sid.mo -share/locale/he/LC_MESSAGES/kfile_tga.mo share/locale/he/LC_MESSAGES/kfile_theora.mo share/locale/he/LC_MESSAGES/kfile_tiff.mo share/locale/he/LC_MESSAGES/kfile_torrent.mo -share/locale/he/LC_MESSAGES/kfile_ts.mo -share/locale/he/LC_MESSAGES/kfile_txt.mo -share/locale/he/LC_MESSAGES/kfile_vcf.mo share/locale/he/LC_MESSAGES/kfile_wav.mo -share/locale/he/LC_MESSAGES/kfile_xbm.mo -share/locale/he/LC_MESSAGES/kfile_xpm.mo -share/locale/he/LC_MESSAGES/kfileaudiopreview.mo +share/locale/he/LC_MESSAGES/kfileaudiopreview4.mo share/locale/he/LC_MESSAGES/kfileshare.mo share/locale/he/LC_MESSAGES/kfindpart.mo share/locale/he/LC_MESSAGES/kfloppy.mo share/locale/he/LC_MESSAGES/kfmclient.mo share/locale/he/LC_MESSAGES/kfontinst.mo -share/locale/he/LC_MESSAGES/kfouleggs.mo -share/locale/he/LC_MESSAGES/kgamma.mo -share/locale/he/LC_MESSAGES/kgantt.mo +share/locale/he/LC_MESSAGES/kfourinline.mo share/locale/he/LC_MESSAGES/kgeography.mo share/locale/he/LC_MESSAGES/kget.mo -share/locale/he/LC_MESSAGES/kghostview.mo share/locale/he/LC_MESSAGES/kgpg.mo share/locale/he/LC_MESSAGES/kgreet_classic.mo +share/locale/he/LC_MESSAGES/kgreet_generic.mo +share/locale/he/LC_MESSAGES/kgreet_winbind.mo share/locale/he/LC_MESSAGES/khangman.mo share/locale/he/LC_MESSAGES/khelpcenter.mo -share/locale/he/LC_MESSAGES/khexedit.mo share/locale/he/LC_MESSAGES/khotkeys.mo +share/locale/he/LC_MESSAGES/khotnewstuff.mo share/locale/he/LC_MESSAGES/khtmlkttsd.mo -share/locale/he/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/he/LC_MESSAGES/kicker.mo -share/locale/he/LC_MESSAGES/kiconedit.mo +share/locale/he/LC_MESSAGES/kiconfinder.mo share/locale/he/LC_MESSAGES/kinetd.mo -share/locale/he/LC_MESSAGES/kio.mo +share/locale/he/LC_MESSAGES/kinfocenter.mo +share/locale/he/LC_MESSAGES/kio4.mo +share/locale/he/LC_MESSAGES/kio_applications.mo +share/locale/he/LC_MESSAGES/kio_archive.mo share/locale/he/LC_MESSAGES/kio_audiocd.mo +share/locale/he/LC_MESSAGES/kio_bookmarks.mo share/locale/he/LC_MESSAGES/kio_finger.mo share/locale/he/LC_MESSAGES/kio_fish.mo share/locale/he/LC_MESSAGES/kio_floppy.mo share/locale/he/LC_MESSAGES/kio_groupwise.mo -share/locale/he/LC_MESSAGES/kio_help.mo -share/locale/he/LC_MESSAGES/kio_home.mo +share/locale/he/LC_MESSAGES/kio_help4.mo share/locale/he/LC_MESSAGES/kio_imap4.mo -share/locale/he/LC_MESSAGES/kio_lan.mo share/locale/he/LC_MESSAGES/kio_ldap.mo -share/locale/he/LC_MESSAGES/kio_mac.mo share/locale/he/LC_MESSAGES/kio_man.mo -share/locale/he/LC_MESSAGES/kio_media.mo -share/locale/he/LC_MESSAGES/kio_mobile.mo +share/locale/he/LC_MESSAGES/kio_nepomuksearch.mo share/locale/he/LC_MESSAGES/kio_nfs.mo share/locale/he/LC_MESSAGES/kio_nntp.mo share/locale/he/LC_MESSAGES/kio_pop3.mo -share/locale/he/LC_MESSAGES/kio_print.mo share/locale/he/LC_MESSAGES/kio_remote.mo -share/locale/he/LC_MESSAGES/kio_settings.mo share/locale/he/LC_MESSAGES/kio_sftp.mo share/locale/he/LC_MESSAGES/kio_sieve.mo share/locale/he/LC_MESSAGES/kio_smb.mo share/locale/he/LC_MESSAGES/kio_smtp.mo share/locale/he/LC_MESSAGES/kio_svn.mo -share/locale/he/LC_MESSAGES/kio_system.mo -share/locale/he/LC_MESSAGES/kio_tar.mo share/locale/he/LC_MESSAGES/kio_thumbnail.mo share/locale/he/LC_MESSAGES/kio_trash.mo share/locale/he/LC_MESSAGES/kioexec.mo -share/locale/he/LC_MESSAGES/kjobviewer.mo share/locale/he/LC_MESSAGES/kjots.mo share/locale/he/LC_MESSAGES/kjumpingcube.mo -share/locale/he/LC_MESSAGES/klaptopdaemon.mo share/locale/he/LC_MESSAGES/kleopatra.mo share/locale/he/LC_MESSAGES/klettres.mo -share/locale/he/LC_MESSAGES/klickety.mo share/locale/he/LC_MESSAGES/klines.mo share/locale/he/LC_MESSAGES/klipper.mo share/locale/he/LC_MESSAGES/klock.mo @@ -418,195 +257,190 @@ share/locale/he/LC_MESSAGES/kmail.mo share/locale/he/LC_MESSAGES/kmail_text_calendar_plugin.mo share/locale/he/LC_MESSAGES/kmail_text_vcard_plugin.mo share/locale/he/LC_MESSAGES/kmailcvt.mo -share/locale/he/LC_MESSAGES/kmathapplet.mo -share/locale/he/LC_MESSAGES/kmcop.mo -share/locale/he/LC_MESSAGES/kmenuapplet.mo share/locale/he/LC_MESSAGES/kmenuedit.mo -share/locale/he/LC_MESSAGES/kmid.mo +share/locale/he/LC_MESSAGES/kmimetypefinder.mo share/locale/he/LC_MESSAGES/kmines.mo -share/locale/he/LC_MESSAGES/kminipagerapplet.mo share/locale/he/LC_MESSAGES/kmix.mo -share/locale/he/LC_MESSAGES/kmoon.mo share/locale/he/LC_MESSAGES/kmousetool.mo share/locale/he/LC_MESSAGES/kmouth.mo share/locale/he/LC_MESSAGES/kmplot.mo -share/locale/he/LC_MESSAGES/kmrml.mo share/locale/he/LC_MESSAGES/knetattach.mo share/locale/he/LC_MESSAGES/knetwalk.mo -share/locale/he/LC_MESSAGES/knewsticker.mo share/locale/he/LC_MESSAGES/knode.mo share/locale/he/LC_MESSAGES/knotes.mo -share/locale/he/LC_MESSAGES/knotify.mo -share/locale/he/LC_MESSAGES/kodo.mo +share/locale/he/LC_MESSAGES/knotify4.mo share/locale/he/LC_MESSAGES/kolf.mo share/locale/he/LC_MESSAGES/kolourpaint.mo -share/locale/he/LC_MESSAGES/kolourpicker.mo -share/locale/he/LC_MESSAGES/konnector_dummy.mo -share/locale/he/LC_MESSAGES/konnector_kabc.mo -share/locale/he/LC_MESSAGES/konnector_kcal.mo -share/locale/he/LC_MESSAGES/konnector_local.mo -share/locale/he/LC_MESSAGES/konnector_qtopia.mo -share/locale/he/LC_MESSAGES/konnector_remote.mo -share/locale/he/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/he/LC_MESSAGES/konqsidebar_news.mo share/locale/he/LC_MESSAGES/konqueror.mo share/locale/he/LC_MESSAGES/konquest.mo share/locale/he/LC_MESSAGES/konsole.mo share/locale/he/LC_MESSAGES/konsolekalendar.mo share/locale/he/LC_MESSAGES/kontact.mo -share/locale/he/LC_MESSAGES/kooka.mo share/locale/he/LC_MESSAGES/kopete.mo share/locale/he/LC_MESSAGES/korganizer.mo share/locale/he/LC_MESSAGES/korn.mo share/locale/he/LC_MESSAGES/kpackage.mo -share/locale/he/LC_MESSAGES/kpager.mo share/locale/he/LC_MESSAGES/kpartsaver.mo +share/locale/he/LC_MESSAGES/kpasswdserver.mo share/locale/he/LC_MESSAGES/kpat.mo -share/locale/he/LC_MESSAGES/kpdf.mo -share/locale/he/LC_MESSAGES/kpercentage.mo -share/locale/he/LC_MESSAGES/kpersonalizer.mo -share/locale/he/LC_MESSAGES/kpf.mo share/locale/he/LC_MESSAGES/kpilot.mo -share/locale/he/LC_MESSAGES/kpoker.mo -share/locale/he/LC_MESSAGES/kpovmodeler.mo share/locale/he/LC_MESSAGES/kppp.mo share/locale/he/LC_MESSAGES/kppplogview.mo -share/locale/he/LC_MESSAGES/kprinter.mo +share/locale/he/LC_MESSAGES/kquitapp.mo share/locale/he/LC_MESSAGES/krandr.mo share/locale/he/LC_MESSAGES/krdb.mo share/locale/he/LC_MESSAGES/krdc.mo share/locale/he/LC_MESSAGES/kreadconfig.mo -share/locale/he/LC_MESSAGES/krec.mo -share/locale/he/LC_MESSAGES/kregexpeditor.mo share/locale/he/LC_MESSAGES/kres_birthday.mo share/locale/he/LC_MESSAGES/kres_bugzilla.mo share/locale/he/LC_MESSAGES/kreversi.mo share/locale/he/LC_MESSAGES/krfb.mo share/locale/he/LC_MESSAGES/kruler.mo -share/locale/he/LC_MESSAGES/krunapplet.mo +share/locale/he/LC_MESSAGES/krunner.mo share/locale/he/LC_MESSAGES/ksame.mo share/locale/he/LC_MESSAGES/kscd.mo share/locale/he/LC_MESSAGES/kscreensaver.mo share/locale/he/LC_MESSAGES/kshisen.mo -share/locale/he/LC_MESSAGES/ksig.mo -share/locale/he/LC_MESSAGES/ksim.mo -share/locale/he/LC_MESSAGES/ksirc.mo -share/locale/he/LC_MESSAGES/ksirtet.mo -share/locale/he/LC_MESSAGES/ksmiletris.mo +share/locale/he/LC_MESSAGES/kshorturifilter.mo share/locale/he/LC_MESSAGES/ksmserver.mo -share/locale/he/LC_MESSAGES/ksnake.mo share/locale/he/LC_MESSAGES/ksnapshot.mo -share/locale/he/LC_MESSAGES/ksokoban.mo share/locale/he/LC_MESSAGES/kspaceduel.mo -share/locale/he/LC_MESSAGES/ksplash.mo share/locale/he/LC_MESSAGES/ksplashthemes.mo share/locale/he/LC_MESSAGES/kstart.mo share/locale/he/LC_MESSAGES/kstartperf.mo +share/locale/he/LC_MESSAGES/kstyle_config.mo share/locale/he/LC_MESSAGES/kstyle_keramik_config.mo share/locale/he/LC_MESSAGES/kstyle_phase_config.mo -share/locale/he/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/he/LC_MESSAGES/ksvgplugin.mo share/locale/he/LC_MESSAGES/ksysguard.mo -share/locale/he/LC_MESSAGES/ksystemtrayapplet.mo +share/locale/he/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/he/LC_MESSAGES/ksystraycmd.mo share/locale/he/LC_MESSAGES/ksysv.mo share/locale/he/LC_MESSAGES/kteatime.mo -share/locale/he/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/he/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/he/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/he/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/he/LC_MESSAGES/ktexteditor_kdatatool.mo +share/locale/he/LC_MESSAGES/ktexteditor_plugins.mo share/locale/he/LC_MESSAGES/kthememanager.mo -share/locale/he/LC_MESSAGES/ktimemon.mo share/locale/he/LC_MESSAGES/ktimer.mo -share/locale/he/LC_MESSAGES/ktip.mo +share/locale/he/LC_MESSAGES/ktimetracker.mo share/locale/he/LC_MESSAGES/ktouch.mo -share/locale/he/LC_MESSAGES/ktron.mo share/locale/he/LC_MESSAGES/kttsd.mo share/locale/he/LC_MESSAGES/ktuberling.mo share/locale/he/LC_MESSAGES/kturtle.mo share/locale/he/LC_MESSAGES/ktux.mo -share/locale/he/LC_MESSAGES/kuick_plugin.mo -share/locale/he/LC_MESSAGES/kuickshow.mo +share/locale/he/LC_MESSAGES/kuiserver.mo +share/locale/he/LC_MESSAGES/kurifilter.mo share/locale/he/LC_MESSAGES/kuser.mo -share/locale/he/LC_MESSAGES/kview.mo -share/locale/he/LC_MESSAGES/kview_scale.mo -share/locale/he/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/he/LC_MESSAGES/kviewcanvas.mo -share/locale/he/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/he/LC_MESSAGES/kviewscannerplugin.mo -share/locale/he/LC_MESSAGES/kviewshell.mo -share/locale/he/LC_MESSAGES/kviewviewer.mo -share/locale/he/LC_MESSAGES/kvoctrain.mo share/locale/he/LC_MESSAGES/kweather.mo -share/locale/he/LC_MESSAGES/kwifimanager.mo share/locale/he/LC_MESSAGES/kwin.mo -share/locale/he/LC_MESSAGES/kwin4.mo share/locale/he/LC_MESSAGES/kwin_art_clients.mo share/locale/he/LC_MESSAGES/kwin_clients.mo +share/locale/he/LC_MESSAGES/kwin_effects.mo share/locale/he/LC_MESSAGES/kwin_lib.mo -share/locale/he/LC_MESSAGES/kwireless.mo -share/locale/he/LC_MESSAGES/kworldclock.mo +share/locale/he/LC_MESSAGES/kwinstartmenu.mo +share/locale/he/LC_MESSAGES/kwrite.mo share/locale/he/LC_MESSAGES/kwriteconfig.mo share/locale/he/LC_MESSAGES/kxkb.mo share/locale/he/LC_MESSAGES/kxsconfig.mo -share/locale/he/LC_MESSAGES/libkaddrbk_geo_xxport.mo +share/locale/he/LC_MESSAGES/lancelot.mo share/locale/he/LC_MESSAGES/libkcal.mo share/locale/he/LC_MESSAGES/libkcddb.mo +share/locale/he/LC_MESSAGES/libkcompactdisc.mo share/locale/he/LC_MESSAGES/libkdeedu.mo share/locale/he/LC_MESSAGES/libkdegames.mo share/locale/he/LC_MESSAGES/libkdepim.mo share/locale/he/LC_MESSAGES/libkholidays.mo -share/locale/he/LC_MESSAGES/libkicker.mo -share/locale/he/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/he/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/he/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/he/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/he/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/he/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/he/LC_MESSAGES/libkickermenu_tom.mo share/locale/he/LC_MESSAGES/libkonq.mo -share/locale/he/LC_MESSAGES/libkpimexchange.mo -share/locale/he/LC_MESSAGES/libkscan.mo share/locale/he/LC_MESSAGES/libkscreensaver.mo -share/locale/he/LC_MESSAGES/libksirtet.mo -share/locale/he/LC_MESSAGES/libksync.mo -share/locale/he/LC_MESSAGES/libtaskbar.mo +share/locale/he/LC_MESSAGES/libkworkspace.mo +share/locale/he/LC_MESSAGES/libphonon.mo +share/locale/he/LC_MESSAGES/libplasma.mo +share/locale/he/LC_MESSAGES/libplasmaclock.mo share/locale/he/LC_MESSAGES/libtaskmanager.mo -share/locale/he/LC_MESSAGES/lockout.mo +share/locale/he/LC_MESSAGES/lokalize.mo share/locale/he/LC_MESSAGES/lskat.mo -share/locale/he/LC_MESSAGES/lyrics.mo -share/locale/he/LC_MESSAGES/mediaapplet.mo -share/locale/he/LC_MESSAGES/mediacontrol.mo -share/locale/he/LC_MESSAGES/minitoolsplugin.mo -share/locale/he/LC_MESSAGES/naughtyapplet.mo -share/locale/he/LC_MESSAGES/nexscope.mo -share/locale/he/LC_MESSAGES/noatun.mo +share/locale/he/LC_MESSAGES/marble.mo +share/locale/he/LC_MESSAGES/marble_qt.mo share/locale/he/LC_MESSAGES/nsplugin.mo -share/locale/he/LC_MESSAGES/pitchablespeed.mo -share/locale/he/LC_MESSAGES/ppdtranslations.mo -share/locale/he/LC_MESSAGES/privacy.mo -share/locale/he/LC_MESSAGES/quicklauncher.mo -share/locale/he/LC_MESSAGES/rellinks.mo -share/locale/he/LC_MESSAGES/searchbarplugin.mo -share/locale/he/LC_MESSAGES/secpolicy.mo +share/locale/he/LC_MESSAGES/okular.mo +share/locale/he/LC_MESSAGES/parley.mo +share/locale/he/LC_MESSAGES/phonon_gstreamer.mo +share/locale/he/LC_MESSAGES/phonon_kde.mo +share/locale/he/LC_MESSAGES/plasma.mo +share/locale/he/LC_MESSAGES/plasma_applet_battery.mo +share/locale/he/LC_MESSAGES/plasma_applet_bball.mo +share/locale/he/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/he/LC_MESSAGES/plasma_applet_bluemarble.mo +share/locale/he/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/he/LC_MESSAGES/plasma_applet_charselect.mo +share/locale/he/LC_MESSAGES/plasma_applet_clock.mo +share/locale/he/LC_MESSAGES/plasma_applet_comic.mo +share/locale/he/LC_MESSAGES/plasma_applet_desktop.mo +share/locale/he/LC_MESSAGES/plasma_applet_devicenotifier.mo +share/locale/he/LC_MESSAGES/plasma_applet_dict.mo +share/locale/he/LC_MESSAGES/plasma_applet_dig_clock.mo +share/locale/he/LC_MESSAGES/plasma_applet_fifteenPuzzle.mo +share/locale/he/LC_MESSAGES/plasma_applet_fileWatcher.mo +share/locale/he/LC_MESSAGES/plasma_applet_folderview.mo +share/locale/he/LC_MESSAGES/plasma_applet_frame.mo +share/locale/he/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/he/LC_MESSAGES/plasma_applet_incomingmsg.mo +share/locale/he/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/he/LC_MESSAGES/plasma_applet_kalzium.mo +share/locale/he/LC_MESSAGES/plasma_applet_kolourpicker.mo +share/locale/he/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/he/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/he/LC_MESSAGES/plasma_applet_life.mo +share/locale/he/LC_MESSAGES/plasma_applet_luna.mo +share/locale/he/LC_MESSAGES/plasma_applet_news.mo +share/locale/he/LC_MESSAGES/plasma_applet_notes.mo +share/locale/he/LC_MESSAGES/plasma_applet_nowplaying.mo +share/locale/he/LC_MESSAGES/plasma_applet_pager.mo +share/locale/he/LC_MESSAGES/plasma_applet_panel.mo +share/locale/he/LC_MESSAGES/plasma_applet_paste.mo +share/locale/he/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/he/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/he/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/he/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/he/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/he/LC_MESSAGES/plasma_applet_showdesktop.mo +share/locale/he/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/he/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/he/LC_MESSAGES/plasma_applet_timer.mo +share/locale/he/LC_MESSAGES/plasma_applet_trash.mo +share/locale/he/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/he/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/he/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/he/LC_MESSAGES/plasma_appletscript_qedje.mo +share/locale/he/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo +share/locale/he/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/he/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/he/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/he/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/he/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/he/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/he/LC_MESSAGES/plasma_runner_locations.mo +share/locale/he/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/he/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/he/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/he/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/he/LC_MESSAGES/plasma_runner_shell.mo +share/locale/he/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/he/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/he/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/he/LC_MESSAGES/plasmoidviewer.mo +share/locale/he/LC_MESSAGES/processcore.mo +share/locale/he/LC_MESSAGES/processui.mo +share/locale/he/LC_MESSAGES/solid-bluetooth.mo +share/locale/he/LC_MESSAGES/solid-hardware.mo +share/locale/he/LC_MESSAGES/solid-network.mo +share/locale/he/LC_MESSAGES/solid-powermanagement.mo +share/locale/he/LC_MESSAGES/solidcontrol.mo +share/locale/he/LC_MESSAGES/soliduiserver.mo +share/locale/he/LC_MESSAGES/strigila_diff.mo share/locale/he/LC_MESSAGES/superkaramba.mo -share/locale/he/LC_MESSAGES/synaescope.mo -share/locale/he/LC_MESSAGES/timezones.mo -share/locale/he/LC_MESSAGES/tippecanoe.mo -share/locale/he/LC_MESSAGES/trashapplet.mo -share/locale/he/LC_MESSAGES/tyler.mo -share/locale/he/LC_MESSAGES/uachangerplugin.mo +share/locale/he/LC_MESSAGES/sweeper.mo +share/locale/he/LC_MESSAGES/systemsettings.mo +share/locale/he/LC_MESSAGES/timezones4.mo share/locale/he/LC_MESSAGES/useraccount.mo -share/locale/he/LC_MESSAGES/validatorsplugin.mo -share/locale/he/LC_MESSAGES/wakeup.mo -share/locale/he/LC_MESSAGES/wavecapture.mo -share/locale/he/LC_MESSAGES/webarchiver.mo -share/locale/he/charset share/locale/he/entry.desktop -share/locale/he/flag.png -@dirrm share/doc/HTML/he/khelpcenter -@dirrm share/doc/HTML/he/common @dirrm share/apps/klettres/he/syllab @dirrm share/apps/klettres/he/alpha @dirrm share/apps/klettres/he diff --git a/hungarian/kde4-l10n/distinfo b/hungarian/kde4-l10n/distinfo index c07167f03c65..0f29a254353e 100644 --- a/hungarian/kde4-l10n/distinfo +++ b/hungarian/kde4-l10n/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-hu-4.1.4.tar.bz2) = ea3cf065ea2a17e4daf3847194c2bd5f -SHA256 (KDE/kde-l10n/kde-l10n-hu-4.1.4.tar.bz2) = 1e33dbe7e42723043e0c4b9de229b2ab7a51503e8ffd6f204f4a994e9de38cdc -SIZE (KDE/kde-l10n/kde-l10n-hu-4.1.4.tar.bz2) = 3995207 +MD5 (KDE/kde-l10n/kde-l10n-hu-4.2.0.tar.bz2) = b000573be5a3b6cee9ee9aa45b0931bc +SHA256 (KDE/kde-l10n/kde-l10n-hu-4.2.0.tar.bz2) = 741cc09e8317404aa4fcfb83fa32974b32dc4db20f86302e9d1862709b0e6a92 +SIZE (KDE/kde-l10n/kde-l10n-hu-4.2.0.tar.bz2) = 4093636 diff --git a/hungarian/kde4-l10n/pkg-plist b/hungarian/kde4-l10n/pkg-plist index f3e0ad835128..fef8db392a81 100644 --- a/hungarian/kde4-l10n/pkg-plist +++ b/hungarian/kde4-l10n/pkg-plist @@ -330,6 +330,7 @@ share/locale/hu/LC_MESSAGES/kaccess.mo share/locale/hu/LC_MESSAGES/kaddressbook.mo share/locale/hu/LC_MESSAGES/kalarm.mo share/locale/hu/LC_MESSAGES/kalzium.mo +share/locale/hu/LC_MESSAGES/kalzium_qt.mo share/locale/hu/LC_MESSAGES/kanagram.mo share/locale/hu/LC_MESSAGES/kappfinder.mo share/locale/hu/LC_MESSAGES/kapptemplate.mo @@ -343,7 +344,6 @@ share/locale/hu/LC_MESSAGES/kateinsertcommand.mo share/locale/hu/LC_MESSAGES/katekjswrapper.mo share/locale/hu/LC_MESSAGES/katekonsoleplugin.mo share/locale/hu/LC_MESSAGES/katemailfilesplugin.mo -share/locale/hu/LC_MESSAGES/katemake.mo share/locale/hu/LC_MESSAGES/kateopenheader.mo share/locale/hu/LC_MESSAGES/katepart4.mo share/locale/hu/LC_MESSAGES/katepybrowse.mo @@ -360,7 +360,6 @@ share/locale/hu/LC_MESSAGES/kblackbox.mo share/locale/hu/LC_MESSAGES/kblankscrn.mo share/locale/hu/LC_MESSAGES/kbounce.mo share/locale/hu/LC_MESSAGES/kbruch.mo -share/locale/hu/LC_MESSAGES/kbstateapplet.mo share/locale/hu/LC_MESSAGES/kbugbuster.mo share/locale/hu/LC_MESSAGES/kcachegrind.mo share/locale/hu/LC_MESSAGES/kcalc.mo @@ -374,7 +373,6 @@ share/locale/hu/LC_MESSAGES/kcm_memory.mo share/locale/hu/LC_MESSAGES/kcm_partition.mo share/locale/hu/LC_MESSAGES/kcm_pci.mo share/locale/hu/LC_MESSAGES/kcm_phonon.mo -share/locale/hu/LC_MESSAGES/kcm_phononxine.mo share/locale/hu/LC_MESSAGES/kcm_solid.mo share/locale/hu/LC_MESSAGES/kcmaccess.mo share/locale/hu/LC_MESSAGES/kcmaudiocd.mo @@ -425,7 +423,6 @@ share/locale/hu/LC_MESSAGES/kcmsmartcard.mo share/locale/hu/LC_MESSAGES/kcmsmserver.mo share/locale/hu/LC_MESSAGES/kcmsolidproc.mo share/locale/hu/LC_MESSAGES/kcmstyle.mo -share/locale/hu/LC_MESSAGES/kcmtaskbar.mo share/locale/hu/LC_MESSAGES/kcmusb.mo share/locale/hu/LC_MESSAGES/kcmview1394.mo share/locale/hu/LC_MESSAGES/kcmxinerama.mo @@ -494,6 +491,7 @@ share/locale/hu/LC_MESSAGES/kimagemapeditor.mo share/locale/hu/LC_MESSAGES/kinetd.mo share/locale/hu/LC_MESSAGES/kinfocenter.mo share/locale/hu/LC_MESSAGES/kio4.mo +share/locale/hu/LC_MESSAGES/kio_applications.mo share/locale/hu/LC_MESSAGES/kio_archive.mo share/locale/hu/LC_MESSAGES/kio_audiocd.mo share/locale/hu/LC_MESSAGES/kio_finger.mo @@ -510,7 +508,6 @@ share/locale/hu/LC_MESSAGES/kio_nfs.mo share/locale/hu/LC_MESSAGES/kio_nntp.mo share/locale/hu/LC_MESSAGES/kio_pop3.mo share/locale/hu/LC_MESSAGES/kio_remote.mo -share/locale/hu/LC_MESSAGES/kio_settings.mo share/locale/hu/LC_MESSAGES/kio_sftp.mo share/locale/hu/LC_MESSAGES/kio_sieve.mo share/locale/hu/LC_MESSAGES/kio_smb.mo @@ -565,7 +562,6 @@ share/locale/hu/LC_MESSAGES/kpackage.mo share/locale/hu/LC_MESSAGES/kpartsaver.mo share/locale/hu/LC_MESSAGES/kpasswdserver.mo share/locale/hu/LC_MESSAGES/kpat.mo -share/locale/hu/LC_MESSAGES/kpercentage.mo share/locale/hu/LC_MESSAGES/kpilot.mo share/locale/hu/LC_MESSAGES/kppp.mo share/locale/hu/LC_MESSAGES/kppplogview.mo @@ -587,15 +583,6 @@ share/locale/hu/LC_MESSAGES/kreversi.mo share/locale/hu/LC_MESSAGES/krfb.mo share/locale/hu/LC_MESSAGES/kruler.mo share/locale/hu/LC_MESSAGES/krunner.mo -share/locale/hu/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/hu/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/hu/LC_MESSAGES/krunner_contacts.mo -share/locale/hu/LC_MESSAGES/krunner_converterrunner.mo -share/locale/hu/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/hu/LC_MESSAGES/krunner_sessions.mo -share/locale/hu/LC_MESSAGES/krunner_shellrunner.mo -share/locale/hu/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/hu/LC_MESSAGES/krunner_xesam.mo share/locale/hu/LC_MESSAGES/ksame.mo share/locale/hu/LC_MESSAGES/ksayit.mo share/locale/hu/LC_MESSAGES/kscd.mo @@ -622,7 +609,6 @@ share/locale/hu/LC_MESSAGES/ktexteditor_plugins.mo share/locale/hu/LC_MESSAGES/kthememanager.mo share/locale/hu/LC_MESSAGES/ktimer.mo share/locale/hu/LC_MESSAGES/ktimetracker.mo -share/locale/hu/LC_MESSAGES/ktnef.mo share/locale/hu/LC_MESSAGES/ktouch.mo share/locale/hu/LC_MESSAGES/ktraderclient.mo share/locale/hu/LC_MESSAGES/kttsd.mo @@ -676,7 +662,6 @@ share/locale/hu/LC_MESSAGES/libmailtransport.mo share/locale/hu/LC_MESSAGES/libphonon.mo share/locale/hu/LC_MESSAGES/libplasma.mo share/locale/hu/LC_MESSAGES/libtaskmanager.mo -share/locale/hu/LC_MESSAGES/lokalize.mo share/locale/hu/LC_MESSAGES/lskat.mo share/locale/hu/LC_MESSAGES/nepomuk.mo share/locale/hu/LC_MESSAGES/nsplugin.mo @@ -695,7 +680,6 @@ share/locale/hu/LC_MESSAGES/okular_tiff.mo share/locale/hu/LC_MESSAGES/okular_xps.mo share/locale/hu/LC_MESSAGES/parley.mo share/locale/hu/LC_MESSAGES/phonon-xine.mo -share/locale/hu/LC_MESSAGES/phonon_gstreamer.mo share/locale/hu/LC_MESSAGES/phonon_kde.mo share/locale/hu/LC_MESSAGES/plasma.mo share/locale/hu/LC_MESSAGES/plasma_applet_battery.mo @@ -713,7 +697,6 @@ share/locale/hu/LC_MESSAGES/plasma_applet_folderview.mo share/locale/hu/LC_MESSAGES/plasma_applet_frame.mo share/locale/hu/LC_MESSAGES/plasma_applet_fuzzy_clock.mo share/locale/hu/LC_MESSAGES/plasma_applet_kget.mo -share/locale/hu/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/hu/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/hu/LC_MESSAGES/plasma_applet_launcher.mo share/locale/hu/LC_MESSAGES/plasma_applet_luna.mo @@ -725,11 +708,15 @@ share/locale/hu/LC_MESSAGES/plasma_applet_tasks.mo share/locale/hu/LC_MESSAGES/plasma_applet_trash.mo share/locale/hu/LC_MESSAGES/plasma_applet_twitter.mo share/locale/hu/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/hu/LC_MESSAGES/plasma_engine_dict.mo +share/locale/hu/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/hu/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/hu/LC_MESSAGES/plasma_runner_locations.mo +share/locale/hu/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/hu/LC_MESSAGES/plasma_runner_shell.mo +share/locale/hu/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hu/LC_MESSAGES/plasmaengineexplorer.mo share/locale/hu/LC_MESSAGES/plasmapkg.mo share/locale/hu/LC_MESSAGES/plasmoidviewer.mo -share/locale/hu/LC_MESSAGES/printer-applet.mo share/locale/hu/LC_MESSAGES/processcore.mo share/locale/hu/LC_MESSAGES/processui.mo share/locale/hu/LC_MESSAGES/solid-bluetooth.mo diff --git a/japanese/kde4-l10n/distinfo b/japanese/kde4-l10n/distinfo index 7774ccb0be56..e14e6b0b386c 100644 --- a/japanese/kde4-l10n/distinfo +++ b/japanese/kde4-l10n/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-ja-4.1.4.tar.bz2) = 19157c9ca23253d1dc5f872f71d88c9e -SHA256 (KDE/kde-l10n/kde-l10n-ja-4.1.4.tar.bz2) = 9b00eea2b4d99f5300fb413810fc68c04da0f6fdcb91bd6d8b124403f65b5b43 -SIZE (KDE/kde-l10n/kde-l10n-ja-4.1.4.tar.bz2) = 2585885 +MD5 (KDE/kde-l10n/kde-l10n-ja-4.2.0.tar.bz2) = 84c1dc6f18dd405b217d98312ffec6bf +SHA256 (KDE/kde-l10n/kde-l10n-ja-4.2.0.tar.bz2) = c37c7097d8bcbb156b956984462bb1941268683bfde0151fb5d87d96edeadc94 +SIZE (KDE/kde-l10n/kde-l10n-ja-4.2.0.tar.bz2) = 2428550 diff --git a/japanese/kde4-l10n/pkg-plist b/japanese/kde4-l10n/pkg-plist index f1cf1be9d79b..dc7bec3fcd32 100644 --- a/japanese/kde4-l10n/pkg-plist +++ b/japanese/kde4-l10n/pkg-plist @@ -1,113 +1,3 @@ -share/doc/HTML/ja/kcontrol/bell/common -share/doc/HTML/ja/kcontrol/bell/index.cache.bz2 -share/doc/HTML/ja/kcontrol/bell/index.docbook -share/doc/HTML/ja/kcontrol/clock/common -share/doc/HTML/ja/kcontrol/clock/index.cache.bz2 -share/doc/HTML/ja/kcontrol/clock/index.docbook -share/doc/HTML/ja/kcontrol/colors/common -share/doc/HTML/ja/kcontrol/colors/index.cache.bz2 -share/doc/HTML/ja/kcontrol/colors/index.docbook -share/doc/HTML/ja/kcontrol/cookies/common -share/doc/HTML/ja/kcontrol/cookies/index.cache.bz2 -share/doc/HTML/ja/kcontrol/cookies/index.docbook -share/doc/HTML/ja/kcontrol/crypto/common -share/doc/HTML/ja/kcontrol/crypto/index.cache.bz2 -share/doc/HTML/ja/kcontrol/crypto/index.docbook -share/doc/HTML/ja/kcontrol/desktop/common -share/doc/HTML/ja/kcontrol/desktop/index.cache.bz2 -share/doc/HTML/ja/kcontrol/desktop/index.docbook -share/doc/HTML/ja/kcontrol/ebrowsing/common -share/doc/HTML/ja/kcontrol/ebrowsing/index.cache.bz2 -share/doc/HTML/ja/kcontrol/ebrowsing/index.docbook -share/doc/HTML/ja/kcontrol/email/common -share/doc/HTML/ja/kcontrol/email/index.cache.bz2 -share/doc/HTML/ja/kcontrol/email/index.docbook -share/doc/HTML/ja/kcontrol/filetypes/common -share/doc/HTML/ja/kcontrol/filetypes/index.cache.bz2 -share/doc/HTML/ja/kcontrol/filetypes/index.docbook -share/doc/HTML/ja/kcontrol/fonts/common -share/doc/HTML/ja/kcontrol/fonts/index.cache.bz2 -share/doc/HTML/ja/kcontrol/fonts/index.docbook -share/doc/HTML/ja/kcontrol/icons/common -share/doc/HTML/ja/kcontrol/icons/index.cache.bz2 -share/doc/HTML/ja/kcontrol/icons/index.docbook -share/doc/HTML/ja/kcontrol/kalarmd/common -share/doc/HTML/ja/kcontrol/kalarmd/index.cache.bz2 -share/doc/HTML/ja/kcontrol/kalarmd/index.docbook -share/doc/HTML/ja/kcontrol/kcmcss/common -share/doc/HTML/ja/kcontrol/kcmcss/index.cache.bz2 -share/doc/HTML/ja/kcontrol/kcmcss/index.docbook -share/doc/HTML/ja/kcontrol/kcmkonsole/common -share/doc/HTML/ja/kcontrol/kcmkonsole/index.cache.bz2 -share/doc/HTML/ja/kcontrol/kcmkonsole/index.docbook -share/doc/HTML/ja/kcontrol/kcmlaunch/common -share/doc/HTML/ja/kcontrol/kcmlaunch/index.cache.bz2 -share/doc/HTML/ja/kcontrol/kcmlaunch/index.docbook -share/doc/HTML/ja/kcontrol/kcmlowbatcrit/common -share/doc/HTML/ja/kcontrol/kcmlowbatcrit/index.cache.bz2 -share/doc/HTML/ja/kcontrol/kcmlowbatcrit/index.docbook -share/doc/HTML/ja/kcontrol/kcmlowbatwarn/common -share/doc/HTML/ja/kcontrol/kcmlowbatwarn/index.cache.bz2 -share/doc/HTML/ja/kcontrol/kcmlowbatwarn/index.docbook -share/doc/HTML/ja/kcontrol/kcmnotify/common -share/doc/HTML/ja/kcontrol/kcmnotify/index.cache.bz2 -share/doc/HTML/ja/kcontrol/kcmnotify/index.docbook -share/doc/HTML/ja/kcontrol/kcmsmserver/common -share/doc/HTML/ja/kcontrol/kcmsmserver/index.cache.bz2 -share/doc/HTML/ja/kcontrol/kcmsmserver/index.docbook -share/doc/HTML/ja/kcontrol/kcmtaskbar/common -share/doc/HTML/ja/kcontrol/kcmtaskbar/index.cache.bz2 -share/doc/HTML/ja/kcontrol/kcmtaskbar/index.docbook -share/doc/HTML/ja/kcontrol/keyboard/common -share/doc/HTML/ja/kcontrol/keyboard/index.cache.bz2 -share/doc/HTML/ja/kcontrol/keyboard/index.docbook -share/doc/HTML/ja/kcontrol/keys/common -share/doc/HTML/ja/kcontrol/keys/index.cache.bz2 -share/doc/HTML/ja/kcontrol/keys/index.docbook -share/doc/HTML/ja/kcontrol/khtml/common -share/doc/HTML/ja/kcontrol/khtml/index.cache.bz2 -share/doc/HTML/ja/kcontrol/khtml/index.docbook -share/doc/HTML/ja/kcontrol/khtml/nsplugin.docbook -share/doc/HTML/ja/kcontrol/kthememgr/common -share/doc/HTML/ja/kcontrol/kthememgr/index.cache.bz2 -share/doc/HTML/ja/kcontrol/kthememgr/index.docbook -share/doc/HTML/ja/kcontrol/kwindecoration/common -share/doc/HTML/ja/kcontrol/kwindecoration/index.cache.bz2 -share/doc/HTML/ja/kcontrol/kwindecoration/index.docbook -share/doc/HTML/ja/kcontrol/laptop/common -share/doc/HTML/ja/kcontrol/laptop/index.cache.bz2 -share/doc/HTML/ja/kcontrol/laptop/index.docbook -share/doc/HTML/ja/kcontrol/mouse/common -share/doc/HTML/ja/kcontrol/mouse/index.cache.bz2 -share/doc/HTML/ja/kcontrol/mouse/index.docbook -share/doc/HTML/ja/kcontrol/netpref/common -share/doc/HTML/ja/kcontrol/netpref/index.cache.bz2 -share/doc/HTML/ja/kcontrol/netpref/index.docbook -share/doc/HTML/ja/kcontrol/passwords/common -share/doc/HTML/ja/kcontrol/passwords/index.cache.bz2 -share/doc/HTML/ja/kcontrol/passwords/index.docbook -share/doc/HTML/ja/kcontrol/powerctrl/common -share/doc/HTML/ja/kcontrol/powerctrl/index.cache.bz2 -share/doc/HTML/ja/kcontrol/powerctrl/index.docbook -share/doc/HTML/ja/kcontrol/proxy/common -share/doc/HTML/ja/kcontrol/proxy/index.cache.bz2 -share/doc/HTML/ja/kcontrol/proxy/index.docbook -share/doc/HTML/ja/kcontrol/proxy/socks.docbook -share/doc/HTML/ja/kcontrol/screensaver/common -share/doc/HTML/ja/kcontrol/screensaver/index.cache.bz2 -share/doc/HTML/ja/kcontrol/screensaver/index.docbook -share/doc/HTML/ja/kcontrol/smb/common -share/doc/HTML/ja/kcontrol/smb/index.cache.bz2 -share/doc/HTML/ja/kcontrol/smb/index.docbook -share/doc/HTML/ja/kcontrol/spellchecking/common -share/doc/HTML/ja/kcontrol/spellchecking/index.cache.bz2 -share/doc/HTML/ja/kcontrol/spellchecking/index.docbook -share/doc/HTML/ja/kcontrol/useragent/common -share/doc/HTML/ja/kcontrol/useragent/index.cache.bz2 -share/doc/HTML/ja/kcontrol/useragent/index.docbook -share/doc/HTML/ja/kcontrol/windowmanagement/common -share/doc/HTML/ja/kcontrol/windowmanagement/index.cache.bz2 -share/doc/HTML/ja/kcontrol/windowmanagement/index.docbook share/doc/HTML/ja/kdesu/common share/doc/HTML/ja/kdesu/index.cache.bz2 share/doc/HTML/ja/kdesu/index.docbook @@ -122,57 +12,6 @@ share/doc/HTML/ja/kgpg/keys.png share/doc/HTML/ja/kgpg/keyserver.png share/doc/HTML/ja/kgpg/kicker.png share/doc/HTML/ja/kgpg/options.png -share/doc/HTML/ja/khelpcenter/common -share/doc/HTML/ja/khelpcenter/contact.docbook -share/doc/HTML/ja/khelpcenter/help.docbook -share/doc/HTML/ja/khelpcenter/index.cache.bz2 -share/doc/HTML/ja/khelpcenter/index.docbook -share/doc/HTML/ja/khelpcenter/links.docbook -share/doc/HTML/ja/khelpcenter/support.docbook -share/doc/HTML/ja/khelpcenter/welcome.docbook -share/doc/HTML/ja/khelpcenter/whatiskde.docbook -share/doc/HTML/ja/kinfocenter/blockdevices/common -share/doc/HTML/ja/kinfocenter/blockdevices/index.cache.bz2 -share/doc/HTML/ja/kinfocenter/blockdevices/index.docbook -share/doc/HTML/ja/kinfocenter/dma/common -share/doc/HTML/ja/kinfocenter/dma/index.cache.bz2 -share/doc/HTML/ja/kinfocenter/dma/index.docbook -share/doc/HTML/ja/kinfocenter/memory/common -share/doc/HTML/ja/kinfocenter/memory/index.cache.bz2 -share/doc/HTML/ja/kinfocenter/memory/index.docbook -share/doc/HTML/ja/kinfocenter/partitions/common -share/doc/HTML/ja/kinfocenter/partitions/index.cache.bz2 -share/doc/HTML/ja/kinfocenter/partitions/index.docbook -share/doc/HTML/ja/kinfocenter/pci/common -share/doc/HTML/ja/kinfocenter/pci/index.cache.bz2 -share/doc/HTML/ja/kinfocenter/pci/index.docbook -share/doc/HTML/ja/kinfocenter/pcmcia/common -share/doc/HTML/ja/kinfocenter/pcmcia/index.cache.bz2 -share/doc/HTML/ja/kinfocenter/pcmcia/index.docbook -share/doc/HTML/ja/kinfocenter/processor/common -share/doc/HTML/ja/kinfocenter/processor/index.cache.bz2 -share/doc/HTML/ja/kinfocenter/processor/index.docbook -share/doc/HTML/ja/kinfocenter/protocols/common -share/doc/HTML/ja/kinfocenter/protocols/index.cache.bz2 -share/doc/HTML/ja/kinfocenter/protocols/index.docbook -share/doc/HTML/ja/kinfocenter/samba/common -share/doc/HTML/ja/kinfocenter/samba/index.cache.bz2 -share/doc/HTML/ja/kinfocenter/samba/index.docbook -share/doc/HTML/ja/kinfocenter/scsi/common -share/doc/HTML/ja/kinfocenter/scsi/index.cache.bz2 -share/doc/HTML/ja/kinfocenter/scsi/index.docbook -share/doc/HTML/ja/kinfocenter/sound/common -share/doc/HTML/ja/kinfocenter/sound/index.cache.bz2 -share/doc/HTML/ja/kinfocenter/sound/index.docbook -share/doc/HTML/ja/kinfocenter/usb/common -share/doc/HTML/ja/kinfocenter/usb/index.cache.bz2 -share/doc/HTML/ja/kinfocenter/usb/index.docbook -share/doc/HTML/ja/kinfocenter/xserver/common -share/doc/HTML/ja/kinfocenter/xserver/index.cache.bz2 -share/doc/HTML/ja/kinfocenter/xserver/index.docbook -share/doc/HTML/ja/kiriki/common -share/doc/HTML/ja/kiriki/index.cache.bz2 -share/doc/HTML/ja/kiriki/index.docbook share/doc/HTML/ja/knetwalk/common share/doc/HTML/ja/knetwalk/index.cache.bz2 share/doc/HTML/ja/knetwalk/index.docbook @@ -199,6 +38,7 @@ share/locale/ja/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ja/LC_MESSAGES/audiorename_plugin.mo share/locale/ja/LC_MESSAGES/blinken.mo +share/locale/ja/LC_MESSAGES/bomber.mo share/locale/ja/LC_MESSAGES/bovo.mo share/locale/ja/LC_MESSAGES/cervisia.mo share/locale/ja/LC_MESSAGES/cvsservice.mo @@ -213,6 +53,7 @@ share/locale/ja/LC_MESSAGES/imagerename_plugin.mo share/locale/ja/LC_MESSAGES/joystick.mo share/locale/ja/LC_MESSAGES/juk.mo share/locale/ja/LC_MESSAGES/kabc.mo +share/locale/ja/LC_MESSAGES/kabc_akonadi.mo share/locale/ja/LC_MESSAGES/kabc_dir.mo share/locale/ja/LC_MESSAGES/kabc_file.mo share/locale/ja/LC_MESSAGES/kabc_ldapkio.mo @@ -225,9 +66,14 @@ share/locale/ja/LC_MESSAGES/kaddressbook.mo share/locale/ja/LC_MESSAGES/kalarm.mo share/locale/ja/LC_MESSAGES/kalgebra.mo share/locale/ja/LC_MESSAGES/kalzium.mo +share/locale/ja/LC_MESSAGES/kalzium_qt.mo share/locale/ja/LC_MESSAGES/kanagram.mo +share/locale/ja/LC_MESSAGES/kapman.mo share/locale/ja/LC_MESSAGES/kappfinder.mo +share/locale/ja/LC_MESSAGES/kapptemplate.mo +share/locale/ja/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ja/LC_MESSAGES/kate.mo +share/locale/ja/LC_MESSAGES/katebuild-plugin.mo share/locale/ja/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ja/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ja/LC_MESSAGES/katefiletemplates.mo @@ -238,7 +84,6 @@ share/locale/ja/LC_MESSAGES/kateinsertcommand.mo share/locale/ja/LC_MESSAGES/katekjswrapper.mo share/locale/ja/LC_MESSAGES/katekonsoleplugin.mo share/locale/ja/LC_MESSAGES/katemailfilesplugin.mo -share/locale/ja/LC_MESSAGES/katemake.mo share/locale/ja/LC_MESSAGES/kateopenheader.mo share/locale/ja/LC_MESSAGES/katepart4.mo share/locale/ja/LC_MESSAGES/katepybrowse.mo @@ -257,21 +102,23 @@ share/locale/ja/LC_MESSAGES/kblocks.mo share/locale/ja/LC_MESSAGES/kbounce.mo share/locale/ja/LC_MESSAGES/kbreakout.mo share/locale/ja/LC_MESSAGES/kbruch.mo -share/locale/ja/LC_MESSAGES/kbstateapplet.mo share/locale/ja/LC_MESSAGES/kbugbuster.mo share/locale/ja/LC_MESSAGES/kcalc.mo share/locale/ja/LC_MESSAGES/kcertpart.mo share/locale/ja/LC_MESSAGES/kcharselect.mo -share/locale/ja/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/ja/LC_MESSAGES/kcm_akonadi.mo share/locale/ja/LC_MESSAGES/kcm_autostart.mo +share/locale/ja/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/ja/LC_MESSAGES/kcm_emoticons.mo share/locale/ja/LC_MESSAGES/kcm_krfb.mo share/locale/ja/LC_MESSAGES/kcm_kwindesktop.mo share/locale/ja/LC_MESSAGES/kcm_memory.mo share/locale/ja/LC_MESSAGES/kcm_partition.mo +share/locale/ja/LC_MESSAGES/kcm_pci.mo share/locale/ja/LC_MESSAGES/kcm_phonon.mo share/locale/ja/LC_MESSAGES/kcm_phononxine.mo share/locale/ja/LC_MESSAGES/kcm_solid.mo +share/locale/ja/LC_MESSAGES/kcm_standard_actions.mo share/locale/ja/LC_MESSAGES/kcmaccess.mo share/locale/ja/LC_MESSAGES/kcmaudiocd.mo share/locale/ja/LC_MESSAGES/kcmbackground.mo @@ -321,7 +168,6 @@ share/locale/ja/LC_MESSAGES/kcmsmartcard.mo share/locale/ja/LC_MESSAGES/kcmsmserver.mo share/locale/ja/LC_MESSAGES/kcmsolidproc.mo share/locale/ja/LC_MESSAGES/kcmstyle.mo -share/locale/ja/LC_MESSAGES/kcmtaskbar.mo share/locale/ja/LC_MESSAGES/kcmusb.mo share/locale/ja/LC_MESSAGES/kcmview1394.mo share/locale/ja/LC_MESSAGES/kcmxinerama.mo @@ -329,7 +175,9 @@ share/locale/ja/LC_MESSAGES/kcolorchooser.mo share/locale/ja/LC_MESSAGES/kcron.mo share/locale/ja/LC_MESSAGES/kdat.mo share/locale/ja/LC_MESSAGES/kde-menu.mo +share/locale/ja/LC_MESSAGES/kdeasciiquarium.mo share/locale/ja/LC_MESSAGES/kdebugdialog.mo +share/locale/ja/LC_MESSAGES/kded_phononserver.mo share/locale/ja/LC_MESSAGES/kdelibs4.mo share/locale/ja/LC_MESSAGES/kdelibs_colors4.mo share/locale/ja/LC_MESSAGES/kdepasswd.mo @@ -340,6 +188,7 @@ share/locale/ja/LC_MESSAGES/kdessh.mo share/locale/ja/LC_MESSAGES/kdesu.mo share/locale/ja/LC_MESSAGES/kdesud.mo share/locale/ja/LC_MESSAGES/kdf.mo +share/locale/ja/LC_MESSAGES/kdgantt.mo share/locale/ja/LC_MESSAGES/kdgantt1.mo share/locale/ja/LC_MESSAGES/kdialog.mo share/locale/ja/LC_MESSAGES/kdiamond.mo @@ -392,8 +241,10 @@ share/locale/ja/LC_MESSAGES/kimagemapeditor.mo share/locale/ja/LC_MESSAGES/kinetd.mo share/locale/ja/LC_MESSAGES/kinfocenter.mo share/locale/ja/LC_MESSAGES/kio4.mo +share/locale/ja/LC_MESSAGES/kio_applications.mo share/locale/ja/LC_MESSAGES/kio_archive.mo share/locale/ja/LC_MESSAGES/kio_audiocd.mo +share/locale/ja/LC_MESSAGES/kio_bookmarks.mo share/locale/ja/LC_MESSAGES/kio_finger.mo share/locale/ja/LC_MESSAGES/kio_fish.mo share/locale/ja/LC_MESSAGES/kio_floppy.mo @@ -404,11 +255,11 @@ share/locale/ja/LC_MESSAGES/kio_jabberdisco.mo share/locale/ja/LC_MESSAGES/kio_ldap.mo share/locale/ja/LC_MESSAGES/kio_man.mo share/locale/ja/LC_MESSAGES/kio_mbox.mo +share/locale/ja/LC_MESSAGES/kio_nepomuksearch.mo share/locale/ja/LC_MESSAGES/kio_nfs.mo share/locale/ja/LC_MESSAGES/kio_nntp.mo share/locale/ja/LC_MESSAGES/kio_pop3.mo share/locale/ja/LC_MESSAGES/kio_remote.mo -share/locale/ja/LC_MESSAGES/kio_settings.mo share/locale/ja/LC_MESSAGES/kio_sftp.mo share/locale/ja/LC_MESSAGES/kio_sieve.mo share/locale/ja/LC_MESSAGES/kio_smb.mo @@ -470,7 +321,6 @@ share/locale/ja/LC_MESSAGES/kpackage.mo share/locale/ja/LC_MESSAGES/kpartsaver.mo share/locale/ja/LC_MESSAGES/kpasswdserver.mo share/locale/ja/LC_MESSAGES/kpat.mo -share/locale/ja/LC_MESSAGES/kpercentage.mo share/locale/ja/LC_MESSAGES/kpilot.mo share/locale/ja/LC_MESSAGES/kppp.mo share/locale/ja/LC_MESSAGES/kppplogview.mo @@ -493,20 +343,12 @@ share/locale/ja/LC_MESSAGES/kreversi.mo share/locale/ja/LC_MESSAGES/krfb.mo share/locale/ja/LC_MESSAGES/kruler.mo share/locale/ja/LC_MESSAGES/krunner.mo -share/locale/ja/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/ja/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/ja/LC_MESSAGES/krunner_contacts.mo -share/locale/ja/LC_MESSAGES/krunner_converterrunner.mo -share/locale/ja/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/ja/LC_MESSAGES/krunner_sessions.mo -share/locale/ja/LC_MESSAGES/krunner_shellrunner.mo -share/locale/ja/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/ja/LC_MESSAGES/krunner_xesam.mo share/locale/ja/LC_MESSAGES/ksame.mo share/locale/ja/LC_MESSAGES/ksaneplugin.mo share/locale/ja/LC_MESSAGES/ksayit.mo share/locale/ja/LC_MESSAGES/kscd.mo share/locale/ja/LC_MESSAGES/kscreensaver.mo +share/locale/ja/LC_MESSAGES/ksendemail.mo share/locale/ja/LC_MESSAGES/kshisen.mo share/locale/ja/LC_MESSAGES/kshorturifilter.mo share/locale/ja/LC_MESSAGES/ksmserver.mo @@ -522,6 +364,7 @@ share/locale/ja/LC_MESSAGES/kstyle_keramik_config.mo share/locale/ja/LC_MESSAGES/kstyle_phase_config.mo share/locale/ja/LC_MESSAGES/ksudoku.mo share/locale/ja/LC_MESSAGES/ksysguard.mo +share/locale/ja/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ja/LC_MESSAGES/ksystemlog.mo share/locale/ja/LC_MESSAGES/ksystraycmd.mo share/locale/ja/LC_MESSAGES/ksysv.mo @@ -531,7 +374,6 @@ share/locale/ja/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/ja/LC_MESSAGES/kthememanager.mo share/locale/ja/LC_MESSAGES/ktimer.mo share/locale/ja/LC_MESSAGES/ktimetracker.mo -share/locale/ja/LC_MESSAGES/ktnef.mo share/locale/ja/LC_MESSAGES/ktouch.mo share/locale/ja/LC_MESSAGES/kttsd.mo share/locale/ja/LC_MESSAGES/ktuberling.mo @@ -542,6 +384,7 @@ share/locale/ja/LC_MESSAGES/kuiserver.mo share/locale/ja/LC_MESSAGES/kuiviewer.mo share/locale/ja/LC_MESSAGES/kurifilter.mo share/locale/ja/LC_MESSAGES/kuser.mo +share/locale/ja/LC_MESSAGES/kwalletd.mo share/locale/ja/LC_MESSAGES/kwalletmanager.mo share/locale/ja/LC_MESSAGES/kwatchgnupg.mo share/locale/ja/LC_MESSAGES/kweather.mo @@ -587,11 +430,14 @@ share/locale/ja/LC_MESSAGES/libmailtransport.mo share/locale/ja/LC_MESSAGES/liboktetacore.mo share/locale/ja/LC_MESSAGES/libphonon.mo share/locale/ja/LC_MESSAGES/libplasma.mo +share/locale/ja/LC_MESSAGES/libplasmaclock.mo share/locale/ja/LC_MESSAGES/libtaskmanager.mo share/locale/ja/LC_MESSAGES/lokalize.mo share/locale/ja/LC_MESSAGES/lskat.mo share/locale/ja/LC_MESSAGES/marble.mo +share/locale/ja/LC_MESSAGES/marble_qt.mo share/locale/ja/LC_MESSAGES/nepomuk.mo +share/locale/ja/LC_MESSAGES/nepomuksearch.mo share/locale/ja/LC_MESSAGES/nsplugin.mo share/locale/ja/LC_MESSAGES/okteta.mo share/locale/ja/LC_MESSAGES/oktetapart.mo @@ -601,6 +447,7 @@ share/locale/ja/LC_MESSAGES/okular_comicbook.mo share/locale/ja/LC_MESSAGES/okular_djvu.mo share/locale/ja/LC_MESSAGES/okular_dvi.mo share/locale/ja/LC_MESSAGES/okular_epub.mo +share/locale/ja/LC_MESSAGES/okular_fax.mo share/locale/ja/LC_MESSAGES/okular_fictionbook.mo share/locale/ja/LC_MESSAGES/okular_ghostview.mo share/locale/ja/LC_MESSAGES/okular_kimgio.mo @@ -613,10 +460,15 @@ share/locale/ja/LC_MESSAGES/parley.mo share/locale/ja/LC_MESSAGES/phonon-xine.mo share/locale/ja/LC_MESSAGES/phonon_gstreamer.mo share/locale/ja/LC_MESSAGES/phonon_kde.mo +share/locale/ja/LC_MESSAGES/plasma-overlay.mo +share/locale/ja/LC_MESSAGES/plasma-shells-common.mo share/locale/ja/LC_MESSAGES/plasma.mo share/locale/ja/LC_MESSAGES/plasma_applet_battery.mo +share/locale/ja/LC_MESSAGES/plasma_applet_bball.mo share/locale/ja/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/ja/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/ja/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/ja/LC_MESSAGES/plasma_applet_charselect.mo share/locale/ja/LC_MESSAGES/plasma_applet_clock.mo share/locale/ja/LC_MESSAGES/plasma_applet_comic.mo share/locale/ja/LC_MESSAGES/plasma_applet_desktop.mo @@ -628,24 +480,58 @@ share/locale/ja/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/ja/LC_MESSAGES/plasma_applet_folderview.mo share/locale/ja/LC_MESSAGES/plasma_applet_frame.mo share/locale/ja/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/ja/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/ja/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/ja/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ja/LC_MESSAGES/plasma_applet_katesession.mo share/locale/ja/LC_MESSAGES/plasma_applet_kget.mo -share/locale/ja/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/ja/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/ja/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/ja/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/ja/LC_MESSAGES/plasma_applet_life.mo share/locale/ja/LC_MESSAGES/plasma_applet_luna.mo +share/locale/ja/LC_MESSAGES/plasma_applet_news.mo share/locale/ja/LC_MESSAGES/plasma_applet_notes.mo share/locale/ja/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/ja/LC_MESSAGES/plasma_applet_pager.mo share/locale/ja/LC_MESSAGES/plasma_applet_panel.mo +share/locale/ja/LC_MESSAGES/plasma_applet_paste.mo +share/locale/ja/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/ja/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/ja/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/ja/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/ja/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/ja/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/ja/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/ja/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/ja/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/ja/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/ja/LC_MESSAGES/plasma_applet_timer.mo share/locale/ja/LC_MESSAGES/plasma_applet_trash.mo share/locale/ja/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/ja/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/ja/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/ja/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/ja/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/ja/LC_MESSAGES/plasma_engine_dict.mo +share/locale/ja/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/ja/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ja/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/ja/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ja/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/ja/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ja/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/ja/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ja/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/ja/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ja/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ja/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ja/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ja/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ja/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ja/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/ja/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/ja/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ja/LC_MESSAGES/powerdevil.mo share/locale/ja/LC_MESSAGES/printer-applet.mo share/locale/ja/LC_MESSAGES/processcore.mo share/locale/ja/LC_MESSAGES/processui.mo @@ -657,10 +543,12 @@ share/locale/ja/LC_MESSAGES/solidcontrol.mo share/locale/ja/LC_MESSAGES/soliduiserver.mo share/locale/ja/LC_MESSAGES/spy.mo share/locale/ja/LC_MESSAGES/step.mo +share/locale/ja/LC_MESSAGES/step_qt.mo share/locale/ja/LC_MESSAGES/strigila_diff.mo share/locale/ja/LC_MESSAGES/superkaramba.mo share/locale/ja/LC_MESSAGES/svgpart.mo share/locale/ja/LC_MESSAGES/sweeper.mo +share/locale/ja/LC_MESSAGES/system-config-printer-kde.mo share/locale/ja/LC_MESSAGES/systemsettings.mo share/locale/ja/LC_MESSAGES/timezones4.mo share/locale/ja/LC_MESSAGES/umbrello.mo @@ -676,58 +564,5 @@ share/locale/ja/entry.desktop @dirrm share/doc/HTML/ja/kshisen @dirrm share/doc/HTML/ja/kollision @dirrm share/doc/HTML/ja/knetwalk -@dirrm share/doc/HTML/ja/kiriki -@dirrm share/doc/HTML/ja/kinfocenter/xserver -@dirrm share/doc/HTML/ja/kinfocenter/usb -@dirrm share/doc/HTML/ja/kinfocenter/sound -@dirrm share/doc/HTML/ja/kinfocenter/scsi -@dirrm share/doc/HTML/ja/kinfocenter/samba -@dirrm share/doc/HTML/ja/kinfocenter/protocols -@dirrm share/doc/HTML/ja/kinfocenter/processor -@dirrm share/doc/HTML/ja/kinfocenter/pcmcia -@dirrm share/doc/HTML/ja/kinfocenter/pci -@dirrm share/doc/HTML/ja/kinfocenter/partitions -@dirrm share/doc/HTML/ja/kinfocenter/memory -@dirrm share/doc/HTML/ja/kinfocenter/dma -@dirrm share/doc/HTML/ja/kinfocenter/blockdevices -@dirrm share/doc/HTML/ja/kinfocenter -@dirrm share/doc/HTML/ja/khelpcenter @dirrm share/doc/HTML/ja/kgpg @dirrm share/doc/HTML/ja/kdesu -@dirrm share/doc/HTML/ja/kcontrol/windowmanagement -@dirrm share/doc/HTML/ja/kcontrol/useragent -@dirrm share/doc/HTML/ja/kcontrol/spellchecking -@dirrm share/doc/HTML/ja/kcontrol/smb -@dirrm share/doc/HTML/ja/kcontrol/screensaver -@dirrm share/doc/HTML/ja/kcontrol/proxy -@dirrm share/doc/HTML/ja/kcontrol/powerctrl -@dirrm share/doc/HTML/ja/kcontrol/passwords -@dirrm share/doc/HTML/ja/kcontrol/netpref -@dirrm share/doc/HTML/ja/kcontrol/mouse -@dirrm share/doc/HTML/ja/kcontrol/laptop -@dirrm share/doc/HTML/ja/kcontrol/kwindecoration -@dirrm share/doc/HTML/ja/kcontrol/kthememgr -@dirrm share/doc/HTML/ja/kcontrol/khtml -@dirrm share/doc/HTML/ja/kcontrol/keys -@dirrm share/doc/HTML/ja/kcontrol/keyboard -@dirrm share/doc/HTML/ja/kcontrol/kcmtaskbar -@dirrm share/doc/HTML/ja/kcontrol/kcmsmserver -@dirrm share/doc/HTML/ja/kcontrol/kcmnotify -@dirrm share/doc/HTML/ja/kcontrol/kcmlowbatwarn -@dirrm share/doc/HTML/ja/kcontrol/kcmlowbatcrit -@dirrm share/doc/HTML/ja/kcontrol/kcmlaunch -@dirrm share/doc/HTML/ja/kcontrol/kcmkonsole -@dirrm share/doc/HTML/ja/kcontrol/kcmcss -@dirrm share/doc/HTML/ja/kcontrol/kalarmd -@dirrm share/doc/HTML/ja/kcontrol/icons -@dirrm share/doc/HTML/ja/kcontrol/fonts -@dirrm share/doc/HTML/ja/kcontrol/filetypes -@dirrm share/doc/HTML/ja/kcontrol/email -@dirrm share/doc/HTML/ja/kcontrol/ebrowsing -@dirrm share/doc/HTML/ja/kcontrol/desktop -@dirrm share/doc/HTML/ja/kcontrol/crypto -@dirrm share/doc/HTML/ja/kcontrol/cookies -@dirrm share/doc/HTML/ja/kcontrol/colors -@dirrm share/doc/HTML/ja/kcontrol/clock -@dirrm share/doc/HTML/ja/kcontrol/bell -@dirrm share/doc/HTML/ja/kcontrol diff --git a/korean/kde4-l10n/distinfo b/korean/kde4-l10n/distinfo index f5c5dda4b25d..77457be3c4fb 100644 --- a/korean/kde4-l10n/distinfo +++ b/korean/kde4-l10n/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-ko-4.1.4.tar.bz2) = d1c3c4d106672a83f2fa73b5b49312d9 -SHA256 (KDE/kde-l10n/kde-l10n-ko-4.1.4.tar.bz2) = db35dfdd57548a7806e0e25e0813eb6b5eb9f116b73b969911028b9808b7ccda -SIZE (KDE/kde-l10n/kde-l10n-ko-4.1.4.tar.bz2) = 1051774 +MD5 (KDE/kde-l10n/kde-l10n-ko-4.2.0.tar.bz2) = bbd68e1c9eee724c7db051657fdfb50c +SHA256 (KDE/kde-l10n/kde-l10n-ko-4.2.0.tar.bz2) = 59eb4225178de4f751bf96b8c837de2afe5fda190df415689e41bb702dd8f6a2 +SIZE (KDE/kde-l10n/kde-l10n-ko-4.2.0.tar.bz2) = 1253267 diff --git a/korean/kde4-l10n/pkg-plist b/korean/kde4-l10n/pkg-plist index 79f0111fcc44..6d5f6068e95d 100644 --- a/korean/kde4-l10n/pkg-plist +++ b/korean/kde4-l10n/pkg-plist @@ -4,6 +4,7 @@ share/doc/HTML/ko/common/kde-localised.css share/doc/HTML/ko/khelpcenter/quickstart/common share/doc/HTML/ko/khelpcenter/quickstart/index.cache.bz2 share/doc/HTML/ko/khelpcenter/quickstart/index.docbook +share/locale/ko/LC_MESSAGES/akonaditray.mo share/locale/ko/LC_MESSAGES/akregator.mo share/locale/ko/LC_MESSAGES/amor.mo share/locale/ko/LC_MESSAGES/ark.mo @@ -29,18 +30,34 @@ share/locale/ko/LC_MESSAGES/kabc_net.mo share/locale/ko/LC_MESSAGES/kabcformat_binary.mo share/locale/ko/LC_MESSAGES/kaccess.mo share/locale/ko/LC_MESSAGES/kaddressbook.mo +share/locale/ko/LC_MESSAGES/kalarm.mo +share/locale/ko/LC_MESSAGES/kanagram.mo share/locale/ko/LC_MESSAGES/kappfinder.mo +share/locale/ko/LC_MESSAGES/kapptemplate.mo share/locale/ko/LC_MESSAGES/kate.mo +share/locale/ko/LC_MESSAGES/katebuild-plugin.mo +share/locale/ko/LC_MESSAGES/katehelloworld.mo +share/locale/ko/LC_MESSAGES/katekjswrapper.mo +share/locale/ko/LC_MESSAGES/katekonsoleplugin.mo +share/locale/ko/LC_MESSAGES/katemailfilesplugin.mo +share/locale/ko/LC_MESSAGES/kateopenheader.mo share/locale/ko/LC_MESSAGES/katepart4.mo +share/locale/ko/LC_MESSAGES/katepybrowse.mo +share/locale/ko/LC_MESSAGES/katequickdocumentswitcherplugin.mo +share/locale/ko/LC_MESSAGES/katesnippets.mo +share/locale/ko/LC_MESSAGES/katesymbolviewer.mo +share/locale/ko/LC_MESSAGES/katetextfilter.mo +share/locale/ko/LC_MESSAGES/katexmlcheck.mo +share/locale/ko/LC_MESSAGES/katexmltools.mo share/locale/ko/LC_MESSAGES/katomic.mo share/locale/ko/LC_MESSAGES/kbattleship.mo share/locale/ko/LC_MESSAGES/kblankscrn.mo share/locale/ko/LC_MESSAGES/kbounce.mo -share/locale/ko/LC_MESSAGES/kbstateapplet.mo share/locale/ko/LC_MESSAGES/kcalc.mo share/locale/ko/LC_MESSAGES/kcertpart.mo share/locale/ko/LC_MESSAGES/kcharselect.mo share/locale/ko/LC_MESSAGES/kcm_autostart.mo +share/locale/ko/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/ko/LC_MESSAGES/kcm_emoticons.mo share/locale/ko/LC_MESSAGES/kcm_krfb.mo share/locale/ko/LC_MESSAGES/kcm_kwindesktop.mo @@ -50,6 +67,7 @@ share/locale/ko/LC_MESSAGES/kcm_pci.mo share/locale/ko/LC_MESSAGES/kcm_phonon.mo share/locale/ko/LC_MESSAGES/kcm_phononxine.mo share/locale/ko/LC_MESSAGES/kcm_solid.mo +share/locale/ko/LC_MESSAGES/kcm_standard_actions.mo share/locale/ko/LC_MESSAGES/kcmaccess.mo share/locale/ko/LC_MESSAGES/kcmaudiocd.mo share/locale/ko/LC_MESSAGES/kcmbackground.mo @@ -98,7 +116,6 @@ share/locale/ko/LC_MESSAGES/kcmsmartcard.mo share/locale/ko/LC_MESSAGES/kcmsmserver.mo share/locale/ko/LC_MESSAGES/kcmsolidproc.mo share/locale/ko/LC_MESSAGES/kcmstyle.mo -share/locale/ko/LC_MESSAGES/kcmtaskbar.mo share/locale/ko/LC_MESSAGES/kcmusb.mo share/locale/ko/LC_MESSAGES/kcmview1394.mo share/locale/ko/LC_MESSAGES/kcmxinerama.mo @@ -107,6 +124,7 @@ share/locale/ko/LC_MESSAGES/kcron.mo share/locale/ko/LC_MESSAGES/kdat.mo share/locale/ko/LC_MESSAGES/kde-menu.mo share/locale/ko/LC_MESSAGES/kdebugdialog.mo +share/locale/ko/LC_MESSAGES/kded_phononserver.mo share/locale/ko/LC_MESSAGES/kdelibs4.mo share/locale/ko/LC_MESSAGES/kdelibs_colors4.mo share/locale/ko/LC_MESSAGES/kdepasswd.mo @@ -123,9 +141,11 @@ share/locale/ko/LC_MESSAGES/keditbookmarks.mo share/locale/ko/LC_MESSAGES/kfile.mo share/locale/ko/LC_MESSAGES/kfile_avi.mo share/locale/ko/LC_MESSAGES/kfile_dds.mo +share/locale/ko/LC_MESSAGES/kfile_drgeo.mo share/locale/ko/LC_MESSAGES/kfile_dvi.mo share/locale/ko/LC_MESSAGES/kfile_exr.mo share/locale/ko/LC_MESSAGES/kfile_flac.mo +share/locale/ko/LC_MESSAGES/kfile_kig.mo share/locale/ko/LC_MESSAGES/kfile_mp3.mo share/locale/ko/LC_MESSAGES/kfile_mpc.mo share/locale/ko/LC_MESSAGES/kfile_ogg.mo @@ -146,6 +166,7 @@ share/locale/ko/LC_MESSAGES/kfloppy.mo share/locale/ko/LC_MESSAGES/kfmclient.mo share/locale/ko/LC_MESSAGES/kfontinst.mo share/locale/ko/LC_MESSAGES/kfourinline.mo +share/locale/ko/LC_MESSAGES/kgeography.mo share/locale/ko/LC_MESSAGES/kget.mo share/locale/ko/LC_MESSAGES/kgpg.mo share/locale/ko/LC_MESSAGES/kgreet_classic.mo @@ -160,20 +181,23 @@ share/locale/ko/LC_MESSAGES/kimagemapeditor.mo share/locale/ko/LC_MESSAGES/kinetd.mo share/locale/ko/LC_MESSAGES/kinfocenter.mo share/locale/ko/LC_MESSAGES/kio4.mo +share/locale/ko/LC_MESSAGES/kio_applications.mo share/locale/ko/LC_MESSAGES/kio_archive.mo share/locale/ko/LC_MESSAGES/kio_audiocd.mo +share/locale/ko/LC_MESSAGES/kio_bookmarks.mo share/locale/ko/LC_MESSAGES/kio_finger.mo share/locale/ko/LC_MESSAGES/kio_fish.mo share/locale/ko/LC_MESSAGES/kio_floppy.mo share/locale/ko/LC_MESSAGES/kio_help4.mo share/locale/ko/LC_MESSAGES/kio_jabberdisco.mo share/locale/ko/LC_MESSAGES/kio_man.mo +share/locale/ko/LC_MESSAGES/kio_nepomuksearch.mo share/locale/ko/LC_MESSAGES/kio_nfs.mo share/locale/ko/LC_MESSAGES/kio_nntp.mo share/locale/ko/LC_MESSAGES/kio_remote.mo -share/locale/ko/LC_MESSAGES/kio_settings.mo share/locale/ko/LC_MESSAGES/kio_sftp.mo share/locale/ko/LC_MESSAGES/kio_smb.mo +share/locale/ko/LC_MESSAGES/kio_svn.mo share/locale/ko/LC_MESSAGES/kio_thumbnail.mo share/locale/ko/LC_MESSAGES/kio_trash.mo share/locale/ko/LC_MESSAGES/kio_zeroconf.mo @@ -202,11 +226,14 @@ share/locale/ko/LC_MESSAGES/knotes.mo share/locale/ko/LC_MESSAGES/knotify4.mo share/locale/ko/LC_MESSAGES/kolourpaint.mo share/locale/ko/LC_MESSAGES/kommander.mo +share/locale/ko/LC_MESSAGES/kompare.mo share/locale/ko/LC_MESSAGES/konqueror.mo share/locale/ko/LC_MESSAGES/konsole.mo share/locale/ko/LC_MESSAGES/kontact.mo share/locale/ko/LC_MESSAGES/kopete.mo +share/locale/ko/LC_MESSAGES/korganizer.mo share/locale/ko/LC_MESSAGES/kpackage.mo +share/locale/ko/LC_MESSAGES/kpartloader.mo share/locale/ko/LC_MESSAGES/kpartsaver.mo share/locale/ko/LC_MESSAGES/kpasswdserver.mo share/locale/ko/LC_MESSAGES/kpat.mo @@ -217,19 +244,11 @@ share/locale/ko/LC_MESSAGES/krandr.mo share/locale/ko/LC_MESSAGES/krdb.mo share/locale/ko/LC_MESSAGES/krdc.mo share/locale/ko/LC_MESSAGES/kreadconfig.mo +share/locale/ko/LC_MESSAGES/kres_bugzilla.mo share/locale/ko/LC_MESSAGES/kreversi.mo share/locale/ko/LC_MESSAGES/krfb.mo share/locale/ko/LC_MESSAGES/kruler.mo share/locale/ko/LC_MESSAGES/krunner.mo -share/locale/ko/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/ko/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/ko/LC_MESSAGES/krunner_contacts.mo -share/locale/ko/LC_MESSAGES/krunner_converterrunner.mo -share/locale/ko/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/ko/LC_MESSAGES/krunner_sessions.mo -share/locale/ko/LC_MESSAGES/krunner_shellrunner.mo -share/locale/ko/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/ko/LC_MESSAGES/krunner_xesam.mo share/locale/ko/LC_MESSAGES/ksame.mo share/locale/ko/LC_MESSAGES/ksaneplugin.mo share/locale/ko/LC_MESSAGES/ksayit.mo @@ -241,10 +260,12 @@ share/locale/ko/LC_MESSAGES/ksmserver.mo share/locale/ko/LC_MESSAGES/ksnapshot.mo share/locale/ko/LC_MESSAGES/ksplashthemes.mo share/locale/ko/LC_MESSAGES/kstart.mo +share/locale/ko/LC_MESSAGES/kstartperf.mo share/locale/ko/LC_MESSAGES/kstyle_config.mo share/locale/ko/LC_MESSAGES/kstyle_keramik_config.mo share/locale/ko/LC_MESSAGES/ksudoku.mo share/locale/ko/LC_MESSAGES/ksysguard.mo +share/locale/ko/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ko/LC_MESSAGES/ksystemlog.mo share/locale/ko/LC_MESSAGES/ksystraycmd.mo share/locale/ko/LC_MESSAGES/ksysv.mo @@ -258,8 +279,10 @@ share/locale/ko/LC_MESSAGES/kttsd.mo share/locale/ko/LC_MESSAGES/ktuberling.mo share/locale/ko/LC_MESSAGES/ktux.mo share/locale/ko/LC_MESSAGES/kuiserver.mo +share/locale/ko/LC_MESSAGES/kuiviewer.mo share/locale/ko/LC_MESSAGES/kurifilter.mo share/locale/ko/LC_MESSAGES/kuser.mo +share/locale/ko/LC_MESSAGES/kwalletd.mo share/locale/ko/LC_MESSAGES/kwalletmanager.mo share/locale/ko/LC_MESSAGES/kweather.mo share/locale/ko/LC_MESSAGES/kwin.mo @@ -285,10 +308,12 @@ share/locale/ko/LC_MESSAGES/libkworkspace.mo share/locale/ko/LC_MESSAGES/liboktetacore.mo share/locale/ko/LC_MESSAGES/libphonon.mo share/locale/ko/LC_MESSAGES/libplasma.mo +share/locale/ko/LC_MESSAGES/libplasmaclock.mo share/locale/ko/LC_MESSAGES/libtaskmanager.mo share/locale/ko/LC_MESSAGES/lokalize.mo share/locale/ko/LC_MESSAGES/lskat.mo share/locale/ko/LC_MESSAGES/nepomuk.mo +share/locale/ko/LC_MESSAGES/nepomuksearch.mo share/locale/ko/LC_MESSAGES/nsplugin.mo share/locale/ko/LC_MESSAGES/okteta.mo share/locale/ko/LC_MESSAGES/oktetapart.mo @@ -298,6 +323,7 @@ share/locale/ko/LC_MESSAGES/okular_comicbook.mo share/locale/ko/LC_MESSAGES/okular_djvu.mo share/locale/ko/LC_MESSAGES/okular_dvi.mo share/locale/ko/LC_MESSAGES/okular_epub.mo +share/locale/ko/LC_MESSAGES/okular_fax.mo share/locale/ko/LC_MESSAGES/okular_fictionbook.mo share/locale/ko/LC_MESSAGES/okular_ghostview.mo share/locale/ko/LC_MESSAGES/okular_kimgio.mo @@ -307,11 +333,15 @@ share/locale/ko/LC_MESSAGES/okular_poppler.mo share/locale/ko/LC_MESSAGES/okular_tiff.mo share/locale/ko/LC_MESSAGES/okular_xps.mo share/locale/ko/LC_MESSAGES/phonon-xine.mo +share/locale/ko/LC_MESSAGES/phonon_gstreamer.mo share/locale/ko/LC_MESSAGES/phonon_kde.mo +share/locale/ko/LC_MESSAGES/plasma-overlay.mo +share/locale/ko/LC_MESSAGES/plasma-shells-common.mo share/locale/ko/LC_MESSAGES/plasma.mo share/locale/ko/LC_MESSAGES/plasma_applet_battery.mo share/locale/ko/LC_MESSAGES/plasma_applet_binaryclock.mo share/locale/ko/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/ko/LC_MESSAGES/plasma_applet_charselect.mo share/locale/ko/LC_MESSAGES/plasma_applet_clock.mo share/locale/ko/LC_MESSAGES/plasma_applet_comic.mo share/locale/ko/LC_MESSAGES/plasma_applet_desktop.mo @@ -323,8 +353,10 @@ share/locale/ko/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/ko/LC_MESSAGES/plasma_applet_folderview.mo share/locale/ko/LC_MESSAGES/plasma_applet_frame.mo share/locale/ko/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/ko/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/ko/LC_MESSAGES/plasma_applet_kalzium.mo +share/locale/ko/LC_MESSAGES/plasma_applet_katesession.mo share/locale/ko/LC_MESSAGES/plasma_applet_kget.mo -share/locale/ko/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/ko/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/ko/LC_MESSAGES/plasma_applet_launcher.mo share/locale/ko/LC_MESSAGES/plasma_applet_luna.mo @@ -332,15 +364,36 @@ share/locale/ko/LC_MESSAGES/plasma_applet_notes.mo share/locale/ko/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/ko/LC_MESSAGES/plasma_applet_pager.mo share/locale/ko/LC_MESSAGES/plasma_applet_panel.mo +share/locale/ko/LC_MESSAGES/plasma_applet_quicklaunch.mo share/locale/ko/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/ko/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/ko/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/ko/LC_MESSAGES/plasma_applet_tasks.mo share/locale/ko/LC_MESSAGES/plasma_applet_trash.mo share/locale/ko/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/ko/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/ko/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/ko/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/ko/LC_MESSAGES/plasma_engine_dict.mo +share/locale/ko/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/ko/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ko/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/ko/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ko/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/ko/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ko/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ko/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/ko/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ko/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ko/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ko/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ko/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ko/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/ko/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/ko/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/ko/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ko/LC_MESSAGES/plasmapkg.mo share/locale/ko/LC_MESSAGES/plasmoidviewer.mo +share/locale/ko/LC_MESSAGES/powerdevil.mo share/locale/ko/LC_MESSAGES/printer-applet.mo share/locale/ko/LC_MESSAGES/processcore.mo share/locale/ko/LC_MESSAGES/processui.mo @@ -350,6 +403,7 @@ share/locale/ko/LC_MESSAGES/solid-network.mo share/locale/ko/LC_MESSAGES/solid-powermanagement.mo share/locale/ko/LC_MESSAGES/solidcontrol.mo share/locale/ko/LC_MESSAGES/soliduiserver.mo +share/locale/ko/LC_MESSAGES/spy.mo share/locale/ko/LC_MESSAGES/superkaramba.mo share/locale/ko/LC_MESSAGES/svgpart.mo share/locale/ko/LC_MESSAGES/sweeper.mo diff --git a/math/Makefile b/math/Makefile index 332ec11ae0f6..c7fc07c545a0 100644 --- a/math/Makefile +++ b/math/Makefile @@ -52,6 +52,7 @@ SUBDIR += e SUBDIR += edenmath SUBDIR += eigen + SUBDIR += eigen2 SUBDIR += eispack SUBDIR += elmer-umfpack SUBDIR += emacs-calc diff --git a/math/eigen2/Makefile b/math/eigen2/Makefile index be26db571c7b..f65594fd3eb4 100644 --- a/math/eigen2/Makefile +++ b/math/eigen2/Makefile @@ -5,18 +5,15 @@ # $FreeBSD$ PORTNAME= eigen -PORTVERSION= 1.0.5 +DISTVERSION= 2.0-beta3 CATEGORIES= math MASTER_SITES= http://download.tuxfamily.org/eigen/ MAINTAINER= kde@FreeBSD.org COMMENT= Lightweight library for vector and matrix math +USE_BZIP2= yes USE_CMAKE= yes -CMAKE_SOURCE_PATH= .. -WRKSRC= ${WRKDIR}/${PORTNAME}/build - -post-patch: - ${MKDIR} ${WRKSRC} +WRKSRC= ${WRKDIR}/${PORTNAME}2 .include <bsd.port.mk> diff --git a/math/eigen2/distinfo b/math/eigen2/distinfo index 1a506be0ffdb..b7db4b495f8e 100644 --- a/math/eigen2/distinfo +++ b/math/eigen2/distinfo @@ -1,3 +1,3 @@ -MD5 (eigen-1.0.5.tar.gz) = 960d7e5fb6542270eae4d53ca99b607c -SHA256 (eigen-1.0.5.tar.gz) = 6dfc085adc22baf66fa0fde190c8cf37effadbbe62bbfea5966cfd2cc85142d6 -SIZE (eigen-1.0.5.tar.gz) = 59944 +MD5 (eigen-2.0-beta3.tar.bz2) = 7d0e8e83562c1608dfbdb853677ee49f +SHA256 (eigen-2.0-beta3.tar.bz2) = adad041e72046cc0a1979c148062fc11c82145b3d006542caeae941faa5435b1 +SIZE (eigen-2.0-beta3.tar.bz2) = 320429 diff --git a/math/eigen2/pkg-descr b/math/eigen2/pkg-descr index 2ff2b3b7e356..8171998d5740 100644 --- a/math/eigen2/pkg-descr +++ b/math/eigen2/pkg-descr @@ -1,15 +1,4 @@ -Eigen is a lightweight C++ template library for vector and matrix math, a.k.a. -linear algebra. -Unlike most other linear algebra libraries, Eigen focuses on the simple -mathematical needs of applications: games and other OpenGL apps, spreadsheets -and other office apps, etc. Eigen is dedicated to providing optimal speed with -GCC. -Its fixed-size classes are specially optimized for small sizes up to 4, -although it is theoretically possible to specialize them to any size. They -never cause dynamic memory applications and the simple operations on them are -as fast as is possible at least for sizes up to 4 (see below). -Its dynamic-size classes are more flexible and suitable for larger sizes. -Both fixed-size and dynamic-size classes use the same underlying C++ code, -thanks to a curiously recurring template pattern. +Eigen 2 is a C++ template library for linear algebra (vectors, +matrices, and related algorithms). WWW: http://eigen.tuxfamily.org/ diff --git a/math/eigen2/pkg-plist b/math/eigen2/pkg-plist index 2e8bfb9de2ce..45f044dadd78 100644 --- a/math/eigen2/pkg-plist +++ b/math/eigen2/pkg-plist @@ -1,13 +1,121 @@ -include/eigen/linearsolver.h -include/eigen/linearsolverbase.h -include/eigen/ludecomposition.h -include/eigen/ludecompositionbase.h -include/eigen/matrix.h -include/eigen/matrixbase.h -include/eigen/projective.h -include/eigen/util.h -include/eigen/vector.h -include/eigen/vectorbase.h -include/eigen/regressioninternal.h -include/eigen/regression.h -@dirrm include/eigen +include/eigen2/Eigen/Array +include/eigen2/Eigen/Cholesky +include/eigen2/Eigen/Core +include/eigen2/Eigen/Geometry +include/eigen2/Eigen/LU +include/eigen2/Eigen/QR +include/eigen2/Eigen/Regression +include/eigen2/Eigen/SVD +include/eigen2/Eigen/Sparse +include/eigen2/Eigen/src/Array/AllAndAny.h +include/eigen2/Eigen/src/Array/CwiseOperators.h +include/eigen2/Eigen/src/Array/Functors.h +include/eigen2/Eigen/src/Array/Norms.h +include/eigen2/Eigen/src/Array/PartialRedux.h +include/eigen2/Eigen/src/Array/Random.h +include/eigen2/Eigen/src/Array/Select.h +include/eigen2/Eigen/src/Cholesky/Cholesky.h +include/eigen2/Eigen/src/Cholesky/CholeskyWithoutSquareRoot.h +include/eigen2/Eigen/src/Cholesky/LDLT.h +include/eigen2/Eigen/src/Cholesky/LLT.h +include/eigen2/Eigen/src/Core/Assign.h +include/eigen2/Eigen/src/Core/Block.h +include/eigen2/Eigen/src/Core/CacheFriendlyProduct.h +include/eigen2/Eigen/src/Core/Coeffs.h +include/eigen2/Eigen/src/Core/CommaInitializer.h +include/eigen2/Eigen/src/Core/Cwise.h +include/eigen2/Eigen/src/Core/CwiseBinaryOp.h +include/eigen2/Eigen/src/Core/CwiseNullaryOp.h +include/eigen2/Eigen/src/Core/CwiseUnaryOp.h +include/eigen2/Eigen/src/Core/DiagonalCoeffs.h +include/eigen2/Eigen/src/Core/DiagonalMatrix.h +include/eigen2/Eigen/src/Core/DiagonalProduct.h +include/eigen2/Eigen/src/Core/Dot.h +include/eigen2/Eigen/src/Core/Flagged.h +include/eigen2/Eigen/src/Core/Functors.h +include/eigen2/Eigen/src/Core/Fuzzy.h +include/eigen2/Eigen/src/Core/GenericPacketMath.h +include/eigen2/Eigen/src/Core/IO.h +include/eigen2/Eigen/src/Core/Map.h +include/eigen2/Eigen/src/Core/MapBase.h +include/eigen2/Eigen/src/Core/MathFunctions.h +include/eigen2/Eigen/src/Core/Matrix.h +include/eigen2/Eigen/src/Core/MatrixBase.h +include/eigen2/Eigen/src/Core/MatrixStorage.h +include/eigen2/Eigen/src/Core/Minor.h +include/eigen2/Eigen/src/Core/NestByValue.h +include/eigen2/Eigen/src/Core/NumTraits.h +include/eigen2/Eigen/src/Core/Part.h +include/eigen2/Eigen/src/Core/Product.h +include/eigen2/Eigen/src/Core/Redux.h +include/eigen2/Eigen/src/Core/SolveTriangular.h +include/eigen2/Eigen/src/Core/Sum.h +include/eigen2/Eigen/src/Core/Swap.h +include/eigen2/Eigen/src/Core/Transpose.h +include/eigen2/Eigen/src/Core/Visitor.h +include/eigen2/Eigen/src/Core/arch/AltiVec/PacketMath.h +include/eigen2/Eigen/src/Core/arch/SSE/PacketMath.h +include/eigen2/Eigen/src/Core/util/Constants.h +include/eigen2/Eigen/src/Core/util/DisableMSVCWarnings.h +include/eigen2/Eigen/src/Core/util/EnableMSVCWarnings.h +include/eigen2/Eigen/src/Core/util/ForwardDeclarations.h +include/eigen2/Eigen/src/Core/util/Macros.h +include/eigen2/Eigen/src/Core/util/Memory.h +include/eigen2/Eigen/src/Core/util/Meta.h +include/eigen2/Eigen/src/Core/util/StaticAssert.h +include/eigen2/Eigen/src/Core/util/XprHelper.h +include/eigen2/Eigen/src/Geometry/AlignedBox.h +include/eigen2/Eigen/src/Geometry/AngleAxis.h +include/eigen2/Eigen/src/Geometry/EulerAngles.h +include/eigen2/Eigen/src/Geometry/Hyperplane.h +include/eigen2/Eigen/src/Geometry/OrthoMethods.h +include/eigen2/Eigen/src/Geometry/ParametrizedLine.h +include/eigen2/Eigen/src/Geometry/Quaternion.h +include/eigen2/Eigen/src/Geometry/Rotation2D.h +include/eigen2/Eigen/src/Geometry/RotationBase.h +include/eigen2/Eigen/src/Geometry/Scaling.h +include/eigen2/Eigen/src/Geometry/Transform.h +include/eigen2/Eigen/src/Geometry/Translation.h +include/eigen2/Eigen/src/LU/Determinant.h +include/eigen2/Eigen/src/LU/Inverse.h +include/eigen2/Eigen/src/LU/LU.h +include/eigen2/Eigen/src/QR/EigenSolver.h +include/eigen2/Eigen/src/QR/HessenbergDecomposition.h +include/eigen2/Eigen/src/QR/QR.h +include/eigen2/Eigen/src/QR/SelfAdjointEigenSolver.h +include/eigen2/Eigen/src/QR/Tridiagonalization.h +include/eigen2/Eigen/src/Regression/Regression.h +include/eigen2/Eigen/src/SVD/SVD.h +include/eigen2/Eigen/src/Sparse/AmbiVector.h +include/eigen2/Eigen/src/Sparse/CholmodSupport.h +include/eigen2/Eigen/src/Sparse/CoreIterators.h +include/eigen2/Eigen/src/Sparse/RandomSetter.h +include/eigen2/Eigen/src/Sparse/SparseArray.h +include/eigen2/Eigen/src/Sparse/SparseBlock.h +include/eigen2/Eigen/src/Sparse/SparseLDLT.h +include/eigen2/Eigen/src/Sparse/SparseLLT.h +include/eigen2/Eigen/src/Sparse/SparseLU.h +include/eigen2/Eigen/src/Sparse/SparseMatrix.h +include/eigen2/Eigen/src/Sparse/SparseMatrixBase.h +include/eigen2/Eigen/src/Sparse/SparseProduct.h +include/eigen2/Eigen/src/Sparse/SparseUtil.h +include/eigen2/Eigen/src/Sparse/SuperLUSupport.h +include/eigen2/Eigen/src/Sparse/TaucsSupport.h +include/eigen2/Eigen/src/Sparse/TriangularSolver.h +include/eigen2/Eigen/src/Sparse/UmfPackSupport.h +@dirrm include/eigen2/Eigen/src/Sparse +@dirrm include/eigen2/Eigen/src/SVD +@dirrm include/eigen2/Eigen/src/Regression +@dirrm include/eigen2/Eigen/src/QR +@dirrm include/eigen2/Eigen/src/LU +@dirrm include/eigen2/Eigen/src/Geometry +@dirrm include/eigen2/Eigen/src/Core/util +@dirrm include/eigen2/Eigen/src/Core/arch/SSE +@dirrm include/eigen2/Eigen/src/Core/arch/AltiVec +@dirrm include/eigen2/Eigen/src/Core/arch +@dirrm include/eigen2/Eigen/src/Core +@dirrm include/eigen2/Eigen/src/Cholesky +@dirrm include/eigen2/Eigen/src/Array +@dirrm include/eigen2/Eigen/src +@dirrm include/eigen2/Eigen +@dirrm include/eigen2 diff --git a/math/eigen3/Makefile b/math/eigen3/Makefile index be26db571c7b..f65594fd3eb4 100644 --- a/math/eigen3/Makefile +++ b/math/eigen3/Makefile @@ -5,18 +5,15 @@ # $FreeBSD$ PORTNAME= eigen -PORTVERSION= 1.0.5 +DISTVERSION= 2.0-beta3 CATEGORIES= math MASTER_SITES= http://download.tuxfamily.org/eigen/ MAINTAINER= kde@FreeBSD.org COMMENT= Lightweight library for vector and matrix math +USE_BZIP2= yes USE_CMAKE= yes -CMAKE_SOURCE_PATH= .. -WRKSRC= ${WRKDIR}/${PORTNAME}/build - -post-patch: - ${MKDIR} ${WRKSRC} +WRKSRC= ${WRKDIR}/${PORTNAME}2 .include <bsd.port.mk> diff --git a/math/eigen3/distinfo b/math/eigen3/distinfo index 1a506be0ffdb..b7db4b495f8e 100644 --- a/math/eigen3/distinfo +++ b/math/eigen3/distinfo @@ -1,3 +1,3 @@ -MD5 (eigen-1.0.5.tar.gz) = 960d7e5fb6542270eae4d53ca99b607c -SHA256 (eigen-1.0.5.tar.gz) = 6dfc085adc22baf66fa0fde190c8cf37effadbbe62bbfea5966cfd2cc85142d6 -SIZE (eigen-1.0.5.tar.gz) = 59944 +MD5 (eigen-2.0-beta3.tar.bz2) = 7d0e8e83562c1608dfbdb853677ee49f +SHA256 (eigen-2.0-beta3.tar.bz2) = adad041e72046cc0a1979c148062fc11c82145b3d006542caeae941faa5435b1 +SIZE (eigen-2.0-beta3.tar.bz2) = 320429 diff --git a/math/eigen3/pkg-descr b/math/eigen3/pkg-descr index 2ff2b3b7e356..8171998d5740 100644 --- a/math/eigen3/pkg-descr +++ b/math/eigen3/pkg-descr @@ -1,15 +1,4 @@ -Eigen is a lightweight C++ template library for vector and matrix math, a.k.a. -linear algebra. -Unlike most other linear algebra libraries, Eigen focuses on the simple -mathematical needs of applications: games and other OpenGL apps, spreadsheets -and other office apps, etc. Eigen is dedicated to providing optimal speed with -GCC. -Its fixed-size classes are specially optimized for small sizes up to 4, -although it is theoretically possible to specialize them to any size. They -never cause dynamic memory applications and the simple operations on them are -as fast as is possible at least for sizes up to 4 (see below). -Its dynamic-size classes are more flexible and suitable for larger sizes. -Both fixed-size and dynamic-size classes use the same underlying C++ code, -thanks to a curiously recurring template pattern. +Eigen 2 is a C++ template library for linear algebra (vectors, +matrices, and related algorithms). WWW: http://eigen.tuxfamily.org/ diff --git a/math/eigen3/pkg-plist b/math/eigen3/pkg-plist index 2e8bfb9de2ce..45f044dadd78 100644 --- a/math/eigen3/pkg-plist +++ b/math/eigen3/pkg-plist @@ -1,13 +1,121 @@ -include/eigen/linearsolver.h -include/eigen/linearsolverbase.h -include/eigen/ludecomposition.h -include/eigen/ludecompositionbase.h -include/eigen/matrix.h -include/eigen/matrixbase.h -include/eigen/projective.h -include/eigen/util.h -include/eigen/vector.h -include/eigen/vectorbase.h -include/eigen/regressioninternal.h -include/eigen/regression.h -@dirrm include/eigen +include/eigen2/Eigen/Array +include/eigen2/Eigen/Cholesky +include/eigen2/Eigen/Core +include/eigen2/Eigen/Geometry +include/eigen2/Eigen/LU +include/eigen2/Eigen/QR +include/eigen2/Eigen/Regression +include/eigen2/Eigen/SVD +include/eigen2/Eigen/Sparse +include/eigen2/Eigen/src/Array/AllAndAny.h +include/eigen2/Eigen/src/Array/CwiseOperators.h +include/eigen2/Eigen/src/Array/Functors.h +include/eigen2/Eigen/src/Array/Norms.h +include/eigen2/Eigen/src/Array/PartialRedux.h +include/eigen2/Eigen/src/Array/Random.h +include/eigen2/Eigen/src/Array/Select.h +include/eigen2/Eigen/src/Cholesky/Cholesky.h +include/eigen2/Eigen/src/Cholesky/CholeskyWithoutSquareRoot.h +include/eigen2/Eigen/src/Cholesky/LDLT.h +include/eigen2/Eigen/src/Cholesky/LLT.h +include/eigen2/Eigen/src/Core/Assign.h +include/eigen2/Eigen/src/Core/Block.h +include/eigen2/Eigen/src/Core/CacheFriendlyProduct.h +include/eigen2/Eigen/src/Core/Coeffs.h +include/eigen2/Eigen/src/Core/CommaInitializer.h +include/eigen2/Eigen/src/Core/Cwise.h +include/eigen2/Eigen/src/Core/CwiseBinaryOp.h +include/eigen2/Eigen/src/Core/CwiseNullaryOp.h +include/eigen2/Eigen/src/Core/CwiseUnaryOp.h +include/eigen2/Eigen/src/Core/DiagonalCoeffs.h +include/eigen2/Eigen/src/Core/DiagonalMatrix.h +include/eigen2/Eigen/src/Core/DiagonalProduct.h +include/eigen2/Eigen/src/Core/Dot.h +include/eigen2/Eigen/src/Core/Flagged.h +include/eigen2/Eigen/src/Core/Functors.h +include/eigen2/Eigen/src/Core/Fuzzy.h +include/eigen2/Eigen/src/Core/GenericPacketMath.h +include/eigen2/Eigen/src/Core/IO.h +include/eigen2/Eigen/src/Core/Map.h +include/eigen2/Eigen/src/Core/MapBase.h +include/eigen2/Eigen/src/Core/MathFunctions.h +include/eigen2/Eigen/src/Core/Matrix.h +include/eigen2/Eigen/src/Core/MatrixBase.h +include/eigen2/Eigen/src/Core/MatrixStorage.h +include/eigen2/Eigen/src/Core/Minor.h +include/eigen2/Eigen/src/Core/NestByValue.h +include/eigen2/Eigen/src/Core/NumTraits.h +include/eigen2/Eigen/src/Core/Part.h +include/eigen2/Eigen/src/Core/Product.h +include/eigen2/Eigen/src/Core/Redux.h +include/eigen2/Eigen/src/Core/SolveTriangular.h +include/eigen2/Eigen/src/Core/Sum.h +include/eigen2/Eigen/src/Core/Swap.h +include/eigen2/Eigen/src/Core/Transpose.h +include/eigen2/Eigen/src/Core/Visitor.h +include/eigen2/Eigen/src/Core/arch/AltiVec/PacketMath.h +include/eigen2/Eigen/src/Core/arch/SSE/PacketMath.h +include/eigen2/Eigen/src/Core/util/Constants.h +include/eigen2/Eigen/src/Core/util/DisableMSVCWarnings.h +include/eigen2/Eigen/src/Core/util/EnableMSVCWarnings.h +include/eigen2/Eigen/src/Core/util/ForwardDeclarations.h +include/eigen2/Eigen/src/Core/util/Macros.h +include/eigen2/Eigen/src/Core/util/Memory.h +include/eigen2/Eigen/src/Core/util/Meta.h +include/eigen2/Eigen/src/Core/util/StaticAssert.h +include/eigen2/Eigen/src/Core/util/XprHelper.h +include/eigen2/Eigen/src/Geometry/AlignedBox.h +include/eigen2/Eigen/src/Geometry/AngleAxis.h +include/eigen2/Eigen/src/Geometry/EulerAngles.h +include/eigen2/Eigen/src/Geometry/Hyperplane.h +include/eigen2/Eigen/src/Geometry/OrthoMethods.h +include/eigen2/Eigen/src/Geometry/ParametrizedLine.h +include/eigen2/Eigen/src/Geometry/Quaternion.h +include/eigen2/Eigen/src/Geometry/Rotation2D.h +include/eigen2/Eigen/src/Geometry/RotationBase.h +include/eigen2/Eigen/src/Geometry/Scaling.h +include/eigen2/Eigen/src/Geometry/Transform.h +include/eigen2/Eigen/src/Geometry/Translation.h +include/eigen2/Eigen/src/LU/Determinant.h +include/eigen2/Eigen/src/LU/Inverse.h +include/eigen2/Eigen/src/LU/LU.h +include/eigen2/Eigen/src/QR/EigenSolver.h +include/eigen2/Eigen/src/QR/HessenbergDecomposition.h +include/eigen2/Eigen/src/QR/QR.h +include/eigen2/Eigen/src/QR/SelfAdjointEigenSolver.h +include/eigen2/Eigen/src/QR/Tridiagonalization.h +include/eigen2/Eigen/src/Regression/Regression.h +include/eigen2/Eigen/src/SVD/SVD.h +include/eigen2/Eigen/src/Sparse/AmbiVector.h +include/eigen2/Eigen/src/Sparse/CholmodSupport.h +include/eigen2/Eigen/src/Sparse/CoreIterators.h +include/eigen2/Eigen/src/Sparse/RandomSetter.h +include/eigen2/Eigen/src/Sparse/SparseArray.h +include/eigen2/Eigen/src/Sparse/SparseBlock.h +include/eigen2/Eigen/src/Sparse/SparseLDLT.h +include/eigen2/Eigen/src/Sparse/SparseLLT.h +include/eigen2/Eigen/src/Sparse/SparseLU.h +include/eigen2/Eigen/src/Sparse/SparseMatrix.h +include/eigen2/Eigen/src/Sparse/SparseMatrixBase.h +include/eigen2/Eigen/src/Sparse/SparseProduct.h +include/eigen2/Eigen/src/Sparse/SparseUtil.h +include/eigen2/Eigen/src/Sparse/SuperLUSupport.h +include/eigen2/Eigen/src/Sparse/TaucsSupport.h +include/eigen2/Eigen/src/Sparse/TriangularSolver.h +include/eigen2/Eigen/src/Sparse/UmfPackSupport.h +@dirrm include/eigen2/Eigen/src/Sparse +@dirrm include/eigen2/Eigen/src/SVD +@dirrm include/eigen2/Eigen/src/Regression +@dirrm include/eigen2/Eigen/src/QR +@dirrm include/eigen2/Eigen/src/LU +@dirrm include/eigen2/Eigen/src/Geometry +@dirrm include/eigen2/Eigen/src/Core/util +@dirrm include/eigen2/Eigen/src/Core/arch/SSE +@dirrm include/eigen2/Eigen/src/Core/arch/AltiVec +@dirrm include/eigen2/Eigen/src/Core/arch +@dirrm include/eigen2/Eigen/src/Core +@dirrm include/eigen2/Eigen/src/Cholesky +@dirrm include/eigen2/Eigen/src/Array +@dirrm include/eigen2/Eigen/src +@dirrm include/eigen2/Eigen +@dirrm include/eigen2 diff --git a/math/kcalc/Makefile b/math/kcalc/Makefile index 4b1a79df695a..23a75146b16a 100644 --- a/math/kcalc/Makefile +++ b/math/kcalc/Makefile @@ -8,16 +8,15 @@ PORTNAME= kdeutils PORTVERSION= ${KDE4_VERSION} CATEGORIES= misc kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Utilities for the KDE4 integrated X11 Desktop LIB_DEPENDS= gmp.7:${PORTSDIR}/math/libgmp4 \ - netsnmp:${PORTSDIR}/net-mgmt/net-snmp \ - qimageblitz.4:${PORTSDIR}/x11/qimageblitz \ - zip.1:${PORTSDIR}/archivers/libzip + zip.1:${PORTSDIR}/archivers/libzip \ + qimageblitz.4:${PORTSDIR}/x11/qimageblitz RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg LATEST_LINK= ${PORTNAME}4 @@ -25,10 +24,12 @@ LATEST_LINK= ${PORTNAME}4 USE_BZIP2= yes USE_QT_VER= 4 KDE4_BUILDENV= yes -USE_KDE4= kdelibs pimlibs workspace kdeprefix kdehier automoc4 +USE_KDE4= kdelibs pimlibs kdeprefix kdehier automoc4 QT_COMPONENTS= network gui porting xml \ qmake_build moc_build rcc_build uic_build +MAN1= ark.1 + post-extract: ${MKDIR} ${WRKSRC} diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index b32341e6b180..5bf5f73fd46e 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdeutils-4.1.4.tar.bz2) = 542663eeae777978dafab2dcf9d422c2 -SHA256 (KDE/kdeutils-4.1.4.tar.bz2) = fc20381de8df78548a88361dc845624c66eeaa9415c883461ba24b094c81b7df -SIZE (KDE/kdeutils-4.1.4.tar.bz2) = 2285905 +MD5 (KDE/kdeutils-4.2.0.tar.bz2) = f0ca24c7d3e5bb0ab55bf6b26fc6224e +SHA256 (KDE/kdeutils-4.2.0.tar.bz2) = 1b811b5ea12641aa4003dcc97ea19570418e83a909866f78c08a358a1e1a1cfd +SIZE (KDE/kdeutils-4.2.0.tar.bz2) = 2234345 diff --git a/math/kcalc/files/patch-ark_plugins_libzipplugin-zipplugin.cpp b/math/kcalc/files/patch-ark_plugins_libzipplugin-zipplugin.cpp index c5e3f75034b6..eb03ee5e2287 100644 --- a/math/kcalc/files/patch-ark_plugins_libzipplugin-zipplugin.cpp +++ b/math/kcalc/files/patch-ark_plugins_libzipplugin-zipplugin.cpp @@ -1,13 +1,13 @@ ---- ../ark/plugins/libzipplugin/zipplugin.cpp.orig 2008-08-30 13:07:45.000000000 +0400 -+++ ../ark/plugins/libzipplugin/zipplugin.cpp 2008-08-30 13:12:59.000000000 +0400 -@@ -30,8 +30,8 @@ - //usually compiled with off_t to 32bit. in the long run libzip should be - //compiled according to bugs.kde.org bug #167018 - //but for now this will probably do +--- ../ark/plugins/libzipplugin/zipplugin.cpp.orig 2008-12-10 16:13:03.000000000 +0000 ++++ ../ark/plugins/libzipplugin/zipplugin.cpp 2008-12-29 22:16:13.000000000 +0000 +@@ -28,8 +28,8 @@ + + #ifdef LIBZIP_COMPILED_WITH_32BIT_OFF_T + -#define __off_t_defined -typedef quint32 off_t; +// #define __off_t_defined +// typedef quint32 off_t; - #include "kerfuffle/archiveinterface.h" - #include "kerfuffle/archivefactory.h" + #endif /* LIBZIP_COMPILED_WITH_32BIT_OFF_T */ + diff --git a/math/kcalc/pkg-plist b/math/kcalc/pkg-plist index 1f32022c99f9..03f698c23b80 100644 --- a/math/kcalc/pkg-plist +++ b/math/kcalc/pkg-plist @@ -13,8 +13,9 @@ bin/superkaramba bin/sweeper lib/kde4/kcm_kdf.so lib/kde4/kcm_kwallet.so -lib/kde4/kerfuffle_bk.so +lib/kde4/kerfuffle_7zip.so lib/kde4/kerfuffle_libarchive.so +lib/kde4/kerfuffle_libgz.so lib/kde4/kerfuffle_libzip.so lib/kde4/kerfuffle_rar.so lib/kde4/libarkpart.so @@ -25,16 +26,16 @@ lib/kde4/plasma_scriptengine_superkaramba.so lib/libkdeinit4_kcalc.so lib/libkerfuffle.so lib/libkerfuffle.so.5 -lib/libkerfuffle.so.5.0.0 +lib/libkerfuffle.so.5.0.1 lib/liboktetacore.so lib/liboktetacore.so.5 -lib/liboktetacore.so.5.0.0 +lib/liboktetacore.so.5.0.1 lib/liboktetagui.so lib/liboktetagui.so.5 -lib/liboktetagui.so.5.0.0 +lib/liboktetagui.so.5.0.1 lib/libsuperkaramba.so lib/libsuperkaramba.so.5 -lib/libsuperkaramba.so.5.0.0 +lib/libsuperkaramba.so.5.0.1 share/applications/kde4/KCharSelect.desktop share/applications/kde4/KFloppy.desktop share/applications/kde4/ark.desktop @@ -145,8 +146,12 @@ share/doc/HTML/en/kgpg/keyserver.png share/doc/HTML/en/kgpg/kicker.png share/doc/HTML/en/kgpg/options.png share/doc/HTML/en/ktimer/common +share/doc/HTML/en/ktimer/first.png share/doc/HTML/en/ktimer/index.cache.bz2 share/doc/HTML/en/ktimer/index.docbook +share/doc/HTML/en/ktimer/main.png +share/doc/HTML/en/ktimer/running.png +share/doc/HTML/en/ktimer/two.at.once.png share/doc/HTML/en/kwallet/common share/doc/HTML/en/kwallet/edit1.png share/doc/HTML/en/kwallet/edit2.png @@ -176,7 +181,6 @@ share/icons/hicolor/128x128/apps/kwalletmanager.png share/icons/hicolor/128x128/apps/kwalletmanager2.png share/icons/hicolor/128x128/apps/kwikdisk.png share/icons/hicolor/128x128/apps/superkaramba.png -share/icons/hicolor/16x16/apps/kcalc.png share/icons/hicolor/16x16/apps/kdf.png share/icons/hicolor/16x16/apps/kfloppy.png share/icons/hicolor/16x16/apps/kgpg.png @@ -186,14 +190,12 @@ share/icons/hicolor/16x16/apps/kwalletmanager2.png share/icons/hicolor/16x16/apps/kwikdisk.png share/icons/hicolor/16x16/apps/okteta.png share/icons/hicolor/16x16/apps/superkaramba.png -share/icons/hicolor/22x22/apps/kcalc.png share/icons/hicolor/22x22/apps/kdf.png share/icons/hicolor/22x22/apps/kfloppy.png share/icons/hicolor/22x22/apps/kgpg.png share/icons/hicolor/22x22/apps/kwalletmanager.png share/icons/hicolor/22x22/apps/kwikdisk.png share/icons/hicolor/22x22/apps/superkaramba.png -share/icons/hicolor/32x32/apps/kcalc.png share/icons/hicolor/32x32/apps/kdf.png share/icons/hicolor/32x32/apps/kfloppy.png share/icons/hicolor/32x32/apps/kgpg.png @@ -203,7 +205,6 @@ share/icons/hicolor/32x32/apps/kwalletmanager2.png share/icons/hicolor/32x32/apps/kwikdisk.png share/icons/hicolor/32x32/apps/okteta.png share/icons/hicolor/32x32/apps/superkaramba.png -share/icons/hicolor/48x48/apps/kcalc.png share/icons/hicolor/48x48/apps/kdf.png share/icons/hicolor/48x48/apps/kfloppy.png share/icons/hicolor/48x48/apps/kgpg.png @@ -213,26 +214,28 @@ share/icons/hicolor/48x48/apps/kwalletmanager2.png share/icons/hicolor/48x48/apps/kwikdisk.png share/icons/hicolor/48x48/apps/okteta.png share/icons/hicolor/48x48/apps/superkaramba.png -share/icons/hicolor/64x64/apps/kcalc.png share/icons/hicolor/64x64/apps/kdf.png share/icons/hicolor/64x64/apps/kfloppy.png share/icons/hicolor/64x64/apps/kwalletmanager.png share/icons/hicolor/64x64/apps/kwalletmanager2.png share/icons/hicolor/64x64/apps/kwikdisk.png share/icons/hicolor/64x64/apps/superkaramba.png -share/icons/hicolor/scalable/apps/kcalc.svgz share/icons/hicolor/scalable/apps/superkaramba.svgz share/icons/oxygen/16x16/apps/kcmdf.png share/icons/oxygen/22x22/apps/kcmdf.png share/icons/oxygen/32x32/apps/kcmdf.png +share/kde4/services/ServiceMenus/ark_addtoservicemenu.desktop +share/kde4/services/ServiceMenus/ark_servicemenu.desktop share/kde4/services/ServiceMenus/encryptfile.desktop share/kde4/services/ServiceMenus/encryptfolder.desktop share/kde4/services/ServiceMenus/floppy_format.desktop +share/kde4/services/ServiceMenus/viewdecrypted.desktop share/kde4/services/ark_part.desktop share/kde4/services/kbytearrayedit.desktop share/kde4/services/kcmdf.desktop -share/kde4/services/kerfuffle_bk.desktop +share/kde4/services/kerfuffle_7zip.desktop share/kde4/services/kerfuffle_libarchive.desktop +share/kde4/services/kerfuffle_libgz.desktop share/kde4/services/kerfuffle_libzip.desktop share/kde4/services/kerfuffle_rar.desktop share/kde4/services/kwalletconfig.desktop @@ -241,33 +244,6 @@ share/kde4/services/oktetapart.desktop share/kde4/services/plasma-package-superkaramba.desktop share/kde4/services/plasma-scriptengine-superkaramba.desktop share/kde4/servicetypes/kerfufflePlugin.desktop -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services/ServiceMenus -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/oxygen/32x32/apps -@dirrmtry share/icons/oxygen/32x32 -@dirrmtry share/icons/oxygen/22x22/apps -@dirrmtry share/icons/oxygen/22x22 -@dirrmtry share/icons/oxygen/16x16/apps -@dirrmtry share/icons/oxygen/16x16 -@dirrmtry share/icons/oxygen -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons @dirrm share/doc/HTML/en/superkaramba @dirrm share/doc/HTML/en/okteta @dirrm share/doc/HTML/en/kwallet @@ -279,13 +255,6 @@ share/kde4/servicetypes/kerfufflePlugin.desktop @dirrm share/doc/HTML/en/kcharselect @dirrm share/doc/HTML/en/kcalc @dirrm share/doc/HTML/en/ark -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 -@dirrmtry share/config.kcfg -@dirrmtry share/config -@dirrmtry share/autostart @dirrm share/apps/sweeper @dirrm share/apps/superkaramba @dirrm share/apps/oktetapart @@ -316,11 +285,5 @@ share/kde4/servicetypes/kerfufflePlugin.desktop @dirrm share/apps/kgpg @dirrm share/apps/kdf/pics @dirrm share/apps/kdf -@dirrmtry share/apps/kconf_update -@dirrmtry share/apps/kcharselect @dirrm share/apps/kcalc @dirrm share/apps/ark -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/kde4 diff --git a/misc/Makefile b/misc/Makefile index 429308812089..3da3a0ed81ea 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -243,6 +243,7 @@ SUBDIR += kde3-i18n-zu SUBDIR += kde4-l10n SUBDIR += kde4-l10n-bg + SUBDIR += kde4-l10n-bn_IN SUBDIR += kde4-l10n-ca SUBDIR += kde4-l10n-cs SUBDIR += kde4-l10n-csb @@ -256,24 +257,31 @@ SUBDIR += kde4-l10n-fy SUBDIR += kde4-l10n-ga SUBDIR += kde4-l10n-gl + SUBDIR += kde4-l10n-gu SUBDIR += kde4-l10n-hi SUBDIR += kde4-l10n-it + SUBDIR += kde4-l10n-is SUBDIR += kde4-l10n-kk SUBDIR += kde4-l10n-km + SUBDIR += kde4-l10n-kn SUBDIR += kde4-l10n-ku SUBDIR += kde4-l10n-lt SUBDIR += kde4-l10n-lv + SUBDIR += kde4-l10n-mai SUBDIR += kde4-l10n-mk SUBDIR += kde4-l10n-ml + SUBDIR += kde4-l10n-mr SUBDIR += kde4-l10n-nb SUBDIR += kde4-l10n-nds SUBDIR += kde4-l10n-nl SUBDIR += kde4-l10n-nn SUBDIR += kde4-l10n-pa + SUBDIR += kde4-l10n-ro SUBDIR += kde4-l10n-sl SUBDIR += kde4-l10n-sr SUBDIR += kde4-l10n-sv SUBDIR += kde4-l10n-ta + SUBDIR += kde4-l10n-tg SUBDIR += kde4-l10n-th SUBDIR += kde4-l10n-tr SUBDIR += kde4-l10n-wa diff --git a/misc/kde4-l10n-bg/distinfo b/misc/kde4-l10n-bg/distinfo index b8ede64bf07f..5ab5aac533eb 100644 --- a/misc/kde4-l10n-bg/distinfo +++ b/misc/kde4-l10n-bg/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-bg-4.1.4.tar.bz2) = 5f5b1effdd9b8f0a6c1a4ab59b739f0e -SHA256 (KDE/kde-l10n/kde-l10n-bg-4.1.4.tar.bz2) = 4567684d40a7582815dcd97cfe2d1e35d9bf3a054bf8b0224dd09cc2b781103d -SIZE (KDE/kde-l10n/kde-l10n-bg-4.1.4.tar.bz2) = 1627084 +MD5 (KDE/kde-l10n/kde-l10n-bg-4.2.0.tar.bz2) = fc201d9b7d85b84ed02d049309d50ec7 +SHA256 (KDE/kde-l10n/kde-l10n-bg-4.2.0.tar.bz2) = db0c8b29b8577b42e0bc1c3d27d577b45930b33a391cd2774f0e7164a0277891 +SIZE (KDE/kde-l10n/kde-l10n-bg-4.2.0.tar.bz2) = 1722388 diff --git a/misc/kde4-l10n-bg/pkg-plist b/misc/kde4-l10n-bg/pkg-plist index 9460f6207a68..945cf89354e8 100644 --- a/misc/kde4-l10n-bg/pkg-plist +++ b/misc/kde4-l10n-bg/pkg-plist @@ -25,6 +25,7 @@ share/locale/bg/LC_MESSAGES/kaddressbook.mo share/locale/bg/LC_MESSAGES/kalarm.mo share/locale/bg/LC_MESSAGES/kalgebra.mo share/locale/bg/LC_MESSAGES/kalzium.mo +share/locale/bg/LC_MESSAGES/kalzium_qt.mo share/locale/bg/LC_MESSAGES/kanagram.mo share/locale/bg/LC_MESSAGES/kappfinder.mo share/locale/bg/LC_MESSAGES/kate.mo @@ -35,10 +36,10 @@ share/locale/bg/LC_MESSAGES/kblackbox.mo share/locale/bg/LC_MESSAGES/kblankscrn.mo share/locale/bg/LC_MESSAGES/kbounce.mo share/locale/bg/LC_MESSAGES/kbruch.mo -share/locale/bg/LC_MESSAGES/kbstateapplet.mo share/locale/bg/LC_MESSAGES/kcalc.mo share/locale/bg/LC_MESSAGES/kcharselect.mo share/locale/bg/LC_MESSAGES/kcm_autostart.mo +share/locale/bg/LC_MESSAGES/kcm_emoticons.mo share/locale/bg/LC_MESSAGES/kcm_krfb.mo share/locale/bg/LC_MESSAGES/kcm_kwindesktop.mo share/locale/bg/LC_MESSAGES/kcmaccess.mo @@ -87,7 +88,6 @@ share/locale/bg/LC_MESSAGES/kcmsmartcard.mo share/locale/bg/LC_MESSAGES/kcmsmserver.mo share/locale/bg/LC_MESSAGES/kcmsolidproc.mo share/locale/bg/LC_MESSAGES/kcmstyle.mo -share/locale/bg/LC_MESSAGES/kcmtaskbar.mo share/locale/bg/LC_MESSAGES/kcmusb.mo share/locale/bg/LC_MESSAGES/kcmview1394.mo share/locale/bg/LC_MESSAGES/kcmxinerama.mo @@ -156,8 +156,10 @@ share/locale/bg/LC_MESSAGES/kimagemapeditor.mo share/locale/bg/LC_MESSAGES/kinetd.mo share/locale/bg/LC_MESSAGES/kinfocenter.mo share/locale/bg/LC_MESSAGES/kio4.mo +share/locale/bg/LC_MESSAGES/kio_applications.mo share/locale/bg/LC_MESSAGES/kio_archive.mo share/locale/bg/LC_MESSAGES/kio_audiocd.mo +share/locale/bg/LC_MESSAGES/kio_bookmarks.mo share/locale/bg/LC_MESSAGES/kio_finger.mo share/locale/bg/LC_MESSAGES/kio_fish.mo share/locale/bg/LC_MESSAGES/kio_floppy.mo @@ -172,7 +174,6 @@ share/locale/bg/LC_MESSAGES/kio_nfs.mo share/locale/bg/LC_MESSAGES/kio_nntp.mo share/locale/bg/LC_MESSAGES/kio_pop3.mo share/locale/bg/LC_MESSAGES/kio_remote.mo -share/locale/bg/LC_MESSAGES/kio_settings.mo share/locale/bg/LC_MESSAGES/kio_sftp.mo share/locale/bg/LC_MESSAGES/kio_sieve.mo share/locale/bg/LC_MESSAGES/kio_smb.mo @@ -227,7 +228,6 @@ share/locale/bg/LC_MESSAGES/korn.mo share/locale/bg/LC_MESSAGES/kpackage.mo share/locale/bg/LC_MESSAGES/kpartsaver.mo share/locale/bg/LC_MESSAGES/kpat.mo -share/locale/bg/LC_MESSAGES/kpercentage.mo share/locale/bg/LC_MESSAGES/kpilot.mo share/locale/bg/LC_MESSAGES/kppp.mo share/locale/bg/LC_MESSAGES/kppplogview.mo @@ -247,13 +247,6 @@ share/locale/bg/LC_MESSAGES/kres_xmlrpc.mo share/locale/bg/LC_MESSAGES/kreversi.mo share/locale/bg/LC_MESSAGES/krfb.mo share/locale/bg/LC_MESSAGES/kruler.mo -share/locale/bg/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/bg/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/bg/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/bg/LC_MESSAGES/krunner_sessions.mo -share/locale/bg/LC_MESSAGES/krunner_shellrunner.mo -share/locale/bg/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/bg/LC_MESSAGES/krunner_xesam.mo share/locale/bg/LC_MESSAGES/ksame.mo share/locale/bg/LC_MESSAGES/ksayit.mo share/locale/bg/LC_MESSAGES/kscd.mo @@ -279,7 +272,6 @@ share/locale/bg/LC_MESSAGES/ktexteditor_plugins.mo share/locale/bg/LC_MESSAGES/kthememanager.mo share/locale/bg/LC_MESSAGES/ktimer.mo share/locale/bg/LC_MESSAGES/ktimetracker.mo -share/locale/bg/LC_MESSAGES/ktnef.mo share/locale/bg/LC_MESSAGES/ktouch.mo share/locale/bg/LC_MESSAGES/kttsd.mo share/locale/bg/LC_MESSAGES/ktuberling.mo @@ -341,14 +333,22 @@ share/locale/bg/LC_MESSAGES/plasma_applet_binaryclock.mo share/locale/bg/LC_MESSAGES/plasma_applet_calculator.mo share/locale/bg/LC_MESSAGES/plasma_applet_clock.mo share/locale/bg/LC_MESSAGES/plasma_applet_desktop.mo +share/locale/bg/LC_MESSAGES/plasma_applet_devicenotifier.mo share/locale/bg/LC_MESSAGES/plasma_applet_dig_clock.mo share/locale/bg/LC_MESSAGES/plasma_applet_folderview.mo -share/locale/bg/LC_MESSAGES/plasma_applet_knewsticker.mo +share/locale/bg/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/bg/LC_MESSAGES/plasma_applet_panel.mo +share/locale/bg/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/bg/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/bg/LC_MESSAGES/plasma_applet_tasks.mo share/locale/bg/LC_MESSAGES/plasma_applet_trash.mo share/locale/bg/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/bg/LC_MESSAGES/plasma_engine_dict.mo +share/locale/bg/LC_MESSAGES/plasma_engine_rss.mo +share/locale/bg/LC_MESSAGES/plasma_runner_locations.mo +share/locale/bg/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/bg/LC_MESSAGES/plasma_runner_shell.mo +share/locale/bg/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/bg/LC_MESSAGES/plasma_wallpaper_color.mo share/locale/bg/LC_MESSAGES/plasmapkg.mo share/locale/bg/LC_MESSAGES/plasmoidviewer.mo share/locale/bg/LC_MESSAGES/soliduiserver.mo diff --git a/misc/kde4-l10n-bn_IN/Makefile b/misc/kde4-l10n-bn_IN/Makefile new file mode 100644 index 000000000000..9b9cc8969502 --- /dev/null +++ b/misc/kde4-l10n-bn_IN/Makefile @@ -0,0 +1,21 @@ +# New ports collection makefile for: misc/kde4-l10n-bn_IN +# Date created: 2009-01-25 +# Whom: Max Brazhnikov <makc@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= kde-l10n +PORTVERSION= ${KDE4_VERSION} +CATEGORIES= misc kde + +MAINTAINER= kde@FreeBSD.org +COMMENT= Bengali (India) messages and documentation for KDE4 + +KDE4_L10N= bn_IN + +post-extract: + ${MKDIR} ${WRKSRC}/build + +.include "${.CURDIR}/../../misc/kde4-l10n/files/bsd.l10n.mk" +.include <bsd.port.mk> diff --git a/misc/kde4-l10n-bn_IN/distinfo b/misc/kde4-l10n-bn_IN/distinfo new file mode 100644 index 000000000000..a7dc23d7036a --- /dev/null +++ b/misc/kde4-l10n-bn_IN/distinfo @@ -0,0 +1,3 @@ +MD5 (KDE/kde-l10n/kde-l10n-bn_IN-4.2.0.tar.bz2) = ede59c3abee9c5249a138fc7607d47ed +SHA256 (KDE/kde-l10n/kde-l10n-bn_IN-4.2.0.tar.bz2) = af7048d095ee347ae799a21fc52498cfba79e3b2bce3a603d1f9853aabf7b1bb +SIZE (KDE/kde-l10n/kde-l10n-bn_IN-4.2.0.tar.bz2) = 296380 diff --git a/misc/kde4-l10n-bn_IN/pkg-descr b/misc/kde4-l10n-bn_IN/pkg-descr new file mode 100644 index 000000000000..3073b1096b79 --- /dev/null +++ b/misc/kde4-l10n-bn_IN/pkg-descr @@ -0,0 +1,3 @@ +Localized messages and documentation for KDE4. + +WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-bn_IN/pkg-plist b/misc/kde4-l10n-bn_IN/pkg-plist new file mode 100644 index 000000000000..2555a562b005 --- /dev/null +++ b/misc/kde4-l10n-bn_IN/pkg-plist @@ -0,0 +1,188 @@ +share/locale/bn_IN/LC_MESSAGES/audiorename_plugin.mo +share/locale/bn_IN/LC_MESSAGES/display.mo +share/locale/bn_IN/LC_MESSAGES/dolphin.mo +share/locale/bn_IN/LC_MESSAGES/drkonqi.mo +share/locale/bn_IN/LC_MESSAGES/filetypes.mo +share/locale/bn_IN/LC_MESSAGES/htmlsearch.mo +share/locale/bn_IN/LC_MESSAGES/imagerename_plugin.mo +share/locale/bn_IN/LC_MESSAGES/kaccess.mo +share/locale/bn_IN/LC_MESSAGES/kappfinder.mo +share/locale/bn_IN/LC_MESSAGES/kblankscrn.mo +share/locale/bn_IN/LC_MESSAGES/kcm_autostart.mo +share/locale/bn_IN/LC_MESSAGES/kcm_desktopthemedetails.mo +share/locale/bn_IN/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/bn_IN/LC_MESSAGES/kcm_memory.mo +share/locale/bn_IN/LC_MESSAGES/kcm_partition.mo +share/locale/bn_IN/LC_MESSAGES/kcm_pci.mo +share/locale/bn_IN/LC_MESSAGES/kcm_phonon.mo +share/locale/bn_IN/LC_MESSAGES/kcm_phononxine.mo +share/locale/bn_IN/LC_MESSAGES/kcm_solid.mo +share/locale/bn_IN/LC_MESSAGES/kcm_standard_actions.mo +share/locale/bn_IN/LC_MESSAGES/kcmaccess.mo +share/locale/bn_IN/LC_MESSAGES/kcmbackground.mo +share/locale/bn_IN/LC_MESSAGES/kcmbell.mo +share/locale/bn_IN/LC_MESSAGES/kcmcgi.mo +share/locale/bn_IN/LC_MESSAGES/kcmcolors.mo +share/locale/bn_IN/LC_MESSAGES/kcmhtmlsearch.mo +share/locale/bn_IN/LC_MESSAGES/kcmicons.mo +share/locale/bn_IN/LC_MESSAGES/kcminfo.mo +share/locale/bn_IN/LC_MESSAGES/kcminit.mo +share/locale/bn_IN/LC_MESSAGES/kcmioslaveinfo.mo +share/locale/bn_IN/LC_MESSAGES/kcmkclock.mo +share/locale/bn_IN/LC_MESSAGES/kcmkded.mo +share/locale/bn_IN/LC_MESSAGES/kcmkdnssd.mo +share/locale/bn_IN/LC_MESSAGES/kcmkeyboard.mo +share/locale/bn_IN/LC_MESSAGES/kcmkeys.mo +share/locale/bn_IN/LC_MESSAGES/kcmkio.mo +share/locale/bn_IN/LC_MESSAGES/kcmkonq.mo +share/locale/bn_IN/LC_MESSAGES/kcmkonqhtml.mo +share/locale/bn_IN/LC_MESSAGES/kcmkwindecoration.mo +share/locale/bn_IN/LC_MESSAGES/kcmkwinrules.mo +share/locale/bn_IN/LC_MESSAGES/kcmkwm.mo +share/locale/bn_IN/LC_MESSAGES/kcmlocale.mo +share/locale/bn_IN/LC_MESSAGES/kcmnic.mo +share/locale/bn_IN/LC_MESSAGES/kcmnotify.mo +share/locale/bn_IN/LC_MESSAGES/kcmsamba.mo +share/locale/bn_IN/LC_MESSAGES/kcmscreensaver.mo +share/locale/bn_IN/LC_MESSAGES/kcmshell.mo +share/locale/bn_IN/LC_MESSAGES/kcmsmartcard.mo +share/locale/bn_IN/LC_MESSAGES/kcmsmserver.mo +share/locale/bn_IN/LC_MESSAGES/kcmsolidproc.mo +share/locale/bn_IN/LC_MESSAGES/kcmstyle.mo +share/locale/bn_IN/LC_MESSAGES/kcmusb.mo +share/locale/bn_IN/LC_MESSAGES/kcmview1394.mo +share/locale/bn_IN/LC_MESSAGES/kcmxinerama.mo +share/locale/bn_IN/LC_MESSAGES/kdebugdialog.mo +share/locale/bn_IN/LC_MESSAGES/kded_phononserver.mo +share/locale/bn_IN/LC_MESSAGES/kdelibs4.mo +share/locale/bn_IN/LC_MESSAGES/kdepasswd.mo +share/locale/bn_IN/LC_MESSAGES/kdesu.mo +share/locale/bn_IN/LC_MESSAGES/kdesud.mo +share/locale/bn_IN/LC_MESSAGES/kdialog.mo +share/locale/bn_IN/LC_MESSAGES/kdmconfig.mo +share/locale/bn_IN/LC_MESSAGES/kdmgreet.mo +share/locale/bn_IN/LC_MESSAGES/keditbookmarks.mo +share/locale/bn_IN/LC_MESSAGES/kfile.mo +share/locale/bn_IN/LC_MESSAGES/kfindpart.mo +share/locale/bn_IN/LC_MESSAGES/kfmclient.mo +share/locale/bn_IN/LC_MESSAGES/kfontinst.mo +share/locale/bn_IN/LC_MESSAGES/kgreet_classic.mo +share/locale/bn_IN/LC_MESSAGES/kgreet_generic.mo +share/locale/bn_IN/LC_MESSAGES/kgreet_winbind.mo +share/locale/bn_IN/LC_MESSAGES/khelpcenter.mo +share/locale/bn_IN/LC_MESSAGES/khotkeys.mo +share/locale/bn_IN/LC_MESSAGES/khotnewstuff.mo +share/locale/bn_IN/LC_MESSAGES/khtmlkttsd.mo +share/locale/bn_IN/LC_MESSAGES/kiconfinder.mo +share/locale/bn_IN/LC_MESSAGES/kinfocenter.mo +share/locale/bn_IN/LC_MESSAGES/kio_applications.mo +share/locale/bn_IN/LC_MESSAGES/kio_archive.mo +share/locale/bn_IN/LC_MESSAGES/kio_bookmarks.mo +share/locale/bn_IN/LC_MESSAGES/kio_finger.mo +share/locale/bn_IN/LC_MESSAGES/kio_fish.mo +share/locale/bn_IN/LC_MESSAGES/kio_floppy.mo +share/locale/bn_IN/LC_MESSAGES/kio_man.mo +share/locale/bn_IN/LC_MESSAGES/kio_nepomuksearch.mo +share/locale/bn_IN/LC_MESSAGES/kio_nfs.mo +share/locale/bn_IN/LC_MESSAGES/kio_remote.mo +share/locale/bn_IN/LC_MESSAGES/kio_sftp.mo +share/locale/bn_IN/LC_MESSAGES/kio_smb.mo +share/locale/bn_IN/LC_MESSAGES/kio_thumbnail.mo +share/locale/bn_IN/LC_MESSAGES/kio_trash.mo +share/locale/bn_IN/LC_MESSAGES/kioclient.mo +share/locale/bn_IN/LC_MESSAGES/kioexec.mo +share/locale/bn_IN/LC_MESSAGES/klipper.mo +share/locale/bn_IN/LC_MESSAGES/kmenuedit.mo +share/locale/bn_IN/LC_MESSAGES/kmimetypefinder.mo +share/locale/bn_IN/LC_MESSAGES/knetattach.mo +share/locale/bn_IN/LC_MESSAGES/knotify4.mo +share/locale/bn_IN/LC_MESSAGES/konqueror.mo +share/locale/bn_IN/LC_MESSAGES/konsole.mo +share/locale/bn_IN/LC_MESSAGES/kpasswdserver.mo +share/locale/bn_IN/LC_MESSAGES/kquitapp.mo +share/locale/bn_IN/LC_MESSAGES/krandr.mo +share/locale/bn_IN/LC_MESSAGES/krdb.mo +share/locale/bn_IN/LC_MESSAGES/kreadconfig.mo +share/locale/bn_IN/LC_MESSAGES/krunner.mo +share/locale/bn_IN/LC_MESSAGES/kscreensaver.mo +share/locale/bn_IN/LC_MESSAGES/kshorturifilter.mo +share/locale/bn_IN/LC_MESSAGES/ksmserver.mo +share/locale/bn_IN/LC_MESSAGES/ksplashthemes.mo +share/locale/bn_IN/LC_MESSAGES/kstart.mo +share/locale/bn_IN/LC_MESSAGES/kstyle_config.mo +share/locale/bn_IN/LC_MESSAGES/kstyle_keramik_config.mo +share/locale/bn_IN/LC_MESSAGES/ksysguard.mo +share/locale/bn_IN/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/bn_IN/LC_MESSAGES/ksystraycmd.mo +share/locale/bn_IN/LC_MESSAGES/kthememanager.mo +share/locale/bn_IN/LC_MESSAGES/ktraderclient.mo +share/locale/bn_IN/LC_MESSAGES/kuiserver.mo +share/locale/bn_IN/LC_MESSAGES/kurifilter.mo +share/locale/bn_IN/LC_MESSAGES/kwalletd.mo +share/locale/bn_IN/LC_MESSAGES/kwin.mo +share/locale/bn_IN/LC_MESSAGES/kwin_clients.mo +share/locale/bn_IN/LC_MESSAGES/kwin_effects.mo +share/locale/bn_IN/LC_MESSAGES/kwin_lib.mo +share/locale/bn_IN/LC_MESSAGES/kwinstartmenu.mo +share/locale/bn_IN/LC_MESSAGES/kwrite.mo +share/locale/bn_IN/LC_MESSAGES/kwriteconfig.mo +share/locale/bn_IN/LC_MESSAGES/kxkb.mo +share/locale/bn_IN/LC_MESSAGES/libkonq.mo +share/locale/bn_IN/LC_MESSAGES/libkscreensaver.mo +share/locale/bn_IN/LC_MESSAGES/libkworkspace.mo +share/locale/bn_IN/LC_MESSAGES/libplasmaclock.mo +share/locale/bn_IN/LC_MESSAGES/libtaskmanager.mo +share/locale/bn_IN/LC_MESSAGES/nepomuk.mo +share/locale/bn_IN/LC_MESSAGES/nepomuksearch.mo +share/locale/bn_IN/LC_MESSAGES/nsplugin.mo +share/locale/bn_IN/LC_MESSAGES/phonon_kde.mo +share/locale/bn_IN/LC_MESSAGES/plasma-overlay.mo +share/locale/bn_IN/LC_MESSAGES/plasma-shells-common.mo +share/locale/bn_IN/LC_MESSAGES/plasma.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_battery.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_clock.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_desktop.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_devicenotifier.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_dig_clock.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_folderview.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_pager.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_panel.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_systemtray.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_trash.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/bn_IN/LC_MESSAGES/plasma_appletscript_qedje.mo +share/locale/bn_IN/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo +share/locale/bn_IN/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/bn_IN/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/bn_IN/LC_MESSAGES/plasma_engine_rss.mo +share/locale/bn_IN/LC_MESSAGES/plasma_runner_locations.mo +share/locale/bn_IN/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/bn_IN/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/bn_IN/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/bn_IN/LC_MESSAGES/plasma_runner_shell.mo +share/locale/bn_IN/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/bn_IN/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/bn_IN/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/bn_IN/LC_MESSAGES/plasma_wallpaper_image.mo +share/locale/bn_IN/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/bn_IN/LC_MESSAGES/plasmapkg.mo +share/locale/bn_IN/LC_MESSAGES/plasmoidviewer.mo +share/locale/bn_IN/LC_MESSAGES/powerdevil.mo +share/locale/bn_IN/LC_MESSAGES/processcore.mo +share/locale/bn_IN/LC_MESSAGES/processui.mo +share/locale/bn_IN/LC_MESSAGES/solid-bluetooth.mo +share/locale/bn_IN/LC_MESSAGES/solid-hardware.mo +share/locale/bn_IN/LC_MESSAGES/solid-network.mo +share/locale/bn_IN/LC_MESSAGES/solid-powermanagement.mo +share/locale/bn_IN/LC_MESSAGES/solidcontrol.mo +share/locale/bn_IN/LC_MESSAGES/soliduiserver.mo +share/locale/bn_IN/LC_MESSAGES/systemsettings.mo +share/locale/bn_IN/LC_MESSAGES/timezones4.mo +share/locale/bn_IN/LC_MESSAGES/useraccount.mo +share/locale/bn_IN/entry.desktop +@dirrm share/locale/bn_IN/LC_MESSAGES +@dirrm share/locale/bn_IN diff --git a/misc/kde4-l10n-ca/Makefile b/misc/kde4-l10n-ca/Makefile index 97091585ffd1..86ac3c8730a2 100644 --- a/misc/kde4-l10n-ca/Makefile +++ b/misc/kde4-l10n-ca/Makefile @@ -14,6 +14,9 @@ COMMENT= Catalan messages and documentation for KDE4 KDE4_L10N= ca +MANLANG= ${KDE4_L10N} +.include <${.CURDIR}/Makefile.man> + post-extract: ${MKDIR} ${WRKSRC}/build diff --git a/misc/kde4-l10n-ca/distinfo b/misc/kde4-l10n-ca/distinfo index fbb2d7663ac1..46724438663a 100644 --- a/misc/kde4-l10n-ca/distinfo +++ b/misc/kde4-l10n-ca/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-ca-4.1.4.tar.bz2) = ebf90b925b2bf1a0b6246e800a3eaf09 -SHA256 (KDE/kde-l10n/kde-l10n-ca-4.1.4.tar.bz2) = b0af895fec9d76b9c7c70443d8ca516ce97ee741a9d7532835f619130e0c57a2 -SIZE (KDE/kde-l10n/kde-l10n-ca-4.1.4.tar.bz2) = 3636355 +MD5 (KDE/kde-l10n/kde-l10n-ca-4.2.0.tar.bz2) = 62b468adf048dde92abcea1cc8378ee0 +SHA256 (KDE/kde-l10n/kde-l10n-ca-4.2.0.tar.bz2) = faaee22d0e8257ad1ba4d42b09eba31992450c0d199cb88aade361fffb36f428 +SIZE (KDE/kde-l10n/kde-l10n-ca-4.2.0.tar.bz2) = 3754448 diff --git a/misc/kde4-l10n-ca/pkg-plist b/misc/kde4-l10n-ca/pkg-plist index 634b0391fa09..c6c925ab042e 100644 --- a/misc/kde4-l10n-ca/pkg-plist +++ b/misc/kde4-l10n-ca/pkg-plist @@ -204,9 +204,6 @@ share/doc/HTML/ca/kcontrol/spellchecking/index.docbook share/doc/HTML/ca/kcontrol/useragent/common share/doc/HTML/ca/kcontrol/useragent/index.cache.bz2 share/doc/HTML/ca/kcontrol/useragent/index.docbook -share/doc/HTML/ca/kcontrol/windowmanagement/common -share/doc/HTML/ca/kcontrol/windowmanagement/index.cache.bz2 -share/doc/HTML/ca/kcontrol/windowmanagement/index.docbook share/doc/HTML/ca/kcontrol/windowspecific/common share/doc/HTML/ca/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/ca/kcontrol/windowspecific/index.docbook @@ -384,47 +381,93 @@ share/doc/HTML/ca/kinfocenter/usb/index.docbook share/doc/HTML/ca/kinfocenter/xserver/common share/doc/HTML/ca/kinfocenter/xserver/index.cache.bz2 share/doc/HTML/ca/kinfocenter/xserver/index.docbook -share/doc/HTML/ca/kioslave/bzip.docbook -share/doc/HTML/ca/kioslave/bzip2.docbook -share/doc/HTML/ca/kioslave/cgi.docbook -share/doc/HTML/ca/kioslave/common -share/doc/HTML/ca/kioslave/data.docbook -share/doc/HTML/ca/kioslave/file.docbook -share/doc/HTML/ca/kioslave/finger.docbook -share/doc/HTML/ca/kioslave/fish.docbook -share/doc/HTML/ca/kioslave/floppy.docbook -share/doc/HTML/ca/kioslave/ftp.docbook -share/doc/HTML/ca/kioslave/gopher.docbook -share/doc/HTML/ca/kioslave/gzip.docbook -share/doc/HTML/ca/kioslave/help.docbook -share/doc/HTML/ca/kioslave/http.docbook -share/doc/HTML/ca/kioslave/https.docbook -share/doc/HTML/ca/kioslave/imap.docbook -share/doc/HTML/ca/kioslave/imaps.docbook -share/doc/HTML/ca/kioslave/index.cache.bz2 -share/doc/HTML/ca/kioslave/index.docbook -share/doc/HTML/ca/kioslave/info.docbook -share/doc/HTML/ca/kioslave/lan.docbook -share/doc/HTML/ca/kioslave/ldap.docbook -share/doc/HTML/ca/kioslave/mac.docbook -share/doc/HTML/ca/kioslave/mailto.docbook -share/doc/HTML/ca/kioslave/man.docbook -share/doc/HTML/ca/kioslave/mrml.docbook -share/doc/HTML/ca/kioslave/news.docbook -share/doc/HTML/ca/kioslave/nfs.docbook -share/doc/HTML/ca/kioslave/nntp.docbook -share/doc/HTML/ca/kioslave/pop3.docbook -share/doc/HTML/ca/kioslave/pop3s.docbook -share/doc/HTML/ca/kioslave/rlan.docbook -share/doc/HTML/ca/kioslave/rlogin.docbook -share/doc/HTML/ca/kioslave/sftp.docbook -share/doc/HTML/ca/kioslave/smb.docbook -share/doc/HTML/ca/kioslave/smtp.docbook -share/doc/HTML/ca/kioslave/tar.docbook -share/doc/HTML/ca/kioslave/telnet.docbook -share/doc/HTML/ca/kioslave/thumbnail.docbook -share/doc/HTML/ca/kioslave/webdav.docbook -share/doc/HTML/ca/kioslave/webdavs.docbook +share/doc/HTML/ca/kioslave/audiocd/common +share/doc/HTML/ca/kioslave/audiocd/index.cache.bz2 +share/doc/HTML/ca/kioslave/audiocd/index.docbook +share/doc/HTML/ca/kioslave/bzip2/common +share/doc/HTML/ca/kioslave/bzip2/index.cache.bz2 +share/doc/HTML/ca/kioslave/bzip2/index.docbook +share/doc/HTML/ca/kioslave/cgi/common +share/doc/HTML/ca/kioslave/cgi/index.cache.bz2 +share/doc/HTML/ca/kioslave/cgi/index.docbook +share/doc/HTML/ca/kioslave/data/common +share/doc/HTML/ca/kioslave/data/index.cache.bz2 +share/doc/HTML/ca/kioslave/data/index.docbook +share/doc/HTML/ca/kioslave/file/common +share/doc/HTML/ca/kioslave/file/index.cache.bz2 +share/doc/HTML/ca/kioslave/file/index.docbook +share/doc/HTML/ca/kioslave/finger/common +share/doc/HTML/ca/kioslave/finger/index.cache.bz2 +share/doc/HTML/ca/kioslave/finger/index.docbook +share/doc/HTML/ca/kioslave/fish/common +share/doc/HTML/ca/kioslave/fish/index.cache.bz2 +share/doc/HTML/ca/kioslave/fish/index.docbook +share/doc/HTML/ca/kioslave/floppy/common +share/doc/HTML/ca/kioslave/floppy/index.cache.bz2 +share/doc/HTML/ca/kioslave/floppy/index.docbook +share/doc/HTML/ca/kioslave/ftp/common +share/doc/HTML/ca/kioslave/ftp/index.cache.bz2 +share/doc/HTML/ca/kioslave/ftp/index.docbook +share/doc/HTML/ca/kioslave/gzip/common +share/doc/HTML/ca/kioslave/gzip/index.cache.bz2 +share/doc/HTML/ca/kioslave/gzip/index.docbook +share/doc/HTML/ca/kioslave/help/common +share/doc/HTML/ca/kioslave/help/index.cache.bz2 +share/doc/HTML/ca/kioslave/help/index.docbook +share/doc/HTML/ca/kioslave/http/common +share/doc/HTML/ca/kioslave/http/index.cache.bz2 +share/doc/HTML/ca/kioslave/http/index.docbook +share/doc/HTML/ca/kioslave/imap/common +share/doc/HTML/ca/kioslave/imap/index.cache.bz2 +share/doc/HTML/ca/kioslave/imap/index.docbook +share/doc/HTML/ca/kioslave/info/common +share/doc/HTML/ca/kioslave/info/index.cache.bz2 +share/doc/HTML/ca/kioslave/info/index.docbook +share/doc/HTML/ca/kioslave/ldap/common +share/doc/HTML/ca/kioslave/ldap/index.cache.bz2 +share/doc/HTML/ca/kioslave/ldap/index.docbook +share/doc/HTML/ca/kioslave/mailto/common +share/doc/HTML/ca/kioslave/mailto/index.cache.bz2 +share/doc/HTML/ca/kioslave/mailto/index.docbook +share/doc/HTML/ca/kioslave/man/common +share/doc/HTML/ca/kioslave/man/index.cache.bz2 +share/doc/HTML/ca/kioslave/man/index.docbook +share/doc/HTML/ca/kioslave/news/common +share/doc/HTML/ca/kioslave/news/index.cache.bz2 +share/doc/HTML/ca/kioslave/news/index.docbook +share/doc/HTML/ca/kioslave/nfs/common +share/doc/HTML/ca/kioslave/nfs/index.cache.bz2 +share/doc/HTML/ca/kioslave/nfs/index.docbook +share/doc/HTML/ca/kioslave/nntp/common +share/doc/HTML/ca/kioslave/nntp/index.cache.bz2 +share/doc/HTML/ca/kioslave/nntp/index.docbook +share/doc/HTML/ca/kioslave/pop3/common +share/doc/HTML/ca/kioslave/pop3/index.cache.bz2 +share/doc/HTML/ca/kioslave/pop3/index.docbook +share/doc/HTML/ca/kioslave/rlogin/common +share/doc/HTML/ca/kioslave/rlogin/index.cache.bz2 +share/doc/HTML/ca/kioslave/rlogin/index.docbook +share/doc/HTML/ca/kioslave/sftp/common +share/doc/HTML/ca/kioslave/sftp/index.cache.bz2 +share/doc/HTML/ca/kioslave/sftp/index.docbook +share/doc/HTML/ca/kioslave/smb/common +share/doc/HTML/ca/kioslave/smb/index.cache.bz2 +share/doc/HTML/ca/kioslave/smb/index.docbook +share/doc/HTML/ca/kioslave/smtp/common +share/doc/HTML/ca/kioslave/smtp/index.cache.bz2 +share/doc/HTML/ca/kioslave/smtp/index.docbook +share/doc/HTML/ca/kioslave/tar/common +share/doc/HTML/ca/kioslave/tar/index.cache.bz2 +share/doc/HTML/ca/kioslave/tar/index.docbook +share/doc/HTML/ca/kioslave/telnet/common +share/doc/HTML/ca/kioslave/telnet/index.cache.bz2 +share/doc/HTML/ca/kioslave/telnet/index.docbook +share/doc/HTML/ca/kioslave/thumbnail/common +share/doc/HTML/ca/kioslave/thumbnail/index.cache.bz2 +share/doc/HTML/ca/kioslave/thumbnail/index.docbook +share/doc/HTML/ca/kioslave/webdav/common +share/doc/HTML/ca/kioslave/webdav/index.cache.bz2 +share/doc/HTML/ca/kioslave/webdav/index.docbook share/doc/HTML/ca/kleopatra/common share/doc/HTML/ca/kleopatra/index.cache.bz2 share/doc/HTML/ca/kleopatra/index.docbook @@ -463,9 +506,6 @@ share/doc/HTML/ca/kmouth/man-kmouth.1.docbook share/doc/HTML/ca/knetattach/common share/doc/HTML/ca/knetattach/index.cache.bz2 share/doc/HTML/ca/knetattach/index.docbook -share/doc/HTML/ca/knetworkconf/common -share/doc/HTML/ca/knetworkconf/index.cache.bz2 -share/doc/HTML/ca/knetworkconf/index.docbook share/doc/HTML/ca/kompare/common share/doc/HTML/ca/kompare/index.cache.bz2 share/doc/HTML/ca/kompare/index.docbook @@ -497,16 +537,6 @@ share/doc/HTML/ca/korganizer/plugins-chapter.docbook share/doc/HTML/ca/kpackage/common share/doc/HTML/ca/kpackage/index.cache.bz2 share/doc/HTML/ca/kpackage/index.docbook -share/doc/HTML/ca/kpercentage/commands.docbook -share/doc/HTML/ca/kpercentage/common -share/doc/HTML/ca/kpercentage/credits.docbook -share/doc/HTML/ca/kpercentage/devel.docbook -share/doc/HTML/ca/kpercentage/faq.docbook -share/doc/HTML/ca/kpercentage/index.cache.bz2 -share/doc/HTML/ca/kpercentage/index.docbook -share/doc/HTML/ca/kpercentage/install.docbook -share/doc/HTML/ca/kpercentage/introduction.docbook -share/doc/HTML/ca/kpercentage/using.docbook share/doc/HTML/ca/krdc/common share/doc/HTML/ca/krdc/index.cache.bz2 share/doc/HTML/ca/krdc/index.docbook @@ -525,9 +555,6 @@ share/doc/HTML/ca/kteatime/index.docbook share/doc/HTML/ca/ktimer/common share/doc/HTML/ca/ktimer/index.cache.bz2 share/doc/HTML/ca/ktimer/index.docbook -share/doc/HTML/ca/ktnef/common -share/doc/HTML/ca/ktnef/index.cache.bz2 -share/doc/HTML/ca/ktnef/index.docbook share/doc/HTML/ca/ktouch/common share/doc/HTML/ca/ktouch/index.cache.bz2 share/doc/HTML/ca/ktouch/index.docbook @@ -567,6 +594,7 @@ share/locale/ca/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ca/LC_MESSAGES/audiorename_plugin.mo share/locale/ca/LC_MESSAGES/blinken.mo +share/locale/ca/LC_MESSAGES/bomber.mo share/locale/ca/LC_MESSAGES/bovo.mo share/locale/ca/LC_MESSAGES/cervisia.mo share/locale/ca/LC_MESSAGES/cvsservice.mo @@ -581,6 +609,7 @@ share/locale/ca/LC_MESSAGES/imagerename_plugin.mo share/locale/ca/LC_MESSAGES/joystick.mo share/locale/ca/LC_MESSAGES/juk.mo share/locale/ca/LC_MESSAGES/kabc.mo +share/locale/ca/LC_MESSAGES/kabc_akonadi.mo share/locale/ca/LC_MESSAGES/kabc_dir.mo share/locale/ca/LC_MESSAGES/kabc_file.mo share/locale/ca/LC_MESSAGES/kabc_ldapkio.mo @@ -594,7 +623,9 @@ share/locale/ca/LC_MESSAGES/kaddressbook.mo share/locale/ca/LC_MESSAGES/kalarm.mo share/locale/ca/LC_MESSAGES/kalgebra.mo share/locale/ca/LC_MESSAGES/kalzium.mo +share/locale/ca/LC_MESSAGES/kalzium_qt.mo share/locale/ca/LC_MESSAGES/kanagram.mo +share/locale/ca/LC_MESSAGES/kapman.mo share/locale/ca/LC_MESSAGES/kappfinder.mo share/locale/ca/LC_MESSAGES/kapptemplate.mo share/locale/ca/LC_MESSAGES/kate.mo @@ -608,7 +639,6 @@ share/locale/ca/LC_MESSAGES/kateinsertcommand.mo share/locale/ca/LC_MESSAGES/katekjswrapper.mo share/locale/ca/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca/LC_MESSAGES/katemailfilesplugin.mo -share/locale/ca/LC_MESSAGES/katemake.mo share/locale/ca/LC_MESSAGES/kateopenheader.mo share/locale/ca/LC_MESSAGES/katepart4.mo share/locale/ca/LC_MESSAGES/katepybrowse.mo @@ -627,14 +657,14 @@ share/locale/ca/LC_MESSAGES/kblocks.mo share/locale/ca/LC_MESSAGES/kbounce.mo share/locale/ca/LC_MESSAGES/kbreakout.mo share/locale/ca/LC_MESSAGES/kbruch.mo -share/locale/ca/LC_MESSAGES/kbstateapplet.mo share/locale/ca/LC_MESSAGES/kbugbuster.mo share/locale/ca/LC_MESSAGES/kcachegrind.mo share/locale/ca/LC_MESSAGES/kcalc.mo share/locale/ca/LC_MESSAGES/kcertpart.mo share/locale/ca/LC_MESSAGES/kcharselect.mo -share/locale/ca/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/ca/LC_MESSAGES/kcm_akonadi.mo share/locale/ca/LC_MESSAGES/kcm_autostart.mo +share/locale/ca/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/ca/LC_MESSAGES/kcm_emoticons.mo share/locale/ca/LC_MESSAGES/kcm_krfb.mo share/locale/ca/LC_MESSAGES/kcm_kwindesktop.mo @@ -644,6 +674,7 @@ share/locale/ca/LC_MESSAGES/kcm_pci.mo share/locale/ca/LC_MESSAGES/kcm_phonon.mo share/locale/ca/LC_MESSAGES/kcm_phononxine.mo share/locale/ca/LC_MESSAGES/kcm_solid.mo +share/locale/ca/LC_MESSAGES/kcm_standard_actions.mo share/locale/ca/LC_MESSAGES/kcmaccess.mo share/locale/ca/LC_MESSAGES/kcmaudiocd.mo share/locale/ca/LC_MESSAGES/kcmbackground.mo @@ -693,7 +724,6 @@ share/locale/ca/LC_MESSAGES/kcmsmartcard.mo share/locale/ca/LC_MESSAGES/kcmsmserver.mo share/locale/ca/LC_MESSAGES/kcmsolidproc.mo share/locale/ca/LC_MESSAGES/kcmstyle.mo -share/locale/ca/LC_MESSAGES/kcmtaskbar.mo share/locale/ca/LC_MESSAGES/kcmusb.mo share/locale/ca/LC_MESSAGES/kcmview1394.mo share/locale/ca/LC_MESSAGES/kcmxinerama.mo @@ -701,7 +731,9 @@ share/locale/ca/LC_MESSAGES/kcolorchooser.mo share/locale/ca/LC_MESSAGES/kcron.mo share/locale/ca/LC_MESSAGES/kdat.mo share/locale/ca/LC_MESSAGES/kde-menu.mo +share/locale/ca/LC_MESSAGES/kdeasciiquarium.mo share/locale/ca/LC_MESSAGES/kdebugdialog.mo +share/locale/ca/LC_MESSAGES/kded_phononserver.mo share/locale/ca/LC_MESSAGES/kdelibs4.mo share/locale/ca/LC_MESSAGES/kdelibs_colors4.mo share/locale/ca/LC_MESSAGES/kdepasswd.mo @@ -712,6 +744,7 @@ share/locale/ca/LC_MESSAGES/kdessh.mo share/locale/ca/LC_MESSAGES/kdesu.mo share/locale/ca/LC_MESSAGES/kdesud.mo share/locale/ca/LC_MESSAGES/kdf.mo +share/locale/ca/LC_MESSAGES/kdgantt.mo share/locale/ca/LC_MESSAGES/kdgantt1.mo share/locale/ca/LC_MESSAGES/kdialog.mo share/locale/ca/LC_MESSAGES/kdiamond.mo @@ -761,12 +794,15 @@ share/locale/ca/LC_MESSAGES/khotnewstuff.mo share/locale/ca/LC_MESSAGES/khtmlkttsd.mo share/locale/ca/LC_MESSAGES/kiconfinder.mo share/locale/ca/LC_MESSAGES/kig.mo +share/locale/ca/LC_MESSAGES/killbots.mo share/locale/ca/LC_MESSAGES/kimagemapeditor.mo share/locale/ca/LC_MESSAGES/kinetd.mo share/locale/ca/LC_MESSAGES/kinfocenter.mo share/locale/ca/LC_MESSAGES/kio4.mo +share/locale/ca/LC_MESSAGES/kio_applications.mo share/locale/ca/LC_MESSAGES/kio_archive.mo share/locale/ca/LC_MESSAGES/kio_audiocd.mo +share/locale/ca/LC_MESSAGES/kio_bookmarks.mo share/locale/ca/LC_MESSAGES/kio_finger.mo share/locale/ca/LC_MESSAGES/kio_fish.mo share/locale/ca/LC_MESSAGES/kio_floppy.mo @@ -777,11 +813,11 @@ share/locale/ca/LC_MESSAGES/kio_jabberdisco.mo share/locale/ca/LC_MESSAGES/kio_ldap.mo share/locale/ca/LC_MESSAGES/kio_man.mo share/locale/ca/LC_MESSAGES/kio_mbox.mo +share/locale/ca/LC_MESSAGES/kio_nepomuksearch.mo share/locale/ca/LC_MESSAGES/kio_nfs.mo share/locale/ca/LC_MESSAGES/kio_nntp.mo share/locale/ca/LC_MESSAGES/kio_pop3.mo share/locale/ca/LC_MESSAGES/kio_remote.mo -share/locale/ca/LC_MESSAGES/kio_settings.mo share/locale/ca/LC_MESSAGES/kio_sftp.mo share/locale/ca/LC_MESSAGES/kio_sieve.mo share/locale/ca/LC_MESSAGES/kio_smb.mo @@ -844,7 +880,6 @@ share/locale/ca/LC_MESSAGES/kpackage.mo share/locale/ca/LC_MESSAGES/kpartsaver.mo share/locale/ca/LC_MESSAGES/kpasswdserver.mo share/locale/ca/LC_MESSAGES/kpat.mo -share/locale/ca/LC_MESSAGES/kpercentage.mo share/locale/ca/LC_MESSAGES/kpilot.mo share/locale/ca/LC_MESSAGES/kppp.mo share/locale/ca/LC_MESSAGES/kppplogview.mo @@ -868,20 +903,12 @@ share/locale/ca/LC_MESSAGES/kreversi.mo share/locale/ca/LC_MESSAGES/krfb.mo share/locale/ca/LC_MESSAGES/kruler.mo share/locale/ca/LC_MESSAGES/krunner.mo -share/locale/ca/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/ca/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/ca/LC_MESSAGES/krunner_contacts.mo -share/locale/ca/LC_MESSAGES/krunner_converterrunner.mo -share/locale/ca/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/ca/LC_MESSAGES/krunner_sessions.mo -share/locale/ca/LC_MESSAGES/krunner_shellrunner.mo -share/locale/ca/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/ca/LC_MESSAGES/krunner_xesam.mo share/locale/ca/LC_MESSAGES/ksame.mo share/locale/ca/LC_MESSAGES/ksaneplugin.mo share/locale/ca/LC_MESSAGES/ksayit.mo share/locale/ca/LC_MESSAGES/kscd.mo share/locale/ca/LC_MESSAGES/kscreensaver.mo +share/locale/ca/LC_MESSAGES/ksendemail.mo share/locale/ca/LC_MESSAGES/kshisen.mo share/locale/ca/LC_MESSAGES/kshorturifilter.mo share/locale/ca/LC_MESSAGES/ksirk.mo @@ -898,6 +925,7 @@ share/locale/ca/LC_MESSAGES/kstyle_keramik_config.mo share/locale/ca/LC_MESSAGES/kstyle_phase_config.mo share/locale/ca/LC_MESSAGES/ksudoku.mo share/locale/ca/LC_MESSAGES/ksysguard.mo +share/locale/ca/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ca/LC_MESSAGES/ksystemlog.mo share/locale/ca/LC_MESSAGES/ksystraycmd.mo share/locale/ca/LC_MESSAGES/ksysv.mo @@ -907,7 +935,6 @@ share/locale/ca/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/ca/LC_MESSAGES/kthememanager.mo share/locale/ca/LC_MESSAGES/ktimer.mo share/locale/ca/LC_MESSAGES/ktimetracker.mo -share/locale/ca/LC_MESSAGES/ktnef.mo share/locale/ca/LC_MESSAGES/ktouch.mo share/locale/ca/LC_MESSAGES/ktraderclient.mo share/locale/ca/LC_MESSAGES/kttsd.mo @@ -919,6 +946,7 @@ share/locale/ca/LC_MESSAGES/kuiserver.mo share/locale/ca/LC_MESSAGES/kuiviewer.mo share/locale/ca/LC_MESSAGES/kurifilter.mo share/locale/ca/LC_MESSAGES/kuser.mo +share/locale/ca/LC_MESSAGES/kwalletd.mo share/locale/ca/LC_MESSAGES/kwalletmanager.mo share/locale/ca/LC_MESSAGES/kwatchgnupg.mo share/locale/ca/LC_MESSAGES/kweather.mo @@ -965,10 +993,13 @@ share/locale/ca/LC_MESSAGES/libmailtransport.mo share/locale/ca/LC_MESSAGES/liboktetacore.mo share/locale/ca/LC_MESSAGES/libphonon.mo share/locale/ca/LC_MESSAGES/libplasma.mo +share/locale/ca/LC_MESSAGES/libplasmaclock.mo share/locale/ca/LC_MESSAGES/libtaskmanager.mo share/locale/ca/LC_MESSAGES/lskat.mo share/locale/ca/LC_MESSAGES/marble.mo +share/locale/ca/LC_MESSAGES/marble_qt.mo share/locale/ca/LC_MESSAGES/nepomuk.mo +share/locale/ca/LC_MESSAGES/nepomuksearch.mo share/locale/ca/LC_MESSAGES/nsplugin.mo share/locale/ca/LC_MESSAGES/okteta.mo share/locale/ca/LC_MESSAGES/oktetapart.mo @@ -978,6 +1009,7 @@ share/locale/ca/LC_MESSAGES/okular_comicbook.mo share/locale/ca/LC_MESSAGES/okular_djvu.mo share/locale/ca/LC_MESSAGES/okular_dvi.mo share/locale/ca/LC_MESSAGES/okular_epub.mo +share/locale/ca/LC_MESSAGES/okular_fax.mo share/locale/ca/LC_MESSAGES/okular_fictionbook.mo share/locale/ca/LC_MESSAGES/okular_ghostview.mo share/locale/ca/LC_MESSAGES/okular_kimgio.mo @@ -990,10 +1022,15 @@ share/locale/ca/LC_MESSAGES/parley.mo share/locale/ca/LC_MESSAGES/phonon-xine.mo share/locale/ca/LC_MESSAGES/phonon_gstreamer.mo share/locale/ca/LC_MESSAGES/phonon_kde.mo +share/locale/ca/LC_MESSAGES/plasma-overlay.mo +share/locale/ca/LC_MESSAGES/plasma-shells-common.mo share/locale/ca/LC_MESSAGES/plasma.mo share/locale/ca/LC_MESSAGES/plasma_applet_battery.mo +share/locale/ca/LC_MESSAGES/plasma_applet_bball.mo share/locale/ca/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/ca/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/ca/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/ca/LC_MESSAGES/plasma_applet_charselect.mo share/locale/ca/LC_MESSAGES/plasma_applet_clock.mo share/locale/ca/LC_MESSAGES/plasma_applet_comic.mo share/locale/ca/LC_MESSAGES/plasma_applet_desktop.mo @@ -1005,26 +1042,61 @@ share/locale/ca/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/ca/LC_MESSAGES/plasma_applet_folderview.mo share/locale/ca/LC_MESSAGES/plasma_applet_frame.mo share/locale/ca/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/ca/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/ca/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/ca/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ca/LC_MESSAGES/plasma_applet_katesession.mo share/locale/ca/LC_MESSAGES/plasma_applet_kget.mo -share/locale/ca/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/ca/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/ca/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/ca/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/ca/LC_MESSAGES/plasma_applet_life.mo share/locale/ca/LC_MESSAGES/plasma_applet_luna.mo +share/locale/ca/LC_MESSAGES/plasma_applet_news.mo share/locale/ca/LC_MESSAGES/plasma_applet_notes.mo share/locale/ca/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/ca/LC_MESSAGES/plasma_applet_pager.mo share/locale/ca/LC_MESSAGES/plasma_applet_panel.mo +share/locale/ca/LC_MESSAGES/plasma_applet_paste.mo +share/locale/ca/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/ca/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/ca/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/ca/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/ca/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/ca/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/ca/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/ca/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/ca/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/ca/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/ca/LC_MESSAGES/plasma_applet_timer.mo share/locale/ca/LC_MESSAGES/plasma_applet_trash.mo share/locale/ca/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/ca/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/ca/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/ca/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/ca/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/ca/LC_MESSAGES/plasma_engine_dict.mo +share/locale/ca/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/ca/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ca/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/ca/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ca/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/ca/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ca/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/ca/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ca/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/ca/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ca/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ca/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ca/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ca/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ca/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ca/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/ca/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/ca/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/ca/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ca/LC_MESSAGES/plasmapkg.mo share/locale/ca/LC_MESSAGES/plasmoidviewer.mo +share/locale/ca/LC_MESSAGES/powerdevil.mo share/locale/ca/LC_MESSAGES/printer-applet.mo share/locale/ca/LC_MESSAGES/processcore.mo share/locale/ca/LC_MESSAGES/processui.mo @@ -1036,10 +1108,12 @@ share/locale/ca/LC_MESSAGES/solidcontrol.mo share/locale/ca/LC_MESSAGES/soliduiserver.mo share/locale/ca/LC_MESSAGES/spy.mo share/locale/ca/LC_MESSAGES/step.mo +share/locale/ca/LC_MESSAGES/step_qt.mo share/locale/ca/LC_MESSAGES/strigila_diff.mo share/locale/ca/LC_MESSAGES/superkaramba.mo share/locale/ca/LC_MESSAGES/svgpart.mo share/locale/ca/LC_MESSAGES/sweeper.mo +share/locale/ca/LC_MESSAGES/system-config-printer-kde.mo share/locale/ca/LC_MESSAGES/systemsettings.mo share/locale/ca/LC_MESSAGES/timezones4.mo share/locale/ca/LC_MESSAGES/umbrello.mo @@ -1058,20 +1132,17 @@ share/locale/ca/entry.desktop @dirrm share/doc/HTML/ca/kuser @dirrm share/doc/HTML/ca/kttsd @dirrm share/doc/HTML/ca/ktouch -@dirrm share/doc/HTML/ca/ktnef @dirrm share/doc/HTML/ca/ktimer @dirrm share/doc/HTML/ca/kteatime @dirrm share/doc/HTML/ca/ksysv @dirrm share/doc/HTML/ca/ksysguard @dirrm share/doc/HTML/ca/krfb @dirrm share/doc/HTML/ca/krdc -@dirrm share/doc/HTML/ca/kpercentage @dirrm share/doc/HTML/ca/kpackage @dirrm share/doc/HTML/ca/korganizer @dirrm share/doc/HTML/ca/konsole @dirrm share/doc/HTML/ca/konqueror @dirrm share/doc/HTML/ca/kompare -@dirrm share/doc/HTML/ca/knetworkconf @dirrm share/doc/HTML/ca/knetattach @dirrm share/doc/HTML/ca/kmouth @dirrm share/doc/HTML/ca/kmousetool @@ -1081,6 +1152,35 @@ share/locale/ca/entry.desktop @dirrm share/doc/HTML/ca/kmag @dirrm share/doc/HTML/ca/klipper @dirrm share/doc/HTML/ca/kleopatra +@dirrm share/doc/HTML/ca/kioslave/webdav +@dirrm share/doc/HTML/ca/kioslave/thumbnail +@dirrm share/doc/HTML/ca/kioslave/telnet +@dirrm share/doc/HTML/ca/kioslave/tar +@dirrm share/doc/HTML/ca/kioslave/smtp +@dirrm share/doc/HTML/ca/kioslave/smb +@dirrm share/doc/HTML/ca/kioslave/sftp +@dirrm share/doc/HTML/ca/kioslave/rlogin +@dirrm share/doc/HTML/ca/kioslave/pop3 +@dirrm share/doc/HTML/ca/kioslave/nntp +@dirrm share/doc/HTML/ca/kioslave/nfs +@dirrm share/doc/HTML/ca/kioslave/news +@dirrm share/doc/HTML/ca/kioslave/man +@dirrm share/doc/HTML/ca/kioslave/mailto +@dirrm share/doc/HTML/ca/kioslave/ldap +@dirrm share/doc/HTML/ca/kioslave/info +@dirrm share/doc/HTML/ca/kioslave/imap +@dirrm share/doc/HTML/ca/kioslave/http +@dirrm share/doc/HTML/ca/kioslave/help +@dirrm share/doc/HTML/ca/kioslave/gzip +@dirrm share/doc/HTML/ca/kioslave/ftp +@dirrm share/doc/HTML/ca/kioslave/floppy +@dirrm share/doc/HTML/ca/kioslave/fish +@dirrm share/doc/HTML/ca/kioslave/finger +@dirrm share/doc/HTML/ca/kioslave/file +@dirrm share/doc/HTML/ca/kioslave/data +@dirrm share/doc/HTML/ca/kioslave/cgi +@dirrm share/doc/HTML/ca/kioslave/bzip2 +@dirrm share/doc/HTML/ca/kioslave/audiocd @dirrm share/doc/HTML/ca/kioslave @dirrm share/doc/HTML/ca/kinfocenter/xserver @dirrm share/doc/HTML/ca/kinfocenter/usb @@ -1116,7 +1216,6 @@ share/locale/ca/entry.desktop @dirrm share/doc/HTML/ca/kdat @dirrm share/doc/HTML/ca/kcron @dirrm share/doc/HTML/ca/kcontrol/windowspecific -@dirrm share/doc/HTML/ca/kcontrol/windowmanagement @dirrm share/doc/HTML/ca/kcontrol/useragent @dirrm share/doc/HTML/ca/kcontrol/spellchecking @dirrm share/doc/HTML/ca/kcontrol/smb @@ -1168,7 +1267,11 @@ share/locale/ca/entry.desktop @dirrm share/doc/HTML/ca/kate @dirrm share/doc/HTML/ca/kalzium @dirrm share/doc/HTML/ca/amor -@dirrm share/doc/HTML/ca @dirrm share/apps/kvtml/ca @dirrm share/apps/kvtml @dirrm share/apps/khangman +@dirrmtry man/ca/man8 +@dirrmtry man/ca/man7 +@dirrmtry man/ca/man6 +@dirrmtry man/ca/man1 +@dirrmtry man/ca diff --git a/misc/kde4-l10n-cs/distinfo b/misc/kde4-l10n-cs/distinfo index ac0dee7129f7..c0f7e699aaef 100644 --- a/misc/kde4-l10n-cs/distinfo +++ b/misc/kde4-l10n-cs/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-cs-4.1.4.tar.bz2) = 12cd58d5728958829d65881fcdb3958f -SHA256 (KDE/kde-l10n/kde-l10n-cs-4.1.4.tar.bz2) = 16d8f4be08df6b7b8d8c44ce944dffa0f545926cacefb337adfee1b275fa9e9a -SIZE (KDE/kde-l10n/kde-l10n-cs-4.1.4.tar.bz2) = 2877054 +MD5 (KDE/kde-l10n/kde-l10n-cs-4.2.0.tar.bz2) = 3fbbda2cb209e8c773c075ed3d28f831 +SHA256 (KDE/kde-l10n/kde-l10n-cs-4.2.0.tar.bz2) = 55f2f84fca001ced042cad4c714f76da4127935da791c6b0241306bc9319f25d +SIZE (KDE/kde-l10n/kde-l10n-cs-4.2.0.tar.bz2) = 3078315 diff --git a/misc/kde4-l10n-cs/pkg-plist b/misc/kde4-l10n-cs/pkg-plist index 3bff04477ef8..0e2e6334c8a5 100644 --- a/misc/kde4-l10n-cs/pkg-plist +++ b/misc/kde4-l10n-cs/pkg-plist @@ -132,6 +132,7 @@ share/doc/HTML/cs/kinfocenter/xserver/index.docbook share/doc/HTML/cs/konsole/common share/doc/HTML/cs/konsole/index.cache.bz2 share/doc/HTML/cs/konsole/index.docbook +share/locale/cs/LC_MESSAGES/akonaditray.mo share/locale/cs/LC_MESSAGES/akregator.mo share/locale/cs/LC_MESSAGES/amor.mo share/locale/cs/LC_MESSAGES/ark.mo @@ -139,6 +140,7 @@ share/locale/cs/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/cs/LC_MESSAGES/audiorename_plugin.mo share/locale/cs/LC_MESSAGES/blinken.mo +share/locale/cs/LC_MESSAGES/bomber.mo share/locale/cs/LC_MESSAGES/bovo.mo share/locale/cs/LC_MESSAGES/cervisia.mo share/locale/cs/LC_MESSAGES/cvsservice.mo @@ -153,29 +155,42 @@ share/locale/cs/LC_MESSAGES/imagerename_plugin.mo share/locale/cs/LC_MESSAGES/joystick.mo share/locale/cs/LC_MESSAGES/juk.mo share/locale/cs/LC_MESSAGES/kabc.mo +share/locale/cs/LC_MESSAGES/kabc_akonadi.mo share/locale/cs/LC_MESSAGES/kabc_dir.mo share/locale/cs/LC_MESSAGES/kabc_file.mo share/locale/cs/LC_MESSAGES/kabc_ldapkio.mo share/locale/cs/LC_MESSAGES/kabc_net.mo share/locale/cs/LC_MESSAGES/kabc_slox.mo +share/locale/cs/LC_MESSAGES/kabcakonadi.mo +share/locale/cs/LC_MESSAGES/kabcclient.mo share/locale/cs/LC_MESSAGES/kabcformat_binary.mo share/locale/cs/LC_MESSAGES/kaccess.mo share/locale/cs/LC_MESSAGES/kaddressbook.mo share/locale/cs/LC_MESSAGES/kalarm.mo share/locale/cs/LC_MESSAGES/kalgebra.mo share/locale/cs/LC_MESSAGES/kalzium.mo +share/locale/cs/LC_MESSAGES/kalzium_qt.mo share/locale/cs/LC_MESSAGES/kanagram.mo +share/locale/cs/LC_MESSAGES/kapman.mo share/locale/cs/LC_MESSAGES/kappfinder.mo +share/locale/cs/LC_MESSAGES/kapptemplate.mo +share/locale/cs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/cs/LC_MESSAGES/kate.mo +share/locale/cs/LC_MESSAGES/katebuild-plugin.mo share/locale/cs/LC_MESSAGES/kateexternaltoolsplugin.mo +share/locale/cs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/cs/LC_MESSAGES/katefiletemplates.mo +share/locale/cs/LC_MESSAGES/katefindinfilesplugin.mo share/locale/cs/LC_MESSAGES/katehelloworld.mo share/locale/cs/LC_MESSAGES/katehtmltools.mo +share/locale/cs/LC_MESSAGES/kateinsertcommand.mo share/locale/cs/LC_MESSAGES/katekjswrapper.mo -share/locale/cs/LC_MESSAGES/katemake.mo +share/locale/cs/LC_MESSAGES/katekonsoleplugin.mo +share/locale/cs/LC_MESSAGES/katemailfilesplugin.mo share/locale/cs/LC_MESSAGES/kateopenheader.mo share/locale/cs/LC_MESSAGES/katepart4.mo share/locale/cs/LC_MESSAGES/katepybrowse.mo +share/locale/cs/LC_MESSAGES/katequickdocumentswitcherplugin.mo share/locale/cs/LC_MESSAGES/katesnippets.mo share/locale/cs/LC_MESSAGES/katesymbolviewer.mo share/locale/cs/LC_MESSAGES/katetabbarextension.mo @@ -186,21 +201,28 @@ share/locale/cs/LC_MESSAGES/katomic.mo share/locale/cs/LC_MESSAGES/kbattleship.mo share/locale/cs/LC_MESSAGES/kblackbox.mo share/locale/cs/LC_MESSAGES/kblankscrn.mo +share/locale/cs/LC_MESSAGES/kblocks.mo share/locale/cs/LC_MESSAGES/kbounce.mo +share/locale/cs/LC_MESSAGES/kbreakout.mo share/locale/cs/LC_MESSAGES/kbruch.mo -share/locale/cs/LC_MESSAGES/kbstateapplet.mo share/locale/cs/LC_MESSAGES/kbugbuster.mo share/locale/cs/LC_MESSAGES/kcachegrind.mo share/locale/cs/LC_MESSAGES/kcalc.mo share/locale/cs/LC_MESSAGES/kcertpart.mo share/locale/cs/LC_MESSAGES/kcharselect.mo +share/locale/cs/LC_MESSAGES/kcm_akonadi.mo share/locale/cs/LC_MESSAGES/kcm_autostart.mo +share/locale/cs/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/cs/LC_MESSAGES/kcm_emoticons.mo share/locale/cs/LC_MESSAGES/kcm_krfb.mo share/locale/cs/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/cs/LC_MESSAGES/kcm_memory.mo +share/locale/cs/LC_MESSAGES/kcm_partition.mo +share/locale/cs/LC_MESSAGES/kcm_pci.mo share/locale/cs/LC_MESSAGES/kcm_phonon.mo share/locale/cs/LC_MESSAGES/kcm_phononxine.mo share/locale/cs/LC_MESSAGES/kcm_solid.mo +share/locale/cs/LC_MESSAGES/kcm_standard_actions.mo share/locale/cs/LC_MESSAGES/kcmaccess.mo share/locale/cs/LC_MESSAGES/kcmaudiocd.mo share/locale/cs/LC_MESSAGES/kcmbackground.mo @@ -241,14 +263,15 @@ share/locale/cs/LC_MESSAGES/kcmlilo.mo share/locale/cs/LC_MESSAGES/kcmlocale.mo share/locale/cs/LC_MESSAGES/kcmnic.mo share/locale/cs/LC_MESSAGES/kcmnotify.mo +share/locale/cs/LC_MESSAGES/kcmopengl.mo share/locale/cs/LC_MESSAGES/kcmperformance.mo share/locale/cs/LC_MESSAGES/kcmsamba.mo share/locale/cs/LC_MESSAGES/kcmscreensaver.mo share/locale/cs/LC_MESSAGES/kcmshell.mo share/locale/cs/LC_MESSAGES/kcmsmartcard.mo share/locale/cs/LC_MESSAGES/kcmsmserver.mo +share/locale/cs/LC_MESSAGES/kcmsolidproc.mo share/locale/cs/LC_MESSAGES/kcmstyle.mo -share/locale/cs/LC_MESSAGES/kcmtaskbar.mo share/locale/cs/LC_MESSAGES/kcmusb.mo share/locale/cs/LC_MESSAGES/kcmview1394.mo share/locale/cs/LC_MESSAGES/kcmxinerama.mo @@ -256,8 +279,11 @@ share/locale/cs/LC_MESSAGES/kcolorchooser.mo share/locale/cs/LC_MESSAGES/kcron.mo share/locale/cs/LC_MESSAGES/kdat.mo share/locale/cs/LC_MESSAGES/kde-menu.mo +share/locale/cs/LC_MESSAGES/kdeasciiquarium.mo share/locale/cs/LC_MESSAGES/kdebugdialog.mo +share/locale/cs/LC_MESSAGES/kded_phononserver.mo share/locale/cs/LC_MESSAGES/kdelibs4.mo +share/locale/cs/LC_MESSAGES/kdelibs_colors4.mo share/locale/cs/LC_MESSAGES/kdepasswd.mo share/locale/cs/LC_MESSAGES/kdepimresources.mo share/locale/cs/LC_MESSAGES/kdepimwizards.mo @@ -266,8 +292,10 @@ share/locale/cs/LC_MESSAGES/kdessh.mo share/locale/cs/LC_MESSAGES/kdesu.mo share/locale/cs/LC_MESSAGES/kdesud.mo share/locale/cs/LC_MESSAGES/kdf.mo +share/locale/cs/LC_MESSAGES/kdgantt.mo share/locale/cs/LC_MESSAGES/kdgantt1.mo share/locale/cs/LC_MESSAGES/kdialog.mo +share/locale/cs/LC_MESSAGES/kdiamond.mo share/locale/cs/LC_MESSAGES/kdmconfig.mo share/locale/cs/LC_MESSAGES/kdmgreet.mo share/locale/cs/LC_MESSAGES/keditbookmarks.mo @@ -305,19 +333,24 @@ share/locale/cs/LC_MESSAGES/kget.mo share/locale/cs/LC_MESSAGES/kgoldrunner.mo share/locale/cs/LC_MESSAGES/kgpg.mo share/locale/cs/LC_MESSAGES/kgreet_classic.mo +share/locale/cs/LC_MESSAGES/kgreet_generic.mo share/locale/cs/LC_MESSAGES/kgreet_winbind.mo share/locale/cs/LC_MESSAGES/khangman.mo share/locale/cs/LC_MESSAGES/khelpcenter.mo share/locale/cs/LC_MESSAGES/khotkeys.mo share/locale/cs/LC_MESSAGES/khotnewstuff.mo share/locale/cs/LC_MESSAGES/khtmlkttsd.mo +share/locale/cs/LC_MESSAGES/kiconfinder.mo share/locale/cs/LC_MESSAGES/kig.mo +share/locale/cs/LC_MESSAGES/killbots.mo share/locale/cs/LC_MESSAGES/kimagemapeditor.mo share/locale/cs/LC_MESSAGES/kinetd.mo share/locale/cs/LC_MESSAGES/kinfocenter.mo share/locale/cs/LC_MESSAGES/kio4.mo +share/locale/cs/LC_MESSAGES/kio_applications.mo share/locale/cs/LC_MESSAGES/kio_archive.mo share/locale/cs/LC_MESSAGES/kio_audiocd.mo +share/locale/cs/LC_MESSAGES/kio_bookmarks.mo share/locale/cs/LC_MESSAGES/kio_finger.mo share/locale/cs/LC_MESSAGES/kio_fish.mo share/locale/cs/LC_MESSAGES/kio_floppy.mo @@ -328,11 +361,12 @@ share/locale/cs/LC_MESSAGES/kio_jabberdisco.mo share/locale/cs/LC_MESSAGES/kio_ldap.mo share/locale/cs/LC_MESSAGES/kio_man.mo share/locale/cs/LC_MESSAGES/kio_mbox.mo +share/locale/cs/LC_MESSAGES/kio_nepomuksearch.mo share/locale/cs/LC_MESSAGES/kio_nfs.mo share/locale/cs/LC_MESSAGES/kio_nntp.mo +share/locale/cs/LC_MESSAGES/kio_perldoc.mo share/locale/cs/LC_MESSAGES/kio_pop3.mo share/locale/cs/LC_MESSAGES/kio_remote.mo -share/locale/cs/LC_MESSAGES/kio_settings.mo share/locale/cs/LC_MESSAGES/kio_sftp.mo share/locale/cs/LC_MESSAGES/kio_sieve.mo share/locale/cs/LC_MESSAGES/kio_smb.mo @@ -359,6 +393,7 @@ share/locale/cs/LC_MESSAGES/kmahjongg.mo share/locale/cs/LC_MESSAGES/kmail.mo share/locale/cs/LC_MESSAGES/kmail_text_calendar_plugin.mo share/locale/cs/LC_MESSAGES/kmail_text_vcard_plugin.mo +share/locale/cs/LC_MESSAGES/kmail_text_xdiff_plugin.mo share/locale/cs/LC_MESSAGES/kmailcvt.mo share/locale/cs/LC_MESSAGES/kmenuedit.mo share/locale/cs/LC_MESSAGES/kmimetypefinder.mo @@ -375,22 +410,26 @@ share/locale/cs/LC_MESSAGES/knetworkconfmodule.mo share/locale/cs/LC_MESSAGES/knode.mo share/locale/cs/LC_MESSAGES/knotes.mo share/locale/cs/LC_MESSAGES/knotify4.mo +share/locale/cs/LC_MESSAGES/kode.mo share/locale/cs/LC_MESSAGES/kolf.mo +share/locale/cs/LC_MESSAGES/kollision.mo share/locale/cs/LC_MESSAGES/kolourpaint.mo +share/locale/cs/LC_MESSAGES/kommander.mo share/locale/cs/LC_MESSAGES/kompare.mo share/locale/cs/LC_MESSAGES/konqueror.mo share/locale/cs/LC_MESSAGES/konquest.mo share/locale/cs/LC_MESSAGES/konsole.mo share/locale/cs/LC_MESSAGES/konsolekalendar.mo share/locale/cs/LC_MESSAGES/kontact.mo +share/locale/cs/LC_MESSAGES/kontactinterfaces.mo share/locale/cs/LC_MESSAGES/kopete.mo share/locale/cs/LC_MESSAGES/korganizer.mo share/locale/cs/LC_MESSAGES/korn.mo share/locale/cs/LC_MESSAGES/kpackage.mo +share/locale/cs/LC_MESSAGES/kpartloader.mo share/locale/cs/LC_MESSAGES/kpartsaver.mo share/locale/cs/LC_MESSAGES/kpasswdserver.mo share/locale/cs/LC_MESSAGES/kpat.mo -share/locale/cs/LC_MESSAGES/kpercentage.mo share/locale/cs/LC_MESSAGES/kpilot.mo share/locale/cs/LC_MESSAGES/kppp.mo share/locale/cs/LC_MESSAGES/kppplogview.mo @@ -400,32 +439,29 @@ share/locale/cs/LC_MESSAGES/krdb.mo share/locale/cs/LC_MESSAGES/krdc.mo share/locale/cs/LC_MESSAGES/kreadconfig.mo share/locale/cs/LC_MESSAGES/kres_birthday.mo +share/locale/cs/LC_MESSAGES/kres_blog.mo share/locale/cs/LC_MESSAGES/kres_bugzilla.mo share/locale/cs/LC_MESSAGES/kres_featureplan.mo share/locale/cs/LC_MESSAGES/kres_groupware.mo share/locale/cs/LC_MESSAGES/kres_groupwise.mo share/locale/cs/LC_MESSAGES/kres_kolab.mo share/locale/cs/LC_MESSAGES/kres_remote.mo +share/locale/cs/LC_MESSAGES/kres_scalix.mo share/locale/cs/LC_MESSAGES/kres_tvanytime.mo share/locale/cs/LC_MESSAGES/kres_xmlrpc.mo share/locale/cs/LC_MESSAGES/kreversi.mo share/locale/cs/LC_MESSAGES/krfb.mo share/locale/cs/LC_MESSAGES/kruler.mo share/locale/cs/LC_MESSAGES/krunner.mo -share/locale/cs/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/cs/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/cs/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/cs/LC_MESSAGES/krunner_sessions.mo -share/locale/cs/LC_MESSAGES/krunner_shellrunner.mo -share/locale/cs/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/cs/LC_MESSAGES/krunner_xesam.mo share/locale/cs/LC_MESSAGES/ksame.mo share/locale/cs/LC_MESSAGES/ksaneplugin.mo share/locale/cs/LC_MESSAGES/ksayit.mo share/locale/cs/LC_MESSAGES/kscd.mo share/locale/cs/LC_MESSAGES/kscreensaver.mo +share/locale/cs/LC_MESSAGES/ksendemail.mo share/locale/cs/LC_MESSAGES/kshisen.mo share/locale/cs/LC_MESSAGES/kshorturifilter.mo +share/locale/cs/LC_MESSAGES/ksirk.mo share/locale/cs/LC_MESSAGES/ksmserver.mo share/locale/cs/LC_MESSAGES/ksnapshot.mo share/locale/cs/LC_MESSAGES/kspaceduel.mo @@ -439,31 +475,37 @@ share/locale/cs/LC_MESSAGES/kstyle_keramik_config.mo share/locale/cs/LC_MESSAGES/kstyle_phase_config.mo share/locale/cs/LC_MESSAGES/ksudoku.mo share/locale/cs/LC_MESSAGES/ksysguard.mo +share/locale/cs/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/cs/LC_MESSAGES/ksystemlog.mo share/locale/cs/LC_MESSAGES/ksystraycmd.mo share/locale/cs/LC_MESSAGES/ksysv.mo share/locale/cs/LC_MESSAGES/kteatime.mo share/locale/cs/LC_MESSAGES/ktexteditor_plugins.mo +share/locale/cs/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/cs/LC_MESSAGES/kthememanager.mo share/locale/cs/LC_MESSAGES/ktimer.mo share/locale/cs/LC_MESSAGES/ktimetracker.mo -share/locale/cs/LC_MESSAGES/ktnef.mo share/locale/cs/LC_MESSAGES/ktouch.mo +share/locale/cs/LC_MESSAGES/ktraderclient.mo share/locale/cs/LC_MESSAGES/kttsd.mo share/locale/cs/LC_MESSAGES/ktuberling.mo share/locale/cs/LC_MESSAGES/kturtle.mo share/locale/cs/LC_MESSAGES/ktux.mo +share/locale/cs/LC_MESSAGES/kubrick.mo share/locale/cs/LC_MESSAGES/kuiserver.mo share/locale/cs/LC_MESSAGES/kuiviewer.mo share/locale/cs/LC_MESSAGES/kurifilter.mo share/locale/cs/LC_MESSAGES/kuser.mo +share/locale/cs/LC_MESSAGES/kwalletd.mo share/locale/cs/LC_MESSAGES/kwalletmanager.mo share/locale/cs/LC_MESSAGES/kwatchgnupg.mo share/locale/cs/LC_MESSAGES/kweather.mo share/locale/cs/LC_MESSAGES/kwin.mo share/locale/cs/LC_MESSAGES/kwin_art_clients.mo share/locale/cs/LC_MESSAGES/kwin_clients.mo +share/locale/cs/LC_MESSAGES/kwin_effects.mo share/locale/cs/LC_MESSAGES/kwin_lib.mo +share/locale/cs/LC_MESSAGES/kwinstartmenu.mo share/locale/cs/LC_MESSAGES/kwordquiz.mo share/locale/cs/LC_MESSAGES/kwrite.mo share/locale/cs/LC_MESSAGES/kwriteconfig.mo @@ -471,6 +513,8 @@ share/locale/cs/LC_MESSAGES/kxforms.mo share/locale/cs/LC_MESSAGES/kxkb.mo share/locale/cs/LC_MESSAGES/kxsconfig.mo share/locale/cs/LC_MESSAGES/kxsldbg.mo +share/locale/cs/LC_MESSAGES/lancelot.mo +share/locale/cs/LC_MESSAGES/libakonadi.mo share/locale/cs/LC_MESSAGES/libkblog.mo share/locale/cs/LC_MESSAGES/libkcal.mo share/locale/cs/LC_MESSAGES/libkcddb.mo @@ -496,12 +540,19 @@ share/locale/cs/LC_MESSAGES/libktnef.mo share/locale/cs/LC_MESSAGES/libkworkspace.mo share/locale/cs/LC_MESSAGES/libkxmlrpcclient.mo share/locale/cs/LC_MESSAGES/libmailtransport.mo +share/locale/cs/LC_MESSAGES/liboktetacore.mo share/locale/cs/LC_MESSAGES/libphonon.mo share/locale/cs/LC_MESSAGES/libplasma.mo +share/locale/cs/LC_MESSAGES/libplasmaclock.mo share/locale/cs/LC_MESSAGES/libtaskmanager.mo +share/locale/cs/LC_MESSAGES/lokalize.mo share/locale/cs/LC_MESSAGES/lskat.mo share/locale/cs/LC_MESSAGES/marble.mo +share/locale/cs/LC_MESSAGES/marble_qt.mo +share/locale/cs/LC_MESSAGES/nepomuk.mo +share/locale/cs/LC_MESSAGES/nepomuksearch.mo share/locale/cs/LC_MESSAGES/nsplugin.mo +share/locale/cs/LC_MESSAGES/okteta.mo share/locale/cs/LC_MESSAGES/oktetapart.mo share/locale/cs/LC_MESSAGES/okular.mo share/locale/cs/LC_MESSAGES/okular_chm.mo @@ -509,6 +560,7 @@ share/locale/cs/LC_MESSAGES/okular_comicbook.mo share/locale/cs/LC_MESSAGES/okular_djvu.mo share/locale/cs/LC_MESSAGES/okular_dvi.mo share/locale/cs/LC_MESSAGES/okular_epub.mo +share/locale/cs/LC_MESSAGES/okular_fax.mo share/locale/cs/LC_MESSAGES/okular_fictionbook.mo share/locale/cs/LC_MESSAGES/okular_ghostview.mo share/locale/cs/LC_MESSAGES/okular_kimgio.mo @@ -519,39 +571,100 @@ share/locale/cs/LC_MESSAGES/okular_tiff.mo share/locale/cs/LC_MESSAGES/okular_xps.mo share/locale/cs/LC_MESSAGES/parley.mo share/locale/cs/LC_MESSAGES/phonon-xine.mo +share/locale/cs/LC_MESSAGES/phonon_gstreamer.mo share/locale/cs/LC_MESSAGES/phonon_kde.mo +share/locale/cs/LC_MESSAGES/plasma-overlay.mo +share/locale/cs/LC_MESSAGES/plasma-shells-common.mo share/locale/cs/LC_MESSAGES/plasma.mo share/locale/cs/LC_MESSAGES/plasma_applet_battery.mo +share/locale/cs/LC_MESSAGES/plasma_applet_bball.mo share/locale/cs/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/cs/LC_MESSAGES/plasma_applet_bluemarble.mo +share/locale/cs/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/cs/LC_MESSAGES/plasma_applet_charselect.mo share/locale/cs/LC_MESSAGES/plasma_applet_clock.mo +share/locale/cs/LC_MESSAGES/plasma_applet_comic.mo share/locale/cs/LC_MESSAGES/plasma_applet_desktop.mo share/locale/cs/LC_MESSAGES/plasma_applet_devicenotifier.mo +share/locale/cs/LC_MESSAGES/plasma_applet_dict.mo share/locale/cs/LC_MESSAGES/plasma_applet_dig_clock.mo +share/locale/cs/LC_MESSAGES/plasma_applet_fifteenPuzzle.mo +share/locale/cs/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/cs/LC_MESSAGES/plasma_applet_folderview.mo share/locale/cs/LC_MESSAGES/plasma_applet_frame.mo +share/locale/cs/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/cs/LC_MESSAGES/plasma_applet_incomingmsg.mo +share/locale/cs/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/cs/LC_MESSAGES/plasma_applet_kalzium.mo +share/locale/cs/LC_MESSAGES/plasma_applet_katesession.mo share/locale/cs/LC_MESSAGES/plasma_applet_kget.mo -share/locale/cs/LC_MESSAGES/plasma_applet_knewsticker.mo +share/locale/cs/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/cs/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/cs/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/cs/LC_MESSAGES/plasma_applet_life.mo +share/locale/cs/LC_MESSAGES/plasma_applet_luna.mo +share/locale/cs/LC_MESSAGES/plasma_applet_news.mo +share/locale/cs/LC_MESSAGES/plasma_applet_notes.mo +share/locale/cs/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/cs/LC_MESSAGES/plasma_applet_pager.mo share/locale/cs/LC_MESSAGES/plasma_applet_panel.mo +share/locale/cs/LC_MESSAGES/plasma_applet_paste.mo +share/locale/cs/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/cs/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/cs/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/cs/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/cs/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/cs/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/cs/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/cs/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/cs/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/cs/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/cs/LC_MESSAGES/plasma_applet_timer.mo share/locale/cs/LC_MESSAGES/plasma_applet_trash.mo +share/locale/cs/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/cs/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/cs/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/cs/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/cs/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/cs/LC_MESSAGES/plasma_engine_dict.mo +share/locale/cs/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/cs/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/cs/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/cs/LC_MESSAGES/plasma_engine_rss.mo +share/locale/cs/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/cs/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/cs/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/cs/LC_MESSAGES/plasma_runner_locations.mo +share/locale/cs/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/cs/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/cs/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/cs/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/cs/LC_MESSAGES/plasma_runner_shell.mo +share/locale/cs/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/cs/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/cs/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/cs/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/cs/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/cs/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/cs/LC_MESSAGES/plasmapkg.mo +share/locale/cs/LC_MESSAGES/plasmoidviewer.mo +share/locale/cs/LC_MESSAGES/powerdevil.mo +share/locale/cs/LC_MESSAGES/printer-applet.mo share/locale/cs/LC_MESSAGES/processcore.mo share/locale/cs/LC_MESSAGES/processui.mo share/locale/cs/LC_MESSAGES/solid-bluetooth.mo share/locale/cs/LC_MESSAGES/solid-hardware.mo share/locale/cs/LC_MESSAGES/solid-network.mo share/locale/cs/LC_MESSAGES/solid-powermanagement.mo +share/locale/cs/LC_MESSAGES/solidcontrol.mo share/locale/cs/LC_MESSAGES/soliduiserver.mo share/locale/cs/LC_MESSAGES/spy.mo +share/locale/cs/LC_MESSAGES/step.mo +share/locale/cs/LC_MESSAGES/step_qt.mo share/locale/cs/LC_MESSAGES/strigila_diff.mo share/locale/cs/LC_MESSAGES/superkaramba.mo share/locale/cs/LC_MESSAGES/svgpart.mo share/locale/cs/LC_MESSAGES/sweeper.mo +share/locale/cs/LC_MESSAGES/system-config-printer-kde.mo share/locale/cs/LC_MESSAGES/systemsettings.mo share/locale/cs/LC_MESSAGES/timezones4.mo share/locale/cs/LC_MESSAGES/umbrello.mo diff --git a/misc/kde4-l10n-csb/distinfo b/misc/kde4-l10n-csb/distinfo index 3b6173d6eccc..9f995d3b5253 100644 --- a/misc/kde4-l10n-csb/distinfo +++ b/misc/kde4-l10n-csb/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-csb-4.1.4.tar.bz2) = b3371c5468c27021ee8dc19113ad4be7 -SHA256 (KDE/kde-l10n/kde-l10n-csb-4.1.4.tar.bz2) = e9e5277000bb3a63a8f877d2a38151a7bba0d4dde2c4b42b77a13b89342093ce -SIZE (KDE/kde-l10n/kde-l10n-csb-4.1.4.tar.bz2) = 386812 +MD5 (KDE/kde-l10n/kde-l10n-csb-4.2.0.tar.bz2) = c9e576d85e7c8644a7f363a7dc446a47 +SHA256 (KDE/kde-l10n/kde-l10n-csb-4.2.0.tar.bz2) = 173c8bfdfd8c773868dfa7928e3b1244566d6bf776fac5bbe10af10b01190922 +SIZE (KDE/kde-l10n/kde-l10n-csb-4.2.0.tar.bz2) = 405103 diff --git a/misc/kde4-l10n-csb/pkg-plist b/misc/kde4-l10n-csb/pkg-plist index 1bb8b1318051..04d53d185a71 100644 --- a/misc/kde4-l10n-csb/pkg-plist +++ b/misc/kde4-l10n-csb/pkg-plist @@ -19,7 +19,6 @@ share/locale/csb/LC_MESSAGES/kcertpart.mo share/locale/csb/LC_MESSAGES/kcm_emoticons.mo share/locale/csb/LC_MESSAGES/kcm_kwindesktop.mo share/locale/csb/LC_MESSAGES/kcm_phonon.mo -share/locale/csb/LC_MESSAGES/kcm_phononxine.mo share/locale/csb/LC_MESSAGES/kcm_solid.mo share/locale/csb/LC_MESSAGES/kcmaccess.mo share/locale/csb/LC_MESSAGES/kcmbackground.mo @@ -47,7 +46,6 @@ share/locale/csb/LC_MESSAGES/kcmshell.mo share/locale/csb/LC_MESSAGES/kcmsmartcard.mo share/locale/csb/LC_MESSAGES/kcmsmserver.mo share/locale/csb/LC_MESSAGES/kcmstyle.mo -share/locale/csb/LC_MESSAGES/kcmtaskbar.mo share/locale/csb/LC_MESSAGES/kcmusb.mo share/locale/csb/LC_MESSAGES/kcmview1394.mo share/locale/csb/LC_MESSAGES/kcmxinerama.mo @@ -83,6 +81,7 @@ share/locale/csb/LC_MESSAGES/khtmlkttsd.mo share/locale/csb/LC_MESSAGES/kiconfinder.mo share/locale/csb/LC_MESSAGES/kinfocenter.mo share/locale/csb/LC_MESSAGES/kio4.mo +share/locale/csb/LC_MESSAGES/kio_applications.mo share/locale/csb/LC_MESSAGES/kio_archive.mo share/locale/csb/LC_MESSAGES/kio_audiocd.mo share/locale/csb/LC_MESSAGES/kio_finger.mo @@ -95,7 +94,6 @@ share/locale/csb/LC_MESSAGES/kio_nfs.mo share/locale/csb/LC_MESSAGES/kio_nntp.mo share/locale/csb/LC_MESSAGES/kio_pop3.mo share/locale/csb/LC_MESSAGES/kio_remote.mo -share/locale/csb/LC_MESSAGES/kio_settings.mo share/locale/csb/LC_MESSAGES/kio_sftp.mo share/locale/csb/LC_MESSAGES/kio_smb.mo share/locale/csb/LC_MESSAGES/kio_smtp.mo @@ -116,18 +114,11 @@ share/locale/csb/LC_MESSAGES/konqueror.mo share/locale/csb/LC_MESSAGES/konsole.mo share/locale/csb/LC_MESSAGES/kpasswdserver.mo share/locale/csb/LC_MESSAGES/kpat.mo -share/locale/csb/LC_MESSAGES/kpercentage.mo share/locale/csb/LC_MESSAGES/kquitapp.mo share/locale/csb/LC_MESSAGES/krandr.mo share/locale/csb/LC_MESSAGES/krdb.mo share/locale/csb/LC_MESSAGES/kreadconfig.mo share/locale/csb/LC_MESSAGES/krunner.mo -share/locale/csb/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/csb/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/csb/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/csb/LC_MESSAGES/krunner_sessions.mo -share/locale/csb/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/csb/LC_MESSAGES/krunner_xesam.mo share/locale/csb/LC_MESSAGES/ksame.mo share/locale/csb/LC_MESSAGES/kscreensaver.mo share/locale/csb/LC_MESSAGES/kshorturifilter.mo @@ -186,7 +177,9 @@ share/locale/csb/LC_MESSAGES/plasma_applet_tasks.mo share/locale/csb/LC_MESSAGES/plasma_applet_trash.mo share/locale/csb/LC_MESSAGES/plasma_applet_twitter.mo share/locale/csb/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/csb/LC_MESSAGES/plasma_engine_dict.mo +share/locale/csb/LC_MESSAGES/plasma_runner_locations.mo +share/locale/csb/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/csb/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/csb/LC_MESSAGES/plasmaengineexplorer.mo share/locale/csb/LC_MESSAGES/plasmapkg.mo share/locale/csb/LC_MESSAGES/plasmoidviewer.mo @@ -203,5 +196,3 @@ share/locale/csb/LC_MESSAGES/systemsettings.mo share/locale/csb/LC_MESSAGES/timezones4.mo share/locale/csb/LC_MESSAGES/useraccount.mo share/locale/csb/entry.desktop -@dirrm share/locale/csb/LC_MESSAGES -@dirrm share/locale/csb diff --git a/misc/kde4-l10n-da/Makefile b/misc/kde4-l10n-da/Makefile index 9f46bf2b4c81..7bc64f1cb9fa 100644 --- a/misc/kde4-l10n-da/Makefile +++ b/misc/kde4-l10n-da/Makefile @@ -14,6 +14,9 @@ COMMENT= Danish messages and documentation for KDE4 KDE4_L10N= da +MANLANG= ${KDE4_L10N} +.include <${.CURDIR}/Makefile.man> + post-extract: ${MKDIR} ${WRKSRC}/build diff --git a/misc/kde4-l10n-da/distinfo b/misc/kde4-l10n-da/distinfo index 8b2e8f6e1efc..8c0a4ce945b0 100644 --- a/misc/kde4-l10n-da/distinfo +++ b/misc/kde4-l10n-da/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-da-4.1.4.tar.bz2) = b6c145d943292f2ba11753aa044f66f5 -SHA256 (KDE/kde-l10n/kde-l10n-da-4.1.4.tar.bz2) = af86dea55a89c9ba55acaafe3d317fc20265a2768c52b1cdacdf9af9a0950648 -SIZE (KDE/kde-l10n/kde-l10n-da-4.1.4.tar.bz2) = 9059407 +MD5 (KDE/kde-l10n/kde-l10n-da-4.2.0.tar.bz2) = 9f6a01336b631223e13df6f82f6247ad +SHA256 (KDE/kde-l10n/kde-l10n-da-4.2.0.tar.bz2) = f3bc20d8178a477a4000aa2c8b24143b2f45fc89b6ce049216d94dc039efd50c +SIZE (KDE/kde-l10n/kde-l10n-da-4.2.0.tar.bz2) = 9236055 diff --git a/misc/kde4-l10n-da/pkg-plist b/misc/kde4-l10n-da/pkg-plist index 938ce220dbdd..aa015e1ab8d0 100644 --- a/misc/kde4-l10n-da/pkg-plist +++ b/misc/kde4-l10n-da/pkg-plist @@ -526,48 +526,48 @@ share/doc/HTML/da/kinfocenter/usb/index.docbook share/doc/HTML/da/kinfocenter/xserver/common share/doc/HTML/da/kinfocenter/xserver/index.cache.bz2 share/doc/HTML/da/kinfocenter/xserver/index.docbook -share/doc/HTML/da/kioslave/bzip.docbook -share/doc/HTML/da/kioslave/bzip2.docbook -share/doc/HTML/da/kioslave/cgi.docbook -share/doc/HTML/da/kioslave/common -share/doc/HTML/da/kioslave/data.docbook -share/doc/HTML/da/kioslave/file.docbook -share/doc/HTML/da/kioslave/finger.docbook -share/doc/HTML/da/kioslave/fish.docbook -share/doc/HTML/da/kioslave/floppy.docbook -share/doc/HTML/da/kioslave/ftp.docbook -share/doc/HTML/da/kioslave/gopher.docbook -share/doc/HTML/da/kioslave/gzip.docbook -share/doc/HTML/da/kioslave/help.docbook -share/doc/HTML/da/kioslave/http.docbook -share/doc/HTML/da/kioslave/https.docbook -share/doc/HTML/da/kioslave/imap.docbook -share/doc/HTML/da/kioslave/imaps.docbook -share/doc/HTML/da/kioslave/index.cache.bz2 -share/doc/HTML/da/kioslave/index.docbook -share/doc/HTML/da/kioslave/info.docbook -share/doc/HTML/da/kioslave/lan.docbook -share/doc/HTML/da/kioslave/ldap.docbook -share/doc/HTML/da/kioslave/mac.docbook -share/doc/HTML/da/kioslave/mailto.docbook -share/doc/HTML/da/kioslave/man.docbook -share/doc/HTML/da/kioslave/mrml.docbook -share/doc/HTML/da/kioslave/news.docbook -share/doc/HTML/da/kioslave/nfs.docbook -share/doc/HTML/da/kioslave/nntp.docbook -share/doc/HTML/da/kioslave/pop3.docbook -share/doc/HTML/da/kioslave/pop3s.docbook -share/doc/HTML/da/kioslave/print.docbook -share/doc/HTML/da/kioslave/rlan.docbook -share/doc/HTML/da/kioslave/rlogin.docbook -share/doc/HTML/da/kioslave/sftp.docbook -share/doc/HTML/da/kioslave/smb.docbook -share/doc/HTML/da/kioslave/smtp.docbook -share/doc/HTML/da/kioslave/tar.docbook -share/doc/HTML/da/kioslave/telnet.docbook -share/doc/HTML/da/kioslave/thumbnail.docbook -share/doc/HTML/da/kioslave/webdav.docbook -share/doc/HTML/da/kioslave/webdavs.docbook +share/doc/HTML/da/kioslave/kioslave/bzip.docbook +share/doc/HTML/da/kioslave/kioslave/bzip2.docbook +share/doc/HTML/da/kioslave/kioslave/cgi.docbook +share/doc/HTML/da/kioslave/kioslave/common +share/doc/HTML/da/kioslave/kioslave/data.docbook +share/doc/HTML/da/kioslave/kioslave/file.docbook +share/doc/HTML/da/kioslave/kioslave/finger.docbook +share/doc/HTML/da/kioslave/kioslave/fish.docbook +share/doc/HTML/da/kioslave/kioslave/floppy.docbook +share/doc/HTML/da/kioslave/kioslave/ftp.docbook +share/doc/HTML/da/kioslave/kioslave/gopher.docbook +share/doc/HTML/da/kioslave/kioslave/gzip.docbook +share/doc/HTML/da/kioslave/kioslave/help.docbook +share/doc/HTML/da/kioslave/kioslave/http.docbook +share/doc/HTML/da/kioslave/kioslave/https.docbook +share/doc/HTML/da/kioslave/kioslave/imap.docbook +share/doc/HTML/da/kioslave/kioslave/imaps.docbook +share/doc/HTML/da/kioslave/kioslave/index.cache.bz2 +share/doc/HTML/da/kioslave/kioslave/index.docbook +share/doc/HTML/da/kioslave/kioslave/info.docbook +share/doc/HTML/da/kioslave/kioslave/lan.docbook +share/doc/HTML/da/kioslave/kioslave/ldap.docbook +share/doc/HTML/da/kioslave/kioslave/mac.docbook +share/doc/HTML/da/kioslave/kioslave/mailto.docbook +share/doc/HTML/da/kioslave/kioslave/man.docbook +share/doc/HTML/da/kioslave/kioslave/mrml.docbook +share/doc/HTML/da/kioslave/kioslave/news.docbook +share/doc/HTML/da/kioslave/kioslave/nfs.docbook +share/doc/HTML/da/kioslave/kioslave/nntp.docbook +share/doc/HTML/da/kioslave/kioslave/pop3.docbook +share/doc/HTML/da/kioslave/kioslave/pop3s.docbook +share/doc/HTML/da/kioslave/kioslave/print.docbook +share/doc/HTML/da/kioslave/kioslave/rlan.docbook +share/doc/HTML/da/kioslave/kioslave/rlogin.docbook +share/doc/HTML/da/kioslave/kioslave/sftp.docbook +share/doc/HTML/da/kioslave/kioslave/smb.docbook +share/doc/HTML/da/kioslave/kioslave/smtp.docbook +share/doc/HTML/da/kioslave/kioslave/tar.docbook +share/doc/HTML/da/kioslave/kioslave/telnet.docbook +share/doc/HTML/da/kioslave/kioslave/thumbnail.docbook +share/doc/HTML/da/kioslave/kioslave/webdav.docbook +share/doc/HTML/da/kioslave/kioslave/webdavs.docbook share/doc/HTML/da/kiten/common share/doc/HTML/da/kiten/index.cache.bz2 share/doc/HTML/da/kiten/index.docbook @@ -910,16 +910,6 @@ share/doc/HTML/da/kstars/leapyear.docbook share/doc/HTML/da/kstars/lightcurves.docbook share/doc/HTML/da/kstars/luminosity.docbook share/doc/HTML/da/kstars/magnitude.docbook -share/doc/HTML/da/kstars/man-celestrongps.1.docbook -share/doc/HTML/da/kstars/man-fliccd.1.docbook -share/doc/HTML/da/kstars/man-indiserver.1.docbook -share/doc/HTML/da/kstars/man-lx200_16.1.docbook -share/doc/HTML/da/kstars/man-lx200autostar.1.docbook -share/doc/HTML/da/kstars/man-lx200classic.1.docbook -share/doc/HTML/da/kstars/man-lx200generic.1.docbook -share/doc/HTML/da/kstars/man-temma.1.docbook -share/doc/HTML/da/kstars/man-v4ldriver.1.docbook -share/doc/HTML/da/kstars/man-v4lphilips.1.docbook share/doc/HTML/da/kstars/meridian.docbook share/doc/HTML/da/kstars/newfov.png share/doc/HTML/da/kstars/observinglist.docbook @@ -1052,6 +1042,7 @@ share/locale/da/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/da/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/da/LC_MESSAGES/audiorename_plugin.mo share/locale/da/LC_MESSAGES/blinken.mo +share/locale/da/LC_MESSAGES/bomber.mo share/locale/da/LC_MESSAGES/bovo.mo share/locale/da/LC_MESSAGES/cervisia.mo share/locale/da/LC_MESSAGES/cvsservice.mo @@ -1066,6 +1057,7 @@ share/locale/da/LC_MESSAGES/imagerename_plugin.mo share/locale/da/LC_MESSAGES/joystick.mo share/locale/da/LC_MESSAGES/juk.mo share/locale/da/LC_MESSAGES/kabc.mo +share/locale/da/LC_MESSAGES/kabc_akonadi.mo share/locale/da/LC_MESSAGES/kabc_dir.mo share/locale/da/LC_MESSAGES/kabc_file.mo share/locale/da/LC_MESSAGES/kabc_ldapkio.mo @@ -1079,10 +1071,14 @@ share/locale/da/LC_MESSAGES/kaddressbook.mo share/locale/da/LC_MESSAGES/kalarm.mo share/locale/da/LC_MESSAGES/kalgebra.mo share/locale/da/LC_MESSAGES/kalzium.mo +share/locale/da/LC_MESSAGES/kalzium_qt.mo share/locale/da/LC_MESSAGES/kanagram.mo +share/locale/da/LC_MESSAGES/kapman.mo share/locale/da/LC_MESSAGES/kappfinder.mo share/locale/da/LC_MESSAGES/kapptemplate.mo +share/locale/da/LC_MESSAGES/kate-ctags-plugin.mo share/locale/da/LC_MESSAGES/kate.mo +share/locale/da/LC_MESSAGES/katebuild-plugin.mo share/locale/da/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/da/LC_MESSAGES/katefilebrowserplugin.mo share/locale/da/LC_MESSAGES/katefiletemplates.mo @@ -1093,7 +1089,6 @@ share/locale/da/LC_MESSAGES/kateinsertcommand.mo share/locale/da/LC_MESSAGES/katekjswrapper.mo share/locale/da/LC_MESSAGES/katekonsoleplugin.mo share/locale/da/LC_MESSAGES/katemailfilesplugin.mo -share/locale/da/LC_MESSAGES/katemake.mo share/locale/da/LC_MESSAGES/kateopenheader.mo share/locale/da/LC_MESSAGES/katepart4.mo share/locale/da/LC_MESSAGES/katepybrowse.mo @@ -1112,14 +1107,14 @@ share/locale/da/LC_MESSAGES/kblocks.mo share/locale/da/LC_MESSAGES/kbounce.mo share/locale/da/LC_MESSAGES/kbreakout.mo share/locale/da/LC_MESSAGES/kbruch.mo -share/locale/da/LC_MESSAGES/kbstateapplet.mo share/locale/da/LC_MESSAGES/kbugbuster.mo share/locale/da/LC_MESSAGES/kcachegrind.mo share/locale/da/LC_MESSAGES/kcalc.mo share/locale/da/LC_MESSAGES/kcertpart.mo share/locale/da/LC_MESSAGES/kcharselect.mo -share/locale/da/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/da/LC_MESSAGES/kcm_akonadi.mo share/locale/da/LC_MESSAGES/kcm_autostart.mo +share/locale/da/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/da/LC_MESSAGES/kcm_emoticons.mo share/locale/da/LC_MESSAGES/kcm_krfb.mo share/locale/da/LC_MESSAGES/kcm_kwindesktop.mo @@ -1129,6 +1124,7 @@ share/locale/da/LC_MESSAGES/kcm_pci.mo share/locale/da/LC_MESSAGES/kcm_phonon.mo share/locale/da/LC_MESSAGES/kcm_phononxine.mo share/locale/da/LC_MESSAGES/kcm_solid.mo +share/locale/da/LC_MESSAGES/kcm_standard_actions.mo share/locale/da/LC_MESSAGES/kcmaccess.mo share/locale/da/LC_MESSAGES/kcmaudiocd.mo share/locale/da/LC_MESSAGES/kcmbackground.mo @@ -1178,7 +1174,6 @@ share/locale/da/LC_MESSAGES/kcmsmartcard.mo share/locale/da/LC_MESSAGES/kcmsmserver.mo share/locale/da/LC_MESSAGES/kcmsolidproc.mo share/locale/da/LC_MESSAGES/kcmstyle.mo -share/locale/da/LC_MESSAGES/kcmtaskbar.mo share/locale/da/LC_MESSAGES/kcmusb.mo share/locale/da/LC_MESSAGES/kcmview1394.mo share/locale/da/LC_MESSAGES/kcmxinerama.mo @@ -1186,7 +1181,9 @@ share/locale/da/LC_MESSAGES/kcolorchooser.mo share/locale/da/LC_MESSAGES/kcron.mo share/locale/da/LC_MESSAGES/kdat.mo share/locale/da/LC_MESSAGES/kde-menu.mo +share/locale/da/LC_MESSAGES/kdeasciiquarium.mo share/locale/da/LC_MESSAGES/kdebugdialog.mo +share/locale/da/LC_MESSAGES/kded_phononserver.mo share/locale/da/LC_MESSAGES/kdelibs4.mo share/locale/da/LC_MESSAGES/kdelibs_colors4.mo share/locale/da/LC_MESSAGES/kdepasswd.mo @@ -1197,6 +1194,7 @@ share/locale/da/LC_MESSAGES/kdessh.mo share/locale/da/LC_MESSAGES/kdesu.mo share/locale/da/LC_MESSAGES/kdesud.mo share/locale/da/LC_MESSAGES/kdf.mo +share/locale/da/LC_MESSAGES/kdgantt.mo share/locale/da/LC_MESSAGES/kdgantt1.mo share/locale/da/LC_MESSAGES/kdialog.mo share/locale/da/LC_MESSAGES/kdiamond.mo @@ -1246,12 +1244,15 @@ share/locale/da/LC_MESSAGES/khotnewstuff.mo share/locale/da/LC_MESSAGES/khtmlkttsd.mo share/locale/da/LC_MESSAGES/kiconfinder.mo share/locale/da/LC_MESSAGES/kig.mo +share/locale/da/LC_MESSAGES/killbots.mo share/locale/da/LC_MESSAGES/kimagemapeditor.mo share/locale/da/LC_MESSAGES/kinetd.mo share/locale/da/LC_MESSAGES/kinfocenter.mo share/locale/da/LC_MESSAGES/kio4.mo +share/locale/da/LC_MESSAGES/kio_applications.mo share/locale/da/LC_MESSAGES/kio_archive.mo share/locale/da/LC_MESSAGES/kio_audiocd.mo +share/locale/da/LC_MESSAGES/kio_bookmarks.mo share/locale/da/LC_MESSAGES/kio_finger.mo share/locale/da/LC_MESSAGES/kio_fish.mo share/locale/da/LC_MESSAGES/kio_floppy.mo @@ -1262,11 +1263,12 @@ share/locale/da/LC_MESSAGES/kio_jabberdisco.mo share/locale/da/LC_MESSAGES/kio_ldap.mo share/locale/da/LC_MESSAGES/kio_man.mo share/locale/da/LC_MESSAGES/kio_mbox.mo +share/locale/da/LC_MESSAGES/kio_nepomuksearch.mo share/locale/da/LC_MESSAGES/kio_nfs.mo share/locale/da/LC_MESSAGES/kio_nntp.mo +share/locale/da/LC_MESSAGES/kio_perldoc.mo share/locale/da/LC_MESSAGES/kio_pop3.mo share/locale/da/LC_MESSAGES/kio_remote.mo -share/locale/da/LC_MESSAGES/kio_settings.mo share/locale/da/LC_MESSAGES/kio_sftp.mo share/locale/da/LC_MESSAGES/kio_sieve.mo share/locale/da/LC_MESSAGES/kio_smb.mo @@ -1326,10 +1328,10 @@ share/locale/da/LC_MESSAGES/kopete.mo share/locale/da/LC_MESSAGES/korganizer.mo share/locale/da/LC_MESSAGES/korn.mo share/locale/da/LC_MESSAGES/kpackage.mo +share/locale/da/LC_MESSAGES/kpartloader.mo share/locale/da/LC_MESSAGES/kpartsaver.mo share/locale/da/LC_MESSAGES/kpasswdserver.mo share/locale/da/LC_MESSAGES/kpat.mo -share/locale/da/LC_MESSAGES/kpercentage.mo share/locale/da/LC_MESSAGES/kpilot.mo share/locale/da/LC_MESSAGES/kppp.mo share/locale/da/LC_MESSAGES/kppplogview.mo @@ -1353,20 +1355,12 @@ share/locale/da/LC_MESSAGES/kreversi.mo share/locale/da/LC_MESSAGES/krfb.mo share/locale/da/LC_MESSAGES/kruler.mo share/locale/da/LC_MESSAGES/krunner.mo -share/locale/da/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/da/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/da/LC_MESSAGES/krunner_contacts.mo -share/locale/da/LC_MESSAGES/krunner_converterrunner.mo -share/locale/da/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/da/LC_MESSAGES/krunner_sessions.mo -share/locale/da/LC_MESSAGES/krunner_shellrunner.mo -share/locale/da/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/da/LC_MESSAGES/krunner_xesam.mo share/locale/da/LC_MESSAGES/ksame.mo share/locale/da/LC_MESSAGES/ksaneplugin.mo share/locale/da/LC_MESSAGES/ksayit.mo share/locale/da/LC_MESSAGES/kscd.mo share/locale/da/LC_MESSAGES/kscreensaver.mo +share/locale/da/LC_MESSAGES/ksendemail.mo share/locale/da/LC_MESSAGES/kshisen.mo share/locale/da/LC_MESSAGES/kshorturifilter.mo share/locale/da/LC_MESSAGES/ksirk.mo @@ -1383,6 +1377,7 @@ share/locale/da/LC_MESSAGES/kstyle_keramik_config.mo share/locale/da/LC_MESSAGES/kstyle_phase_config.mo share/locale/da/LC_MESSAGES/ksudoku.mo share/locale/da/LC_MESSAGES/ksysguard.mo +share/locale/da/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/da/LC_MESSAGES/ksystemlog.mo share/locale/da/LC_MESSAGES/ksystraycmd.mo share/locale/da/LC_MESSAGES/ksysv.mo @@ -1392,7 +1387,6 @@ share/locale/da/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/da/LC_MESSAGES/kthememanager.mo share/locale/da/LC_MESSAGES/ktimer.mo share/locale/da/LC_MESSAGES/ktimetracker.mo -share/locale/da/LC_MESSAGES/ktnef.mo share/locale/da/LC_MESSAGES/ktouch.mo share/locale/da/LC_MESSAGES/ktraderclient.mo share/locale/da/LC_MESSAGES/kttsd.mo @@ -1404,6 +1398,7 @@ share/locale/da/LC_MESSAGES/kuiserver.mo share/locale/da/LC_MESSAGES/kuiviewer.mo share/locale/da/LC_MESSAGES/kurifilter.mo share/locale/da/LC_MESSAGES/kuser.mo +share/locale/da/LC_MESSAGES/kwalletd.mo share/locale/da/LC_MESSAGES/kwalletmanager.mo share/locale/da/LC_MESSAGES/kwatchgnupg.mo share/locale/da/LC_MESSAGES/kweather.mo @@ -1450,11 +1445,14 @@ share/locale/da/LC_MESSAGES/libmailtransport.mo share/locale/da/LC_MESSAGES/liboktetacore.mo share/locale/da/LC_MESSAGES/libphonon.mo share/locale/da/LC_MESSAGES/libplasma.mo +share/locale/da/LC_MESSAGES/libplasmaclock.mo share/locale/da/LC_MESSAGES/libtaskmanager.mo share/locale/da/LC_MESSAGES/lokalize.mo share/locale/da/LC_MESSAGES/lskat.mo share/locale/da/LC_MESSAGES/marble.mo +share/locale/da/LC_MESSAGES/marble_qt.mo share/locale/da/LC_MESSAGES/nepomuk.mo +share/locale/da/LC_MESSAGES/nepomuksearch.mo share/locale/da/LC_MESSAGES/nsplugin.mo share/locale/da/LC_MESSAGES/okteta.mo share/locale/da/LC_MESSAGES/oktetapart.mo @@ -1464,6 +1462,7 @@ share/locale/da/LC_MESSAGES/okular_comicbook.mo share/locale/da/LC_MESSAGES/okular_djvu.mo share/locale/da/LC_MESSAGES/okular_dvi.mo share/locale/da/LC_MESSAGES/okular_epub.mo +share/locale/da/LC_MESSAGES/okular_fax.mo share/locale/da/LC_MESSAGES/okular_fictionbook.mo share/locale/da/LC_MESSAGES/okular_ghostview.mo share/locale/da/LC_MESSAGES/okular_kimgio.mo @@ -1476,10 +1475,15 @@ share/locale/da/LC_MESSAGES/parley.mo share/locale/da/LC_MESSAGES/phonon-xine.mo share/locale/da/LC_MESSAGES/phonon_gstreamer.mo share/locale/da/LC_MESSAGES/phonon_kde.mo +share/locale/da/LC_MESSAGES/plasma-overlay.mo +share/locale/da/LC_MESSAGES/plasma-shells-common.mo share/locale/da/LC_MESSAGES/plasma.mo share/locale/da/LC_MESSAGES/plasma_applet_battery.mo +share/locale/da/LC_MESSAGES/plasma_applet_bball.mo share/locale/da/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/da/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/da/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/da/LC_MESSAGES/plasma_applet_charselect.mo share/locale/da/LC_MESSAGES/plasma_applet_clock.mo share/locale/da/LC_MESSAGES/plasma_applet_comic.mo share/locale/da/LC_MESSAGES/plasma_applet_desktop.mo @@ -1491,26 +1495,61 @@ share/locale/da/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/da/LC_MESSAGES/plasma_applet_folderview.mo share/locale/da/LC_MESSAGES/plasma_applet_frame.mo share/locale/da/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/da/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/da/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/da/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/da/LC_MESSAGES/plasma_applet_katesession.mo share/locale/da/LC_MESSAGES/plasma_applet_kget.mo -share/locale/da/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/da/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/da/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/da/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/da/LC_MESSAGES/plasma_applet_life.mo share/locale/da/LC_MESSAGES/plasma_applet_luna.mo +share/locale/da/LC_MESSAGES/plasma_applet_news.mo share/locale/da/LC_MESSAGES/plasma_applet_notes.mo share/locale/da/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/da/LC_MESSAGES/plasma_applet_pager.mo share/locale/da/LC_MESSAGES/plasma_applet_panel.mo +share/locale/da/LC_MESSAGES/plasma_applet_paste.mo +share/locale/da/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/da/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/da/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/da/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/da/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/da/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/da/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/da/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/da/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/da/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/da/LC_MESSAGES/plasma_applet_timer.mo share/locale/da/LC_MESSAGES/plasma_applet_trash.mo share/locale/da/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/da/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/da/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/da/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/da/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/da/LC_MESSAGES/plasma_engine_dict.mo +share/locale/da/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/da/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/da/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/da/LC_MESSAGES/plasma_engine_rss.mo +share/locale/da/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/da/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/da/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/da/LC_MESSAGES/plasma_runner_locations.mo +share/locale/da/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/da/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/da/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/da/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/da/LC_MESSAGES/plasma_runner_shell.mo +share/locale/da/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/da/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/da/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/da/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/da/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/da/LC_MESSAGES/plasmaengineexplorer.mo share/locale/da/LC_MESSAGES/plasmapkg.mo share/locale/da/LC_MESSAGES/plasmoidviewer.mo +share/locale/da/LC_MESSAGES/powerdevil.mo share/locale/da/LC_MESSAGES/printer-applet.mo share/locale/da/LC_MESSAGES/processcore.mo share/locale/da/LC_MESSAGES/processui.mo @@ -1522,10 +1561,12 @@ share/locale/da/LC_MESSAGES/solidcontrol.mo share/locale/da/LC_MESSAGES/soliduiserver.mo share/locale/da/LC_MESSAGES/spy.mo share/locale/da/LC_MESSAGES/step.mo +share/locale/da/LC_MESSAGES/step_qt.mo share/locale/da/LC_MESSAGES/strigila_diff.mo share/locale/da/LC_MESSAGES/superkaramba.mo share/locale/da/LC_MESSAGES/svgpart.mo share/locale/da/LC_MESSAGES/sweeper.mo +share/locale/da/LC_MESSAGES/system-config-printer-kde.mo share/locale/da/LC_MESSAGES/systemsettings.mo share/locale/da/LC_MESSAGES/timezones4.mo share/locale/da/LC_MESSAGES/umbrello.mo @@ -1603,6 +1644,7 @@ share/locale/da/entry.desktop @dirrm share/doc/HTML/da/kjumpingcube @dirrm share/doc/HTML/da/kjots @dirrm share/doc/HTML/da/kiten +@dirrm share/doc/HTML/da/kioslave/kioslave @dirrm share/doc/HTML/da/kioslave @dirrm share/doc/HTML/da/kinfocenter/xserver @dirrm share/doc/HTML/da/kinfocenter/usb @@ -1726,3 +1768,6 @@ share/locale/da/entry.desktop @dirrm share/apps/klettres/da @dirrm share/apps/klettres @dirrm share/apps/khangman +@dirrmtry man/da/man6 +@dirrmtry man/da/man1 +@dirrmtry man/da diff --git a/misc/kde4-l10n-el/distinfo b/misc/kde4-l10n-el/distinfo index c27f6b2f8551..df69ba15cb50 100644 --- a/misc/kde4-l10n-el/distinfo +++ b/misc/kde4-l10n-el/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-el-4.1.4.tar.bz2) = 4b80c39785839da001190a38c8e7266b -SHA256 (KDE/kde-l10n/kde-l10n-el-4.1.4.tar.bz2) = 7f6046f777f48490ff0105326be2e96de1ae7ec70ae694262a449e24d43c73e4 -SIZE (KDE/kde-l10n/kde-l10n-el-4.1.4.tar.bz2) = 1933327 +MD5 (KDE/kde-l10n/kde-l10n-el-4.2.0.tar.bz2) = 2bbfca0b7a1366aee558804105b176cb +SHA256 (KDE/kde-l10n/kde-l10n-el-4.2.0.tar.bz2) = 72353ddec12ac799072ea60c886cd1d7e4416c1fbafd033a27c262cb26423b70 +SIZE (KDE/kde-l10n/kde-l10n-el-4.2.0.tar.bz2) = 2127041 diff --git a/misc/kde4-l10n-el/pkg-plist b/misc/kde4-l10n-el/pkg-plist index 44730835abe7..3f75baadfb26 100644 --- a/misc/kde4-l10n-el/pkg-plist +++ b/misc/kde4-l10n-el/pkg-plist @@ -10,6 +10,7 @@ share/locale/el/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/el/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/el/LC_MESSAGES/audiorename_plugin.mo share/locale/el/LC_MESSAGES/blinken.mo +share/locale/el/LC_MESSAGES/bomber.mo share/locale/el/LC_MESSAGES/bovo.mo share/locale/el/LC_MESSAGES/cervisia.mo share/locale/el/LC_MESSAGES/cvsservice.mo @@ -24,6 +25,7 @@ share/locale/el/LC_MESSAGES/imagerename_plugin.mo share/locale/el/LC_MESSAGES/joystick.mo share/locale/el/LC_MESSAGES/juk.mo share/locale/el/LC_MESSAGES/kabc.mo +share/locale/el/LC_MESSAGES/kabc_akonadi.mo share/locale/el/LC_MESSAGES/kabc_dir.mo share/locale/el/LC_MESSAGES/kabc_file.mo share/locale/el/LC_MESSAGES/kabc_ldapkio.mo @@ -37,10 +39,14 @@ share/locale/el/LC_MESSAGES/kaddressbook.mo share/locale/el/LC_MESSAGES/kalarm.mo share/locale/el/LC_MESSAGES/kalgebra.mo share/locale/el/LC_MESSAGES/kalzium.mo +share/locale/el/LC_MESSAGES/kalzium_qt.mo share/locale/el/LC_MESSAGES/kanagram.mo +share/locale/el/LC_MESSAGES/kapman.mo share/locale/el/LC_MESSAGES/kappfinder.mo share/locale/el/LC_MESSAGES/kapptemplate.mo +share/locale/el/LC_MESSAGES/kate-ctags-plugin.mo share/locale/el/LC_MESSAGES/kate.mo +share/locale/el/LC_MESSAGES/katebuild-plugin.mo share/locale/el/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/el/LC_MESSAGES/katefilebrowserplugin.mo share/locale/el/LC_MESSAGES/katefiletemplates.mo @@ -51,7 +57,6 @@ share/locale/el/LC_MESSAGES/kateinsertcommand.mo share/locale/el/LC_MESSAGES/katekjswrapper.mo share/locale/el/LC_MESSAGES/katekonsoleplugin.mo share/locale/el/LC_MESSAGES/katemailfilesplugin.mo -share/locale/el/LC_MESSAGES/katemake.mo share/locale/el/LC_MESSAGES/kateopenheader.mo share/locale/el/LC_MESSAGES/katepart4.mo share/locale/el/LC_MESSAGES/katepybrowse.mo @@ -70,14 +75,14 @@ share/locale/el/LC_MESSAGES/kblocks.mo share/locale/el/LC_MESSAGES/kbounce.mo share/locale/el/LC_MESSAGES/kbreakout.mo share/locale/el/LC_MESSAGES/kbruch.mo -share/locale/el/LC_MESSAGES/kbstateapplet.mo share/locale/el/LC_MESSAGES/kbugbuster.mo share/locale/el/LC_MESSAGES/kcachegrind.mo share/locale/el/LC_MESSAGES/kcalc.mo share/locale/el/LC_MESSAGES/kcertpart.mo share/locale/el/LC_MESSAGES/kcharselect.mo -share/locale/el/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/el/LC_MESSAGES/kcm_akonadi.mo share/locale/el/LC_MESSAGES/kcm_autostart.mo +share/locale/el/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/el/LC_MESSAGES/kcm_emoticons.mo share/locale/el/LC_MESSAGES/kcm_krfb.mo share/locale/el/LC_MESSAGES/kcm_kwindesktop.mo @@ -87,6 +92,7 @@ share/locale/el/LC_MESSAGES/kcm_pci.mo share/locale/el/LC_MESSAGES/kcm_phonon.mo share/locale/el/LC_MESSAGES/kcm_phononxine.mo share/locale/el/LC_MESSAGES/kcm_solid.mo +share/locale/el/LC_MESSAGES/kcm_standard_actions.mo share/locale/el/LC_MESSAGES/kcmaccess.mo share/locale/el/LC_MESSAGES/kcmaudiocd.mo share/locale/el/LC_MESSAGES/kcmbackground.mo @@ -136,7 +142,6 @@ share/locale/el/LC_MESSAGES/kcmsmartcard.mo share/locale/el/LC_MESSAGES/kcmsmserver.mo share/locale/el/LC_MESSAGES/kcmsolidproc.mo share/locale/el/LC_MESSAGES/kcmstyle.mo -share/locale/el/LC_MESSAGES/kcmtaskbar.mo share/locale/el/LC_MESSAGES/kcmusb.mo share/locale/el/LC_MESSAGES/kcmview1394.mo share/locale/el/LC_MESSAGES/kcmxinerama.mo @@ -144,7 +149,9 @@ share/locale/el/LC_MESSAGES/kcolorchooser.mo share/locale/el/LC_MESSAGES/kcron.mo share/locale/el/LC_MESSAGES/kdat.mo share/locale/el/LC_MESSAGES/kde-menu.mo +share/locale/el/LC_MESSAGES/kdeasciiquarium.mo share/locale/el/LC_MESSAGES/kdebugdialog.mo +share/locale/el/LC_MESSAGES/kded_phononserver.mo share/locale/el/LC_MESSAGES/kdelibs4.mo share/locale/el/LC_MESSAGES/kdelibs_colors4.mo share/locale/el/LC_MESSAGES/kdepasswd.mo @@ -155,6 +162,7 @@ share/locale/el/LC_MESSAGES/kdessh.mo share/locale/el/LC_MESSAGES/kdesu.mo share/locale/el/LC_MESSAGES/kdesud.mo share/locale/el/LC_MESSAGES/kdf.mo +share/locale/el/LC_MESSAGES/kdgantt.mo share/locale/el/LC_MESSAGES/kdgantt1.mo share/locale/el/LC_MESSAGES/kdialog.mo share/locale/el/LC_MESSAGES/kdiamond.mo @@ -204,12 +212,15 @@ share/locale/el/LC_MESSAGES/khotnewstuff.mo share/locale/el/LC_MESSAGES/khtmlkttsd.mo share/locale/el/LC_MESSAGES/kiconfinder.mo share/locale/el/LC_MESSAGES/kig.mo +share/locale/el/LC_MESSAGES/killbots.mo share/locale/el/LC_MESSAGES/kimagemapeditor.mo share/locale/el/LC_MESSAGES/kinetd.mo share/locale/el/LC_MESSAGES/kinfocenter.mo share/locale/el/LC_MESSAGES/kio4.mo +share/locale/el/LC_MESSAGES/kio_applications.mo share/locale/el/LC_MESSAGES/kio_archive.mo share/locale/el/LC_MESSAGES/kio_audiocd.mo +share/locale/el/LC_MESSAGES/kio_bookmarks.mo share/locale/el/LC_MESSAGES/kio_finger.mo share/locale/el/LC_MESSAGES/kio_fish.mo share/locale/el/LC_MESSAGES/kio_floppy.mo @@ -220,11 +231,12 @@ share/locale/el/LC_MESSAGES/kio_jabberdisco.mo share/locale/el/LC_MESSAGES/kio_ldap.mo share/locale/el/LC_MESSAGES/kio_man.mo share/locale/el/LC_MESSAGES/kio_mbox.mo +share/locale/el/LC_MESSAGES/kio_nepomuksearch.mo share/locale/el/LC_MESSAGES/kio_nfs.mo share/locale/el/LC_MESSAGES/kio_nntp.mo +share/locale/el/LC_MESSAGES/kio_perldoc.mo share/locale/el/LC_MESSAGES/kio_pop3.mo share/locale/el/LC_MESSAGES/kio_remote.mo -share/locale/el/LC_MESSAGES/kio_settings.mo share/locale/el/LC_MESSAGES/kio_sftp.mo share/locale/el/LC_MESSAGES/kio_sieve.mo share/locale/el/LC_MESSAGES/kio_smb.mo @@ -284,10 +296,10 @@ share/locale/el/LC_MESSAGES/kopete.mo share/locale/el/LC_MESSAGES/korganizer.mo share/locale/el/LC_MESSAGES/korn.mo share/locale/el/LC_MESSAGES/kpackage.mo +share/locale/el/LC_MESSAGES/kpartloader.mo share/locale/el/LC_MESSAGES/kpartsaver.mo share/locale/el/LC_MESSAGES/kpasswdserver.mo share/locale/el/LC_MESSAGES/kpat.mo -share/locale/el/LC_MESSAGES/kpercentage.mo share/locale/el/LC_MESSAGES/kpilot.mo share/locale/el/LC_MESSAGES/kppp.mo share/locale/el/LC_MESSAGES/kppplogview.mo @@ -311,20 +323,12 @@ share/locale/el/LC_MESSAGES/kreversi.mo share/locale/el/LC_MESSAGES/krfb.mo share/locale/el/LC_MESSAGES/kruler.mo share/locale/el/LC_MESSAGES/krunner.mo -share/locale/el/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/el/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/el/LC_MESSAGES/krunner_contacts.mo -share/locale/el/LC_MESSAGES/krunner_converterrunner.mo -share/locale/el/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/el/LC_MESSAGES/krunner_sessions.mo -share/locale/el/LC_MESSAGES/krunner_shellrunner.mo -share/locale/el/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/el/LC_MESSAGES/krunner_xesam.mo share/locale/el/LC_MESSAGES/ksame.mo share/locale/el/LC_MESSAGES/ksaneplugin.mo share/locale/el/LC_MESSAGES/ksayit.mo share/locale/el/LC_MESSAGES/kscd.mo share/locale/el/LC_MESSAGES/kscreensaver.mo +share/locale/el/LC_MESSAGES/ksendemail.mo share/locale/el/LC_MESSAGES/kshisen.mo share/locale/el/LC_MESSAGES/kshorturifilter.mo share/locale/el/LC_MESSAGES/ksirk.mo @@ -341,6 +345,7 @@ share/locale/el/LC_MESSAGES/kstyle_keramik_config.mo share/locale/el/LC_MESSAGES/kstyle_phase_config.mo share/locale/el/LC_MESSAGES/ksudoku.mo share/locale/el/LC_MESSAGES/ksysguard.mo +share/locale/el/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/el/LC_MESSAGES/ksystemlog.mo share/locale/el/LC_MESSAGES/ksystraycmd.mo share/locale/el/LC_MESSAGES/ksysv.mo @@ -350,7 +355,6 @@ share/locale/el/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/el/LC_MESSAGES/kthememanager.mo share/locale/el/LC_MESSAGES/ktimer.mo share/locale/el/LC_MESSAGES/ktimetracker.mo -share/locale/el/LC_MESSAGES/ktnef.mo share/locale/el/LC_MESSAGES/ktouch.mo share/locale/el/LC_MESSAGES/ktraderclient.mo share/locale/el/LC_MESSAGES/kttsd.mo @@ -362,6 +366,7 @@ share/locale/el/LC_MESSAGES/kuiserver.mo share/locale/el/LC_MESSAGES/kuiviewer.mo share/locale/el/LC_MESSAGES/kurifilter.mo share/locale/el/LC_MESSAGES/kuser.mo +share/locale/el/LC_MESSAGES/kwalletd.mo share/locale/el/LC_MESSAGES/kwalletmanager.mo share/locale/el/LC_MESSAGES/kwatchgnupg.mo share/locale/el/LC_MESSAGES/kweather.mo @@ -408,11 +413,14 @@ share/locale/el/LC_MESSAGES/libmailtransport.mo share/locale/el/LC_MESSAGES/liboktetacore.mo share/locale/el/LC_MESSAGES/libphonon.mo share/locale/el/LC_MESSAGES/libplasma.mo +share/locale/el/LC_MESSAGES/libplasmaclock.mo share/locale/el/LC_MESSAGES/libtaskmanager.mo share/locale/el/LC_MESSAGES/lokalize.mo share/locale/el/LC_MESSAGES/lskat.mo share/locale/el/LC_MESSAGES/marble.mo +share/locale/el/LC_MESSAGES/marble_qt.mo share/locale/el/LC_MESSAGES/nepomuk.mo +share/locale/el/LC_MESSAGES/nepomuksearch.mo share/locale/el/LC_MESSAGES/nsplugin.mo share/locale/el/LC_MESSAGES/okteta.mo share/locale/el/LC_MESSAGES/oktetapart.mo @@ -422,6 +430,7 @@ share/locale/el/LC_MESSAGES/okular_comicbook.mo share/locale/el/LC_MESSAGES/okular_djvu.mo share/locale/el/LC_MESSAGES/okular_dvi.mo share/locale/el/LC_MESSAGES/okular_epub.mo +share/locale/el/LC_MESSAGES/okular_fax.mo share/locale/el/LC_MESSAGES/okular_fictionbook.mo share/locale/el/LC_MESSAGES/okular_ghostview.mo share/locale/el/LC_MESSAGES/okular_kimgio.mo @@ -434,10 +443,15 @@ share/locale/el/LC_MESSAGES/parley.mo share/locale/el/LC_MESSAGES/phonon-xine.mo share/locale/el/LC_MESSAGES/phonon_gstreamer.mo share/locale/el/LC_MESSAGES/phonon_kde.mo +share/locale/el/LC_MESSAGES/plasma-overlay.mo +share/locale/el/LC_MESSAGES/plasma-shells-common.mo share/locale/el/LC_MESSAGES/plasma.mo share/locale/el/LC_MESSAGES/plasma_applet_battery.mo +share/locale/el/LC_MESSAGES/plasma_applet_bball.mo share/locale/el/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/el/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/el/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/el/LC_MESSAGES/plasma_applet_charselect.mo share/locale/el/LC_MESSAGES/plasma_applet_clock.mo share/locale/el/LC_MESSAGES/plasma_applet_comic.mo share/locale/el/LC_MESSAGES/plasma_applet_desktop.mo @@ -449,26 +463,61 @@ share/locale/el/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/el/LC_MESSAGES/plasma_applet_folderview.mo share/locale/el/LC_MESSAGES/plasma_applet_frame.mo share/locale/el/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/el/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/el/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/el/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/el/LC_MESSAGES/plasma_applet_katesession.mo share/locale/el/LC_MESSAGES/plasma_applet_kget.mo -share/locale/el/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/el/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/el/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/el/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/el/LC_MESSAGES/plasma_applet_life.mo share/locale/el/LC_MESSAGES/plasma_applet_luna.mo +share/locale/el/LC_MESSAGES/plasma_applet_news.mo share/locale/el/LC_MESSAGES/plasma_applet_notes.mo share/locale/el/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/el/LC_MESSAGES/plasma_applet_pager.mo share/locale/el/LC_MESSAGES/plasma_applet_panel.mo +share/locale/el/LC_MESSAGES/plasma_applet_paste.mo +share/locale/el/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/el/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/el/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/el/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/el/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/el/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/el/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/el/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/el/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/el/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/el/LC_MESSAGES/plasma_applet_timer.mo share/locale/el/LC_MESSAGES/plasma_applet_trash.mo share/locale/el/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/el/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/el/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/el/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/el/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/el/LC_MESSAGES/plasma_engine_dict.mo +share/locale/el/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/el/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/el/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/el/LC_MESSAGES/plasma_engine_rss.mo +share/locale/el/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/el/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/el/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/el/LC_MESSAGES/plasma_runner_locations.mo +share/locale/el/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/el/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/el/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/el/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/el/LC_MESSAGES/plasma_runner_shell.mo +share/locale/el/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/el/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/el/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/el/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/el/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/el/LC_MESSAGES/plasmaengineexplorer.mo share/locale/el/LC_MESSAGES/plasmapkg.mo share/locale/el/LC_MESSAGES/plasmoidviewer.mo +share/locale/el/LC_MESSAGES/powerdevil.mo share/locale/el/LC_MESSAGES/printer-applet.mo share/locale/el/LC_MESSAGES/processcore.mo share/locale/el/LC_MESSAGES/processui.mo @@ -480,10 +529,12 @@ share/locale/el/LC_MESSAGES/solidcontrol.mo share/locale/el/LC_MESSAGES/soliduiserver.mo share/locale/el/LC_MESSAGES/spy.mo share/locale/el/LC_MESSAGES/step.mo +share/locale/el/LC_MESSAGES/step_qt.mo share/locale/el/LC_MESSAGES/strigila_diff.mo share/locale/el/LC_MESSAGES/superkaramba.mo share/locale/el/LC_MESSAGES/svgpart.mo share/locale/el/LC_MESSAGES/sweeper.mo +share/locale/el/LC_MESSAGES/system-config-printer-kde.mo share/locale/el/LC_MESSAGES/systemsettings.mo share/locale/el/LC_MESSAGES/timezones4.mo share/locale/el/LC_MESSAGES/umbrello.mo diff --git a/misc/kde4-l10n-en_GB/distinfo b/misc/kde4-l10n-en_GB/distinfo index 018eaff1c880..59c5befc98e9 100644 --- a/misc/kde4-l10n-en_GB/distinfo +++ b/misc/kde4-l10n-en_GB/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-en_GB-4.1.4.tar.bz2) = 42f851c5f7e4432894483bf85ecb9076 -SHA256 (KDE/kde-l10n/kde-l10n-en_GB-4.1.4.tar.bz2) = 7768d11b1a45fd6873427c908d88048b639ef447b66b35a1570e6648eb1dd228 -SIZE (KDE/kde-l10n/kde-l10n-en_GB-4.1.4.tar.bz2) = 3459817 +MD5 (KDE/kde-l10n/kde-l10n-en_GB-4.2.0.tar.bz2) = 12814406b6d35d8098a6cd16f49f827e +SHA256 (KDE/kde-l10n/kde-l10n-en_GB-4.2.0.tar.bz2) = 2640fa292cc76bd0c5921fdea646b6670dec496bbdde80996108ea19704dd733 +SIZE (KDE/kde-l10n/kde-l10n-en_GB-4.2.0.tar.bz2) = 3515456 diff --git a/misc/kde4-l10n-en_GB/pkg-plist b/misc/kde4-l10n-en_GB/pkg-plist index a6c4f2d1dc48..1f144dea2473 100644 --- a/misc/kde4-l10n-en_GB/pkg-plist +++ b/misc/kde4-l10n-en_GB/pkg-plist @@ -320,48 +320,48 @@ share/doc/HTML/en_GB/kinfocenter/usb/index.docbook share/doc/HTML/en_GB/kinfocenter/xserver/common share/doc/HTML/en_GB/kinfocenter/xserver/index.cache.bz2 share/doc/HTML/en_GB/kinfocenter/xserver/index.docbook -share/doc/HTML/en_GB/kioslave/bzip.docbook -share/doc/HTML/en_GB/kioslave/bzip2.docbook -share/doc/HTML/en_GB/kioslave/cgi.docbook -share/doc/HTML/en_GB/kioslave/common -share/doc/HTML/en_GB/kioslave/data.docbook -share/doc/HTML/en_GB/kioslave/file.docbook -share/doc/HTML/en_GB/kioslave/finger.docbook -share/doc/HTML/en_GB/kioslave/fish.docbook -share/doc/HTML/en_GB/kioslave/floppy.docbook -share/doc/HTML/en_GB/kioslave/ftp.docbook -share/doc/HTML/en_GB/kioslave/gopher.docbook -share/doc/HTML/en_GB/kioslave/gzip.docbook -share/doc/HTML/en_GB/kioslave/help.docbook -share/doc/HTML/en_GB/kioslave/http.docbook -share/doc/HTML/en_GB/kioslave/https.docbook -share/doc/HTML/en_GB/kioslave/imap.docbook -share/doc/HTML/en_GB/kioslave/imaps.docbook -share/doc/HTML/en_GB/kioslave/index.cache.bz2 -share/doc/HTML/en_GB/kioslave/index.docbook -share/doc/HTML/en_GB/kioslave/info.docbook -share/doc/HTML/en_GB/kioslave/lan.docbook -share/doc/HTML/en_GB/kioslave/ldap.docbook -share/doc/HTML/en_GB/kioslave/mac.docbook -share/doc/HTML/en_GB/kioslave/mailto.docbook -share/doc/HTML/en_GB/kioslave/man.docbook -share/doc/HTML/en_GB/kioslave/mrml.docbook -share/doc/HTML/en_GB/kioslave/news.docbook -share/doc/HTML/en_GB/kioslave/nfs.docbook -share/doc/HTML/en_GB/kioslave/nntp.docbook -share/doc/HTML/en_GB/kioslave/pop3.docbook -share/doc/HTML/en_GB/kioslave/pop3s.docbook -share/doc/HTML/en_GB/kioslave/print.docbook -share/doc/HTML/en_GB/kioslave/rlan.docbook -share/doc/HTML/en_GB/kioslave/rlogin.docbook -share/doc/HTML/en_GB/kioslave/sftp.docbook -share/doc/HTML/en_GB/kioslave/smb.docbook -share/doc/HTML/en_GB/kioslave/smtp.docbook -share/doc/HTML/en_GB/kioslave/tar.docbook -share/doc/HTML/en_GB/kioslave/telnet.docbook -share/doc/HTML/en_GB/kioslave/thumbnail.docbook -share/doc/HTML/en_GB/kioslave/webdav.docbook -share/doc/HTML/en_GB/kioslave/webdavs.docbook +share/doc/HTML/en_GB/kioslave/kioslave/bzip.docbook +share/doc/HTML/en_GB/kioslave/kioslave/bzip2.docbook +share/doc/HTML/en_GB/kioslave/kioslave/cgi.docbook +share/doc/HTML/en_GB/kioslave/kioslave/common +share/doc/HTML/en_GB/kioslave/kioslave/data.docbook +share/doc/HTML/en_GB/kioslave/kioslave/file.docbook +share/doc/HTML/en_GB/kioslave/kioslave/finger.docbook +share/doc/HTML/en_GB/kioslave/kioslave/fish.docbook +share/doc/HTML/en_GB/kioslave/kioslave/floppy.docbook +share/doc/HTML/en_GB/kioslave/kioslave/ftp.docbook +share/doc/HTML/en_GB/kioslave/kioslave/gopher.docbook +share/doc/HTML/en_GB/kioslave/kioslave/gzip.docbook +share/doc/HTML/en_GB/kioslave/kioslave/help.docbook +share/doc/HTML/en_GB/kioslave/kioslave/http.docbook +share/doc/HTML/en_GB/kioslave/kioslave/https.docbook +share/doc/HTML/en_GB/kioslave/kioslave/imap.docbook +share/doc/HTML/en_GB/kioslave/kioslave/imaps.docbook +share/doc/HTML/en_GB/kioslave/kioslave/index.cache.bz2 +share/doc/HTML/en_GB/kioslave/kioslave/index.docbook +share/doc/HTML/en_GB/kioslave/kioslave/info.docbook +share/doc/HTML/en_GB/kioslave/kioslave/lan.docbook +share/doc/HTML/en_GB/kioslave/kioslave/ldap.docbook +share/doc/HTML/en_GB/kioslave/kioslave/mac.docbook +share/doc/HTML/en_GB/kioslave/kioslave/mailto.docbook +share/doc/HTML/en_GB/kioslave/kioslave/man.docbook +share/doc/HTML/en_GB/kioslave/kioslave/mrml.docbook +share/doc/HTML/en_GB/kioslave/kioslave/news.docbook +share/doc/HTML/en_GB/kioslave/kioslave/nfs.docbook +share/doc/HTML/en_GB/kioslave/kioslave/nntp.docbook +share/doc/HTML/en_GB/kioslave/kioslave/pop3.docbook +share/doc/HTML/en_GB/kioslave/kioslave/pop3s.docbook +share/doc/HTML/en_GB/kioslave/kioslave/print.docbook +share/doc/HTML/en_GB/kioslave/kioslave/rlan.docbook +share/doc/HTML/en_GB/kioslave/kioslave/rlogin.docbook +share/doc/HTML/en_GB/kioslave/kioslave/sftp.docbook +share/doc/HTML/en_GB/kioslave/kioslave/smb.docbook +share/doc/HTML/en_GB/kioslave/kioslave/smtp.docbook +share/doc/HTML/en_GB/kioslave/kioslave/tar.docbook +share/doc/HTML/en_GB/kioslave/kioslave/telnet.docbook +share/doc/HTML/en_GB/kioslave/kioslave/thumbnail.docbook +share/doc/HTML/en_GB/kioslave/kioslave/webdav.docbook +share/doc/HTML/en_GB/kioslave/kioslave/webdavs.docbook share/doc/HTML/en_GB/kleopatra/common share/doc/HTML/en_GB/kleopatra/index.cache.bz2 share/doc/HTML/en_GB/kleopatra/index.docbook @@ -545,6 +545,7 @@ share/locale/en_GB/LC_MESSAGES/kaccess.mo share/locale/en_GB/LC_MESSAGES/kaddressbook.mo share/locale/en_GB/LC_MESSAGES/kalarm.mo share/locale/en_GB/LC_MESSAGES/kalzium.mo +share/locale/en_GB/LC_MESSAGES/kalzium_qt.mo share/locale/en_GB/LC_MESSAGES/kanagram.mo share/locale/en_GB/LC_MESSAGES/kappfinder.mo share/locale/en_GB/LC_MESSAGES/kate.mo @@ -552,7 +553,6 @@ share/locale/en_GB/LC_MESSAGES/katefiletemplates.mo share/locale/en_GB/LC_MESSAGES/katehelloworld.mo share/locale/en_GB/LC_MESSAGES/katehtmltools.mo share/locale/en_GB/LC_MESSAGES/katekjswrapper.mo -share/locale/en_GB/LC_MESSAGES/katemake.mo share/locale/en_GB/LC_MESSAGES/kateopenheader.mo share/locale/en_GB/LC_MESSAGES/katepart4.mo share/locale/en_GB/LC_MESSAGES/katepybrowse.mo @@ -568,7 +568,6 @@ share/locale/en_GB/LC_MESSAGES/kblackbox.mo share/locale/en_GB/LC_MESSAGES/kblankscrn.mo share/locale/en_GB/LC_MESSAGES/kbounce.mo share/locale/en_GB/LC_MESSAGES/kbruch.mo -share/locale/en_GB/LC_MESSAGES/kbstateapplet.mo share/locale/en_GB/LC_MESSAGES/kbugbuster.mo share/locale/en_GB/LC_MESSAGES/kcachegrind.mo share/locale/en_GB/LC_MESSAGES/kcalc.mo @@ -582,7 +581,6 @@ share/locale/en_GB/LC_MESSAGES/kcm_memory.mo share/locale/en_GB/LC_MESSAGES/kcm_partition.mo share/locale/en_GB/LC_MESSAGES/kcm_pci.mo share/locale/en_GB/LC_MESSAGES/kcm_phonon.mo -share/locale/en_GB/LC_MESSAGES/kcm_phononxine.mo share/locale/en_GB/LC_MESSAGES/kcm_solid.mo share/locale/en_GB/LC_MESSAGES/kcmaccess.mo share/locale/en_GB/LC_MESSAGES/kcmaudiocd.mo @@ -633,7 +631,6 @@ share/locale/en_GB/LC_MESSAGES/kcmsmartcard.mo share/locale/en_GB/LC_MESSAGES/kcmsmserver.mo share/locale/en_GB/LC_MESSAGES/kcmsolidproc.mo share/locale/en_GB/LC_MESSAGES/kcmstyle.mo -share/locale/en_GB/LC_MESSAGES/kcmtaskbar.mo share/locale/en_GB/LC_MESSAGES/kcmusb.mo share/locale/en_GB/LC_MESSAGES/kcmview1394.mo share/locale/en_GB/LC_MESSAGES/kcmxinerama.mo @@ -704,6 +701,7 @@ share/locale/en_GB/LC_MESSAGES/kimagemapeditor.mo share/locale/en_GB/LC_MESSAGES/kinetd.mo share/locale/en_GB/LC_MESSAGES/kinfocenter.mo share/locale/en_GB/LC_MESSAGES/kio4.mo +share/locale/en_GB/LC_MESSAGES/kio_applications.mo share/locale/en_GB/LC_MESSAGES/kio_archive.mo share/locale/en_GB/LC_MESSAGES/kio_audiocd.mo share/locale/en_GB/LC_MESSAGES/kio_finger.mo @@ -719,7 +717,6 @@ share/locale/en_GB/LC_MESSAGES/kio_nfs.mo share/locale/en_GB/LC_MESSAGES/kio_nntp.mo share/locale/en_GB/LC_MESSAGES/kio_pop3.mo share/locale/en_GB/LC_MESSAGES/kio_remote.mo -share/locale/en_GB/LC_MESSAGES/kio_settings.mo share/locale/en_GB/LC_MESSAGES/kio_sftp.mo share/locale/en_GB/LC_MESSAGES/kio_sieve.mo share/locale/en_GB/LC_MESSAGES/kio_smb.mo @@ -773,7 +770,6 @@ share/locale/en_GB/LC_MESSAGES/kpackage.mo share/locale/en_GB/LC_MESSAGES/kpartsaver.mo share/locale/en_GB/LC_MESSAGES/kpasswdserver.mo share/locale/en_GB/LC_MESSAGES/kpat.mo -share/locale/en_GB/LC_MESSAGES/kpercentage.mo share/locale/en_GB/LC_MESSAGES/kpilot.mo share/locale/en_GB/LC_MESSAGES/kppp.mo share/locale/en_GB/LC_MESSAGES/kppplogview.mo @@ -795,11 +791,6 @@ share/locale/en_GB/LC_MESSAGES/kreversi.mo share/locale/en_GB/LC_MESSAGES/krfb.mo share/locale/en_GB/LC_MESSAGES/kruler.mo share/locale/en_GB/LC_MESSAGES/krunner.mo -share/locale/en_GB/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/en_GB/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/en_GB/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/en_GB/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/en_GB/LC_MESSAGES/krunner_xesam.mo share/locale/en_GB/LC_MESSAGES/ksame.mo share/locale/en_GB/LC_MESSAGES/ksayit.mo share/locale/en_GB/LC_MESSAGES/kscd.mo @@ -825,7 +816,6 @@ share/locale/en_GB/LC_MESSAGES/ktexteditor_plugins.mo share/locale/en_GB/LC_MESSAGES/kthememanager.mo share/locale/en_GB/LC_MESSAGES/ktimer.mo share/locale/en_GB/LC_MESSAGES/ktimetracker.mo -share/locale/en_GB/LC_MESSAGES/ktnef.mo share/locale/en_GB/LC_MESSAGES/ktouch.mo share/locale/en_GB/LC_MESSAGES/ktraderclient.mo share/locale/en_GB/LC_MESSAGES/kttsd.mo @@ -894,12 +884,12 @@ share/locale/en_GB/LC_MESSAGES/plasma_applet_clock.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_desktop.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_devicenotifier.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_dig_clock.mo -share/locale/en_GB/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_launcher.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_pager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_tasks.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_trash.mo -share/locale/en_GB/LC_MESSAGES/plasma_engine_dict.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_locations.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/en_GB/LC_MESSAGES/plasmaengineexplorer.mo share/locale/en_GB/LC_MESSAGES/plasmapkg.mo share/locale/en_GB/LC_MESSAGES/printer-applet.mo @@ -937,6 +927,7 @@ share/locale/en_GB/entry.desktop @dirrm share/doc/HTML/en_GB/kmenuedit @dirrm share/doc/HTML/en_GB/klipper @dirrm share/doc/HTML/en_GB/kleopatra +@dirrm share/doc/HTML/en_GB/kioslave/kioslave @dirrm share/doc/HTML/en_GB/kioslave @dirrm share/doc/HTML/en_GB/kinfocenter/xserver @dirrm share/doc/HTML/en_GB/kinfocenter/usb diff --git a/misc/kde4-l10n-eo/Makefile b/misc/kde4-l10n-eo/Makefile index 7cfc517ca12a..a339b927303a 100644 --- a/misc/kde4-l10n-eo/Makefile +++ b/misc/kde4-l10n-eo/Makefile @@ -6,7 +6,7 @@ # PORTNAME= kde-l10n -PORTVERSION= ${KDE4_VERSION} +PORTVERSION= 4.1.4 CATEGORIES= misc kde MAINTAINER= kde@FreeBSD.org diff --git a/misc/kde4-l10n-es/Makefile b/misc/kde4-l10n-es/Makefile index 7d207aad49ac..ba35fa854b4b 100644 --- a/misc/kde4-l10n-es/Makefile +++ b/misc/kde4-l10n-es/Makefile @@ -14,6 +14,9 @@ COMMENT= Spanish messages and documentation for KDE4 KDE4_L10N= es +MANLANG= ${KDE4_L10N} +.include <${.CURDIR}/Makefile.man> + post-extract: ${MKDIR} ${WRKSRC}/build diff --git a/misc/kde4-l10n-es/distinfo b/misc/kde4-l10n-es/distinfo index ddcba25f8c97..169e2e8af571 100644 --- a/misc/kde4-l10n-es/distinfo +++ b/misc/kde4-l10n-es/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-es-4.1.4.tar.bz2) = 0d2fed450def3f19704f34e8c9927054 -SHA256 (KDE/kde-l10n/kde-l10n-es-4.1.4.tar.bz2) = 4af4792946468c77183dace442030a785a25babfdafdfacdbcfbdf89af63dfd3 -SIZE (KDE/kde-l10n/kde-l10n-es-4.1.4.tar.bz2) = 16234413 +MD5 (KDE/kde-l10n/kde-l10n-es-4.2.0.tar.bz2) = e3b9bc8ef5573f7574e296385eb130a9 +SHA256 (KDE/kde-l10n/kde-l10n-es-4.2.0.tar.bz2) = e8f71c17a471cc12db74f9a428685d08e2d1e9a24f94a9397a3211cbaa07dac6 +SIZE (KDE/kde-l10n/kde-l10n-es-4.2.0.tar.bz2) = 15953509 diff --git a/misc/kde4-l10n-es/pkg-plist b/misc/kde4-l10n-es/pkg-plist index 1890339043da..1917b2460963 100644 --- a/misc/kde4-l10n-es/pkg-plist +++ b/misc/kde4-l10n-es/pkg-plist @@ -1,7 +1,3 @@ -share/apps/khangman/data/es/animals.kvtml -share/apps/khangman/data/es/easy.kvtml -share/apps/khangman/data/es/hard.kvtml -share/apps/khangman/data/es/medium.kvtml share/apps/khangman/es.txt share/apps/klettres/es/alpha/a.ogg share/apps/klettres/es/alpha/b.ogg @@ -215,12 +211,16 @@ share/apps/ktuberling/sounds/es/tesoro.wav share/apps/ktuberling/sounds/es/transportes.wav share/apps/ktuberling/sounds/es/tren.wav share/apps/ktuberling/sounds/es/vaca.wav +share/apps/kvtml/es/animals.kvtml share/apps/kvtml/es/computadoras.kvtml share/apps/kvtml/es/deportes.kvtml +share/apps/kvtml/es/easy.kvtml share/apps/kvtml/es/espacio.kvtml share/apps/kvtml/es/frutas.kvtml share/apps/kvtml/es/gente.kvtml +share/apps/kvtml/es/hard.kvtml share/apps/kvtml/es/inventos.kvtml +share/apps/kvtml/es/medium.kvtml share/apps/kvtml/es/monedas.kvtml share/apps/kvtml/es/numeros.kvtml share/apps/kvtml/es/objetos.kvtml @@ -250,9 +250,6 @@ share/doc/HTML/es/akregator/main-window4.png share/doc/HTML/es/akregator/quick-filter.png share/doc/HTML/es/akregator/rss.png share/doc/HTML/es/akregator/rss3.png -share/doc/HTML/es/aktion/common -share/doc/HTML/es/aktion/index.cache.bz2 -share/doc/HTML/es/aktion/index.docbook share/doc/HTML/es/amor/common share/doc/HTML/es/amor/index.cache.bz2 share/doc/HTML/es/amor/index.docbook @@ -270,12 +267,6 @@ share/doc/HTML/es/cervisia/index.docbook share/doc/HTML/es/dolphin/common share/doc/HTML/es/dolphin/index.cache.bz2 share/doc/HTML/es/dolphin/index.docbook -share/doc/HTML/es/flashkard/common -share/doc/HTML/es/flashkard/index.cache.bz2 -share/doc/HTML/es/flashkard/index.docbook -share/doc/HTML/es/irkick/common -share/doc/HTML/es/irkick/index.cache.bz2 -share/doc/HTML/es/irkick/index.docbook share/doc/HTML/es/juk/common share/doc/HTML/es/juk/index.cache.bz2 share/doc/HTML/es/juk/index.docbook @@ -292,16 +283,9 @@ share/doc/HTML/es/kalzium/man-kalzium.1.docbook share/doc/HTML/es/kalzium/screenshot1.png share/doc/HTML/es/kalzium/screenshot3.png share/doc/HTML/es/kalzium/settings.png -share/doc/HTML/es/kamera/common -share/doc/HTML/es/kamera/index.cache.bz2 -share/doc/HTML/es/kamera/index.docbook share/doc/HTML/es/kapptemplate/common share/doc/HTML/es/kapptemplate/index.cache.bz2 share/doc/HTML/es/kapptemplate/index.docbook -share/doc/HTML/es/kapptemplate/man-kapptemplate.1.docbook -share/doc/HTML/es/karm/common -share/doc/HTML/es/karm/index.cache.bz2 -share/doc/HTML/es/karm/index.docbook share/doc/HTML/es/kate-plugins/common share/doc/HTML/es/kate-plugins/filetemplates.docbook share/doc/HTML/es/kate-plugins/htmltools.docbook @@ -340,6 +324,9 @@ share/doc/HTML/es/kbattleship/index.docbook share/doc/HTML/es/kblackbox/common share/doc/HTML/es/kblackbox/index.cache.bz2 share/doc/HTML/es/kblackbox/index.docbook +share/doc/HTML/es/kblocks/common +share/doc/HTML/es/kblocks/index.cache.bz2 +share/doc/HTML/es/kblocks/index.docbook share/doc/HTML/es/kbounce/common share/doc/HTML/es/kbounce/index.cache.bz2 share/doc/HTML/es/kbounce/index.docbook @@ -370,9 +357,6 @@ share/doc/HTML/es/kcalc/index.docbook share/doc/HTML/es/kcharselect/common share/doc/HTML/es/kcharselect/index.cache.bz2 share/doc/HTML/es/kcharselect/index.docbook -share/doc/HTML/es/kcmlirc/common -share/doc/HTML/es/kcmlirc/index.cache.bz2 -share/doc/HTML/es/kcmlirc/index.docbook share/doc/HTML/es/kcontrol/autostart/common share/doc/HTML/es/kcontrol/autostart/index.cache.bz2 share/doc/HTML/es/kcontrol/autostart/index.docbook @@ -439,9 +423,6 @@ share/doc/HTML/es/kcontrol/icons/index.docbook share/doc/HTML/es/kcontrol/joystick/common share/doc/HTML/es/kcontrol/joystick/index.cache.bz2 share/doc/HTML/es/kcontrol/joystick/index.docbook -share/doc/HTML/es/kcontrol/kalarmd/common -share/doc/HTML/es/kcontrol/kalarmd/index.cache.bz2 -share/doc/HTML/es/kcontrol/kalarmd/index.docbook share/doc/HTML/es/kcontrol/kcmaccess/common share/doc/HTML/es/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmaccess/index.docbook @@ -454,18 +435,9 @@ share/doc/HTML/es/kcontrol/kcmdisplay/index.docbook share/doc/HTML/es/kcontrol/kcmkonsole/common share/doc/HTML/es/kcontrol/kcmkonsole/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmkonsole/index.docbook -share/doc/HTML/es/kcontrol/kcmktalkd/common -share/doc/HTML/es/kcontrol/kcmktalkd/index.cache.bz2 -share/doc/HTML/es/kcontrol/kcmktalkd/index.docbook share/doc/HTML/es/kcontrol/kcmlaunch/common share/doc/HTML/es/kcontrol/kcmlaunch/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmlaunch/index.docbook -share/doc/HTML/es/kcontrol/kcmlowbatcrit/common -share/doc/HTML/es/kcontrol/kcmlowbatcrit/index.cache.bz2 -share/doc/HTML/es/kcontrol/kcmlowbatcrit/index.docbook -share/doc/HTML/es/kcontrol/kcmlowbatwarn/common -share/doc/HTML/es/kcontrol/kcmlowbatwarn/index.cache.bz2 -share/doc/HTML/es/kcontrol/kcmlowbatwarn/index.docbook share/doc/HTML/es/kcontrol/kcmnotify/common share/doc/HTML/es/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmnotify/index.docbook @@ -497,18 +469,9 @@ share/doc/HTML/es/kcontrol/kwindecoration/index.docbook share/doc/HTML/es/kcontrol/kxkb/common share/doc/HTML/es/kcontrol/kxkb/index.cache.bz2 share/doc/HTML/es/kcontrol/kxkb/index.docbook -share/doc/HTML/es/kcontrol/kxmlrpcd/common -share/doc/HTML/es/kcontrol/kxmlrpcd/index.cache.bz2 -share/doc/HTML/es/kcontrol/kxmlrpcd/index.docbook share/doc/HTML/es/kcontrol/language/common share/doc/HTML/es/kcontrol/language/index.cache.bz2 share/doc/HTML/es/kcontrol/language/index.docbook -share/doc/HTML/es/kcontrol/laptop/common -share/doc/HTML/es/kcontrol/laptop/index.cache.bz2 -share/doc/HTML/es/kcontrol/laptop/index.docbook -share/doc/HTML/es/kcontrol/mouse/common -share/doc/HTML/es/kcontrol/mouse/index.cache.bz2 -share/doc/HTML/es/kcontrol/mouse/index.docbook share/doc/HTML/es/kcontrol/netpref/common share/doc/HTML/es/kcontrol/netpref/index.cache.bz2 share/doc/HTML/es/kcontrol/netpref/index.docbook @@ -527,9 +490,6 @@ share/doc/HTML/es/kcontrol/paths/index.docbook share/doc/HTML/es/kcontrol/performance/common share/doc/HTML/es/kcontrol/performance/index.cache.bz2 share/doc/HTML/es/kcontrol/performance/index.docbook -share/doc/HTML/es/kcontrol/powerctrl/common -share/doc/HTML/es/kcontrol/powerctrl/index.cache.bz2 -share/doc/HTML/es/kcontrol/powerctrl/index.docbook share/doc/HTML/es/kcontrol/proxy/common share/doc/HTML/es/kcontrol/proxy/index.cache.bz2 share/doc/HTML/es/kcontrol/proxy/index.docbook @@ -549,9 +509,12 @@ share/doc/HTML/es/kcontrol/splashscreen/index.docbook share/doc/HTML/es/kcontrol/useragent/common share/doc/HTML/es/kcontrol/useragent/index.cache.bz2 share/doc/HTML/es/kcontrol/useragent/index.docbook -share/doc/HTML/es/kcontrol/windowmanagement/common -share/doc/HTML/es/kcontrol/windowmanagement/index.cache.bz2 -share/doc/HTML/es/kcontrol/windowmanagement/index.docbook +share/doc/HTML/es/kcontrol/windowbehaviour/common +share/doc/HTML/es/kcontrol/windowbehaviour/index.cache.bz2 +share/doc/HTML/es/kcontrol/windowbehaviour/index.docbook +share/doc/HTML/es/kcontrol/windowspecific/common +share/doc/HTML/es/kcontrol/windowspecific/index.cache.bz2 +share/doc/HTML/es/kcontrol/windowspecific/index.docbook share/doc/HTML/es/kcron/common share/doc/HTML/es/kcron/index.cache.bz2 share/doc/HTML/es/kcron/index.docbook @@ -586,9 +549,6 @@ share/doc/HTML/es/kdm/index.cache.bz2 share/doc/HTML/es/kdm/index.docbook share/doc/HTML/es/kdm/kdmrc-ref.docbook share/doc/HTML/es/kdm/theme-ref.docbook -share/doc/HTML/es/kedit/common -share/doc/HTML/es/kedit/index.cache.bz2 -share/doc/HTML/es/kedit/index.docbook share/doc/HTML/es/kfilereplace/common share/doc/HTML/es/kfilereplace/index.cache.bz2 share/doc/HTML/es/kfilereplace/index.docbook @@ -652,9 +612,6 @@ share/doc/HTML/es/khelpcenter/glossary/common share/doc/HTML/es/khelpcenter/glossary/index.cache.bz2 share/doc/HTML/es/khelpcenter/glossary/index.docbook share/doc/HTML/es/khelpcenter/glossary/kdeprintingglossary.docbook -share/doc/HTML/es/khelpcenter/quickstart/common -share/doc/HTML/es/khelpcenter/quickstart/index.cache.bz2 -share/doc/HTML/es/khelpcenter/quickstart/index.docbook share/doc/HTML/es/khelpcenter/userguide/a-window.png share/doc/HTML/es/khelpcenter/userguide/accessibility.docbook share/doc/HTML/es/khelpcenter/userguide/amarok.png @@ -753,9 +710,6 @@ share/doc/HTML/es/khelpcenter/visualdict/pict7.png share/doc/HTML/es/kimagemapeditor/common share/doc/HTML/es/kimagemapeditor/index.cache.bz2 share/doc/HTML/es/kimagemapeditor/index.docbook -share/doc/HTML/es/kinfocenter/blockdevices/common -share/doc/HTML/es/kinfocenter/blockdevices/index.cache.bz2 -share/doc/HTML/es/kinfocenter/blockdevices/index.docbook share/doc/HTML/es/kinfocenter/devices/common share/doc/HTML/es/kinfocenter/devices/index.cache.bz2 share/doc/HTML/es/kinfocenter/devices/index.docbook @@ -807,48 +761,36 @@ share/doc/HTML/es/kinfocenter/usb/index.docbook share/doc/HTML/es/kinfocenter/xserver/common share/doc/HTML/es/kinfocenter/xserver/index.cache.bz2 share/doc/HTML/es/kinfocenter/xserver/index.docbook -share/doc/HTML/es/kioslave/bzip.docbook -share/doc/HTML/es/kioslave/bzip2.docbook -share/doc/HTML/es/kioslave/cgi.docbook -share/doc/HTML/es/kioslave/common -share/doc/HTML/es/kioslave/data.docbook -share/doc/HTML/es/kioslave/file.docbook -share/doc/HTML/es/kioslave/finger.docbook -share/doc/HTML/es/kioslave/fish.docbook -share/doc/HTML/es/kioslave/floppy.docbook -share/doc/HTML/es/kioslave/ftp.docbook -share/doc/HTML/es/kioslave/gopher.docbook -share/doc/HTML/es/kioslave/gzip.docbook -share/doc/HTML/es/kioslave/help.docbook -share/doc/HTML/es/kioslave/http.docbook -share/doc/HTML/es/kioslave/https.docbook -share/doc/HTML/es/kioslave/imap.docbook -share/doc/HTML/es/kioslave/imaps.docbook -share/doc/HTML/es/kioslave/index.cache.bz2 -share/doc/HTML/es/kioslave/index.docbook -share/doc/HTML/es/kioslave/info.docbook -share/doc/HTML/es/kioslave/lan.docbook -share/doc/HTML/es/kioslave/ldap.docbook -share/doc/HTML/es/kioslave/mac.docbook -share/doc/HTML/es/kioslave/mailto.docbook -share/doc/HTML/es/kioslave/man.docbook -share/doc/HTML/es/kioslave/mrml.docbook -share/doc/HTML/es/kioslave/news.docbook -share/doc/HTML/es/kioslave/nfs.docbook -share/doc/HTML/es/kioslave/nntp.docbook -share/doc/HTML/es/kioslave/pop3.docbook -share/doc/HTML/es/kioslave/pop3s.docbook -share/doc/HTML/es/kioslave/print.docbook -share/doc/HTML/es/kioslave/rlan.docbook -share/doc/HTML/es/kioslave/rlogin.docbook -share/doc/HTML/es/kioslave/sftp.docbook -share/doc/HTML/es/kioslave/smb.docbook -share/doc/HTML/es/kioslave/smtp.docbook -share/doc/HTML/es/kioslave/tar.docbook -share/doc/HTML/es/kioslave/telnet.docbook -share/doc/HTML/es/kioslave/thumbnail.docbook -share/doc/HTML/es/kioslave/webdav.docbook -share/doc/HTML/es/kioslave/webdavs.docbook +share/doc/HTML/es/kioslave/cgi/common +share/doc/HTML/es/kioslave/cgi/index.cache.bz2 +share/doc/HTML/es/kioslave/cgi/index.docbook +share/doc/HTML/es/kioslave/finger/common +share/doc/HTML/es/kioslave/finger/index.cache.bz2 +share/doc/HTML/es/kioslave/finger/index.docbook +share/doc/HTML/es/kioslave/fish/common +share/doc/HTML/es/kioslave/fish/index.cache.bz2 +share/doc/HTML/es/kioslave/fish/index.docbook +share/doc/HTML/es/kioslave/floppy/common +share/doc/HTML/es/kioslave/floppy/index.cache.bz2 +share/doc/HTML/es/kioslave/floppy/index.docbook +share/doc/HTML/es/kioslave/info/common +share/doc/HTML/es/kioslave/info/index.cache.bz2 +share/doc/HTML/es/kioslave/info/index.docbook +share/doc/HTML/es/kioslave/man/common +share/doc/HTML/es/kioslave/man/index.cache.bz2 +share/doc/HTML/es/kioslave/man/index.docbook +share/doc/HTML/es/kioslave/nfs/common +share/doc/HTML/es/kioslave/nfs/index.cache.bz2 +share/doc/HTML/es/kioslave/nfs/index.docbook +share/doc/HTML/es/kioslave/sftp/common +share/doc/HTML/es/kioslave/sftp/index.cache.bz2 +share/doc/HTML/es/kioslave/sftp/index.docbook +share/doc/HTML/es/kioslave/smb/common +share/doc/HTML/es/kioslave/smb/index.cache.bz2 +share/doc/HTML/es/kioslave/smb/index.docbook +share/doc/HTML/es/kioslave/tar/common +share/doc/HTML/es/kioslave/tar/index.cache.bz2 +share/doc/HTML/es/kioslave/tar/index.docbook share/doc/HTML/es/kiriki/common share/doc/HTML/es/kiriki/index.cache.bz2 share/doc/HTML/es/kiriki/index.docbook @@ -891,9 +833,6 @@ share/doc/HTML/es/kmag/screenshot.png share/doc/HTML/es/kmahjongg/common share/doc/HTML/es/kmahjongg/index.cache.bz2 share/doc/HTML/es/kmahjongg/index.docbook -share/doc/HTML/es/kmathtool/common -share/doc/HTML/es/kmathtool/index.cache.bz2 -share/doc/HTML/es/kmathtool/index.docbook share/doc/HTML/es/kmenuedit/common share/doc/HTML/es/kmenuedit/index.cache.bz2 share/doc/HTML/es/kmenuedit/index.docbook @@ -908,9 +847,6 @@ share/doc/HTML/es/kmix/index.docbook share/doc/HTML/es/kmix/kmix-channel-playback.png share/doc/HTML/es/kmix/kmix-channel-record.png share/doc/HTML/es/kmix/kmix-window.png -share/doc/HTML/es/kmoon/common -share/doc/HTML/es/kmoon/index.cache.bz2 -share/doc/HTML/es/kmoon/index.docbook share/doc/HTML/es/kmousetool/common share/doc/HTML/es/kmousetool/index.cache.bz2 share/doc/HTML/es/kmousetool/index.docbook @@ -953,12 +889,6 @@ share/doc/HTML/es/knetattach/screenshot.png share/doc/HTML/es/knetwalk/common share/doc/HTML/es/knetwalk/index.cache.bz2 share/doc/HTML/es/knetwalk/index.docbook -share/doc/HTML/es/knetworkconf/common -share/doc/HTML/es/knetworkconf/index.cache.bz2 -share/doc/HTML/es/knetworkconf/index.docbook -share/doc/HTML/es/knewsticker/common -share/doc/HTML/es/knewsticker/index.cache.bz2 -share/doc/HTML/es/knewsticker/index.docbook share/doc/HTML/es/knode/commands.docbook share/doc/HTML/es/knode/common share/doc/HTML/es/knode/credits.docbook @@ -1052,8 +982,6 @@ share/doc/HTML/es/kopete/index.cache.bz2 share/doc/HTML/es/kopete/index.docbook share/doc/HTML/es/kopete/menus.docbook share/doc/HTML/es/korganizer/common -share/doc/HTML/es/korganizer/exchange-plugin.docbook -share/doc/HTML/es/korganizer/group-scheduling.docbook share/doc/HTML/es/korganizer/index.cache.bz2 share/doc/HTML/es/korganizer/index.docbook share/doc/HTML/es/korganizer/outlook-to-vcalendar.docbook @@ -1080,17 +1008,6 @@ share/doc/HTML/es/kpat/common share/doc/HTML/es/kpat/index.cache.bz2 share/doc/HTML/es/kpat/index.docbook share/doc/HTML/es/kpat/man-kpat.6.docbook -share/doc/HTML/es/kpat/man.docbook -share/doc/HTML/es/kpercentage/commands.docbook -share/doc/HTML/es/kpercentage/common -share/doc/HTML/es/kpercentage/credits.docbook -share/doc/HTML/es/kpercentage/devel.docbook -share/doc/HTML/es/kpercentage/faq.docbook -share/doc/HTML/es/kpercentage/index.cache.bz2 -share/doc/HTML/es/kpercentage/index.docbook -share/doc/HTML/es/kpercentage/install.docbook -share/doc/HTML/es/kpercentage/introduction.docbook -share/doc/HTML/es/kpercentage/using.docbook share/doc/HTML/es/kppp/accounting.docbook share/doc/HTML/es/kppp/callback.docbook share/doc/HTML/es/kppp/chap.docbook @@ -1108,9 +1025,6 @@ share/doc/HTML/es/kppp/wizard.docbook share/doc/HTML/es/krdc/common share/doc/HTML/es/krdc/index.cache.bz2 share/doc/HTML/es/krdc/index.docbook -share/doc/HTML/es/krec/common -share/doc/HTML/es/krec/index.cache.bz2 -share/doc/HTML/es/krec/index.docbook share/doc/HTML/es/kreversi/common share/doc/HTML/es/kreversi/index.cache.bz2 share/doc/HTML/es/kreversi/index.docbook @@ -1135,25 +1049,9 @@ share/doc/HTML/es/kscd/kscd16.png share/doc/HTML/es/kshisen/common share/doc/HTML/es/kshisen/index.cache.bz2 share/doc/HTML/es/kshisen/index.docbook -share/doc/HTML/es/ksim/common -share/doc/HTML/es/ksim/index.cache.bz2 -share/doc/HTML/es/ksim/index.docbook -share/doc/HTML/es/ksirc/common -share/doc/HTML/es/ksirc/index.cache.bz2 -share/doc/HTML/es/ksirc/index.docbook share/doc/HTML/es/ksirk/common share/doc/HTML/es/ksirk/index.cache.bz2 share/doc/HTML/es/ksirk/index.docbook -share/doc/HTML/es/ksirtet/common -share/doc/HTML/es/ksirtet/index.cache.bz2 -share/doc/HTML/es/ksirtet/index.docbook -share/doc/HTML/es/ksmiletris/common -share/doc/HTML/es/ksmiletris/gamescreen.png -share/doc/HTML/es/ksmiletris/icon.png -share/doc/HTML/es/ksmiletris/index.cache.bz2 -share/doc/HTML/es/ksmiletris/index.docbook -share/doc/HTML/es/ksmiletris/smiley.png -share/doc/HTML/es/ksmiletris/symbol.png share/doc/HTML/es/ksnapshot/common share/doc/HTML/es/ksnapshot/index.cache.bz2 share/doc/HTML/es/ksnapshot/index.docbook @@ -1162,9 +1060,6 @@ share/doc/HTML/es/ksnapshot/window.png share/doc/HTML/es/kspaceduel/common share/doc/HTML/es/kspaceduel/index.cache.bz2 share/doc/HTML/es/kspaceduel/index.docbook -share/doc/HTML/es/ksplashml/common -share/doc/HTML/es/ksplashml/index.cache.bz2 -share/doc/HTML/es/ksplashml/index.docbook share/doc/HTML/es/ksquares/common share/doc/HTML/es/ksquares/index.cache.bz2 share/doc/HTML/es/ksquares/index.docbook @@ -1187,9 +1082,6 @@ share/doc/HTML/es/ktimer/index.docbook share/doc/HTML/es/ktimetracker/common share/doc/HTML/es/ktimetracker/index.cache.bz2 share/doc/HTML/es/ktimetracker/index.docbook -share/doc/HTML/es/ktnef/common -share/doc/HTML/es/ktnef/index.cache.bz2 -share/doc/HTML/es/ktnef/index.docbook share/doc/HTML/es/ktouch/common share/doc/HTML/es/ktouch/index.cache.bz2 share/doc/HTML/es/ktouch/index.docbook @@ -1246,27 +1138,9 @@ share/doc/HTML/es/kweather/index.docbook share/doc/HTML/es/kwordquiz/common share/doc/HTML/es/kwordquiz/index.cache.bz2 share/doc/HTML/es/kwordquiz/index.docbook -share/doc/HTML/es/kworldclock/common -share/doc/HTML/es/kworldclock/index.cache.bz2 -share/doc/HTML/es/kworldclock/index.docbook -share/doc/HTML/es/kworldclock/man-kworldclock.1.docbook -share/doc/HTML/es/kworldclock/screenshot-clock-dialog.png -share/doc/HTML/es/kworldclock/screenshot-mlb.png -share/doc/HTML/es/kworldclock/screenshot-quairading-clock.png -share/doc/HTML/es/kworldclock/screenshot-quairading-dialog.png -share/doc/HTML/es/kworldclock/screenshot-rmb-cities.png -share/doc/HTML/es/kworldclock/screenshot-rmb-clock.png -share/doc/HTML/es/kworldclock/screenshot-rmb-daylight.png -share/doc/HTML/es/kworldclock/screenshot-rmb-flags.png -share/doc/HTML/es/kworldclock/screenshot-withclocks.png -share/doc/HTML/es/kworldclock/screenshot-withflags.png -share/doc/HTML/es/kworldclock/screenshot.png share/doc/HTML/es/kwrite/common share/doc/HTML/es/kwrite/index.cache.bz2 share/doc/HTML/es/kwrite/index.docbook -share/doc/HTML/es/kxkb/common -share/doc/HTML/es/kxkb/index.cache.bz2 -share/doc/HTML/es/kxkb/index.docbook share/doc/HTML/es/kxsldbg/callstack.docbook share/doc/HTML/es/kxsldbg/common share/doc/HTML/es/kxsldbg/credits.docbook @@ -1290,10 +1164,6 @@ share/doc/HTML/es/lokalize/index.docbook share/doc/HTML/es/lskat/common share/doc/HTML/es/lskat/index.cache.bz2 share/doc/HTML/es/lskat/index.docbook -share/doc/HTML/es/multisynk/common -share/doc/HTML/es/multisynk/index.cache.bz2 -share/doc/HTML/es/multisynk/index.docbook -share/doc/HTML/es/multisynk/konnectors-chapter.docbook share/doc/HTML/es/okteta/basics.docbook share/doc/HTML/es/okteta/common share/doc/HTML/es/okteta/credits.docbook @@ -1318,10 +1188,8 @@ share/doc/HTML/es/umbrello/authors.docbook share/doc/HTML/es/umbrello/code_import_and_generation.docbook share/doc/HTML/es/umbrello/common share/doc/HTML/es/umbrello/credits.docbook -share/doc/HTML/es/umbrello/faq.docbook share/doc/HTML/es/umbrello/index.cache.bz2 share/doc/HTML/es/umbrello/index.docbook -share/doc/HTML/es/umbrello/installation.docbook share/doc/HTML/es/umbrello/introduction.docbook share/doc/HTML/es/umbrello/other_features.docbook share/doc/HTML/es/umbrello/uml_basics.docbook @@ -1341,6 +1209,7 @@ share/locale/es/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/es/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/es/LC_MESSAGES/audiorename_plugin.mo share/locale/es/LC_MESSAGES/blinken.mo +share/locale/es/LC_MESSAGES/bomber.mo share/locale/es/LC_MESSAGES/bovo.mo share/locale/es/LC_MESSAGES/cervisia.mo share/locale/es/LC_MESSAGES/cvsservice.mo @@ -1355,6 +1224,7 @@ share/locale/es/LC_MESSAGES/imagerename_plugin.mo share/locale/es/LC_MESSAGES/joystick.mo share/locale/es/LC_MESSAGES/juk.mo share/locale/es/LC_MESSAGES/kabc.mo +share/locale/es/LC_MESSAGES/kabc_akonadi.mo share/locale/es/LC_MESSAGES/kabc_dir.mo share/locale/es/LC_MESSAGES/kabc_file.mo share/locale/es/LC_MESSAGES/kabc_ldapkio.mo @@ -1368,10 +1238,14 @@ share/locale/es/LC_MESSAGES/kaddressbook.mo share/locale/es/LC_MESSAGES/kalarm.mo share/locale/es/LC_MESSAGES/kalgebra.mo share/locale/es/LC_MESSAGES/kalzium.mo +share/locale/es/LC_MESSAGES/kalzium_qt.mo share/locale/es/LC_MESSAGES/kanagram.mo +share/locale/es/LC_MESSAGES/kapman.mo share/locale/es/LC_MESSAGES/kappfinder.mo share/locale/es/LC_MESSAGES/kapptemplate.mo +share/locale/es/LC_MESSAGES/kate-ctags-plugin.mo share/locale/es/LC_MESSAGES/kate.mo +share/locale/es/LC_MESSAGES/katebuild-plugin.mo share/locale/es/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/es/LC_MESSAGES/katefilebrowserplugin.mo share/locale/es/LC_MESSAGES/katefiletemplates.mo @@ -1382,7 +1256,6 @@ share/locale/es/LC_MESSAGES/kateinsertcommand.mo share/locale/es/LC_MESSAGES/katekjswrapper.mo share/locale/es/LC_MESSAGES/katekonsoleplugin.mo share/locale/es/LC_MESSAGES/katemailfilesplugin.mo -share/locale/es/LC_MESSAGES/katemake.mo share/locale/es/LC_MESSAGES/kateopenheader.mo share/locale/es/LC_MESSAGES/katepart4.mo share/locale/es/LC_MESSAGES/katepybrowse.mo @@ -1401,14 +1274,14 @@ share/locale/es/LC_MESSAGES/kblocks.mo share/locale/es/LC_MESSAGES/kbounce.mo share/locale/es/LC_MESSAGES/kbreakout.mo share/locale/es/LC_MESSAGES/kbruch.mo -share/locale/es/LC_MESSAGES/kbstateapplet.mo share/locale/es/LC_MESSAGES/kbugbuster.mo share/locale/es/LC_MESSAGES/kcachegrind.mo share/locale/es/LC_MESSAGES/kcalc.mo share/locale/es/LC_MESSAGES/kcertpart.mo share/locale/es/LC_MESSAGES/kcharselect.mo -share/locale/es/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/es/LC_MESSAGES/kcm_akonadi.mo share/locale/es/LC_MESSAGES/kcm_autostart.mo +share/locale/es/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/es/LC_MESSAGES/kcm_emoticons.mo share/locale/es/LC_MESSAGES/kcm_krfb.mo share/locale/es/LC_MESSAGES/kcm_kwindesktop.mo @@ -1418,6 +1291,7 @@ share/locale/es/LC_MESSAGES/kcm_pci.mo share/locale/es/LC_MESSAGES/kcm_phonon.mo share/locale/es/LC_MESSAGES/kcm_phononxine.mo share/locale/es/LC_MESSAGES/kcm_solid.mo +share/locale/es/LC_MESSAGES/kcm_standard_actions.mo share/locale/es/LC_MESSAGES/kcmaccess.mo share/locale/es/LC_MESSAGES/kcmaudiocd.mo share/locale/es/LC_MESSAGES/kcmbackground.mo @@ -1467,7 +1341,6 @@ share/locale/es/LC_MESSAGES/kcmsmartcard.mo share/locale/es/LC_MESSAGES/kcmsmserver.mo share/locale/es/LC_MESSAGES/kcmsolidproc.mo share/locale/es/LC_MESSAGES/kcmstyle.mo -share/locale/es/LC_MESSAGES/kcmtaskbar.mo share/locale/es/LC_MESSAGES/kcmusb.mo share/locale/es/LC_MESSAGES/kcmview1394.mo share/locale/es/LC_MESSAGES/kcmxinerama.mo @@ -1475,7 +1348,9 @@ share/locale/es/LC_MESSAGES/kcolorchooser.mo share/locale/es/LC_MESSAGES/kcron.mo share/locale/es/LC_MESSAGES/kdat.mo share/locale/es/LC_MESSAGES/kde-menu.mo +share/locale/es/LC_MESSAGES/kdeasciiquarium.mo share/locale/es/LC_MESSAGES/kdebugdialog.mo +share/locale/es/LC_MESSAGES/kded_phononserver.mo share/locale/es/LC_MESSAGES/kdelibs4.mo share/locale/es/LC_MESSAGES/kdelibs_colors4.mo share/locale/es/LC_MESSAGES/kdepasswd.mo @@ -1486,6 +1361,7 @@ share/locale/es/LC_MESSAGES/kdessh.mo share/locale/es/LC_MESSAGES/kdesu.mo share/locale/es/LC_MESSAGES/kdesud.mo share/locale/es/LC_MESSAGES/kdf.mo +share/locale/es/LC_MESSAGES/kdgantt.mo share/locale/es/LC_MESSAGES/kdgantt1.mo share/locale/es/LC_MESSAGES/kdialog.mo share/locale/es/LC_MESSAGES/kdiamond.mo @@ -1535,12 +1411,15 @@ share/locale/es/LC_MESSAGES/khotnewstuff.mo share/locale/es/LC_MESSAGES/khtmlkttsd.mo share/locale/es/LC_MESSAGES/kiconfinder.mo share/locale/es/LC_MESSAGES/kig.mo +share/locale/es/LC_MESSAGES/killbots.mo share/locale/es/LC_MESSAGES/kimagemapeditor.mo share/locale/es/LC_MESSAGES/kinetd.mo share/locale/es/LC_MESSAGES/kinfocenter.mo share/locale/es/LC_MESSAGES/kio4.mo +share/locale/es/LC_MESSAGES/kio_applications.mo share/locale/es/LC_MESSAGES/kio_archive.mo share/locale/es/LC_MESSAGES/kio_audiocd.mo +share/locale/es/LC_MESSAGES/kio_bookmarks.mo share/locale/es/LC_MESSAGES/kio_finger.mo share/locale/es/LC_MESSAGES/kio_fish.mo share/locale/es/LC_MESSAGES/kio_floppy.mo @@ -1551,11 +1430,12 @@ share/locale/es/LC_MESSAGES/kio_jabberdisco.mo share/locale/es/LC_MESSAGES/kio_ldap.mo share/locale/es/LC_MESSAGES/kio_man.mo share/locale/es/LC_MESSAGES/kio_mbox.mo +share/locale/es/LC_MESSAGES/kio_nepomuksearch.mo share/locale/es/LC_MESSAGES/kio_nfs.mo share/locale/es/LC_MESSAGES/kio_nntp.mo +share/locale/es/LC_MESSAGES/kio_perldoc.mo share/locale/es/LC_MESSAGES/kio_pop3.mo share/locale/es/LC_MESSAGES/kio_remote.mo -share/locale/es/LC_MESSAGES/kio_settings.mo share/locale/es/LC_MESSAGES/kio_sftp.mo share/locale/es/LC_MESSAGES/kio_sieve.mo share/locale/es/LC_MESSAGES/kio_smb.mo @@ -1615,10 +1495,10 @@ share/locale/es/LC_MESSAGES/kopete.mo share/locale/es/LC_MESSAGES/korganizer.mo share/locale/es/LC_MESSAGES/korn.mo share/locale/es/LC_MESSAGES/kpackage.mo +share/locale/es/LC_MESSAGES/kpartloader.mo share/locale/es/LC_MESSAGES/kpartsaver.mo share/locale/es/LC_MESSAGES/kpasswdserver.mo share/locale/es/LC_MESSAGES/kpat.mo -share/locale/es/LC_MESSAGES/kpercentage.mo share/locale/es/LC_MESSAGES/kpilot.mo share/locale/es/LC_MESSAGES/kppp.mo share/locale/es/LC_MESSAGES/kppplogview.mo @@ -1642,20 +1522,12 @@ share/locale/es/LC_MESSAGES/kreversi.mo share/locale/es/LC_MESSAGES/krfb.mo share/locale/es/LC_MESSAGES/kruler.mo share/locale/es/LC_MESSAGES/krunner.mo -share/locale/es/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/es/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/es/LC_MESSAGES/krunner_contacts.mo -share/locale/es/LC_MESSAGES/krunner_converterrunner.mo -share/locale/es/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/es/LC_MESSAGES/krunner_sessions.mo -share/locale/es/LC_MESSAGES/krunner_shellrunner.mo -share/locale/es/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/es/LC_MESSAGES/krunner_xesam.mo share/locale/es/LC_MESSAGES/ksame.mo share/locale/es/LC_MESSAGES/ksaneplugin.mo share/locale/es/LC_MESSAGES/ksayit.mo share/locale/es/LC_MESSAGES/kscd.mo share/locale/es/LC_MESSAGES/kscreensaver.mo +share/locale/es/LC_MESSAGES/ksendemail.mo share/locale/es/LC_MESSAGES/kshisen.mo share/locale/es/LC_MESSAGES/kshorturifilter.mo share/locale/es/LC_MESSAGES/ksirk.mo @@ -1672,6 +1544,7 @@ share/locale/es/LC_MESSAGES/kstyle_keramik_config.mo share/locale/es/LC_MESSAGES/kstyle_phase_config.mo share/locale/es/LC_MESSAGES/ksudoku.mo share/locale/es/LC_MESSAGES/ksysguard.mo +share/locale/es/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/es/LC_MESSAGES/ksystemlog.mo share/locale/es/LC_MESSAGES/ksystraycmd.mo share/locale/es/LC_MESSAGES/ksysv.mo @@ -1681,7 +1554,6 @@ share/locale/es/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/es/LC_MESSAGES/kthememanager.mo share/locale/es/LC_MESSAGES/ktimer.mo share/locale/es/LC_MESSAGES/ktimetracker.mo -share/locale/es/LC_MESSAGES/ktnef.mo share/locale/es/LC_MESSAGES/ktouch.mo share/locale/es/LC_MESSAGES/ktraderclient.mo share/locale/es/LC_MESSAGES/kttsd.mo @@ -1693,6 +1565,7 @@ share/locale/es/LC_MESSAGES/kuiserver.mo share/locale/es/LC_MESSAGES/kuiviewer.mo share/locale/es/LC_MESSAGES/kurifilter.mo share/locale/es/LC_MESSAGES/kuser.mo +share/locale/es/LC_MESSAGES/kwalletd.mo share/locale/es/LC_MESSAGES/kwalletmanager.mo share/locale/es/LC_MESSAGES/kwatchgnupg.mo share/locale/es/LC_MESSAGES/kweather.mo @@ -1739,11 +1612,14 @@ share/locale/es/LC_MESSAGES/libmailtransport.mo share/locale/es/LC_MESSAGES/liboktetacore.mo share/locale/es/LC_MESSAGES/libphonon.mo share/locale/es/LC_MESSAGES/libplasma.mo +share/locale/es/LC_MESSAGES/libplasmaclock.mo share/locale/es/LC_MESSAGES/libtaskmanager.mo share/locale/es/LC_MESSAGES/lokalize.mo share/locale/es/LC_MESSAGES/lskat.mo share/locale/es/LC_MESSAGES/marble.mo +share/locale/es/LC_MESSAGES/marble_qt.mo share/locale/es/LC_MESSAGES/nepomuk.mo +share/locale/es/LC_MESSAGES/nepomuksearch.mo share/locale/es/LC_MESSAGES/nsplugin.mo share/locale/es/LC_MESSAGES/okteta.mo share/locale/es/LC_MESSAGES/oktetapart.mo @@ -1753,6 +1629,7 @@ share/locale/es/LC_MESSAGES/okular_comicbook.mo share/locale/es/LC_MESSAGES/okular_djvu.mo share/locale/es/LC_MESSAGES/okular_dvi.mo share/locale/es/LC_MESSAGES/okular_epub.mo +share/locale/es/LC_MESSAGES/okular_fax.mo share/locale/es/LC_MESSAGES/okular_fictionbook.mo share/locale/es/LC_MESSAGES/okular_ghostview.mo share/locale/es/LC_MESSAGES/okular_kimgio.mo @@ -1765,10 +1642,15 @@ share/locale/es/LC_MESSAGES/parley.mo share/locale/es/LC_MESSAGES/phonon-xine.mo share/locale/es/LC_MESSAGES/phonon_gstreamer.mo share/locale/es/LC_MESSAGES/phonon_kde.mo +share/locale/es/LC_MESSAGES/plasma-overlay.mo +share/locale/es/LC_MESSAGES/plasma-shells-common.mo share/locale/es/LC_MESSAGES/plasma.mo share/locale/es/LC_MESSAGES/plasma_applet_battery.mo +share/locale/es/LC_MESSAGES/plasma_applet_bball.mo share/locale/es/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/es/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/es/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/es/LC_MESSAGES/plasma_applet_charselect.mo share/locale/es/LC_MESSAGES/plasma_applet_clock.mo share/locale/es/LC_MESSAGES/plasma_applet_comic.mo share/locale/es/LC_MESSAGES/plasma_applet_desktop.mo @@ -1780,26 +1662,61 @@ share/locale/es/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/es/LC_MESSAGES/plasma_applet_folderview.mo share/locale/es/LC_MESSAGES/plasma_applet_frame.mo share/locale/es/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/es/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/es/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/es/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/es/LC_MESSAGES/plasma_applet_katesession.mo share/locale/es/LC_MESSAGES/plasma_applet_kget.mo -share/locale/es/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/es/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/es/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/es/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/es/LC_MESSAGES/plasma_applet_life.mo share/locale/es/LC_MESSAGES/plasma_applet_luna.mo +share/locale/es/LC_MESSAGES/plasma_applet_news.mo share/locale/es/LC_MESSAGES/plasma_applet_notes.mo share/locale/es/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/es/LC_MESSAGES/plasma_applet_pager.mo share/locale/es/LC_MESSAGES/plasma_applet_panel.mo +share/locale/es/LC_MESSAGES/plasma_applet_paste.mo +share/locale/es/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/es/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/es/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/es/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/es/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/es/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/es/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/es/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/es/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/es/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/es/LC_MESSAGES/plasma_applet_timer.mo share/locale/es/LC_MESSAGES/plasma_applet_trash.mo share/locale/es/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/es/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/es/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/es/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/es/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/es/LC_MESSAGES/plasma_engine_dict.mo +share/locale/es/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/es/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/es/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/es/LC_MESSAGES/plasma_engine_rss.mo +share/locale/es/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/es/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/es/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/es/LC_MESSAGES/plasma_runner_locations.mo +share/locale/es/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/es/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/es/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/es/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/es/LC_MESSAGES/plasma_runner_shell.mo +share/locale/es/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/es/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/es/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/es/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/es/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/es/LC_MESSAGES/plasmaengineexplorer.mo share/locale/es/LC_MESSAGES/plasmapkg.mo share/locale/es/LC_MESSAGES/plasmoidviewer.mo +share/locale/es/LC_MESSAGES/powerdevil.mo share/locale/es/LC_MESSAGES/printer-applet.mo share/locale/es/LC_MESSAGES/processcore.mo share/locale/es/LC_MESSAGES/processui.mo @@ -1811,10 +1728,12 @@ share/locale/es/LC_MESSAGES/solidcontrol.mo share/locale/es/LC_MESSAGES/soliduiserver.mo share/locale/es/LC_MESSAGES/spy.mo share/locale/es/LC_MESSAGES/step.mo +share/locale/es/LC_MESSAGES/step_qt.mo share/locale/es/LC_MESSAGES/strigila_diff.mo share/locale/es/LC_MESSAGES/superkaramba.mo share/locale/es/LC_MESSAGES/svgpart.mo share/locale/es/LC_MESSAGES/sweeper.mo +share/locale/es/LC_MESSAGES/system-config-printer-kde.mo share/locale/es/LC_MESSAGES/systemsettings.mo share/locale/es/LC_MESSAGES/timezones4.mo share/locale/es/LC_MESSAGES/umbrello.mo @@ -1827,14 +1746,11 @@ share/locale/es/entry.desktop @dirrm share/doc/HTML/es/sonnet @dirrm share/doc/HTML/es/plasma @dirrm share/doc/HTML/es/okteta -@dirrm share/doc/HTML/es/multisynk @dirrm share/doc/HTML/es/lskat @dirrm share/doc/HTML/es/lokalize @dirrm share/doc/HTML/es/lilo-config @dirrm share/doc/HTML/es/kxsldbg -@dirrm share/doc/HTML/es/kxkb @dirrm share/doc/HTML/es/kwrite -@dirrm share/doc/HTML/es/kworldclock @dirrm share/doc/HTML/es/kwordquiz @dirrm share/doc/HTML/es/kweather @dirrm share/doc/HTML/es/kwatchgnupg @@ -1845,7 +1761,6 @@ share/locale/es/entry.desktop @dirrm share/doc/HTML/es/ktuberling @dirrm share/doc/HTML/es/kttsd @dirrm share/doc/HTML/es/ktouch -@dirrm share/doc/HTML/es/ktnef @dirrm share/doc/HTML/es/ktimetracker @dirrm share/doc/HTML/es/ktimer @dirrm share/doc/HTML/es/kteatime @@ -1853,24 +1768,17 @@ share/locale/es/entry.desktop @dirrm share/doc/HTML/es/ksysguard @dirrm share/doc/HTML/es/ksudoku @dirrm share/doc/HTML/es/ksquares -@dirrm share/doc/HTML/es/ksplashml @dirrm share/doc/HTML/es/kspaceduel @dirrm share/doc/HTML/es/ksnapshot -@dirrm share/doc/HTML/es/ksmiletris -@dirrm share/doc/HTML/es/ksirtet @dirrm share/doc/HTML/es/ksirk -@dirrm share/doc/HTML/es/ksirc -@dirrm share/doc/HTML/es/ksim @dirrm share/doc/HTML/es/kshisen @dirrm share/doc/HTML/es/kscd @dirrm share/doc/HTML/es/ksame @dirrm share/doc/HTML/es/kruler @dirrm share/doc/HTML/es/krfb @dirrm share/doc/HTML/es/kreversi -@dirrm share/doc/HTML/es/krec @dirrm share/doc/HTML/es/krdc @dirrm share/doc/HTML/es/kppp -@dirrm share/doc/HTML/es/kpercentage @dirrm share/doc/HTML/es/kpat @dirrm share/doc/HTML/es/kpackage @dirrm share/doc/HTML/es/korn @@ -1888,18 +1796,14 @@ share/locale/es/entry.desktop @dirrm share/doc/HTML/es/kolf @dirrm share/doc/HTML/es/knotes @dirrm share/doc/HTML/es/knode -@dirrm share/doc/HTML/es/knewsticker -@dirrm share/doc/HTML/es/knetworkconf @dirrm share/doc/HTML/es/knetwalk @dirrm share/doc/HTML/es/knetattach @dirrm share/doc/HTML/es/kmplot @dirrm share/doc/HTML/es/kmouth @dirrm share/doc/HTML/es/kmousetool -@dirrm share/doc/HTML/es/kmoon @dirrm share/doc/HTML/es/kmix @dirrm share/doc/HTML/es/kmines @dirrm share/doc/HTML/es/kmenuedit -@dirrm share/doc/HTML/es/kmathtool @dirrm share/doc/HTML/es/kmahjongg @dirrm share/doc/HTML/es/kmag @dirrm share/doc/HTML/es/klipper @@ -1911,6 +1815,16 @@ share/locale/es/entry.desktop @dirrm share/doc/HTML/es/kjots @dirrm share/doc/HTML/es/kiten @dirrm share/doc/HTML/es/kiriki +@dirrm share/doc/HTML/es/kioslave/tar +@dirrm share/doc/HTML/es/kioslave/smb +@dirrm share/doc/HTML/es/kioslave/sftp +@dirrm share/doc/HTML/es/kioslave/nfs +@dirrm share/doc/HTML/es/kioslave/man +@dirrm share/doc/HTML/es/kioslave/info +@dirrm share/doc/HTML/es/kioslave/floppy +@dirrm share/doc/HTML/es/kioslave/fish +@dirrm share/doc/HTML/es/kioslave/finger +@dirrm share/doc/HTML/es/kioslave/cgi @dirrm share/doc/HTML/es/kioslave @dirrm share/doc/HTML/es/kinfocenter/xserver @dirrm share/doc/HTML/es/kinfocenter/usb @@ -1929,12 +1843,10 @@ share/locale/es/entry.desktop @dirrm share/doc/HTML/es/kinfocenter/interrupts @dirrm share/doc/HTML/es/kinfocenter/dma @dirrm share/doc/HTML/es/kinfocenter/devices -@dirrm share/doc/HTML/es/kinfocenter/blockdevices @dirrm share/doc/HTML/es/kinfocenter @dirrm share/doc/HTML/es/kimagemapeditor @dirrm share/doc/HTML/es/khelpcenter/visualdict @dirrm share/doc/HTML/es/khelpcenter/userguide -@dirrm share/doc/HTML/es/khelpcenter/quickstart @dirrm share/doc/HTML/es/khelpcenter/glossary @dirrm share/doc/HTML/es/khelpcenter/faq @dirrm share/doc/HTML/es/khelpcenter @@ -1947,7 +1859,6 @@ share/locale/es/entry.desktop @dirrm share/doc/HTML/es/kfloppy @dirrm share/doc/HTML/es/kfind @dirrm share/doc/HTML/es/kfilereplace -@dirrm share/doc/HTML/es/kedit @dirrm share/doc/HTML/es/kdm @dirrm share/doc/HTML/es/kdiamond @dirrm share/doc/HTML/es/kdf @@ -1956,24 +1867,21 @@ share/locale/es/entry.desktop @dirrm share/doc/HTML/es/kdebugdialog @dirrm share/doc/HTML/es/kdat @dirrm share/doc/HTML/es/kcron -@dirrm share/doc/HTML/es/kcontrol/windowmanagement +@dirrm share/doc/HTML/es/kcontrol/windowspecific +@dirrm share/doc/HTML/es/kcontrol/windowbehaviour @dirrm share/doc/HTML/es/kcontrol/useragent @dirrm share/doc/HTML/es/kcontrol/splashscreen @dirrm share/doc/HTML/es/kcontrol/spellchecking @dirrm share/doc/HTML/es/kcontrol/smb @dirrm share/doc/HTML/es/kcontrol/screensaver @dirrm share/doc/HTML/es/kcontrol/proxy -@dirrm share/doc/HTML/es/kcontrol/powerctrl @dirrm share/doc/HTML/es/kcontrol/performance @dirrm share/doc/HTML/es/kcontrol/paths @dirrm share/doc/HTML/es/kcontrol/passwords @dirrm share/doc/HTML/es/kcontrol/panelappearance @dirrm share/doc/HTML/es/kcontrol/panel @dirrm share/doc/HTML/es/kcontrol/netpref -@dirrm share/doc/HTML/es/kcontrol/mouse -@dirrm share/doc/HTML/es/kcontrol/laptop @dirrm share/doc/HTML/es/kcontrol/language -@dirrm share/doc/HTML/es/kcontrol/kxmlrpcd @dirrm share/doc/HTML/es/kcontrol/kxkb @dirrm share/doc/HTML/es/kcontrol/kwindecoration @dirrm share/doc/HTML/es/kcontrol/khtml @@ -1984,15 +1892,11 @@ share/locale/es/entry.desktop @dirrm share/doc/HTML/es/kcontrol/kcmstyle @dirrm share/doc/HTML/es/kcontrol/kcmsmserver @dirrm share/doc/HTML/es/kcontrol/kcmnotify -@dirrm share/doc/HTML/es/kcontrol/kcmlowbatwarn -@dirrm share/doc/HTML/es/kcontrol/kcmlowbatcrit @dirrm share/doc/HTML/es/kcontrol/kcmlaunch -@dirrm share/doc/HTML/es/kcontrol/kcmktalkd @dirrm share/doc/HTML/es/kcontrol/kcmkonsole @dirrm share/doc/HTML/es/kcontrol/kcmdisplay @dirrm share/doc/HTML/es/kcontrol/kcmcss @dirrm share/doc/HTML/es/kcontrol/kcmaccess -@dirrm share/doc/HTML/es/kcontrol/kalarmd @dirrm share/doc/HTML/es/kcontrol/joystick @dirrm share/doc/HTML/es/kcontrol/icons @dirrm share/doc/HTML/es/kcontrol/helpindex @@ -2016,7 +1920,6 @@ share/locale/es/entry.desktop @dirrm share/doc/HTML/es/kcontrol/background @dirrm share/doc/HTML/es/kcontrol/autostart @dirrm share/doc/HTML/es/kcontrol -@dirrm share/doc/HTML/es/kcmlirc @dirrm share/doc/HTML/es/kcharselect @dirrm share/doc/HTML/es/kcalc @dirrm share/doc/HTML/es/kcachegrind @@ -2024,26 +1927,22 @@ share/locale/es/entry.desktop @dirrm share/doc/HTML/es/kbruch @dirrm share/doc/HTML/es/kbreakout @dirrm share/doc/HTML/es/kbounce +@dirrm share/doc/HTML/es/kblocks @dirrm share/doc/HTML/es/kblackbox @dirrm share/doc/HTML/es/kbattleship @dirrm share/doc/HTML/es/katomic @dirrm share/doc/HTML/es/kate-plugins @dirrm share/doc/HTML/es/kate -@dirrm share/doc/HTML/es/karm @dirrm share/doc/HTML/es/kapptemplate -@dirrm share/doc/HTML/es/kamera @dirrm share/doc/HTML/es/kalzium @dirrm share/doc/HTML/es/kalarm @dirrm share/doc/HTML/es/kaddressbook @dirrm share/doc/HTML/es/juk -@dirrm share/doc/HTML/es/irkick -@dirrm share/doc/HTML/es/flashkard @dirrm share/doc/HTML/es/dolphin @dirrm share/doc/HTML/es/cervisia @dirrm share/doc/HTML/es/bovo @dirrm share/doc/HTML/es/ark @dirrm share/doc/HTML/es/amor -@dirrm share/doc/HTML/es/aktion @dirrm share/doc/HTML/es/akregator @dirrm share/apps/kvtml/es @dirrm share/apps/kvtml @@ -2054,6 +1953,9 @@ share/locale/es/entry.desktop @dirrm share/apps/klettres/es/alpha @dirrm share/apps/klettres/es @dirrm share/apps/klettres -@dirrm share/apps/khangman/data/es -@dirrm share/apps/khangman/data @dirrm share/apps/khangman +@dirrmtry man/es/man8 +@dirrmtry man/es/man7 +@dirrmtry man/es/man6 +@dirrmtry man/es/man1 +@dirrmtry man/es diff --git a/misc/kde4-l10n-et/Makefile b/misc/kde4-l10n-et/Makefile index 9cf206913e5b..a6e369ba6e5e 100644 --- a/misc/kde4-l10n-et/Makefile +++ b/misc/kde4-l10n-et/Makefile @@ -14,6 +14,9 @@ COMMENT= Esperanto messages and documentation for KDE4 KDE4_L10N= et +MANLANG= ${KDE4_L10N} +.include <${.CURDIR}/Makefile.man> + post-extract: ${MKDIR} ${WRKSRC}/build diff --git a/misc/kde4-l10n-et/distinfo b/misc/kde4-l10n-et/distinfo index 33d993a498b9..98e5dbfef09f 100644 --- a/misc/kde4-l10n-et/distinfo +++ b/misc/kde4-l10n-et/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-et-4.1.4.tar.bz2) = c1516ef8c2d60e03ca10bb5f9ef731ee -SHA256 (KDE/kde-l10n/kde-l10n-et-4.1.4.tar.bz2) = d066abce33ad0b08985f33464f8569e34730c97d7a1d5ed498f3b2df748f8a05 -SIZE (KDE/kde-l10n/kde-l10n-et-4.1.4.tar.bz2) = 8543449 +MD5 (KDE/kde-l10n/kde-l10n-et-4.2.0.tar.bz2) = fb2e1d63d9d926c6639a537b6bf73d03 +SHA256 (KDE/kde-l10n/kde-l10n-et-4.2.0.tar.bz2) = 066963eb5f6f32e69c8da12cfd72b1c3241db1aef14762bd0863f187bca79d2a +SIZE (KDE/kde-l10n/kde-l10n-et-4.2.0.tar.bz2) = 8465511 diff --git a/misc/kde4-l10n-et/pkg-plist b/misc/kde4-l10n-et/pkg-plist index 4c6cfd3eaf88..ed055a8ac12f 100644 --- a/misc/kde4-l10n-et/pkg-plist +++ b/misc/kde4-l10n-et/pkg-plist @@ -26,21 +26,13 @@ share/doc/HTML/et/dolphin/index.docbook share/doc/HTML/et/dragonplayer/common share/doc/HTML/et/dragonplayer/index.cache.bz2 share/doc/HTML/et/dragonplayer/index.docbook -share/doc/HTML/et/flashkard/common -share/doc/HTML/et/flashkard/index.cache.bz2 -share/doc/HTML/et/flashkard/index.docbook share/doc/HTML/et/gwenview/common -share/doc/HTML/et/gwenview/docked_windows.docbook -share/doc/HTML/et/gwenview/external_tools.docbook share/doc/HTML/et/gwenview/index.cache.bz2 share/doc/HTML/et/gwenview/index.docbook share/doc/HTML/et/gwenview/interface.docbook share/doc/HTML/et/gwenview/introduction.docbook share/doc/HTML/et/gwenview/keybindings.docbook share/doc/HTML/et/gwenview/mouse.docbook -share/doc/HTML/et/irkick/common -share/doc/HTML/et/irkick/index.cache.bz2 -share/doc/HTML/et/irkick/index.docbook share/doc/HTML/et/juk/common share/doc/HTML/et/juk/index.cache.bz2 share/doc/HTML/et/juk/index.docbook @@ -54,15 +46,9 @@ share/doc/HTML/et/kalzium/common share/doc/HTML/et/kalzium/index.cache.bz2 share/doc/HTML/et/kalzium/index.docbook share/doc/HTML/et/kalzium/man-kalzium.1.docbook -share/doc/HTML/et/kamera/common -share/doc/HTML/et/kamera/index.cache.bz2 -share/doc/HTML/et/kamera/index.docbook share/doc/HTML/et/kanagram/common share/doc/HTML/et/kanagram/index.cache.bz2 share/doc/HTML/et/kanagram/index.docbook -share/doc/HTML/et/karm/common -share/doc/HTML/et/karm/index.cache.bz2 -share/doc/HTML/et/karm/index.docbook share/doc/HTML/et/kate-plugins/common share/doc/HTML/et/kate-plugins/filetemplates.docbook share/doc/HTML/et/kate-plugins/htmltools.docbook @@ -115,9 +101,6 @@ share/doc/HTML/et/kcalc/index.docbook share/doc/HTML/et/kcharselect/common share/doc/HTML/et/kcharselect/index.cache.bz2 share/doc/HTML/et/kcharselect/index.docbook -share/doc/HTML/et/kcmlirc/common -share/doc/HTML/et/kcmlirc/index.cache.bz2 -share/doc/HTML/et/kcmlirc/index.docbook share/doc/HTML/et/kcontrol/autostart/common share/doc/HTML/et/kcontrol/autostart/index.cache.bz2 share/doc/HTML/et/kcontrol/autostart/index.docbook @@ -127,6 +110,9 @@ share/doc/HTML/et/kcontrol/background/index.docbook share/doc/HTML/et/kcontrol/bell/common share/doc/HTML/et/kcontrol/bell/index.cache.bz2 share/doc/HTML/et/kcontrol/bell/index.docbook +share/doc/HTML/et/kcontrol/blockdevices/common +share/doc/HTML/et/kcontrol/blockdevices/index.cache.bz2 +share/doc/HTML/et/kcontrol/blockdevices/index.docbook share/doc/HTML/et/kcontrol/cache/common share/doc/HTML/et/kcontrol/cache/index.cache.bz2 share/doc/HTML/et/kcontrol/cache/index.docbook @@ -181,9 +167,6 @@ share/doc/HTML/et/kcontrol/icons/index.docbook share/doc/HTML/et/kcontrol/joystick/common share/doc/HTML/et/kcontrol/joystick/index.cache.bz2 share/doc/HTML/et/kcontrol/joystick/index.docbook -share/doc/HTML/et/kcontrol/kalarmd/common -share/doc/HTML/et/kcontrol/kalarmd/index.cache.bz2 -share/doc/HTML/et/kcontrol/kalarmd/index.docbook share/doc/HTML/et/kcontrol/kcmaccess/common share/doc/HTML/et/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/et/kcontrol/kcmaccess/index.docbook @@ -196,18 +179,9 @@ share/doc/HTML/et/kcontrol/kcmdisplay/index.docbook share/doc/HTML/et/kcontrol/kcmkonsole/common share/doc/HTML/et/kcontrol/kcmkonsole/index.cache.bz2 share/doc/HTML/et/kcontrol/kcmkonsole/index.docbook -share/doc/HTML/et/kcontrol/kcmktalkd/common -share/doc/HTML/et/kcontrol/kcmktalkd/index.cache.bz2 -share/doc/HTML/et/kcontrol/kcmktalkd/index.docbook share/doc/HTML/et/kcontrol/kcmlaunch/common share/doc/HTML/et/kcontrol/kcmlaunch/index.cache.bz2 share/doc/HTML/et/kcontrol/kcmlaunch/index.docbook -share/doc/HTML/et/kcontrol/kcmlowbatcrit/common -share/doc/HTML/et/kcontrol/kcmlowbatcrit/index.cache.bz2 -share/doc/HTML/et/kcontrol/kcmlowbatcrit/index.docbook -share/doc/HTML/et/kcontrol/kcmlowbatwarn/common -share/doc/HTML/et/kcontrol/kcmlowbatwarn/index.cache.bz2 -share/doc/HTML/et/kcontrol/kcmlowbatwarn/index.docbook share/doc/HTML/et/kcontrol/kcmnotify/common share/doc/HTML/et/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/et/kcontrol/kcmnotify/index.docbook @@ -233,21 +207,18 @@ share/doc/HTML/et/kcontrol/khtml/common share/doc/HTML/et/kcontrol/khtml/index.cache.bz2 share/doc/HTML/et/kcontrol/khtml/index.docbook share/doc/HTML/et/kcontrol/khtml/nsplugin.docbook +share/doc/HTML/et/kcontrol/knetworkconf/common +share/doc/HTML/et/kcontrol/knetworkconf/index.cache.bz2 +share/doc/HTML/et/kcontrol/knetworkconf/index.docbook share/doc/HTML/et/kcontrol/kwindecoration/common share/doc/HTML/et/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/et/kcontrol/kwindecoration/index.docbook share/doc/HTML/et/kcontrol/kxkb/common share/doc/HTML/et/kcontrol/kxkb/index.cache.bz2 share/doc/HTML/et/kcontrol/kxkb/index.docbook -share/doc/HTML/et/kcontrol/kxmlrpcd/common -share/doc/HTML/et/kcontrol/kxmlrpcd/index.cache.bz2 -share/doc/HTML/et/kcontrol/kxmlrpcd/index.docbook share/doc/HTML/et/kcontrol/language/common share/doc/HTML/et/kcontrol/language/index.cache.bz2 share/doc/HTML/et/kcontrol/language/index.docbook -share/doc/HTML/et/kcontrol/laptop/common -share/doc/HTML/et/kcontrol/laptop/index.cache.bz2 -share/doc/HTML/et/kcontrol/laptop/index.docbook share/doc/HTML/et/kcontrol/mouse/common share/doc/HTML/et/kcontrol/mouse/index.cache.bz2 share/doc/HTML/et/kcontrol/mouse/index.docbook @@ -269,9 +240,6 @@ share/doc/HTML/et/kcontrol/paths/index.docbook share/doc/HTML/et/kcontrol/performance/common share/doc/HTML/et/kcontrol/performance/index.cache.bz2 share/doc/HTML/et/kcontrol/performance/index.docbook -share/doc/HTML/et/kcontrol/powerctrl/common -share/doc/HTML/et/kcontrol/powerctrl/index.cache.bz2 -share/doc/HTML/et/kcontrol/powerctrl/index.docbook share/doc/HTML/et/kcontrol/proxy/common share/doc/HTML/et/kcontrol/proxy/index.cache.bz2 share/doc/HTML/et/kcontrol/proxy/index.docbook @@ -285,15 +253,12 @@ share/doc/HTML/et/kcontrol/smb/index.docbook share/doc/HTML/et/kcontrol/spellchecking/common share/doc/HTML/et/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/et/kcontrol/spellchecking/index.docbook -share/doc/HTML/et/kcontrol/splashscreen/common -share/doc/HTML/et/kcontrol/splashscreen/index.cache.bz2 -share/doc/HTML/et/kcontrol/splashscreen/index.docbook share/doc/HTML/et/kcontrol/useragent/common share/doc/HTML/et/kcontrol/useragent/index.cache.bz2 share/doc/HTML/et/kcontrol/useragent/index.docbook -share/doc/HTML/et/kcontrol/windowmanagement/common -share/doc/HTML/et/kcontrol/windowmanagement/index.cache.bz2 -share/doc/HTML/et/kcontrol/windowmanagement/index.docbook +share/doc/HTML/et/kcontrol/windowspecific/common +share/doc/HTML/et/kcontrol/windowspecific/index.cache.bz2 +share/doc/HTML/et/kcontrol/windowspecific/index.docbook share/doc/HTML/et/kcron/common share/doc/HTML/et/kcron/index.cache.bz2 share/doc/HTML/et/kcron/index.docbook @@ -318,12 +283,6 @@ share/doc/HTML/et/kdm/index.cache.bz2 share/doc/HTML/et/kdm/index.docbook share/doc/HTML/et/kdm/kdmrc-ref.docbook share/doc/HTML/et/kdm/theme-ref.docbook -share/doc/HTML/et/kdvi/common -share/doc/HTML/et/kdvi/index.cache.bz2 -share/doc/HTML/et/kdvi/index.docbook -share/doc/HTML/et/kedit/common -share/doc/HTML/et/kedit/index.cache.bz2 -share/doc/HTML/et/kedit/index.docbook share/doc/HTML/et/kfilereplace/common share/doc/HTML/et/kfilereplace/index.cache.bz2 share/doc/HTML/et/kfilereplace/index.docbook @@ -337,6 +296,9 @@ share/doc/HTML/et/kfloppy/index.docbook share/doc/HTML/et/kgamma/common share/doc/HTML/et/kgamma/index.cache.bz2 share/doc/HTML/et/kgamma/index.docbook +share/doc/HTML/et/kgeography/common +share/doc/HTML/et/kgeography/index.cache.bz2 +share/doc/HTML/et/kgeography/index.docbook share/doc/HTML/et/kget/common share/doc/HTML/et/kget/index.cache.bz2 share/doc/HTML/et/kget/index.docbook @@ -350,6 +312,8 @@ share/doc/HTML/et/khangman/common share/doc/HTML/et/khangman/index.cache.bz2 share/doc/HTML/et/khangman/index.docbook share/doc/HTML/et/khangman/man-khangman.6.docbook +share/doc/HTML/et/khelpcenter/common +share/doc/HTML/et/khelpcenter/contact.docbook share/doc/HTML/et/khelpcenter/faq/about.docbook share/doc/HTML/et/khelpcenter/faq/common share/doc/HTML/et/khelpcenter/faq/configkde.docbook @@ -377,9 +341,13 @@ share/doc/HTML/et/khelpcenter/glossary/common share/doc/HTML/et/khelpcenter/glossary/index.cache.bz2 share/doc/HTML/et/khelpcenter/glossary/index.docbook share/doc/HTML/et/khelpcenter/glossary/kdeprintingglossary.docbook +share/doc/HTML/et/khelpcenter/help.docbook +share/doc/HTML/et/khelpcenter/index.cache.bz2 +share/doc/HTML/et/khelpcenter/index.docbook share/doc/HTML/et/khelpcenter/quickstart/common share/doc/HTML/et/khelpcenter/quickstart/index.cache.bz2 share/doc/HTML/et/khelpcenter/quickstart/index.docbook +share/doc/HTML/et/khelpcenter/support.docbook share/doc/HTML/et/khelpcenter/userguide/a-window.png share/doc/HTML/et/khelpcenter/userguide/accessibility.docbook share/doc/HTML/et/khelpcenter/userguide/amarok.png @@ -460,13 +428,12 @@ share/doc/HTML/et/khelpcenter/userguide/your-kde-account.docbook share/doc/HTML/et/khelpcenter/visualdict/common share/doc/HTML/et/khelpcenter/visualdict/index.cache.bz2 share/doc/HTML/et/khelpcenter/visualdict/index.docbook +share/doc/HTML/et/khelpcenter/welcome.docbook +share/doc/HTML/et/khelpcenter/whatiskde.docbook share/doc/HTML/et/kig/common share/doc/HTML/et/kig/index.cache.bz2 share/doc/HTML/et/kig/index.docbook share/doc/HTML/et/kig/man-kig.1.docbook -share/doc/HTML/et/kinfocenter/blockdevices/common -share/doc/HTML/et/kinfocenter/blockdevices/index.cache.bz2 -share/doc/HTML/et/kinfocenter/blockdevices/index.docbook share/doc/HTML/et/kinfocenter/devices/common share/doc/HTML/et/kinfocenter/devices/index.cache.bz2 share/doc/HTML/et/kinfocenter/devices/index.docbook @@ -518,48 +485,93 @@ share/doc/HTML/et/kinfocenter/usb/index.docbook share/doc/HTML/et/kinfocenter/xserver/common share/doc/HTML/et/kinfocenter/xserver/index.cache.bz2 share/doc/HTML/et/kinfocenter/xserver/index.docbook -share/doc/HTML/et/kioslave/bzip.docbook -share/doc/HTML/et/kioslave/bzip2.docbook -share/doc/HTML/et/kioslave/cgi.docbook -share/doc/HTML/et/kioslave/common -share/doc/HTML/et/kioslave/data.docbook -share/doc/HTML/et/kioslave/file.docbook -share/doc/HTML/et/kioslave/finger.docbook -share/doc/HTML/et/kioslave/fish.docbook -share/doc/HTML/et/kioslave/floppy.docbook -share/doc/HTML/et/kioslave/ftp.docbook -share/doc/HTML/et/kioslave/gopher.docbook -share/doc/HTML/et/kioslave/gzip.docbook -share/doc/HTML/et/kioslave/help.docbook -share/doc/HTML/et/kioslave/http.docbook -share/doc/HTML/et/kioslave/https.docbook -share/doc/HTML/et/kioslave/imap.docbook -share/doc/HTML/et/kioslave/imaps.docbook -share/doc/HTML/et/kioslave/index.cache.bz2 -share/doc/HTML/et/kioslave/index.docbook -share/doc/HTML/et/kioslave/info.docbook -share/doc/HTML/et/kioslave/lan.docbook -share/doc/HTML/et/kioslave/ldap.docbook -share/doc/HTML/et/kioslave/mac.docbook -share/doc/HTML/et/kioslave/mailto.docbook -share/doc/HTML/et/kioslave/man.docbook -share/doc/HTML/et/kioslave/mrml.docbook -share/doc/HTML/et/kioslave/news.docbook -share/doc/HTML/et/kioslave/nfs.docbook -share/doc/HTML/et/kioslave/nntp.docbook -share/doc/HTML/et/kioslave/pop3.docbook -share/doc/HTML/et/kioslave/pop3s.docbook -share/doc/HTML/et/kioslave/print.docbook -share/doc/HTML/et/kioslave/rlan.docbook -share/doc/HTML/et/kioslave/rlogin.docbook -share/doc/HTML/et/kioslave/sftp.docbook -share/doc/HTML/et/kioslave/smb.docbook -share/doc/HTML/et/kioslave/smtp.docbook -share/doc/HTML/et/kioslave/tar.docbook -share/doc/HTML/et/kioslave/telnet.docbook -share/doc/HTML/et/kioslave/thumbnail.docbook -share/doc/HTML/et/kioslave/webdav.docbook -share/doc/HTML/et/kioslave/webdavs.docbook +share/doc/HTML/et/kioslave/audiocd/common +share/doc/HTML/et/kioslave/audiocd/index.cache.bz2 +share/doc/HTML/et/kioslave/audiocd/index.docbook +share/doc/HTML/et/kioslave/bzip2/common +share/doc/HTML/et/kioslave/bzip2/index.cache.bz2 +share/doc/HTML/et/kioslave/bzip2/index.docbook +share/doc/HTML/et/kioslave/cgi/common +share/doc/HTML/et/kioslave/cgi/index.cache.bz2 +share/doc/HTML/et/kioslave/cgi/index.docbook +share/doc/HTML/et/kioslave/data/common +share/doc/HTML/et/kioslave/data/index.cache.bz2 +share/doc/HTML/et/kioslave/data/index.docbook +share/doc/HTML/et/kioslave/file/common +share/doc/HTML/et/kioslave/file/index.cache.bz2 +share/doc/HTML/et/kioslave/file/index.docbook +share/doc/HTML/et/kioslave/finger/common +share/doc/HTML/et/kioslave/finger/index.cache.bz2 +share/doc/HTML/et/kioslave/finger/index.docbook +share/doc/HTML/et/kioslave/fish/common +share/doc/HTML/et/kioslave/fish/index.cache.bz2 +share/doc/HTML/et/kioslave/fish/index.docbook +share/doc/HTML/et/kioslave/floppy/common +share/doc/HTML/et/kioslave/floppy/index.cache.bz2 +share/doc/HTML/et/kioslave/floppy/index.docbook +share/doc/HTML/et/kioslave/ftp/common +share/doc/HTML/et/kioslave/ftp/index.cache.bz2 +share/doc/HTML/et/kioslave/ftp/index.docbook +share/doc/HTML/et/kioslave/gzip/common +share/doc/HTML/et/kioslave/gzip/index.cache.bz2 +share/doc/HTML/et/kioslave/gzip/index.docbook +share/doc/HTML/et/kioslave/help/common +share/doc/HTML/et/kioslave/help/index.cache.bz2 +share/doc/HTML/et/kioslave/help/index.docbook +share/doc/HTML/et/kioslave/http/common +share/doc/HTML/et/kioslave/http/index.cache.bz2 +share/doc/HTML/et/kioslave/http/index.docbook +share/doc/HTML/et/kioslave/imap/common +share/doc/HTML/et/kioslave/imap/index.cache.bz2 +share/doc/HTML/et/kioslave/imap/index.docbook +share/doc/HTML/et/kioslave/info/common +share/doc/HTML/et/kioslave/info/index.cache.bz2 +share/doc/HTML/et/kioslave/info/index.docbook +share/doc/HTML/et/kioslave/ldap/common +share/doc/HTML/et/kioslave/ldap/index.cache.bz2 +share/doc/HTML/et/kioslave/ldap/index.docbook +share/doc/HTML/et/kioslave/mailto/common +share/doc/HTML/et/kioslave/mailto/index.cache.bz2 +share/doc/HTML/et/kioslave/mailto/index.docbook +share/doc/HTML/et/kioslave/man/common +share/doc/HTML/et/kioslave/man/index.cache.bz2 +share/doc/HTML/et/kioslave/man/index.docbook +share/doc/HTML/et/kioslave/news/common +share/doc/HTML/et/kioslave/news/index.cache.bz2 +share/doc/HTML/et/kioslave/news/index.docbook +share/doc/HTML/et/kioslave/nfs/common +share/doc/HTML/et/kioslave/nfs/index.cache.bz2 +share/doc/HTML/et/kioslave/nfs/index.docbook +share/doc/HTML/et/kioslave/nntp/common +share/doc/HTML/et/kioslave/nntp/index.cache.bz2 +share/doc/HTML/et/kioslave/nntp/index.docbook +share/doc/HTML/et/kioslave/pop3/common +share/doc/HTML/et/kioslave/pop3/index.cache.bz2 +share/doc/HTML/et/kioslave/pop3/index.docbook +share/doc/HTML/et/kioslave/rlogin/common +share/doc/HTML/et/kioslave/rlogin/index.cache.bz2 +share/doc/HTML/et/kioslave/rlogin/index.docbook +share/doc/HTML/et/kioslave/sftp/common +share/doc/HTML/et/kioslave/sftp/index.cache.bz2 +share/doc/HTML/et/kioslave/sftp/index.docbook +share/doc/HTML/et/kioslave/smb/common +share/doc/HTML/et/kioslave/smb/index.cache.bz2 +share/doc/HTML/et/kioslave/smb/index.docbook +share/doc/HTML/et/kioslave/smtp/common +share/doc/HTML/et/kioslave/smtp/index.cache.bz2 +share/doc/HTML/et/kioslave/smtp/index.docbook +share/doc/HTML/et/kioslave/tar/common +share/doc/HTML/et/kioslave/tar/index.cache.bz2 +share/doc/HTML/et/kioslave/tar/index.docbook +share/doc/HTML/et/kioslave/telnet/common +share/doc/HTML/et/kioslave/telnet/index.cache.bz2 +share/doc/HTML/et/kioslave/telnet/index.docbook +share/doc/HTML/et/kioslave/thumbnail/common +share/doc/HTML/et/kioslave/thumbnail/index.cache.bz2 +share/doc/HTML/et/kioslave/thumbnail/index.docbook +share/doc/HTML/et/kioslave/webdav/common +share/doc/HTML/et/kioslave/webdav/index.cache.bz2 +share/doc/HTML/et/kioslave/webdav/index.docbook share/doc/HTML/et/kiten/common share/doc/HTML/et/kiten/index.cache.bz2 share/doc/HTML/et/kiten/index.docbook @@ -602,9 +614,6 @@ share/doc/HTML/et/kmail/index.docbook share/doc/HTML/et/kmail/intro.docbook share/doc/HTML/et/kmail/menus.docbook share/doc/HTML/et/kmail/using-kmail.docbook -share/doc/HTML/et/kmathtool/common -share/doc/HTML/et/kmathtool/index.cache.bz2 -share/doc/HTML/et/kmathtool/index.docbook share/doc/HTML/et/kmenuedit/common share/doc/HTML/et/kmenuedit/index.cache.bz2 share/doc/HTML/et/kmenuedit/index.docbook @@ -614,9 +623,6 @@ share/doc/HTML/et/kmines/index.docbook share/doc/HTML/et/kmix/common share/doc/HTML/et/kmix/index.cache.bz2 share/doc/HTML/et/kmix/index.docbook -share/doc/HTML/et/kmoon/common -share/doc/HTML/et/kmoon/index.cache.bz2 -share/doc/HTML/et/kmoon/index.docbook share/doc/HTML/et/kmousetool/common share/doc/HTML/et/kmousetool/index.cache.bz2 share/doc/HTML/et/kmousetool/index.docbook @@ -637,19 +643,12 @@ share/doc/HTML/et/kmplot/index.docbook share/doc/HTML/et/kmplot/install.docbook share/doc/HTML/et/kmplot/introduction.docbook share/doc/HTML/et/kmplot/man-kmplot.1.docbook -share/doc/HTML/et/kmplot/menu.docbook share/doc/HTML/et/kmplot/reference.docbook share/doc/HTML/et/kmplot/using.docbook share/doc/HTML/et/knetattach/common share/doc/HTML/et/knetattach/index.cache.bz2 share/doc/HTML/et/knetattach/index.docbook share/doc/HTML/et/knetattach/screenshot.png -share/doc/HTML/et/knetworkconf/common -share/doc/HTML/et/knetworkconf/index.cache.bz2 -share/doc/HTML/et/knetworkconf/index.docbook -share/doc/HTML/et/knewsticker/common -share/doc/HTML/et/knewsticker/index.cache.bz2 -share/doc/HTML/et/knewsticker/index.docbook share/doc/HTML/et/knode/commands.docbook share/doc/HTML/et/knode/common share/doc/HTML/et/knode/credits.docbook @@ -758,8 +757,6 @@ share/doc/HTML/et/kopete/index.docbook share/doc/HTML/et/kopete/menus.docbook share/doc/HTML/et/kopete/pipes.docbook share/doc/HTML/et/korganizer/common -share/doc/HTML/et/korganizer/exchange-plugin.docbook -share/doc/HTML/et/korganizer/group-scheduling.docbook share/doc/HTML/et/korganizer/index.cache.bz2 share/doc/HTML/et/korganizer/index.docbook share/doc/HTML/et/korganizer/outlook-to-vcalendar.docbook @@ -774,17 +771,6 @@ share/doc/HTML/et/kpat/common share/doc/HTML/et/kpat/index.cache.bz2 share/doc/HTML/et/kpat/index.docbook share/doc/HTML/et/kpat/man-kpat.6.docbook -share/doc/HTML/et/kpat/man.docbook -share/doc/HTML/et/kpercentage/commands.docbook -share/doc/HTML/et/kpercentage/common -share/doc/HTML/et/kpercentage/credits.docbook -share/doc/HTML/et/kpercentage/devel.docbook -share/doc/HTML/et/kpercentage/faq.docbook -share/doc/HTML/et/kpercentage/index.cache.bz2 -share/doc/HTML/et/kpercentage/index.docbook -share/doc/HTML/et/kpercentage/install.docbook -share/doc/HTML/et/kpercentage/introduction.docbook -share/doc/HTML/et/kpercentage/using.docbook share/doc/HTML/et/kpilot/common share/doc/HTML/et/kpilot/configuration.docbook share/doc/HTML/et/kpilot/faq.docbook @@ -827,24 +813,12 @@ share/doc/HTML/et/kscd/index.docbook share/doc/HTML/et/kshisen/common share/doc/HTML/et/kshisen/index.cache.bz2 share/doc/HTML/et/kshisen/index.docbook -share/doc/HTML/et/ksim/common -share/doc/HTML/et/ksim/index.cache.bz2 -share/doc/HTML/et/ksim/index.docbook -share/doc/HTML/et/ksirc/common -share/doc/HTML/et/ksirc/index.cache.bz2 -share/doc/HTML/et/ksirc/index.docbook -share/doc/HTML/et/ksirtet/common -share/doc/HTML/et/ksirtet/index.cache.bz2 -share/doc/HTML/et/ksirtet/index.docbook share/doc/HTML/et/ksnapshot/common share/doc/HTML/et/ksnapshot/index.cache.bz2 share/doc/HTML/et/ksnapshot/index.docbook share/doc/HTML/et/kspaceduel/common share/doc/HTML/et/kspaceduel/index.cache.bz2 share/doc/HTML/et/kspaceduel/index.docbook -share/doc/HTML/et/ksplashml/common -share/doc/HTML/et/ksplashml/index.cache.bz2 -share/doc/HTML/et/ksplashml/index.docbook share/doc/HTML/et/kstars/ai-contents.docbook share/doc/HTML/et/kstars/altvstime.docbook share/doc/HTML/et/kstars/astroinfo.docbook @@ -893,17 +867,6 @@ share/doc/HTML/et/kstars/leapyear.docbook share/doc/HTML/et/kstars/lightcurves.docbook share/doc/HTML/et/kstars/luminosity.docbook share/doc/HTML/et/kstars/magnitude.docbook -share/doc/HTML/et/kstars/man-celestrongps.1.docbook -share/doc/HTML/et/kstars/man-indi_celestron_gps.1.docbook -share/doc/HTML/et/kstars/man-indi_fli_ccd.1.docbook -share/doc/HTML/et/kstars/man-indi_lx200_16.1.docbook -share/doc/HTML/et/kstars/man-indi_lx200autostar.1.docbook -share/doc/HTML/et/kstars/man-indi_lx200classic.1.docbook -share/doc/HTML/et/kstars/man-indi_lx200generic.1.docbook -share/doc/HTML/et/kstars/man-indi_temma.1.docbook -share/doc/HTML/et/kstars/man-indi_v4l_generic.1.docbook -share/doc/HTML/et/kstars/man-indi_v4l_philips.1.docbook -share/doc/HTML/et/kstars/man-indiserver.1.docbook share/doc/HTML/et/kstars/meridian.docbook share/doc/HTML/et/kstars/observinglist.docbook share/doc/HTML/et/kstars/parallax.docbook @@ -939,9 +902,6 @@ share/doc/HTML/et/ktimer/index.docbook share/doc/HTML/et/ktimetracker/common share/doc/HTML/et/ktimetracker/index.cache.bz2 share/doc/HTML/et/ktimetracker/index.docbook -share/doc/HTML/et/ktnef/common -share/doc/HTML/et/ktnef/index.cache.bz2 -share/doc/HTML/et/ktnef/index.docbook share/doc/HTML/et/ktouch/common share/doc/HTML/et/ktouch/index.cache.bz2 share/doc/HTML/et/ktouch/index.docbook @@ -953,14 +913,6 @@ share/doc/HTML/et/ktuberling/common share/doc/HTML/et/ktuberling/index.cache.bz2 share/doc/HTML/et/ktuberling/index.docbook share/doc/HTML/et/ktuberling/technical-reference.docbook -share/doc/HTML/et/kturtle/common -share/doc/HTML/et/kturtle/getting-started.docbook -share/doc/HTML/et/kturtle/glossary.docbook -share/doc/HTML/et/kturtle/index.cache.bz2 -share/doc/HTML/et/kturtle/index.docbook -share/doc/HTML/et/kturtle/programming-reference.docbook -share/doc/HTML/et/kturtle/translator-guide.docbook -share/doc/HTML/et/kturtle/using-kturtle.docbook share/doc/HTML/et/kuser/common share/doc/HTML/et/kuser/index.cache.bz2 share/doc/HTML/et/kuser/index.docbook @@ -976,15 +928,9 @@ share/doc/HTML/et/kweather/index.docbook share/doc/HTML/et/kwordquiz/common share/doc/HTML/et/kwordquiz/index.cache.bz2 share/doc/HTML/et/kwordquiz/index.docbook -share/doc/HTML/et/kworldclock/common -share/doc/HTML/et/kworldclock/index.cache.bz2 -share/doc/HTML/et/kworldclock/index.docbook share/doc/HTML/et/kwrite/common share/doc/HTML/et/kwrite/index.cache.bz2 share/doc/HTML/et/kwrite/index.docbook -share/doc/HTML/et/kxkb/common -share/doc/HTML/et/kxkb/index.cache.bz2 -share/doc/HTML/et/kxkb/index.docbook share/doc/HTML/et/kxsldbg/callstack.docbook share/doc/HTML/et/kxsldbg/common share/doc/HTML/et/kxsldbg/credits.docbook @@ -1005,6 +951,9 @@ share/doc/HTML/et/lilo-config/index.docbook share/doc/HTML/et/lskat/common share/doc/HTML/et/lskat/index.cache.bz2 share/doc/HTML/et/lskat/index.docbook +share/doc/HTML/et/okular/common +share/doc/HTML/et/okular/index.cache.bz2 +share/doc/HTML/et/okular/index.docbook share/doc/HTML/et/sonnet/common share/doc/HTML/et/sonnet/index.cache.bz2 share/doc/HTML/et/sonnet/index.docbook @@ -1036,6 +985,7 @@ share/locale/et/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/et/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/et/LC_MESSAGES/audiorename_plugin.mo share/locale/et/LC_MESSAGES/blinken.mo +share/locale/et/LC_MESSAGES/bomber.mo share/locale/et/LC_MESSAGES/bovo.mo share/locale/et/LC_MESSAGES/cervisia.mo share/locale/et/LC_MESSAGES/cvsservice.mo @@ -1050,6 +1000,7 @@ share/locale/et/LC_MESSAGES/imagerename_plugin.mo share/locale/et/LC_MESSAGES/joystick.mo share/locale/et/LC_MESSAGES/juk.mo share/locale/et/LC_MESSAGES/kabc.mo +share/locale/et/LC_MESSAGES/kabc_akonadi.mo share/locale/et/LC_MESSAGES/kabc_dir.mo share/locale/et/LC_MESSAGES/kabc_file.mo share/locale/et/LC_MESSAGES/kabc_ldapkio.mo @@ -1063,7 +1014,9 @@ share/locale/et/LC_MESSAGES/kaddressbook.mo share/locale/et/LC_MESSAGES/kalarm.mo share/locale/et/LC_MESSAGES/kalgebra.mo share/locale/et/LC_MESSAGES/kalzium.mo +share/locale/et/LC_MESSAGES/kalzium_qt.mo share/locale/et/LC_MESSAGES/kanagram.mo +share/locale/et/LC_MESSAGES/kapman.mo share/locale/et/LC_MESSAGES/kappfinder.mo share/locale/et/LC_MESSAGES/kapptemplate.mo share/locale/et/LC_MESSAGES/kate.mo @@ -1077,7 +1030,6 @@ share/locale/et/LC_MESSAGES/kateinsertcommand.mo share/locale/et/LC_MESSAGES/katekjswrapper.mo share/locale/et/LC_MESSAGES/katekonsoleplugin.mo share/locale/et/LC_MESSAGES/katemailfilesplugin.mo -share/locale/et/LC_MESSAGES/katemake.mo share/locale/et/LC_MESSAGES/kateopenheader.mo share/locale/et/LC_MESSAGES/katepart4.mo share/locale/et/LC_MESSAGES/katepybrowse.mo @@ -1096,14 +1048,14 @@ share/locale/et/LC_MESSAGES/kblocks.mo share/locale/et/LC_MESSAGES/kbounce.mo share/locale/et/LC_MESSAGES/kbreakout.mo share/locale/et/LC_MESSAGES/kbruch.mo -share/locale/et/LC_MESSAGES/kbstateapplet.mo share/locale/et/LC_MESSAGES/kbugbuster.mo share/locale/et/LC_MESSAGES/kcachegrind.mo share/locale/et/LC_MESSAGES/kcalc.mo share/locale/et/LC_MESSAGES/kcertpart.mo share/locale/et/LC_MESSAGES/kcharselect.mo -share/locale/et/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/et/LC_MESSAGES/kcm_akonadi.mo share/locale/et/LC_MESSAGES/kcm_autostart.mo +share/locale/et/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/et/LC_MESSAGES/kcm_emoticons.mo share/locale/et/LC_MESSAGES/kcm_krfb.mo share/locale/et/LC_MESSAGES/kcm_kwindesktop.mo @@ -1113,6 +1065,7 @@ share/locale/et/LC_MESSAGES/kcm_pci.mo share/locale/et/LC_MESSAGES/kcm_phonon.mo share/locale/et/LC_MESSAGES/kcm_phononxine.mo share/locale/et/LC_MESSAGES/kcm_solid.mo +share/locale/et/LC_MESSAGES/kcm_standard_actions.mo share/locale/et/LC_MESSAGES/kcmaccess.mo share/locale/et/LC_MESSAGES/kcmaudiocd.mo share/locale/et/LC_MESSAGES/kcmbackground.mo @@ -1162,7 +1115,6 @@ share/locale/et/LC_MESSAGES/kcmsmartcard.mo share/locale/et/LC_MESSAGES/kcmsmserver.mo share/locale/et/LC_MESSAGES/kcmsolidproc.mo share/locale/et/LC_MESSAGES/kcmstyle.mo -share/locale/et/LC_MESSAGES/kcmtaskbar.mo share/locale/et/LC_MESSAGES/kcmusb.mo share/locale/et/LC_MESSAGES/kcmview1394.mo share/locale/et/LC_MESSAGES/kcmxinerama.mo @@ -1170,7 +1122,9 @@ share/locale/et/LC_MESSAGES/kcolorchooser.mo share/locale/et/LC_MESSAGES/kcron.mo share/locale/et/LC_MESSAGES/kdat.mo share/locale/et/LC_MESSAGES/kde-menu.mo +share/locale/et/LC_MESSAGES/kdeasciiquarium.mo share/locale/et/LC_MESSAGES/kdebugdialog.mo +share/locale/et/LC_MESSAGES/kded_phononserver.mo share/locale/et/LC_MESSAGES/kdelibs4.mo share/locale/et/LC_MESSAGES/kdelibs_colors4.mo share/locale/et/LC_MESSAGES/kdepasswd.mo @@ -1181,6 +1135,7 @@ share/locale/et/LC_MESSAGES/kdessh.mo share/locale/et/LC_MESSAGES/kdesu.mo share/locale/et/LC_MESSAGES/kdesud.mo share/locale/et/LC_MESSAGES/kdf.mo +share/locale/et/LC_MESSAGES/kdgantt.mo share/locale/et/LC_MESSAGES/kdgantt1.mo share/locale/et/LC_MESSAGES/kdialog.mo share/locale/et/LC_MESSAGES/kdiamond.mo @@ -1230,12 +1185,15 @@ share/locale/et/LC_MESSAGES/khotnewstuff.mo share/locale/et/LC_MESSAGES/khtmlkttsd.mo share/locale/et/LC_MESSAGES/kiconfinder.mo share/locale/et/LC_MESSAGES/kig.mo +share/locale/et/LC_MESSAGES/killbots.mo share/locale/et/LC_MESSAGES/kimagemapeditor.mo share/locale/et/LC_MESSAGES/kinetd.mo share/locale/et/LC_MESSAGES/kinfocenter.mo share/locale/et/LC_MESSAGES/kio4.mo +share/locale/et/LC_MESSAGES/kio_applications.mo share/locale/et/LC_MESSAGES/kio_archive.mo share/locale/et/LC_MESSAGES/kio_audiocd.mo +share/locale/et/LC_MESSAGES/kio_bookmarks.mo share/locale/et/LC_MESSAGES/kio_finger.mo share/locale/et/LC_MESSAGES/kio_fish.mo share/locale/et/LC_MESSAGES/kio_floppy.mo @@ -1246,11 +1204,12 @@ share/locale/et/LC_MESSAGES/kio_jabberdisco.mo share/locale/et/LC_MESSAGES/kio_ldap.mo share/locale/et/LC_MESSAGES/kio_man.mo share/locale/et/LC_MESSAGES/kio_mbox.mo +share/locale/et/LC_MESSAGES/kio_nepomuksearch.mo share/locale/et/LC_MESSAGES/kio_nfs.mo share/locale/et/LC_MESSAGES/kio_nntp.mo +share/locale/et/LC_MESSAGES/kio_perldoc.mo share/locale/et/LC_MESSAGES/kio_pop3.mo share/locale/et/LC_MESSAGES/kio_remote.mo -share/locale/et/LC_MESSAGES/kio_settings.mo share/locale/et/LC_MESSAGES/kio_sftp.mo share/locale/et/LC_MESSAGES/kio_sieve.mo share/locale/et/LC_MESSAGES/kio_smb.mo @@ -1313,7 +1272,6 @@ share/locale/et/LC_MESSAGES/kpackage.mo share/locale/et/LC_MESSAGES/kpartsaver.mo share/locale/et/LC_MESSAGES/kpasswdserver.mo share/locale/et/LC_MESSAGES/kpat.mo -share/locale/et/LC_MESSAGES/kpercentage.mo share/locale/et/LC_MESSAGES/kpilot.mo share/locale/et/LC_MESSAGES/kppp.mo share/locale/et/LC_MESSAGES/kppplogview.mo @@ -1337,20 +1295,12 @@ share/locale/et/LC_MESSAGES/kreversi.mo share/locale/et/LC_MESSAGES/krfb.mo share/locale/et/LC_MESSAGES/kruler.mo share/locale/et/LC_MESSAGES/krunner.mo -share/locale/et/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/et/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/et/LC_MESSAGES/krunner_contacts.mo -share/locale/et/LC_MESSAGES/krunner_converterrunner.mo -share/locale/et/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/et/LC_MESSAGES/krunner_sessions.mo -share/locale/et/LC_MESSAGES/krunner_shellrunner.mo -share/locale/et/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/et/LC_MESSAGES/krunner_xesam.mo share/locale/et/LC_MESSAGES/ksame.mo share/locale/et/LC_MESSAGES/ksaneplugin.mo share/locale/et/LC_MESSAGES/ksayit.mo share/locale/et/LC_MESSAGES/kscd.mo share/locale/et/LC_MESSAGES/kscreensaver.mo +share/locale/et/LC_MESSAGES/ksendemail.mo share/locale/et/LC_MESSAGES/kshisen.mo share/locale/et/LC_MESSAGES/kshorturifilter.mo share/locale/et/LC_MESSAGES/ksirk.mo @@ -1367,6 +1317,7 @@ share/locale/et/LC_MESSAGES/kstyle_keramik_config.mo share/locale/et/LC_MESSAGES/kstyle_phase_config.mo share/locale/et/LC_MESSAGES/ksudoku.mo share/locale/et/LC_MESSAGES/ksysguard.mo +share/locale/et/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/et/LC_MESSAGES/ksystemlog.mo share/locale/et/LC_MESSAGES/ksystraycmd.mo share/locale/et/LC_MESSAGES/ksysv.mo @@ -1376,7 +1327,6 @@ share/locale/et/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/et/LC_MESSAGES/kthememanager.mo share/locale/et/LC_MESSAGES/ktimer.mo share/locale/et/LC_MESSAGES/ktimetracker.mo -share/locale/et/LC_MESSAGES/ktnef.mo share/locale/et/LC_MESSAGES/ktouch.mo share/locale/et/LC_MESSAGES/ktraderclient.mo share/locale/et/LC_MESSAGES/kttsd.mo @@ -1388,6 +1338,7 @@ share/locale/et/LC_MESSAGES/kuiserver.mo share/locale/et/LC_MESSAGES/kuiviewer.mo share/locale/et/LC_MESSAGES/kurifilter.mo share/locale/et/LC_MESSAGES/kuser.mo +share/locale/et/LC_MESSAGES/kwalletd.mo share/locale/et/LC_MESSAGES/kwalletmanager.mo share/locale/et/LC_MESSAGES/kwatchgnupg.mo share/locale/et/LC_MESSAGES/kweather.mo @@ -1434,11 +1385,14 @@ share/locale/et/LC_MESSAGES/libmailtransport.mo share/locale/et/LC_MESSAGES/liboktetacore.mo share/locale/et/LC_MESSAGES/libphonon.mo share/locale/et/LC_MESSAGES/libplasma.mo +share/locale/et/LC_MESSAGES/libplasmaclock.mo share/locale/et/LC_MESSAGES/libtaskmanager.mo share/locale/et/LC_MESSAGES/lokalize.mo share/locale/et/LC_MESSAGES/lskat.mo share/locale/et/LC_MESSAGES/marble.mo +share/locale/et/LC_MESSAGES/marble_qt.mo share/locale/et/LC_MESSAGES/nepomuk.mo +share/locale/et/LC_MESSAGES/nepomuksearch.mo share/locale/et/LC_MESSAGES/nsplugin.mo share/locale/et/LC_MESSAGES/okteta.mo share/locale/et/LC_MESSAGES/oktetapart.mo @@ -1448,6 +1402,7 @@ share/locale/et/LC_MESSAGES/okular_comicbook.mo share/locale/et/LC_MESSAGES/okular_djvu.mo share/locale/et/LC_MESSAGES/okular_dvi.mo share/locale/et/LC_MESSAGES/okular_epub.mo +share/locale/et/LC_MESSAGES/okular_fax.mo share/locale/et/LC_MESSAGES/okular_fictionbook.mo share/locale/et/LC_MESSAGES/okular_ghostview.mo share/locale/et/LC_MESSAGES/okular_kimgio.mo @@ -1460,10 +1415,15 @@ share/locale/et/LC_MESSAGES/parley.mo share/locale/et/LC_MESSAGES/phonon-xine.mo share/locale/et/LC_MESSAGES/phonon_gstreamer.mo share/locale/et/LC_MESSAGES/phonon_kde.mo +share/locale/et/LC_MESSAGES/plasma-overlay.mo +share/locale/et/LC_MESSAGES/plasma-shells-common.mo share/locale/et/LC_MESSAGES/plasma.mo share/locale/et/LC_MESSAGES/plasma_applet_battery.mo +share/locale/et/LC_MESSAGES/plasma_applet_bball.mo share/locale/et/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/et/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/et/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/et/LC_MESSAGES/plasma_applet_charselect.mo share/locale/et/LC_MESSAGES/plasma_applet_clock.mo share/locale/et/LC_MESSAGES/plasma_applet_comic.mo share/locale/et/LC_MESSAGES/plasma_applet_desktop.mo @@ -1475,26 +1435,61 @@ share/locale/et/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/et/LC_MESSAGES/plasma_applet_folderview.mo share/locale/et/LC_MESSAGES/plasma_applet_frame.mo share/locale/et/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/et/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/et/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/et/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/et/LC_MESSAGES/plasma_applet_katesession.mo share/locale/et/LC_MESSAGES/plasma_applet_kget.mo -share/locale/et/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/et/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/et/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/et/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/et/LC_MESSAGES/plasma_applet_life.mo share/locale/et/LC_MESSAGES/plasma_applet_luna.mo +share/locale/et/LC_MESSAGES/plasma_applet_news.mo share/locale/et/LC_MESSAGES/plasma_applet_notes.mo share/locale/et/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/et/LC_MESSAGES/plasma_applet_pager.mo share/locale/et/LC_MESSAGES/plasma_applet_panel.mo +share/locale/et/LC_MESSAGES/plasma_applet_paste.mo +share/locale/et/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/et/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/et/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/et/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/et/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/et/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/et/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/et/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/et/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/et/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/et/LC_MESSAGES/plasma_applet_timer.mo share/locale/et/LC_MESSAGES/plasma_applet_trash.mo share/locale/et/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/et/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/et/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/et/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/et/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/et/LC_MESSAGES/plasma_engine_dict.mo +share/locale/et/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/et/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/et/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/et/LC_MESSAGES/plasma_engine_rss.mo +share/locale/et/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/et/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/et/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/et/LC_MESSAGES/plasma_runner_locations.mo +share/locale/et/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/et/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/et/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/et/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/et/LC_MESSAGES/plasma_runner_shell.mo +share/locale/et/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/et/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/et/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/et/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/et/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/et/LC_MESSAGES/plasmaengineexplorer.mo share/locale/et/LC_MESSAGES/plasmapkg.mo share/locale/et/LC_MESSAGES/plasmoidviewer.mo +share/locale/et/LC_MESSAGES/powerdevil.mo share/locale/et/LC_MESSAGES/printer-applet.mo share/locale/et/LC_MESSAGES/processcore.mo share/locale/et/LC_MESSAGES/processui.mo @@ -1506,10 +1501,12 @@ share/locale/et/LC_MESSAGES/solidcontrol.mo share/locale/et/LC_MESSAGES/soliduiserver.mo share/locale/et/LC_MESSAGES/spy.mo share/locale/et/LC_MESSAGES/step.mo +share/locale/et/LC_MESSAGES/step_qt.mo share/locale/et/LC_MESSAGES/strigila_diff.mo share/locale/et/LC_MESSAGES/superkaramba.mo share/locale/et/LC_MESSAGES/svgpart.mo share/locale/et/LC_MESSAGES/sweeper.mo +share/locale/et/LC_MESSAGES/system-config-printer-kde.mo share/locale/et/LC_MESSAGES/systemsettings.mo share/locale/et/LC_MESSAGES/timezones4.mo share/locale/et/LC_MESSAGES/umbrello.mo @@ -1519,22 +1516,19 @@ share/locale/et/entry.desktop @dirrm share/doc/HTML/et/umbrello @dirrm share/doc/HTML/et/superkaramba @dirrm share/doc/HTML/et/sonnet +@dirrm share/doc/HTML/et/okular @dirrm share/doc/HTML/et/lskat @dirrm share/doc/HTML/et/lilo-config @dirrm share/doc/HTML/et/kxsldbg -@dirrm share/doc/HTML/et/kxkb @dirrm share/doc/HTML/et/kwrite -@dirrm share/doc/HTML/et/kworldclock @dirrm share/doc/HTML/et/kwordquiz @dirrm share/doc/HTML/et/kweather @dirrm share/doc/HTML/et/kwatchgnupg @dirrm share/doc/HTML/et/kwallet @dirrm share/doc/HTML/et/kuser -@dirrm share/doc/HTML/et/kturtle @dirrm share/doc/HTML/et/ktuberling @dirrm share/doc/HTML/et/kttsd @dirrm share/doc/HTML/et/ktouch -@dirrm share/doc/HTML/et/ktnef @dirrm share/doc/HTML/et/ktimetracker @dirrm share/doc/HTML/et/ktimer @dirrm share/doc/HTML/et/kteatime @@ -1542,12 +1536,8 @@ share/locale/et/entry.desktop @dirrm share/doc/HTML/et/ksystemlog @dirrm share/doc/HTML/et/ksysguard @dirrm share/doc/HTML/et/kstars -@dirrm share/doc/HTML/et/ksplashml @dirrm share/doc/HTML/et/kspaceduel @dirrm share/doc/HTML/et/ksnapshot -@dirrm share/doc/HTML/et/ksirtet -@dirrm share/doc/HTML/et/ksirc -@dirrm share/doc/HTML/et/ksim @dirrm share/doc/HTML/et/kshisen @dirrm share/doc/HTML/et/kscd @dirrm share/doc/HTML/et/ksame @@ -1557,7 +1547,6 @@ share/locale/et/entry.desktop @dirrm share/doc/HTML/et/krdc @dirrm share/doc/HTML/et/kppp @dirrm share/doc/HTML/et/kpilot -@dirrm share/doc/HTML/et/kpercentage @dirrm share/doc/HTML/et/kpat @dirrm share/doc/HTML/et/kpackage @dirrm share/doc/HTML/et/korn @@ -1574,17 +1563,13 @@ share/locale/et/entry.desktop @dirrm share/doc/HTML/et/kolf @dirrm share/doc/HTML/et/knotes @dirrm share/doc/HTML/et/knode -@dirrm share/doc/HTML/et/knewsticker -@dirrm share/doc/HTML/et/knetworkconf @dirrm share/doc/HTML/et/knetattach @dirrm share/doc/HTML/et/kmplot @dirrm share/doc/HTML/et/kmouth @dirrm share/doc/HTML/et/kmousetool -@dirrm share/doc/HTML/et/kmoon @dirrm share/doc/HTML/et/kmix @dirrm share/doc/HTML/et/kmines @dirrm share/doc/HTML/et/kmenuedit -@dirrm share/doc/HTML/et/kmathtool @dirrm share/doc/HTML/et/kmail @dirrm share/doc/HTML/et/kmahjongg @dirrm share/doc/HTML/et/kmag @@ -1596,6 +1581,35 @@ share/locale/et/entry.desktop @dirrm share/doc/HTML/et/kjumpingcube @dirrm share/doc/HTML/et/kjots @dirrm share/doc/HTML/et/kiten +@dirrm share/doc/HTML/et/kioslave/webdav +@dirrm share/doc/HTML/et/kioslave/thumbnail +@dirrm share/doc/HTML/et/kioslave/telnet +@dirrm share/doc/HTML/et/kioslave/tar +@dirrm share/doc/HTML/et/kioslave/smtp +@dirrm share/doc/HTML/et/kioslave/smb +@dirrm share/doc/HTML/et/kioslave/sftp +@dirrm share/doc/HTML/et/kioslave/rlogin +@dirrm share/doc/HTML/et/kioslave/pop3 +@dirrm share/doc/HTML/et/kioslave/nntp +@dirrm share/doc/HTML/et/kioslave/nfs +@dirrm share/doc/HTML/et/kioslave/news +@dirrm share/doc/HTML/et/kioslave/man +@dirrm share/doc/HTML/et/kioslave/mailto +@dirrm share/doc/HTML/et/kioslave/ldap +@dirrm share/doc/HTML/et/kioslave/info +@dirrm share/doc/HTML/et/kioslave/imap +@dirrm share/doc/HTML/et/kioslave/http +@dirrm share/doc/HTML/et/kioslave/help +@dirrm share/doc/HTML/et/kioslave/gzip +@dirrm share/doc/HTML/et/kioslave/ftp +@dirrm share/doc/HTML/et/kioslave/floppy +@dirrm share/doc/HTML/et/kioslave/fish +@dirrm share/doc/HTML/et/kioslave/finger +@dirrm share/doc/HTML/et/kioslave/file +@dirrm share/doc/HTML/et/kioslave/data +@dirrm share/doc/HTML/et/kioslave/cgi +@dirrm share/doc/HTML/et/kioslave/bzip2 +@dirrm share/doc/HTML/et/kioslave/audiocd @dirrm share/doc/HTML/et/kioslave @dirrm share/doc/HTML/et/kinfocenter/xserver @dirrm share/doc/HTML/et/kinfocenter/usb @@ -1614,7 +1628,6 @@ share/locale/et/entry.desktop @dirrm share/doc/HTML/et/kinfocenter/interrupts @dirrm share/doc/HTML/et/kinfocenter/dma @dirrm share/doc/HTML/et/kinfocenter/devices -@dirrm share/doc/HTML/et/kinfocenter/blockdevices @dirrm share/doc/HTML/et/kinfocenter @dirrm share/doc/HTML/et/kig @dirrm share/doc/HTML/et/khelpcenter/visualdict @@ -1627,12 +1640,11 @@ share/locale/et/entry.desktop @dirrm share/doc/HTML/et/kgpg @dirrm share/doc/HTML/et/kgoldrunner @dirrm share/doc/HTML/et/kget +@dirrm share/doc/HTML/et/kgeography @dirrm share/doc/HTML/et/kgamma @dirrm share/doc/HTML/et/kfloppy @dirrm share/doc/HTML/et/kfind @dirrm share/doc/HTML/et/kfilereplace -@dirrm share/doc/HTML/et/kedit -@dirrm share/doc/HTML/et/kdvi @dirrm share/doc/HTML/et/kdm @dirrm share/doc/HTML/et/kdf @dirrm share/doc/HTML/et/kdesu @@ -1640,14 +1652,12 @@ share/locale/et/entry.desktop @dirrm share/doc/HTML/et/kdebugdialog @dirrm share/doc/HTML/et/kdat @dirrm share/doc/HTML/et/kcron -@dirrm share/doc/HTML/et/kcontrol/windowmanagement +@dirrm share/doc/HTML/et/kcontrol/windowspecific @dirrm share/doc/HTML/et/kcontrol/useragent -@dirrm share/doc/HTML/et/kcontrol/splashscreen @dirrm share/doc/HTML/et/kcontrol/spellchecking @dirrm share/doc/HTML/et/kcontrol/smb @dirrm share/doc/HTML/et/kcontrol/screensaver @dirrm share/doc/HTML/et/kcontrol/proxy -@dirrm share/doc/HTML/et/kcontrol/powerctrl @dirrm share/doc/HTML/et/kcontrol/performance @dirrm share/doc/HTML/et/kcontrol/paths @dirrm share/doc/HTML/et/kcontrol/passwords @@ -1655,11 +1665,10 @@ share/locale/et/entry.desktop @dirrm share/doc/HTML/et/kcontrol/panel @dirrm share/doc/HTML/et/kcontrol/netpref @dirrm share/doc/HTML/et/kcontrol/mouse -@dirrm share/doc/HTML/et/kcontrol/laptop @dirrm share/doc/HTML/et/kcontrol/language -@dirrm share/doc/HTML/et/kcontrol/kxmlrpcd @dirrm share/doc/HTML/et/kcontrol/kxkb @dirrm share/doc/HTML/et/kcontrol/kwindecoration +@dirrm share/doc/HTML/et/kcontrol/knetworkconf @dirrm share/doc/HTML/et/kcontrol/khtml @dirrm share/doc/HTML/et/kcontrol/keys @dirrm share/doc/HTML/et/kcontrol/keyboard @@ -1668,15 +1677,11 @@ share/locale/et/entry.desktop @dirrm share/doc/HTML/et/kcontrol/kcmstyle @dirrm share/doc/HTML/et/kcontrol/kcmsmserver @dirrm share/doc/HTML/et/kcontrol/kcmnotify -@dirrm share/doc/HTML/et/kcontrol/kcmlowbatwarn -@dirrm share/doc/HTML/et/kcontrol/kcmlowbatcrit @dirrm share/doc/HTML/et/kcontrol/kcmlaunch -@dirrm share/doc/HTML/et/kcontrol/kcmktalkd @dirrm share/doc/HTML/et/kcontrol/kcmkonsole @dirrm share/doc/HTML/et/kcontrol/kcmdisplay @dirrm share/doc/HTML/et/kcontrol/kcmcss @dirrm share/doc/HTML/et/kcontrol/kcmaccess -@dirrm share/doc/HTML/et/kcontrol/kalarmd @dirrm share/doc/HTML/et/kcontrol/joystick @dirrm share/doc/HTML/et/kcontrol/icons @dirrm share/doc/HTML/et/kcontrol/helpindex @@ -1695,11 +1700,11 @@ share/locale/et/entry.desktop @dirrm share/doc/HTML/et/kcontrol/colors @dirrm share/doc/HTML/et/kcontrol/clock @dirrm share/doc/HTML/et/kcontrol/cache +@dirrm share/doc/HTML/et/kcontrol/blockdevices @dirrm share/doc/HTML/et/kcontrol/bell @dirrm share/doc/HTML/et/kcontrol/background @dirrm share/doc/HTML/et/kcontrol/autostart @dirrm share/doc/HTML/et/kcontrol -@dirrm share/doc/HTML/et/kcmlirc @dirrm share/doc/HTML/et/kcharselect @dirrm share/doc/HTML/et/kcalc @dirrm share/doc/HTML/et/kcachegrind @@ -1711,16 +1716,12 @@ share/locale/et/entry.desktop @dirrm share/doc/HTML/et/katomic @dirrm share/doc/HTML/et/kate-plugins @dirrm share/doc/HTML/et/kate -@dirrm share/doc/HTML/et/karm @dirrm share/doc/HTML/et/kanagram -@dirrm share/doc/HTML/et/kamera @dirrm share/doc/HTML/et/kalzium @dirrm share/doc/HTML/et/kalarm @dirrm share/doc/HTML/et/kaddressbook @dirrm share/doc/HTML/et/juk -@dirrm share/doc/HTML/et/irkick @dirrm share/doc/HTML/et/gwenview -@dirrm share/doc/HTML/et/flashkard @dirrm share/doc/HTML/et/dragonplayer @dirrm share/doc/HTML/et/dolphin @dirrm share/doc/HTML/et/cervisia @@ -1731,3 +1732,8 @@ share/locale/et/entry.desktop @dirrm share/apps/kvtml/et @dirrm share/apps/kvtml @dirrm share/apps/khangman +@dirrmtry man/et/man8 +@dirrmtry man/et/man7 +@dirrmtry man/et/man6 +@dirrmtry man/et/man1 +@dirrmtry man/et diff --git a/misc/kde4-l10n-eu/Makefile b/misc/kde4-l10n-eu/Makefile index 2e78cdeb9979..3dedc3127e20 100644 --- a/misc/kde4-l10n-eu/Makefile +++ b/misc/kde4-l10n-eu/Makefile @@ -1,29 +1,21 @@ -# New ports collection makefile for: kde3-i18n-eu -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> +# New ports collection makefile for: misc/kde4-l10n-eu +# Date created: 2009-01-25 +# Whom: Max Brazhnikov <makc@FreeBSD.org> # # $FreeBSD$ # -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= eu- -DIST_SUBDIR= KDE +PORTNAME= kde-l10n +PORTVERSION= ${KDE4_VERSION} +CATEGORIES= misc kde MAINTAINER= kde@FreeBSD.org -COMMENT= Basque messages and documentation for KDE3 +COMMENT= Basque messages and documentation for KDE4 -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext +KDE4_L10N= eu -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" +post-extract: + ${MKDIR} ${WRKSRC}/build +.include "${.CURDIR}/../../misc/kde4-l10n/files/bsd.l10n.mk" .include <bsd.port.mk> diff --git a/misc/kde4-l10n-eu/distinfo b/misc/kde4-l10n-eu/distinfo index c55b501a90d6..3e56bbca7a88 100644 --- a/misc/kde4-l10n-eu/distinfo +++ b/misc/kde4-l10n-eu/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-i18n/kde-i18n-eu-3.5.10.tar.bz2) = 222a5f1dd0d5ab6c334468fe5440dc66 -SHA256 (KDE/kde-i18n/kde-i18n-eu-3.5.10.tar.bz2) = 3c2d46aac3d328d4e704285b7fdbd937b776a19ae0bcbc9e4b9a99a4ee208b20 -SIZE (KDE/kde-i18n/kde-i18n-eu-3.5.10.tar.bz2) = 2285096 +MD5 (KDE/kde-l10n/kde-l10n-eu-4.2.0.tar.bz2) = 5248515b294143a7821055754b9236e4 +SHA256 (KDE/kde-l10n/kde-l10n-eu-4.2.0.tar.bz2) = 74881e80f3cf3a0ddd876d0907239f6631f2875175d1b18919aa673ad33f78f6 +SIZE (KDE/kde-l10n/kde-l10n-eu-4.2.0.tar.bz2) = 1901110 diff --git a/misc/kde4-l10n-eu/pkg-descr b/misc/kde4-l10n-eu/pkg-descr index 3354ca873ecc..3073b1096b79 100644 --- a/misc/kde4-l10n-eu/pkg-descr +++ b/misc/kde4-l10n-eu/pkg-descr @@ -1,3 +1,3 @@ -Localized messages and documentation for KDE3. +Localized messages and documentation for KDE4. WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-eu/pkg-plist b/misc/kde4-l10n-eu/pkg-plist index ea22553d1ba3..185b392557ed 100644 --- a/misc/kde4-l10n-eu/pkg-plist +++ b/misc/kde4-l10n-eu/pkg-plist @@ -1,173 +1,72 @@ -share/doc/HTML/eu/common/1.png -share/doc/HTML/eu/common/10.png -share/doc/HTML/eu/common/2.png -share/doc/HTML/eu/common/3.png -share/doc/HTML/eu/common/4.png -share/doc/HTML/eu/common/5.png -share/doc/HTML/eu/common/6.png -share/doc/HTML/eu/common/7.png -share/doc/HTML/eu/common/8.png -share/doc/HTML/eu/common/9.png -share/doc/HTML/eu/common/appheader.html -share/doc/HTML/eu/common/artistic-license.html -share/doc/HTML/eu/common/bottom-left.png -share/doc/HTML/eu/common/bottom-middle.png -share/doc/HTML/eu/common/bottom-right.png -share/doc/HTML/eu/common/bottom1.png -share/doc/HTML/eu/common/bottom2.png -share/doc/HTML/eu/common/bsd-license.html -share/doc/HTML/eu/common/docheadergears.png -share/doc/HTML/eu/common/doctop1.png -share/doc/HTML/eu/common/doctop1a.png -share/doc/HTML/eu/common/doctop1b.png -share/doc/HTML/eu/common/doctop2.png -share/doc/HTML/eu/common/doxygen.css -share/doc/HTML/eu/common/favicon.ico -share/doc/HTML/eu/common/fdl-license -share/doc/HTML/eu/common/fdl-license.html -share/doc/HTML/eu/common/fdl-notice.html -share/doc/HTML/eu/common/fdl-translated.html -share/doc/HTML/eu/common/footer.html -share/doc/HTML/eu/common/gpl-license -share/doc/HTML/eu/common/gpl-license.html -share/doc/HTML/eu/common/gpl-translated.html -share/doc/HTML/eu/common/grad.png -share/doc/HTML/eu/common/header.html -share/doc/HTML/eu/common/headerbg.png -share/doc/HTML/eu/common/kde-common.css -share/doc/HTML/eu/common/kde-default.css -share/doc/HTML/eu/common/kde-localised.css -share/doc/HTML/eu/common/kde-localised.css.template -share/doc/HTML/eu/common/kde-web.css -share/doc/HTML/eu/common/kde_gear_64.png -share/doc/HTML/eu/common/kde_logo.png -share/doc/HTML/eu/common/kde_logo_bg.png -share/doc/HTML/eu/common/kmenu.png -share/doc/HTML/eu/common/lgpl-license -share/doc/HTML/eu/common/lgpl-license.html -share/doc/HTML/eu/common/logotp3.png -share/doc/HTML/eu/common/mainfooter.html -share/doc/HTML/eu/common/mainheader.html -share/doc/HTML/eu/common/qpl-license.html -share/doc/HTML/eu/common/shadow.png -share/doc/HTML/eu/common/top-left.png -share/doc/HTML/eu/common/top-middle.png -share/doc/HTML/eu/common/top-right-konqueror.png -share/doc/HTML/eu/common/web-docbottom.png -share/doc/HTML/eu/common/web-doctop.png -share/doc/HTML/eu/common/x11-license.html -share/doc/HTML/eu/common/xml.dcl -share/doc/HTML/eu/kbabel/catman.docbook -share/doc/HTML/eu/kbabel/dictionaries.docbook -share/doc/HTML/eu/kbabel/faq.docbook -share/doc/HTML/eu/kbabel/glossary.docbook -share/doc/HTML/eu/kbabel/kbabeldict.docbook -share/doc/HTML/eu/kbabel/menu.docbook -share/doc/HTML/eu/kbabel/preferences.docbook -share/doc/HTML/eu/kbabel/using.docbook share/locale/eu/LC_MESSAGES/akregator.mo -share/locale/eu/LC_MESSAGES/akregator_konqplugin.mo -share/locale/eu/LC_MESSAGES/alsaplayerui.mo share/locale/eu/LC_MESSAGES/amor.mo -share/locale/eu/LC_MESSAGES/appletproxy.mo share/locale/eu/LC_MESSAGES/ark.mo -share/locale/eu/LC_MESSAGES/ark_plugin.mo -share/locale/eu/LC_MESSAGES/artsbuilder.mo -share/locale/eu/LC_MESSAGES/artscontrol.mo -share/locale/eu/LC_MESSAGES/artsmodules.mo -share/locale/eu/LC_MESSAGES/atlantik.mo -share/locale/eu/LC_MESSAGES/atlantikdesigner.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/eu/LC_MESSAGES/audiorename_plugin.mo -share/locale/eu/LC_MESSAGES/autorefresh.mo -share/locale/eu/LC_MESSAGES/babelfish.mo share/locale/eu/LC_MESSAGES/blinken.mo share/locale/eu/LC_MESSAGES/cervisia.mo -share/locale/eu/LC_MESSAGES/charlatanui.mo -share/locale/eu/LC_MESSAGES/clockapplet.mo -share/locale/eu/LC_MESSAGES/crashesplugin.mo -share/locale/eu/LC_MESSAGES/cupsdconf.mo share/locale/eu/LC_MESSAGES/cvsservice.mo -share/locale/eu/LC_MESSAGES/dcoprss.mo -share/locale/eu/LC_MESSAGES/dirfilterplugin.mo share/locale/eu/LC_MESSAGES/display.mo -share/locale/eu/LC_MESSAGES/dockbarextension.mo -share/locale/eu/LC_MESSAGES/domtreeviewer.mo +share/locale/eu/LC_MESSAGES/dolphin.mo share/locale/eu/LC_MESSAGES/drkonqi.mo -share/locale/eu/LC_MESSAGES/dub.mo -share/locale/eu/LC_MESSAGES/extensionproxy.mo -share/locale/eu/LC_MESSAGES/ffrs.mo share/locale/eu/LC_MESSAGES/filetypes.mo -share/locale/eu/LC_MESSAGES/fsview.mo +share/locale/eu/LC_MESSAGES/gwenview.mo share/locale/eu/LC_MESSAGES/htmlsearch.mo share/locale/eu/LC_MESSAGES/imagerename_plugin.mo -share/locale/eu/LC_MESSAGES/imgalleryplugin.mo -share/locale/eu/LC_MESSAGES/irkick.mo share/locale/eu/LC_MESSAGES/joystick.mo share/locale/eu/LC_MESSAGES/juk.mo -share/locale/eu/LC_MESSAGES/kabc2mutt.mo share/locale/eu/LC_MESSAGES/kabc_dir.mo share/locale/eu/LC_MESSAGES/kabc_file.mo share/locale/eu/LC_MESSAGES/kabc_ldapkio.mo share/locale/eu/LC_MESSAGES/kabc_net.mo share/locale/eu/LC_MESSAGES/kabc_slox.mo -share/locale/eu/LC_MESSAGES/kabc_sql.mo share/locale/eu/LC_MESSAGES/kabcformat_binary.mo -share/locale/eu/LC_MESSAGES/kaboodle.mo share/locale/eu/LC_MESSAGES/kaccess.mo share/locale/eu/LC_MESSAGES/kaddressbook.mo share/locale/eu/LC_MESSAGES/kalarm.mo share/locale/eu/LC_MESSAGES/kalzium.mo +share/locale/eu/LC_MESSAGES/kalzium_qt.mo share/locale/eu/LC_MESSAGES/kanagram.mo -share/locale/eu/LC_MESSAGES/kandy.mo share/locale/eu/LC_MESSAGES/kappfinder.mo -share/locale/eu/LC_MESSAGES/karm.mo -share/locale/eu/LC_MESSAGES/kasbarextension.mo -share/locale/eu/LC_MESSAGES/kasteroids.mo share/locale/eu/LC_MESSAGES/kate.mo -share/locale/eu/LC_MESSAGES/katecppsymbolviewer.mo share/locale/eu/LC_MESSAGES/katefiletemplates.mo -share/locale/eu/LC_MESSAGES/katefll_initplugin.mo -share/locale/eu/LC_MESSAGES/katefll_plugin.mo share/locale/eu/LC_MESSAGES/katehelloworld.mo share/locale/eu/LC_MESSAGES/katehtmltools.mo -share/locale/eu/LC_MESSAGES/kateinsertcommand.mo share/locale/eu/LC_MESSAGES/katekjswrapper.mo -share/locale/eu/LC_MESSAGES/katemake.mo -share/locale/eu/LC_MESSAGES/katemodeline.mo share/locale/eu/LC_MESSAGES/kateopenheader.mo -share/locale/eu/LC_MESSAGES/katepart.mo +share/locale/eu/LC_MESSAGES/katepart4.mo share/locale/eu/LC_MESSAGES/katepybrowse.mo share/locale/eu/LC_MESSAGES/katesnippets.mo +share/locale/eu/LC_MESSAGES/katesymbolviewer.mo share/locale/eu/LC_MESSAGES/katetabbarextension.mo share/locale/eu/LC_MESSAGES/katetextfilter.mo share/locale/eu/LC_MESSAGES/katexmlcheck.mo share/locale/eu/LC_MESSAGES/katexmltools.mo share/locale/eu/LC_MESSAGES/katomic.mo -share/locale/eu/LC_MESSAGES/kaudiocreator.mo -share/locale/eu/LC_MESSAGES/kay.mo -share/locale/eu/LC_MESSAGES/kbabel.mo -share/locale/eu/LC_MESSAGES/kbackgammon.mo share/locale/eu/LC_MESSAGES/kbattleship.mo -share/locale/eu/LC_MESSAGES/kbinaryclock.mo share/locale/eu/LC_MESSAGES/kblackbox.mo +share/locale/eu/LC_MESSAGES/kblankscrn.mo share/locale/eu/LC_MESSAGES/kbounce.mo share/locale/eu/LC_MESSAGES/kbruch.mo -share/locale/eu/LC_MESSAGES/kbstateapplet.mo share/locale/eu/LC_MESSAGES/kbugbuster.mo share/locale/eu/LC_MESSAGES/kcachegrind.mo share/locale/eu/LC_MESSAGES/kcalc.mo +share/locale/eu/LC_MESSAGES/kcertpart.mo share/locale/eu/LC_MESSAGES/kcharselect.mo -share/locale/eu/LC_MESSAGES/kcharselectapplet.mo +share/locale/eu/LC_MESSAGES/kcm_autostart.mo +share/locale/eu/LC_MESSAGES/kcm_desktopthemedetails.mo +share/locale/eu/LC_MESSAGES/kcm_emoticons.mo share/locale/eu/LC_MESSAGES/kcm_krfb.mo -share/locale/eu/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/eu/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/eu/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/eu/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo +share/locale/eu/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/eu/LC_MESSAGES/kcm_memory.mo +share/locale/eu/LC_MESSAGES/kcm_partition.mo +share/locale/eu/LC_MESSAGES/kcm_pci.mo +share/locale/eu/LC_MESSAGES/kcm_phonon.mo +share/locale/eu/LC_MESSAGES/kcm_phononxine.mo +share/locale/eu/LC_MESSAGES/kcm_solid.mo +share/locale/eu/LC_MESSAGES/kcm_standard_actions.mo share/locale/eu/LC_MESSAGES/kcmaccess.mo -share/locale/eu/LC_MESSAGES/kcmaccessibility.mo -share/locale/eu/LC_MESSAGES/kcmarts.mo share/locale/eu/LC_MESSAGES/kcmaudiocd.mo share/locale/eu/LC_MESSAGES/kcmbackground.mo share/locale/eu/LC_MESSAGES/kcmbell.mo @@ -182,6 +81,7 @@ share/locale/eu/LC_MESSAGES/kcmfonts.mo share/locale/eu/LC_MESSAGES/kcmhtmlsearch.mo share/locale/eu/LC_MESSAGES/kcmicons.mo share/locale/eu/LC_MESSAGES/kcminfo.mo +share/locale/eu/LC_MESSAGES/kcminit.mo share/locale/eu/LC_MESSAGES/kcminput.mo share/locale/eu/LC_MESSAGES/kcmioslaveinfo.mo share/locale/eu/LC_MESSAGES/kcmkabconfig.mo @@ -189,202 +89,133 @@ share/locale/eu/LC_MESSAGES/kcmkamera.mo share/locale/eu/LC_MESSAGES/kcmkclock.mo share/locale/eu/LC_MESSAGES/kcmkded.mo share/locale/eu/LC_MESSAGES/kcmkdnssd.mo +share/locale/eu/LC_MESSAGES/kcmkeyboard.mo share/locale/eu/LC_MESSAGES/kcmkeys.mo -share/locale/eu/LC_MESSAGES/kcmkicker.mo +share/locale/eu/LC_MESSAGES/kcmkgamma.mo share/locale/eu/LC_MESSAGES/kcmkio.mo share/locale/eu/LC_MESSAGES/kcmkonq.mo share/locale/eu/LC_MESSAGES/kcmkonqhtml.mo -share/locale/eu/LC_MESSAGES/kcmkonsole.mo -share/locale/eu/LC_MESSAGES/kcmkontactnt.mo -share/locale/eu/LC_MESSAGES/kcmktalkd.mo -share/locale/eu/LC_MESSAGES/kcmkuick.mo share/locale/eu/LC_MESSAGES/kcmkurifilt.mo -share/locale/eu/LC_MESSAGES/kcmkvaio.mo share/locale/eu/LC_MESSAGES/kcmkwallet.mo +share/locale/eu/LC_MESSAGES/kcmkwincompositing.mo share/locale/eu/LC_MESSAGES/kcmkwindecoration.mo share/locale/eu/LC_MESSAGES/kcmkwinrules.mo share/locale/eu/LC_MESSAGES/kcmkwm.mo -share/locale/eu/LC_MESSAGES/kcmlanbrowser.mo -share/locale/eu/LC_MESSAGES/kcmlaptop.mo share/locale/eu/LC_MESSAGES/kcmlaunch.mo -share/locale/eu/LC_MESSAGES/kcmlayout.mo share/locale/eu/LC_MESSAGES/kcmlilo.mo -share/locale/eu/LC_MESSAGES/kcmlirc.mo share/locale/eu/LC_MESSAGES/kcmlocale.mo -share/locale/eu/LC_MESSAGES/kcmmedia.mo share/locale/eu/LC_MESSAGES/kcmnic.mo share/locale/eu/LC_MESSAGES/kcmnotify.mo +share/locale/eu/LC_MESSAGES/kcmopengl.mo share/locale/eu/LC_MESSAGES/kcmperformance.mo -share/locale/eu/LC_MESSAGES/kcmprintmgr.mo share/locale/eu/LC_MESSAGES/kcmsamba.mo share/locale/eu/LC_MESSAGES/kcmscreensaver.mo share/locale/eu/LC_MESSAGES/kcmshell.mo share/locale/eu/LC_MESSAGES/kcmsmartcard.mo share/locale/eu/LC_MESSAGES/kcmsmserver.mo -share/locale/eu/LC_MESSAGES/kcmspellchecking.mo +share/locale/eu/LC_MESSAGES/kcmsolidproc.mo share/locale/eu/LC_MESSAGES/kcmstyle.mo -share/locale/eu/LC_MESSAGES/kcmtaskbar.mo -share/locale/eu/LC_MESSAGES/kcmthinkpad.mo share/locale/eu/LC_MESSAGES/kcmusb.mo share/locale/eu/LC_MESSAGES/kcmview1394.mo -share/locale/eu/LC_MESSAGES/kcmwifi.mo share/locale/eu/LC_MESSAGES/kcmxinerama.mo -share/locale/eu/LC_MESSAGES/kcoloredit.mo -share/locale/eu/LC_MESSAGES/kcontrol.mo share/locale/eu/LC_MESSAGES/kcron.mo share/locale/eu/LC_MESSAGES/kdat.mo -share/locale/eu/LC_MESSAGES/kdcop.mo +share/locale/eu/LC_MESSAGES/kde-menu.mo share/locale/eu/LC_MESSAGES/kdebugdialog.mo -share/locale/eu/LC_MESSAGES/kdelibs.mo -share/locale/eu/LC_MESSAGES/kdelibs_colors.mo -share/locale/eu/LC_MESSAGES/kdelirc.mo +share/locale/eu/LC_MESSAGES/kded_phononserver.mo +share/locale/eu/LC_MESSAGES/kdelibs4.mo +share/locale/eu/LC_MESSAGES/kdelibs_colors4.mo share/locale/eu/LC_MESSAGES/kdepasswd.mo share/locale/eu/LC_MESSAGES/kdepimresources.mo share/locale/eu/LC_MESSAGES/kdepimwizards.mo -share/locale/eu/LC_MESSAGES/kdeprint.mo -share/locale/eu/LC_MESSAGES/kdeprint_part.mo -share/locale/eu/LC_MESSAGES/kdeprintfax.mo -share/locale/eu/LC_MESSAGES/kdesktop.mo +share/locale/eu/LC_MESSAGES/kdeqt.mo share/locale/eu/LC_MESSAGES/kdessh.mo share/locale/eu/LC_MESSAGES/kdesu.mo share/locale/eu/LC_MESSAGES/kdesud.mo -share/locale/eu/LC_MESSAGES/kdevdesigner.mo -share/locale/eu/LC_MESSAGES/kdevelop.mo -share/locale/eu/LC_MESSAGES/kdevtipofday.mo share/locale/eu/LC_MESSAGES/kdf.mo -share/locale/eu/LC_MESSAGES/kdgantt.mo +share/locale/eu/LC_MESSAGES/kdgantt1.mo share/locale/eu/LC_MESSAGES/kdialog.mo -share/locale/eu/LC_MESSAGES/kdict.mo -share/locale/eu/LC_MESSAGES/kdictapplet.mo -share/locale/eu/LC_MESSAGES/kdjview.mo share/locale/eu/LC_MESSAGES/kdmconfig.mo share/locale/eu/LC_MESSAGES/kdmgreet.mo -share/locale/eu/LC_MESSAGES/kdvi.mo -share/locale/eu/LC_MESSAGES/kedit.mo -share/locale/eu/LC_MESSAGES/keduca.mo -share/locale/eu/LC_MESSAGES/kenolaba.mo -share/locale/eu/LC_MESSAGES/kfax.mo -share/locale/eu/LC_MESSAGES/kfaxview.mo -share/locale/eu/LC_MESSAGES/kfifteenapplet.mo -share/locale/eu/LC_MESSAGES/kfile_au.mo +share/locale/eu/LC_MESSAGES/keditbookmarks.mo +share/locale/eu/LC_MESSAGES/kfile.mo share/locale/eu/LC_MESSAGES/kfile_avi.mo -share/locale/eu/LC_MESSAGES/kfile_bmp.mo -share/locale/eu/LC_MESSAGES/kfile_cert.mo -share/locale/eu/LC_MESSAGES/kfile_cpp.mo share/locale/eu/LC_MESSAGES/kfile_dds.mo -share/locale/eu/LC_MESSAGES/kfile_deb.mo -share/locale/eu/LC_MESSAGES/kfile_desktop.mo -share/locale/eu/LC_MESSAGES/kfile_diff.mo share/locale/eu/LC_MESSAGES/kfile_drgeo.mo share/locale/eu/LC_MESSAGES/kfile_dvi.mo share/locale/eu/LC_MESSAGES/kfile_exr.mo share/locale/eu/LC_MESSAGES/kfile_flac.mo -share/locale/eu/LC_MESSAGES/kfile_folder.mo -share/locale/eu/LC_MESSAGES/kfile_gif.mo -share/locale/eu/LC_MESSAGES/kfile_html.mo -share/locale/eu/LC_MESSAGES/kfile_ico.mo -share/locale/eu/LC_MESSAGES/kfile_ics.mo -share/locale/eu/LC_MESSAGES/kfile_jpeg.mo share/locale/eu/LC_MESSAGES/kfile_kig.mo -share/locale/eu/LC_MESSAGES/kfile_lnk.mo -share/locale/eu/LC_MESSAGES/kfile_m3u.mo -share/locale/eu/LC_MESSAGES/kfile_mhtml.mo share/locale/eu/LC_MESSAGES/kfile_mp3.mo share/locale/eu/LC_MESSAGES/kfile_mpc.mo -share/locale/eu/LC_MESSAGES/kfile_mpeg.mo share/locale/eu/LC_MESSAGES/kfile_ogg.mo -share/locale/eu/LC_MESSAGES/kfile_palm.mo -share/locale/eu/LC_MESSAGES/kfile_pcx.mo -share/locale/eu/LC_MESSAGES/kfile_pdf.mo -share/locale/eu/LC_MESSAGES/kfile_png.mo share/locale/eu/LC_MESSAGES/kfile_pnm.mo -share/locale/eu/LC_MESSAGES/kfile_po.mo -share/locale/eu/LC_MESSAGES/kfile_ps.mo -share/locale/eu/LC_MESSAGES/kfile_rfc822.mo share/locale/eu/LC_MESSAGES/kfile_rgb.mo share/locale/eu/LC_MESSAGES/kfile_rpm.mo share/locale/eu/LC_MESSAGES/kfile_sid.mo -share/locale/eu/LC_MESSAGES/kfile_tga.mo share/locale/eu/LC_MESSAGES/kfile_theora.mo share/locale/eu/LC_MESSAGES/kfile_tiff.mo share/locale/eu/LC_MESSAGES/kfile_torrent.mo -share/locale/eu/LC_MESSAGES/kfile_ts.mo -share/locale/eu/LC_MESSAGES/kfile_txt.mo -share/locale/eu/LC_MESSAGES/kfile_vcf.mo share/locale/eu/LC_MESSAGES/kfile_wav.mo -share/locale/eu/LC_MESSAGES/kfile_xbm.mo -share/locale/eu/LC_MESSAGES/kfile_xpm.mo -share/locale/eu/LC_MESSAGES/kfileaudiopreview.mo +share/locale/eu/LC_MESSAGES/kfileaudiopreview4.mo share/locale/eu/LC_MESSAGES/kfilereplace.mo share/locale/eu/LC_MESSAGES/kfileshare.mo share/locale/eu/LC_MESSAGES/kfindpart.mo share/locale/eu/LC_MESSAGES/kfloppy.mo share/locale/eu/LC_MESSAGES/kfmclient.mo share/locale/eu/LC_MESSAGES/kfontinst.mo -share/locale/eu/LC_MESSAGES/kfouleggs.mo -share/locale/eu/LC_MESSAGES/kgamma.mo -share/locale/eu/LC_MESSAGES/kgantt.mo +share/locale/eu/LC_MESSAGES/kfourinline.mo share/locale/eu/LC_MESSAGES/kgeography.mo share/locale/eu/LC_MESSAGES/kget.mo -share/locale/eu/LC_MESSAGES/kghostview.mo share/locale/eu/LC_MESSAGES/kgoldrunner.mo share/locale/eu/LC_MESSAGES/kgpg.mo share/locale/eu/LC_MESSAGES/kgreet_classic.mo +share/locale/eu/LC_MESSAGES/kgreet_generic.mo share/locale/eu/LC_MESSAGES/kgreet_winbind.mo share/locale/eu/LC_MESSAGES/khangman.mo share/locale/eu/LC_MESSAGES/khelpcenter.mo -share/locale/eu/LC_MESSAGES/khexedit.mo -share/locale/eu/LC_MESSAGES/khexedit2part.mo share/locale/eu/LC_MESSAGES/khotkeys.mo +share/locale/eu/LC_MESSAGES/khotnewstuff.mo share/locale/eu/LC_MESSAGES/khtmlkttsd.mo -share/locale/eu/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/eu/LC_MESSAGES/kicker.mo -share/locale/eu/LC_MESSAGES/kiconedit.mo +share/locale/eu/LC_MESSAGES/kiconfinder.mo share/locale/eu/LC_MESSAGES/kig.mo share/locale/eu/LC_MESSAGES/kimagemapeditor.mo share/locale/eu/LC_MESSAGES/kinetd.mo -share/locale/eu/LC_MESSAGES/kio.mo +share/locale/eu/LC_MESSAGES/kinfocenter.mo +share/locale/eu/LC_MESSAGES/kio4.mo +share/locale/eu/LC_MESSAGES/kio_applications.mo +share/locale/eu/LC_MESSAGES/kio_archive.mo share/locale/eu/LC_MESSAGES/kio_audiocd.mo +share/locale/eu/LC_MESSAGES/kio_bookmarks.mo share/locale/eu/LC_MESSAGES/kio_finger.mo share/locale/eu/LC_MESSAGES/kio_fish.mo share/locale/eu/LC_MESSAGES/kio_floppy.mo share/locale/eu/LC_MESSAGES/kio_groupwise.mo -share/locale/eu/LC_MESSAGES/kio_help.mo -share/locale/eu/LC_MESSAGES/kio_home.mo +share/locale/eu/LC_MESSAGES/kio_help4.mo share/locale/eu/LC_MESSAGES/kio_imap4.mo share/locale/eu/LC_MESSAGES/kio_jabberdisco.mo -share/locale/eu/LC_MESSAGES/kio_lan.mo share/locale/eu/LC_MESSAGES/kio_ldap.mo -share/locale/eu/LC_MESSAGES/kio_mac.mo share/locale/eu/LC_MESSAGES/kio_man.mo -share/locale/eu/LC_MESSAGES/kio_media.mo -share/locale/eu/LC_MESSAGES/kio_mobile.mo +share/locale/eu/LC_MESSAGES/kio_nepomuksearch.mo share/locale/eu/LC_MESSAGES/kio_nfs.mo share/locale/eu/LC_MESSAGES/kio_nntp.mo share/locale/eu/LC_MESSAGES/kio_pop3.mo -share/locale/eu/LC_MESSAGES/kio_print.mo share/locale/eu/LC_MESSAGES/kio_remote.mo -share/locale/eu/LC_MESSAGES/kio_settings.mo share/locale/eu/LC_MESSAGES/kio_sftp.mo share/locale/eu/LC_MESSAGES/kio_sieve.mo share/locale/eu/LC_MESSAGES/kio_smb.mo share/locale/eu/LC_MESSAGES/kio_smtp.mo share/locale/eu/LC_MESSAGES/kio_svn.mo -share/locale/eu/LC_MESSAGES/kio_system.mo -share/locale/eu/LC_MESSAGES/kio_tar.mo share/locale/eu/LC_MESSAGES/kio_thumbnail.mo share/locale/eu/LC_MESSAGES/kio_trash.mo share/locale/eu/LC_MESSAGES/kio_zeroconf.mo +share/locale/eu/LC_MESSAGES/kioclient.mo share/locale/eu/LC_MESSAGES/kioexec.mo share/locale/eu/LC_MESSAGES/kiten.mo -share/locale/eu/LC_MESSAGES/kjobviewer.mo share/locale/eu/LC_MESSAGES/kjots.mo share/locale/eu/LC_MESSAGES/kjumpingcube.mo -share/locale/eu/LC_MESSAGES/klaptopdaemon.mo -share/locale/eu/LC_MESSAGES/klatin.mo share/locale/eu/LC_MESSAGES/kleopatra.mo share/locale/eu/LC_MESSAGES/klettres.mo -share/locale/eu/LC_MESSAGES/klickety.mo share/locale/eu/LC_MESSAGES/klines.mo share/locale/eu/LC_MESSAGES/klinkstatus.mo share/locale/eu/LC_MESSAGES/klipper.mo @@ -395,82 +226,45 @@ share/locale/eu/LC_MESSAGES/kmail.mo share/locale/eu/LC_MESSAGES/kmail_text_calendar_plugin.mo share/locale/eu/LC_MESSAGES/kmail_text_vcard_plugin.mo share/locale/eu/LC_MESSAGES/kmailcvt.mo -share/locale/eu/LC_MESSAGES/kmathapplet.mo -share/locale/eu/LC_MESSAGES/kmcop.mo -share/locale/eu/LC_MESSAGES/kmenuapplet.mo share/locale/eu/LC_MESSAGES/kmenuedit.mo -share/locale/eu/LC_MESSAGES/kmid.mo -share/locale/eu/LC_MESSAGES/kmilo_delli8k.mo -share/locale/eu/LC_MESSAGES/kmilo_generic.mo -share/locale/eu/LC_MESSAGES/kmilo_kvaio.mo -share/locale/eu/LC_MESSAGES/kmilo_powerbook.mo -share/locale/eu/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/eu/LC_MESSAGES/kmilod.mo +share/locale/eu/LC_MESSAGES/kmimetypefinder.mo share/locale/eu/LC_MESSAGES/kmines.mo -share/locale/eu/LC_MESSAGES/kminipagerapplet.mo share/locale/eu/LC_MESSAGES/kmix.mo -share/locale/eu/LC_MESSAGES/kmobile.mo -share/locale/eu/LC_MESSAGES/kmoon.mo share/locale/eu/LC_MESSAGES/kmousetool.mo share/locale/eu/LC_MESSAGES/kmouth.mo share/locale/eu/LC_MESSAGES/kmplot.mo -share/locale/eu/LC_MESSAGES/kmrml.mo share/locale/eu/LC_MESSAGES/knetattach.mo share/locale/eu/LC_MESSAGES/knetwalk.mo -share/locale/eu/LC_MESSAGES/knetworkconf.mo -share/locale/eu/LC_MESSAGES/knewsticker.mo +share/locale/eu/LC_MESSAGES/knetworkconfmodule.mo share/locale/eu/LC_MESSAGES/knode.mo share/locale/eu/LC_MESSAGES/knotes.mo -share/locale/eu/LC_MESSAGES/knotify.mo -share/locale/eu/LC_MESSAGES/kodo.mo +share/locale/eu/LC_MESSAGES/knotify4.mo +share/locale/eu/LC_MESSAGES/kode.mo share/locale/eu/LC_MESSAGES/kolf.mo share/locale/eu/LC_MESSAGES/kolourpaint.mo -share/locale/eu/LC_MESSAGES/kolourpicker.mo -share/locale/eu/LC_MESSAGES/kommander.mo share/locale/eu/LC_MESSAGES/kompare.mo -share/locale/eu/LC_MESSAGES/konnector_dummy.mo -share/locale/eu/LC_MESSAGES/konnector_kabc.mo -share/locale/eu/LC_MESSAGES/konnector_kcal.mo -share/locale/eu/LC_MESSAGES/konnector_local.mo -share/locale/eu/LC_MESSAGES/konnector_qtopia.mo -share/locale/eu/LC_MESSAGES/konnector_remote.mo -share/locale/eu/LC_MESSAGES/konqsidebar_delicious.mo -share/locale/eu/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/eu/LC_MESSAGES/konqsidebar_metabar.mo -share/locale/eu/LC_MESSAGES/konqsidebar_news.mo share/locale/eu/LC_MESSAGES/konqueror.mo share/locale/eu/LC_MESSAGES/konquest.mo share/locale/eu/LC_MESSAGES/konsole.mo share/locale/eu/LC_MESSAGES/konsolekalendar.mo share/locale/eu/LC_MESSAGES/kontact.mo -share/locale/eu/LC_MESSAGES/kooka.mo share/locale/eu/LC_MESSAGES/kopete.mo share/locale/eu/LC_MESSAGES/korganizer.mo share/locale/eu/LC_MESSAGES/korn.mo share/locale/eu/LC_MESSAGES/kpackage.mo -share/locale/eu/LC_MESSAGES/kpager.mo share/locale/eu/LC_MESSAGES/kpartsaver.mo +share/locale/eu/LC_MESSAGES/kpasswdserver.mo share/locale/eu/LC_MESSAGES/kpat.mo -share/locale/eu/LC_MESSAGES/kpdf.mo -share/locale/eu/LC_MESSAGES/kpercentage.mo -share/locale/eu/LC_MESSAGES/kpersonalizer.mo -share/locale/eu/LC_MESSAGES/kpf.mo share/locale/eu/LC_MESSAGES/kpilot.mo -share/locale/eu/LC_MESSAGES/kpoker.mo -share/locale/eu/LC_MESSAGES/kpovmodeler.mo share/locale/eu/LC_MESSAGES/kppp.mo share/locale/eu/LC_MESSAGES/kppplogview.mo -share/locale/eu/LC_MESSAGES/kprinter.mo +share/locale/eu/LC_MESSAGES/kquitapp.mo share/locale/eu/LC_MESSAGES/krandr.mo share/locale/eu/LC_MESSAGES/krdb.mo share/locale/eu/LC_MESSAGES/krdc.mo share/locale/eu/LC_MESSAGES/kreadconfig.mo -share/locale/eu/LC_MESSAGES/krec.mo -share/locale/eu/LC_MESSAGES/kregexpeditor.mo share/locale/eu/LC_MESSAGES/kres_birthday.mo -share/locale/eu/LC_MESSAGES/kres_blogging.mo share/locale/eu/LC_MESSAGES/kres_bugzilla.mo -share/locale/eu/LC_MESSAGES/kres_exchange.mo share/locale/eu/LC_MESSAGES/kres_featureplan.mo share/locale/eu/LC_MESSAGES/kres_groupware.mo share/locale/eu/LC_MESSAGES/kres_groupwise.mo @@ -481,151 +275,148 @@ share/locale/eu/LC_MESSAGES/kres_xmlrpc.mo share/locale/eu/LC_MESSAGES/kreversi.mo share/locale/eu/LC_MESSAGES/krfb.mo share/locale/eu/LC_MESSAGES/kruler.mo -share/locale/eu/LC_MESSAGES/krunapplet.mo +share/locale/eu/LC_MESSAGES/krunner.mo share/locale/eu/LC_MESSAGES/ksame.mo share/locale/eu/LC_MESSAGES/ksayit.mo share/locale/eu/LC_MESSAGES/kscd.mo share/locale/eu/LC_MESSAGES/kscreensaver.mo share/locale/eu/LC_MESSAGES/kshisen.mo -share/locale/eu/LC_MESSAGES/ksig.mo -share/locale/eu/LC_MESSAGES/ksim.mo -share/locale/eu/LC_MESSAGES/ksirc.mo -share/locale/eu/LC_MESSAGES/ksirtet.mo -share/locale/eu/LC_MESSAGES/ksmiletris.mo +share/locale/eu/LC_MESSAGES/kshorturifilter.mo share/locale/eu/LC_MESSAGES/ksmserver.mo -share/locale/eu/LC_MESSAGES/ksnake.mo share/locale/eu/LC_MESSAGES/ksnapshot.mo -share/locale/eu/LC_MESSAGES/ksokoban.mo share/locale/eu/LC_MESSAGES/kspaceduel.mo -share/locale/eu/LC_MESSAGES/ksplash.mo share/locale/eu/LC_MESSAGES/ksplashthemes.mo share/locale/eu/LC_MESSAGES/kstars.mo share/locale/eu/LC_MESSAGES/kstart.mo share/locale/eu/LC_MESSAGES/kstartperf.mo -share/locale/eu/LC_MESSAGES/kstyle_highcontrast_config.mo +share/locale/eu/LC_MESSAGES/kstyle_config.mo share/locale/eu/LC_MESSAGES/kstyle_keramik_config.mo share/locale/eu/LC_MESSAGES/kstyle_phase_config.mo -share/locale/eu/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/eu/LC_MESSAGES/ksvgplugin.mo share/locale/eu/LC_MESSAGES/ksysguard.mo -share/locale/eu/LC_MESSAGES/ksystemtrayapplet.mo +share/locale/eu/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/eu/LC_MESSAGES/ksystraycmd.mo share/locale/eu/LC_MESSAGES/ksysv.mo share/locale/eu/LC_MESSAGES/kteatime.mo -share/locale/eu/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/eu/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/eu/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/eu/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/eu/LC_MESSAGES/ktexteditor_kdatatool.mo +share/locale/eu/LC_MESSAGES/ktexteditor_plugins.mo share/locale/eu/LC_MESSAGES/kthememanager.mo -share/locale/eu/LC_MESSAGES/ktimemon.mo share/locale/eu/LC_MESSAGES/ktimer.mo -share/locale/eu/LC_MESSAGES/ktip.mo -share/locale/eu/LC_MESSAGES/ktnef.mo +share/locale/eu/LC_MESSAGES/ktimetracker.mo share/locale/eu/LC_MESSAGES/ktouch.mo -share/locale/eu/LC_MESSAGES/ktron.mo +share/locale/eu/LC_MESSAGES/ktraderclient.mo share/locale/eu/LC_MESSAGES/kttsd.mo share/locale/eu/LC_MESSAGES/ktuberling.mo share/locale/eu/LC_MESSAGES/kturtle.mo share/locale/eu/LC_MESSAGES/ktux.mo -share/locale/eu/LC_MESSAGES/kuick_plugin.mo -share/locale/eu/LC_MESSAGES/kuickshow.mo +share/locale/eu/LC_MESSAGES/kuiserver.mo share/locale/eu/LC_MESSAGES/kuiviewer.mo +share/locale/eu/LC_MESSAGES/kurifilter.mo share/locale/eu/LC_MESSAGES/kuser.mo -share/locale/eu/LC_MESSAGES/kverbos.mo -share/locale/eu/LC_MESSAGES/kview.mo -share/locale/eu/LC_MESSAGES/kview_scale.mo -share/locale/eu/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/eu/LC_MESSAGES/kviewcanvas.mo -share/locale/eu/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/eu/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/eu/LC_MESSAGES/kviewscannerplugin.mo -share/locale/eu/LC_MESSAGES/kviewshell.mo -share/locale/eu/LC_MESSAGES/kviewviewer.mo -share/locale/eu/LC_MESSAGES/kvoctrain.mo +share/locale/eu/LC_MESSAGES/kwalletd.mo share/locale/eu/LC_MESSAGES/kwalletmanager.mo share/locale/eu/LC_MESSAGES/kwatchgnupg.mo share/locale/eu/LC_MESSAGES/kweather.mo -share/locale/eu/LC_MESSAGES/kwifimanager.mo share/locale/eu/LC_MESSAGES/kwin.mo -share/locale/eu/LC_MESSAGES/kwin4.mo share/locale/eu/LC_MESSAGES/kwin_art_clients.mo share/locale/eu/LC_MESSAGES/kwin_clients.mo +share/locale/eu/LC_MESSAGES/kwin_effects.mo share/locale/eu/LC_MESSAGES/kwin_lib.mo -share/locale/eu/LC_MESSAGES/kwireless.mo +share/locale/eu/LC_MESSAGES/kwinstartmenu.mo share/locale/eu/LC_MESSAGES/kwordquiz.mo -share/locale/eu/LC_MESSAGES/kworldclock.mo +share/locale/eu/LC_MESSAGES/kwrite.mo share/locale/eu/LC_MESSAGES/kwriteconfig.mo share/locale/eu/LC_MESSAGES/kxkb.mo share/locale/eu/LC_MESSAGES/kxsconfig.mo share/locale/eu/LC_MESSAGES/kxsldbg.mo -share/locale/eu/LC_MESSAGES/libKTTSD.mo -share/locale/eu/LC_MESSAGES/libdmctl.mo -share/locale/eu/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/eu/LC_MESSAGES/libkaddrbk_gmx_xxport.mo +share/locale/eu/LC_MESSAGES/lancelot.mo share/locale/eu/LC_MESSAGES/libkcal.mo share/locale/eu/LC_MESSAGES/libkcddb.mo share/locale/eu/LC_MESSAGES/libkdeedu.mo share/locale/eu/LC_MESSAGES/libkdegames.mo share/locale/eu/LC_MESSAGES/libkdepim.mo -share/locale/eu/LC_MESSAGES/libkfaximgage.mo share/locale/eu/LC_MESSAGES/libkholidays.mo -share/locale/eu/LC_MESSAGES/libkicker.mo -share/locale/eu/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/eu/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/eu/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/eu/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/eu/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/eu/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/eu/LC_MESSAGES/libkickermenu_tom.mo share/locale/eu/LC_MESSAGES/libkleopatra.mo share/locale/eu/LC_MESSAGES/libkmime.mo share/locale/eu/LC_MESSAGES/libkonq.mo share/locale/eu/LC_MESSAGES/libkpgp.mo -share/locale/eu/LC_MESSAGES/libkpimexchange.mo -share/locale/eu/LC_MESSAGES/libkscan.mo share/locale/eu/LC_MESSAGES/libkscreensaver.mo share/locale/eu/LC_MESSAGES/libksieve.mo -share/locale/eu/LC_MESSAGES/libksirtet.mo -share/locale/eu/LC_MESSAGES/libksync.mo -share/locale/eu/LC_MESSAGES/libtaskbar.mo +share/locale/eu/LC_MESSAGES/libkworkspace.mo +share/locale/eu/LC_MESSAGES/liboktetacore.mo +share/locale/eu/LC_MESSAGES/libplasma.mo +share/locale/eu/LC_MESSAGES/libplasmaclock.mo share/locale/eu/LC_MESSAGES/libtaskmanager.mo -share/locale/eu/LC_MESSAGES/lockout.mo +share/locale/eu/LC_MESSAGES/lokalize.mo share/locale/eu/LC_MESSAGES/lskat.mo -share/locale/eu/LC_MESSAGES/lyrics.mo -share/locale/eu/LC_MESSAGES/mediaapplet.mo -share/locale/eu/LC_MESSAGES/mediacontrol.mo -share/locale/eu/LC_MESSAGES/mf_konqplugin.mo -share/locale/eu/LC_MESSAGES/minitoolsplugin.mo -share/locale/eu/LC_MESSAGES/multisynk.mo -share/locale/eu/LC_MESSAGES/naughtyapplet.mo -share/locale/eu/LC_MESSAGES/nexscope.mo -share/locale/eu/LC_MESSAGES/noatun.mo +share/locale/eu/LC_MESSAGES/nepomuk.mo +share/locale/eu/LC_MESSAGES/nepomuksearch.mo share/locale/eu/LC_MESSAGES/nsplugin.mo -share/locale/eu/LC_MESSAGES/pitchablespeed.mo -share/locale/eu/LC_MESSAGES/ppdtranslations.mo -share/locale/eu/LC_MESSAGES/privacy.mo -share/locale/eu/LC_MESSAGES/quanta.mo -share/locale/eu/LC_MESSAGES/quicklauncher.mo -share/locale/eu/LC_MESSAGES/rellinks.mo -share/locale/eu/LC_MESSAGES/searchbarplugin.mo -share/locale/eu/LC_MESSAGES/secpolicy.mo +share/locale/eu/LC_MESSAGES/okteta.mo +share/locale/eu/LC_MESSAGES/oktetapart.mo +share/locale/eu/LC_MESSAGES/okular.mo +share/locale/eu/LC_MESSAGES/parley.mo +share/locale/eu/LC_MESSAGES/phonon-xine.mo +share/locale/eu/LC_MESSAGES/phonon_kde.mo +share/locale/eu/LC_MESSAGES/plasma-overlay.mo +share/locale/eu/LC_MESSAGES/plasma-shells-common.mo +share/locale/eu/LC_MESSAGES/plasma.mo +share/locale/eu/LC_MESSAGES/plasma_applet_battery.mo +share/locale/eu/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/eu/LC_MESSAGES/plasma_applet_clock.mo +share/locale/eu/LC_MESSAGES/plasma_applet_comic.mo +share/locale/eu/LC_MESSAGES/plasma_applet_desktop.mo +share/locale/eu/LC_MESSAGES/plasma_applet_devicenotifier.mo +share/locale/eu/LC_MESSAGES/plasma_applet_dict.mo +share/locale/eu/LC_MESSAGES/plasma_applet_dig_clock.mo +share/locale/eu/LC_MESSAGES/plasma_applet_fifteenPuzzle.mo +share/locale/eu/LC_MESSAGES/plasma_applet_folderview.mo +share/locale/eu/LC_MESSAGES/plasma_applet_kget.mo +share/locale/eu/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/eu/LC_MESSAGES/plasma_applet_luna.mo +share/locale/eu/LC_MESSAGES/plasma_applet_pager.mo +share/locale/eu/LC_MESSAGES/plasma_applet_panel.mo +share/locale/eu/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/eu/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/eu/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/eu/LC_MESSAGES/plasma_applet_systemtray.mo +share/locale/eu/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/eu/LC_MESSAGES/plasma_applet_trash.mo +share/locale/eu/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/eu/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/eu/LC_MESSAGES/plasma_appletscript_qedje.mo +share/locale/eu/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo +share/locale/eu/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/eu/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/eu/LC_MESSAGES/plasma_engine_rss.mo +share/locale/eu/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/eu/LC_MESSAGES/plasma_runner_locations.mo +share/locale/eu/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/eu/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/eu/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/eu/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/eu/LC_MESSAGES/plasma_runner_shell.mo +share/locale/eu/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/eu/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/eu/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/eu/LC_MESSAGES/plasma_wallpaper_image.mo +share/locale/eu/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/eu/LC_MESSAGES/plasmapkg.mo +share/locale/eu/LC_MESSAGES/plasmoidviewer.mo +share/locale/eu/LC_MESSAGES/powerdevil.mo +share/locale/eu/LC_MESSAGES/printer-applet.mo +share/locale/eu/LC_MESSAGES/processcore.mo +share/locale/eu/LC_MESSAGES/processui.mo +share/locale/eu/LC_MESSAGES/solid-bluetooth.mo +share/locale/eu/LC_MESSAGES/solid-hardware.mo +share/locale/eu/LC_MESSAGES/solid-network.mo +share/locale/eu/LC_MESSAGES/solid-powermanagement.mo +share/locale/eu/LC_MESSAGES/solidcontrol.mo +share/locale/eu/LC_MESSAGES/soliduiserver.mo share/locale/eu/LC_MESSAGES/spy.mo +share/locale/eu/LC_MESSAGES/strigila_diff.mo share/locale/eu/LC_MESSAGES/superkaramba.mo -share/locale/eu/LC_MESSAGES/synaescope.mo -share/locale/eu/LC_MESSAGES/timezones.mo -share/locale/eu/LC_MESSAGES/tippecanoe.mo -share/locale/eu/LC_MESSAGES/trashapplet.mo -share/locale/eu/LC_MESSAGES/tyler.mo -share/locale/eu/LC_MESSAGES/uachangerplugin.mo +share/locale/eu/LC_MESSAGES/sweeper.mo +share/locale/eu/LC_MESSAGES/systemsettings.mo +share/locale/eu/LC_MESSAGES/timezones4.mo share/locale/eu/LC_MESSAGES/umbrello.mo share/locale/eu/LC_MESSAGES/useraccount.mo -share/locale/eu/LC_MESSAGES/validatorsplugin.mo -share/locale/eu/LC_MESSAGES/wakeup.mo -share/locale/eu/LC_MESSAGES/wavecapture.mo -share/locale/eu/LC_MESSAGES/webarchiver.mo -share/locale/eu/charset share/locale/eu/entry.desktop -share/locale/eu/flag.png -@dirrm share/doc/HTML/eu/kbabel -@dirrm share/doc/HTML/eu/common diff --git a/misc/kde4-l10n-fi/distinfo b/misc/kde4-l10n-fi/distinfo index db73012c9382..fd43123f1c55 100644 --- a/misc/kde4-l10n-fi/distinfo +++ b/misc/kde4-l10n-fi/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-fi-4.1.4.tar.bz2) = eac2a616f172f714abe8f8a9c4403f19 -SHA256 (KDE/kde-l10n/kde-l10n-fi-4.1.4.tar.bz2) = bfb6472f0c51be0d8a42e7674396721d2548f4999522d2530f29162dfc0718ea -SIZE (KDE/kde-l10n/kde-l10n-fi-4.1.4.tar.bz2) = 1907201 +MD5 (KDE/kde-l10n/kde-l10n-fi-4.2.0.tar.bz2) = dc5bda4589b9a2042ade700caf8de083 +SHA256 (KDE/kde-l10n/kde-l10n-fi-4.2.0.tar.bz2) = 4e4f76ca0814110b2b13b5f18e93b51a1ffef281551d59b470d44c6dc386d39b +SIZE (KDE/kde-l10n/kde-l10n-fi-4.2.0.tar.bz2) = 1995482 diff --git a/misc/kde4-l10n-fi/pkg-plist b/misc/kde4-l10n-fi/pkg-plist index 87729c68bc71..397fa43b67df 100644 --- a/misc/kde4-l10n-fi/pkg-plist +++ b/misc/kde4-l10n-fi/pkg-plist @@ -49,6 +49,7 @@ share/locale/fi/LC_MESSAGES/kaccess.mo share/locale/fi/LC_MESSAGES/kaddressbook.mo share/locale/fi/LC_MESSAGES/kalarm.mo share/locale/fi/LC_MESSAGES/kalzium.mo +share/locale/fi/LC_MESSAGES/kalzium_qt.mo share/locale/fi/LC_MESSAGES/kanagram.mo share/locale/fi/LC_MESSAGES/kappfinder.mo share/locale/fi/LC_MESSAGES/kate.mo @@ -62,7 +63,6 @@ share/locale/fi/LC_MESSAGES/kateinsertcommand.mo share/locale/fi/LC_MESSAGES/katekjswrapper.mo share/locale/fi/LC_MESSAGES/katekonsoleplugin.mo share/locale/fi/LC_MESSAGES/katemailfilesplugin.mo -share/locale/fi/LC_MESSAGES/katemake.mo share/locale/fi/LC_MESSAGES/kateopenheader.mo share/locale/fi/LC_MESSAGES/katepart4.mo share/locale/fi/LC_MESSAGES/katepybrowse.mo @@ -79,20 +79,19 @@ share/locale/fi/LC_MESSAGES/kblackbox.mo share/locale/fi/LC_MESSAGES/kblankscrn.mo share/locale/fi/LC_MESSAGES/kbounce.mo share/locale/fi/LC_MESSAGES/kbruch.mo -share/locale/fi/LC_MESSAGES/kbstateapplet.mo share/locale/fi/LC_MESSAGES/kbugbuster.mo share/locale/fi/LC_MESSAGES/kcachegrind.mo share/locale/fi/LC_MESSAGES/kcalc.mo share/locale/fi/LC_MESSAGES/kcertpart.mo share/locale/fi/LC_MESSAGES/kcharselect.mo share/locale/fi/LC_MESSAGES/kcm_autostart.mo +share/locale/fi/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/fi/LC_MESSAGES/kcm_emoticons.mo share/locale/fi/LC_MESSAGES/kcm_krfb.mo share/locale/fi/LC_MESSAGES/kcm_kwindesktop.mo share/locale/fi/LC_MESSAGES/kcm_memory.mo share/locale/fi/LC_MESSAGES/kcm_partition.mo share/locale/fi/LC_MESSAGES/kcm_phonon.mo -share/locale/fi/LC_MESSAGES/kcm_phononxine.mo share/locale/fi/LC_MESSAGES/kcm_solid.mo share/locale/fi/LC_MESSAGES/kcmaccess.mo share/locale/fi/LC_MESSAGES/kcmaudiocd.mo @@ -143,7 +142,6 @@ share/locale/fi/LC_MESSAGES/kcmsmartcard.mo share/locale/fi/LC_MESSAGES/kcmsmserver.mo share/locale/fi/LC_MESSAGES/kcmsolidproc.mo share/locale/fi/LC_MESSAGES/kcmstyle.mo -share/locale/fi/LC_MESSAGES/kcmtaskbar.mo share/locale/fi/LC_MESSAGES/kcmusb.mo share/locale/fi/LC_MESSAGES/kcmview1394.mo share/locale/fi/LC_MESSAGES/kcmxinerama.mo @@ -215,8 +213,10 @@ share/locale/fi/LC_MESSAGES/kimagemapeditor.mo share/locale/fi/LC_MESSAGES/kinetd.mo share/locale/fi/LC_MESSAGES/kinfocenter.mo share/locale/fi/LC_MESSAGES/kio4.mo +share/locale/fi/LC_MESSAGES/kio_applications.mo share/locale/fi/LC_MESSAGES/kio_archive.mo share/locale/fi/LC_MESSAGES/kio_audiocd.mo +share/locale/fi/LC_MESSAGES/kio_bookmarks.mo share/locale/fi/LC_MESSAGES/kio_finger.mo share/locale/fi/LC_MESSAGES/kio_fish.mo share/locale/fi/LC_MESSAGES/kio_floppy.mo @@ -226,11 +226,11 @@ share/locale/fi/LC_MESSAGES/kio_imap4.mo share/locale/fi/LC_MESSAGES/kio_jabberdisco.mo share/locale/fi/LC_MESSAGES/kio_ldap.mo share/locale/fi/LC_MESSAGES/kio_man.mo +share/locale/fi/LC_MESSAGES/kio_nepomuksearch.mo share/locale/fi/LC_MESSAGES/kio_nfs.mo share/locale/fi/LC_MESSAGES/kio_nntp.mo share/locale/fi/LC_MESSAGES/kio_pop3.mo share/locale/fi/LC_MESSAGES/kio_remote.mo -share/locale/fi/LC_MESSAGES/kio_settings.mo share/locale/fi/LC_MESSAGES/kio_sftp.mo share/locale/fi/LC_MESSAGES/kio_sieve.mo share/locale/fi/LC_MESSAGES/kio_smb.mo @@ -286,7 +286,6 @@ share/locale/fi/LC_MESSAGES/kpackage.mo share/locale/fi/LC_MESSAGES/kpartsaver.mo share/locale/fi/LC_MESSAGES/kpasswdserver.mo share/locale/fi/LC_MESSAGES/kpat.mo -share/locale/fi/LC_MESSAGES/kpercentage.mo share/locale/fi/LC_MESSAGES/kpilot.mo share/locale/fi/LC_MESSAGES/kppp.mo share/locale/fi/LC_MESSAGES/kppplogview.mo @@ -310,11 +309,6 @@ share/locale/fi/LC_MESSAGES/kreversi.mo share/locale/fi/LC_MESSAGES/krfb.mo share/locale/fi/LC_MESSAGES/kruler.mo share/locale/fi/LC_MESSAGES/krunner.mo -share/locale/fi/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/fi/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/fi/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/fi/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/fi/LC_MESSAGES/krunner_xesam.mo share/locale/fi/LC_MESSAGES/ksame.mo share/locale/fi/LC_MESSAGES/ksayit.mo share/locale/fi/LC_MESSAGES/kscd.mo @@ -334,6 +328,7 @@ share/locale/fi/LC_MESSAGES/kstyle_keramik_config.mo share/locale/fi/LC_MESSAGES/kstyle_phase_config.mo share/locale/fi/LC_MESSAGES/ksudoku.mo share/locale/fi/LC_MESSAGES/ksysguard.mo +share/locale/fi/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/fi/LC_MESSAGES/ksystraycmd.mo share/locale/fi/LC_MESSAGES/ksysv.mo share/locale/fi/LC_MESSAGES/kteatime.mo @@ -341,7 +336,6 @@ share/locale/fi/LC_MESSAGES/ktexteditor_plugins.mo share/locale/fi/LC_MESSAGES/kthememanager.mo share/locale/fi/LC_MESSAGES/ktimer.mo share/locale/fi/LC_MESSAGES/ktimetracker.mo -share/locale/fi/LC_MESSAGES/ktnef.mo share/locale/fi/LC_MESSAGES/ktouch.mo share/locale/fi/LC_MESSAGES/ktraderclient.mo share/locale/fi/LC_MESSAGES/kttsd.mo @@ -387,9 +381,11 @@ share/locale/fi/LC_MESSAGES/libksieve.mo share/locale/fi/LC_MESSAGES/libkworkspace.mo share/locale/fi/LC_MESSAGES/libphonon.mo share/locale/fi/LC_MESSAGES/libplasma.mo +share/locale/fi/LC_MESSAGES/libplasmaclock.mo share/locale/fi/LC_MESSAGES/libtaskmanager.mo share/locale/fi/LC_MESSAGES/lskat.mo share/locale/fi/LC_MESSAGES/marble.mo +share/locale/fi/LC_MESSAGES/marble_qt.mo share/locale/fi/LC_MESSAGES/nsplugin.mo share/locale/fi/LC_MESSAGES/oktetapart.mo share/locale/fi/LC_MESSAGES/okular.mo @@ -409,6 +405,7 @@ share/locale/fi/LC_MESSAGES/okular_xps.mo share/locale/fi/LC_MESSAGES/parley.mo share/locale/fi/LC_MESSAGES/phonon-xine.mo share/locale/fi/LC_MESSAGES/phonon_kde.mo +share/locale/fi/LC_MESSAGES/plasma-overlay.mo share/locale/fi/LC_MESSAGES/plasma.mo share/locale/fi/LC_MESSAGES/plasma_applet_battery.mo share/locale/fi/LC_MESSAGES/plasma_applet_binaryclock.mo @@ -420,21 +417,41 @@ share/locale/fi/LC_MESSAGES/plasma_applet_dict.mo share/locale/fi/LC_MESSAGES/plasma_applet_dig_clock.mo share/locale/fi/LC_MESSAGES/plasma_applet_fifteenPuzzle.mo share/locale/fi/LC_MESSAGES/plasma_applet_fileWatcher.mo +share/locale/fi/LC_MESSAGES/plasma_applet_folderview.mo share/locale/fi/LC_MESSAGES/plasma_applet_frame.mo +share/locale/fi/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/fi/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/fi/LC_MESSAGES/plasma_applet_kget.mo -share/locale/fi/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/fi/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/fi/LC_MESSAGES/plasma_applet_launcher.mo share/locale/fi/LC_MESSAGES/plasma_applet_luna.mo share/locale/fi/LC_MESSAGES/plasma_applet_notes.mo share/locale/fi/LC_MESSAGES/plasma_applet_pager.mo +share/locale/fi/LC_MESSAGES/plasma_applet_panel.mo share/locale/fi/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/fi/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/fi/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/fi/LC_MESSAGES/plasma_applet_tasks.mo share/locale/fi/LC_MESSAGES/plasma_applet_trash.mo share/locale/fi/LC_MESSAGES/plasma_applet_twitter.mo -share/locale/fi/LC_MESSAGES/plasma_engine_dict.mo +share/locale/fi/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/fi/LC_MESSAGES/plasma_appletscript_qedje.mo +share/locale/fi/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/fi/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/fi/LC_MESSAGES/plasma_engine_rss.mo +share/locale/fi/LC_MESSAGES/plasma_runner_locations.mo +share/locale/fi/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/fi/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/fi/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/fi/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/fi/LC_MESSAGES/plasma_runner_shell.mo +share/locale/fi/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/fi/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/fi/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/fi/LC_MESSAGES/plasmaengineexplorer.mo share/locale/fi/LC_MESSAGES/plasmapkg.mo +share/locale/fi/LC_MESSAGES/plasmoidviewer.mo +share/locale/fi/LC_MESSAGES/powerdevil.mo share/locale/fi/LC_MESSAGES/printer-applet.mo share/locale/fi/LC_MESSAGES/processcore.mo share/locale/fi/LC_MESSAGES/processui.mo diff --git a/misc/kde4-l10n-fy/Makefile b/misc/kde4-l10n-fy/Makefile index 247906b4c9f5..15051eb2eff7 100644 --- a/misc/kde4-l10n-fy/Makefile +++ b/misc/kde4-l10n-fy/Makefile @@ -6,7 +6,7 @@ # PORTNAME= kde-l10n -PORTVERSION= ${KDE4_VERSION} +PORTVERSION= 4.1.4 CATEGORIES= misc kde MAINTAINER= kde@FreeBSD.org diff --git a/misc/kde4-l10n-fy/pkg-plist b/misc/kde4-l10n-fy/pkg-plist index 038cfed27e79..2c9071826916 100644 --- a/misc/kde4-l10n-fy/pkg-plist +++ b/misc/kde4-l10n-fy/pkg-plist @@ -214,5 +214,3 @@ share/locale/fy/LC_MESSAGES/sweeper.mo share/locale/fy/LC_MESSAGES/timezones4.mo share/locale/fy/LC_MESSAGES/useraccount.mo share/locale/fy/entry.desktop -@dirrm share/locale/fy/LC_MESSAGES -@dirrm share/locale/fy diff --git a/misc/kde4-l10n-ga/distinfo b/misc/kde4-l10n-ga/distinfo index 65e4ab8147ec..83cd10f77a1b 100644 --- a/misc/kde4-l10n-ga/distinfo +++ b/misc/kde4-l10n-ga/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-ga-4.1.4.tar.bz2) = e35d048d6977d62b9f1598ecd6410ae9 -SHA256 (KDE/kde-l10n/kde-l10n-ga-4.1.4.tar.bz2) = 4bbde2837860a0a4913733b903257a36efe9ef298adf71b99b1462f9335dca05 -SIZE (KDE/kde-l10n/kde-l10n-ga-4.1.4.tar.bz2) = 1708072 +MD5 (KDE/kde-l10n/kde-l10n-ga-4.2.0.tar.bz2) = d18b399ca99aa54c936bcdb207baac0a +SHA256 (KDE/kde-l10n/kde-l10n-ga-4.2.0.tar.bz2) = e8a90368d3429f9b03d3e96084f5b14f662ce11068a6c80db42d7e201f7271cd +SIZE (KDE/kde-l10n/kde-l10n-ga-4.2.0.tar.bz2) = 1814084 diff --git a/misc/kde4-l10n-ga/pkg-plist b/misc/kde4-l10n-ga/pkg-plist index 218099007673..2ea4d0aae505 100644 --- a/misc/kde4-l10n-ga/pkg-plist +++ b/misc/kde4-l10n-ga/pkg-plist @@ -11,6 +11,7 @@ share/locale/ga/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ga/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ga/LC_MESSAGES/audiorename_plugin.mo share/locale/ga/LC_MESSAGES/blinken.mo +share/locale/ga/LC_MESSAGES/bomber.mo share/locale/ga/LC_MESSAGES/bovo.mo share/locale/ga/LC_MESSAGES/cervisia.mo share/locale/ga/LC_MESSAGES/cvsservice.mo @@ -25,6 +26,7 @@ share/locale/ga/LC_MESSAGES/imagerename_plugin.mo share/locale/ga/LC_MESSAGES/joystick.mo share/locale/ga/LC_MESSAGES/juk.mo share/locale/ga/LC_MESSAGES/kabc.mo +share/locale/ga/LC_MESSAGES/kabc_akonadi.mo share/locale/ga/LC_MESSAGES/kabc_dir.mo share/locale/ga/LC_MESSAGES/kabc_file.mo share/locale/ga/LC_MESSAGES/kabc_ldapkio.mo @@ -38,10 +40,14 @@ share/locale/ga/LC_MESSAGES/kaddressbook.mo share/locale/ga/LC_MESSAGES/kalarm.mo share/locale/ga/LC_MESSAGES/kalgebra.mo share/locale/ga/LC_MESSAGES/kalzium.mo +share/locale/ga/LC_MESSAGES/kalzium_qt.mo share/locale/ga/LC_MESSAGES/kanagram.mo +share/locale/ga/LC_MESSAGES/kapman.mo share/locale/ga/LC_MESSAGES/kappfinder.mo share/locale/ga/LC_MESSAGES/kapptemplate.mo +share/locale/ga/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ga/LC_MESSAGES/kate.mo +share/locale/ga/LC_MESSAGES/katebuild-plugin.mo share/locale/ga/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ga/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ga/LC_MESSAGES/katefiletemplates.mo @@ -52,7 +58,6 @@ share/locale/ga/LC_MESSAGES/kateinsertcommand.mo share/locale/ga/LC_MESSAGES/katekjswrapper.mo share/locale/ga/LC_MESSAGES/katekonsoleplugin.mo share/locale/ga/LC_MESSAGES/katemailfilesplugin.mo -share/locale/ga/LC_MESSAGES/katemake.mo share/locale/ga/LC_MESSAGES/kateopenheader.mo share/locale/ga/LC_MESSAGES/katepart4.mo share/locale/ga/LC_MESSAGES/katepybrowse.mo @@ -71,14 +76,14 @@ share/locale/ga/LC_MESSAGES/kblocks.mo share/locale/ga/LC_MESSAGES/kbounce.mo share/locale/ga/LC_MESSAGES/kbreakout.mo share/locale/ga/LC_MESSAGES/kbruch.mo -share/locale/ga/LC_MESSAGES/kbstateapplet.mo share/locale/ga/LC_MESSAGES/kbugbuster.mo share/locale/ga/LC_MESSAGES/kcachegrind.mo share/locale/ga/LC_MESSAGES/kcalc.mo share/locale/ga/LC_MESSAGES/kcertpart.mo share/locale/ga/LC_MESSAGES/kcharselect.mo -share/locale/ga/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/ga/LC_MESSAGES/kcm_akonadi.mo share/locale/ga/LC_MESSAGES/kcm_autostart.mo +share/locale/ga/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/ga/LC_MESSAGES/kcm_emoticons.mo share/locale/ga/LC_MESSAGES/kcm_krfb.mo share/locale/ga/LC_MESSAGES/kcm_kwindesktop.mo @@ -88,6 +93,7 @@ share/locale/ga/LC_MESSAGES/kcm_pci.mo share/locale/ga/LC_MESSAGES/kcm_phonon.mo share/locale/ga/LC_MESSAGES/kcm_phononxine.mo share/locale/ga/LC_MESSAGES/kcm_solid.mo +share/locale/ga/LC_MESSAGES/kcm_standard_actions.mo share/locale/ga/LC_MESSAGES/kcmaccess.mo share/locale/ga/LC_MESSAGES/kcmaudiocd.mo share/locale/ga/LC_MESSAGES/kcmbackground.mo @@ -137,7 +143,6 @@ share/locale/ga/LC_MESSAGES/kcmsmartcard.mo share/locale/ga/LC_MESSAGES/kcmsmserver.mo share/locale/ga/LC_MESSAGES/kcmsolidproc.mo share/locale/ga/LC_MESSAGES/kcmstyle.mo -share/locale/ga/LC_MESSAGES/kcmtaskbar.mo share/locale/ga/LC_MESSAGES/kcmusb.mo share/locale/ga/LC_MESSAGES/kcmview1394.mo share/locale/ga/LC_MESSAGES/kcmxinerama.mo @@ -145,7 +150,9 @@ share/locale/ga/LC_MESSAGES/kcolorchooser.mo share/locale/ga/LC_MESSAGES/kcron.mo share/locale/ga/LC_MESSAGES/kdat.mo share/locale/ga/LC_MESSAGES/kde-menu.mo +share/locale/ga/LC_MESSAGES/kdeasciiquarium.mo share/locale/ga/LC_MESSAGES/kdebugdialog.mo +share/locale/ga/LC_MESSAGES/kded_phononserver.mo share/locale/ga/LC_MESSAGES/kdelibs4.mo share/locale/ga/LC_MESSAGES/kdelibs_colors4.mo share/locale/ga/LC_MESSAGES/kdepasswd.mo @@ -156,6 +163,7 @@ share/locale/ga/LC_MESSAGES/kdessh.mo share/locale/ga/LC_MESSAGES/kdesu.mo share/locale/ga/LC_MESSAGES/kdesud.mo share/locale/ga/LC_MESSAGES/kdf.mo +share/locale/ga/LC_MESSAGES/kdgantt.mo share/locale/ga/LC_MESSAGES/kdgantt1.mo share/locale/ga/LC_MESSAGES/kdialog.mo share/locale/ga/LC_MESSAGES/kdiamond.mo @@ -205,12 +213,15 @@ share/locale/ga/LC_MESSAGES/khotnewstuff.mo share/locale/ga/LC_MESSAGES/khtmlkttsd.mo share/locale/ga/LC_MESSAGES/kiconfinder.mo share/locale/ga/LC_MESSAGES/kig.mo +share/locale/ga/LC_MESSAGES/killbots.mo share/locale/ga/LC_MESSAGES/kimagemapeditor.mo share/locale/ga/LC_MESSAGES/kinetd.mo share/locale/ga/LC_MESSAGES/kinfocenter.mo share/locale/ga/LC_MESSAGES/kio4.mo +share/locale/ga/LC_MESSAGES/kio_applications.mo share/locale/ga/LC_MESSAGES/kio_archive.mo share/locale/ga/LC_MESSAGES/kio_audiocd.mo +share/locale/ga/LC_MESSAGES/kio_bookmarks.mo share/locale/ga/LC_MESSAGES/kio_finger.mo share/locale/ga/LC_MESSAGES/kio_fish.mo share/locale/ga/LC_MESSAGES/kio_floppy.mo @@ -221,11 +232,12 @@ share/locale/ga/LC_MESSAGES/kio_jabberdisco.mo share/locale/ga/LC_MESSAGES/kio_ldap.mo share/locale/ga/LC_MESSAGES/kio_man.mo share/locale/ga/LC_MESSAGES/kio_mbox.mo +share/locale/ga/LC_MESSAGES/kio_nepomuksearch.mo share/locale/ga/LC_MESSAGES/kio_nfs.mo share/locale/ga/LC_MESSAGES/kio_nntp.mo +share/locale/ga/LC_MESSAGES/kio_perldoc.mo share/locale/ga/LC_MESSAGES/kio_pop3.mo share/locale/ga/LC_MESSAGES/kio_remote.mo -share/locale/ga/LC_MESSAGES/kio_settings.mo share/locale/ga/LC_MESSAGES/kio_sftp.mo share/locale/ga/LC_MESSAGES/kio_sieve.mo share/locale/ga/LC_MESSAGES/kio_smb.mo @@ -285,10 +297,10 @@ share/locale/ga/LC_MESSAGES/kopete.mo share/locale/ga/LC_MESSAGES/korganizer.mo share/locale/ga/LC_MESSAGES/korn.mo share/locale/ga/LC_MESSAGES/kpackage.mo +share/locale/ga/LC_MESSAGES/kpartloader.mo share/locale/ga/LC_MESSAGES/kpartsaver.mo share/locale/ga/LC_MESSAGES/kpasswdserver.mo share/locale/ga/LC_MESSAGES/kpat.mo -share/locale/ga/LC_MESSAGES/kpercentage.mo share/locale/ga/LC_MESSAGES/kpilot.mo share/locale/ga/LC_MESSAGES/kppp.mo share/locale/ga/LC_MESSAGES/kppplogview.mo @@ -312,20 +324,12 @@ share/locale/ga/LC_MESSAGES/kreversi.mo share/locale/ga/LC_MESSAGES/krfb.mo share/locale/ga/LC_MESSAGES/kruler.mo share/locale/ga/LC_MESSAGES/krunner.mo -share/locale/ga/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/ga/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/ga/LC_MESSAGES/krunner_contacts.mo -share/locale/ga/LC_MESSAGES/krunner_converterrunner.mo -share/locale/ga/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/ga/LC_MESSAGES/krunner_sessions.mo -share/locale/ga/LC_MESSAGES/krunner_shellrunner.mo -share/locale/ga/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/ga/LC_MESSAGES/krunner_xesam.mo share/locale/ga/LC_MESSAGES/ksame.mo share/locale/ga/LC_MESSAGES/ksaneplugin.mo share/locale/ga/LC_MESSAGES/ksayit.mo share/locale/ga/LC_MESSAGES/kscd.mo share/locale/ga/LC_MESSAGES/kscreensaver.mo +share/locale/ga/LC_MESSAGES/ksendemail.mo share/locale/ga/LC_MESSAGES/kshisen.mo share/locale/ga/LC_MESSAGES/kshorturifilter.mo share/locale/ga/LC_MESSAGES/ksirk.mo @@ -342,6 +346,7 @@ share/locale/ga/LC_MESSAGES/kstyle_keramik_config.mo share/locale/ga/LC_MESSAGES/kstyle_phase_config.mo share/locale/ga/LC_MESSAGES/ksudoku.mo share/locale/ga/LC_MESSAGES/ksysguard.mo +share/locale/ga/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ga/LC_MESSAGES/ksystemlog.mo share/locale/ga/LC_MESSAGES/ksystraycmd.mo share/locale/ga/LC_MESSAGES/ksysv.mo @@ -351,7 +356,6 @@ share/locale/ga/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/ga/LC_MESSAGES/kthememanager.mo share/locale/ga/LC_MESSAGES/ktimer.mo share/locale/ga/LC_MESSAGES/ktimetracker.mo -share/locale/ga/LC_MESSAGES/ktnef.mo share/locale/ga/LC_MESSAGES/ktouch.mo share/locale/ga/LC_MESSAGES/ktraderclient.mo share/locale/ga/LC_MESSAGES/kttsd.mo @@ -363,6 +367,7 @@ share/locale/ga/LC_MESSAGES/kuiserver.mo share/locale/ga/LC_MESSAGES/kuiviewer.mo share/locale/ga/LC_MESSAGES/kurifilter.mo share/locale/ga/LC_MESSAGES/kuser.mo +share/locale/ga/LC_MESSAGES/kwalletd.mo share/locale/ga/LC_MESSAGES/kwalletmanager.mo share/locale/ga/LC_MESSAGES/kwatchgnupg.mo share/locale/ga/LC_MESSAGES/kweather.mo @@ -409,11 +414,14 @@ share/locale/ga/LC_MESSAGES/libmailtransport.mo share/locale/ga/LC_MESSAGES/liboktetacore.mo share/locale/ga/LC_MESSAGES/libphonon.mo share/locale/ga/LC_MESSAGES/libplasma.mo +share/locale/ga/LC_MESSAGES/libplasmaclock.mo share/locale/ga/LC_MESSAGES/libtaskmanager.mo share/locale/ga/LC_MESSAGES/lokalize.mo share/locale/ga/LC_MESSAGES/lskat.mo share/locale/ga/LC_MESSAGES/marble.mo +share/locale/ga/LC_MESSAGES/marble_qt.mo share/locale/ga/LC_MESSAGES/nepomuk.mo +share/locale/ga/LC_MESSAGES/nepomuksearch.mo share/locale/ga/LC_MESSAGES/nsplugin.mo share/locale/ga/LC_MESSAGES/okteta.mo share/locale/ga/LC_MESSAGES/oktetapart.mo @@ -423,6 +431,7 @@ share/locale/ga/LC_MESSAGES/okular_comicbook.mo share/locale/ga/LC_MESSAGES/okular_djvu.mo share/locale/ga/LC_MESSAGES/okular_dvi.mo share/locale/ga/LC_MESSAGES/okular_epub.mo +share/locale/ga/LC_MESSAGES/okular_fax.mo share/locale/ga/LC_MESSAGES/okular_fictionbook.mo share/locale/ga/LC_MESSAGES/okular_ghostview.mo share/locale/ga/LC_MESSAGES/okular_kimgio.mo @@ -435,10 +444,15 @@ share/locale/ga/LC_MESSAGES/parley.mo share/locale/ga/LC_MESSAGES/phonon-xine.mo share/locale/ga/LC_MESSAGES/phonon_gstreamer.mo share/locale/ga/LC_MESSAGES/phonon_kde.mo +share/locale/ga/LC_MESSAGES/plasma-overlay.mo +share/locale/ga/LC_MESSAGES/plasma-shells-common.mo share/locale/ga/LC_MESSAGES/plasma.mo share/locale/ga/LC_MESSAGES/plasma_applet_battery.mo +share/locale/ga/LC_MESSAGES/plasma_applet_bball.mo share/locale/ga/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/ga/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/ga/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/ga/LC_MESSAGES/plasma_applet_charselect.mo share/locale/ga/LC_MESSAGES/plasma_applet_clock.mo share/locale/ga/LC_MESSAGES/plasma_applet_comic.mo share/locale/ga/LC_MESSAGES/plasma_applet_desktop.mo @@ -450,26 +464,61 @@ share/locale/ga/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/ga/LC_MESSAGES/plasma_applet_folderview.mo share/locale/ga/LC_MESSAGES/plasma_applet_frame.mo share/locale/ga/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/ga/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/ga/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/ga/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ga/LC_MESSAGES/plasma_applet_katesession.mo share/locale/ga/LC_MESSAGES/plasma_applet_kget.mo -share/locale/ga/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/ga/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/ga/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/ga/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/ga/LC_MESSAGES/plasma_applet_life.mo share/locale/ga/LC_MESSAGES/plasma_applet_luna.mo +share/locale/ga/LC_MESSAGES/plasma_applet_news.mo share/locale/ga/LC_MESSAGES/plasma_applet_notes.mo share/locale/ga/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/ga/LC_MESSAGES/plasma_applet_pager.mo share/locale/ga/LC_MESSAGES/plasma_applet_panel.mo +share/locale/ga/LC_MESSAGES/plasma_applet_paste.mo +share/locale/ga/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/ga/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/ga/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/ga/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/ga/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/ga/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/ga/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/ga/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/ga/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/ga/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/ga/LC_MESSAGES/plasma_applet_timer.mo share/locale/ga/LC_MESSAGES/plasma_applet_trash.mo share/locale/ga/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/ga/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/ga/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/ga/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/ga/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/ga/LC_MESSAGES/plasma_engine_dict.mo +share/locale/ga/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/ga/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ga/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/ga/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ga/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/ga/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ga/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/ga/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ga/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/ga/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ga/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ga/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ga/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ga/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ga/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ga/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/ga/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/ga/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/ga/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ga/LC_MESSAGES/plasmapkg.mo share/locale/ga/LC_MESSAGES/plasmoidviewer.mo +share/locale/ga/LC_MESSAGES/powerdevil.mo share/locale/ga/LC_MESSAGES/printer-applet.mo share/locale/ga/LC_MESSAGES/processcore.mo share/locale/ga/LC_MESSAGES/processui.mo @@ -481,10 +530,12 @@ share/locale/ga/LC_MESSAGES/solidcontrol.mo share/locale/ga/LC_MESSAGES/soliduiserver.mo share/locale/ga/LC_MESSAGES/spy.mo share/locale/ga/LC_MESSAGES/step.mo +share/locale/ga/LC_MESSAGES/step_qt.mo share/locale/ga/LC_MESSAGES/strigila_diff.mo share/locale/ga/LC_MESSAGES/superkaramba.mo share/locale/ga/LC_MESSAGES/svgpart.mo share/locale/ga/LC_MESSAGES/sweeper.mo +share/locale/ga/LC_MESSAGES/system-config-printer-kde.mo share/locale/ga/LC_MESSAGES/systemsettings.mo share/locale/ga/LC_MESSAGES/timezones4.mo share/locale/ga/LC_MESSAGES/umbrello.mo diff --git a/misc/kde4-l10n-gl/Makefile b/misc/kde4-l10n-gl/Makefile index 67200433a5a7..bc375d537eca 100644 --- a/misc/kde4-l10n-gl/Makefile +++ b/misc/kde4-l10n-gl/Makefile @@ -14,6 +14,9 @@ COMMENT= Gallegan messages and documentation for KDE4 KDE4_L10N= gl +MANLANG= ${KDE4_L10N} +.include <${.CURDIR}/Makefile.man> + post-extract: ${MKDIR} ${WRKSRC}/build diff --git a/misc/kde4-l10n-gl/distinfo b/misc/kde4-l10n-gl/distinfo index 578209cbfe60..70b3eb1c477a 100644 --- a/misc/kde4-l10n-gl/distinfo +++ b/misc/kde4-l10n-gl/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-gl-4.1.4.tar.bz2) = 7e75474eb5f39f122ae08f4f1abeeeb2 -SHA256 (KDE/kde-l10n/kde-l10n-gl-4.1.4.tar.bz2) = b09d22c882551a2081caea7621a91f0084538acf0832673b26c8685c93c63c9e -SIZE (KDE/kde-l10n/kde-l10n-gl-4.1.4.tar.bz2) = 2790922 +MD5 (KDE/kde-l10n/kde-l10n-gl-4.2.0.tar.bz2) = 104815bc1b20b100509f66132df52cad +SHA256 (KDE/kde-l10n/kde-l10n-gl-4.2.0.tar.bz2) = 1e1070a8a28c067cd7c41075da7fd194b7b9e892ebaa0264ef8f4d940b57d310 +SIZE (KDE/kde-l10n/kde-l10n-gl-4.2.0.tar.bz2) = 3440760 diff --git a/misc/kde4-l10n-gl/pkg-plist b/misc/kde4-l10n-gl/pkg-plist index f1789ea0bd2f..f27b9ba15ac8 100644 --- a/misc/kde4-l10n-gl/pkg-plist +++ b/misc/kde4-l10n-gl/pkg-plist @@ -84,9 +84,26 @@ share/apps/kvtml/gl/roupa.kvtml share/apps/kvtml/gl/transporte.kvtml share/apps/kvtml/gl/verduras.kvtml share/apps/kvtml/gl/xente.kvtml +share/doc/HTML/gl/akregator/common +share/doc/HTML/gl/akregator/index.cache.bz2 +share/doc/HTML/gl/akregator/index.docbook share/doc/HTML/gl/blinken/common share/doc/HTML/gl/blinken/index.cache.bz2 share/doc/HTML/gl/blinken/index.docbook +share/doc/HTML/gl/gwenview/common +share/doc/HTML/gl/gwenview/index.cache.bz2 +share/doc/HTML/gl/gwenview/index.docbook +share/doc/HTML/gl/gwenview/interface.docbook +share/doc/HTML/gl/gwenview/introduction.docbook +share/doc/HTML/gl/gwenview/keybindings.docbook +share/doc/HTML/gl/gwenview/mouse.docbook +share/doc/HTML/gl/kaddressbook/common +share/doc/HTML/gl/kaddressbook/index.cache.bz2 +share/doc/HTML/gl/kaddressbook/index.docbook +share/doc/HTML/gl/kalzium/common +share/doc/HTML/gl/kalzium/index.cache.bz2 +share/doc/HTML/gl/kalzium/index.docbook +share/doc/HTML/gl/kalzium/man-kalzium.1.docbook share/doc/HTML/gl/kanagram/common share/doc/HTML/gl/kanagram/index.cache.bz2 share/doc/HTML/gl/kanagram/index.docbook @@ -97,59 +114,195 @@ share/doc/HTML/gl/kbruch/man-kbruch.1.docbook share/doc/HTML/gl/kcachegrind/common share/doc/HTML/gl/kcachegrind/index.cache.bz2 share/doc/HTML/gl/kcachegrind/index.docbook +share/doc/HTML/gl/kcontrol/kamera/common +share/doc/HTML/gl/kcontrol/kamera/index.cache.bz2 +share/doc/HTML/gl/kcontrol/kamera/index.docbook +share/doc/HTML/gl/kcontrol/keyboard/common +share/doc/HTML/gl/kcontrol/keyboard/index.cache.bz2 +share/doc/HTML/gl/kcontrol/keyboard/index.docbook +share/doc/HTML/gl/kgamma/common +share/doc/HTML/gl/kgamma/index.cache.bz2 +share/doc/HTML/gl/kgamma/index.docbook +share/doc/HTML/gl/kgeography/common +share/doc/HTML/gl/kgeography/index.cache.bz2 +share/doc/HTML/gl/kgeography/index.docbook share/doc/HTML/gl/khelpcenter/visualdict/common share/doc/HTML/gl/khelpcenter/visualdict/index.cache.bz2 share/doc/HTML/gl/khelpcenter/visualdict/index.docbook share/doc/HTML/gl/kinfocenter/usb/common share/doc/HTML/gl/kinfocenter/usb/index.cache.bz2 share/doc/HTML/gl/kinfocenter/usb/index.docbook -share/doc/HTML/gl/kioslave/bzip.docbook -share/doc/HTML/gl/kioslave/bzip2.docbook -share/doc/HTML/gl/kioslave/cgi.docbook -share/doc/HTML/gl/kioslave/common -share/doc/HTML/gl/kioslave/data.docbook -share/doc/HTML/gl/kioslave/file.docbook -share/doc/HTML/gl/kioslave/finger.docbook -share/doc/HTML/gl/kioslave/fish.docbook -share/doc/HTML/gl/kioslave/floppy.docbook -share/doc/HTML/gl/kioslave/ftp.docbook -share/doc/HTML/gl/kioslave/gopher.docbook -share/doc/HTML/gl/kioslave/gzip.docbook -share/doc/HTML/gl/kioslave/help.docbook -share/doc/HTML/gl/kioslave/http.docbook -share/doc/HTML/gl/kioslave/https.docbook -share/doc/HTML/gl/kioslave/imap.docbook -share/doc/HTML/gl/kioslave/imaps.docbook -share/doc/HTML/gl/kioslave/index.cache.bz2 -share/doc/HTML/gl/kioslave/index.docbook -share/doc/HTML/gl/kioslave/info.docbook -share/doc/HTML/gl/kioslave/lan.docbook -share/doc/HTML/gl/kioslave/ldap.docbook -share/doc/HTML/gl/kioslave/mac.docbook -share/doc/HTML/gl/kioslave/mailto.docbook -share/doc/HTML/gl/kioslave/man.docbook -share/doc/HTML/gl/kioslave/mrml.docbook -share/doc/HTML/gl/kioslave/news.docbook -share/doc/HTML/gl/kioslave/nfs.docbook -share/doc/HTML/gl/kioslave/nntp.docbook -share/doc/HTML/gl/kioslave/pop3.docbook -share/doc/HTML/gl/kioslave/pop3s.docbook -share/doc/HTML/gl/kioslave/rlan.docbook -share/doc/HTML/gl/kioslave/rlogin.docbook -share/doc/HTML/gl/kioslave/sftp.docbook -share/doc/HTML/gl/kioslave/smb.docbook -share/doc/HTML/gl/kioslave/smtp.docbook -share/doc/HTML/gl/kioslave/tar.docbook -share/doc/HTML/gl/kioslave/telnet.docbook -share/doc/HTML/gl/kioslave/thumbnail.docbook -share/doc/HTML/gl/kioslave/webdav.docbook -share/doc/HTML/gl/kioslave/webdavs.docbook +share/doc/HTML/gl/kioslave/cgi/common +share/doc/HTML/gl/kioslave/cgi/index.cache.bz2 +share/doc/HTML/gl/kioslave/cgi/index.docbook +share/doc/HTML/gl/kioslave/data/common +share/doc/HTML/gl/kioslave/data/index.cache.bz2 +share/doc/HTML/gl/kioslave/data/index.docbook +share/doc/HTML/gl/kioslave/file/common +share/doc/HTML/gl/kioslave/file/index.cache.bz2 +share/doc/HTML/gl/kioslave/file/index.docbook +share/doc/HTML/gl/kioslave/finger/common +share/doc/HTML/gl/kioslave/finger/index.cache.bz2 +share/doc/HTML/gl/kioslave/finger/index.docbook +share/doc/HTML/gl/kioslave/fish/common +share/doc/HTML/gl/kioslave/fish/index.cache.bz2 +share/doc/HTML/gl/kioslave/fish/index.docbook +share/doc/HTML/gl/kioslave/floppy/common +share/doc/HTML/gl/kioslave/floppy/index.cache.bz2 +share/doc/HTML/gl/kioslave/floppy/index.docbook +share/doc/HTML/gl/kioslave/ftp/common +share/doc/HTML/gl/kioslave/ftp/index.cache.bz2 +share/doc/HTML/gl/kioslave/ftp/index.docbook +share/doc/HTML/gl/kioslave/info/common +share/doc/HTML/gl/kioslave/info/index.cache.bz2 +share/doc/HTML/gl/kioslave/info/index.docbook +share/doc/HTML/gl/kioslave/mailto/common +share/doc/HTML/gl/kioslave/mailto/index.cache.bz2 +share/doc/HTML/gl/kioslave/mailto/index.docbook +share/doc/HTML/gl/kioslave/man/common +share/doc/HTML/gl/kioslave/man/index.cache.bz2 +share/doc/HTML/gl/kioslave/man/index.docbook +share/doc/HTML/gl/kioslave/nfs/common +share/doc/HTML/gl/kioslave/nfs/index.cache.bz2 +share/doc/HTML/gl/kioslave/nfs/index.docbook +share/doc/HTML/gl/kioslave/rlogin/common +share/doc/HTML/gl/kioslave/rlogin/index.cache.bz2 +share/doc/HTML/gl/kioslave/rlogin/index.docbook +share/doc/HTML/gl/kioslave/sftp/common +share/doc/HTML/gl/kioslave/sftp/index.cache.bz2 +share/doc/HTML/gl/kioslave/sftp/index.docbook +share/doc/HTML/gl/kioslave/smb/common +share/doc/HTML/gl/kioslave/smb/index.cache.bz2 +share/doc/HTML/gl/kioslave/smb/index.docbook +share/doc/HTML/gl/kioslave/tar/common +share/doc/HTML/gl/kioslave/tar/index.cache.bz2 +share/doc/HTML/gl/kioslave/tar/index.docbook +share/doc/HTML/gl/kioslave/telnet/common +share/doc/HTML/gl/kioslave/telnet/index.cache.bz2 +share/doc/HTML/gl/kioslave/telnet/index.docbook +share/doc/HTML/gl/kioslave/thumbnail/common +share/doc/HTML/gl/kioslave/thumbnail/index.cache.bz2 +share/doc/HTML/gl/kioslave/thumbnail/index.docbook +share/doc/HTML/gl/klettres/common +share/doc/HTML/gl/klettres/index.cache.bz2 +share/doc/HTML/gl/klettres/index.docbook +share/doc/HTML/gl/kmail/common +share/doc/HTML/gl/kmail/configure.docbook +share/doc/HTML/gl/kmail/credits-and-licenses.docbook +share/doc/HTML/gl/kmail/faq.docbook +share/doc/HTML/gl/kmail/getting-started.docbook +share/doc/HTML/gl/kmail/importing.docbook +share/doc/HTML/gl/kmail/index.cache.bz2 +share/doc/HTML/gl/kmail/index.docbook +share/doc/HTML/gl/kmail/intro.docbook +share/doc/HTML/gl/kmail/menus.docbook +share/doc/HTML/gl/kmail/using-kmail.docbook +share/doc/HTML/gl/kolourpaint/common +share/doc/HTML/gl/kolourpaint/index.cache.bz2 +share/doc/HTML/gl/kolourpaint/index.docbook +share/doc/HTML/gl/kruler/common +share/doc/HTML/gl/kruler/index.cache.bz2 +share/doc/HTML/gl/kruler/index.docbook +share/doc/HTML/gl/ksnapshot/common +share/doc/HTML/gl/ksnapshot/index.cache.bz2 +share/doc/HTML/gl/ksnapshot/index.docbook +share/doc/HTML/gl/kstars/ai-contents.docbook +share/doc/HTML/gl/kstars/altvstime.docbook +share/doc/HTML/gl/kstars/astroinfo.docbook +share/doc/HTML/gl/kstars/blackbody.docbook +share/doc/HTML/gl/kstars/calc-angdist.docbook +share/doc/HTML/gl/kstars/calc-apcoords.docbook +share/doc/HTML/gl/kstars/calc-dayduration.docbook +share/doc/HTML/gl/kstars/calc-ecliptic.docbook +share/doc/HTML/gl/kstars/calc-eqgal.docbook +share/doc/HTML/gl/kstars/calc-equinox.docbook +share/doc/HTML/gl/kstars/calc-geodetic.docbook +share/doc/HTML/gl/kstars/calc-horizontal.docbook +share/doc/HTML/gl/kstars/calc-julianday.docbook +share/doc/HTML/gl/kstars/calc-planetcoords.docbook +share/doc/HTML/gl/kstars/calc-precess.docbook +share/doc/HTML/gl/kstars/calc-sidereal.docbook +share/doc/HTML/gl/kstars/calculator.docbook +share/doc/HTML/gl/kstars/cequator.docbook +share/doc/HTML/gl/kstars/colorandtemp.docbook +share/doc/HTML/gl/kstars/commands.docbook +share/doc/HTML/gl/kstars/common +share/doc/HTML/gl/kstars/config.docbook +share/doc/HTML/gl/kstars/cpoles.docbook +share/doc/HTML/gl/kstars/credits.docbook +share/doc/HTML/gl/kstars/csphere.docbook +share/doc/HTML/gl/kstars/darkmatter.docbook +share/doc/HTML/gl/kstars/details.docbook +share/doc/HTML/gl/kstars/dumpmode.docbook +share/doc/HTML/gl/kstars/ecliptic.docbook +share/doc/HTML/gl/kstars/ellipticalgalaxies.docbook +share/doc/HTML/gl/kstars/equinox.docbook +share/doc/HTML/gl/kstars/faq.docbook +share/doc/HTML/gl/kstars/fitsviewer.docbook +share/doc/HTML/gl/kstars/flux.docbook +share/doc/HTML/gl/kstars/geocoords.docbook +share/doc/HTML/gl/kstars/greatcircle.docbook +share/doc/HTML/gl/kstars/horizon.docbook +share/doc/HTML/gl/kstars/hourangle.docbook +share/doc/HTML/gl/kstars/index.cache.bz2 +share/doc/HTML/gl/kstars/index.docbook +share/doc/HTML/gl/kstars/indi.docbook +share/doc/HTML/gl/kstars/install.docbook +share/doc/HTML/gl/kstars/jmoons.docbook +share/doc/HTML/gl/kstars/julianday.docbook +share/doc/HTML/gl/kstars/leapyear.docbook +share/doc/HTML/gl/kstars/lightcurves.docbook +share/doc/HTML/gl/kstars/luminosity.docbook +share/doc/HTML/gl/kstars/magnitude.docbook +share/doc/HTML/gl/kstars/meridian.docbook +share/doc/HTML/gl/kstars/observinglist.docbook +share/doc/HTML/gl/kstars/parallax.docbook +share/doc/HTML/gl/kstars/precession.docbook +share/doc/HTML/gl/kstars/quicktour.docbook +share/doc/HTML/gl/kstars/retrograde.docbook +share/doc/HTML/gl/kstars/scriptbuilder.docbook +share/doc/HTML/gl/kstars/sidereal.docbook +share/doc/HTML/gl/kstars/skycoords.docbook +share/doc/HTML/gl/kstars/solarsys.docbook +share/doc/HTML/gl/kstars/spiralgalaxies.docbook +share/doc/HTML/gl/kstars/stars.docbook +share/doc/HTML/gl/kstars/timezones.docbook +share/doc/HTML/gl/kstars/tools.docbook +share/doc/HTML/gl/kstars/utime.docbook +share/doc/HTML/gl/kstars/wut.docbook +share/doc/HTML/gl/kstars/zenith.docbook +share/doc/HTML/gl/ktouch/common +share/doc/HTML/gl/ktouch/index.cache.bz2 +share/doc/HTML/gl/ktouch/index.docbook +share/doc/HTML/gl/ktouch/man-ktouch.1.docbook +share/doc/HTML/gl/kturtle/common +share/doc/HTML/gl/kturtle/getting-started.docbook +share/doc/HTML/gl/kturtle/glossary.docbook +share/doc/HTML/gl/kturtle/index.cache.bz2 +share/doc/HTML/gl/kturtle/index.docbook +share/doc/HTML/gl/kturtle/programming-reference.docbook +share/doc/HTML/gl/kturtle/translator-guide.docbook +share/doc/HTML/gl/kturtle/using-kturtle.docbook +share/doc/HTML/gl/kwordquiz/common +share/doc/HTML/gl/kwordquiz/index.cache.bz2 +share/doc/HTML/gl/kwordquiz/index.docbook share/doc/HTML/gl/lokalize/common share/doc/HTML/gl/lokalize/index.cache.bz2 share/doc/HTML/gl/lokalize/index.docbook +share/doc/HTML/gl/okular/common +share/doc/HTML/gl/okular/index.cache.bz2 +share/doc/HTML/gl/okular/index.docbook +share/doc/HTML/gl/plasma/common +share/doc/HTML/gl/plasma/index.cache.bz2 +share/doc/HTML/gl/plasma/index.docbook share/doc/HTML/gl/sonnet/common share/doc/HTML/gl/sonnet/index.cache.bz2 share/doc/HTML/gl/sonnet/index.docbook +share/doc/HTML/gl/step/common +share/doc/HTML/gl/step/examples.docbook +share/doc/HTML/gl/step/index.cache.bz2 +share/doc/HTML/gl/step/index.docbook +share/doc/HTML/gl/step/tutorials.docbook share/doc/HTML/gl/umbrello/authors.docbook share/doc/HTML/gl/umbrello/code_import_and_generation.docbook share/doc/HTML/gl/umbrello/common @@ -168,6 +321,7 @@ share/locale/gl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/gl/LC_MESSAGES/audiorename_plugin.mo share/locale/gl/LC_MESSAGES/blinken.mo +share/locale/gl/LC_MESSAGES/bomber.mo share/locale/gl/LC_MESSAGES/bovo.mo share/locale/gl/LC_MESSAGES/cervisia.mo share/locale/gl/LC_MESSAGES/cvsservice.mo @@ -182,6 +336,7 @@ share/locale/gl/LC_MESSAGES/imagerename_plugin.mo share/locale/gl/LC_MESSAGES/joystick.mo share/locale/gl/LC_MESSAGES/juk.mo share/locale/gl/LC_MESSAGES/kabc.mo +share/locale/gl/LC_MESSAGES/kabc_akonadi.mo share/locale/gl/LC_MESSAGES/kabc_dir.mo share/locale/gl/LC_MESSAGES/kabc_file.mo share/locale/gl/LC_MESSAGES/kabc_ldapkio.mo @@ -195,10 +350,14 @@ share/locale/gl/LC_MESSAGES/kaddressbook.mo share/locale/gl/LC_MESSAGES/kalarm.mo share/locale/gl/LC_MESSAGES/kalgebra.mo share/locale/gl/LC_MESSAGES/kalzium.mo +share/locale/gl/LC_MESSAGES/kalzium_qt.mo share/locale/gl/LC_MESSAGES/kanagram.mo +share/locale/gl/LC_MESSAGES/kapman.mo share/locale/gl/LC_MESSAGES/kappfinder.mo share/locale/gl/LC_MESSAGES/kapptemplate.mo +share/locale/gl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/gl/LC_MESSAGES/kate.mo +share/locale/gl/LC_MESSAGES/katebuild-plugin.mo share/locale/gl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/gl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/gl/LC_MESSAGES/katefiletemplates.mo @@ -209,7 +368,6 @@ share/locale/gl/LC_MESSAGES/kateinsertcommand.mo share/locale/gl/LC_MESSAGES/katekjswrapper.mo share/locale/gl/LC_MESSAGES/katekonsoleplugin.mo share/locale/gl/LC_MESSAGES/katemailfilesplugin.mo -share/locale/gl/LC_MESSAGES/katemake.mo share/locale/gl/LC_MESSAGES/kateopenheader.mo share/locale/gl/LC_MESSAGES/katepart4.mo share/locale/gl/LC_MESSAGES/katepybrowse.mo @@ -228,14 +386,14 @@ share/locale/gl/LC_MESSAGES/kblocks.mo share/locale/gl/LC_MESSAGES/kbounce.mo share/locale/gl/LC_MESSAGES/kbreakout.mo share/locale/gl/LC_MESSAGES/kbruch.mo -share/locale/gl/LC_MESSAGES/kbstateapplet.mo share/locale/gl/LC_MESSAGES/kbugbuster.mo share/locale/gl/LC_MESSAGES/kcachegrind.mo share/locale/gl/LC_MESSAGES/kcalc.mo share/locale/gl/LC_MESSAGES/kcertpart.mo share/locale/gl/LC_MESSAGES/kcharselect.mo -share/locale/gl/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/gl/LC_MESSAGES/kcm_akonadi.mo share/locale/gl/LC_MESSAGES/kcm_autostart.mo +share/locale/gl/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/gl/LC_MESSAGES/kcm_emoticons.mo share/locale/gl/LC_MESSAGES/kcm_krfb.mo share/locale/gl/LC_MESSAGES/kcm_kwindesktop.mo @@ -245,6 +403,7 @@ share/locale/gl/LC_MESSAGES/kcm_pci.mo share/locale/gl/LC_MESSAGES/kcm_phonon.mo share/locale/gl/LC_MESSAGES/kcm_phononxine.mo share/locale/gl/LC_MESSAGES/kcm_solid.mo +share/locale/gl/LC_MESSAGES/kcm_standard_actions.mo share/locale/gl/LC_MESSAGES/kcmaccess.mo share/locale/gl/LC_MESSAGES/kcmaudiocd.mo share/locale/gl/LC_MESSAGES/kcmbackground.mo @@ -294,7 +453,6 @@ share/locale/gl/LC_MESSAGES/kcmsmartcard.mo share/locale/gl/LC_MESSAGES/kcmsmserver.mo share/locale/gl/LC_MESSAGES/kcmsolidproc.mo share/locale/gl/LC_MESSAGES/kcmstyle.mo -share/locale/gl/LC_MESSAGES/kcmtaskbar.mo share/locale/gl/LC_MESSAGES/kcmusb.mo share/locale/gl/LC_MESSAGES/kcmview1394.mo share/locale/gl/LC_MESSAGES/kcmxinerama.mo @@ -302,7 +460,9 @@ share/locale/gl/LC_MESSAGES/kcolorchooser.mo share/locale/gl/LC_MESSAGES/kcron.mo share/locale/gl/LC_MESSAGES/kdat.mo share/locale/gl/LC_MESSAGES/kde-menu.mo +share/locale/gl/LC_MESSAGES/kdeasciiquarium.mo share/locale/gl/LC_MESSAGES/kdebugdialog.mo +share/locale/gl/LC_MESSAGES/kded_phononserver.mo share/locale/gl/LC_MESSAGES/kdelibs4.mo share/locale/gl/LC_MESSAGES/kdelibs_colors4.mo share/locale/gl/LC_MESSAGES/kdepasswd.mo @@ -313,6 +473,7 @@ share/locale/gl/LC_MESSAGES/kdessh.mo share/locale/gl/LC_MESSAGES/kdesu.mo share/locale/gl/LC_MESSAGES/kdesud.mo share/locale/gl/LC_MESSAGES/kdf.mo +share/locale/gl/LC_MESSAGES/kdgantt.mo share/locale/gl/LC_MESSAGES/kdgantt1.mo share/locale/gl/LC_MESSAGES/kdialog.mo share/locale/gl/LC_MESSAGES/kdiamond.mo @@ -362,12 +523,15 @@ share/locale/gl/LC_MESSAGES/khotnewstuff.mo share/locale/gl/LC_MESSAGES/khtmlkttsd.mo share/locale/gl/LC_MESSAGES/kiconfinder.mo share/locale/gl/LC_MESSAGES/kig.mo +share/locale/gl/LC_MESSAGES/killbots.mo share/locale/gl/LC_MESSAGES/kimagemapeditor.mo share/locale/gl/LC_MESSAGES/kinetd.mo share/locale/gl/LC_MESSAGES/kinfocenter.mo share/locale/gl/LC_MESSAGES/kio4.mo +share/locale/gl/LC_MESSAGES/kio_applications.mo share/locale/gl/LC_MESSAGES/kio_archive.mo share/locale/gl/LC_MESSAGES/kio_audiocd.mo +share/locale/gl/LC_MESSAGES/kio_bookmarks.mo share/locale/gl/LC_MESSAGES/kio_finger.mo share/locale/gl/LC_MESSAGES/kio_fish.mo share/locale/gl/LC_MESSAGES/kio_floppy.mo @@ -378,11 +542,12 @@ share/locale/gl/LC_MESSAGES/kio_jabberdisco.mo share/locale/gl/LC_MESSAGES/kio_ldap.mo share/locale/gl/LC_MESSAGES/kio_man.mo share/locale/gl/LC_MESSAGES/kio_mbox.mo +share/locale/gl/LC_MESSAGES/kio_nepomuksearch.mo share/locale/gl/LC_MESSAGES/kio_nfs.mo share/locale/gl/LC_MESSAGES/kio_nntp.mo +share/locale/gl/LC_MESSAGES/kio_perldoc.mo share/locale/gl/LC_MESSAGES/kio_pop3.mo share/locale/gl/LC_MESSAGES/kio_remote.mo -share/locale/gl/LC_MESSAGES/kio_settings.mo share/locale/gl/LC_MESSAGES/kio_sftp.mo share/locale/gl/LC_MESSAGES/kio_sieve.mo share/locale/gl/LC_MESSAGES/kio_smb.mo @@ -442,10 +607,10 @@ share/locale/gl/LC_MESSAGES/kopete.mo share/locale/gl/LC_MESSAGES/korganizer.mo share/locale/gl/LC_MESSAGES/korn.mo share/locale/gl/LC_MESSAGES/kpackage.mo +share/locale/gl/LC_MESSAGES/kpartloader.mo share/locale/gl/LC_MESSAGES/kpartsaver.mo share/locale/gl/LC_MESSAGES/kpasswdserver.mo share/locale/gl/LC_MESSAGES/kpat.mo -share/locale/gl/LC_MESSAGES/kpercentage.mo share/locale/gl/LC_MESSAGES/kpilot.mo share/locale/gl/LC_MESSAGES/kppp.mo share/locale/gl/LC_MESSAGES/kppplogview.mo @@ -469,20 +634,12 @@ share/locale/gl/LC_MESSAGES/kreversi.mo share/locale/gl/LC_MESSAGES/krfb.mo share/locale/gl/LC_MESSAGES/kruler.mo share/locale/gl/LC_MESSAGES/krunner.mo -share/locale/gl/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/gl/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/gl/LC_MESSAGES/krunner_contacts.mo -share/locale/gl/LC_MESSAGES/krunner_converterrunner.mo -share/locale/gl/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/gl/LC_MESSAGES/krunner_sessions.mo -share/locale/gl/LC_MESSAGES/krunner_shellrunner.mo -share/locale/gl/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/gl/LC_MESSAGES/krunner_xesam.mo share/locale/gl/LC_MESSAGES/ksame.mo share/locale/gl/LC_MESSAGES/ksaneplugin.mo share/locale/gl/LC_MESSAGES/ksayit.mo share/locale/gl/LC_MESSAGES/kscd.mo share/locale/gl/LC_MESSAGES/kscreensaver.mo +share/locale/gl/LC_MESSAGES/ksendemail.mo share/locale/gl/LC_MESSAGES/kshisen.mo share/locale/gl/LC_MESSAGES/kshorturifilter.mo share/locale/gl/LC_MESSAGES/ksirk.mo @@ -499,6 +656,7 @@ share/locale/gl/LC_MESSAGES/kstyle_keramik_config.mo share/locale/gl/LC_MESSAGES/kstyle_phase_config.mo share/locale/gl/LC_MESSAGES/ksudoku.mo share/locale/gl/LC_MESSAGES/ksysguard.mo +share/locale/gl/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/gl/LC_MESSAGES/ksystemlog.mo share/locale/gl/LC_MESSAGES/ksystraycmd.mo share/locale/gl/LC_MESSAGES/ksysv.mo @@ -508,7 +666,6 @@ share/locale/gl/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/gl/LC_MESSAGES/kthememanager.mo share/locale/gl/LC_MESSAGES/ktimer.mo share/locale/gl/LC_MESSAGES/ktimetracker.mo -share/locale/gl/LC_MESSAGES/ktnef.mo share/locale/gl/LC_MESSAGES/ktouch.mo share/locale/gl/LC_MESSAGES/ktraderclient.mo share/locale/gl/LC_MESSAGES/kttsd.mo @@ -520,6 +677,7 @@ share/locale/gl/LC_MESSAGES/kuiserver.mo share/locale/gl/LC_MESSAGES/kuiviewer.mo share/locale/gl/LC_MESSAGES/kurifilter.mo share/locale/gl/LC_MESSAGES/kuser.mo +share/locale/gl/LC_MESSAGES/kwalletd.mo share/locale/gl/LC_MESSAGES/kwalletmanager.mo share/locale/gl/LC_MESSAGES/kwatchgnupg.mo share/locale/gl/LC_MESSAGES/kweather.mo @@ -566,11 +724,14 @@ share/locale/gl/LC_MESSAGES/libmailtransport.mo share/locale/gl/LC_MESSAGES/liboktetacore.mo share/locale/gl/LC_MESSAGES/libphonon.mo share/locale/gl/LC_MESSAGES/libplasma.mo +share/locale/gl/LC_MESSAGES/libplasmaclock.mo share/locale/gl/LC_MESSAGES/libtaskmanager.mo share/locale/gl/LC_MESSAGES/lokalize.mo share/locale/gl/LC_MESSAGES/lskat.mo share/locale/gl/LC_MESSAGES/marble.mo +share/locale/gl/LC_MESSAGES/marble_qt.mo share/locale/gl/LC_MESSAGES/nepomuk.mo +share/locale/gl/LC_MESSAGES/nepomuksearch.mo share/locale/gl/LC_MESSAGES/nsplugin.mo share/locale/gl/LC_MESSAGES/okteta.mo share/locale/gl/LC_MESSAGES/oktetapart.mo @@ -580,6 +741,7 @@ share/locale/gl/LC_MESSAGES/okular_comicbook.mo share/locale/gl/LC_MESSAGES/okular_djvu.mo share/locale/gl/LC_MESSAGES/okular_dvi.mo share/locale/gl/LC_MESSAGES/okular_epub.mo +share/locale/gl/LC_MESSAGES/okular_fax.mo share/locale/gl/LC_MESSAGES/okular_fictionbook.mo share/locale/gl/LC_MESSAGES/okular_ghostview.mo share/locale/gl/LC_MESSAGES/okular_kimgio.mo @@ -592,10 +754,15 @@ share/locale/gl/LC_MESSAGES/parley.mo share/locale/gl/LC_MESSAGES/phonon-xine.mo share/locale/gl/LC_MESSAGES/phonon_gstreamer.mo share/locale/gl/LC_MESSAGES/phonon_kde.mo +share/locale/gl/LC_MESSAGES/plasma-overlay.mo +share/locale/gl/LC_MESSAGES/plasma-shells-common.mo share/locale/gl/LC_MESSAGES/plasma.mo share/locale/gl/LC_MESSAGES/plasma_applet_battery.mo +share/locale/gl/LC_MESSAGES/plasma_applet_bball.mo share/locale/gl/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/gl/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/gl/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/gl/LC_MESSAGES/plasma_applet_charselect.mo share/locale/gl/LC_MESSAGES/plasma_applet_clock.mo share/locale/gl/LC_MESSAGES/plasma_applet_comic.mo share/locale/gl/LC_MESSAGES/plasma_applet_desktop.mo @@ -607,26 +774,61 @@ share/locale/gl/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/gl/LC_MESSAGES/plasma_applet_folderview.mo share/locale/gl/LC_MESSAGES/plasma_applet_frame.mo share/locale/gl/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/gl/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/gl/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/gl/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/gl/LC_MESSAGES/plasma_applet_katesession.mo share/locale/gl/LC_MESSAGES/plasma_applet_kget.mo -share/locale/gl/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/gl/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/gl/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/gl/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/gl/LC_MESSAGES/plasma_applet_life.mo share/locale/gl/LC_MESSAGES/plasma_applet_luna.mo +share/locale/gl/LC_MESSAGES/plasma_applet_news.mo share/locale/gl/LC_MESSAGES/plasma_applet_notes.mo share/locale/gl/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/gl/LC_MESSAGES/plasma_applet_pager.mo share/locale/gl/LC_MESSAGES/plasma_applet_panel.mo +share/locale/gl/LC_MESSAGES/plasma_applet_paste.mo +share/locale/gl/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/gl/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/gl/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/gl/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/gl/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/gl/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/gl/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/gl/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/gl/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/gl/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/gl/LC_MESSAGES/plasma_applet_timer.mo share/locale/gl/LC_MESSAGES/plasma_applet_trash.mo share/locale/gl/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/gl/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/gl/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/gl/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/gl/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/gl/LC_MESSAGES/plasma_engine_dict.mo +share/locale/gl/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/gl/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/gl/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/gl/LC_MESSAGES/plasma_engine_rss.mo +share/locale/gl/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/gl/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/gl/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/gl/LC_MESSAGES/plasma_runner_locations.mo +share/locale/gl/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/gl/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/gl/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/gl/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/gl/LC_MESSAGES/plasma_runner_shell.mo +share/locale/gl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/gl/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/gl/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/gl/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/gl/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/gl/LC_MESSAGES/plasmaengineexplorer.mo share/locale/gl/LC_MESSAGES/plasmapkg.mo share/locale/gl/LC_MESSAGES/plasmoidviewer.mo +share/locale/gl/LC_MESSAGES/powerdevil.mo share/locale/gl/LC_MESSAGES/printer-applet.mo share/locale/gl/LC_MESSAGES/processcore.mo share/locale/gl/LC_MESSAGES/processui.mo @@ -638,30 +840,74 @@ share/locale/gl/LC_MESSAGES/solidcontrol.mo share/locale/gl/LC_MESSAGES/soliduiserver.mo share/locale/gl/LC_MESSAGES/spy.mo share/locale/gl/LC_MESSAGES/step.mo +share/locale/gl/LC_MESSAGES/step_qt.mo share/locale/gl/LC_MESSAGES/strigila_diff.mo share/locale/gl/LC_MESSAGES/superkaramba.mo share/locale/gl/LC_MESSAGES/svgpart.mo share/locale/gl/LC_MESSAGES/sweeper.mo +share/locale/gl/LC_MESSAGES/system-config-printer-kde.mo share/locale/gl/LC_MESSAGES/systemsettings.mo share/locale/gl/LC_MESSAGES/timezones4.mo share/locale/gl/LC_MESSAGES/umbrello.mo share/locale/gl/LC_MESSAGES/useraccount.mo share/locale/gl/entry.desktop @dirrm share/doc/HTML/gl/umbrello +@dirrm share/doc/HTML/gl/step @dirrm share/doc/HTML/gl/sonnet +@dirrm share/doc/HTML/gl/plasma +@dirrm share/doc/HTML/gl/okular @dirrm share/doc/HTML/gl/lokalize +@dirrm share/doc/HTML/gl/kwordquiz +@dirrm share/doc/HTML/gl/kturtle +@dirrm share/doc/HTML/gl/ktouch +@dirrm share/doc/HTML/gl/kstars +@dirrm share/doc/HTML/gl/ksnapshot +@dirrm share/doc/HTML/gl/kruler +@dirrm share/doc/HTML/gl/kolourpaint +@dirrm share/doc/HTML/gl/kmail +@dirrm share/doc/HTML/gl/klettres +@dirrm share/doc/HTML/gl/kioslave/thumbnail +@dirrm share/doc/HTML/gl/kioslave/telnet +@dirrm share/doc/HTML/gl/kioslave/tar +@dirrm share/doc/HTML/gl/kioslave/smb +@dirrm share/doc/HTML/gl/kioslave/sftp +@dirrm share/doc/HTML/gl/kioslave/rlogin +@dirrm share/doc/HTML/gl/kioslave/nfs +@dirrm share/doc/HTML/gl/kioslave/man +@dirrm share/doc/HTML/gl/kioslave/mailto +@dirrm share/doc/HTML/gl/kioslave/info +@dirrm share/doc/HTML/gl/kioslave/ftp +@dirrm share/doc/HTML/gl/kioslave/floppy +@dirrm share/doc/HTML/gl/kioslave/fish +@dirrm share/doc/HTML/gl/kioslave/finger +@dirrm share/doc/HTML/gl/kioslave/file +@dirrm share/doc/HTML/gl/kioslave/data +@dirrm share/doc/HTML/gl/kioslave/cgi @dirrm share/doc/HTML/gl/kioslave @dirrm share/doc/HTML/gl/kinfocenter/usb @dirrm share/doc/HTML/gl/kinfocenter @dirrm share/doc/HTML/gl/khelpcenter/visualdict @dirrm share/doc/HTML/gl/khelpcenter +@dirrm share/doc/HTML/gl/kgeography +@dirrm share/doc/HTML/gl/kgamma +@dirrm share/doc/HTML/gl/kcontrol/keyboard +@dirrm share/doc/HTML/gl/kcontrol/kamera +@dirrm share/doc/HTML/gl/kcontrol @dirrm share/doc/HTML/gl/kcachegrind @dirrm share/doc/HTML/gl/kbruch @dirrm share/doc/HTML/gl/kanagram +@dirrm share/doc/HTML/gl/kalzium +@dirrm share/doc/HTML/gl/kaddressbook +@dirrm share/doc/HTML/gl/gwenview @dirrm share/doc/HTML/gl/blinken -@dirrm share/doc/HTML/gl +@dirrm share/doc/HTML/gl/akregator @dirrm share/apps/kvtml/gl @dirrm share/apps/kvtml @dirrm share/apps/ktuberling/sounds/gl @dirrm share/apps/ktuberling/sounds @dirrm share/apps/ktuberling +@dirrmtry man/gl/man8 +@dirrmtry man/gl/man7 +@dirrmtry man/gl/man6 +@dirrmtry man/gl/man1 +@dirrmtry man/gl diff --git a/misc/kde4-l10n-gu/Makefile b/misc/kde4-l10n-gu/Makefile new file mode 100644 index 000000000000..d8013d0fa96b --- /dev/null +++ b/misc/kde4-l10n-gu/Makefile @@ -0,0 +1,21 @@ +# New ports collection makefile for: misc/kde4-l10n-gu +# Date created: 2009-01-25 +# Whom: Max Brazhnikov <makc@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= kde-l10n +PORTVERSION= ${KDE4_VERSION} +CATEGORIES= misc kde + +MAINTAINER= kde@FreeBSD.org +COMMENT= Gujarati messages and documentation for KDE4 + +KDE4_L10N= gu + +post-extract: + ${MKDIR} ${WRKSRC}/build + +.include "${.CURDIR}/../../misc/kde4-l10n/files/bsd.l10n.mk" +.include <bsd.port.mk> diff --git a/misc/kde4-l10n-gu/distinfo b/misc/kde4-l10n-gu/distinfo new file mode 100644 index 000000000000..141d5af4a64c --- /dev/null +++ b/misc/kde4-l10n-gu/distinfo @@ -0,0 +1,3 @@ +MD5 (KDE/kde-l10n/kde-l10n-gu-4.2.0.tar.bz2) = a1f22ef4f836477077f05386871f8336 +SHA256 (KDE/kde-l10n/kde-l10n-gu-4.2.0.tar.bz2) = 4cd76fbb148e01fb6621b3e69f59357149415510852d85cfafa8bf7633ad66cf +SIZE (KDE/kde-l10n/kde-l10n-gu-4.2.0.tar.bz2) = 548587 diff --git a/misc/kde4-l10n-gu/pkg-descr b/misc/kde4-l10n-gu/pkg-descr new file mode 100644 index 000000000000..3073b1096b79 --- /dev/null +++ b/misc/kde4-l10n-gu/pkg-descr @@ -0,0 +1,3 @@ +Localized messages and documentation for KDE4. + +WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-gu/pkg-plist b/misc/kde4-l10n-gu/pkg-plist new file mode 100644 index 000000000000..4c0e0095f765 --- /dev/null +++ b/misc/kde4-l10n-gu/pkg-plist @@ -0,0 +1,211 @@ +share/locale/gu/LC_MESSAGES/audiorename_plugin.mo +share/locale/gu/LC_MESSAGES/display.mo +share/locale/gu/LC_MESSAGES/dolphin.mo +share/locale/gu/LC_MESSAGES/drkonqi.mo +share/locale/gu/LC_MESSAGES/filetypes.mo +share/locale/gu/LC_MESSAGES/htmlsearch.mo +share/locale/gu/LC_MESSAGES/imagerename_plugin.mo +share/locale/gu/LC_MESSAGES/joystick.mo +share/locale/gu/LC_MESSAGES/kaccess.mo +share/locale/gu/LC_MESSAGES/kalzium.mo +share/locale/gu/LC_MESSAGES/kalzium_qt.mo +share/locale/gu/LC_MESSAGES/kanagram.mo +share/locale/gu/LC_MESSAGES/kappfinder.mo +share/locale/gu/LC_MESSAGES/katepart4.mo +share/locale/gu/LC_MESSAGES/kblankscrn.mo +share/locale/gu/LC_MESSAGES/kcertpart.mo +share/locale/gu/LC_MESSAGES/kcm_autostart.mo +share/locale/gu/LC_MESSAGES/kcm_desktopthemedetails.mo +share/locale/gu/LC_MESSAGES/kcm_emoticons.mo +share/locale/gu/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/gu/LC_MESSAGES/kcm_memory.mo +share/locale/gu/LC_MESSAGES/kcm_partition.mo +share/locale/gu/LC_MESSAGES/kcm_pci.mo +share/locale/gu/LC_MESSAGES/kcm_phonon.mo +share/locale/gu/LC_MESSAGES/kcm_phononxine.mo +share/locale/gu/LC_MESSAGES/kcm_solid.mo +share/locale/gu/LC_MESSAGES/kcm_standard_actions.mo +share/locale/gu/LC_MESSAGES/kcmaccess.mo +share/locale/gu/LC_MESSAGES/kcmbackground.mo +share/locale/gu/LC_MESSAGES/kcmbell.mo +share/locale/gu/LC_MESSAGES/kcmcgi.mo +share/locale/gu/LC_MESSAGES/kcmcolors.mo +share/locale/gu/LC_MESSAGES/kcmcomponentchooser.mo +share/locale/gu/LC_MESSAGES/kcmcrypto.mo +share/locale/gu/LC_MESSAGES/kcmcss.mo +share/locale/gu/LC_MESSAGES/kcmenergy.mo +share/locale/gu/LC_MESSAGES/kcmfonts.mo +share/locale/gu/LC_MESSAGES/kcmhtmlsearch.mo +share/locale/gu/LC_MESSAGES/kcmicons.mo +share/locale/gu/LC_MESSAGES/kcminfo.mo +share/locale/gu/LC_MESSAGES/kcminit.mo +share/locale/gu/LC_MESSAGES/kcminput.mo +share/locale/gu/LC_MESSAGES/kcmioslaveinfo.mo +share/locale/gu/LC_MESSAGES/kcmkclock.mo +share/locale/gu/LC_MESSAGES/kcmkded.mo +share/locale/gu/LC_MESSAGES/kcmkdnssd.mo +share/locale/gu/LC_MESSAGES/kcmkeyboard.mo +share/locale/gu/LC_MESSAGES/kcmkeys.mo +share/locale/gu/LC_MESSAGES/kcmkio.mo +share/locale/gu/LC_MESSAGES/kcmkonq.mo +share/locale/gu/LC_MESSAGES/kcmkonqhtml.mo +share/locale/gu/LC_MESSAGES/kcmkurifilt.mo +share/locale/gu/LC_MESSAGES/kcmkwincompositing.mo +share/locale/gu/LC_MESSAGES/kcmkwindecoration.mo +share/locale/gu/LC_MESSAGES/kcmkwinrules.mo +share/locale/gu/LC_MESSAGES/kcmkwm.mo +share/locale/gu/LC_MESSAGES/kcmlaunch.mo +share/locale/gu/LC_MESSAGES/kcmlocale.mo +share/locale/gu/LC_MESSAGES/kcmnic.mo +share/locale/gu/LC_MESSAGES/kcmnotify.mo +share/locale/gu/LC_MESSAGES/kcmopengl.mo +share/locale/gu/LC_MESSAGES/kcmperformance.mo +share/locale/gu/LC_MESSAGES/kcmsamba.mo +share/locale/gu/LC_MESSAGES/kcmscreensaver.mo +share/locale/gu/LC_MESSAGES/kcmshell.mo +share/locale/gu/LC_MESSAGES/kcmsmartcard.mo +share/locale/gu/LC_MESSAGES/kcmsmserver.mo +share/locale/gu/LC_MESSAGES/kcmsolidproc.mo +share/locale/gu/LC_MESSAGES/kcmstyle.mo +share/locale/gu/LC_MESSAGES/kcmusb.mo +share/locale/gu/LC_MESSAGES/kcmview1394.mo +share/locale/gu/LC_MESSAGES/kcmxinerama.mo +share/locale/gu/LC_MESSAGES/kde-menu.mo +share/locale/gu/LC_MESSAGES/kdebugdialog.mo +share/locale/gu/LC_MESSAGES/kded_phononserver.mo +share/locale/gu/LC_MESSAGES/kdelibs4.mo +share/locale/gu/LC_MESSAGES/kdelibs_colors4.mo +share/locale/gu/LC_MESSAGES/kdepasswd.mo +share/locale/gu/LC_MESSAGES/kdesu.mo +share/locale/gu/LC_MESSAGES/kdesud.mo +share/locale/gu/LC_MESSAGES/kdialog.mo +share/locale/gu/LC_MESSAGES/kdmconfig.mo +share/locale/gu/LC_MESSAGES/kdmgreet.mo +share/locale/gu/LC_MESSAGES/keditbookmarks.mo +share/locale/gu/LC_MESSAGES/kfile.mo +share/locale/gu/LC_MESSAGES/kfileaudiopreview4.mo +share/locale/gu/LC_MESSAGES/kfindpart.mo +share/locale/gu/LC_MESSAGES/kfmclient.mo +share/locale/gu/LC_MESSAGES/kfontinst.mo +share/locale/gu/LC_MESSAGES/kgeography.mo +share/locale/gu/LC_MESSAGES/kgreet_classic.mo +share/locale/gu/LC_MESSAGES/kgreet_generic.mo +share/locale/gu/LC_MESSAGES/kgreet_winbind.mo +share/locale/gu/LC_MESSAGES/khangman.mo +share/locale/gu/LC_MESSAGES/khelpcenter.mo +share/locale/gu/LC_MESSAGES/khotkeys.mo +share/locale/gu/LC_MESSAGES/khotnewstuff.mo +share/locale/gu/LC_MESSAGES/khtmlkttsd.mo +share/locale/gu/LC_MESSAGES/kiconfinder.mo +share/locale/gu/LC_MESSAGES/kinfocenter.mo +share/locale/gu/LC_MESSAGES/kio4.mo +share/locale/gu/LC_MESSAGES/kio_applications.mo +share/locale/gu/LC_MESSAGES/kio_archive.mo +share/locale/gu/LC_MESSAGES/kio_bookmarks.mo +share/locale/gu/LC_MESSAGES/kio_finger.mo +share/locale/gu/LC_MESSAGES/kio_fish.mo +share/locale/gu/LC_MESSAGES/kio_floppy.mo +share/locale/gu/LC_MESSAGES/kio_help4.mo +share/locale/gu/LC_MESSAGES/kio_man.mo +share/locale/gu/LC_MESSAGES/kio_nepomuksearch.mo +share/locale/gu/LC_MESSAGES/kio_nfs.mo +share/locale/gu/LC_MESSAGES/kio_remote.mo +share/locale/gu/LC_MESSAGES/kio_sftp.mo +share/locale/gu/LC_MESSAGES/kio_smb.mo +share/locale/gu/LC_MESSAGES/kio_thumbnail.mo +share/locale/gu/LC_MESSAGES/kioclient.mo +share/locale/gu/LC_MESSAGES/kioexec.mo +share/locale/gu/LC_MESSAGES/klettres.mo +share/locale/gu/LC_MESSAGES/klipper.mo +share/locale/gu/LC_MESSAGES/kmenuedit.mo +share/locale/gu/LC_MESSAGES/kmimetypefinder.mo +share/locale/gu/LC_MESSAGES/knetattach.mo +share/locale/gu/LC_MESSAGES/knotify4.mo +share/locale/gu/LC_MESSAGES/konqueror.mo +share/locale/gu/LC_MESSAGES/konsole.mo +share/locale/gu/LC_MESSAGES/kpasswdserver.mo +share/locale/gu/LC_MESSAGES/kquitapp.mo +share/locale/gu/LC_MESSAGES/krandr.mo +share/locale/gu/LC_MESSAGES/krdb.mo +share/locale/gu/LC_MESSAGES/kreadconfig.mo +share/locale/gu/LC_MESSAGES/krunner.mo +share/locale/gu/LC_MESSAGES/kshorturifilter.mo +share/locale/gu/LC_MESSAGES/ksmserver.mo +share/locale/gu/LC_MESSAGES/kstart.mo +share/locale/gu/LC_MESSAGES/kstyle_config.mo +share/locale/gu/LC_MESSAGES/kstyle_keramik_config.mo +share/locale/gu/LC_MESSAGES/ksysguard.mo +share/locale/gu/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/gu/LC_MESSAGES/ktexteditor_plugins.mo +share/locale/gu/LC_MESSAGES/kthememanager.mo +share/locale/gu/LC_MESSAGES/ktouch.mo +share/locale/gu/LC_MESSAGES/ktraderclient.mo +share/locale/gu/LC_MESSAGES/kwalletd.mo +share/locale/gu/LC_MESSAGES/kwin.mo +share/locale/gu/LC_MESSAGES/kwin_clients.mo +share/locale/gu/LC_MESSAGES/kwin_effects.mo +share/locale/gu/LC_MESSAGES/kwin_lib.mo +share/locale/gu/LC_MESSAGES/kwinstartmenu.mo +share/locale/gu/LC_MESSAGES/kwrite.mo +share/locale/gu/LC_MESSAGES/kwriteconfig.mo +share/locale/gu/LC_MESSAGES/kxkb.mo +share/locale/gu/LC_MESSAGES/libkonq.mo +share/locale/gu/LC_MESSAGES/libkscreensaver.mo +share/locale/gu/LC_MESSAGES/libkworkspace.mo +share/locale/gu/LC_MESSAGES/libphonon.mo +share/locale/gu/LC_MESSAGES/libplasma.mo +share/locale/gu/LC_MESSAGES/libplasmaclock.mo +share/locale/gu/LC_MESSAGES/libtaskmanager.mo +share/locale/gu/LC_MESSAGES/marble.mo +share/locale/gu/LC_MESSAGES/marble_qt.mo +share/locale/gu/LC_MESSAGES/nepomuk.mo +share/locale/gu/LC_MESSAGES/nepomuksearch.mo +share/locale/gu/LC_MESSAGES/nsplugin.mo +share/locale/gu/LC_MESSAGES/phonon_kde.mo +share/locale/gu/LC_MESSAGES/plasma-overlay.mo +share/locale/gu/LC_MESSAGES/plasma.mo +share/locale/gu/LC_MESSAGES/plasma_applet_battery.mo +share/locale/gu/LC_MESSAGES/plasma_applet_clock.mo +share/locale/gu/LC_MESSAGES/plasma_applet_desktop.mo +share/locale/gu/LC_MESSAGES/plasma_applet_devicenotifier.mo +share/locale/gu/LC_MESSAGES/plasma_applet_dig_clock.mo +share/locale/gu/LC_MESSAGES/plasma_applet_folderview.mo +share/locale/gu/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/gu/LC_MESSAGES/plasma_applet_pager.mo +share/locale/gu/LC_MESSAGES/plasma_applet_panel.mo +share/locale/gu/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/gu/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/gu/LC_MESSAGES/plasma_applet_systemtray.mo +share/locale/gu/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/gu/LC_MESSAGES/plasma_applet_trash.mo +share/locale/gu/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/gu/LC_MESSAGES/plasma_appletscript_qedje.mo +share/locale/gu/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo +share/locale/gu/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/gu/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/gu/LC_MESSAGES/plasma_engine_rss.mo +share/locale/gu/LC_MESSAGES/plasma_runner_locations.mo +share/locale/gu/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/gu/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/gu/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/gu/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/gu/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/gu/LC_MESSAGES/plasma_wallpaper_image.mo +share/locale/gu/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/gu/LC_MESSAGES/plasmapkg.mo +share/locale/gu/LC_MESSAGES/plasmoidviewer.mo +share/locale/gu/LC_MESSAGES/powerdevil.mo +share/locale/gu/LC_MESSAGES/processcore.mo +share/locale/gu/LC_MESSAGES/processui.mo +share/locale/gu/LC_MESSAGES/solid-bluetooth.mo +share/locale/gu/LC_MESSAGES/solid-hardware.mo +share/locale/gu/LC_MESSAGES/solid-network.mo +share/locale/gu/LC_MESSAGES/solid-powermanagement.mo +share/locale/gu/LC_MESSAGES/solidcontrol.mo +share/locale/gu/LC_MESSAGES/soliduiserver.mo +share/locale/gu/LC_MESSAGES/step.mo +share/locale/gu/LC_MESSAGES/step_qt.mo +share/locale/gu/LC_MESSAGES/systemsettings.mo +share/locale/gu/LC_MESSAGES/timezones4.mo +share/locale/gu/LC_MESSAGES/useraccount.mo +share/locale/gu/entry.desktop diff --git a/misc/kde4-l10n-hi/distinfo b/misc/kde4-l10n-hi/distinfo index 139c6464481b..8ff9bbb19202 100644 --- a/misc/kde4-l10n-hi/distinfo +++ b/misc/kde4-l10n-hi/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-hi-4.1.4.tar.bz2) = be6dc85d35ccd4431f3ffadef802f1dc -SHA256 (KDE/kde-l10n/kde-l10n-hi-4.1.4.tar.bz2) = 449e3552d2ef8fcfe0763546855a188c4e027afa3b94f2ea713b84966b1912d4 -SIZE (KDE/kde-l10n/kde-l10n-hi-4.1.4.tar.bz2) = 1553009 +MD5 (KDE/kde-l10n/kde-l10n-hi-4.2.0.tar.bz2) = b828a209e2b370e4b3487be01dc0ea8e +SHA256 (KDE/kde-l10n/kde-l10n-hi-4.2.0.tar.bz2) = 50f595d0724c99483c2ad6aa14c4e73e371f1d2d8717331721d56b8692582b0f +SIZE (KDE/kde-l10n/kde-l10n-hi-4.2.0.tar.bz2) = 1629301 diff --git a/misc/kde4-l10n-hi/pkg-plist b/misc/kde4-l10n-hi/pkg-plist index ec58551f339c..e53ee08692e5 100644 --- a/misc/kde4-l10n-hi/pkg-plist +++ b/misc/kde4-l10n-hi/pkg-plist @@ -30,6 +30,7 @@ share/locale/hi/LC_MESSAGES/kaccess.mo share/locale/hi/LC_MESSAGES/kalarm.mo share/locale/hi/LC_MESSAGES/kalgebra.mo share/locale/hi/LC_MESSAGES/kalzium.mo +share/locale/hi/LC_MESSAGES/kalzium_qt.mo share/locale/hi/LC_MESSAGES/kanagram.mo share/locale/hi/LC_MESSAGES/kappfinder.mo share/locale/hi/LC_MESSAGES/kate.mo @@ -43,7 +44,6 @@ share/locale/hi/LC_MESSAGES/kateinsertcommand.mo share/locale/hi/LC_MESSAGES/katekjswrapper.mo share/locale/hi/LC_MESSAGES/katekonsoleplugin.mo share/locale/hi/LC_MESSAGES/katemailfilesplugin.mo -share/locale/hi/LC_MESSAGES/katemake.mo share/locale/hi/LC_MESSAGES/kateopenheader.mo share/locale/hi/LC_MESSAGES/katepart4.mo share/locale/hi/LC_MESSAGES/katepybrowse.mo @@ -60,7 +60,6 @@ share/locale/hi/LC_MESSAGES/kblackbox.mo share/locale/hi/LC_MESSAGES/kblankscrn.mo share/locale/hi/LC_MESSAGES/kbounce.mo share/locale/hi/LC_MESSAGES/kbruch.mo -share/locale/hi/LC_MESSAGES/kbstateapplet.mo share/locale/hi/LC_MESSAGES/kbugbuster.mo share/locale/hi/LC_MESSAGES/kcachegrind.mo share/locale/hi/LC_MESSAGES/kcalc.mo @@ -74,7 +73,6 @@ share/locale/hi/LC_MESSAGES/kcm_memory.mo share/locale/hi/LC_MESSAGES/kcm_partition.mo share/locale/hi/LC_MESSAGES/kcm_pci.mo share/locale/hi/LC_MESSAGES/kcm_phonon.mo -share/locale/hi/LC_MESSAGES/kcm_phononxine.mo share/locale/hi/LC_MESSAGES/kcm_solid.mo share/locale/hi/LC_MESSAGES/kcmaccess.mo share/locale/hi/LC_MESSAGES/kcmaudiocd.mo @@ -125,7 +123,6 @@ share/locale/hi/LC_MESSAGES/kcmsmartcard.mo share/locale/hi/LC_MESSAGES/kcmsmserver.mo share/locale/hi/LC_MESSAGES/kcmsolidproc.mo share/locale/hi/LC_MESSAGES/kcmstyle.mo -share/locale/hi/LC_MESSAGES/kcmtaskbar.mo share/locale/hi/LC_MESSAGES/kcmusb.mo share/locale/hi/LC_MESSAGES/kcmview1394.mo share/locale/hi/LC_MESSAGES/kcmxinerama.mo @@ -195,6 +192,7 @@ share/locale/hi/LC_MESSAGES/kimagemapeditor.mo share/locale/hi/LC_MESSAGES/kinetd.mo share/locale/hi/LC_MESSAGES/kinfocenter.mo share/locale/hi/LC_MESSAGES/kio4.mo +share/locale/hi/LC_MESSAGES/kio_applications.mo share/locale/hi/LC_MESSAGES/kio_archive.mo share/locale/hi/LC_MESSAGES/kio_audiocd.mo share/locale/hi/LC_MESSAGES/kio_finger.mo @@ -211,7 +209,6 @@ share/locale/hi/LC_MESSAGES/kio_nfs.mo share/locale/hi/LC_MESSAGES/kio_nntp.mo share/locale/hi/LC_MESSAGES/kio_pop3.mo share/locale/hi/LC_MESSAGES/kio_remote.mo -share/locale/hi/LC_MESSAGES/kio_settings.mo share/locale/hi/LC_MESSAGES/kio_sftp.mo share/locale/hi/LC_MESSAGES/kio_sieve.mo share/locale/hi/LC_MESSAGES/kio_smb.mo @@ -268,7 +265,6 @@ share/locale/hi/LC_MESSAGES/kpackage.mo share/locale/hi/LC_MESSAGES/kpartsaver.mo share/locale/hi/LC_MESSAGES/kpasswdserver.mo share/locale/hi/LC_MESSAGES/kpat.mo -share/locale/hi/LC_MESSAGES/kpercentage.mo share/locale/hi/LC_MESSAGES/kppp.mo share/locale/hi/LC_MESSAGES/kppplogview.mo share/locale/hi/LC_MESSAGES/kquitapp.mo @@ -290,13 +286,6 @@ share/locale/hi/LC_MESSAGES/kreversi.mo share/locale/hi/LC_MESSAGES/krfb.mo share/locale/hi/LC_MESSAGES/kruler.mo share/locale/hi/LC_MESSAGES/krunner.mo -share/locale/hi/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/hi/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/hi/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/hi/LC_MESSAGES/krunner_sessions.mo -share/locale/hi/LC_MESSAGES/krunner_shellrunner.mo -share/locale/hi/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/hi/LC_MESSAGES/krunner_xesam.mo share/locale/hi/LC_MESSAGES/ksame.mo share/locale/hi/LC_MESSAGES/ksayit.mo share/locale/hi/LC_MESSAGES/kscd.mo @@ -324,7 +313,6 @@ share/locale/hi/LC_MESSAGES/ktexteditor_plugins.mo share/locale/hi/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/hi/LC_MESSAGES/kthememanager.mo share/locale/hi/LC_MESSAGES/ktimer.mo -share/locale/hi/LC_MESSAGES/ktnef.mo share/locale/hi/LC_MESSAGES/ktouch.mo share/locale/hi/LC_MESSAGES/ktraderclient.mo share/locale/hi/LC_MESSAGES/kttsd.mo @@ -380,6 +368,7 @@ share/locale/hi/LC_MESSAGES/libplasma.mo share/locale/hi/LC_MESSAGES/libtaskmanager.mo share/locale/hi/LC_MESSAGES/lskat.mo share/locale/hi/LC_MESSAGES/marble.mo +share/locale/hi/LC_MESSAGES/marble_qt.mo share/locale/hi/LC_MESSAGES/nepomuk.mo share/locale/hi/LC_MESSAGES/nsplugin.mo share/locale/hi/LC_MESSAGES/oktetapart.mo @@ -398,6 +387,8 @@ share/locale/hi/LC_MESSAGES/okular_xps.mo share/locale/hi/LC_MESSAGES/parley.mo share/locale/hi/LC_MESSAGES/phonon-xine.mo share/locale/hi/LC_MESSAGES/phonon_kde.mo +share/locale/hi/LC_MESSAGES/plasma-overlay.mo +share/locale/hi/LC_MESSAGES/plasma-shells-common.mo share/locale/hi/LC_MESSAGES/plasma.mo share/locale/hi/LC_MESSAGES/plasma_applet_battery.mo share/locale/hi/LC_MESSAGES/plasma_applet_clock.mo @@ -407,20 +398,34 @@ share/locale/hi/LC_MESSAGES/plasma_applet_dig_clock.mo share/locale/hi/LC_MESSAGES/plasma_applet_folderview.mo share/locale/hi/LC_MESSAGES/plasma_applet_frame.mo share/locale/hi/LC_MESSAGES/plasma_applet_kget.mo -share/locale/hi/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/hi/LC_MESSAGES/plasma_applet_launcher.mo share/locale/hi/LC_MESSAGES/plasma_applet_luna.mo share/locale/hi/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/hi/LC_MESSAGES/plasma_applet_pager.mo share/locale/hi/LC_MESSAGES/plasma_applet_panel.mo +share/locale/hi/LC_MESSAGES/plasma_applet_quicklaunch.mo share/locale/hi/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/hi/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/hi/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/hi/LC_MESSAGES/plasma_applet_tasks.mo share/locale/hi/LC_MESSAGES/plasma_applet_trash.mo +share/locale/hi/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/hi/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/hi/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/hi/LC_MESSAGES/plasma_engine_dict.mo +share/locale/hi/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/hi/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/hi/LC_MESSAGES/plasma_engine_rss.mo +share/locale/hi/LC_MESSAGES/plasma_runner_locations.mo +share/locale/hi/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/hi/LC_MESSAGES/plasma_runner_shell.mo +share/locale/hi/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/hi/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/hi/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/hi/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/hi/LC_MESSAGES/plasmaengineexplorer.mo share/locale/hi/LC_MESSAGES/plasmapkg.mo share/locale/hi/LC_MESSAGES/plasmoidviewer.mo +share/locale/hi/LC_MESSAGES/powerdevil.mo share/locale/hi/LC_MESSAGES/processcore.mo share/locale/hi/LC_MESSAGES/processui.mo share/locale/hi/LC_MESSAGES/solid-bluetooth.mo diff --git a/misc/kde4-l10n-is/Makefile b/misc/kde4-l10n-is/Makefile index b9ca8ecb6eb3..596230902c3a 100644 --- a/misc/kde4-l10n-is/Makefile +++ b/misc/kde4-l10n-is/Makefile @@ -1,29 +1,21 @@ -# New ports collection makefile for: kde3-i18n-is -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> +# New ports collection makefile for: misc/kde4-l10n-is +# Date created: 2009-01-25 +# Whom: Max Brazhnikov <makc@FreeBSD.org> # # $FreeBSD$ # -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= is- -DIST_SUBDIR= KDE +PORTNAME= kde-l10n +PORTVERSION= ${KDE4_VERSION} +CATEGORIES= misc kde MAINTAINER= kde@FreeBSD.org -COMMENT= Icelandic messages and documentation for KDE3 +COMMENT= Icelandic messages and documentation for KDE4 -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext +KDE4_L10N= is -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" +post-extract: + ${MKDIR} ${WRKSRC}/build +.include "${.CURDIR}/../../misc/kde4-l10n/files/bsd.l10n.mk" .include <bsd.port.mk> diff --git a/misc/kde4-l10n-is/distinfo b/misc/kde4-l10n-is/distinfo index 417a43d6fc61..ae3dc2c8b75b 100644 --- a/misc/kde4-l10n-is/distinfo +++ b/misc/kde4-l10n-is/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-i18n/kde-i18n-is-3.5.10.tar.bz2) = 92cf1c508c3c719d6899e1f56d91cd31 -SHA256 (KDE/kde-i18n/kde-i18n-is-3.5.10.tar.bz2) = 5883322d1d44af4fd19667205bd595a3f62f2be553da2398a4787ea95128d59e -SIZE (KDE/kde-i18n/kde-i18n-is-3.5.10.tar.bz2) = 2130389 +MD5 (KDE/kde-l10n/kde-l10n-is-4.2.0.tar.bz2) = f3a6b7dcd549e7c7a6b83f12f57fb70f +SHA256 (KDE/kde-l10n/kde-l10n-is-4.2.0.tar.bz2) = 67bbd5017af7f93c11835850b06872d3b7c45ea6d24d78483c57c1abd0b1ebda +SIZE (KDE/kde-l10n/kde-l10n-is-4.2.0.tar.bz2) = 1630347 diff --git a/misc/kde4-l10n-is/pkg-descr b/misc/kde4-l10n-is/pkg-descr index 3354ca873ecc..3073b1096b79 100644 --- a/misc/kde4-l10n-is/pkg-descr +++ b/misc/kde4-l10n-is/pkg-descr @@ -1,3 +1,3 @@ -Localized messages and documentation for KDE3. +Localized messages and documentation for KDE4. WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-is/pkg-plist b/misc/kde4-l10n-is/pkg-plist index 22376c703684..ed3477d3e611 100644 --- a/misc/kde4-l10n-is/pkg-plist +++ b/misc/kde4-l10n-is/pkg-plist @@ -1,105 +1,69 @@ share/locale/is/LC_MESSAGES/akregator.mo -share/locale/is/LC_MESSAGES/akregator_konqplugin.mo -share/locale/is/LC_MESSAGES/alsaplayerui.mo share/locale/is/LC_MESSAGES/amor.mo -share/locale/is/LC_MESSAGES/appletproxy.mo share/locale/is/LC_MESSAGES/ark.mo -share/locale/is/LC_MESSAGES/ark_plugin.mo -share/locale/is/LC_MESSAGES/artsbuilder.mo -share/locale/is/LC_MESSAGES/artscontrol.mo -share/locale/is/LC_MESSAGES/artsmodules.mo -share/locale/is/LC_MESSAGES/atlantik.mo -share/locale/is/LC_MESSAGES/atlantikdesigner.mo share/locale/is/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/is/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/is/LC_MESSAGES/audiorename_plugin.mo -share/locale/is/LC_MESSAGES/autorefresh.mo -share/locale/is/LC_MESSAGES/babelfish.mo share/locale/is/LC_MESSAGES/blinken.mo -share/locale/is/LC_MESSAGES/cervisia.mo -share/locale/is/LC_MESSAGES/charlatanui.mo -share/locale/is/LC_MESSAGES/clockapplet.mo -share/locale/is/LC_MESSAGES/crashesplugin.mo -share/locale/is/LC_MESSAGES/cupsdconf.mo share/locale/is/LC_MESSAGES/cvsservice.mo -share/locale/is/LC_MESSAGES/dcoprss.mo -share/locale/is/LC_MESSAGES/dirfilterplugin.mo share/locale/is/LC_MESSAGES/display.mo -share/locale/is/LC_MESSAGES/dockbarextension.mo -share/locale/is/LC_MESSAGES/domtreeviewer.mo +share/locale/is/LC_MESSAGES/dolphin.mo +share/locale/is/LC_MESSAGES/dragonplayer.mo share/locale/is/LC_MESSAGES/drkonqi.mo -share/locale/is/LC_MESSAGES/dub.mo -share/locale/is/LC_MESSAGES/extensionproxy.mo -share/locale/is/LC_MESSAGES/ffrs.mo share/locale/is/LC_MESSAGES/filetypes.mo -share/locale/is/LC_MESSAGES/fsview.mo +share/locale/is/LC_MESSAGES/gwenview.mo share/locale/is/LC_MESSAGES/htmlsearch.mo share/locale/is/LC_MESSAGES/imagerename_plugin.mo -share/locale/is/LC_MESSAGES/imgalleryplugin.mo -share/locale/is/LC_MESSAGES/irkick.mo share/locale/is/LC_MESSAGES/joystick.mo share/locale/is/LC_MESSAGES/juk.mo -share/locale/is/LC_MESSAGES/kabc2mutt.mo share/locale/is/LC_MESSAGES/kabc_dir.mo share/locale/is/LC_MESSAGES/kabc_file.mo share/locale/is/LC_MESSAGES/kabc_ldapkio.mo share/locale/is/LC_MESSAGES/kabc_net.mo share/locale/is/LC_MESSAGES/kabc_slox.mo -share/locale/is/LC_MESSAGES/kabc_sql.mo share/locale/is/LC_MESSAGES/kabcformat_binary.mo -share/locale/is/LC_MESSAGES/kaboodle.mo share/locale/is/LC_MESSAGES/kaccess.mo share/locale/is/LC_MESSAGES/kaddressbook.mo share/locale/is/LC_MESSAGES/kalarm.mo share/locale/is/LC_MESSAGES/kalzium.mo -share/locale/is/LC_MESSAGES/kandy.mo +share/locale/is/LC_MESSAGES/kalzium_qt.mo share/locale/is/LC_MESSAGES/kappfinder.mo -share/locale/is/LC_MESSAGES/karm.mo -share/locale/is/LC_MESSAGES/kasbarextension.mo -share/locale/is/LC_MESSAGES/kasteroids.mo share/locale/is/LC_MESSAGES/kate.mo -share/locale/is/LC_MESSAGES/katecppsymbolviewer.mo +share/locale/is/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/is/LC_MESSAGES/katefiletemplates.mo -share/locale/is/LC_MESSAGES/katefll_initplugin.mo -share/locale/is/LC_MESSAGES/katefll_plugin.mo share/locale/is/LC_MESSAGES/katehelloworld.mo share/locale/is/LC_MESSAGES/katehtmltools.mo -share/locale/is/LC_MESSAGES/kateinsertcommand.mo share/locale/is/LC_MESSAGES/katekjswrapper.mo -share/locale/is/LC_MESSAGES/katemake.mo -share/locale/is/LC_MESSAGES/katemodeline.mo share/locale/is/LC_MESSAGES/kateopenheader.mo -share/locale/is/LC_MESSAGES/katepart.mo +share/locale/is/LC_MESSAGES/katepart4.mo share/locale/is/LC_MESSAGES/katepybrowse.mo share/locale/is/LC_MESSAGES/katesnippets.mo +share/locale/is/LC_MESSAGES/katesymbolviewer.mo share/locale/is/LC_MESSAGES/katetabbarextension.mo share/locale/is/LC_MESSAGES/katetextfilter.mo share/locale/is/LC_MESSAGES/katexmlcheck.mo share/locale/is/LC_MESSAGES/katexmltools.mo share/locale/is/LC_MESSAGES/katomic.mo -share/locale/is/LC_MESSAGES/kaudiocreator.mo -share/locale/is/LC_MESSAGES/kay.mo -share/locale/is/LC_MESSAGES/kbabel.mo -share/locale/is/LC_MESSAGES/kbackgammon.mo share/locale/is/LC_MESSAGES/kbattleship.mo -share/locale/is/LC_MESSAGES/kbinaryclock.mo share/locale/is/LC_MESSAGES/kblackbox.mo +share/locale/is/LC_MESSAGES/kblankscrn.mo share/locale/is/LC_MESSAGES/kbounce.mo share/locale/is/LC_MESSAGES/kbruch.mo -share/locale/is/LC_MESSAGES/kbstateapplet.mo -share/locale/is/LC_MESSAGES/kbugbuster.mo -share/locale/is/LC_MESSAGES/kcachegrind.mo share/locale/is/LC_MESSAGES/kcalc.mo +share/locale/is/LC_MESSAGES/kcertpart.mo share/locale/is/LC_MESSAGES/kcharselect.mo -share/locale/is/LC_MESSAGES/kcharselectapplet.mo +share/locale/is/LC_MESSAGES/kcm_autostart.mo +share/locale/is/LC_MESSAGES/kcm_desktopthemedetails.mo +share/locale/is/LC_MESSAGES/kcm_emoticons.mo share/locale/is/LC_MESSAGES/kcm_krfb.mo -share/locale/is/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/is/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/is/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/is/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo +share/locale/is/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/is/LC_MESSAGES/kcm_memory.mo +share/locale/is/LC_MESSAGES/kcm_partition.mo +share/locale/is/LC_MESSAGES/kcm_pci.mo +share/locale/is/LC_MESSAGES/kcm_phonon.mo +share/locale/is/LC_MESSAGES/kcm_phononxine.mo +share/locale/is/LC_MESSAGES/kcm_solid.mo share/locale/is/LC_MESSAGES/kcmaccess.mo -share/locale/is/LC_MESSAGES/kcmaccessibility.mo -share/locale/is/LC_MESSAGES/kcmarts.mo share/locale/is/LC_MESSAGES/kcmaudiocd.mo share/locale/is/LC_MESSAGES/kcmbackground.mo share/locale/is/LC_MESSAGES/kcmbell.mo @@ -114,6 +78,7 @@ share/locale/is/LC_MESSAGES/kcmfonts.mo share/locale/is/LC_MESSAGES/kcmhtmlsearch.mo share/locale/is/LC_MESSAGES/kcmicons.mo share/locale/is/LC_MESSAGES/kcminfo.mo +share/locale/is/LC_MESSAGES/kcminit.mo share/locale/is/LC_MESSAGES/kcminput.mo share/locale/is/LC_MESSAGES/kcmioslaveinfo.mo share/locale/is/LC_MESSAGES/kcmkabconfig.mo @@ -121,206 +86,136 @@ share/locale/is/LC_MESSAGES/kcmkamera.mo share/locale/is/LC_MESSAGES/kcmkclock.mo share/locale/is/LC_MESSAGES/kcmkded.mo share/locale/is/LC_MESSAGES/kcmkdnssd.mo +share/locale/is/LC_MESSAGES/kcmkeyboard.mo share/locale/is/LC_MESSAGES/kcmkeys.mo -share/locale/is/LC_MESSAGES/kcmkicker.mo +share/locale/is/LC_MESSAGES/kcmkgamma.mo share/locale/is/LC_MESSAGES/kcmkio.mo share/locale/is/LC_MESSAGES/kcmkonq.mo share/locale/is/LC_MESSAGES/kcmkonqhtml.mo -share/locale/is/LC_MESSAGES/kcmkonsole.mo -share/locale/is/LC_MESSAGES/kcmkontactnt.mo -share/locale/is/LC_MESSAGES/kcmktalkd.mo -share/locale/is/LC_MESSAGES/kcmkuick.mo share/locale/is/LC_MESSAGES/kcmkurifilt.mo -share/locale/is/LC_MESSAGES/kcmkvaio.mo share/locale/is/LC_MESSAGES/kcmkwallet.mo +share/locale/is/LC_MESSAGES/kcmkwincompositing.mo share/locale/is/LC_MESSAGES/kcmkwindecoration.mo share/locale/is/LC_MESSAGES/kcmkwinrules.mo share/locale/is/LC_MESSAGES/kcmkwm.mo -share/locale/is/LC_MESSAGES/kcmlanbrowser.mo -share/locale/is/LC_MESSAGES/kcmlaptop.mo share/locale/is/LC_MESSAGES/kcmlaunch.mo -share/locale/is/LC_MESSAGES/kcmlayout.mo share/locale/is/LC_MESSAGES/kcmlilo.mo -share/locale/is/LC_MESSAGES/kcmlirc.mo share/locale/is/LC_MESSAGES/kcmlocale.mo -share/locale/is/LC_MESSAGES/kcmmedia.mo share/locale/is/LC_MESSAGES/kcmnic.mo share/locale/is/LC_MESSAGES/kcmnotify.mo +share/locale/is/LC_MESSAGES/kcmopengl.mo share/locale/is/LC_MESSAGES/kcmperformance.mo -share/locale/is/LC_MESSAGES/kcmprintmgr.mo share/locale/is/LC_MESSAGES/kcmsamba.mo share/locale/is/LC_MESSAGES/kcmscreensaver.mo share/locale/is/LC_MESSAGES/kcmshell.mo share/locale/is/LC_MESSAGES/kcmsmartcard.mo share/locale/is/LC_MESSAGES/kcmsmserver.mo -share/locale/is/LC_MESSAGES/kcmspellchecking.mo +share/locale/is/LC_MESSAGES/kcmsolidproc.mo share/locale/is/LC_MESSAGES/kcmstyle.mo -share/locale/is/LC_MESSAGES/kcmtaskbar.mo -share/locale/is/LC_MESSAGES/kcmthinkpad.mo share/locale/is/LC_MESSAGES/kcmusb.mo share/locale/is/LC_MESSAGES/kcmview1394.mo -share/locale/is/LC_MESSAGES/kcmwifi.mo share/locale/is/LC_MESSAGES/kcmxinerama.mo -share/locale/is/LC_MESSAGES/kcoloredit.mo -share/locale/is/LC_MESSAGES/kcontrol.mo +share/locale/is/LC_MESSAGES/kcolorchooser.mo share/locale/is/LC_MESSAGES/kcron.mo share/locale/is/LC_MESSAGES/kdat.mo -share/locale/is/LC_MESSAGES/kdcop.mo +share/locale/is/LC_MESSAGES/kde-menu.mo +share/locale/is/LC_MESSAGES/kdeasciiquarium.mo share/locale/is/LC_MESSAGES/kdebugdialog.mo -share/locale/is/LC_MESSAGES/kdelibs.mo -share/locale/is/LC_MESSAGES/kdelibs_colors.mo -share/locale/is/LC_MESSAGES/kdelirc.mo +share/locale/is/LC_MESSAGES/kded_phononserver.mo +share/locale/is/LC_MESSAGES/kdelibs4.mo +share/locale/is/LC_MESSAGES/kdelibs_colors4.mo share/locale/is/LC_MESSAGES/kdepasswd.mo share/locale/is/LC_MESSAGES/kdepimresources.mo share/locale/is/LC_MESSAGES/kdepimwizards.mo -share/locale/is/LC_MESSAGES/kdeprint.mo -share/locale/is/LC_MESSAGES/kdeprint_part.mo -share/locale/is/LC_MESSAGES/kdeprintfax.mo -share/locale/is/LC_MESSAGES/kdesktop.mo +share/locale/is/LC_MESSAGES/kdeqt.mo share/locale/is/LC_MESSAGES/kdessh.mo share/locale/is/LC_MESSAGES/kdesu.mo share/locale/is/LC_MESSAGES/kdesud.mo -share/locale/is/LC_MESSAGES/kdevdesigner.mo -share/locale/is/LC_MESSAGES/kdevelop.mo -share/locale/is/LC_MESSAGES/kdevtipofday.mo share/locale/is/LC_MESSAGES/kdf.mo -share/locale/is/LC_MESSAGES/kdgantt.mo +share/locale/is/LC_MESSAGES/kdgantt1.mo share/locale/is/LC_MESSAGES/kdialog.mo -share/locale/is/LC_MESSAGES/kdict.mo -share/locale/is/LC_MESSAGES/kdictapplet.mo -share/locale/is/LC_MESSAGES/kdjview.mo share/locale/is/LC_MESSAGES/kdmconfig.mo share/locale/is/LC_MESSAGES/kdmgreet.mo -share/locale/is/LC_MESSAGES/kdvi.mo -share/locale/is/LC_MESSAGES/kedit.mo -share/locale/is/LC_MESSAGES/keduca.mo -share/locale/is/LC_MESSAGES/kenolaba.mo -share/locale/is/LC_MESSAGES/kfax.mo -share/locale/is/LC_MESSAGES/kfaxview.mo -share/locale/is/LC_MESSAGES/kfifteenapplet.mo -share/locale/is/LC_MESSAGES/kfile_au.mo +share/locale/is/LC_MESSAGES/keditbookmarks.mo +share/locale/is/LC_MESSAGES/kfile.mo share/locale/is/LC_MESSAGES/kfile_avi.mo -share/locale/is/LC_MESSAGES/kfile_bmp.mo -share/locale/is/LC_MESSAGES/kfile_cert.mo -share/locale/is/LC_MESSAGES/kfile_cpp.mo share/locale/is/LC_MESSAGES/kfile_dds.mo -share/locale/is/LC_MESSAGES/kfile_deb.mo -share/locale/is/LC_MESSAGES/kfile_desktop.mo -share/locale/is/LC_MESSAGES/kfile_diff.mo share/locale/is/LC_MESSAGES/kfile_drgeo.mo share/locale/is/LC_MESSAGES/kfile_dvi.mo share/locale/is/LC_MESSAGES/kfile_exr.mo share/locale/is/LC_MESSAGES/kfile_flac.mo -share/locale/is/LC_MESSAGES/kfile_folder.mo -share/locale/is/LC_MESSAGES/kfile_gif.mo -share/locale/is/LC_MESSAGES/kfile_html.mo -share/locale/is/LC_MESSAGES/kfile_ico.mo -share/locale/is/LC_MESSAGES/kfile_ics.mo -share/locale/is/LC_MESSAGES/kfile_jpeg.mo share/locale/is/LC_MESSAGES/kfile_kig.mo -share/locale/is/LC_MESSAGES/kfile_lnk.mo -share/locale/is/LC_MESSAGES/kfile_m3u.mo -share/locale/is/LC_MESSAGES/kfile_mhtml.mo share/locale/is/LC_MESSAGES/kfile_mp3.mo share/locale/is/LC_MESSAGES/kfile_mpc.mo -share/locale/is/LC_MESSAGES/kfile_mpeg.mo share/locale/is/LC_MESSAGES/kfile_ogg.mo -share/locale/is/LC_MESSAGES/kfile_palm.mo -share/locale/is/LC_MESSAGES/kfile_pcx.mo -share/locale/is/LC_MESSAGES/kfile_pdf.mo -share/locale/is/LC_MESSAGES/kfile_png.mo share/locale/is/LC_MESSAGES/kfile_pnm.mo -share/locale/is/LC_MESSAGES/kfile_po.mo -share/locale/is/LC_MESSAGES/kfile_ps.mo -share/locale/is/LC_MESSAGES/kfile_rfc822.mo +share/locale/is/LC_MESSAGES/kfile_raw.mo share/locale/is/LC_MESSAGES/kfile_rgb.mo share/locale/is/LC_MESSAGES/kfile_rpm.mo share/locale/is/LC_MESSAGES/kfile_sid.mo -share/locale/is/LC_MESSAGES/kfile_tga.mo share/locale/is/LC_MESSAGES/kfile_theora.mo share/locale/is/LC_MESSAGES/kfile_tiff.mo share/locale/is/LC_MESSAGES/kfile_torrent.mo -share/locale/is/LC_MESSAGES/kfile_ts.mo -share/locale/is/LC_MESSAGES/kfile_txt.mo -share/locale/is/LC_MESSAGES/kfile_vcf.mo share/locale/is/LC_MESSAGES/kfile_wav.mo -share/locale/is/LC_MESSAGES/kfile_xbm.mo -share/locale/is/LC_MESSAGES/kfile_xpm.mo -share/locale/is/LC_MESSAGES/kfileaudiopreview.mo -share/locale/is/LC_MESSAGES/kfilereplace.mo +share/locale/is/LC_MESSAGES/kfile_xps.mo +share/locale/is/LC_MESSAGES/kfileaudiopreview4.mo share/locale/is/LC_MESSAGES/kfileshare.mo share/locale/is/LC_MESSAGES/kfindpart.mo share/locale/is/LC_MESSAGES/kfloppy.mo share/locale/is/LC_MESSAGES/kfmclient.mo share/locale/is/LC_MESSAGES/kfontinst.mo -share/locale/is/LC_MESSAGES/kfouleggs.mo -share/locale/is/LC_MESSAGES/kgamma.mo -share/locale/is/LC_MESSAGES/kgantt.mo +share/locale/is/LC_MESSAGES/kfourinline.mo share/locale/is/LC_MESSAGES/kgeography.mo share/locale/is/LC_MESSAGES/kget.mo -share/locale/is/LC_MESSAGES/kghostview.mo share/locale/is/LC_MESSAGES/kgoldrunner.mo share/locale/is/LC_MESSAGES/kgpg.mo share/locale/is/LC_MESSAGES/kgreet_classic.mo +share/locale/is/LC_MESSAGES/kgreet_generic.mo share/locale/is/LC_MESSAGES/kgreet_winbind.mo share/locale/is/LC_MESSAGES/khangman.mo share/locale/is/LC_MESSAGES/khelpcenter.mo -share/locale/is/LC_MESSAGES/khexedit.mo -share/locale/is/LC_MESSAGES/khexedit2part.mo share/locale/is/LC_MESSAGES/khotkeys.mo +share/locale/is/LC_MESSAGES/khotnewstuff.mo share/locale/is/LC_MESSAGES/khtmlkttsd.mo -share/locale/is/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/is/LC_MESSAGES/kicker.mo -share/locale/is/LC_MESSAGES/kickermenu_kate.mo -share/locale/is/LC_MESSAGES/kiconedit.mo +share/locale/is/LC_MESSAGES/kiconfinder.mo share/locale/is/LC_MESSAGES/kig.mo -share/locale/is/LC_MESSAGES/kimagemapeditor.mo share/locale/is/LC_MESSAGES/kinetd.mo -share/locale/is/LC_MESSAGES/kio.mo +share/locale/is/LC_MESSAGES/kinfocenter.mo +share/locale/is/LC_MESSAGES/kio4.mo +share/locale/is/LC_MESSAGES/kio_applications.mo +share/locale/is/LC_MESSAGES/kio_archive.mo share/locale/is/LC_MESSAGES/kio_audiocd.mo +share/locale/is/LC_MESSAGES/kio_bookmarks.mo share/locale/is/LC_MESSAGES/kio_finger.mo share/locale/is/LC_MESSAGES/kio_fish.mo share/locale/is/LC_MESSAGES/kio_floppy.mo share/locale/is/LC_MESSAGES/kio_groupwise.mo -share/locale/is/LC_MESSAGES/kio_help.mo -share/locale/is/LC_MESSAGES/kio_home.mo +share/locale/is/LC_MESSAGES/kio_help4.mo share/locale/is/LC_MESSAGES/kio_imap4.mo share/locale/is/LC_MESSAGES/kio_jabberdisco.mo -share/locale/is/LC_MESSAGES/kio_lan.mo share/locale/is/LC_MESSAGES/kio_ldap.mo -share/locale/is/LC_MESSAGES/kio_mac.mo share/locale/is/LC_MESSAGES/kio_man.mo -share/locale/is/LC_MESSAGES/kio_media.mo -share/locale/is/LC_MESSAGES/kio_mobile.mo +share/locale/is/LC_MESSAGES/kio_nepomuksearch.mo share/locale/is/LC_MESSAGES/kio_nfs.mo share/locale/is/LC_MESSAGES/kio_nntp.mo share/locale/is/LC_MESSAGES/kio_pop3.mo -share/locale/is/LC_MESSAGES/kio_print.mo share/locale/is/LC_MESSAGES/kio_remote.mo -share/locale/is/LC_MESSAGES/kio_scalix.mo -share/locale/is/LC_MESSAGES/kio_settings.mo share/locale/is/LC_MESSAGES/kio_sftp.mo share/locale/is/LC_MESSAGES/kio_sieve.mo share/locale/is/LC_MESSAGES/kio_smb.mo share/locale/is/LC_MESSAGES/kio_smtp.mo share/locale/is/LC_MESSAGES/kio_svn.mo -share/locale/is/LC_MESSAGES/kio_system.mo -share/locale/is/LC_MESSAGES/kio_tar.mo share/locale/is/LC_MESSAGES/kio_thumbnail.mo share/locale/is/LC_MESSAGES/kio_trash.mo share/locale/is/LC_MESSAGES/kio_zeroconf.mo +share/locale/is/LC_MESSAGES/kioclient.mo share/locale/is/LC_MESSAGES/kioexec.mo share/locale/is/LC_MESSAGES/kiten.mo -share/locale/is/LC_MESSAGES/kjobviewer.mo share/locale/is/LC_MESSAGES/kjots.mo share/locale/is/LC_MESSAGES/kjumpingcube.mo -share/locale/is/LC_MESSAGES/klaptopdaemon.mo -share/locale/is/LC_MESSAGES/klatin.mo share/locale/is/LC_MESSAGES/kleopatra.mo share/locale/is/LC_MESSAGES/klettres.mo -share/locale/is/LC_MESSAGES/klickety.mo share/locale/is/LC_MESSAGES/klines.mo -share/locale/is/LC_MESSAGES/klinkstatus.mo share/locale/is/LC_MESSAGES/klipper.mo share/locale/is/LC_MESSAGES/klock.mo share/locale/is/LC_MESSAGES/kmag.mo @@ -329,82 +224,44 @@ share/locale/is/LC_MESSAGES/kmail.mo share/locale/is/LC_MESSAGES/kmail_text_calendar_plugin.mo share/locale/is/LC_MESSAGES/kmail_text_vcard_plugin.mo share/locale/is/LC_MESSAGES/kmailcvt.mo -share/locale/is/LC_MESSAGES/kmathapplet.mo -share/locale/is/LC_MESSAGES/kmcop.mo -share/locale/is/LC_MESSAGES/kmenuapplet.mo share/locale/is/LC_MESSAGES/kmenuedit.mo -share/locale/is/LC_MESSAGES/kmid.mo -share/locale/is/LC_MESSAGES/kmilo_delli8k.mo -share/locale/is/LC_MESSAGES/kmilo_generic.mo -share/locale/is/LC_MESSAGES/kmilo_kvaio.mo -share/locale/is/LC_MESSAGES/kmilo_powerbook.mo -share/locale/is/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/is/LC_MESSAGES/kmilod.mo +share/locale/is/LC_MESSAGES/kmimetypefinder.mo share/locale/is/LC_MESSAGES/kmines.mo -share/locale/is/LC_MESSAGES/kminipagerapplet.mo share/locale/is/LC_MESSAGES/kmix.mo -share/locale/is/LC_MESSAGES/kmobile.mo -share/locale/is/LC_MESSAGES/kmoon.mo share/locale/is/LC_MESSAGES/kmousetool.mo share/locale/is/LC_MESSAGES/kmouth.mo share/locale/is/LC_MESSAGES/kmplot.mo -share/locale/is/LC_MESSAGES/kmrml.mo share/locale/is/LC_MESSAGES/knetattach.mo share/locale/is/LC_MESSAGES/knetwalk.mo -share/locale/is/LC_MESSAGES/knetworkconf.mo -share/locale/is/LC_MESSAGES/knewsticker.mo +share/locale/is/LC_MESSAGES/knetworkconfmodule.mo share/locale/is/LC_MESSAGES/knode.mo share/locale/is/LC_MESSAGES/knotes.mo -share/locale/is/LC_MESSAGES/knotify.mo -share/locale/is/LC_MESSAGES/kodo.mo +share/locale/is/LC_MESSAGES/knotify4.mo share/locale/is/LC_MESSAGES/kolf.mo share/locale/is/LC_MESSAGES/kolourpaint.mo -share/locale/is/LC_MESSAGES/kolourpicker.mo -share/locale/is/LC_MESSAGES/kommander.mo share/locale/is/LC_MESSAGES/kompare.mo -share/locale/is/LC_MESSAGES/konnector_dummy.mo -share/locale/is/LC_MESSAGES/konnector_kabc.mo -share/locale/is/LC_MESSAGES/konnector_kcal.mo -share/locale/is/LC_MESSAGES/konnector_local.mo -share/locale/is/LC_MESSAGES/konnector_qtopia.mo -share/locale/is/LC_MESSAGES/konnector_remote.mo -share/locale/is/LC_MESSAGES/konqsidebar_delicious.mo -share/locale/is/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/is/LC_MESSAGES/konqsidebar_metabar.mo -share/locale/is/LC_MESSAGES/konqsidebar_news.mo share/locale/is/LC_MESSAGES/konqueror.mo share/locale/is/LC_MESSAGES/konquest.mo share/locale/is/LC_MESSAGES/konsole.mo share/locale/is/LC_MESSAGES/konsolekalendar.mo share/locale/is/LC_MESSAGES/kontact.mo -share/locale/is/LC_MESSAGES/kooka.mo share/locale/is/LC_MESSAGES/kopete.mo share/locale/is/LC_MESSAGES/korganizer.mo share/locale/is/LC_MESSAGES/korn.mo share/locale/is/LC_MESSAGES/kpackage.mo -share/locale/is/LC_MESSAGES/kpager.mo share/locale/is/LC_MESSAGES/kpartsaver.mo +share/locale/is/LC_MESSAGES/kpasswdserver.mo share/locale/is/LC_MESSAGES/kpat.mo -share/locale/is/LC_MESSAGES/kpdf.mo -share/locale/is/LC_MESSAGES/kpercentage.mo -share/locale/is/LC_MESSAGES/kpersonalizer.mo -share/locale/is/LC_MESSAGES/kpf.mo share/locale/is/LC_MESSAGES/kpilot.mo -share/locale/is/LC_MESSAGES/kpoker.mo -share/locale/is/LC_MESSAGES/kpovmodeler.mo share/locale/is/LC_MESSAGES/kppp.mo share/locale/is/LC_MESSAGES/kppplogview.mo -share/locale/is/LC_MESSAGES/kprinter.mo +share/locale/is/LC_MESSAGES/kquitapp.mo share/locale/is/LC_MESSAGES/krandr.mo share/locale/is/LC_MESSAGES/krdb.mo share/locale/is/LC_MESSAGES/krdc.mo share/locale/is/LC_MESSAGES/kreadconfig.mo -share/locale/is/LC_MESSAGES/krec.mo -share/locale/is/LC_MESSAGES/kregexpeditor.mo share/locale/is/LC_MESSAGES/kres_birthday.mo -share/locale/is/LC_MESSAGES/kres_blogging.mo share/locale/is/LC_MESSAGES/kres_bugzilla.mo -share/locale/is/LC_MESSAGES/kres_exchange.mo share/locale/is/LC_MESSAGES/kres_featureplan.mo share/locale/is/LC_MESSAGES/kres_groupware.mo share/locale/is/LC_MESSAGES/kres_groupwise.mo @@ -414,149 +271,125 @@ share/locale/is/LC_MESSAGES/kres_xmlrpc.mo share/locale/is/LC_MESSAGES/kreversi.mo share/locale/is/LC_MESSAGES/krfb.mo share/locale/is/LC_MESSAGES/kruler.mo -share/locale/is/LC_MESSAGES/krunapplet.mo +share/locale/is/LC_MESSAGES/krunner.mo share/locale/is/LC_MESSAGES/ksame.mo +share/locale/is/LC_MESSAGES/ksaneplugin.mo share/locale/is/LC_MESSAGES/ksayit.mo share/locale/is/LC_MESSAGES/kscd.mo share/locale/is/LC_MESSAGES/kscreensaver.mo share/locale/is/LC_MESSAGES/kshisen.mo -share/locale/is/LC_MESSAGES/ksig.mo -share/locale/is/LC_MESSAGES/ksim.mo -share/locale/is/LC_MESSAGES/ksirc.mo -share/locale/is/LC_MESSAGES/ksirtet.mo -share/locale/is/LC_MESSAGES/ksmiletris.mo +share/locale/is/LC_MESSAGES/kshorturifilter.mo share/locale/is/LC_MESSAGES/ksmserver.mo -share/locale/is/LC_MESSAGES/ksnake.mo share/locale/is/LC_MESSAGES/ksnapshot.mo -share/locale/is/LC_MESSAGES/ksokoban.mo share/locale/is/LC_MESSAGES/kspaceduel.mo -share/locale/is/LC_MESSAGES/ksplash.mo share/locale/is/LC_MESSAGES/ksplashthemes.mo share/locale/is/LC_MESSAGES/kstars.mo share/locale/is/LC_MESSAGES/kstart.mo share/locale/is/LC_MESSAGES/kstartperf.mo -share/locale/is/LC_MESSAGES/kstyle_highcontrast_config.mo +share/locale/is/LC_MESSAGES/kstyle_config.mo share/locale/is/LC_MESSAGES/kstyle_keramik_config.mo share/locale/is/LC_MESSAGES/kstyle_phase_config.mo -share/locale/is/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/is/LC_MESSAGES/ksvgplugin.mo share/locale/is/LC_MESSAGES/ksysguard.mo -share/locale/is/LC_MESSAGES/ksystemtrayapplet.mo share/locale/is/LC_MESSAGES/ksystraycmd.mo share/locale/is/LC_MESSAGES/ksysv.mo share/locale/is/LC_MESSAGES/kteatime.mo -share/locale/is/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/is/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/is/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/is/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/is/LC_MESSAGES/ktexteditor_kdatatool.mo +share/locale/is/LC_MESSAGES/ktexteditor_plugins.mo share/locale/is/LC_MESSAGES/kthememanager.mo -share/locale/is/LC_MESSAGES/ktimemon.mo share/locale/is/LC_MESSAGES/ktimer.mo -share/locale/is/LC_MESSAGES/ktip.mo -share/locale/is/LC_MESSAGES/ktnef.mo +share/locale/is/LC_MESSAGES/ktimetracker.mo share/locale/is/LC_MESSAGES/ktouch.mo -share/locale/is/LC_MESSAGES/ktron.mo share/locale/is/LC_MESSAGES/kttsd.mo share/locale/is/LC_MESSAGES/ktuberling.mo -share/locale/is/LC_MESSAGES/kturtle.mo share/locale/is/LC_MESSAGES/ktux.mo -share/locale/is/LC_MESSAGES/kuick_plugin.mo -share/locale/is/LC_MESSAGES/kuickshow.mo share/locale/is/LC_MESSAGES/kuiviewer.mo share/locale/is/LC_MESSAGES/kuser.mo -share/locale/is/LC_MESSAGES/kverbos.mo -share/locale/is/LC_MESSAGES/kview.mo -share/locale/is/LC_MESSAGES/kview_scale.mo -share/locale/is/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/is/LC_MESSAGES/kviewcanvas.mo -share/locale/is/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/is/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/is/LC_MESSAGES/kviewscannerplugin.mo -share/locale/is/LC_MESSAGES/kviewshell.mo -share/locale/is/LC_MESSAGES/kviewviewer.mo -share/locale/is/LC_MESSAGES/kvoctrain.mo share/locale/is/LC_MESSAGES/kwalletmanager.mo share/locale/is/LC_MESSAGES/kwatchgnupg.mo share/locale/is/LC_MESSAGES/kweather.mo -share/locale/is/LC_MESSAGES/kwifimanager.mo share/locale/is/LC_MESSAGES/kwin.mo -share/locale/is/LC_MESSAGES/kwin4.mo share/locale/is/LC_MESSAGES/kwin_art_clients.mo share/locale/is/LC_MESSAGES/kwin_clients.mo +share/locale/is/LC_MESSAGES/kwin_effects.mo share/locale/is/LC_MESSAGES/kwin_lib.mo -share/locale/is/LC_MESSAGES/kwireless.mo -share/locale/is/LC_MESSAGES/kwordquiz.mo -share/locale/is/LC_MESSAGES/kworldclock.mo +share/locale/is/LC_MESSAGES/kwinstartmenu.mo +share/locale/is/LC_MESSAGES/kwrite.mo share/locale/is/LC_MESSAGES/kwriteconfig.mo share/locale/is/LC_MESSAGES/kxkb.mo share/locale/is/LC_MESSAGES/kxsconfig.mo -share/locale/is/LC_MESSAGES/kxsldbg.mo -share/locale/is/LC_MESSAGES/libKTTSD.mo -share/locale/is/LC_MESSAGES/libdmctl.mo -share/locale/is/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/is/LC_MESSAGES/libkaddrbk_gmx_xxport.mo share/locale/is/LC_MESSAGES/libkcal.mo share/locale/is/LC_MESSAGES/libkcddb.mo +share/locale/is/LC_MESSAGES/libkcompactdisc.mo +share/locale/is/LC_MESSAGES/libkdcraw.mo share/locale/is/LC_MESSAGES/libkdeedu.mo share/locale/is/LC_MESSAGES/libkdegames.mo share/locale/is/LC_MESSAGES/libkdepim.mo -share/locale/is/LC_MESSAGES/libkfaximgage.mo share/locale/is/LC_MESSAGES/libkholidays.mo -share/locale/is/LC_MESSAGES/libkicker.mo -share/locale/is/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/is/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/is/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/is/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/is/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/is/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/is/LC_MESSAGES/libkickermenu_tom.mo share/locale/is/LC_MESSAGES/libkleopatra.mo -share/locale/is/LC_MESSAGES/libkmime.mo share/locale/is/LC_MESSAGES/libkonq.mo -share/locale/is/LC_MESSAGES/libkpgp.mo -share/locale/is/LC_MESSAGES/libkpimexchange.mo -share/locale/is/LC_MESSAGES/libkscan.mo +share/locale/is/LC_MESSAGES/libksane.mo share/locale/is/LC_MESSAGES/libkscreensaver.mo share/locale/is/LC_MESSAGES/libksieve.mo -share/locale/is/LC_MESSAGES/libksirtet.mo -share/locale/is/LC_MESSAGES/libksync.mo -share/locale/is/LC_MESSAGES/libtaskbar.mo +share/locale/is/LC_MESSAGES/libkworkspace.mo +share/locale/is/LC_MESSAGES/libphonon.mo +share/locale/is/LC_MESSAGES/libplasma.mo share/locale/is/LC_MESSAGES/libtaskmanager.mo -share/locale/is/LC_MESSAGES/lockout.mo share/locale/is/LC_MESSAGES/lskat.mo -share/locale/is/LC_MESSAGES/lyrics.mo -share/locale/is/LC_MESSAGES/mediaapplet.mo -share/locale/is/LC_MESSAGES/mediacontrol.mo -share/locale/is/LC_MESSAGES/mf_konqplugin.mo -share/locale/is/LC_MESSAGES/minitoolsplugin.mo -share/locale/is/LC_MESSAGES/multisynk.mo -share/locale/is/LC_MESSAGES/naughtyapplet.mo -share/locale/is/LC_MESSAGES/nexscope.mo -share/locale/is/LC_MESSAGES/noatun.mo +share/locale/is/LC_MESSAGES/nepomuk.mo +share/locale/is/LC_MESSAGES/nepomuksearch.mo share/locale/is/LC_MESSAGES/nsplugin.mo -share/locale/is/LC_MESSAGES/pitchablespeed.mo -share/locale/is/LC_MESSAGES/ppdtranslations.mo -share/locale/is/LC_MESSAGES/privacy.mo -share/locale/is/LC_MESSAGES/quanta.mo -share/locale/is/LC_MESSAGES/quicklauncher.mo -share/locale/is/LC_MESSAGES/rellinks.mo -share/locale/is/LC_MESSAGES/searchbarplugin.mo -share/locale/is/LC_MESSAGES/secpolicy.mo +share/locale/is/LC_MESSAGES/oktetapart.mo +share/locale/is/LC_MESSAGES/okular.mo +share/locale/is/LC_MESSAGES/okular_chm.mo +share/locale/is/LC_MESSAGES/okular_comicbook.mo +share/locale/is/LC_MESSAGES/okular_djvu.mo +share/locale/is/LC_MESSAGES/okular_dvi.mo +share/locale/is/LC_MESSAGES/okular_epub.mo +share/locale/is/LC_MESSAGES/okular_fax.mo +share/locale/is/LC_MESSAGES/okular_fictionbook.mo +share/locale/is/LC_MESSAGES/okular_ghostview.mo +share/locale/is/LC_MESSAGES/okular_kimgio.mo +share/locale/is/LC_MESSAGES/okular_ooo.mo +share/locale/is/LC_MESSAGES/okular_plucker.mo +share/locale/is/LC_MESSAGES/okular_poppler.mo +share/locale/is/LC_MESSAGES/okular_tiff.mo +share/locale/is/LC_MESSAGES/okular_xps.mo +share/locale/is/LC_MESSAGES/parley.mo +share/locale/is/LC_MESSAGES/phonon-xine.mo +share/locale/is/LC_MESSAGES/phonon_gstreamer.mo +share/locale/is/LC_MESSAGES/phonon_kde.mo +share/locale/is/LC_MESSAGES/plasma.mo +share/locale/is/LC_MESSAGES/plasma_applet_battery.mo +share/locale/is/LC_MESSAGES/plasma_applet_clock.mo +share/locale/is/LC_MESSAGES/plasma_applet_desktop.mo +share/locale/is/LC_MESSAGES/plasma_applet_devicenotifier.mo +share/locale/is/LC_MESSAGES/plasma_applet_dig_clock.mo +share/locale/is/LC_MESSAGES/plasma_applet_folderview.mo +share/locale/is/LC_MESSAGES/plasma_applet_kget.mo +share/locale/is/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/is/LC_MESSAGES/plasma_applet_pager.mo +share/locale/is/LC_MESSAGES/plasma_applet_panel.mo +share/locale/is/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/is/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/is/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo +share/locale/is/LC_MESSAGES/plasma_runner_locations.mo +share/locale/is/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/is/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/is/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/is/LC_MESSAGES/plasma_runner_shell.mo +share/locale/is/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/is/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/is/LC_MESSAGES/solid-bluetooth.mo +share/locale/is/LC_MESSAGES/solid-hardware.mo +share/locale/is/LC_MESSAGES/solid-network.mo +share/locale/is/LC_MESSAGES/solid-powermanagement.mo +share/locale/is/LC_MESSAGES/solidcontrol.mo +share/locale/is/LC_MESSAGES/soliduiserver.mo share/locale/is/LC_MESSAGES/spy.mo +share/locale/is/LC_MESSAGES/strigila_diff.mo share/locale/is/LC_MESSAGES/superkaramba.mo -share/locale/is/LC_MESSAGES/synaescope.mo -share/locale/is/LC_MESSAGES/timezones.mo -share/locale/is/LC_MESSAGES/tippecanoe.mo -share/locale/is/LC_MESSAGES/trashapplet.mo -share/locale/is/LC_MESSAGES/tyler.mo -share/locale/is/LC_MESSAGES/uachangerplugin.mo -share/locale/is/LC_MESSAGES/umbrello.mo +share/locale/is/LC_MESSAGES/svgpart.mo +share/locale/is/LC_MESSAGES/sweeper.mo +share/locale/is/LC_MESSAGES/systemsettings.mo +share/locale/is/LC_MESSAGES/timezones4.mo share/locale/is/LC_MESSAGES/useraccount.mo -share/locale/is/LC_MESSAGES/validatorsplugin.mo -share/locale/is/LC_MESSAGES/wakeup.mo -share/locale/is/LC_MESSAGES/wavecapture.mo -share/locale/is/LC_MESSAGES/webarchiver.mo -share/locale/is/charset share/locale/is/entry.desktop -share/locale/is/flag.png diff --git a/misc/kde4-l10n-it/Makefile b/misc/kde4-l10n-it/Makefile index c30057cfbe44..43ff0a5e8948 100644 --- a/misc/kde4-l10n-it/Makefile +++ b/misc/kde4-l10n-it/Makefile @@ -14,6 +14,9 @@ COMMENT= Italian messages and documentation for KDE4 KDE4_L10N= it +MANLANG= ${KDE4_L10N} +.include <${.CURDIR}/Makefile.man> + post-extract: ${MKDIR} ${WRKSRC}/build diff --git a/misc/kde4-l10n-it/distinfo b/misc/kde4-l10n-it/distinfo index 0818906baa42..0e4a79bc863a 100644 --- a/misc/kde4-l10n-it/distinfo +++ b/misc/kde4-l10n-it/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-it-4.1.4.tar.bz2) = f57747f19419714cfd72cbbbba3c465a -SHA256 (KDE/kde-l10n/kde-l10n-it-4.1.4.tar.bz2) = d126d1b937b3fb8cba1963fec1400ad5d135420842c0f018eac429ec8d26046f -SIZE (KDE/kde-l10n/kde-l10n-it-4.1.4.tar.bz2) = 10702714 +MD5 (KDE/kde-l10n/kde-l10n-it-4.2.0.tar.bz2) = 42387c0b473767173ebf65622edb4278 +SHA256 (KDE/kde-l10n/kde-l10n-it-4.2.0.tar.bz2) = fe2cbe152e68ec65d790065bc1cf3b9e4f9c90af54113712d99e3e0a68963965 +SIZE (KDE/kde-l10n/kde-l10n-it-4.2.0.tar.bz2) = 10834547 diff --git a/misc/kde4-l10n-it/pkg-plist b/misc/kde4-l10n-it/pkg-plist index 81f74b9024fa..fb84555c35ef 100644 --- a/misc/kde4-l10n-it/pkg-plist +++ b/misc/kde4-l10n-it/pkg-plist @@ -135,6 +135,17 @@ share/apps/kvtml/it/persone.kvtml share/apps/kvtml/it/spazio.kvtml share/apps/kvtml/it/trasporti.kvtml share/apps/kvtml/it/valute.kvtml +share/apps/step/objinfo/l10n/it/Box.html +share/apps/step/objinfo/l10n/it/ChargedParticle.html +share/apps/step/objinfo/l10n/it/Disk.html +share/apps/step/objinfo/l10n/it/Gas.html +share/apps/step/objinfo/l10n/it/GasParticle.html +share/apps/step/objinfo/l10n/it/Meter.html +share/apps/step/objinfo/l10n/it/Note.html +share/apps/step/objinfo/l10n/it/Particle.html +share/apps/step/objinfo/l10n/it/Polygon.html +share/apps/step/objinfo/l10n/it/Spring.html +share/apps/step/objinfo/l10n/it/World.html share/doc/HTML/it/akregator/common share/doc/HTML/it/akregator/index.cache.bz2 share/doc/HTML/it/akregator/index.docbook @@ -149,6 +160,9 @@ share/doc/HTML/it/ark/man-ark.1.docbook share/doc/HTML/it/blinken/common share/doc/HTML/it/blinken/index.cache.bz2 share/doc/HTML/it/blinken/index.docbook +share/doc/HTML/it/bomber/common +share/doc/HTML/it/bomber/index.cache.bz2 +share/doc/HTML/it/bomber/index.docbook share/doc/HTML/it/bovo/common share/doc/HTML/it/bovo/index.cache.bz2 share/doc/HTML/it/bovo/index.docbook @@ -160,8 +174,6 @@ share/doc/HTML/it/dragonplayer/index.cache.bz2 share/doc/HTML/it/dragonplayer/index.docbook share/doc/HTML/it/gwenview/browse_mode.png share/doc/HTML/it/gwenview/common -share/doc/HTML/it/gwenview/docked_windows.docbook -share/doc/HTML/it/gwenview/external_tools.docbook share/doc/HTML/it/gwenview/external_tools_dialog.png share/doc/HTML/it/gwenview/index.cache.bz2 share/doc/HTML/it/gwenview/index.docbook @@ -173,6 +185,10 @@ share/doc/HTML/it/gwenview/view_mode.png share/doc/HTML/it/juk/common share/doc/HTML/it/juk/index.cache.bz2 share/doc/HTML/it/juk/index.docbook +share/doc/HTML/it/kabcclient/common +share/doc/HTML/it/kabcclient/index.cache.bz2 +share/doc/HTML/it/kabcclient/index.docbook +share/doc/HTML/it/kabcclient/man-kabcclient.1.docbook share/doc/HTML/it/kaddressbook/common share/doc/HTML/it/kaddressbook/index.cache.bz2 share/doc/HTML/it/kaddressbook/index.docbook @@ -207,16 +223,12 @@ share/doc/HTML/it/kalzium/sidebar1.png share/doc/HTML/it/kalzium/sidebar2.png share/doc/HTML/it/kalzium/sidebar3.png share/doc/HTML/it/kalzium/timeline.png -share/doc/HTML/it/kamera/common -share/doc/HTML/it/kamera/index.cache.bz2 -share/doc/HTML/it/kamera/index.docbook share/doc/HTML/it/kanagram/common share/doc/HTML/it/kanagram/index.cache.bz2 share/doc/HTML/it/kanagram/index.docbook share/doc/HTML/it/kapptemplate/common share/doc/HTML/it/kapptemplate/index.cache.bz2 share/doc/HTML/it/kapptemplate/index.docbook -share/doc/HTML/it/kapptemplate/man-kapptemplate.1.docbook share/doc/HTML/it/kate-plugins/common share/doc/HTML/it/kate-plugins/filetemplates.docbook share/doc/HTML/it/kate-plugins/htmltools.docbook @@ -227,19 +239,6 @@ share/doc/HTML/it/kate-plugins/openheader.docbook share/doc/HTML/it/kate-plugins/textfilter.docbook share/doc/HTML/it/kate-plugins/xmlcheck.docbook share/doc/HTML/it/kate-plugins/xmltools.docbook -share/doc/HTML/it/kate/advanced.docbook -share/doc/HTML/it/kate/common -share/doc/HTML/it/kate/configuring.docbook -share/doc/HTML/it/kate/fundamentals.docbook -share/doc/HTML/it/kate/highlighting.docbook -share/doc/HTML/it/kate/index.cache.bz2 -share/doc/HTML/it/kate/index.docbook -share/doc/HTML/it/kate/man-kate.1.docbook -share/doc/HTML/it/kate/mdi.docbook -share/doc/HTML/it/kate/menus.docbook -share/doc/HTML/it/kate/part.docbook -share/doc/HTML/it/kate/plugins.docbook -share/doc/HTML/it/kate/regular-expressions.docbook share/doc/HTML/it/katomic/common share/doc/HTML/it/katomic/index.cache.bz2 share/doc/HTML/it/katomic/index.docbook @@ -284,6 +283,9 @@ share/doc/HTML/it/kcontrol/bell/index.docbook share/doc/HTML/it/kcontrol/blockdevices/common share/doc/HTML/it/kcontrol/blockdevices/index.cache.bz2 share/doc/HTML/it/kcontrol/blockdevices/index.docbook +share/doc/HTML/it/kcontrol/bookmarks/common +share/doc/HTML/it/kcontrol/bookmarks/index.cache.bz2 +share/doc/HTML/it/kcontrol/bookmarks/index.docbook share/doc/HTML/it/kcontrol/cache/common share/doc/HTML/it/kcontrol/cache/index.cache.bz2 share/doc/HTML/it/kcontrol/cache/index.docbook @@ -326,9 +328,6 @@ share/doc/HTML/it/kcontrol/filetypes/index.docbook share/doc/HTML/it/kcontrol/fontinst/common share/doc/HTML/it/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/it/kcontrol/fontinst/index.docbook -share/doc/HTML/it/kcontrol/fonts/common -share/doc/HTML/it/kcontrol/fonts/index.cache.bz2 -share/doc/HTML/it/kcontrol/fonts/index.docbook share/doc/HTML/it/kcontrol/helpindex/common share/doc/HTML/it/kcontrol/helpindex/index.cache.bz2 share/doc/HTML/it/kcontrol/helpindex/index.docbook @@ -347,9 +346,6 @@ share/doc/HTML/it/kcontrol/kcmcss/index.docbook share/doc/HTML/it/kcontrol/kcmdisplay/common share/doc/HTML/it/kcontrol/kcmdisplay/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmdisplay/index.docbook -share/doc/HTML/it/kcontrol/kcmfontinst/common -share/doc/HTML/it/kcontrol/kcmfontinst/index.cache.bz2 -share/doc/HTML/it/kcontrol/kcmfontinst/index.docbook share/doc/HTML/it/kcontrol/kcmkonsole/common share/doc/HTML/it/kcontrol/kcmkonsole/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmkonsole/index.docbook @@ -581,6 +577,9 @@ share/doc/HTML/it/kig/common share/doc/HTML/it/kig/index.cache.bz2 share/doc/HTML/it/kig/index.docbook share/doc/HTML/it/kig/man-kig.1.docbook +share/doc/HTML/it/killbots/common +share/doc/HTML/it/killbots/index.cache.bz2 +share/doc/HTML/it/killbots/index.docbook share/doc/HTML/it/kimagemapeditor/common share/doc/HTML/it/kimagemapeditor/index.cache.bz2 share/doc/HTML/it/kimagemapeditor/index.docbook @@ -635,48 +634,96 @@ share/doc/HTML/it/kinfocenter/usb/index.docbook share/doc/HTML/it/kinfocenter/xserver/common share/doc/HTML/it/kinfocenter/xserver/index.cache.bz2 share/doc/HTML/it/kinfocenter/xserver/index.docbook -share/doc/HTML/it/kioslave/bzip.docbook -share/doc/HTML/it/kioslave/bzip2.docbook -share/doc/HTML/it/kioslave/cgi.docbook -share/doc/HTML/it/kioslave/common -share/doc/HTML/it/kioslave/data.docbook -share/doc/HTML/it/kioslave/file.docbook -share/doc/HTML/it/kioslave/finger.docbook -share/doc/HTML/it/kioslave/fish.docbook -share/doc/HTML/it/kioslave/floppy.docbook -share/doc/HTML/it/kioslave/ftp.docbook -share/doc/HTML/it/kioslave/gopher.docbook -share/doc/HTML/it/kioslave/gzip.docbook -share/doc/HTML/it/kioslave/help.docbook -share/doc/HTML/it/kioslave/http.docbook -share/doc/HTML/it/kioslave/https.docbook -share/doc/HTML/it/kioslave/imap.docbook -share/doc/HTML/it/kioslave/imaps.docbook -share/doc/HTML/it/kioslave/index.cache.bz2 -share/doc/HTML/it/kioslave/index.docbook -share/doc/HTML/it/kioslave/info.docbook -share/doc/HTML/it/kioslave/lan.docbook -share/doc/HTML/it/kioslave/ldap.docbook -share/doc/HTML/it/kioslave/mac.docbook -share/doc/HTML/it/kioslave/mailto.docbook -share/doc/HTML/it/kioslave/man.docbook -share/doc/HTML/it/kioslave/mrml.docbook -share/doc/HTML/it/kioslave/news.docbook -share/doc/HTML/it/kioslave/nfs.docbook -share/doc/HTML/it/kioslave/nntp.docbook -share/doc/HTML/it/kioslave/pop3.docbook -share/doc/HTML/it/kioslave/pop3s.docbook -share/doc/HTML/it/kioslave/print.docbook -share/doc/HTML/it/kioslave/rlan.docbook -share/doc/HTML/it/kioslave/rlogin.docbook -share/doc/HTML/it/kioslave/sftp.docbook -share/doc/HTML/it/kioslave/smb.docbook -share/doc/HTML/it/kioslave/smtp.docbook -share/doc/HTML/it/kioslave/tar.docbook -share/doc/HTML/it/kioslave/telnet.docbook -share/doc/HTML/it/kioslave/thumbnail.docbook -share/doc/HTML/it/kioslave/webdav.docbook -share/doc/HTML/it/kioslave/webdavs.docbook +share/doc/HTML/it/kioslave/audiocd/common +share/doc/HTML/it/kioslave/audiocd/index.cache.bz2 +share/doc/HTML/it/kioslave/audiocd/index.docbook +share/doc/HTML/it/kioslave/bookmarks/common +share/doc/HTML/it/kioslave/bookmarks/index.cache.bz2 +share/doc/HTML/it/kioslave/bookmarks/index.docbook +share/doc/HTML/it/kioslave/bzip2/common +share/doc/HTML/it/kioslave/bzip2/index.cache.bz2 +share/doc/HTML/it/kioslave/bzip2/index.docbook +share/doc/HTML/it/kioslave/cgi/common +share/doc/HTML/it/kioslave/cgi/index.cache.bz2 +share/doc/HTML/it/kioslave/cgi/index.docbook +share/doc/HTML/it/kioslave/data/common +share/doc/HTML/it/kioslave/data/index.cache.bz2 +share/doc/HTML/it/kioslave/data/index.docbook +share/doc/HTML/it/kioslave/file/common +share/doc/HTML/it/kioslave/file/index.cache.bz2 +share/doc/HTML/it/kioslave/file/index.docbook +share/doc/HTML/it/kioslave/finger/common +share/doc/HTML/it/kioslave/finger/index.cache.bz2 +share/doc/HTML/it/kioslave/finger/index.docbook +share/doc/HTML/it/kioslave/fish/common +share/doc/HTML/it/kioslave/fish/index.cache.bz2 +share/doc/HTML/it/kioslave/fish/index.docbook +share/doc/HTML/it/kioslave/floppy/common +share/doc/HTML/it/kioslave/floppy/index.cache.bz2 +share/doc/HTML/it/kioslave/floppy/index.docbook +share/doc/HTML/it/kioslave/ftp/common +share/doc/HTML/it/kioslave/ftp/index.cache.bz2 +share/doc/HTML/it/kioslave/ftp/index.docbook +share/doc/HTML/it/kioslave/gzip/common +share/doc/HTML/it/kioslave/gzip/index.cache.bz2 +share/doc/HTML/it/kioslave/gzip/index.docbook +share/doc/HTML/it/kioslave/help/common +share/doc/HTML/it/kioslave/help/index.cache.bz2 +share/doc/HTML/it/kioslave/help/index.docbook +share/doc/HTML/it/kioslave/http/common +share/doc/HTML/it/kioslave/http/index.cache.bz2 +share/doc/HTML/it/kioslave/http/index.docbook +share/doc/HTML/it/kioslave/imap/common +share/doc/HTML/it/kioslave/imap/index.cache.bz2 +share/doc/HTML/it/kioslave/imap/index.docbook +share/doc/HTML/it/kioslave/info/common +share/doc/HTML/it/kioslave/info/index.cache.bz2 +share/doc/HTML/it/kioslave/info/index.docbook +share/doc/HTML/it/kioslave/ldap/common +share/doc/HTML/it/kioslave/ldap/index.cache.bz2 +share/doc/HTML/it/kioslave/ldap/index.docbook +share/doc/HTML/it/kioslave/mailto/common +share/doc/HTML/it/kioslave/mailto/index.cache.bz2 +share/doc/HTML/it/kioslave/mailto/index.docbook +share/doc/HTML/it/kioslave/man/common +share/doc/HTML/it/kioslave/man/index.cache.bz2 +share/doc/HTML/it/kioslave/man/index.docbook +share/doc/HTML/it/kioslave/news/common +share/doc/HTML/it/kioslave/news/index.cache.bz2 +share/doc/HTML/it/kioslave/news/index.docbook +share/doc/HTML/it/kioslave/nfs/common +share/doc/HTML/it/kioslave/nfs/index.cache.bz2 +share/doc/HTML/it/kioslave/nfs/index.docbook +share/doc/HTML/it/kioslave/nntp/common +share/doc/HTML/it/kioslave/nntp/index.cache.bz2 +share/doc/HTML/it/kioslave/nntp/index.docbook +share/doc/HTML/it/kioslave/pop3/common +share/doc/HTML/it/kioslave/pop3/index.cache.bz2 +share/doc/HTML/it/kioslave/pop3/index.docbook +share/doc/HTML/it/kioslave/rlogin/common +share/doc/HTML/it/kioslave/rlogin/index.cache.bz2 +share/doc/HTML/it/kioslave/rlogin/index.docbook +share/doc/HTML/it/kioslave/sftp/common +share/doc/HTML/it/kioslave/sftp/index.cache.bz2 +share/doc/HTML/it/kioslave/sftp/index.docbook +share/doc/HTML/it/kioslave/smb/common +share/doc/HTML/it/kioslave/smb/index.cache.bz2 +share/doc/HTML/it/kioslave/smb/index.docbook +share/doc/HTML/it/kioslave/smtp/common +share/doc/HTML/it/kioslave/smtp/index.cache.bz2 +share/doc/HTML/it/kioslave/smtp/index.docbook +share/doc/HTML/it/kioslave/tar/common +share/doc/HTML/it/kioslave/tar/index.cache.bz2 +share/doc/HTML/it/kioslave/tar/index.docbook +share/doc/HTML/it/kioslave/telnet/common +share/doc/HTML/it/kioslave/telnet/index.cache.bz2 +share/doc/HTML/it/kioslave/telnet/index.docbook +share/doc/HTML/it/kioslave/thumbnail/common +share/doc/HTML/it/kioslave/thumbnail/index.cache.bz2 +share/doc/HTML/it/kioslave/thumbnail/index.docbook +share/doc/HTML/it/kioslave/webdav/common +share/doc/HTML/it/kioslave/webdav/index.cache.bz2 +share/doc/HTML/it/kioslave/webdav/index.docbook share/doc/HTML/it/kiten/common share/doc/HTML/it/kiten/index.cache.bz2 share/doc/HTML/it/kiten/index.docbook @@ -761,9 +808,6 @@ share/doc/HTML/it/knetattach/index.docbook share/doc/HTML/it/knetwalk/common share/doc/HTML/it/knetwalk/index.cache.bz2 share/doc/HTML/it/knetwalk/index.docbook -share/doc/HTML/it/knewsticker/common -share/doc/HTML/it/knewsticker/index.cache.bz2 -share/doc/HTML/it/knewsticker/index.docbook share/doc/HTML/it/knode/commands.docbook share/doc/HTML/it/knode/common share/doc/HTML/it/knode/credits.docbook @@ -847,8 +891,6 @@ share/doc/HTML/it/kopete/index.docbook share/doc/HTML/it/kopete/menus.docbook share/doc/HTML/it/kopete/pipes.docbook share/doc/HTML/it/korganizer/common -share/doc/HTML/it/korganizer/exchange-plugin.docbook -share/doc/HTML/it/korganizer/group-scheduling.docbook share/doc/HTML/it/korganizer/index.cache.bz2 share/doc/HTML/it/korganizer/index.docbook share/doc/HTML/it/korganizer/outlook-to-vcalendar.docbook @@ -863,17 +905,6 @@ share/doc/HTML/it/kpat/common share/doc/HTML/it/kpat/index.cache.bz2 share/doc/HTML/it/kpat/index.docbook share/doc/HTML/it/kpat/man-kpat.6.docbook -share/doc/HTML/it/kpat/man.docbook -share/doc/HTML/it/kpercentage/commands.docbook -share/doc/HTML/it/kpercentage/common -share/doc/HTML/it/kpercentage/credits.docbook -share/doc/HTML/it/kpercentage/devel.docbook -share/doc/HTML/it/kpercentage/faq.docbook -share/doc/HTML/it/kpercentage/index.cache.bz2 -share/doc/HTML/it/kpercentage/index.docbook -share/doc/HTML/it/kpercentage/install.docbook -share/doc/HTML/it/kpercentage/introduction.docbook -share/doc/HTML/it/kpercentage/using.docbook share/doc/HTML/it/kpilot/common share/doc/HTML/it/kpilot/configuration.docbook share/doc/HTML/it/kpilot/faq.docbook @@ -973,7 +1004,6 @@ share/doc/HTML/it/kstars/cpoles.docbook share/doc/HTML/it/kstars/credits.docbook share/doc/HTML/it/kstars/csphere.docbook share/doc/HTML/it/kstars/darkmatter.docbook -share/doc/HTML/it/kstars/dcop.docbook share/doc/HTML/it/kstars/detaildialog.png share/doc/HTML/it/kstars/details.docbook share/doc/HTML/it/kstars/devicemanager.png @@ -1002,17 +1032,6 @@ share/doc/HTML/it/kstars/leapyear.docbook share/doc/HTML/it/kstars/lightcurves.docbook share/doc/HTML/it/kstars/luminosity.docbook share/doc/HTML/it/kstars/magnitude.docbook -share/doc/HTML/it/kstars/man-celestrongps.1.docbook -share/doc/HTML/it/kstars/man-indi_celestron_gps.1.docbook -share/doc/HTML/it/kstars/man-indi_fli_ccd.1.docbook -share/doc/HTML/it/kstars/man-indi_lx200_16.1.docbook -share/doc/HTML/it/kstars/man-indi_lx200autostar.1.docbook -share/doc/HTML/it/kstars/man-indi_lx200classic.1.docbook -share/doc/HTML/it/kstars/man-indi_lx200generic.1.docbook -share/doc/HTML/it/kstars/man-indi_temma.1.docbook -share/doc/HTML/it/kstars/man-indi_v4l_generic.1.docbook -share/doc/HTML/it/kstars/man-indi_v4l_philips.1.docbook -share/doc/HTML/it/kstars/man-indiserver.1.docbook share/doc/HTML/it/kstars/meridian.docbook share/doc/HTML/it/kstars/observinglist.docbook share/doc/HTML/it/kstars/parallax.docbook @@ -1049,9 +1068,6 @@ share/doc/HTML/it/ktimer/index.docbook share/doc/HTML/it/ktimetracker/common share/doc/HTML/it/ktimetracker/index.cache.bz2 share/doc/HTML/it/ktimetracker/index.docbook -share/doc/HTML/it/ktnef/common -share/doc/HTML/it/ktnef/index.cache.bz2 -share/doc/HTML/it/ktnef/index.docbook share/doc/HTML/it/ktouch/common share/doc/HTML/it/ktouch/index.cache.bz2 share/doc/HTML/it/ktouch/index.docbook @@ -1092,9 +1108,6 @@ share/doc/HTML/it/kwordquiz/index.docbook share/doc/HTML/it/kwrite/common share/doc/HTML/it/kwrite/index.cache.bz2 share/doc/HTML/it/kwrite/index.docbook -share/doc/HTML/it/kxkb/common -share/doc/HTML/it/kxkb/index.cache.bz2 -share/doc/HTML/it/kxkb/index.docbook share/doc/HTML/it/kxsldbg/callstack.docbook share/doc/HTML/it/kxsldbg/common share/doc/HTML/it/kxsldbg/credits.docbook @@ -1112,6 +1125,9 @@ share/doc/HTML/it/kxsldbg/variables.docbook share/doc/HTML/it/lilo-config/common share/doc/HTML/it/lilo-config/index.cache.bz2 share/doc/HTML/it/lilo-config/index.docbook +share/doc/HTML/it/lokalize/common +share/doc/HTML/it/lokalize/index.cache.bz2 +share/doc/HTML/it/lokalize/index.docbook share/doc/HTML/it/lskat/common share/doc/HTML/it/lskat/index.cache.bz2 share/doc/HTML/it/lskat/index.docbook @@ -1197,6 +1213,7 @@ share/locale/it/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/it/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/it/LC_MESSAGES/audiorename_plugin.mo share/locale/it/LC_MESSAGES/blinken.mo +share/locale/it/LC_MESSAGES/bomber.mo share/locale/it/LC_MESSAGES/bovo.mo share/locale/it/LC_MESSAGES/cervisia.mo share/locale/it/LC_MESSAGES/cvsservice.mo @@ -1211,6 +1228,7 @@ share/locale/it/LC_MESSAGES/imagerename_plugin.mo share/locale/it/LC_MESSAGES/joystick.mo share/locale/it/LC_MESSAGES/juk.mo share/locale/it/LC_MESSAGES/kabc.mo +share/locale/it/LC_MESSAGES/kabc_akonadi.mo share/locale/it/LC_MESSAGES/kabc_dir.mo share/locale/it/LC_MESSAGES/kabc_file.mo share/locale/it/LC_MESSAGES/kabc_ldapkio.mo @@ -1224,10 +1242,14 @@ share/locale/it/LC_MESSAGES/kaddressbook.mo share/locale/it/LC_MESSAGES/kalarm.mo share/locale/it/LC_MESSAGES/kalgebra.mo share/locale/it/LC_MESSAGES/kalzium.mo +share/locale/it/LC_MESSAGES/kalzium_qt.mo share/locale/it/LC_MESSAGES/kanagram.mo +share/locale/it/LC_MESSAGES/kapman.mo share/locale/it/LC_MESSAGES/kappfinder.mo share/locale/it/LC_MESSAGES/kapptemplate.mo +share/locale/it/LC_MESSAGES/kate-ctags-plugin.mo share/locale/it/LC_MESSAGES/kate.mo +share/locale/it/LC_MESSAGES/katebuild-plugin.mo share/locale/it/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/it/LC_MESSAGES/katefilebrowserplugin.mo share/locale/it/LC_MESSAGES/katefiletemplates.mo @@ -1238,7 +1260,6 @@ share/locale/it/LC_MESSAGES/kateinsertcommand.mo share/locale/it/LC_MESSAGES/katekjswrapper.mo share/locale/it/LC_MESSAGES/katekonsoleplugin.mo share/locale/it/LC_MESSAGES/katemailfilesplugin.mo -share/locale/it/LC_MESSAGES/katemake.mo share/locale/it/LC_MESSAGES/kateopenheader.mo share/locale/it/LC_MESSAGES/katepart4.mo share/locale/it/LC_MESSAGES/katepybrowse.mo @@ -1257,14 +1278,14 @@ share/locale/it/LC_MESSAGES/kblocks.mo share/locale/it/LC_MESSAGES/kbounce.mo share/locale/it/LC_MESSAGES/kbreakout.mo share/locale/it/LC_MESSAGES/kbruch.mo -share/locale/it/LC_MESSAGES/kbstateapplet.mo share/locale/it/LC_MESSAGES/kbugbuster.mo share/locale/it/LC_MESSAGES/kcachegrind.mo share/locale/it/LC_MESSAGES/kcalc.mo share/locale/it/LC_MESSAGES/kcertpart.mo share/locale/it/LC_MESSAGES/kcharselect.mo -share/locale/it/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/it/LC_MESSAGES/kcm_akonadi.mo share/locale/it/LC_MESSAGES/kcm_autostart.mo +share/locale/it/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/it/LC_MESSAGES/kcm_emoticons.mo share/locale/it/LC_MESSAGES/kcm_krfb.mo share/locale/it/LC_MESSAGES/kcm_kwindesktop.mo @@ -1274,6 +1295,7 @@ share/locale/it/LC_MESSAGES/kcm_pci.mo share/locale/it/LC_MESSAGES/kcm_phonon.mo share/locale/it/LC_MESSAGES/kcm_phononxine.mo share/locale/it/LC_MESSAGES/kcm_solid.mo +share/locale/it/LC_MESSAGES/kcm_standard_actions.mo share/locale/it/LC_MESSAGES/kcmaccess.mo share/locale/it/LC_MESSAGES/kcmaudiocd.mo share/locale/it/LC_MESSAGES/kcmbackground.mo @@ -1323,7 +1345,6 @@ share/locale/it/LC_MESSAGES/kcmsmartcard.mo share/locale/it/LC_MESSAGES/kcmsmserver.mo share/locale/it/LC_MESSAGES/kcmsolidproc.mo share/locale/it/LC_MESSAGES/kcmstyle.mo -share/locale/it/LC_MESSAGES/kcmtaskbar.mo share/locale/it/LC_MESSAGES/kcmusb.mo share/locale/it/LC_MESSAGES/kcmview1394.mo share/locale/it/LC_MESSAGES/kcmxinerama.mo @@ -1331,7 +1352,9 @@ share/locale/it/LC_MESSAGES/kcolorchooser.mo share/locale/it/LC_MESSAGES/kcron.mo share/locale/it/LC_MESSAGES/kdat.mo share/locale/it/LC_MESSAGES/kde-menu.mo +share/locale/it/LC_MESSAGES/kdeasciiquarium.mo share/locale/it/LC_MESSAGES/kdebugdialog.mo +share/locale/it/LC_MESSAGES/kded_phononserver.mo share/locale/it/LC_MESSAGES/kdelibs4.mo share/locale/it/LC_MESSAGES/kdelibs_colors4.mo share/locale/it/LC_MESSAGES/kdepasswd.mo @@ -1342,6 +1365,7 @@ share/locale/it/LC_MESSAGES/kdessh.mo share/locale/it/LC_MESSAGES/kdesu.mo share/locale/it/LC_MESSAGES/kdesud.mo share/locale/it/LC_MESSAGES/kdf.mo +share/locale/it/LC_MESSAGES/kdgantt.mo share/locale/it/LC_MESSAGES/kdgantt1.mo share/locale/it/LC_MESSAGES/kdialog.mo share/locale/it/LC_MESSAGES/kdiamond.mo @@ -1391,12 +1415,15 @@ share/locale/it/LC_MESSAGES/khotnewstuff.mo share/locale/it/LC_MESSAGES/khtmlkttsd.mo share/locale/it/LC_MESSAGES/kiconfinder.mo share/locale/it/LC_MESSAGES/kig.mo +share/locale/it/LC_MESSAGES/killbots.mo share/locale/it/LC_MESSAGES/kimagemapeditor.mo share/locale/it/LC_MESSAGES/kinetd.mo share/locale/it/LC_MESSAGES/kinfocenter.mo share/locale/it/LC_MESSAGES/kio4.mo +share/locale/it/LC_MESSAGES/kio_applications.mo share/locale/it/LC_MESSAGES/kio_archive.mo share/locale/it/LC_MESSAGES/kio_audiocd.mo +share/locale/it/LC_MESSAGES/kio_bookmarks.mo share/locale/it/LC_MESSAGES/kio_finger.mo share/locale/it/LC_MESSAGES/kio_fish.mo share/locale/it/LC_MESSAGES/kio_floppy.mo @@ -1407,11 +1434,12 @@ share/locale/it/LC_MESSAGES/kio_jabberdisco.mo share/locale/it/LC_MESSAGES/kio_ldap.mo share/locale/it/LC_MESSAGES/kio_man.mo share/locale/it/LC_MESSAGES/kio_mbox.mo +share/locale/it/LC_MESSAGES/kio_nepomuksearch.mo share/locale/it/LC_MESSAGES/kio_nfs.mo share/locale/it/LC_MESSAGES/kio_nntp.mo +share/locale/it/LC_MESSAGES/kio_perldoc.mo share/locale/it/LC_MESSAGES/kio_pop3.mo share/locale/it/LC_MESSAGES/kio_remote.mo -share/locale/it/LC_MESSAGES/kio_settings.mo share/locale/it/LC_MESSAGES/kio_sftp.mo share/locale/it/LC_MESSAGES/kio_sieve.mo share/locale/it/LC_MESSAGES/kio_smb.mo @@ -1471,10 +1499,10 @@ share/locale/it/LC_MESSAGES/kopete.mo share/locale/it/LC_MESSAGES/korganizer.mo share/locale/it/LC_MESSAGES/korn.mo share/locale/it/LC_MESSAGES/kpackage.mo +share/locale/it/LC_MESSAGES/kpartloader.mo share/locale/it/LC_MESSAGES/kpartsaver.mo share/locale/it/LC_MESSAGES/kpasswdserver.mo share/locale/it/LC_MESSAGES/kpat.mo -share/locale/it/LC_MESSAGES/kpercentage.mo share/locale/it/LC_MESSAGES/kpilot.mo share/locale/it/LC_MESSAGES/kppp.mo share/locale/it/LC_MESSAGES/kppplogview.mo @@ -1498,20 +1526,12 @@ share/locale/it/LC_MESSAGES/kreversi.mo share/locale/it/LC_MESSAGES/krfb.mo share/locale/it/LC_MESSAGES/kruler.mo share/locale/it/LC_MESSAGES/krunner.mo -share/locale/it/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/it/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/it/LC_MESSAGES/krunner_contacts.mo -share/locale/it/LC_MESSAGES/krunner_converterrunner.mo -share/locale/it/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/it/LC_MESSAGES/krunner_sessions.mo -share/locale/it/LC_MESSAGES/krunner_shellrunner.mo -share/locale/it/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/it/LC_MESSAGES/krunner_xesam.mo share/locale/it/LC_MESSAGES/ksame.mo share/locale/it/LC_MESSAGES/ksaneplugin.mo share/locale/it/LC_MESSAGES/ksayit.mo share/locale/it/LC_MESSAGES/kscd.mo share/locale/it/LC_MESSAGES/kscreensaver.mo +share/locale/it/LC_MESSAGES/ksendemail.mo share/locale/it/LC_MESSAGES/kshisen.mo share/locale/it/LC_MESSAGES/kshorturifilter.mo share/locale/it/LC_MESSAGES/ksirk.mo @@ -1528,6 +1548,7 @@ share/locale/it/LC_MESSAGES/kstyle_keramik_config.mo share/locale/it/LC_MESSAGES/kstyle_phase_config.mo share/locale/it/LC_MESSAGES/ksudoku.mo share/locale/it/LC_MESSAGES/ksysguard.mo +share/locale/it/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/it/LC_MESSAGES/ksystemlog.mo share/locale/it/LC_MESSAGES/ksystraycmd.mo share/locale/it/LC_MESSAGES/ksysv.mo @@ -1537,7 +1558,6 @@ share/locale/it/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/it/LC_MESSAGES/kthememanager.mo share/locale/it/LC_MESSAGES/ktimer.mo share/locale/it/LC_MESSAGES/ktimetracker.mo -share/locale/it/LC_MESSAGES/ktnef.mo share/locale/it/LC_MESSAGES/ktouch.mo share/locale/it/LC_MESSAGES/ktraderclient.mo share/locale/it/LC_MESSAGES/kttsd.mo @@ -1549,6 +1569,7 @@ share/locale/it/LC_MESSAGES/kuiserver.mo share/locale/it/LC_MESSAGES/kuiviewer.mo share/locale/it/LC_MESSAGES/kurifilter.mo share/locale/it/LC_MESSAGES/kuser.mo +share/locale/it/LC_MESSAGES/kwalletd.mo share/locale/it/LC_MESSAGES/kwalletmanager.mo share/locale/it/LC_MESSAGES/kwatchgnupg.mo share/locale/it/LC_MESSAGES/kweather.mo @@ -1595,11 +1616,14 @@ share/locale/it/LC_MESSAGES/libmailtransport.mo share/locale/it/LC_MESSAGES/liboktetacore.mo share/locale/it/LC_MESSAGES/libphonon.mo share/locale/it/LC_MESSAGES/libplasma.mo +share/locale/it/LC_MESSAGES/libplasmaclock.mo share/locale/it/LC_MESSAGES/libtaskmanager.mo share/locale/it/LC_MESSAGES/lokalize.mo share/locale/it/LC_MESSAGES/lskat.mo share/locale/it/LC_MESSAGES/marble.mo +share/locale/it/LC_MESSAGES/marble_qt.mo share/locale/it/LC_MESSAGES/nepomuk.mo +share/locale/it/LC_MESSAGES/nepomuksearch.mo share/locale/it/LC_MESSAGES/nsplugin.mo share/locale/it/LC_MESSAGES/okteta.mo share/locale/it/LC_MESSAGES/oktetapart.mo @@ -1609,6 +1633,7 @@ share/locale/it/LC_MESSAGES/okular_comicbook.mo share/locale/it/LC_MESSAGES/okular_djvu.mo share/locale/it/LC_MESSAGES/okular_dvi.mo share/locale/it/LC_MESSAGES/okular_epub.mo +share/locale/it/LC_MESSAGES/okular_fax.mo share/locale/it/LC_MESSAGES/okular_fictionbook.mo share/locale/it/LC_MESSAGES/okular_ghostview.mo share/locale/it/LC_MESSAGES/okular_kimgio.mo @@ -1621,10 +1646,15 @@ share/locale/it/LC_MESSAGES/parley.mo share/locale/it/LC_MESSAGES/phonon-xine.mo share/locale/it/LC_MESSAGES/phonon_gstreamer.mo share/locale/it/LC_MESSAGES/phonon_kde.mo +share/locale/it/LC_MESSAGES/plasma-overlay.mo +share/locale/it/LC_MESSAGES/plasma-shells-common.mo share/locale/it/LC_MESSAGES/plasma.mo share/locale/it/LC_MESSAGES/plasma_applet_battery.mo +share/locale/it/LC_MESSAGES/plasma_applet_bball.mo share/locale/it/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/it/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/it/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/it/LC_MESSAGES/plasma_applet_charselect.mo share/locale/it/LC_MESSAGES/plasma_applet_clock.mo share/locale/it/LC_MESSAGES/plasma_applet_comic.mo share/locale/it/LC_MESSAGES/plasma_applet_desktop.mo @@ -1636,26 +1666,61 @@ share/locale/it/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/it/LC_MESSAGES/plasma_applet_folderview.mo share/locale/it/LC_MESSAGES/plasma_applet_frame.mo share/locale/it/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/it/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/it/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/it/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/it/LC_MESSAGES/plasma_applet_katesession.mo share/locale/it/LC_MESSAGES/plasma_applet_kget.mo -share/locale/it/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/it/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/it/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/it/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/it/LC_MESSAGES/plasma_applet_life.mo share/locale/it/LC_MESSAGES/plasma_applet_luna.mo +share/locale/it/LC_MESSAGES/plasma_applet_news.mo share/locale/it/LC_MESSAGES/plasma_applet_notes.mo share/locale/it/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/it/LC_MESSAGES/plasma_applet_pager.mo share/locale/it/LC_MESSAGES/plasma_applet_panel.mo +share/locale/it/LC_MESSAGES/plasma_applet_paste.mo +share/locale/it/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/it/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/it/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/it/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/it/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/it/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/it/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/it/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/it/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/it/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/it/LC_MESSAGES/plasma_applet_timer.mo share/locale/it/LC_MESSAGES/plasma_applet_trash.mo share/locale/it/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/it/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/it/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/it/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/it/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/it/LC_MESSAGES/plasma_engine_dict.mo +share/locale/it/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/it/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/it/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/it/LC_MESSAGES/plasma_engine_rss.mo +share/locale/it/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/it/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/it/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/it/LC_MESSAGES/plasma_runner_locations.mo +share/locale/it/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/it/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/it/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/it/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/it/LC_MESSAGES/plasma_runner_shell.mo +share/locale/it/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/it/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/it/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/it/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/it/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/it/LC_MESSAGES/plasmaengineexplorer.mo share/locale/it/LC_MESSAGES/plasmapkg.mo share/locale/it/LC_MESSAGES/plasmoidviewer.mo +share/locale/it/LC_MESSAGES/powerdevil.mo share/locale/it/LC_MESSAGES/printer-applet.mo share/locale/it/LC_MESSAGES/processcore.mo share/locale/it/LC_MESSAGES/processui.mo @@ -1667,10 +1732,12 @@ share/locale/it/LC_MESSAGES/solidcontrol.mo share/locale/it/LC_MESSAGES/soliduiserver.mo share/locale/it/LC_MESSAGES/spy.mo share/locale/it/LC_MESSAGES/step.mo +share/locale/it/LC_MESSAGES/step_qt.mo share/locale/it/LC_MESSAGES/strigila_diff.mo share/locale/it/LC_MESSAGES/superkaramba.mo share/locale/it/LC_MESSAGES/svgpart.mo share/locale/it/LC_MESSAGES/sweeper.mo +share/locale/it/LC_MESSAGES/system-config-printer-kde.mo share/locale/it/LC_MESSAGES/systemsettings.mo share/locale/it/LC_MESSAGES/timezones4.mo share/locale/it/LC_MESSAGES/umbrello.mo @@ -1686,9 +1753,9 @@ share/locale/it/entry.desktop @dirrm share/doc/HTML/it/okteta @dirrm share/doc/HTML/it/marble @dirrm share/doc/HTML/it/lskat +@dirrm share/doc/HTML/it/lokalize @dirrm share/doc/HTML/it/lilo-config @dirrm share/doc/HTML/it/kxsldbg -@dirrm share/doc/HTML/it/kxkb @dirrm share/doc/HTML/it/kwrite @dirrm share/doc/HTML/it/kwordquiz @dirrm share/doc/HTML/it/kweather @@ -1699,7 +1766,6 @@ share/locale/it/entry.desktop @dirrm share/doc/HTML/it/ktuberling @dirrm share/doc/HTML/it/kttsd @dirrm share/doc/HTML/it/ktouch -@dirrm share/doc/HTML/it/ktnef @dirrm share/doc/HTML/it/ktimetracker @dirrm share/doc/HTML/it/ktimer @dirrm share/doc/HTML/it/kteatime @@ -1718,7 +1784,6 @@ share/locale/it/entry.desktop @dirrm share/doc/HTML/it/krdc @dirrm share/doc/HTML/it/kppp @dirrm share/doc/HTML/it/kpilot -@dirrm share/doc/HTML/it/kpercentage @dirrm share/doc/HTML/it/kpat @dirrm share/doc/HTML/it/kpackage @dirrm share/doc/HTML/it/korn @@ -1736,7 +1801,6 @@ share/locale/it/entry.desktop @dirrm share/doc/HTML/it/kolf @dirrm share/doc/HTML/it/knotes @dirrm share/doc/HTML/it/knode -@dirrm share/doc/HTML/it/knewsticker @dirrm share/doc/HTML/it/knetwalk @dirrm share/doc/HTML/it/knetattach @dirrm share/doc/HTML/it/kmplot @@ -1756,6 +1820,36 @@ share/locale/it/entry.desktop @dirrm share/doc/HTML/it/kjumpingcube @dirrm share/doc/HTML/it/kjots @dirrm share/doc/HTML/it/kiten +@dirrm share/doc/HTML/it/kioslave/webdav +@dirrm share/doc/HTML/it/kioslave/thumbnail +@dirrm share/doc/HTML/it/kioslave/telnet +@dirrm share/doc/HTML/it/kioslave/tar +@dirrm share/doc/HTML/it/kioslave/smtp +@dirrm share/doc/HTML/it/kioslave/smb +@dirrm share/doc/HTML/it/kioslave/sftp +@dirrm share/doc/HTML/it/kioslave/rlogin +@dirrm share/doc/HTML/it/kioslave/pop3 +@dirrm share/doc/HTML/it/kioslave/nntp +@dirrm share/doc/HTML/it/kioslave/nfs +@dirrm share/doc/HTML/it/kioslave/news +@dirrm share/doc/HTML/it/kioslave/man +@dirrm share/doc/HTML/it/kioslave/mailto +@dirrm share/doc/HTML/it/kioslave/ldap +@dirrm share/doc/HTML/it/kioslave/info +@dirrm share/doc/HTML/it/kioslave/imap +@dirrm share/doc/HTML/it/kioslave/http +@dirrm share/doc/HTML/it/kioslave/help +@dirrm share/doc/HTML/it/kioslave/gzip +@dirrm share/doc/HTML/it/kioslave/ftp +@dirrm share/doc/HTML/it/kioslave/floppy +@dirrm share/doc/HTML/it/kioslave/fish +@dirrm share/doc/HTML/it/kioslave/finger +@dirrm share/doc/HTML/it/kioslave/file +@dirrm share/doc/HTML/it/kioslave/data +@dirrm share/doc/HTML/it/kioslave/cgi +@dirrm share/doc/HTML/it/kioslave/bzip2 +@dirrm share/doc/HTML/it/kioslave/bookmarks +@dirrm share/doc/HTML/it/kioslave/audiocd @dirrm share/doc/HTML/it/kioslave @dirrm share/doc/HTML/it/kinfocenter/xserver @dirrm share/doc/HTML/it/kinfocenter/usb @@ -1776,6 +1870,7 @@ share/locale/it/entry.desktop @dirrm share/doc/HTML/it/kinfocenter/devices @dirrm share/doc/HTML/it/kinfocenter @dirrm share/doc/HTML/it/kimagemapeditor +@dirrm share/doc/HTML/it/killbots @dirrm share/doc/HTML/it/kig @dirrm share/doc/HTML/it/khelpcenter/visualdict @dirrm share/doc/HTML/it/khelpcenter/userguide @@ -1827,14 +1922,12 @@ share/locale/it/entry.desktop @dirrm share/doc/HTML/it/kcontrol/kcmnotify @dirrm share/doc/HTML/it/kcontrol/kcmlaunch @dirrm share/doc/HTML/it/kcontrol/kcmkonsole -@dirrm share/doc/HTML/it/kcontrol/kcmfontinst @dirrm share/doc/HTML/it/kcontrol/kcmdisplay @dirrm share/doc/HTML/it/kcontrol/kcmcss @dirrm share/doc/HTML/it/kcontrol/kcmaccess @dirrm share/doc/HTML/it/kcontrol/joystick @dirrm share/doc/HTML/it/kcontrol/icons @dirrm share/doc/HTML/it/kcontrol/helpindex -@dirrm share/doc/HTML/it/kcontrol/fonts @dirrm share/doc/HTML/it/kcontrol/fontinst @dirrm share/doc/HTML/it/kcontrol/filetypes @dirrm share/doc/HTML/it/kcontrol/filemanager @@ -1849,6 +1942,7 @@ share/locale/it/entry.desktop @dirrm share/doc/HTML/it/kcontrol/colors @dirrm share/doc/HTML/it/kcontrol/clock @dirrm share/doc/HTML/it/kcontrol/cache +@dirrm share/doc/HTML/it/kcontrol/bookmarks @dirrm share/doc/HTML/it/kcontrol/blockdevices @dirrm share/doc/HTML/it/kcontrol/bell @dirrm share/doc/HTML/it/kcontrol/background @@ -1865,23 +1959,27 @@ share/locale/it/entry.desktop @dirrm share/doc/HTML/it/kbattleship @dirrm share/doc/HTML/it/katomic @dirrm share/doc/HTML/it/kate-plugins -@dirrm share/doc/HTML/it/kate @dirrm share/doc/HTML/it/kapptemplate @dirrm share/doc/HTML/it/kanagram -@dirrm share/doc/HTML/it/kamera @dirrm share/doc/HTML/it/kalzium @dirrm share/doc/HTML/it/kalgebra @dirrm share/doc/HTML/it/kalarm @dirrm share/doc/HTML/it/kaddressbook +@dirrm share/doc/HTML/it/kabcclient @dirrm share/doc/HTML/it/juk @dirrm share/doc/HTML/it/gwenview @dirrm share/doc/HTML/it/dragonplayer @dirrm share/doc/HTML/it/dolphin @dirrm share/doc/HTML/it/bovo +@dirrm share/doc/HTML/it/bomber @dirrm share/doc/HTML/it/blinken @dirrm share/doc/HTML/it/ark @dirrm share/doc/HTML/it/amor @dirrm share/doc/HTML/it/akregator +@dirrm share/apps/step/objinfo/l10n/it +@dirrm share/apps/step/objinfo/l10n +@dirrm share/apps/step/objinfo +@dirrm share/apps/step @dirrm share/apps/kvtml/it @dirrm share/apps/kvtml @dirrm share/apps/ktuberling/sounds/it @@ -1891,3 +1989,8 @@ share/locale/it/entry.desktop @dirrm share/apps/klettres/it/alpha @dirrm share/apps/klettres/it @dirrm share/apps/klettres +@dirrmtry man/it/man8 +@dirrmtry man/it/man7 +@dirrmtry man/it/man6 +@dirrmtry man/it/man1 +@dirrmtry man/it diff --git a/misc/kde4-l10n-kk/distinfo b/misc/kde4-l10n-kk/distinfo index 33fbc585f3b1..c9f4a79d755d 100644 --- a/misc/kde4-l10n-kk/distinfo +++ b/misc/kde4-l10n-kk/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-kk-4.1.4.tar.bz2) = 9c6ae2d6e70b95d6287a46b1d53502e6 -SHA256 (KDE/kde-l10n/kde-l10n-kk-4.1.4.tar.bz2) = 646a0ad6497c43e20aa49281a6f0230f9a71a2fddf244e572498bdd310a7b371 -SIZE (KDE/kde-l10n/kde-l10n-kk-4.1.4.tar.bz2) = 1123821 +MD5 (KDE/kde-l10n/kde-l10n-kk-4.2.0.tar.bz2) = a984ed36132141eb8473ab541187d296 +SHA256 (KDE/kde-l10n/kde-l10n-kk-4.2.0.tar.bz2) = 47b1ab0e131d1db282be5e4fdb9491a5c0e58f6d5e569c9e60bd50401bfa9eef +SIZE (KDE/kde-l10n/kde-l10n-kk-4.2.0.tar.bz2) = 1199131 diff --git a/misc/kde4-l10n-kk/pkg-plist b/misc/kde4-l10n-kk/pkg-plist index 232a84df02e6..9e174fff57b5 100644 --- a/misc/kde4-l10n-kk/pkg-plist +++ b/misc/kde4-l10n-kk/pkg-plist @@ -27,7 +27,6 @@ share/locale/kk/LC_MESSAGES/katefiletemplates.mo share/locale/kk/LC_MESSAGES/katehelloworld.mo share/locale/kk/LC_MESSAGES/katehtmltools.mo share/locale/kk/LC_MESSAGES/katekjswrapper.mo -share/locale/kk/LC_MESSAGES/katemake.mo share/locale/kk/LC_MESSAGES/kateopenheader.mo share/locale/kk/LC_MESSAGES/katepart4.mo share/locale/kk/LC_MESSAGES/katepybrowse.mo @@ -41,10 +40,17 @@ share/locale/kk/LC_MESSAGES/kblankscrn.mo share/locale/kk/LC_MESSAGES/kcalc.mo share/locale/kk/LC_MESSAGES/kcertpart.mo share/locale/kk/LC_MESSAGES/kcharselect.mo +share/locale/kk/LC_MESSAGES/kcm_autostart.mo +share/locale/kk/LC_MESSAGES/kcm_desktopthemedetails.mo +share/locale/kk/LC_MESSAGES/kcm_emoticons.mo share/locale/kk/LC_MESSAGES/kcm_krfb.mo +share/locale/kk/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/kk/LC_MESSAGES/kcm_memory.mo +share/locale/kk/LC_MESSAGES/kcm_partition.mo +share/locale/kk/LC_MESSAGES/kcm_pci.mo share/locale/kk/LC_MESSAGES/kcm_phonon.mo -share/locale/kk/LC_MESSAGES/kcm_phononxine.mo share/locale/kk/LC_MESSAGES/kcm_solid.mo +share/locale/kk/LC_MESSAGES/kcm_standard_actions.mo share/locale/kk/LC_MESSAGES/kcmaccess.mo share/locale/kk/LC_MESSAGES/kcmaudiocd.mo share/locale/kk/LC_MESSAGES/kcmbackground.mo @@ -67,6 +73,7 @@ share/locale/kk/LC_MESSAGES/kcmkabconfig.mo share/locale/kk/LC_MESSAGES/kcmkclock.mo share/locale/kk/LC_MESSAGES/kcmkded.mo share/locale/kk/LC_MESSAGES/kcmkdnssd.mo +share/locale/kk/LC_MESSAGES/kcmkeyboard.mo share/locale/kk/LC_MESSAGES/kcmkeys.mo share/locale/kk/LC_MESSAGES/kcmkgamma.mo share/locale/kk/LC_MESSAGES/kcmkio.mo @@ -83,14 +90,15 @@ share/locale/kk/LC_MESSAGES/kcmlilo.mo share/locale/kk/LC_MESSAGES/kcmlocale.mo share/locale/kk/LC_MESSAGES/kcmnic.mo share/locale/kk/LC_MESSAGES/kcmnotify.mo +share/locale/kk/LC_MESSAGES/kcmopengl.mo share/locale/kk/LC_MESSAGES/kcmperformance.mo share/locale/kk/LC_MESSAGES/kcmsamba.mo share/locale/kk/LC_MESSAGES/kcmscreensaver.mo share/locale/kk/LC_MESSAGES/kcmshell.mo share/locale/kk/LC_MESSAGES/kcmsmartcard.mo share/locale/kk/LC_MESSAGES/kcmsmserver.mo +share/locale/kk/LC_MESSAGES/kcmsolidproc.mo share/locale/kk/LC_MESSAGES/kcmstyle.mo -share/locale/kk/LC_MESSAGES/kcmtaskbar.mo share/locale/kk/LC_MESSAGES/kcmusb.mo share/locale/kk/LC_MESSAGES/kcmview1394.mo share/locale/kk/LC_MESSAGES/kcmxinerama.mo @@ -98,6 +106,7 @@ share/locale/kk/LC_MESSAGES/kcron.mo share/locale/kk/LC_MESSAGES/kdat.mo share/locale/kk/LC_MESSAGES/kde-menu.mo share/locale/kk/LC_MESSAGES/kdebugdialog.mo +share/locale/kk/LC_MESSAGES/kded_phononserver.mo share/locale/kk/LC_MESSAGES/kdelibs4.mo share/locale/kk/LC_MESSAGES/kdelibs_colors4.mo share/locale/kk/LC_MESSAGES/kdepasswd.mo @@ -138,17 +147,21 @@ share/locale/kk/LC_MESSAGES/kfindpart.mo share/locale/kk/LC_MESSAGES/kfloppy.mo share/locale/kk/LC_MESSAGES/kfmclient.mo share/locale/kk/LC_MESSAGES/kfontinst.mo +share/locale/kk/LC_MESSAGES/kgeography.mo share/locale/kk/LC_MESSAGES/kget.mo share/locale/kk/LC_MESSAGES/kgpg.mo share/locale/kk/LC_MESSAGES/kgreet_classic.mo +share/locale/kk/LC_MESSAGES/kgreet_generic.mo share/locale/kk/LC_MESSAGES/kgreet_winbind.mo share/locale/kk/LC_MESSAGES/khelpcenter.mo share/locale/kk/LC_MESSAGES/khotkeys.mo share/locale/kk/LC_MESSAGES/khotnewstuff.mo share/locale/kk/LC_MESSAGES/khtmlkttsd.mo +share/locale/kk/LC_MESSAGES/kiconfinder.mo share/locale/kk/LC_MESSAGES/kinetd.mo share/locale/kk/LC_MESSAGES/kinfocenter.mo share/locale/kk/LC_MESSAGES/kio4.mo +share/locale/kk/LC_MESSAGES/kio_applications.mo share/locale/kk/LC_MESSAGES/kio_archive.mo share/locale/kk/LC_MESSAGES/kio_audiocd.mo share/locale/kk/LC_MESSAGES/kio_finger.mo @@ -164,7 +177,6 @@ share/locale/kk/LC_MESSAGES/kio_nfs.mo share/locale/kk/LC_MESSAGES/kio_nntp.mo share/locale/kk/LC_MESSAGES/kio_pop3.mo share/locale/kk/LC_MESSAGES/kio_remote.mo -share/locale/kk/LC_MESSAGES/kio_settings.mo share/locale/kk/LC_MESSAGES/kio_sftp.mo share/locale/kk/LC_MESSAGES/kio_sieve.mo share/locale/kk/LC_MESSAGES/kio_smb.mo @@ -236,7 +248,6 @@ share/locale/kk/LC_MESSAGES/ktexteditor_plugins.mo share/locale/kk/LC_MESSAGES/kthememanager.mo share/locale/kk/LC_MESSAGES/ktimer.mo share/locale/kk/LC_MESSAGES/ktimetracker.mo -share/locale/kk/LC_MESSAGES/ktnef.mo share/locale/kk/LC_MESSAGES/ktraderclient.mo share/locale/kk/LC_MESSAGES/kuiserver.mo share/locale/kk/LC_MESSAGES/kurifilter.mo @@ -276,9 +287,12 @@ share/locale/kk/LC_MESSAGES/plasma_applet_clock.mo share/locale/kk/LC_MESSAGES/plasma_applet_desktop.mo share/locale/kk/LC_MESSAGES/plasma_applet_devicenotifier.mo share/locale/kk/LC_MESSAGES/plasma_applet_dig_clock.mo -share/locale/kk/LC_MESSAGES/plasma_applet_knewsticker.mo -share/locale/kk/LC_MESSAGES/plasma_engine_dict.mo +share/locale/kk/LC_MESSAGES/plasma_runner_locations.mo +share/locale/kk/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/kk/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/kk/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/kk/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/kk/LC_MESSAGES/powerdevil.mo share/locale/kk/LC_MESSAGES/processcore.mo share/locale/kk/LC_MESSAGES/processui.mo share/locale/kk/LC_MESSAGES/solid-bluetooth.mo @@ -293,5 +307,3 @@ share/locale/kk/LC_MESSAGES/systemsettings.mo share/locale/kk/LC_MESSAGES/timezones4.mo share/locale/kk/LC_MESSAGES/useraccount.mo share/locale/kk/entry.desktop -@dirrm share/locale/kk/LC_MESSAGES -@dirrm share/locale/kk diff --git a/misc/kde4-l10n-km/distinfo b/misc/kde4-l10n-km/distinfo index 7f9a3a25ddec..f86f68b7a020 100644 --- a/misc/kde4-l10n-km/distinfo +++ b/misc/kde4-l10n-km/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-km-4.1.4.tar.bz2) = 4df0089cebfea89a9f4a3287df90f0a7 -SHA256 (KDE/kde-l10n/kde-l10n-km-4.1.4.tar.bz2) = 867b91613f773a4d2be0fe01b6113bf8e32f6fd10cd5d073fa1f599816ed0bea -SIZE (KDE/kde-l10n/kde-l10n-km-4.1.4.tar.bz2) = 1695416 +MD5 (KDE/kde-l10n/kde-l10n-km-4.2.0.tar.bz2) = a8aaca814f556e3e8b3cd99f04eddca6 +SHA256 (KDE/kde-l10n/kde-l10n-km-4.2.0.tar.bz2) = 639d132bf274baffc47650147d23545edfaa2b9d4808d048728bc61f4469becb +SIZE (KDE/kde-l10n/kde-l10n-km-4.2.0.tar.bz2) = 1800515 diff --git a/misc/kde4-l10n-km/pkg-plist b/misc/kde4-l10n-km/pkg-plist index e77a911e94dc..9390a6e99e60 100644 --- a/misc/kde4-l10n-km/pkg-plist +++ b/misc/kde4-l10n-km/pkg-plist @@ -1,3 +1,4 @@ +share/locale/km/LC_MESSAGES/akonaditray.mo share/locale/km/LC_MESSAGES/akregator.mo share/locale/km/LC_MESSAGES/amor.mo share/locale/km/LC_MESSAGES/ark.mo @@ -5,6 +6,7 @@ share/locale/km/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/km/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/km/LC_MESSAGES/audiorename_plugin.mo share/locale/km/LC_MESSAGES/blinken.mo +share/locale/km/LC_MESSAGES/bomber.mo share/locale/km/LC_MESSAGES/bovo.mo share/locale/km/LC_MESSAGES/cervisia.mo share/locale/km/LC_MESSAGES/cvsservice.mo @@ -19,6 +21,7 @@ share/locale/km/LC_MESSAGES/imagerename_plugin.mo share/locale/km/LC_MESSAGES/joystick.mo share/locale/km/LC_MESSAGES/juk.mo share/locale/km/LC_MESSAGES/kabc.mo +share/locale/km/LC_MESSAGES/kabc_akonadi.mo share/locale/km/LC_MESSAGES/kabc_dir.mo share/locale/km/LC_MESSAGES/kabc_file.mo share/locale/km/LC_MESSAGES/kabc_ldapkio.mo @@ -32,9 +35,13 @@ share/locale/km/LC_MESSAGES/kaddressbook.mo share/locale/km/LC_MESSAGES/kalarm.mo share/locale/km/LC_MESSAGES/kalgebra.mo share/locale/km/LC_MESSAGES/kalzium.mo +share/locale/km/LC_MESSAGES/kalzium_qt.mo share/locale/km/LC_MESSAGES/kanagram.mo +share/locale/km/LC_MESSAGES/kapman.mo share/locale/km/LC_MESSAGES/kappfinder.mo +share/locale/km/LC_MESSAGES/kate-ctags-plugin.mo share/locale/km/LC_MESSAGES/kate.mo +share/locale/km/LC_MESSAGES/katebuild-plugin.mo share/locale/km/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/km/LC_MESSAGES/katefilebrowserplugin.mo share/locale/km/LC_MESSAGES/katefiletemplates.mo @@ -45,7 +52,6 @@ share/locale/km/LC_MESSAGES/kateinsertcommand.mo share/locale/km/LC_MESSAGES/katekjswrapper.mo share/locale/km/LC_MESSAGES/katekonsoleplugin.mo share/locale/km/LC_MESSAGES/katemailfilesplugin.mo -share/locale/km/LC_MESSAGES/katemake.mo share/locale/km/LC_MESSAGES/kateopenheader.mo share/locale/km/LC_MESSAGES/katepart4.mo share/locale/km/LC_MESSAGES/katepybrowse.mo @@ -60,19 +66,28 @@ share/locale/km/LC_MESSAGES/katomic.mo share/locale/km/LC_MESSAGES/kbattleship.mo share/locale/km/LC_MESSAGES/kblackbox.mo share/locale/km/LC_MESSAGES/kblankscrn.mo +share/locale/km/LC_MESSAGES/kblocks.mo share/locale/km/LC_MESSAGES/kbounce.mo +share/locale/km/LC_MESSAGES/kbreakout.mo share/locale/km/LC_MESSAGES/kbruch.mo -share/locale/km/LC_MESSAGES/kbstateapplet.mo share/locale/km/LC_MESSAGES/kbugbuster.mo share/locale/km/LC_MESSAGES/kcachegrind.mo share/locale/km/LC_MESSAGES/kcalc.mo share/locale/km/LC_MESSAGES/kcertpart.mo share/locale/km/LC_MESSAGES/kcharselect.mo +share/locale/km/LC_MESSAGES/kcm_akonadi.mo +share/locale/km/LC_MESSAGES/kcm_autostart.mo +share/locale/km/LC_MESSAGES/kcm_desktopthemedetails.mo +share/locale/km/LC_MESSAGES/kcm_emoticons.mo share/locale/km/LC_MESSAGES/kcm_krfb.mo share/locale/km/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/km/LC_MESSAGES/kcm_memory.mo +share/locale/km/LC_MESSAGES/kcm_partition.mo +share/locale/km/LC_MESSAGES/kcm_pci.mo share/locale/km/LC_MESSAGES/kcm_phonon.mo share/locale/km/LC_MESSAGES/kcm_phononxine.mo share/locale/km/LC_MESSAGES/kcm_solid.mo +share/locale/km/LC_MESSAGES/kcm_standard_actions.mo share/locale/km/LC_MESSAGES/kcmaccess.mo share/locale/km/LC_MESSAGES/kcmaudiocd.mo share/locale/km/LC_MESSAGES/kcmbackground.mo @@ -113,14 +128,15 @@ share/locale/km/LC_MESSAGES/kcmlilo.mo share/locale/km/LC_MESSAGES/kcmlocale.mo share/locale/km/LC_MESSAGES/kcmnic.mo share/locale/km/LC_MESSAGES/kcmnotify.mo +share/locale/km/LC_MESSAGES/kcmopengl.mo share/locale/km/LC_MESSAGES/kcmperformance.mo share/locale/km/LC_MESSAGES/kcmsamba.mo share/locale/km/LC_MESSAGES/kcmscreensaver.mo share/locale/km/LC_MESSAGES/kcmshell.mo share/locale/km/LC_MESSAGES/kcmsmartcard.mo share/locale/km/LC_MESSAGES/kcmsmserver.mo +share/locale/km/LC_MESSAGES/kcmsolidproc.mo share/locale/km/LC_MESSAGES/kcmstyle.mo -share/locale/km/LC_MESSAGES/kcmtaskbar.mo share/locale/km/LC_MESSAGES/kcmusb.mo share/locale/km/LC_MESSAGES/kcmview1394.mo share/locale/km/LC_MESSAGES/kcmxinerama.mo @@ -129,6 +145,7 @@ share/locale/km/LC_MESSAGES/kcron.mo share/locale/km/LC_MESSAGES/kdat.mo share/locale/km/LC_MESSAGES/kde-menu.mo share/locale/km/LC_MESSAGES/kdebugdialog.mo +share/locale/km/LC_MESSAGES/kded_phononserver.mo share/locale/km/LC_MESSAGES/kdelibs4.mo share/locale/km/LC_MESSAGES/kdelibs_colors4.mo share/locale/km/LC_MESSAGES/kdepasswd.mo @@ -139,8 +156,10 @@ share/locale/km/LC_MESSAGES/kdessh.mo share/locale/km/LC_MESSAGES/kdesu.mo share/locale/km/LC_MESSAGES/kdesud.mo share/locale/km/LC_MESSAGES/kdf.mo +share/locale/km/LC_MESSAGES/kdgantt.mo share/locale/km/LC_MESSAGES/kdgantt1.mo share/locale/km/LC_MESSAGES/kdialog.mo +share/locale/km/LC_MESSAGES/kdiamond.mo share/locale/km/LC_MESSAGES/kdmconfig.mo share/locale/km/LC_MESSAGES/kdmgreet.mo share/locale/km/LC_MESSAGES/keditbookmarks.mo @@ -178,19 +197,23 @@ share/locale/km/LC_MESSAGES/kget.mo share/locale/km/LC_MESSAGES/kgoldrunner.mo share/locale/km/LC_MESSAGES/kgpg.mo share/locale/km/LC_MESSAGES/kgreet_classic.mo +share/locale/km/LC_MESSAGES/kgreet_generic.mo share/locale/km/LC_MESSAGES/kgreet_winbind.mo share/locale/km/LC_MESSAGES/khangman.mo share/locale/km/LC_MESSAGES/khelpcenter.mo share/locale/km/LC_MESSAGES/khotkeys.mo share/locale/km/LC_MESSAGES/khotnewstuff.mo share/locale/km/LC_MESSAGES/khtmlkttsd.mo +share/locale/km/LC_MESSAGES/kiconfinder.mo share/locale/km/LC_MESSAGES/kig.mo share/locale/km/LC_MESSAGES/kimagemapeditor.mo share/locale/km/LC_MESSAGES/kinetd.mo share/locale/km/LC_MESSAGES/kinfocenter.mo share/locale/km/LC_MESSAGES/kio4.mo +share/locale/km/LC_MESSAGES/kio_applications.mo share/locale/km/LC_MESSAGES/kio_archive.mo share/locale/km/LC_MESSAGES/kio_audiocd.mo +share/locale/km/LC_MESSAGES/kio_bookmarks.mo share/locale/km/LC_MESSAGES/kio_finger.mo share/locale/km/LC_MESSAGES/kio_fish.mo share/locale/km/LC_MESSAGES/kio_floppy.mo @@ -201,11 +224,11 @@ share/locale/km/LC_MESSAGES/kio_jabberdisco.mo share/locale/km/LC_MESSAGES/kio_ldap.mo share/locale/km/LC_MESSAGES/kio_man.mo share/locale/km/LC_MESSAGES/kio_mbox.mo +share/locale/km/LC_MESSAGES/kio_nepomuksearch.mo share/locale/km/LC_MESSAGES/kio_nfs.mo share/locale/km/LC_MESSAGES/kio_nntp.mo share/locale/km/LC_MESSAGES/kio_pop3.mo share/locale/km/LC_MESSAGES/kio_remote.mo -share/locale/km/LC_MESSAGES/kio_settings.mo share/locale/km/LC_MESSAGES/kio_sftp.mo share/locale/km/LC_MESSAGES/kio_sieve.mo share/locale/km/LC_MESSAGES/kio_smb.mo @@ -251,6 +274,7 @@ share/locale/km/LC_MESSAGES/knotes.mo share/locale/km/LC_MESSAGES/knotify4.mo share/locale/km/LC_MESSAGES/kode.mo share/locale/km/LC_MESSAGES/kolf.mo +share/locale/km/LC_MESSAGES/kollision.mo share/locale/km/LC_MESSAGES/kolourpaint.mo share/locale/km/LC_MESSAGES/kommander.mo share/locale/km/LC_MESSAGES/kompare.mo @@ -259,6 +283,7 @@ share/locale/km/LC_MESSAGES/konquest.mo share/locale/km/LC_MESSAGES/konsole.mo share/locale/km/LC_MESSAGES/konsolekalendar.mo share/locale/km/LC_MESSAGES/kontact.mo +share/locale/km/LC_MESSAGES/kontactinterfaces.mo share/locale/km/LC_MESSAGES/kopete.mo share/locale/km/LC_MESSAGES/korganizer.mo share/locale/km/LC_MESSAGES/korn.mo @@ -266,7 +291,6 @@ share/locale/km/LC_MESSAGES/kpackage.mo share/locale/km/LC_MESSAGES/kpartsaver.mo share/locale/km/LC_MESSAGES/kpasswdserver.mo share/locale/km/LC_MESSAGES/kpat.mo -share/locale/km/LC_MESSAGES/kpercentage.mo share/locale/km/LC_MESSAGES/kpilot.mo share/locale/km/LC_MESSAGES/kppp.mo share/locale/km/LC_MESSAGES/kppplogview.mo @@ -290,16 +314,12 @@ share/locale/km/LC_MESSAGES/kreversi.mo share/locale/km/LC_MESSAGES/krfb.mo share/locale/km/LC_MESSAGES/kruler.mo share/locale/km/LC_MESSAGES/krunner.mo -share/locale/km/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/km/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/km/LC_MESSAGES/krunner_contacts.mo -share/locale/km/LC_MESSAGES/krunner_converterrunner.mo -share/locale/km/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/km/LC_MESSAGES/krunner_webshortcutsrunner.mo share/locale/km/LC_MESSAGES/ksame.mo +share/locale/km/LC_MESSAGES/ksaneplugin.mo share/locale/km/LC_MESSAGES/ksayit.mo share/locale/km/LC_MESSAGES/kscd.mo share/locale/km/LC_MESSAGES/kscreensaver.mo +share/locale/km/LC_MESSAGES/ksendemail.mo share/locale/km/LC_MESSAGES/kshisen.mo share/locale/km/LC_MESSAGES/kshorturifilter.mo share/locale/km/LC_MESSAGES/ksirk.mo @@ -316,6 +336,7 @@ share/locale/km/LC_MESSAGES/kstyle_keramik_config.mo share/locale/km/LC_MESSAGES/kstyle_phase_config.mo share/locale/km/LC_MESSAGES/ksudoku.mo share/locale/km/LC_MESSAGES/ksysguard.mo +share/locale/km/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/km/LC_MESSAGES/ksystemlog.mo share/locale/km/LC_MESSAGES/ksystraycmd.mo share/locale/km/LC_MESSAGES/ksysv.mo @@ -325,7 +346,6 @@ share/locale/km/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/km/LC_MESSAGES/kthememanager.mo share/locale/km/LC_MESSAGES/ktimer.mo share/locale/km/LC_MESSAGES/ktimetracker.mo -share/locale/km/LC_MESSAGES/ktnef.mo share/locale/km/LC_MESSAGES/ktouch.mo share/locale/km/LC_MESSAGES/ktraderclient.mo share/locale/km/LC_MESSAGES/kttsd.mo @@ -336,6 +356,7 @@ share/locale/km/LC_MESSAGES/kuiserver.mo share/locale/km/LC_MESSAGES/kuiviewer.mo share/locale/km/LC_MESSAGES/kurifilter.mo share/locale/km/LC_MESSAGES/kuser.mo +share/locale/km/LC_MESSAGES/kwalletd.mo share/locale/km/LC_MESSAGES/kwalletmanager.mo share/locale/km/LC_MESSAGES/kwatchgnupg.mo share/locale/km/LC_MESSAGES/kweather.mo @@ -344,6 +365,7 @@ share/locale/km/LC_MESSAGES/kwin_art_clients.mo share/locale/km/LC_MESSAGES/kwin_clients.mo share/locale/km/LC_MESSAGES/kwin_effects.mo share/locale/km/LC_MESSAGES/kwin_lib.mo +share/locale/km/LC_MESSAGES/kwinstartmenu.mo share/locale/km/LC_MESSAGES/kwordquiz.mo share/locale/km/LC_MESSAGES/kwrite.mo share/locale/km/LC_MESSAGES/kwriteconfig.mo @@ -380,18 +402,24 @@ share/locale/km/LC_MESSAGES/libkxmlrpcclient.mo share/locale/km/LC_MESSAGES/libmailtransport.mo share/locale/km/LC_MESSAGES/libphonon.mo share/locale/km/LC_MESSAGES/libplasma.mo +share/locale/km/LC_MESSAGES/libplasmaclock.mo share/locale/km/LC_MESSAGES/libtaskmanager.mo share/locale/km/LC_MESSAGES/lokalize.mo share/locale/km/LC_MESSAGES/lskat.mo share/locale/km/LC_MESSAGES/marble.mo +share/locale/km/LC_MESSAGES/marble_qt.mo share/locale/km/LC_MESSAGES/nepomuk.mo +share/locale/km/LC_MESSAGES/nepomuksearch.mo share/locale/km/LC_MESSAGES/nsplugin.mo share/locale/km/LC_MESSAGES/okteta.mo share/locale/km/LC_MESSAGES/oktetapart.mo share/locale/km/LC_MESSAGES/okular.mo share/locale/km/LC_MESSAGES/okular_chm.mo +share/locale/km/LC_MESSAGES/okular_comicbook.mo share/locale/km/LC_MESSAGES/okular_djvu.mo share/locale/km/LC_MESSAGES/okular_dvi.mo +share/locale/km/LC_MESSAGES/okular_epub.mo +share/locale/km/LC_MESSAGES/okular_fax.mo share/locale/km/LC_MESSAGES/okular_fictionbook.mo share/locale/km/LC_MESSAGES/okular_ghostview.mo share/locale/km/LC_MESSAGES/okular_kimgio.mo @@ -403,10 +431,15 @@ share/locale/km/LC_MESSAGES/okular_xps.mo share/locale/km/LC_MESSAGES/parley.mo share/locale/km/LC_MESSAGES/phonon-xine.mo share/locale/km/LC_MESSAGES/phonon_kde.mo +share/locale/km/LC_MESSAGES/plasma-overlay.mo +share/locale/km/LC_MESSAGES/plasma-shells-common.mo share/locale/km/LC_MESSAGES/plasma.mo share/locale/km/LC_MESSAGES/plasma_applet_battery.mo +share/locale/km/LC_MESSAGES/plasma_applet_bball.mo share/locale/km/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/km/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/km/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/km/LC_MESSAGES/plasma_applet_charselect.mo share/locale/km/LC_MESSAGES/plasma_applet_clock.mo share/locale/km/LC_MESSAGES/plasma_applet_comic.mo share/locale/km/LC_MESSAGES/plasma_applet_desktop.mo @@ -415,21 +448,65 @@ share/locale/km/LC_MESSAGES/plasma_applet_dict.mo share/locale/km/LC_MESSAGES/plasma_applet_dig_clock.mo share/locale/km/LC_MESSAGES/plasma_applet_fifteenPuzzle.mo share/locale/km/LC_MESSAGES/plasma_applet_fileWatcher.mo +share/locale/km/LC_MESSAGES/plasma_applet_folderview.mo share/locale/km/LC_MESSAGES/plasma_applet_frame.mo share/locale/km/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/km/LC_MESSAGES/plasma_applet_incomingmsg.mo +share/locale/km/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/km/LC_MESSAGES/plasma_applet_kalzium.mo +share/locale/km/LC_MESSAGES/plasma_applet_katesession.mo share/locale/km/LC_MESSAGES/plasma_applet_kget.mo -share/locale/km/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/km/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/km/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/km/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/km/LC_MESSAGES/plasma_applet_life.mo +share/locale/km/LC_MESSAGES/plasma_applet_luna.mo +share/locale/km/LC_MESSAGES/plasma_applet_news.mo share/locale/km/LC_MESSAGES/plasma_applet_notes.mo share/locale/km/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/km/LC_MESSAGES/plasma_applet_pager.mo +share/locale/km/LC_MESSAGES/plasma_applet_panel.mo +share/locale/km/LC_MESSAGES/plasma_applet_paste.mo +share/locale/km/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/km/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/km/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/km/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/km/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/km/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/km/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/km/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/km/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/km/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/km/LC_MESSAGES/plasma_applet_timer.mo share/locale/km/LC_MESSAGES/plasma_applet_trash.mo share/locale/km/LC_MESSAGES/plasma_applet_twitter.mo -share/locale/km/LC_MESSAGES/plasma_engine_dict.mo +share/locale/km/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/km/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/km/LC_MESSAGES/plasma_appletscript_qedje.mo +share/locale/km/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo +share/locale/km/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/km/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/km/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/km/LC_MESSAGES/plasma_engine_rss.mo +share/locale/km/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/km/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/km/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/km/LC_MESSAGES/plasma_runner_locations.mo +share/locale/km/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/km/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/km/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/km/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/km/LC_MESSAGES/plasma_runner_shell.mo +share/locale/km/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/km/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/km/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/km/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/km/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/km/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/km/LC_MESSAGES/plasmapkg.mo +share/locale/km/LC_MESSAGES/plasmoidviewer.mo +share/locale/km/LC_MESSAGES/powerdevil.mo +share/locale/km/LC_MESSAGES/printer-applet.mo share/locale/km/LC_MESSAGES/processcore.mo share/locale/km/LC_MESSAGES/processui.mo share/locale/km/LC_MESSAGES/solid-bluetooth.mo @@ -440,6 +517,7 @@ share/locale/km/LC_MESSAGES/solidcontrol.mo share/locale/km/LC_MESSAGES/soliduiserver.mo share/locale/km/LC_MESSAGES/spy.mo share/locale/km/LC_MESSAGES/step.mo +share/locale/km/LC_MESSAGES/step_qt.mo share/locale/km/LC_MESSAGES/strigila_diff.mo share/locale/km/LC_MESSAGES/superkaramba.mo share/locale/km/LC_MESSAGES/svgpart.mo @@ -450,5 +528,3 @@ share/locale/km/LC_MESSAGES/umbrello.mo share/locale/km/LC_MESSAGES/useraccount.mo share/locale/km/entry.desktop share/locale/km/flag.png -@dirrm share/locale/km/LC_MESSAGES -@dirrm share/locale/km diff --git a/misc/kde4-l10n-kn/Makefile b/misc/kde4-l10n-kn/Makefile new file mode 100644 index 000000000000..8e7849fc9deb --- /dev/null +++ b/misc/kde4-l10n-kn/Makefile @@ -0,0 +1,21 @@ +# New ports collection makefile for: misc/kde4-l10n-kn +# Date created: 2009-01-25 +# Whom: Max Brazhnikov <makc@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= kde-l10n +PORTVERSION= ${KDE4_VERSION} +CATEGORIES= misc kde + +MAINTAINER= kde@FreeBSD.org +COMMENT= Kannada messages and documentation for KDE4 + +KDE4_L10N= kn + +post-extract: + ${MKDIR} ${WRKSRC}/build + +.include "${.CURDIR}/../../misc/kde4-l10n/files/bsd.l10n.mk" +.include <bsd.port.mk> diff --git a/misc/kde4-l10n-kn/distinfo b/misc/kde4-l10n-kn/distinfo new file mode 100644 index 000000000000..4d5e4a01a9a6 --- /dev/null +++ b/misc/kde4-l10n-kn/distinfo @@ -0,0 +1,3 @@ +MD5 (KDE/kde-l10n/kde-l10n-kn-4.2.0.tar.bz2) = c4f4b6591d8999557a66288e4d4d093f +SHA256 (KDE/kde-l10n/kde-l10n-kn-4.2.0.tar.bz2) = e43928d32fda8c137e3e5c62a2bbb485c51a4b5086332d207df6392a2169273e +SIZE (KDE/kde-l10n/kde-l10n-kn-4.2.0.tar.bz2) = 315021 diff --git a/misc/kde4-l10n-kn/pkg-descr b/misc/kde4-l10n-kn/pkg-descr new file mode 100644 index 000000000000..3073b1096b79 --- /dev/null +++ b/misc/kde4-l10n-kn/pkg-descr @@ -0,0 +1,3 @@ +Localized messages and documentation for KDE4. + +WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-kn/pkg-plist b/misc/kde4-l10n-kn/pkg-plist new file mode 100644 index 000000000000..ec605cb07274 --- /dev/null +++ b/misc/kde4-l10n-kn/pkg-plist @@ -0,0 +1,167 @@ +share/locale/kn/LC_MESSAGES/display.mo +share/locale/kn/LC_MESSAGES/dolphin.mo +share/locale/kn/LC_MESSAGES/drkonqi.mo +share/locale/kn/LC_MESSAGES/filetypes.mo +share/locale/kn/LC_MESSAGES/htmlsearch.mo +share/locale/kn/LC_MESSAGES/joystick.mo +share/locale/kn/LC_MESSAGES/kaccess.mo +share/locale/kn/LC_MESSAGES/kappfinder.mo +share/locale/kn/LC_MESSAGES/kblankscrn.mo +share/locale/kn/LC_MESSAGES/kcm_autostart.mo +share/locale/kn/LC_MESSAGES/kcm_desktopthemedetails.mo +share/locale/kn/LC_MESSAGES/kcm_emoticons.mo +share/locale/kn/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/kn/LC_MESSAGES/kcm_memory.mo +share/locale/kn/LC_MESSAGES/kcm_partition.mo +share/locale/kn/LC_MESSAGES/kcm_pci.mo +share/locale/kn/LC_MESSAGES/kcm_phonon.mo +share/locale/kn/LC_MESSAGES/kcm_phononxine.mo +share/locale/kn/LC_MESSAGES/kcm_solid.mo +share/locale/kn/LC_MESSAGES/kcm_standard_actions.mo +share/locale/kn/LC_MESSAGES/kcmaccess.mo +share/locale/kn/LC_MESSAGES/kcmbackground.mo +share/locale/kn/LC_MESSAGES/kcmbell.mo +share/locale/kn/LC_MESSAGES/kcmcgi.mo +share/locale/kn/LC_MESSAGES/kcmcolors.mo +share/locale/kn/LC_MESSAGES/kcmcomponentchooser.mo +share/locale/kn/LC_MESSAGES/kcmcss.mo +share/locale/kn/LC_MESSAGES/kcmenergy.mo +share/locale/kn/LC_MESSAGES/kcmfonts.mo +share/locale/kn/LC_MESSAGES/kcmhtmlsearch.mo +share/locale/kn/LC_MESSAGES/kcmicons.mo +share/locale/kn/LC_MESSAGES/kcminfo.mo +share/locale/kn/LC_MESSAGES/kcminit.mo +share/locale/kn/LC_MESSAGES/kcminput.mo +share/locale/kn/LC_MESSAGES/kcmioslaveinfo.mo +share/locale/kn/LC_MESSAGES/kcmkclock.mo +share/locale/kn/LC_MESSAGES/kcmkded.mo +share/locale/kn/LC_MESSAGES/kcmkdnssd.mo +share/locale/kn/LC_MESSAGES/kcmkeyboard.mo +share/locale/kn/LC_MESSAGES/kcmkeys.mo +share/locale/kn/LC_MESSAGES/kcmkio.mo +share/locale/kn/LC_MESSAGES/kcmkonq.mo +share/locale/kn/LC_MESSAGES/kcmkonqhtml.mo +share/locale/kn/LC_MESSAGES/kcmkurifilt.mo +share/locale/kn/LC_MESSAGES/kcmkwincompositing.mo +share/locale/kn/LC_MESSAGES/kcmkwindecoration.mo +share/locale/kn/LC_MESSAGES/kcmkwinrules.mo +share/locale/kn/LC_MESSAGES/kcmkwm.mo +share/locale/kn/LC_MESSAGES/kcmlaunch.mo +share/locale/kn/LC_MESSAGES/kcmlocale.mo +share/locale/kn/LC_MESSAGES/kcmnic.mo +share/locale/kn/LC_MESSAGES/kcmnotify.mo +share/locale/kn/LC_MESSAGES/kcmopengl.mo +share/locale/kn/LC_MESSAGES/kcmperformance.mo +share/locale/kn/LC_MESSAGES/kcmsamba.mo +share/locale/kn/LC_MESSAGES/kcmscreensaver.mo +share/locale/kn/LC_MESSAGES/kcmshell.mo +share/locale/kn/LC_MESSAGES/kcmsmartcard.mo +share/locale/kn/LC_MESSAGES/kcmsmserver.mo +share/locale/kn/LC_MESSAGES/kcmsolidproc.mo +share/locale/kn/LC_MESSAGES/kcmstyle.mo +share/locale/kn/LC_MESSAGES/kcmusb.mo +share/locale/kn/LC_MESSAGES/kcmview1394.mo +share/locale/kn/LC_MESSAGES/kcmxinerama.mo +share/locale/kn/LC_MESSAGES/kde-menu.mo +share/locale/kn/LC_MESSAGES/kdebugdialog.mo +share/locale/kn/LC_MESSAGES/kded_phononserver.mo +share/locale/kn/LC_MESSAGES/kdelibs4.mo +share/locale/kn/LC_MESSAGES/kdepasswd.mo +share/locale/kn/LC_MESSAGES/kdesu.mo +share/locale/kn/LC_MESSAGES/kdesud.mo +share/locale/kn/LC_MESSAGES/kdialog.mo +share/locale/kn/LC_MESSAGES/kdmconfig.mo +share/locale/kn/LC_MESSAGES/kdmgreet.mo +share/locale/kn/LC_MESSAGES/keditbookmarks.mo +share/locale/kn/LC_MESSAGES/kfile.mo +share/locale/kn/LC_MESSAGES/kfindpart.mo +share/locale/kn/LC_MESSAGES/kfmclient.mo +share/locale/kn/LC_MESSAGES/kfontinst.mo +share/locale/kn/LC_MESSAGES/kgreet_classic.mo +share/locale/kn/LC_MESSAGES/kgreet_generic.mo +share/locale/kn/LC_MESSAGES/kgreet_winbind.mo +share/locale/kn/LC_MESSAGES/khelpcenter.mo +share/locale/kn/LC_MESSAGES/khotkeys.mo +share/locale/kn/LC_MESSAGES/khotnewstuff.mo +share/locale/kn/LC_MESSAGES/khtmlkttsd.mo +share/locale/kn/LC_MESSAGES/kiconfinder.mo +share/locale/kn/LC_MESSAGES/kinfocenter.mo +share/locale/kn/LC_MESSAGES/kio_applications.mo +share/locale/kn/LC_MESSAGES/kio_archive.mo +share/locale/kn/LC_MESSAGES/kio_bookmarks.mo +share/locale/kn/LC_MESSAGES/kio_finger.mo +share/locale/kn/LC_MESSAGES/kio_fish.mo +share/locale/kn/LC_MESSAGES/kio_floppy.mo +share/locale/kn/LC_MESSAGES/kio_ldap.mo +share/locale/kn/LC_MESSAGES/kio_man.mo +share/locale/kn/LC_MESSAGES/kio_nepomuksearch.mo +share/locale/kn/LC_MESSAGES/kio_nfs.mo +share/locale/kn/LC_MESSAGES/kio_nntp.mo +share/locale/kn/LC_MESSAGES/kio_pop3.mo +share/locale/kn/LC_MESSAGES/kio_remote.mo +share/locale/kn/LC_MESSAGES/kio_sftp.mo +share/locale/kn/LC_MESSAGES/kio_smb.mo +share/locale/kn/LC_MESSAGES/kio_smtp.mo +share/locale/kn/LC_MESSAGES/kio_thumbnail.mo +share/locale/kn/LC_MESSAGES/kio_trash.mo +share/locale/kn/LC_MESSAGES/kioclient.mo +share/locale/kn/LC_MESSAGES/kioexec.mo +share/locale/kn/LC_MESSAGES/klipper.mo +share/locale/kn/LC_MESSAGES/kmenuedit.mo +share/locale/kn/LC_MESSAGES/kmimetypefinder.mo +share/locale/kn/LC_MESSAGES/knetattach.mo +share/locale/kn/LC_MESSAGES/knotify4.mo +share/locale/kn/LC_MESSAGES/konqueror.mo +share/locale/kn/LC_MESSAGES/konsole.mo +share/locale/kn/LC_MESSAGES/kpasswdserver.mo +share/locale/kn/LC_MESSAGES/kquitapp.mo +share/locale/kn/LC_MESSAGES/krandr.mo +share/locale/kn/LC_MESSAGES/krdb.mo +share/locale/kn/LC_MESSAGES/kreadconfig.mo +share/locale/kn/LC_MESSAGES/krunner.mo +share/locale/kn/LC_MESSAGES/kscreensaver.mo +share/locale/kn/LC_MESSAGES/kshorturifilter.mo +share/locale/kn/LC_MESSAGES/ksmserver.mo +share/locale/kn/LC_MESSAGES/ksplashthemes.mo +share/locale/kn/LC_MESSAGES/kstart.mo +share/locale/kn/LC_MESSAGES/kstyle_config.mo +share/locale/kn/LC_MESSAGES/kstyle_keramik_config.mo +share/locale/kn/LC_MESSAGES/ksysguard.mo +share/locale/kn/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/kn/LC_MESSAGES/ksystraycmd.mo +share/locale/kn/LC_MESSAGES/kthememanager.mo +share/locale/kn/LC_MESSAGES/ktraderclient.mo +share/locale/kn/LC_MESSAGES/kuiserver.mo +share/locale/kn/LC_MESSAGES/kurifilter.mo +share/locale/kn/LC_MESSAGES/kwalletd.mo +share/locale/kn/LC_MESSAGES/kwin.mo +share/locale/kn/LC_MESSAGES/kwin_clients.mo +share/locale/kn/LC_MESSAGES/kwin_effects.mo +share/locale/kn/LC_MESSAGES/kwin_lib.mo +share/locale/kn/LC_MESSAGES/kwinstartmenu.mo +share/locale/kn/LC_MESSAGES/kwrite.mo +share/locale/kn/LC_MESSAGES/kwriteconfig.mo +share/locale/kn/LC_MESSAGES/kxkb.mo +share/locale/kn/LC_MESSAGES/libkonq.mo +share/locale/kn/LC_MESSAGES/libkscreensaver.mo +share/locale/kn/LC_MESSAGES/libkworkspace.mo +share/locale/kn/LC_MESSAGES/libplasma.mo +share/locale/kn/LC_MESSAGES/libplasmaclock.mo +share/locale/kn/LC_MESSAGES/libtaskmanager.mo +share/locale/kn/LC_MESSAGES/nepomuk.mo +share/locale/kn/LC_MESSAGES/nepomuksearch.mo +share/locale/kn/LC_MESSAGES/nsplugin.mo +share/locale/kn/LC_MESSAGES/phonon_kde.mo +share/locale/kn/LC_MESSAGES/plasma-overlay.mo +share/locale/kn/LC_MESSAGES/plasma-shells-common.mo +share/locale/kn/LC_MESSAGES/plasma.mo +share/locale/kn/LC_MESSAGES/plasma_runner_locations.mo +share/locale/kn/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/kn/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/kn/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/kn/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/kn/LC_MESSAGES/plasma_runner_shell.mo +share/locale/kn/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/kn/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/kn/LC_MESSAGES/plasmapkg.mo +share/locale/kn/LC_MESSAGES/useraccount.mo diff --git a/misc/kde4-l10n-ku/distinfo b/misc/kde4-l10n-ku/distinfo index b5b40aadb703..610d1393a207 100644 --- a/misc/kde4-l10n-ku/distinfo +++ b/misc/kde4-l10n-ku/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-ku-4.1.4.tar.bz2) = 2dea53e4a1b43644549a8a53b427c167 -SHA256 (KDE/kde-l10n/kde-l10n-ku-4.1.4.tar.bz2) = 67ddb60753b6ce43471f5c98eb93a3b715c22748bf46c67cf09f3fe37a96c01b -SIZE (KDE/kde-l10n/kde-l10n-ku-4.1.4.tar.bz2) = 520559 +MD5 (KDE/kde-l10n/kde-l10n-ku-4.2.0.tar.bz2) = 3ce287f12f044c14608692518018bbef +SHA256 (KDE/kde-l10n/kde-l10n-ku-4.2.0.tar.bz2) = 3d3240bb80143bec69096900964acc4585ee6d1166039a11d19eb2aa58a9f72e +SIZE (KDE/kde-l10n/kde-l10n-ku-4.2.0.tar.bz2) = 601653 diff --git a/misc/kde4-l10n-ku/pkg-plist b/misc/kde4-l10n-ku/pkg-plist index 8815cf01a5db..d604a99320a0 100644 --- a/misc/kde4-l10n-ku/pkg-plist +++ b/misc/kde4-l10n-ku/pkg-plist @@ -14,9 +14,9 @@ share/locale/ku/LC_MESSAGES/kate.mo share/locale/ku/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ku/LC_MESSAGES/katepart4.mo share/locale/ku/LC_MESSAGES/kblankscrn.mo -share/locale/ku/LC_MESSAGES/kbstateapplet.mo share/locale/ku/LC_MESSAGES/kcertpart.mo share/locale/ku/LC_MESSAGES/kcm_autostart.mo +share/locale/ku/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/ku/LC_MESSAGES/kcm_emoticons.mo share/locale/ku/LC_MESSAGES/kcm_kwindesktop.mo share/locale/ku/LC_MESSAGES/kcm_memory.mo @@ -25,6 +25,7 @@ share/locale/ku/LC_MESSAGES/kcm_pci.mo share/locale/ku/LC_MESSAGES/kcm_phonon.mo share/locale/ku/LC_MESSAGES/kcm_phononxine.mo share/locale/ku/LC_MESSAGES/kcm_solid.mo +share/locale/ku/LC_MESSAGES/kcm_standard_actions.mo share/locale/ku/LC_MESSAGES/kcmaccess.mo share/locale/ku/LC_MESSAGES/kcmbackground.mo share/locale/ku/LC_MESSAGES/kcmbell.mo @@ -68,7 +69,6 @@ share/locale/ku/LC_MESSAGES/kcmsmartcard.mo share/locale/ku/LC_MESSAGES/kcmsmserver.mo share/locale/ku/LC_MESSAGES/kcmsolidproc.mo share/locale/ku/LC_MESSAGES/kcmstyle.mo -share/locale/ku/LC_MESSAGES/kcmtaskbar.mo share/locale/ku/LC_MESSAGES/kcmusb.mo share/locale/ku/LC_MESSAGES/kcmview1394.mo share/locale/ku/LC_MESSAGES/kcmxinerama.mo @@ -76,6 +76,7 @@ share/locale/ku/LC_MESSAGES/kcron.mo share/locale/ku/LC_MESSAGES/kdat.mo share/locale/ku/LC_MESSAGES/kde-menu.mo share/locale/ku/LC_MESSAGES/kdebugdialog.mo +share/locale/ku/LC_MESSAGES/kded_phononserver.mo share/locale/ku/LC_MESSAGES/kdelibs4.mo share/locale/ku/LC_MESSAGES/kdelibs_colors4.mo share/locale/ku/LC_MESSAGES/kdepasswd.mo @@ -105,16 +106,18 @@ share/locale/ku/LC_MESSAGES/kiconfinder.mo share/locale/ku/LC_MESSAGES/kinetd.mo share/locale/ku/LC_MESSAGES/kinfocenter.mo share/locale/ku/LC_MESSAGES/kio4.mo +share/locale/ku/LC_MESSAGES/kio_applications.mo share/locale/ku/LC_MESSAGES/kio_archive.mo +share/locale/ku/LC_MESSAGES/kio_bookmarks.mo share/locale/ku/LC_MESSAGES/kio_finger.mo share/locale/ku/LC_MESSAGES/kio_fish.mo share/locale/ku/LC_MESSAGES/kio_floppy.mo share/locale/ku/LC_MESSAGES/kio_help4.mo share/locale/ku/LC_MESSAGES/kio_man.mo share/locale/ku/LC_MESSAGES/kio_mbox.mo +share/locale/ku/LC_MESSAGES/kio_nepomuksearch.mo share/locale/ku/LC_MESSAGES/kio_nfs.mo share/locale/ku/LC_MESSAGES/kio_remote.mo -share/locale/ku/LC_MESSAGES/kio_settings.mo share/locale/ku/LC_MESSAGES/kio_sftp.mo share/locale/ku/LC_MESSAGES/kio_smb.mo share/locale/ku/LC_MESSAGES/kio_thumbnail.mo @@ -142,13 +145,6 @@ share/locale/ku/LC_MESSAGES/krandr.mo share/locale/ku/LC_MESSAGES/krdb.mo share/locale/ku/LC_MESSAGES/kreadconfig.mo share/locale/ku/LC_MESSAGES/krunner.mo -share/locale/ku/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/ku/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/ku/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/ku/LC_MESSAGES/krunner_sessions.mo -share/locale/ku/LC_MESSAGES/krunner_shellrunner.mo -share/locale/ku/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/ku/LC_MESSAGES/krunner_xesam.mo share/locale/ku/LC_MESSAGES/ksayit.mo share/locale/ku/LC_MESSAGES/kscreensaver.mo share/locale/ku/LC_MESSAGES/kshorturifilter.mo @@ -159,6 +155,7 @@ share/locale/ku/LC_MESSAGES/kstyle_config.mo share/locale/ku/LC_MESSAGES/kstyle_keramik_config.mo share/locale/ku/LC_MESSAGES/kstyle_phase_config.mo share/locale/ku/LC_MESSAGES/ksysguard.mo +share/locale/ku/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ku/LC_MESSAGES/ksystraycmd.mo share/locale/ku/LC_MESSAGES/ksysv.mo share/locale/ku/LC_MESSAGES/kteatime.mo @@ -170,6 +167,7 @@ share/locale/ku/LC_MESSAGES/ktux.mo share/locale/ku/LC_MESSAGES/kuiserver.mo share/locale/ku/LC_MESSAGES/kurifilter.mo share/locale/ku/LC_MESSAGES/kuser.mo +share/locale/ku/LC_MESSAGES/kwalletd.mo share/locale/ku/LC_MESSAGES/kweather.mo share/locale/ku/LC_MESSAGES/kwin.mo share/locale/ku/LC_MESSAGES/kwin_art_clients.mo @@ -181,36 +179,91 @@ share/locale/ku/LC_MESSAGES/kwrite.mo share/locale/ku/LC_MESSAGES/kwriteconfig.mo share/locale/ku/LC_MESSAGES/kxkb.mo share/locale/ku/LC_MESSAGES/kxsconfig.mo +share/locale/ku/LC_MESSAGES/lancelot.mo share/locale/ku/LC_MESSAGES/libkdegames.mo share/locale/ku/LC_MESSAGES/libkonq.mo share/locale/ku/LC_MESSAGES/libkscreensaver.mo share/locale/ku/LC_MESSAGES/libkworkspace.mo share/locale/ku/LC_MESSAGES/libphonon.mo share/locale/ku/LC_MESSAGES/libplasma.mo +share/locale/ku/LC_MESSAGES/libplasmaclock.mo share/locale/ku/LC_MESSAGES/libtaskmanager.mo share/locale/ku/LC_MESSAGES/lokalize.mo share/locale/ku/LC_MESSAGES/nepomuk.mo +share/locale/ku/LC_MESSAGES/nepomuksearch.mo share/locale/ku/LC_MESSAGES/nsplugin.mo share/locale/ku/LC_MESSAGES/okular.mo share/locale/ku/LC_MESSAGES/phonon-xine.mo share/locale/ku/LC_MESSAGES/phonon_kde.mo +share/locale/ku/LC_MESSAGES/plasma-overlay.mo +share/locale/ku/LC_MESSAGES/plasma-shells-common.mo share/locale/ku/LC_MESSAGES/plasma.mo share/locale/ku/LC_MESSAGES/plasma_applet_battery.mo +share/locale/ku/LC_MESSAGES/plasma_applet_bball.mo +share/locale/ku/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/ku/LC_MESSAGES/plasma_applet_bluemarble.mo +share/locale/ku/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/ku/LC_MESSAGES/plasma_applet_charselect.mo share/locale/ku/LC_MESSAGES/plasma_applet_clock.mo +share/locale/ku/LC_MESSAGES/plasma_applet_comic.mo share/locale/ku/LC_MESSAGES/plasma_applet_desktop.mo share/locale/ku/LC_MESSAGES/plasma_applet_devicenotifier.mo +share/locale/ku/LC_MESSAGES/plasma_applet_dict.mo share/locale/ku/LC_MESSAGES/plasma_applet_dig_clock.mo +share/locale/ku/LC_MESSAGES/plasma_applet_fifteenPuzzle.mo +share/locale/ku/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/ku/LC_MESSAGES/plasma_applet_folderview.mo +share/locale/ku/LC_MESSAGES/plasma_applet_frame.mo +share/locale/ku/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/ku/LC_MESSAGES/plasma_applet_incomingmsg.mo +share/locale/ku/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/ku/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/ku/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/ku/LC_MESSAGES/plasma_applet_life.mo +share/locale/ku/LC_MESSAGES/plasma_applet_luna.mo +share/locale/ku/LC_MESSAGES/plasma_applet_news.mo +share/locale/ku/LC_MESSAGES/plasma_applet_notes.mo +share/locale/ku/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/ku/LC_MESSAGES/plasma_applet_pager.mo share/locale/ku/LC_MESSAGES/plasma_applet_panel.mo +share/locale/ku/LC_MESSAGES/plasma_applet_paste.mo +share/locale/ku/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/ku/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/ku/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/ku/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/ku/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/ku/LC_MESSAGES/plasma_applet_showdesktop.mo +share/locale/ku/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/ku/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/ku/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/ku/LC_MESSAGES/plasma_applet_timer.mo share/locale/ku/LC_MESSAGES/plasma_applet_trash.mo +share/locale/ku/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/ku/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/ku/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/ku/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/ku/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/ku/LC_MESSAGES/plasma_engine_dict.mo +share/locale/ku/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/ku/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ku/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ku/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/ku/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ku/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/ku/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ku/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/ku/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ku/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ku/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ku/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ku/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ku/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ku/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/ku/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/ku/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/ku/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ku/LC_MESSAGES/plasmapkg.mo share/locale/ku/LC_MESSAGES/plasmoidviewer.mo +share/locale/ku/LC_MESSAGES/powerdevil.mo share/locale/ku/LC_MESSAGES/printer-applet.mo share/locale/ku/LC_MESSAGES/processcore.mo share/locale/ku/LC_MESSAGES/processui.mo @@ -224,5 +277,3 @@ share/locale/ku/LC_MESSAGES/systemsettings.mo share/locale/ku/LC_MESSAGES/timezones4.mo share/locale/ku/LC_MESSAGES/useraccount.mo share/locale/ku/entry.desktop -@dirrm share/locale/ku/LC_MESSAGES -@dirrm share/locale/ku diff --git a/misc/kde4-l10n-lt/distinfo b/misc/kde4-l10n-lt/distinfo index c13db4c84eac..15144ce6f575 100644 --- a/misc/kde4-l10n-lt/distinfo +++ b/misc/kde4-l10n-lt/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-lt-4.1.4.tar.bz2) = 87b9c0b435bd37a073549427300c713b -SHA256 (KDE/kde-l10n/kde-l10n-lt-4.1.4.tar.bz2) = 7938f507145a2c0c1c24321cbf59abecb4909a8d704038b7542736ad42b2f1a2 -SIZE (KDE/kde-l10n/kde-l10n-lt-4.1.4.tar.bz2) = 1652837 +MD5 (KDE/kde-l10n/kde-l10n-lt-4.2.0.tar.bz2) = 5ffad305fb06d70f7991745b82a427e3 +SHA256 (KDE/kde-l10n/kde-l10n-lt-4.2.0.tar.bz2) = e91fee9596a134ecf4166d7f7f875fb3aece5f34bae8a306f0b1c917028c39fb +SIZE (KDE/kde-l10n/kde-l10n-lt-4.2.0.tar.bz2) = 1840646 diff --git a/misc/kde4-l10n-lt/pkg-plist b/misc/kde4-l10n-lt/pkg-plist index 1efafb052140..2a468dbecf41 100644 --- a/misc/kde4-l10n-lt/pkg-plist +++ b/misc/kde4-l10n-lt/pkg-plist @@ -1,6 +1,7 @@ share/doc/HTML/lt/khelpcenter/visualdict/common share/doc/HTML/lt/khelpcenter/visualdict/index.cache.bz2 share/doc/HTML/lt/khelpcenter/visualdict/index.docbook +share/locale/lt/LC_MESSAGES/akonaditray.mo share/locale/lt/LC_MESSAGES/akregator.mo share/locale/lt/LC_MESSAGES/amor.mo share/locale/lt/LC_MESSAGES/ark.mo @@ -8,6 +9,7 @@ share/locale/lt/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/lt/LC_MESSAGES/audiorename_plugin.mo share/locale/lt/LC_MESSAGES/blinken.mo +share/locale/lt/LC_MESSAGES/bomber.mo share/locale/lt/LC_MESSAGES/bovo.mo share/locale/lt/LC_MESSAGES/cervisia.mo share/locale/lt/LC_MESSAGES/cvsservice.mo @@ -22,20 +24,28 @@ share/locale/lt/LC_MESSAGES/imagerename_plugin.mo share/locale/lt/LC_MESSAGES/joystick.mo share/locale/lt/LC_MESSAGES/juk.mo share/locale/lt/LC_MESSAGES/kabc.mo +share/locale/lt/LC_MESSAGES/kabc_akonadi.mo share/locale/lt/LC_MESSAGES/kabc_dir.mo share/locale/lt/LC_MESSAGES/kabc_file.mo share/locale/lt/LC_MESSAGES/kabc_ldapkio.mo share/locale/lt/LC_MESSAGES/kabc_net.mo share/locale/lt/LC_MESSAGES/kabc_slox.mo share/locale/lt/LC_MESSAGES/kabcakonadi.mo +share/locale/lt/LC_MESSAGES/kabcclient.mo share/locale/lt/LC_MESSAGES/kabcformat_binary.mo share/locale/lt/LC_MESSAGES/kaccess.mo share/locale/lt/LC_MESSAGES/kaddressbook.mo share/locale/lt/LC_MESSAGES/kalarm.mo +share/locale/lt/LC_MESSAGES/kalgebra.mo share/locale/lt/LC_MESSAGES/kalzium.mo +share/locale/lt/LC_MESSAGES/kalzium_qt.mo share/locale/lt/LC_MESSAGES/kanagram.mo +share/locale/lt/LC_MESSAGES/kapman.mo share/locale/lt/LC_MESSAGES/kappfinder.mo +share/locale/lt/LC_MESSAGES/kapptemplate.mo +share/locale/lt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lt/LC_MESSAGES/kate.mo +share/locale/lt/LC_MESSAGES/katebuild-plugin.mo share/locale/lt/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/lt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lt/LC_MESSAGES/katefiletemplates.mo @@ -43,9 +53,9 @@ share/locale/lt/LC_MESSAGES/katefindinfilesplugin.mo share/locale/lt/LC_MESSAGES/katehelloworld.mo share/locale/lt/LC_MESSAGES/katehtmltools.mo share/locale/lt/LC_MESSAGES/kateinsertcommand.mo +share/locale/lt/LC_MESSAGES/katekjswrapper.mo share/locale/lt/LC_MESSAGES/katekonsoleplugin.mo share/locale/lt/LC_MESSAGES/katemailfilesplugin.mo -share/locale/lt/LC_MESSAGES/katemake.mo share/locale/lt/LC_MESSAGES/kateopenheader.mo share/locale/lt/LC_MESSAGES/katepart4.mo share/locale/lt/LC_MESSAGES/katepybrowse.mo @@ -60,14 +70,18 @@ share/locale/lt/LC_MESSAGES/katomic.mo share/locale/lt/LC_MESSAGES/kbattleship.mo share/locale/lt/LC_MESSAGES/kblackbox.mo share/locale/lt/LC_MESSAGES/kblankscrn.mo +share/locale/lt/LC_MESSAGES/kblocks.mo share/locale/lt/LC_MESSAGES/kbounce.mo +share/locale/lt/LC_MESSAGES/kbreakout.mo share/locale/lt/LC_MESSAGES/kbruch.mo -share/locale/lt/LC_MESSAGES/kbstateapplet.mo share/locale/lt/LC_MESSAGES/kbugbuster.mo share/locale/lt/LC_MESSAGES/kcachegrind.mo share/locale/lt/LC_MESSAGES/kcalc.mo +share/locale/lt/LC_MESSAGES/kcertpart.mo share/locale/lt/LC_MESSAGES/kcharselect.mo +share/locale/lt/LC_MESSAGES/kcm_akonadi.mo share/locale/lt/LC_MESSAGES/kcm_autostart.mo +share/locale/lt/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/lt/LC_MESSAGES/kcm_emoticons.mo share/locale/lt/LC_MESSAGES/kcm_krfb.mo share/locale/lt/LC_MESSAGES/kcm_kwindesktop.mo @@ -77,6 +91,7 @@ share/locale/lt/LC_MESSAGES/kcm_pci.mo share/locale/lt/LC_MESSAGES/kcm_phonon.mo share/locale/lt/LC_MESSAGES/kcm_phononxine.mo share/locale/lt/LC_MESSAGES/kcm_solid.mo +share/locale/lt/LC_MESSAGES/kcm_standard_actions.mo share/locale/lt/LC_MESSAGES/kcmaccess.mo share/locale/lt/LC_MESSAGES/kcmaudiocd.mo share/locale/lt/LC_MESSAGES/kcmbackground.mo @@ -126,15 +141,18 @@ share/locale/lt/LC_MESSAGES/kcmsmartcard.mo share/locale/lt/LC_MESSAGES/kcmsmserver.mo share/locale/lt/LC_MESSAGES/kcmsolidproc.mo share/locale/lt/LC_MESSAGES/kcmstyle.mo -share/locale/lt/LC_MESSAGES/kcmtaskbar.mo share/locale/lt/LC_MESSAGES/kcmusb.mo share/locale/lt/LC_MESSAGES/kcmview1394.mo share/locale/lt/LC_MESSAGES/kcmxinerama.mo +share/locale/lt/LC_MESSAGES/kcolorchooser.mo share/locale/lt/LC_MESSAGES/kcron.mo share/locale/lt/LC_MESSAGES/kdat.mo share/locale/lt/LC_MESSAGES/kde-menu.mo +share/locale/lt/LC_MESSAGES/kdeasciiquarium.mo share/locale/lt/LC_MESSAGES/kdebugdialog.mo +share/locale/lt/LC_MESSAGES/kded_phononserver.mo share/locale/lt/LC_MESSAGES/kdelibs4.mo +share/locale/lt/LC_MESSAGES/kdelibs_colors4.mo share/locale/lt/LC_MESSAGES/kdepasswd.mo share/locale/lt/LC_MESSAGES/kdepimresources.mo share/locale/lt/LC_MESSAGES/kdepimwizards.mo @@ -143,6 +161,7 @@ share/locale/lt/LC_MESSAGES/kdessh.mo share/locale/lt/LC_MESSAGES/kdesu.mo share/locale/lt/LC_MESSAGES/kdesud.mo share/locale/lt/LC_MESSAGES/kdf.mo +share/locale/lt/LC_MESSAGES/kdgantt.mo share/locale/lt/LC_MESSAGES/kdgantt1.mo share/locale/lt/LC_MESSAGES/kdialog.mo share/locale/lt/LC_MESSAGES/kdiamond.mo @@ -192,12 +211,15 @@ share/locale/lt/LC_MESSAGES/khotnewstuff.mo share/locale/lt/LC_MESSAGES/khtmlkttsd.mo share/locale/lt/LC_MESSAGES/kiconfinder.mo share/locale/lt/LC_MESSAGES/kig.mo +share/locale/lt/LC_MESSAGES/killbots.mo share/locale/lt/LC_MESSAGES/kimagemapeditor.mo share/locale/lt/LC_MESSAGES/kinetd.mo share/locale/lt/LC_MESSAGES/kinfocenter.mo share/locale/lt/LC_MESSAGES/kio4.mo +share/locale/lt/LC_MESSAGES/kio_applications.mo share/locale/lt/LC_MESSAGES/kio_archive.mo share/locale/lt/LC_MESSAGES/kio_audiocd.mo +share/locale/lt/LC_MESSAGES/kio_bookmarks.mo share/locale/lt/LC_MESSAGES/kio_finger.mo share/locale/lt/LC_MESSAGES/kio_fish.mo share/locale/lt/LC_MESSAGES/kio_floppy.mo @@ -208,11 +230,12 @@ share/locale/lt/LC_MESSAGES/kio_jabberdisco.mo share/locale/lt/LC_MESSAGES/kio_ldap.mo share/locale/lt/LC_MESSAGES/kio_man.mo share/locale/lt/LC_MESSAGES/kio_mbox.mo +share/locale/lt/LC_MESSAGES/kio_nepomuksearch.mo share/locale/lt/LC_MESSAGES/kio_nfs.mo share/locale/lt/LC_MESSAGES/kio_nntp.mo +share/locale/lt/LC_MESSAGES/kio_perldoc.mo share/locale/lt/LC_MESSAGES/kio_pop3.mo share/locale/lt/LC_MESSAGES/kio_remote.mo -share/locale/lt/LC_MESSAGES/kio_settings.mo share/locale/lt/LC_MESSAGES/kio_sftp.mo share/locale/lt/LC_MESSAGES/kio_sieve.mo share/locale/lt/LC_MESSAGES/kio_smb.mo @@ -223,6 +246,7 @@ share/locale/lt/LC_MESSAGES/kio_trash.mo share/locale/lt/LC_MESSAGES/kio_zeroconf.mo share/locale/lt/LC_MESSAGES/kioclient.mo share/locale/lt/LC_MESSAGES/kioexec.mo +share/locale/lt/LC_MESSAGES/kiriki.mo share/locale/lt/LC_MESSAGES/kitchensync.mo share/locale/lt/LC_MESSAGES/kiten.mo share/locale/lt/LC_MESSAGES/kjots.mo @@ -245,6 +269,7 @@ share/locale/lt/LC_MESSAGES/kmimetypefinder.mo share/locale/lt/LC_MESSAGES/kmines.mo share/locale/lt/LC_MESSAGES/kmix.mo share/locale/lt/LC_MESSAGES/kmobiletools.mo +share/locale/lt/LC_MESSAGES/kmobiletools_at_engine.mo share/locale/lt/LC_MESSAGES/kmousetool.mo share/locale/lt/LC_MESSAGES/kmouth.mo share/locale/lt/LC_MESSAGES/kmplot.mo @@ -254,23 +279,26 @@ share/locale/lt/LC_MESSAGES/knetworkconfmodule.mo share/locale/lt/LC_MESSAGES/knode.mo share/locale/lt/LC_MESSAGES/knotes.mo share/locale/lt/LC_MESSAGES/knotify4.mo +share/locale/lt/LC_MESSAGES/kode.mo share/locale/lt/LC_MESSAGES/kolf.mo share/locale/lt/LC_MESSAGES/kollision.mo share/locale/lt/LC_MESSAGES/kolourpaint.mo +share/locale/lt/LC_MESSAGES/kommander.mo share/locale/lt/LC_MESSAGES/kompare.mo share/locale/lt/LC_MESSAGES/konqueror.mo share/locale/lt/LC_MESSAGES/konquest.mo share/locale/lt/LC_MESSAGES/konsole.mo share/locale/lt/LC_MESSAGES/konsolekalendar.mo share/locale/lt/LC_MESSAGES/kontact.mo +share/locale/lt/LC_MESSAGES/kontactinterfaces.mo share/locale/lt/LC_MESSAGES/kopete.mo share/locale/lt/LC_MESSAGES/korganizer.mo share/locale/lt/LC_MESSAGES/korn.mo share/locale/lt/LC_MESSAGES/kpackage.mo +share/locale/lt/LC_MESSAGES/kpartloader.mo share/locale/lt/LC_MESSAGES/kpartsaver.mo share/locale/lt/LC_MESSAGES/kpasswdserver.mo share/locale/lt/LC_MESSAGES/kpat.mo -share/locale/lt/LC_MESSAGES/kpercentage.mo share/locale/lt/LC_MESSAGES/kpilot.mo share/locale/lt/LC_MESSAGES/kppp.mo share/locale/lt/LC_MESSAGES/kppplogview.mo @@ -280,61 +308,64 @@ share/locale/lt/LC_MESSAGES/krdb.mo share/locale/lt/LC_MESSAGES/krdc.mo share/locale/lt/LC_MESSAGES/kreadconfig.mo share/locale/lt/LC_MESSAGES/kres_birthday.mo +share/locale/lt/LC_MESSAGES/kres_blog.mo share/locale/lt/LC_MESSAGES/kres_bugzilla.mo share/locale/lt/LC_MESSAGES/kres_featureplan.mo share/locale/lt/LC_MESSAGES/kres_groupware.mo share/locale/lt/LC_MESSAGES/kres_groupwise.mo share/locale/lt/LC_MESSAGES/kres_kolab.mo share/locale/lt/LC_MESSAGES/kres_remote.mo +share/locale/lt/LC_MESSAGES/kres_scalix.mo share/locale/lt/LC_MESSAGES/kres_tvanytime.mo share/locale/lt/LC_MESSAGES/kres_xmlrpc.mo share/locale/lt/LC_MESSAGES/kreversi.mo share/locale/lt/LC_MESSAGES/krfb.mo share/locale/lt/LC_MESSAGES/kruler.mo share/locale/lt/LC_MESSAGES/krunner.mo -share/locale/lt/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/lt/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/lt/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/lt/LC_MESSAGES/krunner_sessions.mo -share/locale/lt/LC_MESSAGES/krunner_shellrunner.mo -share/locale/lt/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/lt/LC_MESSAGES/krunner_xesam.mo share/locale/lt/LC_MESSAGES/ksame.mo +share/locale/lt/LC_MESSAGES/ksaneplugin.mo share/locale/lt/LC_MESSAGES/ksayit.mo share/locale/lt/LC_MESSAGES/kscd.mo share/locale/lt/LC_MESSAGES/kscreensaver.mo +share/locale/lt/LC_MESSAGES/ksendemail.mo share/locale/lt/LC_MESSAGES/kshisen.mo share/locale/lt/LC_MESSAGES/kshorturifilter.mo +share/locale/lt/LC_MESSAGES/ksirk.mo share/locale/lt/LC_MESSAGES/ksmserver.mo share/locale/lt/LC_MESSAGES/ksnapshot.mo share/locale/lt/LC_MESSAGES/kspaceduel.mo share/locale/lt/LC_MESSAGES/ksplashthemes.mo +share/locale/lt/LC_MESSAGES/ksquares.mo share/locale/lt/LC_MESSAGES/kstars.mo share/locale/lt/LC_MESSAGES/kstart.mo share/locale/lt/LC_MESSAGES/kstartperf.mo share/locale/lt/LC_MESSAGES/kstyle_config.mo share/locale/lt/LC_MESSAGES/kstyle_keramik_config.mo +share/locale/lt/LC_MESSAGES/kstyle_phase_config.mo share/locale/lt/LC_MESSAGES/ksudoku.mo share/locale/lt/LC_MESSAGES/ksysguard.mo +share/locale/lt/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/lt/LC_MESSAGES/ksystemlog.mo share/locale/lt/LC_MESSAGES/ksystraycmd.mo share/locale/lt/LC_MESSAGES/ksysv.mo share/locale/lt/LC_MESSAGES/kteatime.mo share/locale/lt/LC_MESSAGES/ktexteditor_plugins.mo +share/locale/lt/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/lt/LC_MESSAGES/kthememanager.mo share/locale/lt/LC_MESSAGES/ktimer.mo share/locale/lt/LC_MESSAGES/ktimetracker.mo -share/locale/lt/LC_MESSAGES/ktnef.mo share/locale/lt/LC_MESSAGES/ktouch.mo share/locale/lt/LC_MESSAGES/ktraderclient.mo share/locale/lt/LC_MESSAGES/kttsd.mo share/locale/lt/LC_MESSAGES/ktuberling.mo share/locale/lt/LC_MESSAGES/kturtle.mo share/locale/lt/LC_MESSAGES/ktux.mo +share/locale/lt/LC_MESSAGES/kubrick.mo share/locale/lt/LC_MESSAGES/kuiserver.mo share/locale/lt/LC_MESSAGES/kuiviewer.mo share/locale/lt/LC_MESSAGES/kurifilter.mo share/locale/lt/LC_MESSAGES/kuser.mo +share/locale/lt/LC_MESSAGES/kwalletd.mo share/locale/lt/LC_MESSAGES/kwalletmanager.mo share/locale/lt/LC_MESSAGES/kwatchgnupg.mo share/locale/lt/LC_MESSAGES/kweather.mo @@ -351,9 +382,13 @@ share/locale/lt/LC_MESSAGES/kxforms.mo share/locale/lt/LC_MESSAGES/kxkb.mo share/locale/lt/LC_MESSAGES/kxsconfig.mo share/locale/lt/LC_MESSAGES/kxsldbg.mo +share/locale/lt/LC_MESSAGES/lancelot.mo +share/locale/lt/LC_MESSAGES/libakonadi.mo +share/locale/lt/LC_MESSAGES/libkblog.mo share/locale/lt/LC_MESSAGES/libkcal.mo share/locale/lt/LC_MESSAGES/libkcddb.mo share/locale/lt/LC_MESSAGES/libkcompactdisc.mo +share/locale/lt/LC_MESSAGES/libkdcraw.mo share/locale/lt/LC_MESSAGES/libkdeedu.mo share/locale/lt/LC_MESSAGES/libkdegames.mo share/locale/lt/LC_MESSAGES/libkdepim.mo @@ -364,50 +399,125 @@ share/locale/lt/LC_MESSAGES/libkmahjongg.mo share/locale/lt/LC_MESSAGES/libkmime.mo share/locale/lt/LC_MESSAGES/libkonq.mo share/locale/lt/LC_MESSAGES/libkpgp.mo +share/locale/lt/LC_MESSAGES/libkpimidentities.mo share/locale/lt/LC_MESSAGES/libkpimutils.mo share/locale/lt/LC_MESSAGES/libkresources.mo share/locale/lt/LC_MESSAGES/libksane.mo share/locale/lt/LC_MESSAGES/libkscreensaver.mo share/locale/lt/LC_MESSAGES/libksieve.mo +share/locale/lt/LC_MESSAGES/libktnef.mo share/locale/lt/LC_MESSAGES/libkworkspace.mo share/locale/lt/LC_MESSAGES/libkxmlrpcclient.mo share/locale/lt/LC_MESSAGES/libmailtransport.mo +share/locale/lt/LC_MESSAGES/liboktetacore.mo share/locale/lt/LC_MESSAGES/libphonon.mo share/locale/lt/LC_MESSAGES/libplasma.mo +share/locale/lt/LC_MESSAGES/libplasmaclock.mo share/locale/lt/LC_MESSAGES/libtaskmanager.mo +share/locale/lt/LC_MESSAGES/lokalize.mo share/locale/lt/LC_MESSAGES/lskat.mo share/locale/lt/LC_MESSAGES/marble.mo +share/locale/lt/LC_MESSAGES/marble_qt.mo share/locale/lt/LC_MESSAGES/nepomuk.mo +share/locale/lt/LC_MESSAGES/nepomuksearch.mo share/locale/lt/LC_MESSAGES/nsplugin.mo +share/locale/lt/LC_MESSAGES/okteta.mo share/locale/lt/LC_MESSAGES/oktetapart.mo share/locale/lt/LC_MESSAGES/okular.mo +share/locale/lt/LC_MESSAGES/okular_chm.mo +share/locale/lt/LC_MESSAGES/okular_comicbook.mo +share/locale/lt/LC_MESSAGES/okular_djvu.mo +share/locale/lt/LC_MESSAGES/okular_dvi.mo +share/locale/lt/LC_MESSAGES/okular_epub.mo +share/locale/lt/LC_MESSAGES/okular_fax.mo share/locale/lt/LC_MESSAGES/okular_fictionbook.mo share/locale/lt/LC_MESSAGES/okular_ghostview.mo +share/locale/lt/LC_MESSAGES/okular_kimgio.mo +share/locale/lt/LC_MESSAGES/okular_ooo.mo +share/locale/lt/LC_MESSAGES/okular_plucker.mo +share/locale/lt/LC_MESSAGES/okular_poppler.mo +share/locale/lt/LC_MESSAGES/okular_tiff.mo +share/locale/lt/LC_MESSAGES/okular_xps.mo share/locale/lt/LC_MESSAGES/parley.mo share/locale/lt/LC_MESSAGES/phonon-xine.mo +share/locale/lt/LC_MESSAGES/phonon_gstreamer.mo share/locale/lt/LC_MESSAGES/phonon_kde.mo +share/locale/lt/LC_MESSAGES/plasma-overlay.mo +share/locale/lt/LC_MESSAGES/plasma-shells-common.mo share/locale/lt/LC_MESSAGES/plasma.mo share/locale/lt/LC_MESSAGES/plasma_applet_battery.mo +share/locale/lt/LC_MESSAGES/plasma_applet_bball.mo +share/locale/lt/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/lt/LC_MESSAGES/plasma_applet_bluemarble.mo +share/locale/lt/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/lt/LC_MESSAGES/plasma_applet_charselect.mo share/locale/lt/LC_MESSAGES/plasma_applet_clock.mo +share/locale/lt/LC_MESSAGES/plasma_applet_comic.mo share/locale/lt/LC_MESSAGES/plasma_applet_desktop.mo share/locale/lt/LC_MESSAGES/plasma_applet_devicenotifier.mo share/locale/lt/LC_MESSAGES/plasma_applet_dict.mo share/locale/lt/LC_MESSAGES/plasma_applet_dig_clock.mo +share/locale/lt/LC_MESSAGES/plasma_applet_fifteenPuzzle.mo share/locale/lt/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/lt/LC_MESSAGES/plasma_applet_folderview.mo +share/locale/lt/LC_MESSAGES/plasma_applet_frame.mo +share/locale/lt/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/lt/LC_MESSAGES/plasma_applet_incomingmsg.mo +share/locale/lt/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/lt/LC_MESSAGES/plasma_applet_kalzium.mo +share/locale/lt/LC_MESSAGES/plasma_applet_katesession.mo share/locale/lt/LC_MESSAGES/plasma_applet_kget.mo -share/locale/lt/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/lt/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/lt/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/lt/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/lt/LC_MESSAGES/plasma_applet_life.mo +share/locale/lt/LC_MESSAGES/plasma_applet_luna.mo +share/locale/lt/LC_MESSAGES/plasma_applet_news.mo +share/locale/lt/LC_MESSAGES/plasma_applet_notes.mo +share/locale/lt/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/lt/LC_MESSAGES/plasma_applet_pager.mo share/locale/lt/LC_MESSAGES/plasma_applet_panel.mo +share/locale/lt/LC_MESSAGES/plasma_applet_paste.mo +share/locale/lt/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/lt/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/lt/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/lt/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/lt/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/lt/LC_MESSAGES/plasma_applet_showdesktop.mo +share/locale/lt/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/lt/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/lt/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/lt/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/lt/LC_MESSAGES/plasma_applet_timer.mo share/locale/lt/LC_MESSAGES/plasma_applet_trash.mo +share/locale/lt/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/lt/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/lt/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/lt/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/lt/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/lt/LC_MESSAGES/plasma_engine_dict.mo +share/locale/lt/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/lt/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/lt/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/lt/LC_MESSAGES/plasma_engine_rss.mo +share/locale/lt/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/lt/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/lt/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/lt/LC_MESSAGES/plasma_runner_locations.mo +share/locale/lt/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/lt/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/lt/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/lt/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/lt/LC_MESSAGES/plasma_runner_shell.mo +share/locale/lt/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/lt/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/lt/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/lt/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/lt/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/lt/LC_MESSAGES/plasmaengineexplorer.mo share/locale/lt/LC_MESSAGES/plasmapkg.mo share/locale/lt/LC_MESSAGES/plasmoidviewer.mo +share/locale/lt/LC_MESSAGES/powerdevil.mo +share/locale/lt/LC_MESSAGES/printer-applet.mo share/locale/lt/LC_MESSAGES/processcore.mo share/locale/lt/LC_MESSAGES/processui.mo share/locale/lt/LC_MESSAGES/solid-bluetooth.mo @@ -417,9 +527,13 @@ share/locale/lt/LC_MESSAGES/solid-powermanagement.mo share/locale/lt/LC_MESSAGES/solidcontrol.mo share/locale/lt/LC_MESSAGES/soliduiserver.mo share/locale/lt/LC_MESSAGES/spy.mo +share/locale/lt/LC_MESSAGES/step.mo +share/locale/lt/LC_MESSAGES/step_qt.mo share/locale/lt/LC_MESSAGES/strigila_diff.mo share/locale/lt/LC_MESSAGES/superkaramba.mo +share/locale/lt/LC_MESSAGES/svgpart.mo share/locale/lt/LC_MESSAGES/sweeper.mo +share/locale/lt/LC_MESSAGES/system-config-printer-kde.mo share/locale/lt/LC_MESSAGES/systemsettings.mo share/locale/lt/LC_MESSAGES/timezones4.mo share/locale/lt/LC_MESSAGES/umbrello.mo @@ -427,4 +541,3 @@ share/locale/lt/LC_MESSAGES/useraccount.mo share/locale/lt/entry.desktop @dirrm share/doc/HTML/lt/khelpcenter/visualdict @dirrm share/doc/HTML/lt/khelpcenter -@dirrm share/doc/HTML/lt diff --git a/misc/kde4-l10n-lv/distinfo b/misc/kde4-l10n-lv/distinfo index 9bf432c85c2e..b8ab8a743b34 100644 --- a/misc/kde4-l10n-lv/distinfo +++ b/misc/kde4-l10n-lv/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-lv-4.1.4.tar.bz2) = e05d96e5fad79570422b33029a6cb65c -SHA256 (KDE/kde-l10n/kde-l10n-lv-4.1.4.tar.bz2) = 425d017a02be08038c126969aecd2108377244eb2ee6035bdb8e6a027e7bda3e -SIZE (KDE/kde-l10n/kde-l10n-lv-4.1.4.tar.bz2) = 1363066 +MD5 (KDE/kde-l10n/kde-l10n-lv-4.2.0.tar.bz2) = 9d8fe83cefb273eb065337a0ab8790a5 +SHA256 (KDE/kde-l10n/kde-l10n-lv-4.2.0.tar.bz2) = a9c788ce3a91c51a79b6c32e67d7789bda2709585047103f3f6eaa27d873bb4c +SIZE (KDE/kde-l10n/kde-l10n-lv-4.2.0.tar.bz2) = 1480897 diff --git a/misc/kde4-l10n-lv/pkg-plist b/misc/kde4-l10n-lv/pkg-plist index 389e15f66c92..26c11ce082d8 100644 --- a/misc/kde4-l10n-lv/pkg-plist +++ b/misc/kde4-l10n-lv/pkg-plist @@ -19,6 +19,7 @@ share/locale/lv/LC_MESSAGES/imagerename_plugin.mo share/locale/lv/LC_MESSAGES/joystick.mo share/locale/lv/LC_MESSAGES/juk.mo share/locale/lv/LC_MESSAGES/kabc.mo +share/locale/lv/LC_MESSAGES/kabc_akonadi.mo share/locale/lv/LC_MESSAGES/kabc_dir.mo share/locale/lv/LC_MESSAGES/kabc_file.mo share/locale/lv/LC_MESSAGES/kabc_ldapkio.mo @@ -32,6 +33,7 @@ share/locale/lv/LC_MESSAGES/kaddressbook.mo share/locale/lv/LC_MESSAGES/kalarm.mo share/locale/lv/LC_MESSAGES/kalgebra.mo share/locale/lv/LC_MESSAGES/kalzium.mo +share/locale/lv/LC_MESSAGES/kalzium_qt.mo share/locale/lv/LC_MESSAGES/kanagram.mo share/locale/lv/LC_MESSAGES/kappfinder.mo share/locale/lv/LC_MESSAGES/kapptemplate.mo @@ -46,7 +48,6 @@ share/locale/lv/LC_MESSAGES/kateinsertcommand.mo share/locale/lv/LC_MESSAGES/katekjswrapper.mo share/locale/lv/LC_MESSAGES/katekonsoleplugin.mo share/locale/lv/LC_MESSAGES/katemailfilesplugin.mo -share/locale/lv/LC_MESSAGES/katemake.mo share/locale/lv/LC_MESSAGES/kateopenheader.mo share/locale/lv/LC_MESSAGES/katepart4.mo share/locale/lv/LC_MESSAGES/katepybrowse.mo @@ -65,13 +66,13 @@ share/locale/lv/LC_MESSAGES/kblocks.mo share/locale/lv/LC_MESSAGES/kbounce.mo share/locale/lv/LC_MESSAGES/kbreakout.mo share/locale/lv/LC_MESSAGES/kbruch.mo -share/locale/lv/LC_MESSAGES/kbstateapplet.mo share/locale/lv/LC_MESSAGES/kbugbuster.mo share/locale/lv/LC_MESSAGES/kcalc.mo share/locale/lv/LC_MESSAGES/kcertpart.mo share/locale/lv/LC_MESSAGES/kcharselect.mo -share/locale/lv/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/lv/LC_MESSAGES/kcm_akonadi.mo share/locale/lv/LC_MESSAGES/kcm_autostart.mo +share/locale/lv/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/lv/LC_MESSAGES/kcm_emoticons.mo share/locale/lv/LC_MESSAGES/kcm_krfb.mo share/locale/lv/LC_MESSAGES/kcm_kwindesktop.mo @@ -81,6 +82,7 @@ share/locale/lv/LC_MESSAGES/kcm_pci.mo share/locale/lv/LC_MESSAGES/kcm_phonon.mo share/locale/lv/LC_MESSAGES/kcm_phononxine.mo share/locale/lv/LC_MESSAGES/kcm_solid.mo +share/locale/lv/LC_MESSAGES/kcm_standard_actions.mo share/locale/lv/LC_MESSAGES/kcmaccess.mo share/locale/lv/LC_MESSAGES/kcmaudiocd.mo share/locale/lv/LC_MESSAGES/kcmbackground.mo @@ -130,7 +132,6 @@ share/locale/lv/LC_MESSAGES/kcmsmartcard.mo share/locale/lv/LC_MESSAGES/kcmsmserver.mo share/locale/lv/LC_MESSAGES/kcmsolidproc.mo share/locale/lv/LC_MESSAGES/kcmstyle.mo -share/locale/lv/LC_MESSAGES/kcmtaskbar.mo share/locale/lv/LC_MESSAGES/kcmusb.mo share/locale/lv/LC_MESSAGES/kcmview1394.mo share/locale/lv/LC_MESSAGES/kcmxinerama.mo @@ -138,7 +139,9 @@ share/locale/lv/LC_MESSAGES/kcolorchooser.mo share/locale/lv/LC_MESSAGES/kcron.mo share/locale/lv/LC_MESSAGES/kdat.mo share/locale/lv/LC_MESSAGES/kde-menu.mo +share/locale/lv/LC_MESSAGES/kdeasciiquarium.mo share/locale/lv/LC_MESSAGES/kdebugdialog.mo +share/locale/lv/LC_MESSAGES/kded_phononserver.mo share/locale/lv/LC_MESSAGES/kdelibs4.mo share/locale/lv/LC_MESSAGES/kdelibs_colors4.mo share/locale/lv/LC_MESSAGES/kdepasswd.mo @@ -200,8 +203,10 @@ share/locale/lv/LC_MESSAGES/kimagemapeditor.mo share/locale/lv/LC_MESSAGES/kinetd.mo share/locale/lv/LC_MESSAGES/kinfocenter.mo share/locale/lv/LC_MESSAGES/kio4.mo +share/locale/lv/LC_MESSAGES/kio_applications.mo share/locale/lv/LC_MESSAGES/kio_archive.mo share/locale/lv/LC_MESSAGES/kio_audiocd.mo +share/locale/lv/LC_MESSAGES/kio_bookmarks.mo share/locale/lv/LC_MESSAGES/kio_finger.mo share/locale/lv/LC_MESSAGES/kio_fish.mo share/locale/lv/LC_MESSAGES/kio_floppy.mo @@ -212,11 +217,11 @@ share/locale/lv/LC_MESSAGES/kio_jabberdisco.mo share/locale/lv/LC_MESSAGES/kio_ldap.mo share/locale/lv/LC_MESSAGES/kio_man.mo share/locale/lv/LC_MESSAGES/kio_mbox.mo +share/locale/lv/LC_MESSAGES/kio_nepomuksearch.mo share/locale/lv/LC_MESSAGES/kio_nfs.mo share/locale/lv/LC_MESSAGES/kio_nntp.mo share/locale/lv/LC_MESSAGES/kio_pop3.mo share/locale/lv/LC_MESSAGES/kio_remote.mo -share/locale/lv/LC_MESSAGES/kio_settings.mo share/locale/lv/LC_MESSAGES/kio_sftp.mo share/locale/lv/LC_MESSAGES/kio_sieve.mo share/locale/lv/LC_MESSAGES/kio_smb.mo @@ -271,10 +276,10 @@ share/locale/lv/LC_MESSAGES/kontactinterfaces.mo share/locale/lv/LC_MESSAGES/korganizer.mo share/locale/lv/LC_MESSAGES/korn.mo share/locale/lv/LC_MESSAGES/kpackage.mo +share/locale/lv/LC_MESSAGES/kpartloader.mo share/locale/lv/LC_MESSAGES/kpartsaver.mo share/locale/lv/LC_MESSAGES/kpasswdserver.mo share/locale/lv/LC_MESSAGES/kpat.mo -share/locale/lv/LC_MESSAGES/kpercentage.mo share/locale/lv/LC_MESSAGES/kpilot.mo share/locale/lv/LC_MESSAGES/kppp.mo share/locale/lv/LC_MESSAGES/kppplogview.mo @@ -291,26 +296,19 @@ share/locale/lv/LC_MESSAGES/kres_groupware.mo share/locale/lv/LC_MESSAGES/kres_groupwise.mo share/locale/lv/LC_MESSAGES/kres_kolab.mo share/locale/lv/LC_MESSAGES/kres_remote.mo +share/locale/lv/LC_MESSAGES/kres_scalix.mo share/locale/lv/LC_MESSAGES/kres_tvanytime.mo share/locale/lv/LC_MESSAGES/kres_xmlrpc.mo share/locale/lv/LC_MESSAGES/kreversi.mo share/locale/lv/LC_MESSAGES/krfb.mo share/locale/lv/LC_MESSAGES/kruler.mo share/locale/lv/LC_MESSAGES/krunner.mo -share/locale/lv/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/lv/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/lv/LC_MESSAGES/krunner_contacts.mo -share/locale/lv/LC_MESSAGES/krunner_converterrunner.mo -share/locale/lv/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/lv/LC_MESSAGES/krunner_sessions.mo -share/locale/lv/LC_MESSAGES/krunner_shellrunner.mo -share/locale/lv/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/lv/LC_MESSAGES/krunner_xesam.mo share/locale/lv/LC_MESSAGES/ksame.mo share/locale/lv/LC_MESSAGES/ksaneplugin.mo share/locale/lv/LC_MESSAGES/ksayit.mo share/locale/lv/LC_MESSAGES/kscd.mo share/locale/lv/LC_MESSAGES/kscreensaver.mo +share/locale/lv/LC_MESSAGES/ksendemail.mo share/locale/lv/LC_MESSAGES/kshisen.mo share/locale/lv/LC_MESSAGES/kshorturifilter.mo share/locale/lv/LC_MESSAGES/ksmserver.mo @@ -325,6 +323,7 @@ share/locale/lv/LC_MESSAGES/kstyle_config.mo share/locale/lv/LC_MESSAGES/kstyle_keramik_config.mo share/locale/lv/LC_MESSAGES/kstyle_phase_config.mo share/locale/lv/LC_MESSAGES/ksysguard.mo +share/locale/lv/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/lv/LC_MESSAGES/ksystemlog.mo share/locale/lv/LC_MESSAGES/ksystraycmd.mo share/locale/lv/LC_MESSAGES/ksysv.mo @@ -334,7 +333,6 @@ share/locale/lv/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/lv/LC_MESSAGES/kthememanager.mo share/locale/lv/LC_MESSAGES/ktimer.mo share/locale/lv/LC_MESSAGES/ktimetracker.mo -share/locale/lv/LC_MESSAGES/ktnef.mo share/locale/lv/LC_MESSAGES/ktouch.mo share/locale/lv/LC_MESSAGES/ktraderclient.mo share/locale/lv/LC_MESSAGES/ktuberling.mo @@ -343,6 +341,7 @@ share/locale/lv/LC_MESSAGES/kuiserver.mo share/locale/lv/LC_MESSAGES/kuiviewer.mo share/locale/lv/LC_MESSAGES/kurifilter.mo share/locale/lv/LC_MESSAGES/kuser.mo +share/locale/lv/LC_MESSAGES/kwalletd.mo share/locale/lv/LC_MESSAGES/kwalletmanager.mo share/locale/lv/LC_MESSAGES/kwatchgnupg.mo share/locale/lv/LC_MESSAGES/kweather.mo @@ -387,11 +386,14 @@ share/locale/lv/LC_MESSAGES/libmailtransport.mo share/locale/lv/LC_MESSAGES/liboktetacore.mo share/locale/lv/LC_MESSAGES/libphonon.mo share/locale/lv/LC_MESSAGES/libplasma.mo +share/locale/lv/LC_MESSAGES/libplasmaclock.mo share/locale/lv/LC_MESSAGES/libtaskmanager.mo share/locale/lv/LC_MESSAGES/lokalize.mo share/locale/lv/LC_MESSAGES/lskat.mo share/locale/lv/LC_MESSAGES/marble.mo +share/locale/lv/LC_MESSAGES/marble_qt.mo share/locale/lv/LC_MESSAGES/nepomuk.mo +share/locale/lv/LC_MESSAGES/nepomuksearch.mo share/locale/lv/LC_MESSAGES/nsplugin.mo share/locale/lv/LC_MESSAGES/okteta.mo share/locale/lv/LC_MESSAGES/oktetapart.mo @@ -401,6 +403,7 @@ share/locale/lv/LC_MESSAGES/okular_comicbook.mo share/locale/lv/LC_MESSAGES/okular_djvu.mo share/locale/lv/LC_MESSAGES/okular_dvi.mo share/locale/lv/LC_MESSAGES/okular_epub.mo +share/locale/lv/LC_MESSAGES/okular_fax.mo share/locale/lv/LC_MESSAGES/okular_fictionbook.mo share/locale/lv/LC_MESSAGES/okular_ghostview.mo share/locale/lv/LC_MESSAGES/okular_kimgio.mo @@ -413,10 +416,15 @@ share/locale/lv/LC_MESSAGES/parley.mo share/locale/lv/LC_MESSAGES/phonon-xine.mo share/locale/lv/LC_MESSAGES/phonon_gstreamer.mo share/locale/lv/LC_MESSAGES/phonon_kde.mo +share/locale/lv/LC_MESSAGES/plasma-overlay.mo +share/locale/lv/LC_MESSAGES/plasma-shells-common.mo share/locale/lv/LC_MESSAGES/plasma.mo share/locale/lv/LC_MESSAGES/plasma_applet_battery.mo +share/locale/lv/LC_MESSAGES/plasma_applet_bball.mo share/locale/lv/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/lv/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/lv/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/lv/LC_MESSAGES/plasma_applet_charselect.mo share/locale/lv/LC_MESSAGES/plasma_applet_clock.mo share/locale/lv/LC_MESSAGES/plasma_applet_comic.mo share/locale/lv/LC_MESSAGES/plasma_applet_desktop.mo @@ -428,26 +436,61 @@ share/locale/lv/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/lv/LC_MESSAGES/plasma_applet_folderview.mo share/locale/lv/LC_MESSAGES/plasma_applet_frame.mo share/locale/lv/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/lv/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/lv/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/lv/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/lv/LC_MESSAGES/plasma_applet_katesession.mo share/locale/lv/LC_MESSAGES/plasma_applet_kget.mo -share/locale/lv/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/lv/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/lv/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/lv/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/lv/LC_MESSAGES/plasma_applet_life.mo share/locale/lv/LC_MESSAGES/plasma_applet_luna.mo +share/locale/lv/LC_MESSAGES/plasma_applet_news.mo share/locale/lv/LC_MESSAGES/plasma_applet_notes.mo share/locale/lv/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/lv/LC_MESSAGES/plasma_applet_pager.mo share/locale/lv/LC_MESSAGES/plasma_applet_panel.mo +share/locale/lv/LC_MESSAGES/plasma_applet_paste.mo +share/locale/lv/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/lv/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/lv/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/lv/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/lv/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/lv/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/lv/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/lv/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/lv/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/lv/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/lv/LC_MESSAGES/plasma_applet_timer.mo share/locale/lv/LC_MESSAGES/plasma_applet_trash.mo share/locale/lv/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/lv/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/lv/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/lv/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/lv/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/lv/LC_MESSAGES/plasma_engine_dict.mo +share/locale/lv/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/lv/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/lv/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/lv/LC_MESSAGES/plasma_engine_rss.mo +share/locale/lv/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/lv/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/lv/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/lv/LC_MESSAGES/plasma_runner_locations.mo +share/locale/lv/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/lv/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/lv/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/lv/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/lv/LC_MESSAGES/plasma_runner_shell.mo +share/locale/lv/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/lv/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/lv/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/lv/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/lv/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/lv/LC_MESSAGES/plasmaengineexplorer.mo share/locale/lv/LC_MESSAGES/plasmapkg.mo share/locale/lv/LC_MESSAGES/plasmoidviewer.mo +share/locale/lv/LC_MESSAGES/powerdevil.mo share/locale/lv/LC_MESSAGES/printer-applet.mo share/locale/lv/LC_MESSAGES/processcore.mo share/locale/lv/LC_MESSAGES/processui.mo @@ -459,10 +502,12 @@ share/locale/lv/LC_MESSAGES/solidcontrol.mo share/locale/lv/LC_MESSAGES/soliduiserver.mo share/locale/lv/LC_MESSAGES/spy.mo share/locale/lv/LC_MESSAGES/step.mo +share/locale/lv/LC_MESSAGES/step_qt.mo share/locale/lv/LC_MESSAGES/strigila_diff.mo share/locale/lv/LC_MESSAGES/superkaramba.mo share/locale/lv/LC_MESSAGES/svgpart.mo share/locale/lv/LC_MESSAGES/sweeper.mo +share/locale/lv/LC_MESSAGES/system-config-printer-kde.mo share/locale/lv/LC_MESSAGES/systemsettings.mo share/locale/lv/LC_MESSAGES/timezones4.mo share/locale/lv/LC_MESSAGES/useraccount.mo diff --git a/misc/kde4-l10n-mai/Makefile b/misc/kde4-l10n-mai/Makefile new file mode 100644 index 000000000000..0af49f24e683 --- /dev/null +++ b/misc/kde4-l10n-mai/Makefile @@ -0,0 +1,21 @@ +# New ports collection makefile for: misc/kde4-l10n-mai +# Date created: 2009-01-25 +# Whom: Max Brazhnikov <makc@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= kde-l10n +PORTVERSION= ${KDE4_VERSION} +CATEGORIES= misc kde + +MAINTAINER= kde@FreeBSD.org +COMMENT= Maithili messages and documentation for KDE4 + +KDE4_L10N= mai + +post-extract: + ${MKDIR} ${WRKSRC}/build + +.include "${.CURDIR}/../../misc/kde4-l10n/files/bsd.l10n.mk" +.include <bsd.port.mk> diff --git a/misc/kde4-l10n-mai/distinfo b/misc/kde4-l10n-mai/distinfo new file mode 100644 index 000000000000..6e0c123025b5 --- /dev/null +++ b/misc/kde4-l10n-mai/distinfo @@ -0,0 +1,3 @@ +MD5 (KDE/kde-l10n/kde-l10n-mai-4.2.0.tar.bz2) = 5292220754dfd3583a34929f5fa29f61 +SHA256 (KDE/kde-l10n/kde-l10n-mai-4.2.0.tar.bz2) = a9309d2d54f74709d1b1228841edc4ca0970a01b84ef89a9f4b151709a21a0bb +SIZE (KDE/kde-l10n/kde-l10n-mai-4.2.0.tar.bz2) = 367131 diff --git a/misc/kde4-l10n-mai/pkg-descr b/misc/kde4-l10n-mai/pkg-descr new file mode 100644 index 000000000000..3073b1096b79 --- /dev/null +++ b/misc/kde4-l10n-mai/pkg-descr @@ -0,0 +1,3 @@ +Localized messages and documentation for KDE4. + +WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-mai/pkg-plist b/misc/kde4-l10n-mai/pkg-plist new file mode 100644 index 000000000000..7c3f7bfcdbca --- /dev/null +++ b/misc/kde4-l10n-mai/pkg-plist @@ -0,0 +1,211 @@ +share/locale/mai/LC_MESSAGES/audiorename_plugin.mo +share/locale/mai/LC_MESSAGES/display.mo +share/locale/mai/LC_MESSAGES/dolphin.mo +share/locale/mai/LC_MESSAGES/drkonqi.mo +share/locale/mai/LC_MESSAGES/filetypes.mo +share/locale/mai/LC_MESSAGES/htmlsearch.mo +share/locale/mai/LC_MESSAGES/imagerename_plugin.mo +share/locale/mai/LC_MESSAGES/joystick.mo +share/locale/mai/LC_MESSAGES/kaccess.mo +share/locale/mai/LC_MESSAGES/kappfinder.mo +share/locale/mai/LC_MESSAGES/katepart4.mo +share/locale/mai/LC_MESSAGES/kblankscrn.mo +share/locale/mai/LC_MESSAGES/kcertpart.mo +share/locale/mai/LC_MESSAGES/kcm_autostart.mo +share/locale/mai/LC_MESSAGES/kcm_desktopthemedetails.mo +share/locale/mai/LC_MESSAGES/kcm_emoticons.mo +share/locale/mai/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/mai/LC_MESSAGES/kcm_memory.mo +share/locale/mai/LC_MESSAGES/kcm_partition.mo +share/locale/mai/LC_MESSAGES/kcm_pci.mo +share/locale/mai/LC_MESSAGES/kcm_phonon.mo +share/locale/mai/LC_MESSAGES/kcm_phononxine.mo +share/locale/mai/LC_MESSAGES/kcm_solid.mo +share/locale/mai/LC_MESSAGES/kcm_standard_actions.mo +share/locale/mai/LC_MESSAGES/kcmaccess.mo +share/locale/mai/LC_MESSAGES/kcmbackground.mo +share/locale/mai/LC_MESSAGES/kcmbell.mo +share/locale/mai/LC_MESSAGES/kcmcgi.mo +share/locale/mai/LC_MESSAGES/kcmcolors.mo +share/locale/mai/LC_MESSAGES/kcmcomponentchooser.mo +share/locale/mai/LC_MESSAGES/kcmcrypto.mo +share/locale/mai/LC_MESSAGES/kcmcss.mo +share/locale/mai/LC_MESSAGES/kcmenergy.mo +share/locale/mai/LC_MESSAGES/kcmfonts.mo +share/locale/mai/LC_MESSAGES/kcmhtmlsearch.mo +share/locale/mai/LC_MESSAGES/kcmicons.mo +share/locale/mai/LC_MESSAGES/kcminfo.mo +share/locale/mai/LC_MESSAGES/kcminit.mo +share/locale/mai/LC_MESSAGES/kcminput.mo +share/locale/mai/LC_MESSAGES/kcmioslaveinfo.mo +share/locale/mai/LC_MESSAGES/kcmkclock.mo +share/locale/mai/LC_MESSAGES/kcmkded.mo +share/locale/mai/LC_MESSAGES/kcmkdnssd.mo +share/locale/mai/LC_MESSAGES/kcmkeyboard.mo +share/locale/mai/LC_MESSAGES/kcmkeys.mo +share/locale/mai/LC_MESSAGES/kcmkio.mo +share/locale/mai/LC_MESSAGES/kcmkonq.mo +share/locale/mai/LC_MESSAGES/kcmkonqhtml.mo +share/locale/mai/LC_MESSAGES/kcmkurifilt.mo +share/locale/mai/LC_MESSAGES/kcmkwincompositing.mo +share/locale/mai/LC_MESSAGES/kcmkwindecoration.mo +share/locale/mai/LC_MESSAGES/kcmkwinrules.mo +share/locale/mai/LC_MESSAGES/kcmkwm.mo +share/locale/mai/LC_MESSAGES/kcmlaunch.mo +share/locale/mai/LC_MESSAGES/kcmlocale.mo +share/locale/mai/LC_MESSAGES/kcmnic.mo +share/locale/mai/LC_MESSAGES/kcmnotify.mo +share/locale/mai/LC_MESSAGES/kcmopengl.mo +share/locale/mai/LC_MESSAGES/kcmperformance.mo +share/locale/mai/LC_MESSAGES/kcmsamba.mo +share/locale/mai/LC_MESSAGES/kcmscreensaver.mo +share/locale/mai/LC_MESSAGES/kcmshell.mo +share/locale/mai/LC_MESSAGES/kcmsmartcard.mo +share/locale/mai/LC_MESSAGES/kcmsmserver.mo +share/locale/mai/LC_MESSAGES/kcmsolidproc.mo +share/locale/mai/LC_MESSAGES/kcmstyle.mo +share/locale/mai/LC_MESSAGES/kcmusb.mo +share/locale/mai/LC_MESSAGES/kcmview1394.mo +share/locale/mai/LC_MESSAGES/kcmxinerama.mo +share/locale/mai/LC_MESSAGES/kde-menu.mo +share/locale/mai/LC_MESSAGES/kdebugdialog.mo +share/locale/mai/LC_MESSAGES/kded_phononserver.mo +share/locale/mai/LC_MESSAGES/kdelibs4.mo +share/locale/mai/LC_MESSAGES/kdelibs_colors4.mo +share/locale/mai/LC_MESSAGES/kdepasswd.mo +share/locale/mai/LC_MESSAGES/kdesu.mo +share/locale/mai/LC_MESSAGES/kdesud.mo +share/locale/mai/LC_MESSAGES/kdialog.mo +share/locale/mai/LC_MESSAGES/kdmconfig.mo +share/locale/mai/LC_MESSAGES/kdmgreet.mo +share/locale/mai/LC_MESSAGES/keditbookmarks.mo +share/locale/mai/LC_MESSAGES/kfile.mo +share/locale/mai/LC_MESSAGES/kfileaudiopreview4.mo +share/locale/mai/LC_MESSAGES/kfindpart.mo +share/locale/mai/LC_MESSAGES/kfmclient.mo +share/locale/mai/LC_MESSAGES/kfontinst.mo +share/locale/mai/LC_MESSAGES/kgreet_classic.mo +share/locale/mai/LC_MESSAGES/kgreet_generic.mo +share/locale/mai/LC_MESSAGES/kgreet_winbind.mo +share/locale/mai/LC_MESSAGES/khelpcenter.mo +share/locale/mai/LC_MESSAGES/khotkeys.mo +share/locale/mai/LC_MESSAGES/khotnewstuff.mo +share/locale/mai/LC_MESSAGES/khtmlkttsd.mo +share/locale/mai/LC_MESSAGES/kiconfinder.mo +share/locale/mai/LC_MESSAGES/kinfocenter.mo +share/locale/mai/LC_MESSAGES/kio4.mo +share/locale/mai/LC_MESSAGES/kio_applications.mo +share/locale/mai/LC_MESSAGES/kio_archive.mo +share/locale/mai/LC_MESSAGES/kio_bookmarks.mo +share/locale/mai/LC_MESSAGES/kio_finger.mo +share/locale/mai/LC_MESSAGES/kio_fish.mo +share/locale/mai/LC_MESSAGES/kio_floppy.mo +share/locale/mai/LC_MESSAGES/kio_help4.mo +share/locale/mai/LC_MESSAGES/kio_man.mo +share/locale/mai/LC_MESSAGES/kio_nepomuksearch.mo +share/locale/mai/LC_MESSAGES/kio_nfs.mo +share/locale/mai/LC_MESSAGES/kio_remote.mo +share/locale/mai/LC_MESSAGES/kio_sftp.mo +share/locale/mai/LC_MESSAGES/kio_smb.mo +share/locale/mai/LC_MESSAGES/kio_thumbnail.mo +share/locale/mai/LC_MESSAGES/kio_trash.mo +share/locale/mai/LC_MESSAGES/kioclient.mo +share/locale/mai/LC_MESSAGES/kioexec.mo +share/locale/mai/LC_MESSAGES/klipper.mo +share/locale/mai/LC_MESSAGES/kmenuedit.mo +share/locale/mai/LC_MESSAGES/kmimetypefinder.mo +share/locale/mai/LC_MESSAGES/knetattach.mo +share/locale/mai/LC_MESSAGES/knotify4.mo +share/locale/mai/LC_MESSAGES/konqueror.mo +share/locale/mai/LC_MESSAGES/konsole.mo +share/locale/mai/LC_MESSAGES/kpasswdserver.mo +share/locale/mai/LC_MESSAGES/kquitapp.mo +share/locale/mai/LC_MESSAGES/krandr.mo +share/locale/mai/LC_MESSAGES/krdb.mo +share/locale/mai/LC_MESSAGES/kreadconfig.mo +share/locale/mai/LC_MESSAGES/krunner.mo +share/locale/mai/LC_MESSAGES/kscreensaver.mo +share/locale/mai/LC_MESSAGES/kshorturifilter.mo +share/locale/mai/LC_MESSAGES/ksmserver.mo +share/locale/mai/LC_MESSAGES/ksplashthemes.mo +share/locale/mai/LC_MESSAGES/kstart.mo +share/locale/mai/LC_MESSAGES/kstyle_config.mo +share/locale/mai/LC_MESSAGES/kstyle_keramik_config.mo +share/locale/mai/LC_MESSAGES/ksysguard.mo +share/locale/mai/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/mai/LC_MESSAGES/ksystraycmd.mo +share/locale/mai/LC_MESSAGES/ktexteditor_plugins.mo +share/locale/mai/LC_MESSAGES/kthememanager.mo +share/locale/mai/LC_MESSAGES/ktraderclient.mo +share/locale/mai/LC_MESSAGES/kuiserver.mo +share/locale/mai/LC_MESSAGES/kurifilter.mo +share/locale/mai/LC_MESSAGES/kwalletd.mo +share/locale/mai/LC_MESSAGES/kwin.mo +share/locale/mai/LC_MESSAGES/kwin_clients.mo +share/locale/mai/LC_MESSAGES/kwin_effects.mo +share/locale/mai/LC_MESSAGES/kwin_lib.mo +share/locale/mai/LC_MESSAGES/kwinstartmenu.mo +share/locale/mai/LC_MESSAGES/kwrite.mo +share/locale/mai/LC_MESSAGES/kwriteconfig.mo +share/locale/mai/LC_MESSAGES/kxkb.mo +share/locale/mai/LC_MESSAGES/libkonq.mo +share/locale/mai/LC_MESSAGES/libkscreensaver.mo +share/locale/mai/LC_MESSAGES/libkworkspace.mo +share/locale/mai/LC_MESSAGES/libplasma.mo +share/locale/mai/LC_MESSAGES/libplasmaclock.mo +share/locale/mai/LC_MESSAGES/libtaskmanager.mo +share/locale/mai/LC_MESSAGES/nepomuk.mo +share/locale/mai/LC_MESSAGES/nepomuksearch.mo +share/locale/mai/LC_MESSAGES/nsplugin.mo +share/locale/mai/LC_MESSAGES/phonon_kde.mo +share/locale/mai/LC_MESSAGES/plasma-overlay.mo +share/locale/mai/LC_MESSAGES/plasma-shells-common.mo +share/locale/mai/LC_MESSAGES/plasma.mo +share/locale/mai/LC_MESSAGES/plasma_applet_battery.mo +share/locale/mai/LC_MESSAGES/plasma_applet_clock.mo +share/locale/mai/LC_MESSAGES/plasma_applet_desktop.mo +share/locale/mai/LC_MESSAGES/plasma_applet_devicenotifier.mo +share/locale/mai/LC_MESSAGES/plasma_applet_dig_clock.mo +share/locale/mai/LC_MESSAGES/plasma_applet_folderview.mo +share/locale/mai/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/mai/LC_MESSAGES/plasma_applet_pager.mo +share/locale/mai/LC_MESSAGES/plasma_applet_panel.mo +share/locale/mai/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/mai/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/mai/LC_MESSAGES/plasma_applet_systemtray.mo +share/locale/mai/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/mai/LC_MESSAGES/plasma_applet_trash.mo +share/locale/mai/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/mai/LC_MESSAGES/plasma_appletscript_qedje.mo +share/locale/mai/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo +share/locale/mai/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/mai/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/mai/LC_MESSAGES/plasma_engine_rss.mo +share/locale/mai/LC_MESSAGES/plasma_runner_locations.mo +share/locale/mai/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/mai/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/mai/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/mai/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/mai/LC_MESSAGES/plasma_runner_shell.mo +share/locale/mai/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/mai/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/mai/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/mai/LC_MESSAGES/plasma_wallpaper_image.mo +share/locale/mai/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/mai/LC_MESSAGES/plasmapkg.mo +share/locale/mai/LC_MESSAGES/plasmoidviewer.mo +share/locale/mai/LC_MESSAGES/powerdevil.mo +share/locale/mai/LC_MESSAGES/processcore.mo +share/locale/mai/LC_MESSAGES/processui.mo +share/locale/mai/LC_MESSAGES/solid-bluetooth.mo +share/locale/mai/LC_MESSAGES/solid-hardware.mo +share/locale/mai/LC_MESSAGES/solid-network.mo +share/locale/mai/LC_MESSAGES/solid-powermanagement.mo +share/locale/mai/LC_MESSAGES/solidcontrol.mo +share/locale/mai/LC_MESSAGES/soliduiserver.mo +share/locale/mai/LC_MESSAGES/systemsettings.mo +share/locale/mai/LC_MESSAGES/timezones4.mo +share/locale/mai/LC_MESSAGES/useraccount.mo +share/locale/mai/entry.desktop +@dirrm share/locale/mai/LC_MESSAGES +@dirrm share/locale/mai diff --git a/misc/kde4-l10n-mk/distinfo b/misc/kde4-l10n-mk/distinfo index 27be20703082..dbd190d9b752 100644 --- a/misc/kde4-l10n-mk/distinfo +++ b/misc/kde4-l10n-mk/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-mk-4.1.4.tar.bz2) = aef1f6063ba8701a352132aed655ab05 -SHA256 (KDE/kde-l10n/kde-l10n-mk-4.1.4.tar.bz2) = 9c460638d8e58a1eb2b89e4899d0c2d61d7974ed32cb528063871e262c88bf1c -SIZE (KDE/kde-l10n/kde-l10n-mk-4.1.4.tar.bz2) = 1641316 +MD5 (KDE/kde-l10n/kde-l10n-mk-4.2.0.tar.bz2) = 933d60b4c535d9d6d9729bd986906e64 +SHA256 (KDE/kde-l10n/kde-l10n-mk-4.2.0.tar.bz2) = 347b6a4655e006150e96081267c02da480fa2c4ce44bddac03e0a977616cbf5f +SIZE (KDE/kde-l10n/kde-l10n-mk-4.2.0.tar.bz2) = 1657946 diff --git a/misc/kde4-l10n-mk/pkg-plist b/misc/kde4-l10n-mk/pkg-plist index 8cb71f086b75..354dfa10868e 100644 --- a/misc/kde4-l10n-mk/pkg-plist +++ b/misc/kde4-l10n-mk/pkg-plist @@ -24,6 +24,7 @@ share/locale/mk/LC_MESSAGES/kaccess.mo share/locale/mk/LC_MESSAGES/kaddressbook.mo share/locale/mk/LC_MESSAGES/kalarm.mo share/locale/mk/LC_MESSAGES/kalzium.mo +share/locale/mk/LC_MESSAGES/kalzium_qt.mo share/locale/mk/LC_MESSAGES/kanagram.mo share/locale/mk/LC_MESSAGES/kappfinder.mo share/locale/mk/LC_MESSAGES/kate.mo @@ -31,7 +32,6 @@ share/locale/mk/LC_MESSAGES/katefiletemplates.mo share/locale/mk/LC_MESSAGES/katehelloworld.mo share/locale/mk/LC_MESSAGES/katehtmltools.mo share/locale/mk/LC_MESSAGES/katekjswrapper.mo -share/locale/mk/LC_MESSAGES/katemake.mo share/locale/mk/LC_MESSAGES/kateopenheader.mo share/locale/mk/LC_MESSAGES/katepart4.mo share/locale/mk/LC_MESSAGES/katepybrowse.mo @@ -46,19 +46,19 @@ share/locale/mk/LC_MESSAGES/kblackbox.mo share/locale/mk/LC_MESSAGES/kblankscrn.mo share/locale/mk/LC_MESSAGES/kbounce.mo share/locale/mk/LC_MESSAGES/kbruch.mo -share/locale/mk/LC_MESSAGES/kbstateapplet.mo share/locale/mk/LC_MESSAGES/kcalc.mo share/locale/mk/LC_MESSAGES/kcertpart.mo share/locale/mk/LC_MESSAGES/kcharselect.mo share/locale/mk/LC_MESSAGES/kcm_autostart.mo +share/locale/mk/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/mk/LC_MESSAGES/kcm_emoticons.mo share/locale/mk/LC_MESSAGES/kcm_krfb.mo share/locale/mk/LC_MESSAGES/kcm_kwindesktop.mo share/locale/mk/LC_MESSAGES/kcm_memory.mo share/locale/mk/LC_MESSAGES/kcm_partition.mo share/locale/mk/LC_MESSAGES/kcm_phonon.mo -share/locale/mk/LC_MESSAGES/kcm_phononxine.mo share/locale/mk/LC_MESSAGES/kcm_solid.mo +share/locale/mk/LC_MESSAGES/kcm_standard_actions.mo share/locale/mk/LC_MESSAGES/kcmaccess.mo share/locale/mk/LC_MESSAGES/kcmaudiocd.mo share/locale/mk/LC_MESSAGES/kcmbackground.mo @@ -107,7 +107,6 @@ share/locale/mk/LC_MESSAGES/kcmsmartcard.mo share/locale/mk/LC_MESSAGES/kcmsmserver.mo share/locale/mk/LC_MESSAGES/kcmsolidproc.mo share/locale/mk/LC_MESSAGES/kcmstyle.mo -share/locale/mk/LC_MESSAGES/kcmtaskbar.mo share/locale/mk/LC_MESSAGES/kcmusb.mo share/locale/mk/LC_MESSAGES/kcmview1394.mo share/locale/mk/LC_MESSAGES/kcmxinerama.mo @@ -115,6 +114,7 @@ share/locale/mk/LC_MESSAGES/kcolorchooser.mo share/locale/mk/LC_MESSAGES/kcron.mo share/locale/mk/LC_MESSAGES/kdat.mo share/locale/mk/LC_MESSAGES/kde-menu.mo +share/locale/mk/LC_MESSAGES/kdeasciiquarium.mo share/locale/mk/LC_MESSAGES/kdebugdialog.mo share/locale/mk/LC_MESSAGES/kdelibs4.mo share/locale/mk/LC_MESSAGES/kdelibs_colors4.mo @@ -176,8 +176,10 @@ share/locale/mk/LC_MESSAGES/kig.mo share/locale/mk/LC_MESSAGES/kinetd.mo share/locale/mk/LC_MESSAGES/kinfocenter.mo share/locale/mk/LC_MESSAGES/kio4.mo +share/locale/mk/LC_MESSAGES/kio_applications.mo share/locale/mk/LC_MESSAGES/kio_archive.mo share/locale/mk/LC_MESSAGES/kio_audiocd.mo +share/locale/mk/LC_MESSAGES/kio_bookmarks.mo share/locale/mk/LC_MESSAGES/kio_finger.mo share/locale/mk/LC_MESSAGES/kio_fish.mo share/locale/mk/LC_MESSAGES/kio_floppy.mo @@ -187,11 +189,11 @@ share/locale/mk/LC_MESSAGES/kio_imap4.mo share/locale/mk/LC_MESSAGES/kio_jabberdisco.mo share/locale/mk/LC_MESSAGES/kio_ldap.mo share/locale/mk/LC_MESSAGES/kio_man.mo +share/locale/mk/LC_MESSAGES/kio_nepomuksearch.mo share/locale/mk/LC_MESSAGES/kio_nfs.mo share/locale/mk/LC_MESSAGES/kio_nntp.mo share/locale/mk/LC_MESSAGES/kio_pop3.mo share/locale/mk/LC_MESSAGES/kio_remote.mo -share/locale/mk/LC_MESSAGES/kio_settings.mo share/locale/mk/LC_MESSAGES/kio_sftp.mo share/locale/mk/LC_MESSAGES/kio_sieve.mo share/locale/mk/LC_MESSAGES/kio_smb.mo @@ -243,7 +245,6 @@ share/locale/mk/LC_MESSAGES/kpackage.mo share/locale/mk/LC_MESSAGES/kpartsaver.mo share/locale/mk/LC_MESSAGES/kpasswdserver.mo share/locale/mk/LC_MESSAGES/kpat.mo -share/locale/mk/LC_MESSAGES/kpercentage.mo share/locale/mk/LC_MESSAGES/kpilot.mo share/locale/mk/LC_MESSAGES/kppp.mo share/locale/mk/LC_MESSAGES/kppplogview.mo @@ -265,7 +266,6 @@ share/locale/mk/LC_MESSAGES/kreversi.mo share/locale/mk/LC_MESSAGES/krfb.mo share/locale/mk/LC_MESSAGES/kruler.mo share/locale/mk/LC_MESSAGES/krunner.mo -share/locale/mk/LC_MESSAGES/krunner_sessions.mo share/locale/mk/LC_MESSAGES/ksame.mo share/locale/mk/LC_MESSAGES/ksayit.mo share/locale/mk/LC_MESSAGES/kscd.mo @@ -290,7 +290,6 @@ share/locale/mk/LC_MESSAGES/ktexteditor_plugins.mo share/locale/mk/LC_MESSAGES/kthememanager.mo share/locale/mk/LC_MESSAGES/ktimer.mo share/locale/mk/LC_MESSAGES/ktimetracker.mo -share/locale/mk/LC_MESSAGES/ktnef.mo share/locale/mk/LC_MESSAGES/ktouch.mo share/locale/mk/LC_MESSAGES/ktraderclient.mo share/locale/mk/LC_MESSAGES/kttsd.mo @@ -301,6 +300,7 @@ share/locale/mk/LC_MESSAGES/kuiserver.mo share/locale/mk/LC_MESSAGES/kuiviewer.mo share/locale/mk/LC_MESSAGES/kurifilter.mo share/locale/mk/LC_MESSAGES/kuser.mo +share/locale/mk/LC_MESSAGES/kwalletd.mo share/locale/mk/LC_MESSAGES/kwalletmanager.mo share/locale/mk/LC_MESSAGES/kwatchgnupg.mo share/locale/mk/LC_MESSAGES/kweather.mo @@ -330,6 +330,7 @@ share/locale/mk/LC_MESSAGES/libksieve.mo share/locale/mk/LC_MESSAGES/libkworkspace.mo share/locale/mk/LC_MESSAGES/libphonon.mo share/locale/mk/LC_MESSAGES/libplasma.mo +share/locale/mk/LC_MESSAGES/libplasmaclock.mo share/locale/mk/LC_MESSAGES/libtaskmanager.mo share/locale/mk/LC_MESSAGES/lskat.mo share/locale/mk/LC_MESSAGES/nepomuk.mo @@ -356,10 +357,21 @@ share/locale/mk/LC_MESSAGES/plasma_applet_desktop.mo share/locale/mk/LC_MESSAGES/plasma_applet_devicenotifier.mo share/locale/mk/LC_MESSAGES/plasma_applet_dig_clock.mo share/locale/mk/LC_MESSAGES/plasma_applet_kget.mo -share/locale/mk/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/mk/LC_MESSAGES/plasma_applet_launcher.mo share/locale/mk/LC_MESSAGES/plasma_applet_pager.mo -share/locale/mk/LC_MESSAGES/plasma_engine_dict.mo +share/locale/mk/LC_MESSAGES/plasma_applet_panel.mo +share/locale/mk/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/mk/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/mk/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo +share/locale/mk/LC_MESSAGES/plasma_runner_locations.mo +share/locale/mk/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/mk/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/mk/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/mk/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/mk/LC_MESSAGES/plasma_runner_shell.mo +share/locale/mk/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/mk/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/mk/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/mk/LC_MESSAGES/plasmaengineexplorer.mo share/locale/mk/LC_MESSAGES/processcore.mo share/locale/mk/LC_MESSAGES/processui.mo diff --git a/misc/kde4-l10n-ml/distinfo b/misc/kde4-l10n-ml/distinfo index 63446cbc59c0..3a4987f2ae71 100644 --- a/misc/kde4-l10n-ml/distinfo +++ b/misc/kde4-l10n-ml/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-ml-4.1.4.tar.bz2) = 2491e682dc830fdb0b6738e9ff6e04d0 -SHA256 (KDE/kde-l10n/kde-l10n-ml-4.1.4.tar.bz2) = 8e3a750f8a8208eeddf49a5828412bbf56659451ffd909300dbdd49543147e85 -SIZE (KDE/kde-l10n/kde-l10n-ml-4.1.4.tar.bz2) = 521822 +MD5 (KDE/kde-l10n/kde-l10n-ml-4.2.0.tar.bz2) = 462763d9a71c273b7ae6f3ebd2c798e1 +SHA256 (KDE/kde-l10n/kde-l10n-ml-4.2.0.tar.bz2) = 1c5e092293e0d5c2bf8cb77075fbb8e11a691cc6f5f0d9e2fc4fbf3fa090a6a8 +SIZE (KDE/kde-l10n/kde-l10n-ml-4.2.0.tar.bz2) = 20026805 diff --git a/misc/kde4-l10n-ml/pkg-plist b/misc/kde4-l10n-ml/pkg-plist index 35967f40d6a7..771363d15225 100644 --- a/misc/kde4-l10n-ml/pkg-plist +++ b/misc/kde4-l10n-ml/pkg-plist @@ -1,5 +1,529 @@ +share/apps/klettres/ml/alpha/a.ogg +share/apps/klettres/ml/alpha/aa.ogg +share/apps/klettres/ml/alpha/ae.ogg +share/apps/klettres/ml/alpha/aeae.ogg +share/apps/klettres/ml/alpha/aha.ogg +share/apps/klettres/ml/alpha/am.ogg +share/apps/klettres/ml/alpha/ba.ogg +share/apps/klettres/ml/alpha/bha.ogg +share/apps/klettres/ml/alpha/cha.ogg +share/apps/klettres/ml/alpha/chha.ogg +share/apps/klettres/ml/alpha/da.ogg +share/apps/klettres/ml/alpha/dda.ogg +share/apps/klettres/ml/alpha/dha.ogg +share/apps/klettres/ml/alpha/e.ogg +share/apps/klettres/ml/alpha/ee.ogg +share/apps/klettres/ml/alpha/el.ogg +share/apps/klettres/ml/alpha/ell.ogg +share/apps/klettres/ml/alpha/en.ogg +share/apps/klettres/ml/alpha/er.ogg +share/apps/klettres/ml/alpha/ga.ogg +share/apps/klettres/ml/alpha/gha.ogg +share/apps/klettres/ml/alpha/ha.ogg +share/apps/klettres/ml/alpha/i.ogg +share/apps/klettres/ml/alpha/ja.ogg +share/apps/klettres/ml/alpha/jjha.ogg +share/apps/klettres/ml/alpha/ka.ogg +share/apps/klettres/ml/alpha/kha.ogg +share/apps/klettres/ml/alpha/la.ogg +share/apps/klettres/ml/alpha/lla.ogg +share/apps/klettres/ml/alpha/ma.ogg +share/apps/klettres/ml/alpha/na.ogg +share/apps/klettres/ml/alpha/nga.ogg +share/apps/klettres/ml/alpha/nja.ogg +share/apps/klettres/ml/alpha/nn.ogg +share/apps/klettres/ml/alpha/nna.ogg +share/apps/klettres/ml/alpha/o.ogg +share/apps/klettres/ml/alpha/oo.ogg +share/apps/klettres/ml/alpha/ou.ogg +share/apps/klettres/ml/alpha/pa.ogg +share/apps/klettres/ml/alpha/pha.ogg +share/apps/klettres/ml/alpha/ra.ogg +share/apps/klettres/ml/alpha/rra.ogg +share/apps/klettres/ml/alpha/ru.ogg +share/apps/klettres/ml/alpha/sa.ogg +share/apps/klettres/ml/alpha/sha.ogg +share/apps/klettres/ml/alpha/shsha.ogg +share/apps/klettres/ml/alpha/ta.ogg +share/apps/klettres/ml/alpha/tda.ogg +share/apps/klettres/ml/alpha/tha.ogg +share/apps/klettres/ml/alpha/thha.ogg +share/apps/klettres/ml/alpha/tta.ogg +share/apps/klettres/ml/alpha/u.ogg +share/apps/klettres/ml/alpha/uu.ogg +share/apps/klettres/ml/alpha/va.ogg +share/apps/klettres/ml/alpha/ya.ogg +share/apps/klettres/ml/alpha/zha.ogg +share/apps/klettres/ml/sounds.xml +share/apps/klettres/ml/syllab/baa.ogg +share/apps/klettres/ml/syllab/baha.ogg +share/apps/klettres/ml/syllab/bai.ogg +share/apps/klettres/ml/syllab/bam.ogg +share/apps/klettres/ml/syllab/bau.ogg +share/apps/klettres/ml/syllab/be.ogg +share/apps/klettres/ml/syllab/beae.ogg +share/apps/klettres/ml/syllab/bhaa.ogg +share/apps/klettres/ml/syllab/bhaha.ogg +share/apps/klettres/ml/syllab/bhai.ogg +share/apps/klettres/ml/syllab/bham.ogg +share/apps/klettres/ml/syllab/bhau.ogg +share/apps/klettres/ml/syllab/bhe.ogg +share/apps/klettres/ml/syllab/bheae.ogg +share/apps/klettres/ml/syllab/bhi.ogg +share/apps/klettres/ml/syllab/bhii.ogg +share/apps/klettres/ml/syllab/bho.ogg +share/apps/klettres/ml/syllab/bhoo.ogg +share/apps/klettres/ml/syllab/bhu.ogg +share/apps/klettres/ml/syllab/bhuu.ogg +share/apps/klettres/ml/syllab/bi.ogg +share/apps/klettres/ml/syllab/bii.ogg +share/apps/klettres/ml/syllab/bo.ogg +share/apps/klettres/ml/syllab/boo.ogg +share/apps/klettres/ml/syllab/bu.ogg +share/apps/klettres/ml/syllab/buu.ogg +share/apps/klettres/ml/syllab/cchaa.ogg +share/apps/klettres/ml/syllab/cchae.ogg +share/apps/klettres/ml/syllab/cchaha.ogg +share/apps/klettres/ml/syllab/cchai.ogg +share/apps/klettres/ml/syllab/ccham.ogg +share/apps/klettres/ml/syllab/cchau.ogg +share/apps/klettres/ml/syllab/cche.ogg +share/apps/klettres/ml/syllab/cchee.ogg +share/apps/klettres/ml/syllab/cchi.ogg +share/apps/klettres/ml/syllab/ccho.ogg +share/apps/klettres/ml/syllab/cchoo.ogg +share/apps/klettres/ml/syllab/cchooo.ogg +share/apps/klettres/ml/syllab/cchu.ogg +share/apps/klettres/ml/syllab/chaa.ogg +share/apps/klettres/ml/syllab/chae.ogg +share/apps/klettres/ml/syllab/chaha.ogg +share/apps/klettres/ml/syllab/chai.ogg +share/apps/klettres/ml/syllab/cham.ogg +share/apps/klettres/ml/syllab/chau.ogg +share/apps/klettres/ml/syllab/che.ogg +share/apps/klettres/ml/syllab/chee.ogg +share/apps/klettres/ml/syllab/chi.ogg +share/apps/klettres/ml/syllab/cho.ogg +share/apps/klettres/ml/syllab/choo.ogg +share/apps/klettres/ml/syllab/chu.ogg +share/apps/klettres/ml/syllab/chuu.ogg +share/apps/klettres/ml/syllab/daa.ogg +share/apps/klettres/ml/syllab/daha.ogg +share/apps/klettres/ml/syllab/dai.ogg +share/apps/klettres/ml/syllab/dam.ogg +share/apps/klettres/ml/syllab/dau.ogg +share/apps/klettres/ml/syllab/ddaa.ogg +share/apps/klettres/ml/syllab/ddaha.ogg +share/apps/klettres/ml/syllab/ddai.ogg +share/apps/klettres/ml/syllab/ddam.ogg +share/apps/klettres/ml/syllab/ddau.ogg +share/apps/klettres/ml/syllab/dde.ogg +share/apps/klettres/ml/syllab/ddeae.ogg +share/apps/klettres/ml/syllab/ddi.ogg +share/apps/klettres/ml/syllab/ddii.ogg +share/apps/klettres/ml/syllab/ddo.ogg +share/apps/klettres/ml/syllab/ddoo.ogg +share/apps/klettres/ml/syllab/ddu.ogg +share/apps/klettres/ml/syllab/dduu.ogg +share/apps/klettres/ml/syllab/de.ogg +share/apps/klettres/ml/syllab/deae.ogg +share/apps/klettres/ml/syllab/dhaa.ogg +share/apps/klettres/ml/syllab/dhaha.ogg +share/apps/klettres/ml/syllab/dhai.ogg +share/apps/klettres/ml/syllab/dham.ogg +share/apps/klettres/ml/syllab/dhau.ogg +share/apps/klettres/ml/syllab/dhe.ogg +share/apps/klettres/ml/syllab/dheae.ogg +share/apps/klettres/ml/syllab/dhhaa.ogg +share/apps/klettres/ml/syllab/dhhaha.ogg +share/apps/klettres/ml/syllab/dhhai.ogg +share/apps/klettres/ml/syllab/dhham.ogg +share/apps/klettres/ml/syllab/dhhau.ogg +share/apps/klettres/ml/syllab/dhhe.ogg +share/apps/klettres/ml/syllab/dhheae.ogg +share/apps/klettres/ml/syllab/dhhi.ogg +share/apps/klettres/ml/syllab/dhhii.ogg +share/apps/klettres/ml/syllab/dhho.ogg +share/apps/klettres/ml/syllab/dhhoo.ogg +share/apps/klettres/ml/syllab/dhhu.ogg +share/apps/klettres/ml/syllab/dhhuu.ogg +share/apps/klettres/ml/syllab/dhi.ogg +share/apps/klettres/ml/syllab/dhii.ogg +share/apps/klettres/ml/syllab/dho.ogg +share/apps/klettres/ml/syllab/dhoo.ogg +share/apps/klettres/ml/syllab/dhu.ogg +share/apps/klettres/ml/syllab/dhuu.ogg +share/apps/klettres/ml/syllab/di.ogg +share/apps/klettres/ml/syllab/dii.ogg +share/apps/klettres/ml/syllab/do.ogg +share/apps/klettres/ml/syllab/doo.ogg +share/apps/klettres/ml/syllab/du.ogg +share/apps/klettres/ml/syllab/duu.ogg +share/apps/klettres/ml/syllab/faa.ogg +share/apps/klettres/ml/syllab/faha.ogg +share/apps/klettres/ml/syllab/fai.ogg +share/apps/klettres/ml/syllab/fam.ogg +share/apps/klettres/ml/syllab/fau.ogg +share/apps/klettres/ml/syllab/fe.ogg +share/apps/klettres/ml/syllab/feae.ogg +share/apps/klettres/ml/syllab/fi.ogg +share/apps/klettres/ml/syllab/fii.ogg +share/apps/klettres/ml/syllab/fo.ogg +share/apps/klettres/ml/syllab/foo.ogg +share/apps/klettres/ml/syllab/fu.ogg +share/apps/klettres/ml/syllab/fuu.ogg +share/apps/klettres/ml/syllab/gaa.ogg +share/apps/klettres/ml/syllab/gae.ogg +share/apps/klettres/ml/syllab/gah.ogg +share/apps/klettres/ml/syllab/gam.ogg +share/apps/klettres/ml/syllab/ge.ogg +share/apps/klettres/ml/syllab/gee.ogg +share/apps/klettres/ml/syllab/ghaa.ogg +share/apps/klettres/ml/syllab/ghae.ogg +share/apps/klettres/ml/syllab/ghaha.ogg +share/apps/klettres/ml/syllab/ghai.ogg +share/apps/klettres/ml/syllab/gham.ogg +share/apps/klettres/ml/syllab/ghau.ogg +share/apps/klettres/ml/syllab/ghe.ogg +share/apps/klettres/ml/syllab/ghee.ogg +share/apps/klettres/ml/syllab/ghi.ogg +share/apps/klettres/ml/syllab/gho.ogg +share/apps/klettres/ml/syllab/ghoo.ogg +share/apps/klettres/ml/syllab/ghoooo.ogg +share/apps/klettres/ml/syllab/ghu.ogg +share/apps/klettres/ml/syllab/gi.ogg +share/apps/klettres/ml/syllab/go.ogg +share/apps/klettres/ml/syllab/goo.ogg +share/apps/klettres/ml/syllab/gooo.ogg +share/apps/klettres/ml/syllab/gou.ogg +share/apps/klettres/ml/syllab/gu.ogg +share/apps/klettres/ml/syllab/haa.ogg +share/apps/klettres/ml/syllab/haha.ogg +share/apps/klettres/ml/syllab/hai.ogg +share/apps/klettres/ml/syllab/ham.ogg +share/apps/klettres/ml/syllab/hau.ogg +share/apps/klettres/ml/syllab/he.ogg +share/apps/klettres/ml/syllab/heae.ogg +share/apps/klettres/ml/syllab/hi.ogg +share/apps/klettres/ml/syllab/hii.ogg +share/apps/klettres/ml/syllab/ho.ogg +share/apps/klettres/ml/syllab/hoo.ogg +share/apps/klettres/ml/syllab/hu.ogg +share/apps/klettres/ml/syllab/huu.ogg +share/apps/klettres/ml/syllab/jaa.ogg +share/apps/klettres/ml/syllab/jaha.ogg +share/apps/klettres/ml/syllab/jai.ogg +share/apps/klettres/ml/syllab/jam.ogg +share/apps/klettres/ml/syllab/jau.ogg +share/apps/klettres/ml/syllab/je.ogg +share/apps/klettres/ml/syllab/jeae.ogg +share/apps/klettres/ml/syllab/jee.ogg +share/apps/klettres/ml/syllab/jha.ogg +share/apps/klettres/ml/syllab/jhaa.ogg +share/apps/klettres/ml/syllab/jhaha.ogg +share/apps/klettres/ml/syllab/jhai.ogg +share/apps/klettres/ml/syllab/jham.ogg +share/apps/klettres/ml/syllab/jhau.ogg +share/apps/klettres/ml/syllab/jhe.ogg +share/apps/klettres/ml/syllab/jheae.ogg +share/apps/klettres/ml/syllab/jhee.ogg +share/apps/klettres/ml/syllab/jho.ogg +share/apps/klettres/ml/syllab/jhoo.ogg +share/apps/klettres/ml/syllab/jhu.ogg +share/apps/klettres/ml/syllab/jhuu.ogg +share/apps/klettres/ml/syllab/ji.ogg +share/apps/klettres/ml/syllab/jo.ogg +share/apps/klettres/ml/syllab/joo.ogg +share/apps/klettres/ml/syllab/ju.ogg +share/apps/klettres/ml/syllab/juu.ogg +share/apps/klettres/ml/syllab/k.ogg +share/apps/klettres/ml/syllab/kaa.ogg +share/apps/klettres/ml/syllab/kae.ogg +share/apps/klettres/ml/syllab/kah.ogg +share/apps/klettres/ml/syllab/kai.ogg +share/apps/klettres/ml/syllab/kam.ogg +share/apps/klettres/ml/syllab/kau.ogg +share/apps/klettres/ml/syllab/kee.ogg +share/apps/klettres/ml/syllab/kha.ogg +share/apps/klettres/ml/syllab/khae.ogg +share/apps/klettres/ml/syllab/khaha.ogg +share/apps/klettres/ml/syllab/khai.ogg +share/apps/klettres/ml/syllab/kham.ogg +share/apps/klettres/ml/syllab/khe.ogg +share/apps/klettres/ml/syllab/khi.ogg +share/apps/klettres/ml/syllab/khii.ogg +share/apps/klettres/ml/syllab/kho.ogg +share/apps/klettres/ml/syllab/khoo.ogg +share/apps/klettres/ml/syllab/khou.ogg +share/apps/klettres/ml/syllab/khu.ogg +share/apps/klettres/ml/syllab/khuu.ogg +share/apps/klettres/ml/syllab/ki.ogg +share/apps/klettres/ml/syllab/ko.ogg +share/apps/klettres/ml/syllab/koo.ogg +share/apps/klettres/ml/syllab/ku.ogg +share/apps/klettres/ml/syllab/kuu.ogg +share/apps/klettres/ml/syllab/laa.ogg +share/apps/klettres/ml/syllab/laha.ogg +share/apps/klettres/ml/syllab/lai.ogg +share/apps/klettres/ml/syllab/lam.ogg +share/apps/klettres/ml/syllab/lau.ogg +share/apps/klettres/ml/syllab/le.ogg +share/apps/klettres/ml/syllab/leae.ogg +share/apps/klettres/ml/syllab/li.ogg +share/apps/klettres/ml/syllab/lii.ogg +share/apps/klettres/ml/syllab/llaa.ogg +share/apps/klettres/ml/syllab/llaha.ogg +share/apps/klettres/ml/syllab/llai.ogg +share/apps/klettres/ml/syllab/llam.ogg +share/apps/klettres/ml/syllab/llau.ogg +share/apps/klettres/ml/syllab/lle.ogg +share/apps/klettres/ml/syllab/lleae.ogg +share/apps/klettres/ml/syllab/llo.ogg +share/apps/klettres/ml/syllab/lloo.ogg +share/apps/klettres/ml/syllab/llu.ogg +share/apps/klettres/ml/syllab/lluu.ogg +share/apps/klettres/ml/syllab/lo.ogg +share/apps/klettres/ml/syllab/loo.ogg +share/apps/klettres/ml/syllab/lu.ogg +share/apps/klettres/ml/syllab/luu.ogg +share/apps/klettres/ml/syllab/maa.ogg +share/apps/klettres/ml/syllab/maha.ogg +share/apps/klettres/ml/syllab/mai.ogg +share/apps/klettres/ml/syllab/mam.ogg +share/apps/klettres/ml/syllab/mau.ogg +share/apps/klettres/ml/syllab/me.ogg +share/apps/klettres/ml/syllab/meae.ogg +share/apps/klettres/ml/syllab/mi.ogg +share/apps/klettres/ml/syllab/mii.ogg +share/apps/klettres/ml/syllab/mo.ogg +share/apps/klettres/ml/syllab/moo.ogg +share/apps/klettres/ml/syllab/mu.ogg +share/apps/klettres/ml/syllab/muu.ogg +share/apps/klettres/ml/syllab/naa.ogg +share/apps/klettres/ml/syllab/naha.ogg +share/apps/klettres/ml/syllab/nai.ogg +share/apps/klettres/ml/syllab/nam.ogg +share/apps/klettres/ml/syllab/nau.ogg +share/apps/klettres/ml/syllab/ne.ogg +share/apps/klettres/ml/syllab/neae.ogg +share/apps/klettres/ml/syllab/ngaa.ogg +share/apps/klettres/ml/syllab/ngae.ogg +share/apps/klettres/ml/syllab/ngaha.ogg +share/apps/klettres/ml/syllab/ngai.ogg +share/apps/klettres/ml/syllab/ngam.ogg +share/apps/klettres/ml/syllab/ngau.ogg +share/apps/klettres/ml/syllab/nge.ogg +share/apps/klettres/ml/syllab/ngi.ogg +share/apps/klettres/ml/syllab/ngii.ogg +share/apps/klettres/ml/syllab/ngo.ogg +share/apps/klettres/ml/syllab/ngoo.ogg +share/apps/klettres/ml/syllab/ngu.ogg +share/apps/klettres/ml/syllab/nguu.ogg +share/apps/klettres/ml/syllab/nhaa.ogg +share/apps/klettres/ml/syllab/nhaha.ogg +share/apps/klettres/ml/syllab/nhai.ogg +share/apps/klettres/ml/syllab/nham.ogg +share/apps/klettres/ml/syllab/nhau.ogg +share/apps/klettres/ml/syllab/nhe.ogg +share/apps/klettres/ml/syllab/nheae.ogg +share/apps/klettres/ml/syllab/nhi.ogg +share/apps/klettres/ml/syllab/nhii.ogg +share/apps/klettres/ml/syllab/nho.ogg +share/apps/klettres/ml/syllab/nhoo.ogg +share/apps/klettres/ml/syllab/nhu.ogg +share/apps/klettres/ml/syllab/nhuu.ogg +share/apps/klettres/ml/syllab/ni.ogg +share/apps/klettres/ml/syllab/nii.ogg +share/apps/klettres/ml/syllab/njaa.ogg +share/apps/klettres/ml/syllab/njaha.ogg +share/apps/klettres/ml/syllab/njai.ogg +share/apps/klettres/ml/syllab/njam.ogg +share/apps/klettres/ml/syllab/njau.ogg +share/apps/klettres/ml/syllab/nje.ogg +share/apps/klettres/ml/syllab/njeae.ogg +share/apps/klettres/ml/syllab/nji.ogg +share/apps/klettres/ml/syllab/njii.ogg +share/apps/klettres/ml/syllab/njo.ogg +share/apps/klettres/ml/syllab/njoo.ogg +share/apps/klettres/ml/syllab/nju.ogg +share/apps/klettres/ml/syllab/njuu.ogg +share/apps/klettres/ml/syllab/no.ogg +share/apps/klettres/ml/syllab/noo.ogg +share/apps/klettres/ml/syllab/nu.ogg +share/apps/klettres/ml/syllab/nuu.ogg +share/apps/klettres/ml/syllab/paa.ogg +share/apps/klettres/ml/syllab/paha.ogg +share/apps/klettres/ml/syllab/pai.ogg +share/apps/klettres/ml/syllab/pam.ogg +share/apps/klettres/ml/syllab/pau.ogg +share/apps/klettres/ml/syllab/pe.ogg +share/apps/klettres/ml/syllab/peae.ogg +share/apps/klettres/ml/syllab/pi.ogg +share/apps/klettres/ml/syllab/pii.ogg +share/apps/klettres/ml/syllab/po.ogg +share/apps/klettres/ml/syllab/poo.ogg +share/apps/klettres/ml/syllab/pu.ogg +share/apps/klettres/ml/syllab/puu.ogg +share/apps/klettres/ml/syllab/raa.ogg +share/apps/klettres/ml/syllab/raha.ogg +share/apps/klettres/ml/syllab/rai.ogg +share/apps/klettres/ml/syllab/ram.ogg +share/apps/klettres/ml/syllab/rau.ogg +share/apps/klettres/ml/syllab/re.ogg +share/apps/klettres/ml/syllab/reae.ogg +share/apps/klettres/ml/syllab/ri.ogg +share/apps/klettres/ml/syllab/rii.ogg +share/apps/klettres/ml/syllab/ro.ogg +share/apps/klettres/ml/syllab/roo.ogg +share/apps/klettres/ml/syllab/rraa.ogg +share/apps/klettres/ml/syllab/rraha.ogg +share/apps/klettres/ml/syllab/rrai.ogg +share/apps/klettres/ml/syllab/rram.ogg +share/apps/klettres/ml/syllab/rrau.ogg +share/apps/klettres/ml/syllab/rre.ogg +share/apps/klettres/ml/syllab/rreae.ogg +share/apps/klettres/ml/syllab/rri.ogg +share/apps/klettres/ml/syllab/rrii.ogg +share/apps/klettres/ml/syllab/rro.ogg +share/apps/klettres/ml/syllab/rroo.ogg +share/apps/klettres/ml/syllab/rru.ogg +share/apps/klettres/ml/syllab/rruu.ogg +share/apps/klettres/ml/syllab/ru.ogg +share/apps/klettres/ml/syllab/ruu.ogg +share/apps/klettres/ml/syllab/saa.ogg +share/apps/klettres/ml/syllab/saha.ogg +share/apps/klettres/ml/syllab/sai.ogg +share/apps/klettres/ml/syllab/sam.ogg +share/apps/klettres/ml/syllab/sau.ogg +share/apps/klettres/ml/syllab/se.ogg +share/apps/klettres/ml/syllab/seae.ogg +share/apps/klettres/ml/syllab/shaa.ogg +share/apps/klettres/ml/syllab/shaha.ogg +share/apps/klettres/ml/syllab/shai.ogg +share/apps/klettres/ml/syllab/sham.ogg +share/apps/klettres/ml/syllab/shau.ogg +share/apps/klettres/ml/syllab/she.ogg +share/apps/klettres/ml/syllab/sheae.ogg +share/apps/klettres/ml/syllab/shi.ogg +share/apps/klettres/ml/syllab/shii.ogg +share/apps/klettres/ml/syllab/sho.ogg +share/apps/klettres/ml/syllab/shoo.ogg +share/apps/klettres/ml/syllab/shshaa.ogg +share/apps/klettres/ml/syllab/shshaha.ogg +share/apps/klettres/ml/syllab/shshai.ogg +share/apps/klettres/ml/syllab/shsham.ogg +share/apps/klettres/ml/syllab/shshau.ogg +share/apps/klettres/ml/syllab/shshe.ogg +share/apps/klettres/ml/syllab/shsheae.ogg +share/apps/klettres/ml/syllab/shshi.ogg +share/apps/klettres/ml/syllab/shshii.ogg +share/apps/klettres/ml/syllab/shsho.ogg +share/apps/klettres/ml/syllab/shshoo.ogg +share/apps/klettres/ml/syllab/shshu.ogg +share/apps/klettres/ml/syllab/shshuu.ogg +share/apps/klettres/ml/syllab/shu.ogg +share/apps/klettres/ml/syllab/shuu.ogg +share/apps/klettres/ml/syllab/si.ogg +share/apps/klettres/ml/syllab/sii.ogg +share/apps/klettres/ml/syllab/so.ogg +share/apps/klettres/ml/syllab/soo.ogg +share/apps/klettres/ml/syllab/su.ogg +share/apps/klettres/ml/syllab/suu.ogg +share/apps/klettres/ml/syllab/taa.ogg +share/apps/klettres/ml/syllab/taha.ogg +share/apps/klettres/ml/syllab/tai.ogg +share/apps/klettres/ml/syllab/tam.ogg +share/apps/klettres/ml/syllab/tau.ogg +share/apps/klettres/ml/syllab/te.ogg +share/apps/klettres/ml/syllab/tee.ogg +share/apps/klettres/ml/syllab/thaa.ogg +share/apps/klettres/ml/syllab/thaha.ogg +share/apps/klettres/ml/syllab/thai.ogg +share/apps/klettres/ml/syllab/tham.ogg +share/apps/klettres/ml/syllab/thau.ogg +share/apps/klettres/ml/syllab/the.ogg +share/apps/klettres/ml/syllab/theae.ogg +share/apps/klettres/ml/syllab/thi.ogg +share/apps/klettres/ml/syllab/thii.ogg +share/apps/klettres/ml/syllab/tho.ogg +share/apps/klettres/ml/syllab/thoo.ogg +share/apps/klettres/ml/syllab/thu.ogg +share/apps/klettres/ml/syllab/thuu.ogg +share/apps/klettres/ml/syllab/ti.ogg +share/apps/klettres/ml/syllab/tii.ogg +share/apps/klettres/ml/syllab/to.ogg +share/apps/klettres/ml/syllab/too.ogg +share/apps/klettres/ml/syllab/ttaa.ogg +share/apps/klettres/ml/syllab/ttaha.ogg +share/apps/klettres/ml/syllab/ttai.ogg +share/apps/klettres/ml/syllab/ttam.ogg +share/apps/klettres/ml/syllab/ttau.ogg +share/apps/klettres/ml/syllab/tte.ogg +share/apps/klettres/ml/syllab/tteae.ogg +share/apps/klettres/ml/syllab/tthaa.ogg +share/apps/klettres/ml/syllab/tthaha.ogg +share/apps/klettres/ml/syllab/tthai.ogg +share/apps/klettres/ml/syllab/ttham.ogg +share/apps/klettres/ml/syllab/tthau.ogg +share/apps/klettres/ml/syllab/tthe.ogg +share/apps/klettres/ml/syllab/ttheae.ogg +share/apps/klettres/ml/syllab/tthi.ogg +share/apps/klettres/ml/syllab/tthii.ogg +share/apps/klettres/ml/syllab/ttho.ogg +share/apps/klettres/ml/syllab/tthoo.ogg +share/apps/klettres/ml/syllab/tthu.ogg +share/apps/klettres/ml/syllab/tthuu.ogg +share/apps/klettres/ml/syllab/tti.ogg +share/apps/klettres/ml/syllab/ttii.ogg +share/apps/klettres/ml/syllab/tto.ogg +share/apps/klettres/ml/syllab/ttoo.ogg +share/apps/klettres/ml/syllab/ttu.ogg +share/apps/klettres/ml/syllab/ttuu.ogg +share/apps/klettres/ml/syllab/tu.ogg +share/apps/klettres/ml/syllab/tuu.ogg +share/apps/klettres/ml/syllab/vaa.ogg +share/apps/klettres/ml/syllab/vaha.ogg +share/apps/klettres/ml/syllab/vai.ogg +share/apps/klettres/ml/syllab/vam.ogg +share/apps/klettres/ml/syllab/vau.ogg +share/apps/klettres/ml/syllab/ve.ogg +share/apps/klettres/ml/syllab/veae.ogg +share/apps/klettres/ml/syllab/vi.ogg +share/apps/klettres/ml/syllab/vii.ogg +share/apps/klettres/ml/syllab/vo.ogg +share/apps/klettres/ml/syllab/voo.ogg +share/apps/klettres/ml/syllab/vu.ogg +share/apps/klettres/ml/syllab/vuu.ogg +share/apps/klettres/ml/syllab/yaa.ogg +share/apps/klettres/ml/syllab/yaha.ogg +share/apps/klettres/ml/syllab/yai.ogg +share/apps/klettres/ml/syllab/yam.ogg +share/apps/klettres/ml/syllab/yau.ogg +share/apps/klettres/ml/syllab/ye.ogg +share/apps/klettres/ml/syllab/yeae.ogg +share/apps/klettres/ml/syllab/yi.ogg +share/apps/klettres/ml/syllab/yii.ogg +share/apps/klettres/ml/syllab/yo.ogg +share/apps/klettres/ml/syllab/yoo.ogg +share/apps/klettres/ml/syllab/yu.ogg +share/apps/klettres/ml/syllab/yuu.ogg +share/apps/klettres/ml/syllab/zhaa.ogg +share/apps/klettres/ml/syllab/zhaha.ogg +share/apps/klettres/ml/syllab/zhai.ogg +share/apps/klettres/ml/syllab/zham.ogg +share/apps/klettres/ml/syllab/zhau.ogg +share/apps/klettres/ml/syllab/zhe.ogg +share/apps/klettres/ml/syllab/zheae.ogg +share/apps/klettres/ml/syllab/zhi.ogg +share/apps/klettres/ml/syllab/zhii.ogg +share/apps/klettres/ml/syllab/zho.ogg +share/apps/klettres/ml/syllab/zhoo.ogg +share/apps/klettres/ml/syllab/zhu.ogg +share/apps/klettres/ml/syllab/zhuu.ogg +share/locale/ml/LC_MESSAGES/amor.mo share/locale/ml/LC_MESSAGES/audiorename_plugin.mo share/locale/ml/LC_MESSAGES/blinken.mo +share/locale/ml/LC_MESSAGES/bomber.mo share/locale/ml/LC_MESSAGES/display.mo share/locale/ml/LC_MESSAGES/dolphin.mo share/locale/ml/LC_MESSAGES/drkonqi.mo @@ -10,20 +534,26 @@ share/locale/ml/LC_MESSAGES/joystick.mo share/locale/ml/LC_MESSAGES/kaccess.mo share/locale/ml/LC_MESSAGES/kalgebra.mo share/locale/ml/LC_MESSAGES/kalzium.mo +share/locale/ml/LC_MESSAGES/kalzium_qt.mo +share/locale/ml/LC_MESSAGES/kapman.mo share/locale/ml/LC_MESSAGES/kappfinder.mo share/locale/ml/LC_MESSAGES/katepart4.mo share/locale/ml/LC_MESSAGES/kblankscrn.mo +share/locale/ml/LC_MESSAGES/kblocks.mo +share/locale/ml/LC_MESSAGES/kbounce.mo +share/locale/ml/LC_MESSAGES/kbreakout.mo share/locale/ml/LC_MESSAGES/kbruch.mo share/locale/ml/LC_MESSAGES/kcertpart.mo share/locale/ml/LC_MESSAGES/kcm_autostart.mo +share/locale/ml/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/ml/LC_MESSAGES/kcm_emoticons.mo share/locale/ml/LC_MESSAGES/kcm_kwindesktop.mo share/locale/ml/LC_MESSAGES/kcm_memory.mo share/locale/ml/LC_MESSAGES/kcm_partition.mo share/locale/ml/LC_MESSAGES/kcm_pci.mo share/locale/ml/LC_MESSAGES/kcm_phonon.mo -share/locale/ml/LC_MESSAGES/kcm_phononxine.mo share/locale/ml/LC_MESSAGES/kcm_solid.mo +share/locale/ml/LC_MESSAGES/kcm_standard_actions.mo share/locale/ml/LC_MESSAGES/kcmaccess.mo share/locale/ml/LC_MESSAGES/kcmbackground.mo share/locale/ml/LC_MESSAGES/kcmbell.mo @@ -45,6 +575,7 @@ share/locale/ml/LC_MESSAGES/kcmkdnssd.mo share/locale/ml/LC_MESSAGES/kcmkeyboard.mo share/locale/ml/LC_MESSAGES/kcmkeys.mo share/locale/ml/LC_MESSAGES/kcmkio.mo +share/locale/ml/LC_MESSAGES/kcmkonq.mo share/locale/ml/LC_MESSAGES/kcmkonqhtml.mo share/locale/ml/LC_MESSAGES/kcmkurifilt.mo share/locale/ml/LC_MESSAGES/kcmkwincompositing.mo @@ -63,12 +594,13 @@ share/locale/ml/LC_MESSAGES/kcmsmartcard.mo share/locale/ml/LC_MESSAGES/kcmsmserver.mo share/locale/ml/LC_MESSAGES/kcmsolidproc.mo share/locale/ml/LC_MESSAGES/kcmstyle.mo -share/locale/ml/LC_MESSAGES/kcmtaskbar.mo share/locale/ml/LC_MESSAGES/kcmusb.mo share/locale/ml/LC_MESSAGES/kcmview1394.mo share/locale/ml/LC_MESSAGES/kcmxinerama.mo share/locale/ml/LC_MESSAGES/kde-menu.mo +share/locale/ml/LC_MESSAGES/kdeasciiquarium.mo share/locale/ml/LC_MESSAGES/kdebugdialog.mo +share/locale/ml/LC_MESSAGES/kded_phononserver.mo share/locale/ml/LC_MESSAGES/kdelibs4.mo share/locale/ml/LC_MESSAGES/kdelibs_colors4.mo share/locale/ml/LC_MESSAGES/kdepasswd.mo @@ -82,6 +614,7 @@ share/locale/ml/LC_MESSAGES/kfile.mo share/locale/ml/LC_MESSAGES/kfile_avi.mo share/locale/ml/LC_MESSAGES/kfile_drgeo.mo share/locale/ml/LC_MESSAGES/kfile_kig.mo +share/locale/ml/LC_MESSAGES/kfile_torrent.mo share/locale/ml/LC_MESSAGES/kfile_wav.mo share/locale/ml/LC_MESSAGES/kfileaudiopreview4.mo share/locale/ml/LC_MESSAGES/kfindpart.mo @@ -98,14 +631,16 @@ share/locale/ml/LC_MESSAGES/khtmlkttsd.mo share/locale/ml/LC_MESSAGES/kiconfinder.mo share/locale/ml/LC_MESSAGES/kinfocenter.mo share/locale/ml/LC_MESSAGES/kio4.mo +share/locale/ml/LC_MESSAGES/kio_applications.mo share/locale/ml/LC_MESSAGES/kio_archive.mo +share/locale/ml/LC_MESSAGES/kio_bookmarks.mo share/locale/ml/LC_MESSAGES/kio_finger.mo share/locale/ml/LC_MESSAGES/kio_fish.mo share/locale/ml/LC_MESSAGES/kio_floppy.mo share/locale/ml/LC_MESSAGES/kio_man.mo +share/locale/ml/LC_MESSAGES/kio_nepomuksearch.mo share/locale/ml/LC_MESSAGES/kio_nfs.mo share/locale/ml/LC_MESSAGES/kio_remote.mo -share/locale/ml/LC_MESSAGES/kio_settings.mo share/locale/ml/LC_MESSAGES/kio_sftp.mo share/locale/ml/LC_MESSAGES/kio_smb.mo share/locale/ml/LC_MESSAGES/kio_thumbnail.mo @@ -113,25 +648,26 @@ share/locale/ml/LC_MESSAGES/kio_trash.mo share/locale/ml/LC_MESSAGES/kioclient.mo share/locale/ml/LC_MESSAGES/kioexec.mo share/locale/ml/LC_MESSAGES/klipper.mo +share/locale/ml/LC_MESSAGES/klock.mo +share/locale/ml/LC_MESSAGES/kmag.mo share/locale/ml/LC_MESSAGES/kmenuedit.mo share/locale/ml/LC_MESSAGES/kmimetypefinder.mo +share/locale/ml/LC_MESSAGES/kmines.mo +share/locale/ml/LC_MESSAGES/kmousetool.mo +share/locale/ml/LC_MESSAGES/kmouth.mo share/locale/ml/LC_MESSAGES/kmplot.mo share/locale/ml/LC_MESSAGES/knetattach.mo share/locale/ml/LC_MESSAGES/knotify4.mo share/locale/ml/LC_MESSAGES/konqueror.mo share/locale/ml/LC_MESSAGES/konsole.mo -share/locale/ml/LC_MESSAGES/kpercentage.mo +share/locale/ml/LC_MESSAGES/kpartsaver.mo +share/locale/ml/LC_MESSAGES/kpasswdserver.mo share/locale/ml/LC_MESSAGES/kquitapp.mo +share/locale/ml/LC_MESSAGES/krandr.mo share/locale/ml/LC_MESSAGES/krdb.mo share/locale/ml/LC_MESSAGES/kreadconfig.mo share/locale/ml/LC_MESSAGES/krunner.mo -share/locale/ml/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/ml/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/ml/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/ml/LC_MESSAGES/krunner_sessions.mo -share/locale/ml/LC_MESSAGES/krunner_shellrunner.mo -share/locale/ml/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/ml/LC_MESSAGES/krunner_xesam.mo +share/locale/ml/LC_MESSAGES/ksayit.mo share/locale/ml/LC_MESSAGES/kscreensaver.mo share/locale/ml/LC_MESSAGES/kshorturifilter.mo share/locale/ml/LC_MESSAGES/ksmserver.mo @@ -139,35 +675,51 @@ share/locale/ml/LC_MESSAGES/ksplashthemes.mo share/locale/ml/LC_MESSAGES/kstart.mo share/locale/ml/LC_MESSAGES/kstyle_config.mo share/locale/ml/LC_MESSAGES/kstyle_keramik_config.mo +share/locale/ml/LC_MESSAGES/kstyle_phase_config.mo share/locale/ml/LC_MESSAGES/ksysguard.mo +share/locale/ml/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ml/LC_MESSAGES/ksystraycmd.mo +share/locale/ml/LC_MESSAGES/kteatime.mo share/locale/ml/LC_MESSAGES/ktexteditor_plugins.mo share/locale/ml/LC_MESSAGES/kthememanager.mo share/locale/ml/LC_MESSAGES/ktouch.mo share/locale/ml/LC_MESSAGES/ktraderclient.mo +share/locale/ml/LC_MESSAGES/kttsd.mo +share/locale/ml/LC_MESSAGES/ktux.mo share/locale/ml/LC_MESSAGES/kuiserver.mo share/locale/ml/LC_MESSAGES/kurifilter.mo +share/locale/ml/LC_MESSAGES/kwalletd.mo +share/locale/ml/LC_MESSAGES/kweather.mo share/locale/ml/LC_MESSAGES/kwin.mo +share/locale/ml/LC_MESSAGES/kwin_art_clients.mo share/locale/ml/LC_MESSAGES/kwin_clients.mo share/locale/ml/LC_MESSAGES/kwin_effects.mo share/locale/ml/LC_MESSAGES/kwin_lib.mo share/locale/ml/LC_MESSAGES/kwinstartmenu.mo +share/locale/ml/LC_MESSAGES/kwordquiz.mo share/locale/ml/LC_MESSAGES/kwrite.mo share/locale/ml/LC_MESSAGES/kwriteconfig.mo share/locale/ml/LC_MESSAGES/kxkb.mo +share/locale/ml/LC_MESSAGES/kxsconfig.mo share/locale/ml/LC_MESSAGES/libkdeedu.mo +share/locale/ml/LC_MESSAGES/libkmahjongg.mo share/locale/ml/LC_MESSAGES/libkonq.mo share/locale/ml/LC_MESSAGES/libkscreensaver.mo share/locale/ml/LC_MESSAGES/libkworkspace.mo share/locale/ml/LC_MESSAGES/libphonon.mo share/locale/ml/LC_MESSAGES/libplasma.mo +share/locale/ml/LC_MESSAGES/libplasmaclock.mo share/locale/ml/LC_MESSAGES/libtaskmanager.mo share/locale/ml/LC_MESSAGES/marble.mo +share/locale/ml/LC_MESSAGES/marble_qt.mo share/locale/ml/LC_MESSAGES/nepomuk.mo +share/locale/ml/LC_MESSAGES/nepomuksearch.mo share/locale/ml/LC_MESSAGES/nsplugin.mo share/locale/ml/LC_MESSAGES/parley.mo share/locale/ml/LC_MESSAGES/phonon-xine.mo share/locale/ml/LC_MESSAGES/phonon_kde.mo +share/locale/ml/LC_MESSAGES/plasma-overlay.mo +share/locale/ml/LC_MESSAGES/plasma-shells-common.mo share/locale/ml/LC_MESSAGES/plasma.mo share/locale/ml/LC_MESSAGES/plasma_applet_battery.mo share/locale/ml/LC_MESSAGES/plasma_applet_clock.mo @@ -176,16 +728,36 @@ share/locale/ml/LC_MESSAGES/plasma_applet_devicenotifier.mo share/locale/ml/LC_MESSAGES/plasma_applet_dig_clock.mo share/locale/ml/LC_MESSAGES/plasma_applet_folderview.mo share/locale/ml/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/ml/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ml/LC_MESSAGES/plasma_applet_launcher.mo share/locale/ml/LC_MESSAGES/plasma_applet_pager.mo share/locale/ml/LC_MESSAGES/plasma_applet_panel.mo +share/locale/ml/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/ml/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/ml/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/ml/LC_MESSAGES/plasma_applet_tasks.mo share/locale/ml/LC_MESSAGES/plasma_applet_trash.mo +share/locale/ml/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/ml/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/ml/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/ml/LC_MESSAGES/plasma_engine_dict.mo +share/locale/ml/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/ml/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ml/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/ml/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ml/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ml/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/ml/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ml/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ml/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ml/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ml/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ml/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/ml/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/ml/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/ml/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ml/LC_MESSAGES/plasmapkg.mo share/locale/ml/LC_MESSAGES/plasmoidviewer.mo +share/locale/ml/LC_MESSAGES/powerdevil.mo share/locale/ml/LC_MESSAGES/processcore.mo share/locale/ml/LC_MESSAGES/solid-bluetooth.mo share/locale/ml/LC_MESSAGES/solid-hardware.mo @@ -194,7 +766,15 @@ share/locale/ml/LC_MESSAGES/solid-powermanagement.mo share/locale/ml/LC_MESSAGES/solidcontrol.mo share/locale/ml/LC_MESSAGES/soliduiserver.mo share/locale/ml/LC_MESSAGES/step.mo +share/locale/ml/LC_MESSAGES/step_qt.mo share/locale/ml/LC_MESSAGES/systemsettings.mo share/locale/ml/LC_MESSAGES/timezones4.mo share/locale/ml/LC_MESSAGES/useraccount.mo +share/locale/ml/LC_SCRIPTS/kgeography/kgeography.js share/locale/ml/entry.desktop +@dirrm share/locale/ml/LC_SCRIPTS/kgeography +@dirrm share/locale/ml/LC_SCRIPTS +@dirrm share/apps/klettres/ml/syllab +@dirrm share/apps/klettres/ml/alpha +@dirrm share/apps/klettres/ml +@dirrm share/apps/klettres diff --git a/misc/kde4-l10n-mr/Makefile b/misc/kde4-l10n-mr/Makefile new file mode 100644 index 000000000000..b68f1fb69bed --- /dev/null +++ b/misc/kde4-l10n-mr/Makefile @@ -0,0 +1,21 @@ +# New ports collection makefile for: misc/kde4-l10n-mr +# Date created: 2009-01-25 +# Whom: Max Brazhnikov <makc@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= kde-l10n +PORTVERSION= ${KDE4_VERSION} +CATEGORIES= misc kde + +MAINTAINER= kde@FreeBSD.org +COMMENT= Marathi messages and documentation for KDE4 + +KDE4_L10N= mr + +post-extract: + ${MKDIR} ${WRKSRC}/build + +.include "${.CURDIR}/../../misc/kde4-l10n/files/bsd.l10n.mk" +.include <bsd.port.mk> diff --git a/misc/kde4-l10n-mr/distinfo b/misc/kde4-l10n-mr/distinfo new file mode 100644 index 000000000000..4e315fdcbacd --- /dev/null +++ b/misc/kde4-l10n-mr/distinfo @@ -0,0 +1,3 @@ +MD5 (KDE/kde-l10n/kde-l10n-mr-4.2.0.tar.bz2) = 5894987baf7e4d3ce6d84b4c46ef16d1 +SHA256 (KDE/kde-l10n/kde-l10n-mr-4.2.0.tar.bz2) = 44c9d52dd3b800c88993b8c8bd93c0cc85ae5ecdb58e4fd1ccc46fcd66e6a4c1 +SIZE (KDE/kde-l10n/kde-l10n-mr-4.2.0.tar.bz2) = 279785 diff --git a/misc/kde4-l10n-mr/pkg-descr b/misc/kde4-l10n-mr/pkg-descr new file mode 100644 index 000000000000..3073b1096b79 --- /dev/null +++ b/misc/kde4-l10n-mr/pkg-descr @@ -0,0 +1,3 @@ +Localized messages and documentation for KDE4. + +WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-mr/pkg-plist b/misc/kde4-l10n-mr/pkg-plist new file mode 100644 index 000000000000..f9521c0f7f3a --- /dev/null +++ b/misc/kde4-l10n-mr/pkg-plist @@ -0,0 +1,201 @@ +share/locale/mr/LC_MESSAGES/audiorename_plugin.mo +share/locale/mr/LC_MESSAGES/display.mo +share/locale/mr/LC_MESSAGES/dolphin.mo +share/locale/mr/LC_MESSAGES/drkonqi.mo +share/locale/mr/LC_MESSAGES/filetypes.mo +share/locale/mr/LC_MESSAGES/htmlsearch.mo +share/locale/mr/LC_MESSAGES/imagerename_plugin.mo +share/locale/mr/LC_MESSAGES/joystick.mo +share/locale/mr/LC_MESSAGES/kaccess.mo +share/locale/mr/LC_MESSAGES/kappfinder.mo +share/locale/mr/LC_MESSAGES/kblankscrn.mo +share/locale/mr/LC_MESSAGES/kcm_autostart.mo +share/locale/mr/LC_MESSAGES/kcm_desktopthemedetails.mo +share/locale/mr/LC_MESSAGES/kcm_emoticons.mo +share/locale/mr/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/mr/LC_MESSAGES/kcm_memory.mo +share/locale/mr/LC_MESSAGES/kcm_partition.mo +share/locale/mr/LC_MESSAGES/kcm_pci.mo +share/locale/mr/LC_MESSAGES/kcm_phonon.mo +share/locale/mr/LC_MESSAGES/kcm_phononxine.mo +share/locale/mr/LC_MESSAGES/kcm_solid.mo +share/locale/mr/LC_MESSAGES/kcm_standard_actions.mo +share/locale/mr/LC_MESSAGES/kcmaccess.mo +share/locale/mr/LC_MESSAGES/kcmbackground.mo +share/locale/mr/LC_MESSAGES/kcmbell.mo +share/locale/mr/LC_MESSAGES/kcmcgi.mo +share/locale/mr/LC_MESSAGES/kcmcolors.mo +share/locale/mr/LC_MESSAGES/kcmcomponentchooser.mo +share/locale/mr/LC_MESSAGES/kcmcss.mo +share/locale/mr/LC_MESSAGES/kcmenergy.mo +share/locale/mr/LC_MESSAGES/kcmfonts.mo +share/locale/mr/LC_MESSAGES/kcmhtmlsearch.mo +share/locale/mr/LC_MESSAGES/kcmicons.mo +share/locale/mr/LC_MESSAGES/kcminfo.mo +share/locale/mr/LC_MESSAGES/kcminit.mo +share/locale/mr/LC_MESSAGES/kcminput.mo +share/locale/mr/LC_MESSAGES/kcmioslaveinfo.mo +share/locale/mr/LC_MESSAGES/kcmkclock.mo +share/locale/mr/LC_MESSAGES/kcmkded.mo +share/locale/mr/LC_MESSAGES/kcmkdnssd.mo +share/locale/mr/LC_MESSAGES/kcmkeyboard.mo +share/locale/mr/LC_MESSAGES/kcmkeys.mo +share/locale/mr/LC_MESSAGES/kcmkio.mo +share/locale/mr/LC_MESSAGES/kcmkonq.mo +share/locale/mr/LC_MESSAGES/kcmkonqhtml.mo +share/locale/mr/LC_MESSAGES/kcmkurifilt.mo +share/locale/mr/LC_MESSAGES/kcmkwincompositing.mo +share/locale/mr/LC_MESSAGES/kcmkwindecoration.mo +share/locale/mr/LC_MESSAGES/kcmkwinrules.mo +share/locale/mr/LC_MESSAGES/kcmkwm.mo +share/locale/mr/LC_MESSAGES/kcmlaunch.mo +share/locale/mr/LC_MESSAGES/kcmlocale.mo +share/locale/mr/LC_MESSAGES/kcmnic.mo +share/locale/mr/LC_MESSAGES/kcmnotify.mo +share/locale/mr/LC_MESSAGES/kcmopengl.mo +share/locale/mr/LC_MESSAGES/kcmperformance.mo +share/locale/mr/LC_MESSAGES/kcmsamba.mo +share/locale/mr/LC_MESSAGES/kcmscreensaver.mo +share/locale/mr/LC_MESSAGES/kcmshell.mo +share/locale/mr/LC_MESSAGES/kcmsmartcard.mo +share/locale/mr/LC_MESSAGES/kcmsmserver.mo +share/locale/mr/LC_MESSAGES/kcmsolidproc.mo +share/locale/mr/LC_MESSAGES/kcmstyle.mo +share/locale/mr/LC_MESSAGES/kcmusb.mo +share/locale/mr/LC_MESSAGES/kcmview1394.mo +share/locale/mr/LC_MESSAGES/kcmxinerama.mo +share/locale/mr/LC_MESSAGES/kde-menu.mo +share/locale/mr/LC_MESSAGES/kdebugdialog.mo +share/locale/mr/LC_MESSAGES/kded_phononserver.mo +share/locale/mr/LC_MESSAGES/kdelibs4.mo +share/locale/mr/LC_MESSAGES/kdepasswd.mo +share/locale/mr/LC_MESSAGES/kdesu.mo +share/locale/mr/LC_MESSAGES/kdesud.mo +share/locale/mr/LC_MESSAGES/kdialog.mo +share/locale/mr/LC_MESSAGES/kdmconfig.mo +share/locale/mr/LC_MESSAGES/kdmgreet.mo +share/locale/mr/LC_MESSAGES/keditbookmarks.mo +share/locale/mr/LC_MESSAGES/kfile.mo +share/locale/mr/LC_MESSAGES/kfindpart.mo +share/locale/mr/LC_MESSAGES/kfmclient.mo +share/locale/mr/LC_MESSAGES/kfontinst.mo +share/locale/mr/LC_MESSAGES/kgreet_classic.mo +share/locale/mr/LC_MESSAGES/kgreet_generic.mo +share/locale/mr/LC_MESSAGES/kgreet_winbind.mo +share/locale/mr/LC_MESSAGES/khelpcenter.mo +share/locale/mr/LC_MESSAGES/khotkeys.mo +share/locale/mr/LC_MESSAGES/khotnewstuff.mo +share/locale/mr/LC_MESSAGES/khtmlkttsd.mo +share/locale/mr/LC_MESSAGES/kiconfinder.mo +share/locale/mr/LC_MESSAGES/kinfocenter.mo +share/locale/mr/LC_MESSAGES/kio_applications.mo +share/locale/mr/LC_MESSAGES/kio_archive.mo +share/locale/mr/LC_MESSAGES/kio_bookmarks.mo +share/locale/mr/LC_MESSAGES/kio_finger.mo +share/locale/mr/LC_MESSAGES/kio_fish.mo +share/locale/mr/LC_MESSAGES/kio_floppy.mo +share/locale/mr/LC_MESSAGES/kio_man.mo +share/locale/mr/LC_MESSAGES/kio_nepomuksearch.mo +share/locale/mr/LC_MESSAGES/kio_nfs.mo +share/locale/mr/LC_MESSAGES/kio_remote.mo +share/locale/mr/LC_MESSAGES/kio_sftp.mo +share/locale/mr/LC_MESSAGES/kio_smb.mo +share/locale/mr/LC_MESSAGES/kio_thumbnail.mo +share/locale/mr/LC_MESSAGES/kio_trash.mo +share/locale/mr/LC_MESSAGES/kioclient.mo +share/locale/mr/LC_MESSAGES/kioexec.mo +share/locale/mr/LC_MESSAGES/klipper.mo +share/locale/mr/LC_MESSAGES/kmenuedit.mo +share/locale/mr/LC_MESSAGES/kmimetypefinder.mo +share/locale/mr/LC_MESSAGES/knetattach.mo +share/locale/mr/LC_MESSAGES/knotify4.mo +share/locale/mr/LC_MESSAGES/konqueror.mo +share/locale/mr/LC_MESSAGES/konsole.mo +share/locale/mr/LC_MESSAGES/kpasswdserver.mo +share/locale/mr/LC_MESSAGES/kquitapp.mo +share/locale/mr/LC_MESSAGES/krandr.mo +share/locale/mr/LC_MESSAGES/krdb.mo +share/locale/mr/LC_MESSAGES/kreadconfig.mo +share/locale/mr/LC_MESSAGES/krunner.mo +share/locale/mr/LC_MESSAGES/kscreensaver.mo +share/locale/mr/LC_MESSAGES/kshorturifilter.mo +share/locale/mr/LC_MESSAGES/ksmserver.mo +share/locale/mr/LC_MESSAGES/ksplashthemes.mo +share/locale/mr/LC_MESSAGES/kstart.mo +share/locale/mr/LC_MESSAGES/kstyle_config.mo +share/locale/mr/LC_MESSAGES/kstyle_keramik_config.mo +share/locale/mr/LC_MESSAGES/ksysguard.mo +share/locale/mr/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/mr/LC_MESSAGES/ksystraycmd.mo +share/locale/mr/LC_MESSAGES/kthememanager.mo +share/locale/mr/LC_MESSAGES/ktraderclient.mo +share/locale/mr/LC_MESSAGES/kuiserver.mo +share/locale/mr/LC_MESSAGES/kurifilter.mo +share/locale/mr/LC_MESSAGES/kwalletd.mo +share/locale/mr/LC_MESSAGES/kwin.mo +share/locale/mr/LC_MESSAGES/kwin_clients.mo +share/locale/mr/LC_MESSAGES/kwin_effects.mo +share/locale/mr/LC_MESSAGES/kwin_lib.mo +share/locale/mr/LC_MESSAGES/kwinstartmenu.mo +share/locale/mr/LC_MESSAGES/kwrite.mo +share/locale/mr/LC_MESSAGES/kwriteconfig.mo +share/locale/mr/LC_MESSAGES/kxkb.mo +share/locale/mr/LC_MESSAGES/libkonq.mo +share/locale/mr/LC_MESSAGES/libkscreensaver.mo +share/locale/mr/LC_MESSAGES/libkworkspace.mo +share/locale/mr/LC_MESSAGES/libplasmaclock.mo +share/locale/mr/LC_MESSAGES/libtaskmanager.mo +share/locale/mr/LC_MESSAGES/nepomuk.mo +share/locale/mr/LC_MESSAGES/nepomuksearch.mo +share/locale/mr/LC_MESSAGES/nsplugin.mo +share/locale/mr/LC_MESSAGES/phonon_kde.mo +share/locale/mr/LC_MESSAGES/plasma-overlay.mo +share/locale/mr/LC_MESSAGES/plasma-shells-common.mo +share/locale/mr/LC_MESSAGES/plasma.mo +share/locale/mr/LC_MESSAGES/plasma_applet_battery.mo +share/locale/mr/LC_MESSAGES/plasma_applet_clock.mo +share/locale/mr/LC_MESSAGES/plasma_applet_desktop.mo +share/locale/mr/LC_MESSAGES/plasma_applet_devicenotifier.mo +share/locale/mr/LC_MESSAGES/plasma_applet_dig_clock.mo +share/locale/mr/LC_MESSAGES/plasma_applet_folderview.mo +share/locale/mr/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/mr/LC_MESSAGES/plasma_applet_pager.mo +share/locale/mr/LC_MESSAGES/plasma_applet_panel.mo +share/locale/mr/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/mr/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/mr/LC_MESSAGES/plasma_applet_systemtray.mo +share/locale/mr/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/mr/LC_MESSAGES/plasma_applet_trash.mo +share/locale/mr/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/mr/LC_MESSAGES/plasma_appletscript_qedje.mo +share/locale/mr/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo +share/locale/mr/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/mr/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/mr/LC_MESSAGES/plasma_engine_rss.mo +share/locale/mr/LC_MESSAGES/plasma_runner_locations.mo +share/locale/mr/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/mr/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/mr/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/mr/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/mr/LC_MESSAGES/plasma_runner_shell.mo +share/locale/mr/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/mr/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/mr/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/mr/LC_MESSAGES/plasma_wallpaper_image.mo +share/locale/mr/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/mr/LC_MESSAGES/plasmapkg.mo +share/locale/mr/LC_MESSAGES/plasmoidviewer.mo +share/locale/mr/LC_MESSAGES/powerdevil.mo +share/locale/mr/LC_MESSAGES/processcore.mo +share/locale/mr/LC_MESSAGES/processui.mo +share/locale/mr/LC_MESSAGES/solid-bluetooth.mo +share/locale/mr/LC_MESSAGES/solid-hardware.mo +share/locale/mr/LC_MESSAGES/solid-network.mo +share/locale/mr/LC_MESSAGES/solid-powermanagement.mo +share/locale/mr/LC_MESSAGES/solidcontrol.mo +share/locale/mr/LC_MESSAGES/soliduiserver.mo +share/locale/mr/LC_MESSAGES/systemsettings.mo +share/locale/mr/LC_MESSAGES/useraccount.mo +share/locale/mr/entry.desktop +@dirrm share/locale/mr/LC_MESSAGES +@dirrm share/locale/mr diff --git a/misc/kde4-l10n-nb/Makefile b/misc/kde4-l10n-nb/Makefile index a1ab1d47e0f5..974217110fbb 100644 --- a/misc/kde4-l10n-nb/Makefile +++ b/misc/kde4-l10n-nb/Makefile @@ -14,6 +14,9 @@ COMMENT= Norwegian Bokmaal messages and documentation for KDE4 KDE4_L10N= nb +MANLANG= ${KDE4_L10N} +.include <${.CURDIR}/Makefile.man> + post-extract: ${MKDIR} ${WRKSRC}/build diff --git a/misc/kde4-l10n-nb/distinfo b/misc/kde4-l10n-nb/distinfo index efc03efc2ce5..4b65a2ef4e6f 100644 --- a/misc/kde4-l10n-nb/distinfo +++ b/misc/kde4-l10n-nb/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-nb-4.1.4.tar.bz2) = e21c6f67d95240a1a26512894c18efdf -SHA256 (KDE/kde-l10n/kde-l10n-nb-4.1.4.tar.bz2) = 94b921814d9d5302fe260164e3e42c146fc06650c05f2156bffa5ee0295911e5 -SIZE (KDE/kde-l10n/kde-l10n-nb-4.1.4.tar.bz2) = 2210295 +MD5 (KDE/kde-l10n/kde-l10n-nb-4.2.0.tar.bz2) = db0d87c5125b05c25788cbf10fd56490 +SHA256 (KDE/kde-l10n/kde-l10n-nb-4.2.0.tar.bz2) = 86985180c744a8b97faf935943b967854fcb4c5ac5587b04b84eb16d9639b5fb +SIZE (KDE/kde-l10n/kde-l10n-nb-4.2.0.tar.bz2) = 2395868 diff --git a/misc/kde4-l10n-nb/pkg-plist b/misc/kde4-l10n-nb/pkg-plist index 2b17e2d18b7f..0674e6e707ba 100644 --- a/misc/kde4-l10n-nb/pkg-plist +++ b/misc/kde4-l10n-nb/pkg-plist @@ -63,30 +63,63 @@ share/doc/HTML/nb/kcontrol/desktopbehavior/index.docbook share/doc/HTML/nb/kcontrol/email/common share/doc/HTML/nb/kcontrol/email/index.cache.bz2 share/doc/HTML/nb/kcontrol/email/index.docbook -share/doc/HTML/nb/kcontrol/energy/common -share/doc/HTML/nb/kcontrol/energy/index.cache.bz2 -share/doc/HTML/nb/kcontrol/energy/index.docbook share/doc/HTML/nb/kcontrol/filemanager/common share/doc/HTML/nb/kcontrol/filemanager/index.cache.bz2 share/doc/HTML/nb/kcontrol/filemanager/index.docbook share/doc/HTML/nb/kcontrol/filetypes/common share/doc/HTML/nb/kcontrol/filetypes/index.cache.bz2 share/doc/HTML/nb/kcontrol/filetypes/index.docbook -share/doc/HTML/nb/kcontrol/fonts/common -share/doc/HTML/nb/kcontrol/fonts/index.cache.bz2 -share/doc/HTML/nb/kcontrol/fonts/index.docbook share/doc/HTML/nb/kcontrol/icons/common share/doc/HTML/nb/kcontrol/icons/index.cache.bz2 share/doc/HTML/nb/kcontrol/icons/index.docbook -share/doc/HTML/nb/kcontrol/kcmaccess/common -share/doc/HTML/nb/kcontrol/kcmaccess/index.cache.bz2 -share/doc/HTML/nb/kcontrol/kcmaccess/index.docbook -share/doc/HTML/nb/kcontrol/kcmfontinst/common -share/doc/HTML/nb/kcontrol/kcmfontinst/index.cache.bz2 -share/doc/HTML/nb/kcontrol/kcmfontinst/index.docbook +share/doc/HTML/nb/kinfocenter/devices/common +share/doc/HTML/nb/kinfocenter/devices/index.cache.bz2 +share/doc/HTML/nb/kinfocenter/devices/index.docbook +share/doc/HTML/nb/kinfocenter/dma/common +share/doc/HTML/nb/kinfocenter/dma/index.cache.bz2 +share/doc/HTML/nb/kinfocenter/dma/index.docbook +share/doc/HTML/nb/kinfocenter/interrupts/common +share/doc/HTML/nb/kinfocenter/interrupts/index.cache.bz2 +share/doc/HTML/nb/kinfocenter/interrupts/index.docbook +share/doc/HTML/nb/kinfocenter/ioports/common +share/doc/HTML/nb/kinfocenter/ioports/index.cache.bz2 +share/doc/HTML/nb/kinfocenter/ioports/index.docbook +share/doc/HTML/nb/kinfocenter/memory/common +share/doc/HTML/nb/kinfocenter/memory/index.cache.bz2 +share/doc/HTML/nb/kinfocenter/memory/index.docbook +share/doc/HTML/nb/kinfocenter/nics/common +share/doc/HTML/nb/kinfocenter/nics/index.cache.bz2 +share/doc/HTML/nb/kinfocenter/nics/index.docbook +share/doc/HTML/nb/kinfocenter/opengl/common +share/doc/HTML/nb/kinfocenter/opengl/index.cache.bz2 +share/doc/HTML/nb/kinfocenter/opengl/index.docbook +share/doc/HTML/nb/kinfocenter/partitions/common +share/doc/HTML/nb/kinfocenter/partitions/index.cache.bz2 +share/doc/HTML/nb/kinfocenter/partitions/index.docbook +share/doc/HTML/nb/kinfocenter/pci/common +share/doc/HTML/nb/kinfocenter/pci/index.cache.bz2 +share/doc/HTML/nb/kinfocenter/pci/index.docbook +share/doc/HTML/nb/kinfocenter/pcmcia/common +share/doc/HTML/nb/kinfocenter/pcmcia/index.cache.bz2 +share/doc/HTML/nb/kinfocenter/pcmcia/index.docbook +share/doc/HTML/nb/kinfocenter/protocols/common +share/doc/HTML/nb/kinfocenter/protocols/index.cache.bz2 +share/doc/HTML/nb/kinfocenter/protocols/index.docbook +share/doc/HTML/nb/kinfocenter/samba/common +share/doc/HTML/nb/kinfocenter/samba/index.cache.bz2 +share/doc/HTML/nb/kinfocenter/samba/index.docbook +share/doc/HTML/nb/kinfocenter/scsi/common +share/doc/HTML/nb/kinfocenter/scsi/index.cache.bz2 +share/doc/HTML/nb/kinfocenter/scsi/index.docbook +share/doc/HTML/nb/kinfocenter/sound/common +share/doc/HTML/nb/kinfocenter/sound/index.cache.bz2 +share/doc/HTML/nb/kinfocenter/sound/index.docbook share/doc/HTML/nb/kinfocenter/usb/common share/doc/HTML/nb/kinfocenter/usb/index.cache.bz2 share/doc/HTML/nb/kinfocenter/usb/index.docbook +share/doc/HTML/nb/kinfocenter/xserver/common +share/doc/HTML/nb/kinfocenter/xserver/index.cache.bz2 +share/doc/HTML/nb/kinfocenter/xserver/index.docbook share/locale/nb/LC_MESSAGES/akonaditray.mo share/locale/nb/LC_MESSAGES/akregator.mo share/locale/nb/LC_MESSAGES/amor.mo @@ -95,6 +128,7 @@ share/locale/nb/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nb/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nb/LC_MESSAGES/audiorename_plugin.mo share/locale/nb/LC_MESSAGES/blinken.mo +share/locale/nb/LC_MESSAGES/bomber.mo share/locale/nb/LC_MESSAGES/bovo.mo share/locale/nb/LC_MESSAGES/cervisia.mo share/locale/nb/LC_MESSAGES/cvsservice.mo @@ -109,6 +143,7 @@ share/locale/nb/LC_MESSAGES/imagerename_plugin.mo share/locale/nb/LC_MESSAGES/joystick.mo share/locale/nb/LC_MESSAGES/juk.mo share/locale/nb/LC_MESSAGES/kabc.mo +share/locale/nb/LC_MESSAGES/kabc_akonadi.mo share/locale/nb/LC_MESSAGES/kabc_dir.mo share/locale/nb/LC_MESSAGES/kabc_file.mo share/locale/nb/LC_MESSAGES/kabc_ldapkio.mo @@ -122,10 +157,14 @@ share/locale/nb/LC_MESSAGES/kaddressbook.mo share/locale/nb/LC_MESSAGES/kalarm.mo share/locale/nb/LC_MESSAGES/kalgebra.mo share/locale/nb/LC_MESSAGES/kalzium.mo +share/locale/nb/LC_MESSAGES/kalzium_qt.mo share/locale/nb/LC_MESSAGES/kanagram.mo +share/locale/nb/LC_MESSAGES/kapman.mo share/locale/nb/LC_MESSAGES/kappfinder.mo share/locale/nb/LC_MESSAGES/kapptemplate.mo +share/locale/nb/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nb/LC_MESSAGES/kate.mo +share/locale/nb/LC_MESSAGES/katebuild-plugin.mo share/locale/nb/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nb/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nb/LC_MESSAGES/katefiletemplates.mo @@ -136,7 +175,6 @@ share/locale/nb/LC_MESSAGES/kateinsertcommand.mo share/locale/nb/LC_MESSAGES/katekjswrapper.mo share/locale/nb/LC_MESSAGES/katekonsoleplugin.mo share/locale/nb/LC_MESSAGES/katemailfilesplugin.mo -share/locale/nb/LC_MESSAGES/katemake.mo share/locale/nb/LC_MESSAGES/kateopenheader.mo share/locale/nb/LC_MESSAGES/katepart4.mo share/locale/nb/LC_MESSAGES/katepybrowse.mo @@ -155,14 +193,14 @@ share/locale/nb/LC_MESSAGES/kblocks.mo share/locale/nb/LC_MESSAGES/kbounce.mo share/locale/nb/LC_MESSAGES/kbreakout.mo share/locale/nb/LC_MESSAGES/kbruch.mo -share/locale/nb/LC_MESSAGES/kbstateapplet.mo share/locale/nb/LC_MESSAGES/kbugbuster.mo share/locale/nb/LC_MESSAGES/kcachegrind.mo share/locale/nb/LC_MESSAGES/kcalc.mo share/locale/nb/LC_MESSAGES/kcertpart.mo share/locale/nb/LC_MESSAGES/kcharselect.mo -share/locale/nb/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/nb/LC_MESSAGES/kcm_akonadi.mo share/locale/nb/LC_MESSAGES/kcm_autostart.mo +share/locale/nb/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/nb/LC_MESSAGES/kcm_emoticons.mo share/locale/nb/LC_MESSAGES/kcm_krfb.mo share/locale/nb/LC_MESSAGES/kcm_kwindesktop.mo @@ -172,6 +210,7 @@ share/locale/nb/LC_MESSAGES/kcm_pci.mo share/locale/nb/LC_MESSAGES/kcm_phonon.mo share/locale/nb/LC_MESSAGES/kcm_phononxine.mo share/locale/nb/LC_MESSAGES/kcm_solid.mo +share/locale/nb/LC_MESSAGES/kcm_standard_actions.mo share/locale/nb/LC_MESSAGES/kcmaccess.mo share/locale/nb/LC_MESSAGES/kcmaudiocd.mo share/locale/nb/LC_MESSAGES/kcmbackground.mo @@ -221,7 +260,6 @@ share/locale/nb/LC_MESSAGES/kcmsmartcard.mo share/locale/nb/LC_MESSAGES/kcmsmserver.mo share/locale/nb/LC_MESSAGES/kcmsolidproc.mo share/locale/nb/LC_MESSAGES/kcmstyle.mo -share/locale/nb/LC_MESSAGES/kcmtaskbar.mo share/locale/nb/LC_MESSAGES/kcmusb.mo share/locale/nb/LC_MESSAGES/kcmview1394.mo share/locale/nb/LC_MESSAGES/kcmxinerama.mo @@ -229,7 +267,9 @@ share/locale/nb/LC_MESSAGES/kcolorchooser.mo share/locale/nb/LC_MESSAGES/kcron.mo share/locale/nb/LC_MESSAGES/kdat.mo share/locale/nb/LC_MESSAGES/kde-menu.mo +share/locale/nb/LC_MESSAGES/kdeasciiquarium.mo share/locale/nb/LC_MESSAGES/kdebugdialog.mo +share/locale/nb/LC_MESSAGES/kded_phononserver.mo share/locale/nb/LC_MESSAGES/kdelibs4.mo share/locale/nb/LC_MESSAGES/kdelibs_colors4.mo share/locale/nb/LC_MESSAGES/kdepasswd.mo @@ -289,12 +329,15 @@ share/locale/nb/LC_MESSAGES/khotnewstuff.mo share/locale/nb/LC_MESSAGES/khtmlkttsd.mo share/locale/nb/LC_MESSAGES/kiconfinder.mo share/locale/nb/LC_MESSAGES/kig.mo +share/locale/nb/LC_MESSAGES/killbots.mo share/locale/nb/LC_MESSAGES/kimagemapeditor.mo share/locale/nb/LC_MESSAGES/kinetd.mo share/locale/nb/LC_MESSAGES/kinfocenter.mo share/locale/nb/LC_MESSAGES/kio4.mo +share/locale/nb/LC_MESSAGES/kio_applications.mo share/locale/nb/LC_MESSAGES/kio_archive.mo share/locale/nb/LC_MESSAGES/kio_audiocd.mo +share/locale/nb/LC_MESSAGES/kio_bookmarks.mo share/locale/nb/LC_MESSAGES/kio_finger.mo share/locale/nb/LC_MESSAGES/kio_fish.mo share/locale/nb/LC_MESSAGES/kio_floppy.mo @@ -305,11 +348,12 @@ share/locale/nb/LC_MESSAGES/kio_jabberdisco.mo share/locale/nb/LC_MESSAGES/kio_ldap.mo share/locale/nb/LC_MESSAGES/kio_man.mo share/locale/nb/LC_MESSAGES/kio_mbox.mo +share/locale/nb/LC_MESSAGES/kio_nepomuksearch.mo share/locale/nb/LC_MESSAGES/kio_nfs.mo share/locale/nb/LC_MESSAGES/kio_nntp.mo +share/locale/nb/LC_MESSAGES/kio_perldoc.mo share/locale/nb/LC_MESSAGES/kio_pop3.mo share/locale/nb/LC_MESSAGES/kio_remote.mo -share/locale/nb/LC_MESSAGES/kio_settings.mo share/locale/nb/LC_MESSAGES/kio_sftp.mo share/locale/nb/LC_MESSAGES/kio_sieve.mo share/locale/nb/LC_MESSAGES/kio_smb.mo @@ -369,10 +413,10 @@ share/locale/nb/LC_MESSAGES/kopete.mo share/locale/nb/LC_MESSAGES/korganizer.mo share/locale/nb/LC_MESSAGES/korn.mo share/locale/nb/LC_MESSAGES/kpackage.mo +share/locale/nb/LC_MESSAGES/kpartloader.mo share/locale/nb/LC_MESSAGES/kpartsaver.mo share/locale/nb/LC_MESSAGES/kpasswdserver.mo share/locale/nb/LC_MESSAGES/kpat.mo -share/locale/nb/LC_MESSAGES/kpercentage.mo share/locale/nb/LC_MESSAGES/kpilot.mo share/locale/nb/LC_MESSAGES/kppp.mo share/locale/nb/LC_MESSAGES/kppplogview.mo @@ -396,20 +440,12 @@ share/locale/nb/LC_MESSAGES/kreversi.mo share/locale/nb/LC_MESSAGES/krfb.mo share/locale/nb/LC_MESSAGES/kruler.mo share/locale/nb/LC_MESSAGES/krunner.mo -share/locale/nb/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/nb/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/nb/LC_MESSAGES/krunner_contacts.mo -share/locale/nb/LC_MESSAGES/krunner_converterrunner.mo -share/locale/nb/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/nb/LC_MESSAGES/krunner_sessions.mo -share/locale/nb/LC_MESSAGES/krunner_shellrunner.mo -share/locale/nb/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/nb/LC_MESSAGES/krunner_xesam.mo share/locale/nb/LC_MESSAGES/ksame.mo share/locale/nb/LC_MESSAGES/ksaneplugin.mo share/locale/nb/LC_MESSAGES/ksayit.mo share/locale/nb/LC_MESSAGES/kscd.mo share/locale/nb/LC_MESSAGES/kscreensaver.mo +share/locale/nb/LC_MESSAGES/ksendemail.mo share/locale/nb/LC_MESSAGES/kshisen.mo share/locale/nb/LC_MESSAGES/kshorturifilter.mo share/locale/nb/LC_MESSAGES/ksirk.mo @@ -426,6 +462,7 @@ share/locale/nb/LC_MESSAGES/kstyle_keramik_config.mo share/locale/nb/LC_MESSAGES/kstyle_phase_config.mo share/locale/nb/LC_MESSAGES/ksudoku.mo share/locale/nb/LC_MESSAGES/ksysguard.mo +share/locale/nb/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/nb/LC_MESSAGES/ksystemlog.mo share/locale/nb/LC_MESSAGES/ksystraycmd.mo share/locale/nb/LC_MESSAGES/ksysv.mo @@ -435,7 +472,6 @@ share/locale/nb/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/nb/LC_MESSAGES/kthememanager.mo share/locale/nb/LC_MESSAGES/ktimer.mo share/locale/nb/LC_MESSAGES/ktimetracker.mo -share/locale/nb/LC_MESSAGES/ktnef.mo share/locale/nb/LC_MESSAGES/ktouch.mo share/locale/nb/LC_MESSAGES/ktraderclient.mo share/locale/nb/LC_MESSAGES/kttsd.mo @@ -447,6 +483,7 @@ share/locale/nb/LC_MESSAGES/kuiserver.mo share/locale/nb/LC_MESSAGES/kuiviewer.mo share/locale/nb/LC_MESSAGES/kurifilter.mo share/locale/nb/LC_MESSAGES/kuser.mo +share/locale/nb/LC_MESSAGES/kwalletd.mo share/locale/nb/LC_MESSAGES/kwalletmanager.mo share/locale/nb/LC_MESSAGES/kwatchgnupg.mo share/locale/nb/LC_MESSAGES/kweather.mo @@ -493,11 +530,14 @@ share/locale/nb/LC_MESSAGES/libmailtransport.mo share/locale/nb/LC_MESSAGES/liboktetacore.mo share/locale/nb/LC_MESSAGES/libphonon.mo share/locale/nb/LC_MESSAGES/libplasma.mo +share/locale/nb/LC_MESSAGES/libplasmaclock.mo share/locale/nb/LC_MESSAGES/libtaskmanager.mo share/locale/nb/LC_MESSAGES/lokalize.mo share/locale/nb/LC_MESSAGES/lskat.mo share/locale/nb/LC_MESSAGES/marble.mo +share/locale/nb/LC_MESSAGES/marble_qt.mo share/locale/nb/LC_MESSAGES/nepomuk.mo +share/locale/nb/LC_MESSAGES/nepomuksearch.mo share/locale/nb/LC_MESSAGES/nsplugin.mo share/locale/nb/LC_MESSAGES/okteta.mo share/locale/nb/LC_MESSAGES/oktetapart.mo @@ -507,6 +547,7 @@ share/locale/nb/LC_MESSAGES/okular_comicbook.mo share/locale/nb/LC_MESSAGES/okular_djvu.mo share/locale/nb/LC_MESSAGES/okular_dvi.mo share/locale/nb/LC_MESSAGES/okular_epub.mo +share/locale/nb/LC_MESSAGES/okular_fax.mo share/locale/nb/LC_MESSAGES/okular_fictionbook.mo share/locale/nb/LC_MESSAGES/okular_ghostview.mo share/locale/nb/LC_MESSAGES/okular_kimgio.mo @@ -519,10 +560,15 @@ share/locale/nb/LC_MESSAGES/parley.mo share/locale/nb/LC_MESSAGES/phonon-xine.mo share/locale/nb/LC_MESSAGES/phonon_gstreamer.mo share/locale/nb/LC_MESSAGES/phonon_kde.mo +share/locale/nb/LC_MESSAGES/plasma-overlay.mo +share/locale/nb/LC_MESSAGES/plasma-shells-common.mo share/locale/nb/LC_MESSAGES/plasma.mo share/locale/nb/LC_MESSAGES/plasma_applet_battery.mo +share/locale/nb/LC_MESSAGES/plasma_applet_bball.mo share/locale/nb/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/nb/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/nb/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/nb/LC_MESSAGES/plasma_applet_charselect.mo share/locale/nb/LC_MESSAGES/plasma_applet_clock.mo share/locale/nb/LC_MESSAGES/plasma_applet_comic.mo share/locale/nb/LC_MESSAGES/plasma_applet_desktop.mo @@ -535,25 +581,59 @@ share/locale/nb/LC_MESSAGES/plasma_applet_folderview.mo share/locale/nb/LC_MESSAGES/plasma_applet_frame.mo share/locale/nb/LC_MESSAGES/plasma_applet_fuzzy_clock.mo share/locale/nb/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/nb/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/nb/LC_MESSAGES/plasma_applet_katesession.mo share/locale/nb/LC_MESSAGES/plasma_applet_kget.mo -share/locale/nb/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/nb/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/nb/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/nb/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/nb/LC_MESSAGES/plasma_applet_life.mo share/locale/nb/LC_MESSAGES/plasma_applet_luna.mo +share/locale/nb/LC_MESSAGES/plasma_applet_news.mo share/locale/nb/LC_MESSAGES/plasma_applet_notes.mo share/locale/nb/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/nb/LC_MESSAGES/plasma_applet_pager.mo share/locale/nb/LC_MESSAGES/plasma_applet_panel.mo +share/locale/nb/LC_MESSAGES/plasma_applet_paste.mo +share/locale/nb/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/nb/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/nb/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/nb/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/nb/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/nb/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/nb/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/nb/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/nb/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/nb/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/nb/LC_MESSAGES/plasma_applet_timer.mo share/locale/nb/LC_MESSAGES/plasma_applet_trash.mo share/locale/nb/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/nb/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/nb/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/nb/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/nb/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/nb/LC_MESSAGES/plasma_engine_dict.mo +share/locale/nb/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/nb/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/nb/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/nb/LC_MESSAGES/plasma_engine_rss.mo +share/locale/nb/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/nb/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/nb/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/nb/LC_MESSAGES/plasma_runner_locations.mo +share/locale/nb/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/nb/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/nb/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/nb/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/nb/LC_MESSAGES/plasma_runner_shell.mo +share/locale/nb/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/nb/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/nb/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/nb/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/nb/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/nb/LC_MESSAGES/plasmaengineexplorer.mo share/locale/nb/LC_MESSAGES/plasmapkg.mo share/locale/nb/LC_MESSAGES/plasmoidviewer.mo +share/locale/nb/LC_MESSAGES/powerdevil.mo share/locale/nb/LC_MESSAGES/printer-applet.mo share/locale/nb/LC_MESSAGES/processcore.mo share/locale/nb/LC_MESSAGES/processui.mo @@ -565,10 +645,12 @@ share/locale/nb/LC_MESSAGES/solidcontrol.mo share/locale/nb/LC_MESSAGES/soliduiserver.mo share/locale/nb/LC_MESSAGES/spy.mo share/locale/nb/LC_MESSAGES/step.mo +share/locale/nb/LC_MESSAGES/step_qt.mo share/locale/nb/LC_MESSAGES/strigila_diff.mo share/locale/nb/LC_MESSAGES/superkaramba.mo share/locale/nb/LC_MESSAGES/svgpart.mo share/locale/nb/LC_MESSAGES/sweeper.mo +share/locale/nb/LC_MESSAGES/system-config-printer-kde.mo share/locale/nb/LC_MESSAGES/systemsettings.mo share/locale/nb/LC_MESSAGES/timezones4.mo share/locale/nb/LC_MESSAGES/umbrello.mo @@ -577,15 +659,26 @@ share/locale/nb/LC_SCRIPTS/kdelibs4/kdelibs4.js share/locale/nb/entry.desktop @dirrm share/locale/nb/LC_SCRIPTS/kdelibs4 @dirrm share/locale/nb/LC_SCRIPTS +@dirrm share/doc/HTML/nb/kinfocenter/xserver @dirrm share/doc/HTML/nb/kinfocenter/usb +@dirrm share/doc/HTML/nb/kinfocenter/sound +@dirrm share/doc/HTML/nb/kinfocenter/scsi +@dirrm share/doc/HTML/nb/kinfocenter/samba +@dirrm share/doc/HTML/nb/kinfocenter/protocols +@dirrm share/doc/HTML/nb/kinfocenter/pcmcia +@dirrm share/doc/HTML/nb/kinfocenter/pci +@dirrm share/doc/HTML/nb/kinfocenter/partitions +@dirrm share/doc/HTML/nb/kinfocenter/opengl +@dirrm share/doc/HTML/nb/kinfocenter/nics +@dirrm share/doc/HTML/nb/kinfocenter/memory +@dirrm share/doc/HTML/nb/kinfocenter/ioports +@dirrm share/doc/HTML/nb/kinfocenter/interrupts +@dirrm share/doc/HTML/nb/kinfocenter/dma +@dirrm share/doc/HTML/nb/kinfocenter/devices @dirrm share/doc/HTML/nb/kinfocenter -@dirrm share/doc/HTML/nb/kcontrol/kcmfontinst -@dirrm share/doc/HTML/nb/kcontrol/kcmaccess @dirrm share/doc/HTML/nb/kcontrol/icons -@dirrm share/doc/HTML/nb/kcontrol/fonts @dirrm share/doc/HTML/nb/kcontrol/filetypes @dirrm share/doc/HTML/nb/kcontrol/filemanager -@dirrm share/doc/HTML/nb/kcontrol/energy @dirrm share/doc/HTML/nb/kcontrol/email @dirrm share/doc/HTML/nb/kcontrol/desktopbehavior @dirrm share/doc/HTML/nb/kcontrol/desktop @@ -597,10 +690,11 @@ share/locale/nb/entry.desktop @dirrm share/doc/HTML/nb/kcontrol/bell @dirrm share/doc/HTML/nb/kcontrol/background @dirrm share/doc/HTML/nb/kcontrol -@dirrm share/doc/HTML/nb @dirrm share/apps/kvtml/nb @dirrm share/apps/kvtml @dirrm share/apps/klettres/nb/alpha @dirrm share/apps/klettres/nb @dirrm share/apps/klettres @dirrm share/apps/khangman +@dirrmtry man/nb/man1 +@dirrmtry man/nb diff --git a/misc/kde4-l10n-nds/distinfo b/misc/kde4-l10n-nds/distinfo index e23acc306715..993618a88ff9 100644 --- a/misc/kde4-l10n-nds/distinfo +++ b/misc/kde4-l10n-nds/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-nds-4.1.4.tar.bz2) = 12b299ec3b9ec3715b78e3afc17f0fb0 -SHA256 (KDE/kde-l10n/kde-l10n-nds-4.1.4.tar.bz2) = 923a6c79ce2d47342569c44ebce745d77eec0d1176e7ca016c8bcf76d93c2349 -SIZE (KDE/kde-l10n/kde-l10n-nds-4.1.4.tar.bz2) = 3157722 +MD5 (KDE/kde-l10n/kde-l10n-nds-4.2.0.tar.bz2) = 378e068c4c86670788019ae7d0dda136 +SHA256 (KDE/kde-l10n/kde-l10n-nds-4.2.0.tar.bz2) = 638d2042b103a8cc372a71d760a44b077f768cf6ca300369f3965005c63c45f2 +SIZE (KDE/kde-l10n/kde-l10n-nds-4.2.0.tar.bz2) = 3370727 diff --git a/misc/kde4-l10n-nds/pkg-plist b/misc/kde4-l10n-nds/pkg-plist index 9e9f0f747e6e..14221efd4e0e 100644 --- a/misc/kde4-l10n-nds/pkg-plist +++ b/misc/kde4-l10n-nds/pkg-plist @@ -187,6 +187,7 @@ share/locale/nds/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nds/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nds/LC_MESSAGES/audiorename_plugin.mo share/locale/nds/LC_MESSAGES/blinken.mo +share/locale/nds/LC_MESSAGES/bomber.mo share/locale/nds/LC_MESSAGES/bovo.mo share/locale/nds/LC_MESSAGES/cervisia.mo share/locale/nds/LC_MESSAGES/cvsservice.mo @@ -201,6 +202,7 @@ share/locale/nds/LC_MESSAGES/imagerename_plugin.mo share/locale/nds/LC_MESSAGES/joystick.mo share/locale/nds/LC_MESSAGES/juk.mo share/locale/nds/LC_MESSAGES/kabc.mo +share/locale/nds/LC_MESSAGES/kabc_akonadi.mo share/locale/nds/LC_MESSAGES/kabc_dir.mo share/locale/nds/LC_MESSAGES/kabc_file.mo share/locale/nds/LC_MESSAGES/kabc_ldapkio.mo @@ -214,10 +216,14 @@ share/locale/nds/LC_MESSAGES/kaddressbook.mo share/locale/nds/LC_MESSAGES/kalarm.mo share/locale/nds/LC_MESSAGES/kalgebra.mo share/locale/nds/LC_MESSAGES/kalzium.mo +share/locale/nds/LC_MESSAGES/kalzium_qt.mo share/locale/nds/LC_MESSAGES/kanagram.mo +share/locale/nds/LC_MESSAGES/kapman.mo share/locale/nds/LC_MESSAGES/kappfinder.mo share/locale/nds/LC_MESSAGES/kapptemplate.mo +share/locale/nds/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nds/LC_MESSAGES/kate.mo +share/locale/nds/LC_MESSAGES/katebuild-plugin.mo share/locale/nds/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nds/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nds/LC_MESSAGES/katefiletemplates.mo @@ -228,7 +234,6 @@ share/locale/nds/LC_MESSAGES/kateinsertcommand.mo share/locale/nds/LC_MESSAGES/katekjswrapper.mo share/locale/nds/LC_MESSAGES/katekonsoleplugin.mo share/locale/nds/LC_MESSAGES/katemailfilesplugin.mo -share/locale/nds/LC_MESSAGES/katemake.mo share/locale/nds/LC_MESSAGES/kateopenheader.mo share/locale/nds/LC_MESSAGES/katepart4.mo share/locale/nds/LC_MESSAGES/katepybrowse.mo @@ -247,14 +252,14 @@ share/locale/nds/LC_MESSAGES/kblocks.mo share/locale/nds/LC_MESSAGES/kbounce.mo share/locale/nds/LC_MESSAGES/kbreakout.mo share/locale/nds/LC_MESSAGES/kbruch.mo -share/locale/nds/LC_MESSAGES/kbstateapplet.mo share/locale/nds/LC_MESSAGES/kbugbuster.mo share/locale/nds/LC_MESSAGES/kcachegrind.mo share/locale/nds/LC_MESSAGES/kcalc.mo share/locale/nds/LC_MESSAGES/kcertpart.mo share/locale/nds/LC_MESSAGES/kcharselect.mo -share/locale/nds/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/nds/LC_MESSAGES/kcm_akonadi.mo share/locale/nds/LC_MESSAGES/kcm_autostart.mo +share/locale/nds/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/nds/LC_MESSAGES/kcm_emoticons.mo share/locale/nds/LC_MESSAGES/kcm_krfb.mo share/locale/nds/LC_MESSAGES/kcm_kwindesktop.mo @@ -264,6 +269,7 @@ share/locale/nds/LC_MESSAGES/kcm_pci.mo share/locale/nds/LC_MESSAGES/kcm_phonon.mo share/locale/nds/LC_MESSAGES/kcm_phononxine.mo share/locale/nds/LC_MESSAGES/kcm_solid.mo +share/locale/nds/LC_MESSAGES/kcm_standard_actions.mo share/locale/nds/LC_MESSAGES/kcmaccess.mo share/locale/nds/LC_MESSAGES/kcmaudiocd.mo share/locale/nds/LC_MESSAGES/kcmbackground.mo @@ -313,7 +319,6 @@ share/locale/nds/LC_MESSAGES/kcmsmartcard.mo share/locale/nds/LC_MESSAGES/kcmsmserver.mo share/locale/nds/LC_MESSAGES/kcmsolidproc.mo share/locale/nds/LC_MESSAGES/kcmstyle.mo -share/locale/nds/LC_MESSAGES/kcmtaskbar.mo share/locale/nds/LC_MESSAGES/kcmusb.mo share/locale/nds/LC_MESSAGES/kcmview1394.mo share/locale/nds/LC_MESSAGES/kcmxinerama.mo @@ -321,7 +326,9 @@ share/locale/nds/LC_MESSAGES/kcolorchooser.mo share/locale/nds/LC_MESSAGES/kcron.mo share/locale/nds/LC_MESSAGES/kdat.mo share/locale/nds/LC_MESSAGES/kde-menu.mo +share/locale/nds/LC_MESSAGES/kdeasciiquarium.mo share/locale/nds/LC_MESSAGES/kdebugdialog.mo +share/locale/nds/LC_MESSAGES/kded_phononserver.mo share/locale/nds/LC_MESSAGES/kdelibs4.mo share/locale/nds/LC_MESSAGES/kdelibs_colors4.mo share/locale/nds/LC_MESSAGES/kdepasswd.mo @@ -332,6 +339,7 @@ share/locale/nds/LC_MESSAGES/kdessh.mo share/locale/nds/LC_MESSAGES/kdesu.mo share/locale/nds/LC_MESSAGES/kdesud.mo share/locale/nds/LC_MESSAGES/kdf.mo +share/locale/nds/LC_MESSAGES/kdgantt.mo share/locale/nds/LC_MESSAGES/kdgantt1.mo share/locale/nds/LC_MESSAGES/kdialog.mo share/locale/nds/LC_MESSAGES/kdiamond.mo @@ -381,12 +389,15 @@ share/locale/nds/LC_MESSAGES/khotnewstuff.mo share/locale/nds/LC_MESSAGES/khtmlkttsd.mo share/locale/nds/LC_MESSAGES/kiconfinder.mo share/locale/nds/LC_MESSAGES/kig.mo +share/locale/nds/LC_MESSAGES/killbots.mo share/locale/nds/LC_MESSAGES/kimagemapeditor.mo share/locale/nds/LC_MESSAGES/kinetd.mo share/locale/nds/LC_MESSAGES/kinfocenter.mo share/locale/nds/LC_MESSAGES/kio4.mo +share/locale/nds/LC_MESSAGES/kio_applications.mo share/locale/nds/LC_MESSAGES/kio_archive.mo share/locale/nds/LC_MESSAGES/kio_audiocd.mo +share/locale/nds/LC_MESSAGES/kio_bookmarks.mo share/locale/nds/LC_MESSAGES/kio_finger.mo share/locale/nds/LC_MESSAGES/kio_fish.mo share/locale/nds/LC_MESSAGES/kio_floppy.mo @@ -397,11 +408,12 @@ share/locale/nds/LC_MESSAGES/kio_jabberdisco.mo share/locale/nds/LC_MESSAGES/kio_ldap.mo share/locale/nds/LC_MESSAGES/kio_man.mo share/locale/nds/LC_MESSAGES/kio_mbox.mo +share/locale/nds/LC_MESSAGES/kio_nepomuksearch.mo share/locale/nds/LC_MESSAGES/kio_nfs.mo share/locale/nds/LC_MESSAGES/kio_nntp.mo +share/locale/nds/LC_MESSAGES/kio_perldoc.mo share/locale/nds/LC_MESSAGES/kio_pop3.mo share/locale/nds/LC_MESSAGES/kio_remote.mo -share/locale/nds/LC_MESSAGES/kio_settings.mo share/locale/nds/LC_MESSAGES/kio_sftp.mo share/locale/nds/LC_MESSAGES/kio_sieve.mo share/locale/nds/LC_MESSAGES/kio_smb.mo @@ -461,10 +473,10 @@ share/locale/nds/LC_MESSAGES/kopete.mo share/locale/nds/LC_MESSAGES/korganizer.mo share/locale/nds/LC_MESSAGES/korn.mo share/locale/nds/LC_MESSAGES/kpackage.mo +share/locale/nds/LC_MESSAGES/kpartloader.mo share/locale/nds/LC_MESSAGES/kpartsaver.mo share/locale/nds/LC_MESSAGES/kpasswdserver.mo share/locale/nds/LC_MESSAGES/kpat.mo -share/locale/nds/LC_MESSAGES/kpercentage.mo share/locale/nds/LC_MESSAGES/kpilot.mo share/locale/nds/LC_MESSAGES/kppp.mo share/locale/nds/LC_MESSAGES/kppplogview.mo @@ -488,20 +500,12 @@ share/locale/nds/LC_MESSAGES/kreversi.mo share/locale/nds/LC_MESSAGES/krfb.mo share/locale/nds/LC_MESSAGES/kruler.mo share/locale/nds/LC_MESSAGES/krunner.mo -share/locale/nds/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/nds/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/nds/LC_MESSAGES/krunner_contacts.mo -share/locale/nds/LC_MESSAGES/krunner_converterrunner.mo -share/locale/nds/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/nds/LC_MESSAGES/krunner_sessions.mo -share/locale/nds/LC_MESSAGES/krunner_shellrunner.mo -share/locale/nds/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/nds/LC_MESSAGES/krunner_xesam.mo share/locale/nds/LC_MESSAGES/ksame.mo share/locale/nds/LC_MESSAGES/ksaneplugin.mo share/locale/nds/LC_MESSAGES/ksayit.mo share/locale/nds/LC_MESSAGES/kscd.mo share/locale/nds/LC_MESSAGES/kscreensaver.mo +share/locale/nds/LC_MESSAGES/ksendemail.mo share/locale/nds/LC_MESSAGES/kshisen.mo share/locale/nds/LC_MESSAGES/kshorturifilter.mo share/locale/nds/LC_MESSAGES/ksirk.mo @@ -518,6 +522,7 @@ share/locale/nds/LC_MESSAGES/kstyle_keramik_config.mo share/locale/nds/LC_MESSAGES/kstyle_phase_config.mo share/locale/nds/LC_MESSAGES/ksudoku.mo share/locale/nds/LC_MESSAGES/ksysguard.mo +share/locale/nds/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/nds/LC_MESSAGES/ksystemlog.mo share/locale/nds/LC_MESSAGES/ksystraycmd.mo share/locale/nds/LC_MESSAGES/ksysv.mo @@ -527,7 +532,6 @@ share/locale/nds/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/nds/LC_MESSAGES/kthememanager.mo share/locale/nds/LC_MESSAGES/ktimer.mo share/locale/nds/LC_MESSAGES/ktimetracker.mo -share/locale/nds/LC_MESSAGES/ktnef.mo share/locale/nds/LC_MESSAGES/ktouch.mo share/locale/nds/LC_MESSAGES/ktraderclient.mo share/locale/nds/LC_MESSAGES/kttsd.mo @@ -539,6 +543,7 @@ share/locale/nds/LC_MESSAGES/kuiserver.mo share/locale/nds/LC_MESSAGES/kuiviewer.mo share/locale/nds/LC_MESSAGES/kurifilter.mo share/locale/nds/LC_MESSAGES/kuser.mo +share/locale/nds/LC_MESSAGES/kwalletd.mo share/locale/nds/LC_MESSAGES/kwalletmanager.mo share/locale/nds/LC_MESSAGES/kwatchgnupg.mo share/locale/nds/LC_MESSAGES/kweather.mo @@ -585,11 +590,14 @@ share/locale/nds/LC_MESSAGES/libmailtransport.mo share/locale/nds/LC_MESSAGES/liboktetacore.mo share/locale/nds/LC_MESSAGES/libphonon.mo share/locale/nds/LC_MESSAGES/libplasma.mo +share/locale/nds/LC_MESSAGES/libplasmaclock.mo share/locale/nds/LC_MESSAGES/libtaskmanager.mo share/locale/nds/LC_MESSAGES/lokalize.mo share/locale/nds/LC_MESSAGES/lskat.mo share/locale/nds/LC_MESSAGES/marble.mo +share/locale/nds/LC_MESSAGES/marble_qt.mo share/locale/nds/LC_MESSAGES/nepomuk.mo +share/locale/nds/LC_MESSAGES/nepomuksearch.mo share/locale/nds/LC_MESSAGES/nsplugin.mo share/locale/nds/LC_MESSAGES/okteta.mo share/locale/nds/LC_MESSAGES/oktetapart.mo @@ -599,6 +607,7 @@ share/locale/nds/LC_MESSAGES/okular_comicbook.mo share/locale/nds/LC_MESSAGES/okular_djvu.mo share/locale/nds/LC_MESSAGES/okular_dvi.mo share/locale/nds/LC_MESSAGES/okular_epub.mo +share/locale/nds/LC_MESSAGES/okular_fax.mo share/locale/nds/LC_MESSAGES/okular_fictionbook.mo share/locale/nds/LC_MESSAGES/okular_ghostview.mo share/locale/nds/LC_MESSAGES/okular_kimgio.mo @@ -611,10 +620,15 @@ share/locale/nds/LC_MESSAGES/parley.mo share/locale/nds/LC_MESSAGES/phonon-xine.mo share/locale/nds/LC_MESSAGES/phonon_gstreamer.mo share/locale/nds/LC_MESSAGES/phonon_kde.mo +share/locale/nds/LC_MESSAGES/plasma-overlay.mo +share/locale/nds/LC_MESSAGES/plasma-shells-common.mo share/locale/nds/LC_MESSAGES/plasma.mo share/locale/nds/LC_MESSAGES/plasma_applet_battery.mo +share/locale/nds/LC_MESSAGES/plasma_applet_bball.mo share/locale/nds/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/nds/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/nds/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/nds/LC_MESSAGES/plasma_applet_charselect.mo share/locale/nds/LC_MESSAGES/plasma_applet_clock.mo share/locale/nds/LC_MESSAGES/plasma_applet_comic.mo share/locale/nds/LC_MESSAGES/plasma_applet_desktop.mo @@ -626,26 +640,61 @@ share/locale/nds/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/nds/LC_MESSAGES/plasma_applet_folderview.mo share/locale/nds/LC_MESSAGES/plasma_applet_frame.mo share/locale/nds/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/nds/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/nds/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/nds/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/nds/LC_MESSAGES/plasma_applet_katesession.mo share/locale/nds/LC_MESSAGES/plasma_applet_kget.mo -share/locale/nds/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/nds/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/nds/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/nds/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/nds/LC_MESSAGES/plasma_applet_life.mo share/locale/nds/LC_MESSAGES/plasma_applet_luna.mo +share/locale/nds/LC_MESSAGES/plasma_applet_news.mo share/locale/nds/LC_MESSAGES/plasma_applet_notes.mo share/locale/nds/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/nds/LC_MESSAGES/plasma_applet_pager.mo share/locale/nds/LC_MESSAGES/plasma_applet_panel.mo +share/locale/nds/LC_MESSAGES/plasma_applet_paste.mo +share/locale/nds/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/nds/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/nds/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/nds/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/nds/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/nds/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/nds/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/nds/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/nds/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/nds/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/nds/LC_MESSAGES/plasma_applet_timer.mo share/locale/nds/LC_MESSAGES/plasma_applet_trash.mo share/locale/nds/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/nds/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/nds/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/nds/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/nds/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/nds/LC_MESSAGES/plasma_engine_dict.mo +share/locale/nds/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/nds/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/nds/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/nds/LC_MESSAGES/plasma_engine_rss.mo +share/locale/nds/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/nds/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/nds/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/nds/LC_MESSAGES/plasma_runner_locations.mo +share/locale/nds/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/nds/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/nds/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/nds/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/nds/LC_MESSAGES/plasma_runner_shell.mo +share/locale/nds/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/nds/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/nds/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/nds/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/nds/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/nds/LC_MESSAGES/plasmaengineexplorer.mo share/locale/nds/LC_MESSAGES/plasmapkg.mo share/locale/nds/LC_MESSAGES/plasmoidviewer.mo +share/locale/nds/LC_MESSAGES/powerdevil.mo share/locale/nds/LC_MESSAGES/printer-applet.mo share/locale/nds/LC_MESSAGES/processcore.mo share/locale/nds/LC_MESSAGES/processui.mo @@ -657,17 +706,17 @@ share/locale/nds/LC_MESSAGES/solidcontrol.mo share/locale/nds/LC_MESSAGES/soliduiserver.mo share/locale/nds/LC_MESSAGES/spy.mo share/locale/nds/LC_MESSAGES/step.mo +share/locale/nds/LC_MESSAGES/step_qt.mo share/locale/nds/LC_MESSAGES/strigila_diff.mo share/locale/nds/LC_MESSAGES/superkaramba.mo share/locale/nds/LC_MESSAGES/svgpart.mo share/locale/nds/LC_MESSAGES/sweeper.mo +share/locale/nds/LC_MESSAGES/system-config-printer-kde.mo share/locale/nds/LC_MESSAGES/systemsettings.mo share/locale/nds/LC_MESSAGES/timezones4.mo share/locale/nds/LC_MESSAGES/umbrello.mo share/locale/nds/LC_MESSAGES/useraccount.mo share/locale/nds/entry.desktop -@dirrm share/locale/nds/LC_MESSAGES -@dirrm share/locale/nds @dirrm share/apps/kvtml/nds @dirrm share/apps/kvtml @dirrm share/apps/kturtle/examples/nds @@ -681,5 +730,3 @@ share/locale/nds/entry.desktop @dirrm share/apps/klettres/nds @dirrm share/apps/klettres @dirrm share/apps/khangman -@dirrm share/apps/katepart/syntax -@dirrm share/apps/katepart diff --git a/misc/kde4-l10n-nl/Makefile b/misc/kde4-l10n-nl/Makefile index 36bba9c9f4bb..ac86e8f6dbb9 100644 --- a/misc/kde4-l10n-nl/Makefile +++ b/misc/kde4-l10n-nl/Makefile @@ -14,6 +14,9 @@ COMMENT= Dutch messages and documentation for KDE4 KDE4_L10N= nl +MANLANG= ${KDE4_L10N} +.include <${.CURDIR}/Makefile.man> + post-extract: ${MKDIR} ${WRKSRC}/build diff --git a/misc/kde4-l10n-nl/distinfo b/misc/kde4-l10n-nl/distinfo index 1b748fa0bbee..e02f75a178e6 100644 --- a/misc/kde4-l10n-nl/distinfo +++ b/misc/kde4-l10n-nl/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-nl-4.1.4.tar.bz2) = 50b0dabddf55d79ae55e4313b3dfb0cc -SHA256 (KDE/kde-l10n/kde-l10n-nl-4.1.4.tar.bz2) = 93f35378c2fec2b98bfe42de7702d6e8f09bdcb1784159829a7fa6da09267bcc -SIZE (KDE/kde-l10n/kde-l10n-nl-4.1.4.tar.bz2) = 8228911 +MD5 (KDE/kde-l10n/kde-l10n-nl-4.2.0.tar.bz2) = f9174173973b0e235a3d729b0ef2f1cf +SHA256 (KDE/kde-l10n/kde-l10n-nl-4.2.0.tar.bz2) = 118c3980cc1f252292b444d5a98c3d13bc0c764d997645276686da9ae024e184 +SIZE (KDE/kde-l10n/kde-l10n-nl-4.2.0.tar.bz2) = 12244450 diff --git a/misc/kde4-l10n-nl/pkg-plist b/misc/kde4-l10n-nl/pkg-plist index 8789bc022535..ffe98dfb1400 100644 --- a/misc/kde4-l10n-nl/pkg-plist +++ b/misc/kde4-l10n-nl/pkg-plist @@ -82,9 +82,41 @@ share/doc/HTML/nl/amor/index.docbook share/doc/HTML/nl/irkick/common share/doc/HTML/nl/irkick/index.cache.bz2 share/doc/HTML/nl/irkick/index.docbook -share/doc/HTML/nl/kamera/common -share/doc/HTML/nl/kamera/index.cache.bz2 -share/doc/HTML/nl/kamera/index.docbook +share/doc/HTML/nl/juk/common +share/doc/HTML/nl/juk/index.cache.bz2 +share/doc/HTML/nl/juk/index.docbook +share/doc/HTML/nl/juk/juk-main.png +share/doc/HTML/nl/kalgebra/common +share/doc/HTML/nl/kalgebra/index.cache.bz2 +share/doc/HTML/nl/kalgebra/index.docbook +share/doc/HTML/nl/kalgebra/kalgebra-main-window.png +share/doc/HTML/nl/kalzium/common +share/doc/HTML/nl/kalzium/gradient.png +share/doc/HTML/nl/kalzium/index.cache.bz2 +share/doc/HTML/nl/kalzium/index.docbook +share/doc/HTML/nl/kalzium/infodialog_bohr.png +share/doc/HTML/nl/kalzium/infodialog_data_overview.png +share/doc/HTML/nl/kalzium/infodialog_isotopes.png +share/doc/HTML/nl/kalzium/infodialog_misc.png +share/doc/HTML/nl/kalzium/infodialog_overview.png +share/doc/HTML/nl/kalzium/infodialog_spectrum.png +share/doc/HTML/nl/kalzium/man-kalzium.1.docbook +share/doc/HTML/nl/kalzium/quick-1.png +share/doc/HTML/nl/kalzium/quick-2.png +share/doc/HTML/nl/kalzium/quick-3.png +share/doc/HTML/nl/kalzium/quick-4.png +share/doc/HTML/nl/kalzium/screenshot1.png +share/doc/HTML/nl/kalzium/screenshot2.png +share/doc/HTML/nl/kalzium/screenshot5.png +share/doc/HTML/nl/kalzium/screenshot6.png +share/doc/HTML/nl/kalzium/screenshot7.png +share/doc/HTML/nl/kalzium/screenshoteqsolver.png +share/doc/HTML/nl/kalzium/screenshotnuclidboard.png +share/doc/HTML/nl/kalzium/settings1.png +share/doc/HTML/nl/kalzium/settings2.png +share/doc/HTML/nl/kalzium/settings3.png +share/doc/HTML/nl/kalzium/sidebar1.png +share/doc/HTML/nl/kalzium/sidebar2.png share/doc/HTML/nl/kate-plugins/common share/doc/HTML/nl/kate-plugins/filetemplates.docbook share/doc/HTML/nl/kate-plugins/htmltools.docbook @@ -466,48 +498,48 @@ share/doc/HTML/nl/kinfocenter/usb/index.docbook share/doc/HTML/nl/kinfocenter/xserver/common share/doc/HTML/nl/kinfocenter/xserver/index.cache.bz2 share/doc/HTML/nl/kinfocenter/xserver/index.docbook -share/doc/HTML/nl/kioslave/bzip.docbook -share/doc/HTML/nl/kioslave/bzip2.docbook -share/doc/HTML/nl/kioslave/cgi.docbook -share/doc/HTML/nl/kioslave/common -share/doc/HTML/nl/kioslave/data.docbook -share/doc/HTML/nl/kioslave/file.docbook -share/doc/HTML/nl/kioslave/finger.docbook -share/doc/HTML/nl/kioslave/fish.docbook -share/doc/HTML/nl/kioslave/floppy.docbook -share/doc/HTML/nl/kioslave/ftp.docbook -share/doc/HTML/nl/kioslave/gopher.docbook -share/doc/HTML/nl/kioslave/gzip.docbook -share/doc/HTML/nl/kioslave/help.docbook -share/doc/HTML/nl/kioslave/http.docbook -share/doc/HTML/nl/kioslave/https.docbook -share/doc/HTML/nl/kioslave/imap.docbook -share/doc/HTML/nl/kioslave/imaps.docbook -share/doc/HTML/nl/kioslave/index.cache.bz2 -share/doc/HTML/nl/kioslave/index.docbook -share/doc/HTML/nl/kioslave/info.docbook -share/doc/HTML/nl/kioslave/lan.docbook -share/doc/HTML/nl/kioslave/ldap.docbook -share/doc/HTML/nl/kioslave/mac.docbook -share/doc/HTML/nl/kioslave/mailto.docbook -share/doc/HTML/nl/kioslave/man.docbook -share/doc/HTML/nl/kioslave/mrml.docbook -share/doc/HTML/nl/kioslave/news.docbook -share/doc/HTML/nl/kioslave/nfs.docbook -share/doc/HTML/nl/kioslave/nntp.docbook -share/doc/HTML/nl/kioslave/pop3.docbook -share/doc/HTML/nl/kioslave/pop3s.docbook -share/doc/HTML/nl/kioslave/print.docbook -share/doc/HTML/nl/kioslave/rlan.docbook -share/doc/HTML/nl/kioslave/rlogin.docbook -share/doc/HTML/nl/kioslave/sftp.docbook -share/doc/HTML/nl/kioslave/smb.docbook -share/doc/HTML/nl/kioslave/smtp.docbook -share/doc/HTML/nl/kioslave/tar.docbook -share/doc/HTML/nl/kioslave/telnet.docbook -share/doc/HTML/nl/kioslave/thumbnail.docbook -share/doc/HTML/nl/kioslave/webdav.docbook -share/doc/HTML/nl/kioslave/webdavs.docbook +share/doc/HTML/nl/kioslave/kioslave/bzip.docbook +share/doc/HTML/nl/kioslave/kioslave/bzip2.docbook +share/doc/HTML/nl/kioslave/kioslave/cgi.docbook +share/doc/HTML/nl/kioslave/kioslave/common +share/doc/HTML/nl/kioslave/kioslave/data.docbook +share/doc/HTML/nl/kioslave/kioslave/file.docbook +share/doc/HTML/nl/kioslave/kioslave/finger.docbook +share/doc/HTML/nl/kioslave/kioslave/fish.docbook +share/doc/HTML/nl/kioslave/kioslave/floppy.docbook +share/doc/HTML/nl/kioslave/kioslave/ftp.docbook +share/doc/HTML/nl/kioslave/kioslave/gopher.docbook +share/doc/HTML/nl/kioslave/kioslave/gzip.docbook +share/doc/HTML/nl/kioslave/kioslave/help.docbook +share/doc/HTML/nl/kioslave/kioslave/http.docbook +share/doc/HTML/nl/kioslave/kioslave/https.docbook +share/doc/HTML/nl/kioslave/kioslave/imap.docbook +share/doc/HTML/nl/kioslave/kioslave/imaps.docbook +share/doc/HTML/nl/kioslave/kioslave/index.cache.bz2 +share/doc/HTML/nl/kioslave/kioslave/index.docbook +share/doc/HTML/nl/kioslave/kioslave/info.docbook +share/doc/HTML/nl/kioslave/kioslave/lan.docbook +share/doc/HTML/nl/kioslave/kioslave/ldap.docbook +share/doc/HTML/nl/kioslave/kioslave/mac.docbook +share/doc/HTML/nl/kioslave/kioslave/mailto.docbook +share/doc/HTML/nl/kioslave/kioslave/man.docbook +share/doc/HTML/nl/kioslave/kioslave/mrml.docbook +share/doc/HTML/nl/kioslave/kioslave/news.docbook +share/doc/HTML/nl/kioslave/kioslave/nfs.docbook +share/doc/HTML/nl/kioslave/kioslave/nntp.docbook +share/doc/HTML/nl/kioslave/kioslave/pop3.docbook +share/doc/HTML/nl/kioslave/kioslave/pop3s.docbook +share/doc/HTML/nl/kioslave/kioslave/print.docbook +share/doc/HTML/nl/kioslave/kioslave/rlan.docbook +share/doc/HTML/nl/kioslave/kioslave/rlogin.docbook +share/doc/HTML/nl/kioslave/kioslave/sftp.docbook +share/doc/HTML/nl/kioslave/kioslave/smb.docbook +share/doc/HTML/nl/kioslave/kioslave/smtp.docbook +share/doc/HTML/nl/kioslave/kioslave/tar.docbook +share/doc/HTML/nl/kioslave/kioslave/telnet.docbook +share/doc/HTML/nl/kioslave/kioslave/thumbnail.docbook +share/doc/HTML/nl/kioslave/kioslave/webdav.docbook +share/doc/HTML/nl/kioslave/kioslave/webdavs.docbook share/doc/HTML/nl/klines/common share/doc/HTML/nl/klines/index.cache.bz2 share/doc/HTML/nl/klines/index.docbook @@ -545,13 +577,25 @@ share/doc/HTML/nl/kmplot/configuration.docbook share/doc/HTML/nl/kmplot/credits.docbook share/doc/HTML/nl/kmplot/dcop.docbook share/doc/HTML/nl/kmplot/developer.docbook +share/doc/HTML/nl/kmplot/edu-logo.png share/doc/HTML/nl/kmplot/firststeps.docbook share/doc/HTML/nl/kmplot/index.cache.bz2 share/doc/HTML/nl/kmplot/index.docbook share/doc/HTML/nl/kmplot/install.docbook share/doc/HTML/nl/kmplot/introduction.docbook +share/doc/HTML/nl/kmplot/kfkt.png +share/doc/HTML/nl/kmplot/ksys1.png +share/doc/HTML/nl/kmplot/ksys2.png +share/doc/HTML/nl/kmplot/ksys3.png +share/doc/HTML/nl/kmplot/main.png share/doc/HTML/nl/kmplot/man-kmplot.1.docbook +share/doc/HTML/nl/kmplot/popup.png share/doc/HTML/nl/kmplot/reference.docbook +share/doc/HTML/nl/kmplot/settings-colors.png +share/doc/HTML/nl/kmplot/settings-coords.png +share/doc/HTML/nl/kmplot/settings-diagram.png +share/doc/HTML/nl/kmplot/settings-fonts.png +share/doc/HTML/nl/kmplot/settings-general.png share/doc/HTML/nl/kmplot/using.docbook share/doc/HTML/nl/knetattach/common share/doc/HTML/nl/knetattach/index.cache.bz2 @@ -613,21 +657,6 @@ share/doc/HTML/nl/kpat/common share/doc/HTML/nl/kpat/index.cache.bz2 share/doc/HTML/nl/kpat/index.docbook share/doc/HTML/nl/kpat/man-kpat.6.docbook -share/doc/HTML/nl/kpercentage/answer.png -share/doc/HTML/nl/kpercentage/commands.docbook -share/doc/HTML/nl/kpercentage/common -share/doc/HTML/nl/kpercentage/credits.docbook -share/doc/HTML/nl/kpercentage/devel.docbook -share/doc/HTML/nl/kpercentage/edu-logo.png -share/doc/HTML/nl/kpercentage/faq.docbook -share/doc/HTML/nl/kpercentage/help.png -share/doc/HTML/nl/kpercentage/index.cache.bz2 -share/doc/HTML/nl/kpercentage/index.docbook -share/doc/HTML/nl/kpercentage/install.docbook -share/doc/HTML/nl/kpercentage/introduction.docbook -share/doc/HTML/nl/kpercentage/main.png -share/doc/HTML/nl/kpercentage/using.docbook -share/doc/HTML/nl/kpercentage/welcome.png share/doc/HTML/nl/kpilot/common share/doc/HTML/nl/kpilot/configuration.docbook share/doc/HTML/nl/kpilot/faq.docbook @@ -638,6 +667,9 @@ share/doc/HTML/nl/kpilot/usage.docbook share/doc/HTML/nl/ksim/common share/doc/HTML/nl/ksim/index.cache.bz2 share/doc/HTML/nl/ksim/index.docbook +share/doc/HTML/nl/ksnapshot/common +share/doc/HTML/nl/ksnapshot/index.cache.bz2 +share/doc/HTML/nl/ksnapshot/index.docbook share/doc/HTML/nl/kspaceduel/common share/doc/HTML/nl/kspaceduel/index.cache.bz2 share/doc/HTML/nl/kspaceduel/index.docbook @@ -713,25 +745,6 @@ share/doc/HTML/nl/kstars/lightcurve.png share/doc/HTML/nl/kstars/lightcurves.docbook share/doc/HTML/nl/kstars/luminosity.docbook share/doc/HTML/nl/kstars/magnitude.docbook -share/doc/HTML/nl/kstars/man-celestrongps.1.docbook -share/doc/HTML/nl/kstars/man-fliccd.1.docbook -share/doc/HTML/nl/kstars/man-indi_celestron_gps.1.docbook -share/doc/HTML/nl/kstars/man-indi_fli_ccd.1.docbook -share/doc/HTML/nl/kstars/man-indi_lx200_16.1.docbook -share/doc/HTML/nl/kstars/man-indi_lx200autostar.1.docbook -share/doc/HTML/nl/kstars/man-indi_lx200classic.1.docbook -share/doc/HTML/nl/kstars/man-indi_lx200generic.1.docbook -share/doc/HTML/nl/kstars/man-indi_temma.1.docbook -share/doc/HTML/nl/kstars/man-indi_v4l_generic.1.docbook -share/doc/HTML/nl/kstars/man-indi_v4l_philips.1.docbook -share/doc/HTML/nl/kstars/man-indiserver.1.docbook -share/doc/HTML/nl/kstars/man-lx200_16.1.docbook -share/doc/HTML/nl/kstars/man-lx200autostar.1.docbook -share/doc/HTML/nl/kstars/man-lx200classic.1.docbook -share/doc/HTML/nl/kstars/man-lx200generic.1.docbook -share/doc/HTML/nl/kstars/man-temma.1.docbook -share/doc/HTML/nl/kstars/man-v4ldriver.1.docbook -share/doc/HTML/nl/kstars/man-v4lphilips.1.docbook share/doc/HTML/nl/kstars/meridian.docbook share/doc/HTML/nl/kstars/newfov.png share/doc/HTML/nl/kstars/observinglist.docbook @@ -804,6 +817,19 @@ share/doc/HTML/nl/kxkb/index.docbook share/doc/HTML/nl/lskat/common share/doc/HTML/nl/lskat/index.cache.bz2 share/doc/HTML/nl/lskat/index.docbook +share/doc/HTML/nl/marble/common +share/doc/HTML/nl/marble/configure-cacheproxy.png +share/doc/HTML/nl/marble/configure-navigation.png +share/doc/HTML/nl/marble/configure-plugins.png +share/doc/HTML/nl/marble/configure-view.png +share/doc/HTML/nl/marble/index.cache.bz2 +share/doc/HTML/nl/marble/index.docbook +share/doc/HTML/nl/marble/logo-1.png +share/doc/HTML/nl/marble/mapview-1.png +share/doc/HTML/nl/marble/measure-1.png +share/doc/HTML/nl/marble/quick-1.png +share/doc/HTML/nl/marble/search-1.png +share/doc/HTML/nl/marble/search-2.png share/locale/nl/LC_MESSAGES/akonaditray.mo share/locale/nl/LC_MESSAGES/akregator.mo share/locale/nl/LC_MESSAGES/amor.mo @@ -812,6 +838,7 @@ share/locale/nl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nl/LC_MESSAGES/audiorename_plugin.mo share/locale/nl/LC_MESSAGES/blinken.mo +share/locale/nl/LC_MESSAGES/bomber.mo share/locale/nl/LC_MESSAGES/bovo.mo share/locale/nl/LC_MESSAGES/cervisia.mo share/locale/nl/LC_MESSAGES/cvsservice.mo @@ -826,6 +853,7 @@ share/locale/nl/LC_MESSAGES/imagerename_plugin.mo share/locale/nl/LC_MESSAGES/joystick.mo share/locale/nl/LC_MESSAGES/juk.mo share/locale/nl/LC_MESSAGES/kabc.mo +share/locale/nl/LC_MESSAGES/kabc_akonadi.mo share/locale/nl/LC_MESSAGES/kabc_dir.mo share/locale/nl/LC_MESSAGES/kabc_file.mo share/locale/nl/LC_MESSAGES/kabc_ldapkio.mo @@ -839,10 +867,14 @@ share/locale/nl/LC_MESSAGES/kaddressbook.mo share/locale/nl/LC_MESSAGES/kalarm.mo share/locale/nl/LC_MESSAGES/kalgebra.mo share/locale/nl/LC_MESSAGES/kalzium.mo +share/locale/nl/LC_MESSAGES/kalzium_qt.mo share/locale/nl/LC_MESSAGES/kanagram.mo +share/locale/nl/LC_MESSAGES/kapman.mo share/locale/nl/LC_MESSAGES/kappfinder.mo share/locale/nl/LC_MESSAGES/kapptemplate.mo +share/locale/nl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nl/LC_MESSAGES/kate.mo +share/locale/nl/LC_MESSAGES/katebuild-plugin.mo share/locale/nl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nl/LC_MESSAGES/katefiletemplates.mo @@ -853,7 +885,6 @@ share/locale/nl/LC_MESSAGES/kateinsertcommand.mo share/locale/nl/LC_MESSAGES/katekjswrapper.mo share/locale/nl/LC_MESSAGES/katekonsoleplugin.mo share/locale/nl/LC_MESSAGES/katemailfilesplugin.mo -share/locale/nl/LC_MESSAGES/katemake.mo share/locale/nl/LC_MESSAGES/kateopenheader.mo share/locale/nl/LC_MESSAGES/katepart4.mo share/locale/nl/LC_MESSAGES/katepybrowse.mo @@ -872,14 +903,14 @@ share/locale/nl/LC_MESSAGES/kblocks.mo share/locale/nl/LC_MESSAGES/kbounce.mo share/locale/nl/LC_MESSAGES/kbreakout.mo share/locale/nl/LC_MESSAGES/kbruch.mo -share/locale/nl/LC_MESSAGES/kbstateapplet.mo share/locale/nl/LC_MESSAGES/kbugbuster.mo share/locale/nl/LC_MESSAGES/kcachegrind.mo share/locale/nl/LC_MESSAGES/kcalc.mo share/locale/nl/LC_MESSAGES/kcertpart.mo share/locale/nl/LC_MESSAGES/kcharselect.mo -share/locale/nl/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/nl/LC_MESSAGES/kcm_akonadi.mo share/locale/nl/LC_MESSAGES/kcm_autostart.mo +share/locale/nl/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/nl/LC_MESSAGES/kcm_emoticons.mo share/locale/nl/LC_MESSAGES/kcm_krfb.mo share/locale/nl/LC_MESSAGES/kcm_kwindesktop.mo @@ -889,6 +920,7 @@ share/locale/nl/LC_MESSAGES/kcm_pci.mo share/locale/nl/LC_MESSAGES/kcm_phonon.mo share/locale/nl/LC_MESSAGES/kcm_phononxine.mo share/locale/nl/LC_MESSAGES/kcm_solid.mo +share/locale/nl/LC_MESSAGES/kcm_standard_actions.mo share/locale/nl/LC_MESSAGES/kcmaccess.mo share/locale/nl/LC_MESSAGES/kcmaudiocd.mo share/locale/nl/LC_MESSAGES/kcmbackground.mo @@ -938,7 +970,6 @@ share/locale/nl/LC_MESSAGES/kcmsmartcard.mo share/locale/nl/LC_MESSAGES/kcmsmserver.mo share/locale/nl/LC_MESSAGES/kcmsolidproc.mo share/locale/nl/LC_MESSAGES/kcmstyle.mo -share/locale/nl/LC_MESSAGES/kcmtaskbar.mo share/locale/nl/LC_MESSAGES/kcmusb.mo share/locale/nl/LC_MESSAGES/kcmview1394.mo share/locale/nl/LC_MESSAGES/kcmxinerama.mo @@ -946,7 +977,9 @@ share/locale/nl/LC_MESSAGES/kcolorchooser.mo share/locale/nl/LC_MESSAGES/kcron.mo share/locale/nl/LC_MESSAGES/kdat.mo share/locale/nl/LC_MESSAGES/kde-menu.mo +share/locale/nl/LC_MESSAGES/kdeasciiquarium.mo share/locale/nl/LC_MESSAGES/kdebugdialog.mo +share/locale/nl/LC_MESSAGES/kded_phononserver.mo share/locale/nl/LC_MESSAGES/kdelibs4.mo share/locale/nl/LC_MESSAGES/kdelibs_colors4.mo share/locale/nl/LC_MESSAGES/kdepasswd.mo @@ -957,6 +990,7 @@ share/locale/nl/LC_MESSAGES/kdessh.mo share/locale/nl/LC_MESSAGES/kdesu.mo share/locale/nl/LC_MESSAGES/kdesud.mo share/locale/nl/LC_MESSAGES/kdf.mo +share/locale/nl/LC_MESSAGES/kdgantt.mo share/locale/nl/LC_MESSAGES/kdgantt1.mo share/locale/nl/LC_MESSAGES/kdialog.mo share/locale/nl/LC_MESSAGES/kdiamond.mo @@ -1006,12 +1040,15 @@ share/locale/nl/LC_MESSAGES/khotnewstuff.mo share/locale/nl/LC_MESSAGES/khtmlkttsd.mo share/locale/nl/LC_MESSAGES/kiconfinder.mo share/locale/nl/LC_MESSAGES/kig.mo +share/locale/nl/LC_MESSAGES/killbots.mo share/locale/nl/LC_MESSAGES/kimagemapeditor.mo share/locale/nl/LC_MESSAGES/kinetd.mo share/locale/nl/LC_MESSAGES/kinfocenter.mo share/locale/nl/LC_MESSAGES/kio4.mo +share/locale/nl/LC_MESSAGES/kio_applications.mo share/locale/nl/LC_MESSAGES/kio_archive.mo share/locale/nl/LC_MESSAGES/kio_audiocd.mo +share/locale/nl/LC_MESSAGES/kio_bookmarks.mo share/locale/nl/LC_MESSAGES/kio_finger.mo share/locale/nl/LC_MESSAGES/kio_fish.mo share/locale/nl/LC_MESSAGES/kio_floppy.mo @@ -1022,11 +1059,12 @@ share/locale/nl/LC_MESSAGES/kio_jabberdisco.mo share/locale/nl/LC_MESSAGES/kio_ldap.mo share/locale/nl/LC_MESSAGES/kio_man.mo share/locale/nl/LC_MESSAGES/kio_mbox.mo +share/locale/nl/LC_MESSAGES/kio_nepomuksearch.mo share/locale/nl/LC_MESSAGES/kio_nfs.mo share/locale/nl/LC_MESSAGES/kio_nntp.mo +share/locale/nl/LC_MESSAGES/kio_perldoc.mo share/locale/nl/LC_MESSAGES/kio_pop3.mo share/locale/nl/LC_MESSAGES/kio_remote.mo -share/locale/nl/LC_MESSAGES/kio_settings.mo share/locale/nl/LC_MESSAGES/kio_sftp.mo share/locale/nl/LC_MESSAGES/kio_sieve.mo share/locale/nl/LC_MESSAGES/kio_smb.mo @@ -1086,10 +1124,10 @@ share/locale/nl/LC_MESSAGES/kopete.mo share/locale/nl/LC_MESSAGES/korganizer.mo share/locale/nl/LC_MESSAGES/korn.mo share/locale/nl/LC_MESSAGES/kpackage.mo +share/locale/nl/LC_MESSAGES/kpartloader.mo share/locale/nl/LC_MESSAGES/kpartsaver.mo share/locale/nl/LC_MESSAGES/kpasswdserver.mo share/locale/nl/LC_MESSAGES/kpat.mo -share/locale/nl/LC_MESSAGES/kpercentage.mo share/locale/nl/LC_MESSAGES/kpilot.mo share/locale/nl/LC_MESSAGES/kppp.mo share/locale/nl/LC_MESSAGES/kppplogview.mo @@ -1113,20 +1151,12 @@ share/locale/nl/LC_MESSAGES/kreversi.mo share/locale/nl/LC_MESSAGES/krfb.mo share/locale/nl/LC_MESSAGES/kruler.mo share/locale/nl/LC_MESSAGES/krunner.mo -share/locale/nl/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/nl/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/nl/LC_MESSAGES/krunner_contacts.mo -share/locale/nl/LC_MESSAGES/krunner_converterrunner.mo -share/locale/nl/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/nl/LC_MESSAGES/krunner_sessions.mo -share/locale/nl/LC_MESSAGES/krunner_shellrunner.mo -share/locale/nl/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/nl/LC_MESSAGES/krunner_xesam.mo share/locale/nl/LC_MESSAGES/ksame.mo share/locale/nl/LC_MESSAGES/ksaneplugin.mo share/locale/nl/LC_MESSAGES/ksayit.mo share/locale/nl/LC_MESSAGES/kscd.mo share/locale/nl/LC_MESSAGES/kscreensaver.mo +share/locale/nl/LC_MESSAGES/ksendemail.mo share/locale/nl/LC_MESSAGES/kshisen.mo share/locale/nl/LC_MESSAGES/kshorturifilter.mo share/locale/nl/LC_MESSAGES/ksirk.mo @@ -1143,6 +1173,7 @@ share/locale/nl/LC_MESSAGES/kstyle_keramik_config.mo share/locale/nl/LC_MESSAGES/kstyle_phase_config.mo share/locale/nl/LC_MESSAGES/ksudoku.mo share/locale/nl/LC_MESSAGES/ksysguard.mo +share/locale/nl/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/nl/LC_MESSAGES/ksystemlog.mo share/locale/nl/LC_MESSAGES/ksystraycmd.mo share/locale/nl/LC_MESSAGES/ksysv.mo @@ -1152,7 +1183,6 @@ share/locale/nl/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/nl/LC_MESSAGES/kthememanager.mo share/locale/nl/LC_MESSAGES/ktimer.mo share/locale/nl/LC_MESSAGES/ktimetracker.mo -share/locale/nl/LC_MESSAGES/ktnef.mo share/locale/nl/LC_MESSAGES/ktouch.mo share/locale/nl/LC_MESSAGES/ktraderclient.mo share/locale/nl/LC_MESSAGES/kttsd.mo @@ -1164,6 +1194,7 @@ share/locale/nl/LC_MESSAGES/kuiserver.mo share/locale/nl/LC_MESSAGES/kuiviewer.mo share/locale/nl/LC_MESSAGES/kurifilter.mo share/locale/nl/LC_MESSAGES/kuser.mo +share/locale/nl/LC_MESSAGES/kwalletd.mo share/locale/nl/LC_MESSAGES/kwalletmanager.mo share/locale/nl/LC_MESSAGES/kwatchgnupg.mo share/locale/nl/LC_MESSAGES/kweather.mo @@ -1210,11 +1241,14 @@ share/locale/nl/LC_MESSAGES/libmailtransport.mo share/locale/nl/LC_MESSAGES/liboktetacore.mo share/locale/nl/LC_MESSAGES/libphonon.mo share/locale/nl/LC_MESSAGES/libplasma.mo +share/locale/nl/LC_MESSAGES/libplasmaclock.mo share/locale/nl/LC_MESSAGES/libtaskmanager.mo share/locale/nl/LC_MESSAGES/lokalize.mo share/locale/nl/LC_MESSAGES/lskat.mo share/locale/nl/LC_MESSAGES/marble.mo +share/locale/nl/LC_MESSAGES/marble_qt.mo share/locale/nl/LC_MESSAGES/nepomuk.mo +share/locale/nl/LC_MESSAGES/nepomuksearch.mo share/locale/nl/LC_MESSAGES/nsplugin.mo share/locale/nl/LC_MESSAGES/okteta.mo share/locale/nl/LC_MESSAGES/oktetapart.mo @@ -1224,6 +1258,7 @@ share/locale/nl/LC_MESSAGES/okular_comicbook.mo share/locale/nl/LC_MESSAGES/okular_djvu.mo share/locale/nl/LC_MESSAGES/okular_dvi.mo share/locale/nl/LC_MESSAGES/okular_epub.mo +share/locale/nl/LC_MESSAGES/okular_fax.mo share/locale/nl/LC_MESSAGES/okular_fictionbook.mo share/locale/nl/LC_MESSAGES/okular_ghostview.mo share/locale/nl/LC_MESSAGES/okular_kimgio.mo @@ -1236,10 +1271,15 @@ share/locale/nl/LC_MESSAGES/parley.mo share/locale/nl/LC_MESSAGES/phonon-xine.mo share/locale/nl/LC_MESSAGES/phonon_gstreamer.mo share/locale/nl/LC_MESSAGES/phonon_kde.mo +share/locale/nl/LC_MESSAGES/plasma-overlay.mo +share/locale/nl/LC_MESSAGES/plasma-shells-common.mo share/locale/nl/LC_MESSAGES/plasma.mo share/locale/nl/LC_MESSAGES/plasma_applet_battery.mo +share/locale/nl/LC_MESSAGES/plasma_applet_bball.mo share/locale/nl/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/nl/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/nl/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/nl/LC_MESSAGES/plasma_applet_charselect.mo share/locale/nl/LC_MESSAGES/plasma_applet_clock.mo share/locale/nl/LC_MESSAGES/plasma_applet_comic.mo share/locale/nl/LC_MESSAGES/plasma_applet_desktop.mo @@ -1251,26 +1291,61 @@ share/locale/nl/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/nl/LC_MESSAGES/plasma_applet_folderview.mo share/locale/nl/LC_MESSAGES/plasma_applet_frame.mo share/locale/nl/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/nl/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/nl/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/nl/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/nl/LC_MESSAGES/plasma_applet_katesession.mo share/locale/nl/LC_MESSAGES/plasma_applet_kget.mo -share/locale/nl/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/nl/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/nl/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/nl/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/nl/LC_MESSAGES/plasma_applet_life.mo share/locale/nl/LC_MESSAGES/plasma_applet_luna.mo +share/locale/nl/LC_MESSAGES/plasma_applet_news.mo share/locale/nl/LC_MESSAGES/plasma_applet_notes.mo share/locale/nl/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/nl/LC_MESSAGES/plasma_applet_pager.mo share/locale/nl/LC_MESSAGES/plasma_applet_panel.mo +share/locale/nl/LC_MESSAGES/plasma_applet_paste.mo +share/locale/nl/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/nl/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/nl/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/nl/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/nl/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/nl/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/nl/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/nl/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/nl/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/nl/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/nl/LC_MESSAGES/plasma_applet_timer.mo share/locale/nl/LC_MESSAGES/plasma_applet_trash.mo share/locale/nl/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/nl/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/nl/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/nl/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/nl/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/nl/LC_MESSAGES/plasma_engine_dict.mo +share/locale/nl/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/nl/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/nl/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/nl/LC_MESSAGES/plasma_engine_rss.mo +share/locale/nl/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/nl/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/nl/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/nl/LC_MESSAGES/plasma_runner_locations.mo +share/locale/nl/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/nl/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/nl/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/nl/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/nl/LC_MESSAGES/plasma_runner_shell.mo +share/locale/nl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/nl/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/nl/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/nl/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/nl/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/nl/LC_MESSAGES/plasmaengineexplorer.mo share/locale/nl/LC_MESSAGES/plasmapkg.mo share/locale/nl/LC_MESSAGES/plasmoidviewer.mo +share/locale/nl/LC_MESSAGES/powerdevil.mo share/locale/nl/LC_MESSAGES/printer-applet.mo share/locale/nl/LC_MESSAGES/processcore.mo share/locale/nl/LC_MESSAGES/processui.mo @@ -1282,15 +1357,18 @@ share/locale/nl/LC_MESSAGES/solidcontrol.mo share/locale/nl/LC_MESSAGES/soliduiserver.mo share/locale/nl/LC_MESSAGES/spy.mo share/locale/nl/LC_MESSAGES/step.mo +share/locale/nl/LC_MESSAGES/step_qt.mo share/locale/nl/LC_MESSAGES/strigila_diff.mo share/locale/nl/LC_MESSAGES/superkaramba.mo share/locale/nl/LC_MESSAGES/svgpart.mo share/locale/nl/LC_MESSAGES/sweeper.mo +share/locale/nl/LC_MESSAGES/system-config-printer-kde.mo share/locale/nl/LC_MESSAGES/systemsettings.mo share/locale/nl/LC_MESSAGES/timezones4.mo share/locale/nl/LC_MESSAGES/umbrello.mo share/locale/nl/LC_MESSAGES/useraccount.mo share/locale/nl/entry.desktop +@dirrm share/doc/HTML/nl/marble @dirrm share/doc/HTML/nl/lskat @dirrm share/doc/HTML/nl/kxkb @dirrm share/doc/HTML/nl/kworldclock @@ -1301,9 +1379,9 @@ share/locale/nl/entry.desktop @dirrm share/doc/HTML/nl/ksysv @dirrm share/doc/HTML/nl/kstars @dirrm share/doc/HTML/nl/kspaceduel +@dirrm share/doc/HTML/nl/ksnapshot @dirrm share/doc/HTML/nl/ksim @dirrm share/doc/HTML/nl/kpilot -@dirrm share/doc/HTML/nl/kpercentage @dirrm share/doc/HTML/nl/kpat @dirrm share/doc/HTML/nl/kontact @dirrm share/doc/HTML/nl/konsolekalendar @@ -1320,6 +1398,7 @@ share/locale/nl/entry.desktop @dirrm share/doc/HTML/nl/kmahjongg @dirrm share/doc/HTML/nl/kmag @dirrm share/doc/HTML/nl/klines +@dirrm share/doc/HTML/nl/kioslave/kioslave @dirrm share/doc/HTML/nl/kioslave @dirrm share/doc/HTML/nl/kinfocenter/xserver @dirrm share/doc/HTML/nl/kinfocenter/usb @@ -1407,7 +1486,9 @@ share/locale/nl/entry.desktop @dirrm share/doc/HTML/nl/kcmlirc @dirrm share/doc/HTML/nl/kbruch @dirrm share/doc/HTML/nl/kate-plugins -@dirrm share/doc/HTML/nl/kamera +@dirrm share/doc/HTML/nl/kalzium +@dirrm share/doc/HTML/nl/kalgebra +@dirrm share/doc/HTML/nl/juk @dirrm share/doc/HTML/nl/irkick @dirrm share/doc/HTML/nl/amor @dirrm share/apps/kvtml/nl @@ -1419,3 +1500,6 @@ share/locale/nl/entry.desktop @dirrm share/apps/klettres/nl/alpha @dirrm share/apps/klettres/nl @dirrm share/apps/klettres +@dirrmtry man/nl/man6 +@dirrmtry man/nl/man1 +@dirrmtry man/nl diff --git a/misc/kde4-l10n-nn/Makefile b/misc/kde4-l10n-nn/Makefile index 205c74cb71d4..5ba06fc94569 100644 --- a/misc/kde4-l10n-nn/Makefile +++ b/misc/kde4-l10n-nn/Makefile @@ -14,6 +14,9 @@ COMMENT= Norwegian Nynorsk messages and documentation for KDE4 KDE4_L10N= nn +MANLANG= ${KDE4_L10N} +.include <${.CURDIR}/Makefile.man> + post-extract: ${MKDIR} ${WRKSRC}/build diff --git a/misc/kde4-l10n-nn/distinfo b/misc/kde4-l10n-nn/distinfo index 24c72eaf7658..84d3bae84abc 100644 --- a/misc/kde4-l10n-nn/distinfo +++ b/misc/kde4-l10n-nn/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-nn-4.1.4.tar.bz2) = b55ec0958d079004ca0d6d89af1cc0af -SHA256 (KDE/kde-l10n/kde-l10n-nn-4.1.4.tar.bz2) = b7f51188fb451d125e20a5ea559972399343547c3cba811630b267eba0273aee -SIZE (KDE/kde-l10n/kde-l10n-nn-4.1.4.tar.bz2) = 1860418 +MD5 (KDE/kde-l10n/kde-l10n-nn-4.2.0.tar.bz2) = cff7964f1c88a52d7e64df19e53c88ea +SHA256 (KDE/kde-l10n/kde-l10n-nn-4.2.0.tar.bz2) = 488291f95838906685d057b1324154eb52f29cbdbd20496be12f1a962dc723d9 +SIZE (KDE/kde-l10n/kde-l10n-nn-4.2.0.tar.bz2) = 1996868 diff --git a/misc/kde4-l10n-nn/pkg-plist b/misc/kde4-l10n-nn/pkg-plist index e6ecdd6138b4..26281c1c139b 100644 --- a/misc/kde4-l10n-nn/pkg-plist +++ b/misc/kde4-l10n-nn/pkg-plist @@ -9,18 +9,6 @@ share/doc/HTML/nn/kaddressbook/index.docbook share/doc/HTML/nn/kcontrol/bell/common share/doc/HTML/nn/kcontrol/bell/index.cache.bz2 share/doc/HTML/nn/kcontrol/bell/index.docbook -share/doc/HTML/nn/khelpcenter/common -share/doc/HTML/nn/khelpcenter/contact.docbook -share/doc/HTML/nn/khelpcenter/help.docbook -share/doc/HTML/nn/khelpcenter/index.cache.bz2 -share/doc/HTML/nn/khelpcenter/index.docbook -share/doc/HTML/nn/khelpcenter/links.docbook -share/doc/HTML/nn/khelpcenter/support.docbook -share/doc/HTML/nn/khelpcenter/welcome.docbook -share/doc/HTML/nn/khelpcenter/whatiskde.docbook -share/doc/HTML/nn/kinfocenter/usb/common -share/doc/HTML/nn/kinfocenter/usb/index.cache.bz2 -share/doc/HTML/nn/kinfocenter/usb/index.docbook share/doc/HTML/nn/kollision/common share/doc/HTML/nn/kollision/index.cache.bz2 share/doc/HTML/nn/kollision/index.docbook @@ -32,6 +20,7 @@ share/locale/nn/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nn/LC_MESSAGES/audiorename_plugin.mo share/locale/nn/LC_MESSAGES/blinken.mo +share/locale/nn/LC_MESSAGES/bomber.mo share/locale/nn/LC_MESSAGES/bovo.mo share/locale/nn/LC_MESSAGES/cervisia.mo share/locale/nn/LC_MESSAGES/cvsservice.mo @@ -46,6 +35,7 @@ share/locale/nn/LC_MESSAGES/imagerename_plugin.mo share/locale/nn/LC_MESSAGES/joystick.mo share/locale/nn/LC_MESSAGES/juk.mo share/locale/nn/LC_MESSAGES/kabc.mo +share/locale/nn/LC_MESSAGES/kabc_akonadi.mo share/locale/nn/LC_MESSAGES/kabc_dir.mo share/locale/nn/LC_MESSAGES/kabc_file.mo share/locale/nn/LC_MESSAGES/kabc_ldapkio.mo @@ -59,10 +49,14 @@ share/locale/nn/LC_MESSAGES/kaddressbook.mo share/locale/nn/LC_MESSAGES/kalarm.mo share/locale/nn/LC_MESSAGES/kalgebra.mo share/locale/nn/LC_MESSAGES/kalzium.mo +share/locale/nn/LC_MESSAGES/kalzium_qt.mo share/locale/nn/LC_MESSAGES/kanagram.mo +share/locale/nn/LC_MESSAGES/kapman.mo share/locale/nn/LC_MESSAGES/kappfinder.mo share/locale/nn/LC_MESSAGES/kapptemplate.mo +share/locale/nn/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nn/LC_MESSAGES/kate.mo +share/locale/nn/LC_MESSAGES/katebuild-plugin.mo share/locale/nn/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nn/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nn/LC_MESSAGES/katefiletemplates.mo @@ -73,7 +67,6 @@ share/locale/nn/LC_MESSAGES/kateinsertcommand.mo share/locale/nn/LC_MESSAGES/katekjswrapper.mo share/locale/nn/LC_MESSAGES/katekonsoleplugin.mo share/locale/nn/LC_MESSAGES/katemailfilesplugin.mo -share/locale/nn/LC_MESSAGES/katemake.mo share/locale/nn/LC_MESSAGES/kateopenheader.mo share/locale/nn/LC_MESSAGES/katepart4.mo share/locale/nn/LC_MESSAGES/katepybrowse.mo @@ -92,14 +85,14 @@ share/locale/nn/LC_MESSAGES/kblocks.mo share/locale/nn/LC_MESSAGES/kbounce.mo share/locale/nn/LC_MESSAGES/kbreakout.mo share/locale/nn/LC_MESSAGES/kbruch.mo -share/locale/nn/LC_MESSAGES/kbstateapplet.mo share/locale/nn/LC_MESSAGES/kbugbuster.mo share/locale/nn/LC_MESSAGES/kcachegrind.mo share/locale/nn/LC_MESSAGES/kcalc.mo share/locale/nn/LC_MESSAGES/kcertpart.mo share/locale/nn/LC_MESSAGES/kcharselect.mo -share/locale/nn/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/nn/LC_MESSAGES/kcm_akonadi.mo share/locale/nn/LC_MESSAGES/kcm_autostart.mo +share/locale/nn/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/nn/LC_MESSAGES/kcm_emoticons.mo share/locale/nn/LC_MESSAGES/kcm_krfb.mo share/locale/nn/LC_MESSAGES/kcm_kwindesktop.mo @@ -109,6 +102,7 @@ share/locale/nn/LC_MESSAGES/kcm_pci.mo share/locale/nn/LC_MESSAGES/kcm_phonon.mo share/locale/nn/LC_MESSAGES/kcm_phononxine.mo share/locale/nn/LC_MESSAGES/kcm_solid.mo +share/locale/nn/LC_MESSAGES/kcm_standard_actions.mo share/locale/nn/LC_MESSAGES/kcmaccess.mo share/locale/nn/LC_MESSAGES/kcmaudiocd.mo share/locale/nn/LC_MESSAGES/kcmbackground.mo @@ -158,7 +152,6 @@ share/locale/nn/LC_MESSAGES/kcmsmartcard.mo share/locale/nn/LC_MESSAGES/kcmsmserver.mo share/locale/nn/LC_MESSAGES/kcmsolidproc.mo share/locale/nn/LC_MESSAGES/kcmstyle.mo -share/locale/nn/LC_MESSAGES/kcmtaskbar.mo share/locale/nn/LC_MESSAGES/kcmusb.mo share/locale/nn/LC_MESSAGES/kcmview1394.mo share/locale/nn/LC_MESSAGES/kcmxinerama.mo @@ -166,7 +159,9 @@ share/locale/nn/LC_MESSAGES/kcolorchooser.mo share/locale/nn/LC_MESSAGES/kcron.mo share/locale/nn/LC_MESSAGES/kdat.mo share/locale/nn/LC_MESSAGES/kde-menu.mo +share/locale/nn/LC_MESSAGES/kdeasciiquarium.mo share/locale/nn/LC_MESSAGES/kdebugdialog.mo +share/locale/nn/LC_MESSAGES/kded_phononserver.mo share/locale/nn/LC_MESSAGES/kdelibs4.mo share/locale/nn/LC_MESSAGES/kdelibs_colors4.mo share/locale/nn/LC_MESSAGES/kdepasswd.mo @@ -177,6 +172,7 @@ share/locale/nn/LC_MESSAGES/kdessh.mo share/locale/nn/LC_MESSAGES/kdesu.mo share/locale/nn/LC_MESSAGES/kdesud.mo share/locale/nn/LC_MESSAGES/kdf.mo +share/locale/nn/LC_MESSAGES/kdgantt.mo share/locale/nn/LC_MESSAGES/kdgantt1.mo share/locale/nn/LC_MESSAGES/kdialog.mo share/locale/nn/LC_MESSAGES/kdiamond.mo @@ -226,12 +222,15 @@ share/locale/nn/LC_MESSAGES/khotnewstuff.mo share/locale/nn/LC_MESSAGES/khtmlkttsd.mo share/locale/nn/LC_MESSAGES/kiconfinder.mo share/locale/nn/LC_MESSAGES/kig.mo +share/locale/nn/LC_MESSAGES/killbots.mo share/locale/nn/LC_MESSAGES/kimagemapeditor.mo share/locale/nn/LC_MESSAGES/kinetd.mo share/locale/nn/LC_MESSAGES/kinfocenter.mo share/locale/nn/LC_MESSAGES/kio4.mo +share/locale/nn/LC_MESSAGES/kio_applications.mo share/locale/nn/LC_MESSAGES/kio_archive.mo share/locale/nn/LC_MESSAGES/kio_audiocd.mo +share/locale/nn/LC_MESSAGES/kio_bookmarks.mo share/locale/nn/LC_MESSAGES/kio_finger.mo share/locale/nn/LC_MESSAGES/kio_fish.mo share/locale/nn/LC_MESSAGES/kio_floppy.mo @@ -242,11 +241,12 @@ share/locale/nn/LC_MESSAGES/kio_jabberdisco.mo share/locale/nn/LC_MESSAGES/kio_ldap.mo share/locale/nn/LC_MESSAGES/kio_man.mo share/locale/nn/LC_MESSAGES/kio_mbox.mo +share/locale/nn/LC_MESSAGES/kio_nepomuksearch.mo share/locale/nn/LC_MESSAGES/kio_nfs.mo share/locale/nn/LC_MESSAGES/kio_nntp.mo +share/locale/nn/LC_MESSAGES/kio_perldoc.mo share/locale/nn/LC_MESSAGES/kio_pop3.mo share/locale/nn/LC_MESSAGES/kio_remote.mo -share/locale/nn/LC_MESSAGES/kio_settings.mo share/locale/nn/LC_MESSAGES/kio_sftp.mo share/locale/nn/LC_MESSAGES/kio_sieve.mo share/locale/nn/LC_MESSAGES/kio_smb.mo @@ -306,10 +306,10 @@ share/locale/nn/LC_MESSAGES/kopete.mo share/locale/nn/LC_MESSAGES/korganizer.mo share/locale/nn/LC_MESSAGES/korn.mo share/locale/nn/LC_MESSAGES/kpackage.mo +share/locale/nn/LC_MESSAGES/kpartloader.mo share/locale/nn/LC_MESSAGES/kpartsaver.mo share/locale/nn/LC_MESSAGES/kpasswdserver.mo share/locale/nn/LC_MESSAGES/kpat.mo -share/locale/nn/LC_MESSAGES/kpercentage.mo share/locale/nn/LC_MESSAGES/kpilot.mo share/locale/nn/LC_MESSAGES/kppp.mo share/locale/nn/LC_MESSAGES/kppplogview.mo @@ -333,20 +333,12 @@ share/locale/nn/LC_MESSAGES/kreversi.mo share/locale/nn/LC_MESSAGES/krfb.mo share/locale/nn/LC_MESSAGES/kruler.mo share/locale/nn/LC_MESSAGES/krunner.mo -share/locale/nn/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/nn/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/nn/LC_MESSAGES/krunner_contacts.mo -share/locale/nn/LC_MESSAGES/krunner_converterrunner.mo -share/locale/nn/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/nn/LC_MESSAGES/krunner_sessions.mo -share/locale/nn/LC_MESSAGES/krunner_shellrunner.mo -share/locale/nn/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/nn/LC_MESSAGES/krunner_xesam.mo share/locale/nn/LC_MESSAGES/ksame.mo share/locale/nn/LC_MESSAGES/ksaneplugin.mo share/locale/nn/LC_MESSAGES/ksayit.mo share/locale/nn/LC_MESSAGES/kscd.mo share/locale/nn/LC_MESSAGES/kscreensaver.mo +share/locale/nn/LC_MESSAGES/ksendemail.mo share/locale/nn/LC_MESSAGES/kshisen.mo share/locale/nn/LC_MESSAGES/kshorturifilter.mo share/locale/nn/LC_MESSAGES/ksirk.mo @@ -363,6 +355,7 @@ share/locale/nn/LC_MESSAGES/kstyle_keramik_config.mo share/locale/nn/LC_MESSAGES/kstyle_phase_config.mo share/locale/nn/LC_MESSAGES/ksudoku.mo share/locale/nn/LC_MESSAGES/ksysguard.mo +share/locale/nn/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/nn/LC_MESSAGES/ksystemlog.mo share/locale/nn/LC_MESSAGES/ksystraycmd.mo share/locale/nn/LC_MESSAGES/ksysv.mo @@ -372,7 +365,6 @@ share/locale/nn/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/nn/LC_MESSAGES/kthememanager.mo share/locale/nn/LC_MESSAGES/ktimer.mo share/locale/nn/LC_MESSAGES/ktimetracker.mo -share/locale/nn/LC_MESSAGES/ktnef.mo share/locale/nn/LC_MESSAGES/ktouch.mo share/locale/nn/LC_MESSAGES/ktraderclient.mo share/locale/nn/LC_MESSAGES/kttsd.mo @@ -384,6 +376,7 @@ share/locale/nn/LC_MESSAGES/kuiserver.mo share/locale/nn/LC_MESSAGES/kuiviewer.mo share/locale/nn/LC_MESSAGES/kurifilter.mo share/locale/nn/LC_MESSAGES/kuser.mo +share/locale/nn/LC_MESSAGES/kwalletd.mo share/locale/nn/LC_MESSAGES/kwalletmanager.mo share/locale/nn/LC_MESSAGES/kwatchgnupg.mo share/locale/nn/LC_MESSAGES/kweather.mo @@ -430,11 +423,14 @@ share/locale/nn/LC_MESSAGES/libmailtransport.mo share/locale/nn/LC_MESSAGES/liboktetacore.mo share/locale/nn/LC_MESSAGES/libphonon.mo share/locale/nn/LC_MESSAGES/libplasma.mo +share/locale/nn/LC_MESSAGES/libplasmaclock.mo share/locale/nn/LC_MESSAGES/libtaskmanager.mo share/locale/nn/LC_MESSAGES/lokalize.mo share/locale/nn/LC_MESSAGES/lskat.mo share/locale/nn/LC_MESSAGES/marble.mo +share/locale/nn/LC_MESSAGES/marble_qt.mo share/locale/nn/LC_MESSAGES/nepomuk.mo +share/locale/nn/LC_MESSAGES/nepomuksearch.mo share/locale/nn/LC_MESSAGES/nsplugin.mo share/locale/nn/LC_MESSAGES/okteta.mo share/locale/nn/LC_MESSAGES/oktetapart.mo @@ -444,6 +440,7 @@ share/locale/nn/LC_MESSAGES/okular_comicbook.mo share/locale/nn/LC_MESSAGES/okular_djvu.mo share/locale/nn/LC_MESSAGES/okular_dvi.mo share/locale/nn/LC_MESSAGES/okular_epub.mo +share/locale/nn/LC_MESSAGES/okular_fax.mo share/locale/nn/LC_MESSAGES/okular_fictionbook.mo share/locale/nn/LC_MESSAGES/okular_ghostview.mo share/locale/nn/LC_MESSAGES/okular_kimgio.mo @@ -456,10 +453,15 @@ share/locale/nn/LC_MESSAGES/parley.mo share/locale/nn/LC_MESSAGES/phonon-xine.mo share/locale/nn/LC_MESSAGES/phonon_gstreamer.mo share/locale/nn/LC_MESSAGES/phonon_kde.mo +share/locale/nn/LC_MESSAGES/plasma-overlay.mo +share/locale/nn/LC_MESSAGES/plasma-shells-common.mo share/locale/nn/LC_MESSAGES/plasma.mo share/locale/nn/LC_MESSAGES/plasma_applet_battery.mo +share/locale/nn/LC_MESSAGES/plasma_applet_bball.mo share/locale/nn/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/nn/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/nn/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/nn/LC_MESSAGES/plasma_applet_charselect.mo share/locale/nn/LC_MESSAGES/plasma_applet_clock.mo share/locale/nn/LC_MESSAGES/plasma_applet_comic.mo share/locale/nn/LC_MESSAGES/plasma_applet_desktop.mo @@ -472,25 +474,59 @@ share/locale/nn/LC_MESSAGES/plasma_applet_folderview.mo share/locale/nn/LC_MESSAGES/plasma_applet_frame.mo share/locale/nn/LC_MESSAGES/plasma_applet_fuzzy_clock.mo share/locale/nn/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/nn/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/nn/LC_MESSAGES/plasma_applet_katesession.mo share/locale/nn/LC_MESSAGES/plasma_applet_kget.mo -share/locale/nn/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/nn/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/nn/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/nn/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/nn/LC_MESSAGES/plasma_applet_life.mo share/locale/nn/LC_MESSAGES/plasma_applet_luna.mo +share/locale/nn/LC_MESSAGES/plasma_applet_news.mo share/locale/nn/LC_MESSAGES/plasma_applet_notes.mo share/locale/nn/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/nn/LC_MESSAGES/plasma_applet_pager.mo share/locale/nn/LC_MESSAGES/plasma_applet_panel.mo +share/locale/nn/LC_MESSAGES/plasma_applet_paste.mo +share/locale/nn/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/nn/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/nn/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/nn/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/nn/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/nn/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/nn/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/nn/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/nn/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/nn/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/nn/LC_MESSAGES/plasma_applet_timer.mo share/locale/nn/LC_MESSAGES/plasma_applet_trash.mo share/locale/nn/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/nn/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/nn/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/nn/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/nn/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/nn/LC_MESSAGES/plasma_engine_dict.mo +share/locale/nn/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/nn/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/nn/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/nn/LC_MESSAGES/plasma_engine_rss.mo +share/locale/nn/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/nn/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/nn/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/nn/LC_MESSAGES/plasma_runner_locations.mo +share/locale/nn/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/nn/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/nn/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/nn/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/nn/LC_MESSAGES/plasma_runner_shell.mo +share/locale/nn/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/nn/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/nn/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/nn/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/nn/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/nn/LC_MESSAGES/plasmaengineexplorer.mo share/locale/nn/LC_MESSAGES/plasmapkg.mo share/locale/nn/LC_MESSAGES/plasmoidviewer.mo +share/locale/nn/LC_MESSAGES/powerdevil.mo share/locale/nn/LC_MESSAGES/printer-applet.mo share/locale/nn/LC_MESSAGES/processcore.mo share/locale/nn/LC_MESSAGES/processui.mo @@ -502,10 +538,12 @@ share/locale/nn/LC_MESSAGES/solidcontrol.mo share/locale/nn/LC_MESSAGES/soliduiserver.mo share/locale/nn/LC_MESSAGES/spy.mo share/locale/nn/LC_MESSAGES/step.mo +share/locale/nn/LC_MESSAGES/step_qt.mo share/locale/nn/LC_MESSAGES/strigila_diff.mo share/locale/nn/LC_MESSAGES/superkaramba.mo share/locale/nn/LC_MESSAGES/svgpart.mo share/locale/nn/LC_MESSAGES/sweeper.mo +share/locale/nn/LC_MESSAGES/system-config-printer-kde.mo share/locale/nn/LC_MESSAGES/systemsettings.mo share/locale/nn/LC_MESSAGES/timezones4.mo share/locale/nn/LC_MESSAGES/umbrello.mo @@ -517,13 +555,11 @@ share/locale/nn/entry.desktop @dirrm share/locale/nn/LC_SCRIPTS/kdelibs4 @dirrm share/locale/nn/LC_SCRIPTS @dirrm share/doc/HTML/nn/kollision -@dirrm share/doc/HTML/nn/kinfocenter/usb -@dirrm share/doc/HTML/nn/kinfocenter -@dirrm share/doc/HTML/nn/khelpcenter @dirrm share/doc/HTML/nn/kcontrol/bell @dirrm share/doc/HTML/nn/kcontrol @dirrm share/doc/HTML/nn/kaddressbook -@dirrm share/doc/HTML/nn @dirrm share/apps/kvtml/nn @dirrm share/apps/kvtml @dirrm share/apps/khangman +@dirrmtry man/nn/man1 +@dirrmtry man/nn diff --git a/misc/kde4-l10n-pa/distinfo b/misc/kde4-l10n-pa/distinfo index f42db3fc8a4c..4ed4fc32410e 100644 --- a/misc/kde4-l10n-pa/distinfo +++ b/misc/kde4-l10n-pa/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-pa-4.1.4.tar.bz2) = c40c3a9d61439b62c0dad8e5f994623b -SHA256 (KDE/kde-l10n/kde-l10n-pa-4.1.4.tar.bz2) = 2916adafc0d8a24a8cde00d5354a1030d2cb85b998d863d31d5e456d46fce6d5 -SIZE (KDE/kde-l10n/kde-l10n-pa-4.1.4.tar.bz2) = 1343577 +MD5 (KDE/kde-l10n/kde-l10n-pa-4.2.0.tar.bz2) = a8dded180d298489861d17a761df51f8 +SHA256 (KDE/kde-l10n/kde-l10n-pa-4.2.0.tar.bz2) = 04eeaa6f63ce73ef400e3ab4f1ba5c8203011868e312b9e80c931a04da974c49 +SIZE (KDE/kde-l10n/kde-l10n-pa-4.2.0.tar.bz2) = 1436625 diff --git a/misc/kde4-l10n-pa/pkg-plist b/misc/kde4-l10n-pa/pkg-plist index 3a2c55445c22..6bf613210693 100644 --- a/misc/kde4-l10n-pa/pkg-plist +++ b/misc/kde4-l10n-pa/pkg-plist @@ -1,9 +1,12 @@ +share/locale/pa/LC_MESSAGES/akonaditray.mo +share/locale/pa/LC_MESSAGES/akregator.mo share/locale/pa/LC_MESSAGES/amor.mo share/locale/pa/LC_MESSAGES/ark.mo share/locale/pa/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pa/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pa/LC_MESSAGES/audiorename_plugin.mo share/locale/pa/LC_MESSAGES/blinken.mo +share/locale/pa/LC_MESSAGES/bomber.mo share/locale/pa/LC_MESSAGES/bovo.mo share/locale/pa/LC_MESSAGES/cervisia.mo share/locale/pa/LC_MESSAGES/cvsservice.mo @@ -18,20 +21,25 @@ share/locale/pa/LC_MESSAGES/imagerename_plugin.mo share/locale/pa/LC_MESSAGES/joystick.mo share/locale/pa/LC_MESSAGES/juk.mo share/locale/pa/LC_MESSAGES/kabc.mo +share/locale/pa/LC_MESSAGES/kabc_akonadi.mo share/locale/pa/LC_MESSAGES/kabc_dir.mo share/locale/pa/LC_MESSAGES/kabc_file.mo share/locale/pa/LC_MESSAGES/kabc_ldapkio.mo share/locale/pa/LC_MESSAGES/kabc_net.mo share/locale/pa/LC_MESSAGES/kabc_slox.mo +share/locale/pa/LC_MESSAGES/kabcakonadi.mo share/locale/pa/LC_MESSAGES/kabcclient.mo share/locale/pa/LC_MESSAGES/kabcformat_binary.mo share/locale/pa/LC_MESSAGES/kaccess.mo share/locale/pa/LC_MESSAGES/kaddressbook.mo share/locale/pa/LC_MESSAGES/kalarm.mo share/locale/pa/LC_MESSAGES/kalzium.mo +share/locale/pa/LC_MESSAGES/kalzium_qt.mo share/locale/pa/LC_MESSAGES/kanagram.mo share/locale/pa/LC_MESSAGES/kappfinder.mo +share/locale/pa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pa/LC_MESSAGES/kate.mo +share/locale/pa/LC_MESSAGES/katebuild-plugin.mo share/locale/pa/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pa/LC_MESSAGES/katefiletemplates.mo @@ -42,7 +50,6 @@ share/locale/pa/LC_MESSAGES/kateinsertcommand.mo share/locale/pa/LC_MESSAGES/katekjswrapper.mo share/locale/pa/LC_MESSAGES/katekonsoleplugin.mo share/locale/pa/LC_MESSAGES/katemailfilesplugin.mo -share/locale/pa/LC_MESSAGES/katemake.mo share/locale/pa/LC_MESSAGES/kateopenheader.mo share/locale/pa/LC_MESSAGES/katepart4.mo share/locale/pa/LC_MESSAGES/katepybrowse.mo @@ -64,13 +71,19 @@ share/locale/pa/LC_MESSAGES/kcachegrind.mo share/locale/pa/LC_MESSAGES/kcalc.mo share/locale/pa/LC_MESSAGES/kcertpart.mo share/locale/pa/LC_MESSAGES/kcharselect.mo +share/locale/pa/LC_MESSAGES/kcm_akonadi.mo +share/locale/pa/LC_MESSAGES/kcm_autostart.mo +share/locale/pa/LC_MESSAGES/kcm_desktopthemedetails.mo +share/locale/pa/LC_MESSAGES/kcm_emoticons.mo share/locale/pa/LC_MESSAGES/kcm_krfb.mo share/locale/pa/LC_MESSAGES/kcm_kwindesktop.mo share/locale/pa/LC_MESSAGES/kcm_memory.mo share/locale/pa/LC_MESSAGES/kcm_partition.mo +share/locale/pa/LC_MESSAGES/kcm_pci.mo share/locale/pa/LC_MESSAGES/kcm_phonon.mo share/locale/pa/LC_MESSAGES/kcm_phononxine.mo share/locale/pa/LC_MESSAGES/kcm_solid.mo +share/locale/pa/LC_MESSAGES/kcm_standard_actions.mo share/locale/pa/LC_MESSAGES/kcmaccess.mo share/locale/pa/LC_MESSAGES/kcmaudiocd.mo share/locale/pa/LC_MESSAGES/kcmbackground.mo @@ -119,7 +132,6 @@ share/locale/pa/LC_MESSAGES/kcmsmartcard.mo share/locale/pa/LC_MESSAGES/kcmsmserver.mo share/locale/pa/LC_MESSAGES/kcmsolidproc.mo share/locale/pa/LC_MESSAGES/kcmstyle.mo -share/locale/pa/LC_MESSAGES/kcmtaskbar.mo share/locale/pa/LC_MESSAGES/kcmusb.mo share/locale/pa/LC_MESSAGES/kcmview1394.mo share/locale/pa/LC_MESSAGES/kcmxinerama.mo @@ -127,7 +139,9 @@ share/locale/pa/LC_MESSAGES/kcolorchooser.mo share/locale/pa/LC_MESSAGES/kcron.mo share/locale/pa/LC_MESSAGES/kdat.mo share/locale/pa/LC_MESSAGES/kde-menu.mo +share/locale/pa/LC_MESSAGES/kdeasciiquarium.mo share/locale/pa/LC_MESSAGES/kdebugdialog.mo +share/locale/pa/LC_MESSAGES/kded_phononserver.mo share/locale/pa/LC_MESSAGES/kdelibs4.mo share/locale/pa/LC_MESSAGES/kdelibs_colors4.mo share/locale/pa/LC_MESSAGES/kdepasswd.mo @@ -175,19 +189,23 @@ share/locale/pa/LC_MESSAGES/kget.mo share/locale/pa/LC_MESSAGES/kgoldrunner.mo share/locale/pa/LC_MESSAGES/kgpg.mo share/locale/pa/LC_MESSAGES/kgreet_classic.mo +share/locale/pa/LC_MESSAGES/kgreet_generic.mo share/locale/pa/LC_MESSAGES/kgreet_winbind.mo share/locale/pa/LC_MESSAGES/khangman.mo share/locale/pa/LC_MESSAGES/khelpcenter.mo share/locale/pa/LC_MESSAGES/khotkeys.mo share/locale/pa/LC_MESSAGES/khotnewstuff.mo share/locale/pa/LC_MESSAGES/khtmlkttsd.mo +share/locale/pa/LC_MESSAGES/kiconfinder.mo share/locale/pa/LC_MESSAGES/kig.mo share/locale/pa/LC_MESSAGES/kimagemapeditor.mo share/locale/pa/LC_MESSAGES/kinetd.mo share/locale/pa/LC_MESSAGES/kinfocenter.mo share/locale/pa/LC_MESSAGES/kio4.mo +share/locale/pa/LC_MESSAGES/kio_applications.mo share/locale/pa/LC_MESSAGES/kio_archive.mo share/locale/pa/LC_MESSAGES/kio_audiocd.mo +share/locale/pa/LC_MESSAGES/kio_bookmarks.mo share/locale/pa/LC_MESSAGES/kio_finger.mo share/locale/pa/LC_MESSAGES/kio_fish.mo share/locale/pa/LC_MESSAGES/kio_floppy.mo @@ -198,11 +216,12 @@ share/locale/pa/LC_MESSAGES/kio_jabberdisco.mo share/locale/pa/LC_MESSAGES/kio_ldap.mo share/locale/pa/LC_MESSAGES/kio_man.mo share/locale/pa/LC_MESSAGES/kio_mbox.mo +share/locale/pa/LC_MESSAGES/kio_nepomuksearch.mo share/locale/pa/LC_MESSAGES/kio_nfs.mo share/locale/pa/LC_MESSAGES/kio_nntp.mo +share/locale/pa/LC_MESSAGES/kio_perldoc.mo share/locale/pa/LC_MESSAGES/kio_pop3.mo share/locale/pa/LC_MESSAGES/kio_remote.mo -share/locale/pa/LC_MESSAGES/kio_settings.mo share/locale/pa/LC_MESSAGES/kio_sftp.mo share/locale/pa/LC_MESSAGES/kio_sieve.mo share/locale/pa/LC_MESSAGES/kio_smb.mo @@ -253,10 +272,10 @@ share/locale/pa/LC_MESSAGES/kopete.mo share/locale/pa/LC_MESSAGES/korganizer.mo share/locale/pa/LC_MESSAGES/korn.mo share/locale/pa/LC_MESSAGES/kpackage.mo +share/locale/pa/LC_MESSAGES/kpartloader.mo share/locale/pa/LC_MESSAGES/kpartsaver.mo share/locale/pa/LC_MESSAGES/kpasswdserver.mo share/locale/pa/LC_MESSAGES/kpat.mo -share/locale/pa/LC_MESSAGES/kpercentage.mo share/locale/pa/LC_MESSAGES/kpilot.mo share/locale/pa/LC_MESSAGES/kppp.mo share/locale/pa/LC_MESSAGES/kppplogview.mo @@ -266,6 +285,7 @@ share/locale/pa/LC_MESSAGES/krdb.mo share/locale/pa/LC_MESSAGES/krdc.mo share/locale/pa/LC_MESSAGES/kreadconfig.mo share/locale/pa/LC_MESSAGES/kres_birthday.mo +share/locale/pa/LC_MESSAGES/kres_blog.mo share/locale/pa/LC_MESSAGES/kres_bugzilla.mo share/locale/pa/LC_MESSAGES/kres_featureplan.mo share/locale/pa/LC_MESSAGES/kres_kolab.mo @@ -275,17 +295,11 @@ share/locale/pa/LC_MESSAGES/kres_xmlrpc.mo share/locale/pa/LC_MESSAGES/krfb.mo share/locale/pa/LC_MESSAGES/kruler.mo share/locale/pa/LC_MESSAGES/krunner.mo -share/locale/pa/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/pa/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/pa/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/pa/LC_MESSAGES/krunner_sessions.mo -share/locale/pa/LC_MESSAGES/krunner_shellrunner.mo -share/locale/pa/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/pa/LC_MESSAGES/krunner_xesam.mo share/locale/pa/LC_MESSAGES/ksame.mo share/locale/pa/LC_MESSAGES/ksaneplugin.mo share/locale/pa/LC_MESSAGES/kscd.mo share/locale/pa/LC_MESSAGES/kscreensaver.mo +share/locale/pa/LC_MESSAGES/ksendemail.mo share/locale/pa/LC_MESSAGES/kshisen.mo share/locale/pa/LC_MESSAGES/kshorturifilter.mo share/locale/pa/LC_MESSAGES/ksmserver.mo @@ -300,6 +314,7 @@ share/locale/pa/LC_MESSAGES/kstyle_keramik_config.mo share/locale/pa/LC_MESSAGES/kstyle_phase_config.mo share/locale/pa/LC_MESSAGES/ksudoku.mo share/locale/pa/LC_MESSAGES/ksysguard.mo +share/locale/pa/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/pa/LC_MESSAGES/ksystemlog.mo share/locale/pa/LC_MESSAGES/ksystraycmd.mo share/locale/pa/LC_MESSAGES/ksysv.mo @@ -308,7 +323,6 @@ share/locale/pa/LC_MESSAGES/ktexteditor_plugins.mo share/locale/pa/LC_MESSAGES/kthememanager.mo share/locale/pa/LC_MESSAGES/ktimer.mo share/locale/pa/LC_MESSAGES/ktimetracker.mo -share/locale/pa/LC_MESSAGES/ktnef.mo share/locale/pa/LC_MESSAGES/ktouch.mo share/locale/pa/LC_MESSAGES/ktraderclient.mo share/locale/pa/LC_MESSAGES/kttsd.mo @@ -319,6 +333,7 @@ share/locale/pa/LC_MESSAGES/kuiserver.mo share/locale/pa/LC_MESSAGES/kuiviewer.mo share/locale/pa/LC_MESSAGES/kurifilter.mo share/locale/pa/LC_MESSAGES/kuser.mo +share/locale/pa/LC_MESSAGES/kwalletd.mo share/locale/pa/LC_MESSAGES/kwalletmanager.mo share/locale/pa/LC_MESSAGES/kwatchgnupg.mo share/locale/pa/LC_MESSAGES/kweather.mo @@ -332,6 +347,9 @@ share/locale/pa/LC_MESSAGES/kwordquiz.mo share/locale/pa/LC_MESSAGES/kwrite.mo share/locale/pa/LC_MESSAGES/kwriteconfig.mo share/locale/pa/LC_MESSAGES/kxkb.mo +share/locale/pa/LC_MESSAGES/lancelot.mo +share/locale/pa/LC_MESSAGES/libakonadi.mo +share/locale/pa/LC_MESSAGES/libkblog.mo share/locale/pa/LC_MESSAGES/libkcal.mo share/locale/pa/LC_MESSAGES/libkcddb.mo share/locale/pa/LC_MESSAGES/libkcompactdisc.mo @@ -346,6 +364,7 @@ share/locale/pa/LC_MESSAGES/libkmime.mo share/locale/pa/LC_MESSAGES/libkonq.mo share/locale/pa/LC_MESSAGES/libkpgp.mo share/locale/pa/LC_MESSAGES/libkpimidentities.mo +share/locale/pa/LC_MESSAGES/libkpimutils.mo share/locale/pa/LC_MESSAGES/libkresources.mo share/locale/pa/LC_MESSAGES/libksane.mo share/locale/pa/LC_MESSAGES/libkscreensaver.mo @@ -353,13 +372,18 @@ share/locale/pa/LC_MESSAGES/libksieve.mo share/locale/pa/LC_MESSAGES/libktnef.mo share/locale/pa/LC_MESSAGES/libkworkspace.mo share/locale/pa/LC_MESSAGES/libkxmlrpcclient.mo +share/locale/pa/LC_MESSAGES/libmailtransport.mo +share/locale/pa/LC_MESSAGES/liboktetacore.mo share/locale/pa/LC_MESSAGES/libphonon.mo share/locale/pa/LC_MESSAGES/libplasma.mo +share/locale/pa/LC_MESSAGES/libplasmaclock.mo share/locale/pa/LC_MESSAGES/libtaskmanager.mo share/locale/pa/LC_MESSAGES/lokalize.mo share/locale/pa/LC_MESSAGES/lskat.mo share/locale/pa/LC_MESSAGES/marble.mo +share/locale/pa/LC_MESSAGES/marble_qt.mo share/locale/pa/LC_MESSAGES/nepomuk.mo +share/locale/pa/LC_MESSAGES/nepomuksearch.mo share/locale/pa/LC_MESSAGES/nsplugin.mo share/locale/pa/LC_MESSAGES/oktetapart.mo share/locale/pa/LC_MESSAGES/okular.mo @@ -368,6 +392,7 @@ share/locale/pa/LC_MESSAGES/okular_comicbook.mo share/locale/pa/LC_MESSAGES/okular_djvu.mo share/locale/pa/LC_MESSAGES/okular_dvi.mo share/locale/pa/LC_MESSAGES/okular_epub.mo +share/locale/pa/LC_MESSAGES/okular_fax.mo share/locale/pa/LC_MESSAGES/okular_fictionbook.mo share/locale/pa/LC_MESSAGES/okular_ghostview.mo share/locale/pa/LC_MESSAGES/okular_kimgio.mo @@ -380,32 +405,82 @@ share/locale/pa/LC_MESSAGES/parley.mo share/locale/pa/LC_MESSAGES/phonon-xine.mo share/locale/pa/LC_MESSAGES/phonon_gstreamer.mo share/locale/pa/LC_MESSAGES/phonon_kde.mo +share/locale/pa/LC_MESSAGES/plasma-overlay.mo +share/locale/pa/LC_MESSAGES/plasma-shells-common.mo share/locale/pa/LC_MESSAGES/plasma.mo share/locale/pa/LC_MESSAGES/plasma_applet_battery.mo +share/locale/pa/LC_MESSAGES/plasma_applet_bball.mo +share/locale/pa/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/pa/LC_MESSAGES/plasma_applet_bluemarble.mo +share/locale/pa/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/pa/LC_MESSAGES/plasma_applet_charselect.mo share/locale/pa/LC_MESSAGES/plasma_applet_clock.mo +share/locale/pa/LC_MESSAGES/plasma_applet_comic.mo share/locale/pa/LC_MESSAGES/plasma_applet_desktop.mo share/locale/pa/LC_MESSAGES/plasma_applet_devicenotifier.mo +share/locale/pa/LC_MESSAGES/plasma_applet_dict.mo share/locale/pa/LC_MESSAGES/plasma_applet_dig_clock.mo +share/locale/pa/LC_MESSAGES/plasma_applet_fifteenPuzzle.mo +share/locale/pa/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/pa/LC_MESSAGES/plasma_applet_folderview.mo share/locale/pa/LC_MESSAGES/plasma_applet_frame.mo +share/locale/pa/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/pa/LC_MESSAGES/plasma_applet_incomingmsg.mo +share/locale/pa/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/pa/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/pa/LC_MESSAGES/plasma_applet_katesession.mo share/locale/pa/LC_MESSAGES/plasma_applet_kget.mo -share/locale/pa/LC_MESSAGES/plasma_applet_knewsticker.mo +share/locale/pa/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/pa/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/pa/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/pa/LC_MESSAGES/plasma_applet_life.mo share/locale/pa/LC_MESSAGES/plasma_applet_luna.mo +share/locale/pa/LC_MESSAGES/plasma_applet_news.mo share/locale/pa/LC_MESSAGES/plasma_applet_notes.mo share/locale/pa/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/pa/LC_MESSAGES/plasma_applet_pager.mo share/locale/pa/LC_MESSAGES/plasma_applet_panel.mo +share/locale/pa/LC_MESSAGES/plasma_applet_paste.mo +share/locale/pa/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/pa/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/pa/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/pa/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/pa/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/pa/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/pa/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/pa/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/pa/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/pa/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/pa/LC_MESSAGES/plasma_applet_timer.mo share/locale/pa/LC_MESSAGES/plasma_applet_trash.mo share/locale/pa/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/pa/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/pa/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/pa/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/pa/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/pa/LC_MESSAGES/plasma_engine_dict.mo +share/locale/pa/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/pa/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/pa/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/pa/LC_MESSAGES/plasma_engine_rss.mo +share/locale/pa/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/pa/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/pa/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/pa/LC_MESSAGES/plasma_runner_locations.mo +share/locale/pa/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/pa/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/pa/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/pa/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/pa/LC_MESSAGES/plasma_runner_shell.mo +share/locale/pa/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/pa/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/pa/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/pa/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/pa/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/pa/LC_MESSAGES/plasmaengineexplorer.mo share/locale/pa/LC_MESSAGES/plasmapkg.mo share/locale/pa/LC_MESSAGES/plasmoidviewer.mo +share/locale/pa/LC_MESSAGES/powerdevil.mo +share/locale/pa/LC_MESSAGES/printer-applet.mo share/locale/pa/LC_MESSAGES/processcore.mo share/locale/pa/LC_MESSAGES/processui.mo share/locale/pa/LC_MESSAGES/solid-bluetooth.mo @@ -419,6 +494,7 @@ share/locale/pa/LC_MESSAGES/strigila_diff.mo share/locale/pa/LC_MESSAGES/superkaramba.mo share/locale/pa/LC_MESSAGES/svgpart.mo share/locale/pa/LC_MESSAGES/sweeper.mo +share/locale/pa/LC_MESSAGES/system-config-printer-kde.mo share/locale/pa/LC_MESSAGES/systemsettings.mo share/locale/pa/LC_MESSAGES/timezones4.mo share/locale/pa/LC_MESSAGES/useraccount.mo diff --git a/misc/kde4-l10n-ro/Makefile b/misc/kde4-l10n-ro/Makefile index 79f1d7e5ae2c..65ce28d3c802 100644 --- a/misc/kde4-l10n-ro/Makefile +++ b/misc/kde4-l10n-ro/Makefile @@ -1,29 +1,21 @@ -# New ports collection makefile for: kde3-i18n-ro -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> +# New ports collection makefile for: misc/kde4-l10n-ro +# Date created: 2009-01-25 +# Whom: Max Brazhnikov <makc@FreeBSD.org> # # $FreeBSD$ # -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= ro- -DIST_SUBDIR= KDE +PORTNAME= kde-l10n +PORTVERSION= ${KDE4_VERSION} +CATEGORIES= misc kde MAINTAINER= kde@FreeBSD.org -COMMENT= Romanian messages and documentation for KDE3 +COMMENT= Romanian messages and documentation for KDE4 -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext +KDE4_L10N= ro -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" +post-extract: + ${MKDIR} ${WRKSRC}/build +.include "${.CURDIR}/../../misc/kde4-l10n/files/bsd.l10n.mk" .include <bsd.port.mk> diff --git a/misc/kde4-l10n-ro/distinfo b/misc/kde4-l10n-ro/distinfo index 4a848b5a63fb..3ddcd647bea2 100644 --- a/misc/kde4-l10n-ro/distinfo +++ b/misc/kde4-l10n-ro/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-i18n/kde-i18n-ro-3.5.10.tar.bz2) = 864955c215254a4cb2675c7c1631a8c8 -SHA256 (KDE/kde-i18n/kde-i18n-ro-3.5.10.tar.bz2) = 7a03e97d2eb4494400e3255e8b74e34aac40d1388d440d74a09682a390d9b182 -SIZE (KDE/kde-i18n/kde-i18n-ro-3.5.10.tar.bz2) = 3189712 +MD5 (KDE/kde-l10n/kde-l10n-ro-4.2.0.tar.bz2) = 50df8202c9f2e042eca28b8c8da10f2f +SHA256 (KDE/kde-l10n/kde-l10n-ro-4.2.0.tar.bz2) = c1329786d900fcae4697cb7e9f9bb0ba6f22cee91abac3ef132993305ca5221b +SIZE (KDE/kde-l10n/kde-l10n-ro-4.2.0.tar.bz2) = 3053356 diff --git a/misc/kde4-l10n-ro/pkg-descr b/misc/kde4-l10n-ro/pkg-descr index 3354ca873ecc..3073b1096b79 100644 --- a/misc/kde4-l10n-ro/pkg-descr +++ b/misc/kde4-l10n-ro/pkg-descr @@ -1,3 +1,3 @@ -Localized messages and documentation for KDE3. +Localized messages and documentation for KDE4. WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-ro/pkg-plist b/misc/kde4-l10n-ro/pkg-plist index d5524e5ec494..7587dddd9346 100644 --- a/misc/kde4-l10n-ro/pkg-plist +++ b/misc/kde4-l10n-ro/pkg-plist @@ -1,3 +1,4 @@ +share/apps/ktuberling/sounds/ro.soundtheme share/apps/ktuberling/sounds/ro/ceas.wav share/apps/ktuberling/sounds/ro/cercel.wav share/apps/ktuberling/sounds/ro/colier.wav @@ -19,66 +20,10 @@ share/apps/ktuberling/sounds/ro/pinguin.wav share/apps/ktuberling/sounds/ro/sprinceana.wav share/apps/ktuberling/sounds/ro/tigara.wav share/apps/ktuberling/sounds/ro/ureche.wav -share/doc/HTML/ro/common/1.png -share/doc/HTML/ro/common/10.png -share/doc/HTML/ro/common/2.png -share/doc/HTML/ro/common/3.png -share/doc/HTML/ro/common/4.png -share/doc/HTML/ro/common/5.png -share/doc/HTML/ro/common/6.png -share/doc/HTML/ro/common/7.png -share/doc/HTML/ro/common/8.png -share/doc/HTML/ro/common/9.png -share/doc/HTML/ro/common/appheader.html -share/doc/HTML/ro/common/artistic-license.html -share/doc/HTML/ro/common/bottom-left.png -share/doc/HTML/ro/common/bottom-middle.png -share/doc/HTML/ro/common/bottom-right.png -share/doc/HTML/ro/common/bottom1.png -share/doc/HTML/ro/common/bottom2.png -share/doc/HTML/ro/common/bsd-license.html -share/doc/HTML/ro/common/docheadergears.png -share/doc/HTML/ro/common/doctop1.png -share/doc/HTML/ro/common/doctop1a.png -share/doc/HTML/ro/common/doctop1b.png -share/doc/HTML/ro/common/doctop2.png -share/doc/HTML/ro/common/doxygen.css -share/doc/HTML/ro/common/favicon.ico -share/doc/HTML/ro/common/fdl-license -share/doc/HTML/ro/common/fdl-license.html -share/doc/HTML/ro/common/fdl-notice.html -share/doc/HTML/ro/common/fdl-translated.html -share/doc/HTML/ro/common/footer.html -share/doc/HTML/ro/common/gpl-license -share/doc/HTML/ro/common/gpl-license.html -share/doc/HTML/ro/common/gpl-translated.html -share/doc/HTML/ro/common/grad.png -share/doc/HTML/ro/common/header.html -share/doc/HTML/ro/common/headerbg.png -share/doc/HTML/ro/common/kde-common.css -share/doc/HTML/ro/common/kde-default.css -share/doc/HTML/ro/common/kde-localised.css -share/doc/HTML/ro/common/kde-localised.css.template -share/doc/HTML/ro/common/kde-web.css -share/doc/HTML/ro/common/kde_gear_64.png -share/doc/HTML/ro/common/kde_logo.png -share/doc/HTML/ro/common/kde_logo_bg.png -share/doc/HTML/ro/common/kmenu.png -share/doc/HTML/ro/common/lgpl-license -share/doc/HTML/ro/common/lgpl-license.html -share/doc/HTML/ro/common/lgpl-translated.html -share/doc/HTML/ro/common/logotp3.png -share/doc/HTML/ro/common/mainfooter.html -share/doc/HTML/ro/common/mainheader.html -share/doc/HTML/ro/common/qpl-license.html -share/doc/HTML/ro/common/shadow.png -share/doc/HTML/ro/common/top-left.png -share/doc/HTML/ro/common/top-middle.png -share/doc/HTML/ro/common/top-right-konqueror.png -share/doc/HTML/ro/common/web-docbottom.png -share/doc/HTML/ro/common/web-doctop.png -share/doc/HTML/ro/common/x11-license.html -share/doc/HTML/ro/common/xml.dcl +share/apps/kvtml/ro/animals.kvtml +share/apps/kvtml/ro/easy.kvtml +share/apps/kvtml/ro/hard.kvtml +share/apps/kvtml/ro/medium.kvtml share/doc/HTML/ro/khelpcenter/common share/doc/HTML/ro/khelpcenter/contact.docbook share/doc/HTML/ro/khelpcenter/glossary/common @@ -88,7 +33,6 @@ share/doc/HTML/ro/khelpcenter/glossary/kdeprintingglossary.docbook share/doc/HTML/ro/khelpcenter/help.docbook share/doc/HTML/ro/khelpcenter/index.cache.bz2 share/doc/HTML/ro/khelpcenter/index.docbook -share/doc/HTML/ro/khelpcenter/links.docbook share/doc/HTML/ro/khelpcenter/support.docbook share/doc/HTML/ro/khelpcenter/visualdict/common share/doc/HTML/ro/khelpcenter/visualdict/index.cache.bz2 @@ -115,15 +59,12 @@ share/doc/HTML/ro/khelpcenter/visualdict/pict8.png share/doc/HTML/ro/khelpcenter/visualdict/pict9.png share/doc/HTML/ro/khelpcenter/welcome.docbook share/doc/HTML/ro/khelpcenter/whatiskde.docbook -share/doc/HTML/ro/kinfocenter/common share/doc/HTML/ro/kinfocenter/devices/common share/doc/HTML/ro/kinfocenter/devices/index.cache.bz2 share/doc/HTML/ro/kinfocenter/devices/index.docbook share/doc/HTML/ro/kinfocenter/dma/common share/doc/HTML/ro/kinfocenter/dma/index.cache.bz2 share/doc/HTML/ro/kinfocenter/dma/index.docbook -share/doc/HTML/ro/kinfocenter/index.cache.bz2 -share/doc/HTML/ro/kinfocenter/index.docbook share/doc/HTML/ro/kinfocenter/interrupts/common share/doc/HTML/ro/kinfocenter/interrupts/index.cache.bz2 share/doc/HTML/ro/kinfocenter/interrupts/index.docbook @@ -169,140 +110,137 @@ share/doc/HTML/ro/kinfocenter/usb/index.docbook share/doc/HTML/ro/kinfocenter/xserver/common share/doc/HTML/ro/kinfocenter/xserver/index.cache.bz2 share/doc/HTML/ro/kinfocenter/xserver/index.docbook -share/doc/HTML/ro/kioslave/bzip.docbook -share/doc/HTML/ro/kioslave/bzip2.docbook -share/doc/HTML/ro/kioslave/cgi.docbook -share/doc/HTML/ro/kioslave/common -share/doc/HTML/ro/kioslave/data.docbook -share/doc/HTML/ro/kioslave/file.docbook -share/doc/HTML/ro/kioslave/finger.docbook -share/doc/HTML/ro/kioslave/fish.docbook -share/doc/HTML/ro/kioslave/floppy.docbook -share/doc/HTML/ro/kioslave/ftp.docbook -share/doc/HTML/ro/kioslave/gopher.docbook -share/doc/HTML/ro/kioslave/gzip.docbook -share/doc/HTML/ro/kioslave/help.docbook -share/doc/HTML/ro/kioslave/http.docbook -share/doc/HTML/ro/kioslave/https.docbook -share/doc/HTML/ro/kioslave/imap.docbook -share/doc/HTML/ro/kioslave/imaps.docbook -share/doc/HTML/ro/kioslave/index.cache.bz2 -share/doc/HTML/ro/kioslave/index.docbook -share/doc/HTML/ro/kioslave/info.docbook -share/doc/HTML/ro/kioslave/lan.docbook -share/doc/HTML/ro/kioslave/ldap.docbook -share/doc/HTML/ro/kioslave/mac.docbook -share/doc/HTML/ro/kioslave/mailto.docbook -share/doc/HTML/ro/kioslave/man.docbook -share/doc/HTML/ro/kioslave/mrml.docbook -share/doc/HTML/ro/kioslave/news.docbook -share/doc/HTML/ro/kioslave/nfs.docbook -share/doc/HTML/ro/kioslave/nntp.docbook -share/doc/HTML/ro/kioslave/pop3.docbook -share/doc/HTML/ro/kioslave/pop3s.docbook -share/doc/HTML/ro/kioslave/print.docbook -share/doc/HTML/ro/kioslave/rlan.docbook -share/doc/HTML/ro/kioslave/rlogin.docbook -share/doc/HTML/ro/kioslave/sftp.docbook -share/doc/HTML/ro/kioslave/smb.docbook -share/doc/HTML/ro/kioslave/smtp.docbook -share/doc/HTML/ro/kioslave/tar.docbook -share/doc/HTML/ro/kioslave/telnet.docbook -share/doc/HTML/ro/kioslave/thumbnail.docbook -share/doc/HTML/ro/kioslave/webdav.docbook -share/doc/HTML/ro/kioslave/webdavs.docbook +share/doc/HTML/ro/kioslave/kioslave/bzip.docbook +share/doc/HTML/ro/kioslave/kioslave/bzip2.docbook +share/doc/HTML/ro/kioslave/kioslave/cgi.docbook +share/doc/HTML/ro/kioslave/kioslave/common +share/doc/HTML/ro/kioslave/kioslave/data.docbook +share/doc/HTML/ro/kioslave/kioslave/file.docbook +share/doc/HTML/ro/kioslave/kioslave/finger.docbook +share/doc/HTML/ro/kioslave/kioslave/fish.docbook +share/doc/HTML/ro/kioslave/kioslave/floppy.docbook +share/doc/HTML/ro/kioslave/kioslave/ftp.docbook +share/doc/HTML/ro/kioslave/kioslave/gopher.docbook +share/doc/HTML/ro/kioslave/kioslave/gzip.docbook +share/doc/HTML/ro/kioslave/kioslave/help.docbook +share/doc/HTML/ro/kioslave/kioslave/http.docbook +share/doc/HTML/ro/kioslave/kioslave/https.docbook +share/doc/HTML/ro/kioslave/kioslave/imap.docbook +share/doc/HTML/ro/kioslave/kioslave/imaps.docbook +share/doc/HTML/ro/kioslave/kioslave/index.cache.bz2 +share/doc/HTML/ro/kioslave/kioslave/index.docbook +share/doc/HTML/ro/kioslave/kioslave/info.docbook +share/doc/HTML/ro/kioslave/kioslave/lan.docbook +share/doc/HTML/ro/kioslave/kioslave/ldap.docbook +share/doc/HTML/ro/kioslave/kioslave/mac.docbook +share/doc/HTML/ro/kioslave/kioslave/mailto.docbook +share/doc/HTML/ro/kioslave/kioslave/man.docbook +share/doc/HTML/ro/kioslave/kioslave/mrml.docbook +share/doc/HTML/ro/kioslave/kioslave/news.docbook +share/doc/HTML/ro/kioslave/kioslave/nfs.docbook +share/doc/HTML/ro/kioslave/kioslave/nntp.docbook +share/doc/HTML/ro/kioslave/kioslave/pop3.docbook +share/doc/HTML/ro/kioslave/kioslave/pop3s.docbook +share/doc/HTML/ro/kioslave/kioslave/print.docbook +share/doc/HTML/ro/kioslave/kioslave/rlan.docbook +share/doc/HTML/ro/kioslave/kioslave/rlogin.docbook +share/doc/HTML/ro/kioslave/kioslave/sftp.docbook +share/doc/HTML/ro/kioslave/kioslave/smb.docbook +share/doc/HTML/ro/kioslave/kioslave/smtp.docbook +share/doc/HTML/ro/kioslave/kioslave/tar.docbook +share/doc/HTML/ro/kioslave/kioslave/telnet.docbook +share/doc/HTML/ro/kioslave/kioslave/thumbnail.docbook +share/doc/HTML/ro/kioslave/kioslave/webdav.docbook +share/doc/HTML/ro/kioslave/kioslave/webdavs.docbook +share/locale/ro/LC_MESSAGES/akonaditray.mo share/locale/ro/LC_MESSAGES/akregator.mo -share/locale/ro/LC_MESSAGES/alsaplayerui.mo share/locale/ro/LC_MESSAGES/amor.mo -share/locale/ro/LC_MESSAGES/appletproxy.mo share/locale/ro/LC_MESSAGES/ark.mo -share/locale/ro/LC_MESSAGES/artsbuilder.mo -share/locale/ro/LC_MESSAGES/artscontrol.mo -share/locale/ro/LC_MESSAGES/artsmodules.mo -share/locale/ro/LC_MESSAGES/atlantik.mo -share/locale/ro/LC_MESSAGES/atlantikdesigner.mo +share/locale/ro/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/ro/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ro/LC_MESSAGES/audiorename_plugin.mo -share/locale/ro/LC_MESSAGES/autorefresh.mo -share/locale/ro/LC_MESSAGES/babelfish.mo +share/locale/ro/LC_MESSAGES/blinken.mo +share/locale/ro/LC_MESSAGES/bomber.mo +share/locale/ro/LC_MESSAGES/bovo.mo share/locale/ro/LC_MESSAGES/cervisia.mo -share/locale/ro/LC_MESSAGES/charlatanui.mo -share/locale/ro/LC_MESSAGES/clockapplet.mo -share/locale/ro/LC_MESSAGES/crashesplugin.mo -share/locale/ro/LC_MESSAGES/cupsdconf.mo share/locale/ro/LC_MESSAGES/cvsservice.mo -share/locale/ro/LC_MESSAGES/dcoprss.mo -share/locale/ro/LC_MESSAGES/dirfilterplugin.mo share/locale/ro/LC_MESSAGES/display.mo -share/locale/ro/LC_MESSAGES/dockbarextension.mo -share/locale/ro/LC_MESSAGES/domtreeviewer.mo +share/locale/ro/LC_MESSAGES/dolphin.mo +share/locale/ro/LC_MESSAGES/dragonplayer.mo share/locale/ro/LC_MESSAGES/drkonqi.mo -share/locale/ro/LC_MESSAGES/dub.mo -share/locale/ro/LC_MESSAGES/extensionproxy.mo -share/locale/ro/LC_MESSAGES/ffrs.mo share/locale/ro/LC_MESSAGES/filetypes.mo -share/locale/ro/LC_MESSAGES/fsview.mo +share/locale/ro/LC_MESSAGES/gwenview.mo share/locale/ro/LC_MESSAGES/htmlsearch.mo share/locale/ro/LC_MESSAGES/imagerename_plugin.mo -share/locale/ro/LC_MESSAGES/imgalleryplugin.mo -share/locale/ro/LC_MESSAGES/irkick.mo share/locale/ro/LC_MESSAGES/joystick.mo share/locale/ro/LC_MESSAGES/juk.mo -share/locale/ro/LC_MESSAGES/kabc2mutt.mo +share/locale/ro/LC_MESSAGES/kabc.mo +share/locale/ro/LC_MESSAGES/kabc_akonadi.mo share/locale/ro/LC_MESSAGES/kabc_dir.mo share/locale/ro/LC_MESSAGES/kabc_file.mo share/locale/ro/LC_MESSAGES/kabc_ldapkio.mo share/locale/ro/LC_MESSAGES/kabc_net.mo -share/locale/ro/LC_MESSAGES/kabc_sql.mo +share/locale/ro/LC_MESSAGES/kabc_slox.mo +share/locale/ro/LC_MESSAGES/kabcakonadi.mo +share/locale/ro/LC_MESSAGES/kabcclient.mo share/locale/ro/LC_MESSAGES/kabcformat_binary.mo -share/locale/ro/LC_MESSAGES/kaboodle.mo share/locale/ro/LC_MESSAGES/kaccess.mo share/locale/ro/LC_MESSAGES/kaddressbook.mo share/locale/ro/LC_MESSAGES/kalarm.mo +share/locale/ro/LC_MESSAGES/kalgebra.mo share/locale/ro/LC_MESSAGES/kalzium.mo -share/locale/ro/LC_MESSAGES/kandy.mo +share/locale/ro/LC_MESSAGES/kalzium_qt.mo +share/locale/ro/LC_MESSAGES/kanagram.mo +share/locale/ro/LC_MESSAGES/kapman.mo share/locale/ro/LC_MESSAGES/kappfinder.mo -share/locale/ro/LC_MESSAGES/karm.mo -share/locale/ro/LC_MESSAGES/kasbarextension.mo -share/locale/ro/LC_MESSAGES/kasteroids.mo share/locale/ro/LC_MESSAGES/kate.mo -share/locale/ro/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/ro/LC_MESSAGES/katefll_initplugin.mo -share/locale/ro/LC_MESSAGES/katefll_plugin.mo +share/locale/ro/LC_MESSAGES/kateexternaltoolsplugin.mo +share/locale/ro/LC_MESSAGES/katefilebrowserplugin.mo +share/locale/ro/LC_MESSAGES/katefiletemplates.mo +share/locale/ro/LC_MESSAGES/katefindinfilesplugin.mo share/locale/ro/LC_MESSAGES/katehelloworld.mo share/locale/ro/LC_MESSAGES/katehtmltools.mo share/locale/ro/LC_MESSAGES/kateinsertcommand.mo share/locale/ro/LC_MESSAGES/katekjswrapper.mo -share/locale/ro/LC_MESSAGES/katemake.mo -share/locale/ro/LC_MESSAGES/katemodeline.mo +share/locale/ro/LC_MESSAGES/katekonsoleplugin.mo +share/locale/ro/LC_MESSAGES/katemailfilesplugin.mo share/locale/ro/LC_MESSAGES/kateopenheader.mo -share/locale/ro/LC_MESSAGES/katepart.mo +share/locale/ro/LC_MESSAGES/katepart4.mo share/locale/ro/LC_MESSAGES/katepybrowse.mo +share/locale/ro/LC_MESSAGES/katequickdocumentswitcherplugin.mo +share/locale/ro/LC_MESSAGES/katesnippets.mo +share/locale/ro/LC_MESSAGES/katesymbolviewer.mo share/locale/ro/LC_MESSAGES/katetabbarextension.mo share/locale/ro/LC_MESSAGES/katetextfilter.mo share/locale/ro/LC_MESSAGES/katexmlcheck.mo share/locale/ro/LC_MESSAGES/katexmltools.mo share/locale/ro/LC_MESSAGES/katomic.mo -share/locale/ro/LC_MESSAGES/kaudiocreator.mo -share/locale/ro/LC_MESSAGES/kbabel.mo -share/locale/ro/LC_MESSAGES/kbackgammon.mo share/locale/ro/LC_MESSAGES/kbattleship.mo -share/locale/ro/LC_MESSAGES/kbinaryclock.mo share/locale/ro/LC_MESSAGES/kblackbox.mo +share/locale/ro/LC_MESSAGES/kblankscrn.mo +share/locale/ro/LC_MESSAGES/kblocks.mo share/locale/ro/LC_MESSAGES/kbounce.mo +share/locale/ro/LC_MESSAGES/kbreakout.mo share/locale/ro/LC_MESSAGES/kbruch.mo share/locale/ro/LC_MESSAGES/kbugbuster.mo share/locale/ro/LC_MESSAGES/kcachegrind.mo share/locale/ro/LC_MESSAGES/kcalc.mo +share/locale/ro/LC_MESSAGES/kcertpart.mo share/locale/ro/LC_MESSAGES/kcharselect.mo -share/locale/ro/LC_MESSAGES/kcharselectapplet.mo +share/locale/ro/LC_MESSAGES/kcm_akonadi.mo +share/locale/ro/LC_MESSAGES/kcm_autostart.mo +share/locale/ro/LC_MESSAGES/kcm_desktopthemedetails.mo +share/locale/ro/LC_MESSAGES/kcm_emoticons.mo share/locale/ro/LC_MESSAGES/kcm_krfb.mo -share/locale/ro/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/ro/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/ro/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/ro/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo +share/locale/ro/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ro/LC_MESSAGES/kcm_memory.mo +share/locale/ro/LC_MESSAGES/kcm_partition.mo +share/locale/ro/LC_MESSAGES/kcm_pci.mo +share/locale/ro/LC_MESSAGES/kcm_phonon.mo +share/locale/ro/LC_MESSAGES/kcm_phononxine.mo +share/locale/ro/LC_MESSAGES/kcm_solid.mo +share/locale/ro/LC_MESSAGES/kcm_standard_actions.mo share/locale/ro/LC_MESSAGES/kcmaccess.mo -share/locale/ro/LC_MESSAGES/kcmaccessibility.mo -share/locale/ro/LC_MESSAGES/kcmarts.mo share/locale/ro/LC_MESSAGES/kcmaudiocd.mo share/locale/ro/LC_MESSAGES/kcmbackground.mo share/locale/ro/LC_MESSAGES/kcmbell.mo @@ -317,184 +255,150 @@ share/locale/ro/LC_MESSAGES/kcmfonts.mo share/locale/ro/LC_MESSAGES/kcmhtmlsearch.mo share/locale/ro/LC_MESSAGES/kcmicons.mo share/locale/ro/LC_MESSAGES/kcminfo.mo +share/locale/ro/LC_MESSAGES/kcminit.mo share/locale/ro/LC_MESSAGES/kcminput.mo share/locale/ro/LC_MESSAGES/kcmioslaveinfo.mo share/locale/ro/LC_MESSAGES/kcmkabconfig.mo share/locale/ro/LC_MESSAGES/kcmkamera.mo share/locale/ro/LC_MESSAGES/kcmkclock.mo share/locale/ro/LC_MESSAGES/kcmkded.mo +share/locale/ro/LC_MESSAGES/kcmkdnssd.mo +share/locale/ro/LC_MESSAGES/kcmkeyboard.mo share/locale/ro/LC_MESSAGES/kcmkeys.mo -share/locale/ro/LC_MESSAGES/kcmkicker.mo +share/locale/ro/LC_MESSAGES/kcmkgamma.mo share/locale/ro/LC_MESSAGES/kcmkio.mo share/locale/ro/LC_MESSAGES/kcmkonq.mo share/locale/ro/LC_MESSAGES/kcmkonqhtml.mo -share/locale/ro/LC_MESSAGES/kcmkonsole.mo -share/locale/ro/LC_MESSAGES/kcmkontactnt.mo -share/locale/ro/LC_MESSAGES/kcmktalkd.mo -share/locale/ro/LC_MESSAGES/kcmkuick.mo share/locale/ro/LC_MESSAGES/kcmkurifilt.mo -share/locale/ro/LC_MESSAGES/kcmkvaio.mo share/locale/ro/LC_MESSAGES/kcmkwallet.mo +share/locale/ro/LC_MESSAGES/kcmkwincompositing.mo share/locale/ro/LC_MESSAGES/kcmkwindecoration.mo share/locale/ro/LC_MESSAGES/kcmkwinrules.mo share/locale/ro/LC_MESSAGES/kcmkwm.mo -share/locale/ro/LC_MESSAGES/kcmlanbrowser.mo -share/locale/ro/LC_MESSAGES/kcmlaptop.mo share/locale/ro/LC_MESSAGES/kcmlaunch.mo -share/locale/ro/LC_MESSAGES/kcmlayout.mo share/locale/ro/LC_MESSAGES/kcmlilo.mo -share/locale/ro/LC_MESSAGES/kcmlirc.mo share/locale/ro/LC_MESSAGES/kcmlocale.mo share/locale/ro/LC_MESSAGES/kcmnic.mo share/locale/ro/LC_MESSAGES/kcmnotify.mo +share/locale/ro/LC_MESSAGES/kcmopengl.mo share/locale/ro/LC_MESSAGES/kcmperformance.mo -share/locale/ro/LC_MESSAGES/kcmprintmgr.mo share/locale/ro/LC_MESSAGES/kcmsamba.mo share/locale/ro/LC_MESSAGES/kcmscreensaver.mo share/locale/ro/LC_MESSAGES/kcmshell.mo share/locale/ro/LC_MESSAGES/kcmsmartcard.mo share/locale/ro/LC_MESSAGES/kcmsmserver.mo -share/locale/ro/LC_MESSAGES/kcmspellchecking.mo +share/locale/ro/LC_MESSAGES/kcmsolidproc.mo share/locale/ro/LC_MESSAGES/kcmstyle.mo -share/locale/ro/LC_MESSAGES/kcmtaskbar.mo -share/locale/ro/LC_MESSAGES/kcmthinkpad.mo share/locale/ro/LC_MESSAGES/kcmusb.mo share/locale/ro/LC_MESSAGES/kcmview1394.mo -share/locale/ro/LC_MESSAGES/kcmwifi.mo share/locale/ro/LC_MESSAGES/kcmxinerama.mo -share/locale/ro/LC_MESSAGES/kcoloredit.mo -share/locale/ro/LC_MESSAGES/kcontrol.mo +share/locale/ro/LC_MESSAGES/kcolorchooser.mo share/locale/ro/LC_MESSAGES/kcron.mo share/locale/ro/LC_MESSAGES/kdat.mo -share/locale/ro/LC_MESSAGES/kdcop.mo +share/locale/ro/LC_MESSAGES/kde-menu.mo share/locale/ro/LC_MESSAGES/kdebugdialog.mo -share/locale/ro/LC_MESSAGES/kdelibs.mo -share/locale/ro/LC_MESSAGES/kdelibs_colors.mo -share/locale/ro/LC_MESSAGES/kdelirc.mo +share/locale/ro/LC_MESSAGES/kded_phononserver.mo +share/locale/ro/LC_MESSAGES/kdelibs4.mo +share/locale/ro/LC_MESSAGES/kdelibs_colors4.mo share/locale/ro/LC_MESSAGES/kdepasswd.mo -share/locale/ro/LC_MESSAGES/kdeprint.mo -share/locale/ro/LC_MESSAGES/kdeprint_part.mo -share/locale/ro/LC_MESSAGES/kdeprintfax.mo -share/locale/ro/LC_MESSAGES/kdesktop.mo +share/locale/ro/LC_MESSAGES/kdepimresources.mo +share/locale/ro/LC_MESSAGES/kdepimwizards.mo +share/locale/ro/LC_MESSAGES/kdeqt.mo share/locale/ro/LC_MESSAGES/kdessh.mo share/locale/ro/LC_MESSAGES/kdesu.mo share/locale/ro/LC_MESSAGES/kdesud.mo -share/locale/ro/LC_MESSAGES/kdevdesigner.mo -share/locale/ro/LC_MESSAGES/kdevelop.mo -share/locale/ro/LC_MESSAGES/kdevtipofday.mo share/locale/ro/LC_MESSAGES/kdf.mo share/locale/ro/LC_MESSAGES/kdgantt.mo +share/locale/ro/LC_MESSAGES/kdgantt1.mo share/locale/ro/LC_MESSAGES/kdialog.mo -share/locale/ro/LC_MESSAGES/kdict.mo -share/locale/ro/LC_MESSAGES/kdictapplet.mo +share/locale/ro/LC_MESSAGES/kdiamond.mo share/locale/ro/LC_MESSAGES/kdmconfig.mo share/locale/ro/LC_MESSAGES/kdmgreet.mo -share/locale/ro/LC_MESSAGES/kdvi.mo -share/locale/ro/LC_MESSAGES/kedit.mo -share/locale/ro/LC_MESSAGES/keduca.mo -share/locale/ro/LC_MESSAGES/kenolaba.mo -share/locale/ro/LC_MESSAGES/kfax.mo -share/locale/ro/LC_MESSAGES/kfifteenapplet.mo -share/locale/ro/LC_MESSAGES/kfile_au.mo +share/locale/ro/LC_MESSAGES/keditbookmarks.mo +share/locale/ro/LC_MESSAGES/kfile.mo share/locale/ro/LC_MESSAGES/kfile_avi.mo -share/locale/ro/LC_MESSAGES/kfile_bmp.mo -share/locale/ro/LC_MESSAGES/kfile_cpp.mo share/locale/ro/LC_MESSAGES/kfile_dds.mo -share/locale/ro/LC_MESSAGES/kfile_deb.mo -share/locale/ro/LC_MESSAGES/kfile_desktop.mo -share/locale/ro/LC_MESSAGES/kfile_diff.mo +share/locale/ro/LC_MESSAGES/kfile_drgeo.mo share/locale/ro/LC_MESSAGES/kfile_dvi.mo share/locale/ro/LC_MESSAGES/kfile_exr.mo share/locale/ro/LC_MESSAGES/kfile_flac.mo -share/locale/ro/LC_MESSAGES/kfile_folder.mo -share/locale/ro/LC_MESSAGES/kfile_gif.mo -share/locale/ro/LC_MESSAGES/kfile_html.mo -share/locale/ro/LC_MESSAGES/kfile_ico.mo -share/locale/ro/LC_MESSAGES/kfile_jpeg.mo -share/locale/ro/LC_MESSAGES/kfile_lnk.mo -share/locale/ro/LC_MESSAGES/kfile_m3u.mo +share/locale/ro/LC_MESSAGES/kfile_kig.mo share/locale/ro/LC_MESSAGES/kfile_mp3.mo +share/locale/ro/LC_MESSAGES/kfile_mpc.mo share/locale/ro/LC_MESSAGES/kfile_ogg.mo -share/locale/ro/LC_MESSAGES/kfile_palm.mo -share/locale/ro/LC_MESSAGES/kfile_pcx.mo -share/locale/ro/LC_MESSAGES/kfile_pdf.mo -share/locale/ro/LC_MESSAGES/kfile_png.mo share/locale/ro/LC_MESSAGES/kfile_pnm.mo -share/locale/ro/LC_MESSAGES/kfile_po.mo -share/locale/ro/LC_MESSAGES/kfile_ps.mo -share/locale/ro/LC_MESSAGES/kfile_rfc822.mo +share/locale/ro/LC_MESSAGES/kfile_raw.mo share/locale/ro/LC_MESSAGES/kfile_rgb.mo share/locale/ro/LC_MESSAGES/kfile_rpm.mo share/locale/ro/LC_MESSAGES/kfile_sid.mo -share/locale/ro/LC_MESSAGES/kfile_tga.mo +share/locale/ro/LC_MESSAGES/kfile_theora.mo share/locale/ro/LC_MESSAGES/kfile_tiff.mo -share/locale/ro/LC_MESSAGES/kfile_ts.mo -share/locale/ro/LC_MESSAGES/kfile_txt.mo -share/locale/ro/LC_MESSAGES/kfile_vcf.mo +share/locale/ro/LC_MESSAGES/kfile_torrent.mo share/locale/ro/LC_MESSAGES/kfile_wav.mo -share/locale/ro/LC_MESSAGES/kfile_xbm.mo -share/locale/ro/LC_MESSAGES/kfile_xpm.mo -share/locale/ro/LC_MESSAGES/kfileaudiopreview.mo +share/locale/ro/LC_MESSAGES/kfile_xps.mo +share/locale/ro/LC_MESSAGES/kfileaudiopreview4.mo share/locale/ro/LC_MESSAGES/kfilereplace.mo share/locale/ro/LC_MESSAGES/kfileshare.mo share/locale/ro/LC_MESSAGES/kfindpart.mo share/locale/ro/LC_MESSAGES/kfloppy.mo share/locale/ro/LC_MESSAGES/kfmclient.mo share/locale/ro/LC_MESSAGES/kfontinst.mo -share/locale/ro/LC_MESSAGES/kfouleggs.mo -share/locale/ro/LC_MESSAGES/kgamma.mo -share/locale/ro/LC_MESSAGES/kgantt.mo +share/locale/ro/LC_MESSAGES/kfourinline.mo share/locale/ro/LC_MESSAGES/kgeography.mo share/locale/ro/LC_MESSAGES/kget.mo -share/locale/ro/LC_MESSAGES/kghostview.mo share/locale/ro/LC_MESSAGES/kgoldrunner.mo share/locale/ro/LC_MESSAGES/kgpg.mo share/locale/ro/LC_MESSAGES/kgreet_classic.mo +share/locale/ro/LC_MESSAGES/kgreet_generic.mo +share/locale/ro/LC_MESSAGES/kgreet_winbind.mo share/locale/ro/LC_MESSAGES/khangman.mo share/locale/ro/LC_MESSAGES/khelpcenter.mo -share/locale/ro/LC_MESSAGES/khexedit.mo share/locale/ro/LC_MESSAGES/khotkeys.mo +share/locale/ro/LC_MESSAGES/khotnewstuff.mo share/locale/ro/LC_MESSAGES/khtmlkttsd.mo -share/locale/ro/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/ro/LC_MESSAGES/kicker.mo -share/locale/ro/LC_MESSAGES/kiconedit.mo +share/locale/ro/LC_MESSAGES/kiconfinder.mo share/locale/ro/LC_MESSAGES/kig.mo +share/locale/ro/LC_MESSAGES/killbots.mo share/locale/ro/LC_MESSAGES/kimagemapeditor.mo share/locale/ro/LC_MESSAGES/kinetd.mo -share/locale/ro/LC_MESSAGES/kio.mo +share/locale/ro/LC_MESSAGES/kinfocenter.mo +share/locale/ro/LC_MESSAGES/kio4.mo +share/locale/ro/LC_MESSAGES/kio_applications.mo +share/locale/ro/LC_MESSAGES/kio_archive.mo share/locale/ro/LC_MESSAGES/kio_audiocd.mo +share/locale/ro/LC_MESSAGES/kio_bookmarks.mo share/locale/ro/LC_MESSAGES/kio_finger.mo share/locale/ro/LC_MESSAGES/kio_fish.mo share/locale/ro/LC_MESSAGES/kio_floppy.mo -share/locale/ro/LC_MESSAGES/kio_help.mo -share/locale/ro/LC_MESSAGES/kio_home.mo +share/locale/ro/LC_MESSAGES/kio_groupwise.mo +share/locale/ro/LC_MESSAGES/kio_help4.mo share/locale/ro/LC_MESSAGES/kio_imap4.mo -share/locale/ro/LC_MESSAGES/kio_lan.mo +share/locale/ro/LC_MESSAGES/kio_jabberdisco.mo share/locale/ro/LC_MESSAGES/kio_ldap.mo -share/locale/ro/LC_MESSAGES/kio_mac.mo share/locale/ro/LC_MESSAGES/kio_man.mo -share/locale/ro/LC_MESSAGES/kio_media.mo -share/locale/ro/LC_MESSAGES/kio_mobile.mo +share/locale/ro/LC_MESSAGES/kio_mbox.mo +share/locale/ro/LC_MESSAGES/kio_nepomuksearch.mo share/locale/ro/LC_MESSAGES/kio_nfs.mo share/locale/ro/LC_MESSAGES/kio_nntp.mo share/locale/ro/LC_MESSAGES/kio_pop3.mo -share/locale/ro/LC_MESSAGES/kio_print.mo -share/locale/ro/LC_MESSAGES/kio_settings.mo +share/locale/ro/LC_MESSAGES/kio_remote.mo share/locale/ro/LC_MESSAGES/kio_sftp.mo share/locale/ro/LC_MESSAGES/kio_sieve.mo share/locale/ro/LC_MESSAGES/kio_smb.mo share/locale/ro/LC_MESSAGES/kio_smtp.mo share/locale/ro/LC_MESSAGES/kio_svn.mo +share/locale/ro/LC_MESSAGES/kio_thumbnail.mo +share/locale/ro/LC_MESSAGES/kio_trash.mo +share/locale/ro/LC_MESSAGES/kio_zeroconf.mo +share/locale/ro/LC_MESSAGES/kioclient.mo share/locale/ro/LC_MESSAGES/kioexec.mo +share/locale/ro/LC_MESSAGES/kiriki.mo +share/locale/ro/LC_MESSAGES/kitchensync.mo share/locale/ro/LC_MESSAGES/kiten.mo -share/locale/ro/LC_MESSAGES/kjobviewer.mo share/locale/ro/LC_MESSAGES/kjots.mo share/locale/ro/LC_MESSAGES/kjumpingcube.mo -share/locale/ro/LC_MESSAGES/klaptopdaemon.mo -share/locale/ro/LC_MESSAGES/klatin.mo share/locale/ro/LC_MESSAGES/kleopatra.mo share/locale/ro/LC_MESSAGES/klettres.mo -share/locale/ro/LC_MESSAGES/klickety.mo share/locale/ro/LC_MESSAGES/klines.mo share/locale/ro/LC_MESSAGES/klinkstatus.mo share/locale/ro/LC_MESSAGES/klipper.mo @@ -502,201 +406,278 @@ share/locale/ro/LC_MESSAGES/klock.mo share/locale/ro/LC_MESSAGES/kmag.mo share/locale/ro/LC_MESSAGES/kmahjongg.mo share/locale/ro/LC_MESSAGES/kmail.mo +share/locale/ro/LC_MESSAGES/kmail_text_calendar_plugin.mo +share/locale/ro/LC_MESSAGES/kmail_text_vcard_plugin.mo +share/locale/ro/LC_MESSAGES/kmail_text_xdiff_plugin.mo share/locale/ro/LC_MESSAGES/kmailcvt.mo -share/locale/ro/LC_MESSAGES/kmathapplet.mo -share/locale/ro/LC_MESSAGES/kmcop.mo -share/locale/ro/LC_MESSAGES/kmenuapplet.mo share/locale/ro/LC_MESSAGES/kmenuedit.mo -share/locale/ro/LC_MESSAGES/kmid.mo -share/locale/ro/LC_MESSAGES/kmilo_generic.mo -share/locale/ro/LC_MESSAGES/kmilo_kvaio.mo -share/locale/ro/LC_MESSAGES/kmilo_powerbook.mo -share/locale/ro/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/ro/LC_MESSAGES/kmilod.mo +share/locale/ro/LC_MESSAGES/kmimetypefinder.mo share/locale/ro/LC_MESSAGES/kmines.mo -share/locale/ro/LC_MESSAGES/kminipagerapplet.mo share/locale/ro/LC_MESSAGES/kmix.mo -share/locale/ro/LC_MESSAGES/kmobile.mo -share/locale/ro/LC_MESSAGES/kmoon.mo +share/locale/ro/LC_MESSAGES/kmobiletools.mo +share/locale/ro/LC_MESSAGES/kmobiletools_at_engine.mo share/locale/ro/LC_MESSAGES/kmousetool.mo share/locale/ro/LC_MESSAGES/kmouth.mo share/locale/ro/LC_MESSAGES/kmplot.mo -share/locale/ro/LC_MESSAGES/kmrml.mo -share/locale/ro/LC_MESSAGES/knewsticker.mo +share/locale/ro/LC_MESSAGES/knetattach.mo +share/locale/ro/LC_MESSAGES/knetwalk.mo +share/locale/ro/LC_MESSAGES/knetworkconfmodule.mo share/locale/ro/LC_MESSAGES/knode.mo share/locale/ro/LC_MESSAGES/knotes.mo -share/locale/ro/LC_MESSAGES/knotify.mo -share/locale/ro/LC_MESSAGES/kodo.mo +share/locale/ro/LC_MESSAGES/knotify4.mo share/locale/ro/LC_MESSAGES/kolf.mo +share/locale/ro/LC_MESSAGES/kollision.mo share/locale/ro/LC_MESSAGES/kolourpaint.mo -share/locale/ro/LC_MESSAGES/kolourpicker.mo share/locale/ro/LC_MESSAGES/kommander.mo share/locale/ro/LC_MESSAGES/kompare.mo -share/locale/ro/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/ro/LC_MESSAGES/konqsidebar_news.mo share/locale/ro/LC_MESSAGES/konqueror.mo share/locale/ro/LC_MESSAGES/konquest.mo share/locale/ro/LC_MESSAGES/konsole.mo share/locale/ro/LC_MESSAGES/konsolekalendar.mo share/locale/ro/LC_MESSAGES/kontact.mo -share/locale/ro/LC_MESSAGES/kooka.mo +share/locale/ro/LC_MESSAGES/kontactinterfaces.mo share/locale/ro/LC_MESSAGES/kopete.mo share/locale/ro/LC_MESSAGES/korganizer.mo share/locale/ro/LC_MESSAGES/korn.mo share/locale/ro/LC_MESSAGES/kpackage.mo -share/locale/ro/LC_MESSAGES/kpager.mo share/locale/ro/LC_MESSAGES/kpartsaver.mo +share/locale/ro/LC_MESSAGES/kpasswdserver.mo share/locale/ro/LC_MESSAGES/kpat.mo -share/locale/ro/LC_MESSAGES/kpdf.mo -share/locale/ro/LC_MESSAGES/kpercentage.mo -share/locale/ro/LC_MESSAGES/kpersonalizer.mo -share/locale/ro/LC_MESSAGES/kpf.mo share/locale/ro/LC_MESSAGES/kpilot.mo -share/locale/ro/LC_MESSAGES/kpoker.mo -share/locale/ro/LC_MESSAGES/kpovmodeler.mo share/locale/ro/LC_MESSAGES/kppp.mo share/locale/ro/LC_MESSAGES/kppplogview.mo -share/locale/ro/LC_MESSAGES/kprinter.mo +share/locale/ro/LC_MESSAGES/kquitapp.mo share/locale/ro/LC_MESSAGES/krandr.mo share/locale/ro/LC_MESSAGES/krdb.mo share/locale/ro/LC_MESSAGES/krdc.mo share/locale/ro/LC_MESSAGES/kreadconfig.mo -share/locale/ro/LC_MESSAGES/krec.mo -share/locale/ro/LC_MESSAGES/kregexpeditor.mo +share/locale/ro/LC_MESSAGES/kres_birthday.mo +share/locale/ro/LC_MESSAGES/kres_blog.mo +share/locale/ro/LC_MESSAGES/kres_bugzilla.mo +share/locale/ro/LC_MESSAGES/kres_featureplan.mo +share/locale/ro/LC_MESSAGES/kres_groupware.mo +share/locale/ro/LC_MESSAGES/kres_groupwise.mo +share/locale/ro/LC_MESSAGES/kres_kolab.mo +share/locale/ro/LC_MESSAGES/kres_remote.mo +share/locale/ro/LC_MESSAGES/kres_scalix.mo +share/locale/ro/LC_MESSAGES/kres_tvanytime.mo +share/locale/ro/LC_MESSAGES/kres_xmlrpc.mo share/locale/ro/LC_MESSAGES/kreversi.mo share/locale/ro/LC_MESSAGES/krfb.mo share/locale/ro/LC_MESSAGES/kruler.mo -share/locale/ro/LC_MESSAGES/krunapplet.mo +share/locale/ro/LC_MESSAGES/krunner.mo share/locale/ro/LC_MESSAGES/ksame.mo +share/locale/ro/LC_MESSAGES/ksaneplugin.mo +share/locale/ro/LC_MESSAGES/ksayit.mo share/locale/ro/LC_MESSAGES/kscd.mo share/locale/ro/LC_MESSAGES/kscreensaver.mo share/locale/ro/LC_MESSAGES/kshisen.mo -share/locale/ro/LC_MESSAGES/ksig.mo -share/locale/ro/LC_MESSAGES/ksim.mo -share/locale/ro/LC_MESSAGES/ksirc.mo -share/locale/ro/LC_MESSAGES/ksirtet.mo -share/locale/ro/LC_MESSAGES/ksmiletris.mo +share/locale/ro/LC_MESSAGES/kshorturifilter.mo +share/locale/ro/LC_MESSAGES/ksirk.mo share/locale/ro/LC_MESSAGES/ksmserver.mo -share/locale/ro/LC_MESSAGES/ksnake.mo share/locale/ro/LC_MESSAGES/ksnapshot.mo -share/locale/ro/LC_MESSAGES/ksokoban.mo share/locale/ro/LC_MESSAGES/kspaceduel.mo -share/locale/ro/LC_MESSAGES/ksplash.mo share/locale/ro/LC_MESSAGES/ksplashthemes.mo +share/locale/ro/LC_MESSAGES/ksquares.mo share/locale/ro/LC_MESSAGES/kstars.mo share/locale/ro/LC_MESSAGES/kstart.mo share/locale/ro/LC_MESSAGES/kstartperf.mo -share/locale/ro/LC_MESSAGES/kstyle_highcontrast_config.mo +share/locale/ro/LC_MESSAGES/kstyle_config.mo share/locale/ro/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/ro/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/ro/LC_MESSAGES/ksvgplugin.mo +share/locale/ro/LC_MESSAGES/kstyle_phase_config.mo +share/locale/ro/LC_MESSAGES/ksudoku.mo share/locale/ro/LC_MESSAGES/ksysguard.mo -share/locale/ro/LC_MESSAGES/ksystemtrayapplet.mo +share/locale/ro/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/ro/LC_MESSAGES/ksystemlog.mo share/locale/ro/LC_MESSAGES/ksystraycmd.mo share/locale/ro/LC_MESSAGES/ksysv.mo share/locale/ro/LC_MESSAGES/kteatime.mo -share/locale/ro/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/ro/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/ro/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/ro/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/ro/LC_MESSAGES/ktexteditor_kdatatool.mo +share/locale/ro/LC_MESSAGES/ktexteditor_plugins.mo +share/locale/ro/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/ro/LC_MESSAGES/kthememanager.mo -share/locale/ro/LC_MESSAGES/ktimemon.mo share/locale/ro/LC_MESSAGES/ktimer.mo -share/locale/ro/LC_MESSAGES/ktip.mo -share/locale/ro/LC_MESSAGES/ktnef.mo +share/locale/ro/LC_MESSAGES/ktimetracker.mo share/locale/ro/LC_MESSAGES/ktouch.mo -share/locale/ro/LC_MESSAGES/ktron.mo +share/locale/ro/LC_MESSAGES/ktraderclient.mo share/locale/ro/LC_MESSAGES/kttsd.mo share/locale/ro/LC_MESSAGES/ktuberling.mo share/locale/ro/LC_MESSAGES/kturtle.mo share/locale/ro/LC_MESSAGES/ktux.mo -share/locale/ro/LC_MESSAGES/kuick_plugin.mo -share/locale/ro/LC_MESSAGES/kuickshow.mo +share/locale/ro/LC_MESSAGES/kubrick.mo +share/locale/ro/LC_MESSAGES/kuiserver.mo share/locale/ro/LC_MESSAGES/kuiviewer.mo +share/locale/ro/LC_MESSAGES/kurifilter.mo share/locale/ro/LC_MESSAGES/kuser.mo -share/locale/ro/LC_MESSAGES/kverbos.mo -share/locale/ro/LC_MESSAGES/kview.mo -share/locale/ro/LC_MESSAGES/kview_scale.mo -share/locale/ro/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/ro/LC_MESSAGES/kviewcanvas.mo -share/locale/ro/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/ro/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/ro/LC_MESSAGES/kviewscannerplugin.mo -share/locale/ro/LC_MESSAGES/kviewshell.mo -share/locale/ro/LC_MESSAGES/kviewviewer.mo -share/locale/ro/LC_MESSAGES/kvoctrain.mo +share/locale/ro/LC_MESSAGES/kwalletd.mo share/locale/ro/LC_MESSAGES/kwalletmanager.mo share/locale/ro/LC_MESSAGES/kwatchgnupg.mo share/locale/ro/LC_MESSAGES/kweather.mo -share/locale/ro/LC_MESSAGES/kwifimanager.mo share/locale/ro/LC_MESSAGES/kwin.mo -share/locale/ro/LC_MESSAGES/kwin4.mo -share/locale/ro/LC_MESSAGES/kwireless.mo +share/locale/ro/LC_MESSAGES/kwin_art_clients.mo +share/locale/ro/LC_MESSAGES/kwin_clients.mo +share/locale/ro/LC_MESSAGES/kwin_effects.mo +share/locale/ro/LC_MESSAGES/kwin_lib.mo +share/locale/ro/LC_MESSAGES/kwinstartmenu.mo share/locale/ro/LC_MESSAGES/kwordquiz.mo -share/locale/ro/LC_MESSAGES/kworldclock.mo +share/locale/ro/LC_MESSAGES/kwrite.mo share/locale/ro/LC_MESSAGES/kwriteconfig.mo +share/locale/ro/LC_MESSAGES/kxforms.mo share/locale/ro/LC_MESSAGES/kxkb.mo share/locale/ro/LC_MESSAGES/kxsconfig.mo share/locale/ro/LC_MESSAGES/kxsldbg.mo -share/locale/ro/LC_MESSAGES/libdmctl.mo -share/locale/ro/LC_MESSAGES/libkaddrbk_geo_xxport.mo +share/locale/ro/LC_MESSAGES/lancelot.mo +share/locale/ro/LC_MESSAGES/libakonadi.mo +share/locale/ro/LC_MESSAGES/libkblog.mo share/locale/ro/LC_MESSAGES/libkcal.mo share/locale/ro/LC_MESSAGES/libkcddb.mo +share/locale/ro/LC_MESSAGES/libkcompactdisc.mo +share/locale/ro/LC_MESSAGES/libkdcraw.mo +share/locale/ro/LC_MESSAGES/libkdeedu.mo share/locale/ro/LC_MESSAGES/libkdegames.mo share/locale/ro/LC_MESSAGES/libkdepim.mo -share/locale/ro/LC_MESSAGES/libkicker.mo -share/locale/ro/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/ro/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/ro/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/ro/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/ro/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/ro/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/ro/LC_MESSAGES/libkickermenu_tom.mo +share/locale/ro/LC_MESSAGES/libkholidays.mo +share/locale/ro/LC_MESSAGES/libkldap.mo share/locale/ro/LC_MESSAGES/libkleopatra.mo +share/locale/ro/LC_MESSAGES/libkmahjongg.mo +share/locale/ro/LC_MESSAGES/libkmime.mo share/locale/ro/LC_MESSAGES/libkonq.mo -share/locale/ro/LC_MESSAGES/libkpimexchange.mo -share/locale/ro/LC_MESSAGES/libkscan.mo +share/locale/ro/LC_MESSAGES/libkpgp.mo +share/locale/ro/LC_MESSAGES/libkpimidentities.mo +share/locale/ro/LC_MESSAGES/libkpimutils.mo +share/locale/ro/LC_MESSAGES/libkresources.mo +share/locale/ro/LC_MESSAGES/libksane.mo share/locale/ro/LC_MESSAGES/libkscreensaver.mo share/locale/ro/LC_MESSAGES/libksieve.mo -share/locale/ro/LC_MESSAGES/libksirtet.mo -share/locale/ro/LC_MESSAGES/libksync.mo -share/locale/ro/LC_MESSAGES/libtaskbar.mo +share/locale/ro/LC_MESSAGES/libktnef.mo +share/locale/ro/LC_MESSAGES/libkworkspace.mo +share/locale/ro/LC_MESSAGES/libkxmlrpcclient.mo +share/locale/ro/LC_MESSAGES/libmailtransport.mo +share/locale/ro/LC_MESSAGES/liboktetacore.mo +share/locale/ro/LC_MESSAGES/libphonon.mo +share/locale/ro/LC_MESSAGES/libplasma.mo +share/locale/ro/LC_MESSAGES/libplasmaclock.mo share/locale/ro/LC_MESSAGES/libtaskmanager.mo -share/locale/ro/LC_MESSAGES/lockout.mo +share/locale/ro/LC_MESSAGES/lokalize.mo share/locale/ro/LC_MESSAGES/lskat.mo -share/locale/ro/LC_MESSAGES/lyrics.mo -share/locale/ro/LC_MESSAGES/mediaapplet.mo -share/locale/ro/LC_MESSAGES/mediacontrol.mo -share/locale/ro/LC_MESSAGES/minitoolsplugin.mo -share/locale/ro/LC_MESSAGES/naughtyapplet.mo -share/locale/ro/LC_MESSAGES/nexscope.mo -share/locale/ro/LC_MESSAGES/noatun.mo +share/locale/ro/LC_MESSAGES/marble.mo +share/locale/ro/LC_MESSAGES/marble_qt.mo +share/locale/ro/LC_MESSAGES/nepomuk.mo +share/locale/ro/LC_MESSAGES/nepomuksearch.mo share/locale/ro/LC_MESSAGES/nsplugin.mo -share/locale/ro/LC_MESSAGES/pitchablespeed.mo -share/locale/ro/LC_MESSAGES/ppdtranslations.mo -share/locale/ro/LC_MESSAGES/privacy.mo -share/locale/ro/LC_MESSAGES/quanta.mo -share/locale/ro/LC_MESSAGES/quicklauncher.mo -share/locale/ro/LC_MESSAGES/rellinks.mo -share/locale/ro/LC_MESSAGES/searchbarplugin.mo -share/locale/ro/LC_MESSAGES/secpolicy.mo +share/locale/ro/LC_MESSAGES/okteta.mo +share/locale/ro/LC_MESSAGES/oktetapart.mo +share/locale/ro/LC_MESSAGES/okular.mo +share/locale/ro/LC_MESSAGES/okular_chm.mo +share/locale/ro/LC_MESSAGES/okular_comicbook.mo +share/locale/ro/LC_MESSAGES/okular_djvu.mo +share/locale/ro/LC_MESSAGES/okular_dvi.mo +share/locale/ro/LC_MESSAGES/okular_epub.mo +share/locale/ro/LC_MESSAGES/okular_fax.mo +share/locale/ro/LC_MESSAGES/okular_fictionbook.mo +share/locale/ro/LC_MESSAGES/okular_ghostview.mo +share/locale/ro/LC_MESSAGES/okular_kimgio.mo +share/locale/ro/LC_MESSAGES/okular_ooo.mo +share/locale/ro/LC_MESSAGES/okular_plucker.mo +share/locale/ro/LC_MESSAGES/okular_poppler.mo +share/locale/ro/LC_MESSAGES/okular_tiff.mo +share/locale/ro/LC_MESSAGES/okular_xps.mo +share/locale/ro/LC_MESSAGES/parley.mo +share/locale/ro/LC_MESSAGES/phonon-xine.mo +share/locale/ro/LC_MESSAGES/phonon_kde.mo +share/locale/ro/LC_MESSAGES/plasma-overlay.mo +share/locale/ro/LC_MESSAGES/plasma-shells-common.mo +share/locale/ro/LC_MESSAGES/plasma.mo +share/locale/ro/LC_MESSAGES/plasma_applet_battery.mo +share/locale/ro/LC_MESSAGES/plasma_applet_bball.mo +share/locale/ro/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/ro/LC_MESSAGES/plasma_applet_bluemarble.mo +share/locale/ro/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/ro/LC_MESSAGES/plasma_applet_charselect.mo +share/locale/ro/LC_MESSAGES/plasma_applet_clock.mo +share/locale/ro/LC_MESSAGES/plasma_applet_comic.mo +share/locale/ro/LC_MESSAGES/plasma_applet_desktop.mo +share/locale/ro/LC_MESSAGES/plasma_applet_devicenotifier.mo +share/locale/ro/LC_MESSAGES/plasma_applet_dict.mo +share/locale/ro/LC_MESSAGES/plasma_applet_dig_clock.mo +share/locale/ro/LC_MESSAGES/plasma_applet_fifteenPuzzle.mo +share/locale/ro/LC_MESSAGES/plasma_applet_fileWatcher.mo +share/locale/ro/LC_MESSAGES/plasma_applet_folderview.mo +share/locale/ro/LC_MESSAGES/plasma_applet_frame.mo +share/locale/ro/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/ro/LC_MESSAGES/plasma_applet_incomingmsg.mo +share/locale/ro/LC_MESSAGES/plasma_applet_kget.mo +share/locale/ro/LC_MESSAGES/plasma_applet_kolourpicker.mo +share/locale/ro/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/ro/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/ro/LC_MESSAGES/plasma_applet_life.mo +share/locale/ro/LC_MESSAGES/plasma_applet_luna.mo +share/locale/ro/LC_MESSAGES/plasma_applet_news.mo +share/locale/ro/LC_MESSAGES/plasma_applet_notes.mo +share/locale/ro/LC_MESSAGES/plasma_applet_nowplaying.mo +share/locale/ro/LC_MESSAGES/plasma_applet_pager.mo +share/locale/ro/LC_MESSAGES/plasma_applet_panel.mo +share/locale/ro/LC_MESSAGES/plasma_applet_paste.mo +share/locale/ro/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/ro/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/ro/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/ro/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/ro/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/ro/LC_MESSAGES/plasma_applet_showdesktop.mo +share/locale/ro/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/ro/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/ro/LC_MESSAGES/plasma_applet_systemtray.mo +share/locale/ro/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/ro/LC_MESSAGES/plasma_applet_timer.mo +share/locale/ro/LC_MESSAGES/plasma_applet_trash.mo +share/locale/ro/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/ro/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/ro/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/ro/LC_MESSAGES/plasma_appletscript_qedje.mo +share/locale/ro/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo +share/locale/ro/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/ro/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ro/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ro/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/ro/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ro/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/ro/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ro/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/ro/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ro/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ro/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ro/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ro/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ro/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ro/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/ro/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/ro/LC_MESSAGES/plasma_wallpaper_image.mo +share/locale/ro/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ro/LC_MESSAGES/plasmapkg.mo +share/locale/ro/LC_MESSAGES/plasmoidviewer.mo +share/locale/ro/LC_MESSAGES/powerdevil.mo +share/locale/ro/LC_MESSAGES/printer-applet.mo +share/locale/ro/LC_MESSAGES/processcore.mo +share/locale/ro/LC_MESSAGES/processui.mo +share/locale/ro/LC_MESSAGES/solid-bluetooth.mo +share/locale/ro/LC_MESSAGES/solid-hardware.mo +share/locale/ro/LC_MESSAGES/solid-network.mo +share/locale/ro/LC_MESSAGES/solid-powermanagement.mo +share/locale/ro/LC_MESSAGES/solidcontrol.mo +share/locale/ro/LC_MESSAGES/soliduiserver.mo share/locale/ro/LC_MESSAGES/spy.mo -share/locale/ro/LC_MESSAGES/synaescope.mo -share/locale/ro/LC_MESSAGES/timezones.mo -share/locale/ro/LC_MESSAGES/tippecanoe.mo -share/locale/ro/LC_MESSAGES/trashapplet.mo -share/locale/ro/LC_MESSAGES/tyler.mo -share/locale/ro/LC_MESSAGES/uachangerplugin.mo +share/locale/ro/LC_MESSAGES/step.mo +share/locale/ro/LC_MESSAGES/step_qt.mo +share/locale/ro/LC_MESSAGES/strigila_diff.mo +share/locale/ro/LC_MESSAGES/superkaramba.mo +share/locale/ro/LC_MESSAGES/svgpart.mo +share/locale/ro/LC_MESSAGES/sweeper.mo +share/locale/ro/LC_MESSAGES/system-config-printer-kde.mo +share/locale/ro/LC_MESSAGES/systemsettings.mo +share/locale/ro/LC_MESSAGES/timezones4.mo share/locale/ro/LC_MESSAGES/umbrello.mo share/locale/ro/LC_MESSAGES/useraccount.mo -share/locale/ro/LC_MESSAGES/validatorsplugin.mo -share/locale/ro/LC_MESSAGES/wakeup.mo -share/locale/ro/LC_MESSAGES/wavecapture.mo -share/locale/ro/LC_MESSAGES/webarchiver.mo -share/locale/ro/charset share/locale/ro/entry.desktop -share/locale/ro/flag.png +@dirrm share/doc/HTML/ro/kioslave/kioslave @dirrm share/doc/HTML/ro/kioslave @dirrm share/doc/HTML/ro/kinfocenter/xserver @dirrm share/doc/HTML/ro/kinfocenter/usb @@ -719,7 +700,8 @@ share/locale/ro/flag.png @dirrm share/doc/HTML/ro/khelpcenter/visualdict @dirrm share/doc/HTML/ro/khelpcenter/glossary @dirrm share/doc/HTML/ro/khelpcenter -@dirrm share/doc/HTML/ro/common +@dirrm share/apps/kvtml/ro +@dirrm share/apps/kvtml @dirrm share/apps/ktuberling/sounds/ro @dirrm share/apps/ktuberling/sounds @dirrm share/apps/ktuberling diff --git a/misc/kde4-l10n-sl/distinfo b/misc/kde4-l10n-sl/distinfo index 87ca608dc6be..da656b981086 100644 --- a/misc/kde4-l10n-sl/distinfo +++ b/misc/kde4-l10n-sl/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-sl-4.1.4.tar.bz2) = c4a74ef14b66d2cc44518e4dbccf7884 -SHA256 (KDE/kde-l10n/kde-l10n-sl-4.1.4.tar.bz2) = 658db83ce5460eaf23ec21f24d54f9b8246d72a72593d9f7386f0404f9a957d4 -SIZE (KDE/kde-l10n/kde-l10n-sl-4.1.4.tar.bz2) = 4103021 +MD5 (KDE/kde-l10n/kde-l10n-sl-4.2.0.tar.bz2) = b24648e4fe6552ed7253acee7306f03e +SHA256 (KDE/kde-l10n/kde-l10n-sl-4.2.0.tar.bz2) = d97a6b92f3da90d059be410af8cc6f8e030c5a96ead31c318b3a4b36cd88efad +SIZE (KDE/kde-l10n/kde-l10n-sl-4.2.0.tar.bz2) = 4134442 diff --git a/misc/kde4-l10n-sl/pkg-plist b/misc/kde4-l10n-sl/pkg-plist index dec3c526766b..c1e927585729 100644 --- a/misc/kde4-l10n-sl/pkg-plist +++ b/misc/kde4-l10n-sl/pkg-plist @@ -40,12 +40,6 @@ share/apps/kvtml/sl/worldcapitals.kvtml share/doc/HTML/sl/kaddressbook/common share/doc/HTML/sl/kaddressbook/index.cache.bz2 share/doc/HTML/sl/kaddressbook/index.docbook -share/doc/HTML/sl/kcontrol/bell/common -share/doc/HTML/sl/kcontrol/bell/index.cache.bz2 -share/doc/HTML/sl/kcontrol/bell/index.docbook -share/doc/HTML/sl/kcontrol/clock/common -share/doc/HTML/sl/kcontrol/clock/index.cache.bz2 -share/doc/HTML/sl/kcontrol/clock/index.docbook share/doc/HTML/sl/kcontrol/cookies/common share/doc/HTML/sl/kcontrol/cookies/index.cache.bz2 share/doc/HTML/sl/kcontrol/cookies/index.docbook @@ -58,45 +52,21 @@ share/doc/HTML/sl/kcontrol/ebrowsing/index.docbook share/doc/HTML/sl/kcontrol/filetypes/common share/doc/HTML/sl/kcontrol/filetypes/index.cache.bz2 share/doc/HTML/sl/kcontrol/filetypes/index.docbook -share/doc/HTML/sl/kcontrol/kalarmd/common -share/doc/HTML/sl/kcontrol/kalarmd/index.cache.bz2 -share/doc/HTML/sl/kcontrol/kalarmd/index.docbook share/doc/HTML/sl/kcontrol/kcmcss/common share/doc/HTML/sl/kcontrol/kcmcss/index.cache.bz2 share/doc/HTML/sl/kcontrol/kcmcss/index.docbook share/doc/HTML/sl/kcontrol/kcmlaunch/common share/doc/HTML/sl/kcontrol/kcmlaunch/index.cache.bz2 share/doc/HTML/sl/kcontrol/kcmlaunch/index.docbook -share/doc/HTML/sl/kcontrol/kcmlowbatcrit/common -share/doc/HTML/sl/kcontrol/kcmlowbatcrit/index.cache.bz2 -share/doc/HTML/sl/kcontrol/kcmlowbatcrit/index.docbook -share/doc/HTML/sl/kcontrol/kcmlowbatwarn/common -share/doc/HTML/sl/kcontrol/kcmlowbatwarn/index.cache.bz2 -share/doc/HTML/sl/kcontrol/kcmlowbatwarn/index.docbook share/doc/HTML/sl/kcontrol/kcmsmserver/common share/doc/HTML/sl/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/sl/kcontrol/kcmsmserver/index.docbook -share/doc/HTML/sl/kcontrol/keyboard/common -share/doc/HTML/sl/kcontrol/keyboard/index.cache.bz2 -share/doc/HTML/sl/kcontrol/keyboard/index.docbook -share/doc/HTML/sl/kcontrol/kwindecoration/common -share/doc/HTML/sl/kcontrol/kwindecoration/index.cache.bz2 -share/doc/HTML/sl/kcontrol/kwindecoration/index.docbook -share/doc/HTML/sl/kcontrol/laptop/common -share/doc/HTML/sl/kcontrol/laptop/index.cache.bz2 -share/doc/HTML/sl/kcontrol/laptop/index.docbook -share/doc/HTML/sl/kcontrol/powerctrl/common -share/doc/HTML/sl/kcontrol/powerctrl/index.cache.bz2 -share/doc/HTML/sl/kcontrol/powerctrl/index.docbook share/doc/HTML/sl/kcontrol/smb/common share/doc/HTML/sl/kcontrol/smb/index.cache.bz2 share/doc/HTML/sl/kcontrol/smb/index.docbook share/doc/HTML/sl/kcontrol/spellchecking/common share/doc/HTML/sl/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/sl/kcontrol/spellchecking/index.docbook -share/doc/HTML/sl/kcontrol/windowmanagement/common -share/doc/HTML/sl/kcontrol/windowmanagement/index.cache.bz2 -share/doc/HTML/sl/kcontrol/windowmanagement/index.docbook share/doc/HTML/sl/kdesu/common share/doc/HTML/sl/kdesu/index.cache.bz2 share/doc/HTML/sl/kdesu/index.docbook @@ -106,22 +76,6 @@ share/doc/HTML/sl/kdm/index.docbook share/doc/HTML/sl/kfind/common share/doc/HTML/sl/kfind/index.cache.bz2 share/doc/HTML/sl/kfind/index.docbook -share/doc/HTML/sl/khelpcenter/common -share/doc/HTML/sl/khelpcenter/contact.docbook -share/doc/HTML/sl/khelpcenter/help.docbook -share/doc/HTML/sl/khelpcenter/index.cache.bz2 -share/doc/HTML/sl/khelpcenter/index.docbook -share/doc/HTML/sl/khelpcenter/kdelogo.png -share/doc/HTML/sl/khelpcenter/khelpcenter.png -share/doc/HTML/sl/khelpcenter/laptop.png -share/doc/HTML/sl/khelpcenter/links.docbook -share/doc/HTML/sl/khelpcenter/support.docbook -share/doc/HTML/sl/khelpcenter/tinylogo.png -share/doc/HTML/sl/khelpcenter/welcome.docbook -share/doc/HTML/sl/khelpcenter/whatiskde.docbook -share/doc/HTML/sl/kinfocenter/blockdevices/common -share/doc/HTML/sl/kinfocenter/blockdevices/index.cache.bz2 -share/doc/HTML/sl/kinfocenter/blockdevices/index.docbook share/doc/HTML/sl/kinfocenter/dma/common share/doc/HTML/sl/kinfocenter/dma/index.cache.bz2 share/doc/HTML/sl/kinfocenter/dma/index.docbook @@ -177,6 +131,7 @@ share/locale/sl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sl/LC_MESSAGES/audiorename_plugin.mo share/locale/sl/LC_MESSAGES/blinken.mo +share/locale/sl/LC_MESSAGES/bomber.mo share/locale/sl/LC_MESSAGES/bovo.mo share/locale/sl/LC_MESSAGES/cervisia.mo share/locale/sl/LC_MESSAGES/cvsservice.mo @@ -191,6 +146,7 @@ share/locale/sl/LC_MESSAGES/imagerename_plugin.mo share/locale/sl/LC_MESSAGES/joystick.mo share/locale/sl/LC_MESSAGES/juk.mo share/locale/sl/LC_MESSAGES/kabc.mo +share/locale/sl/LC_MESSAGES/kabc_akonadi.mo share/locale/sl/LC_MESSAGES/kabc_dir.mo share/locale/sl/LC_MESSAGES/kabc_file.mo share/locale/sl/LC_MESSAGES/kabc_ldapkio.mo @@ -204,7 +160,9 @@ share/locale/sl/LC_MESSAGES/kaddressbook.mo share/locale/sl/LC_MESSAGES/kalarm.mo share/locale/sl/LC_MESSAGES/kalgebra.mo share/locale/sl/LC_MESSAGES/kalzium.mo +share/locale/sl/LC_MESSAGES/kalzium_qt.mo share/locale/sl/LC_MESSAGES/kanagram.mo +share/locale/sl/LC_MESSAGES/kapman.mo share/locale/sl/LC_MESSAGES/kappfinder.mo share/locale/sl/LC_MESSAGES/kate.mo share/locale/sl/LC_MESSAGES/kateexternaltoolsplugin.mo @@ -216,7 +174,6 @@ share/locale/sl/LC_MESSAGES/katehtmltools.mo share/locale/sl/LC_MESSAGES/kateinsertcommand.mo share/locale/sl/LC_MESSAGES/katekjswrapper.mo share/locale/sl/LC_MESSAGES/katemailfilesplugin.mo -share/locale/sl/LC_MESSAGES/katemake.mo share/locale/sl/LC_MESSAGES/kateopenheader.mo share/locale/sl/LC_MESSAGES/katepart4.mo share/locale/sl/LC_MESSAGES/katepybrowse.mo @@ -234,14 +191,14 @@ share/locale/sl/LC_MESSAGES/kblocks.mo share/locale/sl/LC_MESSAGES/kbounce.mo share/locale/sl/LC_MESSAGES/kbreakout.mo share/locale/sl/LC_MESSAGES/kbruch.mo -share/locale/sl/LC_MESSAGES/kbstateapplet.mo share/locale/sl/LC_MESSAGES/kbugbuster.mo share/locale/sl/LC_MESSAGES/kcachegrind.mo share/locale/sl/LC_MESSAGES/kcalc.mo share/locale/sl/LC_MESSAGES/kcertpart.mo share/locale/sl/LC_MESSAGES/kcharselect.mo -share/locale/sl/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/sl/LC_MESSAGES/kcm_akonadi.mo share/locale/sl/LC_MESSAGES/kcm_autostart.mo +share/locale/sl/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/sl/LC_MESSAGES/kcm_emoticons.mo share/locale/sl/LC_MESSAGES/kcm_krfb.mo share/locale/sl/LC_MESSAGES/kcm_kwindesktop.mo @@ -251,6 +208,7 @@ share/locale/sl/LC_MESSAGES/kcm_pci.mo share/locale/sl/LC_MESSAGES/kcm_phonon.mo share/locale/sl/LC_MESSAGES/kcm_phononxine.mo share/locale/sl/LC_MESSAGES/kcm_solid.mo +share/locale/sl/LC_MESSAGES/kcm_standard_actions.mo share/locale/sl/LC_MESSAGES/kcmaccess.mo share/locale/sl/LC_MESSAGES/kcmaudiocd.mo share/locale/sl/LC_MESSAGES/kcmbackground.mo @@ -300,7 +258,6 @@ share/locale/sl/LC_MESSAGES/kcmsmartcard.mo share/locale/sl/LC_MESSAGES/kcmsmserver.mo share/locale/sl/LC_MESSAGES/kcmsolidproc.mo share/locale/sl/LC_MESSAGES/kcmstyle.mo -share/locale/sl/LC_MESSAGES/kcmtaskbar.mo share/locale/sl/LC_MESSAGES/kcmusb.mo share/locale/sl/LC_MESSAGES/kcmview1394.mo share/locale/sl/LC_MESSAGES/kcmxinerama.mo @@ -309,6 +266,7 @@ share/locale/sl/LC_MESSAGES/kcron.mo share/locale/sl/LC_MESSAGES/kdat.mo share/locale/sl/LC_MESSAGES/kde-menu.mo share/locale/sl/LC_MESSAGES/kdebugdialog.mo +share/locale/sl/LC_MESSAGES/kded_phononserver.mo share/locale/sl/LC_MESSAGES/kdelibs4.mo share/locale/sl/LC_MESSAGES/kdelibs_colors4.mo share/locale/sl/LC_MESSAGES/kdepasswd.mo @@ -319,6 +277,7 @@ share/locale/sl/LC_MESSAGES/kdessh.mo share/locale/sl/LC_MESSAGES/kdesu.mo share/locale/sl/LC_MESSAGES/kdesud.mo share/locale/sl/LC_MESSAGES/kdf.mo +share/locale/sl/LC_MESSAGES/kdgantt.mo share/locale/sl/LC_MESSAGES/kdgantt1.mo share/locale/sl/LC_MESSAGES/kdialog.mo share/locale/sl/LC_MESSAGES/kdiamond.mo @@ -368,12 +327,15 @@ share/locale/sl/LC_MESSAGES/khotnewstuff.mo share/locale/sl/LC_MESSAGES/khtmlkttsd.mo share/locale/sl/LC_MESSAGES/kiconfinder.mo share/locale/sl/LC_MESSAGES/kig.mo +share/locale/sl/LC_MESSAGES/killbots.mo share/locale/sl/LC_MESSAGES/kimagemapeditor.mo share/locale/sl/LC_MESSAGES/kinetd.mo share/locale/sl/LC_MESSAGES/kinfocenter.mo share/locale/sl/LC_MESSAGES/kio4.mo +share/locale/sl/LC_MESSAGES/kio_applications.mo share/locale/sl/LC_MESSAGES/kio_archive.mo share/locale/sl/LC_MESSAGES/kio_audiocd.mo +share/locale/sl/LC_MESSAGES/kio_bookmarks.mo share/locale/sl/LC_MESSAGES/kio_finger.mo share/locale/sl/LC_MESSAGES/kio_fish.mo share/locale/sl/LC_MESSAGES/kio_floppy.mo @@ -384,11 +346,11 @@ share/locale/sl/LC_MESSAGES/kio_jabberdisco.mo share/locale/sl/LC_MESSAGES/kio_ldap.mo share/locale/sl/LC_MESSAGES/kio_man.mo share/locale/sl/LC_MESSAGES/kio_mbox.mo +share/locale/sl/LC_MESSAGES/kio_nepomuksearch.mo share/locale/sl/LC_MESSAGES/kio_nfs.mo share/locale/sl/LC_MESSAGES/kio_nntp.mo share/locale/sl/LC_MESSAGES/kio_pop3.mo share/locale/sl/LC_MESSAGES/kio_remote.mo -share/locale/sl/LC_MESSAGES/kio_settings.mo share/locale/sl/LC_MESSAGES/kio_sftp.mo share/locale/sl/LC_MESSAGES/kio_sieve.mo share/locale/sl/LC_MESSAGES/kio_smb.mo @@ -436,7 +398,6 @@ share/locale/sl/LC_MESSAGES/kode.mo share/locale/sl/LC_MESSAGES/kolf.mo share/locale/sl/LC_MESSAGES/kollision.mo share/locale/sl/LC_MESSAGES/kolourpaint.mo -share/locale/sl/LC_MESSAGES/kommander.mo share/locale/sl/LC_MESSAGES/kompare.mo share/locale/sl/LC_MESSAGES/konqueror.mo share/locale/sl/LC_MESSAGES/konquest.mo @@ -451,7 +412,6 @@ share/locale/sl/LC_MESSAGES/kpackage.mo share/locale/sl/LC_MESSAGES/kpartsaver.mo share/locale/sl/LC_MESSAGES/kpasswdserver.mo share/locale/sl/LC_MESSAGES/kpat.mo -share/locale/sl/LC_MESSAGES/kpercentage.mo share/locale/sl/LC_MESSAGES/kpilot.mo share/locale/sl/LC_MESSAGES/kppp.mo share/locale/sl/LC_MESSAGES/kppplogview.mo @@ -475,19 +435,11 @@ share/locale/sl/LC_MESSAGES/kreversi.mo share/locale/sl/LC_MESSAGES/krfb.mo share/locale/sl/LC_MESSAGES/kruler.mo share/locale/sl/LC_MESSAGES/krunner.mo -share/locale/sl/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/sl/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/sl/LC_MESSAGES/krunner_contacts.mo -share/locale/sl/LC_MESSAGES/krunner_converterrunner.mo -share/locale/sl/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/sl/LC_MESSAGES/krunner_sessions.mo -share/locale/sl/LC_MESSAGES/krunner_shellrunner.mo -share/locale/sl/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/sl/LC_MESSAGES/krunner_xesam.mo share/locale/sl/LC_MESSAGES/ksame.mo share/locale/sl/LC_MESSAGES/ksayit.mo share/locale/sl/LC_MESSAGES/kscd.mo share/locale/sl/LC_MESSAGES/kscreensaver.mo +share/locale/sl/LC_MESSAGES/ksendemail.mo share/locale/sl/LC_MESSAGES/kshisen.mo share/locale/sl/LC_MESSAGES/kshorturifilter.mo share/locale/sl/LC_MESSAGES/ksirk.mo @@ -504,6 +456,7 @@ share/locale/sl/LC_MESSAGES/kstyle_keramik_config.mo share/locale/sl/LC_MESSAGES/kstyle_phase_config.mo share/locale/sl/LC_MESSAGES/ksudoku.mo share/locale/sl/LC_MESSAGES/ksysguard.mo +share/locale/sl/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sl/LC_MESSAGES/ksystraycmd.mo share/locale/sl/LC_MESSAGES/ksysv.mo share/locale/sl/LC_MESSAGES/kteatime.mo @@ -512,7 +465,6 @@ share/locale/sl/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/sl/LC_MESSAGES/kthememanager.mo share/locale/sl/LC_MESSAGES/ktimer.mo share/locale/sl/LC_MESSAGES/ktimetracker.mo -share/locale/sl/LC_MESSAGES/ktnef.mo share/locale/sl/LC_MESSAGES/ktouch.mo share/locale/sl/LC_MESSAGES/ktraderclient.mo share/locale/sl/LC_MESSAGES/kttsd.mo @@ -524,6 +476,7 @@ share/locale/sl/LC_MESSAGES/kuiserver.mo share/locale/sl/LC_MESSAGES/kuiviewer.mo share/locale/sl/LC_MESSAGES/kurifilter.mo share/locale/sl/LC_MESSAGES/kuser.mo +share/locale/sl/LC_MESSAGES/kwalletd.mo share/locale/sl/LC_MESSAGES/kwalletmanager.mo share/locale/sl/LC_MESSAGES/kwatchgnupg.mo share/locale/sl/LC_MESSAGES/kweather.mo @@ -569,11 +522,14 @@ share/locale/sl/LC_MESSAGES/libmailtransport.mo share/locale/sl/LC_MESSAGES/liboktetacore.mo share/locale/sl/LC_MESSAGES/libphonon.mo share/locale/sl/LC_MESSAGES/libplasma.mo +share/locale/sl/LC_MESSAGES/libplasmaclock.mo share/locale/sl/LC_MESSAGES/libtaskmanager.mo share/locale/sl/LC_MESSAGES/lokalize.mo share/locale/sl/LC_MESSAGES/lskat.mo share/locale/sl/LC_MESSAGES/marble.mo +share/locale/sl/LC_MESSAGES/marble_qt.mo share/locale/sl/LC_MESSAGES/nepomuk.mo +share/locale/sl/LC_MESSAGES/nepomuksearch.mo share/locale/sl/LC_MESSAGES/nsplugin.mo share/locale/sl/LC_MESSAGES/okteta.mo share/locale/sl/LC_MESSAGES/oktetapart.mo @@ -589,10 +545,15 @@ share/locale/sl/LC_MESSAGES/parley.mo share/locale/sl/LC_MESSAGES/phonon-xine.mo share/locale/sl/LC_MESSAGES/phonon_gstreamer.mo share/locale/sl/LC_MESSAGES/phonon_kde.mo +share/locale/sl/LC_MESSAGES/plasma-overlay.mo +share/locale/sl/LC_MESSAGES/plasma-shells-common.mo share/locale/sl/LC_MESSAGES/plasma.mo share/locale/sl/LC_MESSAGES/plasma_applet_battery.mo +share/locale/sl/LC_MESSAGES/plasma_applet_bball.mo share/locale/sl/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/sl/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/sl/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/sl/LC_MESSAGES/plasma_applet_charselect.mo share/locale/sl/LC_MESSAGES/plasma_applet_clock.mo share/locale/sl/LC_MESSAGES/plasma_applet_comic.mo share/locale/sl/LC_MESSAGES/plasma_applet_desktop.mo @@ -604,24 +565,57 @@ share/locale/sl/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/sl/LC_MESSAGES/plasma_applet_folderview.mo share/locale/sl/LC_MESSAGES/plasma_applet_frame.mo share/locale/sl/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/sl/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/sl/LC_MESSAGES/plasma_applet_kget.mo -share/locale/sl/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/sl/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/sl/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/sl/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/sl/LC_MESSAGES/plasma_applet_life.mo share/locale/sl/LC_MESSAGES/plasma_applet_luna.mo +share/locale/sl/LC_MESSAGES/plasma_applet_news.mo share/locale/sl/LC_MESSAGES/plasma_applet_notes.mo share/locale/sl/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/sl/LC_MESSAGES/plasma_applet_pager.mo share/locale/sl/LC_MESSAGES/plasma_applet_panel.mo +share/locale/sl/LC_MESSAGES/plasma_applet_paste.mo +share/locale/sl/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/sl/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/sl/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/sl/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/sl/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/sl/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/sl/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/sl/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/sl/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/sl/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/sl/LC_MESSAGES/plasma_applet_timer.mo share/locale/sl/LC_MESSAGES/plasma_applet_trash.mo share/locale/sl/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/sl/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/sl/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/sl/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/sl/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/sl/LC_MESSAGES/plasma_engine_dict.mo +share/locale/sl/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/sl/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/sl/LC_MESSAGES/plasma_engine_rss.mo +share/locale/sl/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/sl/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/sl/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/sl/LC_MESSAGES/plasma_runner_locations.mo +share/locale/sl/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/sl/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/sl/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/sl/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/sl/LC_MESSAGES/plasma_runner_shell.mo +share/locale/sl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/sl/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/sl/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/sl/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/sl/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/sl/LC_MESSAGES/plasmaengineexplorer.mo share/locale/sl/LC_MESSAGES/plasmapkg.mo share/locale/sl/LC_MESSAGES/plasmoidviewer.mo +share/locale/sl/LC_MESSAGES/powerdevil.mo share/locale/sl/LC_MESSAGES/printer-applet.mo share/locale/sl/LC_MESSAGES/processcore.mo share/locale/sl/LC_MESSAGES/processui.mo @@ -634,7 +628,6 @@ share/locale/sl/LC_MESSAGES/soliduiserver.mo share/locale/sl/LC_MESSAGES/spy.mo share/locale/sl/LC_MESSAGES/strigila_diff.mo share/locale/sl/LC_MESSAGES/superkaramba.mo -share/locale/sl/LC_MESSAGES/svgpart.mo share/locale/sl/LC_MESSAGES/sweeper.mo share/locale/sl/LC_MESSAGES/systemsettings.mo share/locale/sl/LC_MESSAGES/timezones4.mo @@ -653,31 +646,19 @@ share/locale/sl/entry.desktop @dirrm share/doc/HTML/sl/kinfocenter/pci @dirrm share/doc/HTML/sl/kinfocenter/partitions @dirrm share/doc/HTML/sl/kinfocenter/dma -@dirrm share/doc/HTML/sl/kinfocenter/blockdevices @dirrm share/doc/HTML/sl/kinfocenter -@dirrm share/doc/HTML/sl/khelpcenter @dirrm share/doc/HTML/sl/kfind @dirrm share/doc/HTML/sl/kdm @dirrm share/doc/HTML/sl/kdesu -@dirrm share/doc/HTML/sl/kcontrol/windowmanagement @dirrm share/doc/HTML/sl/kcontrol/spellchecking @dirrm share/doc/HTML/sl/kcontrol/smb -@dirrm share/doc/HTML/sl/kcontrol/powerctrl -@dirrm share/doc/HTML/sl/kcontrol/laptop -@dirrm share/doc/HTML/sl/kcontrol/kwindecoration -@dirrm share/doc/HTML/sl/kcontrol/keyboard @dirrm share/doc/HTML/sl/kcontrol/kcmsmserver -@dirrm share/doc/HTML/sl/kcontrol/kcmlowbatwarn -@dirrm share/doc/HTML/sl/kcontrol/kcmlowbatcrit @dirrm share/doc/HTML/sl/kcontrol/kcmlaunch @dirrm share/doc/HTML/sl/kcontrol/kcmcss -@dirrm share/doc/HTML/sl/kcontrol/kalarmd @dirrm share/doc/HTML/sl/kcontrol/filetypes @dirrm share/doc/HTML/sl/kcontrol/ebrowsing @dirrm share/doc/HTML/sl/kcontrol/crypto @dirrm share/doc/HTML/sl/kcontrol/cookies -@dirrm share/doc/HTML/sl/kcontrol/clock -@dirrm share/doc/HTML/sl/kcontrol/bell @dirrm share/doc/HTML/sl/kcontrol @dirrm share/doc/HTML/sl/kaddressbook @dirrm share/apps/kvtml/sl diff --git a/misc/kde4-l10n-sr/distinfo b/misc/kde4-l10n-sr/distinfo index d5834b7a669f..f08758b6be29 100644 --- a/misc/kde4-l10n-sr/distinfo +++ b/misc/kde4-l10n-sr/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-sr-4.1.4.tar.bz2) = a60f826a7fcb82e23851fabf03f52fa7 -SHA256 (KDE/kde-l10n/kde-l10n-sr-4.1.4.tar.bz2) = b35dc53879a8ad09129c3fc2b26ba2bc68778ecd2fcdbf83e0f8ff9e275d1dbd -SIZE (KDE/kde-l10n/kde-l10n-sr-4.1.4.tar.bz2) = 1903065 +MD5 (KDE/kde-l10n/kde-l10n-sr-4.2.0.tar.bz2) = 8d58ae783752ba8129df1e3866e8a089 +SHA256 (KDE/kde-l10n/kde-l10n-sr-4.2.0.tar.bz2) = 1cba9a3921e27c5dd817b10be8f00fc8117de945f518f13dc8d3aca22d7812d2 +SIZE (KDE/kde-l10n/kde-l10n-sr-4.2.0.tar.bz2) = 2345388 diff --git a/misc/kde4-l10n-sr/pkg-plist b/misc/kde4-l10n-sr/pkg-plist index c2cc178595ec..3bc11007ada4 100644 --- a/misc/kde4-l10n-sr/pkg-plist +++ b/misc/kde4-l10n-sr/pkg-plist @@ -1,14 +1,6 @@ -share/apps/desktoptheme/default/widgets/l10n/sr/branding.svg -share/apps/desktoptheme/default/widgets/l10n/sr@latin/branding.svg -share/apps/desktoptheme/heron/widgets/l10n/sr/picture-frame-default.svg -share/apps/desktoptheme/slim-glow/widgets/l10n/sr/notes.svg -share/apps/desktoptheme/slim-glow/widgets/l10n/sr/picture-frame-default.svg -share/apps/desktoptheme/slim-glow/widgets/l10n/sr@latin/notes.svg -share/apps/katepart/syntax/logohighlightstyle.sr.xml -share/apps/katepart/syntax/logohighlightstyle.sr@latin.xml +share/apps/desktoptheme/default/widgets/l10n/sr/branding.svgz +share/apps/desktoptheme/default/widgets/l10n/sr@latin/branding.svgz share/apps/khangman/sr@latin.txt -share/apps/ksplash/Themes/Default/1600x1200/l10n/sr/rectangle.png -share/apps/ksplash/Themes/Default/1600x1200/l10n/sr@latin/rectangle.png share/apps/ktuberling/sounds/sr.soundtheme share/apps/ktuberling/sounds/sr/brkovi.wav share/apps/ktuberling/sounds/sr/cigara.wav @@ -26,16 +18,6 @@ share/apps/ktuberling/sounds/sr/usta.wav share/apps/ktuberling/sounds/sr/uvo.wav share/apps/ktuberling/sounds/sr/znacka.wav share/apps/ktuberling/sounds/sr@latin.soundtheme -share/apps/kturtle/data/logokeywords.sr.xml -share/apps/kturtle/data/logokeywords.sr@latin.xml -share/apps/kturtle/examples/sr/curly.logo -share/apps/kturtle/examples/sr/example1.logo -share/apps/kturtle/examples/sr/square.logo -share/apps/kturtle/examples/sr/triangle.logo -share/apps/kturtle/examples/sr@latin/curly.logo -share/apps/kturtle/examples/sr@latin/example1.logo -share/apps/kturtle/examples/sr@latin/square.logo -share/apps/kturtle/examples/sr@latin/triangle.logo share/apps/kvtml/sr/animals.kvtml share/apps/kvtml/sr/easy.kvtml share/apps/kvtml/sr/hard.kvtml @@ -55,6 +37,57 @@ share/doc/HTML/sr/khelpcenter/help.docbook share/doc/HTML/sr/khelpcenter/index.cache.bz2 share/doc/HTML/sr/khelpcenter/index.docbook share/doc/HTML/sr/khelpcenter/support.docbook +share/doc/HTML/sr/khelpcenter/userguide/accessibility.docbook +share/doc/HTML/sr/khelpcenter/userguide/base-kde-applications.docbook +share/doc/HTML/sr/khelpcenter/userguide/browser-fine-tuning.docbook +share/doc/HTML/sr/khelpcenter/userguide/burning-cds.docbook +share/doc/HTML/sr/khelpcenter/userguide/common +share/doc/HTML/sr/khelpcenter/userguide/control-center.docbook +share/doc/HTML/sr/khelpcenter/userguide/creating-graphics.docbook +share/doc/HTML/sr/khelpcenter/userguide/credits-and-license.docbook +share/doc/HTML/sr/khelpcenter/userguide/customizing-desktop.docbook +share/doc/HTML/sr/khelpcenter/userguide/email.docbook +share/doc/HTML/sr/khelpcenter/userguide/extragear-applications.docbook +share/doc/HTML/sr/khelpcenter/userguide/file-sharing.docbook +share/doc/HTML/sr/khelpcenter/userguide/font-installation.docbook +share/doc/HTML/sr/khelpcenter/userguide/getting-help.docbook +share/doc/HTML/sr/khelpcenter/userguide/glossary.docbook +share/doc/HTML/sr/khelpcenter/userguide/groupware-kontact.docbook +share/doc/HTML/sr/khelpcenter/userguide/index.cache.bz2 +share/doc/HTML/sr/khelpcenter/userguide/index.docbook +share/doc/HTML/sr/khelpcenter/userguide/internet-shortcuts.docbook +share/doc/HTML/sr/khelpcenter/userguide/kde-as-root.docbook +share/doc/HTML/sr/khelpcenter/userguide/kde-edutainment.docbook +share/doc/HTML/sr/khelpcenter/userguide/kde-for-admins.docbook +share/doc/HTML/sr/khelpcenter/userguide/kde-office.docbook +share/doc/HTML/sr/khelpcenter/userguide/konsole-intro.docbook +share/doc/HTML/sr/khelpcenter/userguide/messaging-intro.docbook +share/doc/HTML/sr/khelpcenter/userguide/migrator-applications.docbook +share/doc/HTML/sr/khelpcenter/userguide/migrator-dictionary.docbook +share/doc/HTML/sr/khelpcenter/userguide/net-connection-setup.docbook +share/doc/HTML/sr/khelpcenter/userguide/networking-with-windows.docbook +share/doc/HTML/sr/khelpcenter/userguide/panel-and-desktop.docbook +share/doc/HTML/sr/khelpcenter/userguide/pdf-files.docbook +share/doc/HTML/sr/khelpcenter/userguide/playing-audiocds.docbook +share/doc/HTML/sr/khelpcenter/userguide/playing-movies.docbook +share/doc/HTML/sr/khelpcenter/userguide/playing-music.docbook +share/doc/HTML/sr/khelpcenter/userguide/printer-setup.docbook +share/doc/HTML/sr/khelpcenter/userguide/printing-from-apps.docbook +share/doc/HTML/sr/khelpcenter/userguide/programs-and-documents.docbook +share/doc/HTML/sr/khelpcenter/userguide/programs-controlling.docbook +share/doc/HTML/sr/khelpcenter/userguide/removable-disks.docbook +share/doc/HTML/sr/khelpcenter/userguide/screen-captures.docbook +share/doc/HTML/sr/khelpcenter/userguide/shared-sessions.docbook +share/doc/HTML/sr/khelpcenter/userguide/standard-menu-entries.docbook +share/doc/HTML/sr/khelpcenter/userguide/switching-sessions.docbook +share/doc/HTML/sr/khelpcenter/userguide/the-filemanager.docbook +share/doc/HTML/sr/khelpcenter/userguide/troubleshooting-network-x.docbook +share/doc/HTML/sr/khelpcenter/userguide/troubleshooting-no-open.docbook +share/doc/HTML/sr/khelpcenter/userguide/under-the-hood.docbook +share/doc/HTML/sr/khelpcenter/userguide/usenet.docbook +share/doc/HTML/sr/khelpcenter/userguide/where-next.docbook +share/doc/HTML/sr/khelpcenter/userguide/windows-how-to.docbook +share/doc/HTML/sr/khelpcenter/userguide/your-kde-account.docbook share/doc/HTML/sr/khelpcenter/welcome.docbook share/doc/HTML/sr/khelpcenter/whatiskde.docbook share/doc/HTML/sr/lokalize/common @@ -72,6 +105,57 @@ share/doc/HTML/sr@latin/khelpcenter/help.docbook share/doc/HTML/sr@latin/khelpcenter/index.cache.bz2 share/doc/HTML/sr@latin/khelpcenter/index.docbook share/doc/HTML/sr@latin/khelpcenter/support.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/accessibility.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/base-kde-applications.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/browser-fine-tuning.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/burning-cds.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/common +share/doc/HTML/sr@latin/khelpcenter/userguide/control-center.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/creating-graphics.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/credits-and-license.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/customizing-desktop.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/email.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/extragear-applications.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/file-sharing.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/font-installation.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/getting-help.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/glossary.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/groupware-kontact.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/index.cache.bz2 +share/doc/HTML/sr@latin/khelpcenter/userguide/index.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/internet-shortcuts.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/kde-as-root.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/kde-edutainment.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/kde-for-admins.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/kde-office.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/konsole-intro.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/messaging-intro.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/migrator-applications.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/migrator-dictionary.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/net-connection-setup.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/networking-with-windows.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/panel-and-desktop.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/pdf-files.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/playing-audiocds.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/playing-movies.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/playing-music.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/printer-setup.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/printing-from-apps.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/programs-and-documents.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/programs-controlling.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/removable-disks.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/screen-captures.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/shared-sessions.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/standard-menu-entries.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/switching-sessions.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/the-filemanager.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/troubleshooting-network-x.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/troubleshooting-no-open.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/under-the-hood.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/usenet.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/where-next.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/windows-how-to.docbook +share/doc/HTML/sr@latin/khelpcenter/userguide/your-kde-account.docbook share/doc/HTML/sr@latin/khelpcenter/welcome.docbook share/doc/HTML/sr@latin/khelpcenter/whatiskde.docbook share/doc/HTML/sr@latin/lokalize/common @@ -142,7 +226,9 @@ share/locale/sr/LC_MESSAGES/kabc_net.mo share/locale/sr/LC_MESSAGES/kabcformat_binary.mo share/locale/sr/LC_MESSAGES/kaccess.mo share/locale/sr/LC_MESSAGES/kappfinder.mo +share/locale/sr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr/LC_MESSAGES/kate.mo +share/locale/sr/LC_MESSAGES/katebuild-plugin.mo share/locale/sr/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr/LC_MESSAGES/katefiletemplates.mo @@ -153,7 +239,6 @@ share/locale/sr/LC_MESSAGES/kateinsertcommand.mo share/locale/sr/LC_MESSAGES/katekjswrapper.mo share/locale/sr/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr/LC_MESSAGES/katemailfilesplugin.mo -share/locale/sr/LC_MESSAGES/katemake.mo share/locale/sr/LC_MESSAGES/kateopenheader.mo share/locale/sr/LC_MESSAGES/katepart4.mo share/locale/sr/LC_MESSAGES/katepybrowse.mo @@ -167,6 +252,7 @@ share/locale/sr/LC_MESSAGES/katexmltools.mo share/locale/sr/LC_MESSAGES/kblankscrn.mo share/locale/sr/LC_MESSAGES/kcertpart.mo share/locale/sr/LC_MESSAGES/kcm_autostart.mo +share/locale/sr/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/sr/LC_MESSAGES/kcm_emoticons.mo share/locale/sr/LC_MESSAGES/kcm_kwindesktop.mo share/locale/sr/LC_MESSAGES/kcm_memory.mo @@ -175,6 +261,7 @@ share/locale/sr/LC_MESSAGES/kcm_pci.mo share/locale/sr/LC_MESSAGES/kcm_phonon.mo share/locale/sr/LC_MESSAGES/kcm_phononxine.mo share/locale/sr/LC_MESSAGES/kcm_solid.mo +share/locale/sr/LC_MESSAGES/kcm_standard_actions.mo share/locale/sr/LC_MESSAGES/kcmaccess.mo share/locale/sr/LC_MESSAGES/kcmaudiocd.mo share/locale/sr/LC_MESSAGES/kcmbackground.mo @@ -219,12 +306,13 @@ share/locale/sr/LC_MESSAGES/kcmsmartcard.mo share/locale/sr/LC_MESSAGES/kcmsmserver.mo share/locale/sr/LC_MESSAGES/kcmsolidproc.mo share/locale/sr/LC_MESSAGES/kcmstyle.mo -share/locale/sr/LC_MESSAGES/kcmtaskbar.mo share/locale/sr/LC_MESSAGES/kcmusb.mo share/locale/sr/LC_MESSAGES/kcmview1394.mo share/locale/sr/LC_MESSAGES/kcmxinerama.mo share/locale/sr/LC_MESSAGES/kde-menu.mo +share/locale/sr/LC_MESSAGES/kdeasciiquarium.mo share/locale/sr/LC_MESSAGES/kdebugdialog.mo +share/locale/sr/LC_MESSAGES/kded_phononserver.mo share/locale/sr/LC_MESSAGES/kdelibs4.mo share/locale/sr/LC_MESSAGES/kdelibs_colors4.mo share/locale/sr/LC_MESSAGES/kdepasswd.mo @@ -248,6 +336,7 @@ share/locale/sr/LC_MESSAGES/kfileaudiopreview4.mo share/locale/sr/LC_MESSAGES/kfindpart.mo share/locale/sr/LC_MESSAGES/kfmclient.mo share/locale/sr/LC_MESSAGES/kfontinst.mo +share/locale/sr/LC_MESSAGES/kget.mo share/locale/sr/LC_MESSAGES/kgreet_classic.mo share/locale/sr/LC_MESSAGES/kgreet_generic.mo share/locale/sr/LC_MESSAGES/kgreet_winbind.mo @@ -258,8 +347,10 @@ share/locale/sr/LC_MESSAGES/khtmlkttsd.mo share/locale/sr/LC_MESSAGES/kiconfinder.mo share/locale/sr/LC_MESSAGES/kinfocenter.mo share/locale/sr/LC_MESSAGES/kio4.mo +share/locale/sr/LC_MESSAGES/kio_applications.mo share/locale/sr/LC_MESSAGES/kio_archive.mo share/locale/sr/LC_MESSAGES/kio_audiocd.mo +share/locale/sr/LC_MESSAGES/kio_bookmarks.mo share/locale/sr/LC_MESSAGES/kio_finger.mo share/locale/sr/LC_MESSAGES/kio_fish.mo share/locale/sr/LC_MESSAGES/kio_floppy.mo @@ -268,11 +359,11 @@ share/locale/sr/LC_MESSAGES/kio_imap4.mo share/locale/sr/LC_MESSAGES/kio_ldap.mo share/locale/sr/LC_MESSAGES/kio_man.mo share/locale/sr/LC_MESSAGES/kio_mbox.mo +share/locale/sr/LC_MESSAGES/kio_nepomuksearch.mo share/locale/sr/LC_MESSAGES/kio_nfs.mo share/locale/sr/LC_MESSAGES/kio_nntp.mo share/locale/sr/LC_MESSAGES/kio_pop3.mo share/locale/sr/LC_MESSAGES/kio_remote.mo -share/locale/sr/LC_MESSAGES/kio_settings.mo share/locale/sr/LC_MESSAGES/kio_sftp.mo share/locale/sr/LC_MESSAGES/kio_sieve.mo share/locale/sr/LC_MESSAGES/kio_smb.mo @@ -297,15 +388,6 @@ share/locale/sr/LC_MESSAGES/krandr.mo share/locale/sr/LC_MESSAGES/krdb.mo share/locale/sr/LC_MESSAGES/kreadconfig.mo share/locale/sr/LC_MESSAGES/krunner.mo -share/locale/sr/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/sr/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/sr/LC_MESSAGES/krunner_contacts.mo -share/locale/sr/LC_MESSAGES/krunner_converterrunner.mo -share/locale/sr/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/sr/LC_MESSAGES/krunner_sessions.mo -share/locale/sr/LC_MESSAGES/krunner_shellrunner.mo -share/locale/sr/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/sr/LC_MESSAGES/krunner_xesam.mo share/locale/sr/LC_MESSAGES/kscd.mo share/locale/sr/LC_MESSAGES/kscreensaver.mo share/locale/sr/LC_MESSAGES/kshorturifilter.mo @@ -316,6 +398,7 @@ share/locale/sr/LC_MESSAGES/kstyle_config.mo share/locale/sr/LC_MESSAGES/kstyle_keramik_config.mo share/locale/sr/LC_MESSAGES/kstyle_phase_config.mo share/locale/sr/LC_MESSAGES/ksysguard.mo +share/locale/sr/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sr/LC_MESSAGES/ksystraycmd.mo share/locale/sr/LC_MESSAGES/kteatime.mo share/locale/sr/LC_MESSAGES/ktexteditor_plugins.mo @@ -324,6 +407,7 @@ share/locale/sr/LC_MESSAGES/ktraderclient.mo share/locale/sr/LC_MESSAGES/ktux.mo share/locale/sr/LC_MESSAGES/kuiserver.mo share/locale/sr/LC_MESSAGES/kurifilter.mo +share/locale/sr/LC_MESSAGES/kwalletd.mo share/locale/sr/LC_MESSAGES/kweather.mo share/locale/sr/LC_MESSAGES/kwin.mo share/locale/sr/LC_MESSAGES/kwin_art_clients.mo @@ -354,17 +438,24 @@ share/locale/sr/LC_MESSAGES/libkxmlrpcclient.mo share/locale/sr/LC_MESSAGES/libmailtransport.mo share/locale/sr/LC_MESSAGES/libphonon.mo share/locale/sr/LC_MESSAGES/libplasma.mo +share/locale/sr/LC_MESSAGES/libplasmaclock.mo share/locale/sr/LC_MESSAGES/libtaskmanager.mo share/locale/sr/LC_MESSAGES/lokalize.mo share/locale/sr/LC_MESSAGES/nepomuk.mo +share/locale/sr/LC_MESSAGES/nepomuksearch.mo share/locale/sr/LC_MESSAGES/nsplugin.mo share/locale/sr/LC_MESSAGES/phonon-xine.mo share/locale/sr/LC_MESSAGES/phonon_gstreamer.mo share/locale/sr/LC_MESSAGES/phonon_kde.mo +share/locale/sr/LC_MESSAGES/plasma-overlay.mo +share/locale/sr/LC_MESSAGES/plasma-shells-common.mo share/locale/sr/LC_MESSAGES/plasma.mo share/locale/sr/LC_MESSAGES/plasma_applet_battery.mo +share/locale/sr/LC_MESSAGES/plasma_applet_bball.mo share/locale/sr/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/sr/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/sr/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/sr/LC_MESSAGES/plasma_applet_charselect.mo share/locale/sr/LC_MESSAGES/plasma_applet_clock.mo share/locale/sr/LC_MESSAGES/plasma_applet_comic.mo share/locale/sr/LC_MESSAGES/plasma_applet_desktop.mo @@ -376,22 +467,57 @@ share/locale/sr/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/sr/LC_MESSAGES/plasma_applet_folderview.mo share/locale/sr/LC_MESSAGES/plasma_applet_frame.mo share/locale/sr/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/sr/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/sr/LC_MESSAGES/plasma_applet_katesession.mo +share/locale/sr/LC_MESSAGES/plasma_applet_kget.mo share/locale/sr/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/sr/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/sr/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/sr/LC_MESSAGES/plasma_applet_life.mo share/locale/sr/LC_MESSAGES/plasma_applet_luna.mo +share/locale/sr/LC_MESSAGES/plasma_applet_news.mo share/locale/sr/LC_MESSAGES/plasma_applet_notes.mo share/locale/sr/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/sr/LC_MESSAGES/plasma_applet_pager.mo share/locale/sr/LC_MESSAGES/plasma_applet_panel.mo +share/locale/sr/LC_MESSAGES/plasma_applet_paste.mo +share/locale/sr/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/sr/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/sr/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/sr/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/sr/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/sr/LC_MESSAGES/plasma_applet_showdesktop.mo +share/locale/sr/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/sr/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/sr/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/sr/LC_MESSAGES/plasma_applet_timer.mo share/locale/sr/LC_MESSAGES/plasma_applet_trash.mo share/locale/sr/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/sr/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/sr/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/sr/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/sr/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/sr/LC_MESSAGES/plasma_engine_dict.mo +share/locale/sr/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/sr/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/sr/LC_MESSAGES/plasma_engine_rss.mo +share/locale/sr/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/sr/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/sr/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/sr/LC_MESSAGES/plasma_runner_locations.mo +share/locale/sr/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/sr/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/sr/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/sr/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/sr/LC_MESSAGES/plasma_runner_shell.mo +share/locale/sr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/sr/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/sr/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/sr/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/sr/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/sr/LC_MESSAGES/plasmaengineexplorer.mo share/locale/sr/LC_MESSAGES/plasmapkg.mo share/locale/sr/LC_MESSAGES/plasmoidviewer.mo +share/locale/sr/LC_MESSAGES/powerdevil.mo share/locale/sr/LC_MESSAGES/processcore.mo share/locale/sr/LC_MESSAGES/processui.mo share/locale/sr/LC_MESSAGES/solid-bluetooth.mo @@ -405,6 +531,7 @@ share/locale/sr/LC_MESSAGES/timezones4.mo share/locale/sr/LC_MESSAGES/useraccount.mo share/locale/sr/LC_SCRIPTS/kdelibs4/apps.pmap share/locale/sr/LC_SCRIPTS/kdelibs4/apps.pmapc +share/locale/sr/LC_SCRIPTS/kdelibs4/calendar.pmap share/locale/sr/LC_SCRIPTS/kdelibs4/contributors.pmap share/locale/sr/LC_SCRIPTS/kdelibs4/countries.pmap share/locale/sr/LC_SCRIPTS/kdelibs4/fonts.pmap @@ -493,46 +620,22 @@ share/locale/sr@latin/entry.desktop @dirrm share/icons/hicolor/16x16/actions/l10n @dirrm share/doc/HTML/sr@latin/sonnet @dirrm share/doc/HTML/sr@latin/lokalize +@dirrm share/doc/HTML/sr@latin/khelpcenter/userguide @dirrm share/doc/HTML/sr@latin/khelpcenter @dirrm share/doc/HTML/sr@latin/dolphin @dirrm share/doc/HTML/sr@latin @dirrm share/doc/HTML/sr/sonnet @dirrm share/doc/HTML/sr/lokalize +@dirrm share/doc/HTML/sr/khelpcenter/userguide @dirrm share/doc/HTML/sr/khelpcenter @dirrm share/doc/HTML/sr/dolphin @dirrm share/apps/kvtml/sr@latin @dirrm share/apps/kvtml/sr @dirrm share/apps/kvtml -@dirrm share/apps/kturtle/examples/sr@latin -@dirrm share/apps/kturtle/examples/sr -@dirrm share/apps/kturtle/examples -@dirrm share/apps/kturtle/data -@dirrm share/apps/kturtle @dirrm share/apps/ktuberling/sounds/sr @dirrm share/apps/ktuberling/sounds @dirrm share/apps/ktuberling -@dirrm share/apps/ksplash/Themes/Default/1600x1200/l10n/sr@latin -@dirrm share/apps/ksplash/Themes/Default/1600x1200/l10n/sr -@dirrm share/apps/ksplash/Themes/Default/1600x1200/l10n -@dirrm share/apps/ksplash/Themes/Default/1600x1200 -@dirrm share/apps/ksplash/Themes/Default -@dirrm share/apps/ksplash/Themes -@dirrm share/apps/ksplash @dirrm share/apps/khangman -@dirrm share/apps/katepart/syntax -@dirrm share/apps/katepart -@dirrm share/apps/desktoptheme/slim-glow/widgets/l10n/sr@latin -@dirrm share/apps/desktoptheme/slim-glow/widgets/l10n/sr -@dirrm share/apps/desktoptheme/slim-glow/widgets/l10n -@dirrm share/apps/desktoptheme/slim-glow/widgets -@dirrm share/apps/desktoptheme/slim-glow -@dirrm share/apps/desktoptheme/heron/widgets/l10n/sr -@dirrm share/apps/desktoptheme/heron/widgets/l10n -@dirrm share/apps/desktoptheme/heron/widgets -@dirrm share/apps/desktoptheme/heron @dirrm share/apps/desktoptheme/default/widgets/l10n/sr@latin @dirrm share/apps/desktoptheme/default/widgets/l10n/sr @dirrm share/apps/desktoptheme/default/widgets/l10n -@dirrm share/apps/desktoptheme/default/widgets -@dirrm share/apps/desktoptheme/default -@dirrm share/apps/desktoptheme diff --git a/misc/kde4-l10n-sv/Makefile b/misc/kde4-l10n-sv/Makefile index c3f88c8935cf..726ba4903258 100644 --- a/misc/kde4-l10n-sv/Makefile +++ b/misc/kde4-l10n-sv/Makefile @@ -14,6 +14,9 @@ COMMENT= Swedish messages and documentation for KDE4 KDE4_L10N= sv +MANLANG= ${KDE4_L10N} +.include <${.CURDIR}/Makefile.man> + post-extract: ${MKDIR} ${WRKSRC}/build diff --git a/misc/kde4-l10n-sv/distinfo b/misc/kde4-l10n-sv/distinfo index a97e9e323b2c..039bea6af623 100644 --- a/misc/kde4-l10n-sv/distinfo +++ b/misc/kde4-l10n-sv/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-sv-4.1.4.tar.bz2) = 35e967ea1a7b93629a7591e7a2736da0 -SHA256 (KDE/kde-l10n/kde-l10n-sv-4.1.4.tar.bz2) = 08474956a927a4673d4437c3353720401537a2982af17aef623e530a9dc67408 -SIZE (KDE/kde-l10n/kde-l10n-sv-4.1.4.tar.bz2) = 21475819 +MD5 (KDE/kde-l10n/kde-l10n-sv-4.2.0.tar.bz2) = efbdb69f70e723c1ce0783e2a0693aaf +SHA256 (KDE/kde-l10n/kde-l10n-sv-4.2.0.tar.bz2) = 9a8b9005e3ed894facb09d4a21a9f2bfe84fc7b3586bde9ded4806429b85fc87 +SIZE (KDE/kde-l10n/kde-l10n-sv-4.2.0.tar.bz2) = 21047908 diff --git a/misc/kde4-l10n-sv/pkg-plist b/misc/kde4-l10n-sv/pkg-plist index 70961f25ae97..1a41fba4b1de 100644 --- a/misc/kde4-l10n-sv/pkg-plist +++ b/misc/kde4-l10n-sv/pkg-plist @@ -120,6 +120,9 @@ share/doc/HTML/sv/juk/juk-main.png share/doc/HTML/sv/juk/juk-tag-guesser.png share/doc/HTML/sv/juk/normal-playlist.png share/doc/HTML/sv/juk/search-playlist.png +share/doc/HTML/sv/kabcclient/common +share/doc/HTML/sv/kabcclient/index.cache.bz2 +share/doc/HTML/sv/kabcclient/index.docbook share/doc/HTML/sv/kaddressbook/addhost.png share/doc/HTML/sv/kaddressbook/common share/doc/HTML/sv/kaddressbook/conf.png @@ -176,9 +179,6 @@ share/doc/HTML/sv/kalzium/sidebar1.png share/doc/HTML/sv/kalzium/sidebar2.png share/doc/HTML/sv/kalzium/sidebar3.png share/doc/HTML/sv/kalzium/timeline.png -share/doc/HTML/sv/kamera/common -share/doc/HTML/sv/kamera/index.cache.bz2 -share/doc/HTML/sv/kamera/index.docbook share/doc/HTML/sv/kanagram/answer-highlight.png share/doc/HTML/sv/kanagram/common share/doc/HTML/sv/kanagram/general-settings.png @@ -192,10 +192,12 @@ share/doc/HTML/sv/kanagram/newstuff-settings.png share/doc/HTML/sv/kanagram/standard-fonts.png share/doc/HTML/sv/kanagram/vocab-editor.png share/doc/HTML/sv/kanagram/vocab-settings.png +share/doc/HTML/sv/kapman/common +share/doc/HTML/sv/kapman/index.cache.bz2 +share/doc/HTML/sv/kapman/index.docbook share/doc/HTML/sv/kapptemplate/common share/doc/HTML/sv/kapptemplate/index.cache.bz2 share/doc/HTML/sv/kapptemplate/index.docbook -share/doc/HTML/sv/kapptemplate/man-kapptemplate.1.docbook share/doc/HTML/sv/kate-plugins/common share/doc/HTML/sv/kate-plugins/configure_insertcommand.png share/doc/HTML/sv/kate-plugins/filetemplates.docbook @@ -282,6 +284,9 @@ share/doc/HTML/sv/kcontrol/bell/index.docbook share/doc/HTML/sv/kcontrol/blockdevices/common share/doc/HTML/sv/kcontrol/blockdevices/index.cache.bz2 share/doc/HTML/sv/kcontrol/blockdevices/index.docbook +share/doc/HTML/sv/kcontrol/bookmarks/common +share/doc/HTML/sv/kcontrol/bookmarks/index.cache.bz2 +share/doc/HTML/sv/kcontrol/bookmarks/index.docbook share/doc/HTML/sv/kcontrol/cache/common share/doc/HTML/sv/kcontrol/cache/index.cache.bz2 share/doc/HTML/sv/kcontrol/cache/index.docbook @@ -338,9 +343,9 @@ share/doc/HTML/sv/kcontrol/icons/index.docbook share/doc/HTML/sv/kcontrol/joystick/common share/doc/HTML/sv/kcontrol/joystick/index.cache.bz2 share/doc/HTML/sv/kcontrol/joystick/index.docbook -share/doc/HTML/sv/kcontrol/kalarmd/common -share/doc/HTML/sv/kcontrol/kalarmd/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kalarmd/index.docbook +share/doc/HTML/sv/kcontrol/kamera/common +share/doc/HTML/sv/kcontrol/kamera/index.cache.bz2 +share/doc/HTML/sv/kcontrol/kamera/index.docbook share/doc/HTML/sv/kcontrol/kcmaccess/common share/doc/HTML/sv/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmaccess/index.docbook @@ -356,12 +361,6 @@ share/doc/HTML/sv/kcontrol/kcmkonsole/index.docbook share/doc/HTML/sv/kcontrol/kcmlaunch/common share/doc/HTML/sv/kcontrol/kcmlaunch/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmlaunch/index.docbook -share/doc/HTML/sv/kcontrol/kcmlowbatcrit/common -share/doc/HTML/sv/kcontrol/kcmlowbatcrit/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kcmlowbatcrit/index.docbook -share/doc/HTML/sv/kcontrol/kcmlowbatwarn/common -share/doc/HTML/sv/kcontrol/kcmlowbatwarn/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kcmlowbatwarn/index.docbook share/doc/HTML/sv/kcontrol/kcmnotify/common share/doc/HTML/sv/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmnotify/index.docbook @@ -390,6 +389,12 @@ share/doc/HTML/sv/kcontrol/khtml/nsplugin.docbook share/doc/HTML/sv/kcontrol/knetworkconf/common share/doc/HTML/sv/kcontrol/knetworkconf/index.cache.bz2 share/doc/HTML/sv/kcontrol/knetworkconf/index.docbook +share/doc/HTML/sv/kcontrol/kresources/common +share/doc/HTML/sv/kcontrol/kresources/index.cache.bz2 +share/doc/HTML/sv/kcontrol/kresources/index.docbook +share/doc/HTML/sv/kcontrol/kwincompositing/common +share/doc/HTML/sv/kcontrol/kwincompositing/index.cache.bz2 +share/doc/HTML/sv/kcontrol/kwincompositing/index.docbook share/doc/HTML/sv/kcontrol/kwindecoration/common share/doc/HTML/sv/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwindecoration/index.docbook @@ -399,9 +404,6 @@ share/doc/HTML/sv/kcontrol/kxkb/index.docbook share/doc/HTML/sv/kcontrol/language/common share/doc/HTML/sv/kcontrol/language/index.cache.bz2 share/doc/HTML/sv/kcontrol/language/index.docbook -share/doc/HTML/sv/kcontrol/laptop/common -share/doc/HTML/sv/kcontrol/laptop/index.cache.bz2 -share/doc/HTML/sv/kcontrol/laptop/index.docbook share/doc/HTML/sv/kcontrol/mouse/common share/doc/HTML/sv/kcontrol/mouse/index.cache.bz2 share/doc/HTML/sv/kcontrol/mouse/index.docbook @@ -423,9 +425,9 @@ share/doc/HTML/sv/kcontrol/paths/index.docbook share/doc/HTML/sv/kcontrol/performance/common share/doc/HTML/sv/kcontrol/performance/index.cache.bz2 share/doc/HTML/sv/kcontrol/performance/index.docbook -share/doc/HTML/sv/kcontrol/powerctrl/common -share/doc/HTML/sv/kcontrol/powerctrl/index.cache.bz2 -share/doc/HTML/sv/kcontrol/powerctrl/index.docbook +share/doc/HTML/sv/kcontrol/powerdevil/common +share/doc/HTML/sv/kcontrol/powerdevil/index.cache.bz2 +share/doc/HTML/sv/kcontrol/powerdevil/index.docbook share/doc/HTML/sv/kcontrol/proxy/common share/doc/HTML/sv/kcontrol/proxy/index.cache.bz2 share/doc/HTML/sv/kcontrol/proxy/index.docbook @@ -448,9 +450,6 @@ share/doc/HTML/sv/kcontrol/useragent/index.docbook share/doc/HTML/sv/kcontrol/windowbehaviour/common share/doc/HTML/sv/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/sv/kcontrol/windowbehaviour/index.docbook -share/doc/HTML/sv/kcontrol/windowmanagement/common -share/doc/HTML/sv/kcontrol/windowmanagement/index.cache.bz2 -share/doc/HTML/sv/kcontrol/windowmanagement/index.docbook share/doc/HTML/sv/kcontrol/windowspecific/common share/doc/HTML/sv/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/sv/kcontrol/windowspecific/index.docbook @@ -727,6 +726,9 @@ share/doc/HTML/sv/kig/test_run_macro.png share/doc/HTML/sv/kig/text_label_attaching.png share/doc/HTML/sv/kig/text_label_wizard.png share/doc/HTML/sv/kig/text_label_wizard__select_property.png +share/doc/HTML/sv/killbots/common +share/doc/HTML/sv/killbots/index.cache.bz2 +share/doc/HTML/sv/killbots/index.docbook share/doc/HTML/sv/kimagemapeditor/common share/doc/HTML/sv/kimagemapeditor/index.cache.bz2 share/doc/HTML/sv/kimagemapeditor/index.docbook @@ -781,47 +783,6 @@ share/doc/HTML/sv/kinfocenter/usb/index.docbook share/doc/HTML/sv/kinfocenter/xserver/common share/doc/HTML/sv/kinfocenter/xserver/index.cache.bz2 share/doc/HTML/sv/kinfocenter/xserver/index.docbook -share/doc/HTML/sv/kioslave/bzip.docbook -share/doc/HTML/sv/kioslave/bzip2.docbook -share/doc/HTML/sv/kioslave/cgi.docbook -share/doc/HTML/sv/kioslave/common -share/doc/HTML/sv/kioslave/data.docbook -share/doc/HTML/sv/kioslave/file.docbook -share/doc/HTML/sv/kioslave/finger.docbook -share/doc/HTML/sv/kioslave/fish.docbook -share/doc/HTML/sv/kioslave/floppy.docbook -share/doc/HTML/sv/kioslave/ftp.docbook -share/doc/HTML/sv/kioslave/gopher.docbook -share/doc/HTML/sv/kioslave/gzip.docbook -share/doc/HTML/sv/kioslave/help.docbook -share/doc/HTML/sv/kioslave/http.docbook -share/doc/HTML/sv/kioslave/https.docbook -share/doc/HTML/sv/kioslave/imap.docbook -share/doc/HTML/sv/kioslave/imaps.docbook -share/doc/HTML/sv/kioslave/index.cache.bz2 -share/doc/HTML/sv/kioslave/index.docbook -share/doc/HTML/sv/kioslave/info.docbook -share/doc/HTML/sv/kioslave/lan.docbook -share/doc/HTML/sv/kioslave/ldap.docbook -share/doc/HTML/sv/kioslave/mac.docbook -share/doc/HTML/sv/kioslave/mailto.docbook -share/doc/HTML/sv/kioslave/man.docbook -share/doc/HTML/sv/kioslave/mrml.docbook -share/doc/HTML/sv/kioslave/news.docbook -share/doc/HTML/sv/kioslave/nfs.docbook -share/doc/HTML/sv/kioslave/nntp.docbook -share/doc/HTML/sv/kioslave/pop3.docbook -share/doc/HTML/sv/kioslave/pop3s.docbook -share/doc/HTML/sv/kioslave/rlan.docbook -share/doc/HTML/sv/kioslave/rlogin.docbook -share/doc/HTML/sv/kioslave/sftp.docbook -share/doc/HTML/sv/kioslave/smb.docbook -share/doc/HTML/sv/kioslave/smtp.docbook -share/doc/HTML/sv/kioslave/tar.docbook -share/doc/HTML/sv/kioslave/telnet.docbook -share/doc/HTML/sv/kioslave/thumbnail.docbook -share/doc/HTML/sv/kioslave/webdav.docbook -share/doc/HTML/sv/kioslave/webdavs.docbook share/doc/HTML/sv/kiriki/common share/doc/HTML/sv/kiriki/index.cache.bz2 share/doc/HTML/sv/kiriki/index.docbook @@ -904,9 +865,6 @@ share/doc/HTML/sv/kmix/kmix-window.png share/doc/HTML/sv/kmobiletools/common share/doc/HTML/sv/kmobiletools/index.cache.bz2 share/doc/HTML/sv/kmobiletools/index.docbook -share/doc/HTML/sv/kmoon/common -share/doc/HTML/sv/kmoon/index.cache.bz2 -share/doc/HTML/sv/kmoon/index.docbook share/doc/HTML/sv/kmousetool/common share/doc/HTML/sv/kmousetool/index.cache.bz2 share/doc/HTML/sv/kmousetool/index.docbook @@ -946,28 +904,6 @@ share/doc/HTML/sv/knetattach/screenshot4.png share/doc/HTML/sv/knetwalk/common share/doc/HTML/sv/knetwalk/index.cache.bz2 share/doc/HTML/sv/knetwalk/index.docbook -share/doc/HTML/sv/knetworkconf/01.png -share/doc/HTML/sv/knetworkconf/02.png -share/doc/HTML/sv/knetworkconf/03.png -share/doc/HTML/sv/knetworkconf/04.png -share/doc/HTML/sv/knetworkconf/05.png -share/doc/HTML/sv/knetworkconf/06.png -share/doc/HTML/sv/knetworkconf/07.png -share/doc/HTML/sv/knetworkconf/09.png -share/doc/HTML/sv/knetworkconf/11.png -share/doc/HTML/sv/knetworkconf/common -share/doc/HTML/sv/knetworkconf/index.cache.bz2 -share/doc/HTML/sv/knetworkconf/index.docbook -share/doc/HTML/sv/knewsticker/common -share/doc/HTML/sv/knewsticker/contextmenu.png -share/doc/HTML/sv/knewsticker/index.cache.bz2 -share/doc/HTML/sv/knewsticker/index.docbook -share/doc/HTML/sv/knewsticker/kcmnewsticker-filters.png -share/doc/HTML/sv/knewsticker/kcmnewsticker-general.png -share/doc/HTML/sv/knewsticker/kcmnewsticker-newssitedialog.png -share/doc/HTML/sv/knewsticker/kcmnewsticker-newssources.png -share/doc/HTML/sv/knewsticker/kcmnewsticker-scrollerprefs.png -share/doc/HTML/sv/knewsticker/knewsticker-ownwindow.png share/doc/HTML/sv/knode/commands.docbook share/doc/HTML/sv/knode/common share/doc/HTML/sv/knode/credits.docbook @@ -1185,20 +1121,6 @@ share/doc/HTML/sv/kpat/common share/doc/HTML/sv/kpat/index.cache.bz2 share/doc/HTML/sv/kpat/index.docbook share/doc/HTML/sv/kpat/man-kpat.6.docbook -share/doc/HTML/sv/kpercentage/answer.png -share/doc/HTML/sv/kpercentage/commands.docbook -share/doc/HTML/sv/kpercentage/common -share/doc/HTML/sv/kpercentage/credits.docbook -share/doc/HTML/sv/kpercentage/devel.docbook -share/doc/HTML/sv/kpercentage/faq.docbook -share/doc/HTML/sv/kpercentage/help.png -share/doc/HTML/sv/kpercentage/index.cache.bz2 -share/doc/HTML/sv/kpercentage/index.docbook -share/doc/HTML/sv/kpercentage/install.docbook -share/doc/HTML/sv/kpercentage/introduction.docbook -share/doc/HTML/sv/kpercentage/main.png -share/doc/HTML/sv/kpercentage/using.docbook -share/doc/HTML/sv/kpercentage/welcome.png share/doc/HTML/sv/kpilot/common share/doc/HTML/sv/kpilot/configuration.docbook share/doc/HTML/sv/kpilot/faq.docbook @@ -1287,9 +1209,6 @@ share/doc/HTML/sv/kshisen/common share/doc/HTML/sv/kshisen/index.cache.bz2 share/doc/HTML/sv/kshisen/index.docbook share/doc/HTML/sv/kshisen/kshisen-configuration.png -share/doc/HTML/sv/ksim/common -share/doc/HTML/sv/ksim/index.cache.bz2 -share/doc/HTML/sv/ksim/index.docbook share/doc/HTML/sv/ksirk/common share/doc/HTML/sv/ksirk/index.cache.bz2 share/doc/HTML/sv/ksirk/index.docbook @@ -1349,7 +1268,6 @@ share/doc/HTML/sv/kstars/cpoles.docbook share/doc/HTML/sv/kstars/credits.docbook share/doc/HTML/sv/kstars/csphere.docbook share/doc/HTML/sv/kstars/darkmatter.docbook -share/doc/HTML/sv/kstars/dcop.docbook share/doc/HTML/sv/kstars/detaildialog.png share/doc/HTML/sv/kstars/details.docbook share/doc/HTML/sv/kstars/devicemanager.png @@ -1384,25 +1302,6 @@ share/doc/HTML/sv/kstars/lightcurve.png share/doc/HTML/sv/kstars/lightcurves.docbook share/doc/HTML/sv/kstars/luminosity.docbook share/doc/HTML/sv/kstars/magnitude.docbook -share/doc/HTML/sv/kstars/man-celestrongps.1.docbook -share/doc/HTML/sv/kstars/man-fliccd.1.docbook -share/doc/HTML/sv/kstars/man-indi_celestron_gps.1.docbook -share/doc/HTML/sv/kstars/man-indi_fli_ccd.1.docbook -share/doc/HTML/sv/kstars/man-indi_lx200_16.1.docbook -share/doc/HTML/sv/kstars/man-indi_lx200autostar.1.docbook -share/doc/HTML/sv/kstars/man-indi_lx200classic.1.docbook -share/doc/HTML/sv/kstars/man-indi_lx200generic.1.docbook -share/doc/HTML/sv/kstars/man-indi_temma.1.docbook -share/doc/HTML/sv/kstars/man-indi_v4l_generic.1.docbook -share/doc/HTML/sv/kstars/man-indi_v4l_philips.1.docbook -share/doc/HTML/sv/kstars/man-indiserver.1.docbook -share/doc/HTML/sv/kstars/man-lx200_16.1.docbook -share/doc/HTML/sv/kstars/man-lx200autostar.1.docbook -share/doc/HTML/sv/kstars/man-lx200classic.1.docbook -share/doc/HTML/sv/kstars/man-lx200generic.1.docbook -share/doc/HTML/sv/kstars/man-temma.1.docbook -share/doc/HTML/sv/kstars/man-v4ldriver.1.docbook -share/doc/HTML/sv/kstars/man-v4lphilips.1.docbook share/doc/HTML/sv/kstars/meridian.docbook share/doc/HTML/sv/kstars/newfov.png share/doc/HTML/sv/kstars/observinglist.docbook @@ -1457,9 +1356,6 @@ share/doc/HTML/sv/ktimetracker/idle-detect.png share/doc/HTML/sv/ktimetracker/index.cache.bz2 share/doc/HTML/sv/ktimetracker/index.docbook share/doc/HTML/sv/ktimetracker/karm.png -share/doc/HTML/sv/ktnef/common -share/doc/HTML/sv/ktnef/index.cache.bz2 -share/doc/HTML/sv/ktnef/index.docbook share/doc/HTML/sv/ktouch/color_options.png share/doc/HTML/sv/ktouch/common share/doc/HTML/sv/ktouch/general_options.png @@ -1553,9 +1449,6 @@ share/doc/HTML/sv/kwordquiz/kwq-qanda.png share/doc/HTML/sv/kwrite/common share/doc/HTML/sv/kwrite/index.cache.bz2 share/doc/HTML/sv/kwrite/index.docbook -share/doc/HTML/sv/kxkb/common -share/doc/HTML/sv/kxkb/index.cache.bz2 -share/doc/HTML/sv/kxkb/index.docbook share/doc/HTML/sv/kxsldbg/breakpoints_window.png share/doc/HTML/sv/kxsldbg/callstack.docbook share/doc/HTML/sv/kxsldbg/callstack_window.png @@ -1621,7 +1514,6 @@ share/doc/HTML/sv/parley/index.cache.bz2 share/doc/HTML/sv/parley/index.docbook share/doc/HTML/sv/parley/lang1-dlg.png share/doc/HTML/sv/parley/mainview.png -share/doc/HTML/sv/parley/man-spotlight2kvtml.1.docbook share/doc/HTML/sv/parley/mu-query-dlg.png share/doc/HTML/sv/parley/options1-dlg.png share/doc/HTML/sv/parley/options2-dlg.png @@ -1675,6 +1567,7 @@ share/locale/sv/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sv/LC_MESSAGES/audiorename_plugin.mo share/locale/sv/LC_MESSAGES/blinken.mo +share/locale/sv/LC_MESSAGES/bomber.mo share/locale/sv/LC_MESSAGES/bovo.mo share/locale/sv/LC_MESSAGES/cervisia.mo share/locale/sv/LC_MESSAGES/cvsservice.mo @@ -1689,6 +1582,7 @@ share/locale/sv/LC_MESSAGES/imagerename_plugin.mo share/locale/sv/LC_MESSAGES/joystick.mo share/locale/sv/LC_MESSAGES/juk.mo share/locale/sv/LC_MESSAGES/kabc.mo +share/locale/sv/LC_MESSAGES/kabc_akonadi.mo share/locale/sv/LC_MESSAGES/kabc_dir.mo share/locale/sv/LC_MESSAGES/kabc_file.mo share/locale/sv/LC_MESSAGES/kabc_ldapkio.mo @@ -1702,10 +1596,14 @@ share/locale/sv/LC_MESSAGES/kaddressbook.mo share/locale/sv/LC_MESSAGES/kalarm.mo share/locale/sv/LC_MESSAGES/kalgebra.mo share/locale/sv/LC_MESSAGES/kalzium.mo +share/locale/sv/LC_MESSAGES/kalzium_qt.mo share/locale/sv/LC_MESSAGES/kanagram.mo +share/locale/sv/LC_MESSAGES/kapman.mo share/locale/sv/LC_MESSAGES/kappfinder.mo share/locale/sv/LC_MESSAGES/kapptemplate.mo +share/locale/sv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sv/LC_MESSAGES/kate.mo +share/locale/sv/LC_MESSAGES/katebuild-plugin.mo share/locale/sv/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sv/LC_MESSAGES/katefiletemplates.mo @@ -1716,7 +1614,6 @@ share/locale/sv/LC_MESSAGES/kateinsertcommand.mo share/locale/sv/LC_MESSAGES/katekjswrapper.mo share/locale/sv/LC_MESSAGES/katekonsoleplugin.mo share/locale/sv/LC_MESSAGES/katemailfilesplugin.mo -share/locale/sv/LC_MESSAGES/katemake.mo share/locale/sv/LC_MESSAGES/kateopenheader.mo share/locale/sv/LC_MESSAGES/katepart4.mo share/locale/sv/LC_MESSAGES/katepybrowse.mo @@ -1735,14 +1632,14 @@ share/locale/sv/LC_MESSAGES/kblocks.mo share/locale/sv/LC_MESSAGES/kbounce.mo share/locale/sv/LC_MESSAGES/kbreakout.mo share/locale/sv/LC_MESSAGES/kbruch.mo -share/locale/sv/LC_MESSAGES/kbstateapplet.mo share/locale/sv/LC_MESSAGES/kbugbuster.mo share/locale/sv/LC_MESSAGES/kcachegrind.mo share/locale/sv/LC_MESSAGES/kcalc.mo share/locale/sv/LC_MESSAGES/kcertpart.mo share/locale/sv/LC_MESSAGES/kcharselect.mo -share/locale/sv/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/sv/LC_MESSAGES/kcm_akonadi.mo share/locale/sv/LC_MESSAGES/kcm_autostart.mo +share/locale/sv/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/sv/LC_MESSAGES/kcm_emoticons.mo share/locale/sv/LC_MESSAGES/kcm_krfb.mo share/locale/sv/LC_MESSAGES/kcm_kwindesktop.mo @@ -1752,6 +1649,7 @@ share/locale/sv/LC_MESSAGES/kcm_pci.mo share/locale/sv/LC_MESSAGES/kcm_phonon.mo share/locale/sv/LC_MESSAGES/kcm_phononxine.mo share/locale/sv/LC_MESSAGES/kcm_solid.mo +share/locale/sv/LC_MESSAGES/kcm_standard_actions.mo share/locale/sv/LC_MESSAGES/kcmaccess.mo share/locale/sv/LC_MESSAGES/kcmaudiocd.mo share/locale/sv/LC_MESSAGES/kcmbackground.mo @@ -1801,7 +1699,6 @@ share/locale/sv/LC_MESSAGES/kcmsmartcard.mo share/locale/sv/LC_MESSAGES/kcmsmserver.mo share/locale/sv/LC_MESSAGES/kcmsolidproc.mo share/locale/sv/LC_MESSAGES/kcmstyle.mo -share/locale/sv/LC_MESSAGES/kcmtaskbar.mo share/locale/sv/LC_MESSAGES/kcmusb.mo share/locale/sv/LC_MESSAGES/kcmview1394.mo share/locale/sv/LC_MESSAGES/kcmxinerama.mo @@ -1809,7 +1706,9 @@ share/locale/sv/LC_MESSAGES/kcolorchooser.mo share/locale/sv/LC_MESSAGES/kcron.mo share/locale/sv/LC_MESSAGES/kdat.mo share/locale/sv/LC_MESSAGES/kde-menu.mo +share/locale/sv/LC_MESSAGES/kdeasciiquarium.mo share/locale/sv/LC_MESSAGES/kdebugdialog.mo +share/locale/sv/LC_MESSAGES/kded_phononserver.mo share/locale/sv/LC_MESSAGES/kdelibs4.mo share/locale/sv/LC_MESSAGES/kdelibs_colors4.mo share/locale/sv/LC_MESSAGES/kdepasswd.mo @@ -1820,6 +1719,7 @@ share/locale/sv/LC_MESSAGES/kdessh.mo share/locale/sv/LC_MESSAGES/kdesu.mo share/locale/sv/LC_MESSAGES/kdesud.mo share/locale/sv/LC_MESSAGES/kdf.mo +share/locale/sv/LC_MESSAGES/kdgantt.mo share/locale/sv/LC_MESSAGES/kdgantt1.mo share/locale/sv/LC_MESSAGES/kdialog.mo share/locale/sv/LC_MESSAGES/kdiamond.mo @@ -1869,12 +1769,15 @@ share/locale/sv/LC_MESSAGES/khotnewstuff.mo share/locale/sv/LC_MESSAGES/khtmlkttsd.mo share/locale/sv/LC_MESSAGES/kiconfinder.mo share/locale/sv/LC_MESSAGES/kig.mo +share/locale/sv/LC_MESSAGES/killbots.mo share/locale/sv/LC_MESSAGES/kimagemapeditor.mo share/locale/sv/LC_MESSAGES/kinetd.mo share/locale/sv/LC_MESSAGES/kinfocenter.mo share/locale/sv/LC_MESSAGES/kio4.mo +share/locale/sv/LC_MESSAGES/kio_applications.mo share/locale/sv/LC_MESSAGES/kio_archive.mo share/locale/sv/LC_MESSAGES/kio_audiocd.mo +share/locale/sv/LC_MESSAGES/kio_bookmarks.mo share/locale/sv/LC_MESSAGES/kio_finger.mo share/locale/sv/LC_MESSAGES/kio_fish.mo share/locale/sv/LC_MESSAGES/kio_floppy.mo @@ -1885,11 +1788,12 @@ share/locale/sv/LC_MESSAGES/kio_jabberdisco.mo share/locale/sv/LC_MESSAGES/kio_ldap.mo share/locale/sv/LC_MESSAGES/kio_man.mo share/locale/sv/LC_MESSAGES/kio_mbox.mo +share/locale/sv/LC_MESSAGES/kio_nepomuksearch.mo share/locale/sv/LC_MESSAGES/kio_nfs.mo share/locale/sv/LC_MESSAGES/kio_nntp.mo +share/locale/sv/LC_MESSAGES/kio_perldoc.mo share/locale/sv/LC_MESSAGES/kio_pop3.mo share/locale/sv/LC_MESSAGES/kio_remote.mo -share/locale/sv/LC_MESSAGES/kio_settings.mo share/locale/sv/LC_MESSAGES/kio_sftp.mo share/locale/sv/LC_MESSAGES/kio_sieve.mo share/locale/sv/LC_MESSAGES/kio_smb.mo @@ -1949,10 +1853,10 @@ share/locale/sv/LC_MESSAGES/kopete.mo share/locale/sv/LC_MESSAGES/korganizer.mo share/locale/sv/LC_MESSAGES/korn.mo share/locale/sv/LC_MESSAGES/kpackage.mo +share/locale/sv/LC_MESSAGES/kpartloader.mo share/locale/sv/LC_MESSAGES/kpartsaver.mo share/locale/sv/LC_MESSAGES/kpasswdserver.mo share/locale/sv/LC_MESSAGES/kpat.mo -share/locale/sv/LC_MESSAGES/kpercentage.mo share/locale/sv/LC_MESSAGES/kpilot.mo share/locale/sv/LC_MESSAGES/kppp.mo share/locale/sv/LC_MESSAGES/kppplogview.mo @@ -1976,20 +1880,12 @@ share/locale/sv/LC_MESSAGES/kreversi.mo share/locale/sv/LC_MESSAGES/krfb.mo share/locale/sv/LC_MESSAGES/kruler.mo share/locale/sv/LC_MESSAGES/krunner.mo -share/locale/sv/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/sv/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/sv/LC_MESSAGES/krunner_contacts.mo -share/locale/sv/LC_MESSAGES/krunner_converterrunner.mo -share/locale/sv/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/sv/LC_MESSAGES/krunner_sessions.mo -share/locale/sv/LC_MESSAGES/krunner_shellrunner.mo -share/locale/sv/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/sv/LC_MESSAGES/krunner_xesam.mo share/locale/sv/LC_MESSAGES/ksame.mo share/locale/sv/LC_MESSAGES/ksaneplugin.mo share/locale/sv/LC_MESSAGES/ksayit.mo share/locale/sv/LC_MESSAGES/kscd.mo share/locale/sv/LC_MESSAGES/kscreensaver.mo +share/locale/sv/LC_MESSAGES/ksendemail.mo share/locale/sv/LC_MESSAGES/kshisen.mo share/locale/sv/LC_MESSAGES/kshorturifilter.mo share/locale/sv/LC_MESSAGES/ksirk.mo @@ -2006,6 +1902,7 @@ share/locale/sv/LC_MESSAGES/kstyle_keramik_config.mo share/locale/sv/LC_MESSAGES/kstyle_phase_config.mo share/locale/sv/LC_MESSAGES/ksudoku.mo share/locale/sv/LC_MESSAGES/ksysguard.mo +share/locale/sv/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sv/LC_MESSAGES/ksystemlog.mo share/locale/sv/LC_MESSAGES/ksystraycmd.mo share/locale/sv/LC_MESSAGES/ksysv.mo @@ -2015,7 +1912,6 @@ share/locale/sv/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/sv/LC_MESSAGES/kthememanager.mo share/locale/sv/LC_MESSAGES/ktimer.mo share/locale/sv/LC_MESSAGES/ktimetracker.mo -share/locale/sv/LC_MESSAGES/ktnef.mo share/locale/sv/LC_MESSAGES/ktouch.mo share/locale/sv/LC_MESSAGES/ktraderclient.mo share/locale/sv/LC_MESSAGES/kttsd.mo @@ -2027,6 +1923,7 @@ share/locale/sv/LC_MESSAGES/kuiserver.mo share/locale/sv/LC_MESSAGES/kuiviewer.mo share/locale/sv/LC_MESSAGES/kurifilter.mo share/locale/sv/LC_MESSAGES/kuser.mo +share/locale/sv/LC_MESSAGES/kwalletd.mo share/locale/sv/LC_MESSAGES/kwalletmanager.mo share/locale/sv/LC_MESSAGES/kwatchgnupg.mo share/locale/sv/LC_MESSAGES/kweather.mo @@ -2073,11 +1970,14 @@ share/locale/sv/LC_MESSAGES/libmailtransport.mo share/locale/sv/LC_MESSAGES/liboktetacore.mo share/locale/sv/LC_MESSAGES/libphonon.mo share/locale/sv/LC_MESSAGES/libplasma.mo +share/locale/sv/LC_MESSAGES/libplasmaclock.mo share/locale/sv/LC_MESSAGES/libtaskmanager.mo share/locale/sv/LC_MESSAGES/lokalize.mo share/locale/sv/LC_MESSAGES/lskat.mo share/locale/sv/LC_MESSAGES/marble.mo +share/locale/sv/LC_MESSAGES/marble_qt.mo share/locale/sv/LC_MESSAGES/nepomuk.mo +share/locale/sv/LC_MESSAGES/nepomuksearch.mo share/locale/sv/LC_MESSAGES/nsplugin.mo share/locale/sv/LC_MESSAGES/okteta.mo share/locale/sv/LC_MESSAGES/oktetapart.mo @@ -2087,6 +1987,7 @@ share/locale/sv/LC_MESSAGES/okular_comicbook.mo share/locale/sv/LC_MESSAGES/okular_djvu.mo share/locale/sv/LC_MESSAGES/okular_dvi.mo share/locale/sv/LC_MESSAGES/okular_epub.mo +share/locale/sv/LC_MESSAGES/okular_fax.mo share/locale/sv/LC_MESSAGES/okular_fictionbook.mo share/locale/sv/LC_MESSAGES/okular_ghostview.mo share/locale/sv/LC_MESSAGES/okular_kimgio.mo @@ -2099,10 +2000,15 @@ share/locale/sv/LC_MESSAGES/parley.mo share/locale/sv/LC_MESSAGES/phonon-xine.mo share/locale/sv/LC_MESSAGES/phonon_gstreamer.mo share/locale/sv/LC_MESSAGES/phonon_kde.mo +share/locale/sv/LC_MESSAGES/plasma-overlay.mo +share/locale/sv/LC_MESSAGES/plasma-shells-common.mo share/locale/sv/LC_MESSAGES/plasma.mo share/locale/sv/LC_MESSAGES/plasma_applet_battery.mo +share/locale/sv/LC_MESSAGES/plasma_applet_bball.mo share/locale/sv/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/sv/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/sv/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/sv/LC_MESSAGES/plasma_applet_charselect.mo share/locale/sv/LC_MESSAGES/plasma_applet_clock.mo share/locale/sv/LC_MESSAGES/plasma_applet_comic.mo share/locale/sv/LC_MESSAGES/plasma_applet_desktop.mo @@ -2114,26 +2020,61 @@ share/locale/sv/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/sv/LC_MESSAGES/plasma_applet_folderview.mo share/locale/sv/LC_MESSAGES/plasma_applet_frame.mo share/locale/sv/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/sv/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/sv/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/sv/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/sv/LC_MESSAGES/plasma_applet_katesession.mo share/locale/sv/LC_MESSAGES/plasma_applet_kget.mo -share/locale/sv/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/sv/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/sv/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/sv/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/sv/LC_MESSAGES/plasma_applet_life.mo share/locale/sv/LC_MESSAGES/plasma_applet_luna.mo +share/locale/sv/LC_MESSAGES/plasma_applet_news.mo share/locale/sv/LC_MESSAGES/plasma_applet_notes.mo share/locale/sv/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/sv/LC_MESSAGES/plasma_applet_pager.mo share/locale/sv/LC_MESSAGES/plasma_applet_panel.mo +share/locale/sv/LC_MESSAGES/plasma_applet_paste.mo +share/locale/sv/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/sv/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/sv/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/sv/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/sv/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/sv/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/sv/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/sv/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/sv/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/sv/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/sv/LC_MESSAGES/plasma_applet_timer.mo share/locale/sv/LC_MESSAGES/plasma_applet_trash.mo share/locale/sv/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/sv/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/sv/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/sv/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/sv/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/sv/LC_MESSAGES/plasma_engine_dict.mo +share/locale/sv/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/sv/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/sv/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/sv/LC_MESSAGES/plasma_engine_rss.mo +share/locale/sv/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/sv/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/sv/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/sv/LC_MESSAGES/plasma_runner_locations.mo +share/locale/sv/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/sv/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/sv/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/sv/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/sv/LC_MESSAGES/plasma_runner_shell.mo +share/locale/sv/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/sv/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/sv/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/sv/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/sv/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/sv/LC_MESSAGES/plasmaengineexplorer.mo share/locale/sv/LC_MESSAGES/plasmapkg.mo share/locale/sv/LC_MESSAGES/plasmoidviewer.mo +share/locale/sv/LC_MESSAGES/powerdevil.mo share/locale/sv/LC_MESSAGES/printer-applet.mo share/locale/sv/LC_MESSAGES/processcore.mo share/locale/sv/LC_MESSAGES/processui.mo @@ -2145,10 +2086,12 @@ share/locale/sv/LC_MESSAGES/solidcontrol.mo share/locale/sv/LC_MESSAGES/soliduiserver.mo share/locale/sv/LC_MESSAGES/spy.mo share/locale/sv/LC_MESSAGES/step.mo +share/locale/sv/LC_MESSAGES/step_qt.mo share/locale/sv/LC_MESSAGES/strigila_diff.mo share/locale/sv/LC_MESSAGES/superkaramba.mo share/locale/sv/LC_MESSAGES/svgpart.mo share/locale/sv/LC_MESSAGES/sweeper.mo +share/locale/sv/LC_MESSAGES/system-config-printer-kde.mo share/locale/sv/LC_MESSAGES/systemsettings.mo share/locale/sv/LC_MESSAGES/timezones4.mo share/locale/sv/LC_MESSAGES/umbrello.mo @@ -2168,7 +2111,6 @@ share/locale/sv/entry.desktop @dirrm share/doc/HTML/sv/lokalize @dirrm share/doc/HTML/sv/lilo-config @dirrm share/doc/HTML/sv/kxsldbg -@dirrm share/doc/HTML/sv/kxkb @dirrm share/doc/HTML/sv/kwrite @dirrm share/doc/HTML/sv/kwordquiz @dirrm share/doc/HTML/sv/kweather @@ -2180,7 +2122,6 @@ share/locale/sv/entry.desktop @dirrm share/doc/HTML/sv/ktuberling @dirrm share/doc/HTML/sv/kttsd @dirrm share/doc/HTML/sv/ktouch -@dirrm share/doc/HTML/sv/ktnef @dirrm share/doc/HTML/sv/ktimetracker @dirrm share/doc/HTML/sv/ktimer @dirrm share/doc/HTML/sv/kteatime @@ -2193,7 +2134,6 @@ share/locale/sv/entry.desktop @dirrm share/doc/HTML/sv/kspaceduel @dirrm share/doc/HTML/sv/ksnapshot @dirrm share/doc/HTML/sv/ksirk -@dirrm share/doc/HTML/sv/ksim @dirrm share/doc/HTML/sv/kshisen @dirrm share/doc/HTML/sv/kscd @dirrm share/doc/HTML/sv/ksame @@ -2203,7 +2143,6 @@ share/locale/sv/entry.desktop @dirrm share/doc/HTML/sv/krdc @dirrm share/doc/HTML/sv/kppp @dirrm share/doc/HTML/sv/kpilot -@dirrm share/doc/HTML/sv/kpercentage @dirrm share/doc/HTML/sv/kpat @dirrm share/doc/HTML/sv/kpackage @dirrm share/doc/HTML/sv/korn @@ -2221,14 +2160,11 @@ share/locale/sv/entry.desktop @dirrm share/doc/HTML/sv/kolf @dirrm share/doc/HTML/sv/knotes @dirrm share/doc/HTML/sv/knode -@dirrm share/doc/HTML/sv/knewsticker -@dirrm share/doc/HTML/sv/knetworkconf @dirrm share/doc/HTML/sv/knetwalk @dirrm share/doc/HTML/sv/knetattach @dirrm share/doc/HTML/sv/kmplot @dirrm share/doc/HTML/sv/kmouth @dirrm share/doc/HTML/sv/kmousetool -@dirrm share/doc/HTML/sv/kmoon @dirrm share/doc/HTML/sv/kmobiletools @dirrm share/doc/HTML/sv/kmix @dirrm share/doc/HTML/sv/kmines @@ -2244,7 +2180,6 @@ share/locale/sv/entry.desktop @dirrm share/doc/HTML/sv/kjots @dirrm share/doc/HTML/sv/kiten @dirrm share/doc/HTML/sv/kiriki -@dirrm share/doc/HTML/sv/kioslave @dirrm share/doc/HTML/sv/kinfocenter/xserver @dirrm share/doc/HTML/sv/kinfocenter/usb @dirrm share/doc/HTML/sv/kinfocenter/sound @@ -2264,6 +2199,7 @@ share/locale/sv/entry.desktop @dirrm share/doc/HTML/sv/kinfocenter/devices @dirrm share/doc/HTML/sv/kinfocenter @dirrm share/doc/HTML/sv/kimagemapeditor +@dirrm share/doc/HTML/sv/killbots @dirrm share/doc/HTML/sv/kig @dirrm share/doc/HTML/sv/khelpcenter/visualdict @dirrm share/doc/HTML/sv/khelpcenter/userguide @@ -2290,7 +2226,6 @@ share/locale/sv/entry.desktop @dirrm share/doc/HTML/sv/kdat @dirrm share/doc/HTML/sv/kcron @dirrm share/doc/HTML/sv/kcontrol/windowspecific -@dirrm share/doc/HTML/sv/kcontrol/windowmanagement @dirrm share/doc/HTML/sv/kcontrol/windowbehaviour @dirrm share/doc/HTML/sv/kcontrol/useragent @dirrm share/doc/HTML/sv/kcontrol/splashscreen @@ -2298,7 +2233,7 @@ share/locale/sv/entry.desktop @dirrm share/doc/HTML/sv/kcontrol/smb @dirrm share/doc/HTML/sv/kcontrol/screensaver @dirrm share/doc/HTML/sv/kcontrol/proxy -@dirrm share/doc/HTML/sv/kcontrol/powerctrl +@dirrm share/doc/HTML/sv/kcontrol/powerdevil @dirrm share/doc/HTML/sv/kcontrol/performance @dirrm share/doc/HTML/sv/kcontrol/paths @dirrm share/doc/HTML/sv/kcontrol/passwords @@ -2306,10 +2241,11 @@ share/locale/sv/entry.desktop @dirrm share/doc/HTML/sv/kcontrol/panel @dirrm share/doc/HTML/sv/kcontrol/netpref @dirrm share/doc/HTML/sv/kcontrol/mouse -@dirrm share/doc/HTML/sv/kcontrol/laptop @dirrm share/doc/HTML/sv/kcontrol/language @dirrm share/doc/HTML/sv/kcontrol/kxkb @dirrm share/doc/HTML/sv/kcontrol/kwindecoration +@dirrm share/doc/HTML/sv/kcontrol/kwincompositing +@dirrm share/doc/HTML/sv/kcontrol/kresources @dirrm share/doc/HTML/sv/kcontrol/knetworkconf @dirrm share/doc/HTML/sv/kcontrol/khtml @dirrm share/doc/HTML/sv/kcontrol/keys @@ -2319,14 +2255,12 @@ share/locale/sv/entry.desktop @dirrm share/doc/HTML/sv/kcontrol/kcmstyle @dirrm share/doc/HTML/sv/kcontrol/kcmsmserver @dirrm share/doc/HTML/sv/kcontrol/kcmnotify -@dirrm share/doc/HTML/sv/kcontrol/kcmlowbatwarn -@dirrm share/doc/HTML/sv/kcontrol/kcmlowbatcrit @dirrm share/doc/HTML/sv/kcontrol/kcmlaunch @dirrm share/doc/HTML/sv/kcontrol/kcmkonsole @dirrm share/doc/HTML/sv/kcontrol/kcmdisplay @dirrm share/doc/HTML/sv/kcontrol/kcmcss @dirrm share/doc/HTML/sv/kcontrol/kcmaccess -@dirrm share/doc/HTML/sv/kcontrol/kalarmd +@dirrm share/doc/HTML/sv/kcontrol/kamera @dirrm share/doc/HTML/sv/kcontrol/joystick @dirrm share/doc/HTML/sv/kcontrol/icons @dirrm share/doc/HTML/sv/kcontrol/helpindex @@ -2345,6 +2279,7 @@ share/locale/sv/entry.desktop @dirrm share/doc/HTML/sv/kcontrol/colors @dirrm share/doc/HTML/sv/kcontrol/clock @dirrm share/doc/HTML/sv/kcontrol/cache +@dirrm share/doc/HTML/sv/kcontrol/bookmarks @dirrm share/doc/HTML/sv/kcontrol/blockdevices @dirrm share/doc/HTML/sv/kcontrol/bell @dirrm share/doc/HTML/sv/kcontrol/background @@ -2364,12 +2299,13 @@ share/locale/sv/entry.desktop @dirrm share/doc/HTML/sv/kate-plugins @dirrm share/doc/HTML/sv/kate @dirrm share/doc/HTML/sv/kapptemplate +@dirrm share/doc/HTML/sv/kapman @dirrm share/doc/HTML/sv/kanagram -@dirrm share/doc/HTML/sv/kamera @dirrm share/doc/HTML/sv/kalzium @dirrm share/doc/HTML/sv/kalgebra @dirrm share/doc/HTML/sv/kalarm @dirrm share/doc/HTML/sv/kaddressbook +@dirrm share/doc/HTML/sv/kabcclient @dirrm share/doc/HTML/sv/juk @dirrm share/doc/HTML/sv/gwenview @dirrm share/doc/HTML/sv/dragonplayer @@ -2386,3 +2322,8 @@ share/locale/sv/entry.desktop @dirrm share/apps/ktuberling/sounds @dirrm share/apps/ktuberling @dirrm share/apps/khangman +@dirrmtry man/sv/man8 +@dirrmtry man/sv/man7 +@dirrmtry man/sv/man6 +@dirrmtry man/sv/man1 +@dirrmtry man/sv diff --git a/misc/kde4-l10n-ta/Makefile b/misc/kde4-l10n-ta/Makefile index 768d0a5ef4c4..aeaf9df1c56a 100644 --- a/misc/kde4-l10n-ta/Makefile +++ b/misc/kde4-l10n-ta/Makefile @@ -6,7 +6,7 @@ # PORTNAME= kde-l10n -PORTVERSION= ${KDE4_VERSION} +PORTVERSION= 4.1.4 CATEGORIES= misc kde MAINTAINER= kde@FreeBSD.org diff --git a/misc/kde4-l10n-tg/Makefile b/misc/kde4-l10n-tg/Makefile index fbe344b97667..dcc3cdaa4277 100644 --- a/misc/kde4-l10n-tg/Makefile +++ b/misc/kde4-l10n-tg/Makefile @@ -1,29 +1,21 @@ -# New ports collection makefile for: kde3-i18n-tg -# Date created: 01 March 2004 -# Whom: Lauri Watts <lauri@kde.org> +# New ports collection makefile for: misc/kde4-l10n-tg +# Date created: 2009-01-25 +# Whom: Max Brazhnikov <makc@FreeBSD.org> # # $FreeBSD$ # -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= tg- -DIST_SUBDIR= KDE +PORTNAME= kde-l10n +PORTVERSION= ${KDE4_VERSION} +CATEGORIES= misc kde MAINTAINER= kde@FreeBSD.org -COMMENT= Tajik messages and documentation for KDE3 +COMMENT= Tajik messages and documentation for KDE4 -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext +KDE4_L10N= tg -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" +post-extract: + ${MKDIR} ${WRKSRC}/build +.include "${.CURDIR}/../../misc/kde4-l10n/files/bsd.l10n.mk" .include <bsd.port.mk> diff --git a/misc/kde4-l10n-tg/distinfo b/misc/kde4-l10n-tg/distinfo index fe9ad6bffdda..580585a14ad8 100644 --- a/misc/kde4-l10n-tg/distinfo +++ b/misc/kde4-l10n-tg/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-i18n/kde-i18n-tg-3.5.10.tar.bz2) = 7999d00f85d0a9bf2991ab8600ce23c1 -SHA256 (KDE/kde-i18n/kde-i18n-tg-3.5.10.tar.bz2) = 98b79d9223afdb98308cd5bfe627b558799df0e2d7188d4c7a3e8fa4c7484f4c -SIZE (KDE/kde-i18n/kde-i18n-tg-3.5.10.tar.bz2) = 2197372 +MD5 (KDE/kde-l10n/kde-l10n-tg-4.2.0.tar.bz2) = 30c2329a01c7ebbd61b4198ad6706acd +SHA256 (KDE/kde-l10n/kde-l10n-tg-4.2.0.tar.bz2) = a128e107973d500c81ddab06417a19eac484b70e80a1279c82da9e82c1cd00a6 +SIZE (KDE/kde-l10n/kde-l10n-tg-4.2.0.tar.bz2) = 1834967 diff --git a/misc/kde4-l10n-tg/pkg-descr b/misc/kde4-l10n-tg/pkg-descr index 3354ca873ecc..3073b1096b79 100644 --- a/misc/kde4-l10n-tg/pkg-descr +++ b/misc/kde4-l10n-tg/pkg-descr @@ -1,3 +1,3 @@ -Localized messages and documentation for KDE3. +Localized messages and documentation for KDE4. WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-tg/pkg-plist b/misc/kde4-l10n-tg/pkg-plist index b6dedaf927c9..bff16897eea9 100644 --- a/misc/kde4-l10n-tg/pkg-plist +++ b/misc/kde4-l10n-tg/pkg-plist @@ -1,108 +1,76 @@ -share/apps/khangman/data/tg/animals.kvtml -share/apps/khangman/data/tg/easy.kvtml -share/apps/khangman/data/tg/hard.kvtml -share/apps/khangman/data/tg/medium.kvtml share/apps/khangman/tg.txt -share/locale/tg/LC_MESSAGES/alsaplayerui.mo +share/apps/kvtml/tg/animals.kvtml +share/apps/kvtml/tg/easy.kvtml +share/apps/kvtml/tg/hard.kvtml +share/apps/kvtml/tg/medium.kvtml share/locale/tg/LC_MESSAGES/amor.mo -share/locale/tg/LC_MESSAGES/appletproxy.mo share/locale/tg/LC_MESSAGES/ark.mo -share/locale/tg/LC_MESSAGES/ark_plugin.mo -share/locale/tg/LC_MESSAGES/artsbuilder.mo -share/locale/tg/LC_MESSAGES/artscontrol.mo -share/locale/tg/LC_MESSAGES/artsmodules.mo -share/locale/tg/LC_MESSAGES/atlantik.mo -share/locale/tg/LC_MESSAGES/atlantikdesigner.mo share/locale/tg/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/tg/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/tg/LC_MESSAGES/audiorename_plugin.mo -share/locale/tg/LC_MESSAGES/autorefresh.mo -share/locale/tg/LC_MESSAGES/babelfish.mo share/locale/tg/LC_MESSAGES/blinken.mo share/locale/tg/LC_MESSAGES/cervisia.mo -share/locale/tg/LC_MESSAGES/charlatanui.mo -share/locale/tg/LC_MESSAGES/clockapplet.mo -share/locale/tg/LC_MESSAGES/crashesplugin.mo -share/locale/tg/LC_MESSAGES/cupsdconf.mo share/locale/tg/LC_MESSAGES/cvsservice.mo -share/locale/tg/LC_MESSAGES/dcoprss.mo -share/locale/tg/LC_MESSAGES/dirfilterplugin.mo share/locale/tg/LC_MESSAGES/display.mo -share/locale/tg/LC_MESSAGES/dockbarextension.mo -share/locale/tg/LC_MESSAGES/domtreeviewer.mo +share/locale/tg/LC_MESSAGES/dolphin.mo share/locale/tg/LC_MESSAGES/drkonqi.mo -share/locale/tg/LC_MESSAGES/dub.mo -share/locale/tg/LC_MESSAGES/extensionproxy.mo -share/locale/tg/LC_MESSAGES/ffrs.mo share/locale/tg/LC_MESSAGES/filetypes.mo -share/locale/tg/LC_MESSAGES/fsview.mo share/locale/tg/LC_MESSAGES/htmlsearch.mo share/locale/tg/LC_MESSAGES/imagerename_plugin.mo -share/locale/tg/LC_MESSAGES/imgalleryplugin.mo -share/locale/tg/LC_MESSAGES/irkick.mo share/locale/tg/LC_MESSAGES/joystick.mo share/locale/tg/LC_MESSAGES/juk.mo -share/locale/tg/LC_MESSAGES/kabc2mutt.mo share/locale/tg/LC_MESSAGES/kabc_dir.mo share/locale/tg/LC_MESSAGES/kabc_file.mo share/locale/tg/LC_MESSAGES/kabc_ldapkio.mo share/locale/tg/LC_MESSAGES/kabc_net.mo share/locale/tg/LC_MESSAGES/kabc_slox.mo -share/locale/tg/LC_MESSAGES/kabc_sql.mo share/locale/tg/LC_MESSAGES/kabcformat_binary.mo -share/locale/tg/LC_MESSAGES/kaboodle.mo share/locale/tg/LC_MESSAGES/kaccess.mo share/locale/tg/LC_MESSAGES/kaddressbook.mo share/locale/tg/LC_MESSAGES/kalarm.mo +share/locale/tg/LC_MESSAGES/kalgebra.mo share/locale/tg/LC_MESSAGES/kalzium.mo +share/locale/tg/LC_MESSAGES/kalzium_qt.mo share/locale/tg/LC_MESSAGES/kanagram.mo -share/locale/tg/LC_MESSAGES/kandy.mo share/locale/tg/LC_MESSAGES/kappfinder.mo -share/locale/tg/LC_MESSAGES/karm.mo -share/locale/tg/LC_MESSAGES/kasbarextension.mo -share/locale/tg/LC_MESSAGES/kasteroids.mo share/locale/tg/LC_MESSAGES/kate.mo -share/locale/tg/LC_MESSAGES/katecppsymbolviewer.mo share/locale/tg/LC_MESSAGES/katefiletemplates.mo -share/locale/tg/LC_MESSAGES/katefll_initplugin.mo -share/locale/tg/LC_MESSAGES/katefll_plugin.mo share/locale/tg/LC_MESSAGES/katehelloworld.mo share/locale/tg/LC_MESSAGES/katehtmltools.mo -share/locale/tg/LC_MESSAGES/kateinsertcommand.mo share/locale/tg/LC_MESSAGES/katekjswrapper.mo -share/locale/tg/LC_MESSAGES/katemake.mo -share/locale/tg/LC_MESSAGES/katemodeline.mo share/locale/tg/LC_MESSAGES/kateopenheader.mo -share/locale/tg/LC_MESSAGES/katepart.mo +share/locale/tg/LC_MESSAGES/katepart4.mo share/locale/tg/LC_MESSAGES/katepybrowse.mo share/locale/tg/LC_MESSAGES/katesnippets.mo +share/locale/tg/LC_MESSAGES/katesymbolviewer.mo share/locale/tg/LC_MESSAGES/katetabbarextension.mo share/locale/tg/LC_MESSAGES/katetextfilter.mo share/locale/tg/LC_MESSAGES/katexmlcheck.mo share/locale/tg/LC_MESSAGES/katexmltools.mo share/locale/tg/LC_MESSAGES/katomic.mo -share/locale/tg/LC_MESSAGES/kaudiocreator.mo -share/locale/tg/LC_MESSAGES/kbabel.mo -share/locale/tg/LC_MESSAGES/kbackgammon.mo share/locale/tg/LC_MESSAGES/kbattleship.mo -share/locale/tg/LC_MESSAGES/kbinaryclock.mo share/locale/tg/LC_MESSAGES/kblackbox.mo +share/locale/tg/LC_MESSAGES/kblankscrn.mo share/locale/tg/LC_MESSAGES/kbounce.mo share/locale/tg/LC_MESSAGES/kbruch.mo -share/locale/tg/LC_MESSAGES/kbstateapplet.mo share/locale/tg/LC_MESSAGES/kbugbuster.mo share/locale/tg/LC_MESSAGES/kcachegrind.mo share/locale/tg/LC_MESSAGES/kcalc.mo +share/locale/tg/LC_MESSAGES/kcertpart.mo share/locale/tg/LC_MESSAGES/kcharselect.mo -share/locale/tg/LC_MESSAGES/kcharselectapplet.mo +share/locale/tg/LC_MESSAGES/kcm_autostart.mo +share/locale/tg/LC_MESSAGES/kcm_desktopthemedetails.mo +share/locale/tg/LC_MESSAGES/kcm_emoticons.mo share/locale/tg/LC_MESSAGES/kcm_krfb.mo -share/locale/tg/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/tg/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/tg/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/tg/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo +share/locale/tg/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/tg/LC_MESSAGES/kcm_memory.mo +share/locale/tg/LC_MESSAGES/kcm_partition.mo +share/locale/tg/LC_MESSAGES/kcm_pci.mo +share/locale/tg/LC_MESSAGES/kcm_phonon.mo +share/locale/tg/LC_MESSAGES/kcm_phononxine.mo +share/locale/tg/LC_MESSAGES/kcm_solid.mo +share/locale/tg/LC_MESSAGES/kcm_standard_actions.mo share/locale/tg/LC_MESSAGES/kcmaccess.mo -share/locale/tg/LC_MESSAGES/kcmaccessibility.mo -share/locale/tg/LC_MESSAGES/kcmarts.mo share/locale/tg/LC_MESSAGES/kcmaudiocd.mo share/locale/tg/LC_MESSAGES/kcmbackground.mo share/locale/tg/LC_MESSAGES/kcmbell.mo @@ -117,183 +85,131 @@ share/locale/tg/LC_MESSAGES/kcmfonts.mo share/locale/tg/LC_MESSAGES/kcmhtmlsearch.mo share/locale/tg/LC_MESSAGES/kcmicons.mo share/locale/tg/LC_MESSAGES/kcminfo.mo +share/locale/tg/LC_MESSAGES/kcminit.mo share/locale/tg/LC_MESSAGES/kcminput.mo share/locale/tg/LC_MESSAGES/kcmioslaveinfo.mo share/locale/tg/LC_MESSAGES/kcmkabconfig.mo share/locale/tg/LC_MESSAGES/kcmkamera.mo share/locale/tg/LC_MESSAGES/kcmkclock.mo share/locale/tg/LC_MESSAGES/kcmkded.mo +share/locale/tg/LC_MESSAGES/kcmkdnssd.mo +share/locale/tg/LC_MESSAGES/kcmkeyboard.mo share/locale/tg/LC_MESSAGES/kcmkeys.mo -share/locale/tg/LC_MESSAGES/kcmkicker.mo +share/locale/tg/LC_MESSAGES/kcmkgamma.mo share/locale/tg/LC_MESSAGES/kcmkio.mo share/locale/tg/LC_MESSAGES/kcmkonq.mo share/locale/tg/LC_MESSAGES/kcmkonqhtml.mo -share/locale/tg/LC_MESSAGES/kcmkonsole.mo -share/locale/tg/LC_MESSAGES/kcmkontactnt.mo -share/locale/tg/LC_MESSAGES/kcmktalkd.mo -share/locale/tg/LC_MESSAGES/kcmkuick.mo share/locale/tg/LC_MESSAGES/kcmkurifilt.mo -share/locale/tg/LC_MESSAGES/kcmkvaio.mo share/locale/tg/LC_MESSAGES/kcmkwallet.mo +share/locale/tg/LC_MESSAGES/kcmkwincompositing.mo share/locale/tg/LC_MESSAGES/kcmkwindecoration.mo share/locale/tg/LC_MESSAGES/kcmkwinrules.mo share/locale/tg/LC_MESSAGES/kcmkwm.mo -share/locale/tg/LC_MESSAGES/kcmlanbrowser.mo -share/locale/tg/LC_MESSAGES/kcmlaptop.mo share/locale/tg/LC_MESSAGES/kcmlaunch.mo -share/locale/tg/LC_MESSAGES/kcmlayout.mo share/locale/tg/LC_MESSAGES/kcmlilo.mo -share/locale/tg/LC_MESSAGES/kcmlirc.mo share/locale/tg/LC_MESSAGES/kcmlocale.mo share/locale/tg/LC_MESSAGES/kcmnic.mo share/locale/tg/LC_MESSAGES/kcmnotify.mo +share/locale/tg/LC_MESSAGES/kcmopengl.mo share/locale/tg/LC_MESSAGES/kcmperformance.mo -share/locale/tg/LC_MESSAGES/kcmprintmgr.mo share/locale/tg/LC_MESSAGES/kcmsamba.mo share/locale/tg/LC_MESSAGES/kcmscreensaver.mo share/locale/tg/LC_MESSAGES/kcmshell.mo share/locale/tg/LC_MESSAGES/kcmsmartcard.mo share/locale/tg/LC_MESSAGES/kcmsmserver.mo -share/locale/tg/LC_MESSAGES/kcmspellchecking.mo +share/locale/tg/LC_MESSAGES/kcmsolidproc.mo share/locale/tg/LC_MESSAGES/kcmstyle.mo -share/locale/tg/LC_MESSAGES/kcmtaskbar.mo -share/locale/tg/LC_MESSAGES/kcmthinkpad.mo share/locale/tg/LC_MESSAGES/kcmusb.mo share/locale/tg/LC_MESSAGES/kcmview1394.mo -share/locale/tg/LC_MESSAGES/kcmwifi.mo share/locale/tg/LC_MESSAGES/kcmxinerama.mo -share/locale/tg/LC_MESSAGES/kcoloredit.mo -share/locale/tg/LC_MESSAGES/kcontrol.mo share/locale/tg/LC_MESSAGES/kcron.mo share/locale/tg/LC_MESSAGES/kdat.mo -share/locale/tg/LC_MESSAGES/kdcop.mo +share/locale/tg/LC_MESSAGES/kde-menu.mo share/locale/tg/LC_MESSAGES/kdebugdialog.mo -share/locale/tg/LC_MESSAGES/kdelibs.mo -share/locale/tg/LC_MESSAGES/kdelibs_colors.mo -share/locale/tg/LC_MESSAGES/kdelirc.mo +share/locale/tg/LC_MESSAGES/kded_phononserver.mo +share/locale/tg/LC_MESSAGES/kdelibs4.mo +share/locale/tg/LC_MESSAGES/kdelibs_colors4.mo share/locale/tg/LC_MESSAGES/kdepasswd.mo share/locale/tg/LC_MESSAGES/kdepimwizards.mo -share/locale/tg/LC_MESSAGES/kdeprint.mo -share/locale/tg/LC_MESSAGES/kdeprint_part.mo -share/locale/tg/LC_MESSAGES/kdeprintfax.mo -share/locale/tg/LC_MESSAGES/kdesktop.mo +share/locale/tg/LC_MESSAGES/kdeqt.mo share/locale/tg/LC_MESSAGES/kdessh.mo share/locale/tg/LC_MESSAGES/kdesu.mo share/locale/tg/LC_MESSAGES/kdesud.mo -share/locale/tg/LC_MESSAGES/kdevdesigner.mo -share/locale/tg/LC_MESSAGES/kdevelop.mo -share/locale/tg/LC_MESSAGES/kdevtipofday.mo share/locale/tg/LC_MESSAGES/kdf.mo -share/locale/tg/LC_MESSAGES/kdgantt.mo +share/locale/tg/LC_MESSAGES/kdgantt1.mo share/locale/tg/LC_MESSAGES/kdialog.mo -share/locale/tg/LC_MESSAGES/kdict.mo -share/locale/tg/LC_MESSAGES/kdictapplet.mo share/locale/tg/LC_MESSAGES/kdmconfig.mo share/locale/tg/LC_MESSAGES/kdmgreet.mo -share/locale/tg/LC_MESSAGES/kdvi.mo -share/locale/tg/LC_MESSAGES/kedit.mo -share/locale/tg/LC_MESSAGES/keduca.mo -share/locale/tg/LC_MESSAGES/kenolaba.mo -share/locale/tg/LC_MESSAGES/kfax.mo -share/locale/tg/LC_MESSAGES/kfifteenapplet.mo -share/locale/tg/LC_MESSAGES/kfile_au.mo +share/locale/tg/LC_MESSAGES/keditbookmarks.mo +share/locale/tg/LC_MESSAGES/kfile.mo share/locale/tg/LC_MESSAGES/kfile_avi.mo -share/locale/tg/LC_MESSAGES/kfile_bmp.mo -share/locale/tg/LC_MESSAGES/kfile_cert.mo -share/locale/tg/LC_MESSAGES/kfile_cpp.mo -share/locale/tg/LC_MESSAGES/kfile_deb.mo -share/locale/tg/LC_MESSAGES/kfile_desktop.mo -share/locale/tg/LC_MESSAGES/kfile_diff.mo share/locale/tg/LC_MESSAGES/kfile_drgeo.mo share/locale/tg/LC_MESSAGES/kfile_dvi.mo share/locale/tg/LC_MESSAGES/kfile_exr.mo share/locale/tg/LC_MESSAGES/kfile_flac.mo -share/locale/tg/LC_MESSAGES/kfile_folder.mo -share/locale/tg/LC_MESSAGES/kfile_gif.mo -share/locale/tg/LC_MESSAGES/kfile_html.mo -share/locale/tg/LC_MESSAGES/kfile_ico.mo -share/locale/tg/LC_MESSAGES/kfile_jpeg.mo share/locale/tg/LC_MESSAGES/kfile_kig.mo -share/locale/tg/LC_MESSAGES/kfile_lnk.mo -share/locale/tg/LC_MESSAGES/kfile_m3u.mo -share/locale/tg/LC_MESSAGES/kfile_mhtml.mo share/locale/tg/LC_MESSAGES/kfile_mp3.mo share/locale/tg/LC_MESSAGES/kfile_ogg.mo -share/locale/tg/LC_MESSAGES/kfile_palm.mo -share/locale/tg/LC_MESSAGES/kfile_pcx.mo -share/locale/tg/LC_MESSAGES/kfile_pdf.mo -share/locale/tg/LC_MESSAGES/kfile_png.mo share/locale/tg/LC_MESSAGES/kfile_pnm.mo -share/locale/tg/LC_MESSAGES/kfile_po.mo -share/locale/tg/LC_MESSAGES/kfile_ps.mo -share/locale/tg/LC_MESSAGES/kfile_rfc822.mo share/locale/tg/LC_MESSAGES/kfile_rgb.mo share/locale/tg/LC_MESSAGES/kfile_rpm.mo share/locale/tg/LC_MESSAGES/kfile_sid.mo -share/locale/tg/LC_MESSAGES/kfile_tga.mo share/locale/tg/LC_MESSAGES/kfile_tiff.mo -share/locale/tg/LC_MESSAGES/kfile_ts.mo -share/locale/tg/LC_MESSAGES/kfile_txt.mo -share/locale/tg/LC_MESSAGES/kfile_vcf.mo share/locale/tg/LC_MESSAGES/kfile_wav.mo -share/locale/tg/LC_MESSAGES/kfile_xbm.mo -share/locale/tg/LC_MESSAGES/kfileaudiopreview.mo +share/locale/tg/LC_MESSAGES/kfileaudiopreview4.mo share/locale/tg/LC_MESSAGES/kfilereplace.mo share/locale/tg/LC_MESSAGES/kfileshare.mo share/locale/tg/LC_MESSAGES/kfindpart.mo share/locale/tg/LC_MESSAGES/kfloppy.mo share/locale/tg/LC_MESSAGES/kfmclient.mo share/locale/tg/LC_MESSAGES/kfontinst.mo -share/locale/tg/LC_MESSAGES/kfouleggs.mo -share/locale/tg/LC_MESSAGES/kgamma.mo -share/locale/tg/LC_MESSAGES/kgantt.mo +share/locale/tg/LC_MESSAGES/kfourinline.mo share/locale/tg/LC_MESSAGES/kgeography.mo share/locale/tg/LC_MESSAGES/kget.mo -share/locale/tg/LC_MESSAGES/kghostview.mo share/locale/tg/LC_MESSAGES/kgoldrunner.mo share/locale/tg/LC_MESSAGES/kgpg.mo share/locale/tg/LC_MESSAGES/kgreet_classic.mo +share/locale/tg/LC_MESSAGES/kgreet_generic.mo +share/locale/tg/LC_MESSAGES/kgreet_winbind.mo share/locale/tg/LC_MESSAGES/khangman.mo share/locale/tg/LC_MESSAGES/khelpcenter.mo -share/locale/tg/LC_MESSAGES/khexedit.mo share/locale/tg/LC_MESSAGES/khotkeys.mo -share/locale/tg/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/tg/LC_MESSAGES/kicker.mo -share/locale/tg/LC_MESSAGES/kiconedit.mo +share/locale/tg/LC_MESSAGES/khotnewstuff.mo +share/locale/tg/LC_MESSAGES/khtmlkttsd.mo +share/locale/tg/LC_MESSAGES/kiconfinder.mo share/locale/tg/LC_MESSAGES/kig.mo share/locale/tg/LC_MESSAGES/kimagemapeditor.mo share/locale/tg/LC_MESSAGES/kinetd.mo -share/locale/tg/LC_MESSAGES/kio.mo +share/locale/tg/LC_MESSAGES/kinfocenter.mo +share/locale/tg/LC_MESSAGES/kio4.mo +share/locale/tg/LC_MESSAGES/kio_applications.mo +share/locale/tg/LC_MESSAGES/kio_archive.mo share/locale/tg/LC_MESSAGES/kio_audiocd.mo +share/locale/tg/LC_MESSAGES/kio_bookmarks.mo share/locale/tg/LC_MESSAGES/kio_finger.mo share/locale/tg/LC_MESSAGES/kio_fish.mo share/locale/tg/LC_MESSAGES/kio_floppy.mo -share/locale/tg/LC_MESSAGES/kio_help.mo +share/locale/tg/LC_MESSAGES/kio_help4.mo share/locale/tg/LC_MESSAGES/kio_imap4.mo -share/locale/tg/LC_MESSAGES/kio_lan.mo -share/locale/tg/LC_MESSAGES/kio_mac.mo share/locale/tg/LC_MESSAGES/kio_man.mo -share/locale/tg/LC_MESSAGES/kio_media.mo -share/locale/tg/LC_MESSAGES/kio_mobile.mo +share/locale/tg/LC_MESSAGES/kio_nepomuksearch.mo share/locale/tg/LC_MESSAGES/kio_nfs.mo share/locale/tg/LC_MESSAGES/kio_nntp.mo share/locale/tg/LC_MESSAGES/kio_pop3.mo -share/locale/tg/LC_MESSAGES/kio_print.mo -share/locale/tg/LC_MESSAGES/kio_settings.mo +share/locale/tg/LC_MESSAGES/kio_remote.mo share/locale/tg/LC_MESSAGES/kio_sftp.mo share/locale/tg/LC_MESSAGES/kio_sieve.mo share/locale/tg/LC_MESSAGES/kio_smb.mo share/locale/tg/LC_MESSAGES/kio_smtp.mo +share/locale/tg/LC_MESSAGES/kio_thumbnail.mo +share/locale/tg/LC_MESSAGES/kio_trash.mo +share/locale/tg/LC_MESSAGES/kioclient.mo share/locale/tg/LC_MESSAGES/kioexec.mo share/locale/tg/LC_MESSAGES/kiten.mo -share/locale/tg/LC_MESSAGES/kjobviewer.mo share/locale/tg/LC_MESSAGES/kjots.mo share/locale/tg/LC_MESSAGES/kjumpingcube.mo -share/locale/tg/LC_MESSAGES/klaptopdaemon.mo -share/locale/tg/LC_MESSAGES/klatin.mo share/locale/tg/LC_MESSAGES/kleopatra.mo share/locale/tg/LC_MESSAGES/klettres.mo -share/locale/tg/LC_MESSAGES/klickety.mo share/locale/tg/LC_MESSAGES/klines.mo share/locale/tg/LC_MESSAGES/klinkstatus.mo share/locale/tg/LC_MESSAGES/klipper.mo @@ -304,207 +220,170 @@ share/locale/tg/LC_MESSAGES/kmail.mo share/locale/tg/LC_MESSAGES/kmail_text_calendar_plugin.mo share/locale/tg/LC_MESSAGES/kmail_text_vcard_plugin.mo share/locale/tg/LC_MESSAGES/kmailcvt.mo -share/locale/tg/LC_MESSAGES/kmathapplet.mo -share/locale/tg/LC_MESSAGES/kmcop.mo -share/locale/tg/LC_MESSAGES/kmenuapplet.mo share/locale/tg/LC_MESSAGES/kmenuedit.mo -share/locale/tg/LC_MESSAGES/kmid.mo -share/locale/tg/LC_MESSAGES/kmilo_generic.mo -share/locale/tg/LC_MESSAGES/kmilo_kvaio.mo -share/locale/tg/LC_MESSAGES/kmilo_powerbook.mo -share/locale/tg/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/tg/LC_MESSAGES/kmilod.mo +share/locale/tg/LC_MESSAGES/kmimetypefinder.mo share/locale/tg/LC_MESSAGES/kmines.mo -share/locale/tg/LC_MESSAGES/kminipagerapplet.mo share/locale/tg/LC_MESSAGES/kmix.mo -share/locale/tg/LC_MESSAGES/kmobile.mo -share/locale/tg/LC_MESSAGES/kmoon.mo share/locale/tg/LC_MESSAGES/kmousetool.mo share/locale/tg/LC_MESSAGES/kmouth.mo share/locale/tg/LC_MESSAGES/kmplot.mo -share/locale/tg/LC_MESSAGES/kmrml.mo share/locale/tg/LC_MESSAGES/knetattach.mo -share/locale/tg/LC_MESSAGES/knetworkconf.mo -share/locale/tg/LC_MESSAGES/knewsticker.mo +share/locale/tg/LC_MESSAGES/knetworkconfmodule.mo share/locale/tg/LC_MESSAGES/knode.mo share/locale/tg/LC_MESSAGES/knotes.mo -share/locale/tg/LC_MESSAGES/knotify.mo -share/locale/tg/LC_MESSAGES/kodo.mo +share/locale/tg/LC_MESSAGES/knotify4.mo share/locale/tg/LC_MESSAGES/kolf.mo share/locale/tg/LC_MESSAGES/kolourpaint.mo -share/locale/tg/LC_MESSAGES/kolourpicker.mo -share/locale/tg/LC_MESSAGES/kommander.mo share/locale/tg/LC_MESSAGES/kompare.mo -share/locale/tg/LC_MESSAGES/konqsidebar_delicious.mo -share/locale/tg/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/tg/LC_MESSAGES/konqsidebar_metabar.mo -share/locale/tg/LC_MESSAGES/konqsidebar_news.mo share/locale/tg/LC_MESSAGES/konqueror.mo share/locale/tg/LC_MESSAGES/konquest.mo share/locale/tg/LC_MESSAGES/konsole.mo share/locale/tg/LC_MESSAGES/konsolekalendar.mo share/locale/tg/LC_MESSAGES/kontact.mo -share/locale/tg/LC_MESSAGES/kooka.mo share/locale/tg/LC_MESSAGES/kopete.mo share/locale/tg/LC_MESSAGES/korganizer.mo share/locale/tg/LC_MESSAGES/korn.mo share/locale/tg/LC_MESSAGES/kpackage.mo -share/locale/tg/LC_MESSAGES/kpager.mo share/locale/tg/LC_MESSAGES/kpartsaver.mo +share/locale/tg/LC_MESSAGES/kpasswdserver.mo share/locale/tg/LC_MESSAGES/kpat.mo -share/locale/tg/LC_MESSAGES/kpdf.mo -share/locale/tg/LC_MESSAGES/kpercentage.mo -share/locale/tg/LC_MESSAGES/kpersonalizer.mo -share/locale/tg/LC_MESSAGES/kpf.mo share/locale/tg/LC_MESSAGES/kpilot.mo -share/locale/tg/LC_MESSAGES/kpoker.mo -share/locale/tg/LC_MESSAGES/kpovmodeler.mo share/locale/tg/LC_MESSAGES/kppp.mo share/locale/tg/LC_MESSAGES/kppplogview.mo -share/locale/tg/LC_MESSAGES/kprinter.mo +share/locale/tg/LC_MESSAGES/kquitapp.mo share/locale/tg/LC_MESSAGES/krandr.mo share/locale/tg/LC_MESSAGES/krdb.mo share/locale/tg/LC_MESSAGES/krdc.mo share/locale/tg/LC_MESSAGES/kreadconfig.mo -share/locale/tg/LC_MESSAGES/krec.mo -share/locale/tg/LC_MESSAGES/kregexpeditor.mo -share/locale/tg/LC_MESSAGES/kres_exchange.mo share/locale/tg/LC_MESSAGES/kres_remote.mo share/locale/tg/LC_MESSAGES/kres_xmlrpc.mo share/locale/tg/LC_MESSAGES/kreversi.mo share/locale/tg/LC_MESSAGES/krfb.mo share/locale/tg/LC_MESSAGES/kruler.mo -share/locale/tg/LC_MESSAGES/krunapplet.mo +share/locale/tg/LC_MESSAGES/krunner.mo share/locale/tg/LC_MESSAGES/ksame.mo share/locale/tg/LC_MESSAGES/ksayit.mo share/locale/tg/LC_MESSAGES/kscd.mo share/locale/tg/LC_MESSAGES/kscreensaver.mo share/locale/tg/LC_MESSAGES/kshisen.mo -share/locale/tg/LC_MESSAGES/ksig.mo -share/locale/tg/LC_MESSAGES/ksim.mo -share/locale/tg/LC_MESSAGES/ksirc.mo -share/locale/tg/LC_MESSAGES/ksirtet.mo -share/locale/tg/LC_MESSAGES/ksmiletris.mo +share/locale/tg/LC_MESSAGES/kshorturifilter.mo share/locale/tg/LC_MESSAGES/ksmserver.mo -share/locale/tg/LC_MESSAGES/ksnake.mo share/locale/tg/LC_MESSAGES/ksnapshot.mo share/locale/tg/LC_MESSAGES/kspaceduel.mo -share/locale/tg/LC_MESSAGES/ksplash.mo share/locale/tg/LC_MESSAGES/ksplashthemes.mo share/locale/tg/LC_MESSAGES/kstars.mo share/locale/tg/LC_MESSAGES/kstart.mo share/locale/tg/LC_MESSAGES/kstartperf.mo -share/locale/tg/LC_MESSAGES/kstyle_highcontrast_config.mo +share/locale/tg/LC_MESSAGES/kstyle_config.mo share/locale/tg/LC_MESSAGES/kstyle_keramik_config.mo share/locale/tg/LC_MESSAGES/kstyle_phase_config.mo -share/locale/tg/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/tg/LC_MESSAGES/ksvgplugin.mo share/locale/tg/LC_MESSAGES/ksysguard.mo -share/locale/tg/LC_MESSAGES/ksystemtrayapplet.mo +share/locale/tg/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/tg/LC_MESSAGES/ksystraycmd.mo share/locale/tg/LC_MESSAGES/ksysv.mo share/locale/tg/LC_MESSAGES/kteatime.mo -share/locale/tg/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/tg/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/tg/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/tg/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/tg/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/tg/LC_MESSAGES/ktimemon.mo +share/locale/tg/LC_MESSAGES/ktexteditor_plugins.mo +share/locale/tg/LC_MESSAGES/kthememanager.mo share/locale/tg/LC_MESSAGES/ktimer.mo -share/locale/tg/LC_MESSAGES/ktip.mo -share/locale/tg/LC_MESSAGES/ktnef.mo +share/locale/tg/LC_MESSAGES/ktimetracker.mo share/locale/tg/LC_MESSAGES/ktouch.mo -share/locale/tg/LC_MESSAGES/ktron.mo +share/locale/tg/LC_MESSAGES/ktraderclient.mo share/locale/tg/LC_MESSAGES/kttsd.mo share/locale/tg/LC_MESSAGES/ktuberling.mo share/locale/tg/LC_MESSAGES/kturtle.mo share/locale/tg/LC_MESSAGES/ktux.mo -share/locale/tg/LC_MESSAGES/kuick_plugin.mo -share/locale/tg/LC_MESSAGES/kuickshow.mo +share/locale/tg/LC_MESSAGES/kuiserver.mo share/locale/tg/LC_MESSAGES/kuiviewer.mo +share/locale/tg/LC_MESSAGES/kurifilter.mo share/locale/tg/LC_MESSAGES/kuser.mo -share/locale/tg/LC_MESSAGES/kverbos.mo -share/locale/tg/LC_MESSAGES/kview.mo -share/locale/tg/LC_MESSAGES/kview_scale.mo -share/locale/tg/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/tg/LC_MESSAGES/kviewcanvas.mo -share/locale/tg/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/tg/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/tg/LC_MESSAGES/kviewscannerplugin.mo -share/locale/tg/LC_MESSAGES/kviewshell.mo -share/locale/tg/LC_MESSAGES/kviewviewer.mo -share/locale/tg/LC_MESSAGES/kvoctrain.mo +share/locale/tg/LC_MESSAGES/kwalletd.mo share/locale/tg/LC_MESSAGES/kwalletmanager.mo share/locale/tg/LC_MESSAGES/kwatchgnupg.mo share/locale/tg/LC_MESSAGES/kweather.mo -share/locale/tg/LC_MESSAGES/kwifimanager.mo share/locale/tg/LC_MESSAGES/kwin.mo -share/locale/tg/LC_MESSAGES/kwin4.mo share/locale/tg/LC_MESSAGES/kwin_art_clients.mo -share/locale/tg/LC_MESSAGES/kwireless.mo +share/locale/tg/LC_MESSAGES/kwin_clients.mo +share/locale/tg/LC_MESSAGES/kwin_effects.mo +share/locale/tg/LC_MESSAGES/kwin_lib.mo +share/locale/tg/LC_MESSAGES/kwinstartmenu.mo share/locale/tg/LC_MESSAGES/kwordquiz.mo -share/locale/tg/LC_MESSAGES/kworldclock.mo +share/locale/tg/LC_MESSAGES/kwrite.mo share/locale/tg/LC_MESSAGES/kwriteconfig.mo share/locale/tg/LC_MESSAGES/kxkb.mo share/locale/tg/LC_MESSAGES/kxsconfig.mo share/locale/tg/LC_MESSAGES/kxsldbg.mo -share/locale/tg/LC_MESSAGES/libKTTSD.mo -share/locale/tg/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/tg/LC_MESSAGES/libkaddrbk_gmx_xxport.mo share/locale/tg/LC_MESSAGES/libkcal.mo share/locale/tg/LC_MESSAGES/libkcddb.mo share/locale/tg/LC_MESSAGES/libkdeedu.mo share/locale/tg/LC_MESSAGES/libkdegames.mo share/locale/tg/LC_MESSAGES/libkdepim.mo -share/locale/tg/LC_MESSAGES/libkicker.mo -share/locale/tg/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/tg/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/tg/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/tg/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/tg/LC_MESSAGES/libkickermenu_tom.mo share/locale/tg/LC_MESSAGES/libkleopatra.mo share/locale/tg/LC_MESSAGES/libkonq.mo -share/locale/tg/LC_MESSAGES/libkpimexchange.mo -share/locale/tg/LC_MESSAGES/libkscan.mo share/locale/tg/LC_MESSAGES/libkscreensaver.mo share/locale/tg/LC_MESSAGES/libksieve.mo -share/locale/tg/LC_MESSAGES/libksirtet.mo -share/locale/tg/LC_MESSAGES/libksync.mo -share/locale/tg/LC_MESSAGES/libtaskbar.mo +share/locale/tg/LC_MESSAGES/libkworkspace.mo +share/locale/tg/LC_MESSAGES/libplasmaclock.mo share/locale/tg/LC_MESSAGES/libtaskmanager.mo -share/locale/tg/LC_MESSAGES/lockout.mo share/locale/tg/LC_MESSAGES/lskat.mo -share/locale/tg/LC_MESSAGES/lyrics.mo -share/locale/tg/LC_MESSAGES/mediaapplet.mo -share/locale/tg/LC_MESSAGES/mediacontrol.mo -share/locale/tg/LC_MESSAGES/mf_konqplugin.mo -share/locale/tg/LC_MESSAGES/minitoolsplugin.mo -share/locale/tg/LC_MESSAGES/naughtyapplet.mo -share/locale/tg/LC_MESSAGES/nexscope.mo -share/locale/tg/LC_MESSAGES/noatun.mo +share/locale/tg/LC_MESSAGES/nepomuk.mo +share/locale/tg/LC_MESSAGES/nepomuksearch.mo share/locale/tg/LC_MESSAGES/nsplugin.mo -share/locale/tg/LC_MESSAGES/pitchablespeed.mo -share/locale/tg/LC_MESSAGES/ppdtranslations.mo -share/locale/tg/LC_MESSAGES/privacy.mo -share/locale/tg/LC_MESSAGES/quanta.mo -share/locale/tg/LC_MESSAGES/quicklauncher.mo -share/locale/tg/LC_MESSAGES/rellinks.mo -share/locale/tg/LC_MESSAGES/searchbarplugin.mo -share/locale/tg/LC_MESSAGES/secpolicy.mo +share/locale/tg/LC_MESSAGES/okular.mo +share/locale/tg/LC_MESSAGES/parley.mo +share/locale/tg/LC_MESSAGES/phonon_kde.mo +share/locale/tg/LC_MESSAGES/plasma-overlay.mo +share/locale/tg/LC_MESSAGES/plasma-shells-common.mo +share/locale/tg/LC_MESSAGES/plasma.mo +share/locale/tg/LC_MESSAGES/plasma_applet_battery.mo +share/locale/tg/LC_MESSAGES/plasma_applet_clock.mo +share/locale/tg/LC_MESSAGES/plasma_applet_desktop.mo +share/locale/tg/LC_MESSAGES/plasma_applet_devicenotifier.mo +share/locale/tg/LC_MESSAGES/plasma_applet_dig_clock.mo +share/locale/tg/LC_MESSAGES/plasma_applet_folderview.mo +share/locale/tg/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/tg/LC_MESSAGES/plasma_applet_pager.mo +share/locale/tg/LC_MESSAGES/plasma_applet_panel.mo +share/locale/tg/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/tg/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/tg/LC_MESSAGES/plasma_applet_systemtray.mo +share/locale/tg/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/tg/LC_MESSAGES/plasma_applet_trash.mo +share/locale/tg/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/tg/LC_MESSAGES/plasma_appletscript_qedje.mo +share/locale/tg/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo +share/locale/tg/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/tg/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/tg/LC_MESSAGES/plasma_engine_rss.mo +share/locale/tg/LC_MESSAGES/plasma_runner_locations.mo +share/locale/tg/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/tg/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/tg/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/tg/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/tg/LC_MESSAGES/plasma_runner_shell.mo +share/locale/tg/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/tg/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/tg/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/tg/LC_MESSAGES/plasma_wallpaper_image.mo +share/locale/tg/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/tg/LC_MESSAGES/plasmapkg.mo +share/locale/tg/LC_MESSAGES/plasmoidviewer.mo +share/locale/tg/LC_MESSAGES/powerdevil.mo +share/locale/tg/LC_MESSAGES/processcore.mo +share/locale/tg/LC_MESSAGES/processui.mo +share/locale/tg/LC_MESSAGES/solid-bluetooth.mo +share/locale/tg/LC_MESSAGES/solid-hardware.mo +share/locale/tg/LC_MESSAGES/solid-network.mo +share/locale/tg/LC_MESSAGES/solid-powermanagement.mo +share/locale/tg/LC_MESSAGES/solidcontrol.mo +share/locale/tg/LC_MESSAGES/soliduiserver.mo share/locale/tg/LC_MESSAGES/spy.mo -share/locale/tg/LC_MESSAGES/synaescope.mo -share/locale/tg/LC_MESSAGES/timezones.mo -share/locale/tg/LC_MESSAGES/tippecanoe.mo -share/locale/tg/LC_MESSAGES/tyler.mo -share/locale/tg/LC_MESSAGES/uachangerplugin.mo +share/locale/tg/LC_MESSAGES/strigila_diff.mo +share/locale/tg/LC_MESSAGES/sweeper.mo +share/locale/tg/LC_MESSAGES/systemsettings.mo +share/locale/tg/LC_MESSAGES/timezones4.mo share/locale/tg/LC_MESSAGES/umbrello.mo share/locale/tg/LC_MESSAGES/useraccount.mo -share/locale/tg/LC_MESSAGES/validatorsplugin.mo -share/locale/tg/LC_MESSAGES/wakeup.mo -share/locale/tg/LC_MESSAGES/wavecapture.mo -share/locale/tg/LC_MESSAGES/webarchiver.mo -share/locale/tg/charset share/locale/tg/entry.desktop -@dirrm share/apps/khangman/data/tg -@dirrm share/apps/khangman/data +@dirrm share/apps/kvtml/tg +@dirrm share/apps/kvtml @dirrm share/apps/khangman diff --git a/misc/kde4-l10n-th/distinfo b/misc/kde4-l10n-th/distinfo index e2cc52e2a205..50a1125dcd2e 100644 --- a/misc/kde4-l10n-th/distinfo +++ b/misc/kde4-l10n-th/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-th-4.1.4.tar.bz2) = 24ffa0fca844ff1756ca7469bd845d98 -SHA256 (KDE/kde-l10n/kde-l10n-th-4.1.4.tar.bz2) = 1873954baf86b5d9361c95e37349a617a7da2b574acc187d86d3a7f020e2c595 -SIZE (KDE/kde-l10n/kde-l10n-th-4.1.4.tar.bz2) = 1027455 +MD5 (KDE/kde-l10n/kde-l10n-th-4.2.0.tar.bz2) = 010ba3a0ed85c99cd215623f6d78fcd5 +SHA256 (KDE/kde-l10n/kde-l10n-th-4.2.0.tar.bz2) = 533d7f6529615c21ec7860ac1419bcf81f7d3a9431b8e895461f450850f2aed6 +SIZE (KDE/kde-l10n/kde-l10n-th-4.2.0.tar.bz2) = 1117942 diff --git a/misc/kde4-l10n-th/pkg-plist b/misc/kde4-l10n-th/pkg-plist index 10da98e6144b..0f6bb5b3e84e 100644 --- a/misc/kde4-l10n-th/pkg-plist +++ b/misc/kde4-l10n-th/pkg-plist @@ -24,6 +24,7 @@ share/locale/th/LC_MESSAGES/kabcformat_binary.mo share/locale/th/LC_MESSAGES/kaccess.mo share/locale/th/LC_MESSAGES/kaddressbook.mo share/locale/th/LC_MESSAGES/kalzium.mo +share/locale/th/LC_MESSAGES/kalzium_qt.mo share/locale/th/LC_MESSAGES/kappfinder.mo share/locale/th/LC_MESSAGES/kate.mo share/locale/th/LC_MESSAGES/kateexternaltoolsplugin.mo @@ -44,14 +45,17 @@ share/locale/th/LC_MESSAGES/kcalc.mo share/locale/th/LC_MESSAGES/kcertpart.mo share/locale/th/LC_MESSAGES/kcharselect.mo share/locale/th/LC_MESSAGES/kcm_autostart.mo +share/locale/th/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/th/LC_MESSAGES/kcm_emoticons.mo share/locale/th/LC_MESSAGES/kcm_krfb.mo share/locale/th/LC_MESSAGES/kcm_kwindesktop.mo share/locale/th/LC_MESSAGES/kcm_memory.mo share/locale/th/LC_MESSAGES/kcm_partition.mo +share/locale/th/LC_MESSAGES/kcm_pci.mo share/locale/th/LC_MESSAGES/kcm_phonon.mo share/locale/th/LC_MESSAGES/kcm_phononxine.mo share/locale/th/LC_MESSAGES/kcm_solid.mo +share/locale/th/LC_MESSAGES/kcm_standard_actions.mo share/locale/th/LC_MESSAGES/kcmaccess.mo share/locale/th/LC_MESSAGES/kcmaudiocd.mo share/locale/th/LC_MESSAGES/kcmbackground.mo @@ -101,7 +105,6 @@ share/locale/th/LC_MESSAGES/kcmsmartcard.mo share/locale/th/LC_MESSAGES/kcmsmserver.mo share/locale/th/LC_MESSAGES/kcmsolidproc.mo share/locale/th/LC_MESSAGES/kcmstyle.mo -share/locale/th/LC_MESSAGES/kcmtaskbar.mo share/locale/th/LC_MESSAGES/kcmusb.mo share/locale/th/LC_MESSAGES/kcmview1394.mo share/locale/th/LC_MESSAGES/kcmxinerama.mo @@ -110,6 +113,7 @@ share/locale/th/LC_MESSAGES/kcron.mo share/locale/th/LC_MESSAGES/kdat.mo share/locale/th/LC_MESSAGES/kde-menu.mo share/locale/th/LC_MESSAGES/kdebugdialog.mo +share/locale/th/LC_MESSAGES/kded_phononserver.mo share/locale/th/LC_MESSAGES/kdelibs4.mo share/locale/th/LC_MESSAGES/kdelibs_colors4.mo share/locale/th/LC_MESSAGES/kdepasswd.mo @@ -161,8 +165,10 @@ share/locale/th/LC_MESSAGES/kiconfinder.mo share/locale/th/LC_MESSAGES/kinetd.mo share/locale/th/LC_MESSAGES/kinfocenter.mo share/locale/th/LC_MESSAGES/kio4.mo +share/locale/th/LC_MESSAGES/kio_applications.mo share/locale/th/LC_MESSAGES/kio_archive.mo share/locale/th/LC_MESSAGES/kio_audiocd.mo +share/locale/th/LC_MESSAGES/kio_bookmarks.mo share/locale/th/LC_MESSAGES/kio_finger.mo share/locale/th/LC_MESSAGES/kio_fish.mo share/locale/th/LC_MESSAGES/kio_floppy.mo @@ -172,11 +178,11 @@ share/locale/th/LC_MESSAGES/kio_jabberdisco.mo share/locale/th/LC_MESSAGES/kio_ldap.mo share/locale/th/LC_MESSAGES/kio_man.mo share/locale/th/LC_MESSAGES/kio_mbox.mo +share/locale/th/LC_MESSAGES/kio_nepomuksearch.mo share/locale/th/LC_MESSAGES/kio_nfs.mo share/locale/th/LC_MESSAGES/kio_nntp.mo share/locale/th/LC_MESSAGES/kio_pop3.mo share/locale/th/LC_MESSAGES/kio_remote.mo -share/locale/th/LC_MESSAGES/kio_settings.mo share/locale/th/LC_MESSAGES/kio_sftp.mo share/locale/th/LC_MESSAGES/kio_sieve.mo share/locale/th/LC_MESSAGES/kio_smb.mo @@ -218,7 +224,6 @@ share/locale/th/LC_MESSAGES/kpackage.mo share/locale/th/LC_MESSAGES/kpartsaver.mo share/locale/th/LC_MESSAGES/kpasswdserver.mo share/locale/th/LC_MESSAGES/kpat.mo -share/locale/th/LC_MESSAGES/kpercentage.mo share/locale/th/LC_MESSAGES/kppp.mo share/locale/th/LC_MESSAGES/kppplogview.mo share/locale/th/LC_MESSAGES/kquitapp.mo @@ -232,12 +237,6 @@ share/locale/th/LC_MESSAGES/kres_featureplan.mo share/locale/th/LC_MESSAGES/krfb.mo share/locale/th/LC_MESSAGES/kruler.mo share/locale/th/LC_MESSAGES/krunner.mo -share/locale/th/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/th/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/th/LC_MESSAGES/krunner_contacts.mo -share/locale/th/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/th/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/th/LC_MESSAGES/krunner_xesam.mo share/locale/th/LC_MESSAGES/ksame.mo share/locale/th/LC_MESSAGES/kscd.mo share/locale/th/LC_MESSAGES/kscreensaver.mo @@ -250,6 +249,7 @@ share/locale/th/LC_MESSAGES/kstartperf.mo share/locale/th/LC_MESSAGES/kstyle_config.mo share/locale/th/LC_MESSAGES/kstyle_keramik_config.mo share/locale/th/LC_MESSAGES/ksysguard.mo +share/locale/th/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/th/LC_MESSAGES/ksystemlog.mo share/locale/th/LC_MESSAGES/ksystraycmd.mo share/locale/th/LC_MESSAGES/ksysv.mo @@ -264,6 +264,7 @@ share/locale/th/LC_MESSAGES/kuiserver.mo share/locale/th/LC_MESSAGES/kuiviewer.mo share/locale/th/LC_MESSAGES/kurifilter.mo share/locale/th/LC_MESSAGES/kuser.mo +share/locale/th/LC_MESSAGES/kwalletd.mo share/locale/th/LC_MESSAGES/kwalletmanager.mo share/locale/th/LC_MESSAGES/kwin.mo share/locale/th/LC_MESSAGES/kwin_clients.mo @@ -295,13 +296,17 @@ share/locale/th/LC_MESSAGES/libkworkspace.mo share/locale/th/LC_MESSAGES/libmailtransport.mo share/locale/th/LC_MESSAGES/libphonon.mo share/locale/th/LC_MESSAGES/libplasma.mo +share/locale/th/LC_MESSAGES/libplasmaclock.mo share/locale/th/LC_MESSAGES/libtaskmanager.mo share/locale/th/LC_MESSAGES/nepomuk.mo +share/locale/th/LC_MESSAGES/nepomuksearch.mo share/locale/th/LC_MESSAGES/nsplugin.mo share/locale/th/LC_MESSAGES/okular.mo share/locale/th/LC_MESSAGES/okular_chm.mo share/locale/th/LC_MESSAGES/okular_comicbook.mo share/locale/th/LC_MESSAGES/okular_djvu.mo +share/locale/th/LC_MESSAGES/okular_epub.mo +share/locale/th/LC_MESSAGES/okular_fax.mo share/locale/th/LC_MESSAGES/okular_fictionbook.mo share/locale/th/LC_MESSAGES/okular_ghostview.mo share/locale/th/LC_MESSAGES/okular_kimgio.mo @@ -312,10 +317,15 @@ share/locale/th/LC_MESSAGES/okular_tiff.mo share/locale/th/LC_MESSAGES/okular_xps.mo share/locale/th/LC_MESSAGES/phonon-xine.mo share/locale/th/LC_MESSAGES/phonon_kde.mo +share/locale/th/LC_MESSAGES/plasma-overlay.mo +share/locale/th/LC_MESSAGES/plasma-shells-common.mo share/locale/th/LC_MESSAGES/plasma.mo share/locale/th/LC_MESSAGES/plasma_applet_battery.mo +share/locale/th/LC_MESSAGES/plasma_applet_bball.mo share/locale/th/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/th/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/th/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/th/LC_MESSAGES/plasma_applet_charselect.mo share/locale/th/LC_MESSAGES/plasma_applet_clock.mo share/locale/th/LC_MESSAGES/plasma_applet_comic.mo share/locale/th/LC_MESSAGES/plasma_applet_desktop.mo @@ -326,23 +336,58 @@ share/locale/th/LC_MESSAGES/plasma_applet_fifteenPuzzle.mo share/locale/th/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/th/LC_MESSAGES/plasma_applet_folderview.mo share/locale/th/LC_MESSAGES/plasma_applet_frame.mo +share/locale/th/LC_MESSAGES/plasma_applet_fuzzy_clock.mo share/locale/th/LC_MESSAGES/plasma_applet_katesession.mo share/locale/th/LC_MESSAGES/plasma_applet_kget.mo -share/locale/th/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/th/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/th/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/th/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/th/LC_MESSAGES/plasma_applet_life.mo +share/locale/th/LC_MESSAGES/plasma_applet_luna.mo +share/locale/th/LC_MESSAGES/plasma_applet_news.mo share/locale/th/LC_MESSAGES/plasma_applet_notes.mo share/locale/th/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/th/LC_MESSAGES/plasma_applet_pager.mo share/locale/th/LC_MESSAGES/plasma_applet_panel.mo +share/locale/th/LC_MESSAGES/plasma_applet_paste.mo +share/locale/th/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/th/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/th/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/th/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/th/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/th/LC_MESSAGES/plasma_applet_showdesktop.mo +share/locale/th/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/th/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/th/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/th/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/th/LC_MESSAGES/plasma_applet_timer.mo share/locale/th/LC_MESSAGES/plasma_applet_trash.mo share/locale/th/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/th/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/th/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/th/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/th/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/th/LC_MESSAGES/plasma_engine_dict.mo +share/locale/th/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/th/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/th/LC_MESSAGES/plasma_engine_rss.mo +share/locale/th/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/th/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/th/LC_MESSAGES/plasma_runner_locations.mo +share/locale/th/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/th/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/th/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/th/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/th/LC_MESSAGES/plasma_runner_shell.mo +share/locale/th/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/th/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/th/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/th/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/th/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/th/LC_MESSAGES/plasmaengineexplorer.mo share/locale/th/LC_MESSAGES/plasmapkg.mo share/locale/th/LC_MESSAGES/plasmoidviewer.mo +share/locale/th/LC_MESSAGES/powerdevil.mo +share/locale/th/LC_MESSAGES/printer-applet.mo share/locale/th/LC_MESSAGES/processcore.mo share/locale/th/LC_MESSAGES/processui.mo share/locale/th/LC_MESSAGES/solid-bluetooth.mo @@ -354,6 +399,7 @@ share/locale/th/LC_MESSAGES/soliduiserver.mo share/locale/th/LC_MESSAGES/spy.mo share/locale/th/LC_MESSAGES/superkaramba.mo share/locale/th/LC_MESSAGES/svgpart.mo +share/locale/th/LC_MESSAGES/sweeper.mo share/locale/th/LC_MESSAGES/systemsettings.mo share/locale/th/LC_MESSAGES/timezones4.mo share/locale/th/LC_MESSAGES/useraccount.mo diff --git a/misc/kde4-l10n-tr/distinfo b/misc/kde4-l10n-tr/distinfo index c4a78e8d1cac..08e6b045b3b0 100644 --- a/misc/kde4-l10n-tr/distinfo +++ b/misc/kde4-l10n-tr/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-tr-4.1.4.tar.bz2) = d06edd7000b97585335bcefb4e62ad3a -SHA256 (KDE/kde-l10n/kde-l10n-tr-4.1.4.tar.bz2) = e724a3faa71155e45479b917a71bcdfaf174f0c64cbd6ce6c6c33c366680720b -SIZE (KDE/kde-l10n/kde-l10n-tr-4.1.4.tar.bz2) = 1858009 +MD5 (KDE/kde-l10n/kde-l10n-tr-4.2.0.tar.bz2) = 850a88f8d82d9d9ab4c5ef2406eba39e +SHA256 (KDE/kde-l10n/kde-l10n-tr-4.2.0.tar.bz2) = d86886f59ff772737209eb2d41f3adb21627751b9c43bf87f76b94f3592bf40a +SIZE (KDE/kde-l10n/kde-l10n-tr-4.2.0.tar.bz2) = 1981262 diff --git a/misc/kde4-l10n-tr/pkg-plist b/misc/kde4-l10n-tr/pkg-plist index ff77476f7489..36a782ad6297 100644 --- a/misc/kde4-l10n-tr/pkg-plist +++ b/misc/kde4-l10n-tr/pkg-plist @@ -3,15 +3,6 @@ share/apps/kvtml/tr/animals.kvtml share/apps/kvtml/tr/easy.kvtml share/apps/kvtml/tr/hard.kvtml share/apps/kvtml/tr/medium.kvtml -share/doc/HTML/tr/khelpcenter/common -share/doc/HTML/tr/khelpcenter/contact.docbook -share/doc/HTML/tr/khelpcenter/help.docbook -share/doc/HTML/tr/khelpcenter/index.cache.bz2 -share/doc/HTML/tr/khelpcenter/index.docbook -share/doc/HTML/tr/khelpcenter/links.docbook -share/doc/HTML/tr/khelpcenter/support.docbook -share/doc/HTML/tr/khelpcenter/welcome.docbook -share/doc/HTML/tr/khelpcenter/whatiskde.docbook share/doc/HTML/tr/kinfocenter/protocols/common share/doc/HTML/tr/kinfocenter/protocols/index.cache.bz2 share/doc/HTML/tr/kinfocenter/protocols/index.docbook @@ -23,6 +14,7 @@ share/locale/tr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/tr/LC_MESSAGES/audiorename_plugin.mo share/locale/tr/LC_MESSAGES/blinken.mo +share/locale/tr/LC_MESSAGES/bomber.mo share/locale/tr/LC_MESSAGES/bovo.mo share/locale/tr/LC_MESSAGES/cervisia.mo share/locale/tr/LC_MESSAGES/cvsservice.mo @@ -37,6 +29,7 @@ share/locale/tr/LC_MESSAGES/imagerename_plugin.mo share/locale/tr/LC_MESSAGES/joystick.mo share/locale/tr/LC_MESSAGES/juk.mo share/locale/tr/LC_MESSAGES/kabc.mo +share/locale/tr/LC_MESSAGES/kabc_akonadi.mo share/locale/tr/LC_MESSAGES/kabc_dir.mo share/locale/tr/LC_MESSAGES/kabc_file.mo share/locale/tr/LC_MESSAGES/kabc_ldapkio.mo @@ -50,10 +43,14 @@ share/locale/tr/LC_MESSAGES/kaddressbook.mo share/locale/tr/LC_MESSAGES/kalarm.mo share/locale/tr/LC_MESSAGES/kalgebra.mo share/locale/tr/LC_MESSAGES/kalzium.mo +share/locale/tr/LC_MESSAGES/kalzium_qt.mo share/locale/tr/LC_MESSAGES/kanagram.mo +share/locale/tr/LC_MESSAGES/kapman.mo share/locale/tr/LC_MESSAGES/kappfinder.mo share/locale/tr/LC_MESSAGES/kapptemplate.mo +share/locale/tr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/tr/LC_MESSAGES/kate.mo +share/locale/tr/LC_MESSAGES/katebuild-plugin.mo share/locale/tr/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/tr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/tr/LC_MESSAGES/katefiletemplates.mo @@ -64,7 +61,6 @@ share/locale/tr/LC_MESSAGES/kateinsertcommand.mo share/locale/tr/LC_MESSAGES/katekjswrapper.mo share/locale/tr/LC_MESSAGES/katekonsoleplugin.mo share/locale/tr/LC_MESSAGES/katemailfilesplugin.mo -share/locale/tr/LC_MESSAGES/katemake.mo share/locale/tr/LC_MESSAGES/kateopenheader.mo share/locale/tr/LC_MESSAGES/katepart4.mo share/locale/tr/LC_MESSAGES/katepybrowse.mo @@ -83,14 +79,14 @@ share/locale/tr/LC_MESSAGES/kblocks.mo share/locale/tr/LC_MESSAGES/kbounce.mo share/locale/tr/LC_MESSAGES/kbreakout.mo share/locale/tr/LC_MESSAGES/kbruch.mo -share/locale/tr/LC_MESSAGES/kbstateapplet.mo share/locale/tr/LC_MESSAGES/kbugbuster.mo share/locale/tr/LC_MESSAGES/kcachegrind.mo share/locale/tr/LC_MESSAGES/kcalc.mo share/locale/tr/LC_MESSAGES/kcertpart.mo share/locale/tr/LC_MESSAGES/kcharselect.mo -share/locale/tr/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/tr/LC_MESSAGES/kcm_akonadi.mo share/locale/tr/LC_MESSAGES/kcm_autostart.mo +share/locale/tr/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/tr/LC_MESSAGES/kcm_emoticons.mo share/locale/tr/LC_MESSAGES/kcm_krfb.mo share/locale/tr/LC_MESSAGES/kcm_kwindesktop.mo @@ -100,6 +96,7 @@ share/locale/tr/LC_MESSAGES/kcm_pci.mo share/locale/tr/LC_MESSAGES/kcm_phonon.mo share/locale/tr/LC_MESSAGES/kcm_phononxine.mo share/locale/tr/LC_MESSAGES/kcm_solid.mo +share/locale/tr/LC_MESSAGES/kcm_standard_actions.mo share/locale/tr/LC_MESSAGES/kcmaccess.mo share/locale/tr/LC_MESSAGES/kcmaudiocd.mo share/locale/tr/LC_MESSAGES/kcmbackground.mo @@ -149,7 +146,6 @@ share/locale/tr/LC_MESSAGES/kcmsmartcard.mo share/locale/tr/LC_MESSAGES/kcmsmserver.mo share/locale/tr/LC_MESSAGES/kcmsolidproc.mo share/locale/tr/LC_MESSAGES/kcmstyle.mo -share/locale/tr/LC_MESSAGES/kcmtaskbar.mo share/locale/tr/LC_MESSAGES/kcmusb.mo share/locale/tr/LC_MESSAGES/kcmview1394.mo share/locale/tr/LC_MESSAGES/kcmxinerama.mo @@ -157,7 +153,9 @@ share/locale/tr/LC_MESSAGES/kcolorchooser.mo share/locale/tr/LC_MESSAGES/kcron.mo share/locale/tr/LC_MESSAGES/kdat.mo share/locale/tr/LC_MESSAGES/kde-menu.mo +share/locale/tr/LC_MESSAGES/kdeasciiquarium.mo share/locale/tr/LC_MESSAGES/kdebugdialog.mo +share/locale/tr/LC_MESSAGES/kded_phononserver.mo share/locale/tr/LC_MESSAGES/kdelibs4.mo share/locale/tr/LC_MESSAGES/kdelibs_colors4.mo share/locale/tr/LC_MESSAGES/kdepasswd.mo @@ -168,6 +166,7 @@ share/locale/tr/LC_MESSAGES/kdessh.mo share/locale/tr/LC_MESSAGES/kdesu.mo share/locale/tr/LC_MESSAGES/kdesud.mo share/locale/tr/LC_MESSAGES/kdf.mo +share/locale/tr/LC_MESSAGES/kdgantt.mo share/locale/tr/LC_MESSAGES/kdgantt1.mo share/locale/tr/LC_MESSAGES/kdialog.mo share/locale/tr/LC_MESSAGES/kdiamond.mo @@ -217,12 +216,15 @@ share/locale/tr/LC_MESSAGES/khotnewstuff.mo share/locale/tr/LC_MESSAGES/khtmlkttsd.mo share/locale/tr/LC_MESSAGES/kiconfinder.mo share/locale/tr/LC_MESSAGES/kig.mo +share/locale/tr/LC_MESSAGES/killbots.mo share/locale/tr/LC_MESSAGES/kimagemapeditor.mo share/locale/tr/LC_MESSAGES/kinetd.mo share/locale/tr/LC_MESSAGES/kinfocenter.mo share/locale/tr/LC_MESSAGES/kio4.mo +share/locale/tr/LC_MESSAGES/kio_applications.mo share/locale/tr/LC_MESSAGES/kio_archive.mo share/locale/tr/LC_MESSAGES/kio_audiocd.mo +share/locale/tr/LC_MESSAGES/kio_bookmarks.mo share/locale/tr/LC_MESSAGES/kio_finger.mo share/locale/tr/LC_MESSAGES/kio_fish.mo share/locale/tr/LC_MESSAGES/kio_floppy.mo @@ -233,11 +235,12 @@ share/locale/tr/LC_MESSAGES/kio_jabberdisco.mo share/locale/tr/LC_MESSAGES/kio_ldap.mo share/locale/tr/LC_MESSAGES/kio_man.mo share/locale/tr/LC_MESSAGES/kio_mbox.mo +share/locale/tr/LC_MESSAGES/kio_nepomuksearch.mo share/locale/tr/LC_MESSAGES/kio_nfs.mo share/locale/tr/LC_MESSAGES/kio_nntp.mo +share/locale/tr/LC_MESSAGES/kio_perldoc.mo share/locale/tr/LC_MESSAGES/kio_pop3.mo share/locale/tr/LC_MESSAGES/kio_remote.mo -share/locale/tr/LC_MESSAGES/kio_settings.mo share/locale/tr/LC_MESSAGES/kio_sftp.mo share/locale/tr/LC_MESSAGES/kio_sieve.mo share/locale/tr/LC_MESSAGES/kio_smb.mo @@ -297,10 +300,10 @@ share/locale/tr/LC_MESSAGES/kopete.mo share/locale/tr/LC_MESSAGES/korganizer.mo share/locale/tr/LC_MESSAGES/korn.mo share/locale/tr/LC_MESSAGES/kpackage.mo +share/locale/tr/LC_MESSAGES/kpartloader.mo share/locale/tr/LC_MESSAGES/kpartsaver.mo share/locale/tr/LC_MESSAGES/kpasswdserver.mo share/locale/tr/LC_MESSAGES/kpat.mo -share/locale/tr/LC_MESSAGES/kpercentage.mo share/locale/tr/LC_MESSAGES/kpilot.mo share/locale/tr/LC_MESSAGES/kppp.mo share/locale/tr/LC_MESSAGES/kppplogview.mo @@ -324,20 +327,12 @@ share/locale/tr/LC_MESSAGES/kreversi.mo share/locale/tr/LC_MESSAGES/krfb.mo share/locale/tr/LC_MESSAGES/kruler.mo share/locale/tr/LC_MESSAGES/krunner.mo -share/locale/tr/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/tr/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/tr/LC_MESSAGES/krunner_contacts.mo -share/locale/tr/LC_MESSAGES/krunner_converterrunner.mo -share/locale/tr/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/tr/LC_MESSAGES/krunner_sessions.mo -share/locale/tr/LC_MESSAGES/krunner_shellrunner.mo -share/locale/tr/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/tr/LC_MESSAGES/krunner_xesam.mo share/locale/tr/LC_MESSAGES/ksame.mo share/locale/tr/LC_MESSAGES/ksaneplugin.mo share/locale/tr/LC_MESSAGES/ksayit.mo share/locale/tr/LC_MESSAGES/kscd.mo share/locale/tr/LC_MESSAGES/kscreensaver.mo +share/locale/tr/LC_MESSAGES/ksendemail.mo share/locale/tr/LC_MESSAGES/kshisen.mo share/locale/tr/LC_MESSAGES/kshorturifilter.mo share/locale/tr/LC_MESSAGES/ksirk.mo @@ -354,6 +349,7 @@ share/locale/tr/LC_MESSAGES/kstyle_keramik_config.mo share/locale/tr/LC_MESSAGES/kstyle_phase_config.mo share/locale/tr/LC_MESSAGES/ksudoku.mo share/locale/tr/LC_MESSAGES/ksysguard.mo +share/locale/tr/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/tr/LC_MESSAGES/ksystemlog.mo share/locale/tr/LC_MESSAGES/ksystraycmd.mo share/locale/tr/LC_MESSAGES/ksysv.mo @@ -363,7 +359,6 @@ share/locale/tr/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/tr/LC_MESSAGES/kthememanager.mo share/locale/tr/LC_MESSAGES/ktimer.mo share/locale/tr/LC_MESSAGES/ktimetracker.mo -share/locale/tr/LC_MESSAGES/ktnef.mo share/locale/tr/LC_MESSAGES/ktouch.mo share/locale/tr/LC_MESSAGES/ktraderclient.mo share/locale/tr/LC_MESSAGES/kttsd.mo @@ -375,6 +370,7 @@ share/locale/tr/LC_MESSAGES/kuiserver.mo share/locale/tr/LC_MESSAGES/kuiviewer.mo share/locale/tr/LC_MESSAGES/kurifilter.mo share/locale/tr/LC_MESSAGES/kuser.mo +share/locale/tr/LC_MESSAGES/kwalletd.mo share/locale/tr/LC_MESSAGES/kwalletmanager.mo share/locale/tr/LC_MESSAGES/kwatchgnupg.mo share/locale/tr/LC_MESSAGES/kweather.mo @@ -421,11 +417,14 @@ share/locale/tr/LC_MESSAGES/libmailtransport.mo share/locale/tr/LC_MESSAGES/liboktetacore.mo share/locale/tr/LC_MESSAGES/libphonon.mo share/locale/tr/LC_MESSAGES/libplasma.mo +share/locale/tr/LC_MESSAGES/libplasmaclock.mo share/locale/tr/LC_MESSAGES/libtaskmanager.mo share/locale/tr/LC_MESSAGES/lokalize.mo share/locale/tr/LC_MESSAGES/lskat.mo share/locale/tr/LC_MESSAGES/marble.mo +share/locale/tr/LC_MESSAGES/marble_qt.mo share/locale/tr/LC_MESSAGES/nepomuk.mo +share/locale/tr/LC_MESSAGES/nepomuksearch.mo share/locale/tr/LC_MESSAGES/nsplugin.mo share/locale/tr/LC_MESSAGES/okteta.mo share/locale/tr/LC_MESSAGES/oktetapart.mo @@ -435,6 +434,7 @@ share/locale/tr/LC_MESSAGES/okular_comicbook.mo share/locale/tr/LC_MESSAGES/okular_djvu.mo share/locale/tr/LC_MESSAGES/okular_dvi.mo share/locale/tr/LC_MESSAGES/okular_epub.mo +share/locale/tr/LC_MESSAGES/okular_fax.mo share/locale/tr/LC_MESSAGES/okular_fictionbook.mo share/locale/tr/LC_MESSAGES/okular_ghostview.mo share/locale/tr/LC_MESSAGES/okular_kimgio.mo @@ -447,10 +447,15 @@ share/locale/tr/LC_MESSAGES/parley.mo share/locale/tr/LC_MESSAGES/phonon-xine.mo share/locale/tr/LC_MESSAGES/phonon_gstreamer.mo share/locale/tr/LC_MESSAGES/phonon_kde.mo +share/locale/tr/LC_MESSAGES/plasma-overlay.mo +share/locale/tr/LC_MESSAGES/plasma-shells-common.mo share/locale/tr/LC_MESSAGES/plasma.mo share/locale/tr/LC_MESSAGES/plasma_applet_battery.mo +share/locale/tr/LC_MESSAGES/plasma_applet_bball.mo share/locale/tr/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/tr/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/tr/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/tr/LC_MESSAGES/plasma_applet_charselect.mo share/locale/tr/LC_MESSAGES/plasma_applet_clock.mo share/locale/tr/LC_MESSAGES/plasma_applet_comic.mo share/locale/tr/LC_MESSAGES/plasma_applet_desktop.mo @@ -462,26 +467,61 @@ share/locale/tr/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/tr/LC_MESSAGES/plasma_applet_folderview.mo share/locale/tr/LC_MESSAGES/plasma_applet_frame.mo share/locale/tr/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/tr/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/tr/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/tr/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/tr/LC_MESSAGES/plasma_applet_katesession.mo share/locale/tr/LC_MESSAGES/plasma_applet_kget.mo -share/locale/tr/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/tr/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/tr/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/tr/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/tr/LC_MESSAGES/plasma_applet_life.mo share/locale/tr/LC_MESSAGES/plasma_applet_luna.mo +share/locale/tr/LC_MESSAGES/plasma_applet_news.mo share/locale/tr/LC_MESSAGES/plasma_applet_notes.mo share/locale/tr/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/tr/LC_MESSAGES/plasma_applet_pager.mo share/locale/tr/LC_MESSAGES/plasma_applet_panel.mo +share/locale/tr/LC_MESSAGES/plasma_applet_paste.mo +share/locale/tr/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/tr/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/tr/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/tr/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/tr/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/tr/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/tr/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/tr/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/tr/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/tr/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/tr/LC_MESSAGES/plasma_applet_timer.mo share/locale/tr/LC_MESSAGES/plasma_applet_trash.mo share/locale/tr/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/tr/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/tr/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/tr/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/tr/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/tr/LC_MESSAGES/plasma_engine_dict.mo +share/locale/tr/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/tr/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/tr/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/tr/LC_MESSAGES/plasma_engine_rss.mo +share/locale/tr/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/tr/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/tr/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/tr/LC_MESSAGES/plasma_runner_locations.mo +share/locale/tr/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/tr/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/tr/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/tr/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/tr/LC_MESSAGES/plasma_runner_shell.mo +share/locale/tr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/tr/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/tr/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/tr/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/tr/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/tr/LC_MESSAGES/plasmaengineexplorer.mo share/locale/tr/LC_MESSAGES/plasmapkg.mo share/locale/tr/LC_MESSAGES/plasmoidviewer.mo +share/locale/tr/LC_MESSAGES/powerdevil.mo share/locale/tr/LC_MESSAGES/printer-applet.mo share/locale/tr/LC_MESSAGES/processcore.mo share/locale/tr/LC_MESSAGES/processui.mo @@ -493,10 +533,12 @@ share/locale/tr/LC_MESSAGES/solidcontrol.mo share/locale/tr/LC_MESSAGES/soliduiserver.mo share/locale/tr/LC_MESSAGES/spy.mo share/locale/tr/LC_MESSAGES/step.mo +share/locale/tr/LC_MESSAGES/step_qt.mo share/locale/tr/LC_MESSAGES/strigila_diff.mo share/locale/tr/LC_MESSAGES/superkaramba.mo share/locale/tr/LC_MESSAGES/svgpart.mo share/locale/tr/LC_MESSAGES/sweeper.mo +share/locale/tr/LC_MESSAGES/system-config-printer-kde.mo share/locale/tr/LC_MESSAGES/systemsettings.mo share/locale/tr/LC_MESSAGES/timezones4.mo share/locale/tr/LC_MESSAGES/umbrello.mo @@ -504,7 +546,6 @@ share/locale/tr/LC_MESSAGES/useraccount.mo share/locale/tr/entry.desktop @dirrm share/doc/HTML/tr/kinfocenter/protocols @dirrm share/doc/HTML/tr/kinfocenter -@dirrm share/doc/HTML/tr/khelpcenter @dirrm share/apps/kvtml/tr @dirrm share/apps/kvtml @dirrm share/apps/khangman diff --git a/misc/kde4-l10n-wa/distinfo b/misc/kde4-l10n-wa/distinfo index 3ca6e67500d1..dcfa6957b473 100644 --- a/misc/kde4-l10n-wa/distinfo +++ b/misc/kde4-l10n-wa/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-wa-4.1.4.tar.bz2) = 6b01aafb428179c9f4153a958b0d0044 -SHA256 (KDE/kde-l10n/kde-l10n-wa-4.1.4.tar.bz2) = 66d71b229508a8b21581ff67fe087d427654c022d2973eb2941054ff2c1df8e1 -SIZE (KDE/kde-l10n/kde-l10n-wa-4.1.4.tar.bz2) = 714200 +MD5 (KDE/kde-l10n/kde-l10n-wa-4.2.0.tar.bz2) = 0db1e8dc944786811cc1364df0ee4cf2 +SHA256 (KDE/kde-l10n/kde-l10n-wa-4.2.0.tar.bz2) = 022349b0d75b7edeba2b1dccb678241b7160348de39c692a3411271bad1ef798 +SIZE (KDE/kde-l10n/kde-l10n-wa-4.2.0.tar.bz2) = 808350 diff --git a/misc/kde4-l10n-wa/pkg-plist b/misc/kde4-l10n-wa/pkg-plist index 0a29096ad2e2..8b9d1f4022db 100644 --- a/misc/kde4-l10n-wa/pkg-plist +++ b/misc/kde4-l10n-wa/pkg-plist @@ -15,11 +15,15 @@ share/locale/wa/LC_MESSAGES/kaccess.mo share/locale/wa/LC_MESSAGES/kalarm.mo share/locale/wa/LC_MESSAGES/kappfinder.mo share/locale/wa/LC_MESSAGES/kate.mo +share/locale/wa/LC_MESSAGES/katekonsoleplugin.mo +share/locale/wa/LC_MESSAGES/kateopenheader.mo share/locale/wa/LC_MESSAGES/katepart4.mo +share/locale/wa/LC_MESSAGES/katequickdocumentswitcherplugin.mo share/locale/wa/LC_MESSAGES/kblankscrn.mo share/locale/wa/LC_MESSAGES/kcalc.mo share/locale/wa/LC_MESSAGES/kcertpart.mo share/locale/wa/LC_MESSAGES/kcm_autostart.mo +share/locale/wa/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/wa/LC_MESSAGES/kcm_emoticons.mo share/locale/wa/LC_MESSAGES/kcm_kwindesktop.mo share/locale/wa/LC_MESSAGES/kcm_memory.mo @@ -28,6 +32,7 @@ share/locale/wa/LC_MESSAGES/kcm_pci.mo share/locale/wa/LC_MESSAGES/kcm_phonon.mo share/locale/wa/LC_MESSAGES/kcm_phononxine.mo share/locale/wa/LC_MESSAGES/kcm_solid.mo +share/locale/wa/LC_MESSAGES/kcm_standard_actions.mo share/locale/wa/LC_MESSAGES/kcmaccess.mo share/locale/wa/LC_MESSAGES/kcmaudiocd.mo share/locale/wa/LC_MESSAGES/kcmbackground.mo @@ -70,13 +75,14 @@ share/locale/wa/LC_MESSAGES/kcmsmartcard.mo share/locale/wa/LC_MESSAGES/kcmsmserver.mo share/locale/wa/LC_MESSAGES/kcmsolidproc.mo share/locale/wa/LC_MESSAGES/kcmstyle.mo -share/locale/wa/LC_MESSAGES/kcmtaskbar.mo share/locale/wa/LC_MESSAGES/kcmusb.mo share/locale/wa/LC_MESSAGES/kcmview1394.mo share/locale/wa/LC_MESSAGES/kcmxinerama.mo +share/locale/wa/LC_MESSAGES/kcolorchooser.mo share/locale/wa/LC_MESSAGES/kcron.mo share/locale/wa/LC_MESSAGES/kde-menu.mo share/locale/wa/LC_MESSAGES/kdebugdialog.mo +share/locale/wa/LC_MESSAGES/kded_phononserver.mo share/locale/wa/LC_MESSAGES/kdelibs4.mo share/locale/wa/LC_MESSAGES/kdepasswd.mo share/locale/wa/LC_MESSAGES/kdeqt.mo @@ -88,26 +94,31 @@ share/locale/wa/LC_MESSAGES/kdmgreet.mo share/locale/wa/LC_MESSAGES/keditbookmarks.mo share/locale/wa/LC_MESSAGES/kfile.mo share/locale/wa/LC_MESSAGES/kfile_avi.mo +share/locale/wa/LC_MESSAGES/kfile_flac.mo share/locale/wa/LC_MESSAGES/kfile_mp3.mo +share/locale/wa/LC_MESSAGES/kfile_mpc.mo share/locale/wa/LC_MESSAGES/kfile_ogg.mo +share/locale/wa/LC_MESSAGES/kfile_pnm.mo +share/locale/wa/LC_MESSAGES/kfile_raw.mo +share/locale/wa/LC_MESSAGES/kfile_rgb.mo share/locale/wa/LC_MESSAGES/kfile_rpm.mo +share/locale/wa/LC_MESSAGES/kfile_sid.mo +share/locale/wa/LC_MESSAGES/kfile_theora.mo share/locale/wa/LC_MESSAGES/kfile_torrent.mo share/locale/wa/LC_MESSAGES/kfile_wav.mo share/locale/wa/LC_MESSAGES/kfileaudiopreview4.mo share/locale/wa/LC_MESSAGES/kfindpart.mo share/locale/wa/LC_MESSAGES/kfloppy.mo -share/locale/wa/LC_MESSAGES/kfmclient.mo share/locale/wa/LC_MESSAGES/kfontinst.mo share/locale/wa/LC_MESSAGES/kget.mo share/locale/wa/LC_MESSAGES/kgreet_classic.mo -share/locale/wa/LC_MESSAGES/kgreet_generic.mo share/locale/wa/LC_MESSAGES/kgreet_winbind.mo share/locale/wa/LC_MESSAGES/khelpcenter.mo share/locale/wa/LC_MESSAGES/khotnewstuff.mo share/locale/wa/LC_MESSAGES/khtmlkttsd.mo -share/locale/wa/LC_MESSAGES/kiconfinder.mo share/locale/wa/LC_MESSAGES/kinfocenter.mo share/locale/wa/LC_MESSAGES/kio4.mo +share/locale/wa/LC_MESSAGES/kio_applications.mo share/locale/wa/LC_MESSAGES/kio_archive.mo share/locale/wa/LC_MESSAGES/kio_audiocd.mo share/locale/wa/LC_MESSAGES/kio_finger.mo @@ -115,9 +126,7 @@ share/locale/wa/LC_MESSAGES/kio_fish.mo share/locale/wa/LC_MESSAGES/kio_floppy.mo share/locale/wa/LC_MESSAGES/kio_nfs.mo share/locale/wa/LC_MESSAGES/kio_remote.mo -share/locale/wa/LC_MESSAGES/kio_settings.mo share/locale/wa/LC_MESSAGES/kio_trash.mo -share/locale/wa/LC_MESSAGES/kioclient.mo share/locale/wa/LC_MESSAGES/kjots.mo share/locale/wa/LC_MESSAGES/klettres.mo share/locale/wa/LC_MESSAGES/klipper.mo @@ -141,16 +150,10 @@ share/locale/wa/LC_MESSAGES/kppp.mo share/locale/wa/LC_MESSAGES/kquitapp.mo share/locale/wa/LC_MESSAGES/krdb.mo share/locale/wa/LC_MESSAGES/kreadconfig.mo +share/locale/wa/LC_MESSAGES/kres_birthday.mo +share/locale/wa/LC_MESSAGES/kres_tvanytime.mo share/locale/wa/LC_MESSAGES/krunner.mo -share/locale/wa/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/wa/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/wa/LC_MESSAGES/krunner_contacts.mo -share/locale/wa/LC_MESSAGES/krunner_converterrunner.mo -share/locale/wa/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/wa/LC_MESSAGES/krunner_sessions.mo -share/locale/wa/LC_MESSAGES/krunner_shellrunner.mo -share/locale/wa/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/wa/LC_MESSAGES/krunner_xesam.mo +share/locale/wa/LC_MESSAGES/ksaneplugin.mo share/locale/wa/LC_MESSAGES/kscd.mo share/locale/wa/LC_MESSAGES/kscreensaver.mo share/locale/wa/LC_MESSAGES/kshorturifilter.mo @@ -161,13 +164,14 @@ share/locale/wa/LC_MESSAGES/kstart.mo share/locale/wa/LC_MESSAGES/kstyle_config.mo share/locale/wa/LC_MESSAGES/kstyle_keramik_config.mo share/locale/wa/LC_MESSAGES/ksysguard.mo +share/locale/wa/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/wa/LC_MESSAGES/ksystraycmd.mo share/locale/wa/LC_MESSAGES/kteatime.mo share/locale/wa/LC_MESSAGES/kthememanager.mo share/locale/wa/LC_MESSAGES/ktuberling.mo share/locale/wa/LC_MESSAGES/ktux.mo share/locale/wa/LC_MESSAGES/kuser.mo -share/locale/wa/LC_MESSAGES/kweather.mo +share/locale/wa/LC_MESSAGES/kwalletd.mo share/locale/wa/LC_MESSAGES/kwin.mo share/locale/wa/LC_MESSAGES/kwin_clients.mo share/locale/wa/LC_MESSAGES/kwin_effects.mo @@ -180,23 +184,45 @@ share/locale/wa/LC_MESSAGES/lancelot.mo share/locale/wa/LC_MESSAGES/libkcompactdisc.mo share/locale/wa/LC_MESSAGES/libkdegames.mo share/locale/wa/LC_MESSAGES/libkdepim.mo -share/locale/wa/LC_MESSAGES/libkholidays.mo share/locale/wa/LC_MESSAGES/libkmahjongg.mo +share/locale/wa/LC_MESSAGES/libkmime.mo share/locale/wa/LC_MESSAGES/libkonq.mo +share/locale/wa/LC_MESSAGES/libksane.mo share/locale/wa/LC_MESSAGES/libkscreensaver.mo share/locale/wa/LC_MESSAGES/libkworkspace.mo share/locale/wa/LC_MESSAGES/libphonon.mo share/locale/wa/LC_MESSAGES/libplasma.mo +share/locale/wa/LC_MESSAGES/libplasmaclock.mo share/locale/wa/LC_MESSAGES/libtaskmanager.mo share/locale/wa/LC_MESSAGES/lokalize.mo +share/locale/wa/LC_MESSAGES/marble.mo +share/locale/wa/LC_MESSAGES/marble_qt.mo +share/locale/wa/LC_MESSAGES/nepomuksearch.mo share/locale/wa/LC_MESSAGES/nsplugin.mo share/locale/wa/LC_MESSAGES/okular.mo +share/locale/wa/LC_MESSAGES/okular_chm.mo +share/locale/wa/LC_MESSAGES/okular_comicbook.mo +share/locale/wa/LC_MESSAGES/okular_djvu.mo +share/locale/wa/LC_MESSAGES/okular_epub.mo +share/locale/wa/LC_MESSAGES/okular_fax.mo +share/locale/wa/LC_MESSAGES/okular_fictionbook.mo +share/locale/wa/LC_MESSAGES/okular_ghostview.mo +share/locale/wa/LC_MESSAGES/okular_kimgio.mo +share/locale/wa/LC_MESSAGES/okular_ooo.mo +share/locale/wa/LC_MESSAGES/okular_plucker.mo +share/locale/wa/LC_MESSAGES/okular_poppler.mo +share/locale/wa/LC_MESSAGES/okular_tiff.mo +share/locale/wa/LC_MESSAGES/okular_xps.mo share/locale/wa/LC_MESSAGES/phonon-xine.mo share/locale/wa/LC_MESSAGES/phonon_kde.mo +share/locale/wa/LC_MESSAGES/plasma-shells-common.mo share/locale/wa/LC_MESSAGES/plasma.mo share/locale/wa/LC_MESSAGES/plasma_applet_battery.mo +share/locale/wa/LC_MESSAGES/plasma_applet_bball.mo share/locale/wa/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/wa/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/wa/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/wa/LC_MESSAGES/plasma_applet_charselect.mo share/locale/wa/LC_MESSAGES/plasma_applet_clock.mo share/locale/wa/LC_MESSAGES/plasma_applet_comic.mo share/locale/wa/LC_MESSAGES/plasma_applet_desktop.mo @@ -208,31 +234,57 @@ share/locale/wa/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/wa/LC_MESSAGES/plasma_applet_folderview.mo share/locale/wa/LC_MESSAGES/plasma_applet_frame.mo share/locale/wa/LC_MESSAGES/plasma_applet_fuzzy_clock.mo -share/locale/wa/LC_MESSAGES/plasma_applet_katesession.mo +share/locale/wa/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/wa/LC_MESSAGES/plasma_applet_kget.mo share/locale/wa/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/wa/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/wa/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/wa/LC_MESSAGES/plasma_applet_life.mo share/locale/wa/LC_MESSAGES/plasma_applet_luna.mo +share/locale/wa/LC_MESSAGES/plasma_applet_news.mo share/locale/wa/LC_MESSAGES/plasma_applet_notes.mo share/locale/wa/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/wa/LC_MESSAGES/plasma_applet_pager.mo share/locale/wa/LC_MESSAGES/plasma_applet_panel.mo +share/locale/wa/LC_MESSAGES/plasma_applet_paste.mo +share/locale/wa/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/wa/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/wa/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/wa/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/wa/LC_MESSAGES/plasma_applet_showdesktop.mo +share/locale/wa/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/wa/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/wa/LC_MESSAGES/plasma_applet_timer.mo share/locale/wa/LC_MESSAGES/plasma_applet_trash.mo share/locale/wa/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/wa/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/wa/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/wa/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/wa/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/wa/LC_MESSAGES/plasma_engine_dict.mo +share/locale/wa/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/wa/LC_MESSAGES/plasma_engine_rss.mo +share/locale/wa/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/wa/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/wa/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/wa/LC_MESSAGES/plasma_runner_locations.mo +share/locale/wa/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/wa/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/wa/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/wa/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/wa/LC_MESSAGES/plasma_runner_shell.mo +share/locale/wa/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/wa/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/wa/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/wa/LC_MESSAGES/plasma_wallpaper_color.mo share/locale/wa/LC_MESSAGES/plasmaengineexplorer.mo share/locale/wa/LC_MESSAGES/plasmapkg.mo share/locale/wa/LC_MESSAGES/plasmoidviewer.mo -share/locale/wa/LC_MESSAGES/printer-applet.mo +share/locale/wa/LC_MESSAGES/powerdevil.mo share/locale/wa/LC_MESSAGES/processui.mo -share/locale/wa/LC_MESSAGES/solidcontrol.mo -share/locale/wa/LC_MESSAGES/soliduiserver.mo +share/locale/wa/LC_MESSAGES/svgpart.mo share/locale/wa/LC_MESSAGES/systemsettings.mo share/locale/wa/LC_MESSAGES/timezones4.mo share/locale/wa/LC_MESSAGES/useraccount.mo share/locale/wa/entry.desktop @dirrm share/doc/HTML/wa/khelpcenter/visualdict @dirrm share/doc/HTML/wa/khelpcenter -@dirrm share/doc/HTML/wa diff --git a/misc/kde4-l10n/Makefile b/misc/kde4-l10n/Makefile index 21a6c7cd8c46..1a3c12343f2c 100644 --- a/misc/kde4-l10n/Makefile +++ b/misc/kde4-l10n/Makefile @@ -15,31 +15,49 @@ EXTRACT_ONLY= # none MAINTAINER= kde@FreeBSD.org COMMENT= Localized messages and documentation for KDE -RUN_DEPENDS+=\ - ${KDE4_PREFIX}/share/locale/ja/entry.desktop:${PORTSDIR}/japanese/kde4-l10n \ - ${KDE4_PREFIX}/share/locale/fr/entry.desktop:${PORTSDIR}/french/kde4-l10n \ - ${KDE4_PREFIX}/share/locale/de/entry.desktop:${PORTSDIR}/german/kde4-l10n \ - ${KDE4_PREFIX}/share/locale/hu/entry.desktop:${PORTSDIR}/hungarian/kde4-l10n \ - ${KDE4_PREFIX}/share/locale/ko/entry.desktop:${PORTSDIR}/korean/kde4-l10n \ - ${KDE4_PREFIX}/share/locale/ru/entry.desktop:${PORTSDIR}/russian/kde4-l10n \ - ${KDE4_PREFIX}/share/locale/uk/entry.desktop:${PORTSDIR}/ukrainian/kde4-l10n \ - ${KDE4_PREFIX}/share/locale/pl/entry.desktop:${PORTSDIR}/polish/kde4-l10n - -.for LANG in bg ca cs csb da el en_GB eo es et fi fy ga gl hi it kk km ku lt \ - lv mk ml nb nds pa sl sr sv ta th tr wa -RUN_DEPENDS+= \ - ${KDE4_PREFIX}/share/locale/${LANG}/entry.desktop:${PORTSDIR}/misc/kde4-l10n-${LANG} +NO_BUILD= yes +NO_INSTALL= yes +USE_KDE4= kdeprefix + +KDE4_LANG_ALL= ar bg bn_IN ca cs csb da de el en_GB es et eu fi fr \ + ga gl gu he hi hu is it ja kk km kn ko ku lt lv \ + mai mk ml mr nb nds nl nn pa pl pt pt_BR ro ru \ + sl sr sv tg th tr uk wa zh_CN zh_TW + +ar_PORT= arabic/kde4-l10n +de_PORT= german/kde4-l10n +fr_PORT= french/kde4-l10n +he_PORT= hebrew/kde4-l10n +hu_PORT= hungarian/kde4-l10n +ja_PORT= japanese/kde4-l10n +ko_PORT= korean/kde4-l10n +pl_PORT= polish/kde4-l10n +pt_BR_PORT= portuguese/kde4-l10n-pt_BR +pt_PORT= portuguese/kde4-l10n +ru_PORT= russian/kde4-l10n +uk_PORT= ukrainian/kde4-l10n +zh_CN_PORT= chinese/kde4-l10n-zh_CN +zh_TW_PORT= chinese/kde4-l10n-zh_TW + +.include <${.CURDIR}/files/kde4-lang-names> + +.for lang in ${KDE4_LANG_ALL} +${lang}_DETECT?= ${KDE4_PREFIX}/share/locale/${lang}/entry.desktop +${lang}_PORT?= misc/kde4-l10n-${lang} +${lang}_NAME?= ${lang} .endfor -RUN_DEPENDS+=\ - ${KDE4_PREFIX}/share/locale/pt/entry.desktop:${PORTSDIR}/portuguese/kde4-l10n \ - ${KDE4_PREFIX}/share/locale/pt_BR/entry.desktop:${PORTSDIR}/portuguese/kde4-l10n-pt_BR -.for ZH in zh_CN zh_TW -RUN_DEPENDS+=\ - ${KDE4_PREFIX}/share/locale/${ZH}/entry.desktop:${PORTSDIR}/chinese/kde4-l10n-${ZH} + +OPTIONS= ALL "All localizations" on +.for lang in ${KDE4_LANG_ALL} +OPTIONS+= ${lang} "${${lang}_NAME} localization" off .endfor -NO_BUILD= yes -NO_INSTALL= yes -USE_KDE4= kdeprefix kdelibs +.include <bsd.port.pre.mk> + +.for lang in ${KDE4_LANG_ALL} +.if defined(WITH_ALL) || defined(WITH_${lang}) +RUN_DEPENDS+= ${${lang}_DETECT}:${PORTSDIR}/${${lang}_PORT} +.endif +.endfor -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/misc/kde4-l10n/files/bsd.l10n.mk b/misc/kde4-l10n/files/bsd.l10n.mk index f0150b3cae2b..9906e6786897 100644 --- a/misc/kde4-l10n/files/bsd.l10n.mk +++ b/misc/kde4-l10n/files/bsd.l10n.mk @@ -3,7 +3,7 @@ USE_BZIP2= yes USE_QT_VER= 4 QT_COMPONENTS= uic_build moc_build qmake_build rcc_build xml USE_GETTEXT= yes -USE_KDE4= kdelibs kdeprefix automoc4 +USE_KDE4= kdelibs kdehier kdeprefix automoc4 USE_CMAKE= yes MASTER_SITES?= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR?= stable/${PORTVERSION}/src/kde-l10n/ diff --git a/misc/kdeedu4/Makefile b/misc/kdeedu4/Makefile index c0dacf8ae6cd..437a39442b09 100644 --- a/misc/kdeedu4/Makefile +++ b/misc/kdeedu4/Makefile @@ -6,10 +6,9 @@ PORTNAME= kdeedu PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 2 CATEGORIES= misc kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org @@ -28,31 +27,28 @@ LIB_DEPENDS= usb-0.1:${PORTSDIR}/devel/libusb \ LATEST_LINK= ${PORTNAME}4 -USE_OCAML= yes -NO_OCAML_RUNDEPENDS= yes USE_BZIP2= yes -USE_QT_VER= 4 -USE_KDE4= kdelibs workspace kdeprefix kdehier automoc4 +USE_KDE4= kdelibs kdeprefix kdehier automoc4 KDE4_BUILDENV= yes +USE_QT_VER= 4 QT_COMPONENTS= gui svg qmake_build moc_build rcc_build uic_build +USE_OCAML= yes +NO_OCAML_RUNDEPENDS= yes +USE_PYTHON= yes + +MAN1= kalzium.1 \ + kbruch.1 \ + kig.1 \ + kmplot.1 \ + ktouch.1 +MAN6= khangman.6 #fix checking boost_python CMAKE_ARGS+= -DCMAKE_REQUIRED_INCLUDES:STRING="${LOCALBASE}/include" \ - -DWITH_SBIG:BOOL=OFF + -DBOOST_PYTHON_INCLUDES="${LOCALBASE}/include;${PYTHON_INCLUDEDIR}" \ + -DBOOST_PYTHON_LIBS="-L${LOCALBASE}/lib -lboost_python -l${PYTHON_VERSION}" post-extract: ${MKDIR} ${WRKSRC} -post-patch: - #fix checking libnova - ${REINPLACE_CMD} -e 's|\(CMAKE_REQUIRED_INCLUDES $${NOVA_INCLUDE_DIR}\)|\1 ${LOCALBASE}/include|' \ - ${WRKSRC}/../cmake/modules/FindNova.cmake - #fix checking boost_python - ${REINPLACE_CMD} -e 's|\(CMAKE_REQUIRED_INCLUDES $${_pydir}\)|\1 ${LOCALBASE}/include|' \ - ${WRKSRC}/../cmake/modules/FindBoostPython.cmake - -post-configure: - ${REINPLACE_CMD} -e "s,-ldl,,g" ${WRKSRC}/kalzium/src/CMakeFiles/kalzium.dir/build.make - ${REINPLACE_CMD} -e "s,-ldl,,g" ${WRKSRC}/kalzium/src/CMakeFiles/kalzium.dir/link.txt - .include <bsd.port.mk> diff --git a/misc/kdeedu4/distinfo b/misc/kdeedu4/distinfo index 436ff7818715..e207b4669b1b 100644 --- a/misc/kdeedu4/distinfo +++ b/misc/kdeedu4/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdeedu-4.1.4.tar.bz2) = 28840fa475571184994824d12a0b7684 -SHA256 (KDE/kdeedu-4.1.4.tar.bz2) = 062b756d67c18afdb057a48ce219a612e076c70d07144f91212b220d5b1c3152 -SIZE (KDE/kdeedu-4.1.4.tar.bz2) = 57376652 +MD5 (KDE/kdeedu-4.2.0.tar.bz2) = aaddbdab29e1d284ad8ee67a78b4c597 +SHA256 (KDE/kdeedu-4.2.0.tar.bz2) = 6b1584a39c2a8823deeccd893e0bbc87fa3faa4019f3f9c886face247fa3435a +SIZE (KDE/kdeedu-4.2.0.tar.bz2) = 59252322 diff --git a/misc/kdeedu4/pkg-plist b/misc/kdeedu4/pkg-plist index ebfe82878a4f..69c7f79fa70d 100644 --- a/misc/kdeedu4/pkg-plist +++ b/misc/kdeedu4/pkg-plist @@ -1,18 +1,6 @@ bin/blinken bin/calgebra bin/geodatatest -bin/indi_celestron_gps -bin/indi_intelliscope -bin/indi_lx200_16 -bin/indi_lx200autostar -bin/indi_lx200basic -bin/indi_lx200classic -bin/indi_lx200generic -bin/indi_lx200gps -bin/indi_orion_atlas -bin/indi_skycommander -bin/indi_temma -bin/indiserver bin/kalgebra bin/kalzium bin/kanagram @@ -25,7 +13,6 @@ bin/kitengen bin/kitenradselect bin/klettres bin/kmplot -bin/kpercentage bin/kstars bin/ktouch bin/kturtle @@ -48,6 +35,7 @@ include/libkdeedu/keduvoccontainer.h include/libkdeedu/keduvocdocument.h include/libkdeedu/keduvocexpression.h include/libkdeedu/keduvocidentifier.h +include/libkdeedu/keduvocleitnerbox.h include/libkdeedu/keduvoclesson.h include/libkdeedu/keduvocmultiplechoice.h include/libkdeedu/keduvocpersonalpronoun.h @@ -74,8 +62,8 @@ include/libkiten/libkitenexport.h include/marble/AbstractLayerInterface.h include/marble/AbstractProjection.h include/marble/AbstractProjectionHelper.h +include/marble/BoundingBox.h include/marble/ClipPainter.h -include/marble/CustomSortFilterProxyModel.h include/marble/EquirectProjection.h include/marble/EquirectProjectionHelper.h include/marble/ExtDateTime.h @@ -91,6 +79,7 @@ include/marble/GeoDataHotSpot.h include/marble/GeoDataIconStyle.h include/marble/GeoDataLabelStyle.h include/marble/GeoDataLatLonAltBox.h +include/marble/GeoDataLatLonBox.h include/marble/GeoDataLineString.h include/marble/GeoDataLineStyle.h include/marble/GeoDataLinearRing.h @@ -101,19 +90,23 @@ include/marble/GeoDataPoint.h include/marble/GeoDataPolyStyle.h include/marble/GeoDataPolygon.h include/marble/GeoDataStyle.h +include/marble/GeoDataStyleMap.h include/marble/GeoDataStyleSelector.h include/marble/GeoDocument.h include/marble/GeoPainter.h +include/marble/LatLonEdit.h include/marble/MapThemeManager.h +include/marble/MapThemeSortFilterProxyModel.h include/marble/MarbleAboutDialog.h include/marble/MarbleAbstractFloatItem.h -include/marble/MarbleAbstractLayer.h include/marble/MarbleControlBox.h include/marble/MarbleDataFacade.h include/marble/MarbleDirs.h -include/marble/MarbleLayerInterface.h include/marble/MarbleMap.h +include/marble/MarbleModel.h include/marble/MarbleNavigator.h +include/marble/MarbleRenderPlugin.h +include/marble/MarbleRenderPluginInterface.h include/marble/MarbleWidget.h include/marble/MarbleWidgetInputHandler.h include/marble/MercatorProjection.h @@ -143,45 +136,48 @@ lib/avogadro-kalzium/tools/libnavigatetool.so lib/kde4/kigpart.so lib/kde4/libkmplotpart.so lib/kde4/libmarble_part.so +lib/kde4/plasma_applet_didyouknow.so lib/kde4/plasma_applet_kalgebra.so lib/kde4/plasma_applet_parley.so +lib/kde4/plasma_applet_worldclock.so +lib/kde4/plasma_engine_kalzium.so lib/kde4/plasma_engine_parley.so lib/kde4/plugins/designer/kalziumuiwidgets.so lib/kde4/plugins/marble/CompassFloatItem.so lib/kde4/plugins/marble/MapScaleFloatItem.so +lib/kde4/plugins/marble/MarbleCrosshairsPlugin.so +lib/kde4/plugins/marble/MarbleGeoDataPlugin.so lib/kde4/plugins/marble/MarbleOverviewMap.so lib/kde4/plugins/marble/MarbleStarsPlugin.so +lib/kde4/plugins/marble/NavigationFloatItem.so lib/libSatLib.so lib/libSatLib.so.5 -lib/libSatLib.so.5.0.0 +lib/libSatLib.so.5.0.1 lib/libanalitza.so lib/libanalitza.so.5 -lib/libanalitza.so.5.0.0 +lib/libanalitza.so.5.0.1 lib/libavogadro-kalzium.so lib/libavogadro-kalzium.so.0 lib/libavogadro-kalzium.so.0.8.0 lib/libcompoundviewer.so lib/libcompoundviewer.so.5 -lib/libcompoundviewer.so.5.0.0 +lib/libcompoundviewer.so.5.0.1 lib/libhtmesh.a lib/libkdeeduui.so lib/libkdeeduui.so.5 -lib/libkdeeduui.so.5.0.0 +lib/libkdeeduui.so.5.0.1 lib/libkeduvocdocument.so lib/libkeduvocdocument.so.5 -lib/libkeduvocdocument.so.5.0.0 +lib/libkeduvocdocument.so.5.0.1 lib/libkiten.so lib/libkiten.so.5 -lib/libkiten.so.5.0.0 +lib/libkiten.so.5.0.1 lib/libmarblewidget.so lib/libmarblewidget.so.5 -lib/libmarblewidget.so.5.0.0 -lib/libsbigudrv.so -lib/libsbigudrv.so.1 -lib/libsbigudrv.so.1.0.0 +lib/libmarblewidget.so.5.0.1 lib/libscience.so lib/libscience.so.5 -lib/libscience.so.5.0.0 +lib/libscience.so.5.0.1 share/applications/kde4/blinken.desktop share/applications/kde4/kalgebra.desktop share/applications/kde4/kalzium.desktop @@ -193,7 +189,6 @@ share/applications/kde4/kig.desktop share/applications/kde4/kiten.desktop share/applications/kde4/klettres.desktop share/applications/kde4/kmplot.desktop -share/applications/kde4/kpercentage.desktop share/applications/kde4/kstars.desktop share/applications/kde4/ktouch.desktop share/applications/kde4/kturtle.desktop @@ -212,6 +207,7 @@ share/apps/blinken/sounds/lose.wav share/apps/cmake/modules/FindKDEEdu.cmake share/apps/cmake/modules/FindMarble.cmake share/apps/cmake/modules/FindMarbleWidget.cmake +share/apps/desktoptheme/default/widgets/chalkboard.svg share/apps/desktoptheme/default/widgets/parley_plasma_card.svg share/apps/kalzium/data/bg.jpg share/apps/kalzium/data/hazardsymbols/hazard_C.png @@ -229,7 +225,7 @@ share/apps/kalzium/data/htmlview/discovery.png share/apps/kalzium/data/htmlview/electronaffinity.png share/apps/kalzium/data/htmlview/header.png share/apps/kalzium/data/htmlview/icons.svg -share/apps/kalzium/data/htmlview/ionisation.png +share/apps/kalzium/data/htmlview/ionization.png share/apps/kalzium/data/htmlview/mass.png share/apps/kalzium/data/htmlview/meltingpoint.png share/apps/kalzium/data/htmlview/radius.png @@ -268,6 +264,7 @@ share/apps/kalzium/data/iconsets/school/19.svg share/apps/kalzium/data/iconsets/school/2.svg share/apps/kalzium/data/iconsets/school/20.svg share/apps/kalzium/data/iconsets/school/21.svg +share/apps/kalzium/data/iconsets/school/22.svg share/apps/kalzium/data/iconsets/school/23.svg share/apps/kalzium/data/iconsets/school/24.svg share/apps/kalzium/data/iconsets/school/25.svg @@ -287,8 +284,12 @@ share/apps/kalzium/data/iconsets/school/37.svg share/apps/kalzium/data/iconsets/school/38.svg share/apps/kalzium/data/iconsets/school/39.svg share/apps/kalzium/data/iconsets/school/4.svg +share/apps/kalzium/data/iconsets/school/40.svg +share/apps/kalzium/data/iconsets/school/42.svg share/apps/kalzium/data/iconsets/school/43.svg +share/apps/kalzium/data/iconsets/school/44.svg share/apps/kalzium/data/iconsets/school/47.svg +share/apps/kalzium/data/iconsets/school/48.svg share/apps/kalzium/data/iconsets/school/49.svg share/apps/kalzium/data/iconsets/school/5.svg share/apps/kalzium/data/iconsets/school/50.svg @@ -306,7 +307,9 @@ share/apps/kalzium/data/iconsets/school/61.svg share/apps/kalzium/data/iconsets/school/62.svg share/apps/kalzium/data/iconsets/school/7.svg share/apps/kalzium/data/iconsets/school/72.svg +share/apps/kalzium/data/iconsets/school/73.svg share/apps/kalzium/data/iconsets/school/74.svg +share/apps/kalzium/data/iconsets/school/76.svg share/apps/kalzium/data/iconsets/school/79.svg share/apps/kalzium/data/iconsets/school/8.svg share/apps/kalzium/data/iconsets/school/80.svg @@ -522,19 +525,21 @@ share/apps/kanagram/sounds/chalk.ogg share/apps/kanagram/sounds/right.ogg share/apps/kanagram/sounds/wrong.ogg share/apps/katepart/syntax/python-kig.xml -share/apps/kbruch/icons/oxygen/32x32/actions/kbruch_exercise_common.png -share/apps/kbruch/icons/oxygen/32x32/actions/kbruch_exercise_compare.png -share/apps/kbruch/icons/oxygen/32x32/actions/kbruch_exercise_conversion.png -share/apps/kbruch/icons/oxygen/32x32/actions/kbruch_exercise_factorisation.png -share/apps/kbruch/icons/oxygen/64x64/actions/kbruch_exercise_common.png -share/apps/kbruch/icons/oxygen/64x64/actions/kbruch_exercise_compare.png -share/apps/kbruch/icons/oxygen/64x64/actions/kbruch_exercise_conversion.png -share/apps/kbruch/icons/oxygen/64x64/actions/kbruch_exercise_factorisation.png -share/apps/kbruch/icons/oxygen/scalable/actions/kbruch_exercise_common.svgz -share/apps/kbruch/icons/oxygen/scalable/actions/kbruch_exercise_compare.svgz -share/apps/kbruch/icons/oxygen/scalable/actions/kbruch_exercise_conversion.svgz -share/apps/kbruch/icons/oxygen/scalable/actions/kbruch_exercise_factorisation.svgz +share/apps/kbruch/AppMenuWidgetui.rc +share/apps/kbruch/FractionRingWidgetui.rc share/apps/kbruch/kbruchui.rc +share/apps/kbruch/pics/exercise_arithmetics.png +share/apps/kbruch/pics/exercise_compare.png +share/apps/kbruch/pics/exercise_conversion.png +share/apps/kbruch/pics/exercise_factorization.png +share/apps/kbruch/pics/exercise_percentage.png +share/apps/kbruch/pics/icon_back_arrow.png +share/apps/kbruch/pics/icon_freestyle.png +share/apps/kbruch/pics/icon_freestyle_1.png +share/apps/kbruch/pics/icon_learning.png +share/apps/kbruch/pics/icon_learning_1.png +share/apps/kbruch/pics/icon_test_case.png +share/apps/kbruch/pics/icon_test_case_1.png share/apps/kgeography/afghanistan.kgm share/apps/kgeography/afghanistan.png share/apps/kgeography/africa.kgm @@ -1229,6 +1234,8 @@ share/apps/kgeography/kyrgyzstan.kgm share/apps/kgeography/kyrgyzstan.png share/apps/kgeography/latvia.kgm share/apps/kgeography/latvia.png +share/apps/kgeography/liechtenstein.kgm +share/apps/kgeography/liechtenstein.png share/apps/kgeography/lithuania_municipalities.kgm share/apps/kgeography/lithuania_municipalities.png share/apps/kgeography/luxembourg_cantons.kgm @@ -1255,6 +1262,8 @@ share/apps/kgeography/norway.kgm share/apps/kgeography/norway.png share/apps/kgeography/oceania.kgm share/apps/kgeography/oceania.png +share/apps/kgeography/oman.kgm +share/apps/kgeography/oman.png share/apps/kgeography/pakistan.kgm share/apps/kgeography/pakistan.png share/apps/kgeography/panama.kgm @@ -1279,6 +1288,8 @@ share/apps/kgeography/russia_districts.kgm share/apps/kgeography/russia_districts.png share/apps/kgeography/russia_subjects.kgm share/apps/kgeography/russia_subjects.png +share/apps/kgeography/san-marino.kgm +share/apps/kgeography/san-marino.png share/apps/kgeography/saudi_arabia.kgm share/apps/kgeography/saudi_arabia.png share/apps/kgeography/slovakia.kgm @@ -1814,26 +1825,6 @@ share/apps/kmplot/icons/hicolor/scalable/actions/resetview.svgz share/apps/kmplot/kmplot_part.rc share/apps/kmplot/kmplot_part_readonly.rc share/apps/kmplot/kmplot_shell.rc -share/apps/kpercentage/pics/kanswer_bg.png -share/apps/kpercentage/pics/kpercentage_bg.svgz -share/apps/kpercentage/pics/kpercentage_bg_rtl.svgz -share/apps/kpercentage/pics/kpercentmain_bg.svgz -share/apps/kpercentage/pics/kpercentmain_bg_rtl.svgz -share/apps/kpercentage/pics/smily0000.png -share/apps/kpercentage/pics/smily0001.png -share/apps/kpercentage/pics/smily0002.png -share/apps/kpercentage/pics/smily0003.png -share/apps/kpercentage/pics/smily0004.png -share/apps/kpercentage/pics/smily0005.png -share/apps/kpercentage/pics/smily0006.png -share/apps/kpercentage/pics/smily_medium.png -share/apps/kpercentage/pics/smily_right.png -share/apps/kpercentage/pics/smily_wrong.png -share/apps/kpercentage/pics/splash.png -share/apps/kpercentage/right.txt -share/apps/kpercentage/story/right.story -share/apps/kpercentage/story/wrong.story -share/apps/kpercentage/wrong.txt share/apps/kstars/Cities.dat share/apps/kstars/TZrules.dat share/apps/kstars/advinterface.dat @@ -1848,7 +1839,6 @@ share/apps/kstars/classic.colors share/apps/kstars/clines.dat share/apps/kstars/cnames.dat share/apps/kstars/comets.dat -share/apps/kstars/drivers.xml share/apps/kstars/earth.B0.vsop share/apps/kstars/earth.B1.vsop share/apps/kstars/earth.B2.vsop @@ -1943,6 +1933,7 @@ share/apps/kstars/jupiter.orbit share/apps/kstars/jupiter.png share/apps/kstars/kstars.png share/apps/kstars/kstarsui.rc +share/apps/kstars/lmc.dat share/apps/kstars/mars.B0.vsop share/apps/kstars/mars.B1.vsop share/apps/kstars/mars.B2.vsop @@ -2023,6 +2014,7 @@ share/apps/kstars/moon35.png share/apps/kstars/moonB.dat share/apps/kstars/moonLR.dat share/apps/kstars/moonless-night.colors +share/apps/kstars/namedstars.dat share/apps/kstars/neptune.B0.vsop share/apps/kstars/neptune.B1.vsop share/apps/kstars/neptune.B2.vsop @@ -2068,10 +2060,13 @@ share/apps/kstars/saturn.R4.vsop share/apps/kstars/saturn.R5.vsop share/apps/kstars/saturn.orbit share/apps/kstars/saturn.png +share/apps/kstars/smc.dat share/apps/kstars/starlnum.idx +share/apps/kstars/starnames.dat share/apps/kstars/stars.dat share/apps/kstars/sun.png share/apps/kstars/tips +share/apps/kstars/unnamedstars.dat share/apps/kstars/uranus.B0.vsop share/apps/kstars/uranus.B1.vsop share/apps/kstars/uranus.B2.vsop @@ -2116,56 +2111,38 @@ share/apps/kstars/wzgeo.png share/apps/kstars/wzscope.png share/apps/kstars/wzstars.png share/apps/ktouch/ar.keyboard.xml -share/apps/ktouch/be.keyboard -share/apps/ktouch/bg.keyboard +share/apps/ktouch/arabic.ktouch.xml share/apps/ktouch/bulgarian.ktouch.xml share/apps/ktouch/bulgarian_long.ktouch.xml share/apps/ktouch/catalan.ktouch.xml +share/apps/ktouch/colemak.keyboard.xml +share/apps/ktouch/colemak.ktouch.xml share/apps/ktouch/cs.qwerty.keyboard.xml share/apps/ktouch/cs.qwertz.keyboard.xml share/apps/ktouch/czech.ktouch.xml share/apps/ktouch/danish.ktouch.xml share/apps/ktouch/danish2.ktouch.xml -share/apps/ktouch/de-2.keyboard -share/apps/ktouch/de-ch.keyboard -share/apps/ktouch/de-ch2.keyboard -share/apps/ktouch/de.keyboard share/apps/ktouch/de.keyboard.xml -share/apps/ktouch/de_neo.keyboard -share/apps/ktouch/dk.keyboard share/apps/ktouch/dk.keyboard.xml share/apps/ktouch/down.wav share/apps/ktouch/dvorak-fr-1.ktouch.xml share/apps/ktouch/dvorak-fr-2.ktouch.xml -share/apps/ktouch/dvorak.keyboard share/apps/ktouch/dvorak.keyboard.xml share/apps/ktouch/dvorak.ktouch.xml share/apps/ktouch/dvorak_ABCD.ktouch.xml -share/apps/ktouch/dvorak_es.keyboard share/apps/ktouch/dvorak_es.ktouch.xml -share/apps/ktouch/dvorak_fr.keyboard share/apps/ktouch/dvorak_fr.keyboard.xml -share/apps/ktouch/dvorak_se.keyboard -share/apps/ktouch/ee.keyboard -share/apps/ktouch/el.keyboard share/apps/ktouch/el.keyboard.xml share/apps/ktouch/el.ktouch.xml -share/apps/ktouch/en.dvorak.keyboard -share/apps/ktouch/en.keyboard share/apps/ktouch/en.keyboard.xml share/apps/ktouch/english.ktouch.xml -share/apps/ktouch/es.keyboard -share/apps/ktouch/es2.keyboard +share/apps/ktouch/es.keyboard.xml share/apps/ktouch/espanol.ktouch.xml share/apps/ktouch/espanol2.ktouch.xml -share/apps/ktouch/fi.keyboard share/apps/ktouch/fi.keyboard.xml share/apps/ktouch/finnish.ktouch.xml share/apps/ktouch/finnish_for_kids.ktouch.xml -share/apps/ktouch/fr.keyboard share/apps/ktouch/fr.keyboard.xml -share/apps/ktouch/fr_a.keyboard -share/apps/ktouch/fr_ch.keyboard share/apps/ktouch/fr_ch.keyboard.xml share/apps/ktouch/french.ktouch.xml share/apps/ktouch/french2.ktouch.xml @@ -2174,56 +2151,35 @@ share/apps/ktouch/german.neo.ktouch.xml share/apps/ktouch/german.number.ktouch.xml share/apps/ktouch/german2.ktouch.xml share/apps/ktouch/german3.ktouch.xml -share/apps/ktouch/he.keyboard share/apps/ktouch/he.keyboard.xml -share/apps/ktouch/hu.keyboard share/apps/ktouch/hungarian.ktouch.xml share/apps/ktouch/hungarian_expert.ktouch.xml -share/apps/ktouch/it.keyboard share/apps/ktouch/it.keyboard.xml share/apps/ktouch/italian.ktouch.xml share/apps/ktouch/ktouchui.rc -share/apps/ktouch/la.keyboard +share/apps/ktouch/lat.keyboard.xml share/apps/ktouch/latin.ktouch.xml +share/apps/ktouch/lt.ktouch.xml share/apps/ktouch/nederlands.ktouch.xml share/apps/ktouch/nederlands_junior.ktouch.xml -share/apps/ktouch/nn.keyboard -share/apps/ktouch/no.keyboard share/apps/ktouch/no.keyboard.xml share/apps/ktouch/norwegian.ktouch.xml -share/apps/ktouch/number.keyboard -share/apps/ktouch/pl.keyboard share/apps/ktouch/polish.ktouch.xml -share/apps/ktouch/pt.br.abnt.keyboard -share/apps/ktouch/pt.br.keyboard -share/apps/ktouch/pt.keyboard share/apps/ktouch/ru-winkeys.keyboard.xml -share/apps/ktouch/ru.2.keyboard -share/apps/ktouch/ru.3.keyboard share/apps/ktouch/ru.keyboard.xml -share/apps/ktouch/ru.winkeys.keyboard share/apps/ktouch/russian.ktouch.xml share/apps/ktouch/russian2ktouch.xml share/apps/ktouch/russian_long.ktouch.xml -share/apps/ktouch/se.keyboard share/apps/ktouch/sk.qwerty.keyboard.xml share/apps/ktouch/sk.qwertz.keyboard.xml -share/apps/ktouch/sl.keyboard share/apps/ktouch/sl.keyboard.xml +share/apps/ktouch/slovak.ktouch.xml share/apps/ktouch/slovenian.ktouch.xml share/apps/ktouch/spanish.ktouch.xml share/apps/ktouch/splash.png -share/apps/ktouch/sv.keyboard share/apps/ktouch/sv.keyboard.xml -share/apps/ktouch/tr.f.keyboard -share/apps/ktouch/tr.q.keyboard share/apps/ktouch/turkish.ktouch.xml -share/apps/ktouch/turkish_f.keyboard -share/apps/ktouch/turkish_q.keyboard share/apps/ktouch/typewriter.wav -share/apps/ktouch/uk.basic.keyboard -share/apps/ktouch/uk.typewriter.keyboard -share/apps/ktouch/uk.winkeys.keyboard share/apps/ktouch/uk.winkeys.keyboard.xml share/apps/ktouch/ukrainian.ktouch.xml share/apps/ktouch/up.wav @@ -2431,6 +2387,8 @@ share/apps/marble/data/bitmaps/city_4_orange.png share/apps/marble/data/bitmaps/city_4_red.png share/apps/marble/data/bitmaps/city_4_white.png share/apps/marble/data/bitmaps/city_4_yellow.png +share/apps/marble/data/bitmaps/coordinate.png +share/apps/marble/data/bitmaps/crater.png share/apps/marble/data/bitmaps/cursor_bc.xpm share/apps/marble/data/bitmaps/cursor_bl.xpm share/apps/marble/data/bitmaps/cursor_br.xpm @@ -2442,15 +2400,23 @@ share/apps/marble/data/bitmaps/cursor_tr.xpm share/apps/marble/data/bitmaps/default_location.png share/apps/marble/data/bitmaps/earth_apollo.jpg share/apps/marble/data/bitmaps/lake.png +share/apps/marble/data/bitmaps/manned_landing.png share/apps/marble/data/bitmaps/mountain_1.png share/apps/marble/data/bitmaps/nation.png share/apps/marble/data/bitmaps/ocean.png +share/apps/marble/data/bitmaps/osm.png +share/apps/marble/data/bitmaps/other.png share/apps/marble/data/bitmaps/pole_1.png share/apps/marble/data/bitmaps/pole_2.png share/apps/marble/data/bitmaps/river.png +share/apps/marble/data/bitmaps/robotic_rover.png share/apps/marble/data/bitmaps/shipwreck.png +share/apps/marble/data/bitmaps/unmanned_hard_landing.png +share/apps/marble/data/bitmaps/unmanned_soft_landing.png +share/apps/marble/data/bitmaps/valley.png share/apps/marble/data/bitmaps/volcano_1.png share/apps/marble/data/bitmaps/waypoint.png +share/apps/marble/data/bitmaps/wikipedia.png share/apps/marble/data/credits_authors.html share/apps/marble/data/credits_data.html share/apps/marble/data/flags/flag_ad.svg @@ -2748,6 +2714,16 @@ share/apps/marble/data/maps/earth/precip-dec/precip-dec.jpg share/apps/marble/data/maps/earth/precip-july/precip-july-preview.png share/apps/marble/data/maps/earth/precip-july/precip-july.dgml share/apps/marble/data/maps/earth/precip-july/precip-july.jpg +share/apps/marble/data/maps/earth/schagen1689/legend.html +share/apps/marble/data/maps/earth/schagen1689/legend/lake.png +share/apps/marble/data/maps/earth/schagen1689/legend/mountain.png +share/apps/marble/data/maps/earth/schagen1689/legend/river.png +share/apps/marble/data/maps/earth/schagen1689/legend/schagen_orig.png +share/apps/marble/data/maps/earth/schagen1689/legend/schagen_title.png +share/apps/marble/data/maps/earth/schagen1689/legend/town.png +share/apps/marble/data/maps/earth/schagen1689/schagen1689-preview.png +share/apps/marble/data/maps/earth/schagen1689/schagen1689.dgml +share/apps/marble/data/maps/earth/schagen1689/schagen1689.jpg share/apps/marble/data/maps/earth/srtm/0/000000/000000_000000.jpg share/apps/marble/data/maps/earth/srtm/0/000000/000000_000001.jpg share/apps/marble/data/maps/earth/srtm/1/000000/000000_000000.jpg @@ -3438,6 +3414,10 @@ share/apps/marble/data/maps/earth/temp-dec/temp-dec.jpg share/apps/marble/data/maps/earth/temp-july/temp-july-preview.png share/apps/marble/data/maps/earth/temp-july/temp-july.dgml share/apps/marble/data/maps/earth/temp-july/temp-july.jpg +share/apps/marble/data/maps/moon/clementine/clementine-preview.png +share/apps/marble/data/maps/moon/clementine/clementine.dgml +share/apps/marble/data/maps/moon/clementine/clementine.jpg +share/apps/marble/data/maps/moon/clementine/legend.html share/apps/marble/data/mwdbii/DATELINE.PNT share/apps/marble/data/mwdbii/PAUST.PNT share/apps/marble/data/mwdbii/PBORDER.PNT @@ -3456,6 +3436,8 @@ share/apps/marble/data/placemarks/baseplacemarks.cache share/apps/marble/data/placemarks/boundaryplacemarks.cache share/apps/marble/data/placemarks/cityplacemarks.cache share/apps/marble/data/placemarks/elevplacemarks.cache +share/apps/marble/data/placemarks/moonlandingsites.cache +share/apps/marble/data/placemarks/moonterrain.cache share/apps/marble/data/placemarks/otherplacemarks.cache share/apps/marble/data/precipcolors.leg share/apps/marble/data/seacolors.leg @@ -3464,17 +3446,19 @@ share/apps/marble/data/svg/application-x-marble-gray.png share/apps/marble/data/svg/application-x-marble.png share/apps/marble/data/svg/application-x-marble.svg share/apps/marble/data/svg/compass.svg +share/apps/marble/data/svg/coordinate.svg +share/apps/marble/data/svg/lunarmap.svg share/apps/marble/data/svg/marble-logo-72dpi.png share/apps/marble/data/svg/marble-logo-inverted-72dpi.png share/apps/marble/data/svg/marble-logo.png share/apps/marble/data/svg/marble-logo.svg +share/apps/marble/data/svg/wikipedia.svg share/apps/marble/data/svg/worldmap.svg share/apps/marble/data/tempcolors.leg share/apps/marble/marble.knsrc share/apps/marble/marbleui.rc share/apps/marble_part/marble_part.rc -share/apps/parley/examples/sample-de.kvtml -share/apps/parley/examples/sample-en.kvtml +share/apps/parley/editorui.rc share/apps/parley/icons/oxygen/16x16/actions/advanced-setup.png share/apps/parley/icons/oxygen/16x16/actions/cards-block.png share/apps/parley/icons/oxygen/16x16/actions/edit-clear.png @@ -3489,7 +3473,6 @@ share/apps/parley/icons/oxygen/16x16/actions/practice-setup.png share/apps/parley/icons/oxygen/16x16/actions/practice-start.png share/apps/parley/icons/oxygen/16x16/actions/remove-duplicates.png share/apps/parley/icons/oxygen/16x16/actions/set-language.png -share/apps/parley/icons/oxygen/16x16/actions/statistics.png share/apps/parley/icons/oxygen/22x22/actions/advanced-setup.png share/apps/parley/icons/oxygen/22x22/actions/cards-block.png share/apps/parley/icons/oxygen/22x22/actions/edit-clear.png @@ -3504,7 +3487,6 @@ share/apps/parley/icons/oxygen/22x22/actions/practice-setup.png share/apps/parley/icons/oxygen/22x22/actions/practice-start.png share/apps/parley/icons/oxygen/22x22/actions/remove-duplicates.png share/apps/parley/icons/oxygen/22x22/actions/set-language.png -share/apps/parley/icons/oxygen/22x22/actions/statistics.png share/apps/parley/icons/oxygen/32x32/actions/advanced-setup.png share/apps/parley/icons/oxygen/32x32/actions/cards-block.png share/apps/parley/icons/oxygen/32x32/actions/edit-clear.png @@ -3519,7 +3501,6 @@ share/apps/parley/icons/oxygen/32x32/actions/practice-setup.png share/apps/parley/icons/oxygen/32x32/actions/practice-start.png share/apps/parley/icons/oxygen/32x32/actions/remove-duplicates.png share/apps/parley/icons/oxygen/32x32/actions/set-language.png -share/apps/parley/icons/oxygen/32x32/actions/statistics.png share/apps/parley/icons/oxygen/48x48/actions/advanced-setup.png share/apps/parley/icons/oxygen/48x48/actions/cards-block.png share/apps/parley/icons/oxygen/48x48/actions/edit-clear.png @@ -3535,7 +3516,6 @@ share/apps/parley/icons/oxygen/48x48/actions/practice-setup.png share/apps/parley/icons/oxygen/48x48/actions/practice-start.png share/apps/parley/icons/oxygen/48x48/actions/remove-duplicates.png share/apps/parley/icons/oxygen/48x48/actions/set-language.png -share/apps/parley/icons/oxygen/48x48/actions/statistics.png share/apps/parley/icons/oxygen/scalable/actions/advanced-setup.svgz share/apps/parley/icons/oxygen/scalable/actions/cards-block.svgz share/apps/parley/icons/oxygen/scalable/actions/edit-clear.svgz @@ -3549,8 +3529,17 @@ share/apps/parley/icons/oxygen/scalable/actions/practice-setup.svgz share/apps/parley/icons/oxygen/scalable/actions/practice-start.svgz share/apps/parley/icons/oxygen/scalable/actions/remove-duplicates.svgz share/apps/parley/icons/oxygen/scalable/actions/set-language.svgz -share/apps/parley/icons/oxygen/scalable/actions/statistics.svgz +share/apps/parley/parleypracticeui.rc share/apps/parley/parleyui.rc +share/apps/parley/plugins/example.desktop +share/apps/parley/plugins/example.py +share/apps/parley/plugins/google_dictionary.desktop +share/apps/parley/plugins/google_dictionary.py +share/apps/parley/plugins/google_images.desktop +share/apps/parley/plugins/google_images.py +share/apps/parley/plugins/google_images.ui +share/apps/parley/plugins/leo-dict.desktop +share/apps/parley/plugins/leo-dict.py share/apps/parley/tips share/apps/parley/xslt/flashcards.xsl share/apps/parley/xslt/table.xsl @@ -3677,11 +3666,15 @@ share/doc/HTML/en/kbruch/compare.png share/doc/HTML/en/kbruch/convert.png share/doc/HTML/en/kbruch/factorize.png share/doc/HTML/en/kbruch/gui_main.png +share/doc/HTML/en/kbruch/gui_mode.png share/doc/HTML/en/kbruch/index.cache.bz2 share/doc/HTML/en/kbruch/index.docbook +share/doc/HTML/en/kbruch/learning.png share/doc/HTML/en/kbruch/man-kbruch.1.docbook +share/doc/HTML/en/kbruch/percentage.png share/doc/HTML/en/kbruch/reduced.png share/doc/HTML/en/kbruch/settings.png +share/doc/HTML/en/kbruch/statistics.png share/doc/HTML/en/kgeography/common share/doc/HTML/en/kgeography/first-start1.png share/doc/HTML/en/kgeography/first-start10.png @@ -3778,21 +3771,6 @@ share/doc/HTML/en/kmplot/settings-fonts.png share/doc/HTML/en/kmplot/settings-general.png share/doc/HTML/en/kmplot/threeplots.png share/doc/HTML/en/kmplot/using.docbook -share/doc/HTML/en/kpercentage/answer.png -share/doc/HTML/en/kpercentage/commands.docbook -share/doc/HTML/en/kpercentage/common -share/doc/HTML/en/kpercentage/credits.docbook -share/doc/HTML/en/kpercentage/devel.docbook -share/doc/HTML/en/kpercentage/edu-logo.png -share/doc/HTML/en/kpercentage/faq.docbook -share/doc/HTML/en/kpercentage/help.png -share/doc/HTML/en/kpercentage/index.cache.bz2 -share/doc/HTML/en/kpercentage/index.docbook -share/doc/HTML/en/kpercentage/install.docbook -share/doc/HTML/en/kpercentage/introduction.docbook -share/doc/HTML/en/kpercentage/main.png -share/doc/HTML/en/kpercentage/using.docbook -share/doc/HTML/en/kpercentage/welcome.png share/doc/HTML/en/kstars/aavso.png share/doc/HTML/en/kstars/ai-contents.docbook share/doc/HTML/en/kstars/alpha.png @@ -3878,17 +3856,6 @@ share/doc/HTML/en/kstars/luminosity.docbook share/doc/HTML/en/kstars/luminosity.png share/doc/HTML/en/kstars/luminosity_ex.png share/doc/HTML/en/kstars/magnitude.docbook -share/doc/HTML/en/kstars/man-celestrongps.1.docbook -share/doc/HTML/en/kstars/man-indi_celestron_gps.1.docbook -share/doc/HTML/en/kstars/man-indi_fli_ccd.1.docbook -share/doc/HTML/en/kstars/man-indi_lx200_16.1.docbook -share/doc/HTML/en/kstars/man-indi_lx200autostar.1.docbook -share/doc/HTML/en/kstars/man-indi_lx200classic.1.docbook -share/doc/HTML/en/kstars/man-indi_lx200generic.1.docbook -share/doc/HTML/en/kstars/man-indi_temma.1.docbook -share/doc/HTML/en/kstars/man-indi_v4l_generic.1.docbook -share/doc/HTML/en/kstars/man-indi_v4l_philips.1.docbook -share/doc/HTML/en/kstars/man-indiserver.1.docbook share/doc/HTML/en/kstars/meridian.docbook share/doc/HTML/en/kstars/newfov.png share/doc/HTML/en/kstars/observinglist.docbook @@ -4050,7 +4017,6 @@ share/icons/hicolor/128x128/apps/kig.png share/icons/hicolor/128x128/apps/kiten.png share/icons/hicolor/128x128/apps/klettres.png share/icons/hicolor/128x128/apps/kmplot.png -share/icons/hicolor/128x128/apps/kpercentage.png share/icons/hicolor/128x128/apps/kstars.png share/icons/hicolor/128x128/apps/ktouch.png share/icons/hicolor/128x128/apps/kturtle.png @@ -4070,7 +4036,6 @@ share/icons/hicolor/16x16/apps/kig.png share/icons/hicolor/16x16/apps/kiten.png share/icons/hicolor/16x16/apps/klettres.png share/icons/hicolor/16x16/apps/kmplot.png -share/icons/hicolor/16x16/apps/kpercentage.png share/icons/hicolor/16x16/apps/kstars.png share/icons/hicolor/16x16/apps/ktouch.png share/icons/hicolor/16x16/apps/kturtle.png @@ -4089,7 +4054,6 @@ share/icons/hicolor/22x22/apps/kig.png share/icons/hicolor/22x22/apps/kiten.png share/icons/hicolor/22x22/apps/klettres.png share/icons/hicolor/22x22/apps/kmplot.png -share/icons/hicolor/22x22/apps/kpercentage.png share/icons/hicolor/22x22/apps/ktouch.png share/icons/hicolor/22x22/apps/kturtle.png share/icons/hicolor/22x22/apps/kwordquiz.png @@ -4107,7 +4071,6 @@ share/icons/hicolor/32x32/apps/kig.png share/icons/hicolor/32x32/apps/kiten.png share/icons/hicolor/32x32/apps/klettres.png share/icons/hicolor/32x32/apps/kmplot.png -share/icons/hicolor/32x32/apps/kpercentage.png share/icons/hicolor/32x32/apps/kstars.png share/icons/hicolor/32x32/apps/ktouch.png share/icons/hicolor/32x32/apps/kturtle.png @@ -4127,7 +4090,6 @@ share/icons/hicolor/48x48/apps/kig.png share/icons/hicolor/48x48/apps/kiten.png share/icons/hicolor/48x48/apps/klettres.png share/icons/hicolor/48x48/apps/kmplot.png -share/icons/hicolor/48x48/apps/kpercentage.png share/icons/hicolor/48x48/apps/kstars.png share/icons/hicolor/48x48/apps/ktouch.png share/icons/hicolor/48x48/apps/kturtle.png @@ -4147,7 +4109,6 @@ share/icons/hicolor/64x64/apps/kig.png share/icons/hicolor/64x64/apps/kiten.png share/icons/hicolor/64x64/apps/klettres.png share/icons/hicolor/64x64/apps/kmplot.png -share/icons/hicolor/64x64/apps/kpercentage.png share/icons/hicolor/64x64/apps/kstars.png share/icons/hicolor/64x64/apps/kturtle.png share/icons/hicolor/64x64/apps/kwordquiz.png @@ -4165,7 +4126,6 @@ share/icons/hicolor/scalable/apps/kig.svgz share/icons/hicolor/scalable/apps/kiten.svgz share/icons/hicolor/scalable/apps/klettres.svgz share/icons/hicolor/scalable/apps/kmplot.svgz -share/icons/hicolor/scalable/apps/kpercentage.svgz share/icons/hicolor/scalable/apps/kstars.svgz share/icons/hicolor/scalable/apps/ktouch.svgz share/icons/hicolor/scalable/apps/kturtle.svgz @@ -4201,33 +4161,11 @@ share/kde4/services/kalgebraplasmoid.desktop share/kde4/services/kig_part.desktop share/kde4/services/kmplot_part.desktop share/kde4/services/marble_part.desktop +share/kde4/services/plasma-applet-kworldclock.desktop +share/kde4/services/plasma-dataengine-kalzium.desktop share/kde4/services/plasma-dataengine-parley.desktop +share/kde4/services/plasma_didyouknow.desktop share/kde4/services/plasma_parley.desktop -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/hicolor/scalable/mimetypes -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/mimetypes -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/mimetypes -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/mimetypes -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/mimetypes -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/mimetypes -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/mimetypes -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons @dirrm share/doc/HTML/en/step @dirrm share/doc/HTML/en/parley @dirrm share/doc/HTML/en/marble @@ -4235,7 +4173,6 @@ share/kde4/services/plasma_parley.desktop @dirrm share/doc/HTML/en/kturtle @dirrm share/doc/HTML/en/ktouch @dirrm share/doc/HTML/en/kstars -@dirrm share/doc/HTML/en/kpercentage @dirrm share/doc/HTML/en/kmplot @dirrm share/doc/HTML/en/klettres @dirrm share/doc/HTML/en/kiten @@ -4247,17 +4184,12 @@ share/kde4/services/plasma_parley.desktop @dirrm share/doc/HTML/en/kalzium @dirrm share/doc/HTML/en/kalgebra @dirrm share/doc/HTML/en/blinken -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 -@dirrmtry share/config.kcfg -@dirrmtry share/config @dirrm share/apps/step/tutorials @dirrm share/apps/step/objinfo @dirrm share/apps/step/examples @dirrm share/apps/step @dirrm share/apps/parley/xslt +@dirrm share/apps/parley/plugins @dirrm share/apps/parley/icons/oxygen/scalable/actions @dirrm share/apps/parley/icons/oxygen/scalable @dirrm share/apps/parley/icons/oxygen/48x48/actions @@ -4270,13 +4202,14 @@ share/kde4/services/plasma_parley.desktop @dirrm share/apps/parley/icons/oxygen/16x16 @dirrm share/apps/parley/icons/oxygen @dirrm share/apps/parley/icons -@dirrm share/apps/parley/examples @dirrm share/apps/parley @dirrm share/apps/marble_part @dirrm share/apps/marble/data/svg @dirrm share/apps/marble/data/stars @dirrm share/apps/marble/data/placemarks @dirrm share/apps/marble/data/mwdbii +@dirrm share/apps/marble/data/maps/moon/clementine +@dirrm share/apps/marble/data/maps/moon @dirrm share/apps/marble/data/maps/earth/temp-july @dirrm share/apps/marble/data/maps/earth/temp-dec @dirrm share/apps/marble/data/maps/earth/srtm/4/000015 @@ -4316,6 +4249,8 @@ share/kde4/services/plasma_parley.desktop @dirrm share/apps/marble/data/maps/earth/srtm/0/000000 @dirrm share/apps/marble/data/maps/earth/srtm/0 @dirrm share/apps/marble/data/maps/earth/srtm +@dirrm share/apps/marble/data/maps/earth/schagen1689/legend +@dirrm share/apps/marble/data/maps/earth/schagen1689 @dirrm share/apps/marble/data/maps/earth/precip-july @dirrm share/apps/marble/data/maps/earth/precip-dec @dirrm share/apps/marble/data/maps/earth/plain @@ -4384,9 +4319,6 @@ share/kde4/services/plasma_parley.desktop @dirrm share/apps/kstars/icons/hicolor @dirrm share/apps/kstars/icons @dirrm share/apps/kstars -@dirrm share/apps/kpercentage/story -@dirrm share/apps/kpercentage/pics -@dirrm share/apps/kpercentage @dirrm share/apps/kmplot/icons/hicolor/scalable/actions @dirrm share/apps/kmplot/icons/hicolor/scalable @dirrm share/apps/kmplot/icons/hicolor/64x64/actions @@ -4466,17 +4398,8 @@ share/kde4/services/plasma_parley.desktop @dirrm share/apps/kgeography/flags/australia @dirrm share/apps/kgeography/flags @dirrm share/apps/kgeography -@dirrm share/apps/kbruch/icons/oxygen/scalable/actions -@dirrm share/apps/kbruch/icons/oxygen/scalable -@dirrm share/apps/kbruch/icons/oxygen/64x64/actions -@dirrm share/apps/kbruch/icons/oxygen/64x64 -@dirrm share/apps/kbruch/icons/oxygen/32x32/actions -@dirrm share/apps/kbruch/icons/oxygen/32x32 -@dirrm share/apps/kbruch/icons/oxygen -@dirrm share/apps/kbruch/icons +@dirrm share/apps/kbruch/pics @dirrm share/apps/kbruch -@dirrmtry share/apps/katepart/syntax -@dirrmtry share/apps/katepart @dirrm share/apps/kanagram/sounds @dirrm share/apps/kanagram/images @dirrm share/apps/kanagram @@ -4504,21 +4427,11 @@ share/kde4/services/plasma_parley.desktop @dirrm share/apps/kalzium/data/hazardsymbols @dirrm share/apps/kalzium/data @dirrm share/apps/kalzium -@dirrmtry share/apps/desktoptheme/default/widgets -@dirrmtry share/apps/desktoptheme/default -@dirrmtry share/apps/desktoptheme -@dirrmtry share/apps/cmake/modules -@dirrmtry share/apps/cmake @dirrm share/apps/blinken/sounds @dirrm share/apps/blinken/images @dirrm share/apps/blinken/fonts @dirrm share/apps/blinken -@dirrmtry share/applications/kde4 -@dirrmtry share/applications @dirrm lib/kde4/plugins/marble -@dirrmtry lib/kde4/plugins/designer -@dirrmtry lib/kde4/plugins -@dirrmtry lib/kde4 @dirrm lib/avogadro-kalzium/tools @dirrm lib/avogadro-kalzium/engines @dirrm lib/avogadro-kalzium diff --git a/misc/kdehier4/Makefile b/misc/kdehier4/Makefile index 62e9c3657697..498bf3310390 100644 --- a/misc/kdehier4/Makefile +++ b/misc/kdehier4/Makefile @@ -6,7 +6,7 @@ # PORTNAME= kdehier4 -PORTVERSION= 1.0 +PORTVERSION= 1.0.3 CATEGORIES= misc kde MASTER_SITES= # none DISTFILES= # none @@ -21,7 +21,10 @@ USE_KDE4= kdeprefix .include <bsd.port.pre.mk> .if ${KDE4_PREFIX} != ${LOCALBASE} -PLIST_SUB+= MTREE="" +PLIST_SUB+= MTREE="" \ + LDCONFIG_DIR="${LDCONFIG_DIR}" \ + LDCONFIG32_DIR="${LDCONFIG32_DIR}" \ + KDE4_PREFIX="${KDE4_PREFIX}" .else PLIST_SUB+= MTREE="@comment " .endif @@ -44,6 +47,8 @@ do-install: ${LN} -sf ${LOCALBASE}/${LDCONFIG_DIR} ${KDE4_PREFIX}/libdata/ ${LN} -sf ${LOCALBASE}/${LDCONFIG32_DIR} ${KDE4_PREFIX}/libdata/ ${LN} -sf ${LOCALBASE}/libdata/pkgconfig ${KDE4_PREFIX}/libdata/ + ${ECHO_CMD} ${KDE4_PREFIX}/lib > \ + ${LOCALBASE}/${LDCONFIG_DIR}/kdehier4 .endif .include <bsd.port.post.mk> diff --git a/misc/kdehier4/files/dirlist b/misc/kdehier4/files/dirlist index 4563e963c5f1..a97389f7d465 100644 --- a/misc/kdehier4/files/dirlist +++ b/misc/kdehier4/files/dirlist @@ -3,245 +3,96 @@ lib/kconf_update_bin lib/kde4 lib/kde4/libexec lib/kde4/plugins +lib/kde4/plugins/designer +lib/kde4/plugins/styles lib/strigi -share/applications/kde4 -share/config -share/dbus-1 -share/dbus-1/interfaces -share/dbus-1/services -share/kde4 -share/kde4/services -share/kde4/services/ScreenSavers -share/kde4/services/ServiceMenus -share/kde4/services/kded -share/kde4/services/kresources -share/kde4/services/kresources/kabc -share/kde4/services/kresources/kcal -share/kde4/servicetypes -@comment include/ksgrd -@comment include/kwin -@comment -------------------------------------------------------------------- -@comment -- We want applnk files, programs might install stuff into the K-Menu share/applications -share/applnk -share/applnk/.hidden -share/applnk/Applications -share/applnk/Development -share/applnk/Editors -share/applnk/Edutainment -share/applnk/Games -share/applnk/Games/Arcade -share/applnk/Games/Board -share/applnk/Games/Card -share/applnk/Games/Kidsgames -share/applnk/Games/Roguelikes -share/applnk/Games/TacticStrategy -share/applnk/Graphics -share/applnk/Graphics/More -share/applnk/Internet -share/applnk/Internet/More -share/applnk/Internet/Terminal -share/applnk/Multimedia -share/applnk/Multimedia/More -share/applnk/Office -share/applnk/Settings -share/applnk/Settings/Accessibility -share/applnk/Settings/Desktop -share/applnk/Settings/Information -share/applnk/Settings/LookNFeel -share/applnk/Settings/LookNFeel/Themes -share/applnk/Settings/LookNFeel/Windows -share/applnk/Settings/Network -share/applnk/Settings/Network/WebBrowsing -share/applnk/Settings/Peripherals -share/applnk/Settings/Personalization -share/applnk/Settings/PowerControl -share/applnk/Settings/Security -share/applnk/Settings/Sound -share/applnk/Settings/System -share/applnk/Settings/WebBrowsing -share/applnk/Settingsmenu -share/applnk/System -share/applnk/System/More -share/applnk/System/ScreenSavers -share/applnk/System/Terminal -share/applnk/Toys -share/applnk/Utilities -share/applnk/Utilities/More -share/applnk/Utilities/XUtilities -@comment share/apps/clockapplet/pics -@comment share/apps/drkonqi/debuggers -@comment share/apps/drkonqi/pics -@comment share/apps/drkonqi/presets -@comment share/apps/kappfinder/apps/Development -@comment share/apps/kappfinder/apps/Editors -@comment share/apps/kappfinder/apps/Games -@comment share/apps/kappfinder/apps/Games/Arcade -@comment share/apps/kappfinder/apps/Games/Board -@comment share/apps/kappfinder/apps/Games/Card -@comment share/apps/kappfinder/apps/Games/Emulators -@comment share/apps/kappfinder/apps/Games/Roguelikes -@comment share/apps/kappfinder/apps/Games/TacticStrategy -@comment share/apps/kappfinder/apps/Graphics -@comment share/apps/kappfinder/apps/Internet -@comment share/apps/kappfinder/apps/Internet/Terminal -@comment share/apps/kappfinder/apps/Multimedia -@comment share/apps/kappfinder/apps/Office -@comment share/apps/kappfinder/apps/System -@comment share/apps/kappfinder/apps/System/Terminal -@comment share/apps/kappfinder/apps/Toys -@comment share/apps/kappfinder/apps/Utilities -@comment share/apps/kappfinder/apps/Utilities/XUtilities -@comment share/apps/kate -@comment share/apps/kate/icons/crystalsvg/16x16/actions -@comment share/apps/kate/icons/crystalsvg/22x22/actions -@comment share/apps/kate/icons/crystalsvg/32x32/actions -@comment share/apps/kate/icons/locolor/16x16/actions -@comment share/apps/kate/icons/locolor/22x22/actions -@comment share/apps/kate/pics -@comment -------------------------------------------------------------------- -@comment -- There might be ports which install Kate scripts +share/applications/kde4 share/apps -share/apps/kate -share/apps/kate/scripts -@comment share/apps/kbookmark -@comment share/apps/kcmcss -@comment share/apps/kcmfontinst -@comment share/apps/kcmfontinst/StarOffice -@comment share/apps/kcmfontinst/pics -@comment share/apps/kcminput -@comment share/apps/kcminput/pics -@comment share/apps/kcmkeys -@comment share/apps/kcmlocale/pics -@comment share/apps/kcontrol -@comment share/apps/kcontrol/pics -@comment share/apps/kdcop -@comment share/apps/kdeprint/template -@comment share/apps/kdeprint_part -@comment share/apps/kdeprintfax -@comment share/apps/kdeprintfax/icons/crystalsvg/16x16/actions -@comment -------------------------------------------------------------------- -@comment -- Some ports *might* install stuff directly here, system-wide -@comment -- desktop links. -share/apps/kdesktop -share/apps/kdesktop/DesktopLinks -share/apps/kdesktop/patterns -share/apps/kdesktop/pics -share/apps/kdesktop/programs -@comment share/apps/kdewizard -@comment share/apps/kdewizard/pics -@comment share/apps/kdisplay/app-defaults -@comment share/apps/kdisplay/color-schemes -@comment share/apps/kdm/pics -@comment share/apps/kdm/pics/users -@comment share/apps/keditbookmarks -@comment share/apps/kfindpart/icons/locolor/22x22/actions -@comment share/apps/khelpcenter -@comment ------------------------------------------------------------------- -@comment -- Hopefully we get more KHelpCenter plugins :-) +share/apps/cmake +share/apps/cmake/modules +share/apps/color-schemes +share/apps/desktoptheme +share/apps/desktoptheme/default +share/apps/desktoptheme/default/widgets +share/apps/kabc +share/apps/kabc/formats +share/apps/kabc/plugins +share/apps/katepart +share/apps/katepart/syntax +share/apps/kcharselect +share/apps/kcm_componentchooser +share/apps/kconf_update +share/apps/kcontrol +share/apps/kcontrol/pics +share/apps/kdm +share/apps/kdm/pics +share/apps/kdm/pics/users share/apps/khelpcenter share/apps/khelpcenter/plugins -@comment share/apps/khelpcenter/plugins/Applications -@comment share/apps/khelpcenter/plugins/Manpages -@comment share/apps/khelpcenter/plugins/Tutorials -@comment ------------------------------------------------------------------- -@comment -- There can be kicker applets, extensions of course. -share/apps/kicker -share/apps/kicker/applets -share/apps/kicker/extensions -@comment share/apps/kicker/icons/crystalsvg/16x16/actions -@comment share/apps/kicker/icons/locolor/16x16/actions -share/apps/kicker/menuext -share/apps/kicker/pics -share/apps/kicker/tiles -share/apps/kicker/wallpapers -@comment share/apps/kinfocenter -@comment share/apps/kio_finger -@comment share/apps/kio_info -@comment share/apps/kjobviewer -@comment share/apps/kmenuedit -@comment share/apps/kmenuedit/icons/crystalsvg/22x22/actions -@comment share/apps/kmenuedit/icons/crystalsvg/32x32/actions -@comment share/apps/kmenuedit/icons/locolor/16x16/actions -@comment share/apps/konqiconview -@comment share/apps/konqiconview/kpartplugins -@comment share/apps/konqlistview -@comment share/apps/konqlistview/kpartplugins -@comment ------------------------------------------------------------------- -@comment -- Konqueror sidebar plugins could install stuff here. +share/apps/khtml +share/apps/khtml/kpartplugins share/apps/konqsidebartng -share/apps/konqsidebartng/add -share/apps/konqsidebartng/dirtree -share/apps/konqsidebartng/entries share/apps/konqsidebartng/virtual_folders -share/apps/konqsidebartng/virtual_folders/remote -share/apps/konqsidebartng/virtual_folders/remote/ftp -share/apps/konqsidebartng/virtual_folders/remote/web share/apps/konqsidebartng/virtual_folders/services -@comment share/apps/konqueror -@comment share/apps/konqueror/about -@comment share/apps/konqueror/icons/crystalsvg/16x16/actions -@comment share/apps/konqueror/pic -@comment ------------------------------------------------------------------- -@comment -- Konqueror profiles maybe, and additional service menus. share/apps/konqueror -share/apps/konqueror/profiles -share/apps/konqueror/servicemenus -@comment share/apps/konqueror/tiles -share/apps/konsole -@comment ------------------------------------------------------------------- -@comment -- Extra third party Konsole profiles could get installed. -share/apps/konsole/profiles -@comment share/apps/kpersonalizer/pics -@comment share/apps/ksmserver/pics -@comment share/apps/ksplash/pics -@comment share/apps/ksplash/pics/locolor -@comment share/apps/ksysguard -@comment share/apps/ksysguard/pics -@comment share/apps/kthememgr -@comment ------------------------------------------------------------------- -@comment -- Additional kthememgr and kwin themes - not sure about kwin/pics -share/apps/kthememgr -share/apps/kthememgr/Themes +share/apps/kstyle +share/apps/kstyle/themes share/apps/kwin -share/apps/kwin/icewm-themes -share/apps/kwin/pics -@comment ------------------------------------------------------------------- -@comment -- Zeroconf profiles - mostly installed by kdenetwork -share/apps/zeroconf -@comment share/apps/kwrite -@comment share/apps/naughtyapplet/pics -@comment share/config/kdm -@comment ------------------------------------------------------------------ -@comment -- Lauri wouldn't tell me what those are, said I would get grumpy. +share/apps/nepomuk +share/apps/nepomuk/ontologies +share/apps/plasma +share/apps/plasma/services +share/apps/profiles +share/apps/remoteview +share/apps/solid +share/apps/solid/actions +share/autostart +share/config share/config.kcfg -@comment share/desktop-directories -@comment share/doc/HTML/en/kate -@comment ------------------------------------------------------------------- -@comment -- Various language subdirs for application docs. KDE by default -@comment -- only ships english docs, but some third party apps ship their -@comment -- i18nized set. +share/dbus-1 +share/dbus-1/interfaces +share/dbus-1/services share/doc/HTML +share/doc/HTML/bg +share/doc/HTML/ca share/doc/HTML/cs +share/doc/HTML/csb share/doc/HTML/da share/doc/HTML/de +share/doc/HTML/el share/doc/HTML/en -@comment ------------------------------------------------------------------- -@comment -- Documentation for additional kcontrol modules could go here. share/doc/HTML/en/kcontrol +share/doc/HTML/en/kioslave share/doc/HTML/en_GB +share/doc/HTML/eo share/doc/HTML/es share/doc/HTML/et share/doc/HTML/eu share/doc/HTML/fi share/doc/HTML/fr +share/doc/HTML/fy +share/doc/HTML/ga +share/doc/HTML/gl share/doc/HTML/he +share/doc/HTML/hi share/doc/HTML/hr share/doc/HTML/hu share/doc/HTML/it share/doc/HTML/ja +share/doc/HTML/kk +share/doc/HTML/km share/doc/HTML/ko +share/doc/HTML/ku +share/doc/HTML/lt +share/doc/HTML/lv +share/doc/HTML/mk +share/doc/HTML/ml +share/doc/HTML/nb +share/doc/HTML/nds share/doc/HTML/nl +share/doc/HTML/nn +share/doc/HTML/pa share/doc/HTML/pl share/doc/HTML/pt share/doc/HTML/pt_BR @@ -251,241 +102,53 @@ share/doc/HTML/sk share/doc/HTML/sl share/doc/HTML/sr share/doc/HTML/sv +share/doc/HTML/ta +share/doc/HTML/th share/doc/HTML/tr share/doc/HTML/uk +share/doc/HTML/wa share/doc/HTML/xh share/doc/HTML/zh_CN share/doc/HTML/zh_TW -@comment share/doc/HTML/en/kcontrol/arts -@comment share/doc/HTML/en/kcontrol/background -@comment share/doc/HTML/en/kcontrol/bell -@comment share/doc/HTML/en/kcontrol/cache -@comment share/doc/HTML/en/kcontrol/clock -@comment share/doc/HTML/en/kcontrol/colors -@comment share/doc/HTML/en/kcontrol/cookies -@comment share/doc/HTML/en/kcontrol/crypto -@comment share/doc/HTML/en/kcontrol/desktop -@comment share/doc/HTML/en/kcontrol/ebrowsing -@comment share/doc/HTML/en/kcontrol/email -@comment share/doc/HTML/en/kcontrol/energy -@comment share/doc/HTML/en/kcontrol/filemanager -@comment share/doc/HTML/en/kcontrol/filetypes -@comment share/doc/HTML/en/kcontrol/fonts -@comment share/doc/HTML/en/kcontrol/helpindex.html -@comment share/doc/HTML/en/kcontrol/icons -@comment share/doc/HTML/en/kcontrol/kcmaccess -@comment share/doc/HTML/en/kcontrol/kcmcss -@comment share/doc/HTML/en/kcontrol/kcmfontinst -@comment share/doc/HTML/en/kcontrol/kcmkonsole -@comment share/doc/HTML/en/kcontrol/kcmlaunch -@comment share/doc/HTML/en/kcontrol/kcmnotify -@comment share/doc/HTML/en/kcontrol/kcmsmserver -@comment share/doc/HTML/en/kcontrol/kcmstyle -@comment share/doc/HTML/en/kcontrol/kcmtaskbar -@comment share/doc/HTML/en/kcontrol/kdm -@comment share/doc/HTML/en/kcontrol/keyboard -@comment share/doc/HTML/en/kcontrol/keys -@comment share/doc/HTML/en/kcontrol/khtml -@comment share/doc/HTML/en/kcontrol/kthememgr -@comment share/doc/HTML/en/kcontrol/kwindecoration -@comment share/doc/HTML/en/kcontrol/language -@comment share/doc/HTML/en/kcontrol/mouse -@comment share/doc/HTML/en/kcontrol/netpref -@comment share/doc/HTML/en/kcontrol/panel -@comment share/doc/HTML/en/kcontrol/passwords -@comment share/doc/HTML/en/kcontrol/proxy -@comment share/doc/HTML/en/kcontrol/screensaver -@comment share/doc/HTML/en/kcontrol/smb -@comment share/doc/HTML/en/kcontrol/spellchecking -@comment share/doc/HTML/en/kcontrol/useragent -@comment share/doc/HTML/en/kcontrol/windowmanagement -@comment share/doc/HTML/en/kdebase-apidocs -@comment share/doc/HTML/en/kdebugdialog -@comment share/doc/HTML/en/kdeprint -@comment share/doc/HTML/en/kdesu -@comment share/doc/HTML/en/kdm -@comment share/doc/HTML/en/kfind -@comment share/doc/HTML/en/khelpcenter -@comment share/doc/HTML/en/khelpcenter/faq -@comment share/doc/HTML/en/khelpcenter/glossary -@comment share/doc/HTML/en/khelpcenter/quickstart -@comment share/doc/HTML/en/khelpcenter/userguide -@comment share/doc/HTML/en/khelpcenter/visualdict -@comment share/doc/HTML/en/kicker -@comment share/doc/HTML/en/kinfocenter -@comment share/doc/HTML/en/kinfocenter/devices -@comment share/doc/HTML/en/kinfocenter/dma -@comment share/doc/HTML/en/kinfocenter/interrupts -@comment share/doc/HTML/en/kinfocenter/ioports -@comment share/doc/HTML/en/kinfocenter/memory -@comment share/doc/HTML/en/kinfocenter/nics -@comment share/doc/HTML/en/kinfocenter/partitions -@comment share/doc/HTML/en/kinfocenter/pci -@comment share/doc/HTML/en/kinfocenter/pcmcia -@comment share/doc/HTML/en/kinfocenter/processor -@comment share/doc/HTML/en/kinfocenter/protocols -@comment share/doc/HTML/en/kinfocenter/samba -@comment share/doc/HTML/en/kinfocenter/scsi -@comment share/doc/HTML/en/kinfocenter/sound -@comment share/doc/HTML/en/kinfocenter/usb -@comment share/doc/HTML/en/kinfocenter/xserver -@comment share/doc/HTML/en/kioslave -@comment share/doc/HTML/en/klipper -@comment share/doc/HTML/en/kmenuedit -@comment share/doc/HTML/en/konqueror -@comment share/doc/HTML/en/konsole -@comment share/doc/HTML/en/kpager -@comment share/doc/HTML/en/ksysguard -@comment share/doc/HTML/en/kwrite -@comment --------------------------------------------------------------------- -@comment -- Additional fonts could go here, I think. -@comment share/fonts -@comment share/fonts/override -@comment share/icons/crystalsvg/128x128/apps -@comment share/icons/crystalsvg/16x16/apps -@comment share/icons/crystalsvg/16x16/apps/gnome -@comment share/icons/crystalsvg/16x16/apps/mozilla -@comment share/icons/crystalsvg/22x22/apps -@comment share/icons/crystalsvg/32x32/apps -@comment share/icons/crystalsvg/32x32/apps/gnome -@comment share/icons/crystalsvg/32x32/apps/mozilla -@comment share/icons/crystalsvg/48x48/apps -@comment share/icons/crystalsvg/48x48/apps/gnome -@comment share/icons/crystalsvg/48x48/apps/mozilla -@comment share/icons/crystalsvg/64x64/apps -@comment share/icons/locolor/16x16/apps -@comment share/icons/locolor/32x32/apps -@comment Kdebase puts a locale desktop entry here and pointyhat recently -@comment started to complain about it. -share/locale/en_US -@comment share/locale/l10n -@comment share/locale/l10n/C -@comment share/locale/l10n/ae -@comment share/locale/l10n/ag -@comment share/locale/l10n/ar -@comment share/locale/l10n/at -@comment share/locale/l10n/au -@comment share/locale/l10n/az -@comment share/locale/l10n/ba -@comment share/locale/l10n/bb -@comment share/locale/l10n/bd -@comment share/locale/l10n/be -@comment share/locale/l10n/bg -@comment share/locale/l10n/bh -@comment share/locale/l10n/bo -@comment share/locale/l10n/br -@comment share/locale/l10n/by -@comment share/locale/l10n/ca -@comment share/locale/l10n/ch -@comment share/locale/l10n/cl -@comment share/locale/l10n/cn -@comment share/locale/l10n/co -@comment share/locale/l10n/cr -@comment share/locale/l10n/cu -@comment share/locale/l10n/cz -@comment share/locale/l10n/de -@comment share/locale/l10n/dj -@comment share/locale/l10n/dk -@comment share/locale/l10n/do -@comment share/locale/l10n/dz -@comment share/locale/l10n/ec -@comment share/locale/l10n/ee -@comment share/locale/l10n/eg -@comment share/locale/l10n/es -@comment share/locale/l10n/fi -@comment share/locale/l10n/fr -@comment share/locale/l10n/gb -@comment share/locale/l10n/gd -@comment share/locale/l10n/gh -@comment share/locale/l10n/gr -@comment share/locale/l10n/gt -@comment share/locale/l10n/hn -@comment share/locale/l10n/hr -@comment share/locale/l10n/hu -@comment share/locale/l10n/id -@comment share/locale/l10n/ie -@comment share/locale/l10n/il -@comment share/locale/l10n/in -@comment share/locale/l10n/iq -@comment share/locale/l10n/ir -@comment share/locale/l10n/is -@comment share/locale/l10n/it -@comment share/locale/l10n/jm -@comment share/locale/l10n/jo -@comment share/locale/l10n/jp -@comment share/locale/l10n/kn -@comment share/locale/l10n/kp -@comment share/locale/l10n/kr -@comment share/locale/l10n/kw -@comment share/locale/l10n/lb -@comment share/locale/l10n/lc -@comment share/locale/l10n/lt -@comment share/locale/l10n/lu -@comment share/locale/l10n/lv -@comment share/locale/l10n/ly -@comment share/locale/l10n/ma -@comment share/locale/l10n/mk -@comment share/locale/l10n/mt -@comment share/locale/l10n/mx -@comment share/locale/l10n/ni -@comment share/locale/l10n/nl -@comment share/locale/l10n/no -@comment share/locale/l10n/nz -@comment share/locale/l10n/om -@comment share/locale/l10n/pa -@comment share/locale/l10n/pe -@comment share/locale/l10n/pl -@comment share/locale/l10n/ps -@comment share/locale/l10n/pt -@comment share/locale/l10n/py -@comment share/locale/l10n/qa -@comment share/locale/l10n/ro -@comment share/locale/l10n/ru -@comment share/locale/l10n/sa -@comment share/locale/l10n/sd -@comment share/locale/l10n/se -@comment share/locale/l10n/si -@comment share/locale/l10n/sk -@comment share/locale/l10n/so -@comment share/locale/l10n/sr -@comment share/locale/l10n/sv -@comment share/locale/l10n/sy -@comment share/locale/l10n/th -@comment share/locale/l10n/tn -@comment share/locale/l10n/tr -@comment share/locale/l10n/tt -@comment share/locale/l10n/tw -@comment share/locale/l10n/ua -@comment share/locale/l10n/us -@comment share/locale/l10n/uy -@comment share/locale/l10n/vc -@comment share/locale/l10n/ve -@comment share/locale/l10n/vn -@comment share/locale/l10n/ye -@comment share/locale/l10n/za -@comment share/mimelnk/kdedevice -@comment share/mimelnk/print -@comment --------------------------------------------------------------------- -@comment -- Ports could install search providers, UA strings, sounds, templates -@comment -- and of course wallpapers. -share/services/searchproviders -share/services/useragentstrings -share/sounds -share/templates -share/templates/.source -share/wallpapers -@comment --------------------------------------------------------------------- -@comment -- Directories handpicked out of kdelibs -share/applnk/Settings/Components -share/apps -share/apps/kabc -share/apps/kabc/formats -share/apps/kabc/plugins -@comment --------------------------------------------------------------------- -@comment -- KDE-LIRc profiles -share/apps/profiles +share/emoticons share/icons -@comment crystalsvg +share/icons/Locolor +share/icons/Locolor/128x128 +share/icons/Locolor/128x128/actions +share/icons/Locolor/128x128/apps +share/icons/Locolor/128x128/devices +share/icons/Locolor/128x128/filesystem +share/icons/Locolor/128x128/mimetypes +share/icons/Locolor/16x16 +share/icons/Locolor/16x16/actions +share/icons/Locolor/16x16/apps +share/icons/Locolor/16x16/devices +share/icons/Locolor/16x16/filesystems +share/icons/Locolor/16x16/mimetypes +share/icons/Locolor/22x22 +share/icons/Locolor/22x22/actions +share/icons/Locolor/22x22/apps +share/icons/Locolor/22x22/devices +share/icons/Locolor/22x22/filesystems +share/icons/Locolor/22x22/mimetypes +share/icons/Locolor/32x32 +share/icons/Locolor/32x32/actions +share/icons/Locolor/32x32/apps +share/icons/Locolor/32x32/devices +share/icons/Locolor/32x32/filesystems +share/icons/Locolor/32x32/mimetypes +share/icons/Locolor/48x48 +share/icons/Locolor/48x48/actions +share/icons/Locolor/48x48/apps +share/icons/Locolor/48x48/devices +share/icons/Locolor/48x48/filesystems +share/icons/Locolor/48x48/mimetypes +share/icons/Locolor/64x64 +share/icons/Locolor/64x64/actions +share/icons/Locolor/64x64/apps +share/icons/Locolor/64x64/devices +share/icons/Locolor/64x64/filesystems +share/icons/Locolor/64x64/mimetypes share/icons/crystalsvg share/icons/crystalsvg/128x128 share/icons/crystalsvg/128x128/actions @@ -530,6 +193,32 @@ share/icons/crystalsvg/scalable/devices share/icons/crystalsvg/scalable/filesystems share/icons/crystalsvg/scalable/mimetypes share/icons/hicolor +share/icons/hicolor/128x128 +share/icons/hicolor/128x128/actions +share/icons/hicolor/128x128/animations +share/icons/hicolor/128x128/apps +share/icons/hicolor/128x128/categories +share/icons/hicolor/128x128/devices +share/icons/hicolor/128x128/emblems +share/icons/hicolor/128x128/emotes +share/icons/hicolor/128x128/filesystems +share/icons/hicolor/128x128/intl +share/icons/hicolor/128x128/mimetypes +share/icons/hicolor/128x128/places +share/icons/hicolor/128x128/status +share/icons/hicolor/128x128/stock +share/icons/hicolor/128x128/stock/chart +share/icons/hicolor/128x128/stock/code +share/icons/hicolor/128x128/stock/data +share/icons/hicolor/128x128/stock/form +share/icons/hicolor/128x128/stock/image +share/icons/hicolor/128x128/stock/io +share/icons/hicolor/128x128/stock/media +share/icons/hicolor/128x128/stock/navigation +share/icons/hicolor/128x128/stock/net +share/icons/hicolor/128x128/stock/object +share/icons/hicolor/128x128/stock/table +share/icons/hicolor/128x128/stock/text share/icons/hicolor/16x16 share/icons/hicolor/16x16/actions share/icons/hicolor/16x16/animations @@ -543,6 +232,7 @@ share/icons/hicolor/16x16/intl share/icons/hicolor/16x16/mimetypes share/icons/hicolor/16x16/places share/icons/hicolor/16x16/status +share/icons/hicolor/16x16/stock share/icons/hicolor/16x16/stock/chart share/icons/hicolor/16x16/stock/code share/icons/hicolor/16x16/stock/data @@ -555,7 +245,32 @@ share/icons/hicolor/16x16/stock/net share/icons/hicolor/16x16/stock/object share/icons/hicolor/16x16/stock/table share/icons/hicolor/16x16/stock/text -share/icons/hicolor/16x16/stock +share/icons/hicolor/192x192 +share/icons/hicolor/192x192/actions +share/icons/hicolor/192x192/animations +share/icons/hicolor/192x192/apps +share/icons/hicolor/192x192/categories +share/icons/hicolor/192x192/devices +share/icons/hicolor/192x192/emblems +share/icons/hicolor/192x192/emotes +share/icons/hicolor/192x192/filesystems +share/icons/hicolor/192x192/intl +share/icons/hicolor/192x192/mimetypes +share/icons/hicolor/192x192/places +share/icons/hicolor/192x192/status +share/icons/hicolor/192x192/stock +share/icons/hicolor/192x192/stock/chart +share/icons/hicolor/192x192/stock/code +share/icons/hicolor/192x192/stock/data +share/icons/hicolor/192x192/stock/form +share/icons/hicolor/192x192/stock/image +share/icons/hicolor/192x192/stock/io +share/icons/hicolor/192x192/stock/media +share/icons/hicolor/192x192/stock/navigation +share/icons/hicolor/192x192/stock/net +share/icons/hicolor/192x192/stock/object +share/icons/hicolor/192x192/stock/table +share/icons/hicolor/192x192/stock/text share/icons/hicolor/22x22 share/icons/hicolor/22x22/actions share/icons/hicolor/22x22/animations @@ -569,6 +284,7 @@ share/icons/hicolor/22x22/intl share/icons/hicolor/22x22/mimetypes share/icons/hicolor/22x22/places share/icons/hicolor/22x22/status +share/icons/hicolor/22x22/stock share/icons/hicolor/22x22/stock/chart share/icons/hicolor/22x22/stock/code share/icons/hicolor/22x22/stock/data @@ -581,7 +297,6 @@ share/icons/hicolor/22x22/stock/net share/icons/hicolor/22x22/stock/object share/icons/hicolor/22x22/stock/table share/icons/hicolor/22x22/stock/text -share/icons/hicolor/22x22/stock share/icons/hicolor/24x24 share/icons/hicolor/24x24/actions share/icons/hicolor/24x24/animations @@ -595,6 +310,7 @@ share/icons/hicolor/24x24/intl share/icons/hicolor/24x24/mimetypes share/icons/hicolor/24x24/places share/icons/hicolor/24x24/status +share/icons/hicolor/24x24/stock share/icons/hicolor/24x24/stock/chart share/icons/hicolor/24x24/stock/code share/icons/hicolor/24x24/stock/data @@ -607,7 +323,6 @@ share/icons/hicolor/24x24/stock/net share/icons/hicolor/24x24/stock/object share/icons/hicolor/24x24/stock/table share/icons/hicolor/24x24/stock/text -share/icons/hicolor/24x24/stock share/icons/hicolor/32x32 share/icons/hicolor/32x32/actions share/icons/hicolor/32x32/animations @@ -621,6 +336,7 @@ share/icons/hicolor/32x32/intl share/icons/hicolor/32x32/mimetypes share/icons/hicolor/32x32/places share/icons/hicolor/32x32/status +share/icons/hicolor/32x32/stock share/icons/hicolor/32x32/stock/chart share/icons/hicolor/32x32/stock/code share/icons/hicolor/32x32/stock/data @@ -633,7 +349,6 @@ share/icons/hicolor/32x32/stock/net share/icons/hicolor/32x32/stock/object share/icons/hicolor/32x32/stock/table share/icons/hicolor/32x32/stock/text -share/icons/hicolor/32x32/stock share/icons/hicolor/36x36 share/icons/hicolor/36x36/actions share/icons/hicolor/36x36/animations @@ -647,6 +362,7 @@ share/icons/hicolor/36x36/intl share/icons/hicolor/36x36/mimetypes share/icons/hicolor/36x36/places share/icons/hicolor/36x36/status +share/icons/hicolor/36x36/stock share/icons/hicolor/36x36/stock/chart share/icons/hicolor/36x36/stock/code share/icons/hicolor/36x36/stock/data @@ -659,7 +375,6 @@ share/icons/hicolor/36x36/stock/net share/icons/hicolor/36x36/stock/object share/icons/hicolor/36x36/stock/table share/icons/hicolor/36x36/stock/text -share/icons/hicolor/36x36/stock share/icons/hicolor/48x48 share/icons/hicolor/48x48/actions share/icons/hicolor/48x48/animations @@ -673,6 +388,7 @@ share/icons/hicolor/48x48/intl share/icons/hicolor/48x48/mimetypes share/icons/hicolor/48x48/places share/icons/hicolor/48x48/status +share/icons/hicolor/48x48/stock share/icons/hicolor/48x48/stock/chart share/icons/hicolor/48x48/stock/code share/icons/hicolor/48x48/stock/data @@ -685,7 +401,6 @@ share/icons/hicolor/48x48/stock/net share/icons/hicolor/48x48/stock/object share/icons/hicolor/48x48/stock/table share/icons/hicolor/48x48/stock/text -share/icons/hicolor/48x48/stock share/icons/hicolor/64x64 share/icons/hicolor/64x64/actions share/icons/hicolor/64x64/animations @@ -699,6 +414,7 @@ share/icons/hicolor/64x64/intl share/icons/hicolor/64x64/mimetypes share/icons/hicolor/64x64/places share/icons/hicolor/64x64/status +share/icons/hicolor/64x64/stock share/icons/hicolor/64x64/stock/chart share/icons/hicolor/64x64/stock/code share/icons/hicolor/64x64/stock/data @@ -711,7 +427,6 @@ share/icons/hicolor/64x64/stock/net share/icons/hicolor/64x64/stock/object share/icons/hicolor/64x64/stock/table share/icons/hicolor/64x64/stock/text -share/icons/hicolor/64x64/stock share/icons/hicolor/72x72 share/icons/hicolor/72x72/actions share/icons/hicolor/72x72/animations @@ -725,6 +440,7 @@ share/icons/hicolor/72x72/intl share/icons/hicolor/72x72/mimetypes share/icons/hicolor/72x72/places share/icons/hicolor/72x72/status +share/icons/hicolor/72x72/stock share/icons/hicolor/72x72/stock/chart share/icons/hicolor/72x72/stock/code share/icons/hicolor/72x72/stock/data @@ -737,7 +453,6 @@ share/icons/hicolor/72x72/stock/net share/icons/hicolor/72x72/stock/object share/icons/hicolor/72x72/stock/table share/icons/hicolor/72x72/stock/text -share/icons/hicolor/72x72/stock share/icons/hicolor/96x96 share/icons/hicolor/96x96/actions share/icons/hicolor/96x96/animations @@ -751,6 +466,7 @@ share/icons/hicolor/96x96/intl share/icons/hicolor/96x96/mimetypes share/icons/hicolor/96x96/places share/icons/hicolor/96x96/status +share/icons/hicolor/96x96/stock share/icons/hicolor/96x96/stock/chart share/icons/hicolor/96x96/stock/code share/icons/hicolor/96x96/stock/data @@ -763,59 +479,6 @@ share/icons/hicolor/96x96/stock/net share/icons/hicolor/96x96/stock/object share/icons/hicolor/96x96/stock/table share/icons/hicolor/96x96/stock/text -share/icons/hicolor/96x96/stock -share/icons/hicolor/128x128 -share/icons/hicolor/128x128/actions -share/icons/hicolor/128x128/animations -share/icons/hicolor/128x128/apps -share/icons/hicolor/128x128/categories -share/icons/hicolor/128x128/devices -share/icons/hicolor/128x128/emblems -share/icons/hicolor/128x128/emotes -share/icons/hicolor/128x128/filesystems -share/icons/hicolor/128x128/intl -share/icons/hicolor/128x128/mimetypes -share/icons/hicolor/128x128/places -share/icons/hicolor/128x128/status -share/icons/hicolor/128x128/stock/chart -share/icons/hicolor/128x128/stock/code -share/icons/hicolor/128x128/stock/data -share/icons/hicolor/128x128/stock/form -share/icons/hicolor/128x128/stock/image -share/icons/hicolor/128x128/stock/io -share/icons/hicolor/128x128/stock/media -share/icons/hicolor/128x128/stock/navigation -share/icons/hicolor/128x128/stock/net -share/icons/hicolor/128x128/stock/object -share/icons/hicolor/128x128/stock/table -share/icons/hicolor/128x128/stock/text -share/icons/hicolor/128x128/stock -share/icons/hicolor/192x192 -share/icons/hicolor/192x192/actions -share/icons/hicolor/192x192/animations -share/icons/hicolor/192x192/apps -share/icons/hicolor/192x192/categories -share/icons/hicolor/192x192/devices -share/icons/hicolor/192x192/emblems -share/icons/hicolor/192x192/emotes -share/icons/hicolor/192x192/filesystems -share/icons/hicolor/192x192/intl -share/icons/hicolor/192x192/mimetypes -share/icons/hicolor/192x192/places -share/icons/hicolor/192x192/status -share/icons/hicolor/192x192/stock/chart -share/icons/hicolor/192x192/stock/code -share/icons/hicolor/192x192/stock/data -share/icons/hicolor/192x192/stock/form -share/icons/hicolor/192x192/stock/image -share/icons/hicolor/192x192/stock/io -share/icons/hicolor/192x192/stock/media -share/icons/hicolor/192x192/stock/navigation -share/icons/hicolor/192x192/stock/net -share/icons/hicolor/192x192/stock/object -share/icons/hicolor/192x192/stock/table -share/icons/hicolor/192x192/stock/text -share/icons/hicolor/192x192/stock share/icons/hicolor/scalable share/icons/hicolor/scalable/actions share/icons/hicolor/scalable/animations @@ -829,6 +492,7 @@ share/icons/hicolor/scalable/intl share/icons/hicolor/scalable/mimetypes share/icons/hicolor/scalable/places share/icons/hicolor/scalable/status +share/icons/hicolor/scalable/stock share/icons/hicolor/scalable/stock/chart share/icons/hicolor/scalable/stock/code share/icons/hicolor/scalable/stock/data @@ -841,55 +505,17 @@ share/icons/hicolor/scalable/stock/net share/icons/hicolor/scalable/stock/object share/icons/hicolor/scalable/stock/table share/icons/hicolor/scalable/stock/text -share/icons/hicolor/scalable/stock -share/icons/locolor -share/icons/locolor/128x128 -share/icons/locolor/128x128/actions -share/icons/locolor/128x128/apps -share/icons/locolor/128x128/devices -share/icons/locolor/128x128/filesystem -share/icons/locolor/128x128/mimetypes -share/icons/locolor/16x16 -share/icons/locolor/16x16/actions -share/icons/locolor/16x16/apps -share/icons/locolor/16x16/devices -share/icons/locolor/16x16/filesystems -share/icons/locolor/16x16/mimetypes -share/icons/locolor/22x22 -share/icons/locolor/22x22/actions -share/icons/locolor/22x22/apps -share/icons/locolor/22x22/devices -share/icons/locolor/22x22/filesystems -share/icons/locolor/22x22/mimetypes -share/icons/locolor/32x32 -share/icons/locolor/32x32/actions -share/icons/locolor/32x32/apps -share/icons/locolor/32x32/devices -share/icons/locolor/32x32/filesystems -share/icons/locolor/32x32/mimetypes -share/icons/locolor/48x48 -share/icons/locolor/48x48/actions -share/icons/locolor/48x48/apps -share/icons/locolor/48x48/devices -share/icons/locolor/48x48/filesystems -share/icons/locolor/48x48/mimetypes -share/icons/locolor/64x64 -share/icons/locolor/64x64/actions -share/icons/locolor/64x64/apps -share/icons/locolor/64x64/devices -share/icons/locolor/64x64/filesystems -share/icons/locolor/64x64/mimetypes share/icons/oxygen -share/icons/oxygen/8x8 -share/icons/oxygen/8x8/actions -share/icons/oxygen/8x8/apps -share/icons/oxygen/8x8/categories -share/icons/oxygen/8x8/devices -share/icons/oxygen/8x8/emblems -share/icons/oxygen/8x8/emotes -share/icons/oxygen/8x8/mimetypes -share/icons/oxygen/8x8/places -share/icons/oxygen/8x8/status +share/icons/oxygen/128x128 +share/icons/oxygen/128x128/actions +share/icons/oxygen/128x128/apps +share/icons/oxygen/128x128/categories +share/icons/oxygen/128x128/devices +share/icons/oxygen/128x128/emblems +share/icons/oxygen/128x128/emotes +share/icons/oxygen/128x128/mimetypes +share/icons/oxygen/128x128/places +share/icons/oxygen/128x128/status share/icons/oxygen/16x16 share/icons/oxygen/16x16/actions share/icons/oxygen/16x16/apps @@ -940,16 +566,16 @@ share/icons/oxygen/64x64/emotes share/icons/oxygen/64x64/mimetypes share/icons/oxygen/64x64/places share/icons/oxygen/64x64/status -share/icons/oxygen/128x128 -share/icons/oxygen/128x128/actions -share/icons/oxygen/128x128/apps -share/icons/oxygen/128x128/categories -share/icons/oxygen/128x128/devices -share/icons/oxygen/128x128/emblems -share/icons/oxygen/128x128/emotes -share/icons/oxygen/128x128/mimetypes -share/icons/oxygen/128x128/places -share/icons/oxygen/128x128/status +share/icons/oxygen/8x8 +share/icons/oxygen/8x8/actions +share/icons/oxygen/8x8/apps +share/icons/oxygen/8x8/categories +share/icons/oxygen/8x8/devices +share/icons/oxygen/8x8/emblems +share/icons/oxygen/8x8/emotes +share/icons/oxygen/8x8/mimetypes +share/icons/oxygen/8x8/places +share/icons/oxygen/8x8/status share/icons/oxygen/scalable share/icons/oxygen/scalable/actions share/icons/oxygen/scalable/actions/small @@ -969,16 +595,36 @@ share/icons/oxygen/scalable/places share/icons/oxygen/scalable/places/small share/icons/oxygen/scalable/status share/icons/oxygen/scalable/status/small -share/mimelnk -share/mimelnk/all -share/mimelnk/application -share/mimelnk/audio -share/mimelnk/image -share/mimelnk/inode -share/mimelnk/message -share/mimelnk/model -share/mimelnk/multipart -share/mimelnk/text -share/mimelnk/video +share/kde4 +share/kde4/services +share/kde4/services/ScreenSavers +share/kde4/services/ServiceMenus +share/kde4/services/kded +share/kde4/services/kresources +share/kde4/services/kresources/kabc +share/kde4/services/kresources/kcal +share/kde4/servicetypes share/services -share/servicetypes +share/services/searchproviders +share/services/useragentstrings +share/sounds +share/templates +share/templates/.source +share/wallpapers +@comment --------------------------------------------------------------------- +@comment -- these locales still not included into BSD.local.dist +share/locale/csb +share/locale/csb/LC_MESSAGES +share/locale/en_US +share/locale/fy +share/locale/fy/LC_MESSAGES +share/locale/kk +share/locale/kk/LC_MESSAGES +share/locale/km +share/locale/km/LC_MESSAGES +share/locale/ku +share/locale/ku/LC_MESSAGES +share/locale/nds +share/locale/nds/LC_MESSAGES +share/locale/xh +share/locale/xh/LC_MESSAGES
\ No newline at end of file diff --git a/misc/kdehier4/pkg-plist b/misc/kdehier4/pkg-plist index 47f71cfe1d7c..582f72eeeb1f 100644 --- a/misc/kdehier4/pkg-plist +++ b/misc/kdehier4/pkg-plist @@ -11,8 +11,8 @@ %%MTREE%%lib/X11/fonts/.keep_me %%MTREE%%lib/X11/fonts/local/.keep_me %%MTREE%%libdata/.keep_me -%%MTREE%%libdata/ldconfig -%%MTREE%%libdata/ldconfig32 +%%MTREE%%%%LDCONFIG_DIR%% +%%MTREE%%%%LDCONFIG32_DIR%% %%MTREE%%libdata/pkgconfig %%MTREE%%libexec/.keep_me %%MTREE%%man/.keep_me @@ -472,121 +472,96 @@ lib/kconf_update_bin/.keep_me lib/kde4/.keep_me lib/kde4/libexec/.keep_me lib/kde4/plugins/.keep_me +lib/kde4/plugins/designer/.keep_me +lib/kde4/plugins/styles/.keep_me lib/strigi/.keep_me share/applications/.keep_me share/applications/kde4/.keep_me -share/applnk/.hidden/.keep_me -share/applnk/.keep_me -share/applnk/Applications/.keep_me -share/applnk/Development/.keep_me -share/applnk/Editors/.keep_me -share/applnk/Edutainment/.keep_me -share/applnk/Games/.keep_me -share/applnk/Games/Arcade/.keep_me -share/applnk/Games/Board/.keep_me -share/applnk/Games/Card/.keep_me -share/applnk/Games/Kidsgames/.keep_me -share/applnk/Games/Roguelikes/.keep_me -share/applnk/Games/TacticStrategy/.keep_me -share/applnk/Graphics/.keep_me -share/applnk/Graphics/More/.keep_me -share/applnk/Internet/.keep_me -share/applnk/Internet/More/.keep_me -share/applnk/Internet/Terminal/.keep_me -share/applnk/Multimedia/.keep_me -share/applnk/Multimedia/More/.keep_me -share/applnk/Office/.keep_me -share/applnk/Settings/.keep_me -share/applnk/Settings/Accessibility/.keep_me -share/applnk/Settings/Components/.keep_me -share/applnk/Settings/Desktop/.keep_me -share/applnk/Settings/Information/.keep_me -share/applnk/Settings/LookNFeel/.keep_me -share/applnk/Settings/LookNFeel/Themes/.keep_me -share/applnk/Settings/LookNFeel/Windows/.keep_me -share/applnk/Settings/Network/.keep_me -share/applnk/Settings/Network/WebBrowsing/.keep_me -share/applnk/Settings/Peripherals/.keep_me -share/applnk/Settings/Personalization/.keep_me -share/applnk/Settings/PowerControl/.keep_me -share/applnk/Settings/Security/.keep_me -share/applnk/Settings/Sound/.keep_me -share/applnk/Settings/System/.keep_me -share/applnk/Settings/WebBrowsing/.keep_me -share/applnk/Settingsmenu/.keep_me -share/applnk/System/.keep_me -share/applnk/System/More/.keep_me -share/applnk/System/ScreenSavers/.keep_me -share/applnk/System/Terminal/.keep_me -share/applnk/Toys/.keep_me -share/applnk/Utilities/.keep_me -share/applnk/Utilities/More/.keep_me -share/applnk/Utilities/XUtilities/.keep_me share/apps/.keep_me +share/apps/cmake/.keep_me +share/apps/cmake/modules/.keep_me +share/apps/color-schemes/.keep_me +share/apps/desktoptheme/.keep_me +share/apps/desktoptheme/default/.keep_me +share/apps/desktoptheme/default/widgets/.keep_me share/apps/kabc/.keep_me share/apps/kabc/formats/.keep_me share/apps/kabc/plugins/.keep_me -share/apps/kate/.keep_me -share/apps/kate/scripts/.keep_me -share/apps/kdesktop/.keep_me -share/apps/kdesktop/DesktopLinks/.keep_me -share/apps/kdesktop/patterns/.keep_me -share/apps/kdesktop/pics/.keep_me -share/apps/kdesktop/programs/.keep_me +share/apps/katepart/.keep_me +share/apps/katepart/syntax/.keep_me +share/apps/kcharselect/.keep_me +share/apps/kcm_componentchooser/.keep_me +share/apps/kconf_update/.keep_me +share/apps/kcontrol/.keep_me +share/apps/kcontrol/pics/.keep_me +share/apps/kdm/.keep_me +share/apps/kdm/pics/.keep_me +share/apps/kdm/pics/users/.keep_me share/apps/khelpcenter/.keep_me share/apps/khelpcenter/plugins/.keep_me -share/apps/kicker/.keep_me -share/apps/kicker/applets/.keep_me -share/apps/kicker/extensions/.keep_me -share/apps/kicker/menuext/.keep_me -share/apps/kicker/pics/.keep_me -share/apps/kicker/tiles/.keep_me -share/apps/kicker/wallpapers/.keep_me +share/apps/khtml/.keep_me +share/apps/khtml/kpartplugins/.keep_me share/apps/konqsidebartng/.keep_me -share/apps/konqsidebartng/add/.keep_me -share/apps/konqsidebartng/dirtree/.keep_me -share/apps/konqsidebartng/entries/.keep_me share/apps/konqsidebartng/virtual_folders/.keep_me -share/apps/konqsidebartng/virtual_folders/remote/.keep_me -share/apps/konqsidebartng/virtual_folders/remote/ftp/.keep_me -share/apps/konqsidebartng/virtual_folders/remote/web/.keep_me share/apps/konqsidebartng/virtual_folders/services/.keep_me share/apps/konqueror/.keep_me -share/apps/konqueror/profiles/.keep_me -share/apps/konqueror/servicemenus/.keep_me -share/apps/konsole/.keep_me -share/apps/konsole/profiles/.keep_me -share/apps/kthememgr/.keep_me -share/apps/kthememgr/Themes/.keep_me +share/apps/kstyle/.keep_me +share/apps/kstyle/themes/.keep_me share/apps/kwin/.keep_me -share/apps/kwin/icewm-themes/.keep_me -share/apps/kwin/pics/.keep_me +share/apps/nepomuk/.keep_me +share/apps/nepomuk/ontologies/.keep_me +share/apps/plasma/.keep_me +share/apps/plasma/services/.keep_me share/apps/profiles/.keep_me -share/apps/zeroconf/.keep_me +share/apps/remoteview/.keep_me +share/apps/solid/.keep_me +share/apps/solid/actions/.keep_me +share/autostart/.keep_me share/config.kcfg/.keep_me share/config/.keep_me share/dbus-1/.keep_me share/dbus-1/interfaces/.keep_me share/dbus-1/services/.keep_me share/doc/HTML/.keep_me +share/doc/HTML/bg/.keep_me +share/doc/HTML/ca/.keep_me share/doc/HTML/cs/.keep_me +share/doc/HTML/csb/.keep_me share/doc/HTML/da/.keep_me share/doc/HTML/de/.keep_me +share/doc/HTML/el/.keep_me share/doc/HTML/en/.keep_me share/doc/HTML/en/kcontrol/.keep_me +share/doc/HTML/en/kioslave/.keep_me share/doc/HTML/en_GB/.keep_me +share/doc/HTML/eo/.keep_me share/doc/HTML/es/.keep_me share/doc/HTML/et/.keep_me share/doc/HTML/eu/.keep_me share/doc/HTML/fi/.keep_me share/doc/HTML/fr/.keep_me +share/doc/HTML/fy/.keep_me +share/doc/HTML/ga/.keep_me +share/doc/HTML/gl/.keep_me share/doc/HTML/he/.keep_me +share/doc/HTML/hi/.keep_me share/doc/HTML/hr/.keep_me share/doc/HTML/hu/.keep_me share/doc/HTML/it/.keep_me share/doc/HTML/ja/.keep_me +share/doc/HTML/kk/.keep_me +share/doc/HTML/km/.keep_me share/doc/HTML/ko/.keep_me +share/doc/HTML/ku/.keep_me +share/doc/HTML/lt/.keep_me +share/doc/HTML/lv/.keep_me +share/doc/HTML/mk/.keep_me +share/doc/HTML/ml/.keep_me +share/doc/HTML/nb/.keep_me +share/doc/HTML/nds/.keep_me share/doc/HTML/nl/.keep_me +share/doc/HTML/nn/.keep_me +share/doc/HTML/pa/.keep_me share/doc/HTML/pl/.keep_me share/doc/HTML/pt/.keep_me share/doc/HTML/pt_BR/.keep_me @@ -596,12 +571,53 @@ share/doc/HTML/sk/.keep_me share/doc/HTML/sl/.keep_me share/doc/HTML/sr/.keep_me share/doc/HTML/sv/.keep_me +share/doc/HTML/ta/.keep_me +share/doc/HTML/th/.keep_me share/doc/HTML/tr/.keep_me share/doc/HTML/uk/.keep_me +share/doc/HTML/wa/.keep_me share/doc/HTML/xh/.keep_me share/doc/HTML/zh_CN/.keep_me share/doc/HTML/zh_TW/.keep_me +share/emoticons/.keep_me share/icons/.keep_me +share/icons/Locolor/.keep_me +share/icons/Locolor/128x128/.keep_me +share/icons/Locolor/128x128/actions/.keep_me +share/icons/Locolor/128x128/apps/.keep_me +share/icons/Locolor/128x128/devices/.keep_me +share/icons/Locolor/128x128/filesystem/.keep_me +share/icons/Locolor/128x128/mimetypes/.keep_me +share/icons/Locolor/16x16/.keep_me +share/icons/Locolor/16x16/actions/.keep_me +share/icons/Locolor/16x16/apps/.keep_me +share/icons/Locolor/16x16/devices/.keep_me +share/icons/Locolor/16x16/filesystems/.keep_me +share/icons/Locolor/16x16/mimetypes/.keep_me +share/icons/Locolor/22x22/.keep_me +share/icons/Locolor/22x22/actions/.keep_me +share/icons/Locolor/22x22/apps/.keep_me +share/icons/Locolor/22x22/devices/.keep_me +share/icons/Locolor/22x22/filesystems/.keep_me +share/icons/Locolor/22x22/mimetypes/.keep_me +share/icons/Locolor/32x32/.keep_me +share/icons/Locolor/32x32/actions/.keep_me +share/icons/Locolor/32x32/apps/.keep_me +share/icons/Locolor/32x32/devices/.keep_me +share/icons/Locolor/32x32/filesystems/.keep_me +share/icons/Locolor/32x32/mimetypes/.keep_me +share/icons/Locolor/48x48/.keep_me +share/icons/Locolor/48x48/actions/.keep_me +share/icons/Locolor/48x48/apps/.keep_me +share/icons/Locolor/48x48/devices/.keep_me +share/icons/Locolor/48x48/filesystems/.keep_me +share/icons/Locolor/48x48/mimetypes/.keep_me +share/icons/Locolor/64x64/.keep_me +share/icons/Locolor/64x64/actions/.keep_me +share/icons/Locolor/64x64/apps/.keep_me +share/icons/Locolor/64x64/devices/.keep_me +share/icons/Locolor/64x64/filesystems/.keep_me +share/icons/Locolor/64x64/mimetypes/.keep_me share/icons/crystalsvg/.keep_me share/icons/crystalsvg/128x128/.keep_me share/icons/crystalsvg/128x128/actions/.keep_me @@ -958,43 +974,6 @@ share/icons/hicolor/scalable/stock/net/.keep_me share/icons/hicolor/scalable/stock/object/.keep_me share/icons/hicolor/scalable/stock/table/.keep_me share/icons/hicolor/scalable/stock/text/.keep_me -share/icons/locolor/.keep_me -share/icons/locolor/128x128/.keep_me -share/icons/locolor/128x128/actions/.keep_me -share/icons/locolor/128x128/apps/.keep_me -share/icons/locolor/128x128/devices/.keep_me -share/icons/locolor/128x128/filesystem/.keep_me -share/icons/locolor/128x128/mimetypes/.keep_me -share/icons/locolor/16x16/.keep_me -share/icons/locolor/16x16/actions/.keep_me -share/icons/locolor/16x16/apps/.keep_me -share/icons/locolor/16x16/devices/.keep_me -share/icons/locolor/16x16/filesystems/.keep_me -share/icons/locolor/16x16/mimetypes/.keep_me -share/icons/locolor/22x22/.keep_me -share/icons/locolor/22x22/actions/.keep_me -share/icons/locolor/22x22/apps/.keep_me -share/icons/locolor/22x22/devices/.keep_me -share/icons/locolor/22x22/filesystems/.keep_me -share/icons/locolor/22x22/mimetypes/.keep_me -share/icons/locolor/32x32/.keep_me -share/icons/locolor/32x32/actions/.keep_me -share/icons/locolor/32x32/apps/.keep_me -share/icons/locolor/32x32/devices/.keep_me -share/icons/locolor/32x32/filesystems/.keep_me -share/icons/locolor/32x32/mimetypes/.keep_me -share/icons/locolor/48x48/.keep_me -share/icons/locolor/48x48/actions/.keep_me -share/icons/locolor/48x48/apps/.keep_me -share/icons/locolor/48x48/devices/.keep_me -share/icons/locolor/48x48/filesystems/.keep_me -share/icons/locolor/48x48/mimetypes/.keep_me -share/icons/locolor/64x64/.keep_me -share/icons/locolor/64x64/actions/.keep_me -share/icons/locolor/64x64/apps/.keep_me -share/icons/locolor/64x64/devices/.keep_me -share/icons/locolor/64x64/filesystems/.keep_me -share/icons/locolor/64x64/mimetypes/.keep_me share/icons/oxygen/.keep_me share/icons/oxygen/128x128/.keep_me share/icons/oxygen/128x128/actions/.keep_me @@ -1094,22 +1073,24 @@ share/kde4/services/kresources/.keep_me share/kde4/services/kresources/kabc/.keep_me share/kde4/services/kresources/kcal/.keep_me share/kde4/servicetypes/.keep_me +share/locale/csb/.keep_me +share/locale/csb/LC_MESSAGES/.keep_me share/locale/en_US/.keep_me -share/mimelnk/.keep_me -share/mimelnk/all/.keep_me -share/mimelnk/application/.keep_me -share/mimelnk/audio/.keep_me -share/mimelnk/image/.keep_me -share/mimelnk/inode/.keep_me -share/mimelnk/message/.keep_me -share/mimelnk/model/.keep_me -share/mimelnk/multipart/.keep_me -share/mimelnk/text/.keep_me -share/mimelnk/video/.keep_me +share/locale/fy/.keep_me +share/locale/fy/LC_MESSAGES/.keep_me +share/locale/kk/.keep_me +share/locale/kk/LC_MESSAGES/.keep_me +share/locale/km/.keep_me +share/locale/km/LC_MESSAGES/.keep_me +share/locale/ku/.keep_me +share/locale/ku/LC_MESSAGES/.keep_me +share/locale/nds/.keep_me +share/locale/nds/LC_MESSAGES/.keep_me +share/locale/xh/.keep_me +share/locale/xh/LC_MESSAGES/.keep_me share/services/.keep_me share/services/searchproviders/.keep_me share/services/useragentstrings/.keep_me -share/servicetypes/.keep_me share/sounds/.keep_me share/templates/.keep_me share/templates/.source/.keep_me @@ -1118,22 +1099,24 @@ share/wallpapers/.keep_me @dirrmtry share/templates/.source @dirrmtry share/templates @dirrmtry share/sounds -@dirrmtry share/servicetypes @dirrmtry share/services/useragentstrings @dirrmtry share/services/searchproviders @dirrmtry share/services -@dirrmtry share/mimelnk/video -@dirrmtry share/mimelnk/text -@dirrmtry share/mimelnk/multipart -@dirrmtry share/mimelnk/model -@dirrmtry share/mimelnk/message -@dirrmtry share/mimelnk/inode -@dirrmtry share/mimelnk/image -@dirrmtry share/mimelnk/audio -@dirrmtry share/mimelnk/application -@dirrmtry share/mimelnk/all -@dirrmtry share/mimelnk +@dirrmtry share/locale/xh/LC_MESSAGES +@dirrmtry share/locale/xh +@dirrmtry share/locale/nds/LC_MESSAGES +@dirrmtry share/locale/nds +@dirrmtry share/locale/ku/LC_MESSAGES +@dirrmtry share/locale/ku +@dirrmtry share/locale/km/LC_MESSAGES +@dirrmtry share/locale/km +@dirrmtry share/locale/kk/LC_MESSAGES +@dirrmtry share/locale/kk +@dirrmtry share/locale/fy/LC_MESSAGES +@dirrmtry share/locale/fy @dirrmtry share/locale/en_US +@dirrmtry share/locale/csb/LC_MESSAGES +@dirrmtry share/locale/csb @dirrmtry share/kde4/servicetypes @dirrmtry share/kde4/services/kresources/kcal @dirrmtry share/kde4/services/kresources/kabc @@ -1233,43 +1216,6 @@ share/wallpapers/.keep_me @dirrmtry share/icons/oxygen/128x128/actions @dirrmtry share/icons/oxygen/128x128 @dirrmtry share/icons/oxygen -@dirrmtry share/icons/locolor/64x64/mimetypes -@dirrmtry share/icons/locolor/64x64/filesystems -@dirrmtry share/icons/locolor/64x64/devices -@dirrmtry share/icons/locolor/64x64/apps -@dirrmtry share/icons/locolor/64x64/actions -@dirrmtry share/icons/locolor/64x64 -@dirrmtry share/icons/locolor/48x48/mimetypes -@dirrmtry share/icons/locolor/48x48/filesystems -@dirrmtry share/icons/locolor/48x48/devices -@dirrmtry share/icons/locolor/48x48/apps -@dirrmtry share/icons/locolor/48x48/actions -@dirrmtry share/icons/locolor/48x48 -@dirrmtry share/icons/locolor/32x32/mimetypes -@dirrmtry share/icons/locolor/32x32/filesystems -@dirrmtry share/icons/locolor/32x32/devices -@dirrmtry share/icons/locolor/32x32/apps -@dirrmtry share/icons/locolor/32x32/actions -@dirrmtry share/icons/locolor/32x32 -@dirrmtry share/icons/locolor/22x22/mimetypes -@dirrmtry share/icons/locolor/22x22/filesystems -@dirrmtry share/icons/locolor/22x22/devices -@dirrmtry share/icons/locolor/22x22/apps -@dirrmtry share/icons/locolor/22x22/actions -@dirrmtry share/icons/locolor/22x22 -@dirrmtry share/icons/locolor/16x16/mimetypes -@dirrmtry share/icons/locolor/16x16/filesystems -@dirrmtry share/icons/locolor/16x16/devices -@dirrmtry share/icons/locolor/16x16/apps -@dirrmtry share/icons/locolor/16x16/actions -@dirrmtry share/icons/locolor/16x16 -@dirrmtry share/icons/locolor/128x128/mimetypes -@dirrmtry share/icons/locolor/128x128/filesystem -@dirrmtry share/icons/locolor/128x128/devices -@dirrmtry share/icons/locolor/128x128/apps -@dirrmtry share/icons/locolor/128x128/actions -@dirrmtry share/icons/locolor/128x128 -@dirrmtry share/icons/locolor @dirrmtry share/icons/hicolor/scalable/stock/text @dirrmtry share/icons/hicolor/scalable/stock/table @dirrmtry share/icons/hicolor/scalable/stock/object @@ -1626,12 +1572,53 @@ share/wallpapers/.keep_me @dirrmtry share/icons/crystalsvg/128x128/actions @dirrmtry share/icons/crystalsvg/128x128 @dirrmtry share/icons/crystalsvg +@dirrmtry share/icons/Locolor/64x64/mimetypes +@dirrmtry share/icons/Locolor/64x64/filesystems +@dirrmtry share/icons/Locolor/64x64/devices +@dirrmtry share/icons/Locolor/64x64/apps +@dirrmtry share/icons/Locolor/64x64/actions +@dirrmtry share/icons/Locolor/64x64 +@dirrmtry share/icons/Locolor/48x48/mimetypes +@dirrmtry share/icons/Locolor/48x48/filesystems +@dirrmtry share/icons/Locolor/48x48/devices +@dirrmtry share/icons/Locolor/48x48/apps +@dirrmtry share/icons/Locolor/48x48/actions +@dirrmtry share/icons/Locolor/48x48 +@dirrmtry share/icons/Locolor/32x32/mimetypes +@dirrmtry share/icons/Locolor/32x32/filesystems +@dirrmtry share/icons/Locolor/32x32/devices +@dirrmtry share/icons/Locolor/32x32/apps +@dirrmtry share/icons/Locolor/32x32/actions +@dirrmtry share/icons/Locolor/32x32 +@dirrmtry share/icons/Locolor/22x22/mimetypes +@dirrmtry share/icons/Locolor/22x22/filesystems +@dirrmtry share/icons/Locolor/22x22/devices +@dirrmtry share/icons/Locolor/22x22/apps +@dirrmtry share/icons/Locolor/22x22/actions +@dirrmtry share/icons/Locolor/22x22 +@dirrmtry share/icons/Locolor/16x16/mimetypes +@dirrmtry share/icons/Locolor/16x16/filesystems +@dirrmtry share/icons/Locolor/16x16/devices +@dirrmtry share/icons/Locolor/16x16/apps +@dirrmtry share/icons/Locolor/16x16/actions +@dirrmtry share/icons/Locolor/16x16 +@dirrmtry share/icons/Locolor/128x128/mimetypes +@dirrmtry share/icons/Locolor/128x128/filesystem +@dirrmtry share/icons/Locolor/128x128/devices +@dirrmtry share/icons/Locolor/128x128/apps +@dirrmtry share/icons/Locolor/128x128/actions +@dirrmtry share/icons/Locolor/128x128 +@dirrmtry share/icons/Locolor @dirrmtry share/icons +@dirrmtry share/emoticons @dirrmtry share/doc/HTML/zh_TW @dirrmtry share/doc/HTML/zh_CN @dirrmtry share/doc/HTML/xh +@dirrmtry share/doc/HTML/wa @dirrmtry share/doc/HTML/uk @dirrmtry share/doc/HTML/tr +@dirrmtry share/doc/HTML/th +@dirrmtry share/doc/HTML/ta @dirrmtry share/doc/HTML/sv @dirrmtry share/doc/HTML/sr @dirrmtry share/doc/HTML/sl @@ -1641,121 +1628,96 @@ share/wallpapers/.keep_me @dirrmtry share/doc/HTML/pt_BR @dirrmtry share/doc/HTML/pt @dirrmtry share/doc/HTML/pl +@dirrmtry share/doc/HTML/pa +@dirrmtry share/doc/HTML/nn @dirrmtry share/doc/HTML/nl +@dirrmtry share/doc/HTML/nds +@dirrmtry share/doc/HTML/nb +@dirrmtry share/doc/HTML/ml +@dirrmtry share/doc/HTML/mk +@dirrmtry share/doc/HTML/lv +@dirrmtry share/doc/HTML/lt +@dirrmtry share/doc/HTML/ku @dirrmtry share/doc/HTML/ko +@dirrmtry share/doc/HTML/km +@dirrmtry share/doc/HTML/kk @dirrmtry share/doc/HTML/ja @dirrmtry share/doc/HTML/it @dirrmtry share/doc/HTML/hu @dirrmtry share/doc/HTML/hr +@dirrmtry share/doc/HTML/hi @dirrmtry share/doc/HTML/he +@dirrmtry share/doc/HTML/gl +@dirrmtry share/doc/HTML/ga +@dirrmtry share/doc/HTML/fy @dirrmtry share/doc/HTML/fr @dirrmtry share/doc/HTML/fi @dirrmtry share/doc/HTML/eu @dirrmtry share/doc/HTML/et @dirrmtry share/doc/HTML/es +@dirrmtry share/doc/HTML/eo @dirrmtry share/doc/HTML/en_GB +@dirrmtry share/doc/HTML/en/kioslave @dirrmtry share/doc/HTML/en/kcontrol @dirrmtry share/doc/HTML/en +@dirrmtry share/doc/HTML/el @dirrmtry share/doc/HTML/de @dirrmtry share/doc/HTML/da +@dirrmtry share/doc/HTML/csb @dirrmtry share/doc/HTML/cs +@dirrmtry share/doc/HTML/ca +@dirrmtry share/doc/HTML/bg @dirrmtry share/doc/HTML @dirrmtry share/dbus-1/services @dirrmtry share/dbus-1/interfaces @dirrmtry share/dbus-1 @dirrmtry share/config.kcfg @dirrmtry share/config -@dirrmtry share/apps/zeroconf +@dirrmtry share/autostart +@dirrmtry share/apps/solid/actions +@dirrmtry share/apps/solid +@dirrmtry share/apps/remoteview @dirrmtry share/apps/profiles -@dirrmtry share/apps/kwin/pics -@dirrmtry share/apps/kwin/icewm-themes +@dirrmtry share/apps/plasma/services +@dirrmtry share/apps/plasma +@dirrmtry share/apps/nepomuk/ontologies +@dirrmtry share/apps/nepomuk @dirrmtry share/apps/kwin -@dirrmtry share/apps/kthememgr/Themes -@dirrmtry share/apps/kthememgr -@dirrmtry share/apps/konsole/profiles -@dirrmtry share/apps/konsole -@dirrmtry share/apps/konqueror/servicemenus -@dirrmtry share/apps/konqueror/profiles +@dirrmtry share/apps/kstyle/themes +@dirrmtry share/apps/kstyle @dirrmtry share/apps/konqueror @dirrmtry share/apps/konqsidebartng/virtual_folders/services -@dirrmtry share/apps/konqsidebartng/virtual_folders/remote/web -@dirrmtry share/apps/konqsidebartng/virtual_folders/remote/ftp -@dirrmtry share/apps/konqsidebartng/virtual_folders/remote @dirrmtry share/apps/konqsidebartng/virtual_folders -@dirrmtry share/apps/konqsidebartng/entries -@dirrmtry share/apps/konqsidebartng/dirtree -@dirrmtry share/apps/konqsidebartng/add @dirrmtry share/apps/konqsidebartng -@dirrmtry share/apps/kicker/wallpapers -@dirrmtry share/apps/kicker/tiles -@dirrmtry share/apps/kicker/pics -@dirrmtry share/apps/kicker/menuext -@dirrmtry share/apps/kicker/extensions -@dirrmtry share/apps/kicker/applets -@dirrmtry share/apps/kicker +@dirrmtry share/apps/khtml/kpartplugins +@dirrmtry share/apps/khtml @dirrmtry share/apps/khelpcenter/plugins @dirrmtry share/apps/khelpcenter -@dirrmtry share/apps/kdesktop/programs -@dirrmtry share/apps/kdesktop/pics -@dirrmtry share/apps/kdesktop/patterns -@dirrmtry share/apps/kdesktop/DesktopLinks -@dirrmtry share/apps/kdesktop -@dirrmtry share/apps/kate/scripts -@dirrmtry share/apps/kate +@dirrmtry share/apps/kdm/pics/users +@dirrmtry share/apps/kdm/pics +@dirrmtry share/apps/kdm +@dirrmtry share/apps/kcontrol/pics +@dirrmtry share/apps/kcontrol +@dirrmtry share/apps/kconf_update +@dirrmtry share/apps/kcm_componentchooser +@dirrmtry share/apps/kcharselect +@dirrmtry share/apps/katepart/syntax +@dirrmtry share/apps/katepart @dirrmtry share/apps/kabc/plugins @dirrmtry share/apps/kabc/formats @dirrmtry share/apps/kabc +@dirrmtry share/apps/desktoptheme/default/widgets +@dirrmtry share/apps/desktoptheme/default +@dirrmtry share/apps/desktoptheme +@dirrmtry share/apps/color-schemes +@dirrmtry share/apps/cmake/modules +@dirrmtry share/apps/cmake @dirrmtry share/apps -@dirrmtry share/applnk/Utilities/XUtilities -@dirrmtry share/applnk/Utilities/More -@dirrmtry share/applnk/Utilities -@dirrmtry share/applnk/Toys -@dirrmtry share/applnk/System/Terminal -@dirrmtry share/applnk/System/ScreenSavers -@dirrmtry share/applnk/System/More -@dirrmtry share/applnk/System -@dirrmtry share/applnk/Settingsmenu -@dirrmtry share/applnk/Settings/WebBrowsing -@dirrmtry share/applnk/Settings/System -@dirrmtry share/applnk/Settings/Sound -@dirrmtry share/applnk/Settings/Security -@dirrmtry share/applnk/Settings/PowerControl -@dirrmtry share/applnk/Settings/Personalization -@dirrmtry share/applnk/Settings/Peripherals -@dirrmtry share/applnk/Settings/Network/WebBrowsing -@dirrmtry share/applnk/Settings/Network -@dirrmtry share/applnk/Settings/LookNFeel/Windows -@dirrmtry share/applnk/Settings/LookNFeel/Themes -@dirrmtry share/applnk/Settings/LookNFeel -@dirrmtry share/applnk/Settings/Information -@dirrmtry share/applnk/Settings/Desktop -@dirrmtry share/applnk/Settings/Components -@dirrmtry share/applnk/Settings/Accessibility -@dirrmtry share/applnk/Settings -@dirrmtry share/applnk/Office -@dirrmtry share/applnk/Multimedia/More -@dirrmtry share/applnk/Multimedia -@dirrmtry share/applnk/Internet/Terminal -@dirrmtry share/applnk/Internet/More -@dirrmtry share/applnk/Internet -@dirrmtry share/applnk/Graphics/More -@dirrmtry share/applnk/Graphics -@dirrmtry share/applnk/Games/TacticStrategy -@dirrmtry share/applnk/Games/Roguelikes -@dirrmtry share/applnk/Games/Kidsgames -@dirrmtry share/applnk/Games/Card -@dirrmtry share/applnk/Games/Board -@dirrmtry share/applnk/Games/Arcade -@dirrmtry share/applnk/Games -@dirrmtry share/applnk/Edutainment -@dirrmtry share/applnk/Editors -@dirrmtry share/applnk/Development -@dirrmtry share/applnk/Applications -@dirrmtry share/applnk/.hidden -@dirrmtry share/applnk @dirrmtry share/applications/kde4 @dirrmtry share/applications @dirrmtry lib/strigi +@dirrmtry lib/kde4/plugins/styles +@dirrmtry lib/kde4/plugins/designer @dirrmtry lib/kde4/plugins @dirrmtry lib/kde4/libexec @dirrmtry lib/kde4 @@ -2227,3 +2189,6 @@ share/wallpapers/.keep_me %%MTREE%%@dirrm etc/pam.d %%MTREE%%@dirrm etc %%MTREE%%@dirrm bin +%%MTREE%%@cwd %%LOCALBASE%% +%%MTREE%%%%LDCONFIG_DIR%%/kdehier4 +%%MTREE%%@cwd %%KDE4_PREFIX%% diff --git a/misc/kdeutils4/Makefile b/misc/kdeutils4/Makefile index 4b1a79df695a..23a75146b16a 100644 --- a/misc/kdeutils4/Makefile +++ b/misc/kdeutils4/Makefile @@ -8,16 +8,15 @@ PORTNAME= kdeutils PORTVERSION= ${KDE4_VERSION} CATEGORIES= misc kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Utilities for the KDE4 integrated X11 Desktop LIB_DEPENDS= gmp.7:${PORTSDIR}/math/libgmp4 \ - netsnmp:${PORTSDIR}/net-mgmt/net-snmp \ - qimageblitz.4:${PORTSDIR}/x11/qimageblitz \ - zip.1:${PORTSDIR}/archivers/libzip + zip.1:${PORTSDIR}/archivers/libzip \ + qimageblitz.4:${PORTSDIR}/x11/qimageblitz RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg LATEST_LINK= ${PORTNAME}4 @@ -25,10 +24,12 @@ LATEST_LINK= ${PORTNAME}4 USE_BZIP2= yes USE_QT_VER= 4 KDE4_BUILDENV= yes -USE_KDE4= kdelibs pimlibs workspace kdeprefix kdehier automoc4 +USE_KDE4= kdelibs pimlibs kdeprefix kdehier automoc4 QT_COMPONENTS= network gui porting xml \ qmake_build moc_build rcc_build uic_build +MAN1= ark.1 + post-extract: ${MKDIR} ${WRKSRC} diff --git a/misc/kdeutils4/distinfo b/misc/kdeutils4/distinfo index b32341e6b180..5bf5f73fd46e 100644 --- a/misc/kdeutils4/distinfo +++ b/misc/kdeutils4/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdeutils-4.1.4.tar.bz2) = 542663eeae777978dafab2dcf9d422c2 -SHA256 (KDE/kdeutils-4.1.4.tar.bz2) = fc20381de8df78548a88361dc845624c66eeaa9415c883461ba24b094c81b7df -SIZE (KDE/kdeutils-4.1.4.tar.bz2) = 2285905 +MD5 (KDE/kdeutils-4.2.0.tar.bz2) = f0ca24c7d3e5bb0ab55bf6b26fc6224e +SHA256 (KDE/kdeutils-4.2.0.tar.bz2) = 1b811b5ea12641aa4003dcc97ea19570418e83a909866f78c08a358a1e1a1cfd +SIZE (KDE/kdeutils-4.2.0.tar.bz2) = 2234345 diff --git a/misc/kdeutils4/files/patch-ark_plugins_libzipplugin-zipplugin.cpp b/misc/kdeutils4/files/patch-ark_plugins_libzipplugin-zipplugin.cpp index c5e3f75034b6..eb03ee5e2287 100644 --- a/misc/kdeutils4/files/patch-ark_plugins_libzipplugin-zipplugin.cpp +++ b/misc/kdeutils4/files/patch-ark_plugins_libzipplugin-zipplugin.cpp @@ -1,13 +1,13 @@ ---- ../ark/plugins/libzipplugin/zipplugin.cpp.orig 2008-08-30 13:07:45.000000000 +0400 -+++ ../ark/plugins/libzipplugin/zipplugin.cpp 2008-08-30 13:12:59.000000000 +0400 -@@ -30,8 +30,8 @@ - //usually compiled with off_t to 32bit. in the long run libzip should be - //compiled according to bugs.kde.org bug #167018 - //but for now this will probably do +--- ../ark/plugins/libzipplugin/zipplugin.cpp.orig 2008-12-10 16:13:03.000000000 +0000 ++++ ../ark/plugins/libzipplugin/zipplugin.cpp 2008-12-29 22:16:13.000000000 +0000 +@@ -28,8 +28,8 @@ + + #ifdef LIBZIP_COMPILED_WITH_32BIT_OFF_T + -#define __off_t_defined -typedef quint32 off_t; +// #define __off_t_defined +// typedef quint32 off_t; - #include "kerfuffle/archiveinterface.h" - #include "kerfuffle/archivefactory.h" + #endif /* LIBZIP_COMPILED_WITH_32BIT_OFF_T */ + diff --git a/misc/kdeutils4/pkg-plist b/misc/kdeutils4/pkg-plist index 1f32022c99f9..03f698c23b80 100644 --- a/misc/kdeutils4/pkg-plist +++ b/misc/kdeutils4/pkg-plist @@ -13,8 +13,9 @@ bin/superkaramba bin/sweeper lib/kde4/kcm_kdf.so lib/kde4/kcm_kwallet.so -lib/kde4/kerfuffle_bk.so +lib/kde4/kerfuffle_7zip.so lib/kde4/kerfuffle_libarchive.so +lib/kde4/kerfuffle_libgz.so lib/kde4/kerfuffle_libzip.so lib/kde4/kerfuffle_rar.so lib/kde4/libarkpart.so @@ -25,16 +26,16 @@ lib/kde4/plasma_scriptengine_superkaramba.so lib/libkdeinit4_kcalc.so lib/libkerfuffle.so lib/libkerfuffle.so.5 -lib/libkerfuffle.so.5.0.0 +lib/libkerfuffle.so.5.0.1 lib/liboktetacore.so lib/liboktetacore.so.5 -lib/liboktetacore.so.5.0.0 +lib/liboktetacore.so.5.0.1 lib/liboktetagui.so lib/liboktetagui.so.5 -lib/liboktetagui.so.5.0.0 +lib/liboktetagui.so.5.0.1 lib/libsuperkaramba.so lib/libsuperkaramba.so.5 -lib/libsuperkaramba.so.5.0.0 +lib/libsuperkaramba.so.5.0.1 share/applications/kde4/KCharSelect.desktop share/applications/kde4/KFloppy.desktop share/applications/kde4/ark.desktop @@ -145,8 +146,12 @@ share/doc/HTML/en/kgpg/keyserver.png share/doc/HTML/en/kgpg/kicker.png share/doc/HTML/en/kgpg/options.png share/doc/HTML/en/ktimer/common +share/doc/HTML/en/ktimer/first.png share/doc/HTML/en/ktimer/index.cache.bz2 share/doc/HTML/en/ktimer/index.docbook +share/doc/HTML/en/ktimer/main.png +share/doc/HTML/en/ktimer/running.png +share/doc/HTML/en/ktimer/two.at.once.png share/doc/HTML/en/kwallet/common share/doc/HTML/en/kwallet/edit1.png share/doc/HTML/en/kwallet/edit2.png @@ -176,7 +181,6 @@ share/icons/hicolor/128x128/apps/kwalletmanager.png share/icons/hicolor/128x128/apps/kwalletmanager2.png share/icons/hicolor/128x128/apps/kwikdisk.png share/icons/hicolor/128x128/apps/superkaramba.png -share/icons/hicolor/16x16/apps/kcalc.png share/icons/hicolor/16x16/apps/kdf.png share/icons/hicolor/16x16/apps/kfloppy.png share/icons/hicolor/16x16/apps/kgpg.png @@ -186,14 +190,12 @@ share/icons/hicolor/16x16/apps/kwalletmanager2.png share/icons/hicolor/16x16/apps/kwikdisk.png share/icons/hicolor/16x16/apps/okteta.png share/icons/hicolor/16x16/apps/superkaramba.png -share/icons/hicolor/22x22/apps/kcalc.png share/icons/hicolor/22x22/apps/kdf.png share/icons/hicolor/22x22/apps/kfloppy.png share/icons/hicolor/22x22/apps/kgpg.png share/icons/hicolor/22x22/apps/kwalletmanager.png share/icons/hicolor/22x22/apps/kwikdisk.png share/icons/hicolor/22x22/apps/superkaramba.png -share/icons/hicolor/32x32/apps/kcalc.png share/icons/hicolor/32x32/apps/kdf.png share/icons/hicolor/32x32/apps/kfloppy.png share/icons/hicolor/32x32/apps/kgpg.png @@ -203,7 +205,6 @@ share/icons/hicolor/32x32/apps/kwalletmanager2.png share/icons/hicolor/32x32/apps/kwikdisk.png share/icons/hicolor/32x32/apps/okteta.png share/icons/hicolor/32x32/apps/superkaramba.png -share/icons/hicolor/48x48/apps/kcalc.png share/icons/hicolor/48x48/apps/kdf.png share/icons/hicolor/48x48/apps/kfloppy.png share/icons/hicolor/48x48/apps/kgpg.png @@ -213,26 +214,28 @@ share/icons/hicolor/48x48/apps/kwalletmanager2.png share/icons/hicolor/48x48/apps/kwikdisk.png share/icons/hicolor/48x48/apps/okteta.png share/icons/hicolor/48x48/apps/superkaramba.png -share/icons/hicolor/64x64/apps/kcalc.png share/icons/hicolor/64x64/apps/kdf.png share/icons/hicolor/64x64/apps/kfloppy.png share/icons/hicolor/64x64/apps/kwalletmanager.png share/icons/hicolor/64x64/apps/kwalletmanager2.png share/icons/hicolor/64x64/apps/kwikdisk.png share/icons/hicolor/64x64/apps/superkaramba.png -share/icons/hicolor/scalable/apps/kcalc.svgz share/icons/hicolor/scalable/apps/superkaramba.svgz share/icons/oxygen/16x16/apps/kcmdf.png share/icons/oxygen/22x22/apps/kcmdf.png share/icons/oxygen/32x32/apps/kcmdf.png +share/kde4/services/ServiceMenus/ark_addtoservicemenu.desktop +share/kde4/services/ServiceMenus/ark_servicemenu.desktop share/kde4/services/ServiceMenus/encryptfile.desktop share/kde4/services/ServiceMenus/encryptfolder.desktop share/kde4/services/ServiceMenus/floppy_format.desktop +share/kde4/services/ServiceMenus/viewdecrypted.desktop share/kde4/services/ark_part.desktop share/kde4/services/kbytearrayedit.desktop share/kde4/services/kcmdf.desktop -share/kde4/services/kerfuffle_bk.desktop +share/kde4/services/kerfuffle_7zip.desktop share/kde4/services/kerfuffle_libarchive.desktop +share/kde4/services/kerfuffle_libgz.desktop share/kde4/services/kerfuffle_libzip.desktop share/kde4/services/kerfuffle_rar.desktop share/kde4/services/kwalletconfig.desktop @@ -241,33 +244,6 @@ share/kde4/services/oktetapart.desktop share/kde4/services/plasma-package-superkaramba.desktop share/kde4/services/plasma-scriptengine-superkaramba.desktop share/kde4/servicetypes/kerfufflePlugin.desktop -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services/ServiceMenus -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/oxygen/32x32/apps -@dirrmtry share/icons/oxygen/32x32 -@dirrmtry share/icons/oxygen/22x22/apps -@dirrmtry share/icons/oxygen/22x22 -@dirrmtry share/icons/oxygen/16x16/apps -@dirrmtry share/icons/oxygen/16x16 -@dirrmtry share/icons/oxygen -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons @dirrm share/doc/HTML/en/superkaramba @dirrm share/doc/HTML/en/okteta @dirrm share/doc/HTML/en/kwallet @@ -279,13 +255,6 @@ share/kde4/servicetypes/kerfufflePlugin.desktop @dirrm share/doc/HTML/en/kcharselect @dirrm share/doc/HTML/en/kcalc @dirrm share/doc/HTML/en/ark -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 -@dirrmtry share/config.kcfg -@dirrmtry share/config -@dirrmtry share/autostart @dirrm share/apps/sweeper @dirrm share/apps/superkaramba @dirrm share/apps/oktetapart @@ -316,11 +285,5 @@ share/kde4/servicetypes/kerfufflePlugin.desktop @dirrm share/apps/kgpg @dirrm share/apps/kdf/pics @dirrm share/apps/kdf -@dirrmtry share/apps/kconf_update -@dirrmtry share/apps/kcharselect @dirrm share/apps/kcalc @dirrm share/apps/ark -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/kde4 diff --git a/misc/konq-plugins-kde4/Makefile b/misc/konq-plugins-kde4/Makefile index 95bdd40c6f5f..cae6910a4eae 100644 --- a/misc/konq-plugins-kde4/Makefile +++ b/misc/konq-plugins-kde4/Makefile @@ -21,6 +21,6 @@ USE_QT_VER= 4 QT_COMPONENTS= corelib qmake_build moc_build rcc_build uic_build USE_CMAKE= yes -EXTRA_VER= 4.1.2 +EXTRA_VER= 4.2.0 .include <bsd.port.mk> diff --git a/misc/konq-plugins-kde4/distinfo b/misc/konq-plugins-kde4/distinfo index 23d4b7dcfafd..1907845b5d8c 100644 --- a/misc/konq-plugins-kde4/distinfo +++ b/misc/konq-plugins-kde4/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/extragear/konq-plugins-4.1.2.tar.bz2) = 82613db2e8c86e6e62b3bbddc1d5f933 -SHA256 (KDE/extragear/konq-plugins-4.1.2.tar.bz2) = 5ac38300fd071ccda0d3158de495788d565336d1bcb5637e134b39fd2897e864 -SIZE (KDE/extragear/konq-plugins-4.1.2.tar.bz2) = 818502 +MD5 (KDE/extragear/konq-plugins-4.2.0.tar.bz2) = fb288a6726e0aca208470c3aa4b7a603 +SHA256 (KDE/extragear/konq-plugins-4.2.0.tar.bz2) = 594821cf252e86751fb918dd8759d95ff5ade54789f111ec71e020c58a297f56 +SIZE (KDE/extragear/konq-plugins-4.2.0.tar.bz2) = 992458 diff --git a/misc/konq-plugins-kde4/pkg-plist b/misc/konq-plugins-kde4/pkg-plist index f1aef97e95f5..5f3bd7bb2446 100644 --- a/misc/konq-plugins-kde4/pkg-plist +++ b/misc/konq-plugins-kde4/pkg-plist @@ -1,20 +1,20 @@ bin/fsview +lib/kde4/adblock.so lib/kde4/akregatorkonqfeedicon.so lib/kde4/autorefresh.so -lib/kde4/libbabelfishplugin.so -lib/kde4/libcrashesplugin.so -lib/kde4/libdirfilterplugin.so -lib/kde4/libdomtreeviewerplugin.so -lib/kde4/libfsviewpart.so -lib/kde4/libkhtmlsettingsplugin.so -lib/kde4/libkimgallery.so -lib/kde4/librellinksplugin.so -lib/kde4/libuachangerplugin.so -lib/kde4/libwebarchiverplugin.so -lib/kde4/mfkonqmficon.so +lib/kde4/babelfishplugin.so +lib/kde4/crashesplugin.so +lib/kde4/dirfilterplugin.so +lib/kde4/domtreeviewerplugin.so +lib/kde4/fsviewpart.so +lib/kde4/khtmlsettingsplugin.so +lib/kde4/kimgallery.so lib/kde4/minitoolsplugin.so +lib/kde4/rellinksplugin.so lib/kde4/searchbarplugin.so +lib/kde4/uachangerplugin.so lib/kde4/validatorsplugin.so +lib/kde4/webarchiverplugin.so lib/kde4/webarchivethumbnail.so share/apps/akregator/pics/feed.png share/apps/dolphinpart/kpartplugins/dirfilterplugin.desktop @@ -23,8 +23,6 @@ share/apps/dolphinpart/kpartplugins/kimgalleryplugin.desktop share/apps/dolphinpart/kpartplugins/kimgalleryplugin.rc share/apps/domtreeviewer/domtreeviewerui.rc share/apps/fsview/fsview_part.rc -share/apps/imagerotation/exif.py -share/apps/imagerotation/orient.py share/apps/khtml/kpartplugins/akregator_konqfeedicon.desktop share/apps/khtml/kpartplugins/akregator_konqfeedicon.rc share/apps/khtml/kpartplugins/autorefresh.desktop @@ -33,10 +31,10 @@ share/apps/khtml/kpartplugins/crashesplugin.desktop share/apps/khtml/kpartplugins/crashesplugin.rc share/apps/khtml/kpartplugins/khtmlsettingsplugin.desktop share/apps/khtml/kpartplugins/khtmlsettingsplugin.rc -share/apps/khtml/kpartplugins/mf_konqmficon.desktop -share/apps/khtml/kpartplugins/mf_konqmficon.rc share/apps/khtml/kpartplugins/minitoolsplugin.desktop share/apps/khtml/kpartplugins/minitoolsplugin.rc +share/apps/khtml/kpartplugins/plugin_adblock.desktop +share/apps/khtml/kpartplugins/plugin_adblock.rc share/apps/khtml/kpartplugins/plugin_babelfish.desktop share/apps/khtml/kpartplugins/plugin_babelfish.rc share/apps/khtml/kpartplugins/plugin_domtreeviewer.desktop @@ -57,7 +55,6 @@ share/apps/konqueror/icons/oxygen/64x64/actions/google.png share/apps/konqueror/icons/oxygen/scalable/actions/google.svgz share/apps/konqueror/kpartplugins/searchbar.desktop share/apps/konqueror/kpartplugins/searchbar.rc -share/apps/microformat/pics/microformat.png share/apps/webkitpart/kpartplugins/autorefresh.desktop share/apps/webkitpart/kpartplugins/autorefresh.rc share/apps/webkitpart/kpartplugins/crashesplugin.desktop @@ -66,6 +63,7 @@ share/apps/webkitpart/kpartplugins/plugin_validators.desktop share/apps/webkitpart/kpartplugins/plugin_validators.rc share/apps/webkitpart/kpartplugins/uachangerplugin.desktop share/apps/webkitpart/kpartplugins/uachangerplugin.rc +share/config.kcfg/validators.kcfg share/config/translaterc share/doc/HTML/ca/konq-plugins/babel/common share/doc/HTML/ca/konq-plugins/babel/index.cache.bz2 @@ -139,10 +137,12 @@ share/doc/HTML/de/konq-plugins/validators/index.docbook share/doc/HTML/de/konq-plugins/webarchiver/common share/doc/HTML/de/konq-plugins/webarchiver/index.cache.bz2 share/doc/HTML/de/konq-plugins/webarchiver/index.docbook +share/doc/HTML/en/doc/common +share/doc/HTML/en/doc/index.cache.bz2 +share/doc/HTML/en/doc/index.docbook share/doc/HTML/en/konq-plugins/babel/common share/doc/HTML/en/konq-plugins/babel/index.cache.bz2 share/doc/HTML/en/konq-plugins/babel/index.docbook -share/doc/HTML/en/konq-plugins/common share/doc/HTML/en/konq-plugins/crashes/common share/doc/HTML/en/konq-plugins/crashes/index.cache.bz2 share/doc/HTML/en/konq-plugins/crashes/index.docbook @@ -161,8 +161,6 @@ share/doc/HTML/en/konq-plugins/imgallery/index.cache.bz2 share/doc/HTML/en/konq-plugins/imgallery/index.docbook share/doc/HTML/en/konq-plugins/imgallery/look.png share/doc/HTML/en/konq-plugins/imgallery/thumbnails.png -share/doc/HTML/en/konq-plugins/index.cache.bz2 -share/doc/HTML/en/konq-plugins/index.docbook share/doc/HTML/en/konq-plugins/khtmlsettings/common share/doc/HTML/en/konq-plugins/khtmlsettings/index.cache.bz2 share/doc/HTML/en/konq-plugins/khtmlsettings/index.docbook @@ -247,6 +245,42 @@ share/doc/HTML/fr/konq-plugins/validators/index.docbook share/doc/HTML/fr/konq-plugins/webarchiver/common share/doc/HTML/fr/konq-plugins/webarchiver/index.cache.bz2 share/doc/HTML/fr/konq-plugins/webarchiver/index.docbook +share/doc/HTML/it/konq-plugins/babel/common +share/doc/HTML/it/konq-plugins/babel/index.cache.bz2 +share/doc/HTML/it/konq-plugins/babel/index.docbook +share/doc/HTML/it/konq-plugins/common +share/doc/HTML/it/konq-plugins/crashes/common +share/doc/HTML/it/konq-plugins/crashes/index.cache.bz2 +share/doc/HTML/it/konq-plugins/crashes/index.docbook +share/doc/HTML/it/konq-plugins/dirfilter/common +share/doc/HTML/it/konq-plugins/dirfilter/index.cache.bz2 +share/doc/HTML/it/konq-plugins/dirfilter/index.docbook +share/doc/HTML/it/konq-plugins/domtreeviewer/common +share/doc/HTML/it/konq-plugins/domtreeviewer/index.cache.bz2 +share/doc/HTML/it/konq-plugins/domtreeviewer/index.docbook +share/doc/HTML/it/konq-plugins/fsview/common +share/doc/HTML/it/konq-plugins/fsview/index.cache.bz2 +share/doc/HTML/it/konq-plugins/fsview/index.docbook +share/doc/HTML/it/konq-plugins/imgallery/common +share/doc/HTML/it/konq-plugins/imgallery/index.cache.bz2 +share/doc/HTML/it/konq-plugins/imgallery/index.docbook +share/doc/HTML/it/konq-plugins/index.cache.bz2 +share/doc/HTML/it/konq-plugins/index.docbook +share/doc/HTML/it/konq-plugins/khtmlsettings/common +share/doc/HTML/it/konq-plugins/khtmlsettings/index.cache.bz2 +share/doc/HTML/it/konq-plugins/khtmlsettings/index.docbook +share/doc/HTML/it/konq-plugins/mediaplayer/common +share/doc/HTML/it/konq-plugins/mediaplayer/index.cache.bz2 +share/doc/HTML/it/konq-plugins/mediaplayer/index.docbook +share/doc/HTML/it/konq-plugins/uachanger/common +share/doc/HTML/it/konq-plugins/uachanger/index.cache.bz2 +share/doc/HTML/it/konq-plugins/uachanger/index.docbook +share/doc/HTML/it/konq-plugins/validators/common +share/doc/HTML/it/konq-plugins/validators/index.cache.bz2 +share/doc/HTML/it/konq-plugins/validators/index.docbook +share/doc/HTML/it/konq-plugins/webarchiver/common +share/doc/HTML/it/konq-plugins/webarchiver/index.cache.bz2 +share/doc/HTML/it/konq-plugins/webarchiver/index.docbook share/doc/HTML/nl/konq-plugins/babel/common share/doc/HTML/nl/konq-plugins/babel/index.cache.bz2 share/doc/HTML/nl/konq-plugins/babel/index.docbook @@ -414,7 +448,6 @@ share/icons/oxygen/64x64/actions/validators.png share/icons/oxygen/scalable/actions/htmlvalidator.svgz share/icons/oxygen/scalable/actions/validators.svgz share/kde4/services/ServiceMenus/imageconverter.desktop -share/kde4/services/ServiceMenus/jpegorient.desktop share/kde4/services/fsview_part.desktop share/kde4/services/webarchivethumbnail.desktop share/locale/af/LC_MESSAGES/babelfish.mo @@ -427,6 +460,7 @@ share/locale/af/LC_MESSAGES/konqsidebar_mediaplayer.mo share/locale/af/LC_MESSAGES/uachangerplugin.mo share/locale/af/LC_MESSAGES/validatorsplugin.mo share/locale/af/LC_MESSAGES/webarchiver.mo +share/locale/ar/LC_MESSAGES/adblock.mo share/locale/ar/LC_MESSAGES/akregator_konqplugin.mo share/locale/ar/LC_MESSAGES/autorefresh.mo share/locale/ar/LC_MESSAGES/babelfish.mo @@ -449,7 +483,6 @@ share/locale/be/LC_MESSAGES/akregator_konqplugin.mo share/locale/be/LC_MESSAGES/autorefresh.mo share/locale/be/LC_MESSAGES/babelfish.mo share/locale/be/LC_MESSAGES/crashesplugin.mo -share/locale/be/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/be/LC_MESSAGES/dirfilterplugin.mo share/locale/be/LC_MESSAGES/domtreeviewer.mo share/locale/be/LC_MESSAGES/fsview.mo @@ -506,7 +539,6 @@ share/locale/ca/LC_MESSAGES/akregator_konqplugin.mo share/locale/ca/LC_MESSAGES/autorefresh.mo share/locale/ca/LC_MESSAGES/babelfish.mo share/locale/ca/LC_MESSAGES/crashesplugin.mo -share/locale/ca/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/ca/LC_MESSAGES/dirfilterplugin.mo share/locale/ca/LC_MESSAGES/domtreeviewer.mo share/locale/ca/LC_MESSAGES/fsview.mo @@ -521,6 +553,7 @@ share/locale/ca/LC_MESSAGES/searchbarplugin.mo share/locale/ca/LC_MESSAGES/uachangerplugin.mo share/locale/ca/LC_MESSAGES/validatorsplugin.mo share/locale/ca/LC_MESSAGES/webarchiver.mo +share/locale/cs/LC_MESSAGES/adblock.mo share/locale/cs/LC_MESSAGES/akregator_konqplugin.mo share/locale/cs/LC_MESSAGES/autorefresh.mo share/locale/cs/LC_MESSAGES/babelfish.mo @@ -558,7 +591,6 @@ share/locale/da/LC_MESSAGES/akregator_konqplugin.mo share/locale/da/LC_MESSAGES/autorefresh.mo share/locale/da/LC_MESSAGES/babelfish.mo share/locale/da/LC_MESSAGES/crashesplugin.mo -share/locale/da/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/da/LC_MESSAGES/dirfilterplugin.mo share/locale/da/LC_MESSAGES/domtreeviewer.mo share/locale/da/LC_MESSAGES/fsview.mo @@ -573,11 +605,11 @@ share/locale/da/LC_MESSAGES/searchbarplugin.mo share/locale/da/LC_MESSAGES/uachangerplugin.mo share/locale/da/LC_MESSAGES/validatorsplugin.mo share/locale/da/LC_MESSAGES/webarchiver.mo +share/locale/de/LC_MESSAGES/adblock.mo share/locale/de/LC_MESSAGES/akregator_konqplugin.mo share/locale/de/LC_MESSAGES/autorefresh.mo share/locale/de/LC_MESSAGES/babelfish.mo share/locale/de/LC_MESSAGES/crashesplugin.mo -share/locale/de/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/de/LC_MESSAGES/dirfilterplugin.mo share/locale/de/LC_MESSAGES/domtreeviewer.mo share/locale/de/LC_MESSAGES/fsview.mo @@ -592,11 +624,11 @@ share/locale/de/LC_MESSAGES/searchbarplugin.mo share/locale/de/LC_MESSAGES/uachangerplugin.mo share/locale/de/LC_MESSAGES/validatorsplugin.mo share/locale/de/LC_MESSAGES/webarchiver.mo +share/locale/el/LC_MESSAGES/adblock.mo share/locale/el/LC_MESSAGES/akregator_konqplugin.mo share/locale/el/LC_MESSAGES/autorefresh.mo share/locale/el/LC_MESSAGES/babelfish.mo share/locale/el/LC_MESSAGES/crashesplugin.mo -share/locale/el/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/el/LC_MESSAGES/dirfilterplugin.mo share/locale/el/LC_MESSAGES/domtreeviewer.mo share/locale/el/LC_MESSAGES/fsview.mo @@ -637,11 +669,11 @@ share/locale/eo/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/eo/LC_MESSAGES/uachangerplugin.mo share/locale/eo/LC_MESSAGES/validatorsplugin.mo share/locale/eo/LC_MESSAGES/webarchiver.mo +share/locale/es/LC_MESSAGES/adblock.mo share/locale/es/LC_MESSAGES/akregator_konqplugin.mo share/locale/es/LC_MESSAGES/autorefresh.mo share/locale/es/LC_MESSAGES/babelfish.mo share/locale/es/LC_MESSAGES/crashesplugin.mo -share/locale/es/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/es/LC_MESSAGES/dirfilterplugin.mo share/locale/es/LC_MESSAGES/domtreeviewer.mo share/locale/es/LC_MESSAGES/fsview.mo @@ -660,7 +692,6 @@ share/locale/et/LC_MESSAGES/akregator_konqplugin.mo share/locale/et/LC_MESSAGES/autorefresh.mo share/locale/et/LC_MESSAGES/babelfish.mo share/locale/et/LC_MESSAGES/crashesplugin.mo -share/locale/et/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/et/LC_MESSAGES/dirfilterplugin.mo share/locale/et/LC_MESSAGES/domtreeviewer.mo share/locale/et/LC_MESSAGES/fsview.mo @@ -675,6 +706,7 @@ share/locale/et/LC_MESSAGES/searchbarplugin.mo share/locale/et/LC_MESSAGES/uachangerplugin.mo share/locale/et/LC_MESSAGES/validatorsplugin.mo share/locale/et/LC_MESSAGES/webarchiver.mo +share/locale/eu/LC_MESSAGES/adblock.mo share/locale/eu/LC_MESSAGES/akregator_konqplugin.mo share/locale/eu/LC_MESSAGES/autorefresh.mo share/locale/eu/LC_MESSAGES/babelfish.mo @@ -711,6 +743,7 @@ share/locale/fa/LC_MESSAGES/searchbarplugin.mo share/locale/fa/LC_MESSAGES/uachangerplugin.mo share/locale/fa/LC_MESSAGES/validatorsplugin.mo share/locale/fa/LC_MESSAGES/webarchiver.mo +share/locale/fi/LC_MESSAGES/adblock.mo share/locale/fi/LC_MESSAGES/akregator_konqplugin.mo share/locale/fi/LC_MESSAGES/autorefresh.mo share/locale/fi/LC_MESSAGES/babelfish.mo @@ -733,7 +766,6 @@ share/locale/fr/LC_MESSAGES/akregator_konqplugin.mo share/locale/fr/LC_MESSAGES/autorefresh.mo share/locale/fr/LC_MESSAGES/babelfish.mo share/locale/fr/LC_MESSAGES/crashesplugin.mo -share/locale/fr/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/fr/LC_MESSAGES/dirfilterplugin.mo share/locale/fr/LC_MESSAGES/domtreeviewer.mo share/locale/fr/LC_MESSAGES/fsview.mo @@ -766,11 +798,11 @@ share/locale/fy/LC_MESSAGES/searchbarplugin.mo share/locale/fy/LC_MESSAGES/uachangerplugin.mo share/locale/fy/LC_MESSAGES/validatorsplugin.mo share/locale/fy/LC_MESSAGES/webarchiver.mo +share/locale/ga/LC_MESSAGES/adblock.mo share/locale/ga/LC_MESSAGES/akregator_konqplugin.mo share/locale/ga/LC_MESSAGES/autorefresh.mo share/locale/ga/LC_MESSAGES/babelfish.mo share/locale/ga/LC_MESSAGES/crashesplugin.mo -share/locale/ga/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/ga/LC_MESSAGES/dirfilterplugin.mo share/locale/ga/LC_MESSAGES/domtreeviewer.mo share/locale/ga/LC_MESSAGES/fsview.mo @@ -785,11 +817,11 @@ share/locale/ga/LC_MESSAGES/searchbarplugin.mo share/locale/ga/LC_MESSAGES/uachangerplugin.mo share/locale/ga/LC_MESSAGES/validatorsplugin.mo share/locale/ga/LC_MESSAGES/webarchiver.mo +share/locale/gl/LC_MESSAGES/adblock.mo share/locale/gl/LC_MESSAGES/akregator_konqplugin.mo share/locale/gl/LC_MESSAGES/autorefresh.mo share/locale/gl/LC_MESSAGES/babelfish.mo share/locale/gl/LC_MESSAGES/crashesplugin.mo -share/locale/gl/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/gl/LC_MESSAGES/dirfilterplugin.mo share/locale/gl/LC_MESSAGES/domtreeviewer.mo share/locale/gl/LC_MESSAGES/fsview.mo @@ -824,7 +856,6 @@ share/locale/hi/LC_MESSAGES/akregator_konqplugin.mo share/locale/hi/LC_MESSAGES/autorefresh.mo share/locale/hi/LC_MESSAGES/babelfish.mo share/locale/hi/LC_MESSAGES/crashesplugin.mo -share/locale/hi/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/hi/LC_MESSAGES/dirfilterplugin.mo share/locale/hi/LC_MESSAGES/domtreeviewer.mo share/locale/hi/LC_MESSAGES/fsview.mo @@ -857,6 +888,7 @@ share/locale/hr/LC_MESSAGES/searchbarplugin.mo share/locale/hr/LC_MESSAGES/uachangerplugin.mo share/locale/hr/LC_MESSAGES/validatorsplugin.mo share/locale/hr/LC_MESSAGES/webarchiver.mo +share/locale/hsb/LC_MESSAGES/adblock.mo share/locale/hu/LC_MESSAGES/akregator_konqplugin.mo share/locale/hu/LC_MESSAGES/autorefresh.mo share/locale/hu/LC_MESSAGES/babelfish.mo @@ -897,7 +929,6 @@ share/locale/it/LC_MESSAGES/akregator_konqplugin.mo share/locale/it/LC_MESSAGES/autorefresh.mo share/locale/it/LC_MESSAGES/babelfish.mo share/locale/it/LC_MESSAGES/crashesplugin.mo -share/locale/it/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/it/LC_MESSAGES/dirfilterplugin.mo share/locale/it/LC_MESSAGES/domtreeviewer.mo share/locale/it/LC_MESSAGES/fsview.mo @@ -912,11 +943,11 @@ share/locale/it/LC_MESSAGES/searchbarplugin.mo share/locale/it/LC_MESSAGES/uachangerplugin.mo share/locale/it/LC_MESSAGES/validatorsplugin.mo share/locale/it/LC_MESSAGES/webarchiver.mo +share/locale/ja/LC_MESSAGES/adblock.mo share/locale/ja/LC_MESSAGES/akregator_konqplugin.mo share/locale/ja/LC_MESSAGES/autorefresh.mo share/locale/ja/LC_MESSAGES/babelfish.mo share/locale/ja/LC_MESSAGES/crashesplugin.mo -share/locale/ja/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/ja/LC_MESSAGES/dirfilterplugin.mo share/locale/ja/LC_MESSAGES/domtreeviewer.mo share/locale/ja/LC_MESSAGES/fsview.mo @@ -949,11 +980,11 @@ share/locale/kk/LC_MESSAGES/searchbarplugin.mo share/locale/kk/LC_MESSAGES/uachangerplugin.mo share/locale/kk/LC_MESSAGES/validatorsplugin.mo share/locale/kk/LC_MESSAGES/webarchiver.mo +share/locale/km/LC_MESSAGES/adblock.mo share/locale/km/LC_MESSAGES/akregator_konqplugin.mo share/locale/km/LC_MESSAGES/autorefresh.mo share/locale/km/LC_MESSAGES/babelfish.mo share/locale/km/LC_MESSAGES/crashesplugin.mo -share/locale/km/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/km/LC_MESSAGES/dirfilterplugin.mo share/locale/km/LC_MESSAGES/domtreeviewer.mo share/locale/km/LC_MESSAGES/fsview.mo @@ -972,7 +1003,6 @@ share/locale/ko/LC_MESSAGES/akregator_konqplugin.mo share/locale/ko/LC_MESSAGES/autorefresh.mo share/locale/ko/LC_MESSAGES/babelfish.mo share/locale/ko/LC_MESSAGES/crashesplugin.mo -share/locale/ko/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/ko/LC_MESSAGES/dirfilterplugin.mo share/locale/ko/LC_MESSAGES/domtreeviewer.mo share/locale/ko/LC_MESSAGES/fsview.mo @@ -987,11 +1017,29 @@ share/locale/ko/LC_MESSAGES/searchbarplugin.mo share/locale/ko/LC_MESSAGES/uachangerplugin.mo share/locale/ko/LC_MESSAGES/validatorsplugin.mo share/locale/ko/LC_MESSAGES/webarchiver.mo +share/locale/ku/LC_MESSAGES/adblock.mo +share/locale/ku/LC_MESSAGES/akregator_konqplugin.mo +share/locale/ku/LC_MESSAGES/autorefresh.mo +share/locale/ku/LC_MESSAGES/babelfish.mo +share/locale/ku/LC_MESSAGES/crashesplugin.mo +share/locale/ku/LC_MESSAGES/dirfilterplugin.mo +share/locale/ku/LC_MESSAGES/domtreeviewer.mo +share/locale/ku/LC_MESSAGES/fsview.mo +share/locale/ku/LC_MESSAGES/imgalleryplugin.mo +share/locale/ku/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/ku/LC_MESSAGES/konqsidebar_mediaplayer.mo +share/locale/ku/LC_MESSAGES/konqsidebar_metabar.mo +share/locale/ku/LC_MESSAGES/mf_konqplugin.mo +share/locale/ku/LC_MESSAGES/minitoolsplugin.mo +share/locale/ku/LC_MESSAGES/searchbarplugin.mo +share/locale/ku/LC_MESSAGES/uachangerplugin.mo +share/locale/ku/LC_MESSAGES/validatorsplugin.mo +share/locale/ku/LC_MESSAGES/webarchiver.mo +share/locale/lt/LC_MESSAGES/adblock.mo share/locale/lt/LC_MESSAGES/akregator_konqplugin.mo share/locale/lt/LC_MESSAGES/autorefresh.mo share/locale/lt/LC_MESSAGES/babelfish.mo share/locale/lt/LC_MESSAGES/crashesplugin.mo -share/locale/lt/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/lt/LC_MESSAGES/dirfilterplugin.mo share/locale/lt/LC_MESSAGES/domtreeviewer.mo share/locale/lt/LC_MESSAGES/fsview.mo @@ -1006,11 +1054,11 @@ share/locale/lt/LC_MESSAGES/searchbarplugin.mo share/locale/lt/LC_MESSAGES/uachangerplugin.mo share/locale/lt/LC_MESSAGES/validatorsplugin.mo share/locale/lt/LC_MESSAGES/webarchiver.mo +share/locale/lv/LC_MESSAGES/adblock.mo share/locale/lv/LC_MESSAGES/akregator_konqplugin.mo share/locale/lv/LC_MESSAGES/autorefresh.mo share/locale/lv/LC_MESSAGES/babelfish.mo share/locale/lv/LC_MESSAGES/crashesplugin.mo -share/locale/lv/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/lv/LC_MESSAGES/dirfilterplugin.mo share/locale/lv/LC_MESSAGES/domtreeviewer.mo share/locale/lv/LC_MESSAGES/fsview.mo @@ -1065,11 +1113,11 @@ share/locale/ms/LC_MESSAGES/searchbarplugin.mo share/locale/ms/LC_MESSAGES/uachangerplugin.mo share/locale/ms/LC_MESSAGES/validatorsplugin.mo share/locale/ms/LC_MESSAGES/webarchiver.mo +share/locale/nb/LC_MESSAGES/adblock.mo share/locale/nb/LC_MESSAGES/akregator_konqplugin.mo share/locale/nb/LC_MESSAGES/autorefresh.mo share/locale/nb/LC_MESSAGES/babelfish.mo share/locale/nb/LC_MESSAGES/crashesplugin.mo -share/locale/nb/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/nb/LC_MESSAGES/dirfilterplugin.mo share/locale/nb/LC_MESSAGES/domtreeviewer.mo share/locale/nb/LC_MESSAGES/fsview.mo @@ -1084,11 +1132,11 @@ share/locale/nb/LC_MESSAGES/searchbarplugin.mo share/locale/nb/LC_MESSAGES/uachangerplugin.mo share/locale/nb/LC_MESSAGES/validatorsplugin.mo share/locale/nb/LC_MESSAGES/webarchiver.mo +share/locale/nds/LC_MESSAGES/adblock.mo share/locale/nds/LC_MESSAGES/akregator_konqplugin.mo share/locale/nds/LC_MESSAGES/autorefresh.mo share/locale/nds/LC_MESSAGES/babelfish.mo share/locale/nds/LC_MESSAGES/crashesplugin.mo -share/locale/nds/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/nds/LC_MESSAGES/dirfilterplugin.mo share/locale/nds/LC_MESSAGES/domtreeviewer.mo share/locale/nds/LC_MESSAGES/fsview.mo @@ -1121,11 +1169,11 @@ share/locale/ne/LC_MESSAGES/searchbarplugin.mo share/locale/ne/LC_MESSAGES/uachangerplugin.mo share/locale/ne/LC_MESSAGES/validatorsplugin.mo share/locale/ne/LC_MESSAGES/webarchiver.mo +share/locale/nl/LC_MESSAGES/adblock.mo share/locale/nl/LC_MESSAGES/akregator_konqplugin.mo share/locale/nl/LC_MESSAGES/autorefresh.mo share/locale/nl/LC_MESSAGES/babelfish.mo share/locale/nl/LC_MESSAGES/crashesplugin.mo -share/locale/nl/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/nl/LC_MESSAGES/dirfilterplugin.mo share/locale/nl/LC_MESSAGES/domtreeviewer.mo share/locale/nl/LC_MESSAGES/fsview.mo @@ -1140,11 +1188,11 @@ share/locale/nl/LC_MESSAGES/searchbarplugin.mo share/locale/nl/LC_MESSAGES/uachangerplugin.mo share/locale/nl/LC_MESSAGES/validatorsplugin.mo share/locale/nl/LC_MESSAGES/webarchiver.mo +share/locale/nn/LC_MESSAGES/adblock.mo share/locale/nn/LC_MESSAGES/akregator_konqplugin.mo share/locale/nn/LC_MESSAGES/autorefresh.mo share/locale/nn/LC_MESSAGES/babelfish.mo share/locale/nn/LC_MESSAGES/crashesplugin.mo -share/locale/nn/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/nn/LC_MESSAGES/dirfilterplugin.mo share/locale/nn/LC_MESSAGES/domtreeviewer.mo share/locale/nn/LC_MESSAGES/fsview.mo @@ -1163,7 +1211,6 @@ share/locale/oc/LC_MESSAGES/akregator_konqplugin.mo share/locale/oc/LC_MESSAGES/autorefresh.mo share/locale/oc/LC_MESSAGES/babelfish.mo share/locale/oc/LC_MESSAGES/crashesplugin.mo -share/locale/oc/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/oc/LC_MESSAGES/dirfilterplugin.mo share/locale/oc/LC_MESSAGES/domtreeviewer.mo share/locale/oc/LC_MESSAGES/fsview.mo @@ -1178,6 +1225,7 @@ share/locale/oc/LC_MESSAGES/searchbarplugin.mo share/locale/oc/LC_MESSAGES/uachangerplugin.mo share/locale/oc/LC_MESSAGES/validatorsplugin.mo share/locale/oc/LC_MESSAGES/webarchiver.mo +share/locale/pa/LC_MESSAGES/adblock.mo share/locale/pa/LC_MESSAGES/akregator_konqplugin.mo share/locale/pa/LC_MESSAGES/autorefresh.mo share/locale/pa/LC_MESSAGES/babelfish.mo @@ -1196,11 +1244,11 @@ share/locale/pa/LC_MESSAGES/searchbarplugin.mo share/locale/pa/LC_MESSAGES/uachangerplugin.mo share/locale/pa/LC_MESSAGES/validatorsplugin.mo share/locale/pa/LC_MESSAGES/webarchiver.mo +share/locale/pl/LC_MESSAGES/adblock.mo share/locale/pl/LC_MESSAGES/akregator_konqplugin.mo share/locale/pl/LC_MESSAGES/autorefresh.mo share/locale/pl/LC_MESSAGES/babelfish.mo share/locale/pl/LC_MESSAGES/crashesplugin.mo -share/locale/pl/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/pl/LC_MESSAGES/dirfilterplugin.mo share/locale/pl/LC_MESSAGES/domtreeviewer.mo share/locale/pl/LC_MESSAGES/fsview.mo @@ -1215,11 +1263,11 @@ share/locale/pl/LC_MESSAGES/searchbarplugin.mo share/locale/pl/LC_MESSAGES/uachangerplugin.mo share/locale/pl/LC_MESSAGES/validatorsplugin.mo share/locale/pl/LC_MESSAGES/webarchiver.mo +share/locale/pt/LC_MESSAGES/adblock.mo share/locale/pt/LC_MESSAGES/akregator_konqplugin.mo share/locale/pt/LC_MESSAGES/autorefresh.mo share/locale/pt/LC_MESSAGES/babelfish.mo share/locale/pt/LC_MESSAGES/crashesplugin.mo -share/locale/pt/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/pt/LC_MESSAGES/dirfilterplugin.mo share/locale/pt/LC_MESSAGES/domtreeviewer.mo share/locale/pt/LC_MESSAGES/fsview.mo @@ -1234,11 +1282,11 @@ share/locale/pt/LC_MESSAGES/searchbarplugin.mo share/locale/pt/LC_MESSAGES/uachangerplugin.mo share/locale/pt/LC_MESSAGES/validatorsplugin.mo share/locale/pt/LC_MESSAGES/webarchiver.mo +share/locale/pt_BR/LC_MESSAGES/adblock.mo share/locale/pt_BR/LC_MESSAGES/akregator_konqplugin.mo share/locale/pt_BR/LC_MESSAGES/autorefresh.mo share/locale/pt_BR/LC_MESSAGES/babelfish.mo share/locale/pt_BR/LC_MESSAGES/crashesplugin.mo -share/locale/pt_BR/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/pt_BR/LC_MESSAGES/dirfilterplugin.mo share/locale/pt_BR/LC_MESSAGES/domtreeviewer.mo share/locale/pt_BR/LC_MESSAGES/fsview.mo @@ -1253,11 +1301,11 @@ share/locale/pt_BR/LC_MESSAGES/searchbarplugin.mo share/locale/pt_BR/LC_MESSAGES/uachangerplugin.mo share/locale/pt_BR/LC_MESSAGES/validatorsplugin.mo share/locale/pt_BR/LC_MESSAGES/webarchiver.mo +share/locale/ro/LC_MESSAGES/adblock.mo share/locale/ro/LC_MESSAGES/akregator_konqplugin.mo share/locale/ro/LC_MESSAGES/autorefresh.mo share/locale/ro/LC_MESSAGES/babelfish.mo share/locale/ro/LC_MESSAGES/crashesplugin.mo -share/locale/ro/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/ro/LC_MESSAGES/dirfilterplugin.mo share/locale/ro/LC_MESSAGES/domtreeviewer.mo share/locale/ro/LC_MESSAGES/fsview.mo @@ -1272,11 +1320,11 @@ share/locale/ro/LC_MESSAGES/searchbarplugin.mo share/locale/ro/LC_MESSAGES/uachangerplugin.mo share/locale/ro/LC_MESSAGES/validatorsplugin.mo share/locale/ro/LC_MESSAGES/webarchiver.mo +share/locale/ru/LC_MESSAGES/adblock.mo share/locale/ru/LC_MESSAGES/akregator_konqplugin.mo share/locale/ru/LC_MESSAGES/autorefresh.mo share/locale/ru/LC_MESSAGES/babelfish.mo share/locale/ru/LC_MESSAGES/crashesplugin.mo -share/locale/ru/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/ru/LC_MESSAGES/dirfilterplugin.mo share/locale/ru/LC_MESSAGES/domtreeviewer.mo share/locale/ru/LC_MESSAGES/fsview.mo @@ -1313,7 +1361,6 @@ share/locale/sk/LC_MESSAGES/akregator_konqplugin.mo share/locale/sk/LC_MESSAGES/autorefresh.mo share/locale/sk/LC_MESSAGES/babelfish.mo share/locale/sk/LC_MESSAGES/crashesplugin.mo -share/locale/sk/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/sk/LC_MESSAGES/dirfilterplugin.mo share/locale/sk/LC_MESSAGES/domtreeviewer.mo share/locale/sk/LC_MESSAGES/fsview.mo @@ -1346,11 +1393,30 @@ share/locale/sl/LC_MESSAGES/searchbarplugin.mo share/locale/sl/LC_MESSAGES/uachangerplugin.mo share/locale/sl/LC_MESSAGES/validatorsplugin.mo share/locale/sl/LC_MESSAGES/webarchiver.mo +share/locale/sr/LC_MESSAGES/adblock.mo +share/locale/sr/LC_MESSAGES/akregator_konqplugin.mo +share/locale/sr/LC_MESSAGES/autorefresh.mo +share/locale/sr/LC_MESSAGES/babelfish.mo +share/locale/sr/LC_MESSAGES/crashesplugin.mo +share/locale/sr/LC_MESSAGES/dirfilterplugin.mo +share/locale/sr/LC_MESSAGES/domtreeviewer.mo +share/locale/sr/LC_MESSAGES/fsview.mo +share/locale/sr/LC_MESSAGES/imgalleryplugin.mo +share/locale/sr/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/sr/LC_MESSAGES/konqsidebar_mediaplayer.mo +share/locale/sr/LC_MESSAGES/konqsidebar_metabar.mo +share/locale/sr/LC_MESSAGES/mf_konqplugin.mo +share/locale/sr/LC_MESSAGES/minitoolsplugin.mo +share/locale/sr/LC_MESSAGES/rellinks.mo +share/locale/sr/LC_MESSAGES/searchbarplugin.mo +share/locale/sr/LC_MESSAGES/uachangerplugin.mo +share/locale/sr/LC_MESSAGES/validatorsplugin.mo +share/locale/sr/LC_MESSAGES/webarchiver.mo +share/locale/sv/LC_MESSAGES/adblock.mo share/locale/sv/LC_MESSAGES/akregator_konqplugin.mo share/locale/sv/LC_MESSAGES/autorefresh.mo share/locale/sv/LC_MESSAGES/babelfish.mo share/locale/sv/LC_MESSAGES/crashesplugin.mo -share/locale/sv/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/sv/LC_MESSAGES/dirfilterplugin.mo share/locale/sv/LC_MESSAGES/domtreeviewer.mo share/locale/sv/LC_MESSAGES/fsview.mo @@ -1399,27 +1465,30 @@ share/locale/tg/LC_MESSAGES/searchbarplugin.mo share/locale/tg/LC_MESSAGES/uachangerplugin.mo share/locale/tg/LC_MESSAGES/validatorsplugin.mo share/locale/tg/LC_MESSAGES/webarchiver.mo +share/locale/th/LC_MESSAGES/adblock.mo share/locale/th/LC_MESSAGES/akregator_konqplugin.mo share/locale/th/LC_MESSAGES/autorefresh.mo share/locale/th/LC_MESSAGES/babelfish.mo share/locale/th/LC_MESSAGES/crashesplugin.mo -share/locale/th/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/th/LC_MESSAGES/dirfilterplugin.mo share/locale/th/LC_MESSAGES/domtreeviewer.mo +share/locale/th/LC_MESSAGES/fsview.mo share/locale/th/LC_MESSAGES/imgalleryplugin.mo share/locale/th/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/th/LC_MESSAGES/konqsidebar_mediaplayer.mo +share/locale/th/LC_MESSAGES/konqsidebar_metabar.mo share/locale/th/LC_MESSAGES/mf_konqplugin.mo share/locale/th/LC_MESSAGES/minitoolsplugin.mo +share/locale/th/LC_MESSAGES/rellinks.mo share/locale/th/LC_MESSAGES/searchbarplugin.mo share/locale/th/LC_MESSAGES/uachangerplugin.mo share/locale/th/LC_MESSAGES/validatorsplugin.mo share/locale/th/LC_MESSAGES/webarchiver.mo +share/locale/tr/LC_MESSAGES/adblock.mo share/locale/tr/LC_MESSAGES/akregator_konqplugin.mo share/locale/tr/LC_MESSAGES/autorefresh.mo share/locale/tr/LC_MESSAGES/babelfish.mo share/locale/tr/LC_MESSAGES/crashesplugin.mo -share/locale/tr/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/tr/LC_MESSAGES/dirfilterplugin.mo share/locale/tr/LC_MESSAGES/domtreeviewer.mo share/locale/tr/LC_MESSAGES/fsview.mo @@ -1434,11 +1503,11 @@ share/locale/tr/LC_MESSAGES/searchbarplugin.mo share/locale/tr/LC_MESSAGES/uachangerplugin.mo share/locale/tr/LC_MESSAGES/validatorsplugin.mo share/locale/tr/LC_MESSAGES/webarchiver.mo +share/locale/uk/LC_MESSAGES/adblock.mo share/locale/uk/LC_MESSAGES/akregator_konqplugin.mo share/locale/uk/LC_MESSAGES/autorefresh.mo share/locale/uk/LC_MESSAGES/babelfish.mo share/locale/uk/LC_MESSAGES/crashesplugin.mo -share/locale/uk/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/uk/LC_MESSAGES/dirfilterplugin.mo share/locale/uk/LC_MESSAGES/domtreeviewer.mo share/locale/uk/LC_MESSAGES/fsview.mo @@ -1517,11 +1586,11 @@ share/locale/xh/LC_MESSAGES/konqsidebar_mediaplayer.mo share/locale/xh/LC_MESSAGES/uachangerplugin.mo share/locale/xh/LC_MESSAGES/validatorsplugin.mo share/locale/xh/LC_MESSAGES/webarchiver.mo +share/locale/zh_CN/LC_MESSAGES/adblock.mo share/locale/zh_CN/LC_MESSAGES/akregator_konqplugin.mo share/locale/zh_CN/LC_MESSAGES/autorefresh.mo share/locale/zh_CN/LC_MESSAGES/babelfish.mo share/locale/zh_CN/LC_MESSAGES/crashesplugin.mo -share/locale/zh_CN/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/zh_CN/LC_MESSAGES/dirfilterplugin.mo share/locale/zh_CN/LC_MESSAGES/domtreeviewer.mo share/locale/zh_CN/LC_MESSAGES/fsview.mo @@ -1536,11 +1605,11 @@ share/locale/zh_CN/LC_MESSAGES/searchbarplugin.mo share/locale/zh_CN/LC_MESSAGES/uachangerplugin.mo share/locale/zh_CN/LC_MESSAGES/validatorsplugin.mo share/locale/zh_CN/LC_MESSAGES/webarchiver.mo +share/locale/zh_TW/LC_MESSAGES/adblock.mo share/locale/zh_TW/LC_MESSAGES/akregator_konqplugin.mo share/locale/zh_TW/LC_MESSAGES/autorefresh.mo share/locale/zh_TW/LC_MESSAGES/babelfish.mo share/locale/zh_TW/LC_MESSAGES/crashesplugin.mo -share/locale/zh_TW/LC_MESSAGES/desktop_extragear-base_konq-plugins.mo share/locale/zh_TW/LC_MESSAGES/dirfilterplugin.mo share/locale/zh_TW/LC_MESSAGES/domtreeviewer.mo share/locale/zh_TW/LC_MESSAGES/fsview.mo @@ -1555,22 +1624,14 @@ share/locale/zh_TW/LC_MESSAGES/searchbarplugin.mo share/locale/zh_TW/LC_MESSAGES/uachangerplugin.mo share/locale/zh_TW/LC_MESSAGES/validatorsplugin.mo share/locale/zh_TW/LC_MESSAGES/webarchiver.mo -@dirrmtry share/locale/xh/LC_MESSAGES -@dirrmtry share/locale/xh @dirrmtry share/locale/uz@cyrillic/LC_MESSAGES @dirrmtry share/locale/uz@cyrillic @dirrmtry share/locale/se/LC_MESSAGES @dirrmtry share/locale/se @dirrmtry share/locale/oc/LC_MESSAGES @dirrmtry share/locale/oc -@dirrmtry share/locale/nds/LC_MESSAGES -@dirrmtry share/locale/nds -@dirrmtry share/locale/km/LC_MESSAGES -@dirrmtry share/locale/km -@dirrmtry share/locale/kk/LC_MESSAGES -@dirrmtry share/locale/kk -@dirrmtry share/locale/fy/LC_MESSAGES -@dirrmtry share/locale/fy +@dirrmtry share/locale/hsb/LC_MESSAGES +@dirrmtry share/locale/hsb @dirrm share/doc/HTML/uk/konq-plugins/webarchiver @dirrm share/doc/HTML/uk/konq-plugins/validators @dirrm share/doc/HTML/uk/konq-plugins/uachanger @@ -1619,6 +1680,18 @@ share/locale/zh_TW/LC_MESSAGES/webarchiver.mo @dirrm share/doc/HTML/nl/konq-plugins/crashes @dirrm share/doc/HTML/nl/konq-plugins/babel @dirrm share/doc/HTML/nl/konq-plugins +@dirrm share/doc/HTML/it/konq-plugins/webarchiver +@dirrm share/doc/HTML/it/konq-plugins/validators +@dirrm share/doc/HTML/it/konq-plugins/uachanger +@dirrm share/doc/HTML/it/konq-plugins/mediaplayer +@dirrm share/doc/HTML/it/konq-plugins/khtmlsettings +@dirrm share/doc/HTML/it/konq-plugins/imgallery +@dirrm share/doc/HTML/it/konq-plugins/fsview +@dirrm share/doc/HTML/it/konq-plugins/domtreeviewer +@dirrm share/doc/HTML/it/konq-plugins/dirfilter +@dirrm share/doc/HTML/it/konq-plugins/crashes +@dirrm share/doc/HTML/it/konq-plugins/babel +@dirrm share/doc/HTML/it/konq-plugins @dirrm share/doc/HTML/fr/konq-plugins/webarchiver @dirrm share/doc/HTML/fr/konq-plugins/validators @dirrm share/doc/HTML/fr/konq-plugins/uachanger @@ -1654,6 +1727,7 @@ share/locale/zh_TW/LC_MESSAGES/webarchiver.mo @dirrm share/doc/HTML/en/konq-plugins/crashes @dirrm share/doc/HTML/en/konq-plugins/babel @dirrm share/doc/HTML/en/konq-plugins +@dirrm share/doc/HTML/en/doc @dirrm share/doc/HTML/de/konq-plugins/webarchiver @dirrm share/doc/HTML/de/konq-plugins/validators @dirrm share/doc/HTML/de/konq-plugins/uachanger @@ -1678,29 +1752,23 @@ share/locale/zh_TW/LC_MESSAGES/webarchiver.mo @dirrm share/doc/HTML/ca/konq-plugins/crashes @dirrm share/doc/HTML/ca/konq-plugins/babel @dirrm share/doc/HTML/ca/konq-plugins -@dirrmtry share/doc/HTML/ca @dirrm share/apps/webkitpart/kpartplugins @dirrm share/apps/webkitpart -@dirrm share/apps/microformat/pics -@dirrm share/apps/microformat -@dirrmtry share/apps/konqueror/kpartplugins -@dirrmtry share/apps/konqueror/icons/oxygen/scalable/actions -@dirrmtry share/apps/konqueror/icons/oxygen/scalable -@dirrmtry share/apps/konqueror/icons/oxygen/64x64/actions -@dirrmtry share/apps/konqueror/icons/oxygen/64x64 -@dirrmtry share/apps/konqueror/icons/oxygen/48x48/actions -@dirrmtry share/apps/konqueror/icons/oxygen/48x48 -@dirrmtry share/apps/konqueror/icons/oxygen/32x32/actions -@dirrmtry share/apps/konqueror/icons/oxygen/32x32 -@dirrmtry share/apps/konqueror/icons/oxygen/22x22/actions -@dirrmtry share/apps/konqueror/icons/oxygen/22x22 -@dirrmtry share/apps/konqueror/icons/oxygen/16x16/actions -@dirrmtry share/apps/konqueror/icons/oxygen/16x16 -@dirrmtry share/apps/konqueror/icons/oxygen -@dirrmtry share/apps/konqueror/icons -@dirrmtry share/apps/khtml/kpartplugins -@dirrmtry share/apps/khtml -@dirrm share/apps/imagerotation +@dirrm share/apps/konqueror/kpartplugins +@dirrm share/apps/konqueror/icons/oxygen/scalable/actions +@dirrm share/apps/konqueror/icons/oxygen/scalable +@dirrm share/apps/konqueror/icons/oxygen/64x64/actions +@dirrm share/apps/konqueror/icons/oxygen/64x64 +@dirrm share/apps/konqueror/icons/oxygen/48x48/actions +@dirrm share/apps/konqueror/icons/oxygen/48x48 +@dirrm share/apps/konqueror/icons/oxygen/32x32/actions +@dirrm share/apps/konqueror/icons/oxygen/32x32 +@dirrm share/apps/konqueror/icons/oxygen/22x22/actions +@dirrm share/apps/konqueror/icons/oxygen/22x22 +@dirrm share/apps/konqueror/icons/oxygen/16x16/actions +@dirrm share/apps/konqueror/icons/oxygen/16x16 +@dirrm share/apps/konqueror/icons/oxygen +@dirrm share/apps/konqueror/icons @dirrm share/apps/fsview @dirrm share/apps/domtreeviewer @dirrmtry share/apps/dolphinpart/kpartplugins diff --git a/multimedia/kdemultimedia4/Makefile b/multimedia/kdemultimedia4/Makefile index f357901b26be..892efb1a649d 100644 --- a/multimedia/kdemultimedia4/Makefile +++ b/multimedia/kdemultimedia4/Makefile @@ -8,28 +8,27 @@ PORTNAME= kdemultimedia PORTVERSION= ${KDE4_VERSION} CATEGORIES= multimedia kde ipv6 MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= KDE Multimedia applications -LIB_DEPENDS+= audiofile:${PORTSDIR}/audio/libaudiofile \ - FLAC:${PORTSDIR}/audio/flac \ - cdda_paranoia:${PORTSDIR}/audio/cdparanoia \ - ogg:${PORTSDIR}/audio/libogg \ - tag:${PORTSDIR}/audio/taglib \ - theora:${PORTSDIR}/multimedia/libtheora \ - vorbis:${PORTSDIR}/audio/libvorbis \ - mp3lame:${PORTSDIR}/audio/lame \ +LIB_DEPENDS= FLAC.10:${PORTSDIR}/audio/flac \ + cdda_paranoia.0:${PORTSDIR}/audio/cdparanoia \ + ogg.5:${PORTSDIR}/audio/libogg \ + tag.6:${PORTSDIR}/audio/taglib \ + vorbis.4:${PORTSDIR}/audio/libvorbis \ + musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz \ tunepimp.5:${PORTSDIR}/audio/libtunepimp \ xine.1:${PORTSDIR}/multimedia/libxine -RUN_DEPENDS= oggenc:${PORTSDIR}/audio/vorbis-tools +RUN_DEPENDS= oggenc:${PORTSDIR}/audio/vorbis-tools \ + lame:${PORTSDIR}/audio/lame LATEST_LINK= ${PORTNAME}4 USE_BZIP2= yes -USE_KDE4= kdelibs workspace kdeprefix kdehier automoc4 +USE_KDE4= kdelibs kdeprefix kdehier automoc4 KDE4_BUILDENV= yes USE_QT_VER= 4 QT_COMPONENTS= corelib opengl dbus qt3support designer network svg qtestlib \ diff --git a/multimedia/kdemultimedia4/distinfo b/multimedia/kdemultimedia4/distinfo index 21fb7e108b89..3d2ef12280c7 100644 --- a/multimedia/kdemultimedia4/distinfo +++ b/multimedia/kdemultimedia4/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdemultimedia-4.1.4.tar.bz2) = 4a4e046f0b862e7be9e916e0e29ed188 -SHA256 (KDE/kdemultimedia-4.1.4.tar.bz2) = f8c219a5b926e724e256dd1c2a99093a5c8e2f8d324f9539e3bf93d8fdab14e3 -SIZE (KDE/kdemultimedia-4.1.4.tar.bz2) = 1443501 +MD5 (KDE/kdemultimedia-4.2.0.tar.bz2) = 3e944c87888ac1ac5b11d3722dd31f88 +SHA256 (KDE/kdemultimedia-4.2.0.tar.bz2) = 632e920dfabda4600cbe9519aae75c8c47bd502fd013baa950db27926509ed36 +SIZE (KDE/kdemultimedia-4.2.0.tar.bz2) = 1550040 diff --git a/multimedia/kdemultimedia4/files/patch-CMakeLists.txt b/multimedia/kdemultimedia4/files/patch-CMakeLists.txt deleted file mode 100644 index fd2660935b7a..000000000000 --- a/multimedia/kdemultimedia4/files/patch-CMakeLists.txt +++ /dev/null @@ -1,19 +0,0 @@ ---- ../CMakeLists.txt.orgi 2008-07-24 15:05:33.000000000 +0200 -+++ ../CMakeLists.txt 2008-07-24 15:05:59.000000000 +0200 -@@ -40,10 +40,11 @@ - macro_optional_add_subdirectory(strigi-analyzer) - macro_optional_add_subdirectory(kioslave) - macro_optional_add_subdirectory(kmix) --if(XINE_XCB_FOUND) -- macro_optional_add_subdirectory(dragonplayer) --else(XINE_XCB_FOUND) -- message( STATUS "Xine and phonon-xine must be compiled with XCB support.") --endif(XINE_XCB_FOUND) -+#if(XINE_XCB_FOUND) -+# macro_optional_add_subdirectory(dragonplayer) -+#else(XINE_XCB_FOUND) -+# message( STATUS "Xine and phonon-xine must be compiled with XCB support.") -+#endif(XINE_XCB_FOUND) -+add_subdirectory(dragonplayer) - - macro_display_feature_log() diff --git a/multimedia/kdemultimedia4/files/patch-doc-CMakeLists.txt b/multimedia/kdemultimedia4/files/patch-doc-CMakeLists.txt deleted file mode 100644 index 91a91d95c588..000000000000 --- a/multimedia/kdemultimedia4/files/patch-doc-CMakeLists.txt +++ /dev/null @@ -1,13 +0,0 @@ ---- ../doc/CMakeLists.txt.orgi 2008-07-24 15:24:33.000000000 +0200 -+++ ../doc/CMakeLists.txt 2008-07-24 15:24:55.000000000 +0200 -@@ -3,9 +3,7 @@ - endif(TAGLIB_FOUND) - add_subdirectory(kioslave) - add_subdirectory(kmix) --if(XINE_XCB_FOUND) -- add_subdirectory(dragonplayer) --endif(XINE_XCB_FOUND) -+add_subdirectory(dragonplayer) - if (NOT APPLE) - add_subdirectory(kscd) - endif (NOT APPLE) diff --git a/multimedia/kdemultimedia4/pkg-plist b/multimedia/kdemultimedia4/pkg-plist index 067ab7bb4bfd..866220bc8b96 100644 --- a/multimedia/kdemultimedia4/pkg-plist +++ b/multimedia/kdemultimedia4/pkg-plist @@ -3,7 +3,6 @@ bin/juk bin/kmix bin/kmixctrl bin/kscd -bin/workman2cddb.pl include/audiocdencoder.h include/libkcddb/cdinfo.h include/libkcddb/cdinfodialog.h @@ -24,13 +23,13 @@ lib/kde4/libaudiocd_encoder_vorbis.so lib/kde4/libaudiocd_encoder_wav.so lib/libaudiocdplugins.so lib/libaudiocdplugins.so.5 -lib/libaudiocdplugins.so.5.0.0 +lib/libaudiocdplugins.so.5.0.1 lib/libkcddb.so lib/libkcddb.so.5 -lib/libkcddb.so.5.0.0 +lib/libkcddb.so.5.0.1 lib/libkcompactdisc.so lib/libkcompactdisc.so.5 -lib/libkcompactdisc.so.5.0.0 +lib/libkcompactdisc.so.5.0.1 lib/libkdeinit4_kmix.so lib/libkdeinit4_kmixctrl.so share/applications/kde4/dragonplayer.desktop @@ -70,7 +69,14 @@ share/apps/kmix/pics/mix_volume.png share/apps/kmix/profiles/ALSA.default.xml share/apps/kmix/profiles/OSS.default.xml share/apps/konqsidebartng/virtual_folders/services/audiocd.desktop +share/apps/kscd/skin/BubbleGum.svg +share/apps/kscd/skin/Melon.svg +share/apps/kscd/skin/NGRemote.svg +share/apps/kscd/skin/Orange2.svg +share/apps/kscd/skin/SquaredMelon.svg +share/apps/kscd/skin/default.svg share/apps/profiles/kscd.profile.xml +share/apps/solid/actions/dragonplayer-opendvd.desktop share/autostart/kmix_autostart.desktop share/autostart/restore_kmix_volumes.desktop share/config.kcfg/audiocd_lame_encoder.kcfg @@ -82,6 +88,7 @@ share/dbus-1/interfaces/org.kde.KMix.xml share/dbus-1/interfaces/org.kde.juk.collection.xml share/dbus-1/interfaces/org.kde.juk.player.xml share/dbus-1/interfaces/org.kde.juk.search.xml +share/dbus-1/interfaces/org.kde.kscd.cdplayer.xml share/doc/HTML/en/dragonplayer/common share/doc/HTML/en/dragonplayer/index.cache.bz2 share/doc/HTML/en/dragonplayer/index.docbook @@ -97,6 +104,9 @@ share/doc/HTML/en/juk/juk-tag-guesser.png share/doc/HTML/en/juk/normal-playlist.png share/doc/HTML/en/juk/search-playlist.png share/doc/HTML/en/juk/toolbar.png +share/doc/HTML/en/kioslave/audiocd/common +share/doc/HTML/en/kioslave/audiocd/index.cache.bz2 +share/doc/HTML/en/kioslave/audiocd/index.docbook share/doc/HTML/en/kmix/common share/doc/HTML/en/kmix/index.cache.bz2 share/doc/HTML/en/kmix/index.docbook @@ -144,6 +154,7 @@ share/icons/hicolor/64x64/apps/kmix.png share/icons/hicolor/64x64/apps/kscd.png share/icons/hicolor/scalable/apps/dragonplayer.svgz share/icons/oxygen/16x16/actions/player-volume-muted.png +share/icons/oxygen/22x22/actions/kscd-dock.png share/icons/oxygen/22x22/actions/player-volume-muted.png share/icons/oxygen/32x32/actions/player-volume-muted.png share/icons/oxygen/48x48/actions/player-volume-muted.png @@ -156,47 +167,18 @@ share/kde4/services/audiocd.protocol share/kde4/services/dragonplayer_part.desktop share/kde4/services/kmixctrl_restore.desktop share/kde4/services/libkcddb.desktop -@dirrmtry share/kde4/services/ServiceMenus -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons -@dirrmtry share/doc/HTML/en/kscd -@dirrmtry share/doc/HTML/en/kmix -@dirrmtry share/doc/HTML/en/juk +@dirrm share/doc/HTML/en/kscd +@dirrm share/doc/HTML/en/kmix +@dirrm share/doc/HTML/en/kioslave/audiocd +@dirrm share/doc/HTML/en/juk @dirrm share/doc/HTML/en/dragonplayer -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/doc -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 -@dirrmtry share/config.kcfg -@dirrmtry share/autostart -@dirrmtry share/apps/profiles -@dirrmtry share/apps/konqsidebartng/virtual_folders/services -@dirrmtry share/apps/konqsidebartng/virtual_folders -@dirrmtry share/apps/konqsidebartng -@dirrmtry share/apps/kmix/profiles -@dirrmtry share/apps/kmix/pics -@dirrmtry share/apps/kmix -@dirrmtry share/apps/kconf_update -@dirrmtry share/apps/juk/pics -@dirrmtry share/apps/juk +@dirrm share/apps/kscd/skin +@dirrm share/apps/kscd +@dirrm share/apps/kmix/profiles +@dirrm share/apps/kmix/pics +@dirrm share/apps/kmix +@dirrm share/apps/juk/pics +@dirrm share/apps/juk @dirrm share/apps/dragonplayer -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/kde4 -@dirrmtry include/libkcompactdisc -@dirrmtry include/libkcddb -@dirrmtry include +@dirrm include/libkcompactdisc +@dirrm include/libkcddb diff --git a/multimedia/phonon/Makefile b/multimedia/phonon/Makefile index da1817431610..f8a2f67a7b61 100644 --- a/multimedia/phonon/Makefile +++ b/multimedia/phonon/Makefile @@ -5,17 +5,18 @@ # $FreeBSD$ PORTNAME= phonon -PORTVERSION= 4.2.0 -PORTREVISION= 1 +PORTVERSION= 4.3.0 CATEGORIES= multimedia kde ipv6 MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/phonon/${PORTVERSION} +MASTER_SITE_SUBDIR= stable/${PORTNAME}/${PORTVERSION}/ DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= KDE4 phonon applications -CONFLICTS= qt4-phonon-4* +LIB_DEPENDS= xine.1:${PORTSDIR}/multimedia/libxine + +CONFLICTS= qt4-phonon-4* kdebase-runtime-4.1.[0-4]* USE_BZIP2= yes USE_KDE4= kdehier automoc4 kdeprefix diff --git a/multimedia/phonon/distinfo b/multimedia/phonon/distinfo index 8c81a945ff39..3e854c308d09 100644 --- a/multimedia/phonon/distinfo +++ b/multimedia/phonon/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/phonon-4.2.0.tar.bz2) = de80b0f055886a6946acc7886713e23e -SHA256 (KDE/phonon-4.2.0.tar.bz2) = 1618df4c1db9aa6860315535dcfb80a024e8d2832a79a015c29a26de6fdf3e43 -SIZE (KDE/phonon-4.2.0.tar.bz2) = 400435 +MD5 (KDE/phonon-4.3.0.tar.bz2) = f851219ec1fb4eadc7904f053b6b498d +SHA256 (KDE/phonon-4.3.0.tar.bz2) = cb4c55e353ca9e547c94670990d58b6873937b3498045563b5c50988fb2ded22 +SIZE (KDE/phonon-4.3.0.tar.bz2) = 565443 diff --git a/multimedia/phonon/pkg-plist b/multimedia/phonon/pkg-plist index 95a34aafcb14..985ffb9d45d2 100644 --- a/multimedia/phonon/pkg-plist +++ b/multimedia/phonon/pkg-plist @@ -16,9 +16,13 @@ include/KDE/Phonon/EffectDescriptionModel include/KDE/Phonon/EffectInterface include/KDE/Phonon/EffectParameter include/KDE/Phonon/EffectWidget +include/KDE/Phonon/Experimental/AbstractVideoDataOutput include/KDE/Phonon/Experimental/AudioDataOutput +include/KDE/Phonon/Experimental/SnapshotInterface include/KDE/Phonon/Experimental/VideoDataOutput +include/KDE/Phonon/Experimental/VideoDataOutputInterface include/KDE/Phonon/Experimental/VideoFrame +include/KDE/Phonon/Experimental/VideoFrame2 include/KDE/Phonon/Experimental/Visualization include/KDE/Phonon/Global include/KDE/Phonon/MediaController @@ -50,14 +54,27 @@ include/phonon/effect.h include/phonon/effectinterface.h include/phonon/effectparameter.h include/phonon/effectwidget.h +include/phonon/experimental/abstractaudiodataoutput.h +include/phonon/experimental/abstractvideodataoutput.h include/phonon/experimental/audiodataoutput.h +include/phonon/experimental/audiodataoutputinterface.h +include/phonon/experimental/audioformat.h +include/phonon/experimental/avcapture.h include/phonon/experimental/backendcapabilities.h include/phonon/experimental/backendinterface.h include/phonon/experimental/export.h include/phonon/experimental/mediasource.h include/phonon/experimental/objectdescription.h +include/phonon/experimental/packet.h +include/phonon/experimental/packetpool.h +include/phonon/experimental/phononnamespace.h +include/phonon/experimental/snapshotinterface.h include/phonon/experimental/videodataoutput.h +include/phonon/experimental/videodataoutput2.h +include/phonon/experimental/videodataoutputinterface.h include/phonon/experimental/videoframe.h +include/phonon/experimental/videoframe2.h +include/phonon/experimental/videowidget.h include/phonon/experimental/visualization.h include/phonon/mediacontroller.h include/phonon/medianode.h @@ -80,15 +97,24 @@ include/phonon/volumefadereffect.h include/phonon/volumefaderinterface.h include/phonon/volumeslider.h lib/kde4/plugins/phonon_backend/phonon_gstreamer.so +lib/kde4/plugins/phonon_backend/phonon_xine.so lib/libphonon.so lib/libphonon.so.4 -lib/libphonon.so.4.2.0 +lib/libphonon.so.4.3.0 lib/libphononexperimental.so lib/libphononexperimental.so.4 -lib/libphononexperimental.so.4.2.0 +lib/libphononexperimental.so.4.3.0 libdata/pkgconfig/phonon.pc share/dbus-1/interfaces/org.kde.Phonon.AudioOutput.xml +share/icons/oxygen/128x128/apps/phonon-xine.png +share/icons/oxygen/16x16/apps/phonon-xine.png +share/icons/oxygen/22x22/apps/phonon-xine.png +share/icons/oxygen/32x32/apps/phonon-xine.png +share/icons/oxygen/48x48/apps/phonon-xine.png +share/icons/oxygen/64x64/apps/phonon-xine.png +share/icons/oxygen/scalable/apps/phonon-xine.svgz share/kde4/services/phononbackends/gstreamer.desktop +share/kde4/services/phononbackends/xine.desktop @dirrm share/kde4/services/phononbackends @dirrm lib/kde4/plugins/phonon_backend @dirrm include/phonon/experimental diff --git a/net/kdenetwork4/Makefile b/net/kdenetwork4/Makefile index 7c826f108aec..39f5f9d60f72 100644 --- a/net/kdenetwork4/Makefile +++ b/net/kdenetwork4/Makefile @@ -8,25 +8,29 @@ PORTNAME= kdenetwork PORTVERSION= ${KDE4_VERSION} CATEGORIES= net kde ipv6 MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= KDE Network applications -# decibel:${PORTSDIR}/net-im/decibel -LIB_DEPENDS= slp:${PORTSDIR}/net/openslp \ - idn:${PORTSDIR}/dns/libidn \ +LIB_DEPENDS= slp.1:${PORTSDIR}/net/openslp \ + idn.16:${PORTSDIR}/dns/libidn \ qimageblitz.4:${PORTSDIR}/x11/qimageblitz \ qca.2:${PORTSDIR}/devel/qca \ otr.4:${PORTSDIR}/security/libotr \ - vncserver.0:${PORTSDIR}/net/libvncserver + vncserver.0:${PORTSDIR}/net/libvncserver \ + msn.0:${PORTSDIR}/net-im/libmsn \ + gmp.7:${PORTSDIR}/math/libgmp4 \ + ortp.5:${PORTSDIR}/net/ortp \ + decibel.0:${PORTSDIR}/net-im/decibel \ + meanwhile.1:${PORTSDIR}/net-im/meanwhile RUN_DEPENDS= qca-ossl>=2.0.0.b3:${PORTSDIR}/security/qca-ossl LATEST_LINK= ${PORTNAME}4 USE_BZIP2= yes -USE_KDE4= kdelibs pimlibs workspace kdeprefix kdehier automoc4 +USE_KDE4= kdelibs pimlibs kdeprefix kdehier automoc4 KDE4_BUILDENV= yes USE_QT_VER= 4 USE_SQLITE= yes @@ -34,7 +38,18 @@ QT_COMPONENTS= corelib opengl dbus qt3support gui network xml porting_build \ qmake_build moc_build rcc_build uic_build uic3_build USE_OPENSSL= yes +OPTIONS= XMMS "Enable XMMS Kopete nowlistening plugin" off + +.include <bsd.port.pre.mk> + +.if defined(WITH_XMMS) +CMAKE_ARGS+= -DWITH_Xmms:BOOL=ON +LIB_DEPENDS+= xmms.4:${PORTSDIR}/multimedia/xmms +.else +CMAKE_ARGS+= -DWITH_Xmms:BOOL=OFF +.endif + post-extract: ${MKDIR} ${WRKSRC} -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/net/kdenetwork4/distinfo b/net/kdenetwork4/distinfo index 3d94128a262b..3dbe63525787 100644 --- a/net/kdenetwork4/distinfo +++ b/net/kdenetwork4/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdenetwork-4.1.4.tar.bz2) = c67114c0e28a4e44f1466bf467a7b8dd -SHA256 (KDE/kdenetwork-4.1.4.tar.bz2) = 07a1c54a137eba4bb3422518a92ea9f04bf45ca8f48ca00798d7807174caceb1 -SIZE (KDE/kdenetwork-4.1.4.tar.bz2) = 7384977 +MD5 (KDE/kdenetwork-4.2.0.tar.bz2) = 0ea1628e11d398fdf45276a35edd3cae +SHA256 (KDE/kdenetwork-4.2.0.tar.bz2) = b44b092da8379292080d44ec60b0286638b89d671a14fb167a5f27619af524cd +SIZE (KDE/kdenetwork-4.2.0.tar.bz2) = 7459315 diff --git a/net/kdenetwork4/pkg-plist b/net/kdenetwork4/pkg-plist index af2dee20b2b2..f85d2c014b79 100644 --- a/net/kdenetwork4/pkg-plist +++ b/net/kdenetwork4/pkg-plist @@ -24,10 +24,12 @@ include/kopete/kopetecontactlist.h include/kopete/kopetecontactlistelement.h include/kopete/kopetecontacttaskbase.h include/kopete/kopetedeletecontacttask.h +include/kopete/kopeteemoticons.h include/kopete/kopeteglobal.h include/kopete/kopetegroup.h include/kopete/kopeteidentity.h include/kopete/kopeteidentitymanager.h +include/kopete/kopeteinfoevent.h include/kopete/kopetemessage.h include/kopete/kopetemessageevent.h include/kopete/kopetemessagehandler.h @@ -51,6 +53,7 @@ include/kopete/kopetestatussettings.h include/kopete/kopetetask.h include/kopete/kopetetransfermanager.h include/kopete/kopeteuiglobal.h +include/kopete/kopeteutils.h include/kopete/kopeteversion.h include/kopete/ui/accountselector.h include/kopete/ui/addcontactpage.h @@ -58,9 +61,9 @@ include/kopete/ui/addressbookselectordialog.h include/kopete/ui/addressbookselectorwidget.h include/kopete/ui/avatardialog.h include/kopete/ui/avatarselectorwidget.h +include/kopete/ui/contactaddednotifydialog.h include/kopete/ui/editaccountwidget.h include/kopete/ui/kopetecontactaction.h -include/kopete/ui/kopetefileconfirmdialog.h include/kopete/ui/kopeteinfodialog.h include/kopete/ui/kopetelistview.h include/kopete/ui/kopetelistviewitem.h @@ -69,12 +72,15 @@ include/kopete/ui/kopetepasswordwidget.h include/kopete/ui/kopetestdaction.h include/kopete/ui/kopeteview.h include/kopete/ui/kopeteviewplugin.h -include/kopete/ui/ui_fileconfirmbase.h include/kopete/ui/ui_kopeteawaydialogbase.h include/kopete/ui/ui_kopetepasswordwidgetbase.h lib/kde4/fileshare_propsdlgplugin.so lib/kde4/kcm_fileshare.so lib/kde4/kcm_kcmsambaconf.so +lib/kde4/kcm_kget_bittorrentfactory.so +lib/kde4/kcm_kget_contentfetchfactory.so +lib/kde4/kcm_kget_mirrorsearchfactory.so +lib/kde4/kcm_kget_multisegkiofactory.so lib/kde4/kcm_kopete_accountconfig.so lib/kde4/kcm_kopete_addbookmarks.so lib/kde4/kcm_kopete_alias.so @@ -87,6 +93,7 @@ lib/kde4/kcm_kopete_highlight.so lib/kde4/kcm_kopete_history.so lib/kde4/kcm_kopete_latex.so lib/kde4/kcm_kopete_nowlistening.so +lib/kde4/kcm_kopete_otr.so lib/kde4/kcm_kopete_pipes.so lib/kde4/kcm_kopete_pluginconfig.so lib/kde4/kcm_kopete_privacy.so @@ -97,6 +104,7 @@ lib/kde4/kcm_kopete_urlpicpreview.so lib/kde4/kcm_kopete_webpresence.so lib/kde4/kded_dnssdwatcher.so lib/kde4/kget_bittorrentfactory.so +lib/kde4/kget_contentfetchfactory.so lib/kde4/kget_kiofactory.so lib/kde4/kget_metalinkfactory.so lib/kde4/kget_mirrorsearchfactory.so @@ -107,16 +115,20 @@ lib/kde4/kopete_addbookmarks.so lib/kde4/kopete_aim.so lib/kde4/kopete_alias.so lib/kde4/kopete_autoreplace.so +lib/kde4/kopete_bonjour.so lib/kde4/kopete_chatwindow.so lib/kde4/kopete_contactnotes.so lib/kde4/kopete_emailwindow.so lib/kde4/kopete_gadu.so +lib/kde4/kopete_groupwise.so lib/kde4/kopete_highlight.so lib/kde4/kopete_history.so lib/kde4/kopete_icq.so +lib/kde4/kopete_jabber.so lib/kde4/kopete_latex.so -lib/kde4/kopete_msn.so +lib/kde4/kopete_meanwhile.so lib/kde4/kopete_nowlistening.so +lib/kde4/kopete_otr.so lib/kde4/kopete_pipes.so lib/kde4/kopete_privacy.so lib/kde4/kopete_qq.so @@ -127,41 +139,35 @@ lib/kde4/kopete_texteffect.so lib/kde4/kopete_translator.so lib/kde4/kopete_urlpicpreview.so lib/kde4/kopete_webpresence.so +lib/kde4/kopete_wlm.so lib/kde4/kopete_wp.so lib/kde4/kopete_yahoo.so lib/kde4/libkrichtexteditpart.so -lib/kde4/plasma_applet_kget.so -lib/kde4/plasma_applet_knewsticker.so lib/kde4/plasma_engine_kget.so -lib/kde4/kopete_jabber.so -lib/kde4/kopete_groupwise.so -lib/kde4/kopete_otr.so -lib/kde4/kcm_kopete_otr.so -lib/libiris_kopete.so.1.0.0 -lib/libiris_kopete.so.1 -lib/libiris_kopete.so -lib/libqgroupwise.so -lib/libkopete_otr_shared.so.1.0.0 -lib/libkopete_otr_shared.so.1 -lib/libkopete_otr_shared.so +lib/kde4/plasma_kget_barapplet.so +lib/kde4/plasma_kget_panelbar.so +lib/kde4/plasma_kget_piechart.so lib/libgadu_kopete.so lib/libgadu_kopete.so.1 lib/libgadu_kopete.so.1.0.0 +lib/libiris_kopete.so +lib/libiris_kopete.so.1 +lib/libiris_kopete.so.1.0.0 lib/libkgetcore.so lib/libkgetcore.so.5 -lib/libkgetcore.so.5.0.0 +lib/libkgetcore.so.5.0.1 lib/libkopete.so lib/libkopete.so.5 -lib/libkopete.so.5.0.0 -lib/libkopete_msn_shared.so -lib/libkopete_msn_shared.so.5 -lib/libkopete_msn_shared.so.5.0.0 +lib/libkopete.so.5.0.1 lib/libkopete_oscar.so lib/libkopete_oscar.so.5 -lib/libkopete_oscar.so.5.0.0 +lib/libkopete_oscar.so.5.0.1 +lib/libkopete_otr_shared.so +lib/libkopete_otr_shared.so.1 +lib/libkopete_otr_shared.so.1.0.0 lib/libkopete_videodevice.so lib/libkopete_videodevice.so.5 -lib/libkopete_videodevice.so.5.0.0 +lib/libkopete_videodevice.so.5.0.1 lib/libkopeteaddaccountwizard.so lib/libkopeteaddaccountwizard.so.1 lib/libkopeteaddaccountwizard.so.1.0.0 @@ -183,6 +189,7 @@ lib/libkyahoo.so.1.0.0 lib/liboscar.so lib/liboscar.so.1 lib/liboscar.so.1.0.0 +lib/libqgroupwise.so share/applications/kde4/Kppp.desktop share/applications/kde4/kget.desktop share/applications/kde4/kopete.desktop @@ -193,6 +200,8 @@ share/apps/desktoptheme/default/widgets/kget.svg share/apps/kconf_update/kopete-account-0.10.pl share/apps/kconf_update/kopete-account-kconf_update.sh share/apps/kconf_update/kopete-account-kconf_update.upd +share/apps/kconf_update/kopete-initialstatus.pl +share/apps/kconf_update/kopete-initialstatus.upd share/apps/kconf_update/kopete-jabberpriorityaddition-kconf_update.sh share/apps/kconf_update/kopete-jabberpriorityaddition-kconf_update.upd share/apps/kconf_update/kopete-jabberproxytype-kconf_update.sh @@ -202,6 +211,10 @@ share/apps/kconf_update/kopete-pluginloader.pl share/apps/kconf_update/kopete-pluginloader.upd share/apps/kconf_update/kopete-pluginloader2.sh share/apps/kconf_update/kopete-pluginloader2.upd +share/apps/kget/content_fetch_scripts/youtubedl/kget_youtubedl.py +share/apps/kget/content_fetch_scripts/youtubedl/kget_youtubedl_option.py +share/apps/kget/content_fetch_scripts/youtubedl/ui_youtube_option.py +share/apps/kget/content_fetch_scripts/youtubedl/youtube_option.ui share/apps/kget/kget.notifyrc share/apps/kget/kgetui.rc share/apps/kget/pics/kget_splash.png @@ -222,17 +235,15 @@ share/apps/kget/www/view-refresh.png share/apps/khtml/kpartplugins/kget_plug_in.rc share/apps/kopete/icons/crystalsvg/16x16/actions/aim_connecting.mng share/apps/kopete/icons/crystalsvg/16x16/actions/gg_con.mng +share/apps/kopete/icons/crystalsvg/16x16/actions/groupwise_connecting.mng share/apps/kopete/icons/crystalsvg/16x16/actions/icq_connecting.mng -share/apps/kopete/icons/crystalsvg/16x16/actions/msn_connecting.mng +share/apps/kopete/icons/crystalsvg/16x16/actions/jabber_connecting.mng share/apps/kopete/icons/crystalsvg/16x16/actions/qq_connecting.mng share/apps/kopete/icons/crystalsvg/16x16/actions/yahoo_connecting.mng share/apps/kopete/icons/crystalsvg/22x22/actions/qq_connecting.mng share/apps/kopete/icons/crystalsvg/32x32/actions/qq_connecting.mng share/apps/kopete/icons/crystalsvg/48x48/actions/qq_connecting.mng share/apps/kopete/icons/crystalsvg/64x64/actions/qq_connecting.mng -share/apps/kopete/icons/crystalsvg/16x16/actions/jabber_connecting.mng -share/apps/kopete/icons/crystalsvg/16x16/actions/groupwise_connecting.mng -share/apps/kopete/icons/hicolor/16x16/actions/jabber_connecting.mng share/apps/kopete/icons/hicolor/16x16/actions/aim_away.png share/apps/kopete/icons/hicolor/16x16/actions/aim_connecting.mng share/apps/kopete/icons/hicolor/16x16/actions/aim_offline.png @@ -278,19 +289,22 @@ share/apps/kopete/icons/hicolor/16x16/actions/icq_xstatus6.png share/apps/kopete/icons/hicolor/16x16/actions/icq_xstatus7.png share/apps/kopete/icons/hicolor/16x16/actions/icq_xstatus8.png share/apps/kopete/icons/hicolor/16x16/actions/icq_xstatus9.png +share/apps/kopete/icons/hicolor/16x16/actions/jabber_connecting.mng share/apps/kopete/icons/hicolor/16x16/apps/aim_protocol.png share/apps/kopete/icons/hicolor/16x16/apps/icq_protocol.png share/apps/kopete/icons/hicolor/32x32/apps/aim_protocol.png share/apps/kopete/icons/hicolor/32x32/apps/icq_protocol.png share/apps/kopete/icons/oxygen/128x128/apps/aim_protocol.png +share/apps/kopete/icons/oxygen/128x128/apps/bonjour_protocol.png share/apps/kopete/icons/oxygen/128x128/apps/icq_protocol.png +share/apps/kopete/icons/oxygen/128x128/apps/jabber_protocol.png share/apps/kopete/icons/oxygen/128x128/apps/kopete_avdevice.png -share/apps/kopete/icons/oxygen/128x128/apps/msn_protocol.png +share/apps/kopete/icons/oxygen/128x128/apps/meanwhile_protocol.png share/apps/kopete/icons/oxygen/128x128/apps/qq_protocol.png share/apps/kopete/icons/oxygen/128x128/apps/sms_protocol.png share/apps/kopete/icons/oxygen/128x128/apps/testbed_protocol.png +share/apps/kopete/icons/oxygen/128x128/apps/wlm_protocol.png share/apps/kopete/icons/oxygen/128x128/apps/wp_protocol.png -share/apps/kopete/icons/oxygen/128x128/apps/jabber_protocol.png share/apps/kopete/icons/oxygen/128x128/apps/yahoo_protocol.png share/apps/kopete/icons/oxygen/16x16/actions/aim_away.png share/apps/kopete/icons/oxygen/16x16/actions/aim_offline.png @@ -307,6 +321,10 @@ share/apps/kopete/icons/oxygen/16x16/actions/gg_offline.png share/apps/kopete/icons/oxygen/16x16/actions/gg_offline_d.png share/apps/kopete/icons/oxygen/16x16/actions/gg_online.png share/apps/kopete/icons/oxygen/16x16/actions/gg_online_d.png +share/apps/kopete/icons/oxygen/16x16/actions/groupwise_away.png +share/apps/kopete/icons/oxygen/16x16/actions/groupwise_busy.png +share/apps/kopete/icons/oxygen/16x16/actions/groupwise_invisible.png +share/apps/kopete/icons/oxygen/16x16/actions/groupwise_online.png share/apps/kopete/icons/oxygen/16x16/actions/icq_away.png share/apps/kopete/icons/oxygen/16x16/actions/icq_dnd.png share/apps/kopete/icons/oxygen/16x16/actions/icq_ffc.png @@ -316,17 +334,34 @@ share/apps/kopete/icons/oxygen/16x16/actions/icq_occupied.png share/apps/kopete/icons/oxygen/16x16/actions/icq_offline.png share/apps/kopete/icons/oxygen/16x16/actions/icq_online.png share/apps/kopete/icons/oxygen/16x16/actions/icq_overlay.png -share/apps/kopete/icons/oxygen/16x16/actions/msn_away.png -share/apps/kopete/icons/oxygen/16x16/actions/msn_blocked.png -share/apps/kopete/icons/oxygen/16x16/actions/msn_brb.png -share/apps/kopete/icons/oxygen/16x16/actions/msn_busy.png -share/apps/kopete/icons/oxygen/16x16/actions/msn_invisible.png -share/apps/kopete/icons/oxygen/16x16/actions/msn_lunch.png -share/apps/kopete/icons/oxygen/16x16/actions/msn_na.png -share/apps/kopete/icons/oxygen/16x16/actions/msn_newmsg.png -share/apps/kopete/icons/oxygen/16x16/actions/msn_offline.png -share/apps/kopete/icons/oxygen/16x16/actions/msn_online.png -share/apps/kopete/icons/oxygen/16x16/actions/msn_phone.png +share/apps/kopete/icons/oxygen/16x16/actions/jabber_away.png +share/apps/kopete/icons/oxygen/16x16/actions/jabber_chatty.png +share/apps/kopete/icons/oxygen/16x16/actions/jabber_group.png +share/apps/kopete/icons/oxygen/16x16/actions/jabber_invisible.png +share/apps/kopete/icons/oxygen/16x16/actions/jabber_na.png +share/apps/kopete/icons/oxygen/16x16/actions/jabber_offline.png +share/apps/kopete/icons/oxygen/16x16/actions/jabber_online.png +share/apps/kopete/icons/oxygen/16x16/actions/jabber_original.png +share/apps/kopete/icons/oxygen/16x16/actions/jabber_raw.png +share/apps/kopete/icons/oxygen/16x16/actions/jabber_serv_off.png +share/apps/kopete/icons/oxygen/16x16/actions/jabber_serv_on.png +share/apps/kopete/icons/oxygen/16x16/actions/jabber_xa.png +share/apps/kopete/icons/oxygen/16x16/actions/logging.png +share/apps/kopete/icons/oxygen/16x16/actions/meanwhile_away.png +share/apps/kopete/icons/oxygen/16x16/actions/meanwhile_dnd.png +share/apps/kopete/icons/oxygen/16x16/actions/meanwhile_idle.png +share/apps/kopete/icons/oxygen/16x16/actions/meanwhile_unknown.png +share/apps/kopete/icons/oxygen/16x16/actions/wlm_away.png +share/apps/kopete/icons/oxygen/16x16/actions/wlm_blocked.png +share/apps/kopete/icons/oxygen/16x16/actions/wlm_brb.png +share/apps/kopete/icons/oxygen/16x16/actions/wlm_busy.png +share/apps/kopete/icons/oxygen/16x16/actions/wlm_invisible.png +share/apps/kopete/icons/oxygen/16x16/actions/wlm_lunch.png +share/apps/kopete/icons/oxygen/16x16/actions/wlm_na.png +share/apps/kopete/icons/oxygen/16x16/actions/wlm_newmsg.png +share/apps/kopete/icons/oxygen/16x16/actions/wlm_offline.png +share/apps/kopete/icons/oxygen/16x16/actions/wlm_online.png +share/apps/kopete/icons/oxygen/16x16/actions/wlm_phone.png share/apps/kopete/icons/oxygen/16x16/actions/wp_away.png share/apps/kopete/icons/oxygen/16x16/actions/yahoo_away.png share/apps/kopete/icons/oxygen/16x16/actions/yahoo_busy.png @@ -336,94 +371,88 @@ share/apps/kopete/icons/oxygen/16x16/actions/yahoo_mobile.png share/apps/kopete/icons/oxygen/16x16/actions/yahoo_stealthed.png share/apps/kopete/icons/oxygen/16x16/actions/yahoo_tea.png share/apps/kopete/icons/oxygen/16x16/apps/aim_protocol.png +share/apps/kopete/icons/oxygen/16x16/apps/bonjour_protocol.png share/apps/kopete/icons/oxygen/16x16/apps/gadu_protocol.png +share/apps/kopete/icons/oxygen/16x16/apps/groupwise_protocol.png share/apps/kopete/icons/oxygen/16x16/apps/icq_protocol.png -share/apps/kopete/icons/oxygen/16x16/apps/msn_protocol.png -share/apps/kopete/icons/oxygen/16x16/apps/qq_protocol.png -share/apps/kopete/icons/oxygen/16x16/apps/sms_protocol.png -share/apps/kopete/icons/oxygen/16x16/apps/testbed_protocol.png -share/apps/kopete/icons/oxygen/16x16/apps/wp_protocol.png -share/apps/kopete/icons/oxygen/16x16/actions/jabber_group.png -share/apps/kopete/icons/oxygen/16x16/actions/jabber_serv_off.png -share/apps/kopete/icons/oxygen/16x16/actions/jabber_offline.png -share/apps/kopete/icons/oxygen/16x16/actions/jabber_xa.png -share/apps/kopete/icons/oxygen/16x16/actions/jabber_na.png -share/apps/kopete/icons/oxygen/16x16/actions/jabber_original.png -share/apps/kopete/icons/oxygen/16x16/actions/jabber_online.png -share/apps/kopete/icons/oxygen/16x16/actions/jabber_serv_on.png -share/apps/kopete/icons/oxygen/16x16/actions/jabber_away.png -share/apps/kopete/icons/oxygen/16x16/actions/jabber_raw.png -share/apps/kopete/icons/oxygen/16x16/actions/jabber_chatty.png -share/apps/kopete/icons/oxygen/16x16/actions/jabber_invisible.png -share/apps/kopete/icons/oxygen/16x16/actions/groupwise_busy.png -share/apps/kopete/icons/oxygen/16x16/actions/logging.png -share/apps/kopete/icons/oxygen/16x16/actions/groupwise_online.png -share/apps/kopete/icons/oxygen/16x16/actions/groupwise_invisible.png -share/apps/kopete/icons/oxygen/16x16/actions/groupwise_away.png -share/apps/kopete/icons/oxygen/16x16/apps/jabber_gateway_http-ws.png -share/apps/kopete/icons/oxygen/16x16/apps/jabber_gateway_smtp.png -share/apps/kopete/icons/oxygen/16x16/apps/jabber_gateway_yahoo.png share/apps/kopete/icons/oxygen/16x16/apps/jabber_gateway_aim.png -share/apps/kopete/icons/oxygen/16x16/apps/jabber_gateway_sms.png -share/apps/kopete/icons/oxygen/16x16/apps/jabber_gateway_tlen.png -share/apps/kopete/icons/oxygen/16x16/apps/jabber_protocol.png share/apps/kopete/icons/oxygen/16x16/apps/jabber_gateway_gadu.png -share/apps/kopete/icons/oxygen/16x16/apps/jabber_gateway_msn.png -share/apps/kopete/icons/oxygen/16x16/apps/jabber_gateway_qq.png +share/apps/kopete/icons/oxygen/16x16/apps/jabber_gateway_http-ws.png share/apps/kopete/icons/oxygen/16x16/apps/jabber_gateway_icq.png share/apps/kopete/icons/oxygen/16x16/apps/jabber_gateway_irc.png -share/apps/kopete/icons/oxygen/16x16/apps/groupwise_protocol.png +share/apps/kopete/icons/oxygen/16x16/apps/jabber_gateway_msn.png +share/apps/kopete/icons/oxygen/16x16/apps/jabber_gateway_qq.png +share/apps/kopete/icons/oxygen/16x16/apps/jabber_gateway_sms.png +share/apps/kopete/icons/oxygen/16x16/apps/jabber_gateway_smtp.png +share/apps/kopete/icons/oxygen/16x16/apps/jabber_gateway_tlen.png +share/apps/kopete/icons/oxygen/16x16/apps/jabber_gateway_yahoo.png +share/apps/kopete/icons/oxygen/16x16/apps/jabber_protocol.png +share/apps/kopete/icons/oxygen/16x16/apps/meanwhile_protocol.png +share/apps/kopete/icons/oxygen/16x16/apps/qq_protocol.png +share/apps/kopete/icons/oxygen/16x16/apps/sms_protocol.png +share/apps/kopete/icons/oxygen/16x16/apps/testbed_protocol.png +share/apps/kopete/icons/oxygen/16x16/apps/wlm_protocol.png +share/apps/kopete/icons/oxygen/16x16/apps/wp_protocol.png share/apps/kopete/icons/oxygen/16x16/apps/yahoo_protocol.png -share/apps/kopete/icons/oxygen/22x22/actions/yahoo_stealthed.png -share/apps/kopete/icons/oxygen/32x32/apps/jabber_protocol.png -share/apps/kopete/icons/oxygen/32x32/apps/groupwise_protocol.png -share/apps/kopete/icons/oxygen/32x32/actions/logging.png -share/apps/kopete/icons/oxygen/22x22/apps/jabber_protocol.png -share/apps/kopete/icons/oxygen/22x22/apps/groupwise_protocol.png share/apps/kopete/icons/oxygen/22x22/actions/logging.png +share/apps/kopete/icons/oxygen/22x22/actions/yahoo_stealthed.png share/apps/kopete/icons/oxygen/22x22/apps/aim_protocol.png +share/apps/kopete/icons/oxygen/22x22/apps/bonjour_protocol.png +share/apps/kopete/icons/oxygen/22x22/apps/groupwise_protocol.png share/apps/kopete/icons/oxygen/22x22/apps/icq_protocol.png +share/apps/kopete/icons/oxygen/22x22/apps/jabber_protocol.png share/apps/kopete/icons/oxygen/22x22/apps/kopete_avdevice.png -share/apps/kopete/icons/oxygen/22x22/apps/msn_protocol.png +share/apps/kopete/icons/oxygen/22x22/apps/meanwhile_protocol.png share/apps/kopete/icons/oxygen/22x22/apps/qq_protocol.png +share/apps/kopete/icons/oxygen/22x22/apps/wlm_protocol.png +share/apps/kopete/icons/oxygen/32x32/actions/logging.png share/apps/kopete/icons/oxygen/32x32/actions/yahoo_stealthed.png share/apps/kopete/icons/oxygen/32x32/apps/aim_protocol.png +share/apps/kopete/icons/oxygen/32x32/apps/bonjour_protocol.png share/apps/kopete/icons/oxygen/32x32/apps/gadu_protocol.png +share/apps/kopete/icons/oxygen/32x32/apps/groupwise_protocol.png share/apps/kopete/icons/oxygen/32x32/apps/icq_protocol.png +share/apps/kopete/icons/oxygen/32x32/apps/jabber_protocol.png share/apps/kopete/icons/oxygen/32x32/apps/kopete_avdevice.png share/apps/kopete/icons/oxygen/32x32/apps/latex.png -share/apps/kopete/icons/oxygen/32x32/apps/msn_protocol.png +share/apps/kopete/icons/oxygen/32x32/apps/meanwhile_protocol.png share/apps/kopete/icons/oxygen/32x32/apps/preferences-plugin-text-effect-kopete.png share/apps/kopete/icons/oxygen/32x32/apps/preferences-text-autocorrection-kopete.png share/apps/kopete/icons/oxygen/32x32/apps/preferences-text-highlighting-kopete.png share/apps/kopete/icons/oxygen/32x32/apps/qq_protocol.png -share/apps/kopete/icons/oxygen/64x64/apps/jabber_protocol.png -share/apps/kopete/icons/oxygen/64x64/apps/groupwise_protocol.png -share/apps/kopete/icons/oxygen/64x64/actions/logging.png share/apps/kopete/icons/oxygen/32x32/apps/sms_protocol.png share/apps/kopete/icons/oxygen/32x32/apps/testbed_protocol.png +share/apps/kopete/icons/oxygen/32x32/apps/wlm_protocol.png share/apps/kopete/icons/oxygen/32x32/apps/wp_protocol.png share/apps/kopete/icons/oxygen/32x32/apps/yahoo_protocol.png +share/apps/kopete/icons/oxygen/48x48/actions/logging.png share/apps/kopete/icons/oxygen/48x48/apps/aim_protocol.png +share/apps/kopete/icons/oxygen/48x48/apps/bonjour_protocol.png +share/apps/kopete/icons/oxygen/48x48/apps/groupwise_protocol.png share/apps/kopete/icons/oxygen/48x48/apps/icq_protocol.png -share/apps/kopete/icons/oxygen/48x48/apps/msn_protocol.png +share/apps/kopete/icons/oxygen/48x48/apps/jabber_protocol.png +share/apps/kopete/icons/oxygen/48x48/apps/meanwhile_protocol.png share/apps/kopete/icons/oxygen/48x48/apps/qq_protocol.png share/apps/kopete/icons/oxygen/48x48/apps/sms_protocol.png share/apps/kopete/icons/oxygen/48x48/apps/testbed_protocol.png +share/apps/kopete/icons/oxygen/48x48/apps/wlm_protocol.png share/apps/kopete/icons/oxygen/48x48/apps/wp_protocol.png share/apps/kopete/icons/oxygen/48x48/apps/yahoo_protocol.png -share/apps/kopete/icons/oxygen/48x48/apps/jabber_protocol.png -share/apps/kopete/icons/oxygen/48x48/apps/groupwise_protocol.png -share/apps/kopete/icons/oxygen/48x48/actions/logging.png +share/apps/kopete/icons/oxygen/64x64/actions/logging.png share/apps/kopete/icons/oxygen/64x64/apps/aim_protocol.png +share/apps/kopete/icons/oxygen/64x64/apps/bonjour_protocol.png +share/apps/kopete/icons/oxygen/64x64/apps/groupwise_protocol.png share/apps/kopete/icons/oxygen/64x64/apps/icq_protocol.png +share/apps/kopete/icons/oxygen/64x64/apps/jabber_protocol.png share/apps/kopete/icons/oxygen/64x64/apps/kopete_avdevice.png -share/apps/kopete/icons/oxygen/64x64/apps/msn_protocol.png +share/apps/kopete/icons/oxygen/64x64/apps/meanwhile_protocol.png share/apps/kopete/icons/oxygen/64x64/apps/qq_protocol.png share/apps/kopete/icons/oxygen/64x64/apps/sms_protocol.png share/apps/kopete/icons/oxygen/64x64/apps/testbed_protocol.png +share/apps/kopete/icons/oxygen/64x64/apps/wlm_protocol.png share/apps/kopete/icons/oxygen/64x64/apps/wp_protocol.png share/apps/kopete/icons/oxygen/64x64/apps/yahoo_protocol.png +share/apps/kopete/icons/oxygen/scalable/apps/meanwhile_protocol.svgz share/apps/kopete/kopete.notifyrc share/apps/kopete/kopetechatwindow.rc share/apps/kopete/kopetecommandui.rc @@ -438,11 +467,15 @@ share/apps/kopete/styles/Clean/Contents/Resources/Incoming/NextContent.html share/apps/kopete/styles/Clean/Contents/Resources/Incoming/buddy_icon.png share/apps/kopete/styles/Clean/Contents/Resources/Outgoing/Content.html share/apps/kopete/styles/Clean/Contents/Resources/Outgoing/NextContent.html +share/apps/kopete/styles/Clean/Contents/Resources/Outgoing/StateError.html +share/apps/kopete/styles/Clean/Contents/Resources/Outgoing/StateSending.html share/apps/kopete/styles/Clean/Contents/Resources/Outgoing/buddy_icon.png share/apps/kopete/styles/Clean/Contents/Resources/Status.html share/apps/kopete/styles/Clean/Contents/Resources/images/action.png share/apps/kopete/styles/Clean/Contents/Resources/images/important.png share/apps/kopete/styles/Clean/Contents/Resources/images/internal.png +share/apps/kopete/styles/Clean/Contents/Resources/images/state-error.png +share/apps/kopete/styles/Clean/Contents/Resources/images/state-sending.gif share/apps/kopete/styles/Clean/Contents/Resources/main.css share/apps/kopete/styles/Clear/Contents/Resources/Footer.html share/apps/kopete/styles/Clear/Contents/Resources/Header.html @@ -453,6 +486,8 @@ share/apps/kopete/styles/Clear/Contents/Resources/Incoming/buddy_icon.png share/apps/kopete/styles/Clear/Contents/Resources/Outgoing/Action.html share/apps/kopete/styles/Clear/Contents/Resources/Outgoing/Content.html share/apps/kopete/styles/Clear/Contents/Resources/Outgoing/NextContent.html +share/apps/kopete/styles/Clear/Contents/Resources/Outgoing/StateError.html +share/apps/kopete/styles/Clear/Contents/Resources/Outgoing/StateSending.html share/apps/kopete/styles/Clear/Contents/Resources/Outgoing/buddy_icon.png share/apps/kopete/styles/Clear/Contents/Resources/Status.html share/apps/kopete/styles/Clear/Contents/Resources/Variants/No_avatars.css @@ -484,6 +519,8 @@ share/apps/kopete/styles/Clear/Contents/Resources/images/icon-internal.png share/apps/kopete/styles/Clear/Contents/Resources/images/icon-me.png share/apps/kopete/styles/Clear/Contents/Resources/images/icon-time.png share/apps/kopete/styles/Clear/Contents/Resources/images/icon-you.png +share/apps/kopete/styles/Clear/Contents/Resources/images/state-error.png +share/apps/kopete/styles/Clear/Contents/Resources/images/state-sending.gif share/apps/kopete/styles/Clear/Contents/Resources/main.css share/apps/kopete/styles/Gaim/Contents/Info.plist share/apps/kopete/styles/Gaim/Contents/Resources/Footer.html @@ -494,11 +531,15 @@ share/apps/kopete/styles/Gaim/Contents/Resources/Incoming/NextContent.html share/apps/kopete/styles/Gaim/Contents/Resources/Outgoing/Action.html share/apps/kopete/styles/Gaim/Contents/Resources/Outgoing/Content.html share/apps/kopete/styles/Gaim/Contents/Resources/Outgoing/NextContent.html +share/apps/kopete/styles/Gaim/Contents/Resources/Outgoing/StateError.html +share/apps/kopete/styles/Gaim/Contents/Resources/Outgoing/StateSending.html share/apps/kopete/styles/Gaim/Contents/Resources/Status.html share/apps/kopete/styles/Gaim/Contents/Resources/Variants/Contact-Colors.css share/apps/kopete/styles/Gaim/Contents/Resources/Variants/Name-Colors.css share/apps/kopete/styles/Gaim/Contents/Resources/Variants/No-Colors.css share/apps/kopete/styles/Gaim/Contents/Resources/Variants/Status-Colors.css +share/apps/kopete/styles/Gaim/Contents/Resources/images/state-error.png +share/apps/kopete/styles/Gaim/Contents/Resources/images/state-sending.gif share/apps/kopete/styles/Gaim/Contents/Resources/main.css share/apps/kopete/styles/Hacker/COPYRIGHT share/apps/kopete/styles/Hacker/Contents/Info.plist @@ -515,6 +556,8 @@ share/apps/kopete/styles/Hacker/Contents/Resources/Outgoing/Content.html share/apps/kopete/styles/Hacker/Contents/Resources/Outgoing/Context.html share/apps/kopete/styles/Hacker/Contents/Resources/Outgoing/NextContent.html share/apps/kopete/styles/Hacker/Contents/Resources/Outgoing/NextContext.html +share/apps/kopete/styles/Hacker/Contents/Resources/Outgoing/StateError.html +share/apps/kopete/styles/Hacker/Contents/Resources/Outgoing/StateSending.html share/apps/kopete/styles/Hacker/Contents/Resources/Outgoing/buddy_icon.png share/apps/kopete/styles/Hacker/Contents/Resources/Status.html share/apps/kopete/styles/Hacker/Contents/Resources/Variants/Dark-Noback.css @@ -528,6 +571,9 @@ share/apps/kopete/styles/Hacker/Contents/Resources/Variants/Light2.css share/apps/kopete/styles/Hacker/Contents/Resources/images/background.png share/apps/kopete/styles/Hacker/Contents/Resources/images/background2.png share/apps/kopete/styles/Hacker/Contents/Resources/images/kopete.png +share/apps/kopete/styles/Hacker/Contents/Resources/images/state-error.png +share/apps/kopete/styles/Hacker/Contents/Resources/images/state-sending-white.gif +share/apps/kopete/styles/Hacker/Contents/Resources/images/state-sending.gif share/apps/kopete/styles/Hacker/Contents/Resources/main.css share/apps/kopete/styles/Hacker/README share/apps/kopete/styles/Hacker/gpl.txt @@ -567,6 +613,8 @@ share/apps/kopete/styles/Kopete/Contents/Resources/Incoming/buddy_icon.png share/apps/kopete/styles/Kopete/Contents/Resources/Outgoing/Action.html share/apps/kopete/styles/Kopete/Contents/Resources/Outgoing/Content.html share/apps/kopete/styles/Kopete/Contents/Resources/Outgoing/NextContent.html +share/apps/kopete/styles/Kopete/Contents/Resources/Outgoing/StateError.html +share/apps/kopete/styles/Kopete/Contents/Resources/Outgoing/StateSending.html share/apps/kopete/styles/Kopete/Contents/Resources/Outgoing/buddy_icon.png share/apps/kopete/styles/Kopete/Contents/Resources/Status.html share/apps/kopete/styles/Kopete/Contents/Resources/Variants/Big_pictures.css @@ -575,6 +623,8 @@ share/apps/kopete/styles/Kopete/Contents/Resources/Variants/_compact_.css share/apps/kopete/styles/Kopete/Contents/Resources/Variants/_compact_Contact_color.css share/apps/kopete/styles/Kopete/Contents/Resources/images/action.png share/apps/kopete/styles/Kopete/Contents/Resources/images/important.png +share/apps/kopete/styles/Kopete/Contents/Resources/images/state-error.png +share/apps/kopete/styles/Kopete/Contents/Resources/images/state-sending.gif share/apps/kopete/styles/Kopete/Contents/Resources/images/system.png share/apps/kopete/styles/Kopete/Contents/Resources/main.css share/apps/kopete/styles/Retropete/Contents/Resources/Footer.html @@ -585,27 +635,30 @@ share/apps/kopete/styles/Retropete/Contents/Resources/Incoming/NextContent.html share/apps/kopete/styles/Retropete/Contents/Resources/Outgoing/Action.html share/apps/kopete/styles/Retropete/Contents/Resources/Outgoing/Content.html share/apps/kopete/styles/Retropete/Contents/Resources/Outgoing/NextContent.html +share/apps/kopete/styles/Retropete/Contents/Resources/Outgoing/StateError.html +share/apps/kopete/styles/Retropete/Contents/Resources/Outgoing/StateSending.html share/apps/kopete/styles/Retropete/Contents/Resources/Status.html +share/apps/kopete/styles/Retropete/Contents/Resources/images/state-error.png +share/apps/kopete/styles/Retropete/Contents/Resources/images/state-sending.gif share/apps/kopete/styles/Retropete/Contents/Resources/main.css share/apps/kopete/webpresence/webpresence_html.xsl share/apps/kopete/webpresence/webpresence_html_images.xsl share/apps/kopete/webpresence/webpresence_xhtml.xsl share/apps/kopete/webpresence/webpresence_xhtml_images.xsl share/apps/kopete_contactnotes/contactnotesui.rc +share/apps/kopete_groupwise/gwchatui.rc share/apps/kopete_history/historychatui.rc share/apps/kopete_history/historyui.rc -share/apps/kopete_latex/latexchatui.rc share/apps/kopete_jabber/jabberchatui.rc -share/apps/kopete_groupwise/gwchatui.rc +share/apps/kopete_latex/latexchatui.rc share/apps/kopete_otr/otrchatui.rc share/apps/kopete_otr/otrui.rc -share/config.kcfg/kopete_otr.kcfg -share/apps/kopete_msn/msnchatui.rc share/apps/kopete_privacy/privacychatui.rc share/apps/kopete_privacy/privacyui.rc share/apps/kopete_statistics/statisticsui.rc share/apps/kopete_translator/translatorchatui.rc share/apps/kopete_translator/translatorui.rc +share/apps/kopete_wlm/wlmchatui.rc share/apps/kopete_yahoo/yahoochatui.rc share/apps/kopete_yahoo/yahooconferenceui.rc share/apps/kopete_yahoo/yahooimui.rc @@ -743,6 +796,7 @@ share/apps/kppp/Provider/Taiwan/SeedNet share/apps/kppp/Provider/Ukraine/.directory share/apps/kppp/Provider/Ukraine/Adamant share/apps/kppp/Provider/Ukraine/IPTelecom +share/apps/kppp/Provider/Ukraine/LifeEDGE share/apps/kppp/Provider/Ukraine/NuVse share/apps/kppp/Provider/United_Kingdom/.directory share/apps/kppp/Provider/United_Kingdom/Demon%032Green%0322120666 @@ -1103,8 +1157,10 @@ share/apps/krfb/krfb.notifyrc share/apps/remoteview/zeroconf.desktop share/config.kcfg/historyconfig.kcfg share/config.kcfg/kget.kcfg +share/config.kcfg/kget_contentfetchfactory.kcfg share/config.kcfg/kget_mirrorsearchfactory.kcfg share/config.kcfg/kget_multisegkiofactory.kcfg +share/config.kcfg/kopete_otr.kcfg share/config.kcfg/kopeteappearancesettings.kcfg share/config.kcfg/kopetebehaviorsettings.kcfg share/config.kcfg/kopetestatussettings.kcfg @@ -1112,6 +1168,7 @@ share/config.kcfg/krdc.kcfg share/config.kcfg/latexconfig.kcfg share/config.kcfg/nowlisteningconfig.kcfg share/config.kcfg/urlpicpreview.kcfg +share/config.kcfg/webpresenceconfig.kcfg share/config/kopeterc share/dbus-1/interfaces/org.kde.Kopete.xml share/dbus-1/interfaces/org.kde.kdnssd.xml @@ -1127,39 +1184,12 @@ share/doc/HTML/en/kget/kget2.png share/doc/HTML/en/kget/kget3.png share/doc/HTML/en/kget/kget4.png share/doc/HTML/en/kget/kget5.png -share/doc/HTML/en/knewsticker/about-icon.png -share/doc/HTML/en/knewsticker/checknews-icon.png -share/doc/HTML/en/knewsticker/common -share/doc/HTML/en/knewsticker/contextmenu.png -share/doc/HTML/en/knewsticker/help-icon.png -share/doc/HTML/en/knewsticker/index.cache.bz2 -share/doc/HTML/en/knewsticker/index.docbook -share/doc/HTML/en/knewsticker/kcmnewsticker-filters.png -share/doc/HTML/en/knewsticker/kcmnewsticker-general.png -share/doc/HTML/en/knewsticker/kcmnewsticker-newssitedialog.png -share/doc/HTML/en/knewsticker/kcmnewsticker-newssources.png -share/doc/HTML/en/knewsticker/kcmnewsticker-scrollerprefs.png -share/doc/HTML/en/knewsticker/kcontrol-icon.png -share/doc/HTML/en/knewsticker/knewsticker-childpanel.png -share/doc/HTML/en/knewsticker/knewsticker-icon.png -share/doc/HTML/en/knewsticker/knewsticker-kicker.png -share/doc/HTML/en/knewsticker/knewsticker-ownwindow.png -share/doc/HTML/en/knewsticker/newarticle-icon.png -share/doc/HTML/en/knewsticker/newssite-icon.png -share/doc/HTML/en/knewsticker/oldarticle-icon.png -share/doc/HTML/en/knewsticker/preferences-icon.png share/doc/HTML/en/kopete/chatstyle.docbook share/doc/HTML/en/kopete/common share/doc/HTML/en/kopete/index.cache.bz2 share/doc/HTML/en/kopete/index.docbook share/doc/HTML/en/kopete/menus.docbook share/doc/HTML/en/kopete/otr-auth-1.png -share/doc/HTML/en/kopete/otr-auth-2.png -share/doc/HTML/en/kopete/otr-auth-3.png -share/doc/HTML/en/kopete/otr-auth-4.png -share/doc/HTML/en/kopete/otr-auth-5.png -share/doc/HTML/en/kopete/otr-auth-6.png -share/doc/HTML/en/kopete/otr-auth-7.png share/doc/HTML/en/kopete/pipes.docbook share/doc/HTML/en/kppp/accounting.docbook share/doc/HTML/en/kppp/callback.docbook @@ -1219,18 +1249,15 @@ share/icons/hicolor/128x128/apps/kopete.png share/icons/hicolor/128x128/apps/kppp.png share/icons/hicolor/16x16/apps/kcmsambaconf.png share/icons/hicolor/16x16/apps/kget.png -share/icons/hicolor/16x16/apps/knewsticker.png share/icons/hicolor/16x16/apps/kopete.png share/icons/hicolor/16x16/apps/kppp.png share/icons/hicolor/22x22/apps/kget.png share/icons/hicolor/22x22/apps/kopete.png share/icons/hicolor/22x22/apps/kppp.png share/icons/hicolor/32x32/apps/kget.png -share/icons/hicolor/32x32/apps/knewsticker.png share/icons/hicolor/32x32/apps/kopete.png share/icons/hicolor/32x32/apps/kppp.png share/icons/hicolor/48x48/apps/kget.png -share/icons/hicolor/48x48/apps/knewsticker.png share/icons/hicolor/48x48/apps/kopete.png share/icons/hicolor/48x48/apps/kppp.png share/icons/hicolor/64x64/apps/kget.png @@ -1281,21 +1308,21 @@ share/icons/oxygen/32x32/actions/voicecall.png share/icons/oxygen/32x32/actions/webcamreceive.png share/icons/oxygen/32x32/actions/webcamsend.png share/icons/oxygen/48x48/actions/im-status-message-edit.png +share/icons/oxygen/48x48/actions/mail-encrypt.png share/icons/oxygen/48x48/actions/view-user-offline-kopete.png share/icons/oxygen/48x48/actions/voicecall.png share/icons/oxygen/48x48/actions/webcamreceive.png share/icons/oxygen/48x48/actions/webcamsend.png -share/icons/oxygen/48x48/actions/mail-encrypt.png share/icons/oxygen/64x64/actions/voicecall.png share/icons/oxygen/64x64/actions/webcamreceive.png share/icons/oxygen/64x64/actions/webcamsend.png share/icons/oxygen/scalable/actions/account_offline_overlay.svgz share/icons/oxygen/scalable/actions/im-status-message-edit.svgz +share/icons/oxygen/scalable/actions/mail-encrypt.svgz share/icons/oxygen/scalable/actions/view-user-offline-kopete.svgz share/icons/oxygen/scalable/actions/voicecall.svgz share/icons/oxygen/scalable/actions/webcamreceive.svgz share/icons/oxygen/scalable/actions/webcamsend.svgz -share/icons/oxygen/scalable/actions/mail-encrypt.svgz share/icons/oxygen/scalable/status/object-locked-finished.svgz share/icons/oxygen/scalable/status/object-locked-unverified.svgz share/icons/oxygen/scalable/status/object-locked-verified.svgz @@ -1307,11 +1334,6 @@ share/kde4/services/emailwindow.desktop share/kde4/services/fileshare.desktop share/kde4/services/fileshare_propsdlgplugin.desktop share/kde4/services/kcmsambaconf.desktop -share/kde4/services/kopete_jabber.desktop -share/kde4/services/xmpp.protocol -share/kde4/services/kopete_groupwise.desktop -share/kde4/services/kconfiguredialog/kopete_otr_config.desktop -share/kde4/services/kopete_otr.desktop share/kde4/services/kconfiguredialog/kopete_addbookmarks_config.desktop share/kde4/services/kconfiguredialog/kopete_alias_config.desktop share/kde4/services/kconfiguredialog/kopete_autoreplace_config.desktop @@ -1319,6 +1341,7 @@ share/kde4/services/kconfiguredialog/kopete_highlight_config.desktop share/kde4/services/kconfiguredialog/kopete_history_config.desktop share/kde4/services/kconfiguredialog/kopete_latex_config.desktop share/kde4/services/kconfiguredialog/kopete_nowlistening_config.desktop +share/kde4/services/kconfiguredialog/kopete_otr_config.desktop share/kde4/services/kconfiguredialog/kopete_pipes_config.desktop share/kde4/services/kconfiguredialog/kopete_privacy_config.desktop share/kde4/services/kconfiguredialog/kopete_texteffect_config.desktop @@ -1327,10 +1350,18 @@ share/kde4/services/kconfiguredialog/kopete_urlpicpreview_config.desktop share/kde4/services/kconfiguredialog/kopete_webpresence_config.desktop share/kde4/services/kded/dnssdwatcher.desktop share/kde4/services/kget_bittorrentfactory.desktop +share/kde4/services/kget_bittorrentfactory_config.desktop +share/kde4/services/kget_contentfetchfactory.desktop +share/kde4/services/kget_contentfetchfactory_config.desktop share/kde4/services/kget_kiofactory.desktop share/kde4/services/kget_metalinkfactory.desktop share/kde4/services/kget_mirrorsearchfactory.desktop +share/kde4/services/kget_mirrorsearchfactory_config.desktop share/kde4/services/kget_multisegkiofactory.desktop +share/kde4/services/kget_multisegkiofactory_config.desktop +share/kde4/services/kgetbarapplet-default.desktop +share/kde4/services/kgetpanelbarapplet-default.desktop +share/kde4/services/kgetpiechartapplet-default.desktop share/kde4/services/kopete_accountconfig.desktop share/kde4/services/kopete_addbookmarks.desktop share/kde4/services/kopete_aim.desktop @@ -1339,15 +1370,19 @@ share/kde4/services/kopete_appearanceconfig.desktop share/kde4/services/kopete_autoreplace.desktop share/kde4/services/kopete_avdeviceconfig.desktop share/kde4/services/kopete_behaviorconfig.desktop +share/kde4/services/kopete_bonjour.desktop share/kde4/services/kopete_chatwindowconfig.desktop share/kde4/services/kopete_contactnotes.desktop share/kde4/services/kopete_gadu.desktop +share/kde4/services/kopete_groupwise.desktop share/kde4/services/kopete_highlight.desktop share/kde4/services/kopete_history.desktop share/kde4/services/kopete_icq.desktop +share/kde4/services/kopete_jabber.desktop share/kde4/services/kopete_latex.desktop -share/kde4/services/kopete_msn.desktop +share/kde4/services/kopete_meanwhile.desktop share/kde4/services/kopete_nowlistening.desktop +share/kde4/services/kopete_otr.desktop share/kde4/services/kopete_pipes.desktop share/kde4/services/kopete_pluginconfig.desktop share/kde4/services/kopete_privacy.desktop @@ -1360,13 +1395,13 @@ share/kde4/services/kopete_texteffect.desktop share/kde4/services/kopete_translator.desktop share/kde4/services/kopete_urlpicpreview.desktop share/kde4/services/kopete_webpresence.desktop +share/kde4/services/kopete_wlm.desktop share/kde4/services/kopete_wp.desktop share/kde4/services/kopete_yahoo.desktop share/kde4/services/plasma-engine-kget.desktop -share/kde4/services/plasma-kget-default.desktop -share/kde4/services/plasma-knewsticker-default.desktop share/kde4/services/rdp.protocol share/kde4/services/vnc.protocol +share/kde4/services/xmpp.protocol share/kde4/services/zeroconf.protocol share/kde4/servicetypes/kget_plugin.desktop share/kde4/servicetypes/kopeteplugin.desktop @@ -1376,60 +1411,12 @@ share/sounds/Kopete_Event.ogg share/sounds/Kopete_Received.ogg share/sounds/Kopete_Sent.ogg share/sounds/Kopete_User_is_Online.ogg -@dirrmtry share/sounds -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services/kded -@dirrmtry share/kde4/services/kconfiguredialog -@dirrmtry share/kde4/services/ServiceMenus -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/oxygen/scalable/actions -@dirrmtry share/icons/oxygen/scalable -@dirrmtry share/icons/oxygen/64x64/actions -@dirrmtry share/icons/oxygen/64x64 -@dirrmtry share/icons/oxygen/48x48/actions -@dirrmtry share/icons/oxygen/48x48 -@dirrmtry share/icons/oxygen/32x32/actions -@dirrmtry share/icons/oxygen/32x32 -@dirrmtry share/icons/oxygen/22x22/mimetypes -@dirrmtry share/icons/oxygen/22x22/apps -@dirrmtry share/icons/oxygen/22x22/actions -@dirrmtry share/icons/oxygen/22x22 -@dirrmtry share/icons/oxygen/16x16/mimetypes -@dirrmtry share/icons/oxygen/16x16/actions -@dirrmtry share/icons/oxygen/16x16 -@dirrmtry share/icons/oxygen/128x128/actions -@dirrmtry share/icons/oxygen/128x128 -@dirrmtry share/icons/oxygen -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons +@dirrm share/kde4/services/kconfiguredialog @dirrm share/doc/HTML/en/krfb @dirrm share/doc/HTML/en/krdc @dirrm share/doc/HTML/en/kppp @dirrm share/doc/HTML/en/kopete -@dirrm share/doc/HTML/en/knewsticker @dirrm share/doc/HTML/en/kget -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 -@dirrmtry share/config.kcfg -@dirrmtry share/config -@dirrm share/apps/remoteview @dirrm share/apps/krfb @dirrm share/apps/krdc/pics @dirrm share/apps/krdc @@ -1509,17 +1496,18 @@ share/sounds/Kopete_User_is_Online.ogg @dirrm share/apps/kppp @dirrm share/apps/kopeterichtexteditpart @dirrm share/apps/kopete_yahoo +@dirrm share/apps/kopete_wlm @dirrm share/apps/kopete_translator @dirrm share/apps/kopete_statistics @dirrm share/apps/kopete_privacy -@dirrm share/apps/kopete_msn +@dirrm share/apps/kopete_otr @dirrm share/apps/kopete_latex +@dirrm share/apps/kopete_jabber @dirrm share/apps/kopete_history +@dirrm share/apps/kopete_groupwise @dirrm share/apps/kopete_contactnotes @dirrm share/apps/kopete/webpresence -@dirrm share/apps/kopete_groupwise -@dirrm share/apps/kopete_jabber -@dirrm share/apps/kopete_otr +@dirrm share/apps/kopete/styles/Retropete/Contents/Resources/images @dirrm share/apps/kopete/styles/Retropete/Contents/Resources/Outgoing @dirrm share/apps/kopete/styles/Retropete/Contents/Resources/Incoming @dirrm share/apps/kopete/styles/Retropete/Contents/Resources @@ -1546,6 +1534,7 @@ share/sounds/Kopete_User_is_Online.ogg @dirrm share/apps/kopete/styles/Hacker/Contents/Resources @dirrm share/apps/kopete/styles/Hacker/Contents @dirrm share/apps/kopete/styles/Hacker +@dirrm share/apps/kopete/styles/Gaim/Contents/Resources/images @dirrm share/apps/kopete/styles/Gaim/Contents/Resources/Variants @dirrm share/apps/kopete/styles/Gaim/Contents/Resources/Outgoing @dirrm share/apps/kopete/styles/Gaim/Contents/Resources/Incoming @@ -1566,6 +1555,8 @@ share/sounds/Kopete_User_is_Online.ogg @dirrm share/apps/kopete/styles/Clean/Contents @dirrm share/apps/kopete/styles/Clean @dirrm share/apps/kopete/styles +@dirrm share/apps/kopete/icons/oxygen/scalable/apps +@dirrm share/apps/kopete/icons/oxygen/scalable @dirrm share/apps/kopete/icons/oxygen/64x64/apps @dirrm share/apps/kopete/icons/oxygen/64x64/actions @dirrm share/apps/kopete/icons/oxygen/64x64 @@ -1603,16 +1594,10 @@ share/sounds/Kopete_User_is_Online.ogg @dirrm share/apps/kopete/icons/crystalsvg @dirrm share/apps/kopete/icons @dirrm share/apps/kopete -@dirrmtry share/apps/khtml/kpartplugins -@dirrmtry share/apps/khtml @dirrm share/apps/kget/www @dirrm share/apps/kget/pics +@dirrm share/apps/kget/content_fetch_scripts/youtubedl +@dirrm share/apps/kget/content_fetch_scripts @dirrm share/apps/kget -@dirrmtry share/apps/kconf_update -@dirrmtry share/apps/desktoptheme/default/widgets -@dirrmtry share/apps/desktoptheme/default -@dirrmtry share/apps/desktoptheme -@dirrmtry share/applications/kde4 -@dirrmtry share/applications @dirrm include/kopete/ui @dirrm include/kopete diff --git a/polish/kde4-l10n/distinfo b/polish/kde4-l10n/distinfo index 79eec96b897f..0dda415d1852 100644 --- a/polish/kde4-l10n/distinfo +++ b/polish/kde4-l10n/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-pl-4.1.4.tar.bz2) = dbf06430f02b44933fd78f16f445e54f -SHA256 (KDE/kde-l10n/kde-l10n-pl-4.1.4.tar.bz2) = a2c42f158dc486f77925354c1f86f9feb3f54733f054b382539bdcbc29d6e5eb -SIZE (KDE/kde-l10n/kde-l10n-pl-4.1.4.tar.bz2) = 3478414 +MD5 (KDE/kde-l10n/kde-l10n-pl-4.2.0.tar.bz2) = b04d741a53b0e1ba58d315cf118985e4 +SHA256 (KDE/kde-l10n/kde-l10n-pl-4.2.0.tar.bz2) = 2b6a91600ead9ec9a6defc30770fa49c9f1faf330a5afbcb717e0db03de44561 +SIZE (KDE/kde-l10n/kde-l10n-pl-4.2.0.tar.bz2) = 2663037 diff --git a/polish/kde4-l10n/pkg-plist b/polish/kde4-l10n/pkg-plist index ec3df8c9c99c..08b229d5a879 100644 --- a/polish/kde4-l10n/pkg-plist +++ b/polish/kde4-l10n/pkg-plist @@ -3,19 +3,9 @@ share/apps/kvtml/pl/animals.kvtml share/apps/kvtml/pl/easy.kvtml share/apps/kvtml/pl/hard.kvtml share/apps/kvtml/pl/medium.kvtml -share/doc/HTML/pl/amor/common -share/doc/HTML/pl/amor/index.cache.bz2 -share/doc/HTML/pl/amor/index.docbook share/doc/HTML/pl/ark/common share/doc/HTML/pl/ark/index.cache.bz2 share/doc/HTML/pl/ark/index.docbook -share/doc/HTML/pl/ark/man-ark.1.docbook -share/doc/HTML/pl/kaddressbook/common -share/doc/HTML/pl/kaddressbook/index.cache.bz2 -share/doc/HTML/pl/kaddressbook/index.docbook -share/doc/HTML/pl/kalarm/common -share/doc/HTML/pl/kalarm/index.cache.bz2 -share/doc/HTML/pl/kalarm/index.docbook share/doc/HTML/pl/kbruch/checked.png share/doc/HTML/pl/kbruch/common share/doc/HTML/pl/kbruch/compare.png @@ -29,92 +19,6 @@ share/doc/HTML/pl/kbruch/settings.png share/doc/HTML/pl/kcontrol/kcontrol/common share/doc/HTML/pl/kcontrol/kcontrol/index.cache.bz2 share/doc/HTML/pl/kcontrol/kcontrol/index.docbook -share/doc/HTML/pl/kdepasswd/common -share/doc/HTML/pl/kdepasswd/index.cache.bz2 -share/doc/HTML/pl/kdepasswd/index.docbook -share/doc/HTML/pl/kgeography/common -share/doc/HTML/pl/kgeography/index.cache.bz2 -share/doc/HTML/pl/kgeography/index.docbook -share/doc/HTML/pl/khelpcenter/faq/about.docbook -share/doc/HTML/pl/khelpcenter/faq/common -share/doc/HTML/pl/khelpcenter/faq/configkde.docbook -share/doc/HTML/pl/khelpcenter/faq/contrib.docbook -share/doc/HTML/pl/khelpcenter/faq/desktop.docbook -share/doc/HTML/pl/khelpcenter/faq/filemng.docbook -share/doc/HTML/pl/khelpcenter/faq/getkde.docbook -share/doc/HTML/pl/khelpcenter/faq/index.cache.bz2 -share/doc/HTML/pl/khelpcenter/faq/index.docbook -share/doc/HTML/pl/khelpcenter/faq/install.docbook -share/doc/HTML/pl/khelpcenter/faq/intro.docbook -share/doc/HTML/pl/khelpcenter/faq/kdeapps.docbook -share/doc/HTML/pl/khelpcenter/faq/misc.docbook -share/doc/HTML/pl/khelpcenter/faq/moreinfo.docbook -share/doc/HTML/pl/khelpcenter/faq/nonkdeapps.docbook -share/doc/HTML/pl/khelpcenter/faq/notrelated.docbook -share/doc/HTML/pl/khelpcenter/faq/panel.docbook -share/doc/HTML/pl/khelpcenter/faq/qt.docbook -share/doc/HTML/pl/khelpcenter/faq/questions.docbook -share/doc/HTML/pl/khelpcenter/faq/sound.docbook -share/doc/HTML/pl/khelpcenter/faq/tips.docbook -share/doc/HTML/pl/khelpcenter/faq/webbrowse.docbook -share/doc/HTML/pl/khelpcenter/faq/winmng.docbook -share/doc/HTML/pl/khelpcenter/quickstart/common -share/doc/HTML/pl/khelpcenter/quickstart/index.cache.bz2 -share/doc/HTML/pl/khelpcenter/quickstart/index.docbook -share/doc/HTML/pl/khelpcenter/userguide/accessibility.docbook -share/doc/HTML/pl/khelpcenter/userguide/base-kde-applications.docbook -share/doc/HTML/pl/khelpcenter/userguide/browser-fine-tuning.docbook -share/doc/HTML/pl/khelpcenter/userguide/burning-cds.docbook -share/doc/HTML/pl/khelpcenter/userguide/common -share/doc/HTML/pl/khelpcenter/userguide/control-center.docbook -share/doc/HTML/pl/khelpcenter/userguide/creating-graphics.docbook -share/doc/HTML/pl/khelpcenter/userguide/credits-and-license.docbook -share/doc/HTML/pl/khelpcenter/userguide/customizing-desktop.docbook -share/doc/HTML/pl/khelpcenter/userguide/email.docbook -share/doc/HTML/pl/khelpcenter/userguide/extragear-applications.docbook -share/doc/HTML/pl/khelpcenter/userguide/file-sharing.docbook -share/doc/HTML/pl/khelpcenter/userguide/font-installation.docbook -share/doc/HTML/pl/khelpcenter/userguide/getting-help.docbook -share/doc/HTML/pl/khelpcenter/userguide/glossary.docbook -share/doc/HTML/pl/khelpcenter/userguide/groupware-kontact.docbook -share/doc/HTML/pl/khelpcenter/userguide/index.cache.bz2 -share/doc/HTML/pl/khelpcenter/userguide/index.docbook -share/doc/HTML/pl/khelpcenter/userguide/internet-shortcuts.docbook -share/doc/HTML/pl/khelpcenter/userguide/kde-as-root.docbook -share/doc/HTML/pl/khelpcenter/userguide/kde-edutainment.docbook -share/doc/HTML/pl/khelpcenter/userguide/kde-for-admins.docbook -share/doc/HTML/pl/khelpcenter/userguide/kde-office.docbook -share/doc/HTML/pl/khelpcenter/userguide/konsole-intro.docbook -share/doc/HTML/pl/khelpcenter/userguide/messaging-intro.docbook -share/doc/HTML/pl/khelpcenter/userguide/migrator-applications.docbook -share/doc/HTML/pl/khelpcenter/userguide/migrator-dictionary.docbook -share/doc/HTML/pl/khelpcenter/userguide/net-connection-setup.docbook -share/doc/HTML/pl/khelpcenter/userguide/networking-with-windows.docbook -share/doc/HTML/pl/khelpcenter/userguide/panel-and-desktop.docbook -share/doc/HTML/pl/khelpcenter/userguide/pdf-files.docbook -share/doc/HTML/pl/khelpcenter/userguide/playing-audiocds.docbook -share/doc/HTML/pl/khelpcenter/userguide/playing-movies.docbook -share/doc/HTML/pl/khelpcenter/userguide/playing-music.docbook -share/doc/HTML/pl/khelpcenter/userguide/printer-setup.docbook -share/doc/HTML/pl/khelpcenter/userguide/printing-from-apps.docbook -share/doc/HTML/pl/khelpcenter/userguide/programs-and-documents.docbook -share/doc/HTML/pl/khelpcenter/userguide/programs-controlling.docbook -share/doc/HTML/pl/khelpcenter/userguide/removable-disks.docbook -share/doc/HTML/pl/khelpcenter/userguide/screen-captures.docbook -share/doc/HTML/pl/khelpcenter/userguide/shared-sessions.docbook -share/doc/HTML/pl/khelpcenter/userguide/standard-menu-entries.docbook -share/doc/HTML/pl/khelpcenter/userguide/switching-sessions.docbook -share/doc/HTML/pl/khelpcenter/userguide/the-filemanager.docbook -share/doc/HTML/pl/khelpcenter/userguide/troubleshooting-network-x.docbook -share/doc/HTML/pl/khelpcenter/userguide/troubleshooting-no-open.docbook -share/doc/HTML/pl/khelpcenter/userguide/under-the-hood.docbook -share/doc/HTML/pl/khelpcenter/userguide/usenet.docbook -share/doc/HTML/pl/khelpcenter/userguide/where-next.docbook -share/doc/HTML/pl/khelpcenter/userguide/windows-how-to.docbook -share/doc/HTML/pl/khelpcenter/userguide/your-kde-account.docbook -share/doc/HTML/pl/khelpcenter/visualdict/common -share/doc/HTML/pl/khelpcenter/visualdict/index.cache.bz2 -share/doc/HTML/pl/khelpcenter/visualdict/index.docbook share/doc/HTML/pl/klettres/common share/doc/HTML/pl/klettres/index.cache.bz2 share/doc/HTML/pl/klettres/index.docbook @@ -123,70 +27,9 @@ share/doc/HTML/pl/klettres/klettres2.png share/doc/HTML/pl/klettres/klettres3.png share/doc/HTML/pl/klettres/klettres4.png share/doc/HTML/pl/klettres/klettres5.png -share/doc/HTML/pl/kmail/common -share/doc/HTML/pl/kmail/configure.docbook -share/doc/HTML/pl/kmail/credits-and-licenses.docbook -share/doc/HTML/pl/kmail/faq.docbook -share/doc/HTML/pl/kmail/getting-started.docbook -share/doc/HTML/pl/kmail/importing.docbook -share/doc/HTML/pl/kmail/index.cache.bz2 -share/doc/HTML/pl/kmail/index.docbook -share/doc/HTML/pl/kmail/intro.docbook -share/doc/HTML/pl/kmail/menus.docbook -share/doc/HTML/pl/kmail/using-kmail.docbook -share/doc/HTML/pl/kmplot/commands.docbook -share/doc/HTML/pl/kmplot/common -share/doc/HTML/pl/kmplot/configuration.docbook -share/doc/HTML/pl/kmplot/credits.docbook -share/doc/HTML/pl/kmplot/dcop.docbook -share/doc/HTML/pl/kmplot/developer.docbook -share/doc/HTML/pl/kmplot/firststeps.docbook -share/doc/HTML/pl/kmplot/index.cache.bz2 -share/doc/HTML/pl/kmplot/index.docbook -share/doc/HTML/pl/kmplot/install.docbook -share/doc/HTML/pl/kmplot/introduction.docbook -share/doc/HTML/pl/kmplot/menu.docbook -share/doc/HTML/pl/kmplot/reference.docbook -share/doc/HTML/pl/kmplot/using.docbook share/doc/HTML/pl/kollision/common share/doc/HTML/pl/kollision/index.cache.bz2 share/doc/HTML/pl/kollision/index.docbook -share/doc/HTML/pl/konqueror/basics.docbook -share/doc/HTML/pl/konqueror/bookmarks.docbook -share/doc/HTML/pl/konqueror/browser.docbook -share/doc/HTML/pl/konqueror/commands.docbook -share/doc/HTML/pl/konqueror/common -share/doc/HTML/pl/konqueror/config.docbook -share/doc/HTML/pl/konqueror/credits.docbook -share/doc/HTML/pl/konqueror/faq.docbook -share/doc/HTML/pl/konqueror/filemanager.docbook -share/doc/HTML/pl/konqueror/index.cache.bz2 -share/doc/HTML/pl/konqueror/index.docbook -share/doc/HTML/pl/konqueror/introduction.docbook -share/doc/HTML/pl/konqueror/man-kbookmarkmerger.1.docbook -share/doc/HTML/pl/konqueror/path-complete.docbook -share/doc/HTML/pl/konqueror/plugins.docbook -share/doc/HTML/pl/konqueror/save-settings.docbook -share/doc/HTML/pl/konqueror/sidebar.docbook -share/doc/HTML/pl/kpercentage/answer.png -share/doc/HTML/pl/kpercentage/commands.docbook -share/doc/HTML/pl/kpercentage/common -share/doc/HTML/pl/kpercentage/credits.docbook -share/doc/HTML/pl/kpercentage/devel.docbook -share/doc/HTML/pl/kpercentage/faq.docbook -share/doc/HTML/pl/kpercentage/help.png -share/doc/HTML/pl/kpercentage/index.cache.bz2 -share/doc/HTML/pl/kpercentage/index.docbook -share/doc/HTML/pl/kpercentage/install.docbook -share/doc/HTML/pl/kpercentage/introduction.docbook -share/doc/HTML/pl/kpercentage/using.docbook -share/doc/HTML/pl/kpercentage/welcome.png -share/doc/HTML/pl/kteatime/common -share/doc/HTML/pl/kteatime/index.cache.bz2 -share/doc/HTML/pl/kteatime/index.docbook -share/doc/HTML/pl/ktnef/common -share/doc/HTML/pl/ktnef/index.cache.bz2 -share/doc/HTML/pl/ktnef/index.docbook share/doc/HTML/pl/ktouch/common share/doc/HTML/pl/ktouch/index.cache.bz2 share/doc/HTML/pl/ktouch/index.docbook @@ -199,15 +42,9 @@ share/doc/HTML/pl/kwallet/edit1.png share/doc/HTML/pl/kwallet/index.cache.bz2 share/doc/HTML/pl/kwallet/index.docbook share/doc/HTML/pl/kwallet/kwalletmanager.png -share/doc/HTML/pl/kwatchgnupg/common -share/doc/HTML/pl/kwatchgnupg/index.cache.bz2 -share/doc/HTML/pl/kwatchgnupg/index.docbook share/doc/HTML/pl/kwordquiz/common share/doc/HTML/pl/kwordquiz/index.cache.bz2 share/doc/HTML/pl/kwordquiz/index.docbook -share/doc/HTML/pl/okular/common -share/doc/HTML/pl/okular/index.cache.bz2 -share/doc/HTML/pl/okular/index.docbook share/locale/pl/LC_MESSAGES/akonaditray.mo share/locale/pl/LC_MESSAGES/akregator.mo share/locale/pl/LC_MESSAGES/amor.mo @@ -216,6 +53,7 @@ share/locale/pl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pl/LC_MESSAGES/audiorename_plugin.mo share/locale/pl/LC_MESSAGES/blinken.mo +share/locale/pl/LC_MESSAGES/bomber.mo share/locale/pl/LC_MESSAGES/bovo.mo share/locale/pl/LC_MESSAGES/cervisia.mo share/locale/pl/LC_MESSAGES/cvsservice.mo @@ -243,7 +81,9 @@ share/locale/pl/LC_MESSAGES/kaddressbook.mo share/locale/pl/LC_MESSAGES/kalarm.mo share/locale/pl/LC_MESSAGES/kalgebra.mo share/locale/pl/LC_MESSAGES/kalzium.mo +share/locale/pl/LC_MESSAGES/kalzium_qt.mo share/locale/pl/LC_MESSAGES/kanagram.mo +share/locale/pl/LC_MESSAGES/kapman.mo share/locale/pl/LC_MESSAGES/kappfinder.mo share/locale/pl/LC_MESSAGES/kapptemplate.mo share/locale/pl/LC_MESSAGES/kate.mo @@ -257,7 +97,6 @@ share/locale/pl/LC_MESSAGES/kateinsertcommand.mo share/locale/pl/LC_MESSAGES/katekjswrapper.mo share/locale/pl/LC_MESSAGES/katekonsoleplugin.mo share/locale/pl/LC_MESSAGES/katemailfilesplugin.mo -share/locale/pl/LC_MESSAGES/katemake.mo share/locale/pl/LC_MESSAGES/kateopenheader.mo share/locale/pl/LC_MESSAGES/katepart4.mo share/locale/pl/LC_MESSAGES/katepybrowse.mo @@ -276,14 +115,14 @@ share/locale/pl/LC_MESSAGES/kblocks.mo share/locale/pl/LC_MESSAGES/kbounce.mo share/locale/pl/LC_MESSAGES/kbreakout.mo share/locale/pl/LC_MESSAGES/kbruch.mo -share/locale/pl/LC_MESSAGES/kbstateapplet.mo share/locale/pl/LC_MESSAGES/kbugbuster.mo share/locale/pl/LC_MESSAGES/kcachegrind.mo share/locale/pl/LC_MESSAGES/kcalc.mo share/locale/pl/LC_MESSAGES/kcertpart.mo share/locale/pl/LC_MESSAGES/kcharselect.mo -share/locale/pl/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/pl/LC_MESSAGES/kcm_akonadi.mo share/locale/pl/LC_MESSAGES/kcm_autostart.mo +share/locale/pl/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/pl/LC_MESSAGES/kcm_emoticons.mo share/locale/pl/LC_MESSAGES/kcm_krfb.mo share/locale/pl/LC_MESSAGES/kcm_kwindesktop.mo @@ -293,6 +132,7 @@ share/locale/pl/LC_MESSAGES/kcm_pci.mo share/locale/pl/LC_MESSAGES/kcm_phonon.mo share/locale/pl/LC_MESSAGES/kcm_phononxine.mo share/locale/pl/LC_MESSAGES/kcm_solid.mo +share/locale/pl/LC_MESSAGES/kcm_standard_actions.mo share/locale/pl/LC_MESSAGES/kcmaccess.mo share/locale/pl/LC_MESSAGES/kcmaudiocd.mo share/locale/pl/LC_MESSAGES/kcmbackground.mo @@ -342,7 +182,6 @@ share/locale/pl/LC_MESSAGES/kcmsmartcard.mo share/locale/pl/LC_MESSAGES/kcmsmserver.mo share/locale/pl/LC_MESSAGES/kcmsolidproc.mo share/locale/pl/LC_MESSAGES/kcmstyle.mo -share/locale/pl/LC_MESSAGES/kcmtaskbar.mo share/locale/pl/LC_MESSAGES/kcmusb.mo share/locale/pl/LC_MESSAGES/kcmview1394.mo share/locale/pl/LC_MESSAGES/kcmxinerama.mo @@ -350,7 +189,9 @@ share/locale/pl/LC_MESSAGES/kcolorchooser.mo share/locale/pl/LC_MESSAGES/kcron.mo share/locale/pl/LC_MESSAGES/kdat.mo share/locale/pl/LC_MESSAGES/kde-menu.mo +share/locale/pl/LC_MESSAGES/kdeasciiquarium.mo share/locale/pl/LC_MESSAGES/kdebugdialog.mo +share/locale/pl/LC_MESSAGES/kded_phononserver.mo share/locale/pl/LC_MESSAGES/kdelibs4.mo share/locale/pl/LC_MESSAGES/kdelibs_colors4.mo share/locale/pl/LC_MESSAGES/kdepasswd.mo @@ -414,8 +255,10 @@ share/locale/pl/LC_MESSAGES/kimagemapeditor.mo share/locale/pl/LC_MESSAGES/kinetd.mo share/locale/pl/LC_MESSAGES/kinfocenter.mo share/locale/pl/LC_MESSAGES/kio4.mo +share/locale/pl/LC_MESSAGES/kio_applications.mo share/locale/pl/LC_MESSAGES/kio_archive.mo share/locale/pl/LC_MESSAGES/kio_audiocd.mo +share/locale/pl/LC_MESSAGES/kio_bookmarks.mo share/locale/pl/LC_MESSAGES/kio_finger.mo share/locale/pl/LC_MESSAGES/kio_fish.mo share/locale/pl/LC_MESSAGES/kio_floppy.mo @@ -426,11 +269,11 @@ share/locale/pl/LC_MESSAGES/kio_jabberdisco.mo share/locale/pl/LC_MESSAGES/kio_ldap.mo share/locale/pl/LC_MESSAGES/kio_man.mo share/locale/pl/LC_MESSAGES/kio_mbox.mo +share/locale/pl/LC_MESSAGES/kio_nepomuksearch.mo share/locale/pl/LC_MESSAGES/kio_nfs.mo share/locale/pl/LC_MESSAGES/kio_nntp.mo share/locale/pl/LC_MESSAGES/kio_pop3.mo share/locale/pl/LC_MESSAGES/kio_remote.mo -share/locale/pl/LC_MESSAGES/kio_settings.mo share/locale/pl/LC_MESSAGES/kio_sftp.mo share/locale/pl/LC_MESSAGES/kio_sieve.mo share/locale/pl/LC_MESSAGES/kio_smb.mo @@ -493,7 +336,6 @@ share/locale/pl/LC_MESSAGES/kpackage.mo share/locale/pl/LC_MESSAGES/kpartsaver.mo share/locale/pl/LC_MESSAGES/kpasswdserver.mo share/locale/pl/LC_MESSAGES/kpat.mo -share/locale/pl/LC_MESSAGES/kpercentage.mo share/locale/pl/LC_MESSAGES/kpilot.mo share/locale/pl/LC_MESSAGES/kppp.mo share/locale/pl/LC_MESSAGES/kppplogview.mo @@ -517,15 +359,6 @@ share/locale/pl/LC_MESSAGES/kreversi.mo share/locale/pl/LC_MESSAGES/krfb.mo share/locale/pl/LC_MESSAGES/kruler.mo share/locale/pl/LC_MESSAGES/krunner.mo -share/locale/pl/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/pl/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/pl/LC_MESSAGES/krunner_contacts.mo -share/locale/pl/LC_MESSAGES/krunner_converterrunner.mo -share/locale/pl/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/pl/LC_MESSAGES/krunner_sessions.mo -share/locale/pl/LC_MESSAGES/krunner_shellrunner.mo -share/locale/pl/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/pl/LC_MESSAGES/krunner_xesam.mo share/locale/pl/LC_MESSAGES/ksame.mo share/locale/pl/LC_MESSAGES/ksaneplugin.mo share/locale/pl/LC_MESSAGES/ksayit.mo @@ -547,6 +380,7 @@ share/locale/pl/LC_MESSAGES/kstyle_keramik_config.mo share/locale/pl/LC_MESSAGES/kstyle_phase_config.mo share/locale/pl/LC_MESSAGES/ksudoku.mo share/locale/pl/LC_MESSAGES/ksysguard.mo +share/locale/pl/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/pl/LC_MESSAGES/ksystemlog.mo share/locale/pl/LC_MESSAGES/ksystraycmd.mo share/locale/pl/LC_MESSAGES/ksysv.mo @@ -556,7 +390,6 @@ share/locale/pl/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/pl/LC_MESSAGES/kthememanager.mo share/locale/pl/LC_MESSAGES/ktimer.mo share/locale/pl/LC_MESSAGES/ktimetracker.mo -share/locale/pl/LC_MESSAGES/ktnef.mo share/locale/pl/LC_MESSAGES/ktouch.mo share/locale/pl/LC_MESSAGES/ktraderclient.mo share/locale/pl/LC_MESSAGES/kttsd.mo @@ -568,6 +401,7 @@ share/locale/pl/LC_MESSAGES/kuiserver.mo share/locale/pl/LC_MESSAGES/kuiviewer.mo share/locale/pl/LC_MESSAGES/kurifilter.mo share/locale/pl/LC_MESSAGES/kuser.mo +share/locale/pl/LC_MESSAGES/kwalletd.mo share/locale/pl/LC_MESSAGES/kwalletmanager.mo share/locale/pl/LC_MESSAGES/kwatchgnupg.mo share/locale/pl/LC_MESSAGES/kweather.mo @@ -614,11 +448,14 @@ share/locale/pl/LC_MESSAGES/libmailtransport.mo share/locale/pl/LC_MESSAGES/liboktetacore.mo share/locale/pl/LC_MESSAGES/libphonon.mo share/locale/pl/LC_MESSAGES/libplasma.mo +share/locale/pl/LC_MESSAGES/libplasmaclock.mo share/locale/pl/LC_MESSAGES/libtaskmanager.mo share/locale/pl/LC_MESSAGES/lokalize.mo share/locale/pl/LC_MESSAGES/lskat.mo share/locale/pl/LC_MESSAGES/marble.mo +share/locale/pl/LC_MESSAGES/marble_qt.mo share/locale/pl/LC_MESSAGES/nepomuk.mo +share/locale/pl/LC_MESSAGES/nepomuksearch.mo share/locale/pl/LC_MESSAGES/nsplugin.mo share/locale/pl/LC_MESSAGES/okteta.mo share/locale/pl/LC_MESSAGES/oktetapart.mo @@ -640,10 +477,14 @@ share/locale/pl/LC_MESSAGES/parley.mo share/locale/pl/LC_MESSAGES/phonon-xine.mo share/locale/pl/LC_MESSAGES/phonon_gstreamer.mo share/locale/pl/LC_MESSAGES/phonon_kde.mo +share/locale/pl/LC_MESSAGES/plasma-overlay.mo +share/locale/pl/LC_MESSAGES/plasma-shells-common.mo share/locale/pl/LC_MESSAGES/plasma.mo share/locale/pl/LC_MESSAGES/plasma_applet_battery.mo +share/locale/pl/LC_MESSAGES/plasma_applet_bball.mo share/locale/pl/LC_MESSAGES/plasma_applet_binaryclock.mo share/locale/pl/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/pl/LC_MESSAGES/plasma_applet_charselect.mo share/locale/pl/LC_MESSAGES/plasma_applet_clock.mo share/locale/pl/LC_MESSAGES/plasma_applet_comic.mo share/locale/pl/LC_MESSAGES/plasma_applet_desktop.mo @@ -655,26 +496,56 @@ share/locale/pl/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/pl/LC_MESSAGES/plasma_applet_folderview.mo share/locale/pl/LC_MESSAGES/plasma_applet_frame.mo share/locale/pl/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/pl/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/pl/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/pl/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/pl/LC_MESSAGES/plasma_applet_katesession.mo share/locale/pl/LC_MESSAGES/plasma_applet_kget.mo -share/locale/pl/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/pl/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/pl/LC_MESSAGES/plasma_applet_launcher.mo share/locale/pl/LC_MESSAGES/plasma_applet_luna.mo +share/locale/pl/LC_MESSAGES/plasma_applet_news.mo share/locale/pl/LC_MESSAGES/plasma_applet_notes.mo share/locale/pl/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/pl/LC_MESSAGES/plasma_applet_pager.mo share/locale/pl/LC_MESSAGES/plasma_applet_panel.mo +share/locale/pl/LC_MESSAGES/plasma_applet_paste.mo +share/locale/pl/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/pl/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/pl/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/pl/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/pl/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/pl/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/pl/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/pl/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/pl/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/pl/LC_MESSAGES/plasma_applet_timer.mo share/locale/pl/LC_MESSAGES/plasma_applet_trash.mo share/locale/pl/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/pl/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/pl/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/pl/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/pl/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/pl/LC_MESSAGES/plasma_engine_dict.mo +share/locale/pl/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/pl/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/pl/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/pl/LC_MESSAGES/plasma_engine_rss.mo +share/locale/pl/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/pl/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/pl/LC_MESSAGES/plasma_runner_locations.mo +share/locale/pl/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/pl/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/pl/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/pl/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/pl/LC_MESSAGES/plasma_runner_shell.mo +share/locale/pl/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/pl/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/pl/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/pl/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/pl/LC_MESSAGES/plasmaengineexplorer.mo share/locale/pl/LC_MESSAGES/plasmapkg.mo share/locale/pl/LC_MESSAGES/plasmoidviewer.mo +share/locale/pl/LC_MESSAGES/powerdevil.mo share/locale/pl/LC_MESSAGES/printer-applet.mo share/locale/pl/LC_MESSAGES/processcore.mo share/locale/pl/LC_MESSAGES/processui.mo @@ -686,10 +557,12 @@ share/locale/pl/LC_MESSAGES/solidcontrol.mo share/locale/pl/LC_MESSAGES/soliduiserver.mo share/locale/pl/LC_MESSAGES/spy.mo share/locale/pl/LC_MESSAGES/step.mo +share/locale/pl/LC_MESSAGES/step_qt.mo share/locale/pl/LC_MESSAGES/strigila_diff.mo share/locale/pl/LC_MESSAGES/superkaramba.mo share/locale/pl/LC_MESSAGES/svgpart.mo share/locale/pl/LC_MESSAGES/sweeper.mo +share/locale/pl/LC_MESSAGES/system-config-printer-kde.mo share/locale/pl/LC_MESSAGES/systemsettings.mo share/locale/pl/LC_MESSAGES/timezones4.mo share/locale/pl/LC_MESSAGES/umbrello.mo @@ -699,34 +572,16 @@ share/locale/pl/LC_SCRIPTS/kgeography/kgeography.js share/locale/pl/entry.desktop @dirrm share/locale/pl/LC_SCRIPTS/kgeography @dirrm share/locale/pl/LC_SCRIPTS -@dirrm share/doc/HTML/pl/okular @dirrm share/doc/HTML/pl/kwordquiz -@dirrm share/doc/HTML/pl/kwatchgnupg @dirrm share/doc/HTML/pl/kwallet @dirrm share/doc/HTML/pl/ktuberling @dirrm share/doc/HTML/pl/ktouch -@dirrm share/doc/HTML/pl/ktnef -@dirrm share/doc/HTML/pl/kteatime -@dirrm share/doc/HTML/pl/kpercentage -@dirrm share/doc/HTML/pl/konqueror @dirrm share/doc/HTML/pl/kollision -@dirrm share/doc/HTML/pl/kmplot -@dirrm share/doc/HTML/pl/kmail @dirrm share/doc/HTML/pl/klettres -@dirrm share/doc/HTML/pl/khelpcenter/visualdict -@dirrm share/doc/HTML/pl/khelpcenter/userguide -@dirrm share/doc/HTML/pl/khelpcenter/quickstart -@dirrm share/doc/HTML/pl/khelpcenter/faq -@dirrm share/doc/HTML/pl/khelpcenter -@dirrm share/doc/HTML/pl/kgeography -@dirrm share/doc/HTML/pl/kdepasswd @dirrm share/doc/HTML/pl/kcontrol/kcontrol @dirrm share/doc/HTML/pl/kcontrol @dirrm share/doc/HTML/pl/kbruch -@dirrm share/doc/HTML/pl/kalarm -@dirrm share/doc/HTML/pl/kaddressbook @dirrm share/doc/HTML/pl/ark -@dirrm share/doc/HTML/pl/amor @dirrm share/apps/kvtml/pl @dirrm share/apps/kvtml @dirrm share/apps/khangman diff --git a/portuguese/kde4-l10n-pt_BR/Makefile b/portuguese/kde4-l10n-pt_BR/Makefile index 839153400784..fa49f0ffafc1 100644 --- a/portuguese/kde4-l10n-pt_BR/Makefile +++ b/portuguese/kde4-l10n-pt_BR/Makefile @@ -14,6 +14,9 @@ COMMENT= Brazilian messages and documentation for KDE4 KDE4_L10N= pt_BR +MANLANG= ${KDE4_L10N} +.include <${.CURDIR}/Makefile.man> + post-extract: ${MKDIR} ${WRKSRC}/build diff --git a/portuguese/kde4-l10n-pt_BR/distinfo b/portuguese/kde4-l10n-pt_BR/distinfo index 998ba80a2171..84bbad80ba75 100644 --- a/portuguese/kde4-l10n-pt_BR/distinfo +++ b/portuguese/kde4-l10n-pt_BR/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-pt_BR-4.1.4.tar.bz2) = 6f08bd872f25ff812b1f449e012b2691 -SHA256 (KDE/kde-l10n/kde-l10n-pt_BR-4.1.4.tar.bz2) = 43e0d2230f0dd92693e5586316824c788cd49934c04b8aa79272e2bdb4cb2a5a -SIZE (KDE/kde-l10n/kde-l10n-pt_BR-4.1.4.tar.bz2) = 10870499 +MD5 (KDE/kde-l10n/kde-l10n-pt_BR-4.2.0.tar.bz2) = d932254d7168016819aacc45a759592e +SHA256 (KDE/kde-l10n/kde-l10n-pt_BR-4.2.0.tar.bz2) = c0527db7e7946b345ebec507126a05b0040e310c0a990dc032c0833ac77bd0b5 +SIZE (KDE/kde-l10n/kde-l10n-pt_BR-4.2.0.tar.bz2) = 11006251 diff --git a/portuguese/kde4-l10n-pt_BR/pkg-plist b/portuguese/kde4-l10n-pt_BR/pkg-plist index 5900a5fb654e..892d0e3d4e96 100644 --- a/portuguese/kde4-l10n-pt_BR/pkg-plist +++ b/portuguese/kde4-l10n-pt_BR/pkg-plist @@ -118,6 +118,9 @@ share/doc/HTML/pt_BR/cervisia/index.cache.bz2 share/doc/HTML/pt_BR/cervisia/index.docbook share/doc/HTML/pt_BR/cervisia/mainview.png share/doc/HTML/pt_BR/cervisia/popup.png +share/doc/HTML/pt_BR/dolphin/common +share/doc/HTML/pt_BR/dolphin/index.cache.bz2 +share/doc/HTML/pt_BR/dolphin/index.docbook share/doc/HTML/pt_BR/gwenview/browse_mode.png share/doc/HTML/pt_BR/gwenview/common share/doc/HTML/pt_BR/gwenview/fullscreen_mode.png @@ -145,9 +148,6 @@ share/doc/HTML/pt_BR/kalzium/common share/doc/HTML/pt_BR/kalzium/index.cache.bz2 share/doc/HTML/pt_BR/kalzium/index.docbook share/doc/HTML/pt_BR/kalzium/man-kalzium.1.docbook -share/doc/HTML/pt_BR/kamera/common -share/doc/HTML/pt_BR/kamera/index.cache.bz2 -share/doc/HTML/pt_BR/kamera/index.docbook share/doc/HTML/pt_BR/karm/common share/doc/HTML/pt_BR/karm/index.cache.bz2 share/doc/HTML/pt_BR/karm/index.docbook @@ -181,6 +181,9 @@ share/doc/HTML/pt_BR/kcharselect/index.docbook share/doc/HTML/pt_BR/kcmlirc/common share/doc/HTML/pt_BR/kcmlirc/index.cache.bz2 share/doc/HTML/pt_BR/kcmlirc/index.docbook +share/doc/HTML/pt_BR/kcontrol/kamera/common +share/doc/HTML/pt_BR/kcontrol/kamera/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/kamera/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmktalkd/common share/doc/HTML/pt_BR/kcontrol/kcmktalkd/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmktalkd/index.docbook @@ -416,48 +419,48 @@ share/doc/HTML/pt_BR/kinfocenter/usb/index.docbook share/doc/HTML/pt_BR/kinfocenter/xserver/common share/doc/HTML/pt_BR/kinfocenter/xserver/index.cache.bz2 share/doc/HTML/pt_BR/kinfocenter/xserver/index.docbook -share/doc/HTML/pt_BR/kioslave/bzip.docbook -share/doc/HTML/pt_BR/kioslave/bzip2.docbook -share/doc/HTML/pt_BR/kioslave/cgi.docbook -share/doc/HTML/pt_BR/kioslave/common -share/doc/HTML/pt_BR/kioslave/data.docbook -share/doc/HTML/pt_BR/kioslave/file.docbook -share/doc/HTML/pt_BR/kioslave/finger.docbook -share/doc/HTML/pt_BR/kioslave/fish.docbook -share/doc/HTML/pt_BR/kioslave/floppy.docbook -share/doc/HTML/pt_BR/kioslave/ftp.docbook -share/doc/HTML/pt_BR/kioslave/gopher.docbook -share/doc/HTML/pt_BR/kioslave/gzip.docbook -share/doc/HTML/pt_BR/kioslave/help.docbook -share/doc/HTML/pt_BR/kioslave/http.docbook -share/doc/HTML/pt_BR/kioslave/https.docbook -share/doc/HTML/pt_BR/kioslave/imap.docbook -share/doc/HTML/pt_BR/kioslave/imaps.docbook -share/doc/HTML/pt_BR/kioslave/index.cache.bz2 -share/doc/HTML/pt_BR/kioslave/index.docbook -share/doc/HTML/pt_BR/kioslave/info.docbook -share/doc/HTML/pt_BR/kioslave/lan.docbook -share/doc/HTML/pt_BR/kioslave/ldap.docbook -share/doc/HTML/pt_BR/kioslave/mac.docbook -share/doc/HTML/pt_BR/kioslave/mailto.docbook -share/doc/HTML/pt_BR/kioslave/man.docbook -share/doc/HTML/pt_BR/kioslave/mrml.docbook -share/doc/HTML/pt_BR/kioslave/news.docbook -share/doc/HTML/pt_BR/kioslave/nfs.docbook -share/doc/HTML/pt_BR/kioslave/nntp.docbook -share/doc/HTML/pt_BR/kioslave/pop3.docbook -share/doc/HTML/pt_BR/kioslave/pop3s.docbook -share/doc/HTML/pt_BR/kioslave/print.docbook -share/doc/HTML/pt_BR/kioslave/rlan.docbook -share/doc/HTML/pt_BR/kioslave/rlogin.docbook -share/doc/HTML/pt_BR/kioslave/sftp.docbook -share/doc/HTML/pt_BR/kioslave/smb.docbook -share/doc/HTML/pt_BR/kioslave/smtp.docbook -share/doc/HTML/pt_BR/kioslave/tar.docbook -share/doc/HTML/pt_BR/kioslave/telnet.docbook -share/doc/HTML/pt_BR/kioslave/thumbnail.docbook -share/doc/HTML/pt_BR/kioslave/webdav.docbook -share/doc/HTML/pt_BR/kioslave/webdavs.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/bzip.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/bzip2.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/cgi.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/common +share/doc/HTML/pt_BR/kioslave/kioslave/data.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/file.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/finger.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/fish.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/floppy.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/ftp.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/gopher.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/gzip.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/help.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/http.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/https.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/imap.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/imaps.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/index.cache.bz2 +share/doc/HTML/pt_BR/kioslave/kioslave/index.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/info.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/lan.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/ldap.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/mac.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/mailto.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/man.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/mrml.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/news.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/nfs.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/nntp.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/pop3.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/pop3s.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/print.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/rlan.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/rlogin.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/sftp.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/smb.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/smtp.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/tar.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/telnet.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/thumbnail.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/webdav.docbook +share/doc/HTML/pt_BR/kioslave/kioslave/webdavs.docbook share/doc/HTML/pt_BR/kiten/common share/doc/HTML/pt_BR/kiten/index.cache.bz2 share/doc/HTML/pt_BR/kiten/index.docbook @@ -885,6 +888,9 @@ share/doc/HTML/pt_BR/kxsldbg/kxsldbg_tools.docbook share/doc/HTML/pt_BR/kxsldbg/sources.docbook share/doc/HTML/pt_BR/kxsldbg/templates.docbook share/doc/HTML/pt_BR/kxsldbg/variables.docbook +share/doc/HTML/pt_BR/lokalize/common +share/doc/HTML/pt_BR/lokalize/index.cache.bz2 +share/doc/HTML/pt_BR/lokalize/index.docbook share/doc/HTML/pt_BR/lskat/common share/doc/HTML/pt_BR/lskat/index.cache.bz2 share/doc/HTML/pt_BR/lskat/index.docbook @@ -935,6 +941,7 @@ share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt_BR/LC_MESSAGES/audiorename_plugin.mo share/locale/pt_BR/LC_MESSAGES/blinken.mo +share/locale/pt_BR/LC_MESSAGES/bomber.mo share/locale/pt_BR/LC_MESSAGES/bovo.mo share/locale/pt_BR/LC_MESSAGES/cervisia.mo share/locale/pt_BR/LC_MESSAGES/cvsservice.mo @@ -949,6 +956,7 @@ share/locale/pt_BR/LC_MESSAGES/imagerename_plugin.mo share/locale/pt_BR/LC_MESSAGES/joystick.mo share/locale/pt_BR/LC_MESSAGES/juk.mo share/locale/pt_BR/LC_MESSAGES/kabc.mo +share/locale/pt_BR/LC_MESSAGES/kabc_akonadi.mo share/locale/pt_BR/LC_MESSAGES/kabc_dir.mo share/locale/pt_BR/LC_MESSAGES/kabc_file.mo share/locale/pt_BR/LC_MESSAGES/kabc_ldapkio.mo @@ -962,10 +970,14 @@ share/locale/pt_BR/LC_MESSAGES/kaddressbook.mo share/locale/pt_BR/LC_MESSAGES/kalarm.mo share/locale/pt_BR/LC_MESSAGES/kalgebra.mo share/locale/pt_BR/LC_MESSAGES/kalzium.mo +share/locale/pt_BR/LC_MESSAGES/kalzium_qt.mo share/locale/pt_BR/LC_MESSAGES/kanagram.mo +share/locale/pt_BR/LC_MESSAGES/kapman.mo share/locale/pt_BR/LC_MESSAGES/kappfinder.mo share/locale/pt_BR/LC_MESSAGES/kapptemplate.mo +share/locale/pt_BR/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate.mo +share/locale/pt_BR/LC_MESSAGES/katebuild-plugin.mo share/locale/pt_BR/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katefiletemplates.mo @@ -976,7 +988,6 @@ share/locale/pt_BR/LC_MESSAGES/kateinsertcommand.mo share/locale/pt_BR/LC_MESSAGES/katekjswrapper.mo share/locale/pt_BR/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt_BR/LC_MESSAGES/katemailfilesplugin.mo -share/locale/pt_BR/LC_MESSAGES/katemake.mo share/locale/pt_BR/LC_MESSAGES/kateopenheader.mo share/locale/pt_BR/LC_MESSAGES/katepart4.mo share/locale/pt_BR/LC_MESSAGES/katepybrowse.mo @@ -995,14 +1006,14 @@ share/locale/pt_BR/LC_MESSAGES/kblocks.mo share/locale/pt_BR/LC_MESSAGES/kbounce.mo share/locale/pt_BR/LC_MESSAGES/kbreakout.mo share/locale/pt_BR/LC_MESSAGES/kbruch.mo -share/locale/pt_BR/LC_MESSAGES/kbstateapplet.mo share/locale/pt_BR/LC_MESSAGES/kbugbuster.mo share/locale/pt_BR/LC_MESSAGES/kcachegrind.mo share/locale/pt_BR/LC_MESSAGES/kcalc.mo share/locale/pt_BR/LC_MESSAGES/kcertpart.mo share/locale/pt_BR/LC_MESSAGES/kcharselect.mo -share/locale/pt_BR/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/pt_BR/LC_MESSAGES/kcm_akonadi.mo share/locale/pt_BR/LC_MESSAGES/kcm_autostart.mo +share/locale/pt_BR/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/pt_BR/LC_MESSAGES/kcm_emoticons.mo share/locale/pt_BR/LC_MESSAGES/kcm_krfb.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwindesktop.mo @@ -1012,6 +1023,7 @@ share/locale/pt_BR/LC_MESSAGES/kcm_pci.mo share/locale/pt_BR/LC_MESSAGES/kcm_phonon.mo share/locale/pt_BR/LC_MESSAGES/kcm_phononxine.mo share/locale/pt_BR/LC_MESSAGES/kcm_solid.mo +share/locale/pt_BR/LC_MESSAGES/kcm_standard_actions.mo share/locale/pt_BR/LC_MESSAGES/kcmaccess.mo share/locale/pt_BR/LC_MESSAGES/kcmaudiocd.mo share/locale/pt_BR/LC_MESSAGES/kcmbackground.mo @@ -1061,7 +1073,6 @@ share/locale/pt_BR/LC_MESSAGES/kcmsmartcard.mo share/locale/pt_BR/LC_MESSAGES/kcmsmserver.mo share/locale/pt_BR/LC_MESSAGES/kcmsolidproc.mo share/locale/pt_BR/LC_MESSAGES/kcmstyle.mo -share/locale/pt_BR/LC_MESSAGES/kcmtaskbar.mo share/locale/pt_BR/LC_MESSAGES/kcmusb.mo share/locale/pt_BR/LC_MESSAGES/kcmview1394.mo share/locale/pt_BR/LC_MESSAGES/kcmxinerama.mo @@ -1069,7 +1080,9 @@ share/locale/pt_BR/LC_MESSAGES/kcolorchooser.mo share/locale/pt_BR/LC_MESSAGES/kcron.mo share/locale/pt_BR/LC_MESSAGES/kdat.mo share/locale/pt_BR/LC_MESSAGES/kde-menu.mo +share/locale/pt_BR/LC_MESSAGES/kdeasciiquarium.mo share/locale/pt_BR/LC_MESSAGES/kdebugdialog.mo +share/locale/pt_BR/LC_MESSAGES/kded_phononserver.mo share/locale/pt_BR/LC_MESSAGES/kdelibs4.mo share/locale/pt_BR/LC_MESSAGES/kdelibs_colors4.mo share/locale/pt_BR/LC_MESSAGES/kdepasswd.mo @@ -1080,6 +1093,7 @@ share/locale/pt_BR/LC_MESSAGES/kdessh.mo share/locale/pt_BR/LC_MESSAGES/kdesu.mo share/locale/pt_BR/LC_MESSAGES/kdesud.mo share/locale/pt_BR/LC_MESSAGES/kdf.mo +share/locale/pt_BR/LC_MESSAGES/kdgantt.mo share/locale/pt_BR/LC_MESSAGES/kdgantt1.mo share/locale/pt_BR/LC_MESSAGES/kdialog.mo share/locale/pt_BR/LC_MESSAGES/kdiamond.mo @@ -1129,12 +1143,15 @@ share/locale/pt_BR/LC_MESSAGES/khotnewstuff.mo share/locale/pt_BR/LC_MESSAGES/khtmlkttsd.mo share/locale/pt_BR/LC_MESSAGES/kiconfinder.mo share/locale/pt_BR/LC_MESSAGES/kig.mo +share/locale/pt_BR/LC_MESSAGES/killbots.mo share/locale/pt_BR/LC_MESSAGES/kimagemapeditor.mo share/locale/pt_BR/LC_MESSAGES/kinetd.mo share/locale/pt_BR/LC_MESSAGES/kinfocenter.mo share/locale/pt_BR/LC_MESSAGES/kio4.mo +share/locale/pt_BR/LC_MESSAGES/kio_applications.mo share/locale/pt_BR/LC_MESSAGES/kio_archive.mo share/locale/pt_BR/LC_MESSAGES/kio_audiocd.mo +share/locale/pt_BR/LC_MESSAGES/kio_bookmarks.mo share/locale/pt_BR/LC_MESSAGES/kio_finger.mo share/locale/pt_BR/LC_MESSAGES/kio_fish.mo share/locale/pt_BR/LC_MESSAGES/kio_floppy.mo @@ -1145,11 +1162,12 @@ share/locale/pt_BR/LC_MESSAGES/kio_jabberdisco.mo share/locale/pt_BR/LC_MESSAGES/kio_ldap.mo share/locale/pt_BR/LC_MESSAGES/kio_man.mo share/locale/pt_BR/LC_MESSAGES/kio_mbox.mo +share/locale/pt_BR/LC_MESSAGES/kio_nepomuksearch.mo share/locale/pt_BR/LC_MESSAGES/kio_nfs.mo share/locale/pt_BR/LC_MESSAGES/kio_nntp.mo +share/locale/pt_BR/LC_MESSAGES/kio_perldoc.mo share/locale/pt_BR/LC_MESSAGES/kio_pop3.mo share/locale/pt_BR/LC_MESSAGES/kio_remote.mo -share/locale/pt_BR/LC_MESSAGES/kio_settings.mo share/locale/pt_BR/LC_MESSAGES/kio_sftp.mo share/locale/pt_BR/LC_MESSAGES/kio_sieve.mo share/locale/pt_BR/LC_MESSAGES/kio_smb.mo @@ -1209,10 +1227,10 @@ share/locale/pt_BR/LC_MESSAGES/kopete.mo share/locale/pt_BR/LC_MESSAGES/korganizer.mo share/locale/pt_BR/LC_MESSAGES/korn.mo share/locale/pt_BR/LC_MESSAGES/kpackage.mo +share/locale/pt_BR/LC_MESSAGES/kpartloader.mo share/locale/pt_BR/LC_MESSAGES/kpartsaver.mo share/locale/pt_BR/LC_MESSAGES/kpasswdserver.mo share/locale/pt_BR/LC_MESSAGES/kpat.mo -share/locale/pt_BR/LC_MESSAGES/kpercentage.mo share/locale/pt_BR/LC_MESSAGES/kpilot.mo share/locale/pt_BR/LC_MESSAGES/kppp.mo share/locale/pt_BR/LC_MESSAGES/kppplogview.mo @@ -1236,20 +1254,12 @@ share/locale/pt_BR/LC_MESSAGES/kreversi.mo share/locale/pt_BR/LC_MESSAGES/krfb.mo share/locale/pt_BR/LC_MESSAGES/kruler.mo share/locale/pt_BR/LC_MESSAGES/krunner.mo -share/locale/pt_BR/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/pt_BR/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/pt_BR/LC_MESSAGES/krunner_contacts.mo -share/locale/pt_BR/LC_MESSAGES/krunner_converterrunner.mo -share/locale/pt_BR/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/pt_BR/LC_MESSAGES/krunner_sessions.mo -share/locale/pt_BR/LC_MESSAGES/krunner_shellrunner.mo -share/locale/pt_BR/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/pt_BR/LC_MESSAGES/krunner_xesam.mo share/locale/pt_BR/LC_MESSAGES/ksame.mo share/locale/pt_BR/LC_MESSAGES/ksaneplugin.mo share/locale/pt_BR/LC_MESSAGES/ksayit.mo share/locale/pt_BR/LC_MESSAGES/kscd.mo share/locale/pt_BR/LC_MESSAGES/kscreensaver.mo +share/locale/pt_BR/LC_MESSAGES/ksendemail.mo share/locale/pt_BR/LC_MESSAGES/kshisen.mo share/locale/pt_BR/LC_MESSAGES/kshorturifilter.mo share/locale/pt_BR/LC_MESSAGES/ksirk.mo @@ -1266,6 +1276,7 @@ share/locale/pt_BR/LC_MESSAGES/kstyle_keramik_config.mo share/locale/pt_BR/LC_MESSAGES/kstyle_phase_config.mo share/locale/pt_BR/LC_MESSAGES/ksudoku.mo share/locale/pt_BR/LC_MESSAGES/ksysguard.mo +share/locale/pt_BR/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/pt_BR/LC_MESSAGES/ksystemlog.mo share/locale/pt_BR/LC_MESSAGES/ksystraycmd.mo share/locale/pt_BR/LC_MESSAGES/ksysv.mo @@ -1275,7 +1286,6 @@ share/locale/pt_BR/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/pt_BR/LC_MESSAGES/kthememanager.mo share/locale/pt_BR/LC_MESSAGES/ktimer.mo share/locale/pt_BR/LC_MESSAGES/ktimetracker.mo -share/locale/pt_BR/LC_MESSAGES/ktnef.mo share/locale/pt_BR/LC_MESSAGES/ktouch.mo share/locale/pt_BR/LC_MESSAGES/ktraderclient.mo share/locale/pt_BR/LC_MESSAGES/kttsd.mo @@ -1287,6 +1297,7 @@ share/locale/pt_BR/LC_MESSAGES/kuiserver.mo share/locale/pt_BR/LC_MESSAGES/kuiviewer.mo share/locale/pt_BR/LC_MESSAGES/kurifilter.mo share/locale/pt_BR/LC_MESSAGES/kuser.mo +share/locale/pt_BR/LC_MESSAGES/kwalletd.mo share/locale/pt_BR/LC_MESSAGES/kwalletmanager.mo share/locale/pt_BR/LC_MESSAGES/kwatchgnupg.mo share/locale/pt_BR/LC_MESSAGES/kweather.mo @@ -1333,11 +1344,14 @@ share/locale/pt_BR/LC_MESSAGES/libmailtransport.mo share/locale/pt_BR/LC_MESSAGES/liboktetacore.mo share/locale/pt_BR/LC_MESSAGES/libphonon.mo share/locale/pt_BR/LC_MESSAGES/libplasma.mo +share/locale/pt_BR/LC_MESSAGES/libplasmaclock.mo share/locale/pt_BR/LC_MESSAGES/libtaskmanager.mo share/locale/pt_BR/LC_MESSAGES/lokalize.mo share/locale/pt_BR/LC_MESSAGES/lskat.mo share/locale/pt_BR/LC_MESSAGES/marble.mo +share/locale/pt_BR/LC_MESSAGES/marble_qt.mo share/locale/pt_BR/LC_MESSAGES/nepomuk.mo +share/locale/pt_BR/LC_MESSAGES/nepomuksearch.mo share/locale/pt_BR/LC_MESSAGES/nsplugin.mo share/locale/pt_BR/LC_MESSAGES/okteta.mo share/locale/pt_BR/LC_MESSAGES/oktetapart.mo @@ -1347,6 +1361,7 @@ share/locale/pt_BR/LC_MESSAGES/okular_comicbook.mo share/locale/pt_BR/LC_MESSAGES/okular_djvu.mo share/locale/pt_BR/LC_MESSAGES/okular_dvi.mo share/locale/pt_BR/LC_MESSAGES/okular_epub.mo +share/locale/pt_BR/LC_MESSAGES/okular_fax.mo share/locale/pt_BR/LC_MESSAGES/okular_fictionbook.mo share/locale/pt_BR/LC_MESSAGES/okular_ghostview.mo share/locale/pt_BR/LC_MESSAGES/okular_kimgio.mo @@ -1359,10 +1374,15 @@ share/locale/pt_BR/LC_MESSAGES/parley.mo share/locale/pt_BR/LC_MESSAGES/phonon-xine.mo share/locale/pt_BR/LC_MESSAGES/phonon_gstreamer.mo share/locale/pt_BR/LC_MESSAGES/phonon_kde.mo +share/locale/pt_BR/LC_MESSAGES/plasma-overlay.mo +share/locale/pt_BR/LC_MESSAGES/plasma-shells-common.mo share/locale/pt_BR/LC_MESSAGES/plasma.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_battery.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_bball.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_charselect.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_clock.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_comic.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_desktop.mo @@ -1374,26 +1394,61 @@ share/locale/pt_BR/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_folderview.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_frame.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_katesession.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_kget.mo -share/locale/pt_BR/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_life.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_luna.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_news.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_notes.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_pager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_panel.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_paste.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_timer.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_trash.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/pt_BR/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/pt_BR/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/pt_BR/LC_MESSAGES/plasma_engine_dict.mo +share/locale/pt_BR/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/pt_BR/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/pt_BR/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/pt_BR/LC_MESSAGES/plasma_engine_rss.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_locations.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_shell.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/pt_BR/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/pt_BR/LC_MESSAGES/plasmaengineexplorer.mo share/locale/pt_BR/LC_MESSAGES/plasmapkg.mo share/locale/pt_BR/LC_MESSAGES/plasmoidviewer.mo +share/locale/pt_BR/LC_MESSAGES/powerdevil.mo share/locale/pt_BR/LC_MESSAGES/printer-applet.mo share/locale/pt_BR/LC_MESSAGES/processcore.mo share/locale/pt_BR/LC_MESSAGES/processui.mo @@ -1405,10 +1460,12 @@ share/locale/pt_BR/LC_MESSAGES/solidcontrol.mo share/locale/pt_BR/LC_MESSAGES/soliduiserver.mo share/locale/pt_BR/LC_MESSAGES/spy.mo share/locale/pt_BR/LC_MESSAGES/step.mo +share/locale/pt_BR/LC_MESSAGES/step_qt.mo share/locale/pt_BR/LC_MESSAGES/strigila_diff.mo share/locale/pt_BR/LC_MESSAGES/superkaramba.mo share/locale/pt_BR/LC_MESSAGES/svgpart.mo share/locale/pt_BR/LC_MESSAGES/sweeper.mo +share/locale/pt_BR/LC_MESSAGES/system-config-printer-kde.mo share/locale/pt_BR/LC_MESSAGES/systemsettings.mo share/locale/pt_BR/LC_MESSAGES/timezones4.mo share/locale/pt_BR/LC_MESSAGES/umbrello.mo @@ -1418,6 +1475,7 @@ share/locale/pt_BR/entry.desktop @dirrm share/doc/HTML/pt_BR/umbrello @dirrm share/doc/HTML/pt_BR/multisynk @dirrm share/doc/HTML/pt_BR/lskat +@dirrm share/doc/HTML/pt_BR/lokalize @dirrm share/doc/HTML/pt_BR/kxsldbg @dirrm share/doc/HTML/pt_BR/kxkb @dirrm share/doc/HTML/pt_BR/kwrite @@ -1488,6 +1546,7 @@ share/locale/pt_BR/entry.desktop @dirrm share/doc/HTML/pt_BR/kjumpingcube @dirrm share/doc/HTML/pt_BR/kjots @dirrm share/doc/HTML/pt_BR/kiten +@dirrm share/doc/HTML/pt_BR/kioslave/kioslave @dirrm share/doc/HTML/pt_BR/kioslave @dirrm share/doc/HTML/pt_BR/kinfocenter/xserver @dirrm share/doc/HTML/pt_BR/kinfocenter/usb @@ -1534,6 +1593,7 @@ share/locale/pt_BR/entry.desktop @dirrm share/doc/HTML/pt_BR/kcontrol/kcmlowbatwarn @dirrm share/doc/HTML/pt_BR/kcontrol/kcmlowbatcrit @dirrm share/doc/HTML/pt_BR/kcontrol/kcmktalkd +@dirrm share/doc/HTML/pt_BR/kcontrol/kamera @dirrm share/doc/HTML/pt_BR/kcontrol @dirrm share/doc/HTML/pt_BR/kcmlirc @dirrm share/doc/HTML/pt_BR/kcharselect @@ -1546,13 +1606,13 @@ share/locale/pt_BR/entry.desktop @dirrm share/doc/HTML/pt_BR/kbattleship @dirrm share/doc/HTML/pt_BR/katomic @dirrm share/doc/HTML/pt_BR/karm -@dirrm share/doc/HTML/pt_BR/kamera @dirrm share/doc/HTML/pt_BR/kalzium @dirrm share/doc/HTML/pt_BR/kalarm @dirrm share/doc/HTML/pt_BR/kaddressbook @dirrm share/doc/HTML/pt_BR/juk @dirrm share/doc/HTML/pt_BR/irkick @dirrm share/doc/HTML/pt_BR/gwenview +@dirrm share/doc/HTML/pt_BR/dolphin @dirrm share/doc/HTML/pt_BR/cervisia @dirrm share/doc/HTML/pt_BR/ark @dirrm share/doc/HTML/pt_BR/amor @@ -1563,3 +1623,6 @@ share/locale/pt_BR/entry.desktop @dirrm share/apps/klettres/pt_BR @dirrm share/apps/klettres @dirrm share/apps/khangman +@dirrmtry man/pt_BR/man6 +@dirrmtry man/pt_BR/man1 +@dirrmtry man/pt_BR diff --git a/portuguese/kde4-l10n/Makefile b/portuguese/kde4-l10n/Makefile index 11eb35b4ab26..b93bab6f6be5 100644 --- a/portuguese/kde4-l10n/Makefile +++ b/portuguese/kde4-l10n/Makefile @@ -14,6 +14,9 @@ COMMENT= Portuguese messages and documentation for KDE4 KDE4_L10N= pt +MANLANG= ${KDE4_L10N} +.include <${.CURDIR}/Makefile.man> + post-extract: ${MKDIR} ${WRKSRC}/build diff --git a/portuguese/kde4-l10n/distinfo b/portuguese/kde4-l10n/distinfo index 503ee26a3983..b672fcd383ea 100644 --- a/portuguese/kde4-l10n/distinfo +++ b/portuguese/kde4-l10n/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-pt-4.1.4.tar.bz2) = cf666b9d9e4f5e6089d3dfc04e5291ff -SHA256 (KDE/kde-l10n/kde-l10n-pt-4.1.4.tar.bz2) = dd248b8bd7623455a15132626ad602cd0da49d33e94a5629eedfbeb921564c67 -SIZE (KDE/kde-l10n/kde-l10n-pt-4.1.4.tar.bz2) = 5627240 +MD5 (KDE/kde-l10n/kde-l10n-pt-4.2.0.tar.bz2) = eabe2a528d1e9d5c10ecae15dea68d26 +SHA256 (KDE/kde-l10n/kde-l10n-pt-4.2.0.tar.bz2) = a1b33ca92f08b43b6be205b3b5a378144a2435394f07f6b211f89176dd1533c5 +SIZE (KDE/kde-l10n/kde-l10n-pt-4.2.0.tar.bz2) = 5754333 diff --git a/portuguese/kde4-l10n/pkg-plist b/portuguese/kde4-l10n/pkg-plist index e36d6efb475e..034a889f7eeb 100644 --- a/portuguese/kde4-l10n/pkg-plist +++ b/portuguese/kde4-l10n/pkg-plist @@ -240,6 +240,9 @@ share/doc/HTML/pt/kcontrol/khtml/common share/doc/HTML/pt/kcontrol/khtml/index.cache.bz2 share/doc/HTML/pt/kcontrol/khtml/index.docbook share/doc/HTML/pt/kcontrol/khtml/nsplugin.docbook +share/doc/HTML/pt/kcontrol/knetworkconf/common +share/doc/HTML/pt/kcontrol/knetworkconf/index.cache.bz2 +share/doc/HTML/pt/kcontrol/knetworkconf/index.docbook share/doc/HTML/pt/kcontrol/kthememgr/common share/doc/HTML/pt/kcontrol/kthememgr/index.cache.bz2 share/doc/HTML/pt/kcontrol/kthememgr/index.docbook @@ -510,48 +513,48 @@ share/doc/HTML/pt/kinfocenter/usb/index.docbook share/doc/HTML/pt/kinfocenter/xserver/common share/doc/HTML/pt/kinfocenter/xserver/index.cache.bz2 share/doc/HTML/pt/kinfocenter/xserver/index.docbook -share/doc/HTML/pt/kioslave/bzip.docbook -share/doc/HTML/pt/kioslave/bzip2.docbook -share/doc/HTML/pt/kioslave/cgi.docbook -share/doc/HTML/pt/kioslave/common -share/doc/HTML/pt/kioslave/data.docbook -share/doc/HTML/pt/kioslave/file.docbook -share/doc/HTML/pt/kioslave/finger.docbook -share/doc/HTML/pt/kioslave/fish.docbook -share/doc/HTML/pt/kioslave/floppy.docbook -share/doc/HTML/pt/kioslave/ftp.docbook -share/doc/HTML/pt/kioslave/gopher.docbook -share/doc/HTML/pt/kioslave/gzip.docbook -share/doc/HTML/pt/kioslave/help.docbook -share/doc/HTML/pt/kioslave/http.docbook -share/doc/HTML/pt/kioslave/https.docbook -share/doc/HTML/pt/kioslave/imap.docbook -share/doc/HTML/pt/kioslave/imaps.docbook -share/doc/HTML/pt/kioslave/index.cache.bz2 -share/doc/HTML/pt/kioslave/index.docbook -share/doc/HTML/pt/kioslave/info.docbook -share/doc/HTML/pt/kioslave/lan.docbook -share/doc/HTML/pt/kioslave/ldap.docbook -share/doc/HTML/pt/kioslave/mac.docbook -share/doc/HTML/pt/kioslave/mailto.docbook -share/doc/HTML/pt/kioslave/man.docbook -share/doc/HTML/pt/kioslave/mrml.docbook -share/doc/HTML/pt/kioslave/news.docbook -share/doc/HTML/pt/kioslave/nfs.docbook -share/doc/HTML/pt/kioslave/nntp.docbook -share/doc/HTML/pt/kioslave/pop3.docbook -share/doc/HTML/pt/kioslave/pop3s.docbook -share/doc/HTML/pt/kioslave/print.docbook -share/doc/HTML/pt/kioslave/rlan.docbook -share/doc/HTML/pt/kioslave/rlogin.docbook -share/doc/HTML/pt/kioslave/sftp.docbook -share/doc/HTML/pt/kioslave/smb.docbook -share/doc/HTML/pt/kioslave/smtp.docbook -share/doc/HTML/pt/kioslave/tar.docbook -share/doc/HTML/pt/kioslave/telnet.docbook -share/doc/HTML/pt/kioslave/thumbnail.docbook -share/doc/HTML/pt/kioslave/webdav.docbook -share/doc/HTML/pt/kioslave/webdavs.docbook +share/doc/HTML/pt/kioslave/kioslave/bzip.docbook +share/doc/HTML/pt/kioslave/kioslave/bzip2.docbook +share/doc/HTML/pt/kioslave/kioslave/cgi.docbook +share/doc/HTML/pt/kioslave/kioslave/common +share/doc/HTML/pt/kioslave/kioslave/data.docbook +share/doc/HTML/pt/kioslave/kioslave/file.docbook +share/doc/HTML/pt/kioslave/kioslave/finger.docbook +share/doc/HTML/pt/kioslave/kioslave/fish.docbook +share/doc/HTML/pt/kioslave/kioslave/floppy.docbook +share/doc/HTML/pt/kioslave/kioslave/ftp.docbook +share/doc/HTML/pt/kioslave/kioslave/gopher.docbook +share/doc/HTML/pt/kioslave/kioslave/gzip.docbook +share/doc/HTML/pt/kioslave/kioslave/help.docbook +share/doc/HTML/pt/kioslave/kioslave/http.docbook +share/doc/HTML/pt/kioslave/kioslave/https.docbook +share/doc/HTML/pt/kioslave/kioslave/imap.docbook +share/doc/HTML/pt/kioslave/kioslave/imaps.docbook +share/doc/HTML/pt/kioslave/kioslave/index.cache.bz2 +share/doc/HTML/pt/kioslave/kioslave/index.docbook +share/doc/HTML/pt/kioslave/kioslave/info.docbook +share/doc/HTML/pt/kioslave/kioslave/lan.docbook +share/doc/HTML/pt/kioslave/kioslave/ldap.docbook +share/doc/HTML/pt/kioslave/kioslave/mac.docbook +share/doc/HTML/pt/kioslave/kioslave/mailto.docbook +share/doc/HTML/pt/kioslave/kioslave/man.docbook +share/doc/HTML/pt/kioslave/kioslave/mrml.docbook +share/doc/HTML/pt/kioslave/kioslave/news.docbook +share/doc/HTML/pt/kioslave/kioslave/nfs.docbook +share/doc/HTML/pt/kioslave/kioslave/nntp.docbook +share/doc/HTML/pt/kioslave/kioslave/pop3.docbook +share/doc/HTML/pt/kioslave/kioslave/pop3s.docbook +share/doc/HTML/pt/kioslave/kioslave/print.docbook +share/doc/HTML/pt/kioslave/kioslave/rlan.docbook +share/doc/HTML/pt/kioslave/kioslave/rlogin.docbook +share/doc/HTML/pt/kioslave/kioslave/sftp.docbook +share/doc/HTML/pt/kioslave/kioslave/smb.docbook +share/doc/HTML/pt/kioslave/kioslave/smtp.docbook +share/doc/HTML/pt/kioslave/kioslave/tar.docbook +share/doc/HTML/pt/kioslave/kioslave/telnet.docbook +share/doc/HTML/pt/kioslave/kioslave/thumbnail.docbook +share/doc/HTML/pt/kioslave/kioslave/webdav.docbook +share/doc/HTML/pt/kioslave/kioslave/webdavs.docbook share/doc/HTML/pt/kiten/common share/doc/HTML/pt/kiten/index.cache.bz2 share/doc/HTML/pt/kiten/index.docbook @@ -847,16 +850,6 @@ share/doc/HTML/pt/kstars/leapyear.docbook share/doc/HTML/pt/kstars/lightcurves.docbook share/doc/HTML/pt/kstars/luminosity.docbook share/doc/HTML/pt/kstars/magnitude.docbook -share/doc/HTML/pt/kstars/man-celestrongps.1.docbook -share/doc/HTML/pt/kstars/man-fliccd.1.docbook -share/doc/HTML/pt/kstars/man-indiserver.1.docbook -share/doc/HTML/pt/kstars/man-lx200_16.1.docbook -share/doc/HTML/pt/kstars/man-lx200autostar.1.docbook -share/doc/HTML/pt/kstars/man-lx200classic.1.docbook -share/doc/HTML/pt/kstars/man-lx200generic.1.docbook -share/doc/HTML/pt/kstars/man-temma.1.docbook -share/doc/HTML/pt/kstars/man-v4ldriver.1.docbook -share/doc/HTML/pt/kstars/man-v4lphilips.1.docbook share/doc/HTML/pt/kstars/meridian.docbook share/doc/HTML/pt/kstars/observinglist.docbook share/doc/HTML/pt/kstars/parallax.docbook @@ -988,6 +981,7 @@ share/locale/pt/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt/LC_MESSAGES/audiorename_plugin.mo share/locale/pt/LC_MESSAGES/blinken.mo +share/locale/pt/LC_MESSAGES/bomber.mo share/locale/pt/LC_MESSAGES/bovo.mo share/locale/pt/LC_MESSAGES/cervisia.mo share/locale/pt/LC_MESSAGES/cvsservice.mo @@ -1002,6 +996,7 @@ share/locale/pt/LC_MESSAGES/imagerename_plugin.mo share/locale/pt/LC_MESSAGES/joystick.mo share/locale/pt/LC_MESSAGES/juk.mo share/locale/pt/LC_MESSAGES/kabc.mo +share/locale/pt/LC_MESSAGES/kabc_akonadi.mo share/locale/pt/LC_MESSAGES/kabc_dir.mo share/locale/pt/LC_MESSAGES/kabc_file.mo share/locale/pt/LC_MESSAGES/kabc_ldapkio.mo @@ -1015,10 +1010,14 @@ share/locale/pt/LC_MESSAGES/kaddressbook.mo share/locale/pt/LC_MESSAGES/kalarm.mo share/locale/pt/LC_MESSAGES/kalgebra.mo share/locale/pt/LC_MESSAGES/kalzium.mo +share/locale/pt/LC_MESSAGES/kalzium_qt.mo share/locale/pt/LC_MESSAGES/kanagram.mo +share/locale/pt/LC_MESSAGES/kapman.mo share/locale/pt/LC_MESSAGES/kappfinder.mo share/locale/pt/LC_MESSAGES/kapptemplate.mo +share/locale/pt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt/LC_MESSAGES/kate.mo +share/locale/pt/LC_MESSAGES/katebuild-plugin.mo share/locale/pt/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt/LC_MESSAGES/katefiletemplates.mo @@ -1029,7 +1028,6 @@ share/locale/pt/LC_MESSAGES/kateinsertcommand.mo share/locale/pt/LC_MESSAGES/katekjswrapper.mo share/locale/pt/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt/LC_MESSAGES/katemailfilesplugin.mo -share/locale/pt/LC_MESSAGES/katemake.mo share/locale/pt/LC_MESSAGES/kateopenheader.mo share/locale/pt/LC_MESSAGES/katepart4.mo share/locale/pt/LC_MESSAGES/katepybrowse.mo @@ -1048,14 +1046,14 @@ share/locale/pt/LC_MESSAGES/kblocks.mo share/locale/pt/LC_MESSAGES/kbounce.mo share/locale/pt/LC_MESSAGES/kbreakout.mo share/locale/pt/LC_MESSAGES/kbruch.mo -share/locale/pt/LC_MESSAGES/kbstateapplet.mo share/locale/pt/LC_MESSAGES/kbugbuster.mo share/locale/pt/LC_MESSAGES/kcachegrind.mo share/locale/pt/LC_MESSAGES/kcalc.mo share/locale/pt/LC_MESSAGES/kcertpart.mo share/locale/pt/LC_MESSAGES/kcharselect.mo -share/locale/pt/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/pt/LC_MESSAGES/kcm_akonadi.mo share/locale/pt/LC_MESSAGES/kcm_autostart.mo +share/locale/pt/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/pt/LC_MESSAGES/kcm_emoticons.mo share/locale/pt/LC_MESSAGES/kcm_krfb.mo share/locale/pt/LC_MESSAGES/kcm_kwindesktop.mo @@ -1065,6 +1063,7 @@ share/locale/pt/LC_MESSAGES/kcm_pci.mo share/locale/pt/LC_MESSAGES/kcm_phonon.mo share/locale/pt/LC_MESSAGES/kcm_phononxine.mo share/locale/pt/LC_MESSAGES/kcm_solid.mo +share/locale/pt/LC_MESSAGES/kcm_standard_actions.mo share/locale/pt/LC_MESSAGES/kcmaccess.mo share/locale/pt/LC_MESSAGES/kcmaudiocd.mo share/locale/pt/LC_MESSAGES/kcmbackground.mo @@ -1114,7 +1113,6 @@ share/locale/pt/LC_MESSAGES/kcmsmartcard.mo share/locale/pt/LC_MESSAGES/kcmsmserver.mo share/locale/pt/LC_MESSAGES/kcmsolidproc.mo share/locale/pt/LC_MESSAGES/kcmstyle.mo -share/locale/pt/LC_MESSAGES/kcmtaskbar.mo share/locale/pt/LC_MESSAGES/kcmusb.mo share/locale/pt/LC_MESSAGES/kcmview1394.mo share/locale/pt/LC_MESSAGES/kcmxinerama.mo @@ -1122,7 +1120,9 @@ share/locale/pt/LC_MESSAGES/kcolorchooser.mo share/locale/pt/LC_MESSAGES/kcron.mo share/locale/pt/LC_MESSAGES/kdat.mo share/locale/pt/LC_MESSAGES/kde-menu.mo +share/locale/pt/LC_MESSAGES/kdeasciiquarium.mo share/locale/pt/LC_MESSAGES/kdebugdialog.mo +share/locale/pt/LC_MESSAGES/kded_phononserver.mo share/locale/pt/LC_MESSAGES/kdelibs4.mo share/locale/pt/LC_MESSAGES/kdelibs_colors4.mo share/locale/pt/LC_MESSAGES/kdepasswd.mo @@ -1133,6 +1133,7 @@ share/locale/pt/LC_MESSAGES/kdessh.mo share/locale/pt/LC_MESSAGES/kdesu.mo share/locale/pt/LC_MESSAGES/kdesud.mo share/locale/pt/LC_MESSAGES/kdf.mo +share/locale/pt/LC_MESSAGES/kdgantt.mo share/locale/pt/LC_MESSAGES/kdgantt1.mo share/locale/pt/LC_MESSAGES/kdialog.mo share/locale/pt/LC_MESSAGES/kdiamond.mo @@ -1182,12 +1183,15 @@ share/locale/pt/LC_MESSAGES/khotnewstuff.mo share/locale/pt/LC_MESSAGES/khtmlkttsd.mo share/locale/pt/LC_MESSAGES/kiconfinder.mo share/locale/pt/LC_MESSAGES/kig.mo +share/locale/pt/LC_MESSAGES/killbots.mo share/locale/pt/LC_MESSAGES/kimagemapeditor.mo share/locale/pt/LC_MESSAGES/kinetd.mo share/locale/pt/LC_MESSAGES/kinfocenter.mo share/locale/pt/LC_MESSAGES/kio4.mo +share/locale/pt/LC_MESSAGES/kio_applications.mo share/locale/pt/LC_MESSAGES/kio_archive.mo share/locale/pt/LC_MESSAGES/kio_audiocd.mo +share/locale/pt/LC_MESSAGES/kio_bookmarks.mo share/locale/pt/LC_MESSAGES/kio_finger.mo share/locale/pt/LC_MESSAGES/kio_fish.mo share/locale/pt/LC_MESSAGES/kio_floppy.mo @@ -1198,11 +1202,12 @@ share/locale/pt/LC_MESSAGES/kio_jabberdisco.mo share/locale/pt/LC_MESSAGES/kio_ldap.mo share/locale/pt/LC_MESSAGES/kio_man.mo share/locale/pt/LC_MESSAGES/kio_mbox.mo +share/locale/pt/LC_MESSAGES/kio_nepomuksearch.mo share/locale/pt/LC_MESSAGES/kio_nfs.mo share/locale/pt/LC_MESSAGES/kio_nntp.mo +share/locale/pt/LC_MESSAGES/kio_perldoc.mo share/locale/pt/LC_MESSAGES/kio_pop3.mo share/locale/pt/LC_MESSAGES/kio_remote.mo -share/locale/pt/LC_MESSAGES/kio_settings.mo share/locale/pt/LC_MESSAGES/kio_sftp.mo share/locale/pt/LC_MESSAGES/kio_sieve.mo share/locale/pt/LC_MESSAGES/kio_smb.mo @@ -1262,10 +1267,10 @@ share/locale/pt/LC_MESSAGES/kopete.mo share/locale/pt/LC_MESSAGES/korganizer.mo share/locale/pt/LC_MESSAGES/korn.mo share/locale/pt/LC_MESSAGES/kpackage.mo +share/locale/pt/LC_MESSAGES/kpartloader.mo share/locale/pt/LC_MESSAGES/kpartsaver.mo share/locale/pt/LC_MESSAGES/kpasswdserver.mo share/locale/pt/LC_MESSAGES/kpat.mo -share/locale/pt/LC_MESSAGES/kpercentage.mo share/locale/pt/LC_MESSAGES/kpilot.mo share/locale/pt/LC_MESSAGES/kppp.mo share/locale/pt/LC_MESSAGES/kppplogview.mo @@ -1289,20 +1294,12 @@ share/locale/pt/LC_MESSAGES/kreversi.mo share/locale/pt/LC_MESSAGES/krfb.mo share/locale/pt/LC_MESSAGES/kruler.mo share/locale/pt/LC_MESSAGES/krunner.mo -share/locale/pt/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/pt/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/pt/LC_MESSAGES/krunner_contacts.mo -share/locale/pt/LC_MESSAGES/krunner_converterrunner.mo -share/locale/pt/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/pt/LC_MESSAGES/krunner_sessions.mo -share/locale/pt/LC_MESSAGES/krunner_shellrunner.mo -share/locale/pt/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/pt/LC_MESSAGES/krunner_xesam.mo share/locale/pt/LC_MESSAGES/ksame.mo share/locale/pt/LC_MESSAGES/ksaneplugin.mo share/locale/pt/LC_MESSAGES/ksayit.mo share/locale/pt/LC_MESSAGES/kscd.mo share/locale/pt/LC_MESSAGES/kscreensaver.mo +share/locale/pt/LC_MESSAGES/ksendemail.mo share/locale/pt/LC_MESSAGES/kshisen.mo share/locale/pt/LC_MESSAGES/kshorturifilter.mo share/locale/pt/LC_MESSAGES/ksirk.mo @@ -1319,6 +1316,7 @@ share/locale/pt/LC_MESSAGES/kstyle_keramik_config.mo share/locale/pt/LC_MESSAGES/kstyle_phase_config.mo share/locale/pt/LC_MESSAGES/ksudoku.mo share/locale/pt/LC_MESSAGES/ksysguard.mo +share/locale/pt/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/pt/LC_MESSAGES/ksystemlog.mo share/locale/pt/LC_MESSAGES/ksystraycmd.mo share/locale/pt/LC_MESSAGES/ksysv.mo @@ -1328,7 +1326,6 @@ share/locale/pt/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/pt/LC_MESSAGES/kthememanager.mo share/locale/pt/LC_MESSAGES/ktimer.mo share/locale/pt/LC_MESSAGES/ktimetracker.mo -share/locale/pt/LC_MESSAGES/ktnef.mo share/locale/pt/LC_MESSAGES/ktouch.mo share/locale/pt/LC_MESSAGES/ktraderclient.mo share/locale/pt/LC_MESSAGES/kttsd.mo @@ -1340,6 +1337,7 @@ share/locale/pt/LC_MESSAGES/kuiserver.mo share/locale/pt/LC_MESSAGES/kuiviewer.mo share/locale/pt/LC_MESSAGES/kurifilter.mo share/locale/pt/LC_MESSAGES/kuser.mo +share/locale/pt/LC_MESSAGES/kwalletd.mo share/locale/pt/LC_MESSAGES/kwalletmanager.mo share/locale/pt/LC_MESSAGES/kwatchgnupg.mo share/locale/pt/LC_MESSAGES/kweather.mo @@ -1386,11 +1384,14 @@ share/locale/pt/LC_MESSAGES/libmailtransport.mo share/locale/pt/LC_MESSAGES/liboktetacore.mo share/locale/pt/LC_MESSAGES/libphonon.mo share/locale/pt/LC_MESSAGES/libplasma.mo +share/locale/pt/LC_MESSAGES/libplasmaclock.mo share/locale/pt/LC_MESSAGES/libtaskmanager.mo share/locale/pt/LC_MESSAGES/lokalize.mo share/locale/pt/LC_MESSAGES/lskat.mo share/locale/pt/LC_MESSAGES/marble.mo +share/locale/pt/LC_MESSAGES/marble_qt.mo share/locale/pt/LC_MESSAGES/nepomuk.mo +share/locale/pt/LC_MESSAGES/nepomuksearch.mo share/locale/pt/LC_MESSAGES/nsplugin.mo share/locale/pt/LC_MESSAGES/okteta.mo share/locale/pt/LC_MESSAGES/oktetapart.mo @@ -1400,6 +1401,7 @@ share/locale/pt/LC_MESSAGES/okular_comicbook.mo share/locale/pt/LC_MESSAGES/okular_djvu.mo share/locale/pt/LC_MESSAGES/okular_dvi.mo share/locale/pt/LC_MESSAGES/okular_epub.mo +share/locale/pt/LC_MESSAGES/okular_fax.mo share/locale/pt/LC_MESSAGES/okular_fictionbook.mo share/locale/pt/LC_MESSAGES/okular_ghostview.mo share/locale/pt/LC_MESSAGES/okular_kimgio.mo @@ -1412,10 +1414,15 @@ share/locale/pt/LC_MESSAGES/parley.mo share/locale/pt/LC_MESSAGES/phonon-xine.mo share/locale/pt/LC_MESSAGES/phonon_gstreamer.mo share/locale/pt/LC_MESSAGES/phonon_kde.mo +share/locale/pt/LC_MESSAGES/plasma-overlay.mo +share/locale/pt/LC_MESSAGES/plasma-shells-common.mo share/locale/pt/LC_MESSAGES/plasma.mo share/locale/pt/LC_MESSAGES/plasma_applet_battery.mo +share/locale/pt/LC_MESSAGES/plasma_applet_bball.mo share/locale/pt/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/pt/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/pt/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/pt/LC_MESSAGES/plasma_applet_charselect.mo share/locale/pt/LC_MESSAGES/plasma_applet_clock.mo share/locale/pt/LC_MESSAGES/plasma_applet_comic.mo share/locale/pt/LC_MESSAGES/plasma_applet_desktop.mo @@ -1427,26 +1434,61 @@ share/locale/pt/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/pt/LC_MESSAGES/plasma_applet_folderview.mo share/locale/pt/LC_MESSAGES/plasma_applet_frame.mo share/locale/pt/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/pt/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/pt/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/pt/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/pt/LC_MESSAGES/plasma_applet_katesession.mo share/locale/pt/LC_MESSAGES/plasma_applet_kget.mo -share/locale/pt/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/pt/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/pt/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/pt/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/pt/LC_MESSAGES/plasma_applet_life.mo share/locale/pt/LC_MESSAGES/plasma_applet_luna.mo +share/locale/pt/LC_MESSAGES/plasma_applet_news.mo share/locale/pt/LC_MESSAGES/plasma_applet_notes.mo share/locale/pt/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/pt/LC_MESSAGES/plasma_applet_pager.mo share/locale/pt/LC_MESSAGES/plasma_applet_panel.mo +share/locale/pt/LC_MESSAGES/plasma_applet_paste.mo +share/locale/pt/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/pt/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/pt/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/pt/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/pt/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/pt/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/pt/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/pt/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/pt/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/pt/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/pt/LC_MESSAGES/plasma_applet_timer.mo share/locale/pt/LC_MESSAGES/plasma_applet_trash.mo share/locale/pt/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/pt/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/pt/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/pt/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/pt/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/pt/LC_MESSAGES/plasma_engine_dict.mo +share/locale/pt/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/pt/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/pt/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/pt/LC_MESSAGES/plasma_engine_rss.mo +share/locale/pt/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/pt/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/pt/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/pt/LC_MESSAGES/plasma_runner_locations.mo +share/locale/pt/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/pt/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/pt/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/pt/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/pt/LC_MESSAGES/plasma_runner_shell.mo +share/locale/pt/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/pt/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/pt/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/pt/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/pt/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/pt/LC_MESSAGES/plasmaengineexplorer.mo share/locale/pt/LC_MESSAGES/plasmapkg.mo share/locale/pt/LC_MESSAGES/plasmoidviewer.mo +share/locale/pt/LC_MESSAGES/powerdevil.mo share/locale/pt/LC_MESSAGES/printer-applet.mo share/locale/pt/LC_MESSAGES/processcore.mo share/locale/pt/LC_MESSAGES/processui.mo @@ -1458,10 +1500,12 @@ share/locale/pt/LC_MESSAGES/solidcontrol.mo share/locale/pt/LC_MESSAGES/soliduiserver.mo share/locale/pt/LC_MESSAGES/spy.mo share/locale/pt/LC_MESSAGES/step.mo +share/locale/pt/LC_MESSAGES/step_qt.mo share/locale/pt/LC_MESSAGES/strigila_diff.mo share/locale/pt/LC_MESSAGES/superkaramba.mo share/locale/pt/LC_MESSAGES/svgpart.mo share/locale/pt/LC_MESSAGES/sweeper.mo +share/locale/pt/LC_MESSAGES/system-config-printer-kde.mo share/locale/pt/LC_MESSAGES/systemsettings.mo share/locale/pt/LC_MESSAGES/timezones4.mo share/locale/pt/LC_MESSAGES/umbrello.mo @@ -1548,6 +1592,7 @@ share/locale/pt/entry.desktop @dirrm share/doc/HTML/pt/kjumpingcube @dirrm share/doc/HTML/pt/kjots @dirrm share/doc/HTML/pt/kiten +@dirrm share/doc/HTML/pt/kioslave/kioslave @dirrm share/doc/HTML/pt/kioslave @dirrm share/doc/HTML/pt/kinfocenter/xserver @dirrm share/doc/HTML/pt/kinfocenter/usb @@ -1614,6 +1659,7 @@ share/locale/pt/entry.desktop @dirrm share/doc/HTML/pt/kcontrol/kxkb @dirrm share/doc/HTML/pt/kcontrol/kwindecoration @dirrm share/doc/HTML/pt/kcontrol/kthememgr +@dirrm share/doc/HTML/pt/kcontrol/knetworkconf @dirrm share/doc/HTML/pt/kcontrol/khtml @dirrm share/doc/HTML/pt/kcontrol/keys @dirrm share/doc/HTML/pt/kcontrol/keyboard @@ -1685,3 +1731,6 @@ share/locale/pt/entry.desktop @dirrm share/apps/ktuberling/sounds @dirrm share/apps/ktuberling @dirrm share/apps/khangman +@dirrmtry man/pt/man6 +@dirrmtry man/pt/man1 +@dirrmtry man/pt diff --git a/russian/kde4-l10n/Makefile b/russian/kde4-l10n/Makefile index 0bebde0a41be..b6ebe8325e3c 100644 --- a/russian/kde4-l10n/Makefile +++ b/russian/kde4-l10n/Makefile @@ -14,6 +14,9 @@ COMMENT= Russian messages and documentation for KDE4 KDE4_L10N= ru +MANLANG= ${KDE4_L10N} +.include <${.CURDIR}/Makefile.man> + post-extract: ${MKDIR} ${WRKSRC}/build diff --git a/russian/kde4-l10n/distinfo b/russian/kde4-l10n/distinfo index fdeda20d7539..1052652836f1 100644 --- a/russian/kde4-l10n/distinfo +++ b/russian/kde4-l10n/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-ru-4.1.4.tar.bz2) = bf8b2f974108d722962e832e26fc00ec -SHA256 (KDE/kde-l10n/kde-l10n-ru-4.1.4.tar.bz2) = 746d7b510bb1a2199a021085610aeaaa0e7e9025083a1401efd982130693a0d3 -SIZE (KDE/kde-l10n/kde-l10n-ru-4.1.4.tar.bz2) = 4956561 +MD5 (KDE/kde-l10n/kde-l10n-ru-4.2.0.tar.bz2) = 9038ce82cdddf3fcf028aff50a55932a +SHA256 (KDE/kde-l10n/kde-l10n-ru-4.2.0.tar.bz2) = 934a430028ddda882599612dad343877b3ac398dc2dcbff87f5941447853595b +SIZE (KDE/kde-l10n/kde-l10n-ru-4.2.0.tar.bz2) = 5225900 diff --git a/russian/kde4-l10n/pkg-plist b/russian/kde4-l10n/pkg-plist index d3a975b1d1b8..8c688918b519 100644 --- a/russian/kde4-l10n/pkg-plist +++ b/russian/kde4-l10n/pkg-plist @@ -23,21 +23,19 @@ share/doc/HTML/ru/gwenview/interface.docbook share/doc/HTML/ru/gwenview/introduction.docbook share/doc/HTML/ru/gwenview/keybindings.docbook share/doc/HTML/ru/gwenview/mouse.docbook -share/doc/HTML/ru/irkick/common -share/doc/HTML/ru/irkick/index.cache.bz2 -share/doc/HTML/ru/irkick/index.docbook share/doc/HTML/ru/juk/common share/doc/HTML/ru/juk/index.cache.bz2 share/doc/HTML/ru/juk/index.docbook share/doc/HTML/ru/kaddressbook/common share/doc/HTML/ru/kaddressbook/index.cache.bz2 share/doc/HTML/ru/kaddressbook/index.docbook +share/doc/HTML/ru/kalgebra/common +share/doc/HTML/ru/kalgebra/index.cache.bz2 +share/doc/HTML/ru/kalgebra/index.docbook share/doc/HTML/ru/kalzium/common share/doc/HTML/ru/kalzium/index.cache.bz2 share/doc/HTML/ru/kalzium/index.docbook -share/doc/HTML/ru/kamera/common -share/doc/HTML/ru/kamera/index.cache.bz2 -share/doc/HTML/ru/kamera/index.docbook +share/doc/HTML/ru/kalzium/man-kalzium.1.docbook share/doc/HTML/ru/kanagram/common share/doc/HTML/ru/kanagram/index.cache.bz2 share/doc/HTML/ru/kanagram/index.docbook @@ -87,9 +85,9 @@ share/doc/HTML/ru/kcalc/index.docbook share/doc/HTML/ru/kcharselect/common share/doc/HTML/ru/kcharselect/index.cache.bz2 share/doc/HTML/ru/kcharselect/index.docbook -share/doc/HTML/ru/kcmlirc/common -share/doc/HTML/ru/kcmlirc/index.cache.bz2 -share/doc/HTML/ru/kcmlirc/index.docbook +share/doc/HTML/ru/kcontrol/autostart/common +share/doc/HTML/ru/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/ru/kcontrol/autostart/index.docbook share/doc/HTML/ru/kcontrol/background/common share/doc/HTML/ru/kcontrol/background/index.cache.bz2 share/doc/HTML/ru/kcontrol/background/index.docbook @@ -150,6 +148,9 @@ share/doc/HTML/ru/kcontrol/kcmaccess/index.docbook share/doc/HTML/ru/kcontrol/kcmcss/common share/doc/HTML/ru/kcontrol/kcmcss/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmcss/index.docbook +share/doc/HTML/ru/kcontrol/kcmdisplay/common +share/doc/HTML/ru/kcontrol/kcmdisplay/index.cache.bz2 +share/doc/HTML/ru/kcontrol/kcmdisplay/index.docbook share/doc/HTML/ru/kcontrol/kcmfontinst/common share/doc/HTML/ru/kcontrol/kcmfontinst/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmfontinst/index.docbook @@ -242,6 +243,9 @@ share/doc/HTML/ru/kcontrol/useragent/index.docbook share/doc/HTML/ru/kcontrol/windowmanagement/common share/doc/HTML/ru/kcontrol/windowmanagement/index.cache.bz2 share/doc/HTML/ru/kcontrol/windowmanagement/index.docbook +share/doc/HTML/ru/kcontrol/windowspecific/common +share/doc/HTML/ru/kcontrol/windowspecific/index.cache.bz2 +share/doc/HTML/ru/kcontrol/windowspecific/index.docbook share/doc/HTML/ru/kcron/common share/doc/HTML/ru/kcron/index.cache.bz2 share/doc/HTML/ru/kcron/index.docbook @@ -261,12 +265,6 @@ share/doc/HTML/ru/kdm/common share/doc/HTML/ru/kdm/index.cache.bz2 share/doc/HTML/ru/kdm/index.docbook share/doc/HTML/ru/kdm/kdmrc-ref.docbook -share/doc/HTML/ru/kdvi/common -share/doc/HTML/ru/kdvi/index.cache.bz2 -share/doc/HTML/ru/kdvi/index.docbook -share/doc/HTML/ru/kedit/common -share/doc/HTML/ru/kedit/index.cache.bz2 -share/doc/HTML/ru/kedit/index.docbook share/doc/HTML/ru/kfind/common share/doc/HTML/ru/kfind/index.cache.bz2 share/doc/HTML/ru/kfind/index.docbook @@ -321,6 +319,57 @@ share/doc/HTML/ru/khelpcenter/quickstart/common share/doc/HTML/ru/khelpcenter/quickstart/index.cache.bz2 share/doc/HTML/ru/khelpcenter/quickstart/index.docbook share/doc/HTML/ru/khelpcenter/support.docbook +share/doc/HTML/ru/khelpcenter/userguide/accessibility.docbook +share/doc/HTML/ru/khelpcenter/userguide/base-kde-applications.docbook +share/doc/HTML/ru/khelpcenter/userguide/browser-fine-tuning.docbook +share/doc/HTML/ru/khelpcenter/userguide/burning-cds.docbook +share/doc/HTML/ru/khelpcenter/userguide/common +share/doc/HTML/ru/khelpcenter/userguide/control-center.docbook +share/doc/HTML/ru/khelpcenter/userguide/creating-graphics.docbook +share/doc/HTML/ru/khelpcenter/userguide/credits-and-license.docbook +share/doc/HTML/ru/khelpcenter/userguide/customizing-desktop.docbook +share/doc/HTML/ru/khelpcenter/userguide/email.docbook +share/doc/HTML/ru/khelpcenter/userguide/extragear-applications.docbook +share/doc/HTML/ru/khelpcenter/userguide/file-sharing.docbook +share/doc/HTML/ru/khelpcenter/userguide/font-installation.docbook +share/doc/HTML/ru/khelpcenter/userguide/getting-help.docbook +share/doc/HTML/ru/khelpcenter/userguide/glossary.docbook +share/doc/HTML/ru/khelpcenter/userguide/groupware-kontact.docbook +share/doc/HTML/ru/khelpcenter/userguide/index.cache.bz2 +share/doc/HTML/ru/khelpcenter/userguide/index.docbook +share/doc/HTML/ru/khelpcenter/userguide/internet-shortcuts.docbook +share/doc/HTML/ru/khelpcenter/userguide/kde-as-root.docbook +share/doc/HTML/ru/khelpcenter/userguide/kde-edutainment.docbook +share/doc/HTML/ru/khelpcenter/userguide/kde-for-admins.docbook +share/doc/HTML/ru/khelpcenter/userguide/kde-office.docbook +share/doc/HTML/ru/khelpcenter/userguide/konsole-intro.docbook +share/doc/HTML/ru/khelpcenter/userguide/messaging-intro.docbook +share/doc/HTML/ru/khelpcenter/userguide/migrator-applications.docbook +share/doc/HTML/ru/khelpcenter/userguide/migrator-dictionary.docbook +share/doc/HTML/ru/khelpcenter/userguide/net-connection-setup.docbook +share/doc/HTML/ru/khelpcenter/userguide/networking-with-windows.docbook +share/doc/HTML/ru/khelpcenter/userguide/panel-and-desktop.docbook +share/doc/HTML/ru/khelpcenter/userguide/pdf-files.docbook +share/doc/HTML/ru/khelpcenter/userguide/playing-audiocds.docbook +share/doc/HTML/ru/khelpcenter/userguide/playing-movies.docbook +share/doc/HTML/ru/khelpcenter/userguide/playing-music.docbook +share/doc/HTML/ru/khelpcenter/userguide/printer-setup.docbook +share/doc/HTML/ru/khelpcenter/userguide/printing-from-apps.docbook +share/doc/HTML/ru/khelpcenter/userguide/programs-and-documents.docbook +share/doc/HTML/ru/khelpcenter/userguide/programs-controlling.docbook +share/doc/HTML/ru/khelpcenter/userguide/removable-disks.docbook +share/doc/HTML/ru/khelpcenter/userguide/screen-captures.docbook +share/doc/HTML/ru/khelpcenter/userguide/shared-sessions.docbook +share/doc/HTML/ru/khelpcenter/userguide/standard-menu-entries.docbook +share/doc/HTML/ru/khelpcenter/userguide/switching-sessions.docbook +share/doc/HTML/ru/khelpcenter/userguide/the-filemanager.docbook +share/doc/HTML/ru/khelpcenter/userguide/troubleshooting-network-x.docbook +share/doc/HTML/ru/khelpcenter/userguide/troubleshooting-no-open.docbook +share/doc/HTML/ru/khelpcenter/userguide/under-the-hood.docbook +share/doc/HTML/ru/khelpcenter/userguide/usenet.docbook +share/doc/HTML/ru/khelpcenter/userguide/where-next.docbook +share/doc/HTML/ru/khelpcenter/userguide/windows-how-to.docbook +share/doc/HTML/ru/khelpcenter/userguide/your-kde-account.docbook share/doc/HTML/ru/khelpcenter/visualdict/common share/doc/HTML/ru/khelpcenter/visualdict/index.cache.bz2 share/doc/HTML/ru/khelpcenter/visualdict/index.docbook @@ -390,48 +439,48 @@ share/doc/HTML/ru/kinfocenter/usb/index.docbook share/doc/HTML/ru/kinfocenter/xserver/common share/doc/HTML/ru/kinfocenter/xserver/index.cache.bz2 share/doc/HTML/ru/kinfocenter/xserver/index.docbook -share/doc/HTML/ru/kioslave/bzip.docbook -share/doc/HTML/ru/kioslave/bzip2.docbook -share/doc/HTML/ru/kioslave/cgi.docbook -share/doc/HTML/ru/kioslave/common -share/doc/HTML/ru/kioslave/data.docbook -share/doc/HTML/ru/kioslave/file.docbook -share/doc/HTML/ru/kioslave/finger.docbook -share/doc/HTML/ru/kioslave/fish.docbook -share/doc/HTML/ru/kioslave/floppy.docbook -share/doc/HTML/ru/kioslave/ftp.docbook -share/doc/HTML/ru/kioslave/gopher.docbook -share/doc/HTML/ru/kioslave/gzip.docbook -share/doc/HTML/ru/kioslave/help.docbook -share/doc/HTML/ru/kioslave/http.docbook -share/doc/HTML/ru/kioslave/https.docbook -share/doc/HTML/ru/kioslave/imap.docbook -share/doc/HTML/ru/kioslave/imaps.docbook -share/doc/HTML/ru/kioslave/index.cache.bz2 -share/doc/HTML/ru/kioslave/index.docbook -share/doc/HTML/ru/kioslave/info.docbook -share/doc/HTML/ru/kioslave/lan.docbook -share/doc/HTML/ru/kioslave/ldap.docbook -share/doc/HTML/ru/kioslave/mac.docbook -share/doc/HTML/ru/kioslave/mailto.docbook -share/doc/HTML/ru/kioslave/man.docbook -share/doc/HTML/ru/kioslave/mrml.docbook -share/doc/HTML/ru/kioslave/news.docbook -share/doc/HTML/ru/kioslave/nfs.docbook -share/doc/HTML/ru/kioslave/nntp.docbook -share/doc/HTML/ru/kioslave/pop3.docbook -share/doc/HTML/ru/kioslave/pop3s.docbook -share/doc/HTML/ru/kioslave/print.docbook -share/doc/HTML/ru/kioslave/rlan.docbook -share/doc/HTML/ru/kioslave/rlogin.docbook -share/doc/HTML/ru/kioslave/sftp.docbook -share/doc/HTML/ru/kioslave/smb.docbook -share/doc/HTML/ru/kioslave/smtp.docbook -share/doc/HTML/ru/kioslave/tar.docbook -share/doc/HTML/ru/kioslave/telnet.docbook -share/doc/HTML/ru/kioslave/thumbnail.docbook -share/doc/HTML/ru/kioslave/webdav.docbook -share/doc/HTML/ru/kioslave/webdavs.docbook +share/doc/HTML/ru/kioslave/kioslave/bzip.docbook +share/doc/HTML/ru/kioslave/kioslave/bzip2.docbook +share/doc/HTML/ru/kioslave/kioslave/cgi.docbook +share/doc/HTML/ru/kioslave/kioslave/common +share/doc/HTML/ru/kioslave/kioslave/data.docbook +share/doc/HTML/ru/kioslave/kioslave/file.docbook +share/doc/HTML/ru/kioslave/kioslave/finger.docbook +share/doc/HTML/ru/kioslave/kioslave/fish.docbook +share/doc/HTML/ru/kioslave/kioslave/floppy.docbook +share/doc/HTML/ru/kioslave/kioslave/ftp.docbook +share/doc/HTML/ru/kioslave/kioslave/gopher.docbook +share/doc/HTML/ru/kioslave/kioslave/gzip.docbook +share/doc/HTML/ru/kioslave/kioslave/help.docbook +share/doc/HTML/ru/kioslave/kioslave/http.docbook +share/doc/HTML/ru/kioslave/kioslave/https.docbook +share/doc/HTML/ru/kioslave/kioslave/imap.docbook +share/doc/HTML/ru/kioslave/kioslave/imaps.docbook +share/doc/HTML/ru/kioslave/kioslave/index.cache.bz2 +share/doc/HTML/ru/kioslave/kioslave/index.docbook +share/doc/HTML/ru/kioslave/kioslave/info.docbook +share/doc/HTML/ru/kioslave/kioslave/lan.docbook +share/doc/HTML/ru/kioslave/kioslave/ldap.docbook +share/doc/HTML/ru/kioslave/kioslave/mac.docbook +share/doc/HTML/ru/kioslave/kioslave/mailto.docbook +share/doc/HTML/ru/kioslave/kioslave/man.docbook +share/doc/HTML/ru/kioslave/kioslave/mrml.docbook +share/doc/HTML/ru/kioslave/kioslave/news.docbook +share/doc/HTML/ru/kioslave/kioslave/nfs.docbook +share/doc/HTML/ru/kioslave/kioslave/nntp.docbook +share/doc/HTML/ru/kioslave/kioslave/pop3.docbook +share/doc/HTML/ru/kioslave/kioslave/pop3s.docbook +share/doc/HTML/ru/kioslave/kioslave/print.docbook +share/doc/HTML/ru/kioslave/kioslave/rlan.docbook +share/doc/HTML/ru/kioslave/kioslave/rlogin.docbook +share/doc/HTML/ru/kioslave/kioslave/sftp.docbook +share/doc/HTML/ru/kioslave/kioslave/smb.docbook +share/doc/HTML/ru/kioslave/kioslave/smtp.docbook +share/doc/HTML/ru/kioslave/kioslave/tar.docbook +share/doc/HTML/ru/kioslave/kioslave/telnet.docbook +share/doc/HTML/ru/kioslave/kioslave/thumbnail.docbook +share/doc/HTML/ru/kioslave/kioslave/webdav.docbook +share/doc/HTML/ru/kioslave/kioslave/webdavs.docbook share/doc/HTML/ru/kjots/common share/doc/HTML/ru/kjots/index.cache.bz2 share/doc/HTML/ru/kjots/index.docbook @@ -459,6 +508,17 @@ share/doc/HTML/ru/kmag/index.docbook share/doc/HTML/ru/kmahjongg/common share/doc/HTML/ru/kmahjongg/index.cache.bz2 share/doc/HTML/ru/kmahjongg/index.docbook +share/doc/HTML/ru/kmail/common +share/doc/HTML/ru/kmail/configure.docbook +share/doc/HTML/ru/kmail/credits-and-licenses.docbook +share/doc/HTML/ru/kmail/faq.docbook +share/doc/HTML/ru/kmail/getting-started.docbook +share/doc/HTML/ru/kmail/importing.docbook +share/doc/HTML/ru/kmail/index.cache.bz2 +share/doc/HTML/ru/kmail/index.docbook +share/doc/HTML/ru/kmail/intro.docbook +share/doc/HTML/ru/kmail/menus.docbook +share/doc/HTML/ru/kmail/using-kmail.docbook share/doc/HTML/ru/kmathtool/common share/doc/HTML/ru/kmathtool/index.cache.bz2 share/doc/HTML/ru/kmathtool/index.docbook @@ -491,18 +551,13 @@ share/doc/HTML/ru/kmplot/index.cache.bz2 share/doc/HTML/ru/kmplot/index.docbook share/doc/HTML/ru/kmplot/install.docbook share/doc/HTML/ru/kmplot/introduction.docbook +share/doc/HTML/ru/kmplot/man-kmplot.1.docbook share/doc/HTML/ru/kmplot/menu.docbook share/doc/HTML/ru/kmplot/reference.docbook share/doc/HTML/ru/kmplot/using.docbook share/doc/HTML/ru/knetattach/common share/doc/HTML/ru/knetattach/index.cache.bz2 share/doc/HTML/ru/knetattach/index.docbook -share/doc/HTML/ru/knetworkconf/common -share/doc/HTML/ru/knetworkconf/index.cache.bz2 -share/doc/HTML/ru/knetworkconf/index.docbook -share/doc/HTML/ru/knewsticker/common -share/doc/HTML/ru/knewsticker/index.cache.bz2 -share/doc/HTML/ru/knewsticker/index.docbook share/doc/HTML/ru/knode/commands.docbook share/doc/HTML/ru/knode/common share/doc/HTML/ru/knode/credits.docbook @@ -539,6 +594,29 @@ share/doc/HTML/ru/kolourpaint/index.docbook share/doc/HTML/ru/kompare/common share/doc/HTML/ru/kompare/index.cache.bz2 share/doc/HTML/ru/kompare/index.docbook +share/doc/HTML/ru/konqueror/basics.docbook +share/doc/HTML/ru/konqueror/bookmarks.docbook +share/doc/HTML/ru/konqueror/browser.docbook +share/doc/HTML/ru/konqueror/cmndline.png +share/doc/HTML/ru/konqueror/commands.docbook +share/doc/HTML/ru/konqueror/common +share/doc/HTML/ru/konqueror/config.docbook +share/doc/HTML/ru/konqueror/credits.docbook +share/doc/HTML/ru/konqueror/dirtree.png +share/doc/HTML/ru/konqueror/dragdrop.png +share/doc/HTML/ru/konqueror/faq.docbook +share/doc/HTML/ru/konqueror/filemanager.docbook +share/doc/HTML/ru/konqueror/index.cache.bz2 +share/doc/HTML/ru/konqueror/index.docbook +share/doc/HTML/ru/konqueror/introduction.docbook +share/doc/HTML/ru/konqueror/konqorg.png +share/doc/HTML/ru/konqueror/parts.png +share/doc/HTML/ru/konqueror/path-complete.docbook +share/doc/HTML/ru/konqueror/plugins.docbook +share/doc/HTML/ru/konqueror/save-settings.docbook +share/doc/HTML/ru/konqueror/shortcut1.png +share/doc/HTML/ru/konqueror/shortcut2.png +share/doc/HTML/ru/konqueror/sidebar.docbook share/doc/HTML/ru/konquest/common share/doc/HTML/ru/konquest/index.cache.bz2 share/doc/HTML/ru/konquest/index.docbook @@ -624,9 +702,6 @@ share/doc/HTML/ru/kshisen/index.docbook share/doc/HTML/ru/ksim/common share/doc/HTML/ru/ksim/index.cache.bz2 share/doc/HTML/ru/ksim/index.docbook -share/doc/HTML/ru/ksirc/common -share/doc/HTML/ru/ksirc/index.cache.bz2 -share/doc/HTML/ru/ksirc/index.docbook share/doc/HTML/ru/ksirtet/common share/doc/HTML/ru/ksirtet/index.cache.bz2 share/doc/HTML/ru/ksirtet/index.docbook @@ -639,71 +714,6 @@ share/doc/HTML/ru/kspaceduel/index.docbook share/doc/HTML/ru/ksplashml/common share/doc/HTML/ru/ksplashml/index.cache.bz2 share/doc/HTML/ru/ksplashml/index.docbook -share/doc/HTML/ru/kstars/ai-contents.docbook -share/doc/HTML/ru/kstars/altvstime.docbook -share/doc/HTML/ru/kstars/astroinfo.docbook -share/doc/HTML/ru/kstars/blackbody.docbook -share/doc/HTML/ru/kstars/calc-angdist.docbook -share/doc/HTML/ru/kstars/calc-apcoords.docbook -share/doc/HTML/ru/kstars/calc-dayduration.docbook -share/doc/HTML/ru/kstars/calc-ecliptic.docbook -share/doc/HTML/ru/kstars/calc-eqgal.docbook -share/doc/HTML/ru/kstars/calc-equinox.docbook -share/doc/HTML/ru/kstars/calc-geodetic.docbook -share/doc/HTML/ru/kstars/calc-horizontal.docbook -share/doc/HTML/ru/kstars/calc-julianday.docbook -share/doc/HTML/ru/kstars/calc-planetcoords.docbook -share/doc/HTML/ru/kstars/calc-precess.docbook -share/doc/HTML/ru/kstars/calc-sidereal.docbook -share/doc/HTML/ru/kstars/calculator.docbook -share/doc/HTML/ru/kstars/cequator.docbook -share/doc/HTML/ru/kstars/colorandtemp.docbook -share/doc/HTML/ru/kstars/commands.docbook -share/doc/HTML/ru/kstars/common -share/doc/HTML/ru/kstars/config.docbook -share/doc/HTML/ru/kstars/cpoles.docbook -share/doc/HTML/ru/kstars/credits.docbook -share/doc/HTML/ru/kstars/csphere.docbook -share/doc/HTML/ru/kstars/darkmatter.docbook -share/doc/HTML/ru/kstars/dcop.docbook -share/doc/HTML/ru/kstars/details.docbook -share/doc/HTML/ru/kstars/dumpmode.docbook -share/doc/HTML/ru/kstars/ecliptic.docbook -share/doc/HTML/ru/kstars/ellipticalgalaxies.docbook -share/doc/HTML/ru/kstars/equinox.docbook -share/doc/HTML/ru/kstars/faq.docbook -share/doc/HTML/ru/kstars/flux.docbook -share/doc/HTML/ru/kstars/geocoords.docbook -share/doc/HTML/ru/kstars/greatcircle.docbook -share/doc/HTML/ru/kstars/horizon.docbook -share/doc/HTML/ru/kstars/hourangle.docbook -share/doc/HTML/ru/kstars/index.cache.bz2 -share/doc/HTML/ru/kstars/index.docbook -share/doc/HTML/ru/kstars/indi.docbook -share/doc/HTML/ru/kstars/install.docbook -share/doc/HTML/ru/kstars/jmoons.docbook -share/doc/HTML/ru/kstars/julianday.docbook -share/doc/HTML/ru/kstars/leapyear.docbook -share/doc/HTML/ru/kstars/lightcurves.docbook -share/doc/HTML/ru/kstars/luminosity.docbook -share/doc/HTML/ru/kstars/magnitude.docbook -share/doc/HTML/ru/kstars/meridian.docbook -share/doc/HTML/ru/kstars/observinglist.docbook -share/doc/HTML/ru/kstars/parallax.docbook -share/doc/HTML/ru/kstars/precession.docbook -share/doc/HTML/ru/kstars/quicktour.docbook -share/doc/HTML/ru/kstars/retrograde.docbook -share/doc/HTML/ru/kstars/scriptbuilder.docbook -share/doc/HTML/ru/kstars/sidereal.docbook -share/doc/HTML/ru/kstars/skycoords.docbook -share/doc/HTML/ru/kstars/solarsys.docbook -share/doc/HTML/ru/kstars/spiralgalaxies.docbook -share/doc/HTML/ru/kstars/stars.docbook -share/doc/HTML/ru/kstars/timezones.docbook -share/doc/HTML/ru/kstars/tools.docbook -share/doc/HTML/ru/kstars/utime.docbook -share/doc/HTML/ru/kstars/wut.docbook -share/doc/HTML/ru/kstars/zenith.docbook share/doc/HTML/ru/ksysguard/common share/doc/HTML/ru/ksysguard/index.cache.bz2 share/doc/HTML/ru/ksysguard/index.docbook @@ -716,6 +726,9 @@ share/doc/HTML/ru/kteatime/index.docbook share/doc/HTML/ru/ktimer/common share/doc/HTML/ru/ktimer/index.cache.bz2 share/doc/HTML/ru/ktimer/index.docbook +share/doc/HTML/ru/ktimetracker/common +share/doc/HTML/ru/ktimetracker/index.cache.bz2 +share/doc/HTML/ru/ktimetracker/index.docbook share/doc/HTML/ru/ktnef/common share/doc/HTML/ru/ktnef/index.cache.bz2 share/doc/HTML/ru/ktnef/index.docbook @@ -775,6 +788,9 @@ share/doc/HTML/ru/kxsldbg/kxsldbg_tools.docbook share/doc/HTML/ru/kxsldbg/sources.docbook share/doc/HTML/ru/kxsldbg/templates.docbook share/doc/HTML/ru/kxsldbg/variables.docbook +share/doc/HTML/ru/lokalize/common +share/doc/HTML/ru/lokalize/index.cache.bz2 +share/doc/HTML/ru/lokalize/index.docbook share/doc/HTML/ru/lskat/common share/doc/HTML/ru/lskat/index.cache.bz2 share/doc/HTML/ru/lskat/index.docbook @@ -810,6 +826,7 @@ share/locale/ru/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ru/LC_MESSAGES/audiorename_plugin.mo share/locale/ru/LC_MESSAGES/blinken.mo +share/locale/ru/LC_MESSAGES/bomber.mo share/locale/ru/LC_MESSAGES/bovo.mo share/locale/ru/LC_MESSAGES/cervisia.mo share/locale/ru/LC_MESSAGES/cvsservice.mo @@ -836,7 +853,9 @@ share/locale/ru/LC_MESSAGES/kaddressbook.mo share/locale/ru/LC_MESSAGES/kalarm.mo share/locale/ru/LC_MESSAGES/kalgebra.mo share/locale/ru/LC_MESSAGES/kalzium.mo +share/locale/ru/LC_MESSAGES/kalzium_qt.mo share/locale/ru/LC_MESSAGES/kanagram.mo +share/locale/ru/LC_MESSAGES/kapman.mo share/locale/ru/LC_MESSAGES/kappfinder.mo share/locale/ru/LC_MESSAGES/kate.mo share/locale/ru/LC_MESSAGES/kateexternaltoolsplugin.mo @@ -844,7 +863,6 @@ share/locale/ru/LC_MESSAGES/katefiletemplates.mo share/locale/ru/LC_MESSAGES/katehelloworld.mo share/locale/ru/LC_MESSAGES/katehtmltools.mo share/locale/ru/LC_MESSAGES/katekjswrapper.mo -share/locale/ru/LC_MESSAGES/katemake.mo share/locale/ru/LC_MESSAGES/kateopenheader.mo share/locale/ru/LC_MESSAGES/katepart4.mo share/locale/ru/LC_MESSAGES/katepybrowse.mo @@ -863,7 +881,6 @@ share/locale/ru/LC_MESSAGES/kblocks.mo share/locale/ru/LC_MESSAGES/kbounce.mo share/locale/ru/LC_MESSAGES/kbreakout.mo share/locale/ru/LC_MESSAGES/kbruch.mo -share/locale/ru/LC_MESSAGES/kbstateapplet.mo share/locale/ru/LC_MESSAGES/kbugbuster.mo share/locale/ru/LC_MESSAGES/kcachegrind.mo share/locale/ru/LC_MESSAGES/kcalc.mo @@ -877,7 +894,6 @@ share/locale/ru/LC_MESSAGES/kcm_memory.mo share/locale/ru/LC_MESSAGES/kcm_partition.mo share/locale/ru/LC_MESSAGES/kcm_pci.mo share/locale/ru/LC_MESSAGES/kcm_phonon.mo -share/locale/ru/LC_MESSAGES/kcm_phononxine.mo share/locale/ru/LC_MESSAGES/kcmaccess.mo share/locale/ru/LC_MESSAGES/kcmaudiocd.mo share/locale/ru/LC_MESSAGES/kcmbackground.mo @@ -927,10 +943,10 @@ share/locale/ru/LC_MESSAGES/kcmsmartcard.mo share/locale/ru/LC_MESSAGES/kcmsmserver.mo share/locale/ru/LC_MESSAGES/kcmsolidproc.mo share/locale/ru/LC_MESSAGES/kcmstyle.mo -share/locale/ru/LC_MESSAGES/kcmtaskbar.mo share/locale/ru/LC_MESSAGES/kcmusb.mo share/locale/ru/LC_MESSAGES/kcmview1394.mo share/locale/ru/LC_MESSAGES/kcmxinerama.mo +share/locale/ru/LC_MESSAGES/kcolorchooser.mo share/locale/ru/LC_MESSAGES/kcron.mo share/locale/ru/LC_MESSAGES/kdat.mo share/locale/ru/LC_MESSAGES/kde-menu.mo @@ -963,6 +979,7 @@ share/locale/ru/LC_MESSAGES/kfile_mp3.mo share/locale/ru/LC_MESSAGES/kfile_mpc.mo share/locale/ru/LC_MESSAGES/kfile_ogg.mo share/locale/ru/LC_MESSAGES/kfile_pnm.mo +share/locale/ru/LC_MESSAGES/kfile_raw.mo share/locale/ru/LC_MESSAGES/kfile_rgb.mo share/locale/ru/LC_MESSAGES/kfile_rpm.mo share/locale/ru/LC_MESSAGES/kfile_sid.mo @@ -970,6 +987,7 @@ share/locale/ru/LC_MESSAGES/kfile_theora.mo share/locale/ru/LC_MESSAGES/kfile_tiff.mo share/locale/ru/LC_MESSAGES/kfile_torrent.mo share/locale/ru/LC_MESSAGES/kfile_wav.mo +share/locale/ru/LC_MESSAGES/kfile_xps.mo share/locale/ru/LC_MESSAGES/kfileaudiopreview4.mo share/locale/ru/LC_MESSAGES/kfilereplace.mo share/locale/ru/LC_MESSAGES/kfileshare.mo @@ -990,10 +1008,12 @@ share/locale/ru/LC_MESSAGES/khotkeys.mo share/locale/ru/LC_MESSAGES/khtmlkttsd.mo share/locale/ru/LC_MESSAGES/kiconfinder.mo share/locale/ru/LC_MESSAGES/kig.mo +share/locale/ru/LC_MESSAGES/killbots.mo share/locale/ru/LC_MESSAGES/kimagemapeditor.mo share/locale/ru/LC_MESSAGES/kinetd.mo share/locale/ru/LC_MESSAGES/kinfocenter.mo share/locale/ru/LC_MESSAGES/kio4.mo +share/locale/ru/LC_MESSAGES/kio_applications.mo share/locale/ru/LC_MESSAGES/kio_archive.mo share/locale/ru/LC_MESSAGES/kio_audiocd.mo share/locale/ru/LC_MESSAGES/kio_finger.mo @@ -1010,7 +1030,6 @@ share/locale/ru/LC_MESSAGES/kio_nfs.mo share/locale/ru/LC_MESSAGES/kio_nntp.mo share/locale/ru/LC_MESSAGES/kio_pop3.mo share/locale/ru/LC_MESSAGES/kio_remote.mo -share/locale/ru/LC_MESSAGES/kio_settings.mo share/locale/ru/LC_MESSAGES/kio_sftp.mo share/locale/ru/LC_MESSAGES/kio_sieve.mo share/locale/ru/LC_MESSAGES/kio_smb.mo @@ -1020,6 +1039,7 @@ share/locale/ru/LC_MESSAGES/kio_thumbnail.mo share/locale/ru/LC_MESSAGES/kio_trash.mo share/locale/ru/LC_MESSAGES/kio_zeroconf.mo share/locale/ru/LC_MESSAGES/kioexec.mo +share/locale/ru/LC_MESSAGES/kiriki.mo share/locale/ru/LC_MESSAGES/kitchensync.mo share/locale/ru/LC_MESSAGES/kiten.mo share/locale/ru/LC_MESSAGES/kjots.mo @@ -1035,6 +1055,7 @@ share/locale/ru/LC_MESSAGES/kmahjongg.mo share/locale/ru/LC_MESSAGES/kmail.mo share/locale/ru/LC_MESSAGES/kmail_text_calendar_plugin.mo share/locale/ru/LC_MESSAGES/kmail_text_vcard_plugin.mo +share/locale/ru/LC_MESSAGES/kmail_text_xdiff_plugin.mo share/locale/ru/LC_MESSAGES/kmailcvt.mo share/locale/ru/LC_MESSAGES/kmenuedit.mo share/locale/ru/LC_MESSAGES/kmimetypefinder.mo @@ -1067,7 +1088,6 @@ share/locale/ru/LC_MESSAGES/kpackage.mo share/locale/ru/LC_MESSAGES/kpartsaver.mo share/locale/ru/LC_MESSAGES/kpasswdserver.mo share/locale/ru/LC_MESSAGES/kpat.mo -share/locale/ru/LC_MESSAGES/kpercentage.mo share/locale/ru/LC_MESSAGES/kpilot.mo share/locale/ru/LC_MESSAGES/kppp.mo share/locale/ru/LC_MESSAGES/kppplogview.mo @@ -1089,14 +1109,8 @@ share/locale/ru/LC_MESSAGES/kreversi.mo share/locale/ru/LC_MESSAGES/krfb.mo share/locale/ru/LC_MESSAGES/kruler.mo share/locale/ru/LC_MESSAGES/krunner.mo -share/locale/ru/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/ru/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/ru/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/ru/LC_MESSAGES/krunner_sessions.mo -share/locale/ru/LC_MESSAGES/krunner_shellrunner.mo -share/locale/ru/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/ru/LC_MESSAGES/krunner_xesam.mo share/locale/ru/LC_MESSAGES/ksame.mo +share/locale/ru/LC_MESSAGES/ksaneplugin.mo share/locale/ru/LC_MESSAGES/ksayit.mo share/locale/ru/LC_MESSAGES/kscd.mo share/locale/ru/LC_MESSAGES/kscreensaver.mo @@ -1116,6 +1130,7 @@ share/locale/ru/LC_MESSAGES/kstyle_keramik_config.mo share/locale/ru/LC_MESSAGES/kstyle_phase_config.mo share/locale/ru/LC_MESSAGES/ksudoku.mo share/locale/ru/LC_MESSAGES/ksysguard.mo +share/locale/ru/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ru/LC_MESSAGES/ksystemlog.mo share/locale/ru/LC_MESSAGES/ksystraycmd.mo share/locale/ru/LC_MESSAGES/ksysv.mo @@ -1124,7 +1139,6 @@ share/locale/ru/LC_MESSAGES/ktexteditor_plugins.mo share/locale/ru/LC_MESSAGES/kthememanager.mo share/locale/ru/LC_MESSAGES/ktimer.mo share/locale/ru/LC_MESSAGES/ktimetracker.mo -share/locale/ru/LC_MESSAGES/ktnef.mo share/locale/ru/LC_MESSAGES/ktouch.mo share/locale/ru/LC_MESSAGES/ktraderclient.mo share/locale/ru/LC_MESSAGES/kttsd.mo @@ -1132,9 +1146,11 @@ share/locale/ru/LC_MESSAGES/ktuberling.mo share/locale/ru/LC_MESSAGES/kturtle.mo share/locale/ru/LC_MESSAGES/ktux.mo share/locale/ru/LC_MESSAGES/kubrick.mo +share/locale/ru/LC_MESSAGES/kuiserver.mo share/locale/ru/LC_MESSAGES/kuiviewer.mo share/locale/ru/LC_MESSAGES/kurifilter.mo share/locale/ru/LC_MESSAGES/kuser.mo +share/locale/ru/LC_MESSAGES/kwalletd.mo share/locale/ru/LC_MESSAGES/kwalletmanager.mo share/locale/ru/LC_MESSAGES/kwatchgnupg.mo share/locale/ru/LC_MESSAGES/kweather.mo @@ -1171,36 +1187,78 @@ share/locale/ru/LC_MESSAGES/libkworkspace.mo share/locale/ru/LC_MESSAGES/liboktetacore.mo share/locale/ru/LC_MESSAGES/libphonon.mo share/locale/ru/LC_MESSAGES/libplasma.mo +share/locale/ru/LC_MESSAGES/libplasmaclock.mo share/locale/ru/LC_MESSAGES/libtaskmanager.mo share/locale/ru/LC_MESSAGES/lokalize.mo share/locale/ru/LC_MESSAGES/lskat.mo share/locale/ru/LC_MESSAGES/marble.mo +share/locale/ru/LC_MESSAGES/marble_qt.mo share/locale/ru/LC_MESSAGES/nepomuk.mo +share/locale/ru/LC_MESSAGES/nepomuksearch.mo share/locale/ru/LC_MESSAGES/nsplugin.mo +share/locale/ru/LC_MESSAGES/okteta.mo share/locale/ru/LC_MESSAGES/oktetapart.mo share/locale/ru/LC_MESSAGES/okular.mo +share/locale/ru/LC_MESSAGES/okular_chm.mo +share/locale/ru/LC_MESSAGES/okular_comicbook.mo +share/locale/ru/LC_MESSAGES/okular_djvu.mo share/locale/ru/LC_MESSAGES/okular_dvi.mo +share/locale/ru/LC_MESSAGES/okular_epub.mo +share/locale/ru/LC_MESSAGES/okular_fax.mo +share/locale/ru/LC_MESSAGES/okular_fictionbook.mo +share/locale/ru/LC_MESSAGES/okular_ghostview.mo +share/locale/ru/LC_MESSAGES/okular_kimgio.mo +share/locale/ru/LC_MESSAGES/okular_ooo.mo +share/locale/ru/LC_MESSAGES/okular_plucker.mo share/locale/ru/LC_MESSAGES/okular_poppler.mo +share/locale/ru/LC_MESSAGES/okular_tiff.mo +share/locale/ru/LC_MESSAGES/okular_xps.mo share/locale/ru/LC_MESSAGES/parley.mo share/locale/ru/LC_MESSAGES/phonon-xine.mo share/locale/ru/LC_MESSAGES/phonon_kde.mo share/locale/ru/LC_MESSAGES/plasma.mo share/locale/ru/LC_MESSAGES/plasma_applet_battery.mo +share/locale/ru/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/ru/LC_MESSAGES/plasma_applet_calculator.mo share/locale/ru/LC_MESSAGES/plasma_applet_clock.mo +share/locale/ru/LC_MESSAGES/plasma_applet_comic.mo share/locale/ru/LC_MESSAGES/plasma_applet_desktop.mo share/locale/ru/LC_MESSAGES/plasma_applet_devicenotifier.mo +share/locale/ru/LC_MESSAGES/plasma_applet_dict.mo share/locale/ru/LC_MESSAGES/plasma_applet_dig_clock.mo +share/locale/ru/LC_MESSAGES/plasma_applet_fifteenPuzzle.mo +share/locale/ru/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/ru/LC_MESSAGES/plasma_applet_folderview.mo +share/locale/ru/LC_MESSAGES/plasma_applet_frame.mo +share/locale/ru/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/ru/LC_MESSAGES/plasma_applet_kget.mo -share/locale/ru/LC_MESSAGES/plasma_applet_knewsticker.mo +share/locale/ru/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/ru/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/ru/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/ru/LC_MESSAGES/plasma_applet_news.mo +share/locale/ru/LC_MESSAGES/plasma_applet_notes.mo +share/locale/ru/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/ru/LC_MESSAGES/plasma_applet_pager.mo share/locale/ru/LC_MESSAGES/plasma_applet_panel.mo +share/locale/ru/LC_MESSAGES/plasma_applet_paste.mo +share/locale/ru/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/ru/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/ru/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/ru/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/ru/LC_MESSAGES/plasma_applet_showdesktop.mo +share/locale/ru/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/ru/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/ru/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/ru/LC_MESSAGES/plasma_applet_timer.mo share/locale/ru/LC_MESSAGES/plasma_applet_trash.mo +share/locale/ru/LC_MESSAGES/plasma_applet_weatherstation.mo share/locale/ru/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/ru/LC_MESSAGES/plasma_engine_dict.mo +share/locale/ru/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ru/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ru/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ru/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ru/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ru/LC_MESSAGES/powerdevil.mo share/locale/ru/LC_MESSAGES/printer-applet.mo share/locale/ru/LC_MESSAGES/processui.mo share/locale/ru/LC_MESSAGES/solid-bluetooth.mo @@ -1212,7 +1270,9 @@ share/locale/ru/LC_MESSAGES/soliduiserver.mo share/locale/ru/LC_MESSAGES/spy.mo share/locale/ru/LC_MESSAGES/strigila_diff.mo share/locale/ru/LC_MESSAGES/superkaramba.mo +share/locale/ru/LC_MESSAGES/svgpart.mo share/locale/ru/LC_MESSAGES/sweeper.mo +share/locale/ru/LC_MESSAGES/system-config-printer-kde.mo share/locale/ru/LC_MESSAGES/systemsettings.mo share/locale/ru/LC_MESSAGES/timezones4.mo share/locale/ru/LC_MESSAGES/umbrello.mo @@ -1223,6 +1283,7 @@ share/locale/ru/entry.desktop @dirrm share/doc/HTML/ru/superkaramba @dirrm share/doc/HTML/ru/multisynk @dirrm share/doc/HTML/ru/lskat +@dirrm share/doc/HTML/ru/lokalize @dirrm share/doc/HTML/ru/kxsldbg @dirrm share/doc/HTML/ru/kxkb @dirrm share/doc/HTML/ru/kwrite @@ -1237,16 +1298,15 @@ share/locale/ru/entry.desktop @dirrm share/doc/HTML/ru/kttsd @dirrm share/doc/HTML/ru/ktouch @dirrm share/doc/HTML/ru/ktnef +@dirrm share/doc/HTML/ru/ktimetracker @dirrm share/doc/HTML/ru/ktimer @dirrm share/doc/HTML/ru/kteatime @dirrm share/doc/HTML/ru/ksysv @dirrm share/doc/HTML/ru/ksysguard -@dirrm share/doc/HTML/ru/kstars @dirrm share/doc/HTML/ru/ksplashml @dirrm share/doc/HTML/ru/kspaceduel @dirrm share/doc/HTML/ru/ksnapshot @dirrm share/doc/HTML/ru/ksirtet -@dirrm share/doc/HTML/ru/ksirc @dirrm share/doc/HTML/ru/ksim @dirrm share/doc/HTML/ru/kshisen @dirrm share/doc/HTML/ru/kscd @@ -1267,13 +1327,12 @@ share/locale/ru/entry.desktop @dirrm share/doc/HTML/ru/konsolekalendar @dirrm share/doc/HTML/ru/konsole @dirrm share/doc/HTML/ru/konquest +@dirrm share/doc/HTML/ru/konqueror @dirrm share/doc/HTML/ru/kompare @dirrm share/doc/HTML/ru/kolourpaint @dirrm share/doc/HTML/ru/kolf @dirrm share/doc/HTML/ru/knotes @dirrm share/doc/HTML/ru/knode -@dirrm share/doc/HTML/ru/knewsticker -@dirrm share/doc/HTML/ru/knetworkconf @dirrm share/doc/HTML/ru/knetattach @dirrm share/doc/HTML/ru/kmplot @dirrm share/doc/HTML/ru/kmouth @@ -1283,6 +1342,7 @@ share/locale/ru/entry.desktop @dirrm share/doc/HTML/ru/kmines @dirrm share/doc/HTML/ru/kmenuedit @dirrm share/doc/HTML/ru/kmathtool +@dirrm share/doc/HTML/ru/kmail @dirrm share/doc/HTML/ru/kmahjongg @dirrm share/doc/HTML/ru/kmag @dirrm share/doc/HTML/ru/klipper @@ -1292,6 +1352,7 @@ share/locale/ru/entry.desktop @dirrm share/doc/HTML/ru/kleopatra @dirrm share/doc/HTML/ru/kjumpingcube @dirrm share/doc/HTML/ru/kjots +@dirrm share/doc/HTML/ru/kioslave/kioslave @dirrm share/doc/HTML/ru/kioslave @dirrm share/doc/HTML/ru/kinfocenter/xserver @dirrm share/doc/HTML/ru/kinfocenter/usb @@ -1314,6 +1375,7 @@ share/locale/ru/entry.desktop @dirrm share/doc/HTML/ru/kinfocenter @dirrm share/doc/HTML/ru/kig @dirrm share/doc/HTML/ru/khelpcenter/visualdict +@dirrm share/doc/HTML/ru/khelpcenter/userguide @dirrm share/doc/HTML/ru/khelpcenter/quickstart @dirrm share/doc/HTML/ru/khelpcenter/glossary @dirrm share/doc/HTML/ru/khelpcenter/faq @@ -1324,14 +1386,13 @@ share/locale/ru/entry.desktop @dirrm share/doc/HTML/ru/kgamma @dirrm share/doc/HTML/ru/kfloppy @dirrm share/doc/HTML/ru/kfind -@dirrm share/doc/HTML/ru/kedit -@dirrm share/doc/HTML/ru/kdvi @dirrm share/doc/HTML/ru/kdm @dirrm share/doc/HTML/ru/kdf @dirrm share/doc/HTML/ru/kdesu @dirrm share/doc/HTML/ru/kdebugdialog @dirrm share/doc/HTML/ru/kdat @dirrm share/doc/HTML/ru/kcron +@dirrm share/doc/HTML/ru/kcontrol/windowspecific @dirrm share/doc/HTML/ru/kcontrol/windowmanagement @dirrm share/doc/HTML/ru/kcontrol/useragent @dirrm share/doc/HTML/ru/kcontrol/spellchecking @@ -1362,6 +1423,7 @@ share/locale/ru/entry.desktop @dirrm share/doc/HTML/ru/kcontrol/kcmktalkd @dirrm share/doc/HTML/ru/kcontrol/kcmkonsole @dirrm share/doc/HTML/ru/kcontrol/kcmfontinst +@dirrm share/doc/HTML/ru/kcontrol/kcmdisplay @dirrm share/doc/HTML/ru/kcontrol/kcmcss @dirrm share/doc/HTML/ru/kcontrol/kcmaccess @dirrm share/doc/HTML/ru/kcontrol/kalarmd @@ -1382,8 +1444,8 @@ share/locale/ru/entry.desktop @dirrm share/doc/HTML/ru/kcontrol/cache @dirrm share/doc/HTML/ru/kcontrol/bell @dirrm share/doc/HTML/ru/kcontrol/background +@dirrm share/doc/HTML/ru/kcontrol/autostart @dirrm share/doc/HTML/ru/kcontrol -@dirrm share/doc/HTML/ru/kcmlirc @dirrm share/doc/HTML/ru/kcharselect @dirrm share/doc/HTML/ru/kcalc @dirrm share/doc/HTML/ru/kcachegrind @@ -1396,11 +1458,10 @@ share/locale/ru/entry.desktop @dirrm share/doc/HTML/ru/kate @dirrm share/doc/HTML/ru/karm @dirrm share/doc/HTML/ru/kanagram -@dirrm share/doc/HTML/ru/kamera @dirrm share/doc/HTML/ru/kalzium +@dirrm share/doc/HTML/ru/kalgebra @dirrm share/doc/HTML/ru/kaddressbook @dirrm share/doc/HTML/ru/juk -@dirrm share/doc/HTML/ru/irkick @dirrm share/doc/HTML/ru/gwenview @dirrm share/doc/HTML/ru/cervisia @dirrm share/doc/HTML/ru/blinken @@ -1408,3 +1469,6 @@ share/locale/ru/entry.desktop @dirrm share/doc/HTML/ru/amor @dirrm share/apps/kvtml/ru @dirrm share/apps/kvtml +@dirrmtry man/ru/man6 +@dirrmtry man/ru/man1 +@dirrmtry man/ru diff --git a/security/kgpg-kde4/Makefile b/security/kgpg-kde4/Makefile index 4b1a79df695a..23a75146b16a 100644 --- a/security/kgpg-kde4/Makefile +++ b/security/kgpg-kde4/Makefile @@ -8,16 +8,15 @@ PORTNAME= kdeutils PORTVERSION= ${KDE4_VERSION} CATEGORIES= misc kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Utilities for the KDE4 integrated X11 Desktop LIB_DEPENDS= gmp.7:${PORTSDIR}/math/libgmp4 \ - netsnmp:${PORTSDIR}/net-mgmt/net-snmp \ - qimageblitz.4:${PORTSDIR}/x11/qimageblitz \ - zip.1:${PORTSDIR}/archivers/libzip + zip.1:${PORTSDIR}/archivers/libzip \ + qimageblitz.4:${PORTSDIR}/x11/qimageblitz RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg LATEST_LINK= ${PORTNAME}4 @@ -25,10 +24,12 @@ LATEST_LINK= ${PORTNAME}4 USE_BZIP2= yes USE_QT_VER= 4 KDE4_BUILDENV= yes -USE_KDE4= kdelibs pimlibs workspace kdeprefix kdehier automoc4 +USE_KDE4= kdelibs pimlibs kdeprefix kdehier automoc4 QT_COMPONENTS= network gui porting xml \ qmake_build moc_build rcc_build uic_build +MAN1= ark.1 + post-extract: ${MKDIR} ${WRKSRC} diff --git a/security/kgpg-kde4/distinfo b/security/kgpg-kde4/distinfo index b32341e6b180..5bf5f73fd46e 100644 --- a/security/kgpg-kde4/distinfo +++ b/security/kgpg-kde4/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdeutils-4.1.4.tar.bz2) = 542663eeae777978dafab2dcf9d422c2 -SHA256 (KDE/kdeutils-4.1.4.tar.bz2) = fc20381de8df78548a88361dc845624c66eeaa9415c883461ba24b094c81b7df -SIZE (KDE/kdeutils-4.1.4.tar.bz2) = 2285905 +MD5 (KDE/kdeutils-4.2.0.tar.bz2) = f0ca24c7d3e5bb0ab55bf6b26fc6224e +SHA256 (KDE/kdeutils-4.2.0.tar.bz2) = 1b811b5ea12641aa4003dcc97ea19570418e83a909866f78c08a358a1e1a1cfd +SIZE (KDE/kdeutils-4.2.0.tar.bz2) = 2234345 diff --git a/security/kgpg-kde4/files/patch-ark_plugins_libzipplugin-zipplugin.cpp b/security/kgpg-kde4/files/patch-ark_plugins_libzipplugin-zipplugin.cpp index c5e3f75034b6..eb03ee5e2287 100644 --- a/security/kgpg-kde4/files/patch-ark_plugins_libzipplugin-zipplugin.cpp +++ b/security/kgpg-kde4/files/patch-ark_plugins_libzipplugin-zipplugin.cpp @@ -1,13 +1,13 @@ ---- ../ark/plugins/libzipplugin/zipplugin.cpp.orig 2008-08-30 13:07:45.000000000 +0400 -+++ ../ark/plugins/libzipplugin/zipplugin.cpp 2008-08-30 13:12:59.000000000 +0400 -@@ -30,8 +30,8 @@ - //usually compiled with off_t to 32bit. in the long run libzip should be - //compiled according to bugs.kde.org bug #167018 - //but for now this will probably do +--- ../ark/plugins/libzipplugin/zipplugin.cpp.orig 2008-12-10 16:13:03.000000000 +0000 ++++ ../ark/plugins/libzipplugin/zipplugin.cpp 2008-12-29 22:16:13.000000000 +0000 +@@ -28,8 +28,8 @@ + + #ifdef LIBZIP_COMPILED_WITH_32BIT_OFF_T + -#define __off_t_defined -typedef quint32 off_t; +// #define __off_t_defined +// typedef quint32 off_t; - #include "kerfuffle/archiveinterface.h" - #include "kerfuffle/archivefactory.h" + #endif /* LIBZIP_COMPILED_WITH_32BIT_OFF_T */ + diff --git a/security/kgpg-kde4/pkg-plist b/security/kgpg-kde4/pkg-plist index 1f32022c99f9..03f698c23b80 100644 --- a/security/kgpg-kde4/pkg-plist +++ b/security/kgpg-kde4/pkg-plist @@ -13,8 +13,9 @@ bin/superkaramba bin/sweeper lib/kde4/kcm_kdf.so lib/kde4/kcm_kwallet.so -lib/kde4/kerfuffle_bk.so +lib/kde4/kerfuffle_7zip.so lib/kde4/kerfuffle_libarchive.so +lib/kde4/kerfuffle_libgz.so lib/kde4/kerfuffle_libzip.so lib/kde4/kerfuffle_rar.so lib/kde4/libarkpart.so @@ -25,16 +26,16 @@ lib/kde4/plasma_scriptengine_superkaramba.so lib/libkdeinit4_kcalc.so lib/libkerfuffle.so lib/libkerfuffle.so.5 -lib/libkerfuffle.so.5.0.0 +lib/libkerfuffle.so.5.0.1 lib/liboktetacore.so lib/liboktetacore.so.5 -lib/liboktetacore.so.5.0.0 +lib/liboktetacore.so.5.0.1 lib/liboktetagui.so lib/liboktetagui.so.5 -lib/liboktetagui.so.5.0.0 +lib/liboktetagui.so.5.0.1 lib/libsuperkaramba.so lib/libsuperkaramba.so.5 -lib/libsuperkaramba.so.5.0.0 +lib/libsuperkaramba.so.5.0.1 share/applications/kde4/KCharSelect.desktop share/applications/kde4/KFloppy.desktop share/applications/kde4/ark.desktop @@ -145,8 +146,12 @@ share/doc/HTML/en/kgpg/keyserver.png share/doc/HTML/en/kgpg/kicker.png share/doc/HTML/en/kgpg/options.png share/doc/HTML/en/ktimer/common +share/doc/HTML/en/ktimer/first.png share/doc/HTML/en/ktimer/index.cache.bz2 share/doc/HTML/en/ktimer/index.docbook +share/doc/HTML/en/ktimer/main.png +share/doc/HTML/en/ktimer/running.png +share/doc/HTML/en/ktimer/two.at.once.png share/doc/HTML/en/kwallet/common share/doc/HTML/en/kwallet/edit1.png share/doc/HTML/en/kwallet/edit2.png @@ -176,7 +181,6 @@ share/icons/hicolor/128x128/apps/kwalletmanager.png share/icons/hicolor/128x128/apps/kwalletmanager2.png share/icons/hicolor/128x128/apps/kwikdisk.png share/icons/hicolor/128x128/apps/superkaramba.png -share/icons/hicolor/16x16/apps/kcalc.png share/icons/hicolor/16x16/apps/kdf.png share/icons/hicolor/16x16/apps/kfloppy.png share/icons/hicolor/16x16/apps/kgpg.png @@ -186,14 +190,12 @@ share/icons/hicolor/16x16/apps/kwalletmanager2.png share/icons/hicolor/16x16/apps/kwikdisk.png share/icons/hicolor/16x16/apps/okteta.png share/icons/hicolor/16x16/apps/superkaramba.png -share/icons/hicolor/22x22/apps/kcalc.png share/icons/hicolor/22x22/apps/kdf.png share/icons/hicolor/22x22/apps/kfloppy.png share/icons/hicolor/22x22/apps/kgpg.png share/icons/hicolor/22x22/apps/kwalletmanager.png share/icons/hicolor/22x22/apps/kwikdisk.png share/icons/hicolor/22x22/apps/superkaramba.png -share/icons/hicolor/32x32/apps/kcalc.png share/icons/hicolor/32x32/apps/kdf.png share/icons/hicolor/32x32/apps/kfloppy.png share/icons/hicolor/32x32/apps/kgpg.png @@ -203,7 +205,6 @@ share/icons/hicolor/32x32/apps/kwalletmanager2.png share/icons/hicolor/32x32/apps/kwikdisk.png share/icons/hicolor/32x32/apps/okteta.png share/icons/hicolor/32x32/apps/superkaramba.png -share/icons/hicolor/48x48/apps/kcalc.png share/icons/hicolor/48x48/apps/kdf.png share/icons/hicolor/48x48/apps/kfloppy.png share/icons/hicolor/48x48/apps/kgpg.png @@ -213,26 +214,28 @@ share/icons/hicolor/48x48/apps/kwalletmanager2.png share/icons/hicolor/48x48/apps/kwikdisk.png share/icons/hicolor/48x48/apps/okteta.png share/icons/hicolor/48x48/apps/superkaramba.png -share/icons/hicolor/64x64/apps/kcalc.png share/icons/hicolor/64x64/apps/kdf.png share/icons/hicolor/64x64/apps/kfloppy.png share/icons/hicolor/64x64/apps/kwalletmanager.png share/icons/hicolor/64x64/apps/kwalletmanager2.png share/icons/hicolor/64x64/apps/kwikdisk.png share/icons/hicolor/64x64/apps/superkaramba.png -share/icons/hicolor/scalable/apps/kcalc.svgz share/icons/hicolor/scalable/apps/superkaramba.svgz share/icons/oxygen/16x16/apps/kcmdf.png share/icons/oxygen/22x22/apps/kcmdf.png share/icons/oxygen/32x32/apps/kcmdf.png +share/kde4/services/ServiceMenus/ark_addtoservicemenu.desktop +share/kde4/services/ServiceMenus/ark_servicemenu.desktop share/kde4/services/ServiceMenus/encryptfile.desktop share/kde4/services/ServiceMenus/encryptfolder.desktop share/kde4/services/ServiceMenus/floppy_format.desktop +share/kde4/services/ServiceMenus/viewdecrypted.desktop share/kde4/services/ark_part.desktop share/kde4/services/kbytearrayedit.desktop share/kde4/services/kcmdf.desktop -share/kde4/services/kerfuffle_bk.desktop +share/kde4/services/kerfuffle_7zip.desktop share/kde4/services/kerfuffle_libarchive.desktop +share/kde4/services/kerfuffle_libgz.desktop share/kde4/services/kerfuffle_libzip.desktop share/kde4/services/kerfuffle_rar.desktop share/kde4/services/kwalletconfig.desktop @@ -241,33 +244,6 @@ share/kde4/services/oktetapart.desktop share/kde4/services/plasma-package-superkaramba.desktop share/kde4/services/plasma-scriptengine-superkaramba.desktop share/kde4/servicetypes/kerfufflePlugin.desktop -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services/ServiceMenus -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/oxygen/32x32/apps -@dirrmtry share/icons/oxygen/32x32 -@dirrmtry share/icons/oxygen/22x22/apps -@dirrmtry share/icons/oxygen/22x22 -@dirrmtry share/icons/oxygen/16x16/apps -@dirrmtry share/icons/oxygen/16x16 -@dirrmtry share/icons/oxygen -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons @dirrm share/doc/HTML/en/superkaramba @dirrm share/doc/HTML/en/okteta @dirrm share/doc/HTML/en/kwallet @@ -279,13 +255,6 @@ share/kde4/servicetypes/kerfufflePlugin.desktop @dirrm share/doc/HTML/en/kcharselect @dirrm share/doc/HTML/en/kcalc @dirrm share/doc/HTML/en/ark -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 -@dirrmtry share/config.kcfg -@dirrmtry share/config -@dirrmtry share/autostart @dirrm share/apps/sweeper @dirrm share/apps/superkaramba @dirrm share/apps/oktetapart @@ -316,11 +285,5 @@ share/kde4/servicetypes/kerfufflePlugin.desktop @dirrm share/apps/kgpg @dirrm share/apps/kdf/pics @dirrm share/apps/kdf -@dirrmtry share/apps/kconf_update -@dirrmtry share/apps/kcharselect @dirrm share/apps/kcalc @dirrm share/apps/ark -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/kde4 diff --git a/security/kwallet/Makefile b/security/kwallet/Makefile index 4b1a79df695a..23a75146b16a 100644 --- a/security/kwallet/Makefile +++ b/security/kwallet/Makefile @@ -8,16 +8,15 @@ PORTNAME= kdeutils PORTVERSION= ${KDE4_VERSION} CATEGORIES= misc kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Utilities for the KDE4 integrated X11 Desktop LIB_DEPENDS= gmp.7:${PORTSDIR}/math/libgmp4 \ - netsnmp:${PORTSDIR}/net-mgmt/net-snmp \ - qimageblitz.4:${PORTSDIR}/x11/qimageblitz \ - zip.1:${PORTSDIR}/archivers/libzip + zip.1:${PORTSDIR}/archivers/libzip \ + qimageblitz.4:${PORTSDIR}/x11/qimageblitz RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg LATEST_LINK= ${PORTNAME}4 @@ -25,10 +24,12 @@ LATEST_LINK= ${PORTNAME}4 USE_BZIP2= yes USE_QT_VER= 4 KDE4_BUILDENV= yes -USE_KDE4= kdelibs pimlibs workspace kdeprefix kdehier automoc4 +USE_KDE4= kdelibs pimlibs kdeprefix kdehier automoc4 QT_COMPONENTS= network gui porting xml \ qmake_build moc_build rcc_build uic_build +MAN1= ark.1 + post-extract: ${MKDIR} ${WRKSRC} diff --git a/security/kwallet/distinfo b/security/kwallet/distinfo index b32341e6b180..5bf5f73fd46e 100644 --- a/security/kwallet/distinfo +++ b/security/kwallet/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdeutils-4.1.4.tar.bz2) = 542663eeae777978dafab2dcf9d422c2 -SHA256 (KDE/kdeutils-4.1.4.tar.bz2) = fc20381de8df78548a88361dc845624c66eeaa9415c883461ba24b094c81b7df -SIZE (KDE/kdeutils-4.1.4.tar.bz2) = 2285905 +MD5 (KDE/kdeutils-4.2.0.tar.bz2) = f0ca24c7d3e5bb0ab55bf6b26fc6224e +SHA256 (KDE/kdeutils-4.2.0.tar.bz2) = 1b811b5ea12641aa4003dcc97ea19570418e83a909866f78c08a358a1e1a1cfd +SIZE (KDE/kdeutils-4.2.0.tar.bz2) = 2234345 diff --git a/security/kwallet/files/patch-ark_plugins_libzipplugin-zipplugin.cpp b/security/kwallet/files/patch-ark_plugins_libzipplugin-zipplugin.cpp index c5e3f75034b6..eb03ee5e2287 100644 --- a/security/kwallet/files/patch-ark_plugins_libzipplugin-zipplugin.cpp +++ b/security/kwallet/files/patch-ark_plugins_libzipplugin-zipplugin.cpp @@ -1,13 +1,13 @@ ---- ../ark/plugins/libzipplugin/zipplugin.cpp.orig 2008-08-30 13:07:45.000000000 +0400 -+++ ../ark/plugins/libzipplugin/zipplugin.cpp 2008-08-30 13:12:59.000000000 +0400 -@@ -30,8 +30,8 @@ - //usually compiled with off_t to 32bit. in the long run libzip should be - //compiled according to bugs.kde.org bug #167018 - //but for now this will probably do +--- ../ark/plugins/libzipplugin/zipplugin.cpp.orig 2008-12-10 16:13:03.000000000 +0000 ++++ ../ark/plugins/libzipplugin/zipplugin.cpp 2008-12-29 22:16:13.000000000 +0000 +@@ -28,8 +28,8 @@ + + #ifdef LIBZIP_COMPILED_WITH_32BIT_OFF_T + -#define __off_t_defined -typedef quint32 off_t; +// #define __off_t_defined +// typedef quint32 off_t; - #include "kerfuffle/archiveinterface.h" - #include "kerfuffle/archivefactory.h" + #endif /* LIBZIP_COMPILED_WITH_32BIT_OFF_T */ + diff --git a/security/kwallet/pkg-plist b/security/kwallet/pkg-plist index 1f32022c99f9..03f698c23b80 100644 --- a/security/kwallet/pkg-plist +++ b/security/kwallet/pkg-plist @@ -13,8 +13,9 @@ bin/superkaramba bin/sweeper lib/kde4/kcm_kdf.so lib/kde4/kcm_kwallet.so -lib/kde4/kerfuffle_bk.so +lib/kde4/kerfuffle_7zip.so lib/kde4/kerfuffle_libarchive.so +lib/kde4/kerfuffle_libgz.so lib/kde4/kerfuffle_libzip.so lib/kde4/kerfuffle_rar.so lib/kde4/libarkpart.so @@ -25,16 +26,16 @@ lib/kde4/plasma_scriptengine_superkaramba.so lib/libkdeinit4_kcalc.so lib/libkerfuffle.so lib/libkerfuffle.so.5 -lib/libkerfuffle.so.5.0.0 +lib/libkerfuffle.so.5.0.1 lib/liboktetacore.so lib/liboktetacore.so.5 -lib/liboktetacore.so.5.0.0 +lib/liboktetacore.so.5.0.1 lib/liboktetagui.so lib/liboktetagui.so.5 -lib/liboktetagui.so.5.0.0 +lib/liboktetagui.so.5.0.1 lib/libsuperkaramba.so lib/libsuperkaramba.so.5 -lib/libsuperkaramba.so.5.0.0 +lib/libsuperkaramba.so.5.0.1 share/applications/kde4/KCharSelect.desktop share/applications/kde4/KFloppy.desktop share/applications/kde4/ark.desktop @@ -145,8 +146,12 @@ share/doc/HTML/en/kgpg/keyserver.png share/doc/HTML/en/kgpg/kicker.png share/doc/HTML/en/kgpg/options.png share/doc/HTML/en/ktimer/common +share/doc/HTML/en/ktimer/first.png share/doc/HTML/en/ktimer/index.cache.bz2 share/doc/HTML/en/ktimer/index.docbook +share/doc/HTML/en/ktimer/main.png +share/doc/HTML/en/ktimer/running.png +share/doc/HTML/en/ktimer/two.at.once.png share/doc/HTML/en/kwallet/common share/doc/HTML/en/kwallet/edit1.png share/doc/HTML/en/kwallet/edit2.png @@ -176,7 +181,6 @@ share/icons/hicolor/128x128/apps/kwalletmanager.png share/icons/hicolor/128x128/apps/kwalletmanager2.png share/icons/hicolor/128x128/apps/kwikdisk.png share/icons/hicolor/128x128/apps/superkaramba.png -share/icons/hicolor/16x16/apps/kcalc.png share/icons/hicolor/16x16/apps/kdf.png share/icons/hicolor/16x16/apps/kfloppy.png share/icons/hicolor/16x16/apps/kgpg.png @@ -186,14 +190,12 @@ share/icons/hicolor/16x16/apps/kwalletmanager2.png share/icons/hicolor/16x16/apps/kwikdisk.png share/icons/hicolor/16x16/apps/okteta.png share/icons/hicolor/16x16/apps/superkaramba.png -share/icons/hicolor/22x22/apps/kcalc.png share/icons/hicolor/22x22/apps/kdf.png share/icons/hicolor/22x22/apps/kfloppy.png share/icons/hicolor/22x22/apps/kgpg.png share/icons/hicolor/22x22/apps/kwalletmanager.png share/icons/hicolor/22x22/apps/kwikdisk.png share/icons/hicolor/22x22/apps/superkaramba.png -share/icons/hicolor/32x32/apps/kcalc.png share/icons/hicolor/32x32/apps/kdf.png share/icons/hicolor/32x32/apps/kfloppy.png share/icons/hicolor/32x32/apps/kgpg.png @@ -203,7 +205,6 @@ share/icons/hicolor/32x32/apps/kwalletmanager2.png share/icons/hicolor/32x32/apps/kwikdisk.png share/icons/hicolor/32x32/apps/okteta.png share/icons/hicolor/32x32/apps/superkaramba.png -share/icons/hicolor/48x48/apps/kcalc.png share/icons/hicolor/48x48/apps/kdf.png share/icons/hicolor/48x48/apps/kfloppy.png share/icons/hicolor/48x48/apps/kgpg.png @@ -213,26 +214,28 @@ share/icons/hicolor/48x48/apps/kwalletmanager2.png share/icons/hicolor/48x48/apps/kwikdisk.png share/icons/hicolor/48x48/apps/okteta.png share/icons/hicolor/48x48/apps/superkaramba.png -share/icons/hicolor/64x64/apps/kcalc.png share/icons/hicolor/64x64/apps/kdf.png share/icons/hicolor/64x64/apps/kfloppy.png share/icons/hicolor/64x64/apps/kwalletmanager.png share/icons/hicolor/64x64/apps/kwalletmanager2.png share/icons/hicolor/64x64/apps/kwikdisk.png share/icons/hicolor/64x64/apps/superkaramba.png -share/icons/hicolor/scalable/apps/kcalc.svgz share/icons/hicolor/scalable/apps/superkaramba.svgz share/icons/oxygen/16x16/apps/kcmdf.png share/icons/oxygen/22x22/apps/kcmdf.png share/icons/oxygen/32x32/apps/kcmdf.png +share/kde4/services/ServiceMenus/ark_addtoservicemenu.desktop +share/kde4/services/ServiceMenus/ark_servicemenu.desktop share/kde4/services/ServiceMenus/encryptfile.desktop share/kde4/services/ServiceMenus/encryptfolder.desktop share/kde4/services/ServiceMenus/floppy_format.desktop +share/kde4/services/ServiceMenus/viewdecrypted.desktop share/kde4/services/ark_part.desktop share/kde4/services/kbytearrayedit.desktop share/kde4/services/kcmdf.desktop -share/kde4/services/kerfuffle_bk.desktop +share/kde4/services/kerfuffle_7zip.desktop share/kde4/services/kerfuffle_libarchive.desktop +share/kde4/services/kerfuffle_libgz.desktop share/kde4/services/kerfuffle_libzip.desktop share/kde4/services/kerfuffle_rar.desktop share/kde4/services/kwalletconfig.desktop @@ -241,33 +244,6 @@ share/kde4/services/oktetapart.desktop share/kde4/services/plasma-package-superkaramba.desktop share/kde4/services/plasma-scriptengine-superkaramba.desktop share/kde4/servicetypes/kerfufflePlugin.desktop -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services/ServiceMenus -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/oxygen/32x32/apps -@dirrmtry share/icons/oxygen/32x32 -@dirrmtry share/icons/oxygen/22x22/apps -@dirrmtry share/icons/oxygen/22x22 -@dirrmtry share/icons/oxygen/16x16/apps -@dirrmtry share/icons/oxygen/16x16 -@dirrmtry share/icons/oxygen -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons @dirrm share/doc/HTML/en/superkaramba @dirrm share/doc/HTML/en/okteta @dirrm share/doc/HTML/en/kwallet @@ -279,13 +255,6 @@ share/kde4/servicetypes/kerfufflePlugin.desktop @dirrm share/doc/HTML/en/kcharselect @dirrm share/doc/HTML/en/kcalc @dirrm share/doc/HTML/en/ark -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 -@dirrmtry share/config.kcfg -@dirrmtry share/config -@dirrmtry share/autostart @dirrm share/apps/sweeper @dirrm share/apps/superkaramba @dirrm share/apps/oktetapart @@ -316,11 +285,5 @@ share/kde4/servicetypes/kerfufflePlugin.desktop @dirrm share/apps/kgpg @dirrm share/apps/kdf/pics @dirrm share/apps/kdf -@dirrmtry share/apps/kconf_update -@dirrmtry share/apps/kcharselect @dirrm share/apps/kcalc @dirrm share/apps/ark -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/kde4 diff --git a/sysutils/Makefile b/sysutils/Makefile index ad9af4be6645..de939d44b57e 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -577,6 +577,7 @@ SUBDIR += pmap SUBDIR += policykit SUBDIR += policykit-gnome + SUBDIR += policykit-kde SUBDIR += powerman SUBDIR += prips SUBDIR += procmap diff --git a/sysutils/kdeadmin4/Makefile b/sysutils/kdeadmin4/Makefile index f11d2d794728..3b613b129be0 100644 --- a/sysutils/kdeadmin4/Makefile +++ b/sysutils/kdeadmin4/Makefile @@ -8,7 +8,7 @@ PORTNAME= kdeadmin PORTVERSION= ${KDE4_VERSION} CATEGORIES= sysutils kde ipv6 MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org @@ -27,17 +27,17 @@ QT_COMPONENTS= corelib opengl dbus qt3support designer network svg qtestlib \ network porting_build qmake_build moc_build rcc_build \ uic_build uic3_build #USE_OPENLDAP= yes - -# dirty hack should fix in upstream? -LDFLAGS= -lcrypt +PATCH_WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} CMAKE_ARGS+= -DBUILD_kpackage:BOOL=Off \ -DBUILD_lilo-config:BOOL=Off -post-patch: +post-extract: ${MKDIR} ${WRKSRC} + +post-patch: ${REINPLACE_CMD} -e \ 's,$${LIB_INSTALL_DIR}/pkgconfig,libdata/pkgconfig,' \ - ${WRKSRC}/../knetworkconf/backends/CMakeLists.txt + ${PATCH_WRKSRC}/knetworkconf/backends/CMakeLists.txt .include <bsd.port.mk> diff --git a/sysutils/kdeadmin4/distinfo b/sysutils/kdeadmin4/distinfo index 5c17033cece6..5c44dda1e7bd 100644 --- a/sysutils/kdeadmin4/distinfo +++ b/sysutils/kdeadmin4/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdeadmin-4.1.4.tar.bz2) = c3194bc30daacae33322993f2dba0074 -SHA256 (KDE/kdeadmin-4.1.4.tar.bz2) = 97b75cfde0065e6a773b19a9577134fb3a73adde8ef7200a374aedd0e03f5328 -SIZE (KDE/kdeadmin-4.1.4.tar.bz2) = 1840943 +MD5 (KDE/kdeadmin-4.2.0.tar.bz2) = 2c5b33477b5679bcd9fdbc1f8017e6fb +SHA256 (KDE/kdeadmin-4.2.0.tar.bz2) = e8ba0b3c4ca2083277b1edab1fe3098e9c2f1cfe8d0a0404611ef8e98fcf9099 +SIZE (KDE/kdeadmin-4.2.0.tar.bz2) = 1923292 diff --git a/sysutils/kdeadmin4/pkg-plist b/sysutils/kdeadmin4/pkg-plist index 798020214e83..04d92cac0d9a 100644 --- a/sysutils/kdeadmin4/pkg-plist +++ b/sysutils/kdeadmin4/pkg-plist @@ -114,33 +114,11 @@ share/icons/hicolor/64x64/apps/kuser.png share/icons/hicolor/scalable/apps/ksystemlog.svgz share/kde4/services/kcm_cron.desktop share/kde4/services/kcm_knetworkconfmodule.desktop -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22/actions -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons @dirrm share/doc/HTML/en/kuser @dirrm share/doc/HTML/en/ksystemlog @dirrm share/doc/HTML/en/kpackage @dirrm share/doc/HTML/en/kcron @dirrm share/doc/HTML/en/kcontrol/knetworkconf -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/config.kcfg @dirrm share/apps/kuser/pics @dirrm share/apps/kuser/icons/oxygen/22x22/actions @dirrm share/apps/kuser/icons/oxygen/22x22 @@ -151,7 +129,3 @@ share/kde4/services/kcm_knetworkconfmodule.desktop @dirrm share/apps/knetworkconf/pixmaps @dirrm share/apps/knetworkconf/backends @dirrm share/apps/knetworkconf -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/kde4 diff --git a/sysutils/kdf/Makefile b/sysutils/kdf/Makefile index 4b1a79df695a..23a75146b16a 100644 --- a/sysutils/kdf/Makefile +++ b/sysutils/kdf/Makefile @@ -8,16 +8,15 @@ PORTNAME= kdeutils PORTVERSION= ${KDE4_VERSION} CATEGORIES= misc kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Utilities for the KDE4 integrated X11 Desktop LIB_DEPENDS= gmp.7:${PORTSDIR}/math/libgmp4 \ - netsnmp:${PORTSDIR}/net-mgmt/net-snmp \ - qimageblitz.4:${PORTSDIR}/x11/qimageblitz \ - zip.1:${PORTSDIR}/archivers/libzip + zip.1:${PORTSDIR}/archivers/libzip \ + qimageblitz.4:${PORTSDIR}/x11/qimageblitz RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg LATEST_LINK= ${PORTNAME}4 @@ -25,10 +24,12 @@ LATEST_LINK= ${PORTNAME}4 USE_BZIP2= yes USE_QT_VER= 4 KDE4_BUILDENV= yes -USE_KDE4= kdelibs pimlibs workspace kdeprefix kdehier automoc4 +USE_KDE4= kdelibs pimlibs kdeprefix kdehier automoc4 QT_COMPONENTS= network gui porting xml \ qmake_build moc_build rcc_build uic_build +MAN1= ark.1 + post-extract: ${MKDIR} ${WRKSRC} diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index b32341e6b180..5bf5f73fd46e 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdeutils-4.1.4.tar.bz2) = 542663eeae777978dafab2dcf9d422c2 -SHA256 (KDE/kdeutils-4.1.4.tar.bz2) = fc20381de8df78548a88361dc845624c66eeaa9415c883461ba24b094c81b7df -SIZE (KDE/kdeutils-4.1.4.tar.bz2) = 2285905 +MD5 (KDE/kdeutils-4.2.0.tar.bz2) = f0ca24c7d3e5bb0ab55bf6b26fc6224e +SHA256 (KDE/kdeutils-4.2.0.tar.bz2) = 1b811b5ea12641aa4003dcc97ea19570418e83a909866f78c08a358a1e1a1cfd +SIZE (KDE/kdeutils-4.2.0.tar.bz2) = 2234345 diff --git a/sysutils/kdf/files/patch-ark_plugins_libzipplugin-zipplugin.cpp b/sysutils/kdf/files/patch-ark_plugins_libzipplugin-zipplugin.cpp index c5e3f75034b6..eb03ee5e2287 100644 --- a/sysutils/kdf/files/patch-ark_plugins_libzipplugin-zipplugin.cpp +++ b/sysutils/kdf/files/patch-ark_plugins_libzipplugin-zipplugin.cpp @@ -1,13 +1,13 @@ ---- ../ark/plugins/libzipplugin/zipplugin.cpp.orig 2008-08-30 13:07:45.000000000 +0400 -+++ ../ark/plugins/libzipplugin/zipplugin.cpp 2008-08-30 13:12:59.000000000 +0400 -@@ -30,8 +30,8 @@ - //usually compiled with off_t to 32bit. in the long run libzip should be - //compiled according to bugs.kde.org bug #167018 - //but for now this will probably do +--- ../ark/plugins/libzipplugin/zipplugin.cpp.orig 2008-12-10 16:13:03.000000000 +0000 ++++ ../ark/plugins/libzipplugin/zipplugin.cpp 2008-12-29 22:16:13.000000000 +0000 +@@ -28,8 +28,8 @@ + + #ifdef LIBZIP_COMPILED_WITH_32BIT_OFF_T + -#define __off_t_defined -typedef quint32 off_t; +// #define __off_t_defined +// typedef quint32 off_t; - #include "kerfuffle/archiveinterface.h" - #include "kerfuffle/archivefactory.h" + #endif /* LIBZIP_COMPILED_WITH_32BIT_OFF_T */ + diff --git a/sysutils/kdf/pkg-plist b/sysutils/kdf/pkg-plist index 1f32022c99f9..03f698c23b80 100644 --- a/sysutils/kdf/pkg-plist +++ b/sysutils/kdf/pkg-plist @@ -13,8 +13,9 @@ bin/superkaramba bin/sweeper lib/kde4/kcm_kdf.so lib/kde4/kcm_kwallet.so -lib/kde4/kerfuffle_bk.so +lib/kde4/kerfuffle_7zip.so lib/kde4/kerfuffle_libarchive.so +lib/kde4/kerfuffle_libgz.so lib/kde4/kerfuffle_libzip.so lib/kde4/kerfuffle_rar.so lib/kde4/libarkpart.so @@ -25,16 +26,16 @@ lib/kde4/plasma_scriptengine_superkaramba.so lib/libkdeinit4_kcalc.so lib/libkerfuffle.so lib/libkerfuffle.so.5 -lib/libkerfuffle.so.5.0.0 +lib/libkerfuffle.so.5.0.1 lib/liboktetacore.so lib/liboktetacore.so.5 -lib/liboktetacore.so.5.0.0 +lib/liboktetacore.so.5.0.1 lib/liboktetagui.so lib/liboktetagui.so.5 -lib/liboktetagui.so.5.0.0 +lib/liboktetagui.so.5.0.1 lib/libsuperkaramba.so lib/libsuperkaramba.so.5 -lib/libsuperkaramba.so.5.0.0 +lib/libsuperkaramba.so.5.0.1 share/applications/kde4/KCharSelect.desktop share/applications/kde4/KFloppy.desktop share/applications/kde4/ark.desktop @@ -145,8 +146,12 @@ share/doc/HTML/en/kgpg/keyserver.png share/doc/HTML/en/kgpg/kicker.png share/doc/HTML/en/kgpg/options.png share/doc/HTML/en/ktimer/common +share/doc/HTML/en/ktimer/first.png share/doc/HTML/en/ktimer/index.cache.bz2 share/doc/HTML/en/ktimer/index.docbook +share/doc/HTML/en/ktimer/main.png +share/doc/HTML/en/ktimer/running.png +share/doc/HTML/en/ktimer/two.at.once.png share/doc/HTML/en/kwallet/common share/doc/HTML/en/kwallet/edit1.png share/doc/HTML/en/kwallet/edit2.png @@ -176,7 +181,6 @@ share/icons/hicolor/128x128/apps/kwalletmanager.png share/icons/hicolor/128x128/apps/kwalletmanager2.png share/icons/hicolor/128x128/apps/kwikdisk.png share/icons/hicolor/128x128/apps/superkaramba.png -share/icons/hicolor/16x16/apps/kcalc.png share/icons/hicolor/16x16/apps/kdf.png share/icons/hicolor/16x16/apps/kfloppy.png share/icons/hicolor/16x16/apps/kgpg.png @@ -186,14 +190,12 @@ share/icons/hicolor/16x16/apps/kwalletmanager2.png share/icons/hicolor/16x16/apps/kwikdisk.png share/icons/hicolor/16x16/apps/okteta.png share/icons/hicolor/16x16/apps/superkaramba.png -share/icons/hicolor/22x22/apps/kcalc.png share/icons/hicolor/22x22/apps/kdf.png share/icons/hicolor/22x22/apps/kfloppy.png share/icons/hicolor/22x22/apps/kgpg.png share/icons/hicolor/22x22/apps/kwalletmanager.png share/icons/hicolor/22x22/apps/kwikdisk.png share/icons/hicolor/22x22/apps/superkaramba.png -share/icons/hicolor/32x32/apps/kcalc.png share/icons/hicolor/32x32/apps/kdf.png share/icons/hicolor/32x32/apps/kfloppy.png share/icons/hicolor/32x32/apps/kgpg.png @@ -203,7 +205,6 @@ share/icons/hicolor/32x32/apps/kwalletmanager2.png share/icons/hicolor/32x32/apps/kwikdisk.png share/icons/hicolor/32x32/apps/okteta.png share/icons/hicolor/32x32/apps/superkaramba.png -share/icons/hicolor/48x48/apps/kcalc.png share/icons/hicolor/48x48/apps/kdf.png share/icons/hicolor/48x48/apps/kfloppy.png share/icons/hicolor/48x48/apps/kgpg.png @@ -213,26 +214,28 @@ share/icons/hicolor/48x48/apps/kwalletmanager2.png share/icons/hicolor/48x48/apps/kwikdisk.png share/icons/hicolor/48x48/apps/okteta.png share/icons/hicolor/48x48/apps/superkaramba.png -share/icons/hicolor/64x64/apps/kcalc.png share/icons/hicolor/64x64/apps/kdf.png share/icons/hicolor/64x64/apps/kfloppy.png share/icons/hicolor/64x64/apps/kwalletmanager.png share/icons/hicolor/64x64/apps/kwalletmanager2.png share/icons/hicolor/64x64/apps/kwikdisk.png share/icons/hicolor/64x64/apps/superkaramba.png -share/icons/hicolor/scalable/apps/kcalc.svgz share/icons/hicolor/scalable/apps/superkaramba.svgz share/icons/oxygen/16x16/apps/kcmdf.png share/icons/oxygen/22x22/apps/kcmdf.png share/icons/oxygen/32x32/apps/kcmdf.png +share/kde4/services/ServiceMenus/ark_addtoservicemenu.desktop +share/kde4/services/ServiceMenus/ark_servicemenu.desktop share/kde4/services/ServiceMenus/encryptfile.desktop share/kde4/services/ServiceMenus/encryptfolder.desktop share/kde4/services/ServiceMenus/floppy_format.desktop +share/kde4/services/ServiceMenus/viewdecrypted.desktop share/kde4/services/ark_part.desktop share/kde4/services/kbytearrayedit.desktop share/kde4/services/kcmdf.desktop -share/kde4/services/kerfuffle_bk.desktop +share/kde4/services/kerfuffle_7zip.desktop share/kde4/services/kerfuffle_libarchive.desktop +share/kde4/services/kerfuffle_libgz.desktop share/kde4/services/kerfuffle_libzip.desktop share/kde4/services/kerfuffle_rar.desktop share/kde4/services/kwalletconfig.desktop @@ -241,33 +244,6 @@ share/kde4/services/oktetapart.desktop share/kde4/services/plasma-package-superkaramba.desktop share/kde4/services/plasma-scriptengine-superkaramba.desktop share/kde4/servicetypes/kerfufflePlugin.desktop -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services/ServiceMenus -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/oxygen/32x32/apps -@dirrmtry share/icons/oxygen/32x32 -@dirrmtry share/icons/oxygen/22x22/apps -@dirrmtry share/icons/oxygen/22x22 -@dirrmtry share/icons/oxygen/16x16/apps -@dirrmtry share/icons/oxygen/16x16 -@dirrmtry share/icons/oxygen -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons @dirrm share/doc/HTML/en/superkaramba @dirrm share/doc/HTML/en/okteta @dirrm share/doc/HTML/en/kwallet @@ -279,13 +255,6 @@ share/kde4/servicetypes/kerfufflePlugin.desktop @dirrm share/doc/HTML/en/kcharselect @dirrm share/doc/HTML/en/kcalc @dirrm share/doc/HTML/en/ark -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 -@dirrmtry share/config.kcfg -@dirrmtry share/config -@dirrmtry share/autostart @dirrm share/apps/sweeper @dirrm share/apps/superkaramba @dirrm share/apps/oktetapart @@ -316,11 +285,5 @@ share/kde4/servicetypes/kerfufflePlugin.desktop @dirrm share/apps/kgpg @dirrm share/apps/kdf/pics @dirrm share/apps/kdf -@dirrmtry share/apps/kconf_update -@dirrmtry share/apps/kcharselect @dirrm share/apps/kcalc @dirrm share/apps/ark -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/kde4 diff --git a/sysutils/kfloppy/Makefile b/sysutils/kfloppy/Makefile index 4b1a79df695a..23a75146b16a 100644 --- a/sysutils/kfloppy/Makefile +++ b/sysutils/kfloppy/Makefile @@ -8,16 +8,15 @@ PORTNAME= kdeutils PORTVERSION= ${KDE4_VERSION} CATEGORIES= misc kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Utilities for the KDE4 integrated X11 Desktop LIB_DEPENDS= gmp.7:${PORTSDIR}/math/libgmp4 \ - netsnmp:${PORTSDIR}/net-mgmt/net-snmp \ - qimageblitz.4:${PORTSDIR}/x11/qimageblitz \ - zip.1:${PORTSDIR}/archivers/libzip + zip.1:${PORTSDIR}/archivers/libzip \ + qimageblitz.4:${PORTSDIR}/x11/qimageblitz RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg LATEST_LINK= ${PORTNAME}4 @@ -25,10 +24,12 @@ LATEST_LINK= ${PORTNAME}4 USE_BZIP2= yes USE_QT_VER= 4 KDE4_BUILDENV= yes -USE_KDE4= kdelibs pimlibs workspace kdeprefix kdehier automoc4 +USE_KDE4= kdelibs pimlibs kdeprefix kdehier automoc4 QT_COMPONENTS= network gui porting xml \ qmake_build moc_build rcc_build uic_build +MAN1= ark.1 + post-extract: ${MKDIR} ${WRKSRC} diff --git a/sysutils/kfloppy/distinfo b/sysutils/kfloppy/distinfo index b32341e6b180..5bf5f73fd46e 100644 --- a/sysutils/kfloppy/distinfo +++ b/sysutils/kfloppy/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdeutils-4.1.4.tar.bz2) = 542663eeae777978dafab2dcf9d422c2 -SHA256 (KDE/kdeutils-4.1.4.tar.bz2) = fc20381de8df78548a88361dc845624c66eeaa9415c883461ba24b094c81b7df -SIZE (KDE/kdeutils-4.1.4.tar.bz2) = 2285905 +MD5 (KDE/kdeutils-4.2.0.tar.bz2) = f0ca24c7d3e5bb0ab55bf6b26fc6224e +SHA256 (KDE/kdeutils-4.2.0.tar.bz2) = 1b811b5ea12641aa4003dcc97ea19570418e83a909866f78c08a358a1e1a1cfd +SIZE (KDE/kdeutils-4.2.0.tar.bz2) = 2234345 diff --git a/sysutils/kfloppy/files/patch-ark_plugins_libzipplugin-zipplugin.cpp b/sysutils/kfloppy/files/patch-ark_plugins_libzipplugin-zipplugin.cpp index c5e3f75034b6..eb03ee5e2287 100644 --- a/sysutils/kfloppy/files/patch-ark_plugins_libzipplugin-zipplugin.cpp +++ b/sysutils/kfloppy/files/patch-ark_plugins_libzipplugin-zipplugin.cpp @@ -1,13 +1,13 @@ ---- ../ark/plugins/libzipplugin/zipplugin.cpp.orig 2008-08-30 13:07:45.000000000 +0400 -+++ ../ark/plugins/libzipplugin/zipplugin.cpp 2008-08-30 13:12:59.000000000 +0400 -@@ -30,8 +30,8 @@ - //usually compiled with off_t to 32bit. in the long run libzip should be - //compiled according to bugs.kde.org bug #167018 - //but for now this will probably do +--- ../ark/plugins/libzipplugin/zipplugin.cpp.orig 2008-12-10 16:13:03.000000000 +0000 ++++ ../ark/plugins/libzipplugin/zipplugin.cpp 2008-12-29 22:16:13.000000000 +0000 +@@ -28,8 +28,8 @@ + + #ifdef LIBZIP_COMPILED_WITH_32BIT_OFF_T + -#define __off_t_defined -typedef quint32 off_t; +// #define __off_t_defined +// typedef quint32 off_t; - #include "kerfuffle/archiveinterface.h" - #include "kerfuffle/archivefactory.h" + #endif /* LIBZIP_COMPILED_WITH_32BIT_OFF_T */ + diff --git a/sysutils/kfloppy/pkg-plist b/sysutils/kfloppy/pkg-plist index 1f32022c99f9..03f698c23b80 100644 --- a/sysutils/kfloppy/pkg-plist +++ b/sysutils/kfloppy/pkg-plist @@ -13,8 +13,9 @@ bin/superkaramba bin/sweeper lib/kde4/kcm_kdf.so lib/kde4/kcm_kwallet.so -lib/kde4/kerfuffle_bk.so +lib/kde4/kerfuffle_7zip.so lib/kde4/kerfuffle_libarchive.so +lib/kde4/kerfuffle_libgz.so lib/kde4/kerfuffle_libzip.so lib/kde4/kerfuffle_rar.so lib/kde4/libarkpart.so @@ -25,16 +26,16 @@ lib/kde4/plasma_scriptengine_superkaramba.so lib/libkdeinit4_kcalc.so lib/libkerfuffle.so lib/libkerfuffle.so.5 -lib/libkerfuffle.so.5.0.0 +lib/libkerfuffle.so.5.0.1 lib/liboktetacore.so lib/liboktetacore.so.5 -lib/liboktetacore.so.5.0.0 +lib/liboktetacore.so.5.0.1 lib/liboktetagui.so lib/liboktetagui.so.5 -lib/liboktetagui.so.5.0.0 +lib/liboktetagui.so.5.0.1 lib/libsuperkaramba.so lib/libsuperkaramba.so.5 -lib/libsuperkaramba.so.5.0.0 +lib/libsuperkaramba.so.5.0.1 share/applications/kde4/KCharSelect.desktop share/applications/kde4/KFloppy.desktop share/applications/kde4/ark.desktop @@ -145,8 +146,12 @@ share/doc/HTML/en/kgpg/keyserver.png share/doc/HTML/en/kgpg/kicker.png share/doc/HTML/en/kgpg/options.png share/doc/HTML/en/ktimer/common +share/doc/HTML/en/ktimer/first.png share/doc/HTML/en/ktimer/index.cache.bz2 share/doc/HTML/en/ktimer/index.docbook +share/doc/HTML/en/ktimer/main.png +share/doc/HTML/en/ktimer/running.png +share/doc/HTML/en/ktimer/two.at.once.png share/doc/HTML/en/kwallet/common share/doc/HTML/en/kwallet/edit1.png share/doc/HTML/en/kwallet/edit2.png @@ -176,7 +181,6 @@ share/icons/hicolor/128x128/apps/kwalletmanager.png share/icons/hicolor/128x128/apps/kwalletmanager2.png share/icons/hicolor/128x128/apps/kwikdisk.png share/icons/hicolor/128x128/apps/superkaramba.png -share/icons/hicolor/16x16/apps/kcalc.png share/icons/hicolor/16x16/apps/kdf.png share/icons/hicolor/16x16/apps/kfloppy.png share/icons/hicolor/16x16/apps/kgpg.png @@ -186,14 +190,12 @@ share/icons/hicolor/16x16/apps/kwalletmanager2.png share/icons/hicolor/16x16/apps/kwikdisk.png share/icons/hicolor/16x16/apps/okteta.png share/icons/hicolor/16x16/apps/superkaramba.png -share/icons/hicolor/22x22/apps/kcalc.png share/icons/hicolor/22x22/apps/kdf.png share/icons/hicolor/22x22/apps/kfloppy.png share/icons/hicolor/22x22/apps/kgpg.png share/icons/hicolor/22x22/apps/kwalletmanager.png share/icons/hicolor/22x22/apps/kwikdisk.png share/icons/hicolor/22x22/apps/superkaramba.png -share/icons/hicolor/32x32/apps/kcalc.png share/icons/hicolor/32x32/apps/kdf.png share/icons/hicolor/32x32/apps/kfloppy.png share/icons/hicolor/32x32/apps/kgpg.png @@ -203,7 +205,6 @@ share/icons/hicolor/32x32/apps/kwalletmanager2.png share/icons/hicolor/32x32/apps/kwikdisk.png share/icons/hicolor/32x32/apps/okteta.png share/icons/hicolor/32x32/apps/superkaramba.png -share/icons/hicolor/48x48/apps/kcalc.png share/icons/hicolor/48x48/apps/kdf.png share/icons/hicolor/48x48/apps/kfloppy.png share/icons/hicolor/48x48/apps/kgpg.png @@ -213,26 +214,28 @@ share/icons/hicolor/48x48/apps/kwalletmanager2.png share/icons/hicolor/48x48/apps/kwikdisk.png share/icons/hicolor/48x48/apps/okteta.png share/icons/hicolor/48x48/apps/superkaramba.png -share/icons/hicolor/64x64/apps/kcalc.png share/icons/hicolor/64x64/apps/kdf.png share/icons/hicolor/64x64/apps/kfloppy.png share/icons/hicolor/64x64/apps/kwalletmanager.png share/icons/hicolor/64x64/apps/kwalletmanager2.png share/icons/hicolor/64x64/apps/kwikdisk.png share/icons/hicolor/64x64/apps/superkaramba.png -share/icons/hicolor/scalable/apps/kcalc.svgz share/icons/hicolor/scalable/apps/superkaramba.svgz share/icons/oxygen/16x16/apps/kcmdf.png share/icons/oxygen/22x22/apps/kcmdf.png share/icons/oxygen/32x32/apps/kcmdf.png +share/kde4/services/ServiceMenus/ark_addtoservicemenu.desktop +share/kde4/services/ServiceMenus/ark_servicemenu.desktop share/kde4/services/ServiceMenus/encryptfile.desktop share/kde4/services/ServiceMenus/encryptfolder.desktop share/kde4/services/ServiceMenus/floppy_format.desktop +share/kde4/services/ServiceMenus/viewdecrypted.desktop share/kde4/services/ark_part.desktop share/kde4/services/kbytearrayedit.desktop share/kde4/services/kcmdf.desktop -share/kde4/services/kerfuffle_bk.desktop +share/kde4/services/kerfuffle_7zip.desktop share/kde4/services/kerfuffle_libarchive.desktop +share/kde4/services/kerfuffle_libgz.desktop share/kde4/services/kerfuffle_libzip.desktop share/kde4/services/kerfuffle_rar.desktop share/kde4/services/kwalletconfig.desktop @@ -241,33 +244,6 @@ share/kde4/services/oktetapart.desktop share/kde4/services/plasma-package-superkaramba.desktop share/kde4/services/plasma-scriptengine-superkaramba.desktop share/kde4/servicetypes/kerfufflePlugin.desktop -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services/ServiceMenus -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/oxygen/32x32/apps -@dirrmtry share/icons/oxygen/32x32 -@dirrmtry share/icons/oxygen/22x22/apps -@dirrmtry share/icons/oxygen/22x22 -@dirrmtry share/icons/oxygen/16x16/apps -@dirrmtry share/icons/oxygen/16x16 -@dirrmtry share/icons/oxygen -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons @dirrm share/doc/HTML/en/superkaramba @dirrm share/doc/HTML/en/okteta @dirrm share/doc/HTML/en/kwallet @@ -279,13 +255,6 @@ share/kde4/servicetypes/kerfufflePlugin.desktop @dirrm share/doc/HTML/en/kcharselect @dirrm share/doc/HTML/en/kcalc @dirrm share/doc/HTML/en/ark -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 -@dirrmtry share/config.kcfg -@dirrmtry share/config -@dirrmtry share/autostart @dirrm share/apps/sweeper @dirrm share/apps/superkaramba @dirrm share/apps/oktetapart @@ -316,11 +285,5 @@ share/kde4/servicetypes/kerfufflePlugin.desktop @dirrm share/apps/kgpg @dirrm share/apps/kdf/pics @dirrm share/apps/kdf -@dirrmtry share/apps/kconf_update -@dirrmtry share/apps/kcharselect @dirrm share/apps/kcalc @dirrm share/apps/ark -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/kde4 diff --git a/sysutils/policykit-kde/Makefile b/sysutils/policykit-kde/Makefile new file mode 100644 index 000000000000..ecc650d5e6cc --- /dev/null +++ b/sysutils/policykit-kde/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: PolicyKit-kde +# Date created: 2009-02-03 +# Whom: David Naylor <dragonsa@highveldmail.co.za> +# +# $FreeBSD$ +# + +PORTNAME= PolicyKit-kde +PORTVERSION= ${EXTRA_VER} +CATEGORIES= sysutils kde +MASTER_SITES= ${MASTER_SITE_KDE} +MASTER_SITE_SUBDIR= stable/${EXTRA_VER}/src/extragear +DIST_SUBDIR= KDE/extragear + +MAINTAINER= kde@FreeBSD.org +COMMENT= PolicyKit manager for KDE + +LIB_DEPENDS= polkit.2:${PORTSDIR}/sysutils/policykit + +USE_BZIP2= yes +USE_GETTEXT= yes +USE_KDE4= kdelibs kdeprefix automoc4 +USE_LDCONFIG= yes +USE_QT_VER= 4 +QT_COMPONENTS= corelib dbus gui network svg xml \ + qmake_build moc_build rcc_build uic_build +USE_CMAKE= yes + +EXTRA_VER= 4.2.0 + +.include <bsd.port.mk> diff --git a/sysutils/policykit-kde/distinfo b/sysutils/policykit-kde/distinfo new file mode 100644 index 000000000000..b7f03b51a838 --- /dev/null +++ b/sysutils/policykit-kde/distinfo @@ -0,0 +1,3 @@ +MD5 (KDE/extragear/PolicyKit-kde-4.2.0.tar.bz2) = e3bc0669e5a61549d12a66af31dd81b6 +SHA256 (KDE/extragear/PolicyKit-kde-4.2.0.tar.bz2) = ded03e4f353df95a1f28c21344f99674ed1853560d0f9113f0f3c0a7a7f5524f +SIZE (KDE/extragear/PolicyKit-kde-4.2.0.tar.bz2) = 86743 diff --git a/sysutils/policykit-kde/files/patch-CMakeLists.txt b/sysutils/policykit-kde/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..0a638e66fdf5 --- /dev/null +++ b/sysutils/policykit-kde/files/patch-CMakeLists.txt @@ -0,0 +1,11 @@ +--- CMakeLists.txt~ 2009-02-03 19:54:33.000000000 +0200 ++++ CMakeLists.txt 2009-02-03 19:53:40.000000000 +0200 +@@ -19,6 +19,8 @@ + polkit-qt/ + ) + ++ link_directories(${POLKIT_LIBRARY_DIR} ${POLKITDBUS_LIBRARY_DIRS} ${POLKITGRANT_LIBRARY_DIRS}) ++ + add_subdirectory(manager) + add_subdirectory(services) + add_subdirectory(authorization) diff --git a/sysutils/policykit-kde/pkg-descr b/sysutils/policykit-kde/pkg-descr new file mode 100644 index 000000000000..c12b263c3099 --- /dev/null +++ b/sysutils/policykit-kde/pkg-descr @@ -0,0 +1,3 @@ +KDE frontend to PolicyKit. + +WWW: http://www.kde.org/ diff --git a/sysutils/policykit-kde/pkg-plist b/sysutils/policykit-kde/pkg-plist new file mode 100644 index 000000000000..4df434eb944f --- /dev/null +++ b/sysutils/policykit-kde/pkg-plist @@ -0,0 +1,65 @@ +bin/polkit-kde-authorization +lib/kde4/kcm_pkk_authorization.so +lib/kde4/libexec/polkit-kde-manager +lib/libpolkit_qt.so +lib/libpolkit_qt.so.5 +lib/libpolkit_qt.so.5.0.1 +lib/libpolkitkdeprivate.so +lib/libpolkitkdeprivate.so.5 +lib/libpolkitkdeprivate.so.5.0.1 +share/dbus-1/services/kde-org.freedesktop.PolicyKit.AuthenticationAgent.service +share/dbus-1/services/org.kde.PolicyKit.service +share/kde4/services/kcm_pkk_authorization.desktop +share/locale/ar/LC_MESSAGES/policykit-kde.mo +share/locale/ar/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/cs/LC_MESSAGES/policykit-kde.mo +share/locale/cs/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/de/LC_MESSAGES/policykit-kde.mo +share/locale/de/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/el/LC_MESSAGES/policykit-kde.mo +share/locale/el/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/es/LC_MESSAGES/policykit-kde.mo +share/locale/es/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/et/LC_MESSAGES/policykit-kde.mo +share/locale/fr/LC_MESSAGES/policykit-kde.mo +share/locale/fr/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/ga/LC_MESSAGES/policykit-kde.mo +share/locale/ga/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/gl/LC_MESSAGES/policykit-kde.mo +share/locale/gl/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/ja/LC_MESSAGES/policykit-kde.mo +share/locale/ja/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/km/LC_MESSAGES/policykit-kde.mo +share/locale/km/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/ku/LC_MESSAGES/policykit-kde.mo +share/locale/lt/LC_MESSAGES/policykit-kde.mo +share/locale/lt/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/lv/LC_MESSAGES/policykit-kde.mo +share/locale/lv/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/nb/LC_MESSAGES/policykit-kde.mo +share/locale/nb/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/nds/LC_MESSAGES/policykit-kde.mo +share/locale/nds/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/nl/LC_MESSAGES/policykit-kde.mo +share/locale/nl/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/nn/LC_MESSAGES/policykit-kde.mo +share/locale/nn/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/pa/LC_MESSAGES/policykit-kde.mo +share/locale/pa/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/pl/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/pt/LC_MESSAGES/policykit-kde.mo +share/locale/pt/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/pt_BR/LC_MESSAGES/policykit-kde.mo +share/locale/pt_BR/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/ro/LC_MESSAGES/policykit-kde.mo +share/locale/ro/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/sr/LC_MESSAGES/policykit-kde.mo +share/locale/sr/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/sv/LC_MESSAGES/policykit-kde.mo +share/locale/sv/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/tr/LC_MESSAGES/policykit-kde.mo +share/locale/tr/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/uk/LC_MESSAGES/policykit-kde.mo +share/locale/uk/LC_MESSAGES/polkit-kde-authorization.mo +share/locale/zh_TW/LC_MESSAGES/policykit-kde.mo +share/locale/zh_TW/LC_MESSAGES/polkit-kde-authorization.mo diff --git a/sysutils/sweeper/Makefile b/sysutils/sweeper/Makefile index 4b1a79df695a..23a75146b16a 100644 --- a/sysutils/sweeper/Makefile +++ b/sysutils/sweeper/Makefile @@ -8,16 +8,15 @@ PORTNAME= kdeutils PORTVERSION= ${KDE4_VERSION} CATEGORIES= misc kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Utilities for the KDE4 integrated X11 Desktop LIB_DEPENDS= gmp.7:${PORTSDIR}/math/libgmp4 \ - netsnmp:${PORTSDIR}/net-mgmt/net-snmp \ - qimageblitz.4:${PORTSDIR}/x11/qimageblitz \ - zip.1:${PORTSDIR}/archivers/libzip + zip.1:${PORTSDIR}/archivers/libzip \ + qimageblitz.4:${PORTSDIR}/x11/qimageblitz RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg LATEST_LINK= ${PORTNAME}4 @@ -25,10 +24,12 @@ LATEST_LINK= ${PORTNAME}4 USE_BZIP2= yes USE_QT_VER= 4 KDE4_BUILDENV= yes -USE_KDE4= kdelibs pimlibs workspace kdeprefix kdehier automoc4 +USE_KDE4= kdelibs pimlibs kdeprefix kdehier automoc4 QT_COMPONENTS= network gui porting xml \ qmake_build moc_build rcc_build uic_build +MAN1= ark.1 + post-extract: ${MKDIR} ${WRKSRC} diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index b32341e6b180..5bf5f73fd46e 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdeutils-4.1.4.tar.bz2) = 542663eeae777978dafab2dcf9d422c2 -SHA256 (KDE/kdeutils-4.1.4.tar.bz2) = fc20381de8df78548a88361dc845624c66eeaa9415c883461ba24b094c81b7df -SIZE (KDE/kdeutils-4.1.4.tar.bz2) = 2285905 +MD5 (KDE/kdeutils-4.2.0.tar.bz2) = f0ca24c7d3e5bb0ab55bf6b26fc6224e +SHA256 (KDE/kdeutils-4.2.0.tar.bz2) = 1b811b5ea12641aa4003dcc97ea19570418e83a909866f78c08a358a1e1a1cfd +SIZE (KDE/kdeutils-4.2.0.tar.bz2) = 2234345 diff --git a/sysutils/sweeper/files/patch-ark_plugins_libzipplugin-zipplugin.cpp b/sysutils/sweeper/files/patch-ark_plugins_libzipplugin-zipplugin.cpp index c5e3f75034b6..eb03ee5e2287 100644 --- a/sysutils/sweeper/files/patch-ark_plugins_libzipplugin-zipplugin.cpp +++ b/sysutils/sweeper/files/patch-ark_plugins_libzipplugin-zipplugin.cpp @@ -1,13 +1,13 @@ ---- ../ark/plugins/libzipplugin/zipplugin.cpp.orig 2008-08-30 13:07:45.000000000 +0400 -+++ ../ark/plugins/libzipplugin/zipplugin.cpp 2008-08-30 13:12:59.000000000 +0400 -@@ -30,8 +30,8 @@ - //usually compiled with off_t to 32bit. in the long run libzip should be - //compiled according to bugs.kde.org bug #167018 - //but for now this will probably do +--- ../ark/plugins/libzipplugin/zipplugin.cpp.orig 2008-12-10 16:13:03.000000000 +0000 ++++ ../ark/plugins/libzipplugin/zipplugin.cpp 2008-12-29 22:16:13.000000000 +0000 +@@ -28,8 +28,8 @@ + + #ifdef LIBZIP_COMPILED_WITH_32BIT_OFF_T + -#define __off_t_defined -typedef quint32 off_t; +// #define __off_t_defined +// typedef quint32 off_t; - #include "kerfuffle/archiveinterface.h" - #include "kerfuffle/archivefactory.h" + #endif /* LIBZIP_COMPILED_WITH_32BIT_OFF_T */ + diff --git a/sysutils/sweeper/pkg-plist b/sysutils/sweeper/pkg-plist index 1f32022c99f9..03f698c23b80 100644 --- a/sysutils/sweeper/pkg-plist +++ b/sysutils/sweeper/pkg-plist @@ -13,8 +13,9 @@ bin/superkaramba bin/sweeper lib/kde4/kcm_kdf.so lib/kde4/kcm_kwallet.so -lib/kde4/kerfuffle_bk.so +lib/kde4/kerfuffle_7zip.so lib/kde4/kerfuffle_libarchive.so +lib/kde4/kerfuffle_libgz.so lib/kde4/kerfuffle_libzip.so lib/kde4/kerfuffle_rar.so lib/kde4/libarkpart.so @@ -25,16 +26,16 @@ lib/kde4/plasma_scriptengine_superkaramba.so lib/libkdeinit4_kcalc.so lib/libkerfuffle.so lib/libkerfuffle.so.5 -lib/libkerfuffle.so.5.0.0 +lib/libkerfuffle.so.5.0.1 lib/liboktetacore.so lib/liboktetacore.so.5 -lib/liboktetacore.so.5.0.0 +lib/liboktetacore.so.5.0.1 lib/liboktetagui.so lib/liboktetagui.so.5 -lib/liboktetagui.so.5.0.0 +lib/liboktetagui.so.5.0.1 lib/libsuperkaramba.so lib/libsuperkaramba.so.5 -lib/libsuperkaramba.so.5.0.0 +lib/libsuperkaramba.so.5.0.1 share/applications/kde4/KCharSelect.desktop share/applications/kde4/KFloppy.desktop share/applications/kde4/ark.desktop @@ -145,8 +146,12 @@ share/doc/HTML/en/kgpg/keyserver.png share/doc/HTML/en/kgpg/kicker.png share/doc/HTML/en/kgpg/options.png share/doc/HTML/en/ktimer/common +share/doc/HTML/en/ktimer/first.png share/doc/HTML/en/ktimer/index.cache.bz2 share/doc/HTML/en/ktimer/index.docbook +share/doc/HTML/en/ktimer/main.png +share/doc/HTML/en/ktimer/running.png +share/doc/HTML/en/ktimer/two.at.once.png share/doc/HTML/en/kwallet/common share/doc/HTML/en/kwallet/edit1.png share/doc/HTML/en/kwallet/edit2.png @@ -176,7 +181,6 @@ share/icons/hicolor/128x128/apps/kwalletmanager.png share/icons/hicolor/128x128/apps/kwalletmanager2.png share/icons/hicolor/128x128/apps/kwikdisk.png share/icons/hicolor/128x128/apps/superkaramba.png -share/icons/hicolor/16x16/apps/kcalc.png share/icons/hicolor/16x16/apps/kdf.png share/icons/hicolor/16x16/apps/kfloppy.png share/icons/hicolor/16x16/apps/kgpg.png @@ -186,14 +190,12 @@ share/icons/hicolor/16x16/apps/kwalletmanager2.png share/icons/hicolor/16x16/apps/kwikdisk.png share/icons/hicolor/16x16/apps/okteta.png share/icons/hicolor/16x16/apps/superkaramba.png -share/icons/hicolor/22x22/apps/kcalc.png share/icons/hicolor/22x22/apps/kdf.png share/icons/hicolor/22x22/apps/kfloppy.png share/icons/hicolor/22x22/apps/kgpg.png share/icons/hicolor/22x22/apps/kwalletmanager.png share/icons/hicolor/22x22/apps/kwikdisk.png share/icons/hicolor/22x22/apps/superkaramba.png -share/icons/hicolor/32x32/apps/kcalc.png share/icons/hicolor/32x32/apps/kdf.png share/icons/hicolor/32x32/apps/kfloppy.png share/icons/hicolor/32x32/apps/kgpg.png @@ -203,7 +205,6 @@ share/icons/hicolor/32x32/apps/kwalletmanager2.png share/icons/hicolor/32x32/apps/kwikdisk.png share/icons/hicolor/32x32/apps/okteta.png share/icons/hicolor/32x32/apps/superkaramba.png -share/icons/hicolor/48x48/apps/kcalc.png share/icons/hicolor/48x48/apps/kdf.png share/icons/hicolor/48x48/apps/kfloppy.png share/icons/hicolor/48x48/apps/kgpg.png @@ -213,26 +214,28 @@ share/icons/hicolor/48x48/apps/kwalletmanager2.png share/icons/hicolor/48x48/apps/kwikdisk.png share/icons/hicolor/48x48/apps/okteta.png share/icons/hicolor/48x48/apps/superkaramba.png -share/icons/hicolor/64x64/apps/kcalc.png share/icons/hicolor/64x64/apps/kdf.png share/icons/hicolor/64x64/apps/kfloppy.png share/icons/hicolor/64x64/apps/kwalletmanager.png share/icons/hicolor/64x64/apps/kwalletmanager2.png share/icons/hicolor/64x64/apps/kwikdisk.png share/icons/hicolor/64x64/apps/superkaramba.png -share/icons/hicolor/scalable/apps/kcalc.svgz share/icons/hicolor/scalable/apps/superkaramba.svgz share/icons/oxygen/16x16/apps/kcmdf.png share/icons/oxygen/22x22/apps/kcmdf.png share/icons/oxygen/32x32/apps/kcmdf.png +share/kde4/services/ServiceMenus/ark_addtoservicemenu.desktop +share/kde4/services/ServiceMenus/ark_servicemenu.desktop share/kde4/services/ServiceMenus/encryptfile.desktop share/kde4/services/ServiceMenus/encryptfolder.desktop share/kde4/services/ServiceMenus/floppy_format.desktop +share/kde4/services/ServiceMenus/viewdecrypted.desktop share/kde4/services/ark_part.desktop share/kde4/services/kbytearrayedit.desktop share/kde4/services/kcmdf.desktop -share/kde4/services/kerfuffle_bk.desktop +share/kde4/services/kerfuffle_7zip.desktop share/kde4/services/kerfuffle_libarchive.desktop +share/kde4/services/kerfuffle_libgz.desktop share/kde4/services/kerfuffle_libzip.desktop share/kde4/services/kerfuffle_rar.desktop share/kde4/services/kwalletconfig.desktop @@ -241,33 +244,6 @@ share/kde4/services/oktetapart.desktop share/kde4/services/plasma-package-superkaramba.desktop share/kde4/services/plasma-scriptengine-superkaramba.desktop share/kde4/servicetypes/kerfufflePlugin.desktop -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services/ServiceMenus -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/oxygen/32x32/apps -@dirrmtry share/icons/oxygen/32x32 -@dirrmtry share/icons/oxygen/22x22/apps -@dirrmtry share/icons/oxygen/22x22 -@dirrmtry share/icons/oxygen/16x16/apps -@dirrmtry share/icons/oxygen/16x16 -@dirrmtry share/icons/oxygen -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons @dirrm share/doc/HTML/en/superkaramba @dirrm share/doc/HTML/en/okteta @dirrm share/doc/HTML/en/kwallet @@ -279,13 +255,6 @@ share/kde4/servicetypes/kerfufflePlugin.desktop @dirrm share/doc/HTML/en/kcharselect @dirrm share/doc/HTML/en/kcalc @dirrm share/doc/HTML/en/ark -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 -@dirrmtry share/config.kcfg -@dirrmtry share/config -@dirrmtry share/autostart @dirrm share/apps/sweeper @dirrm share/apps/superkaramba @dirrm share/apps/oktetapart @@ -316,11 +285,5 @@ share/kde4/servicetypes/kerfufflePlugin.desktop @dirrm share/apps/kgpg @dirrm share/apps/kdf/pics @dirrm share/apps/kdf -@dirrmtry share/apps/kconf_update -@dirrmtry share/apps/kcharselect @dirrm share/apps/kcalc @dirrm share/apps/ark -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/kde4 diff --git a/textproc/soprano/Makefile b/textproc/soprano/Makefile index 83bcb858ddf5..632e715bb915 100644 --- a/textproc/soprano/Makefile +++ b/textproc/soprano/Makefile @@ -5,8 +5,7 @@ # $FreeBSD$ PORTNAME= soprano -PORTVERSION= 2.1.1 -PORTREVISION= 1 +PORTVERSION= 2.1.67 CATEGORIES= textproc MASTER_SITES= SF diff --git a/textproc/soprano/distinfo b/textproc/soprano/distinfo index 14036c6fdcd2..28c90a118012 100644 --- a/textproc/soprano/distinfo +++ b/textproc/soprano/distinfo @@ -1,3 +1,3 @@ -MD5 (soprano-2.1.1.tar.bz2) = dc590aa42d832cea5ed13145d359c9f2 -SHA256 (soprano-2.1.1.tar.bz2) = 102f3f4c557e28ccf5f64e9f292ddc3412c7dc09f083867b2e73d08739e6bff9 -SIZE (soprano-2.1.1.tar.bz2) = 1831720 +MD5 (soprano-2.1.67.tar.bz2) = 9639e400ba4beb08af35e5128439cc77 +SHA256 (soprano-2.1.67.tar.bz2) = 1fe7feb83891e5761646e731fbdb8a44c84600392a72316c7eada304e8e29026 +SIZE (soprano-2.1.67.tar.bz2) = 1847445 diff --git a/textproc/soprano/pkg-plist b/textproc/soprano/pkg-plist index 71b4b0b3ab34..9e951c5e1979 100644 --- a/textproc/soprano/pkg-plist +++ b/textproc/soprano/pkg-plist @@ -5,6 +5,7 @@ include/Soprano/Backend include/Soprano/BackendFeature include/Soprano/BackendOption include/Soprano/BackendSetting +include/Soprano/BackendSettings include/Soprano/BindingSet include/Soprano/Client/DBusClient include/Soprano/Client/DBusModel @@ -12,6 +13,7 @@ include/Soprano/Client/DBusNodeIterator include/Soprano/Client/DBusQueryResultIterator include/Soprano/Client/DBusStatementIterator include/Soprano/Client/LocalSocketClient +include/Soprano/Client/SparqlModel include/Soprano/Client/TcpClient include/Soprano/Error/Error include/Soprano/Error/ErrorCache @@ -24,10 +26,10 @@ include/Soprano/Index/CLuceneIndex include/Soprano/Index/IndexFilterModel include/Soprano/Index/QueryHit include/Soprano/Inference/InferenceModel -include/Soprano/Inference/InferenceRuleSet include/Soprano/Inference/NodePattern include/Soprano/Inference/Rule include/Soprano/Inference/RuleParser +include/Soprano/Inference/RuleSet include/Soprano/Inference/StandardRuleSet include/Soprano/Inference/StatementPattern include/Soprano/Iterator @@ -42,7 +44,7 @@ include/Soprano/PluginManager include/Soprano/Query/QueryLanguage include/Soprano/QueryResultIterator include/Soprano/QueryResultIteratorBackend -include/Soprano/RdfSchemaWrapper +include/Soprano/RdfSchemaModel include/Soprano/RdfSerialization include/Soprano/Serializer include/Soprano/Server/DBusExportIterator @@ -70,6 +72,7 @@ include/Soprano/Vocabulary/SIL include/Soprano/Vocabulary/XMLSchema include/Soprano/Vocabulary/Xesam include/soprano/asyncmodel.h +include/soprano/asyncresult.h include/soprano/backend.h include/soprano/bindingset.h include/soprano/cluceneindex.h @@ -121,6 +124,7 @@ include/soprano/simplestatementiterator.h include/soprano/soprano.h include/soprano/soprano_export.h include/soprano/sopranotypes.h +include/soprano/sparqlmodel.h include/soprano/statement.h include/soprano/statementiterator.h include/soprano/statementpattern.h diff --git a/ukrainian/kde4-l10n/Makefile b/ukrainian/kde4-l10n/Makefile index 1b3d1db0a243..407a3f44b685 100644 --- a/ukrainian/kde4-l10n/Makefile +++ b/ukrainian/kde4-l10n/Makefile @@ -14,6 +14,9 @@ COMMENT= Ukrainian messages and documentation for KDE4 KDE4_L10N= uk +MANLANG= ${KDE4_L10N} +.include <${.CURDIR}/Makefile.man> + post-extract: ${MKDIR} ${WRKSRC}/build diff --git a/ukrainian/kde4-l10n/distinfo b/ukrainian/kde4-l10n/distinfo index 3da979247be0..d886e1073a6d 100644 --- a/ukrainian/kde4-l10n/distinfo +++ b/ukrainian/kde4-l10n/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kde-l10n/kde-l10n-uk-4.1.4.tar.bz2) = e0a1b781e02d56caef169fd51ddb7a63 -SHA256 (KDE/kde-l10n/kde-l10n-uk-4.1.4.tar.bz2) = 3d8bf79c1b3ed7459e5e950338030bdfcf6b9e473010d0ac26e5a090da97cd29 -SIZE (KDE/kde-l10n/kde-l10n-uk-4.1.4.tar.bz2) = 6718948 +MD5 (KDE/kde-l10n/kde-l10n-uk-4.2.0.tar.bz2) = 7dba32b49fe5d263103a617a49a1849e +SHA256 (KDE/kde-l10n/kde-l10n-uk-4.2.0.tar.bz2) = 63ca2f86f436d5e1bf5f510afecced7e99acf75adc7469d2904fe4ff6e6b573a +SIZE (KDE/kde-l10n/kde-l10n-uk-4.2.0.tar.bz2) = 7165708 diff --git a/ukrainian/kde4-l10n/pkg-plist b/ukrainian/kde4-l10n/pkg-plist index 258a8709596e..26ffe68dd929 100644 --- a/ukrainian/kde4-l10n/pkg-plist +++ b/ukrainian/kde4-l10n/pkg-plist @@ -116,6 +116,9 @@ share/doc/HTML/uk/ark/man-ark.1.docbook share/doc/HTML/uk/blinken/common share/doc/HTML/uk/blinken/index.cache.bz2 share/doc/HTML/uk/blinken/index.docbook +share/doc/HTML/uk/bomber/common +share/doc/HTML/uk/bomber/index.cache.bz2 +share/doc/HTML/uk/bomber/index.docbook share/doc/HTML/uk/bovo/common share/doc/HTML/uk/bovo/index.cache.bz2 share/doc/HTML/uk/bovo/index.docbook @@ -135,6 +138,10 @@ share/doc/HTML/uk/gwenview/mouse.docbook share/doc/HTML/uk/juk/common share/doc/HTML/uk/juk/index.cache.bz2 share/doc/HTML/uk/juk/index.docbook +share/doc/HTML/uk/kabcclient/common +share/doc/HTML/uk/kabcclient/index.cache.bz2 +share/doc/HTML/uk/kabcclient/index.docbook +share/doc/HTML/uk/kabcclient/man-kabcclient.1.docbook share/doc/HTML/uk/kaddressbook/common share/doc/HTML/uk/kaddressbook/index.cache.bz2 share/doc/HTML/uk/kaddressbook/index.docbook @@ -145,12 +152,12 @@ share/doc/HTML/uk/kalzium/common share/doc/HTML/uk/kalzium/index.cache.bz2 share/doc/HTML/uk/kalzium/index.docbook share/doc/HTML/uk/kalzium/man-kalzium.1.docbook -share/doc/HTML/uk/kamera/common -share/doc/HTML/uk/kamera/index.cache.bz2 -share/doc/HTML/uk/kamera/index.docbook share/doc/HTML/uk/kanagram/common share/doc/HTML/uk/kanagram/index.cache.bz2 share/doc/HTML/uk/kanagram/index.docbook +share/doc/HTML/uk/kapman/common +share/doc/HTML/uk/kapman/index.cache.bz2 +share/doc/HTML/uk/kapman/index.docbook share/doc/HTML/uk/kapptemplate/common share/doc/HTML/uk/kapptemplate/index.cache.bz2 share/doc/HTML/uk/kapptemplate/index.docbook @@ -223,6 +230,9 @@ share/doc/HTML/uk/kcontrol/bell/index.docbook share/doc/HTML/uk/kcontrol/blockdevices/common share/doc/HTML/uk/kcontrol/blockdevices/index.cache.bz2 share/doc/HTML/uk/kcontrol/blockdevices/index.docbook +share/doc/HTML/uk/kcontrol/bookmarks/common +share/doc/HTML/uk/kcontrol/bookmarks/index.cache.bz2 +share/doc/HTML/uk/kcontrol/bookmarks/index.docbook share/doc/HTML/uk/kcontrol/cache/common share/doc/HTML/uk/kcontrol/cache/index.cache.bz2 share/doc/HTML/uk/kcontrol/cache/index.docbook @@ -277,6 +287,9 @@ share/doc/HTML/uk/kcontrol/icons/index.docbook share/doc/HTML/uk/kcontrol/joystick/common share/doc/HTML/uk/kcontrol/joystick/index.cache.bz2 share/doc/HTML/uk/kcontrol/joystick/index.docbook +share/doc/HTML/uk/kcontrol/kamera/common +share/doc/HTML/uk/kcontrol/kamera/index.cache.bz2 +share/doc/HTML/uk/kcontrol/kamera/index.docbook share/doc/HTML/uk/kcontrol/kcmaccess/common share/doc/HTML/uk/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmaccess/index.docbook @@ -320,6 +333,12 @@ share/doc/HTML/uk/kcontrol/khtml/nsplugin.docbook share/doc/HTML/uk/kcontrol/knetworkconf/common share/doc/HTML/uk/kcontrol/knetworkconf/index.cache.bz2 share/doc/HTML/uk/kcontrol/knetworkconf/index.docbook +share/doc/HTML/uk/kcontrol/kresources/common +share/doc/HTML/uk/kcontrol/kresources/index.cache.bz2 +share/doc/HTML/uk/kcontrol/kresources/index.docbook +share/doc/HTML/uk/kcontrol/kwincompositing/common +share/doc/HTML/uk/kcontrol/kwincompositing/index.cache.bz2 +share/doc/HTML/uk/kcontrol/kwincompositing/index.docbook share/doc/HTML/uk/kcontrol/kwindecoration/common share/doc/HTML/uk/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwindecoration/index.docbook @@ -350,6 +369,9 @@ share/doc/HTML/uk/kcontrol/paths/index.docbook share/doc/HTML/uk/kcontrol/performance/common share/doc/HTML/uk/kcontrol/performance/index.cache.bz2 share/doc/HTML/uk/kcontrol/performance/index.docbook +share/doc/HTML/uk/kcontrol/powerdevil/common +share/doc/HTML/uk/kcontrol/powerdevil/index.cache.bz2 +share/doc/HTML/uk/kcontrol/powerdevil/index.docbook share/doc/HTML/uk/kcontrol/proxy/common share/doc/HTML/uk/kcontrol/proxy/index.cache.bz2 share/doc/HTML/uk/kcontrol/proxy/index.docbook @@ -470,6 +492,57 @@ share/doc/HTML/uk/khelpcenter/quickstart/common share/doc/HTML/uk/khelpcenter/quickstart/index.cache.bz2 share/doc/HTML/uk/khelpcenter/quickstart/index.docbook share/doc/HTML/uk/khelpcenter/support.docbook +share/doc/HTML/uk/khelpcenter/userguide/accessibility.docbook +share/doc/HTML/uk/khelpcenter/userguide/base-kde-applications.docbook +share/doc/HTML/uk/khelpcenter/userguide/browser-fine-tuning.docbook +share/doc/HTML/uk/khelpcenter/userguide/burning-cds.docbook +share/doc/HTML/uk/khelpcenter/userguide/common +share/doc/HTML/uk/khelpcenter/userguide/control-center.docbook +share/doc/HTML/uk/khelpcenter/userguide/creating-graphics.docbook +share/doc/HTML/uk/khelpcenter/userguide/credits-and-license.docbook +share/doc/HTML/uk/khelpcenter/userguide/customizing-desktop.docbook +share/doc/HTML/uk/khelpcenter/userguide/email.docbook +share/doc/HTML/uk/khelpcenter/userguide/extragear-applications.docbook +share/doc/HTML/uk/khelpcenter/userguide/file-sharing.docbook +share/doc/HTML/uk/khelpcenter/userguide/font-installation.docbook +share/doc/HTML/uk/khelpcenter/userguide/getting-help.docbook +share/doc/HTML/uk/khelpcenter/userguide/glossary.docbook +share/doc/HTML/uk/khelpcenter/userguide/groupware-kontact.docbook +share/doc/HTML/uk/khelpcenter/userguide/index.cache.bz2 +share/doc/HTML/uk/khelpcenter/userguide/index.docbook +share/doc/HTML/uk/khelpcenter/userguide/internet-shortcuts.docbook +share/doc/HTML/uk/khelpcenter/userguide/kde-as-root.docbook +share/doc/HTML/uk/khelpcenter/userguide/kde-edutainment.docbook +share/doc/HTML/uk/khelpcenter/userguide/kde-for-admins.docbook +share/doc/HTML/uk/khelpcenter/userguide/kde-office.docbook +share/doc/HTML/uk/khelpcenter/userguide/konsole-intro.docbook +share/doc/HTML/uk/khelpcenter/userguide/messaging-intro.docbook +share/doc/HTML/uk/khelpcenter/userguide/migrator-applications.docbook +share/doc/HTML/uk/khelpcenter/userguide/migrator-dictionary.docbook +share/doc/HTML/uk/khelpcenter/userguide/net-connection-setup.docbook +share/doc/HTML/uk/khelpcenter/userguide/networking-with-windows.docbook +share/doc/HTML/uk/khelpcenter/userguide/panel-and-desktop.docbook +share/doc/HTML/uk/khelpcenter/userguide/pdf-files.docbook +share/doc/HTML/uk/khelpcenter/userguide/playing-audiocds.docbook +share/doc/HTML/uk/khelpcenter/userguide/playing-movies.docbook +share/doc/HTML/uk/khelpcenter/userguide/playing-music.docbook +share/doc/HTML/uk/khelpcenter/userguide/printer-setup.docbook +share/doc/HTML/uk/khelpcenter/userguide/printing-from-apps.docbook +share/doc/HTML/uk/khelpcenter/userguide/programs-and-documents.docbook +share/doc/HTML/uk/khelpcenter/userguide/programs-controlling.docbook +share/doc/HTML/uk/khelpcenter/userguide/removable-disks.docbook +share/doc/HTML/uk/khelpcenter/userguide/screen-captures.docbook +share/doc/HTML/uk/khelpcenter/userguide/shared-sessions.docbook +share/doc/HTML/uk/khelpcenter/userguide/standard-menu-entries.docbook +share/doc/HTML/uk/khelpcenter/userguide/switching-sessions.docbook +share/doc/HTML/uk/khelpcenter/userguide/the-filemanager.docbook +share/doc/HTML/uk/khelpcenter/userguide/troubleshooting-network-x.docbook +share/doc/HTML/uk/khelpcenter/userguide/troubleshooting-no-open.docbook +share/doc/HTML/uk/khelpcenter/userguide/under-the-hood.docbook +share/doc/HTML/uk/khelpcenter/userguide/usenet.docbook +share/doc/HTML/uk/khelpcenter/userguide/where-next.docbook +share/doc/HTML/uk/khelpcenter/userguide/windows-how-to.docbook +share/doc/HTML/uk/khelpcenter/userguide/your-kde-account.docbook share/doc/HTML/uk/khelpcenter/visualdict/common share/doc/HTML/uk/khelpcenter/visualdict/index.cache.bz2 share/doc/HTML/uk/khelpcenter/visualdict/index.docbook @@ -479,6 +552,9 @@ share/doc/HTML/uk/kig/common share/doc/HTML/uk/kig/index.cache.bz2 share/doc/HTML/uk/kig/index.docbook share/doc/HTML/uk/kig/man-kig.1.docbook +share/doc/HTML/uk/killbots/common +share/doc/HTML/uk/killbots/index.cache.bz2 +share/doc/HTML/uk/killbots/index.docbook share/doc/HTML/uk/kimagemapeditor/common share/doc/HTML/uk/kimagemapeditor/index.cache.bz2 share/doc/HTML/uk/kimagemapeditor/index.docbook @@ -533,47 +609,96 @@ share/doc/HTML/uk/kinfocenter/usb/index.docbook share/doc/HTML/uk/kinfocenter/xserver/common share/doc/HTML/uk/kinfocenter/xserver/index.cache.bz2 share/doc/HTML/uk/kinfocenter/xserver/index.docbook -share/doc/HTML/uk/kioslave/bzip.docbook -share/doc/HTML/uk/kioslave/bzip2.docbook -share/doc/HTML/uk/kioslave/cgi.docbook -share/doc/HTML/uk/kioslave/common -share/doc/HTML/uk/kioslave/data.docbook -share/doc/HTML/uk/kioslave/file.docbook -share/doc/HTML/uk/kioslave/finger.docbook -share/doc/HTML/uk/kioslave/fish.docbook -share/doc/HTML/uk/kioslave/floppy.docbook -share/doc/HTML/uk/kioslave/ftp.docbook -share/doc/HTML/uk/kioslave/gopher.docbook -share/doc/HTML/uk/kioslave/gzip.docbook -share/doc/HTML/uk/kioslave/help.docbook -share/doc/HTML/uk/kioslave/http.docbook -share/doc/HTML/uk/kioslave/https.docbook -share/doc/HTML/uk/kioslave/imap.docbook -share/doc/HTML/uk/kioslave/imaps.docbook -share/doc/HTML/uk/kioslave/index.cache.bz2 -share/doc/HTML/uk/kioslave/index.docbook -share/doc/HTML/uk/kioslave/info.docbook -share/doc/HTML/uk/kioslave/lan.docbook -share/doc/HTML/uk/kioslave/ldap.docbook -share/doc/HTML/uk/kioslave/mac.docbook -share/doc/HTML/uk/kioslave/mailto.docbook -share/doc/HTML/uk/kioslave/man.docbook -share/doc/HTML/uk/kioslave/mrml.docbook -share/doc/HTML/uk/kioslave/news.docbook -share/doc/HTML/uk/kioslave/nfs.docbook -share/doc/HTML/uk/kioslave/nntp.docbook -share/doc/HTML/uk/kioslave/pop3.docbook -share/doc/HTML/uk/kioslave/pop3s.docbook -share/doc/HTML/uk/kioslave/rlan.docbook -share/doc/HTML/uk/kioslave/rlogin.docbook -share/doc/HTML/uk/kioslave/sftp.docbook -share/doc/HTML/uk/kioslave/smb.docbook -share/doc/HTML/uk/kioslave/smtp.docbook -share/doc/HTML/uk/kioslave/tar.docbook -share/doc/HTML/uk/kioslave/telnet.docbook -share/doc/HTML/uk/kioslave/thumbnail.docbook -share/doc/HTML/uk/kioslave/webdav.docbook -share/doc/HTML/uk/kioslave/webdavs.docbook +share/doc/HTML/uk/kioslave/audiocd/common +share/doc/HTML/uk/kioslave/audiocd/index.cache.bz2 +share/doc/HTML/uk/kioslave/audiocd/index.docbook +share/doc/HTML/uk/kioslave/bookmarks/common +share/doc/HTML/uk/kioslave/bookmarks/index.cache.bz2 +share/doc/HTML/uk/kioslave/bookmarks/index.docbook +share/doc/HTML/uk/kioslave/bzip2/common +share/doc/HTML/uk/kioslave/bzip2/index.cache.bz2 +share/doc/HTML/uk/kioslave/bzip2/index.docbook +share/doc/HTML/uk/kioslave/cgi/common +share/doc/HTML/uk/kioslave/cgi/index.cache.bz2 +share/doc/HTML/uk/kioslave/cgi/index.docbook +share/doc/HTML/uk/kioslave/data/common +share/doc/HTML/uk/kioslave/data/index.cache.bz2 +share/doc/HTML/uk/kioslave/data/index.docbook +share/doc/HTML/uk/kioslave/file/common +share/doc/HTML/uk/kioslave/file/index.cache.bz2 +share/doc/HTML/uk/kioslave/file/index.docbook +share/doc/HTML/uk/kioslave/finger/common +share/doc/HTML/uk/kioslave/finger/index.cache.bz2 +share/doc/HTML/uk/kioslave/finger/index.docbook +share/doc/HTML/uk/kioslave/fish/common +share/doc/HTML/uk/kioslave/fish/index.cache.bz2 +share/doc/HTML/uk/kioslave/fish/index.docbook +share/doc/HTML/uk/kioslave/floppy/common +share/doc/HTML/uk/kioslave/floppy/index.cache.bz2 +share/doc/HTML/uk/kioslave/floppy/index.docbook +share/doc/HTML/uk/kioslave/ftp/common +share/doc/HTML/uk/kioslave/ftp/index.cache.bz2 +share/doc/HTML/uk/kioslave/ftp/index.docbook +share/doc/HTML/uk/kioslave/gzip/common +share/doc/HTML/uk/kioslave/gzip/index.cache.bz2 +share/doc/HTML/uk/kioslave/gzip/index.docbook +share/doc/HTML/uk/kioslave/help/common +share/doc/HTML/uk/kioslave/help/index.cache.bz2 +share/doc/HTML/uk/kioslave/help/index.docbook +share/doc/HTML/uk/kioslave/http/common +share/doc/HTML/uk/kioslave/http/index.cache.bz2 +share/doc/HTML/uk/kioslave/http/index.docbook +share/doc/HTML/uk/kioslave/imap/common +share/doc/HTML/uk/kioslave/imap/index.cache.bz2 +share/doc/HTML/uk/kioslave/imap/index.docbook +share/doc/HTML/uk/kioslave/info/common +share/doc/HTML/uk/kioslave/info/index.cache.bz2 +share/doc/HTML/uk/kioslave/info/index.docbook +share/doc/HTML/uk/kioslave/ldap/common +share/doc/HTML/uk/kioslave/ldap/index.cache.bz2 +share/doc/HTML/uk/kioslave/ldap/index.docbook +share/doc/HTML/uk/kioslave/mailto/common +share/doc/HTML/uk/kioslave/mailto/index.cache.bz2 +share/doc/HTML/uk/kioslave/mailto/index.docbook +share/doc/HTML/uk/kioslave/man/common +share/doc/HTML/uk/kioslave/man/index.cache.bz2 +share/doc/HTML/uk/kioslave/man/index.docbook +share/doc/HTML/uk/kioslave/news/common +share/doc/HTML/uk/kioslave/news/index.cache.bz2 +share/doc/HTML/uk/kioslave/news/index.docbook +share/doc/HTML/uk/kioslave/nfs/common +share/doc/HTML/uk/kioslave/nfs/index.cache.bz2 +share/doc/HTML/uk/kioslave/nfs/index.docbook +share/doc/HTML/uk/kioslave/nntp/common +share/doc/HTML/uk/kioslave/nntp/index.cache.bz2 +share/doc/HTML/uk/kioslave/nntp/index.docbook +share/doc/HTML/uk/kioslave/pop3/common +share/doc/HTML/uk/kioslave/pop3/index.cache.bz2 +share/doc/HTML/uk/kioslave/pop3/index.docbook +share/doc/HTML/uk/kioslave/rlogin/common +share/doc/HTML/uk/kioslave/rlogin/index.cache.bz2 +share/doc/HTML/uk/kioslave/rlogin/index.docbook +share/doc/HTML/uk/kioslave/sftp/common +share/doc/HTML/uk/kioslave/sftp/index.cache.bz2 +share/doc/HTML/uk/kioslave/sftp/index.docbook +share/doc/HTML/uk/kioslave/smb/common +share/doc/HTML/uk/kioslave/smb/index.cache.bz2 +share/doc/HTML/uk/kioslave/smb/index.docbook +share/doc/HTML/uk/kioslave/smtp/common +share/doc/HTML/uk/kioslave/smtp/index.cache.bz2 +share/doc/HTML/uk/kioslave/smtp/index.docbook +share/doc/HTML/uk/kioslave/tar/common +share/doc/HTML/uk/kioslave/tar/index.cache.bz2 +share/doc/HTML/uk/kioslave/tar/index.docbook +share/doc/HTML/uk/kioslave/telnet/common +share/doc/HTML/uk/kioslave/telnet/index.cache.bz2 +share/doc/HTML/uk/kioslave/telnet/index.docbook +share/doc/HTML/uk/kioslave/thumbnail/common +share/doc/HTML/uk/kioslave/thumbnail/index.cache.bz2 +share/doc/HTML/uk/kioslave/thumbnail/index.docbook +share/doc/HTML/uk/kioslave/webdav/common +share/doc/HTML/uk/kioslave/webdav/index.cache.bz2 +share/doc/HTML/uk/kioslave/webdav/index.docbook share/doc/HTML/uk/kiriki/common share/doc/HTML/uk/kiriki/index.cache.bz2 share/doc/HTML/uk/kiriki/index.docbook @@ -732,16 +857,6 @@ share/doc/HTML/uk/kpat/common share/doc/HTML/uk/kpat/index.cache.bz2 share/doc/HTML/uk/kpat/index.docbook share/doc/HTML/uk/kpat/man-kpat.6.docbook -share/doc/HTML/uk/kpercentage/commands.docbook -share/doc/HTML/uk/kpercentage/common -share/doc/HTML/uk/kpercentage/credits.docbook -share/doc/HTML/uk/kpercentage/devel.docbook -share/doc/HTML/uk/kpercentage/faq.docbook -share/doc/HTML/uk/kpercentage/index.cache.bz2 -share/doc/HTML/uk/kpercentage/index.docbook -share/doc/HTML/uk/kpercentage/install.docbook -share/doc/HTML/uk/kpercentage/introduction.docbook -share/doc/HTML/uk/kpercentage/using.docbook share/doc/HTML/uk/kppp/accounting.docbook share/doc/HTML/uk/kppp/callback.docbook share/doc/HTML/uk/kppp/chap.docbook @@ -838,17 +953,6 @@ share/doc/HTML/uk/kstars/leapyear.docbook share/doc/HTML/uk/kstars/lightcurves.docbook share/doc/HTML/uk/kstars/luminosity.docbook share/doc/HTML/uk/kstars/magnitude.docbook -share/doc/HTML/uk/kstars/man-celestrongps.1.docbook -share/doc/HTML/uk/kstars/man-indi_celestron_gps.1.docbook -share/doc/HTML/uk/kstars/man-indi_fli_ccd.1.docbook -share/doc/HTML/uk/kstars/man-indi_lx200_16.1.docbook -share/doc/HTML/uk/kstars/man-indi_lx200autostar.1.docbook -share/doc/HTML/uk/kstars/man-indi_lx200classic.1.docbook -share/doc/HTML/uk/kstars/man-indi_lx200generic.1.docbook -share/doc/HTML/uk/kstars/man-indi_temma.1.docbook -share/doc/HTML/uk/kstars/man-indi_v4l_generic.1.docbook -share/doc/HTML/uk/kstars/man-indi_v4l_philips.1.docbook -share/doc/HTML/uk/kstars/man-indiserver.1.docbook share/doc/HTML/uk/kstars/meridian.docbook share/doc/HTML/uk/kstars/observinglist.docbook share/doc/HTML/uk/kstars/parallax.docbook @@ -887,9 +991,6 @@ share/doc/HTML/uk/ktimer/index.docbook share/doc/HTML/uk/ktimetracker/common share/doc/HTML/uk/ktimetracker/index.cache.bz2 share/doc/HTML/uk/ktimetracker/index.docbook -share/doc/HTML/uk/ktnef/common -share/doc/HTML/uk/ktnef/index.cache.bz2 -share/doc/HTML/uk/ktnef/index.docbook share/doc/HTML/uk/ktouch/common share/doc/HTML/uk/ktouch/index.cache.bz2 share/doc/HTML/uk/ktouch/index.docbook @@ -1013,6 +1114,7 @@ share/locale/uk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/uk/LC_MESSAGES/audiorename_plugin.mo share/locale/uk/LC_MESSAGES/blinken.mo +share/locale/uk/LC_MESSAGES/bomber.mo share/locale/uk/LC_MESSAGES/bovo.mo share/locale/uk/LC_MESSAGES/cervisia.mo share/locale/uk/LC_MESSAGES/cvsservice.mo @@ -1027,6 +1129,7 @@ share/locale/uk/LC_MESSAGES/imagerename_plugin.mo share/locale/uk/LC_MESSAGES/joystick.mo share/locale/uk/LC_MESSAGES/juk.mo share/locale/uk/LC_MESSAGES/kabc.mo +share/locale/uk/LC_MESSAGES/kabc_akonadi.mo share/locale/uk/LC_MESSAGES/kabc_dir.mo share/locale/uk/LC_MESSAGES/kabc_file.mo share/locale/uk/LC_MESSAGES/kabc_ldapkio.mo @@ -1040,10 +1143,14 @@ share/locale/uk/LC_MESSAGES/kaddressbook.mo share/locale/uk/LC_MESSAGES/kalarm.mo share/locale/uk/LC_MESSAGES/kalgebra.mo share/locale/uk/LC_MESSAGES/kalzium.mo +share/locale/uk/LC_MESSAGES/kalzium_qt.mo share/locale/uk/LC_MESSAGES/kanagram.mo +share/locale/uk/LC_MESSAGES/kapman.mo share/locale/uk/LC_MESSAGES/kappfinder.mo share/locale/uk/LC_MESSAGES/kapptemplate.mo +share/locale/uk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/uk/LC_MESSAGES/kate.mo +share/locale/uk/LC_MESSAGES/katebuild-plugin.mo share/locale/uk/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/uk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/uk/LC_MESSAGES/katefiletemplates.mo @@ -1054,7 +1161,6 @@ share/locale/uk/LC_MESSAGES/kateinsertcommand.mo share/locale/uk/LC_MESSAGES/katekjswrapper.mo share/locale/uk/LC_MESSAGES/katekonsoleplugin.mo share/locale/uk/LC_MESSAGES/katemailfilesplugin.mo -share/locale/uk/LC_MESSAGES/katemake.mo share/locale/uk/LC_MESSAGES/kateopenheader.mo share/locale/uk/LC_MESSAGES/katepart4.mo share/locale/uk/LC_MESSAGES/katepybrowse.mo @@ -1073,14 +1179,14 @@ share/locale/uk/LC_MESSAGES/kblocks.mo share/locale/uk/LC_MESSAGES/kbounce.mo share/locale/uk/LC_MESSAGES/kbreakout.mo share/locale/uk/LC_MESSAGES/kbruch.mo -share/locale/uk/LC_MESSAGES/kbstateapplet.mo share/locale/uk/LC_MESSAGES/kbugbuster.mo share/locale/uk/LC_MESSAGES/kcachegrind.mo share/locale/uk/LC_MESSAGES/kcalc.mo share/locale/uk/LC_MESSAGES/kcertpart.mo share/locale/uk/LC_MESSAGES/kcharselect.mo -share/locale/uk/LC_MESSAGES/kcm_akonadi_resources.mo +share/locale/uk/LC_MESSAGES/kcm_akonadi.mo share/locale/uk/LC_MESSAGES/kcm_autostart.mo +share/locale/uk/LC_MESSAGES/kcm_desktopthemedetails.mo share/locale/uk/LC_MESSAGES/kcm_emoticons.mo share/locale/uk/LC_MESSAGES/kcm_krfb.mo share/locale/uk/LC_MESSAGES/kcm_kwindesktop.mo @@ -1090,6 +1196,7 @@ share/locale/uk/LC_MESSAGES/kcm_pci.mo share/locale/uk/LC_MESSAGES/kcm_phonon.mo share/locale/uk/LC_MESSAGES/kcm_phononxine.mo share/locale/uk/LC_MESSAGES/kcm_solid.mo +share/locale/uk/LC_MESSAGES/kcm_standard_actions.mo share/locale/uk/LC_MESSAGES/kcmaccess.mo share/locale/uk/LC_MESSAGES/kcmaudiocd.mo share/locale/uk/LC_MESSAGES/kcmbackground.mo @@ -1139,7 +1246,6 @@ share/locale/uk/LC_MESSAGES/kcmsmartcard.mo share/locale/uk/LC_MESSAGES/kcmsmserver.mo share/locale/uk/LC_MESSAGES/kcmsolidproc.mo share/locale/uk/LC_MESSAGES/kcmstyle.mo -share/locale/uk/LC_MESSAGES/kcmtaskbar.mo share/locale/uk/LC_MESSAGES/kcmusb.mo share/locale/uk/LC_MESSAGES/kcmview1394.mo share/locale/uk/LC_MESSAGES/kcmxinerama.mo @@ -1147,7 +1253,9 @@ share/locale/uk/LC_MESSAGES/kcolorchooser.mo share/locale/uk/LC_MESSAGES/kcron.mo share/locale/uk/LC_MESSAGES/kdat.mo share/locale/uk/LC_MESSAGES/kde-menu.mo +share/locale/uk/LC_MESSAGES/kdeasciiquarium.mo share/locale/uk/LC_MESSAGES/kdebugdialog.mo +share/locale/uk/LC_MESSAGES/kded_phononserver.mo share/locale/uk/LC_MESSAGES/kdelibs4.mo share/locale/uk/LC_MESSAGES/kdelibs_colors4.mo share/locale/uk/LC_MESSAGES/kdepasswd.mo @@ -1158,6 +1266,7 @@ share/locale/uk/LC_MESSAGES/kdessh.mo share/locale/uk/LC_MESSAGES/kdesu.mo share/locale/uk/LC_MESSAGES/kdesud.mo share/locale/uk/LC_MESSAGES/kdf.mo +share/locale/uk/LC_MESSAGES/kdgantt.mo share/locale/uk/LC_MESSAGES/kdgantt1.mo share/locale/uk/LC_MESSAGES/kdialog.mo share/locale/uk/LC_MESSAGES/kdiamond.mo @@ -1207,12 +1316,15 @@ share/locale/uk/LC_MESSAGES/khotnewstuff.mo share/locale/uk/LC_MESSAGES/khtmlkttsd.mo share/locale/uk/LC_MESSAGES/kiconfinder.mo share/locale/uk/LC_MESSAGES/kig.mo +share/locale/uk/LC_MESSAGES/killbots.mo share/locale/uk/LC_MESSAGES/kimagemapeditor.mo share/locale/uk/LC_MESSAGES/kinetd.mo share/locale/uk/LC_MESSAGES/kinfocenter.mo share/locale/uk/LC_MESSAGES/kio4.mo +share/locale/uk/LC_MESSAGES/kio_applications.mo share/locale/uk/LC_MESSAGES/kio_archive.mo share/locale/uk/LC_MESSAGES/kio_audiocd.mo +share/locale/uk/LC_MESSAGES/kio_bookmarks.mo share/locale/uk/LC_MESSAGES/kio_finger.mo share/locale/uk/LC_MESSAGES/kio_fish.mo share/locale/uk/LC_MESSAGES/kio_floppy.mo @@ -1223,11 +1335,12 @@ share/locale/uk/LC_MESSAGES/kio_jabberdisco.mo share/locale/uk/LC_MESSAGES/kio_ldap.mo share/locale/uk/LC_MESSAGES/kio_man.mo share/locale/uk/LC_MESSAGES/kio_mbox.mo +share/locale/uk/LC_MESSAGES/kio_nepomuksearch.mo share/locale/uk/LC_MESSAGES/kio_nfs.mo share/locale/uk/LC_MESSAGES/kio_nntp.mo +share/locale/uk/LC_MESSAGES/kio_perldoc.mo share/locale/uk/LC_MESSAGES/kio_pop3.mo share/locale/uk/LC_MESSAGES/kio_remote.mo -share/locale/uk/LC_MESSAGES/kio_settings.mo share/locale/uk/LC_MESSAGES/kio_sftp.mo share/locale/uk/LC_MESSAGES/kio_sieve.mo share/locale/uk/LC_MESSAGES/kio_smb.mo @@ -1287,10 +1400,10 @@ share/locale/uk/LC_MESSAGES/kopete.mo share/locale/uk/LC_MESSAGES/korganizer.mo share/locale/uk/LC_MESSAGES/korn.mo share/locale/uk/LC_MESSAGES/kpackage.mo +share/locale/uk/LC_MESSAGES/kpartloader.mo share/locale/uk/LC_MESSAGES/kpartsaver.mo share/locale/uk/LC_MESSAGES/kpasswdserver.mo share/locale/uk/LC_MESSAGES/kpat.mo -share/locale/uk/LC_MESSAGES/kpercentage.mo share/locale/uk/LC_MESSAGES/kpilot.mo share/locale/uk/LC_MESSAGES/kppp.mo share/locale/uk/LC_MESSAGES/kppplogview.mo @@ -1314,20 +1427,12 @@ share/locale/uk/LC_MESSAGES/kreversi.mo share/locale/uk/LC_MESSAGES/krfb.mo share/locale/uk/LC_MESSAGES/kruler.mo share/locale/uk/LC_MESSAGES/krunner.mo -share/locale/uk/LC_MESSAGES/krunner_bookmarksrunner.mo -share/locale/uk/LC_MESSAGES/krunner_calculatorrunner.mo -share/locale/uk/LC_MESSAGES/krunner_contacts.mo -share/locale/uk/LC_MESSAGES/krunner_converterrunner.mo -share/locale/uk/LC_MESSAGES/krunner_locationsrunner.mo -share/locale/uk/LC_MESSAGES/krunner_sessions.mo -share/locale/uk/LC_MESSAGES/krunner_shellrunner.mo -share/locale/uk/LC_MESSAGES/krunner_webshortcutsrunner.mo -share/locale/uk/LC_MESSAGES/krunner_xesam.mo share/locale/uk/LC_MESSAGES/ksame.mo share/locale/uk/LC_MESSAGES/ksaneplugin.mo share/locale/uk/LC_MESSAGES/ksayit.mo share/locale/uk/LC_MESSAGES/kscd.mo share/locale/uk/LC_MESSAGES/kscreensaver.mo +share/locale/uk/LC_MESSAGES/ksendemail.mo share/locale/uk/LC_MESSAGES/kshisen.mo share/locale/uk/LC_MESSAGES/kshorturifilter.mo share/locale/uk/LC_MESSAGES/ksirk.mo @@ -1344,6 +1449,7 @@ share/locale/uk/LC_MESSAGES/kstyle_keramik_config.mo share/locale/uk/LC_MESSAGES/kstyle_phase_config.mo share/locale/uk/LC_MESSAGES/ksudoku.mo share/locale/uk/LC_MESSAGES/ksysguard.mo +share/locale/uk/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/uk/LC_MESSAGES/ksystemlog.mo share/locale/uk/LC_MESSAGES/ksystraycmd.mo share/locale/uk/LC_MESSAGES/ksysv.mo @@ -1353,7 +1459,6 @@ share/locale/uk/LC_MESSAGES/ktexteditorkabcbridge_plugin.mo share/locale/uk/LC_MESSAGES/kthememanager.mo share/locale/uk/LC_MESSAGES/ktimer.mo share/locale/uk/LC_MESSAGES/ktimetracker.mo -share/locale/uk/LC_MESSAGES/ktnef.mo share/locale/uk/LC_MESSAGES/ktouch.mo share/locale/uk/LC_MESSAGES/ktraderclient.mo share/locale/uk/LC_MESSAGES/kttsd.mo @@ -1365,6 +1470,7 @@ share/locale/uk/LC_MESSAGES/kuiserver.mo share/locale/uk/LC_MESSAGES/kuiviewer.mo share/locale/uk/LC_MESSAGES/kurifilter.mo share/locale/uk/LC_MESSAGES/kuser.mo +share/locale/uk/LC_MESSAGES/kwalletd.mo share/locale/uk/LC_MESSAGES/kwalletmanager.mo share/locale/uk/LC_MESSAGES/kwatchgnupg.mo share/locale/uk/LC_MESSAGES/kweather.mo @@ -1411,11 +1517,14 @@ share/locale/uk/LC_MESSAGES/libmailtransport.mo share/locale/uk/LC_MESSAGES/liboktetacore.mo share/locale/uk/LC_MESSAGES/libphonon.mo share/locale/uk/LC_MESSAGES/libplasma.mo +share/locale/uk/LC_MESSAGES/libplasmaclock.mo share/locale/uk/LC_MESSAGES/libtaskmanager.mo share/locale/uk/LC_MESSAGES/lokalize.mo share/locale/uk/LC_MESSAGES/lskat.mo share/locale/uk/LC_MESSAGES/marble.mo +share/locale/uk/LC_MESSAGES/marble_qt.mo share/locale/uk/LC_MESSAGES/nepomuk.mo +share/locale/uk/LC_MESSAGES/nepomuksearch.mo share/locale/uk/LC_MESSAGES/nsplugin.mo share/locale/uk/LC_MESSAGES/okteta.mo share/locale/uk/LC_MESSAGES/oktetapart.mo @@ -1425,6 +1534,7 @@ share/locale/uk/LC_MESSAGES/okular_comicbook.mo share/locale/uk/LC_MESSAGES/okular_djvu.mo share/locale/uk/LC_MESSAGES/okular_dvi.mo share/locale/uk/LC_MESSAGES/okular_epub.mo +share/locale/uk/LC_MESSAGES/okular_fax.mo share/locale/uk/LC_MESSAGES/okular_fictionbook.mo share/locale/uk/LC_MESSAGES/okular_ghostview.mo share/locale/uk/LC_MESSAGES/okular_kimgio.mo @@ -1437,10 +1547,15 @@ share/locale/uk/LC_MESSAGES/parley.mo share/locale/uk/LC_MESSAGES/phonon-xine.mo share/locale/uk/LC_MESSAGES/phonon_gstreamer.mo share/locale/uk/LC_MESSAGES/phonon_kde.mo +share/locale/uk/LC_MESSAGES/plasma-overlay.mo +share/locale/uk/LC_MESSAGES/plasma-shells-common.mo share/locale/uk/LC_MESSAGES/plasma.mo share/locale/uk/LC_MESSAGES/plasma_applet_battery.mo +share/locale/uk/LC_MESSAGES/plasma_applet_bball.mo share/locale/uk/LC_MESSAGES/plasma_applet_binaryclock.mo +share/locale/uk/LC_MESSAGES/plasma_applet_bluemarble.mo share/locale/uk/LC_MESSAGES/plasma_applet_calculator.mo +share/locale/uk/LC_MESSAGES/plasma_applet_charselect.mo share/locale/uk/LC_MESSAGES/plasma_applet_clock.mo share/locale/uk/LC_MESSAGES/plasma_applet_comic.mo share/locale/uk/LC_MESSAGES/plasma_applet_desktop.mo @@ -1452,26 +1567,61 @@ share/locale/uk/LC_MESSAGES/plasma_applet_fileWatcher.mo share/locale/uk/LC_MESSAGES/plasma_applet_folderview.mo share/locale/uk/LC_MESSAGES/plasma_applet_frame.mo share/locale/uk/LC_MESSAGES/plasma_applet_fuzzy_clock.mo +share/locale/uk/LC_MESSAGES/plasma_applet_incomingmsg.mo share/locale/uk/LC_MESSAGES/plasma_applet_kalgebra.mo +share/locale/uk/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/uk/LC_MESSAGES/plasma_applet_katesession.mo share/locale/uk/LC_MESSAGES/plasma_applet_kget.mo -share/locale/uk/LC_MESSAGES/plasma_applet_knewsticker.mo share/locale/uk/LC_MESSAGES/plasma_applet_kolourpicker.mo share/locale/uk/LC_MESSAGES/plasma_applet_launcher.mo +share/locale/uk/LC_MESSAGES/plasma_applet_leavenote.mo +share/locale/uk/LC_MESSAGES/plasma_applet_life.mo share/locale/uk/LC_MESSAGES/plasma_applet_luna.mo +share/locale/uk/LC_MESSAGES/plasma_applet_news.mo share/locale/uk/LC_MESSAGES/plasma_applet_notes.mo share/locale/uk/LC_MESSAGES/plasma_applet_nowplaying.mo share/locale/uk/LC_MESSAGES/plasma_applet_pager.mo share/locale/uk/LC_MESSAGES/plasma_applet_panel.mo +share/locale/uk/LC_MESSAGES/plasma_applet_paste.mo +share/locale/uk/LC_MESSAGES/plasma_applet_pastebin.mo +share/locale/uk/LC_MESSAGES/plasma_applet_previewer.mo +share/locale/uk/LC_MESSAGES/plasma_applet_quicklaunch.mo +share/locale/uk/LC_MESSAGES/plasma_applet_rssnow.mo +share/locale/uk/LC_MESSAGES/plasma_applet_showdashboard.mo +share/locale/uk/LC_MESSAGES/plasma_applet_showdesktop.mo share/locale/uk/LC_MESSAGES/plasma_applet_skapplet.mo +share/locale/uk/LC_MESSAGES/plasma_applet_system-monitor.mo +share/locale/uk/LC_MESSAGES/plasma_applet_systemtray.mo share/locale/uk/LC_MESSAGES/plasma_applet_tasks.mo +share/locale/uk/LC_MESSAGES/plasma_applet_timer.mo share/locale/uk/LC_MESSAGES/plasma_applet_trash.mo share/locale/uk/LC_MESSAGES/plasma_applet_twitter.mo +share/locale/uk/LC_MESSAGES/plasma_applet_weatherstation.mo +share/locale/uk/LC_MESSAGES/plasma_applet_webbrowser.mo +share/locale/uk/LC_MESSAGES/plasma_appletscript_qedje.mo share/locale/uk/LC_MESSAGES/plasma_appletscriptengine_dashboard.mo -share/locale/uk/LC_MESSAGES/plasma_engine_dict.mo +share/locale/uk/LC_MESSAGES/plasma_containment_saverdesktop.mo +share/locale/uk/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/uk/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/uk/LC_MESSAGES/plasma_engine_rss.mo +share/locale/uk/LC_MESSAGES/plasma_runner_contacts.mo +share/locale/uk/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/uk/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/uk/LC_MESSAGES/plasma_runner_locations.mo +share/locale/uk/LC_MESSAGES/plasma_runner_nepomuksearchrunner.mo +share/locale/uk/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/uk/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/uk/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/uk/LC_MESSAGES/plasma_runner_shell.mo +share/locale/uk/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/uk/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/uk/LC_MESSAGES/plasma_scriptengine_qscript.mo +share/locale/uk/LC_MESSAGES/plasma_wallpaper_color.mo +share/locale/uk/LC_MESSAGES/plasma_wallpaper_image.mo share/locale/uk/LC_MESSAGES/plasmaengineexplorer.mo share/locale/uk/LC_MESSAGES/plasmapkg.mo share/locale/uk/LC_MESSAGES/plasmoidviewer.mo +share/locale/uk/LC_MESSAGES/powerdevil.mo share/locale/uk/LC_MESSAGES/printer-applet.mo share/locale/uk/LC_MESSAGES/processcore.mo share/locale/uk/LC_MESSAGES/processui.mo @@ -1483,10 +1633,12 @@ share/locale/uk/LC_MESSAGES/solidcontrol.mo share/locale/uk/LC_MESSAGES/soliduiserver.mo share/locale/uk/LC_MESSAGES/spy.mo share/locale/uk/LC_MESSAGES/step.mo +share/locale/uk/LC_MESSAGES/step_qt.mo share/locale/uk/LC_MESSAGES/strigila_diff.mo share/locale/uk/LC_MESSAGES/superkaramba.mo share/locale/uk/LC_MESSAGES/svgpart.mo share/locale/uk/LC_MESSAGES/sweeper.mo +share/locale/uk/LC_MESSAGES/system-config-printer-kde.mo share/locale/uk/LC_MESSAGES/systemsettings.mo share/locale/uk/LC_MESSAGES/timezones4.mo share/locale/uk/LC_MESSAGES/umbrello.mo @@ -1522,7 +1674,6 @@ share/locale/uk/entry.desktop @dirrm share/doc/HTML/uk/ktuberling @dirrm share/doc/HTML/uk/kttsd @dirrm share/doc/HTML/uk/ktouch -@dirrm share/doc/HTML/uk/ktnef @dirrm share/doc/HTML/uk/ktimetracker @dirrm share/doc/HTML/uk/ktimer @dirrm share/doc/HTML/uk/kteatime @@ -1543,7 +1694,6 @@ share/locale/uk/entry.desktop @dirrm share/doc/HTML/uk/kreversi @dirrm share/doc/HTML/uk/krdc @dirrm share/doc/HTML/uk/kppp -@dirrm share/doc/HTML/uk/kpercentage @dirrm share/doc/HTML/uk/kpat @dirrm share/doc/HTML/uk/kpackage @dirrm share/doc/HTML/uk/korn @@ -1579,6 +1729,36 @@ share/locale/uk/entry.desktop @dirrm share/doc/HTML/uk/kjots @dirrm share/doc/HTML/uk/kiten @dirrm share/doc/HTML/uk/kiriki +@dirrm share/doc/HTML/uk/kioslave/webdav +@dirrm share/doc/HTML/uk/kioslave/thumbnail +@dirrm share/doc/HTML/uk/kioslave/telnet +@dirrm share/doc/HTML/uk/kioslave/tar +@dirrm share/doc/HTML/uk/kioslave/smtp +@dirrm share/doc/HTML/uk/kioslave/smb +@dirrm share/doc/HTML/uk/kioslave/sftp +@dirrm share/doc/HTML/uk/kioslave/rlogin +@dirrm share/doc/HTML/uk/kioslave/pop3 +@dirrm share/doc/HTML/uk/kioslave/nntp +@dirrm share/doc/HTML/uk/kioslave/nfs +@dirrm share/doc/HTML/uk/kioslave/news +@dirrm share/doc/HTML/uk/kioslave/man +@dirrm share/doc/HTML/uk/kioslave/mailto +@dirrm share/doc/HTML/uk/kioslave/ldap +@dirrm share/doc/HTML/uk/kioslave/info +@dirrm share/doc/HTML/uk/kioslave/imap +@dirrm share/doc/HTML/uk/kioslave/http +@dirrm share/doc/HTML/uk/kioslave/help +@dirrm share/doc/HTML/uk/kioslave/gzip +@dirrm share/doc/HTML/uk/kioslave/ftp +@dirrm share/doc/HTML/uk/kioslave/floppy +@dirrm share/doc/HTML/uk/kioslave/fish +@dirrm share/doc/HTML/uk/kioslave/finger +@dirrm share/doc/HTML/uk/kioslave/file +@dirrm share/doc/HTML/uk/kioslave/data +@dirrm share/doc/HTML/uk/kioslave/cgi +@dirrm share/doc/HTML/uk/kioslave/bzip2 +@dirrm share/doc/HTML/uk/kioslave/bookmarks +@dirrm share/doc/HTML/uk/kioslave/audiocd @dirrm share/doc/HTML/uk/kioslave @dirrm share/doc/HTML/uk/kinfocenter/xserver @dirrm share/doc/HTML/uk/kinfocenter/usb @@ -1599,8 +1779,10 @@ share/locale/uk/entry.desktop @dirrm share/doc/HTML/uk/kinfocenter/devices @dirrm share/doc/HTML/uk/kinfocenter @dirrm share/doc/HTML/uk/kimagemapeditor +@dirrm share/doc/HTML/uk/killbots @dirrm share/doc/HTML/uk/kig @dirrm share/doc/HTML/uk/khelpcenter/visualdict +@dirrm share/doc/HTML/uk/khelpcenter/userguide @dirrm share/doc/HTML/uk/khelpcenter/quickstart @dirrm share/doc/HTML/uk/khelpcenter/glossary @dirrm share/doc/HTML/uk/khelpcenter/faq @@ -1631,6 +1813,7 @@ share/locale/uk/entry.desktop @dirrm share/doc/HTML/uk/kcontrol/smb @dirrm share/doc/HTML/uk/kcontrol/screensaver @dirrm share/doc/HTML/uk/kcontrol/proxy +@dirrm share/doc/HTML/uk/kcontrol/powerdevil @dirrm share/doc/HTML/uk/kcontrol/performance @dirrm share/doc/HTML/uk/kcontrol/paths @dirrm share/doc/HTML/uk/kcontrol/passwords @@ -1641,6 +1824,8 @@ share/locale/uk/entry.desktop @dirrm share/doc/HTML/uk/kcontrol/language @dirrm share/doc/HTML/uk/kcontrol/kxkb @dirrm share/doc/HTML/uk/kcontrol/kwindecoration +@dirrm share/doc/HTML/uk/kcontrol/kwincompositing +@dirrm share/doc/HTML/uk/kcontrol/kresources @dirrm share/doc/HTML/uk/kcontrol/knetworkconf @dirrm share/doc/HTML/uk/kcontrol/khtml @dirrm share/doc/HTML/uk/kcontrol/keys @@ -1655,6 +1840,7 @@ share/locale/uk/entry.desktop @dirrm share/doc/HTML/uk/kcontrol/kcmdisplay @dirrm share/doc/HTML/uk/kcontrol/kcmcss @dirrm share/doc/HTML/uk/kcontrol/kcmaccess +@dirrm share/doc/HTML/uk/kcontrol/kamera @dirrm share/doc/HTML/uk/kcontrol/joystick @dirrm share/doc/HTML/uk/kcontrol/icons @dirrm share/doc/HTML/uk/kcontrol/helpindex @@ -1673,6 +1859,7 @@ share/locale/uk/entry.desktop @dirrm share/doc/HTML/uk/kcontrol/colors @dirrm share/doc/HTML/uk/kcontrol/clock @dirrm share/doc/HTML/uk/kcontrol/cache +@dirrm share/doc/HTML/uk/kcontrol/bookmarks @dirrm share/doc/HTML/uk/kcontrol/blockdevices @dirrm share/doc/HTML/uk/kcontrol/bell @dirrm share/doc/HTML/uk/kcontrol/background @@ -1691,16 +1878,18 @@ share/locale/uk/entry.desktop @dirrm share/doc/HTML/uk/kate-plugins @dirrm share/doc/HTML/uk/kate @dirrm share/doc/HTML/uk/kapptemplate +@dirrm share/doc/HTML/uk/kapman @dirrm share/doc/HTML/uk/kanagram -@dirrm share/doc/HTML/uk/kamera @dirrm share/doc/HTML/uk/kalzium @dirrm share/doc/HTML/uk/kalgebra @dirrm share/doc/HTML/uk/kaddressbook +@dirrm share/doc/HTML/uk/kabcclient @dirrm share/doc/HTML/uk/juk @dirrm share/doc/HTML/uk/gwenview @dirrm share/doc/HTML/uk/dragonplayer @dirrm share/doc/HTML/uk/dolphin @dirrm share/doc/HTML/uk/bovo +@dirrm share/doc/HTML/uk/bomber @dirrm share/doc/HTML/uk/blinken @dirrm share/doc/HTML/uk/ark @dirrm share/doc/HTML/uk/amor @@ -1710,3 +1899,8 @@ share/locale/uk/entry.desktop @dirrm share/apps/ktuberling/sounds/uk @dirrm share/apps/ktuberling/sounds @dirrm share/apps/ktuberling +@dirrmtry man/uk/man8 +@dirrmtry man/uk/man7 +@dirrmtry man/uk/man6 +@dirrmtry man/uk/man1 +@dirrmtry man/uk diff --git a/www/kdewebdev4/Makefile b/www/kdewebdev4/Makefile index 92e869896972..518bcbbed558 100644 --- a/www/kdewebdev4/Makefile +++ b/www/kdewebdev4/Makefile @@ -8,21 +8,19 @@ PORTNAME= kdewebdev PORTVERSION= ${KDE4_VERSION} CATEGORIES= www kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Comprehensive html/website development environment -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext -LIB_DEPENDS= antlr.5:${PORTSDIR}/devel/kdesdk4 \ - tidy-0.99.0:${PORTSDIR}/www/tidy-lib +LIB_DEPENDS= tidy-0.99.0:${PORTSDIR}/www/tidy-lib LATEST_LINK= ${PORTNAME}4 USE_BZIP2= yes USE_QT_VER= 4 -USE_KDE4= kdelibs kdeprefix kdehier automoc4 +USE_KDE4= kdelibs pimlibs kdeprefix kdehier automoc4 KDE4_BUILDENV= yes QT_COMPONENTS= opengl gui qmake_build moc_build rcc_build uic_build \ porting_build uic3_build diff --git a/www/kdewebdev4/distinfo b/www/kdewebdev4/distinfo index ea6d45ef9664..d8dbad3c3092 100644 --- a/www/kdewebdev4/distinfo +++ b/www/kdewebdev4/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdewebdev-4.1.4.tar.bz2) = 7a55f117e45a5022160926fc5a1defb0 -SHA256 (KDE/kdewebdev-4.1.4.tar.bz2) = 25ddc892303883d3674a89d03c3b9adbcdece5ca671b167da11d051d1ce36286 -SIZE (KDE/kdewebdev-4.1.4.tar.bz2) = 2517050 +MD5 (KDE/kdewebdev-4.2.0.tar.bz2) = 8b60c68f6cbbe9c5bb48caa576853f9e +SHA256 (KDE/kdewebdev-4.2.0.tar.bz2) = a7fee58405e290157b0613abf6c890d53701570b50850a88fa45e98ba9d1110d +SIZE (KDE/kdewebdev-4.2.0.tar.bz2) = 3400470 diff --git a/www/kdewebdev4/pkg-plist b/www/kdewebdev4/pkg-plist index 2022d75e2859..0393954529ab 100644 --- a/www/kdewebdev4/pkg-plist +++ b/www/kdewebdev4/pkg-plist @@ -45,6 +45,8 @@ share/apps/kimagemapeditor/polygoncursor.png share/apps/kimagemapeditor/removepointcursor.png share/apps/klinkstatus/klinkstatus_shell.rc share/apps/klinkstatus/scripts/scripts.rc +share/apps/klinkstatus/scripts/statistics.rb +share/apps/klinkstatus/scripts/statisticsui.ui share/apps/klinkstatus/styles/results_stylesheet.xsl share/apps/klinkstatuspart/klinkstatus_part.rc share/apps/klinkstatuspart/kpartplugins/klinkstatus_automation.rc @@ -228,34 +230,11 @@ share/kde4/services/klinkstatus_automation.desktop share/kde4/services/klinkstatus_part.desktop share/kde4/services/krossmoduleklinkstatus.desktop share/kde4/services/kxsldbg_part.desktop -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22/actions -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16/actions -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons @dirrm share/doc/HTML/en/xsldbg @dirrm share/doc/HTML/en/kxsldbg @dirrm share/doc/HTML/en/klinkstatus @dirrm share/doc/HTML/en/kimagemapeditor @dirrm share/doc/HTML/en/kfilereplace -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 -@dirrmtry share/config @dirrm share/apps/xsldbg @dirrm share/apps/kxsldbgpart @dirrm share/apps/kxsldbg @@ -272,9 +251,5 @@ share/kde4/services/kxsldbg_part.desktop @dirrm share/apps/kfilereplacepart/icons @dirrm share/apps/kfilereplacepart @dirrm share/apps/kfilereplace -@dirrmtry share/apps -@dirrmtry share/applnk/.hidden -@dirrmtry share/applnk -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/kde4 +@dirrm share/applnk/.hidden +@dirrm share/applnk diff --git a/x11-clocks/kdetoys4/Makefile b/x11-clocks/kdetoys4/Makefile index 75763f5c9016..e042b10d98e5 100644 --- a/x11-clocks/kdetoys4/Makefile +++ b/x11-clocks/kdetoys4/Makefile @@ -8,7 +8,7 @@ PORTNAME= kdetoys PORTVERSION= ${KDE4_VERSION} CATEGORIES= x11-clocks kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org @@ -17,10 +17,12 @@ COMMENT= Collection of entertaining, educational programs for KDE LATEST_LINK= ${PORTNAME}4 USE_BZIP2= yes -USE_QT_VER= 4 -QT_COMPONENTS= opengl gui qmake_build moc_build rcc_build uic_build USE_KDE4= kdelibs workspace kdeprefix kdehier automoc4 KDE4_BUILDENV= yes +USE_QT_VER= 4 +QT_COMPONENTS= opengl gui qmake_build moc_build rcc_build uic_build + +MAN6= amor.6 post-extract: ${MKDIR} ${WRKSRC} diff --git a/x11-clocks/kdetoys4/distinfo b/x11-clocks/kdetoys4/distinfo index 276db5d73dbe..41f9f899fba6 100644 --- a/x11-clocks/kdetoys4/distinfo +++ b/x11-clocks/kdetoys4/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdetoys-4.1.4.tar.bz2) = b32cfc4788e749e6240476783f0eb1a9 -SHA256 (KDE/kdetoys-4.1.4.tar.bz2) = a921a8f08a9212377e41ffc61d152aa93518778160b7d3ed65dbadaaef7c11df -SIZE (KDE/kdetoys-4.1.4.tar.bz2) = 1322072 +MD5 (KDE/kdetoys-4.2.0.tar.bz2) = 3adf538297e5dca51f15186b4acd02ce +SHA256 (KDE/kdetoys-4.2.0.tar.bz2) = c68b54f82d5c9fe25e575df8a3d8caaf60c822aab59d289e595674d3fbfbfcbe +SIZE (KDE/kdetoys-4.2.0.tar.bz2) = 1306756 diff --git a/x11-clocks/kdetoys4/pkg-plist b/x11-clocks/kdetoys4/pkg-plist index 1751b9647f49..8e7fc8546e62 100644 --- a/x11-clocks/kdetoys4/pkg-plist +++ b/x11-clocks/kdetoys4/pkg-plist @@ -505,32 +505,9 @@ share/kde4/services/ScreenSavers/ktux.desktop share/kde4/services/kcmweather.desktop share/kde4/services/kcmweatherservice.desktop share/kde4/services/kweatherservice.desktop -@dirrmtry share/kde4/services/ScreenSavers -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons @dirrm share/doc/HTML/en/kweather @dirrm share/doc/HTML/en/kteatime @dirrm share/doc/HTML/en/amor -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 @dirrm share/apps/kweatherservice @dirrm share/apps/kweather @dirrm share/apps/ktux/sprites @@ -549,7 +526,3 @@ share/kde4/services/kweatherservice.desktop @dirrm share/apps/amor/pics/animated @dirrm share/apps/amor/pics @dirrm share/apps/amor -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/kde4 diff --git a/x11-themes/kdeartwork4/Makefile b/x11-themes/kdeartwork4/Makefile index df283aaf6d11..4fdf30d39265 100644 --- a/x11-themes/kdeartwork4/Makefile +++ b/x11-themes/kdeartwork4/Makefile @@ -8,21 +8,25 @@ PORTNAME= kdeartwork PORTVERSION= ${KDE4_VERSION} CATEGORIES= x11-themes kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= KDE Artworks Themes +BUILD_DEPENDS= eigen>=2.0.b1:${PORTSDIR}/math/eigen2 + LATEST_LINK= ${PORTNAME}4 USE_BZIP2= yes -USE_QT_VER= 4 USE_KDE4= kdelibs workspace kdeprefix kdehier automoc4 KDE4_BUILDENV= yes +USE_QT_VER= 4 QT_COMPONENTS= opengl gui svg qt3support \ qmake_build moc_build rcc_build uic_build +PATCH_WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + OPTIONS= GNOME "Use Gnome screensavers" off .include <bsd.port.pre.mk> @@ -35,10 +39,10 @@ BUILD_DEPENDS+= xscreensaver:${PORTSDIR}/x11/xscreensaver RUN_DEPENDS+= xscreensaver:${PORTSDIR}/x11/xscreensaver .endif -post-extract: - ${MKDIR} ${WRKSRC} - post-patch: + ${REINPLACE_CMD} -e 's|/usr/local/|${LOCALBASE}|g' \ + -e 's|/usr/share|${LOCALBASE}/share|g' \ + ${PATCH_WRKSRC}/cmake/modules/FindXscreensaver.cmake .for item in kscreensaver/kdesavers/banner.cpp ${REINPLACE_CMD} -e 's|<qlabel.h>|<QLabel>|'\ -e 's|<qlineedit.h>|<QLineEdit>|'\ @@ -50,12 +54,12 @@ post-patch: -e 's|<qfontdatabase.h>|<QFontDatabase>|'\ -e 's|<qpainter.h>|<QPainter>|'\ -e 's|<qfontcombobox.h>|<QFontComboBox>|' \ - ${WRKSRC}/../${item} + ${PATCH_WRKSRC}/${item} .endfor .for item in kscreensaver/kdesavers/banner.h kscreensaver/kdesavers/blob.h\ kscreensaver/kdesavers/Euphoria.cpp ${REINPLACE_CMD} -e 's|<qtimer.h>|<QTimer>|'\ - ${WRKSRC}/../${item} + ${PATCH_WRKSRC}/${item} .endfor .for item in kscreensaver/kdesavers/blob.cpp ${REINPLACE_CMD} -e 's|<qcolor.h>|<QColor>|'\ @@ -64,7 +68,10 @@ post-patch: -e 's|<qpainter.h>|<QPainter>|'\ -e 's|<qpixmap.h>|<QPixmap>|'\ -e 's|<qimage.h>|<QImage>|' \ - ${WRKSRC}/../${item} + ${PATCH_WRKSRC}/${item} .endfor +post-extract: + ${MKDIR} ${WRKSRC} + .include <bsd.port.post.mk> diff --git a/x11-themes/kdeartwork4/distinfo b/x11-themes/kdeartwork4/distinfo index 87444a3938a6..defb2189bfa9 100644 --- a/x11-themes/kdeartwork4/distinfo +++ b/x11-themes/kdeartwork4/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdeartwork-4.1.4.tar.bz2) = 6b53365e45fdcd227e7e7c546e25cb36 -SHA256 (KDE/kdeartwork-4.1.4.tar.bz2) = ee1eafb2cebef8c8481c14cbafee7db45c4485dc6d5872f73b19126aaac8e2a8 -SIZE (KDE/kdeartwork-4.1.4.tar.bz2) = 42355777 +MD5 (KDE/kdeartwork-4.2.0.tar.bz2) = d81623b60c7deb314bc2e28a52254ac2 +SHA256 (KDE/kdeartwork-4.2.0.tar.bz2) = ec8dbbcbaabc95b10a9d7a9756d99b5a6d4bb0c77ac4cbd14ad06a943bf00d4c +SIZE (KDE/kdeartwork-4.2.0.tar.bz2) = 22594956 diff --git a/x11-themes/kdeartwork4/pkg-plist b/x11-themes/kdeartwork4/pkg-plist index 674af7bf4943..95924a5fb550 100644 --- a/x11-themes/kdeartwork4/pkg-plist +++ b/x11-themes/kdeartwork4/pkg-plist @@ -1,6 +1,7 @@ bin/kbanner.kss bin/kblob.kss bin/kclock.kss +bin/kdeasciiquarium.kss bin/keuphoria.kss bin/kflux.kss bin/kfountain.kss @@ -14,21 +15,207 @@ bin/krotation.kss bin/kscience.kss bin/kslideshow.kss bin/ksolarwinds.kss +bin/kswarm.kss bin/kvm.kss bin/kwave.kss +bin/kxsconfig +bin/kxsrun lib/kde4/kstyle_phase_config.so lib/kde4/plugins/styles/phasestyle.so -share/apps/color-schemes/BlueDeep.colors share/apps/color-schemes/CherryBlossom.colors share/apps/color-schemes/Chrome.colors share/apps/color-schemes/Desert.colors share/apps/color-schemes/EveningLilac.colors share/apps/color-schemes/HighlandMist.colors -share/apps/color-schemes/MidnightMeadow.colors share/apps/color-schemes/StoneOrchid.colors share/apps/color-schemes/Terra.colors share/apps/color-schemes/WhitePeach.colors share/apps/color-schemes/Whitewater.colors +share/apps/desktoptheme/Aya/dialogs/background.svgz +share/apps/desktoptheme/Aya/dialogs/kickoff.svgz +share/apps/desktoptheme/Aya/dialogs/krunner.svgz +share/apps/desktoptheme/Aya/dialogs/shutdowndialog.svgz +share/apps/desktoptheme/Aya/metadata.desktop +share/apps/desktoptheme/Aya/opaque/dialogs/background.svgz +share/apps/desktoptheme/Aya/opaque/dialogs/krunner.svgz +share/apps/desktoptheme/Aya/opaque/widgets/extender-background.svgz +share/apps/desktoptheme/Aya/opaque/widgets/tooltip.svgz +share/apps/desktoptheme/Aya/widgets/background.svgz +share/apps/desktoptheme/Aya/widgets/bar_meter_horizontal.svgz +share/apps/desktoptheme/Aya/widgets/bar_meter_vertical.svgz +share/apps/desktoptheme/Aya/widgets/button.svgz +share/apps/desktoptheme/Aya/widgets/calendar.svgz +share/apps/desktoptheme/Aya/widgets/clock.svgz +share/apps/desktoptheme/Aya/widgets/extender-background.svgz +share/apps/desktoptheme/Aya/widgets/extender-dragger.svgz +share/apps/desktoptheme/Aya/widgets/pager.svgz +share/apps/desktoptheme/Aya/widgets/panel-background.svgz +share/apps/desktoptheme/Aya/widgets/plot-background.svgz +share/apps/desktoptheme/Aya/widgets/systemtray.svgz +share/apps/desktoptheme/Aya/widgets/tasks.svgz +share/apps/desktoptheme/Aya/widgets/tooltip.svgz +share/apps/desktoptheme/Aya/widgets/translucentbackground.svgz +share/apps/desktoptheme/Clean-Blend/colors +share/apps/desktoptheme/Clean-Blend/dialogs/background.svgz +share/apps/desktoptheme/Clean-Blend/dialogs/kickoff.svgz +share/apps/desktoptheme/Clean-Blend/dialogs/krunner.svgz +share/apps/desktoptheme/Clean-Blend/dialogs/shutdowndialog.source.svgz +share/apps/desktoptheme/Clean-Blend/dialogs/shutdowndialog.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/action-list-view-categories-extender.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/action-list-view-categories.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/action-list-view-headers-plasma-applet.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/action-list-view-headers.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/action-list-view-items-extender.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/action-list-view-items.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/action-list-view-scroll-down-plasma-applet.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/action-list-view-scroll-down.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/action-list-view-scroll-up-plasma-applet.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/action-list-view-scroll-up.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/extender-button-icon.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/inner-background.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/lancelot-context-extender.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/lancelot-context.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/main-background.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/passageway-view-buttons-extender.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/passageway-view-buttons.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/passageway-view-inactivebuttons.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/passageway-view-spacer.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/scroll-bar-background-bar-down.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/scroll-bar-background-bar-left.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/scroll-bar-background-bar-right.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/scroll-bar-background-bar-up.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/scroll-bar-background.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/scroll-bar-button-down-icon.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/scroll-bar-button-left-icon.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/scroll-bar-button-right-icon.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/scroll-bar-button-up-icon.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/scroll-bar-handle-horizontal.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/scroll-bar-handle-vertical.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/section-buttons.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/system-buttons-extender.svgz +share/apps/desktoptheme/Clean-Blend/lancelot/system-buttons.svgz +share/apps/desktoptheme/Clean-Blend/metadata.desktop +share/apps/desktoptheme/Clean-Blend/opaque/dialogs/background.svgz +share/apps/desktoptheme/Clean-Blend/opaque/dialogs/krunner.svgz +share/apps/desktoptheme/Clean-Blend/opaque/dialogs/shutdowndialog.svgz +share/apps/desktoptheme/Clean-Blend/opaque/widgets/extender-background.svgz +share/apps/desktoptheme/Clean-Blend/opaque/widgets/panel-background.svgz +share/apps/desktoptheme/Clean-Blend/opaque/widgets/tooltip.svgz +share/apps/desktoptheme/Clean-Blend/rssnow/background.svg +share/apps/desktoptheme/Clean-Blend/rssnow/left.svg +share/apps/desktoptheme/Clean-Blend/rssnow/right.svg +share/apps/desktoptheme/Clean-Blend/rssnow/rssnow.svg +share/apps/desktoptheme/Clean-Blend/stylesheets/news.css +share/apps/desktoptheme/Clean-Blend/systemtray/bar_meter_horizontal.svgz +share/apps/desktoptheme/Clean-Blend/weatherstation/lcd.svgz +share/apps/desktoptheme/Clean-Blend/weatherstation/lcd_panel.svgz +share/apps/desktoptheme/Clean-Blend/widgets/analog_meter.svgz +share/apps/desktoptheme/Clean-Blend/widgets/arrows.svgz +share/apps/desktoptheme/Clean-Blend/widgets/background.svgz +share/apps/desktoptheme/Clean-Blend/widgets/bar_meter_horizontal.svgz +share/apps/desktoptheme/Clean-Blend/widgets/bar_meter_vertical.svgz +share/apps/desktoptheme/Clean-Blend/widgets/branding.svgz +share/apps/desktoptheme/Clean-Blend/widgets/busywidget.svgz +share/apps/desktoptheme/Clean-Blend/widgets/button.svgz +share/apps/desktoptheme/Clean-Blend/widgets/calendar.svgz +share/apps/desktoptheme/Clean-Blend/widgets/clock.svgz +share/apps/desktoptheme/Clean-Blend/widgets/configuration-icons.svgz +share/apps/desktoptheme/Clean-Blend/widgets/connection-established.svgz +share/apps/desktoptheme/Clean-Blend/widgets/containment-controls.svgz +share/apps/desktoptheme/Clean-Blend/widgets/dragger.svgz +share/apps/desktoptheme/Clean-Blend/widgets/extender-background.svgz +share/apps/desktoptheme/Clean-Blend/widgets/extender-dragger.svgz +share/apps/desktoptheme/Clean-Blend/widgets/frame.svgz +share/apps/desktoptheme/Clean-Blend/widgets/monitor.svgz +share/apps/desktoptheme/Clean-Blend/widgets/notes.svgz +share/apps/desktoptheme/Clean-Blend/widgets/pager.svgz +share/apps/desktoptheme/Clean-Blend/widgets/panel-background.svgz +share/apps/desktoptheme/Clean-Blend/widgets/picture-frame-default.svgz +share/apps/desktoptheme/Clean-Blend/widgets/plot-background.svgz +share/apps/desktoptheme/Clean-Blend/widgets/scrollbar.svgz +share/apps/desktoptheme/Clean-Blend/widgets/systemtray.svgz +share/apps/desktoptheme/Clean-Blend/widgets/tasks.svgz +share/apps/desktoptheme/Clean-Blend/widgets/timer.svgz +share/apps/desktoptheme/Clean-Blend/widgets/tooltip.svgz +share/apps/desktoptheme/Clean-Blend/widgets/translucentbackground.svgz +share/apps/desktoptheme/Elegance/colors +share/apps/desktoptheme/Elegance/dialogs/background.svgz +share/apps/desktoptheme/Elegance/dialogs/krunner.svgz +share/apps/desktoptheme/Elegance/dialogs/shutdowndialog.svgz +share/apps/desktoptheme/Elegance/dialogs/shutdowndlg.svgz +share/apps/desktoptheme/Elegance/metadata.desktop +share/apps/desktoptheme/Elegance/widgets/background.svgz +share/apps/desktoptheme/Elegance/widgets/battery-oxygen.svgz +share/apps/desktoptheme/Elegance/widgets/clock.svgz +share/apps/desktoptheme/Elegance/widgets/extender-background.svgz +share/apps/desktoptheme/Elegance/widgets/iconbutton.svgz +share/apps/desktoptheme/Elegance/widgets/panel-background.svgz +share/apps/desktoptheme/Elegance/widgets/plot-background.svgz +share/apps/desktoptheme/Elegance/widgets/systemtray.svgz +share/apps/desktoptheme/Elegance/widgets/tasks.svgz +share/apps/desktoptheme/Elegance/widgets/tooltip.svgz +share/apps/desktoptheme/Elegance/widgets/translucentbackground.svgz +share/apps/desktoptheme/Silicon/colors +share/apps/desktoptheme/Silicon/dialogs/background.svgz +share/apps/desktoptheme/Silicon/dialogs/kickoff.svgz +share/apps/desktoptheme/Silicon/dialogs/krunner.svgz +share/apps/desktoptheme/Silicon/metadata.desktop +share/apps/desktoptheme/Silicon/widgets/background.svgz +share/apps/desktoptheme/Silicon/widgets/bar_meter_horizontal.svgz +share/apps/desktoptheme/Silicon/widgets/button.svgz +share/apps/desktoptheme/Silicon/widgets/calendar.svgz +share/apps/desktoptheme/Silicon/widgets/configuration-icons.svgz +share/apps/desktoptheme/Silicon/widgets/containment-controls.svgz +share/apps/desktoptheme/Silicon/widgets/extender-background.svgz +share/apps/desktoptheme/Silicon/widgets/extender-dragger.svgz +share/apps/desktoptheme/Silicon/widgets/frame.svgz +share/apps/desktoptheme/Silicon/widgets/pager.svgz +share/apps/desktoptheme/Silicon/widgets/panel-background.svgz +share/apps/desktoptheme/Silicon/widgets/plot-background.svgz +share/apps/desktoptheme/Silicon/widgets/scrollbar.svgz +share/apps/desktoptheme/Silicon/widgets/systemtray.svgz +share/apps/desktoptheme/Silicon/widgets/tasks.svgz +share/apps/desktoptheme/Silicon/widgets/tooltip.svgz +share/apps/desktoptheme/heron/colors +share/apps/desktoptheme/heron/dialogs/background.svgz +share/apps/desktoptheme/heron/dialogs/krunner.svgz +share/apps/desktoptheme/heron/metadata.desktop +share/apps/desktoptheme/heron/opaque/dialogs/background.svgz +share/apps/desktoptheme/heron/opaque/widgets/panel-background.svgz +share/apps/desktoptheme/heron/opaque/widgets/tooltip.svgz +share/apps/desktoptheme/heron/widgets/background.svgz +share/apps/desktoptheme/heron/widgets/clock.svgz +share/apps/desktoptheme/heron/widgets/containment-controls.svgz +share/apps/desktoptheme/heron/widgets/frame.svgz +share/apps/desktoptheme/heron/widgets/pager.svgz +share/apps/desktoptheme/heron/widgets/panel-background.svgz +share/apps/desktoptheme/heron/widgets/scrollbar.svgz +share/apps/desktoptheme/heron/widgets/systemtray.svgz +share/apps/desktoptheme/heron/widgets/tasks.svgz +share/apps/desktoptheme/heron/widgets/tooltip.svgz +share/apps/desktoptheme/slim-glow/LICENSE +share/apps/desktoptheme/slim-glow/colors +share/apps/desktoptheme/slim-glow/dialogs/background.svgz +share/apps/desktoptheme/slim-glow/dialogs/krunner.svgz +share/apps/desktoptheme/slim-glow/dialogs/shutdowndialog.svgz +share/apps/desktoptheme/slim-glow/metadata.desktop +share/apps/desktoptheme/slim-glow/opaque/dialogs/background.svgz +share/apps/desktoptheme/slim-glow/opaque/widgets/panel-background.svgz +share/apps/desktoptheme/slim-glow/opaque/widgets/tooltip.svgz +share/apps/desktoptheme/slim-glow/widgets/analog_meter.svgz +share/apps/desktoptheme/slim-glow/widgets/background.svgz +share/apps/desktoptheme/slim-glow/widgets/bar_meter_horizontal.svgz +share/apps/desktoptheme/slim-glow/widgets/bar_meter_vertical.svgz +share/apps/desktoptheme/slim-glow/widgets/clock.svgz +share/apps/desktoptheme/slim-glow/widgets/iconbutton.svgz +share/apps/desktoptheme/slim-glow/widgets/notes.svgz +share/apps/desktoptheme/slim-glow/widgets/panel-background.svgz +share/apps/desktoptheme/slim-glow/widgets/picture-frame-default.svgz +share/apps/desktoptheme/slim-glow/widgets/plot-background.svgz +share/apps/desktoptheme/slim-glow/widgets/tasks.svgz +share/apps/desktoptheme/slim-glow/widgets/toolbox-button.svgz +share/apps/desktoptheme/slim-glow/widgets/tooltip.svgz +share/apps/desktoptheme/slim-glow/widgets/translucentbackground.svgz share/apps/kfiresaver/kfs_debris.ogg share/apps/kfiresaver/kfs_explode.ogg share/apps/kfiresaver/kfs_kde.png @@ -43,108 +230,6 @@ share/apps/kscreensaver/image.png share/apps/kscreensaver/kscience.png share/apps/kscreensaver/particle.png share/apps/kstyle/themes/phase.themerc -share/apps/kwin/icewm-themes/MenschMaschine/closeA.xpm -share/apps/kwin/icewm-themes/MenschMaschine/closeI.xpm -share/apps/kwin/icewm-themes/MenschMaschine/default.theme -share/apps/kwin/icewm-themes/MenschMaschine/frameAB.xpm -share/apps/kwin/icewm-themes/MenschMaschine/frameABL.xpm -share/apps/kwin/icewm-themes/MenschMaschine/frameABR.xpm -share/apps/kwin/icewm-themes/MenschMaschine/frameAL.xpm -share/apps/kwin/icewm-themes/MenschMaschine/frameAR.xpm -share/apps/kwin/icewm-themes/MenschMaschine/frameAT.xpm -share/apps/kwin/icewm-themes/MenschMaschine/frameATL.xpm -share/apps/kwin/icewm-themes/MenschMaschine/frameATR.xpm -share/apps/kwin/icewm-themes/MenschMaschine/frameIB.xpm -share/apps/kwin/icewm-themes/MenschMaschine/frameIBL.xpm -share/apps/kwin/icewm-themes/MenschMaschine/frameIBR.xpm -share/apps/kwin/icewm-themes/MenschMaschine/frameIL.xpm -share/apps/kwin/icewm-themes/MenschMaschine/frameIR.xpm -share/apps/kwin/icewm-themes/MenschMaschine/frameIT.xpm -share/apps/kwin/icewm-themes/MenschMaschine/frameITL.xpm -share/apps/kwin/icewm-themes/MenschMaschine/frameITR.xpm -share/apps/kwin/icewm-themes/MenschMaschine/maximizeA.xpm -share/apps/kwin/icewm-themes/MenschMaschine/maximizeI.xpm -share/apps/kwin/icewm-themes/MenschMaschine/menuButtonA.xpm -share/apps/kwin/icewm-themes/MenschMaschine/menuButtonI.xpm -share/apps/kwin/icewm-themes/MenschMaschine/minimizeA.xpm -share/apps/kwin/icewm-themes/MenschMaschine/minimizeI.xpm -share/apps/kwin/icewm-themes/MenschMaschine/restoreA.xpm -share/apps/kwin/icewm-themes/MenschMaschine/restoreI.xpm -share/apps/kwin/icewm-themes/MenschMaschine/titleAB.xpm -share/apps/kwin/icewm-themes/MenschMaschine/titleAL.xpm -share/apps/kwin/icewm-themes/MenschMaschine/titleAM.xpm -share/apps/kwin/icewm-themes/MenschMaschine/titleAR.xpm -share/apps/kwin/icewm-themes/MenschMaschine/titleAT.xpm -share/apps/kwin/icewm-themes/MenschMaschine/titleIB.xpm -share/apps/kwin/icewm-themes/MenschMaschine/titleIL.xpm -share/apps/kwin/icewm-themes/MenschMaschine/titleIM.xpm -share/apps/kwin/icewm-themes/MenschMaschine/titleIR.xpm -share/apps/kwin/icewm-themes/MenschMaschine/titleIT.xpm -share/apps/kwin/icewm-themes/Model/closeA.xpm -share/apps/kwin/icewm-themes/Model/closeI.xpm -share/apps/kwin/icewm-themes/Model/default.theme -share/apps/kwin/icewm-themes/Model/frameAB.xpm -share/apps/kwin/icewm-themes/Model/frameABL.xpm -share/apps/kwin/icewm-themes/Model/frameABR.xpm -share/apps/kwin/icewm-themes/Model/frameAL.xpm -share/apps/kwin/icewm-themes/Model/frameAR.xpm -share/apps/kwin/icewm-themes/Model/frameAT.xpm -share/apps/kwin/icewm-themes/Model/frameATL.xpm -share/apps/kwin/icewm-themes/Model/frameATR.xpm -share/apps/kwin/icewm-themes/Model/frameIB.xpm -share/apps/kwin/icewm-themes/Model/frameIBL.xpm -share/apps/kwin/icewm-themes/Model/frameIBR.xpm -share/apps/kwin/icewm-themes/Model/frameIL.xpm -share/apps/kwin/icewm-themes/Model/frameIR.xpm -share/apps/kwin/icewm-themes/Model/frameIT.xpm -share/apps/kwin/icewm-themes/Model/frameITL.xpm -share/apps/kwin/icewm-themes/Model/frameITR.xpm -share/apps/kwin/icewm-themes/Model/maximizeA.xpm -share/apps/kwin/icewm-themes/Model/maximizeI.xpm -share/apps/kwin/icewm-themes/Model/menuButtonA.xpm -share/apps/kwin/icewm-themes/Model/menuButtonI.xpm -share/apps/kwin/icewm-themes/Model/minimizeA.xpm -share/apps/kwin/icewm-themes/Model/minimizeI.xpm -share/apps/kwin/icewm-themes/Model/restoreA.xpm -share/apps/kwin/icewm-themes/Model/restoreI.xpm -share/apps/kwin/icewm-themes/Model/titleAB.xpm -share/apps/kwin/icewm-themes/Model/titleAL.xpm -share/apps/kwin/icewm-themes/Model/titleAM.xpm -share/apps/kwin/icewm-themes/Model/titleAT.xpm -share/apps/kwin/icewm-themes/Model/titleIB.xpm -share/apps/kwin/icewm-themes/Model/titleIL.xpm -share/apps/kwin/icewm-themes/Model/titleIM.xpm -share/apps/kwin/icewm-themes/Model/titleIT.xpm -share/apps/kworldclock/maps/alt/1200.jpg -share/apps/kworldclock/maps/alt/200.jpg -share/apps/kworldclock/maps/alt/400.jpg -share/apps/kworldclock/maps/alt/800.jpg -share/apps/kworldclock/maps/alt/alt.desktop -share/apps/kworldclock/maps/bio/1600.jpg -share/apps/kworldclock/maps/bio/200.jpg -share/apps/kworldclock/maps/bio/400.jpg -share/apps/kworldclock/maps/bio/800.jpg -share/apps/kworldclock/maps/bio/bio.desktop -share/apps/kworldclock/maps/caida/1280.jpg -share/apps/kworldclock/maps/caida/200.jpg -share/apps/kworldclock/maps/caida/400.jpg -share/apps/kworldclock/maps/caida/800.jpg -share/apps/kworldclock/maps/caida/caida.desktop -share/apps/kworldclock/maps/caida_bw/1280.jpg -share/apps/kworldclock/maps/caida_bw/200.jpg -share/apps/kworldclock/maps/caida_bw/400.jpg -share/apps/kworldclock/maps/caida_bw/800.jpg -share/apps/kworldclock/maps/caida_bw/caida_bw.desktop -share/apps/kworldclock/maps/mggd/1440.jpg -share/apps/kworldclock/maps/mggd/200.jpg -share/apps/kworldclock/maps/mggd/400.jpg -share/apps/kworldclock/maps/mggd/800.jpg -share/apps/kworldclock/maps/mggd/mggd.desktop -share/apps/kworldclock/maps/rainfall/1600.jpg -share/apps/kworldclock/maps/rainfall/200.jpg -share/apps/kworldclock/maps/rainfall/400.jpg -share/apps/kworldclock/maps/rainfall/800.jpg -share/apps/kworldclock/maps/rainfall/rainfall.desktop share/emoticons/Boxed/angry.png share/emoticons/Boxed/bigsmile.png share/emoticons/Boxed/confused.png @@ -156,7 +241,6 @@ share/emoticons/Boxed/shade.png share/emoticons/Boxed/smile.png share/emoticons/Boxed/tongue.png share/emoticons/Boxed/wink.png -share/emoticons/GroupWise/emoticons.xml share/emoticons/KMess-Blue/angry.png share/emoticons/KMess-Blue/confused.png share/emoticons/KMess-Blue/cry.png @@ -302,5488 +386,6 @@ share/emoticons/tweakers.net/smile.png share/emoticons/tweakers.net/tongue.png share/emoticons/tweakers.net/unhappy.png share/emoticons/tweakers.net/wink.png -share/icons/Locolor/16x16/actions/1downarrow.png -share/icons/Locolor/16x16/actions/1leftarrow.png -share/icons/Locolor/16x16/actions/1rightarrow.png -share/icons/Locolor/16x16/actions/1uparrow.png -share/icons/Locolor/16x16/actions/2downarrow.png -share/icons/Locolor/16x16/actions/2leftarrow.png -share/icons/Locolor/16x16/actions/2rightarrow.png -share/icons/Locolor/16x16/actions/2uparrow.png -share/icons/Locolor/16x16/actions/abs.png -share/icons/Locolor/16x16/actions/airbrush.png -share/icons/Locolor/16x16/actions/application-exit.png -share/icons/Locolor/16x16/actions/areas.png -share/icons/Locolor/16x16/actions/areas3d.png -share/icons/Locolor/16x16/actions/attach.png -share/icons/Locolor/16x16/actions/bars.png -share/icons/Locolor/16x16/actions/bars3d.png -share/icons/Locolor/16x16/actions/blend.png -share/icons/Locolor/16x16/actions/bookmark-new.png -share/icons/Locolor/16x16/actions/bookmark.png -share/icons/Locolor/16x16/actions/bookmark_folder.png -share/icons/Locolor/16x16/actions/bookmark_toolbar.png -share/icons/Locolor/16x16/actions/brace.png -share/icons/Locolor/16x16/actions/brackets.png -share/icons/Locolor/16x16/actions/cakes.png -share/icons/Locolor/16x16/actions/cakes3d.png -share/icons/Locolor/16x16/actions/charset.png -share/icons/Locolor/16x16/actions/colorize.png -share/icons/Locolor/16x16/actions/colorpicker.png -share/icons/Locolor/16x16/actions/completion.png -share/icons/Locolor/16x16/actions/configure.png -share/icons/Locolor/16x16/actions/connect_creating.png -share/icons/Locolor/16x16/actions/connect_established.png -share/icons/Locolor/16x16/actions/connect_no.png -share/icons/Locolor/16x16/actions/contact-new.png -share/icons/Locolor/16x16/actions/contact.png -share/icons/Locolor/16x16/actions/contents.png -share/icons/Locolor/16x16/actions/contexthelp.png -share/icons/Locolor/16x16/actions/crop.png -share/icons/Locolor/16x16/actions/data.png -share/icons/Locolor/16x16/actions/decrypted.png -share/icons/Locolor/16x16/actions/dialog-close.png -share/icons/Locolor/16x16/actions/document-new.png -share/icons/Locolor/16x16/actions/document-open.png -share/icons/Locolor/16x16/actions/document-print-preview.png -share/icons/Locolor/16x16/actions/document-print.png -share/icons/Locolor/16x16/actions/document-revert.png -share/icons/Locolor/16x16/actions/document-save.png -share/icons/Locolor/16x16/actions/edit-clear.png -share/icons/Locolor/16x16/actions/edit-copy.png -share/icons/Locolor/16x16/actions/edit-cut.png -share/icons/Locolor/16x16/actions/edit-delete.png -share/icons/Locolor/16x16/actions/edit-find.png -share/icons/Locolor/16x16/actions/edit-paste.png -share/icons/Locolor/16x16/actions/edit-redo.png -share/icons/Locolor/16x16/actions/edit-undo.png -share/icons/Locolor/16x16/actions/edit.png -share/icons/Locolor/16x16/actions/edit_add.png -share/icons/Locolor/16x16/actions/edit_remove.png -share/icons/Locolor/16x16/actions/editshred.png -share/icons/Locolor/16x16/actions/edittrash.png -share/icons/Locolor/16x16/actions/encrypted.png -share/icons/Locolor/16x16/actions/eraser.png -share/icons/Locolor/16x16/actions/exec.png -share/icons/Locolor/16x16/actions/filefind.png -share/icons/Locolor/16x16/actions/fill.png -share/icons/Locolor/16x16/actions/filter.png -share/icons/Locolor/16x16/actions/flag.png -share/icons/Locolor/16x16/actions/folder-new.png -share/icons/Locolor/16x16/actions/format-justify-center.png -share/icons/Locolor/16x16/actions/format-justify-fill.png -share/icons/Locolor/16x16/actions/format-justify-left.png -share/icons/Locolor/16x16/actions/format-justify-right.png -share/icons/Locolor/16x16/actions/format-text-bold.png -share/icons/Locolor/16x16/actions/format-text-italic.png -share/icons/Locolor/16x16/actions/format-text-underline.png -share/icons/Locolor/16x16/actions/frac.png -share/icons/Locolor/16x16/actions/frameprint.png -share/icons/Locolor/16x16/actions/gear.png -share/icons/Locolor/16x16/actions/go-bottom.png -share/icons/Locolor/16x16/actions/go-down.png -share/icons/Locolor/16x16/actions/go-first.png -share/icons/Locolor/16x16/actions/go-home.png -share/icons/Locolor/16x16/actions/go-last.png -share/icons/Locolor/16x16/actions/go-next-document.png -share/icons/Locolor/16x16/actions/go-next.png -share/icons/Locolor/16x16/actions/go-previous-document.png -share/icons/Locolor/16x16/actions/go-previous.png -share/icons/Locolor/16x16/actions/go-top.png -share/icons/Locolor/16x16/actions/go-up.png -share/icons/Locolor/16x16/actions/goto.png -share/icons/Locolor/16x16/actions/group.png -share/icons/Locolor/16x16/actions/help.png -share/icons/Locolor/16x16/actions/hilo.png -share/icons/Locolor/16x16/actions/history.png -share/icons/Locolor/16x16/actions/idea.png -share/icons/Locolor/16x16/actions/int.png -share/icons/Locolor/16x16/actions/kdat_archive.png -share/icons/Locolor/16x16/actions/kdat_backup.png -share/icons/Locolor/16x16/actions/kdat_eject.png -share/icons/Locolor/16x16/actions/kdat_mounted.png -share/icons/Locolor/16x16/actions/kdat_restore.png -share/icons/Locolor/16x16/actions/kdat_select_all.png -share/icons/Locolor/16x16/actions/kdat_select_none.png -share/icons/Locolor/16x16/actions/kdat_select_some.png -share/icons/Locolor/16x16/actions/kdat_unmounted.png -share/icons/Locolor/16x16/actions/kdat_verify.png -share/icons/Locolor/16x16/actions/ktnef_extract_all_to.png -share/icons/Locolor/16x16/actions/ktnef_extract_to.png -share/icons/Locolor/16x16/actions/lines.png -share/icons/Locolor/16x16/actions/lines3d.png -share/icons/Locolor/16x16/actions/list-remove.png -share/icons/Locolor/16x16/actions/locationbar_erase.png -share/icons/Locolor/16x16/actions/lsub.png -share/icons/Locolor/16x16/actions/lsup.png -share/icons/Locolor/16x16/actions/mail-forward.png -share/icons/Locolor/16x16/actions/mail-reply-all.png -share/icons/Locolor/16x16/actions/mail-reply-sender.png -share/icons/Locolor/16x16/actions/mail-send.png -share/icons/Locolor/16x16/actions/mail_generic.png -share/icons/Locolor/16x16/actions/mail_get.png -share/icons/Locolor/16x16/actions/matrix.png -share/icons/Locolor/16x16/actions/media-eject.png -share/icons/Locolor/16x16/actions/media-playback-pause.png -share/icons/Locolor/16x16/actions/media-playback-stop.png -share/icons/Locolor/16x16/actions/media-skip-backward.png -share/icons/Locolor/16x16/actions/media-skip-forward.png -share/icons/Locolor/16x16/actions/menu_new.png -share/icons/Locolor/16x16/actions/misc.png -share/icons/Locolor/16x16/actions/move.png -share/icons/Locolor/16x16/actions/news_subscribe.png -share/icons/Locolor/16x16/actions/news_unsubscribe.png -share/icons/Locolor/16x16/actions/object-rotate-left.png -share/icons/Locolor/16x16/actions/object-rotate-right.png -share/icons/Locolor/16x16/actions/ok.png -share/icons/Locolor/16x16/actions/openterm.png -share/icons/Locolor/16x16/actions/options.png -share/icons/Locolor/16x16/actions/paintbrush.png -share/icons/Locolor/16x16/actions/paren.png -share/icons/Locolor/16x16/actions/pencil.png -share/icons/Locolor/16x16/actions/process-stop.png -share/icons/Locolor/16x16/actions/prod.png -share/icons/Locolor/16x16/actions/queue.png -share/icons/Locolor/16x16/actions/ring.png -share/icons/Locolor/16x16/actions/rotate.png -share/icons/Locolor/16x16/actions/rsub.png -share/icons/Locolor/16x16/actions/rsup.png -share/icons/Locolor/16x16/actions/signature.png -share/icons/Locolor/16x16/actions/speak.png -share/icons/Locolor/16x16/actions/spnewgame.png -share/icons/Locolor/16x16/actions/spnewround.png -share/icons/Locolor/16x16/actions/sppausegame.png -share/icons/Locolor/16x16/actions/sqrt.png -share/icons/Locolor/16x16/actions/stamp.png -share/icons/Locolor/16x16/actions/sum.png -share/icons/Locolor/16x16/actions/system-lock-screen.png -share/icons/Locolor/16x16/actions/system-run.png -share/icons/Locolor/16x16/actions/text.png -share/icons/Locolor/16x16/actions/toggle_log.png -share/icons/Locolor/16x16/actions/tools-check-spelling.png -share/icons/Locolor/16x16/actions/transform.png -share/icons/Locolor/16x16/actions/unlock.png -share/icons/Locolor/16x16/actions/view-fullscreen.png -share/icons/Locolor/16x16/actions/view-refresh.png -share/icons/Locolor/16x16/actions/view-restore.png -share/icons/Locolor/16x16/actions/view_choose.png -share/icons/Locolor/16x16/actions/view_detailed.png -share/icons/Locolor/16x16/actions/view_icon.png -share/icons/Locolor/16x16/actions/view_multicolumn.png -share/icons/Locolor/16x16/actions/view_text.png -share/icons/Locolor/16x16/actions/view_tree.png -share/icons/Locolor/16x16/actions/window-new.png -share/icons/Locolor/16x16/actions/wizard.png -share/icons/Locolor/16x16/actions/zoom-in.png -share/icons/Locolor/16x16/actions/zoom-out.png -share/icons/Locolor/16x16/actions/zoom.png -share/icons/Locolor/16x16/apps/abbrowser.png -share/icons/Locolor/16x16/apps/access.png -share/icons/Locolor/16x16/apps/acroread.png -share/icons/Locolor/16x16/apps/agent.png -share/icons/Locolor/16x16/apps/aktion.png -share/icons/Locolor/16x16/apps/alevt.png -share/icons/Locolor/16x16/apps/amor.png -share/icons/Locolor/16x16/apps/app.png -share/icons/Locolor/16x16/apps/applixware.png -share/icons/Locolor/16x16/apps/ark.png -share/icons/Locolor/16x16/apps/arts.png -share/icons/Locolor/16x16/apps/background.png -share/icons/Locolor/16x16/apps/bell.png -share/icons/Locolor/16x16/apps/blender.png -share/icons/Locolor/16x16/apps/clock.png -share/icons/Locolor/16x16/apps/colors.png -share/icons/Locolor/16x16/apps/connectors.png -share/icons/Locolor/16x16/apps/cookie.png -share/icons/Locolor/16x16/apps/date.png -share/icons/Locolor/16x16/apps/dlgedit.png -share/icons/Locolor/16x16/apps/emacs.png -share/icons/Locolor/16x16/apps/email.png -share/icons/Locolor/16x16/apps/energy.png -share/icons/Locolor/16x16/apps/enhanced_browsing.png -share/icons/Locolor/16x16/apps/filetypes.png -share/icons/Locolor/16x16/apps/fonts.png -share/icons/Locolor/16x16/apps/gimp.png -share/icons/Locolor/16x16/apps/go.png -share/icons/Locolor/16x16/apps/gv.png -share/icons/Locolor/16x16/apps/gvim.png -share/icons/Locolor/16x16/apps/help_index.png -share/icons/Locolor/16x16/apps/hwinfo.png -share/icons/Locolor/16x16/apps/icons.png -share/icons/Locolor/16x16/apps/iconthemes.png -share/icons/Locolor/16x16/apps/input_devices_settings.png -share/icons/Locolor/16x16/apps/irkick.png -share/icons/Locolor/16x16/apps/kab.png -share/icons/Locolor/16x16/apps/kabalone.png -share/icons/Locolor/16x16/apps/kalzium.png -share/icons/Locolor/16x16/apps/kappfinder.png -share/icons/Locolor/16x16/apps/karm.png -share/icons/Locolor/16x16/apps/kasteroids.png -share/icons/Locolor/16x16/apps/kaudiocreator.png -share/icons/Locolor/16x16/apps/kbabel.png -share/icons/Locolor/16x16/apps/kbackgammon.png -share/icons/Locolor/16x16/apps/kblackbox.png -share/icons/Locolor/16x16/apps/kbugbuster.png -share/icons/Locolor/16x16/apps/kcachegrind.png -share/icons/Locolor/16x16/apps/kcalc.png -share/icons/Locolor/16x16/apps/kcharselect.png -share/icons/Locolor/16x16/apps/kchart.png -share/icons/Locolor/16x16/apps/kcmdevices.png -share/icons/Locolor/16x16/apps/kcmdf.png -share/icons/Locolor/16x16/apps/kcmdrkonqi.png -share/icons/Locolor/16x16/apps/kcmkicker.png -share/icons/Locolor/16x16/apps/kcmkwm.png -share/icons/Locolor/16x16/apps/kcmmemory.png -share/icons/Locolor/16x16/apps/kcmmidi.png -share/icons/Locolor/16x16/apps/kcmpartitions.png -share/icons/Locolor/16x16/apps/kcmpci.png -share/icons/Locolor/16x16/apps/kcmprocessor.png -share/icons/Locolor/16x16/apps/kcmscsi.png -share/icons/Locolor/16x16/apps/kcmsound.png -share/icons/Locolor/16x16/apps/kcmsystem.png -share/icons/Locolor/16x16/apps/kcmx.png -share/icons/Locolor/16x16/apps/kcontrol.png -share/icons/Locolor/16x16/apps/kcron.png -share/icons/Locolor/16x16/apps/kdat.png -share/icons/Locolor/16x16/apps/kdf.png -share/icons/Locolor/16x16/apps/kdisknav.png -share/icons/Locolor/16x16/apps/kdmconfig.png -share/icons/Locolor/16x16/apps/kdvi.png -share/icons/Locolor/16x16/apps/kedit.png -share/icons/Locolor/16x16/apps/keditbookmarks.png -share/icons/Locolor/16x16/apps/key_bindings.png -share/icons/Locolor/16x16/apps/keyboard.png -share/icons/Locolor/16x16/apps/keyboard_layout.png -share/icons/Locolor/16x16/apps/keystone.png -share/icons/Locolor/16x16/apps/kfax.png -share/icons/Locolor/16x16/apps/kfind.png -share/icons/Locolor/16x16/apps/kfloppy.png -share/icons/Locolor/16x16/apps/kfm.png -share/icons/Locolor/16x16/apps/kfm_home.png -share/icons/Locolor/16x16/apps/kfontinst.png -share/icons/Locolor/16x16/apps/kfract.png -share/icons/Locolor/16x16/apps/kghostview.png -share/icons/Locolor/16x16/apps/khangman.png -share/icons/Locolor/16x16/apps/khelpcenter.png -share/icons/Locolor/16x16/apps/khexedit.png -share/icons/Locolor/16x16/apps/kicker.png -share/icons/Locolor/16x16/apps/kiconedit.png -share/icons/Locolor/16x16/apps/killustrator.png -share/icons/Locolor/16x16/apps/kimagemapeditor.png -share/icons/Locolor/16x16/apps/kit.png -share/icons/Locolor/16x16/apps/kivio.png -share/icons/Locolor/16x16/apps/kjots.png -share/icons/Locolor/16x16/apps/kjumpingcube.png -share/icons/Locolor/16x16/apps/klaptopdaemon.png -share/icons/Locolor/16x16/apps/klatin.png -share/icons/Locolor/16x16/apps/kless.png -share/icons/Locolor/16x16/apps/klettres.png -share/icons/Locolor/16x16/apps/klipper.png -share/icons/Locolor/16x16/apps/kljettool.png -share/icons/Locolor/16x16/apps/klpq.png -share/icons/Locolor/16x16/apps/kmag.png -share/icons/Locolor/16x16/apps/kmahjongg.png -share/icons/Locolor/16x16/apps/kmail.png -share/icons/Locolor/16x16/apps/kmailcvt.png -share/icons/Locolor/16x16/apps/kmenuedit.png -share/icons/Locolor/16x16/apps/kmessedwords.png -share/icons/Locolor/16x16/apps/kmid.png -share/icons/Locolor/16x16/apps/kmidi.png -share/icons/Locolor/16x16/apps/kmines.png -share/icons/Locolor/16x16/apps/kmix.png -share/icons/Locolor/16x16/apps/kmoon.png -share/icons/Locolor/16x16/apps/kmouth.png -share/icons/Locolor/16x16/apps/kmplot.png -share/icons/Locolor/16x16/apps/knewsticker.png -share/icons/Locolor/16x16/apps/knode.png -share/icons/Locolor/16x16/apps/knotes.png -share/icons/Locolor/16x16/apps/knotify.png -share/icons/Locolor/16x16/apps/kodo.png -share/icons/Locolor/16x16/apps/kompare.png -share/icons/Locolor/16x16/apps/koncd.png -share/icons/Locolor/16x16/apps/konqueror.png -share/icons/Locolor/16x16/apps/konquest.png -share/icons/Locolor/16x16/apps/konsole.png -share/icons/Locolor/16x16/apps/korganizer.png -share/icons/Locolor/16x16/apps/korn.png -share/icons/Locolor/16x16/apps/kpackage.png -share/icons/Locolor/16x16/apps/kpager.png -share/icons/Locolor/16x16/apps/kpaint.png -share/icons/Locolor/16x16/apps/kpat.png -share/icons/Locolor/16x16/apps/kpercentage.png -share/icons/Locolor/16x16/apps/kpixmap2bitmap.png -share/icons/Locolor/16x16/apps/kplayer.png -share/icons/Locolor/16x16/apps/kpm.png -share/icons/Locolor/16x16/apps/kpoker.png -share/icons/Locolor/16x16/apps/kppp.png -share/icons/Locolor/16x16/apps/kpresenter.png -share/icons/Locolor/16x16/apps/kreversi.png -share/icons/Locolor/16x16/apps/kruler.png -share/icons/Locolor/16x16/apps/ksame.png -share/icons/Locolor/16x16/apps/kscd.png -share/icons/Locolor/16x16/apps/kscreensaver.png -share/icons/Locolor/16x16/apps/kshisen.png -share/icons/Locolor/16x16/apps/ksirc.png -share/icons/Locolor/16x16/apps/ksirtet.png -share/icons/Locolor/16x16/apps/ksmiletris.png -share/icons/Locolor/16x16/apps/ksnake.png -share/icons/Locolor/16x16/apps/ksnapshot.png -share/icons/Locolor/16x16/apps/ksokoban.png -share/icons/Locolor/16x16/apps/kspaceduel.png -share/icons/Locolor/16x16/apps/kspread.png -share/icons/Locolor/16x16/apps/kspreadcalc.png -share/icons/Locolor/16x16/apps/kstars.png -share/icons/Locolor/16x16/apps/ksysctrl.png -share/icons/Locolor/16x16/apps/ksysguard.png -share/icons/Locolor/16x16/apps/ksysv.png -share/icons/Locolor/16x16/apps/ktalkd.png -share/icons/Locolor/16x16/apps/kteatime.png -share/icons/Locolor/16x16/apps/kthememgr.png -share/icons/Locolor/16x16/apps/ktimemon.png -share/icons/Locolor/16x16/apps/ktip.png -share/icons/Locolor/16x16/apps/ktnef.png -share/icons/Locolor/16x16/apps/ktron.png -share/icons/Locolor/16x16/apps/ktux.png -share/icons/Locolor/16x16/apps/kudesigner.png -share/icons/Locolor/16x16/apps/kuiviewer.png -share/icons/Locolor/16x16/apps/kuser.png -share/icons/Locolor/16x16/apps/kview.png -share/icons/Locolor/16x16/apps/kwikdisk.png -share/icons/Locolor/16x16/apps/kwin.png -share/icons/Locolor/16x16/apps/kwin4.png -share/icons/Locolor/16x16/apps/kword.png -share/icons/Locolor/16x16/apps/kworldwatch.png -share/icons/Locolor/16x16/apps/kwrite.png -share/icons/Locolor/16x16/apps/kxsldbg.png -share/icons/Locolor/16x16/apps/laptop_battery.png -share/icons/Locolor/16x16/apps/laptop_pcmcia.png -share/icons/Locolor/16x16/apps/locale.png -share/icons/Locolor/16x16/apps/looknfeel.png -share/icons/Locolor/16x16/apps/lskat.png -share/icons/Locolor/16x16/apps/lyx.png -share/icons/Locolor/16x16/apps/mathematica.png -share/icons/Locolor/16x16/apps/mouse.png -share/icons/Locolor/16x16/apps/mozilla.png -share/icons/Locolor/16x16/apps/multimedia.png -share/icons/Locolor/16x16/apps/nedit.png -share/icons/Locolor/16x16/apps/netscape.png -share/icons/Locolor/16x16/apps/noatun.png -share/icons/Locolor/16x16/apps/package.png -share/icons/Locolor/16x16/apps/package_applications.png -share/icons/Locolor/16x16/apps/package_editors.png -share/icons/Locolor/16x16/apps/package_favourite.png -share/icons/Locolor/16x16/apps/package_games.png -share/icons/Locolor/16x16/apps/package_games_arcade.png -share/icons/Locolor/16x16/apps/package_games_board.png -share/icons/Locolor/16x16/apps/package_games_card.png -share/icons/Locolor/16x16/apps/package_games_strategy.png -share/icons/Locolor/16x16/apps/package_graphics.png -share/icons/Locolor/16x16/apps/package_multimedia.png -share/icons/Locolor/16x16/apps/package_network.png -share/icons/Locolor/16x16/apps/package_settings.png -share/icons/Locolor/16x16/apps/package_system.png -share/icons/Locolor/16x16/apps/package_utilities.png -share/icons/Locolor/16x16/apps/panel.png -share/icons/Locolor/16x16/apps/panel_settings.png -share/icons/Locolor/16x16/apps/password.png -share/icons/Locolor/16x16/apps/penguin.png -share/icons/Locolor/16x16/apps/pixie.png -share/icons/Locolor/16x16/apps/plan.png -share/icons/Locolor/16x16/apps/proxy.png -share/icons/Locolor/16x16/apps/pybliographic.png -share/icons/Locolor/16x16/apps/realplayer.png -share/icons/Locolor/16x16/apps/remote.png -share/icons/Locolor/16x16/apps/samba.png -share/icons/Locolor/16x16/apps/scsi.png -share/icons/Locolor/16x16/apps/style.png -share/icons/Locolor/16x16/apps/terminal.png -share/icons/Locolor/16x16/apps/usb.png -share/icons/Locolor/16x16/apps/wabi.png -share/icons/Locolor/16x16/apps/window_list.png -share/icons/Locolor/16x16/apps/winprops.png -share/icons/Locolor/16x16/apps/wp.png -share/icons/Locolor/16x16/apps/xapp.png -share/icons/Locolor/16x16/apps/xcalc.png -share/icons/Locolor/16x16/apps/xclipboard.png -share/icons/Locolor/16x16/apps/xclock.png -share/icons/Locolor/16x16/apps/xconsole.png -share/icons/Locolor/16x16/apps/xedit.png -share/icons/Locolor/16x16/apps/xemacs.png -share/icons/Locolor/16x16/apps/xeyes.png -share/icons/Locolor/16x16/apps/xfig.png -share/icons/Locolor/16x16/apps/xfmail.png -share/icons/Locolor/16x16/apps/xload.png -share/icons/Locolor/16x16/apps/xmag.png -share/icons/Locolor/16x16/apps/xosview.png -share/icons/Locolor/16x16/apps/xpaint.png -share/icons/Locolor/16x16/apps/xv.png -share/icons/Locolor/16x16/devices/3floppy_mount.png -share/icons/Locolor/16x16/devices/3floppy_unmount.png -share/icons/Locolor/16x16/devices/5floppy_mount.png -share/icons/Locolor/16x16/devices/5floppy_unmount.png -share/icons/Locolor/16x16/devices/cdrom_mount.png -share/icons/Locolor/16x16/devices/cdrom_unmount.png -share/icons/Locolor/16x16/devices/cdwriter_mount.png -share/icons/Locolor/16x16/devices/cdwriter_unmount.png -share/icons/Locolor/16x16/devices/hdd_mount.png -share/icons/Locolor/16x16/devices/hdd_unmount.png -share/icons/Locolor/16x16/devices/memory.png -share/icons/Locolor/16x16/devices/mo_mount.png -share/icons/Locolor/16x16/devices/mo_unmount.png -share/icons/Locolor/16x16/devices/printer1.png -share/icons/Locolor/16x16/devices/printer2.png -share/icons/Locolor/16x16/devices/scanner.png -share/icons/Locolor/16x16/devices/tablet.png -share/icons/Locolor/16x16/devices/zip_mount.png -share/icons/Locolor/16x16/devices/zip_unmount.png -share/icons/Locolor/16x16/mimetypes/applix.png -share/icons/Locolor/16x16/mimetypes/binary.png -share/icons/Locolor/16x16/mimetypes/binary2.png -share/icons/Locolor/16x16/mimetypes/core.png -share/icons/Locolor/16x16/mimetypes/document.png -share/icons/Locolor/16x16/mimetypes/dvi.png -share/icons/Locolor/16x16/mimetypes/empty.png -share/icons/Locolor/16x16/mimetypes/font_bitmap.png -share/icons/Locolor/16x16/mimetypes/font_truetype.png -share/icons/Locolor/16x16/mimetypes/font_type1.png -share/icons/Locolor/16x16/mimetypes/gettext.png -share/icons/Locolor/16x16/mimetypes/gf.png -share/icons/Locolor/16x16/mimetypes/html.png -share/icons/Locolor/16x16/mimetypes/image.png -share/icons/Locolor/16x16/mimetypes/info.png -share/icons/Locolor/16x16/mimetypes/kmultiple.png -share/icons/Locolor/16x16/mimetypes/log.png -share/icons/Locolor/16x16/mimetypes/make.png -share/icons/Locolor/16x16/mimetypes/man.png -share/icons/Locolor/16x16/mimetypes/metafont.png -share/icons/Locolor/16x16/mimetypes/midi.png -share/icons/Locolor/16x16/mimetypes/netscape_doc.png -share/icons/Locolor/16x16/mimetypes/news.png -share/icons/Locolor/16x16/mimetypes/pdf.png -share/icons/Locolor/16x16/mimetypes/pk.png -share/icons/Locolor/16x16/mimetypes/postscript.png -share/icons/Locolor/16x16/mimetypes/readme.png -share/icons/Locolor/16x16/mimetypes/recycled.png -share/icons/Locolor/16x16/mimetypes/resource.png -share/icons/Locolor/16x16/mimetypes/rpm.png -share/icons/Locolor/16x16/mimetypes/shellscript.png -share/icons/Locolor/16x16/mimetypes/shellscript2.png -share/icons/Locolor/16x16/mimetypes/sound.png -share/icons/Locolor/16x16/mimetypes/source.png -share/icons/Locolor/16x16/mimetypes/source_c.png -share/icons/Locolor/16x16/mimetypes/source_cpp.png -share/icons/Locolor/16x16/mimetypes/source_f.png -share/icons/Locolor/16x16/mimetypes/source_h.png -share/icons/Locolor/16x16/mimetypes/source_java.png -share/icons/Locolor/16x16/mimetypes/source_l.png -share/icons/Locolor/16x16/mimetypes/source_moc.png -share/icons/Locolor/16x16/mimetypes/source_o.png -share/icons/Locolor/16x16/mimetypes/source_p.png -share/icons/Locolor/16x16/mimetypes/source_pl.png -share/icons/Locolor/16x16/mimetypes/source_py.png -share/icons/Locolor/16x16/mimetypes/source_s.png -share/icons/Locolor/16x16/mimetypes/source_y.png -share/icons/Locolor/16x16/mimetypes/tar.png -share/icons/Locolor/16x16/mimetypes/tex.png -share/icons/Locolor/16x16/mimetypes/tgz.png -share/icons/Locolor/16x16/mimetypes/txt.png -share/icons/Locolor/16x16/mimetypes/unknown.png -share/icons/Locolor/16x16/mimetypes/vcalendar.png -share/icons/Locolor/16x16/mimetypes/vcard.png -share/icons/Locolor/16x16/mimetypes/video.png -share/icons/Locolor/22x22/actions/speak.png -share/icons/Locolor/22x22/apps/kmouth.png -share/icons/Locolor/22x22/apps/kplayer.png -share/icons/Locolor/22x22/apps/page.png -share/icons/Locolor/32x32/actions/button_ok.png -share/icons/Locolor/32x32/actions/dialog-cancel.png -share/icons/Locolor/32x32/actions/gear.png -share/icons/Locolor/32x32/actions/misc.png -share/icons/Locolor/32x32/actions/speak.png -share/icons/Locolor/32x32/apps/access.png -share/icons/Locolor/32x32/apps/acroread.png -share/icons/Locolor/32x32/apps/agent.png -share/icons/Locolor/32x32/apps/aktion.png -share/icons/Locolor/32x32/apps/alevt.png -share/icons/Locolor/32x32/apps/app.png -share/icons/Locolor/32x32/apps/applixware.png -share/icons/Locolor/32x32/apps/ark.png -share/icons/Locolor/32x32/apps/background.png -share/icons/Locolor/32x32/apps/bell.png -share/icons/Locolor/32x32/apps/blender.png -share/icons/Locolor/32x32/apps/clanbomber.png -share/icons/Locolor/32x32/apps/clock.png -share/icons/Locolor/32x32/apps/colors.png -share/icons/Locolor/32x32/apps/cookie.png -share/icons/Locolor/32x32/apps/date.png -share/icons/Locolor/32x32/apps/dlgedit.png -share/icons/Locolor/32x32/apps/emacs.png -share/icons/Locolor/32x32/apps/email.png -share/icons/Locolor/32x32/apps/energy.png -share/icons/Locolor/32x32/apps/enhanced_browsing.png -share/icons/Locolor/32x32/apps/error.png -share/icons/Locolor/32x32/apps/filetypes.png -share/icons/Locolor/32x32/apps/fonts.png -share/icons/Locolor/32x32/apps/gimp.png -share/icons/Locolor/32x32/apps/go.png -share/icons/Locolor/32x32/apps/gv.png -share/icons/Locolor/32x32/apps/gvim.png -share/icons/Locolor/32x32/apps/help_index.png -share/icons/Locolor/32x32/apps/hwinfo.png -share/icons/Locolor/32x32/apps/icons.png -share/icons/Locolor/32x32/apps/iconthemes.png -share/icons/Locolor/32x32/apps/input_devices_settings.png -share/icons/Locolor/32x32/apps/irkick.png -share/icons/Locolor/32x32/apps/kab.png -share/icons/Locolor/32x32/apps/kabalone.png -share/icons/Locolor/32x32/apps/kalzium.png -share/icons/Locolor/32x32/apps/kappfinder.png -share/icons/Locolor/32x32/apps/karm.png -share/icons/Locolor/32x32/apps/kasteroids.png -share/icons/Locolor/32x32/apps/katomic.png -share/icons/Locolor/32x32/apps/kaudiocreator.png -share/icons/Locolor/32x32/apps/kbabel.png -share/icons/Locolor/32x32/apps/kbackgammon.png -share/icons/Locolor/32x32/apps/kblackbox.png -share/icons/Locolor/32x32/apps/kbruch.png -share/icons/Locolor/32x32/apps/kbugbuster.png -share/icons/Locolor/32x32/apps/kcachegrind.png -share/icons/Locolor/32x32/apps/kcalc.png -share/icons/Locolor/32x32/apps/kcharselect.png -share/icons/Locolor/32x32/apps/kchart.png -share/icons/Locolor/32x32/apps/kcmdevices.png -share/icons/Locolor/32x32/apps/kcmdf.png -share/icons/Locolor/32x32/apps/kcmdrkonqi.png -share/icons/Locolor/32x32/apps/kcmkicker.png -share/icons/Locolor/32x32/apps/kcmkwm.png -share/icons/Locolor/32x32/apps/kcmmemory.png -share/icons/Locolor/32x32/apps/kcmmidi.png -share/icons/Locolor/32x32/apps/kcmpartitions.png -share/icons/Locolor/32x32/apps/kcmpci.png -share/icons/Locolor/32x32/apps/kcmprocessor.png -share/icons/Locolor/32x32/apps/kcmscsi.png -share/icons/Locolor/32x32/apps/kcmsound.png -share/icons/Locolor/32x32/apps/kcmsystem.png -share/icons/Locolor/32x32/apps/kcmx.png -share/icons/Locolor/32x32/apps/kcontrol.png -share/icons/Locolor/32x32/apps/kcron.png -share/icons/Locolor/32x32/apps/kdat.png -share/icons/Locolor/32x32/apps/kdf.png -share/icons/Locolor/32x32/apps/kdisknav.png -share/icons/Locolor/32x32/apps/kdmconfig.png -share/icons/Locolor/32x32/apps/kdvi.png -share/icons/Locolor/32x32/apps/kedit.png -share/icons/Locolor/32x32/apps/key_bindings.png -share/icons/Locolor/32x32/apps/keyboard.png -share/icons/Locolor/32x32/apps/keyboard_layout.png -share/icons/Locolor/32x32/apps/keystone.png -share/icons/Locolor/32x32/apps/kfax.png -share/icons/Locolor/32x32/apps/kfind.png -share/icons/Locolor/32x32/apps/kfloppy.png -share/icons/Locolor/32x32/apps/kfm.png -share/icons/Locolor/32x32/apps/kfm_home.png -share/icons/Locolor/32x32/apps/kfontinst.png -share/icons/Locolor/32x32/apps/kfract.png -share/icons/Locolor/32x32/apps/kghostview.png -share/icons/Locolor/32x32/apps/khangman.png -share/icons/Locolor/32x32/apps/khelpcenter.png -share/icons/Locolor/32x32/apps/khexedit.png -share/icons/Locolor/32x32/apps/kiconedit.png -share/icons/Locolor/32x32/apps/killustrator.png -share/icons/Locolor/32x32/apps/kimagemapeditor.png -share/icons/Locolor/32x32/apps/kit.png -share/icons/Locolor/32x32/apps/kivio.png -share/icons/Locolor/32x32/apps/kjots.png -share/icons/Locolor/32x32/apps/kjumpingcube.png -share/icons/Locolor/32x32/apps/klatin.png -share/icons/Locolor/32x32/apps/kless.png -share/icons/Locolor/32x32/apps/klettres.png -share/icons/Locolor/32x32/apps/klipper.png -share/icons/Locolor/32x32/apps/kljettool.png -share/icons/Locolor/32x32/apps/klpq.png -share/icons/Locolor/32x32/apps/kmag.png -share/icons/Locolor/32x32/apps/kmahjongg.png -share/icons/Locolor/32x32/apps/kmail.png -share/icons/Locolor/32x32/apps/kmailcvt.png -share/icons/Locolor/32x32/apps/kmessedwords.png -share/icons/Locolor/32x32/apps/kmid.png -share/icons/Locolor/32x32/apps/kmidi.png -share/icons/Locolor/32x32/apps/kmines.png -share/icons/Locolor/32x32/apps/kmix.png -share/icons/Locolor/32x32/apps/kmoon.png -share/icons/Locolor/32x32/apps/kmouth.png -share/icons/Locolor/32x32/apps/kmplot.png -share/icons/Locolor/32x32/apps/knewsticker.png -share/icons/Locolor/32x32/apps/knode.png -share/icons/Locolor/32x32/apps/knotes.png -share/icons/Locolor/32x32/apps/knotify.png -share/icons/Locolor/32x32/apps/kodo.png -share/icons/Locolor/32x32/apps/kompare.png -share/icons/Locolor/32x32/apps/koncd.png -share/icons/Locolor/32x32/apps/konqueror.png -share/icons/Locolor/32x32/apps/konquest.png -share/icons/Locolor/32x32/apps/konsole.png -share/icons/Locolor/32x32/apps/korganizer.png -share/icons/Locolor/32x32/apps/korn.png -share/icons/Locolor/32x32/apps/kpackage.png -share/icons/Locolor/32x32/apps/kpager.png -share/icons/Locolor/32x32/apps/kpaint.png -share/icons/Locolor/32x32/apps/kpat.png -share/icons/Locolor/32x32/apps/kpercentage.png -share/icons/Locolor/32x32/apps/kpixmap2bitmap.png -share/icons/Locolor/32x32/apps/kplayer.png -share/icons/Locolor/32x32/apps/kpm.png -share/icons/Locolor/32x32/apps/kpoker.png -share/icons/Locolor/32x32/apps/kppp.png -share/icons/Locolor/32x32/apps/kpresenter.png -share/icons/Locolor/32x32/apps/kreversi.png -share/icons/Locolor/32x32/apps/kruler.png -share/icons/Locolor/32x32/apps/ksame.png -share/icons/Locolor/32x32/apps/kscd.png -share/icons/Locolor/32x32/apps/kscreensaver.png -share/icons/Locolor/32x32/apps/kshisen.png -share/icons/Locolor/32x32/apps/ksirc.png -share/icons/Locolor/32x32/apps/ksirtet.png -share/icons/Locolor/32x32/apps/ksmiletris.png -share/icons/Locolor/32x32/apps/ksnake.png -share/icons/Locolor/32x32/apps/ksnapshot.png -share/icons/Locolor/32x32/apps/ksokoban.png -share/icons/Locolor/32x32/apps/kspaceduel.png -share/icons/Locolor/32x32/apps/kspread.png -share/icons/Locolor/32x32/apps/kspreadcalc.png -share/icons/Locolor/32x32/apps/kstars.png -share/icons/Locolor/32x32/apps/ksysctrl.png -share/icons/Locolor/32x32/apps/ksysguard.png -share/icons/Locolor/32x32/apps/ksysv.png -share/icons/Locolor/32x32/apps/ktalkd.png -share/icons/Locolor/32x32/apps/kthememgr.png -share/icons/Locolor/32x32/apps/ktimemon.png -share/icons/Locolor/32x32/apps/ktip.png -share/icons/Locolor/32x32/apps/ktnef.png -share/icons/Locolor/32x32/apps/ktron.png -share/icons/Locolor/32x32/apps/ktuberling.png -share/icons/Locolor/32x32/apps/ktux.png -share/icons/Locolor/32x32/apps/kudesigner.png -share/icons/Locolor/32x32/apps/kuiviewer.png -share/icons/Locolor/32x32/apps/kuser.png -share/icons/Locolor/32x32/apps/kview.png -share/icons/Locolor/32x32/apps/kwikdisk.png -share/icons/Locolor/32x32/apps/kwin.png -share/icons/Locolor/32x32/apps/kwin4.png -share/icons/Locolor/32x32/apps/kword.png -share/icons/Locolor/32x32/apps/kworldwatch.png -share/icons/Locolor/32x32/apps/kwrite.png -share/icons/Locolor/32x32/apps/kxsldbg.png -share/icons/Locolor/32x32/apps/laptop_battery.png -share/icons/Locolor/32x32/apps/laptop_pcmcia.png -share/icons/Locolor/32x32/apps/locale.png -share/icons/Locolor/32x32/apps/looknfeel.png -share/icons/Locolor/32x32/apps/lskat.png -share/icons/Locolor/32x32/apps/lyx.png -share/icons/Locolor/32x32/apps/mathematica.png -share/icons/Locolor/32x32/apps/mouse.png -share/icons/Locolor/32x32/apps/multimedia.png -share/icons/Locolor/32x32/apps/nedit.png -share/icons/Locolor/32x32/apps/netscape.png -share/icons/Locolor/32x32/apps/noatun.png -share/icons/Locolor/32x32/apps/package.png -share/icons/Locolor/32x32/apps/package_applications.png -share/icons/Locolor/32x32/apps/package_editors.png -share/icons/Locolor/32x32/apps/package_favourite.png -share/icons/Locolor/32x32/apps/package_games.png -share/icons/Locolor/32x32/apps/package_graphics.png -share/icons/Locolor/32x32/apps/package_multimedia.png -share/icons/Locolor/32x32/apps/package_network.png -share/icons/Locolor/32x32/apps/package_settings.png -share/icons/Locolor/32x32/apps/package_system.png -share/icons/Locolor/32x32/apps/package_utilities.png -share/icons/Locolor/32x32/apps/panel_settings.png -share/icons/Locolor/32x32/apps/password.png -share/icons/Locolor/32x32/apps/penguin.png -share/icons/Locolor/32x32/apps/pixie.png -share/icons/Locolor/32x32/apps/plan.png -share/icons/Locolor/32x32/apps/proxy.png -share/icons/Locolor/32x32/apps/pybliographic.png -share/icons/Locolor/32x32/apps/pysol.png -share/icons/Locolor/32x32/apps/realplayer.png -share/icons/Locolor/32x32/apps/samba.png -share/icons/Locolor/32x32/apps/style.png -share/icons/Locolor/32x32/apps/terminal.png -share/icons/Locolor/32x32/apps/wabi.png -share/icons/Locolor/32x32/apps/window_list.png -share/icons/Locolor/32x32/apps/winprops.png -share/icons/Locolor/32x32/apps/wp.png -share/icons/Locolor/32x32/apps/xapp.png -share/icons/Locolor/32x32/apps/xawtv.png -share/icons/Locolor/32x32/apps/xcalc.png -share/icons/Locolor/32x32/apps/xclipboard.png -share/icons/Locolor/32x32/apps/xclock.png -share/icons/Locolor/32x32/apps/xconsole.png -share/icons/Locolor/32x32/apps/xedit.png -share/icons/Locolor/32x32/apps/xemacs.png -share/icons/Locolor/32x32/apps/xeyes.png -share/icons/Locolor/32x32/apps/xfig.png -share/icons/Locolor/32x32/apps/xfmail.png -share/icons/Locolor/32x32/apps/xload.png -share/icons/Locolor/32x32/apps/xmag.png -share/icons/Locolor/32x32/apps/xmms.png -share/icons/Locolor/32x32/apps/xosview.png -share/icons/Locolor/32x32/apps/xpaint.png -share/icons/Locolor/32x32/apps/xv.png -share/icons/Locolor/32x32/devices/3floppy_mount.png -share/icons/Locolor/32x32/devices/3floppy_unmount.png -share/icons/Locolor/32x32/devices/5floppy_mount.png -share/icons/Locolor/32x32/devices/5floppy_unmount.png -share/icons/Locolor/32x32/devices/cdrom_mount.png -share/icons/Locolor/32x32/devices/cdrom_unmount.png -share/icons/Locolor/32x32/devices/cdwriter_mount.png -share/icons/Locolor/32x32/devices/cdwriter_unmount.png -share/icons/Locolor/32x32/devices/hdd_mount.png -share/icons/Locolor/32x32/devices/hdd_unmount.png -share/icons/Locolor/32x32/devices/memory.png -share/icons/Locolor/32x32/devices/mo_mount.png -share/icons/Locolor/32x32/devices/mo_unmount.png -share/icons/Locolor/32x32/devices/printer1.png -share/icons/Locolor/32x32/devices/printer2.png -share/icons/Locolor/32x32/devices/scanner.png -share/icons/Locolor/32x32/devices/tablet.png -share/icons/Locolor/32x32/devices/zip_mount.png -share/icons/Locolor/32x32/devices/zip_unmount.png -share/icons/Locolor/32x32/mimetypes/applix.png -share/icons/Locolor/32x32/mimetypes/binary.png -share/icons/Locolor/32x32/mimetypes/binary2.png -share/icons/Locolor/32x32/mimetypes/core.png -share/icons/Locolor/32x32/mimetypes/deb.png -share/icons/Locolor/32x32/mimetypes/document.png -share/icons/Locolor/32x32/mimetypes/dvi.png -share/icons/Locolor/32x32/mimetypes/empty.png -share/icons/Locolor/32x32/mimetypes/font_bitmap.png -share/icons/Locolor/32x32/mimetypes/font_truetype.png -share/icons/Locolor/32x32/mimetypes/font_type1.png -share/icons/Locolor/32x32/mimetypes/gettext.png -share/icons/Locolor/32x32/mimetypes/gf.png -share/icons/Locolor/32x32/mimetypes/html.png -share/icons/Locolor/32x32/mimetypes/image.png -share/icons/Locolor/32x32/mimetypes/info.png -share/icons/Locolor/32x32/mimetypes/kmultiple.png -share/icons/Locolor/32x32/mimetypes/log.png -share/icons/Locolor/32x32/mimetypes/make.png -share/icons/Locolor/32x32/mimetypes/man.png -share/icons/Locolor/32x32/mimetypes/metafont.png -share/icons/Locolor/32x32/mimetypes/midi.png -share/icons/Locolor/32x32/mimetypes/netscape_doc.png -share/icons/Locolor/32x32/mimetypes/news.png -share/icons/Locolor/32x32/mimetypes/pdf.png -share/icons/Locolor/32x32/mimetypes/pk.png -share/icons/Locolor/32x32/mimetypes/postscript.png -share/icons/Locolor/32x32/mimetypes/readme.png -share/icons/Locolor/32x32/mimetypes/recycled.png -share/icons/Locolor/32x32/mimetypes/resource.png -share/icons/Locolor/32x32/mimetypes/rpm.png -share/icons/Locolor/32x32/mimetypes/shellscript.png -share/icons/Locolor/32x32/mimetypes/shellscript2.png -share/icons/Locolor/32x32/mimetypes/sound.png -share/icons/Locolor/32x32/mimetypes/source.png -share/icons/Locolor/32x32/mimetypes/source_c.png -share/icons/Locolor/32x32/mimetypes/source_cpp.png -share/icons/Locolor/32x32/mimetypes/source_f.png -share/icons/Locolor/32x32/mimetypes/source_h.png -share/icons/Locolor/32x32/mimetypes/source_java.png -share/icons/Locolor/32x32/mimetypes/source_l.png -share/icons/Locolor/32x32/mimetypes/source_moc.png -share/icons/Locolor/32x32/mimetypes/source_o.png -share/icons/Locolor/32x32/mimetypes/source_p.png -share/icons/Locolor/32x32/mimetypes/source_pl.png -share/icons/Locolor/32x32/mimetypes/source_py.png -share/icons/Locolor/32x32/mimetypes/source_s.png -share/icons/Locolor/32x32/mimetypes/source_y.png -share/icons/Locolor/32x32/mimetypes/tar.png -share/icons/Locolor/32x32/mimetypes/tex.png -share/icons/Locolor/32x32/mimetypes/tgz.png -share/icons/Locolor/32x32/mimetypes/txt.png -share/icons/Locolor/32x32/mimetypes/unknown.png -share/icons/Locolor/32x32/mimetypes/vcalendar.png -share/icons/Locolor/32x32/mimetypes/vcard.png -share/icons/Locolor/32x32/mimetypes/video.png -share/icons/Locolor/index.theme -share/icons/crystalsvg/128x128/actions/bug.png -share/icons/crystalsvg/128x128/actions/document-open.png -share/icons/crystalsvg/128x128/actions/klettres_desert.png -share/icons/crystalsvg/128x128/actions/klettres_grownup.png -share/icons/crystalsvg/128x128/actions/klettres_kids.png -share/icons/crystalsvg/128x128/actions/kstars_geo.png -share/icons/crystalsvg/128x128/actions/launch.png -share/icons/crystalsvg/128x128/actions/noatun_equalizer.png -share/icons/crystalsvg/128x128/actions/noatun_playlist.png -share/icons/crystalsvg/128x128/actions/online_status.png -share/icons/crystalsvg/128x128/actions/share.png -share/icons/crystalsvg/128x128/actions/svn_add.png -share/icons/crystalsvg/128x128/actions/svn_branch.png -share/icons/crystalsvg/128x128/actions/svn_merge.png -share/icons/crystalsvg/128x128/actions/svn_remove.png -share/icons/crystalsvg/128x128/actions/svn_status.png -share/icons/crystalsvg/128x128/actions/svn_switch.png -share/icons/crystalsvg/128x128/actions/voicecall.png -share/icons/crystalsvg/128x128/actions/webcamreceive.png -share/icons/crystalsvg/128x128/actions/webcamsend.png -share/icons/crystalsvg/128x128/apps/access.png -share/icons/crystalsvg/128x128/apps/aim_protocol.png -share/icons/crystalsvg/128x128/apps/akregator.png -share/icons/crystalsvg/128x128/apps/ark.png -share/icons/crystalsvg/128x128/apps/arts.png -share/icons/crystalsvg/128x128/apps/background.png -share/icons/crystalsvg/128x128/apps/bell.png -share/icons/crystalsvg/128x128/apps/blinken.png -share/icons/crystalsvg/128x128/apps/cache.png -share/icons/crystalsvg/128x128/apps/clock.png -share/icons/crystalsvg/128x128/apps/colors.png -share/icons/crystalsvg/128x128/apps/date.png -share/icons/crystalsvg/128x128/apps/email.png -share/icons/crystalsvg/128x128/apps/energy_star.png -share/icons/crystalsvg/128x128/apps/filetypes.png -share/icons/crystalsvg/128x128/apps/fonts.png -share/icons/crystalsvg/128x128/apps/gstreamerlogo.png -share/icons/crystalsvg/128x128/apps/help_index.png -share/icons/crystalsvg/128x128/apps/hwinfo.png -share/icons/crystalsvg/128x128/apps/icq_protocol.png -share/icons/crystalsvg/128x128/apps/juk.png -share/icons/crystalsvg/128x128/apps/kaboodle.png -share/icons/crystalsvg/128x128/apps/kaddressbook.png -share/icons/crystalsvg/128x128/apps/kalzium.png -share/icons/crystalsvg/128x128/apps/kanagram.png -share/icons/crystalsvg/128x128/apps/karm.png -share/icons/crystalsvg/128x128/apps/kasteroids.png -share/icons/crystalsvg/128x128/apps/kate.png -share/icons/crystalsvg/128x128/apps/katomic.png -share/icons/crystalsvg/128x128/apps/kbackgammon.png -share/icons/crystalsvg/128x128/apps/kblackbox.png -share/icons/crystalsvg/128x128/apps/kbounce.png -share/icons/crystalsvg/128x128/apps/kbruch.png -share/icons/crystalsvg/128x128/apps/kbugbuster.png -share/icons/crystalsvg/128x128/apps/kcmdevices.png -share/icons/crystalsvg/128x128/apps/kcmdf.png -share/icons/crystalsvg/128x128/apps/kcmkwm.png -share/icons/crystalsvg/128x128/apps/kcmmemory.png -share/icons/crystalsvg/128x128/apps/kcmpartitions.png -share/icons/crystalsvg/128x128/apps/kcmpci.png -share/icons/crystalsvg/128x128/apps/kcontrol.png -share/icons/crystalsvg/128x128/apps/kdeprintfax.png -share/icons/crystalsvg/128x128/apps/kdf.png -share/icons/crystalsvg/128x128/apps/kdict.png -share/icons/crystalsvg/128x128/apps/kdmconfig.png -share/icons/crystalsvg/128x128/apps/kenolaba.png -share/icons/crystalsvg/128x128/apps/key_bindings.png -share/icons/crystalsvg/128x128/apps/kfloppy.png -share/icons/crystalsvg/128x128/apps/kfouleggs.png -share/icons/crystalsvg/128x128/apps/kgeography.png -share/icons/crystalsvg/128x128/apps/kghostview.png -share/icons/crystalsvg/128x128/apps/kgoldrunner.png -share/icons/crystalsvg/128x128/apps/khangman.png -share/icons/crystalsvg/128x128/apps/khelpcenter.png -share/icons/crystalsvg/128x128/apps/kig.png -share/icons/crystalsvg/128x128/apps/kiriki.png -share/icons/crystalsvg/128x128/apps/kiten.png -share/icons/crystalsvg/128x128/apps/kjobviewer.png -share/icons/crystalsvg/128x128/apps/kjumpingcube.png -share/icons/crystalsvg/128x128/apps/klatin.png -share/icons/crystalsvg/128x128/apps/klettres.png -share/icons/crystalsvg/128x128/apps/klickety.png -share/icons/crystalsvg/128x128/apps/klines.png -share/icons/crystalsvg/128x128/apps/klinkstatus.png -share/icons/crystalsvg/128x128/apps/klipper.png -share/icons/crystalsvg/128x128/apps/kmahjongg.png -share/icons/crystalsvg/128x128/apps/kmail.png -share/icons/crystalsvg/128x128/apps/kmenu.png -share/icons/crystalsvg/128x128/apps/kmines.png -share/icons/crystalsvg/128x128/apps/kmix.png -share/icons/crystalsvg/128x128/apps/kmplot.png -share/icons/crystalsvg/128x128/apps/knetattach.png -share/icons/crystalsvg/128x128/apps/knetwalk.png -share/icons/crystalsvg/128x128/apps/knode.png -share/icons/crystalsvg/128x128/apps/knode2.png -share/icons/crystalsvg/128x128/apps/knotes.png -share/icons/crystalsvg/128x128/apps/kolf.png -share/icons/crystalsvg/128x128/apps/kompare.png -share/icons/crystalsvg/128x128/apps/konqueror.png -share/icons/crystalsvg/128x128/apps/konquest.png -share/icons/crystalsvg/128x128/apps/konsole.png -share/icons/crystalsvg/128x128/apps/kontact.png -share/icons/crystalsvg/128x128/apps/kopete.png -share/icons/crystalsvg/128x128/apps/kopete_avdevice.png -share/icons/crystalsvg/128x128/apps/korganizer.png -share/icons/crystalsvg/128x128/apps/kpackage.png -share/icons/crystalsvg/128x128/apps/kpat.png -share/icons/crystalsvg/128x128/apps/kpercentage.png -share/icons/crystalsvg/128x128/apps/kpoker.png -share/icons/crystalsvg/128x128/apps/kppp.png -share/icons/crystalsvg/128x128/apps/kregexpeditor.png -share/icons/crystalsvg/128x128/apps/kreversi.png -share/icons/crystalsvg/128x128/apps/ksame.png -share/icons/crystalsvg/128x128/apps/kscd.png -share/icons/crystalsvg/128x128/apps/kscreensaver.png -share/icons/crystalsvg/128x128/apps/ksirtet.png -share/icons/crystalsvg/128x128/apps/ksnake.png -share/icons/crystalsvg/128x128/apps/ksokoban.png -share/icons/crystalsvg/128x128/apps/kspaceduel.png -share/icons/crystalsvg/128x128/apps/ksplash.png -share/icons/crystalsvg/128x128/apps/ksquares.png -share/icons/crystalsvg/128x128/apps/kstars.png -share/icons/crystalsvg/128x128/apps/ksysguard.png -share/icons/crystalsvg/128x128/apps/kthememgr.png -share/icons/crystalsvg/128x128/apps/ktimer.png -share/icons/crystalsvg/128x128/apps/ktip.png -share/icons/crystalsvg/128x128/apps/ktouch.png -share/icons/crystalsvg/128x128/apps/ktron.png -share/icons/crystalsvg/128x128/apps/kttsd.png -share/icons/crystalsvg/128x128/apps/ktuberling.png -share/icons/crystalsvg/128x128/apps/kturtle.png -share/icons/crystalsvg/128x128/apps/kuser.png -share/icons/crystalsvg/128x128/apps/kwalletmanager.png -share/icons/crystalsvg/128x128/apps/kwalletmanager2.png -share/icons/crystalsvg/128x128/apps/kwifimanager.png -share/icons/crystalsvg/128x128/apps/kwikdisk.png -share/icons/crystalsvg/128x128/apps/kwin4.png -share/icons/crystalsvg/128x128/apps/kwordquiz.png -share/icons/crystalsvg/128x128/apps/kwrite.png -share/icons/crystalsvg/128x128/apps/laptop_battery.png -share/icons/crystalsvg/128x128/apps/locale.png -share/icons/crystalsvg/128x128/apps/lskat.png -share/icons/crystalsvg/128x128/apps/meanwhile_protocol.png -share/icons/crystalsvg/128x128/apps/metabar.png -share/icons/crystalsvg/128x128/apps/mobile_phone.png -share/icons/crystalsvg/128x128/apps/msn_protocol.png -share/icons/crystalsvg/128x128/apps/noatun.png -share/icons/crystalsvg/128x128/apps/okular.png -share/icons/crystalsvg/128x128/apps/package.png -share/icons/crystalsvg/128x128/apps/package_applications.png -share/icons/crystalsvg/128x128/apps/package_development.png -share/icons/crystalsvg/128x128/apps/package_favourite.png -share/icons/crystalsvg/128x128/apps/package_games.png -share/icons/crystalsvg/128x128/apps/package_multimedia.png -share/icons/crystalsvg/128x128/apps/package_network.png -share/icons/crystalsvg/128x128/apps/package_settings.png -share/icons/crystalsvg/128x128/apps/package_toys.png -share/icons/crystalsvg/128x128/apps/package_utilities.png -share/icons/crystalsvg/128x128/apps/password.png -share/icons/crystalsvg/128x128/apps/penguin.png -share/icons/crystalsvg/128x128/apps/personal.png -share/icons/crystalsvg/128x128/apps/preferences-desktop-multimedia.png -share/icons/crystalsvg/128x128/apps/preferences-desktop-theme.png -share/icons/crystalsvg/128x128/apps/preferences-system-power-management.png -share/icons/crystalsvg/128x128/apps/printmgr.png -share/icons/crystalsvg/128x128/apps/proxy.png -share/icons/crystalsvg/128x128/apps/qq_protocol.png -share/icons/crystalsvg/128x128/apps/randr.png -share/icons/crystalsvg/128x128/apps/samba.png -share/icons/crystalsvg/128x128/apps/sms_protocol.png -share/icons/crystalsvg/128x128/apps/staroffice.png -share/icons/crystalsvg/128x128/apps/stylesheet.png -share/icons/crystalsvg/128x128/apps/superkaramba.png -share/icons/crystalsvg/128x128/apps/systemtray.png -share/icons/crystalsvg/128x128/apps/taskbar.png -share/icons/crystalsvg/128x128/apps/telepathy_protocol.png -share/icons/crystalsvg/128x128/apps/terminal.png -share/icons/crystalsvg/128x128/apps/testbed_protocol.png -share/icons/crystalsvg/128x128/apps/tux.png -share/icons/crystalsvg/128x128/apps/umbrello.png -share/icons/crystalsvg/128x128/apps/wp.png -share/icons/crystalsvg/128x128/apps/wp_protocol.png -share/icons/crystalsvg/128x128/apps/xinelogo.png -share/icons/crystalsvg/128x128/apps/yahoo_protocol.png -share/icons/crystalsvg/128x128/devices/blockdevice.png -share/icons/crystalsvg/128x128/devices/camera_mount.png -share/icons/crystalsvg/128x128/devices/camera_unmount.png -share/icons/crystalsvg/128x128/devices/chardevice.png -share/icons/crystalsvg/128x128/devices/compact_flash_mount.png -share/icons/crystalsvg/128x128/devices/compact_flash_unmount.png -share/icons/crystalsvg/128x128/devices/computer-laptop.png -share/icons/crystalsvg/128x128/devices/hdd_mount.png -share/icons/crystalsvg/128x128/devices/hdd_unmount.png -share/icons/crystalsvg/128x128/devices/ipod_mount.png -share/icons/crystalsvg/128x128/devices/ipod_unmount.png -share/icons/crystalsvg/128x128/devices/laptop.png -share/icons/crystalsvg/128x128/devices/memory_stick_mount.png -share/icons/crystalsvg/128x128/devices/memory_stick_unmount.png -share/icons/crystalsvg/128x128/devices/mouse.png -share/icons/crystalsvg/128x128/devices/print_class.png -share/icons/crystalsvg/128x128/devices/printer1.png -share/icons/crystalsvg/128x128/devices/sd_mmc_mount.png -share/icons/crystalsvg/128x128/devices/sd_mmc_unmount.png -share/icons/crystalsvg/128x128/devices/smart_media_mount.png -share/icons/crystalsvg/128x128/devices/smart_media_unmount.png -share/icons/crystalsvg/128x128/devices/system.png -share/icons/crystalsvg/128x128/devices/usbpendrive_mount.png -share/icons/crystalsvg/128x128/devices/usbpendrive_unmount.png -share/icons/crystalsvg/128x128/mimetypes/applix.png -share/icons/crystalsvg/128x128/mimetypes/ascii.png -share/icons/crystalsvg/128x128/mimetypes/binary.png -share/icons/crystalsvg/128x128/mimetypes/cdimage.png -share/icons/crystalsvg/128x128/mimetypes/cdr.png -share/icons/crystalsvg/128x128/mimetypes/cdtrack.png -share/icons/crystalsvg/128x128/mimetypes/colorscm.png -share/icons/crystalsvg/128x128/mimetypes/core.png -share/icons/crystalsvg/128x128/mimetypes/deb.png -share/icons/crystalsvg/128x128/mimetypes/document.png -share/icons/crystalsvg/128x128/mimetypes/document2.png -share/icons/crystalsvg/128x128/mimetypes/dvi.png -share/icons/crystalsvg/128x128/mimetypes/empty.png -share/icons/crystalsvg/128x128/mimetypes/encrypted.png -share/icons/crystalsvg/128x128/mimetypes/exec_wine.png -share/icons/crystalsvg/128x128/mimetypes/font.png -share/icons/crystalsvg/128x128/mimetypes/font_bitmap.png -share/icons/crystalsvg/128x128/mimetypes/font_truetype.png -share/icons/crystalsvg/128x128/mimetypes/font_type1.png -share/icons/crystalsvg/128x128/mimetypes/gf.png -share/icons/crystalsvg/128x128/mimetypes/html.png -share/icons/crystalsvg/128x128/mimetypes/image.png -share/icons/crystalsvg/128x128/mimetypes/info.png -share/icons/crystalsvg/128x128/mimetypes/karbon_karbon.png -share/icons/crystalsvg/128x128/mimetypes/kexi_kexi.png -share/icons/crystalsvg/128x128/mimetypes/kig_doc.png -share/icons/crystalsvg/128x128/mimetypes/kmultiple.png -share/icons/crystalsvg/128x128/mimetypes/koffice.png -share/icons/crystalsvg/128x128/mimetypes/krita_kra.png -share/icons/crystalsvg/128x128/mimetypes/log.png -share/icons/crystalsvg/128x128/mimetypes/make.png -share/icons/crystalsvg/128x128/mimetypes/man.png -share/icons/crystalsvg/128x128/mimetypes/message.png -share/icons/crystalsvg/128x128/mimetypes/metafont.png -share/icons/crystalsvg/128x128/mimetypes/midi.png -share/icons/crystalsvg/128x128/mimetypes/misc.png -share/icons/crystalsvg/128x128/mimetypes/mozilla_doc.png -share/icons/crystalsvg/128x128/mimetypes/netscape_doc.png -share/icons/crystalsvg/128x128/mimetypes/pdf.png -share/icons/crystalsvg/128x128/mimetypes/pk.png -share/icons/crystalsvg/128x128/mimetypes/postscript.png -share/icons/crystalsvg/128x128/mimetypes/quicktime.png -share/icons/crystalsvg/128x128/mimetypes/readme.png -share/icons/crystalsvg/128x128/mimetypes/recycled.png -share/icons/crystalsvg/128x128/mimetypes/resource.png -share/icons/crystalsvg/128x128/mimetypes/rpm.png -share/icons/crystalsvg/128x128/mimetypes/shellscript.png -share/icons/crystalsvg/128x128/mimetypes/soffice.png -share/icons/crystalsvg/128x128/mimetypes/sound.png -share/icons/crystalsvg/128x128/mimetypes/source.png -share/icons/crystalsvg/128x128/mimetypes/source_c.png -share/icons/crystalsvg/128x128/mimetypes/source_cpp.png -share/icons/crystalsvg/128x128/mimetypes/source_f.png -share/icons/crystalsvg/128x128/mimetypes/source_h.png -share/icons/crystalsvg/128x128/mimetypes/source_j.png -share/icons/crystalsvg/128x128/mimetypes/source_java.png -share/icons/crystalsvg/128x128/mimetypes/source_l.png -share/icons/crystalsvg/128x128/mimetypes/source_moc.png -share/icons/crystalsvg/128x128/mimetypes/source_o.png -share/icons/crystalsvg/128x128/mimetypes/source_p.png -share/icons/crystalsvg/128x128/mimetypes/source_php.png -share/icons/crystalsvg/128x128/mimetypes/source_pl.png -share/icons/crystalsvg/128x128/mimetypes/source_py.png -share/icons/crystalsvg/128x128/mimetypes/source_s.png -share/icons/crystalsvg/128x128/mimetypes/source_y.png -share/icons/crystalsvg/128x128/mimetypes/spreadsheet.png -share/icons/crystalsvg/128x128/mimetypes/superkaramba_theme.png -share/icons/crystalsvg/128x128/mimetypes/tar.png -share/icons/crystalsvg/128x128/mimetypes/template_source.png -share/icons/crystalsvg/128x128/mimetypes/tex.png -share/icons/crystalsvg/128x128/mimetypes/tgz.png -share/icons/crystalsvg/128x128/mimetypes/txt.png -share/icons/crystalsvg/128x128/mimetypes/txt2.png -share/icons/crystalsvg/128x128/mimetypes/umbrellofile.png -share/icons/crystalsvg/128x128/mimetypes/unknown.png -share/icons/crystalsvg/128x128/mimetypes/vcalendar.png -share/icons/crystalsvg/128x128/mimetypes/vcard.png -share/icons/crystalsvg/128x128/mimetypes/vectorgfx.png -share/icons/crystalsvg/128x128/mimetypes/video.png -share/icons/crystalsvg/128x128/mimetypes/widget_doc.png -share/icons/crystalsvg/128x128/mimetypes/wordprocessing.png -share/icons/crystalsvg/128x128/mimetypes/zip.png -share/icons/crystalsvg/16x16/actions/1day.png -share/icons/crystalsvg/16x16/actions/1downarrow.png -share/icons/crystalsvg/16x16/actions/1leftarrow.png -share/icons/crystalsvg/16x16/actions/1rightarrow.png -share/icons/crystalsvg/16x16/actions/1uparrow.png -share/icons/crystalsvg/16x16/actions/2downarrow.png -share/icons/crystalsvg/16x16/actions/2leftarrow.png -share/icons/crystalsvg/16x16/actions/2rightarrow.png -share/icons/crystalsvg/16x16/actions/2uparrow.png -share/icons/crystalsvg/16x16/actions/5days.png -share/icons/crystalsvg/16x16/actions/7days.png -share/icons/crystalsvg/16x16/actions/abentry.png -share/icons/crystalsvg/16x16/actions/about_kde.png -share/icons/crystalsvg/16x16/actions/account_offline_overlay.png -share/icons/crystalsvg/16x16/actions/activity.png -share/icons/crystalsvg/16x16/actions/add_file.png -share/icons/crystalsvg/16x16/actions/add_user.png -share/icons/crystalsvg/16x16/actions/aim_away.png -share/icons/crystalsvg/16x16/actions/aim_offline.png -share/icons/crystalsvg/16x16/actions/aim_online.png -share/icons/crystalsvg/16x16/actions/aim_overlay.png -share/icons/crystalsvg/16x16/actions/airbrush.png -share/icons/crystalsvg/16x16/actions/alt2_laptop_nobattery.png -share/icons/crystalsvg/16x16/actions/alt2_laptop_nocharge.png -share/icons/crystalsvg/16x16/actions/alt2_laptop_power.png -share/icons/crystalsvg/16x16/actions/alt3_laptop_nocharge.png -share/icons/crystalsvg/16x16/actions/alt3_laptop_power.png -share/icons/crystalsvg/16x16/actions/alt_laptop_nocharge.png -share/icons/crystalsvg/16x16/actions/alt_laptop_power.png -share/icons/crystalsvg/16x16/actions/altkey.png -share/icons/crystalsvg/16x16/actions/application-exit.png -share/icons/crystalsvg/16x16/actions/appointment-new.png -share/icons/crystalsvg/16x16/actions/attach.png -share/icons/crystalsvg/16x16/actions/babelfish.png -share/icons/crystalsvg/16x16/actions/bell.png -share/icons/crystalsvg/16x16/actions/blend.png -share/icons/crystalsvg/16x16/actions/bookmark-new.png -share/icons/crystalsvg/16x16/actions/bookmark.png -share/icons/crystalsvg/16x16/actions/bookmark_folder.png -share/icons/crystalsvg/16x16/actions/bookmark_toolbar.png -share/icons/crystalsvg/16x16/actions/bookmarks_list_add.png -share/icons/crystalsvg/16x16/actions/bug.png -share/icons/crystalsvg/16x16/actions/calculate.png -share/icons/crystalsvg/16x16/actions/camera_test.png -share/icons/crystalsvg/16x16/actions/cancel.png -share/icons/crystalsvg/16x16/actions/capskey.png -share/icons/crystalsvg/16x16/actions/charset.png -share/icons/crystalsvg/16x16/actions/chemical.png -share/icons/crystalsvg/16x16/actions/clear_left.png -share/icons/crystalsvg/16x16/actions/color_fill.png -share/icons/crystalsvg/16x16/actions/color_line.png -share/icons/crystalsvg/16x16/actions/colorize.png -share/icons/crystalsvg/16x16/actions/colorpicker.png -share/icons/crystalsvg/16x16/actions/compfile.png -share/icons/crystalsvg/16x16/actions/completion.png -share/icons/crystalsvg/16x16/actions/configure.png -share/icons/crystalsvg/16x16/actions/configure_shortcuts.png -share/icons/crystalsvg/16x16/actions/configure_toolbars.png -share/icons/crystalsvg/16x16/actions/connect_creating.png -share/icons/crystalsvg/16x16/actions/connect_established.png -share/icons/crystalsvg/16x16/actions/connect_no.png -share/icons/crystalsvg/16x16/actions/contact-new.png -share/icons/crystalsvg/16x16/actions/contact_away_overlay.png -share/icons/crystalsvg/16x16/actions/contact_busy_overlay.png -share/icons/crystalsvg/16x16/actions/contact_food_overlay.png -share/icons/crystalsvg/16x16/actions/contact_invisible_overlay.png -share/icons/crystalsvg/16x16/actions/contact_phone_overlay.png -share/icons/crystalsvg/16x16/actions/contact_xa_overlay.png -share/icons/crystalsvg/16x16/actions/contents.png -share/icons/crystalsvg/16x16/actions/contents2.png -share/icons/crystalsvg/16x16/actions/contexthelp.png -share/icons/crystalsvg/16x16/actions/controlkey.png -share/icons/crystalsvg/16x16/actions/crop.png -share/icons/crystalsvg/16x16/actions/cssvalidator.png -share/icons/crystalsvg/16x16/actions/curfiledir.png -share/icons/crystalsvg/16x16/actions/dayview.png -share/icons/crystalsvg/16x16/actions/decrypted.png -share/icons/crystalsvg/16x16/actions/define_clip.png -share/icons/crystalsvg/16x16/actions/delete_user.png -share/icons/crystalsvg/16x16/actions/dialog-close.png -share/icons/crystalsvg/16x16/actions/dialog-ok.png -share/icons/crystalsvg/16x16/actions/disablefont.png -share/icons/crystalsvg/16x16/actions/document-new.png -share/icons/crystalsvg/16x16/actions/document-open.png -share/icons/crystalsvg/16x16/actions/document-print-preview.png -share/icons/crystalsvg/16x16/actions/document-print.png -share/icons/crystalsvg/16x16/actions/document-revert.png -share/icons/crystalsvg/16x16/actions/document-save-as.png -share/icons/crystalsvg/16x16/actions/document-save.png -share/icons/crystalsvg/16x16/actions/domtreeviewer.png -share/icons/crystalsvg/16x16/actions/downindicator.png -share/icons/crystalsvg/16x16/actions/edit-clear.png -share/icons/crystalsvg/16x16/actions/edit-copy.png -share/icons/crystalsvg/16x16/actions/edit-cut.png -share/icons/crystalsvg/16x16/actions/edit-delete.png -share/icons/crystalsvg/16x16/actions/edit-find.png -share/icons/crystalsvg/16x16/actions/edit-paste.png -share/icons/crystalsvg/16x16/actions/edit-redo.png -share/icons/crystalsvg/16x16/actions/edit-undo.png -share/icons/crystalsvg/16x16/actions/edit.png -share/icons/crystalsvg/16x16/actions/edit_user.png -share/icons/crystalsvg/16x16/actions/editshred.png -share/icons/crystalsvg/16x16/actions/edittrash.png -share/icons/crystalsvg/16x16/actions/elempic.png -share/icons/crystalsvg/16x16/actions/emoticon.png -share/icons/crystalsvg/16x16/actions/emptytrash.png -share/icons/crystalsvg/16x16/actions/enablefont.png -share/icons/crystalsvg/16x16/actions/encrypted.png -share/icons/crystalsvg/16x16/actions/endturn.png -share/icons/crystalsvg/16x16/actions/energies.png -share/icons/crystalsvg/16x16/actions/enumList.png -share/icons/crystalsvg/16x16/actions/enum_list.png -share/icons/crystalsvg/16x16/actions/eqchem.png -share/icons/crystalsvg/16x16/actions/eraser.png -share/icons/crystalsvg/16x16/actions/exec.png -share/icons/crystalsvg/16x16/actions/fileexport.png -share/icons/crystalsvg/16x16/actions/filefind.png -share/icons/crystalsvg/16x16/actions/fileimport.png -share/icons/crystalsvg/16x16/actions/fill.png -share/icons/crystalsvg/16x16/actions/filter.png -share/icons/crystalsvg/16x16/actions/filterstop.png -share/icons/crystalsvg/16x16/actions/findf.png -share/icons/crystalsvg/16x16/actions/flag.png -share/icons/crystalsvg/16x16/actions/folder-new.png -share/icons/crystalsvg/16x16/actions/fontsizedown.png -share/icons/crystalsvg/16x16/actions/fontsizeup.png -share/icons/crystalsvg/16x16/actions/fork.png -share/icons/crystalsvg/16x16/actions/format-justify-center.png -share/icons/crystalsvg/16x16/actions/format-justify-fill.png -share/icons/crystalsvg/16x16/actions/format-justify-left.png -share/icons/crystalsvg/16x16/actions/format-justify-right.png -share/icons/crystalsvg/16x16/actions/format-text-bold.png -share/icons/crystalsvg/16x16/actions/format-text-italic.png -share/icons/crystalsvg/16x16/actions/format-text-strikethrough.png -share/icons/crystalsvg/16x16/actions/format-text-underline.png -share/icons/crystalsvg/16x16/actions/format_decreaseindent.png -share/icons/crystalsvg/16x16/actions/format_increaseindent.png -share/icons/crystalsvg/16x16/actions/frame_edit.png -share/icons/crystalsvg/16x16/actions/frame_formula.png -share/icons/crystalsvg/16x16/actions/frame_image.png -share/icons/crystalsvg/16x16/actions/frame_query.png -share/icons/crystalsvg/16x16/actions/frame_spreadsheet.png -share/icons/crystalsvg/16x16/actions/frame_text.png -share/icons/crystalsvg/16x16/actions/frameprint.png -share/icons/crystalsvg/16x16/actions/gear.png -share/icons/crystalsvg/16x16/actions/gg_away.png -share/icons/crystalsvg/16x16/actions/gg_busy.png -share/icons/crystalsvg/16x16/actions/gg_busy_d.png -share/icons/crystalsvg/16x16/actions/gg_connecting.png -share/icons/crystalsvg/16x16/actions/gg_description_overlay.png -share/icons/crystalsvg/16x16/actions/gg_ignored.png -share/icons/crystalsvg/16x16/actions/gg_invi.png -share/icons/crystalsvg/16x16/actions/gg_invi_d.png -share/icons/crystalsvg/16x16/actions/gg_offline.png -share/icons/crystalsvg/16x16/actions/gg_offline_d.png -share/icons/crystalsvg/16x16/actions/gg_online.png -share/icons/crystalsvg/16x16/actions/gg_online_d.png -share/icons/crystalsvg/16x16/actions/glossary.png -share/icons/crystalsvg/16x16/actions/go-bottom.png -share/icons/crystalsvg/16x16/actions/go-down.png -share/icons/crystalsvg/16x16/actions/go-first.png -share/icons/crystalsvg/16x16/actions/go-home.png -share/icons/crystalsvg/16x16/actions/go-jump-locationbar.png -share/icons/crystalsvg/16x16/actions/go-last.png -share/icons/crystalsvg/16x16/actions/go-next-document.png -share/icons/crystalsvg/16x16/actions/go-next.png -share/icons/crystalsvg/16x16/actions/go-previous-document.png -share/icons/crystalsvg/16x16/actions/go-previous.png -share/icons/crystalsvg/16x16/actions/go-top.png -share/icons/crystalsvg/16x16/actions/go-up.png -share/icons/crystalsvg/16x16/actions/google.png -share/icons/crystalsvg/16x16/actions/goto.png -share/icons/crystalsvg/16x16/actions/groupevent.png -share/icons/crystalsvg/16x16/actions/groupeventtentative.png -share/icons/crystalsvg/16x16/actions/groupwise_away.png -share/icons/crystalsvg/16x16/actions/groupwise_busy.png -share/icons/crystalsvg/16x16/actions/groupwise_invisible.png -share/icons/crystalsvg/16x16/actions/groupwise_online.png -share/icons/crystalsvg/16x16/actions/halfencrypted.png -share/icons/crystalsvg/16x16/actions/help.png -share/icons/crystalsvg/16x16/actions/highlighting.png -share/icons/crystalsvg/16x16/actions/highscore.png -share/icons/crystalsvg/16x16/actions/history.png -share/icons/crystalsvg/16x16/actions/history_clear.png -share/icons/crystalsvg/16x16/actions/hotsync.png -share/icons/crystalsvg/16x16/actions/htmlvalidator.png -share/icons/crystalsvg/16x16/actions/hyperkey.png -share/icons/crystalsvg/16x16/actions/icq_away.png -share/icons/crystalsvg/16x16/actions/icq_dnd.png -share/icons/crystalsvg/16x16/actions/icq_ffc.png -share/icons/crystalsvg/16x16/actions/icq_invisible.png -share/icons/crystalsvg/16x16/actions/icq_na.png -share/icons/crystalsvg/16x16/actions/icq_occupied.png -share/icons/crystalsvg/16x16/actions/icq_offline.png -share/icons/crystalsvg/16x16/actions/icq_online.png -share/icons/crystalsvg/16x16/actions/icq_overlay.png -share/icons/crystalsvg/16x16/actions/idea.png -share/icons/crystalsvg/16x16/actions/imagegallery.png -share/icons/crystalsvg/16x16/actions/images_display.png -share/icons/crystalsvg/16x16/actions/info.png -share/icons/crystalsvg/16x16/actions/inline_image.png -share/icons/crystalsvg/16x16/actions/inline_table.png -share/icons/crystalsvg/16x16/actions/inverse_recur.png -share/icons/crystalsvg/16x16/actions/irc_away.png -share/icons/crystalsvg/16x16/actions/irc_channel.png -share/icons/crystalsvg/16x16/actions/irc_normal.png -share/icons/crystalsvg/16x16/actions/irc_online.png -share/icons/crystalsvg/16x16/actions/irc_op.png -share/icons/crystalsvg/16x16/actions/irc_server.png -share/icons/crystalsvg/16x16/actions/irc_voice.png -share/icons/crystalsvg/16x16/actions/isotopemap.png -share/icons/crystalsvg/16x16/actions/jabber_away.png -share/icons/crystalsvg/16x16/actions/jabber_chatty.png -share/icons/crystalsvg/16x16/actions/jabber_group.png -share/icons/crystalsvg/16x16/actions/jabber_invisible.png -share/icons/crystalsvg/16x16/actions/jabber_na.png -share/icons/crystalsvg/16x16/actions/jabber_offline.png -share/icons/crystalsvg/16x16/actions/jabber_online.png -share/icons/crystalsvg/16x16/actions/jabber_original.png -share/icons/crystalsvg/16x16/actions/jabber_raw.png -share/icons/crystalsvg/16x16/actions/jabber_serv_off.png -share/icons/crystalsvg/16x16/actions/jabber_serv_on.png -share/icons/crystalsvg/16x16/actions/jabber_xa.png -share/icons/crystalsvg/16x16/actions/jail_pay.png -share/icons/crystalsvg/16x16/actions/java.png -share/icons/crystalsvg/16x16/actions/journal.png -share/icons/crystalsvg/16x16/actions/kaboodleloop.png -share/icons/crystalsvg/16x16/actions/kalarm.png -share/icons/crystalsvg/16x16/actions/kalzium_molviewer.png -share/icons/crystalsvg/16x16/actions/kalzium_rs.png -share/icons/crystalsvg/16x16/actions/kalzium_tables.png -share/icons/crystalsvg/16x16/actions/kanjidic.png -share/icons/crystalsvg/16x16/actions/kbstate_mouse.png -share/icons/crystalsvg/16x16/actions/kbstate_mouse_left.png -share/icons/crystalsvg/16x16/actions/kbstate_mouse_left_selected.png -share/icons/crystalsvg/16x16/actions/kbstate_mouse_mid.png -share/icons/crystalsvg/16x16/actions/kbstate_mouse_mid_selected.png -share/icons/crystalsvg/16x16/actions/kbstate_mouse_right.png -share/icons/crystalsvg/16x16/actions/kbstate_mouse_right_selected.png -share/icons/crystalsvg/16x16/actions/kbstate_slowkeys.png -share/icons/crystalsvg/16x16/actions/kbstate_stickykeys.png -share/icons/crystalsvg/16x16/actions/kde.png -share/icons/crystalsvg/16x16/actions/kde1.png -share/icons/crystalsvg/16x16/actions/kde2.png -share/icons/crystalsvg/16x16/actions/kde3.png -share/icons/crystalsvg/16x16/actions/kde4.png -share/icons/crystalsvg/16x16/actions/kde5.png -share/icons/crystalsvg/16x16/actions/kde6.png -share/icons/crystalsvg/16x16/actions/kdeprint_restartsrv.png -share/icons/crystalsvg/16x16/actions/kdeprint_uploadsmb.png -share/icons/crystalsvg/16x16/actions/key.png -share/icons/crystalsvg/16x16/actions/keypressno.png -share/icons/crystalsvg/16x16/actions/keypressok.png -share/icons/crystalsvg/16x16/actions/kgpg_key1.png -share/icons/crystalsvg/16x16/actions/kgpg_key2.png -share/icons/crystalsvg/16x16/actions/kgpg_key3.png -share/icons/crystalsvg/16x16/actions/kgpg_key4.png -share/icons/crystalsvg/16x16/actions/klettres_desert.png -share/icons/crystalsvg/16x16/actions/klettres_grownup.png -share/icons/crystalsvg/16x16/actions/klettres_kids.png -share/icons/crystalsvg/16x16/actions/kmgroupware_folder_calendar.png -share/icons/crystalsvg/16x16/actions/kmgroupware_folder_contacts.png -share/icons/crystalsvg/16x16/actions/kmgroupware_folder_journals.png -share/icons/crystalsvg/16x16/actions/kmgroupware_folder_notes.png -share/icons/crystalsvg/16x16/actions/kmgroupware_folder_tasks.png -share/icons/crystalsvg/16x16/actions/knewstuff.png -share/icons/crystalsvg/16x16/actions/knotes_alarm.png -share/icons/crystalsvg/16x16/actions/knotes_close.png -share/icons/crystalsvg/16x16/actions/knotes_date.png -share/icons/crystalsvg/16x16/actions/knotes_delete.png -share/icons/crystalsvg/16x16/actions/konsoleblue.png -share/icons/crystalsvg/16x16/actions/konsolered.png -share/icons/crystalsvg/16x16/actions/kontact_contacts.png -share/icons/crystalsvg/16x16/actions/kontact_date.png -share/icons/crystalsvg/16x16/actions/kontact_journal.png -share/icons/crystalsvg/16x16/actions/kontact_mail.png -share/icons/crystalsvg/16x16/actions/kontact_news.png -share/icons/crystalsvg/16x16/actions/kontact_notes.png -share/icons/crystalsvg/16x16/actions/kontact_summary.png -share/icons/crystalsvg/16x16/actions/kontact_summary_green.png -share/icons/crystalsvg/16x16/actions/kontact_todo.png -share/icons/crystalsvg/16x16/actions/kopeteavailable.png -share/icons/crystalsvg/16x16/actions/kopeteaway.png -share/icons/crystalsvg/16x16/actions/kopeteeditstatusmessage.png -share/icons/crystalsvg/16x16/actions/kopetestatusmessage.png -share/icons/crystalsvg/16x16/actions/kstars_geo.png -share/icons/crystalsvg/16x16/actions/laptop_charge.png -share/icons/crystalsvg/16x16/actions/laptop_nobattery.png -share/icons/crystalsvg/16x16/actions/laptop_nocharge.png -share/icons/crystalsvg/16x16/actions/lastmoves.png -share/icons/crystalsvg/16x16/actions/launch.png -share/icons/crystalsvg/16x16/actions/ldap_lookup.png -share/icons/crystalsvg/16x16/actions/legalmoves.png -share/icons/crystalsvg/16x16/actions/legend.png -share/icons/crystalsvg/16x16/actions/list-add.png -share/icons/crystalsvg/16x16/actions/list-remove.png -share/icons/crystalsvg/16x16/actions/list.png -share/icons/crystalsvg/16x16/actions/locationbar_erase.png -share/icons/crystalsvg/16x16/actions/lockkey.png -share/icons/crystalsvg/16x16/actions/logging.png -share/icons/crystalsvg/16x16/actions/mail-forward.png -share/icons/crystalsvg/16x16/actions/mail-mark-junk.png -share/icons/crystalsvg/16x16/actions/mail-message-new.png -share/icons/crystalsvg/16x16/actions/mail-reply-all.png -share/icons/crystalsvg/16x16/actions/mail-reply-sender.png -share/icons/crystalsvg/16x16/actions/mail-send.png -share/icons/crystalsvg/16x16/actions/mail_find.png -share/icons/crystalsvg/16x16/actions/mail_flag.png -share/icons/crystalsvg/16x16/actions/mail_generic.png -share/icons/crystalsvg/16x16/actions/mail_get.png -share/icons/crystalsvg/16x16/actions/mail_get_all.png -share/icons/crystalsvg/16x16/actions/mail_ham.png -share/icons/crystalsvg/16x16/actions/mail_ignore.png -share/icons/crystalsvg/16x16/actions/mail_post_to.png -share/icons/crystalsvg/16x16/actions/mail_replylist.png -share/icons/crystalsvg/16x16/actions/mail_todo.png -share/icons/crystalsvg/16x16/actions/mailappt.png -share/icons/crystalsvg/16x16/actions/make_kdevelop.png -share/icons/crystalsvg/16x16/actions/math_abs.png -share/icons/crystalsvg/16x16/actions/math_brace.png -share/icons/crystalsvg/16x16/actions/math_brackets.png -share/icons/crystalsvg/16x16/actions/math_frac.png -share/icons/crystalsvg/16x16/actions/math_int.png -share/icons/crystalsvg/16x16/actions/math_lsub.png -share/icons/crystalsvg/16x16/actions/math_lsup.png -share/icons/crystalsvg/16x16/actions/math_matrix.png -share/icons/crystalsvg/16x16/actions/math_onetwomatrix.png -share/icons/crystalsvg/16x16/actions/math_paren.png -share/icons/crystalsvg/16x16/actions/math_prod.png -share/icons/crystalsvg/16x16/actions/math_rsub.png -share/icons/crystalsvg/16x16/actions/math_rsup.png -share/icons/crystalsvg/16x16/actions/math_sqrt.png -share/icons/crystalsvg/16x16/actions/math_sum.png -share/icons/crystalsvg/16x16/actions/meanwhile_away.png -share/icons/crystalsvg/16x16/actions/meanwhile_dnd.png -share/icons/crystalsvg/16x16/actions/meanwhile_idle.png -share/icons/crystalsvg/16x16/actions/meanwhile_unknown.png -share/icons/crystalsvg/16x16/actions/media-eject.png -share/icons/crystalsvg/16x16/actions/media-playback-pause.png -share/icons/crystalsvg/16x16/actions/media-playback-start.png -share/icons/crystalsvg/16x16/actions/media-playback-stop.png -share/icons/crystalsvg/16x16/actions/media-seek-backward.png -share/icons/crystalsvg/16x16/actions/media-seek-forward.png -share/icons/crystalsvg/16x16/actions/media-skip-backward.png -share/icons/crystalsvg/16x16/actions/media-skip-forward.png -share/icons/crystalsvg/16x16/actions/message_reply.png -share/icons/crystalsvg/16x16/actions/metacontact_unknown.png -share/icons/crystalsvg/16x16/actions/metakey.png -share/icons/crystalsvg/16x16/actions/minitools.png -share/icons/crystalsvg/16x16/actions/misc.png -share/icons/crystalsvg/16x16/actions/modified.png -share/icons/crystalsvg/16x16/actions/modmod.png -share/icons/crystalsvg/16x16/actions/modonhd.png -share/icons/crystalsvg/16x16/actions/month.png -share/icons/crystalsvg/16x16/actions/move.png -share/icons/crystalsvg/16x16/actions/msn_away.png -share/icons/crystalsvg/16x16/actions/msn_blocked.png -share/icons/crystalsvg/16x16/actions/msn_brb.png -share/icons/crystalsvg/16x16/actions/msn_busy.png -share/icons/crystalsvg/16x16/actions/msn_invisible.png -share/icons/crystalsvg/16x16/actions/msn_lunch.png -share/icons/crystalsvg/16x16/actions/msn_na.png -share/icons/crystalsvg/16x16/actions/msn_newmsg.png -share/icons/crystalsvg/16x16/actions/msn_offline.png -share/icons/crystalsvg/16x16/actions/msn_online.png -share/icons/crystalsvg/16x16/actions/msn_phone.png -share/icons/crystalsvg/16x16/actions/music_32ndnote.png -share/icons/crystalsvg/16x16/actions/music_cleficon.png -share/icons/crystalsvg/16x16/actions/music_cross.png -share/icons/crystalsvg/16x16/actions/music_dottednote.png -share/icons/crystalsvg/16x16/actions/music_eightnote.png -share/icons/crystalsvg/16x16/actions/music_fermatenote.png -share/icons/crystalsvg/16x16/actions/music_flat.png -share/icons/crystalsvg/16x16/actions/music_fullnote.png -share/icons/crystalsvg/16x16/actions/music_halfnote.png -share/icons/crystalsvg/16x16/actions/music_natur.png -share/icons/crystalsvg/16x16/actions/music_quarternote.png -share/icons/crystalsvg/16x16/actions/music_sixteenthnote.png -share/icons/crystalsvg/16x16/actions/new_from_template.png -share/icons/crystalsvg/16x16/actions/newfont.png -share/icons/crystalsvg/16x16/actions/newmsg.png -share/icons/crystalsvg/16x16/actions/news_subscribe.png -share/icons/crystalsvg/16x16/actions/news_unsubscribe.png -share/icons/crystalsvg/16x16/actions/no.png -share/icons/crystalsvg/16x16/actions/noatun_equalizer.png -share/icons/crystalsvg/16x16/actions/noatun_playlist.png -share/icons/crystalsvg/16x16/actions/noatunback.png -share/icons/crystalsvg/16x16/actions/noatunforward.png -share/icons/crystalsvg/16x16/actions/noatunpause.png -share/icons/crystalsvg/16x16/actions/noatunplay.png -share/icons/crystalsvg/16x16/actions/noatunplaylist.png -share/icons/crystalsvg/16x16/actions/noatunstop.png -share/icons/crystalsvg/16x16/actions/nomailappt.png -share/icons/crystalsvg/16x16/actions/null.png -share/icons/crystalsvg/16x16/actions/numbers.png -share/icons/crystalsvg/16x16/actions/object-rotate-left.png -share/icons/crystalsvg/16x16/actions/object-rotate-right.png -share/icons/crystalsvg/16x16/actions/ok.png -share/icons/crystalsvg/16x16/actions/online_status.png -share/icons/crystalsvg/16x16/actions/openterm.png -share/icons/crystalsvg/16x16/actions/opentermblue.png -share/icons/crystalsvg/16x16/actions/opentermred.png -share/icons/crystalsvg/16x16/actions/orbits.png -share/icons/crystalsvg/16x16/actions/organizer.png -share/icons/crystalsvg/16x16/actions/overview.png -share/icons/crystalsvg/16x16/actions/paintbrush.png -share/icons/crystalsvg/16x16/actions/palette_color.png -share/icons/crystalsvg/16x16/actions/palette_gray.png -share/icons/crystalsvg/16x16/actions/palette_halftone.png -share/icons/crystalsvg/16x16/actions/palette_lineart.png -share/icons/crystalsvg/16x16/actions/pencil.png -share/icons/crystalsvg/16x16/actions/piano.png -share/icons/crystalsvg/16x16/actions/player_playlist.png -share/icons/crystalsvg/16x16/actions/player_time.png -share/icons/crystalsvg/16x16/actions/player_volume.png -share/icons/crystalsvg/16x16/actions/playsound.png -share/icons/crystalsvg/16x16/actions/plot.png -share/icons/crystalsvg/16x16/actions/pmaddpoint.png -share/icons/crystalsvg/16x16/actions/pmaddpointabove.png -share/icons/crystalsvg/16x16/actions/pmaddsubprism.png -share/icons/crystalsvg/16x16/actions/pmbicubicpatch.png -share/icons/crystalsvg/16x16/actions/pmblendmapmodifiers.png -share/icons/crystalsvg/16x16/actions/pmblob.png -share/icons/crystalsvg/16x16/actions/pmblobcylinder.png -share/icons/crystalsvg/16x16/actions/pmblobsphere.png -share/icons/crystalsvg/16x16/actions/pmboundedby.png -share/icons/crystalsvg/16x16/actions/pmbox.png -share/icons/crystalsvg/16x16/actions/pmbumpmap.png -share/icons/crystalsvg/16x16/actions/pmcamera.png -share/icons/crystalsvg/16x16/actions/pmclippedby.png -share/icons/crystalsvg/16x16/actions/pmcolorlist.png -share/icons/crystalsvg/16x16/actions/pmcolormap.png -share/icons/crystalsvg/16x16/actions/pmcolormapdeclare.png -share/icons/crystalsvg/16x16/actions/pmcomment.png -share/icons/crystalsvg/16x16/actions/pmcone.png -share/icons/crystalsvg/16x16/actions/pmcylinder.png -share/icons/crystalsvg/16x16/actions/pmdeclare.png -share/icons/crystalsvg/16x16/actions/pmdensity.png -share/icons/crystalsvg/16x16/actions/pmdensitydeclare.png -share/icons/crystalsvg/16x16/actions/pmdensitylist.png -share/icons/crystalsvg/16x16/actions/pmdensitymap.png -share/icons/crystalsvg/16x16/actions/pmdensitymapdeclare.png -share/icons/crystalsvg/16x16/actions/pmdialogview.png -share/icons/crystalsvg/16x16/actions/pmdifference.png -share/icons/crystalsvg/16x16/actions/pmdisc.png -share/icons/crystalsvg/16x16/actions/pmdrag.png -share/icons/crystalsvg/16x16/actions/pmfinish.png -share/icons/crystalsvg/16x16/actions/pmfinishdeclare.png -share/icons/crystalsvg/16x16/actions/pmfog.png -share/icons/crystalsvg/16x16/actions/pmfogdeclare.png -share/icons/crystalsvg/16x16/actions/pmglobalphotons.png -share/icons/crystalsvg/16x16/actions/pmglobalsettings.png -share/icons/crystalsvg/16x16/actions/pmglview.png -share/icons/crystalsvg/16x16/actions/pmheightfield.png -share/icons/crystalsvg/16x16/actions/pmimagemap.png -share/icons/crystalsvg/16x16/actions/pminserterrors.png -share/icons/crystalsvg/16x16/actions/pminsertfirstchild.png -share/icons/crystalsvg/16x16/actions/pminsertlastchild.png -share/icons/crystalsvg/16x16/actions/pminsertsibling.png -share/icons/crystalsvg/16x16/actions/pminterior.png -share/icons/crystalsvg/16x16/actions/pminteriordeclare.png -share/icons/crystalsvg/16x16/actions/pminteriortexture.png -share/icons/crystalsvg/16x16/actions/pminteriortexturedeclare.png -share/icons/crystalsvg/16x16/actions/pmintersection.png -share/icons/crystalsvg/16x16/actions/pmisosurface.png -share/icons/crystalsvg/16x16/actions/pmjuliafractal.png -share/icons/crystalsvg/16x16/actions/pmlathe.png -share/icons/crystalsvg/16x16/actions/pmlight.png -share/icons/crystalsvg/16x16/actions/pmlightgroup.png -share/icons/crystalsvg/16x16/actions/pmlistpattern.png -share/icons/crystalsvg/16x16/actions/pmlookslike.png -share/icons/crystalsvg/16x16/actions/pmmaterial.png -share/icons/crystalsvg/16x16/actions/pmmaterialdeclare.png -share/icons/crystalsvg/16x16/actions/pmmaterialmap.png -share/icons/crystalsvg/16x16/actions/pmmatrix.png -share/icons/crystalsvg/16x16/actions/pmmedia.png -share/icons/crystalsvg/16x16/actions/pmmediadeclare.png -share/icons/crystalsvg/16x16/actions/pmmerge.png -share/icons/crystalsvg/16x16/actions/pmmesh.png -share/icons/crystalsvg/16x16/actions/pmnormal.png -share/icons/crystalsvg/16x16/actions/pmnormaldeclare.png -share/icons/crystalsvg/16x16/actions/pmnormallist.png -share/icons/crystalsvg/16x16/actions/pmnormalmap.png -share/icons/crystalsvg/16x16/actions/pmnormalmapdeclare.png -share/icons/crystalsvg/16x16/actions/pmobjectdeclare.png -share/icons/crystalsvg/16x16/actions/pmobjectlink.png -share/icons/crystalsvg/16x16/actions/pmpattern.png -share/icons/crystalsvg/16x16/actions/pmphotons.png -share/icons/crystalsvg/16x16/actions/pmpigment.png -share/icons/crystalsvg/16x16/actions/pmpigmentdeclare.png -share/icons/crystalsvg/16x16/actions/pmpigmentlist.png -share/icons/crystalsvg/16x16/actions/pmpigmentmap.png -share/icons/crystalsvg/16x16/actions/pmpigmentmapdeclare.png -share/icons/crystalsvg/16x16/actions/pmplane.png -share/icons/crystalsvg/16x16/actions/pmpolynom.png -share/icons/crystalsvg/16x16/actions/pmprism.png -share/icons/crystalsvg/16x16/actions/pmprojectedthrough.png -share/icons/crystalsvg/16x16/actions/pmquickcolor.png -share/icons/crystalsvg/16x16/actions/pmradiosity.png -share/icons/crystalsvg/16x16/actions/pmrainbow.png -share/icons/crystalsvg/16x16/actions/pmrainbowdeclare.png -share/icons/crystalsvg/16x16/actions/pmraw.png -share/icons/crystalsvg/16x16/actions/pmremovepoint.png -share/icons/crystalsvg/16x16/actions/pmrender.png -share/icons/crystalsvg/16x16/actions/pmrenderpreview.png -share/icons/crystalsvg/16x16/actions/pmrendersettings.png -share/icons/crystalsvg/16x16/actions/pmrotate.png -share/icons/crystalsvg/16x16/actions/pmscale.png -share/icons/crystalsvg/16x16/actions/pmscene.png -share/icons/crystalsvg/16x16/actions/pmskysphere.png -share/icons/crystalsvg/16x16/actions/pmskyspheredeclare.png -share/icons/crystalsvg/16x16/actions/pmslope.png -share/icons/crystalsvg/16x16/actions/pmslopemap.png -share/icons/crystalsvg/16x16/actions/pmslopemapdeclare.png -share/icons/crystalsvg/16x16/actions/pmsolidcolor.png -share/icons/crystalsvg/16x16/actions/pmsor.png -share/icons/crystalsvg/16x16/actions/pmsphere.png -share/icons/crystalsvg/16x16/actions/pmspheresweep.png -share/icons/crystalsvg/16x16/actions/pmsqe.png -share/icons/crystalsvg/16x16/actions/pmtext.png -share/icons/crystalsvg/16x16/actions/pmtexture.png -share/icons/crystalsvg/16x16/actions/pmtexturedeclare.png -share/icons/crystalsvg/16x16/actions/pmtexturelist.png -share/icons/crystalsvg/16x16/actions/pmtexturemap.png -share/icons/crystalsvg/16x16/actions/pmtexturemapdeclare.png -share/icons/crystalsvg/16x16/actions/pmtorus.png -share/icons/crystalsvg/16x16/actions/pmtranslate.png -share/icons/crystalsvg/16x16/actions/pmtreeview.png -share/icons/crystalsvg/16x16/actions/pmtriangle.png -share/icons/crystalsvg/16x16/actions/pmunion.png -share/icons/crystalsvg/16x16/actions/pmwarp.png -share/icons/crystalsvg/16x16/actions/power.png -share/icons/crystalsvg/16x16/actions/presence_away.png -share/icons/crystalsvg/16x16/actions/presence_offline.png -share/icons/crystalsvg/16x16/actions/presence_online.png -share/icons/crystalsvg/16x16/actions/presence_unknown.png -share/icons/crystalsvg/16x16/actions/process-stop.png -share/icons/crystalsvg/16x16/actions/project_open.png -share/icons/crystalsvg/16x16/actions/query_erase.png -share/icons/crystalsvg/16x16/actions/queue.png -share/icons/crystalsvg/16x16/actions/readonlyevent.png -share/icons/crystalsvg/16x16/actions/rebuild.png -share/icons/crystalsvg/16x16/actions/recur.png -share/icons/crystalsvg/16x16/actions/reload_all_tabs.png -share/icons/crystalsvg/16x16/actions/reload_page.png -share/icons/crystalsvg/16x16/actions/roll.png -share/icons/crystalsvg/16x16/actions/rotate.png -share/icons/crystalsvg/16x16/actions/rss_tag.png -share/icons/crystalsvg/16x16/actions/runprog.png -share/icons/crystalsvg/16x16/actions/save_all.png -share/icons/crystalsvg/16x16/actions/search_user.png -share/icons/crystalsvg/16x16/actions/services.png -share/icons/crystalsvg/16x16/actions/share.png -share/icons/crystalsvg/16x16/actions/shiftkey.png -share/icons/crystalsvg/16x16/actions/show_offliners.png -share/icons/crystalsvg/16x16/actions/show_side_panel.png -share/icons/crystalsvg/16x16/actions/sidebar.png -share/icons/crystalsvg/16x16/actions/signature.png -share/icons/crystalsvg/16x16/actions/silence.png -share/icons/crystalsvg/16x16/actions/smallcal.png -share/icons/crystalsvg/16x16/actions/smallclock.png -share/icons/crystalsvg/16x16/actions/spectrum.png -share/icons/crystalsvg/16x16/actions/spnewgame.png -share/icons/crystalsvg/16x16/actions/spnewround.png -share/icons/crystalsvg/16x16/actions/sppausegame.png -share/icons/crystalsvg/16x16/actions/stamp.png -share/icons/crystalsvg/16x16/actions/statematter.png -share/icons/crystalsvg/16x16/actions/status_unknown.png -share/icons/crystalsvg/16x16/actions/status_unknown_overlay.png -share/icons/crystalsvg/16x16/actions/superkey.png -share/icons/crystalsvg/16x16/actions/svn_add.png -share/icons/crystalsvg/16x16/actions/svn_branch.png -share/icons/crystalsvg/16x16/actions/svn_merge.png -share/icons/crystalsvg/16x16/actions/svn_remove.png -share/icons/crystalsvg/16x16/actions/svn_status.png -share/icons/crystalsvg/16x16/actions/svn_switch.png -share/icons/crystalsvg/16x16/actions/switchuser.png -share/icons/crystalsvg/16x16/actions/system-lock-screen.png -share/icons/crystalsvg/16x16/actions/system-run.png -share/icons/crystalsvg/16x16/actions/tab-close-other.png -share/icons/crystalsvg/16x16/actions/tab-close.png -share/icons/crystalsvg/16x16/actions/tab-detach.png -share/icons/crystalsvg/16x16/actions/tab-duplicate.png -share/icons/crystalsvg/16x16/actions/tab-new.png -share/icons/crystalsvg/16x16/actions/tab_new_raised.png -share/icons/crystalsvg/16x16/actions/text.png -share/icons/crystalsvg/16x16/actions/text_sub.png -share/icons/crystalsvg/16x16/actions/text_super.png -share/icons/crystalsvg/16x16/actions/thumbnail.png -share/icons/crystalsvg/16x16/actions/timeline.png -share/icons/crystalsvg/16x16/actions/today.png -share/icons/crystalsvg/16x16/actions/todo.png -share/icons/crystalsvg/16x16/actions/toggle_log.png -share/icons/crystalsvg/16x16/actions/tools-check-spelling.png -share/icons/crystalsvg/16x16/actions/tooltip.png -share/icons/crystalsvg/16x16/actions/transform.png -share/icons/crystalsvg/16x16/actions/translate.png -share/icons/crystalsvg/16x16/actions/umbrello_diagram_activity.png -share/icons/crystalsvg/16x16/actions/umbrello_diagram_class.png -share/icons/crystalsvg/16x16/actions/umbrello_diagram_collaboration.png -share/icons/crystalsvg/16x16/actions/umbrello_diagram_component.png -share/icons/crystalsvg/16x16/actions/umbrello_diagram_deployment.png -share/icons/crystalsvg/16x16/actions/umbrello_diagram_sequence.png -share/icons/crystalsvg/16x16/actions/umbrello_diagram_state.png -share/icons/crystalsvg/16x16/actions/umbrello_diagram_usecase.png -share/icons/crystalsvg/16x16/actions/unlatched.png -share/icons/crystalsvg/16x16/actions/unlock.png -share/icons/crystalsvg/16x16/actions/unsortedList.png -share/icons/crystalsvg/16x16/actions/upindicator.png -share/icons/crystalsvg/16x16/actions/validators.png -share/icons/crystalsvg/16x16/actions/vcs_add.png -share/icons/crystalsvg/16x16/actions/vcs_commit.png -share/icons/crystalsvg/16x16/actions/vcs_diff.png -share/icons/crystalsvg/16x16/actions/vcs_remove.png -share/icons/crystalsvg/16x16/actions/vcs_status.png -share/icons/crystalsvg/16x16/actions/vcs_update.png -share/icons/crystalsvg/16x16/actions/view-close.png -share/icons/crystalsvg/16x16/actions/view-fit-height.png -share/icons/crystalsvg/16x16/actions/view-fit-width.png -share/icons/crystalsvg/16x16/actions/view-fit-window.png -share/icons/crystalsvg/16x16/actions/view-fullscreen.png -share/icons/crystalsvg/16x16/actions/view-pim-calendar.png -share/icons/crystalsvg/16x16/actions/view-pim-contacts.png -share/icons/crystalsvg/16x16/actions/view-pim-journal.png -share/icons/crystalsvg/16x16/actions/view-pim-mail.png -share/icons/crystalsvg/16x16/actions/view-pim-news.png -share/icons/crystalsvg/16x16/actions/view-pim-notes.png -share/icons/crystalsvg/16x16/actions/view-pim-summary.png -share/icons/crystalsvg/16x16/actions/view-pim-tasks.png -share/icons/crystalsvg/16x16/actions/view-refresh.png -share/icons/crystalsvg/16x16/actions/view-restore.png -share/icons/crystalsvg/16x16/actions/view.png -share/icons/crystalsvg/16x16/actions/view_bottom.png -share/icons/crystalsvg/16x16/actions/view_choose.png -share/icons/crystalsvg/16x16/actions/view_detailed.png -share/icons/crystalsvg/16x16/actions/view_icon.png -share/icons/crystalsvg/16x16/actions/view_left_right.png -share/icons/crystalsvg/16x16/actions/view_multicolumn.png -share/icons/crystalsvg/16x16/actions/view_right.png -share/icons/crystalsvg/16x16/actions/view_sidetree.png -share/icons/crystalsvg/16x16/actions/view_text.png -share/icons/crystalsvg/16x16/actions/view_top_bottom.png -share/icons/crystalsvg/16x16/actions/view_tree.png -share/icons/crystalsvg/16x16/actions/voicecall.png -share/icons/crystalsvg/16x16/actions/volume.png -share/icons/crystalsvg/16x16/actions/wallet_open.png -share/icons/crystalsvg/16x16/actions/webarchiver.png -share/icons/crystalsvg/16x16/actions/webcamreceive.png -share/icons/crystalsvg/16x16/actions/webcamsend.png -share/icons/crystalsvg/16x16/actions/webexport.png -share/icons/crystalsvg/16x16/actions/whatsnext.png -share/icons/crystalsvg/16x16/actions/window-new.png -share/icons/crystalsvg/16x16/actions/window_duplicate.png -share/icons/crystalsvg/16x16/actions/window_suppressed.png -share/icons/crystalsvg/16x16/actions/wizard.png -share/icons/crystalsvg/16x16/actions/wp_away.png -share/icons/crystalsvg/16x16/actions/yahoo_away.png -share/icons/crystalsvg/16x16/actions/yahoo_busy.png -share/icons/crystalsvg/16x16/actions/yahoo_idle.png -share/icons/crystalsvg/16x16/actions/yahoo_invisible.png -share/icons/crystalsvg/16x16/actions/yahoo_mobile.png -share/icons/crystalsvg/16x16/actions/yahoo_stealthed.png -share/icons/crystalsvg/16x16/actions/yahoo_tea.png -share/icons/crystalsvg/16x16/actions/zoom-best-fit.png -share/icons/crystalsvg/16x16/actions/zoom-in.png -share/icons/crystalsvg/16x16/actions/zoom-original.png -share/icons/crystalsvg/16x16/actions/zoom-out.png -share/icons/crystalsvg/16x16/actions/zoom.png -share/icons/crystalsvg/16x16/apps/access.png -share/icons/crystalsvg/16x16/apps/agent.png -share/icons/crystalsvg/16x16/apps/aim_protocol.png -share/icons/crystalsvg/16x16/apps/akregator.png -share/icons/crystalsvg/16x16/apps/akregator_empty.png -share/icons/crystalsvg/16x16/apps/amor.png -share/icons/crystalsvg/16x16/apps/app.png -share/icons/crystalsvg/16x16/apps/ark.png -share/icons/crystalsvg/16x16/apps/arts.png -share/icons/crystalsvg/16x16/apps/atlantik.png -share/icons/crystalsvg/16x16/apps/atlantikdesigner.png -share/icons/crystalsvg/16x16/apps/background.png -share/icons/crystalsvg/16x16/apps/bell.png -share/icons/crystalsvg/16x16/apps/blinken.png -share/icons/crystalsvg/16x16/apps/cache.png -share/icons/crystalsvg/16x16/apps/camera.png -share/icons/crystalsvg/16x16/apps/catalogmanager.png -share/icons/crystalsvg/16x16/apps/cervisia.png -share/icons/crystalsvg/16x16/apps/clock.png -share/icons/crystalsvg/16x16/apps/colors.png -share/icons/crystalsvg/16x16/apps/computer.png -share/icons/crystalsvg/16x16/apps/cookie.png -share/icons/crystalsvg/16x16/apps/daemon.png -share/icons/crystalsvg/16x16/apps/date.png -share/icons/crystalsvg/16x16/apps/edu_languages.png -share/icons/crystalsvg/16x16/apps/edu_mathematics.png -share/icons/crystalsvg/16x16/apps/edu_miscellaneous.png -share/icons/crystalsvg/16x16/apps/edu_science.png -share/icons/crystalsvg/16x16/apps/email.png -share/icons/crystalsvg/16x16/apps/energy_star.png -share/icons/crystalsvg/16x16/apps/enhanced_browsing.png -share/icons/crystalsvg/16x16/apps/fifteenpieces.png -share/icons/crystalsvg/16x16/apps/filetypes.png -share/icons/crystalsvg/16x16/apps/fonts.png -share/icons/crystalsvg/16x16/apps/gadu_protocol.png -share/icons/crystalsvg/16x16/apps/gpg.png -share/icons/crystalsvg/16x16/apps/gpgsm.png -share/icons/crystalsvg/16x16/apps/groupwise_protocol.png -share/icons/crystalsvg/16x16/apps/help_index.png -share/icons/crystalsvg/16x16/apps/hwinfo.png -share/icons/crystalsvg/16x16/apps/icons.png -share/icons/crystalsvg/16x16/apps/icq_protocol.png -share/icons/crystalsvg/16x16/apps/ieee1394.png -share/icons/crystalsvg/16x16/apps/input_devices_settings.png -share/icons/crystalsvg/16x16/apps/irc_protocol.png -share/icons/crystalsvg/16x16/apps/irkick.png -share/icons/crystalsvg/16x16/apps/jabber_gateway_aim.png -share/icons/crystalsvg/16x16/apps/jabber_gateway_gadu.png -share/icons/crystalsvg/16x16/apps/jabber_gateway_http-ws.png -share/icons/crystalsvg/16x16/apps/jabber_gateway_icq.png -share/icons/crystalsvg/16x16/apps/jabber_gateway_irc.png -share/icons/crystalsvg/16x16/apps/jabber_gateway_msn.png -share/icons/crystalsvg/16x16/apps/jabber_gateway_qq.png -share/icons/crystalsvg/16x16/apps/jabber_gateway_sms.png -share/icons/crystalsvg/16x16/apps/jabber_gateway_smtp.png -share/icons/crystalsvg/16x16/apps/jabber_gateway_tlen.png -share/icons/crystalsvg/16x16/apps/jabber_gateway_yahoo.png -share/icons/crystalsvg/16x16/apps/jabber_protocol.png -share/icons/crystalsvg/16x16/apps/juk.png -share/icons/crystalsvg/16x16/apps/kaboodle.png -share/icons/crystalsvg/16x16/apps/kaddressbook.png -share/icons/crystalsvg/16x16/apps/kalarm.png -share/icons/crystalsvg/16x16/apps/kalzium.png -share/icons/crystalsvg/16x16/apps/kanagram.png -share/icons/crystalsvg/16x16/apps/karm.png -share/icons/crystalsvg/16x16/apps/kasteroids.png -share/icons/crystalsvg/16x16/apps/kate.png -share/icons/crystalsvg/16x16/apps/katomic.png -share/icons/crystalsvg/16x16/apps/kaudiocreator.png -share/icons/crystalsvg/16x16/apps/kbabel.png -share/icons/crystalsvg/16x16/apps/kbabeldict.png -share/icons/crystalsvg/16x16/apps/kbackgammon.png -share/icons/crystalsvg/16x16/apps/kbackgammon_engine.png -share/icons/crystalsvg/16x16/apps/kbinaryclock.png -share/icons/crystalsvg/16x16/apps/kblackbox.png -share/icons/crystalsvg/16x16/apps/kbounce.png -share/icons/crystalsvg/16x16/apps/kbruch.png -share/icons/crystalsvg/16x16/apps/kbugbuster.png -share/icons/crystalsvg/16x16/apps/kcalc.png -share/icons/crystalsvg/16x16/apps/kcharselect.png -share/icons/crystalsvg/16x16/apps/kcmdevices.png -share/icons/crystalsvg/16x16/apps/kcmdf.png -share/icons/crystalsvg/16x16/apps/kcmkicker.png -share/icons/crystalsvg/16x16/apps/kcmkwm.png -share/icons/crystalsvg/16x16/apps/kcmmemory.png -share/icons/crystalsvg/16x16/apps/kcmpartitions.png -share/icons/crystalsvg/16x16/apps/kcmpci.png -share/icons/crystalsvg/16x16/apps/kcmprocessor.png -share/icons/crystalsvg/16x16/apps/kcmsambaconf.png -share/icons/crystalsvg/16x16/apps/kcmscsi.png -share/icons/crystalsvg/16x16/apps/kcmsound.png -share/icons/crystalsvg/16x16/apps/kcmsystem.png -share/icons/crystalsvg/16x16/apps/kcmx.png -share/icons/crystalsvg/16x16/apps/kcolorchooser.png -share/icons/crystalsvg/16x16/apps/kcoloredit.png -share/icons/crystalsvg/16x16/apps/kcontrol.png -share/icons/crystalsvg/16x16/apps/kcron.png -share/icons/crystalsvg/16x16/apps/kdat.png -share/icons/crystalsvg/16x16/apps/kdat_archive.png -share/icons/crystalsvg/16x16/apps/kdat_backup.png -share/icons/crystalsvg/16x16/apps/kdat_eject.png -share/icons/crystalsvg/16x16/apps/kdat_mounted.png -share/icons/crystalsvg/16x16/apps/kdat_restore.png -share/icons/crystalsvg/16x16/apps/kdat_select_all.png -share/icons/crystalsvg/16x16/apps/kdat_select_none.png -share/icons/crystalsvg/16x16/apps/kdat_select_some.png -share/icons/crystalsvg/16x16/apps/kdat_unmounted.png -share/icons/crystalsvg/16x16/apps/kdat_verify.png -share/icons/crystalsvg/16x16/apps/kdeapp.png -share/icons/crystalsvg/16x16/apps/kdeprint_computer.png -share/icons/crystalsvg/16x16/apps/kdeprint_job.png -share/icons/crystalsvg/16x16/apps/kdeprint_job_cancelled.png -share/icons/crystalsvg/16x16/apps/kdeprint_job_completed.png -share/icons/crystalsvg/16x16/apps/kdeprint_job_error.png -share/icons/crystalsvg/16x16/apps/kdeprint_job_process.png -share/icons/crystalsvg/16x16/apps/kdeprint_job_stopped.png -share/icons/crystalsvg/16x16/apps/kdeprint_printer.png -share/icons/crystalsvg/16x16/apps/kdeprint_printer_class.png -share/icons/crystalsvg/16x16/apps/kdeprint_printer_class_process.png -share/icons/crystalsvg/16x16/apps/kdeprint_printer_class_stopped.png -share/icons/crystalsvg/16x16/apps/kdeprint_printer_defect.png -share/icons/crystalsvg/16x16/apps/kdeprint_printer_process.png -share/icons/crystalsvg/16x16/apps/kdeprint_printer_remote.png -share/icons/crystalsvg/16x16/apps/kdeprint_printer_remote_process.png -share/icons/crystalsvg/16x16/apps/kdeprint_printer_remote_stopped.png -share/icons/crystalsvg/16x16/apps/kdeprint_printer_stopped.png -share/icons/crystalsvg/16x16/apps/kdeprintfax.png -share/icons/crystalsvg/16x16/apps/kdevassistant.png -share/icons/crystalsvg/16x16/apps/kdevdesigner.png -share/icons/crystalsvg/16x16/apps/kdevelop.png -share/icons/crystalsvg/16x16/apps/kdf.png -share/icons/crystalsvg/16x16/apps/kdict.png -share/icons/crystalsvg/16x16/apps/kdisknav.png -share/icons/crystalsvg/16x16/apps/kdmconfig.png -share/icons/crystalsvg/16x16/apps/kdvi.png -share/icons/crystalsvg/16x16/apps/keditbookmarks.png -share/icons/crystalsvg/16x16/apps/kenolaba.png -share/icons/crystalsvg/16x16/apps/kernel.png -share/icons/crystalsvg/16x16/apps/key_bindings.png -share/icons/crystalsvg/16x16/apps/keyboard.png -share/icons/crystalsvg/16x16/apps/keyboard_layout.png -share/icons/crystalsvg/16x16/apps/kfax.png -share/icons/crystalsvg/16x16/apps/kfaxview.png -share/icons/crystalsvg/16x16/apps/kfind.png -share/icons/crystalsvg/16x16/apps/kfloppy.png -share/icons/crystalsvg/16x16/apps/kfm.png -share/icons/crystalsvg/16x16/apps/kfontview.png -share/icons/crystalsvg/16x16/apps/kfouleggs.png -share/icons/crystalsvg/16x16/apps/kgamma.png -share/icons/crystalsvg/16x16/apps/kgeography.png -share/icons/crystalsvg/16x16/apps/kget.png -share/icons/crystalsvg/16x16/apps/kghostview.png -share/icons/crystalsvg/16x16/apps/kgoldrunner.png -share/icons/crystalsvg/16x16/apps/kgpg.png -share/icons/crystalsvg/16x16/apps/khangman.png -share/icons/crystalsvg/16x16/apps/khelpcenter.png -share/icons/crystalsvg/16x16/apps/khexedit.png -share/icons/crystalsvg/16x16/apps/khotkeys.png -share/icons/crystalsvg/16x16/apps/kicker.png -share/icons/crystalsvg/16x16/apps/kiconedit.png -share/icons/crystalsvg/16x16/apps/kig.png -share/icons/crystalsvg/16x16/apps/kimagemapeditor.png -share/icons/crystalsvg/16x16/apps/kio_uiserver.png -share/icons/crystalsvg/16x16/apps/kiriki.png -share/icons/crystalsvg/16x16/apps/kitchensync.png -share/icons/crystalsvg/16x16/apps/kiten.png -share/icons/crystalsvg/16x16/apps/kjobviewer.png -share/icons/crystalsvg/16x16/apps/kjots.png -share/icons/crystalsvg/16x16/apps/kjumpingcube.png -share/icons/crystalsvg/16x16/apps/klatin.png -share/icons/crystalsvg/16x16/apps/klettres.png -share/icons/crystalsvg/16x16/apps/klickety.png -share/icons/crystalsvg/16x16/apps/klines.png -share/icons/crystalsvg/16x16/apps/klinkstatus.png -share/icons/crystalsvg/16x16/apps/klipper.png -share/icons/crystalsvg/16x16/apps/kmag.png -share/icons/crystalsvg/16x16/apps/kmahjongg.png -share/icons/crystalsvg/16x16/apps/kmail.png -share/icons/crystalsvg/16x16/apps/kmailcvt.png -share/icons/crystalsvg/16x16/apps/kmenu.png -share/icons/crystalsvg/16x16/apps/kmenuedit.png -share/icons/crystalsvg/16x16/apps/kmid.png -share/icons/crystalsvg/16x16/apps/kmines.png -share/icons/crystalsvg/16x16/apps/kmix.png -share/icons/crystalsvg/16x16/apps/kmoon.png -share/icons/crystalsvg/16x16/apps/kmousetool.png -share/icons/crystalsvg/16x16/apps/kmouth.png -share/icons/crystalsvg/16x16/apps/kmplot.png -share/icons/crystalsvg/16x16/apps/knetattach.png -share/icons/crystalsvg/16x16/apps/knetwalk.png -share/icons/crystalsvg/16x16/apps/knetworkconf.png -share/icons/crystalsvg/16x16/apps/knewsticker.png -share/icons/crystalsvg/16x16/apps/knode.png -share/icons/crystalsvg/16x16/apps/knode2.png -share/icons/crystalsvg/16x16/apps/knotes.png -share/icons/crystalsvg/16x16/apps/knotify.png -share/icons/crystalsvg/16x16/apps/kolf.png -share/icons/crystalsvg/16x16/apps/kolourpaint.png -share/icons/crystalsvg/16x16/apps/kompare.png -share/icons/crystalsvg/16x16/apps/konqsidebar_mediaplayer.png -share/icons/crystalsvg/16x16/apps/konqueror.png -share/icons/crystalsvg/16x16/apps/konquest.png -share/icons/crystalsvg/16x16/apps/konsole.png -share/icons/crystalsvg/16x16/apps/konsolekalendar.png -share/icons/crystalsvg/16x16/apps/kontact.png -share/icons/crystalsvg/16x16/apps/kopete.png -share/icons/crystalsvg/16x16/apps/korganizer.png -share/icons/crystalsvg/16x16/apps/korn.png -share/icons/crystalsvg/16x16/apps/kpackage.png -share/icons/crystalsvg/16x16/apps/kpager.png -share/icons/crystalsvg/16x16/apps/kpalmdoc.png -share/icons/crystalsvg/16x16/apps/kpat.png -share/icons/crystalsvg/16x16/apps/kpercentage.png -share/icons/crystalsvg/16x16/apps/kpf.png -share/icons/crystalsvg/16x16/apps/kpoker.png -share/icons/crystalsvg/16x16/apps/kpovmodeler.png -share/icons/crystalsvg/16x16/apps/kppp.png -share/icons/crystalsvg/16x16/apps/kregexpeditor.png -share/icons/crystalsvg/16x16/apps/kreversi.png -share/icons/crystalsvg/16x16/apps/krfb.png -share/icons/crystalsvg/16x16/apps/kruler.png -share/icons/crystalsvg/16x16/apps/ksame.png -share/icons/crystalsvg/16x16/apps/ksayit.png -share/icons/crystalsvg/16x16/apps/kscd.png -share/icons/crystalsvg/16x16/apps/kscreensaver.png -share/icons/crystalsvg/16x16/apps/ksig.png -share/icons/crystalsvg/16x16/apps/ksim.png -share/icons/crystalsvg/16x16/apps/ksirtet.png -share/icons/crystalsvg/16x16/apps/ksnake.png -share/icons/crystalsvg/16x16/apps/ksnapshot.png -share/icons/crystalsvg/16x16/apps/ksokoban.png -share/icons/crystalsvg/16x16/apps/kspaceduel.png -share/icons/crystalsvg/16x16/apps/ksplash.png -share/icons/crystalsvg/16x16/apps/ksquares.png -share/icons/crystalsvg/16x16/apps/kstars.png -share/icons/crystalsvg/16x16/apps/ksysguard.png -share/icons/crystalsvg/16x16/apps/ksysguardd.png -share/icons/crystalsvg/16x16/apps/ksysv.png -share/icons/crystalsvg/16x16/apps/kteatime.png -share/icons/crystalsvg/16x16/apps/kthememgr.png -share/icons/crystalsvg/16x16/apps/ktimemon.png -share/icons/crystalsvg/16x16/apps/ktimer.png -share/icons/crystalsvg/16x16/apps/ktip.png -share/icons/crystalsvg/16x16/apps/ktouch.png -share/icons/crystalsvg/16x16/apps/ktron.png -share/icons/crystalsvg/16x16/apps/kttsd.png -share/icons/crystalsvg/16x16/apps/ktuberling.png -share/icons/crystalsvg/16x16/apps/kturtle.png -share/icons/crystalsvg/16x16/apps/ktux.png -share/icons/crystalsvg/16x16/apps/kuickshow.png -share/icons/crystalsvg/16x16/apps/kuiviewer.png -share/icons/crystalsvg/16x16/apps/kuser.png -share/icons/crystalsvg/16x16/apps/kviewshell.png -share/icons/crystalsvg/16x16/apps/kvoctrain.png -share/icons/crystalsvg/16x16/apps/kwalletmanager.png -share/icons/crystalsvg/16x16/apps/kwalletmanager2.png -share/icons/crystalsvg/16x16/apps/kweather.png -share/icons/crystalsvg/16x16/apps/kwifimanager.png -share/icons/crystalsvg/16x16/apps/kwikdisk.png -share/icons/crystalsvg/16x16/apps/kwin.png -share/icons/crystalsvg/16x16/apps/kwin4.png -share/icons/crystalsvg/16x16/apps/kwordquiz.png -share/icons/crystalsvg/16x16/apps/kworldclock.png -share/icons/crystalsvg/16x16/apps/kwrite.png -share/icons/crystalsvg/16x16/apps/kxkb.png -share/icons/crystalsvg/16x16/apps/laptop_battery.png -share/icons/crystalsvg/16x16/apps/laptop_pcmcia.png -share/icons/crystalsvg/16x16/apps/locale.png -share/icons/crystalsvg/16x16/apps/lskat.png -share/icons/crystalsvg/16x16/apps/meanwhile_protocol.png -share/icons/crystalsvg/16x16/apps/metabar.png -share/icons/crystalsvg/16x16/apps/mobile_phone.png -share/icons/crystalsvg/16x16/apps/msn_protocol.png -share/icons/crystalsvg/16x16/apps/noatun.png -share/icons/crystalsvg/16x16/apps/okular.png -share/icons/crystalsvg/16x16/apps/package.png -share/icons/crystalsvg/16x16/apps/package_application.png -share/icons/crystalsvg/16x16/apps/package_applications.png -share/icons/crystalsvg/16x16/apps/package_development.png -share/icons/crystalsvg/16x16/apps/package_editors.png -share/icons/crystalsvg/16x16/apps/package_edutainment.png -share/icons/crystalsvg/16x16/apps/package_favourite.png -share/icons/crystalsvg/16x16/apps/package_games.png -share/icons/crystalsvg/16x16/apps/package_games_arcade.png -share/icons/crystalsvg/16x16/apps/package_games_board.png -share/icons/crystalsvg/16x16/apps/package_games_card.png -share/icons/crystalsvg/16x16/apps/package_games_strategy.png -share/icons/crystalsvg/16x16/apps/package_graphics.png -share/icons/crystalsvg/16x16/apps/package_multimedia.png -share/icons/crystalsvg/16x16/apps/package_network.png -share/icons/crystalsvg/16x16/apps/package_settings.png -share/icons/crystalsvg/16x16/apps/package_system.png -share/icons/crystalsvg/16x16/apps/package_toys.png -share/icons/crystalsvg/16x16/apps/package_utilities.png -share/icons/crystalsvg/16x16/apps/package_wordprocessing.png -share/icons/crystalsvg/16x16/apps/panel.png -share/icons/crystalsvg/16x16/apps/password.png -share/icons/crystalsvg/16x16/apps/penguin.png -share/icons/crystalsvg/16x16/apps/personal.png -share/icons/crystalsvg/16x16/apps/preferences-desktop-icons.png -share/icons/crystalsvg/16x16/apps/preferences-desktop-multimedia.png -share/icons/crystalsvg/16x16/apps/preferences-desktop-theme.png -share/icons/crystalsvg/16x16/apps/preferences-system-power-management.png -share/icons/crystalsvg/16x16/apps/printmgr.png -share/icons/crystalsvg/16x16/apps/proxy.png -share/icons/crystalsvg/16x16/apps/qq_protocol.png -share/icons/crystalsvg/16x16/apps/quanta.png -share/icons/crystalsvg/16x16/apps/quanta_be.png -share/icons/crystalsvg/16x16/apps/randr.png -share/icons/crystalsvg/16x16/apps/running.png -share/icons/crystalsvg/16x16/apps/runprocesscatcher.png -share/icons/crystalsvg/16x16/apps/samba.png -share/icons/crystalsvg/16x16/apps/shell.png -share/icons/crystalsvg/16x16/apps/skype_protocol.png -share/icons/crystalsvg/16x16/apps/sms_protocol.png -share/icons/crystalsvg/16x16/apps/style.png -share/icons/crystalsvg/16x16/apps/stylesheet.png -share/icons/crystalsvg/16x16/apps/superkaramba.png -share/icons/crystalsvg/16x16/apps/synaescope.png -share/icons/crystalsvg/16x16/apps/systemtray.png -share/icons/crystalsvg/16x16/apps/taskbar.png -share/icons/crystalsvg/16x16/apps/telepathy_protocol.png -share/icons/crystalsvg/16x16/apps/terminal.png -share/icons/crystalsvg/16x16/apps/testbed_protocol.png -share/icons/crystalsvg/16x16/apps/tux.png -share/icons/crystalsvg/16x16/apps/umbrello.png -share/icons/crystalsvg/16x16/apps/unknownapp.png -share/icons/crystalsvg/16x16/apps/usb.png -share/icons/crystalsvg/16x16/apps/waiting.png -share/icons/crystalsvg/16x16/apps/window_list.png -share/icons/crystalsvg/16x16/apps/wp.png -share/icons/crystalsvg/16x16/apps/wp_protocol.png -share/icons/crystalsvg/16x16/apps/yahoo_protocol.png -share/icons/crystalsvg/16x16/devices/3floppy_mount.png -share/icons/crystalsvg/16x16/devices/3floppy_unmount.png -share/icons/crystalsvg/16x16/devices/5floppy_mount.png -share/icons/crystalsvg/16x16/devices/5floppy_unmount.png -share/icons/crystalsvg/16x16/devices/blockdevice.png -share/icons/crystalsvg/16x16/devices/camera.png -share/icons/crystalsvg/16x16/devices/camera_mount.png -share/icons/crystalsvg/16x16/devices/camera_unmount.png -share/icons/crystalsvg/16x16/devices/cdaudio_mount.png -share/icons/crystalsvg/16x16/devices/cdaudio_unmount.png -share/icons/crystalsvg/16x16/devices/cdrom_mount.png -share/icons/crystalsvg/16x16/devices/cdrom_unmount.png -share/icons/crystalsvg/16x16/devices/cdwriter_mount.png -share/icons/crystalsvg/16x16/devices/cdwriter_unmount.png -share/icons/crystalsvg/16x16/devices/chardevice.png -share/icons/crystalsvg/16x16/devices/compact_flash_mount.png -share/icons/crystalsvg/16x16/devices/compact_flash_unmount.png -share/icons/crystalsvg/16x16/devices/computer-laptop.png -share/icons/crystalsvg/16x16/devices/dvd_mount.png -share/icons/crystalsvg/16x16/devices/dvd_unmount.png -share/icons/crystalsvg/16x16/devices/hdd_mount.png -share/icons/crystalsvg/16x16/devices/hdd_unmount.png -share/icons/crystalsvg/16x16/devices/ipod_mount.png -share/icons/crystalsvg/16x16/devices/ipod_unmount.png -share/icons/crystalsvg/16x16/devices/joystick.png -share/icons/crystalsvg/16x16/devices/ksim_cpu.png -share/icons/crystalsvg/16x16/devices/laptop.png -share/icons/crystalsvg/16x16/devices/memory.png -share/icons/crystalsvg/16x16/devices/memory_stick_mount.png -share/icons/crystalsvg/16x16/devices/memory_stick_unmount.png -share/icons/crystalsvg/16x16/devices/mo_mount.png -share/icons/crystalsvg/16x16/devices/mo_unmount.png -share/icons/crystalsvg/16x16/devices/mouse.png -share/icons/crystalsvg/16x16/devices/nfs_mount.png -share/icons/crystalsvg/16x16/devices/nfs_unmount.png -share/icons/crystalsvg/16x16/devices/pda_black.png -share/icons/crystalsvg/16x16/devices/pda_blue.png -share/icons/crystalsvg/16x16/devices/print_class.png -share/icons/crystalsvg/16x16/devices/printer1.png -share/icons/crystalsvg/16x16/devices/scanner.png -share/icons/crystalsvg/16x16/devices/sd_mmc_mount.png -share/icons/crystalsvg/16x16/devices/sd_mmc_unmount.png -share/icons/crystalsvg/16x16/devices/smart_media_mount.png -share/icons/crystalsvg/16x16/devices/smart_media_unmount.png -share/icons/crystalsvg/16x16/devices/system.png -share/icons/crystalsvg/16x16/devices/tablet.png -share/icons/crystalsvg/16x16/devices/tv.png -share/icons/crystalsvg/16x16/devices/usbpendrive_mount.png -share/icons/crystalsvg/16x16/devices/usbpendrive_unmount.png -share/icons/crystalsvg/16x16/devices/zip_mount.png -share/icons/crystalsvg/16x16/devices/zip_unmount.png -share/icons/crystalsvg/16x16/mimetypes/applix.png -share/icons/crystalsvg/16x16/mimetypes/ascii.png -share/icons/crystalsvg/16x16/mimetypes/binary.png -share/icons/crystalsvg/16x16/mimetypes/cdimage.png -share/icons/crystalsvg/16x16/mimetypes/cdr.png -share/icons/crystalsvg/16x16/mimetypes/cdtrack.png -share/icons/crystalsvg/16x16/mimetypes/colorscm.png -share/icons/crystalsvg/16x16/mimetypes/core.png -share/icons/crystalsvg/16x16/mimetypes/deb.png -share/icons/crystalsvg/16x16/mimetypes/debfile.png -share/icons/crystalsvg/16x16/mimetypes/document.png -share/icons/crystalsvg/16x16/mimetypes/document2.png -share/icons/crystalsvg/16x16/mimetypes/dvi.png -share/icons/crystalsvg/16x16/mimetypes/empty.png -share/icons/crystalsvg/16x16/mimetypes/encrypted.png -share/icons/crystalsvg/16x16/mimetypes/exec_wine.png -share/icons/crystalsvg/16x16/mimetypes/font.png -share/icons/crystalsvg/16x16/mimetypes/font_bitmap.png -share/icons/crystalsvg/16x16/mimetypes/font_truetype.png -share/icons/crystalsvg/16x16/mimetypes/font_type1.png -share/icons/crystalsvg/16x16/mimetypes/gettext.png -share/icons/crystalsvg/16x16/mimetypes/gf.png -share/icons/crystalsvg/16x16/mimetypes/html.png -share/icons/crystalsvg/16x16/mimetypes/image.png -share/icons/crystalsvg/16x16/mimetypes/info.png -share/icons/crystalsvg/16x16/mimetypes/karbon_karbon.png -share/icons/crystalsvg/16x16/mimetypes/kchart_chrt.png -share/icons/crystalsvg/16x16/mimetypes/kexi_kexi.png -share/icons/crystalsvg/16x16/mimetypes/kformula_kfo.png -share/icons/crystalsvg/16x16/mimetypes/kget_list.png -share/icons/crystalsvg/16x16/mimetypes/kig_doc.png -share/icons/crystalsvg/16x16/mimetypes/kivio_flw.png -share/icons/crystalsvg/16x16/mimetypes/kmultiple.png -share/icons/crystalsvg/16x16/mimetypes/koffice.png -share/icons/crystalsvg/16x16/mimetypes/kopete_emoticons.png -share/icons/crystalsvg/16x16/mimetypes/kpovmodeler_doc.png -share/icons/crystalsvg/16x16/mimetypes/kpresenter_kpr.png -share/icons/crystalsvg/16x16/mimetypes/krita_kra.png -share/icons/crystalsvg/16x16/mimetypes/kspread_ksp.png -share/icons/crystalsvg/16x16/mimetypes/kugar_kud.png -share/icons/crystalsvg/16x16/mimetypes/kword_kwd.png -share/icons/crystalsvg/16x16/mimetypes/log.png -share/icons/crystalsvg/16x16/mimetypes/make.png -share/icons/crystalsvg/16x16/mimetypes/man.png -share/icons/crystalsvg/16x16/mimetypes/message.png -share/icons/crystalsvg/16x16/mimetypes/metafont.png -share/icons/crystalsvg/16x16/mimetypes/midi.png -share/icons/crystalsvg/16x16/mimetypes/misc.png -share/icons/crystalsvg/16x16/mimetypes/netscape_doc.png -share/icons/crystalsvg/16x16/mimetypes/news.png -share/icons/crystalsvg/16x16/mimetypes/pdf.png -share/icons/crystalsvg/16x16/mimetypes/pk.png -share/icons/crystalsvg/16x16/mimetypes/postscript.png -share/icons/crystalsvg/16x16/mimetypes/quicktime.png -share/icons/crystalsvg/16x16/mimetypes/readme.png -share/icons/crystalsvg/16x16/mimetypes/recycled.png -share/icons/crystalsvg/16x16/mimetypes/resource.png -share/icons/crystalsvg/16x16/mimetypes/rpm.png -share/icons/crystalsvg/16x16/mimetypes/rpmfile.png -share/icons/crystalsvg/16x16/mimetypes/shellscript.png -share/icons/crystalsvg/16x16/mimetypes/sound.png -share/icons/crystalsvg/16x16/mimetypes/source.png -share/icons/crystalsvg/16x16/mimetypes/source_c.png -share/icons/crystalsvg/16x16/mimetypes/source_cpp.png -share/icons/crystalsvg/16x16/mimetypes/source_f.png -share/icons/crystalsvg/16x16/mimetypes/source_h.png -share/icons/crystalsvg/16x16/mimetypes/source_java.png -share/icons/crystalsvg/16x16/mimetypes/source_l.png -share/icons/crystalsvg/16x16/mimetypes/source_moc.png -share/icons/crystalsvg/16x16/mimetypes/source_o.png -share/icons/crystalsvg/16x16/mimetypes/source_php.png -share/icons/crystalsvg/16x16/mimetypes/source_pl.png -share/icons/crystalsvg/16x16/mimetypes/source_py.png -share/icons/crystalsvg/16x16/mimetypes/source_s.png -share/icons/crystalsvg/16x16/mimetypes/source_y.png -share/icons/crystalsvg/16x16/mimetypes/spreadsheet.png -share/icons/crystalsvg/16x16/mimetypes/superkaramba_theme.png -share/icons/crystalsvg/16x16/mimetypes/tar.png -share/icons/crystalsvg/16x16/mimetypes/template_source.png -share/icons/crystalsvg/16x16/mimetypes/tex.png -share/icons/crystalsvg/16x16/mimetypes/tgz.png -share/icons/crystalsvg/16x16/mimetypes/txt.png -share/icons/crystalsvg/16x16/mimetypes/txt2.png -share/icons/crystalsvg/16x16/mimetypes/umbrellofile.png -share/icons/crystalsvg/16x16/mimetypes/unknown.png -share/icons/crystalsvg/16x16/mimetypes/vcalendar.png -share/icons/crystalsvg/16x16/mimetypes/vcard.png -share/icons/crystalsvg/16x16/mimetypes/vectorgfx.png -share/icons/crystalsvg/16x16/mimetypes/video.png -share/icons/crystalsvg/16x16/mimetypes/widget_doc.png -share/icons/crystalsvg/16x16/mimetypes/wordprocessing.png -share/icons/crystalsvg/16x16/mimetypes/zip.png -share/icons/crystalsvg/16x16/status/user-away.png -share/icons/crystalsvg/16x16/status/user-offline.png -share/icons/crystalsvg/16x16/status/user-online.png -share/icons/crystalsvg/22x22/actions/1day.png -share/icons/crystalsvg/22x22/actions/1downarrow.png -share/icons/crystalsvg/22x22/actions/1leftarrow.png -share/icons/crystalsvg/22x22/actions/1rightarrow.png -share/icons/crystalsvg/22x22/actions/1uparrow.png -share/icons/crystalsvg/22x22/actions/2downarrow.png -share/icons/crystalsvg/22x22/actions/2leftarrow.png -share/icons/crystalsvg/22x22/actions/2rightarrow.png -share/icons/crystalsvg/22x22/actions/2uparrow.png -share/icons/crystalsvg/22x22/actions/5days.png -share/icons/crystalsvg/22x22/actions/7days.png -share/icons/crystalsvg/22x22/actions/about_kde.png -share/icons/crystalsvg/22x22/actions/account_offline_overlay.png -share/icons/crystalsvg/22x22/actions/add_file.png -share/icons/crystalsvg/22x22/actions/add_group.png -share/icons/crystalsvg/22x22/actions/add_user.png -share/icons/crystalsvg/22x22/actions/agenda.png -share/icons/crystalsvg/22x22/actions/airbrush.png -share/icons/crystalsvg/22x22/actions/altkey.png -share/icons/crystalsvg/22x22/actions/application-exit.png -share/icons/crystalsvg/22x22/actions/appointment-new.png -share/icons/crystalsvg/22x22/actions/ark_adddir.png -share/icons/crystalsvg/22x22/actions/ark_addfile.png -share/icons/crystalsvg/22x22/actions/ark_delete.png -share/icons/crystalsvg/22x22/actions/ark_extract.png -share/icons/crystalsvg/22x22/actions/ark_selectall.png -share/icons/crystalsvg/22x22/actions/ark_view.png -share/icons/crystalsvg/22x22/actions/atlantik_buy_estate.png -share/icons/crystalsvg/22x22/actions/attach.png -share/icons/crystalsvg/22x22/actions/babelfish.png -share/icons/crystalsvg/22x22/actions/backup_option.png -share/icons/crystalsvg/22x22/actions/blend.png -share/icons/crystalsvg/22x22/actions/bookmark-new.png -share/icons/crystalsvg/22x22/actions/bookmark.png -share/icons/crystalsvg/22x22/actions/bookmark_folder.png -share/icons/crystalsvg/22x22/actions/bookmarks_list_add.png -share/icons/crystalsvg/22x22/actions/bug.png -share/icons/crystalsvg/22x22/actions/button_fewer.png -share/icons/crystalsvg/22x22/actions/button_more.png -share/icons/crystalsvg/22x22/actions/button_ok.png -share/icons/crystalsvg/22x22/actions/calculate.png -share/icons/crystalsvg/22x22/actions/capskey.png -share/icons/crystalsvg/22x22/actions/casesensitive_option.png -share/icons/crystalsvg/22x22/actions/cd.png -share/icons/crystalsvg/22x22/actions/cdsmall.png -share/icons/crystalsvg/22x22/actions/centrejust.png -share/icons/crystalsvg/22x22/actions/charset.png -share/icons/crystalsvg/22x22/actions/checkedbox.png -share/icons/crystalsvg/22x22/actions/checkedbox_mask.png -share/icons/crystalsvg/22x22/actions/checkedclipboard.png -share/icons/crystalsvg/22x22/actions/checkmark.png -share/icons/crystalsvg/22x22/actions/chemical.png -share/icons/crystalsvg/22x22/actions/clear_left.png -share/icons/crystalsvg/22x22/actions/color_fill.png -share/icons/crystalsvg/22x22/actions/color_line.png -share/icons/crystalsvg/22x22/actions/colorize.png -share/icons/crystalsvg/22x22/actions/colorpicker.png -share/icons/crystalsvg/22x22/actions/command_option.png -share/icons/crystalsvg/22x22/actions/compfile.png -share/icons/crystalsvg/22x22/actions/configure.png -share/icons/crystalsvg/22x22/actions/connect_creating.png -share/icons/crystalsvg/22x22/actions/connect_established.png -share/icons/crystalsvg/22x22/actions/connect_no.png -share/icons/crystalsvg/22x22/actions/contact-new.png -share/icons/crystalsvg/22x22/actions/contents.png -share/icons/crystalsvg/22x22/actions/contents2.png -share/icons/crystalsvg/22x22/actions/contexthelp.png -share/icons/crystalsvg/22x22/actions/controlkey.png -share/icons/crystalsvg/22x22/actions/crop.png -share/icons/crystalsvg/22x22/actions/cssvalidator.png -share/icons/crystalsvg/22x22/actions/dbgnext.png -share/icons/crystalsvg/22x22/actions/dbgrun.png -share/icons/crystalsvg/22x22/actions/dbgrunto.png -share/icons/crystalsvg/22x22/actions/dbgstep.png -share/icons/crystalsvg/22x22/actions/decrypted.png -share/icons/crystalsvg/22x22/actions/define_clip.png -share/icons/crystalsvg/22x22/actions/delete.png -share/icons/crystalsvg/22x22/actions/delete_group.png -share/icons/crystalsvg/22x22/actions/delete_user.png -share/icons/crystalsvg/22x22/actions/dialog-cancel.png -share/icons/crystalsvg/22x22/actions/dialog-close.png -share/icons/crystalsvg/22x22/actions/dialog-ok.png -share/icons/crystalsvg/22x22/actions/disablefont.png -share/icons/crystalsvg/22x22/actions/document-new.png -share/icons/crystalsvg/22x22/actions/document-open.png -share/icons/crystalsvg/22x22/actions/document-print-preview.png -share/icons/crystalsvg/22x22/actions/document-print.png -share/icons/crystalsvg/22x22/actions/document-revert.png -share/icons/crystalsvg/22x22/actions/document-save-as.png -share/icons/crystalsvg/22x22/actions/document-save.png -share/icons/crystalsvg/22x22/actions/domtreeviewer.png -share/icons/crystalsvg/22x22/actions/edit-clear.png -share/icons/crystalsvg/22x22/actions/edit-copy.png -share/icons/crystalsvg/22x22/actions/edit-cut.png -share/icons/crystalsvg/22x22/actions/edit-delete.png -share/icons/crystalsvg/22x22/actions/edit-find.png -share/icons/crystalsvg/22x22/actions/edit-paste.png -share/icons/crystalsvg/22x22/actions/edit-redo.png -share/icons/crystalsvg/22x22/actions/edit-undo.png -share/icons/crystalsvg/22x22/actions/edit.png -share/icons/crystalsvg/22x22/actions/edit_add.png -share/icons/crystalsvg/22x22/actions/edit_group.png -share/icons/crystalsvg/22x22/actions/edit_remove.png -share/icons/crystalsvg/22x22/actions/edit_user.png -share/icons/crystalsvg/22x22/actions/editadd.png -share/icons/crystalsvg/22x22/actions/editremove.png -share/icons/crystalsvg/22x22/actions/editshred.png -share/icons/crystalsvg/22x22/actions/edittrash.png -share/icons/crystalsvg/22x22/actions/elempic.png -share/icons/crystalsvg/22x22/actions/emptybox-mask.png -share/icons/crystalsvg/22x22/actions/emptybox.png -share/icons/crystalsvg/22x22/actions/emptytrash.png -share/icons/crystalsvg/22x22/actions/enablefont.png -share/icons/crystalsvg/22x22/actions/encrypted.png -share/icons/crystalsvg/22x22/actions/energies.png -share/icons/crystalsvg/22x22/actions/enumList.png -share/icons/crystalsvg/22x22/actions/eqchem.png -share/icons/crystalsvg/22x22/actions/eraser.png -share/icons/crystalsvg/22x22/actions/exec.png -share/icons/crystalsvg/22x22/actions/fileexport.png -share/icons/crystalsvg/22x22/actions/filefind.png -share/icons/crystalsvg/22x22/actions/fileimport.png -share/icons/crystalsvg/22x22/actions/filereplace.png -share/icons/crystalsvg/22x22/actions/filesearch.png -share/icons/crystalsvg/22x22/actions/filesimulate.png -share/icons/crystalsvg/22x22/actions/fill.png -share/icons/crystalsvg/22x22/actions/filter.png -share/icons/crystalsvg/22x22/actions/folder-new.png -share/icons/crystalsvg/22x22/actions/folder.png -share/icons/crystalsvg/22x22/actions/folder_closed.png -share/icons/crystalsvg/22x22/actions/folder_open.png -share/icons/crystalsvg/22x22/actions/fontsizedown.png -share/icons/crystalsvg/22x22/actions/fontsizeup.png -share/icons/crystalsvg/22x22/actions/fork.png -share/icons/crystalsvg/22x22/actions/format-justify-center.png -share/icons/crystalsvg/22x22/actions/format-justify-fill.png -share/icons/crystalsvg/22x22/actions/format-justify-left.png -share/icons/crystalsvg/22x22/actions/format-justify-right.png -share/icons/crystalsvg/22x22/actions/format-text-bold.png -share/icons/crystalsvg/22x22/actions/format-text-italic.png -share/icons/crystalsvg/22x22/actions/format-text-strikethrough.png -share/icons/crystalsvg/22x22/actions/format-text-underline.png -share/icons/crystalsvg/22x22/actions/frame_chart.png -share/icons/crystalsvg/22x22/actions/frame_edit.png -share/icons/crystalsvg/22x22/actions/frame_formula.png -share/icons/crystalsvg/22x22/actions/frame_image.png -share/icons/crystalsvg/22x22/actions/frame_query.png -share/icons/crystalsvg/22x22/actions/frame_spreadsheet.png -share/icons/crystalsvg/22x22/actions/frame_text.png -share/icons/crystalsvg/22x22/actions/frameprint.png -share/icons/crystalsvg/22x22/actions/gear.png -share/icons/crystalsvg/22x22/actions/glossary.png -share/icons/crystalsvg/22x22/actions/go-bottom.png -share/icons/crystalsvg/22x22/actions/go-down.png -share/icons/crystalsvg/22x22/actions/go-first.png -share/icons/crystalsvg/22x22/actions/go-home.png -share/icons/crystalsvg/22x22/actions/go-jump-locationbar.png -share/icons/crystalsvg/22x22/actions/go-last.png -share/icons/crystalsvg/22x22/actions/go-next-document.png -share/icons/crystalsvg/22x22/actions/go-next.png -share/icons/crystalsvg/22x22/actions/go-previous-document.png -share/icons/crystalsvg/22x22/actions/go-previous.png -share/icons/crystalsvg/22x22/actions/go-top.png -share/icons/crystalsvg/22x22/actions/go-up.png -share/icons/crystalsvg/22x22/actions/goto.png -share/icons/crystalsvg/22x22/actions/halfencrypted.png -share/icons/crystalsvg/22x22/actions/help.png -share/icons/crystalsvg/22x22/actions/history.png -share/icons/crystalsvg/22x22/actions/hotsync.png -share/icons/crystalsvg/22x22/actions/htmlvalidator.png -share/icons/crystalsvg/22x22/actions/hyperkey.png -share/icons/crystalsvg/22x22/actions/idea.png -share/icons/crystalsvg/22x22/actions/imagegallery.png -share/icons/crystalsvg/22x22/actions/images_display.png -share/icons/crystalsvg/22x22/actions/informations.png -share/icons/crystalsvg/22x22/actions/inline_image.png -share/icons/crystalsvg/22x22/actions/inline_table.png -share/icons/crystalsvg/22x22/actions/invert.png -share/icons/crystalsvg/22x22/actions/isotopemap.png -share/icons/crystalsvg/22x22/actions/jail_pay.png -share/icons/crystalsvg/22x22/actions/journal.png -share/icons/crystalsvg/22x22/actions/juk_dock.png -share/icons/crystalsvg/22x22/actions/kaboodleloop.png -share/icons/crystalsvg/22x22/actions/kalarm.png -share/icons/crystalsvg/22x22/actions/kalarm_disabled.png -share/icons/crystalsvg/22x22/actions/kalzium_molviewer.png -share/icons/crystalsvg/22x22/actions/kalzium_rs.png -share/icons/crystalsvg/22x22/actions/kalzium_tables.png -share/icons/crystalsvg/22x22/actions/kanjidic.png -share/icons/crystalsvg/22x22/actions/kbstate_mouse.png -share/icons/crystalsvg/22x22/actions/kbstate_mouse_left.png -share/icons/crystalsvg/22x22/actions/kbstate_mouse_left_selected.png -share/icons/crystalsvg/22x22/actions/kbstate_mouse_mid.png -share/icons/crystalsvg/22x22/actions/kbstate_mouse_mid_selected.png -share/icons/crystalsvg/22x22/actions/kbstate_mouse_right.png -share/icons/crystalsvg/22x22/actions/kbstate_mouse_right_selected.png -share/icons/crystalsvg/22x22/actions/kbstate_slowkeys.png -share/icons/crystalsvg/22x22/actions/kbstate_stickykeys.png -share/icons/crystalsvg/22x22/actions/kde.png -share/icons/crystalsvg/22x22/actions/kdeprint_addprinter.png -share/icons/crystalsvg/22x22/actions/kdeprint_addpseudo.png -share/icons/crystalsvg/22x22/actions/kdeprint_configmgr.png -share/icons/crystalsvg/22x22/actions/kdeprint_configsrv.png -share/icons/crystalsvg/22x22/actions/kdeprint_defaulthard.png -share/icons/crystalsvg/22x22/actions/kdeprint_defaultsoft.png -share/icons/crystalsvg/22x22/actions/kdeprint_enableprinter.png -share/icons/crystalsvg/22x22/actions/kdeprint_printer.png -share/icons/crystalsvg/22x22/actions/kdeprint_printer_infos.png -share/icons/crystalsvg/22x22/actions/kdeprint_printstate.png -share/icons/crystalsvg/22x22/actions/kdeprint_queuestate.png -share/icons/crystalsvg/22x22/actions/kdeprint_report.png -share/icons/crystalsvg/22x22/actions/kdeprint_restartsrv.png -share/icons/crystalsvg/22x22/actions/kdeprint_stopprinter.png -share/icons/crystalsvg/22x22/actions/kdeprint_testprinter.png -share/icons/crystalsvg/22x22/actions/kdeprint_uploadsmb.png -share/icons/crystalsvg/22x22/actions/key.png -share/icons/crystalsvg/22x22/actions/keypressno.png -share/icons/crystalsvg/22x22/actions/keypressok.png -share/icons/crystalsvg/22x22/actions/kgpg_edit.png -share/icons/crystalsvg/22x22/actions/kgpg_export.png -share/icons/crystalsvg/22x22/actions/kgpg_gen.png -share/icons/crystalsvg/22x22/actions/kgpg_identity.png -share/icons/crystalsvg/22x22/actions/kgpg_import.png -share/icons/crystalsvg/22x22/actions/kgpg_info.png -share/icons/crystalsvg/22x22/actions/kgpg_photo.png -share/icons/crystalsvg/22x22/actions/kgpg_show.png -share/icons/crystalsvg/22x22/actions/kgpg_sign.png -share/icons/crystalsvg/22x22/actions/kgpg_term.png -share/icons/crystalsvg/22x22/actions/klettres_desert.png -share/icons/crystalsvg/22x22/actions/klettres_grownup.png -share/icons/crystalsvg/22x22/actions/klettres_kids.png.png -share/icons/crystalsvg/22x22/actions/kmgroupware_folder_calendar.png -share/icons/crystalsvg/22x22/actions/kmgroupware_folder_journals.png -share/icons/crystalsvg/22x22/actions/kmgroupware_folder_tasks.png -share/icons/crystalsvg/22x22/actions/konsoleblue.png -share/icons/crystalsvg/22x22/actions/konsolered.png -share/icons/crystalsvg/22x22/actions/kontact_contacts.png -share/icons/crystalsvg/22x22/actions/kontact_date.png -share/icons/crystalsvg/22x22/actions/kontact_journal.png -share/icons/crystalsvg/22x22/actions/kontact_mail.png -share/icons/crystalsvg/22x22/actions/kontact_news.png -share/icons/crystalsvg/22x22/actions/kontact_notes.png -share/icons/crystalsvg/22x22/actions/kontact_summary.png -share/icons/crystalsvg/22x22/actions/kontact_summary_green.png -share/icons/crystalsvg/22x22/actions/kontact_todo.png -share/icons/crystalsvg/22x22/actions/kopeteavailable.png -share/icons/crystalsvg/22x22/actions/kopeteaway.png -share/icons/crystalsvg/22x22/actions/kopeteeditstatusmessage.png -share/icons/crystalsvg/22x22/actions/korgac.png -share/icons/crystalsvg/22x22/actions/korgac_disabled.png -share/icons/crystalsvg/22x22/actions/laptop_charge.png -share/icons/crystalsvg/22x22/actions/laptop_nobattery.png -share/icons/crystalsvg/22x22/actions/laptop_nocharge.png -share/icons/crystalsvg/22x22/actions/laptop_power.png -share/icons/crystalsvg/22x22/actions/lastmoves.png -share/icons/crystalsvg/22x22/actions/launch.png -share/icons/crystalsvg/22x22/actions/leftjust.png -share/icons/crystalsvg/22x22/actions/legalmoves.png -share/icons/crystalsvg/22x22/actions/legend.png -share/icons/crystalsvg/22x22/actions/list-add.png -share/icons/crystalsvg/22x22/actions/list-remove.png -share/icons/crystalsvg/22x22/actions/list.png -share/icons/crystalsvg/22x22/actions/locationbar_erase.png -share/icons/crystalsvg/22x22/actions/lockkey.png -share/icons/crystalsvg/22x22/actions/logging.png -share/icons/crystalsvg/22x22/actions/mail-forward.png -share/icons/crystalsvg/22x22/actions/mail-mark-junk.png -share/icons/crystalsvg/22x22/actions/mail-message-new.png -share/icons/crystalsvg/22x22/actions/mail-reply-all.png -share/icons/crystalsvg/22x22/actions/mail-reply-sender.png -share/icons/crystalsvg/22x22/actions/mail-send.png -share/icons/crystalsvg/22x22/actions/mail_delete.png -share/icons/crystalsvg/22x22/actions/mail_find.png -share/icons/crystalsvg/22x22/actions/mail_generic.png -share/icons/crystalsvg/22x22/actions/mail_get.png -share/icons/crystalsvg/22x22/actions/mail_get_all.png -share/icons/crystalsvg/22x22/actions/mail_ham.png -share/icons/crystalsvg/22x22/actions/mail_ignore.png -share/icons/crystalsvg/22x22/actions/mail_new3.png -share/icons/crystalsvg/22x22/actions/mail_post_to.png -share/icons/crystalsvg/22x22/actions/mail_post_to3.png -share/icons/crystalsvg/22x22/actions/mail_replylist.png -share/icons/crystalsvg/22x22/actions/make_kdevelop.png -share/icons/crystalsvg/22x22/actions/math_abs.png -share/icons/crystalsvg/22x22/actions/math_brace.png -share/icons/crystalsvg/22x22/actions/math_brackets.png -share/icons/crystalsvg/22x22/actions/math_frac.png -share/icons/crystalsvg/22x22/actions/math_int.png -share/icons/crystalsvg/22x22/actions/math_lsub.png -share/icons/crystalsvg/22x22/actions/math_lsup.png -share/icons/crystalsvg/22x22/actions/math_matrix.png -share/icons/crystalsvg/22x22/actions/math_onetwomatrix.png -share/icons/crystalsvg/22x22/actions/math_paren.png -share/icons/crystalsvg/22x22/actions/math_prod.png -share/icons/crystalsvg/22x22/actions/math_rsub.png -share/icons/crystalsvg/22x22/actions/math_rsup.png -share/icons/crystalsvg/22x22/actions/math_sqrt.png -share/icons/crystalsvg/22x22/actions/math_sum.png -share/icons/crystalsvg/22x22/actions/media-eject.png -share/icons/crystalsvg/22x22/actions/media-playback-pause.png -share/icons/crystalsvg/22x22/actions/media-playback-start.png -share/icons/crystalsvg/22x22/actions/media-playback-stop.png -share/icons/crystalsvg/22x22/actions/media-seek-backward.png -share/icons/crystalsvg/22x22/actions/media-seek-forward.png -share/icons/crystalsvg/22x22/actions/media-skip-backward.png -share/icons/crystalsvg/22x22/actions/media-skip-forward.png -share/icons/crystalsvg/22x22/actions/menu_new.png -share/icons/crystalsvg/22x22/actions/menu_new_sep.png -share/icons/crystalsvg/22x22/actions/message_reply.png -share/icons/crystalsvg/22x22/actions/metakey.png -share/icons/crystalsvg/22x22/actions/minitools.png -share/icons/crystalsvg/22x22/actions/misc.png -share/icons/crystalsvg/22x22/actions/month.png -share/icons/crystalsvg/22x22/actions/mouse.png -share/icons/crystalsvg/22x22/actions/move.png -share/icons/crystalsvg/22x22/actions/mug.png -share/icons/crystalsvg/22x22/actions/music_32ndnote.png -share/icons/crystalsvg/22x22/actions/music_cleficon.png -share/icons/crystalsvg/22x22/actions/music_cross.png -share/icons/crystalsvg/22x22/actions/music_dottednote.png -share/icons/crystalsvg/22x22/actions/music_eightnote.png -share/icons/crystalsvg/22x22/actions/music_fermatenote.png -share/icons/crystalsvg/22x22/actions/music_flat.png -share/icons/crystalsvg/22x22/actions/music_fullnote.png -share/icons/crystalsvg/22x22/actions/music_halfnote.png -share/icons/crystalsvg/22x22/actions/music_natur.png -share/icons/crystalsvg/22x22/actions/music_quarternote.png -share/icons/crystalsvg/22x22/actions/music_sixteenthnote.png -share/icons/crystalsvg/22x22/actions/new_from_template.png -share/icons/crystalsvg/22x22/actions/newfont.png -share/icons/crystalsvg/22x22/actions/newjournal.png -share/icons/crystalsvg/22x22/actions/newrecurevent.png -share/icons/crystalsvg/22x22/actions/news_subscribe.png -share/icons/crystalsvg/22x22/actions/news_unsubscribe.png -share/icons/crystalsvg/22x22/actions/newtodo.png -share/icons/crystalsvg/22x22/actions/noatun_equalizer.png -share/icons/crystalsvg/22x22/actions/noatun_loop_none.png -share/icons/crystalsvg/22x22/actions/noatun_loop_playlist.png -share/icons/crystalsvg/22x22/actions/noatun_loop_random.png -share/icons/crystalsvg/22x22/actions/noatun_loop_song.png -share/icons/crystalsvg/22x22/actions/noatun_playlist.png -share/icons/crystalsvg/22x22/actions/noatunback.png -share/icons/crystalsvg/22x22/actions/noatunfback.png -share/icons/crystalsvg/22x22/actions/noatunfforward.png -share/icons/crystalsvg/22x22/actions/noatunforward.png -share/icons/crystalsvg/22x22/actions/noatunpause.png -share/icons/crystalsvg/22x22/actions/noatunplay.png -share/icons/crystalsvg/22x22/actions/noatunplaylist.png -share/icons/crystalsvg/22x22/actions/noatunstop.png -share/icons/crystalsvg/22x22/actions/noatuntiny.png -share/icons/crystalsvg/22x22/actions/numbers.png -share/icons/crystalsvg/22x22/actions/object-rotate-left.png -share/icons/crystalsvg/22x22/actions/object-rotate-right.png -share/icons/crystalsvg/22x22/actions/online_status.png -share/icons/crystalsvg/22x22/actions/openterm.png -share/icons/crystalsvg/22x22/actions/opentermblue.png -share/icons/crystalsvg/22x22/actions/opentermred.png -share/icons/crystalsvg/22x22/actions/orbits.png -share/icons/crystalsvg/22x22/actions/overview.png -share/icons/crystalsvg/22x22/actions/package_utilities.png -share/icons/crystalsvg/22x22/actions/paintbrush.png -share/icons/crystalsvg/22x22/actions/pencil.png -share/icons/crystalsvg/22x22/actions/piano.png -share/icons/crystalsvg/22x22/actions/player_playlist.png -share/icons/crystalsvg/22x22/actions/plot.png -share/icons/crystalsvg/22x22/actions/pmbicubicpatch.png -share/icons/crystalsvg/22x22/actions/pmblendmapmodifiers.png -share/icons/crystalsvg/22x22/actions/pmblob.png -share/icons/crystalsvg/22x22/actions/pmblobcylinder.png -share/icons/crystalsvg/22x22/actions/pmblobsphere.png -share/icons/crystalsvg/22x22/actions/pmboundedby.png -share/icons/crystalsvg/22x22/actions/pmbox.png -share/icons/crystalsvg/22x22/actions/pmbumpmap.png -share/icons/crystalsvg/22x22/actions/pmcamera.png -share/icons/crystalsvg/22x22/actions/pmclippedby.png -share/icons/crystalsvg/22x22/actions/pmcolorlist.png -share/icons/crystalsvg/22x22/actions/pmcolormap.png -share/icons/crystalsvg/22x22/actions/pmcolormapdeclare.png -share/icons/crystalsvg/22x22/actions/pmcomment.png -share/icons/crystalsvg/22x22/actions/pmcone.png -share/icons/crystalsvg/22x22/actions/pmconfigurecolors.png -share/icons/crystalsvg/22x22/actions/pmconfiguredialogview.png -share/icons/crystalsvg/22x22/actions/pmconfiguregraphicalview.png -share/icons/crystalsvg/22x22/actions/pmconfiguregrid.png -share/icons/crystalsvg/22x22/actions/pmconfigureobjectlibrary.png -share/icons/crystalsvg/22x22/actions/pmconfigureobjects.png -share/icons/crystalsvg/22x22/actions/pmconfigureopengl.png -share/icons/crystalsvg/22x22/actions/pmconfigurepovray.png -share/icons/crystalsvg/22x22/actions/pmconfiguretexturepreview.png -share/icons/crystalsvg/22x22/actions/pmconfigureviewlayout.png -share/icons/crystalsvg/22x22/actions/pmcylinder.png -share/icons/crystalsvg/22x22/actions/pmdeclare.png -share/icons/crystalsvg/22x22/actions/pmdensity.png -share/icons/crystalsvg/22x22/actions/pmdensitydeclare.png -share/icons/crystalsvg/22x22/actions/pmdensitylist.png -share/icons/crystalsvg/22x22/actions/pmdensitymap.png -share/icons/crystalsvg/22x22/actions/pmdensitymapdeclare.png -share/icons/crystalsvg/22x22/actions/pmdifference.png -share/icons/crystalsvg/22x22/actions/pmdisc.png -share/icons/crystalsvg/22x22/actions/pmdrag.png -share/icons/crystalsvg/22x22/actions/pmfinish.png -share/icons/crystalsvg/22x22/actions/pmfinishdeclare.png -share/icons/crystalsvg/22x22/actions/pmfog.png -share/icons/crystalsvg/22x22/actions/pmfogdeclare.png -share/icons/crystalsvg/22x22/actions/pmglobalphotons.png -share/icons/crystalsvg/22x22/actions/pmglobalsettings.png -share/icons/crystalsvg/22x22/actions/pmheightfield.png -share/icons/crystalsvg/22x22/actions/pmimagemap.png -share/icons/crystalsvg/22x22/actions/pminserterrors.png -share/icons/crystalsvg/22x22/actions/pminterior.png -share/icons/crystalsvg/22x22/actions/pminteriordeclare.png -share/icons/crystalsvg/22x22/actions/pminteriortexture.png -share/icons/crystalsvg/22x22/actions/pminteriortexturedeclare.png -share/icons/crystalsvg/22x22/actions/pmintersection.png -share/icons/crystalsvg/22x22/actions/pmisosurface.png -share/icons/crystalsvg/22x22/actions/pmjuliafractal.png -share/icons/crystalsvg/22x22/actions/pmlathe.png -share/icons/crystalsvg/22x22/actions/pmlight.png -share/icons/crystalsvg/22x22/actions/pmlightgroup.png -share/icons/crystalsvg/22x22/actions/pmlistpattern.png -share/icons/crystalsvg/22x22/actions/pmlookslike.png -share/icons/crystalsvg/22x22/actions/pmmaterial.png -share/icons/crystalsvg/22x22/actions/pmmaterialdeclare.png -share/icons/crystalsvg/22x22/actions/pmmaterialmap.png -share/icons/crystalsvg/22x22/actions/pmmatrix.png -share/icons/crystalsvg/22x22/actions/pmmedia.png -share/icons/crystalsvg/22x22/actions/pmmediadeclare.png -share/icons/crystalsvg/22x22/actions/pmmerge.png -share/icons/crystalsvg/22x22/actions/pmmesh.png -share/icons/crystalsvg/22x22/actions/pmnormal.png -share/icons/crystalsvg/22x22/actions/pmnormaldeclare.png -share/icons/crystalsvg/22x22/actions/pmnormallist.png -share/icons/crystalsvg/22x22/actions/pmnormalmap.png -share/icons/crystalsvg/22x22/actions/pmnormalmapdeclare.png -share/icons/crystalsvg/22x22/actions/pmobjectdeclare.png -share/icons/crystalsvg/22x22/actions/pmobjectlink.png -share/icons/crystalsvg/22x22/actions/pmpattern.png -share/icons/crystalsvg/22x22/actions/pmphotons.png -share/icons/crystalsvg/22x22/actions/pmpigment.png -share/icons/crystalsvg/22x22/actions/pmpigmentdeclare.png -share/icons/crystalsvg/22x22/actions/pmpigmentlist.png -share/icons/crystalsvg/22x22/actions/pmpigmentmap.png -share/icons/crystalsvg/22x22/actions/pmpigmentmapdeclare.png -share/icons/crystalsvg/22x22/actions/pmplane.png -share/icons/crystalsvg/22x22/actions/pmpolynom.png -share/icons/crystalsvg/22x22/actions/pmprism.png -share/icons/crystalsvg/22x22/actions/pmprojectedthrough.png -share/icons/crystalsvg/22x22/actions/pmquickcolor.png -share/icons/crystalsvg/22x22/actions/pmradiosity.png -share/icons/crystalsvg/22x22/actions/pmrainbow.png -share/icons/crystalsvg/22x22/actions/pmrainbowdeclare.png -share/icons/crystalsvg/22x22/actions/pmraw.png -share/icons/crystalsvg/22x22/actions/pmrender.png -share/icons/crystalsvg/22x22/actions/pmrenderpreview.png -share/icons/crystalsvg/22x22/actions/pmrendersettings.png -share/icons/crystalsvg/22x22/actions/pmrotate.png -share/icons/crystalsvg/22x22/actions/pmscale.png -share/icons/crystalsvg/22x22/actions/pmscene.png -share/icons/crystalsvg/22x22/actions/pmskysphere.png -share/icons/crystalsvg/22x22/actions/pmskyspheredeclare.png -share/icons/crystalsvg/22x22/actions/pmslope.png -share/icons/crystalsvg/22x22/actions/pmslopemap.png -share/icons/crystalsvg/22x22/actions/pmslopemapdeclare.png -share/icons/crystalsvg/22x22/actions/pmsolidcolor.png -share/icons/crystalsvg/22x22/actions/pmsor.png -share/icons/crystalsvg/22x22/actions/pmsphere.png -share/icons/crystalsvg/22x22/actions/pmspheresweep.png -share/icons/crystalsvg/22x22/actions/pmsqe.png -share/icons/crystalsvg/22x22/actions/pmtext.png -share/icons/crystalsvg/22x22/actions/pmtexture.png -share/icons/crystalsvg/22x22/actions/pmtexturedeclare.png -share/icons/crystalsvg/22x22/actions/pmtexturelist.png -share/icons/crystalsvg/22x22/actions/pmtexturemap.png -share/icons/crystalsvg/22x22/actions/pmtexturemapdeclare.png -share/icons/crystalsvg/22x22/actions/pmtorus.png -share/icons/crystalsvg/22x22/actions/pmtranslate.png -share/icons/crystalsvg/22x22/actions/pmtriangle.png -share/icons/crystalsvg/22x22/actions/pmunion.png -share/icons/crystalsvg/22x22/actions/pmwarp.png -share/icons/crystalsvg/22x22/actions/process-stop.png -share/icons/crystalsvg/22x22/actions/project_open.png -share/icons/crystalsvg/22x22/actions/projectopen.png -share/icons/crystalsvg/22x22/actions/queue.png -share/icons/crystalsvg/22x22/actions/rebuild.png -share/icons/crystalsvg/22x22/actions/recursive_option.png -share/icons/crystalsvg/22x22/actions/regularexpression_option.png -share/icons/crystalsvg/22x22/actions/reload3.png -share/icons/crystalsvg/22x22/actions/reload_all_tabs.png -share/icons/crystalsvg/22x22/actions/reload_page.png -share/icons/crystalsvg/22x22/actions/rightjust.png -share/icons/crystalsvg/22x22/actions/roll.png -share/icons/crystalsvg/22x22/actions/rotate.png -share/icons/crystalsvg/22x22/actions/rss_tag.png -share/icons/crystalsvg/22x22/actions/save_all.png -share/icons/crystalsvg/22x22/actions/search_user.png -share/icons/crystalsvg/22x22/actions/send.png -share/icons/crystalsvg/22x22/actions/share.png -share/icons/crystalsvg/22x22/actions/shiftkey.png -share/icons/crystalsvg/22x22/actions/show_offliners.png -share/icons/crystalsvg/22x22/actions/show_side_panel.png -share/icons/crystalsvg/22x22/actions/showmenu.png -share/icons/crystalsvg/22x22/actions/sidebar.png -share/icons/crystalsvg/22x22/actions/signature.png -share/icons/crystalsvg/22x22/actions/spectrum.png -share/icons/crystalsvg/22x22/actions/spnewgame.png -share/icons/crystalsvg/22x22/actions/spnewround.png -share/icons/crystalsvg/22x22/actions/sppausegame.png -share/icons/crystalsvg/22x22/actions/statematter.png -share/icons/crystalsvg/22x22/actions/superkey.png -share/icons/crystalsvg/22x22/actions/svn_add.png -share/icons/crystalsvg/22x22/actions/svn_branch.png -share/icons/crystalsvg/22x22/actions/svn_merge.png -share/icons/crystalsvg/22x22/actions/svn_remove.png -share/icons/crystalsvg/22x22/actions/svn_status.png -share/icons/crystalsvg/22x22/actions/svn_switch.png -share/icons/crystalsvg/22x22/actions/switchuser.png -share/icons/crystalsvg/22x22/actions/system-lock-screen.png -share/icons/crystalsvg/22x22/actions/system-run.png -share/icons/crystalsvg/22x22/actions/system-search.png -share/icons/crystalsvg/22x22/actions/tea_anim1.png -share/icons/crystalsvg/22x22/actions/tea_anim2.png -share/icons/crystalsvg/22x22/actions/tea_not_ready.png -share/icons/crystalsvg/22x22/actions/text.png -share/icons/crystalsvg/22x22/actions/text_sub.png -share/icons/crystalsvg/22x22/actions/text_super.png -share/icons/crystalsvg/22x22/actions/thumbnail.png -share/icons/crystalsvg/22x22/actions/timeline.png -share/icons/crystalsvg/22x22/actions/timespan.png -share/icons/crystalsvg/22x22/actions/today.png -share/icons/crystalsvg/22x22/actions/todo.png -share/icons/crystalsvg/22x22/actions/toggle_log.png -share/icons/crystalsvg/22x22/actions/tools-check-spelling.png -share/icons/crystalsvg/22x22/actions/tooltip.png -share/icons/crystalsvg/22x22/actions/translate.png -share/icons/crystalsvg/22x22/actions/umbrello_diagram_activity.png -share/icons/crystalsvg/22x22/actions/umbrello_diagram_class.png -share/icons/crystalsvg/22x22/actions/umbrello_diagram_collaboration.png -share/icons/crystalsvg/22x22/actions/umbrello_diagram_component.png -share/icons/crystalsvg/22x22/actions/umbrello_diagram_deployment.png -share/icons/crystalsvg/22x22/actions/umbrello_diagram_entityrelationship.png -share/icons/crystalsvg/22x22/actions/umbrello_diagram_sequence.png -share/icons/crystalsvg/22x22/actions/umbrello_diagram_state.png -share/icons/crystalsvg/22x22/actions/umbrello_diagram_usecase.png -share/icons/crystalsvg/22x22/actions/unlatched.png -share/icons/crystalsvg/22x22/actions/unlock.png -share/icons/crystalsvg/22x22/actions/unsortedList.png -share/icons/crystalsvg/22x22/actions/validators.png -share/icons/crystalsvg/22x22/actions/vcs_add.png -share/icons/crystalsvg/22x22/actions/vcs_commit.png -share/icons/crystalsvg/22x22/actions/vcs_diff.png -share/icons/crystalsvg/22x22/actions/vcs_remove.png -share/icons/crystalsvg/22x22/actions/vcs_status.png -share/icons/crystalsvg/22x22/actions/vcs_update.png -share/icons/crystalsvg/22x22/actions/view-close.png -share/icons/crystalsvg/22x22/actions/view-fit-height.png -share/icons/crystalsvg/22x22/actions/view-fit-width.png -share/icons/crystalsvg/22x22/actions/view-fit-window.png -share/icons/crystalsvg/22x22/actions/view-fullscreen.png -share/icons/crystalsvg/22x22/actions/view-pim-calendar.png -share/icons/crystalsvg/22x22/actions/view-pim-contacts.png -share/icons/crystalsvg/22x22/actions/view-pim-journal.png -share/icons/crystalsvg/22x22/actions/view-pim-mail.png -share/icons/crystalsvg/22x22/actions/view-pim-news.png -share/icons/crystalsvg/22x22/actions/view-pim-notes.png -share/icons/crystalsvg/22x22/actions/view-pim-summary.png -share/icons/crystalsvg/22x22/actions/view-pim-tasks.png -share/icons/crystalsvg/22x22/actions/view-refresh.png -share/icons/crystalsvg/22x22/actions/view-restore.png -share/icons/crystalsvg/22x22/actions/view.png -share/icons/crystalsvg/22x22/actions/view_bottom.png -share/icons/crystalsvg/22x22/actions/view_choose.png -share/icons/crystalsvg/22x22/actions/view_detailed.png -share/icons/crystalsvg/22x22/actions/view_icon.png -share/icons/crystalsvg/22x22/actions/view_left_right.png -share/icons/crystalsvg/22x22/actions/view_multicolumn.png -share/icons/crystalsvg/22x22/actions/view_right.png -share/icons/crystalsvg/22x22/actions/view_sidetree.png -share/icons/crystalsvg/22x22/actions/view_text.png -share/icons/crystalsvg/22x22/actions/view_top_bottom.png -share/icons/crystalsvg/22x22/actions/view_tree.png -share/icons/crystalsvg/22x22/actions/voicecall.png -share/icons/crystalsvg/22x22/actions/volume.png -share/icons/crystalsvg/22x22/actions/wallet_closed.png -share/icons/crystalsvg/22x22/actions/wallet_open.png -share/icons/crystalsvg/22x22/actions/webarchiver.png -share/icons/crystalsvg/22x22/actions/webcamreceive.png -share/icons/crystalsvg/22x22/actions/webcamsend.png -share/icons/crystalsvg/22x22/actions/webexport.png -share/icons/crystalsvg/22x22/actions/whatsnext.png -share/icons/crystalsvg/22x22/actions/window-new.png -share/icons/crystalsvg/22x22/actions/window_duplicate.png -share/icons/crystalsvg/22x22/actions/wizard.png -share/icons/crystalsvg/22x22/actions/xdays.png -share/icons/crystalsvg/22x22/actions/yahoo_stealthed.png -share/icons/crystalsvg/22x22/actions/zoom-best-fit.png -share/icons/crystalsvg/22x22/actions/zoom-in.png -share/icons/crystalsvg/22x22/actions/zoom-original.png -share/icons/crystalsvg/22x22/actions/zoom-out.png -share/icons/crystalsvg/22x22/actions/zoom.png -share/icons/crystalsvg/22x22/apps/access.png -share/icons/crystalsvg/22x22/apps/agent.png -share/icons/crystalsvg/22x22/apps/akregator.png -share/icons/crystalsvg/22x22/apps/amor.png -share/icons/crystalsvg/22x22/apps/ark.png -share/icons/crystalsvg/22x22/apps/arts.png -share/icons/crystalsvg/22x22/apps/background.png -share/icons/crystalsvg/22x22/apps/bell.png -share/icons/crystalsvg/22x22/apps/blinken.png -share/icons/crystalsvg/22x22/apps/cache.png -share/icons/crystalsvg/22x22/apps/catalogmanager.png -share/icons/crystalsvg/22x22/apps/cervisia.png -share/icons/crystalsvg/22x22/apps/colors.png -share/icons/crystalsvg/22x22/apps/cookie.png -share/icons/crystalsvg/22x22/apps/date.png -share/icons/crystalsvg/22x22/apps/email.png -share/icons/crystalsvg/22x22/apps/enhanced_browsing.png -share/icons/crystalsvg/22x22/apps/fifteenpieces.png -share/icons/crystalsvg/22x22/apps/filetypes.png -share/icons/crystalsvg/22x22/apps/fonts.png -share/icons/crystalsvg/22x22/apps/fsview.png -share/icons/crystalsvg/22x22/apps/gpg.png -share/icons/crystalsvg/22x22/apps/gpgsm.png -share/icons/crystalsvg/22x22/apps/groupwise_protocol.png -share/icons/crystalsvg/22x22/apps/hwinfo.png -share/icons/crystalsvg/22x22/apps/icons.png -share/icons/crystalsvg/22x22/apps/ieee1394.png -share/icons/crystalsvg/22x22/apps/irkick.png -share/icons/crystalsvg/22x22/apps/kaboodle.png -share/icons/crystalsvg/22x22/apps/kalzium.png -share/icons/crystalsvg/22x22/apps/kanagram.png -share/icons/crystalsvg/22x22/apps/karm.png -share/icons/crystalsvg/22x22/apps/kasteroids.png -share/icons/crystalsvg/22x22/apps/kate.png -share/icons/crystalsvg/22x22/apps/katomic.png -share/icons/crystalsvg/22x22/apps/kbackgammon.png -share/icons/crystalsvg/22x22/apps/kbinaryclock.png -share/icons/crystalsvg/22x22/apps/kblackbox.png -share/icons/crystalsvg/22x22/apps/kbounce.png -share/icons/crystalsvg/22x22/apps/kbruch.png -share/icons/crystalsvg/22x22/apps/kbugbuster.png -share/icons/crystalsvg/22x22/apps/kcalc.png -share/icons/crystalsvg/22x22/apps/kcmdevices.png -share/icons/crystalsvg/22x22/apps/kcmdf.png -share/icons/crystalsvg/22x22/apps/kcmkicker.png -share/icons/crystalsvg/22x22/apps/kcmkwm.png -share/icons/crystalsvg/22x22/apps/kcmx.png -share/icons/crystalsvg/22x22/apps/kcolorchooser.png -share/icons/crystalsvg/22x22/apps/kcron.png -share/icons/crystalsvg/22x22/apps/kdat.png -share/icons/crystalsvg/22x22/apps/kdeprint_printer.png -share/icons/crystalsvg/22x22/apps/kdeprintfax.png -share/icons/crystalsvg/22x22/apps/kdf.png -share/icons/crystalsvg/22x22/apps/kdmconfig.png -share/icons/crystalsvg/22x22/apps/kdvi.png -share/icons/crystalsvg/22x22/apps/kenolaba.png -share/icons/crystalsvg/22x22/apps/key_bindings.png -share/icons/crystalsvg/22x22/apps/keyboard.png -share/icons/crystalsvg/22x22/apps/kfax.png -share/icons/crystalsvg/22x22/apps/kfaxview.png -share/icons/crystalsvg/22x22/apps/kfilereplace.png -share/icons/crystalsvg/22x22/apps/kfind.png -share/icons/crystalsvg/22x22/apps/kfloppy.png -share/icons/crystalsvg/22x22/apps/kfm.png -share/icons/crystalsvg/22x22/apps/kfontview.png -share/icons/crystalsvg/22x22/apps/kfouleggs.png -share/icons/crystalsvg/22x22/apps/kgeography.png -share/icons/crystalsvg/22x22/apps/kget.png -share/icons/crystalsvg/22x22/apps/kghostview.png -share/icons/crystalsvg/22x22/apps/kgoldrunner.png -share/icons/crystalsvg/22x22/apps/kgpg.png -share/icons/crystalsvg/22x22/apps/khangman.png -share/icons/crystalsvg/22x22/apps/khelpcenter.png -share/icons/crystalsvg/22x22/apps/kiconedit.png -share/icons/crystalsvg/22x22/apps/kig.png -share/icons/crystalsvg/22x22/apps/kiriki.png -share/icons/crystalsvg/22x22/apps/kitchensync.png -share/icons/crystalsvg/22x22/apps/kjobviewer.png -share/icons/crystalsvg/22x22/apps/kjots.png -share/icons/crystalsvg/22x22/apps/kjumpingcube.png -share/icons/crystalsvg/22x22/apps/klatin.png -share/icons/crystalsvg/22x22/apps/klettres.png -share/icons/crystalsvg/22x22/apps/klickety.png -share/icons/crystalsvg/22x22/apps/klines.png -share/icons/crystalsvg/22x22/apps/klinkstatus.png -share/icons/crystalsvg/22x22/apps/klipper.png -share/icons/crystalsvg/22x22/apps/kmahjongg.png -share/icons/crystalsvg/22x22/apps/kmail.png -share/icons/crystalsvg/22x22/apps/kmaillight.png -share/icons/crystalsvg/22x22/apps/kmenu.png -share/icons/crystalsvg/22x22/apps/kmenuedit.png -share/icons/crystalsvg/22x22/apps/kmines.png -share/icons/crystalsvg/22x22/apps/kmouth.png -share/icons/crystalsvg/22x22/apps/kmplot.png -share/icons/crystalsvg/22x22/apps/knetattach.png -share/icons/crystalsvg/22x22/apps/knetwalk.png -share/icons/crystalsvg/22x22/apps/knetworkconf.png -share/icons/crystalsvg/22x22/apps/knotes.png -share/icons/crystalsvg/22x22/apps/kolf.png -share/icons/crystalsvg/22x22/apps/kolourpaint.png -share/icons/crystalsvg/22x22/apps/kompare.png -share/icons/crystalsvg/22x22/apps/konqsidebar_mediaplayer.png -share/icons/crystalsvg/22x22/apps/konqueror.png -share/icons/crystalsvg/22x22/apps/konquest.png -share/icons/crystalsvg/22x22/apps/konsole.png -share/icons/crystalsvg/22x22/apps/konsolekalendar.png -share/icons/crystalsvg/22x22/apps/kontact.png -share/icons/crystalsvg/22x22/apps/kopete.png -share/icons/crystalsvg/22x22/apps/kopete_all_away.png -share/icons/crystalsvg/22x22/apps/kopete_avdevice.png -share/icons/crystalsvg/22x22/apps/kopete_offline.png -share/icons/crystalsvg/22x22/apps/kopete_some_away.png -share/icons/crystalsvg/22x22/apps/kopete_some_online.png -share/icons/crystalsvg/22x22/apps/kpackage.png -share/icons/crystalsvg/22x22/apps/kpager.png -share/icons/crystalsvg/22x22/apps/kpalmdoc.png -share/icons/crystalsvg/22x22/apps/kpat.png -share/icons/crystalsvg/22x22/apps/kpercentage.png -share/icons/crystalsvg/22x22/apps/kpoker.png -share/icons/crystalsvg/22x22/apps/kpovmodeler.png -share/icons/crystalsvg/22x22/apps/kppp.png -share/icons/crystalsvg/22x22/apps/kregexpeditor.png -share/icons/crystalsvg/22x22/apps/kreversi.png -share/icons/crystalsvg/22x22/apps/kruler.png -share/icons/crystalsvg/22x22/apps/ksame.png -share/icons/crystalsvg/22x22/apps/kscreensaver.png -share/icons/crystalsvg/22x22/apps/ksirtet.png -share/icons/crystalsvg/22x22/apps/ksnake.png -share/icons/crystalsvg/22x22/apps/ksnapshot.png -share/icons/crystalsvg/22x22/apps/ksokoban.png -share/icons/crystalsvg/22x22/apps/kspaceduel.png -share/icons/crystalsvg/22x22/apps/ksplash.png -share/icons/crystalsvg/22x22/apps/ksquares.png -share/icons/crystalsvg/22x22/apps/ksysv.png -share/icons/crystalsvg/22x22/apps/kthememgr.png -share/icons/crystalsvg/22x22/apps/ktip.png -share/icons/crystalsvg/22x22/apps/ktouch.png -share/icons/crystalsvg/22x22/apps/ktron.png -share/icons/crystalsvg/22x22/apps/kttsd.png -share/icons/crystalsvg/22x22/apps/ktuberling.png -share/icons/crystalsvg/22x22/apps/kturtle.png -share/icons/crystalsvg/22x22/apps/kuickshow.png -share/icons/crystalsvg/22x22/apps/kuser.png -share/icons/crystalsvg/22x22/apps/kvoctrain.png -share/icons/crystalsvg/22x22/apps/kwalletmanager.png -share/icons/crystalsvg/22x22/apps/kwifimanager.png -share/icons/crystalsvg/22x22/apps/kwikdisk.png -share/icons/crystalsvg/22x22/apps/kwin4.png -share/icons/crystalsvg/22x22/apps/kwordquiz.png -share/icons/crystalsvg/22x22/apps/kworldclock.png -share/icons/crystalsvg/22x22/apps/kwrite.png -share/icons/crystalsvg/22x22/apps/locale.png -share/icons/crystalsvg/22x22/apps/lskat.png -share/icons/crystalsvg/22x22/apps/meanwhile_protocol.png -share/icons/crystalsvg/22x22/apps/networkmanager.png -share/icons/crystalsvg/22x22/apps/noatun.png -share/icons/crystalsvg/22x22/apps/okular.png -share/icons/crystalsvg/22x22/apps/package_development.png -share/icons/crystalsvg/22x22/apps/password.png -share/icons/crystalsvg/22x22/apps/personal.png -share/icons/crystalsvg/22x22/apps/preferences-desktop-icons.png -share/icons/crystalsvg/22x22/apps/preferences-system-power-management.png -share/icons/crystalsvg/22x22/apps/printmgr.png -share/icons/crystalsvg/22x22/apps/proxy.png -share/icons/crystalsvg/22x22/apps/qq_protocol.png -share/icons/crystalsvg/22x22/apps/quanta.png -share/icons/crystalsvg/22x22/apps/quanta_be.png -share/icons/crystalsvg/22x22/apps/randr.png -share/icons/crystalsvg/22x22/apps/runprocesscatcher.png -share/icons/crystalsvg/22x22/apps/samba.png -share/icons/crystalsvg/22x22/apps/style.png -share/icons/crystalsvg/22x22/apps/stylesheet.png -share/icons/crystalsvg/22x22/apps/superkaramba.png -share/icons/crystalsvg/22x22/apps/systemtray.png -share/icons/crystalsvg/22x22/apps/taskbar.png -share/icons/crystalsvg/22x22/apps/telepathy_protocol.png -share/icons/crystalsvg/22x22/apps/umbrello.png -share/icons/crystalsvg/22x22/devices/3floppy_mount.png -share/icons/crystalsvg/22x22/devices/3floppy_unmount.png -share/icons/crystalsvg/22x22/devices/camera.png -share/icons/crystalsvg/22x22/devices/camera_mount.png -share/icons/crystalsvg/22x22/devices/camera_unmount.png -share/icons/crystalsvg/22x22/devices/cdaudio_unmount.png -share/icons/crystalsvg/22x22/devices/compact_flash_mount.png -share/icons/crystalsvg/22x22/devices/compact_flash_unmount.png -share/icons/crystalsvg/22x22/devices/computer-laptop.png -share/icons/crystalsvg/22x22/devices/hdd_mount.png -share/icons/crystalsvg/22x22/devices/hdd_unmount.png -share/icons/crystalsvg/22x22/devices/ipod_mount.png -share/icons/crystalsvg/22x22/devices/ipod_unmount.png -share/icons/crystalsvg/22x22/devices/joystick.png -share/icons/crystalsvg/22x22/devices/laptop.png -share/icons/crystalsvg/22x22/devices/memory_stick_mount.png -share/icons/crystalsvg/22x22/devices/memory_stick_unmount.png -share/icons/crystalsvg/22x22/devices/print_class.png -share/icons/crystalsvg/22x22/devices/printer1.png -share/icons/crystalsvg/22x22/devices/sd_mmc_mount.png -share/icons/crystalsvg/22x22/devices/sd_mmc_unmount.png -share/icons/crystalsvg/22x22/devices/smart_media_mount.png -share/icons/crystalsvg/22x22/devices/smart_media_unmount.png -share/icons/crystalsvg/22x22/devices/system.png -share/icons/crystalsvg/22x22/devices/usbpendrive_mount.png -share/icons/crystalsvg/22x22/devices/usbpendrive_unmount.png -share/icons/crystalsvg/22x22/mimetypes/applix.png -share/icons/crystalsvg/22x22/mimetypes/ascii.png -share/icons/crystalsvg/22x22/mimetypes/binary.png -share/icons/crystalsvg/22x22/mimetypes/cdimage.png -share/icons/crystalsvg/22x22/mimetypes/cdtrack.png -share/icons/crystalsvg/22x22/mimetypes/colorscm.png -share/icons/crystalsvg/22x22/mimetypes/core.png -share/icons/crystalsvg/22x22/mimetypes/deb.png -share/icons/crystalsvg/22x22/mimetypes/document.png -share/icons/crystalsvg/22x22/mimetypes/document2.png -share/icons/crystalsvg/22x22/mimetypes/dvi.png -share/icons/crystalsvg/22x22/mimetypes/empty.png -share/icons/crystalsvg/22x22/mimetypes/encrypted.png -share/icons/crystalsvg/22x22/mimetypes/exec_wine.png -share/icons/crystalsvg/22x22/mimetypes/file_locked.png -share/icons/crystalsvg/22x22/mimetypes/file_temporary.png -share/icons/crystalsvg/22x22/mimetypes/font.png -share/icons/crystalsvg/22x22/mimetypes/font_bitmap.png -share/icons/crystalsvg/22x22/mimetypes/font_truetype.png -share/icons/crystalsvg/22x22/mimetypes/font_type1.png -share/icons/crystalsvg/22x22/mimetypes/gf.png -share/icons/crystalsvg/22x22/mimetypes/html.png -share/icons/crystalsvg/22x22/mimetypes/image.png -share/icons/crystalsvg/22x22/mimetypes/info.png -share/icons/crystalsvg/22x22/mimetypes/karbon_karbon.png -share/icons/crystalsvg/22x22/mimetypes/kchart_chrt.png -share/icons/crystalsvg/22x22/mimetypes/kexi_kexi.png -share/icons/crystalsvg/22x22/mimetypes/kformula_kfo.png -share/icons/crystalsvg/22x22/mimetypes/kget_list.png -share/icons/crystalsvg/22x22/mimetypes/kig_doc.png -share/icons/crystalsvg/22x22/mimetypes/kivio_flw.png -share/icons/crystalsvg/22x22/mimetypes/kmultiple.png -share/icons/crystalsvg/22x22/mimetypes/koffice.png -share/icons/crystalsvg/22x22/mimetypes/kopete_emoticons.png -share/icons/crystalsvg/22x22/mimetypes/kpresenter_kpr.png -share/icons/crystalsvg/22x22/mimetypes/krita_kra.png -share/icons/crystalsvg/22x22/mimetypes/kspread_ksp.png -share/icons/crystalsvg/22x22/mimetypes/kugar_kud.png -share/icons/crystalsvg/22x22/mimetypes/kword_kwd.png -share/icons/crystalsvg/22x22/mimetypes/log.png -share/icons/crystalsvg/22x22/mimetypes/make.png -share/icons/crystalsvg/22x22/mimetypes/man.png -share/icons/crystalsvg/22x22/mimetypes/message.png -share/icons/crystalsvg/22x22/mimetypes/metafont.png -share/icons/crystalsvg/22x22/mimetypes/midi.png -share/icons/crystalsvg/22x22/mimetypes/mozilla_doc.png -share/icons/crystalsvg/22x22/mimetypes/netscape_doc.png -share/icons/crystalsvg/22x22/mimetypes/news.png -share/icons/crystalsvg/22x22/mimetypes/pdf.png -share/icons/crystalsvg/22x22/mimetypes/pk.png -share/icons/crystalsvg/22x22/mimetypes/postscript.png -share/icons/crystalsvg/22x22/mimetypes/quicktime.png -share/icons/crystalsvg/22x22/mimetypes/readme.png -share/icons/crystalsvg/22x22/mimetypes/recycled.png -share/icons/crystalsvg/22x22/mimetypes/rpm.png -share/icons/crystalsvg/22x22/mimetypes/shellscript.png -share/icons/crystalsvg/22x22/mimetypes/soffice.png -share/icons/crystalsvg/22x22/mimetypes/sound.png -share/icons/crystalsvg/22x22/mimetypes/source.png -share/icons/crystalsvg/22x22/mimetypes/source_c.png -share/icons/crystalsvg/22x22/mimetypes/source_cpp.png -share/icons/crystalsvg/22x22/mimetypes/source_f.png -share/icons/crystalsvg/22x22/mimetypes/source_h.png -share/icons/crystalsvg/22x22/mimetypes/source_j.png -share/icons/crystalsvg/22x22/mimetypes/source_java.png -share/icons/crystalsvg/22x22/mimetypes/source_l.png -share/icons/crystalsvg/22x22/mimetypes/source_moc.png -share/icons/crystalsvg/22x22/mimetypes/source_o.png -share/icons/crystalsvg/22x22/mimetypes/source_p.png -share/icons/crystalsvg/22x22/mimetypes/source_pl.png -share/icons/crystalsvg/22x22/mimetypes/source_py.png -share/icons/crystalsvg/22x22/mimetypes/source_s.png -share/icons/crystalsvg/22x22/mimetypes/source_y.png -share/icons/crystalsvg/22x22/mimetypes/spreadsheet.png -share/icons/crystalsvg/22x22/mimetypes/superkaramba_theme.png -share/icons/crystalsvg/22x22/mimetypes/tar.png -share/icons/crystalsvg/22x22/mimetypes/tex.png -share/icons/crystalsvg/22x22/mimetypes/tgz.png -share/icons/crystalsvg/22x22/mimetypes/txt.png -share/icons/crystalsvg/22x22/mimetypes/txt2.png -share/icons/crystalsvg/22x22/mimetypes/umbrellofile.png -share/icons/crystalsvg/22x22/mimetypes/unknown.png -share/icons/crystalsvg/22x22/mimetypes/vcalendar.png -share/icons/crystalsvg/22x22/mimetypes/vcard.png -share/icons/crystalsvg/22x22/mimetypes/vectorgfx.png -share/icons/crystalsvg/22x22/mimetypes/video.png -share/icons/crystalsvg/22x22/mimetypes/widget_doc.png -share/icons/crystalsvg/22x22/mimetypes/wordprocessing.png -share/icons/crystalsvg/22x22/mimetypes/zip.png -share/icons/crystalsvg/32x32/actions/1day.png -share/icons/crystalsvg/32x32/actions/5days.png -share/icons/crystalsvg/32x32/actions/7days.png -share/icons/crystalsvg/32x32/actions/about_kde.png -share/icons/crystalsvg/32x32/actions/account_offline_overlay.png -share/icons/crystalsvg/32x32/actions/add_user.png -share/icons/crystalsvg/32x32/actions/altkey.png -share/icons/crystalsvg/32x32/actions/application-exit.png -share/icons/crystalsvg/32x32/actions/appointment-new.png -share/icons/crystalsvg/32x32/actions/ark_adddir.png -share/icons/crystalsvg/32x32/actions/ark_addfile.png -share/icons/crystalsvg/32x32/actions/ark_delete.png -share/icons/crystalsvg/32x32/actions/ark_extract.png -share/icons/crystalsvg/32x32/actions/ark_view.png -share/icons/crystalsvg/32x32/actions/atlantik_buy_estate.png -share/icons/crystalsvg/32x32/actions/attach.png -share/icons/crystalsvg/32x32/actions/auction.png -share/icons/crystalsvg/32x32/actions/blend.png -share/icons/crystalsvg/32x32/actions/bookmark-new.png -share/icons/crystalsvg/32x32/actions/bookmark.png -share/icons/crystalsvg/32x32/actions/bookmark_folder.png -share/icons/crystalsvg/32x32/actions/bookmark_toolbar.png -share/icons/crystalsvg/32x32/actions/bookmarks_list_add.png -share/icons/crystalsvg/32x32/actions/bug.png -share/icons/crystalsvg/32x32/actions/button_ok.png -share/icons/crystalsvg/32x32/actions/calculate.png -share/icons/crystalsvg/32x32/actions/capskey.png -share/icons/crystalsvg/32x32/actions/centrejust.png -share/icons/crystalsvg/32x32/actions/charset.png -share/icons/crystalsvg/32x32/actions/chemical.png -share/icons/crystalsvg/32x32/actions/clear_left.png -share/icons/crystalsvg/32x32/actions/colorize.png -share/icons/crystalsvg/32x32/actions/colorpicker.png -share/icons/crystalsvg/32x32/actions/compfile.png -share/icons/crystalsvg/32x32/actions/configure.png -share/icons/crystalsvg/32x32/actions/connect_creating.png -share/icons/crystalsvg/32x32/actions/connect_established.png -share/icons/crystalsvg/32x32/actions/connect_no.png -share/icons/crystalsvg/32x32/actions/contact-new.png -share/icons/crystalsvg/32x32/actions/contents.png -share/icons/crystalsvg/32x32/actions/contents2.png -share/icons/crystalsvg/32x32/actions/contexthelp.png -share/icons/crystalsvg/32x32/actions/controlkey.png -share/icons/crystalsvg/32x32/actions/decrypted.png -share/icons/crystalsvg/32x32/actions/define_clip.png -share/icons/crystalsvg/32x32/actions/delete_user.png -share/icons/crystalsvg/32x32/actions/dialog-cancel.png -share/icons/crystalsvg/32x32/actions/dialog-close.png -share/icons/crystalsvg/32x32/actions/dialog-ok.png -share/icons/crystalsvg/32x32/actions/disablefont.png -share/icons/crystalsvg/32x32/actions/document-new.png -share/icons/crystalsvg/32x32/actions/document-open.png -share/icons/crystalsvg/32x32/actions/document-print-preview.png -share/icons/crystalsvg/32x32/actions/document-print.png -share/icons/crystalsvg/32x32/actions/document-revert.png -share/icons/crystalsvg/32x32/actions/document-save-as.png -share/icons/crystalsvg/32x32/actions/document-save.png -share/icons/crystalsvg/32x32/actions/edit-clear.png -share/icons/crystalsvg/32x32/actions/edit-copy.png -share/icons/crystalsvg/32x32/actions/edit-cut.png -share/icons/crystalsvg/32x32/actions/edit-delete.png -share/icons/crystalsvg/32x32/actions/edit-find.png -share/icons/crystalsvg/32x32/actions/edit-paste.png -share/icons/crystalsvg/32x32/actions/edit-redo.png -share/icons/crystalsvg/32x32/actions/edit-undo.png -share/icons/crystalsvg/32x32/actions/edit.png -share/icons/crystalsvg/32x32/actions/edit_user.png -share/icons/crystalsvg/32x32/actions/editshred.png -share/icons/crystalsvg/32x32/actions/edittrash.png -share/icons/crystalsvg/32x32/actions/elempic.png -share/icons/crystalsvg/32x32/actions/emptytrash.png -share/icons/crystalsvg/32x32/actions/enablefont.png -share/icons/crystalsvg/32x32/actions/encrypted.png -share/icons/crystalsvg/32x32/actions/endturn.png -share/icons/crystalsvg/32x32/actions/energies.png -share/icons/crystalsvg/32x32/actions/eqchem.png -share/icons/crystalsvg/32x32/actions/eraser.png -share/icons/crystalsvg/32x32/actions/exec.png -share/icons/crystalsvg/32x32/actions/filefind.png -share/icons/crystalsvg/32x32/actions/fileimport.png -share/icons/crystalsvg/32x32/actions/filter.png -share/icons/crystalsvg/32x32/actions/folder-new.png -share/icons/crystalsvg/32x32/actions/fonts.png -share/icons/crystalsvg/32x32/actions/format-indent-less.png -share/icons/crystalsvg/32x32/actions/format-indent-more.png -share/icons/crystalsvg/32x32/actions/format-justify-center.png -share/icons/crystalsvg/32x32/actions/format-justify-fill.png -share/icons/crystalsvg/32x32/actions/format-justify-left.png -share/icons/crystalsvg/32x32/actions/format-justify-right.png -share/icons/crystalsvg/32x32/actions/format-text-bold.png -share/icons/crystalsvg/32x32/actions/format-text-italic.png -share/icons/crystalsvg/32x32/actions/format-text-strikethrough.png -share/icons/crystalsvg/32x32/actions/format-text-underline.png -share/icons/crystalsvg/32x32/actions/frameprint.png -share/icons/crystalsvg/32x32/actions/gear.png -share/icons/crystalsvg/32x32/actions/glossary.png -share/icons/crystalsvg/32x32/actions/go-bottom.png -share/icons/crystalsvg/32x32/actions/go-down.png -share/icons/crystalsvg/32x32/actions/go-first.png -share/icons/crystalsvg/32x32/actions/go-home.png -share/icons/crystalsvg/32x32/actions/go-jump-locationbar.png -share/icons/crystalsvg/32x32/actions/go-last.png -share/icons/crystalsvg/32x32/actions/go-next-document.png -share/icons/crystalsvg/32x32/actions/go-next.png -share/icons/crystalsvg/32x32/actions/go-previous-document.png -share/icons/crystalsvg/32x32/actions/go-previous.png -share/icons/crystalsvg/32x32/actions/go-top.png -share/icons/crystalsvg/32x32/actions/go-up.png -share/icons/crystalsvg/32x32/actions/goto.png -share/icons/crystalsvg/32x32/actions/halfencrypted.png -share/icons/crystalsvg/32x32/actions/help.png -share/icons/crystalsvg/32x32/actions/highlighting.png -share/icons/crystalsvg/32x32/actions/highscore.png -share/icons/crystalsvg/32x32/actions/homepage.png -share/icons/crystalsvg/32x32/actions/hotsync.png -share/icons/crystalsvg/32x32/actions/hyperkey.png -share/icons/crystalsvg/32x32/actions/images_display.png -share/icons/crystalsvg/32x32/actions/isotopemap.png -share/icons/crystalsvg/32x32/actions/jail_pay.png -share/icons/crystalsvg/32x32/actions/journal.png -share/icons/crystalsvg/32x32/actions/kalzium_molviewer.png -share/icons/crystalsvg/32x32/actions/kalzium_rs.png -share/icons/crystalsvg/32x32/actions/kalzium_tables.png -share/icons/crystalsvg/32x32/actions/kbruch_exercise_common.png -share/icons/crystalsvg/32x32/actions/kbruch_exercise_compare.png -share/icons/crystalsvg/32x32/actions/kbruch_exercise_conversion.png -share/icons/crystalsvg/32x32/actions/kbruch_exercise_factorisation.png -share/icons/crystalsvg/32x32/actions/kbstate_mouse.png -share/icons/crystalsvg/32x32/actions/kbstate_mouse_left.png -share/icons/crystalsvg/32x32/actions/kbstate_mouse_left_selected.png -share/icons/crystalsvg/32x32/actions/kbstate_mouse_mid.png -share/icons/crystalsvg/32x32/actions/kbstate_mouse_mid_selected.png -share/icons/crystalsvg/32x32/actions/kbstate_mouse_right.png -share/icons/crystalsvg/32x32/actions/kbstate_mouse_right_selected.png -share/icons/crystalsvg/32x32/actions/kbstate_slowkeys.png -share/icons/crystalsvg/32x32/actions/kbstate_stickykeys.png -share/icons/crystalsvg/32x32/actions/kde.png -share/icons/crystalsvg/32x32/actions/kdeprint_inklevel.png -share/icons/crystalsvg/32x32/actions/kdevelop_down.png -share/icons/crystalsvg/32x32/actions/key.png -share/icons/crystalsvg/32x32/actions/keypressno.png -share/icons/crystalsvg/32x32/actions/keypressok.png -share/icons/crystalsvg/32x32/actions/klettres_desert.png -share/icons/crystalsvg/32x32/actions/klettres_grownup.png -share/icons/crystalsvg/32x32/actions/klettres_kids.png -share/icons/crystalsvg/32x32/actions/kmgroupware_folder_calendar.png -share/icons/crystalsvg/32x32/actions/kmgroupware_folder_tasks.png -share/icons/crystalsvg/32x32/actions/knewstuff.png -share/icons/crystalsvg/32x32/actions/konsoleblue.png -share/icons/crystalsvg/32x32/actions/konsolered.png -share/icons/crystalsvg/32x32/actions/kontact_contacts.png -share/icons/crystalsvg/32x32/actions/kontact_date.png -share/icons/crystalsvg/32x32/actions/kontact_journal.png -share/icons/crystalsvg/32x32/actions/kontact_mail.png -share/icons/crystalsvg/32x32/actions/kontact_news.png -share/icons/crystalsvg/32x32/actions/kontact_notes.png -share/icons/crystalsvg/32x32/actions/kontact_summary.png -share/icons/crystalsvg/32x32/actions/kontact_summary_green.png -share/icons/crystalsvg/32x32/actions/kontact_todo.png -share/icons/crystalsvg/32x32/actions/kopeteavailable.png -share/icons/crystalsvg/32x32/actions/kopeteaway.png -share/icons/crystalsvg/32x32/actions/kopeteeditstatusmessage.png -share/icons/crystalsvg/32x32/actions/kstars_geo.png -share/icons/crystalsvg/32x32/actions/lastmoves.png -share/icons/crystalsvg/32x32/actions/launch.png -share/icons/crystalsvg/32x32/actions/leftjust.png -share/icons/crystalsvg/32x32/actions/legalmoves.png -share/icons/crystalsvg/32x32/actions/legend.png -share/icons/crystalsvg/32x32/actions/list-add.png -share/icons/crystalsvg/32x32/actions/list-remove.png -share/icons/crystalsvg/32x32/actions/list.png -share/icons/crystalsvg/32x32/actions/locationbar_erase.png -share/icons/crystalsvg/32x32/actions/lockkey.png -share/icons/crystalsvg/32x32/actions/logging.png -share/icons/crystalsvg/32x32/actions/mail-forward.png -share/icons/crystalsvg/32x32/actions/mail-mark-junk.png -share/icons/crystalsvg/32x32/actions/mail-message-new.png -share/icons/crystalsvg/32x32/actions/mail-reply-all.png -share/icons/crystalsvg/32x32/actions/mail-reply-sender.png -share/icons/crystalsvg/32x32/actions/mail-send.png -share/icons/crystalsvg/32x32/actions/mail_delete.png -share/icons/crystalsvg/32x32/actions/mail_find.png -share/icons/crystalsvg/32x32/actions/mail_generic.png -share/icons/crystalsvg/32x32/actions/mail_get.png -share/icons/crystalsvg/32x32/actions/mail_get_all.png -share/icons/crystalsvg/32x32/actions/mail_ham.png -share/icons/crystalsvg/32x32/actions/mail_ignore.png -share/icons/crystalsvg/32x32/actions/mail_post_to.png -share/icons/crystalsvg/32x32/actions/mail_replylist.png -share/icons/crystalsvg/32x32/actions/make_kdevelop.png -share/icons/crystalsvg/32x32/actions/math_abs.png -share/icons/crystalsvg/32x32/actions/math_brace.png -share/icons/crystalsvg/32x32/actions/math_brackets.png -share/icons/crystalsvg/32x32/actions/math_frac.png -share/icons/crystalsvg/32x32/actions/math_int.png -share/icons/crystalsvg/32x32/actions/math_lsub.png -share/icons/crystalsvg/32x32/actions/math_lsup.png -share/icons/crystalsvg/32x32/actions/math_matrix.png -share/icons/crystalsvg/32x32/actions/math_onetwomatrix.png -share/icons/crystalsvg/32x32/actions/math_paren.png -share/icons/crystalsvg/32x32/actions/math_prod.png -share/icons/crystalsvg/32x32/actions/math_rsub.png -share/icons/crystalsvg/32x32/actions/math_rsup.png -share/icons/crystalsvg/32x32/actions/math_sqrt.png -share/icons/crystalsvg/32x32/actions/math_sum.png -share/icons/crystalsvg/32x32/actions/media-eject.png -share/icons/crystalsvg/32x32/actions/media-playback-pause.png -share/icons/crystalsvg/32x32/actions/media-playback-start.png -share/icons/crystalsvg/32x32/actions/media-playback-stop.png -share/icons/crystalsvg/32x32/actions/media-seek-backward.png -share/icons/crystalsvg/32x32/actions/media-seek-forward.png -share/icons/crystalsvg/32x32/actions/media-skip-backward.png -share/icons/crystalsvg/32x32/actions/media-skip-forward.png -share/icons/crystalsvg/32x32/actions/menu_new.png -share/icons/crystalsvg/32x32/actions/menu_new_sep.png -share/icons/crystalsvg/32x32/actions/message_reply.png -share/icons/crystalsvg/32x32/actions/messagebox_critical.png -share/icons/crystalsvg/32x32/actions/messagebox_info.png -share/icons/crystalsvg/32x32/actions/messagebox_warning.png -share/icons/crystalsvg/32x32/actions/metacontact_unknown.png -share/icons/crystalsvg/32x32/actions/metakey.png -share/icons/crystalsvg/32x32/actions/minitools.png -share/icons/crystalsvg/32x32/actions/misc.png -share/icons/crystalsvg/32x32/actions/monop_board.png -share/icons/crystalsvg/32x32/actions/month.png -share/icons/crystalsvg/32x32/actions/mouse.png -share/icons/crystalsvg/32x32/actions/music_32ndnote.png -share/icons/crystalsvg/32x32/actions/music_cleficon.png -share/icons/crystalsvg/32x32/actions/music_cross.png -share/icons/crystalsvg/32x32/actions/music_dottednote.png -share/icons/crystalsvg/32x32/actions/music_eightnote.png -share/icons/crystalsvg/32x32/actions/music_fermatenote.png -share/icons/crystalsvg/32x32/actions/music_flat.png -share/icons/crystalsvg/32x32/actions/music_fullnote.png -share/icons/crystalsvg/32x32/actions/music_halfnote.png -share/icons/crystalsvg/32x32/actions/music_natur.png -share/icons/crystalsvg/32x32/actions/music_quarternote.png -share/icons/crystalsvg/32x32/actions/music_sixteenthnote.png -share/icons/crystalsvg/32x32/actions/newfont.png -share/icons/crystalsvg/32x32/actions/newmsg.png -share/icons/crystalsvg/32x32/actions/noatun_equalizer.png -share/icons/crystalsvg/32x32/actions/noatun_playlist.png -share/icons/crystalsvg/32x32/actions/numbers.png -share/icons/crystalsvg/32x32/actions/object-rotate-left.png -share/icons/crystalsvg/32x32/actions/object-rotate-right.png -share/icons/crystalsvg/32x32/actions/online_status.png -share/icons/crystalsvg/32x32/actions/openterm.png -share/icons/crystalsvg/32x32/actions/opentermblue.png -share/icons/crystalsvg/32x32/actions/opentermred.png -share/icons/crystalsvg/32x32/actions/orbits.png -share/icons/crystalsvg/32x32/actions/overview.png -share/icons/crystalsvg/32x32/actions/piano.png -share/icons/crystalsvg/32x32/actions/player_playlist.png -share/icons/crystalsvg/32x32/actions/plot.png -share/icons/crystalsvg/32x32/actions/power.png -share/icons/crystalsvg/32x32/actions/presence_away.png -share/icons/crystalsvg/32x32/actions/presence_offline.png -share/icons/crystalsvg/32x32/actions/presence_online.png -share/icons/crystalsvg/32x32/actions/presence_unknown.png -share/icons/crystalsvg/32x32/actions/process-stop.png -share/icons/crystalsvg/32x32/actions/project_open.png -share/icons/crystalsvg/32x32/actions/queue.png -share/icons/crystalsvg/32x32/actions/rebuild.png -share/icons/crystalsvg/32x32/actions/reload_all_tabs.png -share/icons/crystalsvg/32x32/actions/reload_page.png -share/icons/crystalsvg/32x32/actions/rightjust.png -share/icons/crystalsvg/32x32/actions/roll.png -share/icons/crystalsvg/32x32/actions/rotate.png -share/icons/crystalsvg/32x32/actions/rss_tag.png -share/icons/crystalsvg/32x32/actions/save_all.png -share/icons/crystalsvg/32x32/actions/search_user.png -share/icons/crystalsvg/32x32/actions/share.png -share/icons/crystalsvg/32x32/actions/shiftkey.png -share/icons/crystalsvg/32x32/actions/show_offliners.png -share/icons/crystalsvg/32x32/actions/show_side_panel.png -share/icons/crystalsvg/32x32/actions/sidebar.png -share/icons/crystalsvg/32x32/actions/signature.png -share/icons/crystalsvg/32x32/actions/spectrum.png -share/icons/crystalsvg/32x32/actions/spnewgame.png -share/icons/crystalsvg/32x32/actions/spnewround.png -share/icons/crystalsvg/32x32/actions/sppausegame.png -share/icons/crystalsvg/32x32/actions/statematter.png -share/icons/crystalsvg/32x32/actions/superkey.png -share/icons/crystalsvg/32x32/actions/svn_add.png -share/icons/crystalsvg/32x32/actions/svn_branch.png -share/icons/crystalsvg/32x32/actions/svn_merge.png -share/icons/crystalsvg/32x32/actions/svn_remove.png -share/icons/crystalsvg/32x32/actions/svn_status.png -share/icons/crystalsvg/32x32/actions/svn_switch.png -share/icons/crystalsvg/32x32/actions/switchuser.png -share/icons/crystalsvg/32x32/actions/system-lock-screen.png -share/icons/crystalsvg/32x32/actions/system-run.png -share/icons/crystalsvg/32x32/actions/text_sub.png -share/icons/crystalsvg/32x32/actions/text_super.png -share/icons/crystalsvg/32x32/actions/timeline.png -share/icons/crystalsvg/32x32/actions/today.png -share/icons/crystalsvg/32x32/actions/todo.png -share/icons/crystalsvg/32x32/actions/toggle_log.png -share/icons/crystalsvg/32x32/actions/tools-check-spelling.png -share/icons/crystalsvg/32x32/actions/tooltip.png -share/icons/crystalsvg/32x32/actions/transfers_list.png -share/icons/crystalsvg/32x32/actions/unlatched.png -share/icons/crystalsvg/32x32/actions/unlock.png -share/icons/crystalsvg/32x32/actions/vcs_add.png -share/icons/crystalsvg/32x32/actions/vcs_commit.png -share/icons/crystalsvg/32x32/actions/vcs_diff.png -share/icons/crystalsvg/32x32/actions/vcs_remove.png -share/icons/crystalsvg/32x32/actions/vcs_status.png -share/icons/crystalsvg/32x32/actions/vcs_update.png -share/icons/crystalsvg/32x32/actions/view-close.png -share/icons/crystalsvg/32x32/actions/view-fit-height.png -share/icons/crystalsvg/32x32/actions/view-fit-width.png -share/icons/crystalsvg/32x32/actions/view-fit-window.png -share/icons/crystalsvg/32x32/actions/view-fullscreen.png -share/icons/crystalsvg/32x32/actions/view-pim-calendar.png -share/icons/crystalsvg/32x32/actions/view-pim-contacts.png -share/icons/crystalsvg/32x32/actions/view-pim-journal.png -share/icons/crystalsvg/32x32/actions/view-pim-mail.png -share/icons/crystalsvg/32x32/actions/view-pim-news.png -share/icons/crystalsvg/32x32/actions/view-pim-notes.png -share/icons/crystalsvg/32x32/actions/view-pim-summary.png -share/icons/crystalsvg/32x32/actions/view-pim-tasks.png -share/icons/crystalsvg/32x32/actions/view-refresh.png -share/icons/crystalsvg/32x32/actions/view-restore.png -share/icons/crystalsvg/32x32/actions/view.png -share/icons/crystalsvg/32x32/actions/view_bottom.png -share/icons/crystalsvg/32x32/actions/view_choose.png -share/icons/crystalsvg/32x32/actions/view_detailed.png -share/icons/crystalsvg/32x32/actions/view_icon.png -share/icons/crystalsvg/32x32/actions/view_left_right.png -share/icons/crystalsvg/32x32/actions/view_multicolumn.png -share/icons/crystalsvg/32x32/actions/view_right.png -share/icons/crystalsvg/32x32/actions/view_sidetree.png -share/icons/crystalsvg/32x32/actions/view_text.png -share/icons/crystalsvg/32x32/actions/view_top_bottom.png -share/icons/crystalsvg/32x32/actions/view_tree.png -share/icons/crystalsvg/32x32/actions/voicecall.png -share/icons/crystalsvg/32x32/actions/volume.png -share/icons/crystalsvg/32x32/actions/webcamreceive.png -share/icons/crystalsvg/32x32/actions/webcamsend.png -share/icons/crystalsvg/32x32/actions/window-new.png -share/icons/crystalsvg/32x32/actions/window_duplicate.png -share/icons/crystalsvg/32x32/actions/wizard.png -share/icons/crystalsvg/32x32/actions/xdays.png -share/icons/crystalsvg/32x32/actions/yahoo_stealthed.png -share/icons/crystalsvg/32x32/actions/zoom-best-fit.png -share/icons/crystalsvg/32x32/actions/zoom-in.png -share/icons/crystalsvg/32x32/actions/zoom-original.png -share/icons/crystalsvg/32x32/actions/zoom-out.png -share/icons/crystalsvg/32x32/actions/zoom.png -share/icons/crystalsvg/32x32/apps/access.png -share/icons/crystalsvg/32x32/apps/agent.png -share/icons/crystalsvg/32x32/apps/aim_protocol.png -share/icons/crystalsvg/32x32/apps/akregator.png -share/icons/crystalsvg/32x32/apps/amor.png -share/icons/crystalsvg/32x32/apps/app.png -share/icons/crystalsvg/32x32/apps/ark.png -share/icons/crystalsvg/32x32/apps/arts.png -share/icons/crystalsvg/32x32/apps/atlantik.png -share/icons/crystalsvg/32x32/apps/atlantikdesigner.png -share/icons/crystalsvg/32x32/apps/autoreplace.png -share/icons/crystalsvg/32x32/apps/background.png -share/icons/crystalsvg/32x32/apps/bell.png -share/icons/crystalsvg/32x32/apps/blinken.png -share/icons/crystalsvg/32x32/apps/cache.png -share/icons/crystalsvg/32x32/apps/catalogmanager.png -share/icons/crystalsvg/32x32/apps/cervisia.png -share/icons/crystalsvg/32x32/apps/clock.png -share/icons/crystalsvg/32x32/apps/colors.png -share/icons/crystalsvg/32x32/apps/cookie.png -share/icons/crystalsvg/32x32/apps/date.png -share/icons/crystalsvg/32x32/apps/edu_languages.png -share/icons/crystalsvg/32x32/apps/edu_mathematics.png -share/icons/crystalsvg/32x32/apps/edu_miscellaneous.png -share/icons/crystalsvg/32x32/apps/edu_science.png -share/icons/crystalsvg/32x32/apps/email.png -share/icons/crystalsvg/32x32/apps/energy_star.png -share/icons/crystalsvg/32x32/apps/enhanced_browsing.png -share/icons/crystalsvg/32x32/apps/fifteenpieces.png -share/icons/crystalsvg/32x32/apps/filetypes.png -share/icons/crystalsvg/32x32/apps/fonts.png -share/icons/crystalsvg/32x32/apps/fsview.png -share/icons/crystalsvg/32x32/apps/gadu_protocol.png -share/icons/crystalsvg/32x32/apps/gpg.png -share/icons/crystalsvg/32x32/apps/gpgsm.png -share/icons/crystalsvg/32x32/apps/groupwise_protocol.png -share/icons/crystalsvg/32x32/apps/gstreamerlogo.png -share/icons/crystalsvg/32x32/apps/help_index.png -share/icons/crystalsvg/32x32/apps/highlight.png -share/icons/crystalsvg/32x32/apps/hwinfo.png -share/icons/crystalsvg/32x32/apps/icons.png -share/icons/crystalsvg/32x32/apps/icq_protocol.png -share/icons/crystalsvg/32x32/apps/ieee1394.png -share/icons/crystalsvg/32x32/apps/input_devices_settings.png -share/icons/crystalsvg/32x32/apps/irc_protocol.png -share/icons/crystalsvg/32x32/apps/irkick.png -share/icons/crystalsvg/32x32/apps/jabber_protocol.png -share/icons/crystalsvg/32x32/apps/juk.png -share/icons/crystalsvg/32x32/apps/kaboodle.png -share/icons/crystalsvg/32x32/apps/kaddressbook.png -share/icons/crystalsvg/32x32/apps/kalarm.png -share/icons/crystalsvg/32x32/apps/kalzium.png -share/icons/crystalsvg/32x32/apps/kanagram.png -share/icons/crystalsvg/32x32/apps/karm.png -share/icons/crystalsvg/32x32/apps/kasteroids.png -share/icons/crystalsvg/32x32/apps/kate.png -share/icons/crystalsvg/32x32/apps/katomic.png -share/icons/crystalsvg/32x32/apps/kaudiocreator.png -share/icons/crystalsvg/32x32/apps/kbabel.png -share/icons/crystalsvg/32x32/apps/kbabeldict.png -share/icons/crystalsvg/32x32/apps/kbackgammon.png -share/icons/crystalsvg/32x32/apps/kbackgammon_engine.png -share/icons/crystalsvg/32x32/apps/kbinaryclock.png -share/icons/crystalsvg/32x32/apps/kblackbox.png -share/icons/crystalsvg/32x32/apps/kbounce.png -share/icons/crystalsvg/32x32/apps/kbruch.png -share/icons/crystalsvg/32x32/apps/kbugbuster.png -share/icons/crystalsvg/32x32/apps/kcachegrind.png -share/icons/crystalsvg/32x32/apps/kcalc.png -share/icons/crystalsvg/32x32/apps/kcharselect.png -share/icons/crystalsvg/32x32/apps/kcmdevices.png -share/icons/crystalsvg/32x32/apps/kcmdf.png -share/icons/crystalsvg/32x32/apps/kcmkicker.png -share/icons/crystalsvg/32x32/apps/kcmkwm.png -share/icons/crystalsvg/32x32/apps/kcmmemory.png -share/icons/crystalsvg/32x32/apps/kcmpartitions.png -share/icons/crystalsvg/32x32/apps/kcmpci.png -share/icons/crystalsvg/32x32/apps/kcmprocessor.png -share/icons/crystalsvg/32x32/apps/kcmscsi.png -share/icons/crystalsvg/32x32/apps/kcmsound.png -share/icons/crystalsvg/32x32/apps/kcmsystem.png -share/icons/crystalsvg/32x32/apps/kcmx.png -share/icons/crystalsvg/32x32/apps/kcoloredit.png -share/icons/crystalsvg/32x32/apps/kcontrol.png -share/icons/crystalsvg/32x32/apps/kcron.png -share/icons/crystalsvg/32x32/apps/kdat.png -share/icons/crystalsvg/32x32/apps/kdat_backup.png -share/icons/crystalsvg/32x32/apps/kdat_restore.png -share/icons/crystalsvg/32x32/apps/kdat_verify.png -share/icons/crystalsvg/32x32/apps/kdeprint_printer.png -share/icons/crystalsvg/32x32/apps/kdeprint_printer_class.png -share/icons/crystalsvg/32x32/apps/kdeprint_printer_class_process.png -share/icons/crystalsvg/32x32/apps/kdeprint_printer_class_stopped.png -share/icons/crystalsvg/32x32/apps/kdeprint_printer_defect.png -share/icons/crystalsvg/32x32/apps/kdeprint_printer_process.png -share/icons/crystalsvg/32x32/apps/kdeprint_printer_remote.png -share/icons/crystalsvg/32x32/apps/kdeprint_printer_remote_process.png -share/icons/crystalsvg/32x32/apps/kdeprint_printer_remote_stopped.png -share/icons/crystalsvg/32x32/apps/kdeprint_printer_stopped.png -share/icons/crystalsvg/32x32/apps/kdeprint_printer_users.png -share/icons/crystalsvg/32x32/apps/kdeprintfax.png -share/icons/crystalsvg/32x32/apps/kdevassistant.png -share/icons/crystalsvg/32x32/apps/kdevdesigner.png -share/icons/crystalsvg/32x32/apps/kdevelop.png -share/icons/crystalsvg/32x32/apps/kdf.png -share/icons/crystalsvg/32x32/apps/kdict.png -share/icons/crystalsvg/32x32/apps/kdisknav.png -share/icons/crystalsvg/32x32/apps/kdmconfig.png -share/icons/crystalsvg/32x32/apps/kdvi.png -share/icons/crystalsvg/32x32/apps/keditbookmarks.png -share/icons/crystalsvg/32x32/apps/kenolaba.png -share/icons/crystalsvg/32x32/apps/key_bindings.png -share/icons/crystalsvg/32x32/apps/keyboard.png -share/icons/crystalsvg/32x32/apps/keyboard_layout.png -share/icons/crystalsvg/32x32/apps/kfax.png -share/icons/crystalsvg/32x32/apps/kfaxview.png -share/icons/crystalsvg/32x32/apps/kfilereplace.png -share/icons/crystalsvg/32x32/apps/kfind.png -share/icons/crystalsvg/32x32/apps/kfloppy.png -share/icons/crystalsvg/32x32/apps/kfm.png -share/icons/crystalsvg/32x32/apps/kfontview.png -share/icons/crystalsvg/32x32/apps/kfouleggs.png -share/icons/crystalsvg/32x32/apps/kgamma.png -share/icons/crystalsvg/32x32/apps/kgeography.png -share/icons/crystalsvg/32x32/apps/kget.png -share/icons/crystalsvg/32x32/apps/kghostview.png -share/icons/crystalsvg/32x32/apps/kgoldrunner.png -share/icons/crystalsvg/32x32/apps/kgpg.png -share/icons/crystalsvg/32x32/apps/khangman.png -share/icons/crystalsvg/32x32/apps/khelpcenter.png -share/icons/crystalsvg/32x32/apps/khexedit.png -share/icons/crystalsvg/32x32/apps/khotkeys.png -share/icons/crystalsvg/32x32/apps/kiconedit.png -share/icons/crystalsvg/32x32/apps/kig.png -share/icons/crystalsvg/32x32/apps/kimagemapeditor.png -share/icons/crystalsvg/32x32/apps/kiriki.png -share/icons/crystalsvg/32x32/apps/kitchensync.png -share/icons/crystalsvg/32x32/apps/kiten.png -share/icons/crystalsvg/32x32/apps/kjobviewer.png -share/icons/crystalsvg/32x32/apps/kjots.png -share/icons/crystalsvg/32x32/apps/kjumpingcube.png -share/icons/crystalsvg/32x32/apps/klatin.png -share/icons/crystalsvg/32x32/apps/klettres.png -share/icons/crystalsvg/32x32/apps/klickety.png -share/icons/crystalsvg/32x32/apps/klines.png -share/icons/crystalsvg/32x32/apps/klinkstatus.png -share/icons/crystalsvg/32x32/apps/klipper.png -share/icons/crystalsvg/32x32/apps/kmag.png -share/icons/crystalsvg/32x32/apps/kmahjongg.png -share/icons/crystalsvg/32x32/apps/kmail.png -share/icons/crystalsvg/32x32/apps/kmailcvt.png -share/icons/crystalsvg/32x32/apps/kmaillight.png -share/icons/crystalsvg/32x32/apps/kmenu.png -share/icons/crystalsvg/32x32/apps/kmenuedit.png -share/icons/crystalsvg/32x32/apps/kmid.png -share/icons/crystalsvg/32x32/apps/kmines.png -share/icons/crystalsvg/32x32/apps/kmix.png -share/icons/crystalsvg/32x32/apps/kmoon.png -share/icons/crystalsvg/32x32/apps/kmousetool.png -share/icons/crystalsvg/32x32/apps/kmouth.png -share/icons/crystalsvg/32x32/apps/kmplot.png -share/icons/crystalsvg/32x32/apps/knetattach.png -share/icons/crystalsvg/32x32/apps/knetwalk.png -share/icons/crystalsvg/32x32/apps/knetworkconf.png -share/icons/crystalsvg/32x32/apps/knewsticker.png -share/icons/crystalsvg/32x32/apps/knode.png -share/icons/crystalsvg/32x32/apps/knode2.png -share/icons/crystalsvg/32x32/apps/knotes.png -share/icons/crystalsvg/32x32/apps/knotify.png -share/icons/crystalsvg/32x32/apps/kolf.png -share/icons/crystalsvg/32x32/apps/kolourpaint.png -share/icons/crystalsvg/32x32/apps/kompare.png -share/icons/crystalsvg/32x32/apps/konqsidebar_mediaplayer.png -share/icons/crystalsvg/32x32/apps/konqueror.png -share/icons/crystalsvg/32x32/apps/konquest.png -share/icons/crystalsvg/32x32/apps/konsole.png -share/icons/crystalsvg/32x32/apps/konsolekalendar.png -share/icons/crystalsvg/32x32/apps/kontact.png -share/icons/crystalsvg/32x32/apps/kopete.png -share/icons/crystalsvg/32x32/apps/kopete_avdevice.png -share/icons/crystalsvg/32x32/apps/korganizer.png -share/icons/crystalsvg/32x32/apps/korn.png -share/icons/crystalsvg/32x32/apps/kpackage.png -share/icons/crystalsvg/32x32/apps/kpager.png -share/icons/crystalsvg/32x32/apps/kpalmdoc.png -share/icons/crystalsvg/32x32/apps/kpat.png -share/icons/crystalsvg/32x32/apps/kpercentage.png -share/icons/crystalsvg/32x32/apps/kpf.png -share/icons/crystalsvg/32x32/apps/kpoker.png -share/icons/crystalsvg/32x32/apps/kpovmodeler.png -share/icons/crystalsvg/32x32/apps/kppp.png -share/icons/crystalsvg/32x32/apps/krdc.png -share/icons/crystalsvg/32x32/apps/kregexpeditor.png -share/icons/crystalsvg/32x32/apps/kreversi.png -share/icons/crystalsvg/32x32/apps/krfb.png -share/icons/crystalsvg/32x32/apps/kruler.png -share/icons/crystalsvg/32x32/apps/ksame.png -share/icons/crystalsvg/32x32/apps/ksayit.png -share/icons/crystalsvg/32x32/apps/ksayit_clipempty.png -share/icons/crystalsvg/32x32/apps/ksayit_talking.png -share/icons/crystalsvg/32x32/apps/kscd.png -share/icons/crystalsvg/32x32/apps/kscreensaver.png -share/icons/crystalsvg/32x32/apps/ksig.png -share/icons/crystalsvg/32x32/apps/ksim.png -share/icons/crystalsvg/32x32/apps/ksirtet.png -share/icons/crystalsvg/32x32/apps/ksnake.png -share/icons/crystalsvg/32x32/apps/ksnapshot.png -share/icons/crystalsvg/32x32/apps/ksokoban.png -share/icons/crystalsvg/32x32/apps/kspaceduel.png -share/icons/crystalsvg/32x32/apps/ksplash.png -share/icons/crystalsvg/32x32/apps/ksquares.png -share/icons/crystalsvg/32x32/apps/kstars.png -share/icons/crystalsvg/32x32/apps/ksysguard.png -share/icons/crystalsvg/32x32/apps/ksysv.png -share/icons/crystalsvg/32x32/apps/kteatime.png -share/icons/crystalsvg/32x32/apps/kthememgr.png -share/icons/crystalsvg/32x32/apps/ktimemon.png -share/icons/crystalsvg/32x32/apps/ktimer.png -share/icons/crystalsvg/32x32/apps/ktip.png -share/icons/crystalsvg/32x32/apps/ktouch.png -share/icons/crystalsvg/32x32/apps/ktron.png -share/icons/crystalsvg/32x32/apps/kttsd.png -share/icons/crystalsvg/32x32/apps/ktuberling.png -share/icons/crystalsvg/32x32/apps/kturtle.png -share/icons/crystalsvg/32x32/apps/ktux.png -share/icons/crystalsvg/32x32/apps/kuickshow.png -share/icons/crystalsvg/32x32/apps/kuiviewer.png -share/icons/crystalsvg/32x32/apps/kuser.png -share/icons/crystalsvg/32x32/apps/kviewshell.png -share/icons/crystalsvg/32x32/apps/kvoctrain.png -share/icons/crystalsvg/32x32/apps/kwalletmanager.png -share/icons/crystalsvg/32x32/apps/kwalletmanager2.png -share/icons/crystalsvg/32x32/apps/kweather.png -share/icons/crystalsvg/32x32/apps/kwifimanager.png -share/icons/crystalsvg/32x32/apps/kwikdisk.png -share/icons/crystalsvg/32x32/apps/kwin.png -share/icons/crystalsvg/32x32/apps/kwin4.png -share/icons/crystalsvg/32x32/apps/kwordquiz.png -share/icons/crystalsvg/32x32/apps/kworldclock.png -share/icons/crystalsvg/32x32/apps/kwrite.png -share/icons/crystalsvg/32x32/apps/kxkb.png -share/icons/crystalsvg/32x32/apps/laptop_battery.png -share/icons/crystalsvg/32x32/apps/laptop_pcmcia.png -share/icons/crystalsvg/32x32/apps/latex.png -share/icons/crystalsvg/32x32/apps/locale.png -share/icons/crystalsvg/32x32/apps/lskat.png -share/icons/crystalsvg/32x32/apps/meanwhile_protocol.png -share/icons/crystalsvg/32x32/apps/metabar.png -share/icons/crystalsvg/32x32/apps/mobile_phone.png -share/icons/crystalsvg/32x32/apps/msn_protocol.png -share/icons/crystalsvg/32x32/apps/networkmanager.png -share/icons/crystalsvg/32x32/apps/noatun.png -share/icons/crystalsvg/32x32/apps/okular.png -share/icons/crystalsvg/32x32/apps/package.png -share/icons/crystalsvg/32x32/apps/package_applications.png -share/icons/crystalsvg/32x32/apps/package_development.png -share/icons/crystalsvg/32x32/apps/package_editors.png -share/icons/crystalsvg/32x32/apps/package_edutainment.png -share/icons/crystalsvg/32x32/apps/package_favourite.png -share/icons/crystalsvg/32x32/apps/package_games.png -share/icons/crystalsvg/32x32/apps/package_games_arcade.png -share/icons/crystalsvg/32x32/apps/package_games_board.png -share/icons/crystalsvg/32x32/apps/package_games_card.png -share/icons/crystalsvg/32x32/apps/package_games_strategy.png -share/icons/crystalsvg/32x32/apps/package_graphics.png -share/icons/crystalsvg/32x32/apps/package_multimedia.png -share/icons/crystalsvg/32x32/apps/package_network.png -share/icons/crystalsvg/32x32/apps/package_settings.png -share/icons/crystalsvg/32x32/apps/package_system.png -share/icons/crystalsvg/32x32/apps/package_toys.png -share/icons/crystalsvg/32x32/apps/package_utilities.png -share/icons/crystalsvg/32x32/apps/package_wordprocessing.png -share/icons/crystalsvg/32x32/apps/password.png -share/icons/crystalsvg/32x32/apps/penguin.png -share/icons/crystalsvg/32x32/apps/personal.png -share/icons/crystalsvg/32x32/apps/preferences-desktop-icons.png -share/icons/crystalsvg/32x32/apps/preferences-desktop-multimedia.png -share/icons/crystalsvg/32x32/apps/preferences-desktop-theme.png -share/icons/crystalsvg/32x32/apps/preferences-system-power-management.png -share/icons/crystalsvg/32x32/apps/printmgr.png -share/icons/crystalsvg/32x32/apps/proxy.png -share/icons/crystalsvg/32x32/apps/qq_protocol.png -share/icons/crystalsvg/32x32/apps/quanta.png -share/icons/crystalsvg/32x32/apps/quanta_be.png -share/icons/crystalsvg/32x32/apps/randr.png -share/icons/crystalsvg/32x32/apps/runprocesscatcher.png -share/icons/crystalsvg/32x32/apps/samba.png -share/icons/crystalsvg/32x32/apps/smpppdcs.png -share/icons/crystalsvg/32x32/apps/sms_protocol.png -share/icons/crystalsvg/32x32/apps/style.png -share/icons/crystalsvg/32x32/apps/stylesheet.png -share/icons/crystalsvg/32x32/apps/superkaramba.png -share/icons/crystalsvg/32x32/apps/systemtray.png -share/icons/crystalsvg/32x32/apps/taskbar.png -share/icons/crystalsvg/32x32/apps/telepathy_protocol.png -share/icons/crystalsvg/32x32/apps/terminal.png -share/icons/crystalsvg/32x32/apps/testbed_protocol.png -share/icons/crystalsvg/32x32/apps/texteffect.png -share/icons/crystalsvg/32x32/apps/tux.png -share/icons/crystalsvg/32x32/apps/umbrello.png -share/icons/crystalsvg/32x32/apps/usb.png -share/icons/crystalsvg/32x32/apps/window_list.png -share/icons/crystalsvg/32x32/apps/wp.png -share/icons/crystalsvg/32x32/apps/wp_protocol.png -share/icons/crystalsvg/32x32/apps/xapp.png -share/icons/crystalsvg/32x32/apps/yahoo_protocol.png -share/icons/crystalsvg/32x32/devices/3floppy_mount.png -share/icons/crystalsvg/32x32/devices/3floppy_unmount.png -share/icons/crystalsvg/32x32/devices/5floppy_mount.png -share/icons/crystalsvg/32x32/devices/5floppy_unmount.png -share/icons/crystalsvg/32x32/devices/blockdevice.png -share/icons/crystalsvg/32x32/devices/camera.png -share/icons/crystalsvg/32x32/devices/camera_mount.png -share/icons/crystalsvg/32x32/devices/camera_unmount.png -share/icons/crystalsvg/32x32/devices/cdaudio_mount.png -share/icons/crystalsvg/32x32/devices/cdaudio_unmount.png -share/icons/crystalsvg/32x32/devices/cdrom_mount.png -share/icons/crystalsvg/32x32/devices/cdrom_unmount.png -share/icons/crystalsvg/32x32/devices/cdwriter_mount.png -share/icons/crystalsvg/32x32/devices/cdwriter_unmount.png -share/icons/crystalsvg/32x32/devices/chardevice.png -share/icons/crystalsvg/32x32/devices/compact_flash_mount.png -share/icons/crystalsvg/32x32/devices/compact_flash_unmount.png -share/icons/crystalsvg/32x32/devices/computer-laptop.png -share/icons/crystalsvg/32x32/devices/dvd_mount.png -share/icons/crystalsvg/32x32/devices/dvd_unmount.png -share/icons/crystalsvg/32x32/devices/hdd_mount.png -share/icons/crystalsvg/32x32/devices/hdd_unmount.png -share/icons/crystalsvg/32x32/devices/ipod_mount.png -share/icons/crystalsvg/32x32/devices/ipod_unmount.png -share/icons/crystalsvg/32x32/devices/joystick.png -share/icons/crystalsvg/32x32/devices/laptop.png -share/icons/crystalsvg/32x32/devices/memory.png -share/icons/crystalsvg/32x32/devices/memory_stick_mount.png -share/icons/crystalsvg/32x32/devices/memory_stick_unmount.png -share/icons/crystalsvg/32x32/devices/mo_mount.png -share/icons/crystalsvg/32x32/devices/mo_unmount.png -share/icons/crystalsvg/32x32/devices/mouse.png -share/icons/crystalsvg/32x32/devices/nfs_mount.png -share/icons/crystalsvg/32x32/devices/nfs_unmount.png -share/icons/crystalsvg/32x32/devices/pda_black.png -share/icons/crystalsvg/32x32/devices/pda_blue.png -share/icons/crystalsvg/32x32/devices/print_class.png -share/icons/crystalsvg/32x32/devices/printer1.png -share/icons/crystalsvg/32x32/devices/scanner.png -share/icons/crystalsvg/32x32/devices/sd_mmc_mount.png -share/icons/crystalsvg/32x32/devices/sd_mmc_unmount.png -share/icons/crystalsvg/32x32/devices/smart_media_mount.png -share/icons/crystalsvg/32x32/devices/smart_media_unmount.png -share/icons/crystalsvg/32x32/devices/system.png -share/icons/crystalsvg/32x32/devices/tablet.png -share/icons/crystalsvg/32x32/devices/tv.png -share/icons/crystalsvg/32x32/devices/usbpendrive_mount.png -share/icons/crystalsvg/32x32/devices/usbpendrive_unmount.png -share/icons/crystalsvg/32x32/devices/zip_mount.png -share/icons/crystalsvg/32x32/devices/zip_unmount.png -share/icons/crystalsvg/32x32/mimetypes/applix.png -share/icons/crystalsvg/32x32/mimetypes/ascii.png -share/icons/crystalsvg/32x32/mimetypes/binary.png -share/icons/crystalsvg/32x32/mimetypes/cdimage.png -share/icons/crystalsvg/32x32/mimetypes/cdr.png -share/icons/crystalsvg/32x32/mimetypes/cdtrack.png -share/icons/crystalsvg/32x32/mimetypes/colorscm.png -share/icons/crystalsvg/32x32/mimetypes/core.png -share/icons/crystalsvg/32x32/mimetypes/deb.png -share/icons/crystalsvg/32x32/mimetypes/document.png -share/icons/crystalsvg/32x32/mimetypes/document2.png -share/icons/crystalsvg/32x32/mimetypes/dvi.png -share/icons/crystalsvg/32x32/mimetypes/empty.png -share/icons/crystalsvg/32x32/mimetypes/exec_wine.png -share/icons/crystalsvg/32x32/mimetypes/file_locked.png -share/icons/crystalsvg/32x32/mimetypes/file_temporary.png -share/icons/crystalsvg/32x32/mimetypes/font.png -share/icons/crystalsvg/32x32/mimetypes/font_bitmap.png -share/icons/crystalsvg/32x32/mimetypes/font_truetype.png -share/icons/crystalsvg/32x32/mimetypes/font_type1.png -share/icons/crystalsvg/32x32/mimetypes/gettext.png -share/icons/crystalsvg/32x32/mimetypes/gf.png -share/icons/crystalsvg/32x32/mimetypes/html.png -share/icons/crystalsvg/32x32/mimetypes/image.png -share/icons/crystalsvg/32x32/mimetypes/info.png -share/icons/crystalsvg/32x32/mimetypes/karbon_karbon.png -share/icons/crystalsvg/32x32/mimetypes/kchart_chrt.png -share/icons/crystalsvg/32x32/mimetypes/kexi_kexi.png -share/icons/crystalsvg/32x32/mimetypes/kformula_kfo.png -share/icons/crystalsvg/32x32/mimetypes/kget_list.png -share/icons/crystalsvg/32x32/mimetypes/kig_doc.png -share/icons/crystalsvg/32x32/mimetypes/kivio_flw.png -share/icons/crystalsvg/32x32/mimetypes/kmultiple.png -share/icons/crystalsvg/32x32/mimetypes/koffice.png -share/icons/crystalsvg/32x32/mimetypes/kpovmodeler_doc.png -share/icons/crystalsvg/32x32/mimetypes/kpresenter_kpr.png -share/icons/crystalsvg/32x32/mimetypes/krita_kra.png -share/icons/crystalsvg/32x32/mimetypes/kspread_ksp.png -share/icons/crystalsvg/32x32/mimetypes/kugar_kud.png -share/icons/crystalsvg/32x32/mimetypes/kword_kwd.png -share/icons/crystalsvg/32x32/mimetypes/log.png -share/icons/crystalsvg/32x32/mimetypes/make.png -share/icons/crystalsvg/32x32/mimetypes/man.png -share/icons/crystalsvg/32x32/mimetypes/message.png -share/icons/crystalsvg/32x32/mimetypes/metafont.png -share/icons/crystalsvg/32x32/mimetypes/midi.png -share/icons/crystalsvg/32x32/mimetypes/misc.png -share/icons/crystalsvg/32x32/mimetypes/netscape_doc.png -share/icons/crystalsvg/32x32/mimetypes/pdf.png -share/icons/crystalsvg/32x32/mimetypes/pk.png -share/icons/crystalsvg/32x32/mimetypes/postscript.png -share/icons/crystalsvg/32x32/mimetypes/quicktime.png -share/icons/crystalsvg/32x32/mimetypes/readme.png -share/icons/crystalsvg/32x32/mimetypes/recycled.png -share/icons/crystalsvg/32x32/mimetypes/resource.png -share/icons/crystalsvg/32x32/mimetypes/rpm.png -share/icons/crystalsvg/32x32/mimetypes/shellscript.png -share/icons/crystalsvg/32x32/mimetypes/soffice.png -share/icons/crystalsvg/32x32/mimetypes/sound.png -share/icons/crystalsvg/32x32/mimetypes/source.png -share/icons/crystalsvg/32x32/mimetypes/source_c.png -share/icons/crystalsvg/32x32/mimetypes/source_cpp.png -share/icons/crystalsvg/32x32/mimetypes/source_f.png -share/icons/crystalsvg/32x32/mimetypes/source_h.png -share/icons/crystalsvg/32x32/mimetypes/source_j.png -share/icons/crystalsvg/32x32/mimetypes/source_java.png -share/icons/crystalsvg/32x32/mimetypes/source_l.png -share/icons/crystalsvg/32x32/mimetypes/source_moc.png -share/icons/crystalsvg/32x32/mimetypes/source_o.png -share/icons/crystalsvg/32x32/mimetypes/source_p.png -share/icons/crystalsvg/32x32/mimetypes/source_php.png -share/icons/crystalsvg/32x32/mimetypes/source_pl.png -share/icons/crystalsvg/32x32/mimetypes/source_py.png -share/icons/crystalsvg/32x32/mimetypes/source_s.png -share/icons/crystalsvg/32x32/mimetypes/source_y.png -share/icons/crystalsvg/32x32/mimetypes/spreadsheet.png -share/icons/crystalsvg/32x32/mimetypes/superkaramba_theme.png -share/icons/crystalsvg/32x32/mimetypes/tar.png -share/icons/crystalsvg/32x32/mimetypes/template_source.png -share/icons/crystalsvg/32x32/mimetypes/tex.png -share/icons/crystalsvg/32x32/mimetypes/tgz.png -share/icons/crystalsvg/32x32/mimetypes/txt.png -share/icons/crystalsvg/32x32/mimetypes/txt2.png -share/icons/crystalsvg/32x32/mimetypes/umbrellofile.png -share/icons/crystalsvg/32x32/mimetypes/unknown.png -share/icons/crystalsvg/32x32/mimetypes/vcalendar.png -share/icons/crystalsvg/32x32/mimetypes/vcard.png -share/icons/crystalsvg/32x32/mimetypes/vectorgfx.png -share/icons/crystalsvg/32x32/mimetypes/video.png -share/icons/crystalsvg/32x32/mimetypes/widget_doc.png -share/icons/crystalsvg/32x32/mimetypes/wordprocessing.png -share/icons/crystalsvg/32x32/mimetypes/zip.png -share/icons/crystalsvg/32x32/status/user-away.png -share/icons/crystalsvg/32x32/status/user-offline.png -share/icons/crystalsvg/32x32/status/user-online.png -share/icons/crystalsvg/48x48/actions/altkey.png -share/icons/crystalsvg/48x48/actions/application-exit.png -share/icons/crystalsvg/48x48/actions/bookmark.png -share/icons/crystalsvg/48x48/actions/bug.png -share/icons/crystalsvg/48x48/actions/calculate.png -share/icons/crystalsvg/48x48/actions/capskey.png -share/icons/crystalsvg/48x48/actions/chemical.png -share/icons/crystalsvg/48x48/actions/colorpicker.png -share/icons/crystalsvg/48x48/actions/contact-new.png -share/icons/crystalsvg/48x48/actions/contents2.png -share/icons/crystalsvg/48x48/actions/controlkey.png -share/icons/crystalsvg/48x48/actions/dialog-close.png -share/icons/crystalsvg/48x48/actions/document-new.png -share/icons/crystalsvg/48x48/actions/document-print-preview.png -share/icons/crystalsvg/48x48/actions/document-print.png -share/icons/crystalsvg/48x48/actions/elempic.png -share/icons/crystalsvg/48x48/actions/energies.png -share/icons/crystalsvg/48x48/actions/eqchem.png -share/icons/crystalsvg/48x48/actions/eraser.png -share/icons/crystalsvg/48x48/actions/format-indent-less.png -share/icons/crystalsvg/48x48/actions/format-indent-more.png -share/icons/crystalsvg/48x48/actions/frameprint.png -share/icons/crystalsvg/48x48/actions/gear.png -share/icons/crystalsvg/48x48/actions/glossary.png -share/icons/crystalsvg/48x48/actions/go-down.png -share/icons/crystalsvg/48x48/actions/go-home.png -share/icons/crystalsvg/48x48/actions/go-next-document.png -share/icons/crystalsvg/48x48/actions/go-next.png -share/icons/crystalsvg/48x48/actions/go-previous-document.png -share/icons/crystalsvg/48x48/actions/go-previous.png -share/icons/crystalsvg/48x48/actions/go-up.png -share/icons/crystalsvg/48x48/actions/hotsync.png -share/icons/crystalsvg/48x48/actions/hyperkey.png -share/icons/crystalsvg/48x48/actions/isotopemap.png -share/icons/crystalsvg/48x48/actions/kalzium_molviewer.png -share/icons/crystalsvg/48x48/actions/kalzium_rs.png -share/icons/crystalsvg/48x48/actions/kalzium_tables.png -share/icons/crystalsvg/48x48/actions/kbstate_mouse.png -share/icons/crystalsvg/48x48/actions/kbstate_mouse_left.png -share/icons/crystalsvg/48x48/actions/kbstate_mouse_left_selected.png -share/icons/crystalsvg/48x48/actions/kbstate_mouse_mid.png -share/icons/crystalsvg/48x48/actions/kbstate_mouse_mid_selected.png -share/icons/crystalsvg/48x48/actions/kbstate_mouse_right.png -share/icons/crystalsvg/48x48/actions/kbstate_mouse_right_selected.png -share/icons/crystalsvg/48x48/actions/kbstate_slowkeys.png -share/icons/crystalsvg/48x48/actions/kbstate_stickykeys.png -share/icons/crystalsvg/48x48/actions/kde.png -share/icons/crystalsvg/48x48/actions/key.png -share/icons/crystalsvg/48x48/actions/keypressno.png -share/icons/crystalsvg/48x48/actions/keypressok.png -share/icons/crystalsvg/48x48/actions/klettres_desert.png -share/icons/crystalsvg/48x48/actions/klettres_grownup.png -share/icons/crystalsvg/48x48/actions/klettres_kids.png -share/icons/crystalsvg/48x48/actions/kontact_contacts.png -share/icons/crystalsvg/48x48/actions/kontact_date.png -share/icons/crystalsvg/48x48/actions/kontact_journal.png -share/icons/crystalsvg/48x48/actions/kontact_mail.png -share/icons/crystalsvg/48x48/actions/kontact_news.png -share/icons/crystalsvg/48x48/actions/kontact_notes.png -share/icons/crystalsvg/48x48/actions/kontact_summary.png -share/icons/crystalsvg/48x48/actions/kontact_summary_green.png -share/icons/crystalsvg/48x48/actions/kontact_todo.png -share/icons/crystalsvg/48x48/actions/kopeteavailable.png -share/icons/crystalsvg/48x48/actions/kopeteaway.png -share/icons/crystalsvg/48x48/actions/kstars_geo.png -share/icons/crystalsvg/48x48/actions/lastmoves.png -share/icons/crystalsvg/48x48/actions/launch.png -share/icons/crystalsvg/48x48/actions/legalmoves.png -share/icons/crystalsvg/48x48/actions/legend.png -share/icons/crystalsvg/48x48/actions/list-add.png -share/icons/crystalsvg/48x48/actions/list-remove.png -share/icons/crystalsvg/48x48/actions/lockkey.png -share/icons/crystalsvg/48x48/actions/logging.png -share/icons/crystalsvg/48x48/actions/mail-message-new.png -share/icons/crystalsvg/48x48/actions/mail_post_to.png -share/icons/crystalsvg/48x48/actions/metakey.png -share/icons/crystalsvg/48x48/actions/minitools.png -share/icons/crystalsvg/48x48/actions/misc.png -share/icons/crystalsvg/48x48/actions/noatun_equalizer.png -share/icons/crystalsvg/48x48/actions/noatun_playlist.png -share/icons/crystalsvg/48x48/actions/numbers.png -share/icons/crystalsvg/48x48/actions/object-rotate-left.png -share/icons/crystalsvg/48x48/actions/object-rotate-right.png -share/icons/crystalsvg/48x48/actions/online_status.png -share/icons/crystalsvg/48x48/actions/orbits.png -share/icons/crystalsvg/48x48/actions/overview.png -share/icons/crystalsvg/48x48/actions/player_playlist.png -share/icons/crystalsvg/48x48/actions/plot.png -share/icons/crystalsvg/48x48/actions/presence_away.png -share/icons/crystalsvg/48x48/actions/presence_offline.png -share/icons/crystalsvg/48x48/actions/presence_online.png -share/icons/crystalsvg/48x48/actions/process-stop.png -share/icons/crystalsvg/48x48/actions/reload_all_tabs.png -share/icons/crystalsvg/48x48/actions/reload_page.png -share/icons/crystalsvg/48x48/actions/rotate.png -share/icons/crystalsvg/48x48/actions/rss_tag.png -share/icons/crystalsvg/48x48/actions/share.png -share/icons/crystalsvg/48x48/actions/shiftkey.png -share/icons/crystalsvg/48x48/actions/sidebar.png -share/icons/crystalsvg/48x48/actions/spectrum.png -share/icons/crystalsvg/48x48/actions/statematter.png -share/icons/crystalsvg/48x48/actions/superkey.png -share/icons/crystalsvg/48x48/actions/svn_add.png -share/icons/crystalsvg/48x48/actions/svn_branch.png -share/icons/crystalsvg/48x48/actions/svn_merge.png -share/icons/crystalsvg/48x48/actions/svn_remove.png -share/icons/crystalsvg/48x48/actions/svn_status.png -share/icons/crystalsvg/48x48/actions/svn_switch.png -share/icons/crystalsvg/48x48/actions/switchuser.png -share/icons/crystalsvg/48x48/actions/system-lock-screen.png -share/icons/crystalsvg/48x48/actions/timeline.png -share/icons/crystalsvg/48x48/actions/tooltip.png -share/icons/crystalsvg/48x48/actions/unlatched.png -share/icons/crystalsvg/48x48/actions/vcs_add.png -share/icons/crystalsvg/48x48/actions/vcs_commit.png -share/icons/crystalsvg/48x48/actions/vcs_diff.png -share/icons/crystalsvg/48x48/actions/vcs_remove.png -share/icons/crystalsvg/48x48/actions/vcs_status.png -share/icons/crystalsvg/48x48/actions/vcs_update.png -share/icons/crystalsvg/48x48/actions/view-pim-calendar.png -share/icons/crystalsvg/48x48/actions/view-pim-contacts.png -share/icons/crystalsvg/48x48/actions/view-pim-journal.png -share/icons/crystalsvg/48x48/actions/view-pim-mail.png -share/icons/crystalsvg/48x48/actions/view-pim-news.png -share/icons/crystalsvg/48x48/actions/view-pim-notes.png -share/icons/crystalsvg/48x48/actions/view-pim-summary.png -share/icons/crystalsvg/48x48/actions/view-pim-tasks.png -share/icons/crystalsvg/48x48/actions/view-refresh.png -share/icons/crystalsvg/48x48/actions/voicecall.png -share/icons/crystalsvg/48x48/actions/webcamreceive.png -share/icons/crystalsvg/48x48/actions/webcamsend.png -share/icons/crystalsvg/48x48/actions/window_duplicate.png -share/icons/crystalsvg/48x48/actions/wizard.png -share/icons/crystalsvg/48x48/apps/access.png -share/icons/crystalsvg/48x48/apps/agent.png -share/icons/crystalsvg/48x48/apps/aim_protocol.png -share/icons/crystalsvg/48x48/apps/akregator.png -share/icons/crystalsvg/48x48/apps/amor.png -share/icons/crystalsvg/48x48/apps/app.png -share/icons/crystalsvg/48x48/apps/ark.png -share/icons/crystalsvg/48x48/apps/arts.png -share/icons/crystalsvg/48x48/apps/atlantik.png -share/icons/crystalsvg/48x48/apps/background.png -share/icons/crystalsvg/48x48/apps/bell.png -share/icons/crystalsvg/48x48/apps/blinken.png -share/icons/crystalsvg/48x48/apps/cache.png -share/icons/crystalsvg/48x48/apps/catalogmanager.png -share/icons/crystalsvg/48x48/apps/cervisia.png -share/icons/crystalsvg/48x48/apps/clock.png -share/icons/crystalsvg/48x48/apps/colors.png -share/icons/crystalsvg/48x48/apps/cookie.png -share/icons/crystalsvg/48x48/apps/date.png -share/icons/crystalsvg/48x48/apps/edu_languages.png -share/icons/crystalsvg/48x48/apps/edu_mathematics.png -share/icons/crystalsvg/48x48/apps/edu_miscellaneous.png -share/icons/crystalsvg/48x48/apps/edu_science.png -share/icons/crystalsvg/48x48/apps/email.png -share/icons/crystalsvg/48x48/apps/energy_star.png -share/icons/crystalsvg/48x48/apps/enhanced_browsing.png -share/icons/crystalsvg/48x48/apps/fifteenpieces.png -share/icons/crystalsvg/48x48/apps/filetypes.png -share/icons/crystalsvg/48x48/apps/fonts.png -share/icons/crystalsvg/48x48/apps/groupwise_protocol.png -share/icons/crystalsvg/48x48/apps/help_index.png -share/icons/crystalsvg/48x48/apps/hwinfo.png -share/icons/crystalsvg/48x48/apps/icons.png -share/icons/crystalsvg/48x48/apps/icq_protocol.png -share/icons/crystalsvg/48x48/apps/ieee1394.png -share/icons/crystalsvg/48x48/apps/input_devices_settings.png -share/icons/crystalsvg/48x48/apps/jabber_protocol.png -share/icons/crystalsvg/48x48/apps/juk.png -share/icons/crystalsvg/48x48/apps/kaboodle.png -share/icons/crystalsvg/48x48/apps/kaddressbook.png -share/icons/crystalsvg/48x48/apps/kalarm.png -share/icons/crystalsvg/48x48/apps/kalzium.png -share/icons/crystalsvg/48x48/apps/kanagram.png -share/icons/crystalsvg/48x48/apps/karm.png -share/icons/crystalsvg/48x48/apps/kasteroids.png -share/icons/crystalsvg/48x48/apps/kate.png -share/icons/crystalsvg/48x48/apps/katomic.png -share/icons/crystalsvg/48x48/apps/kbabel.png -share/icons/crystalsvg/48x48/apps/kbabeldict.png -share/icons/crystalsvg/48x48/apps/kbackgammon.png -share/icons/crystalsvg/48x48/apps/kbackgammon_engine.png -share/icons/crystalsvg/48x48/apps/kbinaryclock.png -share/icons/crystalsvg/48x48/apps/kblackbox.png -share/icons/crystalsvg/48x48/apps/kbounce.png -share/icons/crystalsvg/48x48/apps/kbruch.png -share/icons/crystalsvg/48x48/apps/kbugbuster.png -share/icons/crystalsvg/48x48/apps/kcachegrind.png -share/icons/crystalsvg/48x48/apps/kcalc.png -share/icons/crystalsvg/48x48/apps/kcharselect.png -share/icons/crystalsvg/48x48/apps/kcmdevices.png -share/icons/crystalsvg/48x48/apps/kcmdf.png -share/icons/crystalsvg/48x48/apps/kcmkwm.png -share/icons/crystalsvg/48x48/apps/kcmmemory.png -share/icons/crystalsvg/48x48/apps/kcmopengl.png -share/icons/crystalsvg/48x48/apps/kcmpartitions.png -share/icons/crystalsvg/48x48/apps/kcmpci.png -share/icons/crystalsvg/48x48/apps/kcmprocessor.png -share/icons/crystalsvg/48x48/apps/kcmscsi.png -share/icons/crystalsvg/48x48/apps/kcmsystem.png -share/icons/crystalsvg/48x48/apps/kcmx.png -share/icons/crystalsvg/48x48/apps/kcontrol.png -share/icons/crystalsvg/48x48/apps/kdat.png -share/icons/crystalsvg/48x48/apps/kdeprint_printer.png -share/icons/crystalsvg/48x48/apps/kdeprint_printer_class.png -share/icons/crystalsvg/48x48/apps/kdeprintfax.png -share/icons/crystalsvg/48x48/apps/kdevassistant.png -share/icons/crystalsvg/48x48/apps/kdevdesigner.png -share/icons/crystalsvg/48x48/apps/kdevelop.png -share/icons/crystalsvg/48x48/apps/kdf.png -share/icons/crystalsvg/48x48/apps/kdict.png -share/icons/crystalsvg/48x48/apps/kdisknav.png -share/icons/crystalsvg/48x48/apps/kdmconfig.png -share/icons/crystalsvg/48x48/apps/kdvi.png -share/icons/crystalsvg/48x48/apps/keditbookmarks.png -share/icons/crystalsvg/48x48/apps/kenolaba.png -share/icons/crystalsvg/48x48/apps/key_bindings.png -share/icons/crystalsvg/48x48/apps/keyboard.png -share/icons/crystalsvg/48x48/apps/keyboard_layout.png -share/icons/crystalsvg/48x48/apps/kfax.png -share/icons/crystalsvg/48x48/apps/kfaxview.png -share/icons/crystalsvg/48x48/apps/kfilereplace.png -share/icons/crystalsvg/48x48/apps/kfind.png -share/icons/crystalsvg/48x48/apps/kfloppy.png -share/icons/crystalsvg/48x48/apps/kfm.png -share/icons/crystalsvg/48x48/apps/kfontview.png -share/icons/crystalsvg/48x48/apps/kfouleggs.png -share/icons/crystalsvg/48x48/apps/kgamma.png -share/icons/crystalsvg/48x48/apps/kgeography.png -share/icons/crystalsvg/48x48/apps/kget.png -share/icons/crystalsvg/48x48/apps/kghostview.png -share/icons/crystalsvg/48x48/apps/kgoldrunner.png -share/icons/crystalsvg/48x48/apps/kgpg.png -share/icons/crystalsvg/48x48/apps/khangman.png -share/icons/crystalsvg/48x48/apps/khelpcenter.png -share/icons/crystalsvg/48x48/apps/khexedit.png -share/icons/crystalsvg/48x48/apps/kiconedit.png -share/icons/crystalsvg/48x48/apps/kig.png -share/icons/crystalsvg/48x48/apps/kimagemapeditor.png -share/icons/crystalsvg/48x48/apps/kiriki.png -share/icons/crystalsvg/48x48/apps/kitchensync.png -share/icons/crystalsvg/48x48/apps/kiten.png -share/icons/crystalsvg/48x48/apps/kjobviewer.png -share/icons/crystalsvg/48x48/apps/kjots.png -share/icons/crystalsvg/48x48/apps/kjumpingcube.png -share/icons/crystalsvg/48x48/apps/klatin.png -share/icons/crystalsvg/48x48/apps/klettres.png -share/icons/crystalsvg/48x48/apps/klickety.png -share/icons/crystalsvg/48x48/apps/klines.png -share/icons/crystalsvg/48x48/apps/klinkstatus.png -share/icons/crystalsvg/48x48/apps/klipper.png -share/icons/crystalsvg/48x48/apps/kmahjongg.png -share/icons/crystalsvg/48x48/apps/kmail.png -share/icons/crystalsvg/48x48/apps/kmailcvt.png -share/icons/crystalsvg/48x48/apps/kmenu.png -share/icons/crystalsvg/48x48/apps/kmenuedit.png -share/icons/crystalsvg/48x48/apps/kmid.png -share/icons/crystalsvg/48x48/apps/kmines.png -share/icons/crystalsvg/48x48/apps/kmix.png -share/icons/crystalsvg/48x48/apps/kmoon.png -share/icons/crystalsvg/48x48/apps/kmouth.png -share/icons/crystalsvg/48x48/apps/kmplot.png -share/icons/crystalsvg/48x48/apps/knetattach.png -share/icons/crystalsvg/48x48/apps/knetwalk.png -share/icons/crystalsvg/48x48/apps/knewsticker.png -share/icons/crystalsvg/48x48/apps/knode.png -share/icons/crystalsvg/48x48/apps/knode2.png -share/icons/crystalsvg/48x48/apps/knotes.png -share/icons/crystalsvg/48x48/apps/knotify.png -share/icons/crystalsvg/48x48/apps/kolf.png -share/icons/crystalsvg/48x48/apps/kolourpaint.png -share/icons/crystalsvg/48x48/apps/kompare.png -share/icons/crystalsvg/48x48/apps/konqsidebar_mediaplayer.png -share/icons/crystalsvg/48x48/apps/konqueror.png -share/icons/crystalsvg/48x48/apps/konquest.png -share/icons/crystalsvg/48x48/apps/konsole.png -share/icons/crystalsvg/48x48/apps/kontact.png -share/icons/crystalsvg/48x48/apps/kopete.png -share/icons/crystalsvg/48x48/apps/korganizer.png -share/icons/crystalsvg/48x48/apps/korn.png -share/icons/crystalsvg/48x48/apps/kpackage.png -share/icons/crystalsvg/48x48/apps/kpager.png -share/icons/crystalsvg/48x48/apps/kpalmdoc.png -share/icons/crystalsvg/48x48/apps/kpat.png -share/icons/crystalsvg/48x48/apps/kpercentage.png -share/icons/crystalsvg/48x48/apps/kpf.png -share/icons/crystalsvg/48x48/apps/kpoker.png -share/icons/crystalsvg/48x48/apps/kpovmodeler.png -share/icons/crystalsvg/48x48/apps/kppp.png -share/icons/crystalsvg/48x48/apps/krdc.png -share/icons/crystalsvg/48x48/apps/kregexpeditor.png -share/icons/crystalsvg/48x48/apps/kreversi.png -share/icons/crystalsvg/48x48/apps/krfb.png -share/icons/crystalsvg/48x48/apps/kruler.png -share/icons/crystalsvg/48x48/apps/ksame.png -share/icons/crystalsvg/48x48/apps/kscd.png -share/icons/crystalsvg/48x48/apps/kscreensaver.png -share/icons/crystalsvg/48x48/apps/ksim.png -share/icons/crystalsvg/48x48/apps/ksirtet.png -share/icons/crystalsvg/48x48/apps/ksnake.png -share/icons/crystalsvg/48x48/apps/ksnapshot.png -share/icons/crystalsvg/48x48/apps/ksokoban.png -share/icons/crystalsvg/48x48/apps/kspaceduel.png -share/icons/crystalsvg/48x48/apps/ksplash.png -share/icons/crystalsvg/48x48/apps/ksquares.png -share/icons/crystalsvg/48x48/apps/kstars.png -share/icons/crystalsvg/48x48/apps/ksysguard.png -share/icons/crystalsvg/48x48/apps/ksysv.png -share/icons/crystalsvg/48x48/apps/kteatime.png -share/icons/crystalsvg/48x48/apps/kthememgr.png -share/icons/crystalsvg/48x48/apps/ktimer.png -share/icons/crystalsvg/48x48/apps/ktip.png -share/icons/crystalsvg/48x48/apps/ktnef.png -share/icons/crystalsvg/48x48/apps/ktouch.png -share/icons/crystalsvg/48x48/apps/ktron.png -share/icons/crystalsvg/48x48/apps/kttsd.png -share/icons/crystalsvg/48x48/apps/ktuberling.png -share/icons/crystalsvg/48x48/apps/kturtle.png -share/icons/crystalsvg/48x48/apps/kuiviewer.png -share/icons/crystalsvg/48x48/apps/kuser.png -share/icons/crystalsvg/48x48/apps/kviewshell.png -share/icons/crystalsvg/48x48/apps/kvoctrain.png -share/icons/crystalsvg/48x48/apps/kwalletmanager.png -share/icons/crystalsvg/48x48/apps/kwalletmanager2.png -share/icons/crystalsvg/48x48/apps/kweather.png -share/icons/crystalsvg/48x48/apps/kwifimanager.png -share/icons/crystalsvg/48x48/apps/kwikdisk.png -share/icons/crystalsvg/48x48/apps/kwin.png -share/icons/crystalsvg/48x48/apps/kwin4.png -share/icons/crystalsvg/48x48/apps/kwordquiz.png -share/icons/crystalsvg/48x48/apps/kworldclock.png -share/icons/crystalsvg/48x48/apps/kwrite.png -share/icons/crystalsvg/48x48/apps/kxkb.png -share/icons/crystalsvg/48x48/apps/laptop_battery.png -share/icons/crystalsvg/48x48/apps/laptop_pcmcia.png -share/icons/crystalsvg/48x48/apps/locale.png -share/icons/crystalsvg/48x48/apps/lskat.png -share/icons/crystalsvg/48x48/apps/meanwhile_protocol.png -share/icons/crystalsvg/48x48/apps/metabar.png -share/icons/crystalsvg/48x48/apps/mobile_phone.png -share/icons/crystalsvg/48x48/apps/msn_protocol.png -share/icons/crystalsvg/48x48/apps/noatun.png -share/icons/crystalsvg/48x48/apps/okular.png -share/icons/crystalsvg/48x48/apps/package.png -share/icons/crystalsvg/48x48/apps/package_applications.png -share/icons/crystalsvg/48x48/apps/package_development.png -share/icons/crystalsvg/48x48/apps/package_editors.png -share/icons/crystalsvg/48x48/apps/package_edutainment.png -share/icons/crystalsvg/48x48/apps/package_favourite.png -share/icons/crystalsvg/48x48/apps/package_games.png -share/icons/crystalsvg/48x48/apps/package_games_arcade.png -share/icons/crystalsvg/48x48/apps/package_games_board.png -share/icons/crystalsvg/48x48/apps/package_games_card.png -share/icons/crystalsvg/48x48/apps/package_games_strategy.png -share/icons/crystalsvg/48x48/apps/package_graphics.png -share/icons/crystalsvg/48x48/apps/package_multimedia.png -share/icons/crystalsvg/48x48/apps/package_network.png -share/icons/crystalsvg/48x48/apps/package_settings.png -share/icons/crystalsvg/48x48/apps/package_system.png -share/icons/crystalsvg/48x48/apps/package_toys.png -share/icons/crystalsvg/48x48/apps/package_utilities.png -share/icons/crystalsvg/48x48/apps/package_wordprocessing.png -share/icons/crystalsvg/48x48/apps/password.png -share/icons/crystalsvg/48x48/apps/penguin.png -share/icons/crystalsvg/48x48/apps/personal.png -share/icons/crystalsvg/48x48/apps/preferences-desktop-icons.png -share/icons/crystalsvg/48x48/apps/preferences-desktop-multimedia.png -share/icons/crystalsvg/48x48/apps/preferences-desktop-theme.png -share/icons/crystalsvg/48x48/apps/preferences-system-power-management.png -share/icons/crystalsvg/48x48/apps/printmgr.png -share/icons/crystalsvg/48x48/apps/proxy.png -share/icons/crystalsvg/48x48/apps/qq_protocol.png -share/icons/crystalsvg/48x48/apps/quanta.png -share/icons/crystalsvg/48x48/apps/quanta_be.png -share/icons/crystalsvg/48x48/apps/randr.png -share/icons/crystalsvg/48x48/apps/samba.png -share/icons/crystalsvg/48x48/apps/sms_protocol.png -share/icons/crystalsvg/48x48/apps/staroffice.png -share/icons/crystalsvg/48x48/apps/style.png -share/icons/crystalsvg/48x48/apps/stylesheet.png -share/icons/crystalsvg/48x48/apps/superkaramba.png -share/icons/crystalsvg/48x48/apps/systemtray.png -share/icons/crystalsvg/48x48/apps/taskbar.png -share/icons/crystalsvg/48x48/apps/telepathy_protocol.png -share/icons/crystalsvg/48x48/apps/terminal.png -share/icons/crystalsvg/48x48/apps/testbed_protocol.png -share/icons/crystalsvg/48x48/apps/tux.png -share/icons/crystalsvg/48x48/apps/umbrello.png -share/icons/crystalsvg/48x48/apps/usb.png -share/icons/crystalsvg/48x48/apps/window_list.png -share/icons/crystalsvg/48x48/apps/wp.png -share/icons/crystalsvg/48x48/apps/wp_protocol.png -share/icons/crystalsvg/48x48/apps/yahoo_protocol.png -share/icons/crystalsvg/48x48/devices/3floppy_mount.png -share/icons/crystalsvg/48x48/devices/3floppy_unmount.png -share/icons/crystalsvg/48x48/devices/5floppy_mount.png -share/icons/crystalsvg/48x48/devices/5floppy_unmount.png -share/icons/crystalsvg/48x48/devices/blockdevice.png -share/icons/crystalsvg/48x48/devices/camera_mount.png -share/icons/crystalsvg/48x48/devices/camera_unmount.png -share/icons/crystalsvg/48x48/devices/cdaudio_mount.png -share/icons/crystalsvg/48x48/devices/cdaudio_unmount.png -share/icons/crystalsvg/48x48/devices/cdrom_mount.png -share/icons/crystalsvg/48x48/devices/cdrom_unmount.png -share/icons/crystalsvg/48x48/devices/cdwriter_mount.png -share/icons/crystalsvg/48x48/devices/cdwriter_unmount.png -share/icons/crystalsvg/48x48/devices/chardevice.png -share/icons/crystalsvg/48x48/devices/compact_flash_mount.png -share/icons/crystalsvg/48x48/devices/compact_flash_unmount.png -share/icons/crystalsvg/48x48/devices/computer-laptop.png -share/icons/crystalsvg/48x48/devices/dvd_mount.png -share/icons/crystalsvg/48x48/devices/dvd_unmount.png -share/icons/crystalsvg/48x48/devices/hdd_mount.png -share/icons/crystalsvg/48x48/devices/hdd_unmount.png -share/icons/crystalsvg/48x48/devices/ipod_mount.png -share/icons/crystalsvg/48x48/devices/ipod_unmount.png -share/icons/crystalsvg/48x48/devices/joystick.png -share/icons/crystalsvg/48x48/devices/laptop.png -share/icons/crystalsvg/48x48/devices/memory.png -share/icons/crystalsvg/48x48/devices/memory_stick_mount.png -share/icons/crystalsvg/48x48/devices/memory_stick_unmount.png -share/icons/crystalsvg/48x48/devices/mo_mount.png -share/icons/crystalsvg/48x48/devices/mo_unmount.png -share/icons/crystalsvg/48x48/devices/mouse.png -share/icons/crystalsvg/48x48/devices/nfs_mount.png -share/icons/crystalsvg/48x48/devices/nfs_unmount.png -share/icons/crystalsvg/48x48/devices/pda_black.png -share/icons/crystalsvg/48x48/devices/pda_blue.png -share/icons/crystalsvg/48x48/devices/print_class.png -share/icons/crystalsvg/48x48/devices/printer1.png -share/icons/crystalsvg/48x48/devices/scanner.png -share/icons/crystalsvg/48x48/devices/sd_mmc_mount.png -share/icons/crystalsvg/48x48/devices/sd_mmc_unmount.png -share/icons/crystalsvg/48x48/devices/smart_media_mount.png -share/icons/crystalsvg/48x48/devices/smart_media_unmount.png -share/icons/crystalsvg/48x48/devices/system.png -share/icons/crystalsvg/48x48/devices/tablet.png -share/icons/crystalsvg/48x48/devices/tv.png -share/icons/crystalsvg/48x48/devices/usbpendrive_mount.png -share/icons/crystalsvg/48x48/devices/usbpendrive_unmount.png -share/icons/crystalsvg/48x48/devices/zip_mount.png -share/icons/crystalsvg/48x48/devices/zip_unmount.png -share/icons/crystalsvg/48x48/mimetypes/applix.png -share/icons/crystalsvg/48x48/mimetypes/ascii.png -share/icons/crystalsvg/48x48/mimetypes/binary.png -share/icons/crystalsvg/48x48/mimetypes/cdimage.png -share/icons/crystalsvg/48x48/mimetypes/cdr.png -share/icons/crystalsvg/48x48/mimetypes/cdtrack.png -share/icons/crystalsvg/48x48/mimetypes/colorscm.png -share/icons/crystalsvg/48x48/mimetypes/core.png -share/icons/crystalsvg/48x48/mimetypes/deb.png -share/icons/crystalsvg/48x48/mimetypes/document.png -share/icons/crystalsvg/48x48/mimetypes/document2.png -share/icons/crystalsvg/48x48/mimetypes/dvi.png -share/icons/crystalsvg/48x48/mimetypes/empty.png -share/icons/crystalsvg/48x48/mimetypes/encrypted.png -share/icons/crystalsvg/48x48/mimetypes/exec_wine.png -share/icons/crystalsvg/48x48/mimetypes/font.png -share/icons/crystalsvg/48x48/mimetypes/font_bitmap.png -share/icons/crystalsvg/48x48/mimetypes/font_truetype.png -share/icons/crystalsvg/48x48/mimetypes/font_type1.png -share/icons/crystalsvg/48x48/mimetypes/gettext.png -share/icons/crystalsvg/48x48/mimetypes/gf.png -share/icons/crystalsvg/48x48/mimetypes/html.png -share/icons/crystalsvg/48x48/mimetypes/image.png -share/icons/crystalsvg/48x48/mimetypes/info.png -share/icons/crystalsvg/48x48/mimetypes/karbon_karbon.png -share/icons/crystalsvg/48x48/mimetypes/kchart_chrt.png -share/icons/crystalsvg/48x48/mimetypes/kexi_kexi.png -share/icons/crystalsvg/48x48/mimetypes/kformula_kfo.png -share/icons/crystalsvg/48x48/mimetypes/kget_list.png -share/icons/crystalsvg/48x48/mimetypes/kig_doc.png -share/icons/crystalsvg/48x48/mimetypes/kivio_flw.png -share/icons/crystalsvg/48x48/mimetypes/kmultiple.png -share/icons/crystalsvg/48x48/mimetypes/koffice.png -share/icons/crystalsvg/48x48/mimetypes/kpovmodeler_doc.png -share/icons/crystalsvg/48x48/mimetypes/kpresenter_kpr.png -share/icons/crystalsvg/48x48/mimetypes/krita_kra.png -share/icons/crystalsvg/48x48/mimetypes/kspread_ksp.png -share/icons/crystalsvg/48x48/mimetypes/kugar_kud.png -share/icons/crystalsvg/48x48/mimetypes/kword_kwd.png -share/icons/crystalsvg/48x48/mimetypes/log.png -share/icons/crystalsvg/48x48/mimetypes/make.png -share/icons/crystalsvg/48x48/mimetypes/man.png -share/icons/crystalsvg/48x48/mimetypes/message.png -share/icons/crystalsvg/48x48/mimetypes/metafont.png -share/icons/crystalsvg/48x48/mimetypes/midi.png -share/icons/crystalsvg/48x48/mimetypes/misc.png -share/icons/crystalsvg/48x48/mimetypes/mozilla_doc.png -share/icons/crystalsvg/48x48/mimetypes/netscape_doc.png -share/icons/crystalsvg/48x48/mimetypes/pdf.png -share/icons/crystalsvg/48x48/mimetypes/pk.png -share/icons/crystalsvg/48x48/mimetypes/postscript.png -share/icons/crystalsvg/48x48/mimetypes/quicktime.png -share/icons/crystalsvg/48x48/mimetypes/readme.png -share/icons/crystalsvg/48x48/mimetypes/recycled.png -share/icons/crystalsvg/48x48/mimetypes/resource.png -share/icons/crystalsvg/48x48/mimetypes/rpm.png -share/icons/crystalsvg/48x48/mimetypes/shellscript.png -share/icons/crystalsvg/48x48/mimetypes/soffice.png -share/icons/crystalsvg/48x48/mimetypes/sound.png -share/icons/crystalsvg/48x48/mimetypes/source.png -share/icons/crystalsvg/48x48/mimetypes/source_c.png -share/icons/crystalsvg/48x48/mimetypes/source_cpp.png -share/icons/crystalsvg/48x48/mimetypes/source_f.png -share/icons/crystalsvg/48x48/mimetypes/source_h.png -share/icons/crystalsvg/48x48/mimetypes/source_j.png -share/icons/crystalsvg/48x48/mimetypes/source_java.png -share/icons/crystalsvg/48x48/mimetypes/source_l.png -share/icons/crystalsvg/48x48/mimetypes/source_moc.png -share/icons/crystalsvg/48x48/mimetypes/source_o.png -share/icons/crystalsvg/48x48/mimetypes/source_p.png -share/icons/crystalsvg/48x48/mimetypes/source_php.png -share/icons/crystalsvg/48x48/mimetypes/source_pl.png -share/icons/crystalsvg/48x48/mimetypes/source_py.png -share/icons/crystalsvg/48x48/mimetypes/source_s.png -share/icons/crystalsvg/48x48/mimetypes/source_y.png -share/icons/crystalsvg/48x48/mimetypes/spreadsheet.png -share/icons/crystalsvg/48x48/mimetypes/superkaramba_theme.png -share/icons/crystalsvg/48x48/mimetypes/tar.png -share/icons/crystalsvg/48x48/mimetypes/template_source.png -share/icons/crystalsvg/48x48/mimetypes/tex.png -share/icons/crystalsvg/48x48/mimetypes/tgz.png -share/icons/crystalsvg/48x48/mimetypes/txt.png -share/icons/crystalsvg/48x48/mimetypes/txt2.png -share/icons/crystalsvg/48x48/mimetypes/umbrellofile.png -share/icons/crystalsvg/48x48/mimetypes/unknown.png -share/icons/crystalsvg/48x48/mimetypes/vcalendar.png -share/icons/crystalsvg/48x48/mimetypes/vcard.png -share/icons/crystalsvg/48x48/mimetypes/vectorgfx.png -share/icons/crystalsvg/48x48/mimetypes/video.png -share/icons/crystalsvg/48x48/mimetypes/widget_doc.png -share/icons/crystalsvg/48x48/mimetypes/wordprocessing.png -share/icons/crystalsvg/48x48/mimetypes/zip.png -share/icons/crystalsvg/48x48/status/user-away.png -share/icons/crystalsvg/48x48/status/user-offline.png -share/icons/crystalsvg/48x48/status/user-online.png -share/icons/crystalsvg/64x64/actions/altkey.png -share/icons/crystalsvg/64x64/actions/bug.png -share/icons/crystalsvg/64x64/actions/capskey.png -share/icons/crystalsvg/64x64/actions/controlkey.png -share/icons/crystalsvg/64x64/actions/document-open.png -share/icons/crystalsvg/64x64/actions/favorites.png -share/icons/crystalsvg/64x64/actions/hyperkey.png -share/icons/crystalsvg/64x64/actions/kalzium_molviewer.png -share/icons/crystalsvg/64x64/actions/kalzium_rs.png -share/icons/crystalsvg/64x64/actions/kalzium_tables.png -share/icons/crystalsvg/64x64/actions/kbruch_exercise_common.png -share/icons/crystalsvg/64x64/actions/kbruch_exercise_compare.png -share/icons/crystalsvg/64x64/actions/kbruch_exercise_conversion.png -share/icons/crystalsvg/64x64/actions/kbruch_exercise_factorisation.png -share/icons/crystalsvg/64x64/actions/kbstate_mouse.png -share/icons/crystalsvg/64x64/actions/kbstate_mouse_left.png -share/icons/crystalsvg/64x64/actions/kbstate_mouse_left_selected.png -share/icons/crystalsvg/64x64/actions/kbstate_mouse_mid.png -share/icons/crystalsvg/64x64/actions/kbstate_mouse_mid_selected.png -share/icons/crystalsvg/64x64/actions/kbstate_mouse_right.png -share/icons/crystalsvg/64x64/actions/kbstate_mouse_right_selected.png -share/icons/crystalsvg/64x64/actions/kbstate_slowkeys.png -share/icons/crystalsvg/64x64/actions/kbstate_stickykeys.png -share/icons/crystalsvg/64x64/actions/key.png -share/icons/crystalsvg/64x64/actions/keypressno.png -share/icons/crystalsvg/64x64/actions/keypressok.png -share/icons/crystalsvg/64x64/actions/klettres_desert.png -share/icons/crystalsvg/64x64/actions/klettres_grownup.png.png -share/icons/crystalsvg/64x64/actions/klettres_kids.png -share/icons/crystalsvg/64x64/actions/knewstuff.png -share/icons/crystalsvg/64x64/actions/kontact_contacts.png -share/icons/crystalsvg/64x64/actions/kontact_date.png -share/icons/crystalsvg/64x64/actions/kontact_journal.png -share/icons/crystalsvg/64x64/actions/kontact_mail.png -share/icons/crystalsvg/64x64/actions/kontact_news.png -share/icons/crystalsvg/64x64/actions/kontact_notes.png -share/icons/crystalsvg/64x64/actions/kontact_summary.png -share/icons/crystalsvg/64x64/actions/kontact_summary_green.png -share/icons/crystalsvg/64x64/actions/kontact_todo.png -share/icons/crystalsvg/64x64/actions/kstars_geo.png -share/icons/crystalsvg/64x64/actions/lockkey.png -share/icons/crystalsvg/64x64/actions/logging.png -share/icons/crystalsvg/64x64/actions/media-playback-start.png -share/icons/crystalsvg/64x64/actions/metakey.png -share/icons/crystalsvg/64x64/actions/noatun_equalizer.png -share/icons/crystalsvg/64x64/actions/noatun_playlist.png -share/icons/crystalsvg/64x64/actions/numbers.png -share/icons/crystalsvg/64x64/actions/rss_tag.png -share/icons/crystalsvg/64x64/actions/share.png -share/icons/crystalsvg/64x64/actions/shiftkey.png -share/icons/crystalsvg/64x64/actions/superkey.png -share/icons/crystalsvg/64x64/actions/svn_add.png -share/icons/crystalsvg/64x64/actions/svn_branch.png -share/icons/crystalsvg/64x64/actions/svn_merge.png -share/icons/crystalsvg/64x64/actions/svn_remove.png -share/icons/crystalsvg/64x64/actions/svn_status.png -share/icons/crystalsvg/64x64/actions/svn_switch.png -share/icons/crystalsvg/64x64/actions/unlatched.png -share/icons/crystalsvg/64x64/actions/view-pim-calendar.png -share/icons/crystalsvg/64x64/actions/view-pim-contacts.png -share/icons/crystalsvg/64x64/actions/view-pim-journal.png -share/icons/crystalsvg/64x64/actions/view-pim-mail.png -share/icons/crystalsvg/64x64/actions/view-pim-news.png -share/icons/crystalsvg/64x64/actions/view-pim-notes.png -share/icons/crystalsvg/64x64/actions/view-pim-summary.png -share/icons/crystalsvg/64x64/actions/view-pim-tasks.png -share/icons/crystalsvg/64x64/actions/voicecall.png -share/icons/crystalsvg/64x64/actions/webcamreceive.png -share/icons/crystalsvg/64x64/actions/webcamsend.png -share/icons/crystalsvg/64x64/apps/access.png -share/icons/crystalsvg/64x64/apps/aim_protocol.png -share/icons/crystalsvg/64x64/apps/akregator.png -share/icons/crystalsvg/64x64/apps/ark.png -share/icons/crystalsvg/64x64/apps/arts.png -share/icons/crystalsvg/64x64/apps/background.png -share/icons/crystalsvg/64x64/apps/bell.png -share/icons/crystalsvg/64x64/apps/blinken.png -share/icons/crystalsvg/64x64/apps/cache.png -share/icons/crystalsvg/64x64/apps/clock.png -share/icons/crystalsvg/64x64/apps/colors.png -share/icons/crystalsvg/64x64/apps/cookie.png -share/icons/crystalsvg/64x64/apps/date.png -share/icons/crystalsvg/64x64/apps/email.png -share/icons/crystalsvg/64x64/apps/energy_star.png -share/icons/crystalsvg/64x64/apps/enhanced_browsing.png -share/icons/crystalsvg/64x64/apps/filetypes.png -share/icons/crystalsvg/64x64/apps/fonts.png -share/icons/crystalsvg/64x64/apps/groupwise_protocol.png -share/icons/crystalsvg/64x64/apps/help_index.png -share/icons/crystalsvg/64x64/apps/hwinfo.png -share/icons/crystalsvg/64x64/apps/icons.png -share/icons/crystalsvg/64x64/apps/icq_protocol.png -share/icons/crystalsvg/64x64/apps/ieee1394.png -share/icons/crystalsvg/64x64/apps/juk.png -share/icons/crystalsvg/64x64/apps/kaboodle.png -share/icons/crystalsvg/64x64/apps/kaddressbook.png -share/icons/crystalsvg/64x64/apps/kalzium.png -share/icons/crystalsvg/64x64/apps/karm.png -share/icons/crystalsvg/64x64/apps/kasteroids.png -share/icons/crystalsvg/64x64/apps/kate.png -share/icons/crystalsvg/64x64/apps/katomic.png -share/icons/crystalsvg/64x64/apps/kbackgammon.png -share/icons/crystalsvg/64x64/apps/kbackgammon_engine.png -share/icons/crystalsvg/64x64/apps/kblackbox.png -share/icons/crystalsvg/64x64/apps/kbounce.png -share/icons/crystalsvg/64x64/apps/kbruch.png -share/icons/crystalsvg/64x64/apps/kbugbuster.png -share/icons/crystalsvg/64x64/apps/kcalc.png -share/icons/crystalsvg/64x64/apps/kcmdevices.png -share/icons/crystalsvg/64x64/apps/kcmdf.png -share/icons/crystalsvg/64x64/apps/kcmkwm.png -share/icons/crystalsvg/64x64/apps/kcmmemory.png -share/icons/crystalsvg/64x64/apps/kcmpartitions.png -share/icons/crystalsvg/64x64/apps/kcmpci.png -share/icons/crystalsvg/64x64/apps/kcmx.png -share/icons/crystalsvg/64x64/apps/kcontrol.png -share/icons/crystalsvg/64x64/apps/kdeprint_printer.png -share/icons/crystalsvg/64x64/apps/kdeprint_printer_class.png -share/icons/crystalsvg/64x64/apps/kdeprintfax.png -share/icons/crystalsvg/64x64/apps/kdf.png -share/icons/crystalsvg/64x64/apps/kdict.png -share/icons/crystalsvg/64x64/apps/kdmconfig.png -share/icons/crystalsvg/64x64/apps/keditbookmarks.png -share/icons/crystalsvg/64x64/apps/kenolaba.png -share/icons/crystalsvg/64x64/apps/key_bindings.png -share/icons/crystalsvg/64x64/apps/kfind.png -share/icons/crystalsvg/64x64/apps/kfloppy.png -share/icons/crystalsvg/64x64/apps/kfm.png -share/icons/crystalsvg/64x64/apps/kfontview.png -share/icons/crystalsvg/64x64/apps/kfouleggs.png -share/icons/crystalsvg/64x64/apps/kgeography.png -share/icons/crystalsvg/64x64/apps/kghostview.png -share/icons/crystalsvg/64x64/apps/kgoldrunner.png -share/icons/crystalsvg/64x64/apps/khangman.png -share/icons/crystalsvg/64x64/apps/khelpcenter.png -share/icons/crystalsvg/64x64/apps/kig.png -share/icons/crystalsvg/64x64/apps/kiriki.png -share/icons/crystalsvg/64x64/apps/kjobviewer.png -share/icons/crystalsvg/64x64/apps/kjots.png -share/icons/crystalsvg/64x64/apps/kjumpingcube.png -share/icons/crystalsvg/64x64/apps/klatin.png -share/icons/crystalsvg/64x64/apps/klickety.png -share/icons/crystalsvg/64x64/apps/klines.png -share/icons/crystalsvg/64x64/apps/klinkstatus.png -share/icons/crystalsvg/64x64/apps/klipper.png -share/icons/crystalsvg/64x64/apps/kmahjongg.png -share/icons/crystalsvg/64x64/apps/kmail.png -share/icons/crystalsvg/64x64/apps/kmenu.png -share/icons/crystalsvg/64x64/apps/kmines.png -share/icons/crystalsvg/64x64/apps/kmix.png -share/icons/crystalsvg/64x64/apps/kmplot.png -share/icons/crystalsvg/64x64/apps/knetattach.png -share/icons/crystalsvg/64x64/apps/knetwalk.png -share/icons/crystalsvg/64x64/apps/knode.png -share/icons/crystalsvg/64x64/apps/knode2.png -share/icons/crystalsvg/64x64/apps/knotes.png -share/icons/crystalsvg/64x64/apps/knotify.png -share/icons/crystalsvg/64x64/apps/kolf.png -share/icons/crystalsvg/64x64/apps/konqueror.png -share/icons/crystalsvg/64x64/apps/konquest.png -share/icons/crystalsvg/64x64/apps/konsole.png -share/icons/crystalsvg/64x64/apps/kontact.png -share/icons/crystalsvg/64x64/apps/kopete.png -share/icons/crystalsvg/64x64/apps/kopete_avdevice.png -share/icons/crystalsvg/64x64/apps/korganizer.png -share/icons/crystalsvg/64x64/apps/kpackage.png -share/icons/crystalsvg/64x64/apps/kpat.png -share/icons/crystalsvg/64x64/apps/kpoker.png -share/icons/crystalsvg/64x64/apps/kppp.png -share/icons/crystalsvg/64x64/apps/kregexpeditor.png -share/icons/crystalsvg/64x64/apps/kreversi.png -share/icons/crystalsvg/64x64/apps/ksame.png -share/icons/crystalsvg/64x64/apps/kscd.png -share/icons/crystalsvg/64x64/apps/kscreensaver.png -share/icons/crystalsvg/64x64/apps/ksirtet.png -share/icons/crystalsvg/64x64/apps/ksnake.png -share/icons/crystalsvg/64x64/apps/ksokoban.png -share/icons/crystalsvg/64x64/apps/kspaceduel.png -share/icons/crystalsvg/64x64/apps/ksplash.png -share/icons/crystalsvg/64x64/apps/ksquares.png -share/icons/crystalsvg/64x64/apps/kstars.png -share/icons/crystalsvg/64x64/apps/ksysguard.png -share/icons/crystalsvg/64x64/apps/kthememgr.png -share/icons/crystalsvg/64x64/apps/ktip.png -share/icons/crystalsvg/64x64/apps/ktron.png -share/icons/crystalsvg/64x64/apps/kttsd.png -share/icons/crystalsvg/64x64/apps/ktuberling.png -share/icons/crystalsvg/64x64/apps/kturtle.png -share/icons/crystalsvg/64x64/apps/kuser.png -share/icons/crystalsvg/64x64/apps/kwalletmanager.png -share/icons/crystalsvg/64x64/apps/kwalletmanager2.png -share/icons/crystalsvg/64x64/apps/kwifimanager.png -share/icons/crystalsvg/64x64/apps/kwikdisk.png -share/icons/crystalsvg/64x64/apps/kwin4.png -share/icons/crystalsvg/64x64/apps/kwrite.png -share/icons/crystalsvg/64x64/apps/laptop_battery.png -share/icons/crystalsvg/64x64/apps/locale.png -share/icons/crystalsvg/64x64/apps/lskat.png -share/icons/crystalsvg/64x64/apps/meanwhile_protocol.png -share/icons/crystalsvg/64x64/apps/metabar.png -share/icons/crystalsvg/64x64/apps/mobile_phone.png -share/icons/crystalsvg/64x64/apps/msn_protocol.png -share/icons/crystalsvg/64x64/apps/networkmanager.png -share/icons/crystalsvg/64x64/apps/noatun.png -share/icons/crystalsvg/64x64/apps/okular.png -share/icons/crystalsvg/64x64/apps/package.png -share/icons/crystalsvg/64x64/apps/package_applications.png -share/icons/crystalsvg/64x64/apps/package_development.png -share/icons/crystalsvg/64x64/apps/package_favourite.png -share/icons/crystalsvg/64x64/apps/package_games.png -share/icons/crystalsvg/64x64/apps/package_multimedia.png -share/icons/crystalsvg/64x64/apps/package_network.png -share/icons/crystalsvg/64x64/apps/package_settings.png -share/icons/crystalsvg/64x64/apps/package_toys.png -share/icons/crystalsvg/64x64/apps/package_utilities.png -share/icons/crystalsvg/64x64/apps/password.png -share/icons/crystalsvg/64x64/apps/penguin.png -share/icons/crystalsvg/64x64/apps/personal.png -share/icons/crystalsvg/64x64/apps/preferences-desktop-multimedia.png -share/icons/crystalsvg/64x64/apps/preferences-desktop-theme.png -share/icons/crystalsvg/64x64/apps/preferences-system-power-management.png -share/icons/crystalsvg/64x64/apps/printmgr.png -share/icons/crystalsvg/64x64/apps/proxy.png -share/icons/crystalsvg/64x64/apps/qq_protocol.png -share/icons/crystalsvg/64x64/apps/randr.png -share/icons/crystalsvg/64x64/apps/samba.png -share/icons/crystalsvg/64x64/apps/sms_protocol.png -share/icons/crystalsvg/64x64/apps/staroffice.png -share/icons/crystalsvg/64x64/apps/style.png -share/icons/crystalsvg/64x64/apps/stylesheet.png -share/icons/crystalsvg/64x64/apps/superkaramba.png -share/icons/crystalsvg/64x64/apps/systemtray.png -share/icons/crystalsvg/64x64/apps/taskbar.png -share/icons/crystalsvg/64x64/apps/telepathy_protocol.png -share/icons/crystalsvg/64x64/apps/terminal.png -share/icons/crystalsvg/64x64/apps/testbed_protocol.png -share/icons/crystalsvg/64x64/apps/tux.png -share/icons/crystalsvg/64x64/apps/umbrello.png -share/icons/crystalsvg/64x64/apps/wp.png -share/icons/crystalsvg/64x64/apps/wp_protocol.png -share/icons/crystalsvg/64x64/apps/yahoo_protocol.png -share/icons/crystalsvg/64x64/devices/3floppy_mount.png -share/icons/crystalsvg/64x64/devices/3floppy_unmount.png -share/icons/crystalsvg/64x64/devices/5floppy_mount.png -share/icons/crystalsvg/64x64/devices/5floppy_unmount.png -share/icons/crystalsvg/64x64/devices/blockdevice.png -share/icons/crystalsvg/64x64/devices/camera_mount.png -share/icons/crystalsvg/64x64/devices/camera_unmount.png -share/icons/crystalsvg/64x64/devices/cdaudio_mount.png -share/icons/crystalsvg/64x64/devices/cdaudio_unmount.png -share/icons/crystalsvg/64x64/devices/cdrom_mount.png -share/icons/crystalsvg/64x64/devices/cdrom_unmount.png -share/icons/crystalsvg/64x64/devices/cdwriter_mount.png -share/icons/crystalsvg/64x64/devices/cdwriter_unmount.png -share/icons/crystalsvg/64x64/devices/chardevice.png -share/icons/crystalsvg/64x64/devices/compact_flash_mount.png -share/icons/crystalsvg/64x64/devices/compact_flash_unmount.png -share/icons/crystalsvg/64x64/devices/computer-laptop.png -share/icons/crystalsvg/64x64/devices/dvd_mount.png -share/icons/crystalsvg/64x64/devices/dvd_unmount.png -share/icons/crystalsvg/64x64/devices/hdd_mount.png -share/icons/crystalsvg/64x64/devices/hdd_unmount.png -share/icons/crystalsvg/64x64/devices/ipod_mount.png -share/icons/crystalsvg/64x64/devices/ipod_unmount.png -share/icons/crystalsvg/64x64/devices/joystick.png -share/icons/crystalsvg/64x64/devices/laptop.png -share/icons/crystalsvg/64x64/devices/memory.png -share/icons/crystalsvg/64x64/devices/memory_stick_mount.png -share/icons/crystalsvg/64x64/devices/memory_stick_unmount.png -share/icons/crystalsvg/64x64/devices/mo_mount.png -share/icons/crystalsvg/64x64/devices/mo_unmount.png -share/icons/crystalsvg/64x64/devices/mouse.png -share/icons/crystalsvg/64x64/devices/nfs_mount.png -share/icons/crystalsvg/64x64/devices/nfs_unmount.png -share/icons/crystalsvg/64x64/devices/pda_black.png -share/icons/crystalsvg/64x64/devices/pda_blue.png -share/icons/crystalsvg/64x64/devices/print_class.png -share/icons/crystalsvg/64x64/devices/printer1.png -share/icons/crystalsvg/64x64/devices/scanner.png -share/icons/crystalsvg/64x64/devices/sd_mmc_mount.png -share/icons/crystalsvg/64x64/devices/sd_mmc_unmount.png -share/icons/crystalsvg/64x64/devices/smart_media_mount.png -share/icons/crystalsvg/64x64/devices/smart_media_unmount.png -share/icons/crystalsvg/64x64/devices/system.png -share/icons/crystalsvg/64x64/devices/tablet.png -share/icons/crystalsvg/64x64/devices/tv.png -share/icons/crystalsvg/64x64/devices/usbpendrive_mount.png -share/icons/crystalsvg/64x64/devices/usbpendrive_unmount.png -share/icons/crystalsvg/64x64/devices/zip_mount.png -share/icons/crystalsvg/64x64/devices/zip_unmount.png -share/icons/crystalsvg/64x64/mimetypes/applix.png -share/icons/crystalsvg/64x64/mimetypes/ascii.png -share/icons/crystalsvg/64x64/mimetypes/binary.png -share/icons/crystalsvg/64x64/mimetypes/cdimage.png -share/icons/crystalsvg/64x64/mimetypes/cdr.png -share/icons/crystalsvg/64x64/mimetypes/cdtrack.png -share/icons/crystalsvg/64x64/mimetypes/colorscm.png -share/icons/crystalsvg/64x64/mimetypes/core.png -share/icons/crystalsvg/64x64/mimetypes/deb.png -share/icons/crystalsvg/64x64/mimetypes/document.png -share/icons/crystalsvg/64x64/mimetypes/document2.png -share/icons/crystalsvg/64x64/mimetypes/dvi.png -share/icons/crystalsvg/64x64/mimetypes/empty.png -share/icons/crystalsvg/64x64/mimetypes/encrypted.png -share/icons/crystalsvg/64x64/mimetypes/exec_wine.png -share/icons/crystalsvg/64x64/mimetypes/font.png -share/icons/crystalsvg/64x64/mimetypes/font_bitmap.png -share/icons/crystalsvg/64x64/mimetypes/font_truetype.png -share/icons/crystalsvg/64x64/mimetypes/font_type1.png -share/icons/crystalsvg/64x64/mimetypes/gf.png -share/icons/crystalsvg/64x64/mimetypes/html.png -share/icons/crystalsvg/64x64/mimetypes/image.png -share/icons/crystalsvg/64x64/mimetypes/info.png -share/icons/crystalsvg/64x64/mimetypes/karbon_karbon.png -share/icons/crystalsvg/64x64/mimetypes/kchart_chrt.png -share/icons/crystalsvg/64x64/mimetypes/kformula_kfo.png -share/icons/crystalsvg/64x64/mimetypes/kig_doc.png -share/icons/crystalsvg/64x64/mimetypes/kivio_flw.png -share/icons/crystalsvg/64x64/mimetypes/kmultiple.png -share/icons/crystalsvg/64x64/mimetypes/koffice.png -share/icons/crystalsvg/64x64/mimetypes/kpresenter_kpr.png -share/icons/crystalsvg/64x64/mimetypes/krita_kra.png -share/icons/crystalsvg/64x64/mimetypes/kspread_ksp.png -share/icons/crystalsvg/64x64/mimetypes/kugar_kud.png -share/icons/crystalsvg/64x64/mimetypes/kword_kwd.png -share/icons/crystalsvg/64x64/mimetypes/log.png -share/icons/crystalsvg/64x64/mimetypes/make.png -share/icons/crystalsvg/64x64/mimetypes/man.png -share/icons/crystalsvg/64x64/mimetypes/message.png -share/icons/crystalsvg/64x64/mimetypes/metafont.png -share/icons/crystalsvg/64x64/mimetypes/midi.png -share/icons/crystalsvg/64x64/mimetypes/misc.png -share/icons/crystalsvg/64x64/mimetypes/mozilla_doc.png -share/icons/crystalsvg/64x64/mimetypes/netscape_doc.png -share/icons/crystalsvg/64x64/mimetypes/pdf.png -share/icons/crystalsvg/64x64/mimetypes/pk.png -share/icons/crystalsvg/64x64/mimetypes/postscript.png -share/icons/crystalsvg/64x64/mimetypes/quicktime.png -share/icons/crystalsvg/64x64/mimetypes/readme.png -share/icons/crystalsvg/64x64/mimetypes/recycled.png -share/icons/crystalsvg/64x64/mimetypes/resource.png -share/icons/crystalsvg/64x64/mimetypes/rpm.png -share/icons/crystalsvg/64x64/mimetypes/shellscript.png -share/icons/crystalsvg/64x64/mimetypes/soffice.png -share/icons/crystalsvg/64x64/mimetypes/sound.png -share/icons/crystalsvg/64x64/mimetypes/source.png -share/icons/crystalsvg/64x64/mimetypes/source_c.png -share/icons/crystalsvg/64x64/mimetypes/source_cpp.png -share/icons/crystalsvg/64x64/mimetypes/source_f.png -share/icons/crystalsvg/64x64/mimetypes/source_h.png -share/icons/crystalsvg/64x64/mimetypes/source_j.png -share/icons/crystalsvg/64x64/mimetypes/source_java.png -share/icons/crystalsvg/64x64/mimetypes/source_l.png -share/icons/crystalsvg/64x64/mimetypes/source_moc.png -share/icons/crystalsvg/64x64/mimetypes/source_o.png -share/icons/crystalsvg/64x64/mimetypes/source_p.png -share/icons/crystalsvg/64x64/mimetypes/source_php.png -share/icons/crystalsvg/64x64/mimetypes/source_pl.png -share/icons/crystalsvg/64x64/mimetypes/source_py.png -share/icons/crystalsvg/64x64/mimetypes/source_s.png -share/icons/crystalsvg/64x64/mimetypes/source_y.png -share/icons/crystalsvg/64x64/mimetypes/spreadsheet.png -share/icons/crystalsvg/64x64/mimetypes/superkaramba_theme.png -share/icons/crystalsvg/64x64/mimetypes/tar.png -share/icons/crystalsvg/64x64/mimetypes/template_source.png -share/icons/crystalsvg/64x64/mimetypes/tex.png -share/icons/crystalsvg/64x64/mimetypes/tgz.png -share/icons/crystalsvg/64x64/mimetypes/txt.png -share/icons/crystalsvg/64x64/mimetypes/txt2.png -share/icons/crystalsvg/64x64/mimetypes/umbrellofile.png -share/icons/crystalsvg/64x64/mimetypes/unknown.png -share/icons/crystalsvg/64x64/mimetypes/vcalendar.png -share/icons/crystalsvg/64x64/mimetypes/vcard.png -share/icons/crystalsvg/64x64/mimetypes/vectorgfx.png -share/icons/crystalsvg/64x64/mimetypes/video.png -share/icons/crystalsvg/64x64/mimetypes/widget_doc.png -share/icons/crystalsvg/64x64/mimetypes/wordprocessing.png -share/icons/crystalsvg/64x64/mimetypes/zip.png -share/icons/crystalsvg/index.theme -share/icons/crystalsvg/scalable/actions/about_kde.svgz -share/icons/crystalsvg/scalable/actions/account_offline_overlay.svgz -share/icons/crystalsvg/scalable/actions/altkey.svgz -share/icons/crystalsvg/scalable/actions/application-exit.svgz -share/icons/crystalsvg/scalable/actions/calculate.svgz -share/icons/crystalsvg/scalable/actions/capskey.svgz -share/icons/crystalsvg/scalable/actions/chemical.svgz -share/icons/crystalsvg/scalable/actions/colorpicker.svgz -share/icons/crystalsvg/scalable/actions/configure.svgz -share/icons/crystalsvg/scalable/actions/contents2.svgz -share/icons/crystalsvg/scalable/actions/controlkey.svgz -share/icons/crystalsvg/scalable/actions/dialog-close.svgz -share/icons/crystalsvg/scalable/actions/document-new.svgz -share/icons/crystalsvg/scalable/actions/document-open.svgz -share/icons/crystalsvg/scalable/actions/document-print-preview.svgz -share/icons/crystalsvg/scalable/actions/document-print.svgz -share/icons/crystalsvg/scalable/actions/elempic.svgz -share/icons/crystalsvg/scalable/actions/energies.svgz -share/icons/crystalsvg/scalable/actions/eqchem.svgz -share/icons/crystalsvg/scalable/actions/eraser.svgz -share/icons/crystalsvg/scalable/actions/error.svgz -share/icons/crystalsvg/scalable/actions/format-text-bold.svgz -share/icons/crystalsvg/scalable/actions/format-text-italic.svgz -share/icons/crystalsvg/scalable/actions/format-text-strikethrough.svgz -share/icons/crystalsvg/scalable/actions/format-text-underline.svgz -share/icons/crystalsvg/scalable/actions/frameprint.svgz -share/icons/crystalsvg/scalable/actions/glossary.svgz -share/icons/crystalsvg/scalable/actions/go-bottom.svgz -share/icons/crystalsvg/scalable/actions/go-down.svgz -share/icons/crystalsvg/scalable/actions/go-first.svgz -share/icons/crystalsvg/scalable/actions/go-home.svgz -share/icons/crystalsvg/scalable/actions/go-last.svgz -share/icons/crystalsvg/scalable/actions/go-next-document.svgz -share/icons/crystalsvg/scalable/actions/go-next.svgz -share/icons/crystalsvg/scalable/actions/go-previous-document.svgz -share/icons/crystalsvg/scalable/actions/go-previous.svgz -share/icons/crystalsvg/scalable/actions/go-top.svgz -share/icons/crystalsvg/scalable/actions/go-up.svgz -share/icons/crystalsvg/scalable/actions/hyperkey.svgz -share/icons/crystalsvg/scalable/actions/info.svgz -share/icons/crystalsvg/scalable/actions/isotopemap.svgz -share/icons/crystalsvg/scalable/actions/kalzium_molviewer.svgz -share/icons/crystalsvg/scalable/actions/kalzium_rs.svgz -share/icons/crystalsvg/scalable/actions/kalzium_tables.svgz -share/icons/crystalsvg/scalable/actions/kbruch_exercise_common.svg -share/icons/crystalsvg/scalable/actions/kbruch_exercise_compare.svg -share/icons/crystalsvg/scalable/actions/kbruch_exercise_conversion.svg -share/icons/crystalsvg/scalable/actions/kbruch_exercise_factorisation.svg -share/icons/crystalsvg/scalable/actions/kbstate_mouse.svgz -share/icons/crystalsvg/scalable/actions/kbstate_mouse_left.svgz -share/icons/crystalsvg/scalable/actions/kbstate_mouse_left_selected.svgz -share/icons/crystalsvg/scalable/actions/kbstate_mouse_mid.svgz -share/icons/crystalsvg/scalable/actions/kbstate_mouse_mid_selected.svgz -share/icons/crystalsvg/scalable/actions/kbstate_mouse_right.svgz -share/icons/crystalsvg/scalable/actions/kbstate_mouse_right_selected.svgz -share/icons/crystalsvg/scalable/actions/kbstate_slowkeys.svgz -share/icons/crystalsvg/scalable/actions/kbstate_stickykeys.svgz -share/icons/crystalsvg/scalable/actions/key.svgz -share/icons/crystalsvg/scalable/actions/keypressno.svgz -share/icons/crystalsvg/scalable/actions/keypressok.svgz -share/icons/crystalsvg/scalable/actions/klettres_desert.svgz -share/icons/crystalsvg/scalable/actions/klettres_grownup.svgz -share/icons/crystalsvg/scalable/actions/klettres_kids.svgz -share/icons/crystalsvg/scalable/actions/lastmoves.svgz -share/icons/crystalsvg/scalable/actions/launch.svgz -share/icons/crystalsvg/scalable/actions/legalmoves.svgz -share/icons/crystalsvg/scalable/actions/list-add.svgz -share/icons/crystalsvg/scalable/actions/list-remove.svgz -share/icons/crystalsvg/scalable/actions/lockkey.svgz -share/icons/crystalsvg/scalable/actions/mail-message-new.svgz -share/icons/crystalsvg/scalable/actions/mail_generic.svgz -share/icons/crystalsvg/scalable/actions/mail_get.svgz -share/icons/crystalsvg/scalable/actions/mail_get_all.svg -share/icons/crystalsvg/scalable/actions/mail_ignore.svgz -share/icons/crystalsvg/scalable/actions/mail_post_to.svgz -share/icons/crystalsvg/scalable/actions/media-eject.svgz -share/icons/crystalsvg/scalable/actions/media-playback-pause.svgz -share/icons/crystalsvg/scalable/actions/media-playback-start.svgz -share/icons/crystalsvg/scalable/actions/media-playback-stop.svgz -share/icons/crystalsvg/scalable/actions/media-seek-backward.svgz -share/icons/crystalsvg/scalable/actions/media-seek-forward.svgz -share/icons/crystalsvg/scalable/actions/media-skip-backward.svgz -share/icons/crystalsvg/scalable/actions/metakey.svgz -share/icons/crystalsvg/scalable/actions/misc.svgz -share/icons/crystalsvg/scalable/actions/numbers.svgz -share/icons/crystalsvg/scalable/actions/object-rotate-left.svgz -share/icons/crystalsvg/scalable/actions/object-rotate-right.svgz -share/icons/crystalsvg/scalable/actions/online_status.svgz -share/icons/crystalsvg/scalable/actions/orbits.svgz -share/icons/crystalsvg/scalable/actions/overview.svgz -share/icons/crystalsvg/scalable/actions/player_next.svgz -share/icons/crystalsvg/scalable/actions/plot.svgz -share/icons/crystalsvg/scalable/actions/process-stop.svgz -share/icons/crystalsvg/scalable/actions/reload_all_tabs.svgz -share/icons/crystalsvg/scalable/actions/reload_page.svgz -share/icons/crystalsvg/scalable/actions/rotate.svgz -share/icons/crystalsvg/scalable/actions/share.svgz -share/icons/crystalsvg/scalable/actions/shiftkey.svgz -share/icons/crystalsvg/scalable/actions/sidebar.svgz -share/icons/crystalsvg/scalable/actions/spectrum.svgz -share/icons/crystalsvg/scalable/actions/statematter.svgz -share/icons/crystalsvg/scalable/actions/superkey.svgz -share/icons/crystalsvg/scalable/actions/svn_add.svgz -share/icons/crystalsvg/scalable/actions/svn_branch.svgz -share/icons/crystalsvg/scalable/actions/svn_merge.svgz -share/icons/crystalsvg/scalable/actions/svn_remove.svgz -share/icons/crystalsvg/scalable/actions/svn_status.svgz -share/icons/crystalsvg/scalable/actions/svn_switch.svgz -share/icons/crystalsvg/scalable/actions/switchuser.svgz -share/icons/crystalsvg/scalable/actions/system-lock-screen.svgz -share/icons/crystalsvg/scalable/actions/text_bild.svgz -share/icons/crystalsvg/scalable/actions/text_sub.svgz -share/icons/crystalsvg/scalable/actions/text_super.svgz -share/icons/crystalsvg/scalable/actions/timeline.svgz -share/icons/crystalsvg/scalable/actions/tooltip.svgz -share/icons/crystalsvg/scalable/actions/unlatched.svgz -share/icons/crystalsvg/scalable/actions/vcs_add.svgz -share/icons/crystalsvg/scalable/actions/vcs_commit.svgz -share/icons/crystalsvg/scalable/actions/vcs_diff.svgz -share/icons/crystalsvg/scalable/actions/vcs_remove.svgz -share/icons/crystalsvg/scalable/actions/vcs_status.svgz -share/icons/crystalsvg/scalable/actions/vcs_update.svgz -share/icons/crystalsvg/scalable/actions/view-refresh.svgz -share/icons/crystalsvg/scalable/actions/window_duplicate.svgz -share/icons/crystalsvg/scalable/actions/wizard.svgz -share/icons/crystalsvg/scalable/apps/access.svgz -share/icons/crystalsvg/scalable/apps/akregator.svgz -share/icons/crystalsvg/scalable/apps/ark.svgz -share/icons/crystalsvg/scalable/apps/background.svgz -share/icons/crystalsvg/scalable/apps/bell.svgz -share/icons/crystalsvg/scalable/apps/blinken.svgz -share/icons/crystalsvg/scalable/apps/colors.svgz -share/icons/crystalsvg/scalable/apps/date.svgz -share/icons/crystalsvg/scalable/apps/fifteenpieces.svgz -share/icons/crystalsvg/scalable/apps/fonts.svgz -share/icons/crystalsvg/scalable/apps/hwinfo.svgz -share/icons/crystalsvg/scalable/apps/ieee1394.svgz -share/icons/crystalsvg/scalable/apps/kalzium.svgz -share/icons/crystalsvg/scalable/apps/kanagram.svgz -share/icons/crystalsvg/scalable/apps/kate2.svgz -share/icons/crystalsvg/scalable/apps/kbinaryclock.svgz -share/icons/crystalsvg/scalable/apps/kbruch.svgz -share/icons/crystalsvg/scalable/apps/kcalc.svgz -share/icons/crystalsvg/scalable/apps/kcmdevices.svgz -share/icons/crystalsvg/scalable/apps/kcmkwm.svgz -share/icons/crystalsvg/scalable/apps/kcmx.svgz -share/icons/crystalsvg/scalable/apps/kdeprintfax.svgz -share/icons/crystalsvg/scalable/apps/kdict.svgz -share/icons/crystalsvg/scalable/apps/kdvi.svgz -share/icons/crystalsvg/scalable/apps/kfax.svgz -share/icons/crystalsvg/scalable/apps/kfaxview.svgz -share/icons/crystalsvg/scalable/apps/kfontview.svgz -share/icons/crystalsvg/scalable/apps/kgeography.svgz -share/icons/crystalsvg/scalable/apps/khangman.svgz -share/icons/crystalsvg/scalable/apps/khelpcenter.svgz -share/icons/crystalsvg/scalable/apps/kig.svgz -share/icons/crystalsvg/scalable/apps/kiten.svgz -share/icons/crystalsvg/scalable/apps/kjobviewer.svgz -share/icons/crystalsvg/scalable/apps/klatin.svgz -share/icons/crystalsvg/scalable/apps/klettres.svgz -share/icons/crystalsvg/scalable/apps/klipper.svgz -share/icons/crystalsvg/scalable/apps/kmail.svgz -share/icons/crystalsvg/scalable/apps/kmenu.svgz -share/icons/crystalsvg/scalable/apps/kmplot.svgz -share/icons/crystalsvg/scalable/apps/knetattach.svgz -share/icons/crystalsvg/scalable/apps/knetwalk.svgz -share/icons/crystalsvg/scalable/apps/kolourpaint.svgz -share/icons/crystalsvg/scalable/apps/kompare.svgz -share/icons/crystalsvg/scalable/apps/konqueror.svgz -share/icons/crystalsvg/scalable/apps/konsole.svgz -share/icons/crystalsvg/scalable/apps/kopete2.svgz -share/icons/crystalsvg/scalable/apps/kpercentage.svgz -share/icons/crystalsvg/scalable/apps/ksnapshot.svgz -share/icons/crystalsvg/scalable/apps/kstars.svgz -share/icons/crystalsvg/scalable/apps/ktip.svgz -share/icons/crystalsvg/scalable/apps/ktouch.svgz -share/icons/crystalsvg/scalable/apps/kttsd.svgz -share/icons/crystalsvg/scalable/apps/kturtle.svgz -share/icons/crystalsvg/scalable/apps/kwifimanager.svgz -share/icons/crystalsvg/scalable/apps/kwrite2.svgz -share/icons/crystalsvg/scalable/apps/laptop_battery.svgz -share/icons/crystalsvg/scalable/apps/locale.svgz -share/icons/crystalsvg/scalable/apps/meanwhile_protocol.svgz -share/icons/crystalsvg/scalable/apps/metabar.svgz -share/icons/crystalsvg/scalable/apps/okular.svgz -share/icons/crystalsvg/scalable/apps/package_development.svgz -share/icons/crystalsvg/scalable/apps/package_toys.svgz -share/icons/crystalsvg/scalable/apps/preferences-system-power-management.svgz -share/icons/crystalsvg/scalable/apps/printmgr.svgz -share/icons/crystalsvg/scalable/apps/samba.svgz -share/icons/crystalsvg/scalable/apps/superkaramba.svgz -share/icons/crystalsvg/scalable/apps/umbrello.svgz -share/icons/crystalsvg/scalable/apps/xapp.svgz -share/icons/crystalsvg/scalable/devices/3floppy_mount.svgz -share/icons/crystalsvg/scalable/devices/3floppy_unmount.svgz -share/icons/crystalsvg/scalable/devices/5floppy_mount.svgz -share/icons/crystalsvg/scalable/devices/5floppy_unmount.svgz -share/icons/crystalsvg/scalable/devices/blockdevice.svgz -share/icons/crystalsvg/scalable/devices/camera_mount.svgz -share/icons/crystalsvg/scalable/devices/camera_unmount.svgz -share/icons/crystalsvg/scalable/devices/cdaudio_mount.svgz -share/icons/crystalsvg/scalable/devices/cdaudio_unmount.svgz -share/icons/crystalsvg/scalable/devices/cdrom_mount.svgz -share/icons/crystalsvg/scalable/devices/cdrom_unmount.svgz -share/icons/crystalsvg/scalable/devices/cdwriter_mount.svgz -share/icons/crystalsvg/scalable/devices/cdwriter_unmount.svgz -share/icons/crystalsvg/scalable/devices/chardevice.svgz -share/icons/crystalsvg/scalable/devices/compact_flash_mount.svgz -share/icons/crystalsvg/scalable/devices/compact_flash_unmount.svgz -share/icons/crystalsvg/scalable/devices/computer-laptop.svgz -share/icons/crystalsvg/scalable/devices/dvd_mount.svgz -share/icons/crystalsvg/scalable/devices/dvd_unmount.svgz -share/icons/crystalsvg/scalable/devices/hdd_mount.svgz -share/icons/crystalsvg/scalable/devices/hdd_unmount.svgz -share/icons/crystalsvg/scalable/devices/ipod_mount.svgz -share/icons/crystalsvg/scalable/devices/ipod_unmount.svgz -share/icons/crystalsvg/scalable/devices/joystick.svgz -share/icons/crystalsvg/scalable/devices/memory.svgz -share/icons/crystalsvg/scalable/devices/memory_stick_mount.svgz -share/icons/crystalsvg/scalable/devices/memory_stick_unmount.svgz -share/icons/crystalsvg/scalable/devices/mo_mount.svgz -share/icons/crystalsvg/scalable/devices/mo_umount.svgz -share/icons/crystalsvg/scalable/devices/mo_unmount.svgz -share/icons/crystalsvg/scalable/devices/mouse.svgz -share/icons/crystalsvg/scalable/devices/nfs_mount.svgz -share/icons/crystalsvg/scalable/devices/nfs_unmount.svgz -share/icons/crystalsvg/scalable/devices/pda_black.svgz -share/icons/crystalsvg/scalable/devices/pda_blue.svgz -share/icons/crystalsvg/scalable/devices/print_class.svgz -share/icons/crystalsvg/scalable/devices/printer1.svgz -share/icons/crystalsvg/scalable/devices/scanner.svgz -share/icons/crystalsvg/scalable/devices/sd_mmc_mount.svgz -share/icons/crystalsvg/scalable/devices/sd_mmc_unmount.svgz -share/icons/crystalsvg/scalable/devices/smartmedia_mount.svgz -share/icons/crystalsvg/scalable/devices/smartmedia_unmount.svgz -share/icons/crystalsvg/scalable/devices/system.svgz -share/icons/crystalsvg/scalable/devices/tablet.svgz -share/icons/crystalsvg/scalable/devices/tv.svgz -share/icons/crystalsvg/scalable/devices/usbpendrive_mount.svgz -share/icons/crystalsvg/scalable/devices/usbpendrive_unmount.svgz -share/icons/crystalsvg/scalable/devices/zip_mount.svgz -share/icons/crystalsvg/scalable/devices/zip_unmount.svgz -share/icons/crystalsvg/scalable/mimetypes/applix.svgz -share/icons/crystalsvg/scalable/mimetypes/ascii.svgz -share/icons/crystalsvg/scalable/mimetypes/binary.svgz -share/icons/crystalsvg/scalable/mimetypes/cdimage.svgz -share/icons/crystalsvg/scalable/mimetypes/cdr.svgz -share/icons/crystalsvg/scalable/mimetypes/cdtrack.svgz -share/icons/crystalsvg/scalable/mimetypes/colorscm.svgz -share/icons/crystalsvg/scalable/mimetypes/core.svgz -share/icons/crystalsvg/scalable/mimetypes/deb.svgz -share/icons/crystalsvg/scalable/mimetypes/document.svgz -share/icons/crystalsvg/scalable/mimetypes/document2.svgz -share/icons/crystalsvg/scalable/mimetypes/dvi.svgz -share/icons/crystalsvg/scalable/mimetypes/empty.svgz -share/icons/crystalsvg/scalable/mimetypes/encrypted.svgz -share/icons/crystalsvg/scalable/mimetypes/exec_wine.svgz -share/icons/crystalsvg/scalable/mimetypes/file_locked.svgz -share/icons/crystalsvg/scalable/mimetypes/file_temporary.svgz -share/icons/crystalsvg/scalable/mimetypes/font.svgz -share/icons/crystalsvg/scalable/mimetypes/font_bitmap.svgz -share/icons/crystalsvg/scalable/mimetypes/font_truetype.svgz -share/icons/crystalsvg/scalable/mimetypes/font_type1.svgz -share/icons/crystalsvg/scalable/mimetypes/gf.svgz -share/icons/crystalsvg/scalable/mimetypes/html.svgz -share/icons/crystalsvg/scalable/mimetypes/image.svgz -share/icons/crystalsvg/scalable/mimetypes/image2.svgz -share/icons/crystalsvg/scalable/mimetypes/karbon_karbon.svgz -share/icons/crystalsvg/scalable/mimetypes/kexi_kexi.svgz -share/icons/crystalsvg/scalable/mimetypes/kig_doc.svgz -share/icons/crystalsvg/scalable/mimetypes/kmultiple.svgz -share/icons/crystalsvg/scalable/mimetypes/koffice.svgz -share/icons/crystalsvg/scalable/mimetypes/kugardata.svgz -share/icons/crystalsvg/scalable/mimetypes/log.svgz -share/icons/crystalsvg/scalable/mimetypes/make.svgz -share/icons/crystalsvg/scalable/mimetypes/man.svgz -share/icons/crystalsvg/scalable/mimetypes/message.svgz -share/icons/crystalsvg/scalable/mimetypes/metafont.svgz -share/icons/crystalsvg/scalable/mimetypes/mozilla_doc.svgz -share/icons/crystalsvg/scalable/mimetypes/netscape_doc.svgz -share/icons/crystalsvg/scalable/mimetypes/pdf.svgz -share/icons/crystalsvg/scalable/mimetypes/pk.svgz -share/icons/crystalsvg/scalable/mimetypes/postscript.svgz -share/icons/crystalsvg/scalable/mimetypes/quicktime.svgz -share/icons/crystalsvg/scalable/mimetypes/readme.svgz -share/icons/crystalsvg/scalable/mimetypes/recycled.svgz -share/icons/crystalsvg/scalable/mimetypes/resource.svgz -share/icons/crystalsvg/scalable/mimetypes/rpm.svgz -share/icons/crystalsvg/scalable/mimetypes/shellscript.svgz -share/icons/crystalsvg/scalable/mimetypes/soffice.svgz -share/icons/crystalsvg/scalable/mimetypes/sound.svgz -share/icons/crystalsvg/scalable/mimetypes/source.svgz -share/icons/crystalsvg/scalable/mimetypes/source_c.svgz -share/icons/crystalsvg/scalable/mimetypes/source_cpp.svgz -share/icons/crystalsvg/scalable/mimetypes/source_f.svgz -share/icons/crystalsvg/scalable/mimetypes/source_h.svgz -share/icons/crystalsvg/scalable/mimetypes/source_j.svgz -share/icons/crystalsvg/scalable/mimetypes/source_java.svgz -share/icons/crystalsvg/scalable/mimetypes/source_l.svgz -share/icons/crystalsvg/scalable/mimetypes/source_moc.svgz -share/icons/crystalsvg/scalable/mimetypes/source_o.svgz -share/icons/crystalsvg/scalable/mimetypes/source_p.svgz -share/icons/crystalsvg/scalable/mimetypes/source_php.svgz -share/icons/crystalsvg/scalable/mimetypes/source_pl.svgz -share/icons/crystalsvg/scalable/mimetypes/source_py.svgz -share/icons/crystalsvg/scalable/mimetypes/source_s.svgz -share/icons/crystalsvg/scalable/mimetypes/source_y.svgz -share/icons/crystalsvg/scalable/mimetypes/spreadsheet.svgz -share/icons/crystalsvg/scalable/mimetypes/superkaramba_theme.svgz -share/icons/crystalsvg/scalable/mimetypes/tar.svgz -share/icons/crystalsvg/scalable/mimetypes/tex.svgz -share/icons/crystalsvg/scalable/mimetypes/tgz.svgz -share/icons/crystalsvg/scalable/mimetypes/txt.svgz -share/icons/crystalsvg/scalable/mimetypes/txt2.svgz -share/icons/crystalsvg/scalable/mimetypes/umbrellofile.svgz -share/icons/crystalsvg/scalable/mimetypes/unknown.svgz -share/icons/crystalsvg/scalable/mimetypes/vcalendar.svgz -share/icons/crystalsvg/scalable/mimetypes/vcard.svgz -share/icons/crystalsvg/scalable/mimetypes/vectorgfx.svgz -share/icons/crystalsvg/scalable/mimetypes/video.svgz -share/icons/crystalsvg/scalable/mimetypes/widget_doc.svgz -share/icons/crystalsvg/scalable/mimetypes/wordprocessing.svgz -share/icons/crystalsvg/scalable/mimetypes/zip.svgz -share/icons/ikons/16x16/actions/1day.png -share/icons/ikons/16x16/actions/1downarrow.png -share/icons/ikons/16x16/actions/1leftarrow.png -share/icons/ikons/16x16/actions/1rightarrow.png -share/icons/ikons/16x16/actions/1uparrow.png -share/icons/ikons/16x16/actions/2downarrow.png -share/icons/ikons/16x16/actions/2leftarrow.png -share/icons/ikons/16x16/actions/2rightarrow.png -share/icons/ikons/16x16/actions/2uparrow.png -share/icons/ikons/16x16/actions/3downarrow.png -share/icons/ikons/16x16/actions/3uparrow.png -share/icons/ikons/16x16/actions/5days.png -share/icons/ikons/16x16/actions/7days.png -share/icons/ikons/16x16/actions/appointment-new.png -share/icons/ikons/16x16/actions/bookmark-new.png -share/icons/ikons/16x16/actions/bookmark_folder.png -share/icons/ikons/16x16/actions/curfiledir.png -share/icons/ikons/16x16/actions/document-new.png -share/icons/ikons/16x16/actions/document-open.png -share/icons/ikons/16x16/actions/document-print-preview.png -share/icons/ikons/16x16/actions/document-print.png -share/icons/ikons/16x16/actions/document-save-as.png -share/icons/ikons/16x16/actions/document-save.png -share/icons/ikons/16x16/actions/edit-copy.png -share/icons/ikons/16x16/actions/edit-cut.png -share/icons/ikons/16x16/actions/edit-delete.png -share/icons/ikons/16x16/actions/edit-find.png -share/icons/ikons/16x16/actions/edit-paste.png -share/icons/ikons/16x16/actions/edit-redo.png -share/icons/ikons/16x16/actions/edit-undo.png -share/icons/ikons/16x16/actions/edit_add.png -share/icons/ikons/16x16/actions/edit_remove.png -share/icons/ikons/16x16/actions/filefind.png -share/icons/ikons/16x16/actions/folder-new.png -share/icons/ikons/16x16/actions/frameprint.png -share/icons/ikons/16x16/actions/go-down.png -share/icons/ikons/16x16/actions/go-next.png -share/icons/ikons/16x16/actions/go-previous.png -share/icons/ikons/16x16/actions/go-up.png -share/icons/ikons/16x16/actions/hotsync.png -share/icons/ikons/16x16/actions/hotsync_busy.png -share/icons/ikons/16x16/actions/kde1.png -share/icons/ikons/16x16/actions/kde2.png -share/icons/ikons/16x16/actions/kde3.png -share/icons/ikons/16x16/actions/kde4.png -share/icons/ikons/16x16/actions/kde5.png -share/icons/ikons/16x16/actions/kde6.png -share/icons/ikons/16x16/actions/kill.png -share/icons/ikons/16x16/actions/list.png -share/icons/ikons/16x16/actions/mail_generic.png -share/icons/ikons/16x16/actions/media-eject.png -share/icons/ikons/16x16/actions/media-playback-pause.png -share/icons/ikons/16x16/actions/media-playback-stop.png -share/icons/ikons/16x16/actions/media-skip-backward.png -share/icons/ikons/16x16/actions/media-skip-forward.png -share/icons/ikons/16x16/actions/month.png -share/icons/ikons/16x16/actions/noatunback.png -share/icons/ikons/16x16/actions/noatunforward.png -share/icons/ikons/16x16/actions/noatunloopnone.png -share/icons/ikons/16x16/actions/noatunpause.png -share/icons/ikons/16x16/actions/noatunplay.png -share/icons/ikons/16x16/actions/noatunplaylist.png -share/icons/ikons/16x16/actions/noatunstop.png -share/icons/ikons/16x16/actions/process-stop.png -share/icons/ikons/16x16/actions/recycle.png -share/icons/ikons/16x16/actions/save_all.png -share/icons/ikons/16x16/actions/stop_hand.png -share/icons/ikons/16x16/actions/system-run.png -share/icons/ikons/16x16/actions/tandwiel_folder.png -share/icons/ikons/16x16/actions/today.png -share/icons/ikons/16x16/actions/todo.png -share/icons/ikons/16x16/actions/view-refresh.png -share/icons/ikons/16x16/actions/view_bottom.png -share/icons/ikons/16x16/actions/view_right.png -share/icons/ikons/16x16/actions/whatsnext.png -share/icons/ikons/16x16/actions/window-new.png -share/icons/ikons/16x16/actions/wizard.png -share/icons/ikons/16x16/actions/zoom-in.png -share/icons/ikons/16x16/actions/zoom-out.png -share/icons/ikons/16x16/actions/zoom.png -share/icons/ikons/16x16/apps/exec.png -share/icons/ikons/16x16/apps/gimp.png -share/icons/ikons/16x16/apps/go_old.png -share/icons/ikons/16x16/apps/kandy.png -share/icons/ikons/16x16/apps/kcontrol.png -share/icons/ikons/16x16/apps/kdisknav.png -share/icons/ikons/16x16/apps/kjobviewer.png -share/icons/ikons/16x16/apps/kljettool.png -share/icons/ikons/16x16/apps/klpq.png -share/icons/ikons/16x16/apps/konqsidebar_mediaplayer.png -share/icons/ikons/16x16/apps/konsole.png -share/icons/ikons/16x16/apps/kpilot.png -share/icons/ikons/16x16/apps/noatun.png -share/icons/ikons/16x16/apps/printer1.png -share/icons/ikons/16x16/apps/printer2.png -share/icons/ikons/16x16/apps/printmgr.png -share/icons/ikons/16x16/apps/wcspeedtouch.png -share/icons/ikons/16x16/devices/3floppy_mount.png -share/icons/ikons/16x16/devices/3floppy_unmount.png -share/icons/ikons/16x16/devices/5floppy_mount.png -share/icons/ikons/16x16/devices/5floppy_unmount.png -share/icons/ikons/16x16/devices/cdaudio_mount.png -share/icons/ikons/16x16/devices/cdaudio_unmount.png -share/icons/ikons/16x16/devices/cdrom_mount.png -share/icons/ikons/16x16/devices/cdrom_unmount.png -share/icons/ikons/16x16/devices/cdwriter_mount.png -share/icons/ikons/16x16/devices/cdwriter_unmount.png -share/icons/ikons/16x16/devices/dvd_mount.png -share/icons/ikons/16x16/devices/dvd_unmount.png -share/icons/ikons/16x16/devices/mo_mount.png -share/icons/ikons/16x16/devices/mo_unmount.png -share/icons/ikons/16x16/devices/mp3_player.png -share/icons/ikons/16x16/devices/pda.png -share/icons/ikons/16x16/devices/phone.png -share/icons/ikons/16x16/devices/speedtouch_ADSL_modem.png -share/icons/ikons/16x16/devices/zip_mount.png -share/icons/ikons/16x16/devices/zip_unmount.png -share/icons/ikons/16x16/mimetypes/image.png -share/icons/ikons/22x22/actions/1day.png -share/icons/ikons/22x22/actions/1leftarrow.png -share/icons/ikons/22x22/actions/1rightarrow.png -share/icons/ikons/22x22/actions/5days.png -share/icons/ikons/22x22/actions/7days.png -share/icons/ikons/22x22/actions/alarmd.png -share/icons/ikons/22x22/actions/appointment-new.png -share/icons/ikons/22x22/actions/ark_adddir.png -share/icons/ikons/22x22/actions/ark_addfile.png -share/icons/ikons/22x22/actions/ark_delete.png -share/icons/ikons/22x22/actions/ark_extract.png -share/icons/ikons/22x22/actions/ark_selectall.png -share/icons/ikons/22x22/actions/ark_view.png -share/icons/ikons/22x22/actions/document-new.png -share/icons/ikons/22x22/actions/document-open.png -share/icons/ikons/22x22/actions/document-print-preview.png -share/icons/ikons/22x22/actions/document-print.png -share/icons/ikons/22x22/actions/document-save-as.png -share/icons/ikons/22x22/actions/document-save.png -share/icons/ikons/22x22/actions/edit-copy.png -share/icons/ikons/22x22/actions/edit-cut.png -share/icons/ikons/22x22/actions/edit-delete.png -share/icons/ikons/22x22/actions/edit-find.png -share/icons/ikons/22x22/actions/edit-paste.png -share/icons/ikons/22x22/actions/edit-redo.png -share/icons/ikons/22x22/actions/edit-undo.png -share/icons/ikons/22x22/actions/edit_add.png -share/icons/ikons/22x22/actions/edit_remove.png -share/icons/ikons/22x22/actions/filefind.png -share/icons/ikons/22x22/actions/folder-new.png -share/icons/ikons/22x22/actions/frameprint.png -share/icons/ikons/22x22/actions/go-down.png -share/icons/ikons/22x22/actions/go-first.png -share/icons/ikons/22x22/actions/go-last.png -share/icons/ikons/22x22/actions/go-next.png -share/icons/ikons/22x22/actions/go-previous.png -share/icons/ikons/22x22/actions/go-up.png -share/icons/ikons/22x22/actions/hotsync.png -share/icons/ikons/22x22/actions/hotsync_busy.png -share/icons/ikons/22x22/actions/kill.png -share/icons/ikons/22x22/actions/list.png -share/icons/ikons/22x22/actions/mail_generic.png -share/icons/ikons/22x22/actions/mail_get.png -share/icons/ikons/22x22/actions/media-eject.png -share/icons/ikons/22x22/actions/media-playback-pause.png -share/icons/ikons/22x22/actions/media-playback-stop.png -share/icons/ikons/22x22/actions/media-skip-backward.png -share/icons/ikons/22x22/actions/media-skip-forward.png -share/icons/ikons/22x22/actions/month.png -share/icons/ikons/22x22/actions/newtodo.png -share/icons/ikons/22x22/actions/noatunback.png -share/icons/ikons/22x22/actions/noatunforward.png -share/icons/ikons/22x22/actions/noatunloopnone.png -share/icons/ikons/22x22/actions/noatunloopplaylist.png -share/icons/ikons/22x22/actions/noatunloopsong.png -share/icons/ikons/22x22/actions/noatunpause.png -share/icons/ikons/22x22/actions/noatunplay.png -share/icons/ikons/22x22/actions/noatunplaylist.png -share/icons/ikons/22x22/actions/noatunstop.png -share/icons/ikons/22x22/actions/openterm.png -share/icons/ikons/22x22/actions/process-stop.png -share/icons/ikons/22x22/actions/recycle.png -share/icons/ikons/22x22/actions/stop_hand.png -share/icons/ikons/22x22/actions/system-run.png -share/icons/ikons/22x22/actions/timespan.png -share/icons/ikons/22x22/actions/today.png -share/icons/ikons/22x22/actions/todo.png -share/icons/ikons/22x22/actions/view-refresh.png -share/icons/ikons/22x22/actions/whatsnext.png -share/icons/ikons/22x22/actions/zoom-in.png -share/icons/ikons/22x22/actions/zoom-out.png -share/icons/ikons/22x22/actions/zoom.png -share/icons/ikons/22x22/apps/kpilot.png -share/icons/ikons/22x22/apps/kpilot2.png -share/icons/ikons/22x22/apps/kpilot3.png -share/icons/ikons/22x22/apps/wcspeedtouch.png -share/icons/ikons/32x32/apps/HancomOffice.png -share/icons/ikons/32x32/apps/HancomPainter.png -share/icons/ikons/32x32/apps/HancomPresenter.png -share/icons/ikons/32x32/apps/HancomSheet.png -share/icons/ikons/32x32/apps/HancomWord.png -share/icons/ikons/32x32/apps/go.png -share/icons/ikons/32x32/apps/kandy.png -share/icons/ikons/32x32/apps/kcontrol.png -share/icons/ikons/32x32/apps/kfm.png -share/icons/ikons/32x32/apps/kfm_home.png -share/icons/ikons/32x32/apps/kjobviewer.png -share/icons/ikons/32x32/apps/kmail_tmp.png -share/icons/ikons/32x32/apps/konsole.png -share/icons/ikons/32x32/apps/kpilot.png -share/icons/ikons/32x32/apps/printmgr.png -share/icons/ikons/32x32/apps/tux_config.png -share/icons/ikons/32x32/devices/3floppy_mount.png -share/icons/ikons/32x32/devices/3floppy_unmount.png -share/icons/ikons/32x32/devices/cdaudio_unmount.png -share/icons/ikons/32x32/devices/cdrom_mount.png -share/icons/ikons/32x32/devices/cdrom_unmount.png -share/icons/ikons/32x32/devices/cdwriter_mount.png -share/icons/ikons/32x32/devices/cdwriter_unmount.png -share/icons/ikons/32x32/devices/dvd_mount.png -share/icons/ikons/32x32/devices/dvd_unmount.png -share/icons/ikons/32x32/devices/hdd_mount.png -share/icons/ikons/32x32/devices/hdd_unmount.png -share/icons/ikons/32x32/devices/mp3_player.png -share/icons/ikons/32x32/devices/pda.png -share/icons/ikons/32x32/devices/phone.png -share/icons/ikons/32x32/devices/print_printer.png -share/icons/ikons/32x32/devices/printer1.png -share/icons/ikons/32x32/devices/printer2.png -share/icons/ikons/32x32/devices/scanner.png -share/icons/ikons/32x32/devices/screen_black.png -share/icons/ikons/32x32/devices/screen_blue.png -share/icons/ikons/32x32/devices/screen_green.png -share/icons/ikons/32x32/devices/speedtouch_ADSL_modem.png -share/icons/ikons/32x32/devices/zip_mount.png -share/icons/ikons/32x32/devices/zip_unmount.png -share/icons/ikons/32x32/mimetypes/apple_macintosh.png -share/icons/ikons/32x32/mimetypes/configuration.png -share/icons/ikons/32x32/mimetypes/gimp.png -share/icons/ikons/32x32/mimetypes/hancompainter.png -share/icons/ikons/32x32/mimetypes/hancompresnter.png -share/icons/ikons/32x32/mimetypes/hancomsheet.png -share/icons/ikons/32x32/mimetypes/hancomword.png -share/icons/ikons/32x32/mimetypes/image.png -share/icons/ikons/32x32/mimetypes/mp3.png -share/icons/ikons/32x32/mimetypes/quicktime_movie.png -share/icons/ikons/32x32/mimetypes/quicktime_tif.png -share/icons/ikons/32x32/mimetypes/script.png -share/icons/ikons/32x32/mimetypes/sql.png -share/icons/ikons/32x32/mimetypes/wav.png -share/icons/ikons/32x32/mimetypes/windows_config.png -share/icons/ikons/48x48/apps/go.png -share/icons/ikons/48x48/apps/kandy.png -share/icons/ikons/48x48/apps/kcontrol.png -share/icons/ikons/48x48/apps/kfm_home.png -share/icons/ikons/48x48/apps/klpq.png -share/icons/ikons/48x48/apps/kmail_tmp.png -share/icons/ikons/48x48/apps/konsole.png -share/icons/ikons/48x48/apps/kpilot.png -share/icons/ikons/48x48/apps/tux_config.png -share/icons/ikons/48x48/devices/3floppy_mount.png -share/icons/ikons/48x48/devices/3floppy_unmount.png -share/icons/ikons/48x48/devices/5floppy_mount.png -share/icons/ikons/48x48/devices/5floppy_unmount.png -share/icons/ikons/48x48/devices/RAID.png -share/icons/ikons/48x48/devices/UPS.png -share/icons/ikons/48x48/devices/cdaudio_mount.png -share/icons/ikons/48x48/devices/cdaudio_unmount.png -share/icons/ikons/48x48/devices/cdrom_mount.png -share/icons/ikons/48x48/devices/cdrom_unmount.png -share/icons/ikons/48x48/devices/cdwriter_mount.png -share/icons/ikons/48x48/devices/cdwriter_unmount.png -share/icons/ikons/48x48/devices/dvd_mount.png -share/icons/ikons/48x48/devices/dvd_unmount.png -share/icons/ikons/48x48/devices/hdd_mount.png -share/icons/ikons/48x48/devices/hdd_unmount.png -share/icons/ikons/48x48/devices/mo_mount.png -share/icons/ikons/48x48/devices/mo_unmount.png -share/icons/ikons/48x48/devices/mp3_player.png -share/icons/ikons/48x48/devices/pc_box.png -share/icons/ikons/48x48/devices/pc_box2.png -share/icons/ikons/48x48/devices/pda.png -share/icons/ikons/48x48/devices/pda_black.png -share/icons/ikons/48x48/devices/pda_blue.png -share/icons/ikons/48x48/devices/phone.png -share/icons/ikons/48x48/devices/print_printer.png -share/icons/ikons/48x48/devices/printer1.png -share/icons/ikons/48x48/devices/printer2.png -share/icons/ikons/48x48/devices/scanner.png -share/icons/ikons/48x48/devices/screen_black.png -share/icons/ikons/48x48/devices/screen_blue.png -share/icons/ikons/48x48/devices/screen_green.png -share/icons/ikons/48x48/devices/speedtouch_ADSL_modem.png -share/icons/ikons/48x48/devices/zip_mount.png -share/icons/ikons/48x48/devices/zip_unmount.png -share/icons/ikons/48x48/mimetypes/apple_macintosh.png -share/icons/ikons/48x48/mimetypes/empty.png -share/icons/ikons/48x48/mimetypes/hancompainter.png -share/icons/ikons/48x48/mimetypes/hancompresenter.png -share/icons/ikons/48x48/mimetypes/hancomsheet.png -share/icons/ikons/48x48/mimetypes/hancomword.png -share/icons/ikons/48x48/mimetypes/image.png -share/icons/ikons/48x48/mimetypes/rpm.png -share/icons/ikons/64x64/apps/Kpilot_FileInstaller.png -share/icons/ikons/64x64/apps/Kpilot_Notes.png -share/icons/ikons/64x64/apps/tux_business.png -share/icons/ikons/64x64/apps/tux_config.png -share/icons/ikons/64x64/apps/tux_diagnostic.png -share/icons/ikons/64x64/apps/tux_network.png -share/icons/ikons/index.theme share/icons/kdeclassic/16x16/actions/14_layer_deletelayer.png share/icons/kdeclassic/16x16/actions/14_layer_lowerlayer.png share/icons/kdeclassic/16x16/actions/14_layer_newlayer.png @@ -5980,9 +582,9 @@ share/icons/kdeclassic/16x16/actions/go-first.png share/icons/kdeclassic/16x16/actions/go-home.png share/icons/kdeclassic/16x16/actions/go-jump-locationbar.png share/icons/kdeclassic/16x16/actions/go-last.png -share/icons/kdeclassic/16x16/actions/go-next-document.png +share/icons/kdeclassic/16x16/actions/go-next-view.png share/icons/kdeclassic/16x16/actions/go-next.png -share/icons/kdeclassic/16x16/actions/go-previous-document.png +share/icons/kdeclassic/16x16/actions/go-previous-view.png share/icons/kdeclassic/16x16/actions/go-previous.png share/icons/kdeclassic/16x16/actions/go-top.png share/icons/kdeclassic/16x16/actions/go-up.png @@ -6414,7 +1016,6 @@ share/icons/kdeclassic/16x16/apps/cookie.png share/icons/kdeclassic/16x16/apps/date.png share/icons/kdeclassic/16x16/apps/designer.png share/icons/kdeclassic/16x16/apps/dlgedit.png -share/icons/kdeclassic/16x16/apps/dolphin.png share/icons/kdeclassic/16x16/apps/edu_languages.png share/icons/kdeclassic/16x16/apps/edu_mathematics.png share/icons/kdeclassic/16x16/apps/edu_miscellaneous.png @@ -6512,7 +1113,6 @@ share/icons/kdeclassic/16x16/apps/keyboard_layout.png share/icons/kdeclassic/16x16/apps/kfax.png share/icons/kdeclassic/16x16/apps/kfind.png share/icons/kdeclassic/16x16/apps/kfloppy.png -share/icons/kdeclassic/16x16/apps/kfm.png share/icons/kdeclassic/16x16/apps/kfm_home.png share/icons/kdeclassic/16x16/apps/kformula.png share/icons/kdeclassic/16x16/apps/kghostview.png @@ -6641,6 +1241,8 @@ share/icons/kdeclassic/16x16/apps/realplayer.png share/icons/kdeclassic/16x16/apps/remote.png share/icons/kdeclassic/16x16/apps/samba.png share/icons/kdeclassic/16x16/apps/stylesheet.png +share/icons/kdeclassic/16x16/apps/system-file-manager-dolphin.png +share/icons/kdeclassic/16x16/apps/system-file-manager.png share/icons/kdeclassic/16x16/apps/terminal.png share/icons/kdeclassic/16x16/apps/usb.png share/icons/kdeclassic/16x16/apps/wabi.png @@ -7027,9 +1629,9 @@ share/icons/kdeclassic/22x22/actions/go-first.png share/icons/kdeclassic/22x22/actions/go-home.png share/icons/kdeclassic/22x22/actions/go-jump-locationbar.png share/icons/kdeclassic/22x22/actions/go-last.png -share/icons/kdeclassic/22x22/actions/go-next-document.png +share/icons/kdeclassic/22x22/actions/go-next-view.png share/icons/kdeclassic/22x22/actions/go-next.png -share/icons/kdeclassic/22x22/actions/go-previous-document.png +share/icons/kdeclassic/22x22/actions/go-previous-view.png share/icons/kdeclassic/22x22/actions/go-previous.png share/icons/kdeclassic/22x22/actions/go-top.png share/icons/kdeclassic/22x22/actions/go-up.png @@ -7480,13 +2082,13 @@ share/icons/kdeclassic/22x22/actions/zoom-out.png share/icons/kdeclassic/22x22/actions/zoom.png share/icons/kdeclassic/22x22/animations/process-idle.png share/icons/kdeclassic/22x22/animations/process-working.png -share/icons/kdeclassic/22x22/apps/dolphin.png share/icons/kdeclassic/22x22/apps/kaboodle.png share/icons/kdeclassic/22x22/apps/kivio.png share/icons/kdeclassic/22x22/apps/konqsidebar_mediaplayer.png share/icons/kdeclassic/22x22/apps/kpilot.png share/icons/kdeclassic/22x22/apps/kugar.png share/icons/kdeclassic/22x22/apps/noatun.png +share/icons/kdeclassic/22x22/apps/system-file-manager-dolphin.png share/icons/kdeclassic/22x22/mimetypes/empty.png share/icons/kdeclassic/22x22/mimetypes/karbon_karbon.png share/icons/kdeclassic/22x22/mimetypes/kchart_chrt.png @@ -7607,9 +2209,9 @@ share/icons/kdeclassic/32x32/actions/go-down.png share/icons/kdeclassic/32x32/actions/go-first.png share/icons/kdeclassic/32x32/actions/go-home.png share/icons/kdeclassic/32x32/actions/go-last.png -share/icons/kdeclassic/32x32/actions/go-next-document.png +share/icons/kdeclassic/32x32/actions/go-next-view.png share/icons/kdeclassic/32x32/actions/go-next.png -share/icons/kdeclassic/32x32/actions/go-previous-document.png +share/icons/kdeclassic/32x32/actions/go-previous-view.png share/icons/kdeclassic/32x32/actions/go-previous.png share/icons/kdeclassic/32x32/actions/go-top.png share/icons/kdeclassic/32x32/actions/go-up.png @@ -7787,7 +2389,6 @@ share/icons/kdeclassic/32x32/apps/cookie.png share/icons/kdeclassic/32x32/apps/date.png share/icons/kdeclassic/32x32/apps/designer.png share/icons/kdeclassic/32x32/apps/dlgedit.png -share/icons/kdeclassic/32x32/apps/dolphin.png share/icons/kdeclassic/32x32/apps/edu_languages.png share/icons/kdeclassic/32x32/apps/edu_mathematics.png share/icons/kdeclassic/32x32/apps/edu_miscellaneous.png @@ -7876,7 +2477,6 @@ share/icons/kdeclassic/32x32/apps/keyboard_layout.png share/icons/kdeclassic/32x32/apps/kfax.png share/icons/kdeclassic/32x32/apps/kfind.png share/icons/kdeclassic/32x32/apps/kfloppy.png -share/icons/kdeclassic/32x32/apps/kfm.png share/icons/kdeclassic/32x32/apps/kfm_home.png share/icons/kdeclassic/32x32/apps/kformula.png share/icons/kdeclassic/32x32/apps/kghostview.png @@ -8003,6 +2603,8 @@ share/icons/kdeclassic/32x32/apps/realplayer.png share/icons/kdeclassic/32x32/apps/samba.png share/icons/kdeclassic/32x32/apps/style.png share/icons/kdeclassic/32x32/apps/stylesheet.png +share/icons/kdeclassic/32x32/apps/system-file-manager-dolphin.png +share/icons/kdeclassic/32x32/apps/system-file-manager.png share/icons/kdeclassic/32x32/apps/terminal.png share/icons/kdeclassic/32x32/apps/usb.png share/icons/kdeclassic/32x32/apps/wabi.png @@ -8179,7 +2781,6 @@ share/icons/kdeclassic/48x48/apps/colors.png share/icons/kdeclassic/48x48/apps/cookie.png share/icons/kdeclassic/48x48/apps/date.png share/icons/kdeclassic/48x48/apps/designer.png -share/icons/kdeclassic/48x48/apps/dolphin.png share/icons/kdeclassic/48x48/apps/edu_languages.png share/icons/kdeclassic/48x48/apps/emacs.png share/icons/kdeclassic/48x48/apps/email.png @@ -8235,7 +2836,6 @@ share/icons/kdeclassic/48x48/apps/keyboard_layout.png share/icons/kdeclassic/48x48/apps/kfax.png share/icons/kdeclassic/48x48/apps/kfind.png share/icons/kdeclassic/48x48/apps/kfloppy.png -share/icons/kdeclassic/48x48/apps/kfm.png share/icons/kdeclassic/48x48/apps/kfm_home.png share/icons/kdeclassic/48x48/apps/kformula.png share/icons/kdeclassic/48x48/apps/kget.png @@ -8333,6 +2933,8 @@ share/icons/kdeclassic/48x48/apps/remote.png share/icons/kdeclassic/48x48/apps/samba.png share/icons/kdeclassic/48x48/apps/style.png share/icons/kdeclassic/48x48/apps/stylesheet.png +share/icons/kdeclassic/48x48/apps/system-file-manager-dolphin.png +share/icons/kdeclassic/48x48/apps/system-file-manager.png share/icons/kdeclassic/48x48/apps/terminal.png share/icons/kdeclassic/48x48/apps/usb.png share/icons/kdeclassic/48x48/apps/window_list.png @@ -8463,7 +3065,7 @@ share/icons/kdeclassic/48x48/places/folder.png share/icons/kdeclassic/48x48/places/user-desktop.png share/icons/kdeclassic/48x48/places/user-home.png share/icons/kdeclassic/48x48/places/user-trash.png -share/icons/kdeclassic/64x64/apps/dolphin.png +share/icons/kdeclassic/64x64/apps/system-file-manager-dolphin.png share/icons/kdeclassic/64x64/mimetypes/audio-x-generic.png share/icons/kdeclassic/64x64/mimetypes/binary2.png share/icons/kdeclassic/64x64/mimetypes/cdtrack.png @@ -8510,6137 +3112,6 @@ share/icons/kdeclassic/8x8/emblems/emblem-symbolic-link.png share/icons/kdeclassic/8x8/emblems/emblem-unreadable.png share/icons/kdeclassic/8x8/emblems/emblem-zipped.png share/icons/kdeclassic/index.theme -share/icons/kids/16x16/actions/Untitled.png -share/icons/kids/16x16/actions/about_kde.png -share/icons/kids/16x16/actions/appearance.png -share/icons/kids/16x16/actions/application-exit.png -share/icons/kids/16x16/actions/bookmark-new.png -share/icons/kids/16x16/actions/bookmark.png -share/icons/kids/16x16/actions/button_cance.png -share/icons/kids/16x16/actions/button_ok.png -share/icons/kids/16x16/actions/cd.png -share/icons/kids/16x16/actions/colorize.png -share/icons/kids/16x16/actions/compfile.png -share/icons/kids/16x16/actions/configure.png -share/icons/kids/16x16/actions/decrypted.png -share/icons/kids/16x16/actions/dialog-close.png -share/icons/kids/16x16/actions/document-new.png -share/icons/kids/16x16/actions/document-open.png -share/icons/kids/16x16/actions/document-print-preview.png -share/icons/kids/16x16/actions/document-print.png -share/icons/kids/16x16/actions/document-save-as.png -share/icons/kids/16x16/actions/document-save.png -share/icons/kids/16x16/actions/edit-copy.png -share/icons/kids/16x16/actions/edit-cut.png -share/icons/kids/16x16/actions/edit-delete.png -share/icons/kids/16x16/actions/edit-find.png -share/icons/kids/16x16/actions/edit-paste.png -share/icons/kids/16x16/actions/edit-redo.png -share/icons/kids/16x16/actions/edit-undo.png -share/icons/kids/16x16/actions/edit.png -share/icons/kids/16x16/actions/edittrash.png -share/icons/kids/16x16/actions/encrypted.png -share/icons/kids/16x16/actions/filefind.png -share/icons/kids/16x16/actions/fonts.png -share/icons/kids/16x16/actions/frameprint.png -share/icons/kids/16x16/actions/go-down.png -share/icons/kids/16x16/actions/go-home.png -share/icons/kids/16x16/actions/go-next-document.png -share/icons/kids/16x16/actions/go-next.png -share/icons/kids/16x16/actions/go-previous-document.png -share/icons/kids/16x16/actions/go-previous.png -share/icons/kids/16x16/actions/go-up.png -share/icons/kids/16x16/actions/help.png -share/icons/kids/16x16/actions/history.png -share/icons/kids/16x16/actions/klipper_doc.png -share/icons/kids/16x16/actions/launch.png -share/icons/kids/16x16/actions/misc.png -share/icons/kids/16x16/actions/next-sail.png -share/icons/kids/16x16/actions/previos-sail.png -share/icons/kids/16x16/actions/process-stop.png -share/icons/kids/16x16/actions/system-run.png -share/icons/kids/16x16/actions/system-search.png -share/icons/kids/16x16/actions/thumbnail.png -share/icons/kids/16x16/actions/unlock.png -share/icons/kids/16x16/actions/view-fullscreen.png -share/icons/kids/16x16/actions/view-refresh.png -share/icons/kids/16x16/actions/view-restore.png -share/icons/kids/16x16/actions/view.png -share/icons/kids/16x16/actions/view_bottom.png -share/icons/kids/16x16/actions/view_choose.png -share/icons/kids/16x16/actions/view_detailed.png -share/icons/kids/16x16/actions/view_icon.png -share/icons/kids/16x16/actions/view_left_right.png -share/icons/kids/16x16/actions/view_multicolumn.png -share/icons/kids/16x16/actions/view_right.png -share/icons/kids/16x16/actions/view_sidetree.png -share/icons/kids/16x16/actions/view_text.png -share/icons/kids/16x16/actions/view_top_bottom.png -share/icons/kids/16x16/actions/view_tree.png -share/icons/kids/16x16/actions/window-new.png -share/icons/kids/16x16/actions/zoom-best-fit.png -share/icons/kids/16x16/actions/zoom-in.png -share/icons/kids/16x16/actions/zoom-original.png -share/icons/kids/16x16/actions/zoom-out.png -share/icons/kids/16x16/apps/Untitled.png -share/icons/kids/16x16/apps/agent.png -share/icons/kids/16x16/apps/agt_action_fail.png -share/icons/kids/16x16/apps/agt_action_success.png -share/icons/kids/16x16/apps/agt_back.png -share/icons/kids/16x16/apps/agt_family-off.png -share/icons/kids/16x16/apps/agt_family.png -share/icons/kids/16x16/apps/agt_forward.png -share/icons/kids/16x16/apps/agt_login.png -share/icons/kids/16x16/apps/agt_print.png -share/icons/kids/16x16/apps/agt_reload.png -share/icons/kids/16x16/apps/agt_resume.png -share/icons/kids/16x16/apps/agt_runit.png -share/icons/kids/16x16/apps/agt_stop.png -share/icons/kids/16x16/apps/agt_uninstall-product.png -share/icons/kids/16x16/apps/agt_update_critical.png -share/icons/kids/16x16/apps/agt_update_drivers.png -share/icons/kids/16x16/apps/agt_virussafe-off.png -share/icons/kids/16x16/apps/agt_virussafe.png -share/icons/kids/16x16/apps/aim.png -share/icons/kids/16x16/apps/ark.png -share/icons/kids/16x16/apps/babelfish.png -share/icons/kids/16x16/apps/background.png -share/icons/kids/16x16/apps/bell.png -share/icons/kids/16x16/apps/browser.png -share/icons/kids/16x16/apps/cache.png -share/icons/kids/16x16/apps/camera.png -share/icons/kids/16x16/apps/cd-player1.png -share/icons/kids/16x16/apps/cd-player222.png -share/icons/kids/16x16/apps/clicknrun.png -share/icons/kids/16x16/apps/clicknrungrey.png -share/icons/kids/16x16/apps/clock.png -share/icons/kids/16x16/apps/colors.png -share/icons/kids/16x16/apps/cookie.png -share/icons/kids/16x16/apps/date.png -share/icons/kids/16x16/apps/display.png -share/icons/kids/16x16/apps/email.png -share/icons/kids/16x16/apps/energy.png -share/icons/kids/16x16/apps/energy_star.png -share/icons/kids/16x16/apps/enhanced_browsing.png -share/icons/kids/16x16/apps/file-manager.png -share/icons/kids/16x16/apps/fileshare.png -share/icons/kids/16x16/apps/filetypes.png -share/icons/kids/16x16/apps/fonts.png -share/icons/kids/16x16/apps/galeon.png -share/icons/kids/16x16/apps/gimp.png -share/icons/kids/16x16/apps/go.png -share/icons/kids/16x16/apps/harddrive.png -share/icons/kids/16x16/apps/hook.png -share/icons/kids/16x16/apps/hwinfo.png -share/icons/kids/16x16/apps/icons.png -share/icons/kids/16x16/apps/iconthemes.png -share/icons/kids/16x16/apps/input_devices_settings.png -share/icons/kids/16x16/apps/kcalc.png -share/icons/kids/16x16/apps/kcmmemory.png -share/icons/kids/16x16/apps/kcmpci.png -share/icons/kids/16x16/apps/kcmprocessor.png -share/icons/kids/16x16/apps/kcmsound.png -share/icons/kids/16x16/apps/kcmsystem.png -share/icons/kids/16x16/apps/kcmx.png -share/icons/kids/16x16/apps/kcoloredit.png -share/icons/kids/16x16/apps/kcontrol.png -share/icons/kids/16x16/apps/key_bindings.png -share/icons/kids/16x16/apps/keyboard.png -share/icons/kids/16x16/apps/keyboard_layout.png -share/icons/kids/16x16/apps/kfloppy.png -share/icons/kids/16x16/apps/kfm.png -share/icons/kids/16x16/apps/kfm_home.png -share/icons/kids/16x16/apps/khelpcenter.png -share/icons/kids/16x16/apps/kicker.png -share/icons/kids/16x16/apps/kjobviewer.png -share/icons/kids/16x16/apps/klaptopdaemon.png -share/icons/kids/16x16/apps/klipper.png -share/icons/kids/16x16/apps/klpq.png -share/icons/kids/16x16/apps/kmenu.png -share/icons/kids/16x16/apps/kmix.png -share/icons/kids/16x16/apps/knetconfig.png -share/icons/kids/16x16/apps/knotify.png -share/icons/kids/16x16/apps/konqueror.png -share/icons/kids/16x16/apps/konsole.png -share/icons/kids/16x16/apps/kppp.png -share/icons/kids/16x16/apps/kreatecd.png -share/icons/kids/16x16/apps/krfb.png -share/icons/kids/16x16/apps/kscd.png -share/icons/kids/16x16/apps/kscreensaver.png -share/icons/kids/16x16/apps/kservices.png -share/icons/kids/16x16/apps/ksmiletris.png -share/icons/kids/16x16/apps/ktalkd.png -share/icons/kids/16x16/apps/kuser.png -share/icons/kids/16x16/apps/kxconfig.png -share/icons/kids/16x16/apps/laptop_battery.png -share/icons/kids/16x16/apps/laptop_pcmcia.png -share/icons/kids/16x16/apps/lin_agt_wrench.png -share/icons/kids/16x16/apps/linneighborhood.png -share/icons/kids/16x16/apps/linuxconf.png -share/icons/kids/16x16/apps/locale.png -share/icons/kids/16x16/apps/looknfeel.png -share/icons/kids/16x16/apps/mail.png -share/icons/kids/16x16/apps/mascot.png -share/icons/kids/16x16/apps/mouse.png -share/icons/kids/16x16/apps/mozilla.png -share/icons/kids/16x16/apps/multimedia.png -share/icons/kids/16x16/apps/mycomputer.png -share/icons/kids/16x16/apps/netscape.png -share/icons/kids/16x16/apps/network.png -share/icons/kids/16x16/apps/noatun.png -share/icons/kids/16x16/apps/os-support.png -share/icons/kids/16x16/apps/package_settings.png -share/icons/kids/16x16/apps/package_system.png -share/icons/kids/16x16/apps/package_toys.png -share/icons/kids/16x16/apps/package_utilities.png -share/icons/kids/16x16/apps/password.png -share/icons/kids/16x16/apps/penguin.png -share/icons/kids/16x16/apps/personal.png -share/icons/kids/16x16/apps/printer.png -share/icons/kids/16x16/apps/printmgr.png -share/icons/kids/16x16/apps/proxy.png -share/icons/kids/16x16/apps/renamecomputer.png -share/icons/kids/16x16/apps/samba.png -share/icons/kids/16x16/apps/sisadmin.png -share/icons/kids/16x16/apps/star_here.png -share/icons/kids/16x16/apps/start_here.png -share/icons/kids/16x16/apps/stylesheet.png -share/icons/kids/16x16/apps/trash.png -share/icons/kids/16x16/apps/window_list.png -share/icons/kids/16x16/apps/windows_users.png -share/icons/kids/16x16/apps/x.png -share/icons/kids/16x16/apps/xcalc.png -share/icons/kids/16x16/apps/xmail.png -share/icons/kids/16x16/apps/xmms.png -share/icons/kids/16x16/apps/xpaint.png -share/icons/kids/16x16/devices/3floppy_mount.png -share/icons/kids/16x16/devices/3floppy_unmount.png -share/icons/kids/16x16/devices/camera.png -share/icons/kids/16x16/devices/cdrom_mount.png -share/icons/kids/16x16/devices/cdrom_unmount.png -share/icons/kids/16x16/devices/hdd_mount.png -share/icons/kids/16x16/devices/hdd_unmount.png -share/icons/kids/16x16/devices/memory.png -share/icons/kids/16x16/devices/network_local.png -share/icons/kids/16x16/devices/nfs_unmount.png -share/icons/kids/16x16/devices/print_printer.png -share/icons/kids/16x16/devices/printer.png -share/icons/kids/16x16/devices/printer2.png -share/icons/kids/16x16/mimetypes/cdimage.png -share/icons/kids/16x16/mimetypes/document.png -share/icons/kids/16x16/mimetypes/empty.png -share/icons/kids/16x16/mimetypes/file_locked.png -share/icons/kids/16x16/mimetypes/file_temporary.png -share/icons/kids/16x16/mimetypes/html.png -share/icons/kids/16x16/mimetypes/image.png -share/icons/kids/16x16/mimetypes/midi.png -share/icons/kids/16x16/mimetypes/netscape_doc.png -share/icons/kids/16x16/mimetypes/sound.png -share/icons/kids/16x16/mimetypes/unknown.png -share/icons/kids/22x22/actions/Untitled.png -share/icons/kids/22x22/actions/about_kde.png -share/icons/kids/22x22/actions/appearance.png -share/icons/kids/22x22/actions/application-exit.png -share/icons/kids/22x22/actions/bookmark-new.png -share/icons/kids/22x22/actions/bookmark.png -share/icons/kids/22x22/actions/button_cance.png -share/icons/kids/22x22/actions/button_ok.png -share/icons/kids/22x22/actions/cd.png -share/icons/kids/22x22/actions/colorize.png -share/icons/kids/22x22/actions/compfile.png -share/icons/kids/22x22/actions/configure.png -share/icons/kids/22x22/actions/decrypted.png -share/icons/kids/22x22/actions/dialog-close.png -share/icons/kids/22x22/actions/document-new.png -share/icons/kids/22x22/actions/document-open.png -share/icons/kids/22x22/actions/document-print-preview.png -share/icons/kids/22x22/actions/document-print.png -share/icons/kids/22x22/actions/document-save-as.png -share/icons/kids/22x22/actions/document-save.png -share/icons/kids/22x22/actions/edit-copy.png -share/icons/kids/22x22/actions/edit-cut.png -share/icons/kids/22x22/actions/edit-delete.png -share/icons/kids/22x22/actions/edit-find.png -share/icons/kids/22x22/actions/edit-paste.png -share/icons/kids/22x22/actions/edit-redo.png -share/icons/kids/22x22/actions/edit-undo.png -share/icons/kids/22x22/actions/edit.png -share/icons/kids/22x22/actions/edittrash.png -share/icons/kids/22x22/actions/encrypted.png -share/icons/kids/22x22/actions/filefind.png -share/icons/kids/22x22/actions/fonts.png -share/icons/kids/22x22/actions/frameprint.png -share/icons/kids/22x22/actions/go-down.png -share/icons/kids/22x22/actions/go-home.png -share/icons/kids/22x22/actions/go-next-document.png -share/icons/kids/22x22/actions/go-next.png -share/icons/kids/22x22/actions/go-previous-document.png -share/icons/kids/22x22/actions/go-previous.png -share/icons/kids/22x22/actions/go-up.png -share/icons/kids/22x22/actions/help.png -share/icons/kids/22x22/actions/history.png -share/icons/kids/22x22/actions/klipper_doc.png -share/icons/kids/22x22/actions/launch.png -share/icons/kids/22x22/actions/misc.png -share/icons/kids/22x22/actions/next-sail.png -share/icons/kids/22x22/actions/previos-sail.png -share/icons/kids/22x22/actions/process-stop.png -share/icons/kids/22x22/actions/system-run.png -share/icons/kids/22x22/actions/system-search.png -share/icons/kids/22x22/actions/thumbnail.png -share/icons/kids/22x22/actions/unlock.png -share/icons/kids/22x22/actions/view-fullscreen.png -share/icons/kids/22x22/actions/view-refresh.png -share/icons/kids/22x22/actions/view-restore.png -share/icons/kids/22x22/actions/view.png -share/icons/kids/22x22/actions/view_bottom.png -share/icons/kids/22x22/actions/view_choose.png -share/icons/kids/22x22/actions/view_detailed.png -share/icons/kids/22x22/actions/view_icon.png -share/icons/kids/22x22/actions/view_left_right.png -share/icons/kids/22x22/actions/view_multicolumn.png -share/icons/kids/22x22/actions/view_right.png -share/icons/kids/22x22/actions/view_sidetree.png -share/icons/kids/22x22/actions/view_text.png -share/icons/kids/22x22/actions/view_top_bottom.png -share/icons/kids/22x22/actions/view_tree.png -share/icons/kids/22x22/actions/window-new.png -share/icons/kids/22x22/actions/zoom-best-fit.png -share/icons/kids/22x22/actions/zoom-in.png -share/icons/kids/22x22/actions/zoom-original.png -share/icons/kids/22x22/actions/zoom-out.png -share/icons/kids/22x22/apps/Untitled.png -share/icons/kids/22x22/apps/agent.png -share/icons/kids/22x22/apps/agt-family-off.png -share/icons/kids/22x22/apps/agt_action_fail.png -share/icons/kids/22x22/apps/agt_action_success.png -share/icons/kids/22x22/apps/agt_back.png -share/icons/kids/22x22/apps/agt_family-off.png -share/icons/kids/22x22/apps/agt_family.png -share/icons/kids/22x22/apps/agt_forward.png -share/icons/kids/22x22/apps/agt_login.png -share/icons/kids/22x22/apps/agt_print.png -share/icons/kids/22x22/apps/agt_reload.png -share/icons/kids/22x22/apps/agt_resume.png -share/icons/kids/22x22/apps/agt_runit.png -share/icons/kids/22x22/apps/agt_stop.png -share/icons/kids/22x22/apps/agt_uninstall-product.png -share/icons/kids/22x22/apps/agt_update_critical.png -share/icons/kids/22x22/apps/agt_update_drivers.png -share/icons/kids/22x22/apps/agt_virussafe-off.png -share/icons/kids/22x22/apps/agt_virussafe.png -share/icons/kids/22x22/apps/aim.png -share/icons/kids/22x22/apps/ark.png -share/icons/kids/22x22/apps/babelfish.png -share/icons/kids/22x22/apps/background.png -share/icons/kids/22x22/apps/bell.png -share/icons/kids/22x22/apps/browser.png -share/icons/kids/22x22/apps/cache.png -share/icons/kids/22x22/apps/camera.png -share/icons/kids/22x22/apps/cd-player1.png -share/icons/kids/22x22/apps/cd-player2.png -share/icons/kids/22x22/apps/cd-player216.png -share/icons/kids/22x22/apps/clicknrun.png -share/icons/kids/22x22/apps/clicknrungrey.png -share/icons/kids/22x22/apps/clock.png -share/icons/kids/22x22/apps/colors.png -share/icons/kids/22x22/apps/cookie.png -share/icons/kids/22x22/apps/date.png -share/icons/kids/22x22/apps/display.png -share/icons/kids/22x22/apps/email.png -share/icons/kids/22x22/apps/energy.png -share/icons/kids/22x22/apps/enhanced_browsing.png -share/icons/kids/22x22/apps/file-manager.png -share/icons/kids/22x22/apps/fileshare.png -share/icons/kids/22x22/apps/filetypes.png -share/icons/kids/22x22/apps/fonts.png -share/icons/kids/22x22/apps/galeon.png -share/icons/kids/22x22/apps/gimp.png -share/icons/kids/22x22/apps/go.png -share/icons/kids/22x22/apps/harddrive.png -share/icons/kids/22x22/apps/hook.png -share/icons/kids/22x22/apps/hwinfo.png -share/icons/kids/22x22/apps/icons.png -share/icons/kids/22x22/apps/iconthemes.png -share/icons/kids/22x22/apps/input_devices_settings.png -share/icons/kids/22x22/apps/kcalc.png -share/icons/kids/22x22/apps/kcmmemory.png -share/icons/kids/22x22/apps/kcmpci.png -share/icons/kids/22x22/apps/kcmprocessor.png -share/icons/kids/22x22/apps/kcmsound.png -share/icons/kids/22x22/apps/kcmsystem.png -share/icons/kids/22x22/apps/kcmx.png -share/icons/kids/22x22/apps/kcoloredit.png -share/icons/kids/22x22/apps/kcontrol.png -share/icons/kids/22x22/apps/key_bindings.png -share/icons/kids/22x22/apps/keyboard.png -share/icons/kids/22x22/apps/keyboard_layout.png -share/icons/kids/22x22/apps/kfloppy.png -share/icons/kids/22x22/apps/kfm.png -share/icons/kids/22x22/apps/kfm_home.png -share/icons/kids/22x22/apps/khelpcenter.png -share/icons/kids/22x22/apps/kicker.png -share/icons/kids/22x22/apps/kjobviewer.png -share/icons/kids/22x22/apps/klaptopdaemon.png -share/icons/kids/22x22/apps/klipper.png -share/icons/kids/22x22/apps/klpq.png -share/icons/kids/22x22/apps/kmenu.png -share/icons/kids/22x22/apps/kmix.png -share/icons/kids/22x22/apps/knetconfig.png -share/icons/kids/22x22/apps/knotify.png -share/icons/kids/22x22/apps/konqueror.png -share/icons/kids/22x22/apps/konsole.png -share/icons/kids/22x22/apps/kppp.png -share/icons/kids/22x22/apps/kreatecd.png -share/icons/kids/22x22/apps/krfb.png -share/icons/kids/22x22/apps/kscd.png -share/icons/kids/22x22/apps/kscreensaver.png -share/icons/kids/22x22/apps/kservices.png -share/icons/kids/22x22/apps/ksmiletris.png -share/icons/kids/22x22/apps/ktalkd.png -share/icons/kids/22x22/apps/kuser.png -share/icons/kids/22x22/apps/kxconfig.png -share/icons/kids/22x22/apps/laptop_battery.png -share/icons/kids/22x22/apps/laptop_pcmcia.png -share/icons/kids/22x22/apps/lin_agt_wrench.png -share/icons/kids/22x22/apps/linneighborhood.png -share/icons/kids/22x22/apps/linuxconf.png -share/icons/kids/22x22/apps/locale.png -share/icons/kids/22x22/apps/looknfeel.png -share/icons/kids/22x22/apps/mail.png -share/icons/kids/22x22/apps/mascot.png -share/icons/kids/22x22/apps/mouse.png -share/icons/kids/22x22/apps/mozilla.png -share/icons/kids/22x22/apps/multimedia.png -share/icons/kids/22x22/apps/mycomputer.png -share/icons/kids/22x22/apps/netscape.png -share/icons/kids/22x22/apps/network.png -share/icons/kids/22x22/apps/noatun.png -share/icons/kids/22x22/apps/os-support.png -share/icons/kids/22x22/apps/package_settings.png -share/icons/kids/22x22/apps/package_system.png -share/icons/kids/22x22/apps/package_toys.png -share/icons/kids/22x22/apps/package_utilities.png -share/icons/kids/22x22/apps/password.png -share/icons/kids/22x22/apps/penguin.png -share/icons/kids/22x22/apps/personal.png -share/icons/kids/22x22/apps/proxy.png -share/icons/kids/22x22/apps/renamecomputer.png -share/icons/kids/22x22/apps/samba.png -share/icons/kids/22x22/apps/sisadmin.png -share/icons/kids/22x22/apps/start_here.png -share/icons/kids/22x22/apps/stylesheet.png -share/icons/kids/22x22/apps/trash.png -share/icons/kids/22x22/apps/window_list.png -share/icons/kids/22x22/apps/windows_users.png -share/icons/kids/22x22/apps/x.png -share/icons/kids/22x22/apps/xcalc.png -share/icons/kids/22x22/apps/xmail.png -share/icons/kids/22x22/apps/xmms.png -share/icons/kids/22x22/apps/xpaint.png -share/icons/kids/22x22/devices/3floppy_mount.png -share/icons/kids/22x22/devices/3floppy_unmount.png -share/icons/kids/22x22/devices/camera.png -share/icons/kids/22x22/devices/cdrom_mount.png -share/icons/kids/22x22/devices/cdrom_unmount.png -share/icons/kids/22x22/devices/hdd_mount.png -share/icons/kids/22x22/devices/hdd_unmount.png -share/icons/kids/22x22/devices/memory.png -share/icons/kids/22x22/devices/network_local.png -share/icons/kids/22x22/devices/nfs_unmount.png -share/icons/kids/22x22/devices/print_printer.png -share/icons/kids/22x22/devices/printer.png -share/icons/kids/22x22/devices/printer2.png -share/icons/kids/22x22/mimetypes/cdimage.png -share/icons/kids/22x22/mimetypes/document.png -share/icons/kids/22x22/mimetypes/empty.png -share/icons/kids/22x22/mimetypes/file_locked.png -share/icons/kids/22x22/mimetypes/file_temporary.png -share/icons/kids/22x22/mimetypes/html.png -share/icons/kids/22x22/mimetypes/image.png -share/icons/kids/22x22/mimetypes/midi.png -share/icons/kids/22x22/mimetypes/netscape_doc.png -share/icons/kids/22x22/mimetypes/sound.png -share/icons/kids/22x22/mimetypes/unknown.png -share/icons/kids/32x32/actions/Untitled.png -share/icons/kids/32x32/actions/about_kde.png -share/icons/kids/32x32/actions/appearance.png -share/icons/kids/32x32/actions/application-exit.png -share/icons/kids/32x32/actions/bookmark-new.png -share/icons/kids/32x32/actions/bookmark.png -share/icons/kids/32x32/actions/button_cance.png -share/icons/kids/32x32/actions/button_ok.png -share/icons/kids/32x32/actions/cd.png -share/icons/kids/32x32/actions/colorize.png -share/icons/kids/32x32/actions/compfile.png -share/icons/kids/32x32/actions/configure.png -share/icons/kids/32x32/actions/decrypted.png -share/icons/kids/32x32/actions/dialog-close.png -share/icons/kids/32x32/actions/document-new.png -share/icons/kids/32x32/actions/document-open.png -share/icons/kids/32x32/actions/document-print-preview.png -share/icons/kids/32x32/actions/document-print.png -share/icons/kids/32x32/actions/document-save-as.png -share/icons/kids/32x32/actions/document-save.png -share/icons/kids/32x32/actions/edit-copy.png -share/icons/kids/32x32/actions/edit-cut.png -share/icons/kids/32x32/actions/edit-delete.png -share/icons/kids/32x32/actions/edit-find.png -share/icons/kids/32x32/actions/edit-paste.png -share/icons/kids/32x32/actions/edit-redo.png -share/icons/kids/32x32/actions/edit-undo.png -share/icons/kids/32x32/actions/edit.png -share/icons/kids/32x32/actions/edittrash.png -share/icons/kids/32x32/actions/encrypted.png -share/icons/kids/32x32/actions/filefind.png -share/icons/kids/32x32/actions/fonts.png -share/icons/kids/32x32/actions/frameprint.png -share/icons/kids/32x32/actions/go-down.png -share/icons/kids/32x32/actions/go-home.png -share/icons/kids/32x32/actions/go-next-document.png -share/icons/kids/32x32/actions/go-next.png -share/icons/kids/32x32/actions/go-previous-document.png -share/icons/kids/32x32/actions/go-previous.png -share/icons/kids/32x32/actions/go-up.png -share/icons/kids/32x32/actions/help.png -share/icons/kids/32x32/actions/history.png -share/icons/kids/32x32/actions/klipper_doc.png -share/icons/kids/32x32/actions/launch.png -share/icons/kids/32x32/actions/misc.png -share/icons/kids/32x32/actions/next-sail.png -share/icons/kids/32x32/actions/previos-sail.png -share/icons/kids/32x32/actions/process-stop.png -share/icons/kids/32x32/actions/system-run.png -share/icons/kids/32x32/actions/system-search.png -share/icons/kids/32x32/actions/thumbnail.png -share/icons/kids/32x32/actions/unlock.png -share/icons/kids/32x32/actions/view-fullscreen.png -share/icons/kids/32x32/actions/view-refresh.png -share/icons/kids/32x32/actions/view-restore.png -share/icons/kids/32x32/actions/view.png -share/icons/kids/32x32/actions/view_bottom.png -share/icons/kids/32x32/actions/view_choose.png -share/icons/kids/32x32/actions/view_detailed.png -share/icons/kids/32x32/actions/view_icon.png -share/icons/kids/32x32/actions/view_left_right.png -share/icons/kids/32x32/actions/view_multicolumn.png -share/icons/kids/32x32/actions/view_right.png -share/icons/kids/32x32/actions/view_sidetree.png -share/icons/kids/32x32/actions/view_text.png -share/icons/kids/32x32/actions/view_top_bottom.png -share/icons/kids/32x32/actions/view_tree.png -share/icons/kids/32x32/actions/window-new.png -share/icons/kids/32x32/actions/zoom-best-fit.png -share/icons/kids/32x32/actions/zoom-in.png -share/icons/kids/32x32/actions/zoom-original.png -share/icons/kids/32x32/actions/zoom-out.png -share/icons/kids/32x32/apps/Untitled.png -share/icons/kids/32x32/apps/agent.png -share/icons/kids/32x32/apps/agt-family-off.png -share/icons/kids/32x32/apps/agt_action_fail.png -share/icons/kids/32x32/apps/agt_action_success.png -share/icons/kids/32x32/apps/agt_add-to-desktop.png -share/icons/kids/32x32/apps/agt_back.png -share/icons/kids/32x32/apps/agt_family-off.png -share/icons/kids/32x32/apps/agt_family.png -share/icons/kids/32x32/apps/agt_forward.png -share/icons/kids/32x32/apps/agt_login.png -share/icons/kids/32x32/apps/agt_print.png -share/icons/kids/32x32/apps/agt_reload.png -share/icons/kids/32x32/apps/agt_resume.png -share/icons/kids/32x32/apps/agt_runit.png -share/icons/kids/32x32/apps/agt_stop.png -share/icons/kids/32x32/apps/agt_uninstall-product.png -share/icons/kids/32x32/apps/agt_update_critical.png -share/icons/kids/32x32/apps/agt_update_drivers.png -share/icons/kids/32x32/apps/agt_virussafe-off.png -share/icons/kids/32x32/apps/agt_virussafe.png -share/icons/kids/32x32/apps/aim.png -share/icons/kids/32x32/apps/ark.png -share/icons/kids/32x32/apps/arts.png -share/icons/kids/32x32/apps/babelfish.png -share/icons/kids/32x32/apps/background.png -share/icons/kids/32x32/apps/bell.png -share/icons/kids/32x32/apps/browser.png -share/icons/kids/32x32/apps/cache.png -share/icons/kids/32x32/apps/camera.png -share/icons/kids/32x32/apps/cd-player1.png -share/icons/kids/32x32/apps/cd-player2.png -share/icons/kids/32x32/apps/clicknrun.png -share/icons/kids/32x32/apps/clicknrungrey.png -share/icons/kids/32x32/apps/clock.png -share/icons/kids/32x32/apps/colors.png -share/icons/kids/32x32/apps/cookie.png -share/icons/kids/32x32/apps/date.png -share/icons/kids/32x32/apps/display.png -share/icons/kids/32x32/apps/email.png -share/icons/kids/32x32/apps/energy.png -share/icons/kids/32x32/apps/energy_star.png -share/icons/kids/32x32/apps/enhanced_browsing.png -share/icons/kids/32x32/apps/file-manager.png -share/icons/kids/32x32/apps/fileshare.png -share/icons/kids/32x32/apps/filetypes.png -share/icons/kids/32x32/apps/fonts.png -share/icons/kids/32x32/apps/galeon.png -share/icons/kids/32x32/apps/gimp.png -share/icons/kids/32x32/apps/go.png -share/icons/kids/32x32/apps/harddrive.png -share/icons/kids/32x32/apps/hook.png -share/icons/kids/32x32/apps/hwinfo.png -share/icons/kids/32x32/apps/icons.png -share/icons/kids/32x32/apps/iconthemes.png -share/icons/kids/32x32/apps/input_devices_settings.png -share/icons/kids/32x32/apps/kcalc.png -share/icons/kids/32x32/apps/kcmfontinst.png -share/icons/kids/32x32/apps/kcmkicker.png -share/icons/kids/32x32/apps/kcmkwm.png -share/icons/kids/32x32/apps/kcmmemory.png -share/icons/kids/32x32/apps/kcmmidi.png -share/icons/kids/32x32/apps/kcmpci.png -share/icons/kids/32x32/apps/kcmprocessor.png -share/icons/kids/32x32/apps/kcmsound.png -share/icons/kids/32x32/apps/kcmsystem.png -share/icons/kids/32x32/apps/kcmx.png -share/icons/kids/32x32/apps/kcoloredit.png -share/icons/kids/32x32/apps/kcontrol.png -share/icons/kids/32x32/apps/kdmconfig.png -share/icons/kids/32x32/apps/key_bindings.png -share/icons/kids/32x32/apps/keyboard.png -share/icons/kids/32x32/apps/keyboard_layout.png -share/icons/kids/32x32/apps/kfloppy.png -share/icons/kids/32x32/apps/kfm.png -share/icons/kids/32x32/apps/kfm_home.png -share/icons/kids/32x32/apps/khelpcenter.png -share/icons/kids/32x32/apps/kicker.png -share/icons/kids/32x32/apps/kjobviewer.png -share/icons/kids/32x32/apps/klaptopdaemon.png -share/icons/kids/32x32/apps/klipper.png -share/icons/kids/32x32/apps/klpq.png -share/icons/kids/32x32/apps/kmenu.png -share/icons/kids/32x32/apps/kmenuedit.png -share/icons/kids/32x32/apps/kmix.png -share/icons/kids/32x32/apps/knetconfig.png -share/icons/kids/32x32/apps/knotify.png -share/icons/kids/32x32/apps/konqueror.png -share/icons/kids/32x32/apps/konsole.png -share/icons/kids/32x32/apps/kppp.png -share/icons/kids/32x32/apps/kreatecd.png -share/icons/kids/32x32/apps/krfb.png -share/icons/kids/32x32/apps/kscd.png -share/icons/kids/32x32/apps/kscreensaver.png -share/icons/kids/32x32/apps/kservices.png -share/icons/kids/32x32/apps/ksmiletris.png -share/icons/kids/32x32/apps/ktalkd.png -share/icons/kids/32x32/apps/kthememgr.png -share/icons/kids/32x32/apps/kuser.png -share/icons/kids/32x32/apps/kxconfig.png -share/icons/kids/32x32/apps/laptop_battery.png -share/icons/kids/32x32/apps/laptop_pcmcia.png -share/icons/kids/32x32/apps/lin_agt_wrench.png -share/icons/kids/32x32/apps/linneighborhood.png -share/icons/kids/32x32/apps/linuxconf.png -share/icons/kids/32x32/apps/locale.png -share/icons/kids/32x32/apps/looknfeel.png -share/icons/kids/32x32/apps/mail.png -share/icons/kids/32x32/apps/mascot.png -share/icons/kids/32x32/apps/mouse.png -share/icons/kids/32x32/apps/mozilla.png -share/icons/kids/32x32/apps/multimedia.png -share/icons/kids/32x32/apps/mycomputer.png -share/icons/kids/32x32/apps/netscape.png -share/icons/kids/32x32/apps/network.png -share/icons/kids/32x32/apps/noatun.png -share/icons/kids/32x32/apps/os-support.png -share/icons/kids/32x32/apps/package_settings.png -share/icons/kids/32x32/apps/package_system.png -share/icons/kids/32x32/apps/package_toys.png -share/icons/kids/32x32/apps/package_utilities.png -share/icons/kids/32x32/apps/password.png -share/icons/kids/32x32/apps/penguin.png -share/icons/kids/32x32/apps/personal.png -share/icons/kids/32x32/apps/pppoeconfig.png -share/icons/kids/32x32/apps/printer.png -share/icons/kids/32x32/apps/printmgr.png -share/icons/kids/32x32/apps/proxy.png -share/icons/kids/32x32/apps/renamecomputer.png -share/icons/kids/32x32/apps/samba.png -share/icons/kids/32x32/apps/sisadmin.png -share/icons/kids/32x32/apps/star_here.png -share/icons/kids/32x32/apps/start_here.png -share/icons/kids/32x32/apps/stylesheet.png -share/icons/kids/32x32/apps/trash.png -share/icons/kids/32x32/apps/window_list.png -share/icons/kids/32x32/apps/windows_users.png -share/icons/kids/32x32/apps/x.png -share/icons/kids/32x32/apps/xcalc.png -share/icons/kids/32x32/apps/xmail.png -share/icons/kids/32x32/apps/xmms.png -share/icons/kids/32x32/apps/xpaint.png -share/icons/kids/32x32/devices/3floppy_mount.png -share/icons/kids/32x32/devices/3floppy_unmount.png -share/icons/kids/32x32/devices/camera.png -share/icons/kids/32x32/devices/cdrom_mount.png -share/icons/kids/32x32/devices/cdrom_unmount.png -share/icons/kids/32x32/devices/hdd_mount.png -share/icons/kids/32x32/devices/hdd_unmount.png -share/icons/kids/32x32/devices/memory.png -share/icons/kids/32x32/devices/network_local.png -share/icons/kids/32x32/devices/nfs_unmount.png -share/icons/kids/32x32/devices/print_printer.png -share/icons/kids/32x32/devices/printer.png -share/icons/kids/32x32/devices/printer2.png -share/icons/kids/32x32/mimetypes/cdimage.png -share/icons/kids/32x32/mimetypes/document.png -share/icons/kids/32x32/mimetypes/empty.png -share/icons/kids/32x32/mimetypes/file_locked.png -share/icons/kids/32x32/mimetypes/file_temporary.png -share/icons/kids/32x32/mimetypes/html.png -share/icons/kids/32x32/mimetypes/image.png -share/icons/kids/32x32/mimetypes/midi.png -share/icons/kids/32x32/mimetypes/netscape_doc.png -share/icons/kids/32x32/mimetypes/sound.png -share/icons/kids/32x32/mimetypes/unknown.png -share/icons/kids/48x48/actions/Untitled.png -share/icons/kids/48x48/actions/about_kde.png -share/icons/kids/48x48/actions/appearance.png -share/icons/kids/48x48/actions/application-exit.png -share/icons/kids/48x48/actions/bookmark-new.png -share/icons/kids/48x48/actions/bookmark.png -share/icons/kids/48x48/actions/button_cance.png -share/icons/kids/48x48/actions/button_ok.png -share/icons/kids/48x48/actions/cd.png -share/icons/kids/48x48/actions/colorize.png -share/icons/kids/48x48/actions/compfile.png -share/icons/kids/48x48/actions/configure.png -share/icons/kids/48x48/actions/decrypted.png -share/icons/kids/48x48/actions/dialog-close.png -share/icons/kids/48x48/actions/document-new.png -share/icons/kids/48x48/actions/document-open.png -share/icons/kids/48x48/actions/document-print-preview.png -share/icons/kids/48x48/actions/document-print.png -share/icons/kids/48x48/actions/document-save-as.png -share/icons/kids/48x48/actions/document-save.png -share/icons/kids/48x48/actions/edit-copy.png -share/icons/kids/48x48/actions/edit-cut.png -share/icons/kids/48x48/actions/edit-delete.png -share/icons/kids/48x48/actions/edit-find.png -share/icons/kids/48x48/actions/edit-paste.png -share/icons/kids/48x48/actions/edit-redo.png -share/icons/kids/48x48/actions/edit-undo.png -share/icons/kids/48x48/actions/edit.png -share/icons/kids/48x48/actions/edittrash.png -share/icons/kids/48x48/actions/encrypted.png -share/icons/kids/48x48/actions/filefind.png -share/icons/kids/48x48/actions/fonts.png -share/icons/kids/48x48/actions/frameprint.png -share/icons/kids/48x48/actions/go-down.png -share/icons/kids/48x48/actions/go-home.png -share/icons/kids/48x48/actions/go-next-document.png -share/icons/kids/48x48/actions/go-next.png -share/icons/kids/48x48/actions/go-previous-document.png -share/icons/kids/48x48/actions/go-previous.png -share/icons/kids/48x48/actions/go-up.png -share/icons/kids/48x48/actions/help.png -share/icons/kids/48x48/actions/history.png -share/icons/kids/48x48/actions/klipper_doc.png -share/icons/kids/48x48/actions/launch.png -share/icons/kids/48x48/actions/misc.png -share/icons/kids/48x48/actions/next-sail.png -share/icons/kids/48x48/actions/previos-sail.png -share/icons/kids/48x48/actions/process-stop.png -share/icons/kids/48x48/actions/system-run.png -share/icons/kids/48x48/actions/system-search.png -share/icons/kids/48x48/actions/thumbnail.png -share/icons/kids/48x48/actions/unlock.png -share/icons/kids/48x48/actions/view-fullscreen.png -share/icons/kids/48x48/actions/view-refresh.png -share/icons/kids/48x48/actions/view-restore.png -share/icons/kids/48x48/actions/view.png -share/icons/kids/48x48/actions/view_bottom.png -share/icons/kids/48x48/actions/view_choose.png -share/icons/kids/48x48/actions/view_detailed.png -share/icons/kids/48x48/actions/view_icon.png -share/icons/kids/48x48/actions/view_left_right.png -share/icons/kids/48x48/actions/view_multicolumn.png -share/icons/kids/48x48/actions/view_right.png -share/icons/kids/48x48/actions/view_sidetree.png -share/icons/kids/48x48/actions/view_text.png -share/icons/kids/48x48/actions/view_top_bottom.png -share/icons/kids/48x48/actions/view_tree.png -share/icons/kids/48x48/actions/window-new.png -share/icons/kids/48x48/actions/zoom-best-fit.png -share/icons/kids/48x48/actions/zoom-in.png -share/icons/kids/48x48/actions/zoom-original.png -share/icons/kids/48x48/actions/zoom-out.png -share/icons/kids/48x48/apps/Untitled.png -share/icons/kids/48x48/apps/agent.png -share/icons/kids/48x48/apps/agt-family-off.png -share/icons/kids/48x48/apps/agt_action_fail.png -share/icons/kids/48x48/apps/agt_action_success.png -share/icons/kids/48x48/apps/agt_back.png -share/icons/kids/48x48/apps/agt_family-off.png -share/icons/kids/48x48/apps/agt_family.png -share/icons/kids/48x48/apps/agt_forward.png -share/icons/kids/48x48/apps/agt_login.png -share/icons/kids/48x48/apps/agt_print.png -share/icons/kids/48x48/apps/agt_reload.png -share/icons/kids/48x48/apps/agt_resume.png -share/icons/kids/48x48/apps/agt_runit.png -share/icons/kids/48x48/apps/agt_stop.png -share/icons/kids/48x48/apps/agt_uninstall-product.png -share/icons/kids/48x48/apps/agt_update_critical.png -share/icons/kids/48x48/apps/agt_update_drivers.png -share/icons/kids/48x48/apps/agt_virussafe-off.png -share/icons/kids/48x48/apps/agt_virussafe.png -share/icons/kids/48x48/apps/aim.png -share/icons/kids/48x48/apps/ark.png -share/icons/kids/48x48/apps/babelfish.png -share/icons/kids/48x48/apps/background.png -share/icons/kids/48x48/apps/bell.png -share/icons/kids/48x48/apps/browser.png -share/icons/kids/48x48/apps/cache.png -share/icons/kids/48x48/apps/camera.png -share/icons/kids/48x48/apps/cd-player1.png -share/icons/kids/48x48/apps/cd-player2.png -share/icons/kids/48x48/apps/cd-player264.png -share/icons/kids/48x48/apps/clicknrun.png -share/icons/kids/48x48/apps/clicknrungrey.png -share/icons/kids/48x48/apps/clock.png -share/icons/kids/48x48/apps/colors.png -share/icons/kids/48x48/apps/cookie.png -share/icons/kids/48x48/apps/date.png -share/icons/kids/48x48/apps/display.png -share/icons/kids/48x48/apps/email.png -share/icons/kids/48x48/apps/energy.png -share/icons/kids/48x48/apps/energy_star.png -share/icons/kids/48x48/apps/enhanced_browsing.png -share/icons/kids/48x48/apps/file-manager.png -share/icons/kids/48x48/apps/fileshare.png -share/icons/kids/48x48/apps/filetypes.png -share/icons/kids/48x48/apps/fonts.png -share/icons/kids/48x48/apps/galeon.png -share/icons/kids/48x48/apps/gimp.png -share/icons/kids/48x48/apps/go.png -share/icons/kids/48x48/apps/harddrive.png -share/icons/kids/48x48/apps/hook.png -share/icons/kids/48x48/apps/hwinfo.png -share/icons/kids/48x48/apps/icons.png -share/icons/kids/48x48/apps/iconthemes.png -share/icons/kids/48x48/apps/input_devices_settings.png -share/icons/kids/48x48/apps/kcalc.png -share/icons/kids/48x48/apps/kcmmemory.png -share/icons/kids/48x48/apps/kcmpci.png -share/icons/kids/48x48/apps/kcmprocessor.png -share/icons/kids/48x48/apps/kcmsound.png -share/icons/kids/48x48/apps/kcmsystem.png -share/icons/kids/48x48/apps/kcmx.png -share/icons/kids/48x48/apps/kcoloredit.png -share/icons/kids/48x48/apps/kcontrol.png -share/icons/kids/48x48/apps/key_bindings.png -share/icons/kids/48x48/apps/keyboard.png -share/icons/kids/48x48/apps/keyboard_layout.png -share/icons/kids/48x48/apps/kfloppy.png -share/icons/kids/48x48/apps/kfm.png -share/icons/kids/48x48/apps/kfm_home.png -share/icons/kids/48x48/apps/khelpcenter.png -share/icons/kids/48x48/apps/kicker.png -share/icons/kids/48x48/apps/kjobviewer.png -share/icons/kids/48x48/apps/klaptopdaemon.png -share/icons/kids/48x48/apps/klipper.png -share/icons/kids/48x48/apps/klpq.png -share/icons/kids/48x48/apps/kmenu.png -share/icons/kids/48x48/apps/kmix.png -share/icons/kids/48x48/apps/knetconfig.png -share/icons/kids/48x48/apps/knotify.png -share/icons/kids/48x48/apps/konqueror.png -share/icons/kids/48x48/apps/konsole.png -share/icons/kids/48x48/apps/kppp.png -share/icons/kids/48x48/apps/kreatecd.png -share/icons/kids/48x48/apps/krfb.png -share/icons/kids/48x48/apps/kscd.png -share/icons/kids/48x48/apps/kscreensaver.png -share/icons/kids/48x48/apps/kservices.png -share/icons/kids/48x48/apps/ksmiletris.png -share/icons/kids/48x48/apps/ktalkd.png -share/icons/kids/48x48/apps/kuser.png -share/icons/kids/48x48/apps/kxconfig.png -share/icons/kids/48x48/apps/laptop_battery.png -share/icons/kids/48x48/apps/laptop_pcmcia.png -share/icons/kids/48x48/apps/lin_agt_wrench.png -share/icons/kids/48x48/apps/linneighborhood.png -share/icons/kids/48x48/apps/linuxconf.png -share/icons/kids/48x48/apps/locale.png -share/icons/kids/48x48/apps/looknfeel.png -share/icons/kids/48x48/apps/mail.png -share/icons/kids/48x48/apps/mascot.png -share/icons/kids/48x48/apps/mouse.png -share/icons/kids/48x48/apps/mozilla.png -share/icons/kids/48x48/apps/multimedia.png -share/icons/kids/48x48/apps/mycomputer.png -share/icons/kids/48x48/apps/netscape.png -share/icons/kids/48x48/apps/network.png -share/icons/kids/48x48/apps/noatun.png -share/icons/kids/48x48/apps/os-support.png -share/icons/kids/48x48/apps/package_settings.png -share/icons/kids/48x48/apps/package_system.png -share/icons/kids/48x48/apps/package_toys.png -share/icons/kids/48x48/apps/package_utilities.png -share/icons/kids/48x48/apps/password.png -share/icons/kids/48x48/apps/penguin.png -share/icons/kids/48x48/apps/personal.png -share/icons/kids/48x48/apps/printer.png -share/icons/kids/48x48/apps/printmgr.png -share/icons/kids/48x48/apps/proxy.png -share/icons/kids/48x48/apps/renamecomputer.png -share/icons/kids/48x48/apps/samba.png -share/icons/kids/48x48/apps/sisadmin.png -share/icons/kids/48x48/apps/star_here.png -share/icons/kids/48x48/apps/start_here.png -share/icons/kids/48x48/apps/stylesheet.png -share/icons/kids/48x48/apps/trash.png -share/icons/kids/48x48/apps/window_list.png -share/icons/kids/48x48/apps/windows_users.png -share/icons/kids/48x48/apps/x.png -share/icons/kids/48x48/apps/xcalc.png -share/icons/kids/48x48/apps/xmail.png -share/icons/kids/48x48/apps/xmms.png -share/icons/kids/48x48/apps/xpaint.png -share/icons/kids/48x48/devices/3floppy_mount.png -share/icons/kids/48x48/devices/3floppy_unmount.png -share/icons/kids/48x48/devices/48x48.png -share/icons/kids/48x48/devices/camera.png -share/icons/kids/48x48/devices/cdrom_mount.png -share/icons/kids/48x48/devices/cdrom_unmount.png -share/icons/kids/48x48/devices/hdd_mount.png -share/icons/kids/48x48/devices/hdd_unmount.png -share/icons/kids/48x48/devices/memory.png -share/icons/kids/48x48/devices/network_local.png -share/icons/kids/48x48/devices/nfs_unmount.png -share/icons/kids/48x48/devices/print_printer.png -share/icons/kids/48x48/devices/printer.png -share/icons/kids/48x48/devices/printer2.png -share/icons/kids/48x48/mimetypes/cdimage.png -share/icons/kids/48x48/mimetypes/document.png -share/icons/kids/48x48/mimetypes/empty.png -share/icons/kids/48x48/mimetypes/file_locked.png -share/icons/kids/48x48/mimetypes/file_temporary.png -share/icons/kids/48x48/mimetypes/html.png -share/icons/kids/48x48/mimetypes/image.png -share/icons/kids/48x48/mimetypes/midi.png -share/icons/kids/48x48/mimetypes/netscape_doc.png -share/icons/kids/48x48/mimetypes/sound.png -share/icons/kids/48x48/mimetypes/unknown.png -share/icons/kids/64x64/actions/Untitled.png -share/icons/kids/64x64/actions/about_kde.png -share/icons/kids/64x64/actions/appearance.png -share/icons/kids/64x64/actions/application-exit.png -share/icons/kids/64x64/actions/bookmark-new.png -share/icons/kids/64x64/actions/bookmark.png -share/icons/kids/64x64/actions/button_cance.png -share/icons/kids/64x64/actions/button_ok.png -share/icons/kids/64x64/actions/cd.png -share/icons/kids/64x64/actions/colorize.png -share/icons/kids/64x64/actions/compfile.png -share/icons/kids/64x64/actions/configure.png -share/icons/kids/64x64/actions/decrypted.png -share/icons/kids/64x64/actions/dialog-close.png -share/icons/kids/64x64/actions/document-new.png -share/icons/kids/64x64/actions/document-open.png -share/icons/kids/64x64/actions/document-print-preview.png -share/icons/kids/64x64/actions/document-print.png -share/icons/kids/64x64/actions/document-save-as.png -share/icons/kids/64x64/actions/document-save.png -share/icons/kids/64x64/actions/edit-copy.png -share/icons/kids/64x64/actions/edit-cut.png -share/icons/kids/64x64/actions/edit-delete.png -share/icons/kids/64x64/actions/edit-find.png -share/icons/kids/64x64/actions/edit-paste.png -share/icons/kids/64x64/actions/edit-redo.png -share/icons/kids/64x64/actions/edit-undo.png -share/icons/kids/64x64/actions/edit.png -share/icons/kids/64x64/actions/edittrash.png -share/icons/kids/64x64/actions/encrypted.png -share/icons/kids/64x64/actions/filefind.png -share/icons/kids/64x64/actions/fonts.png -share/icons/kids/64x64/actions/frameprint.png -share/icons/kids/64x64/actions/go-down.png -share/icons/kids/64x64/actions/go-home.png -share/icons/kids/64x64/actions/go-next-document.png -share/icons/kids/64x64/actions/go-next.png -share/icons/kids/64x64/actions/go-previous-document.png -share/icons/kids/64x64/actions/go-previous.png -share/icons/kids/64x64/actions/go-up.png -share/icons/kids/64x64/actions/help.png -share/icons/kids/64x64/actions/history.png -share/icons/kids/64x64/actions/klipper_doc.png -share/icons/kids/64x64/actions/launch.png -share/icons/kids/64x64/actions/misc.png -share/icons/kids/64x64/actions/next-sail.png -share/icons/kids/64x64/actions/previos-sail.png -share/icons/kids/64x64/actions/process-stop.png -share/icons/kids/64x64/actions/system-run.png -share/icons/kids/64x64/actions/system-search.png -share/icons/kids/64x64/actions/thumbnail.png -share/icons/kids/64x64/actions/unlock.png -share/icons/kids/64x64/actions/view-fullscreen.png -share/icons/kids/64x64/actions/view-refresh.png -share/icons/kids/64x64/actions/view-restore.png -share/icons/kids/64x64/actions/view.png -share/icons/kids/64x64/actions/view_bottom.png -share/icons/kids/64x64/actions/view_choose.png -share/icons/kids/64x64/actions/view_detailed.png -share/icons/kids/64x64/actions/view_icon.png -share/icons/kids/64x64/actions/view_left_right.png -share/icons/kids/64x64/actions/view_multicolumn.png -share/icons/kids/64x64/actions/view_right.png -share/icons/kids/64x64/actions/view_sidetree.png -share/icons/kids/64x64/actions/view_text.png -share/icons/kids/64x64/actions/view_top_bottom.png -share/icons/kids/64x64/actions/view_tree.png -share/icons/kids/64x64/actions/window-new.png -share/icons/kids/64x64/actions/zoom-best-fit.png -share/icons/kids/64x64/actions/zoom-in.png -share/icons/kids/64x64/actions/zoom-out.png -share/icons/kids/64x64/apps/Untitled.png -share/icons/kids/64x64/apps/agent.png -share/icons/kids/64x64/apps/agt-family-off.png -share/icons/kids/64x64/apps/agt_action_fail.png -share/icons/kids/64x64/apps/agt_action_success.png -share/icons/kids/64x64/apps/agt_back.png -share/icons/kids/64x64/apps/agt_family-off.png -share/icons/kids/64x64/apps/agt_family.png -share/icons/kids/64x64/apps/agt_forward.png -share/icons/kids/64x64/apps/agt_login.png -share/icons/kids/64x64/apps/agt_print.png -share/icons/kids/64x64/apps/agt_reload.png -share/icons/kids/64x64/apps/agt_resume.png -share/icons/kids/64x64/apps/agt_runit.png -share/icons/kids/64x64/apps/agt_stop.png -share/icons/kids/64x64/apps/agt_uninstall-product.png -share/icons/kids/64x64/apps/agt_update_critical.png -share/icons/kids/64x64/apps/agt_update_drivers.png -share/icons/kids/64x64/apps/agt_virussafe-off.png -share/icons/kids/64x64/apps/agt_virussafe.png -share/icons/kids/64x64/apps/aim.png -share/icons/kids/64x64/apps/ark.png -share/icons/kids/64x64/apps/babelfish.png -share/icons/kids/64x64/apps/background.png -share/icons/kids/64x64/apps/bell.png -share/icons/kids/64x64/apps/browser.png -share/icons/kids/64x64/apps/cache.png -share/icons/kids/64x64/apps/camera.png -share/icons/kids/64x64/apps/cd-player1.png -share/icons/kids/64x64/apps/clicknrun.png -share/icons/kids/64x64/apps/clicknrungrey.png -share/icons/kids/64x64/apps/clock.png -share/icons/kids/64x64/apps/colors.png -share/icons/kids/64x64/apps/cookie.png -share/icons/kids/64x64/apps/date.png -share/icons/kids/64x64/apps/display.png -share/icons/kids/64x64/apps/email.png -share/icons/kids/64x64/apps/energy.png -share/icons/kids/64x64/apps/energy_star.png -share/icons/kids/64x64/apps/enhanced_browsing.png -share/icons/kids/64x64/apps/file-manager.png -share/icons/kids/64x64/apps/fileshare.png -share/icons/kids/64x64/apps/filetypes.png -share/icons/kids/64x64/apps/fonts.png -share/icons/kids/64x64/apps/galeon.png -share/icons/kids/64x64/apps/gimp.png -share/icons/kids/64x64/apps/go.png -share/icons/kids/64x64/apps/harddrive.png -share/icons/kids/64x64/apps/hook.png -share/icons/kids/64x64/apps/hwinfo.png -share/icons/kids/64x64/apps/icons.png -share/icons/kids/64x64/apps/iconthemes.png -share/icons/kids/64x64/apps/input_devices_settings.png -share/icons/kids/64x64/apps/kcalc.png -share/icons/kids/64x64/apps/kcmmemory.png -share/icons/kids/64x64/apps/kcmpci.png -share/icons/kids/64x64/apps/kcmprocessor.png -share/icons/kids/64x64/apps/kcmsound.png -share/icons/kids/64x64/apps/kcmsystem.png -share/icons/kids/64x64/apps/kcmx.png -share/icons/kids/64x64/apps/kcoloredit.png -share/icons/kids/64x64/apps/kcontrol.png -share/icons/kids/64x64/apps/key_bindings.png -share/icons/kids/64x64/apps/keyboard.png -share/icons/kids/64x64/apps/keyboard_layout.png -share/icons/kids/64x64/apps/kfloppy.png -share/icons/kids/64x64/apps/kfm.png -share/icons/kids/64x64/apps/kfm_home.png -share/icons/kids/64x64/apps/khelpcenter.png -share/icons/kids/64x64/apps/kicker.png -share/icons/kids/64x64/apps/kjobviewer.png -share/icons/kids/64x64/apps/klaptopdaemon.png -share/icons/kids/64x64/apps/klipper.png -share/icons/kids/64x64/apps/klpq.png -share/icons/kids/64x64/apps/kmenu.png -share/icons/kids/64x64/apps/kmix.png -share/icons/kids/64x64/apps/knetconfig.png -share/icons/kids/64x64/apps/knotify.png -share/icons/kids/64x64/apps/konqueror.png -share/icons/kids/64x64/apps/konsole.png -share/icons/kids/64x64/apps/kppp.png -share/icons/kids/64x64/apps/kreatecd.png -share/icons/kids/64x64/apps/krfb.png -share/icons/kids/64x64/apps/kscd.png -share/icons/kids/64x64/apps/kscreensaver.png -share/icons/kids/64x64/apps/kservices.png -share/icons/kids/64x64/apps/ksmiletris.png -share/icons/kids/64x64/apps/ktalkd.png -share/icons/kids/64x64/apps/kuser.png -share/icons/kids/64x64/apps/kxconfig.png -share/icons/kids/64x64/apps/laptop_battery.png -share/icons/kids/64x64/apps/laptop_pcmcia.png -share/icons/kids/64x64/apps/lin_agt_wrench.png -share/icons/kids/64x64/apps/linneighborhood.png -share/icons/kids/64x64/apps/linuxconf.png -share/icons/kids/64x64/apps/locale.png -share/icons/kids/64x64/apps/looknfeel.png -share/icons/kids/64x64/apps/mail.png -share/icons/kids/64x64/apps/mascot.png -share/icons/kids/64x64/apps/mouse.png -share/icons/kids/64x64/apps/mozilla.png -share/icons/kids/64x64/apps/multimedia.png -share/icons/kids/64x64/apps/mycomputer.png -share/icons/kids/64x64/apps/netscape.png -share/icons/kids/64x64/apps/network.png -share/icons/kids/64x64/apps/noatun.png -share/icons/kids/64x64/apps/os-support.png -share/icons/kids/64x64/apps/package_settings.png -share/icons/kids/64x64/apps/package_system.png -share/icons/kids/64x64/apps/package_toys.png -share/icons/kids/64x64/apps/package_utilities.png -share/icons/kids/64x64/apps/password.png -share/icons/kids/64x64/apps/penguin.png -share/icons/kids/64x64/apps/personal.png -share/icons/kids/64x64/apps/printer.png -share/icons/kids/64x64/apps/printmgr.png -share/icons/kids/64x64/apps/proxy.png -share/icons/kids/64x64/apps/renamecomputer.png -share/icons/kids/64x64/apps/samba.png -share/icons/kids/64x64/apps/sisadmin.png -share/icons/kids/64x64/apps/star_here.png -share/icons/kids/64x64/apps/start_here.png -share/icons/kids/64x64/apps/stylesheet.png -share/icons/kids/64x64/apps/trash.png -share/icons/kids/64x64/apps/window_list.png -share/icons/kids/64x64/apps/windows_users.png -share/icons/kids/64x64/apps/x.png -share/icons/kids/64x64/apps/xcalc.png -share/icons/kids/64x64/apps/xmail.png -share/icons/kids/64x64/apps/xmms.png -share/icons/kids/64x64/apps/xpaint.png -share/icons/kids/64x64/devices/3floppy_mount.png -share/icons/kids/64x64/devices/3floppy_unmount.png -share/icons/kids/64x64/devices/camera.png -share/icons/kids/64x64/devices/cdrom_mount.png -share/icons/kids/64x64/devices/cdrom_unmount.png -share/icons/kids/64x64/devices/hdd_mount.png -share/icons/kids/64x64/devices/hdd_unmount.png -share/icons/kids/64x64/devices/memory.png -share/icons/kids/64x64/devices/network_local.png -share/icons/kids/64x64/devices/nfs_unmount.png -share/icons/kids/64x64/devices/print_printer.png -share/icons/kids/64x64/devices/printer.png -share/icons/kids/64x64/devices/printer2.png -share/icons/kids/64x64/mimetypes/cdimage.png -share/icons/kids/64x64/mimetypes/document.png -share/icons/kids/64x64/mimetypes/empty.png -share/icons/kids/64x64/mimetypes/file_locked.png -share/icons/kids/64x64/mimetypes/file_temporary.png -share/icons/kids/64x64/mimetypes/html.png -share/icons/kids/64x64/mimetypes/image.png -share/icons/kids/64x64/mimetypes/midi.png -share/icons/kids/64x64/mimetypes/netscape_doc.png -share/icons/kids/64x64/mimetypes/sound.png -share/icons/kids/64x64/mimetypes/unknown.png -share/icons/kids/index.theme -share/icons/nuvola/128x128/apps/access.png -share/icons/nuvola/128x128/apps/acroread.png -share/icons/nuvola/128x128/apps/agent.png -share/icons/nuvola/128x128/apps/aktion.png -share/icons/nuvola/128x128/apps/amarok.png -share/icons/nuvola/128x128/apps/amor.png -share/icons/nuvola/128x128/apps/applixware.png -share/icons/nuvola/128x128/apps/ark.png -share/icons/nuvola/128x128/apps/arts.png -share/icons/nuvola/128x128/apps/artsbuilder.png -share/icons/nuvola/128x128/apps/artscontrol.png -share/icons/nuvola/128x128/apps/artsmidimanager.png -share/icons/nuvola/128x128/apps/atlantik.png -share/icons/nuvola/128x128/apps/background.png -share/icons/nuvola/128x128/apps/bell.png -share/icons/nuvola/128x128/apps/bookcase.png -share/icons/nuvola/128x128/apps/browser.png -share/icons/nuvola/128x128/apps/bug.png -share/icons/nuvola/128x128/apps/cache.png -share/icons/nuvola/128x128/apps/chat.png -share/icons/nuvola/128x128/apps/clanbomber.png -share/icons/nuvola/128x128/apps/clock.png -share/icons/nuvola/128x128/apps/colors.png -share/icons/nuvola/128x128/apps/cookie.png -share/icons/nuvola/128x128/apps/core.png -share/icons/nuvola/128x128/apps/date.png -share/icons/nuvola/128x128/apps/designer.png -share/icons/nuvola/128x128/apps/digikam.png -share/icons/nuvola/128x128/apps/display.png -share/icons/nuvola/128x128/apps/download_manager.png -share/icons/nuvola/128x128/apps/edu_languages.png -share/icons/nuvola/128x128/apps/edu_mathematics.png -share/icons/nuvola/128x128/apps/edu_miscellaneous.png -share/icons/nuvola/128x128/apps/edu_science.png -share/icons/nuvola/128x128/apps/emacs.png -share/icons/nuvola/128x128/apps/email.png -share/icons/nuvola/128x128/apps/energy.png -share/icons/nuvola/128x128/apps/enhanced_browsing.png -share/icons/nuvola/128x128/apps/error.png -share/icons/nuvola/128x128/apps/evolution.png -share/icons/nuvola/128x128/apps/file-manager.png -share/icons/nuvola/128x128/apps/filetypes.png -share/icons/nuvola/128x128/apps/flashkard.png -share/icons/nuvola/128x128/apps/fonts.png -share/icons/nuvola/128x128/apps/fsview.png -share/icons/nuvola/128x128/apps/gaim.png -share/icons/nuvola/128x128/apps/galeon.png -share/icons/nuvola/128x128/apps/gimp.png -share/icons/nuvola/128x128/apps/gimp2.png -share/icons/nuvola/128x128/apps/gnome_apps.png -share/icons/nuvola/128x128/apps/gnome_apps2.png -share/icons/nuvola/128x128/apps/go.png -share/icons/nuvola/128x128/apps/help_index.png -share/icons/nuvola/128x128/apps/hwinfo.png -share/icons/nuvola/128x128/apps/icons.png -share/icons/nuvola/128x128/apps/iconthemes.png -share/icons/nuvola/128x128/apps/important.png -share/icons/nuvola/128x128/apps/indeximg.png -share/icons/nuvola/128x128/apps/input_devices_settings.png -share/icons/nuvola/128x128/apps/irkick.png -share/icons/nuvola/128x128/apps/juk.png -share/icons/nuvola/128x128/apps/kaboodle.png -share/icons/nuvola/128x128/apps/kaddressbook.png -share/icons/nuvola/128x128/apps/kalarm.png -share/icons/nuvola/128x128/apps/kalzium.png -share/icons/nuvola/128x128/apps/kappfinder.png -share/icons/nuvola/128x128/apps/karm.png -share/icons/nuvola/128x128/apps/kasteroids.png -share/icons/nuvola/128x128/apps/kate.png -share/icons/nuvola/128x128/apps/katomic.png -share/icons/nuvola/128x128/apps/kaudiocreator.png -share/icons/nuvola/128x128/apps/kbackgammon.png -share/icons/nuvola/128x128/apps/kbackgammon_engine.png -share/icons/nuvola/128x128/apps/kblackbox.png -share/icons/nuvola/128x128/apps/kbounce.png -share/icons/nuvola/128x128/apps/kbrunch.png -share/icons/nuvola/128x128/apps/kcalc.png -share/icons/nuvola/128x128/apps/kcharselect.png -share/icons/nuvola/128x128/apps/kchart.png -share/icons/nuvola/128x128/apps/kcmdevice.png -share/icons/nuvola/128x128/apps/kcmdevices.png -share/icons/nuvola/128x128/apps/kcmdf.png -share/icons/nuvola/128x128/apps/kcmdrkonqi.png -share/icons/nuvola/128x128/apps/kcmfontinst.png -share/icons/nuvola/128x128/apps/kcmkwm.png -share/icons/nuvola/128x128/apps/kcmmemory.png -share/icons/nuvola/128x128/apps/kcmmidi.png -share/icons/nuvola/128x128/apps/kcmpartitions.png -share/icons/nuvola/128x128/apps/kcmpci.png -share/icons/nuvola/128x128/apps/kcmprocessor.png -share/icons/nuvola/128x128/apps/kcmscsi.png -share/icons/nuvola/128x128/apps/kcmsystem.png -share/icons/nuvola/128x128/apps/kcmx.png -share/icons/nuvola/128x128/apps/kcolorchooser.png -share/icons/nuvola/128x128/apps/kcoloredit.png -share/icons/nuvola/128x128/apps/kcontrol.png -share/icons/nuvola/128x128/apps/kdat.png -share/icons/nuvola/128x128/apps/kdf.png -share/icons/nuvola/128x128/apps/kdict.png -share/icons/nuvola/128x128/apps/kdisknav.png -share/icons/nuvola/128x128/apps/kdmconfig.png -share/icons/nuvola/128x128/apps/kedit.png -share/icons/nuvola/128x128/apps/keditbookmarks.png -share/icons/nuvola/128x128/apps/key_bindings.png -share/icons/nuvola/128x128/apps/keybindings.png -share/icons/nuvola/128x128/apps/keyboard.png -share/icons/nuvola/128x128/apps/keyboard_layout.png -share/icons/nuvola/128x128/apps/kfig.png -share/icons/nuvola/128x128/apps/kfind.png -share/icons/nuvola/128x128/apps/kfloppy.png -share/icons/nuvola/128x128/apps/kfm.png -share/icons/nuvola/128x128/apps/kfm_home.png -share/icons/nuvola/128x128/apps/kget.png -share/icons/nuvola/128x128/apps/kghostview.png -share/icons/nuvola/128x128/apps/kgpg.png -share/icons/nuvola/128x128/apps/khangman.png -share/icons/nuvola/128x128/apps/khelpcenter.png -share/icons/nuvola/128x128/apps/khexedit.png -share/icons/nuvola/128x128/apps/khotkeys.png -share/icons/nuvola/128x128/apps/kig.png -share/icons/nuvola/128x128/apps/kiten.png -share/icons/nuvola/128x128/apps/kivio.png -share/icons/nuvola/128x128/apps/kjobviewer.png -share/icons/nuvola/128x128/apps/kjots.png -share/icons/nuvola/128x128/apps/klettres.png -share/icons/nuvola/128x128/apps/klipper.png -share/icons/nuvola/128x128/apps/klpq.png -share/icons/nuvola/128x128/apps/kmag.png -share/icons/nuvola/128x128/apps/kmahjong.png -share/icons/nuvola/128x128/apps/kmail.png -share/icons/nuvola/128x128/apps/kmenu.png -share/icons/nuvola/128x128/apps/kmenuedit.png -share/icons/nuvola/128x128/apps/kmessedwords.png -share/icons/nuvola/128x128/apps/kmid.png -share/icons/nuvola/128x128/apps/kmines.png -share/icons/nuvola/128x128/apps/kmix.png -share/icons/nuvola/128x128/apps/kmoon.png -share/icons/nuvola/128x128/apps/kmousetool.png -share/icons/nuvola/128x128/apps/kmplot.png -share/icons/nuvola/128x128/apps/knewsletter.png -share/icons/nuvola/128x128/apps/knewsticker.png -share/icons/nuvola/128x128/apps/knode.png -share/icons/nuvola/128x128/apps/knotes.png -share/icons/nuvola/128x128/apps/knotify.png -share/icons/nuvola/128x128/apps/kolf.png -share/icons/nuvola/128x128/apps/kolourpaint.png -share/icons/nuvola/128x128/apps/konqsidebar_mediaplayer.png -share/icons/nuvola/128x128/apps/konqueror.png -share/icons/nuvola/128x128/apps/konquest.png -share/icons/nuvola/128x128/apps/konsole.png -share/icons/nuvola/128x128/apps/kontact.png -share/icons/nuvola/128x128/apps/kooka.png -share/icons/nuvola/128x128/apps/kopete.png -share/icons/nuvola/128x128/apps/korganizer.png -share/icons/nuvola/128x128/apps/korganizer_todo.png -share/icons/nuvola/128x128/apps/korn.png -share/icons/nuvola/128x128/apps/kpackage.png -share/icons/nuvola/128x128/apps/kpager.png -share/icons/nuvola/128x128/apps/kpaint.png -share/icons/nuvola/128x128/apps/kpdf.png -share/icons/nuvola/128x128/apps/kpercentage.png -share/icons/nuvola/128x128/apps/kpilot.png -share/icons/nuvola/128x128/apps/kpovmodeler.png -share/icons/nuvola/128x128/apps/kppp.png -share/icons/nuvola/128x128/apps/kpresenter.png -share/icons/nuvola/128x128/apps/krdc.png -share/icons/nuvola/128x128/apps/krec.png -share/icons/nuvola/128x128/apps/kreversi.png -share/icons/nuvola/128x128/apps/krfb.png -share/icons/nuvola/128x128/apps/krita.png -share/icons/nuvola/128x128/apps/kruler.png -share/icons/nuvola/128x128/apps/kscd.png -share/icons/nuvola/128x128/apps/kscreensaver.png -share/icons/nuvola/128x128/apps/kservices.png -share/icons/nuvola/128x128/apps/kshisen.png -share/icons/nuvola/128x128/apps/ksig.png -share/icons/nuvola/128x128/apps/ksim.png -share/icons/nuvola/128x128/apps/ksirc.png -share/icons/nuvola/128x128/apps/ksnapshot.png -share/icons/nuvola/128x128/apps/ksplash.png -share/icons/nuvola/128x128/apps/ksysv.png -share/icons/nuvola/128x128/apps/kteatime.png -share/icons/nuvola/128x128/apps/kthememgr.png -share/icons/nuvola/128x128/apps/ktimer.png -share/icons/nuvola/128x128/apps/ktip.png -share/icons/nuvola/128x128/apps/ktouch.png -share/icons/nuvola/128x128/apps/kugar.png -share/icons/nuvola/128x128/apps/kuickshow.png -share/icons/nuvola/128x128/apps/kuser.png -share/icons/nuvola/128x128/apps/kverbos.png -share/icons/nuvola/128x128/apps/kview.png -share/icons/nuvola/128x128/apps/kweather.png -share/icons/nuvola/128x128/apps/kwikdisk.png -share/icons/nuvola/128x128/apps/kwin.png -share/icons/nuvola/128x128/apps/kwin4.png -share/icons/nuvola/128x128/apps/kword.png -share/icons/nuvola/128x128/apps/kworldclock.png -share/icons/nuvola/128x128/apps/kwrite.png -share/icons/nuvola/128x128/apps/kxkb.png -share/icons/nuvola/128x128/apps/laptop_battery.png -share/icons/nuvola/128x128/apps/laptop_pcmcia.png -share/icons/nuvola/128x128/apps/licq.png -share/icons/nuvola/128x128/apps/locale.png -share/icons/nuvola/128x128/apps/looknfeel.png -share/icons/nuvola/128x128/apps/mozilla-firebird.png -share/icons/nuvola/128x128/apps/mozilla-thunderbird.png -share/icons/nuvola/128x128/apps/mozilla.png -share/icons/nuvola/128x128/apps/mplayer.png -share/icons/nuvola/128x128/apps/multimedia.png -share/icons/nuvola/128x128/apps/mycomputer.png -share/icons/nuvola/128x128/apps/netscape.png -share/icons/nuvola/128x128/apps/network.png -share/icons/nuvola/128x128/apps/noatun.png -share/icons/nuvola/128x128/apps/ooo_gulls.png -share/icons/nuvola/128x128/apps/ooo_setup.png -share/icons/nuvola/128x128/apps/opera.png -share/icons/nuvola/128x128/apps/package.png -share/icons/nuvola/128x128/apps/package_applications.png -share/icons/nuvola/128x128/apps/package_development.png -share/icons/nuvola/128x128/apps/package_editors.png -share/icons/nuvola/128x128/apps/package_edutainment.png -share/icons/nuvola/128x128/apps/package_favorite.png -share/icons/nuvola/128x128/apps/package_games.png -share/icons/nuvola/128x128/apps/package_games_arcade.png -share/icons/nuvola/128x128/apps/package_games_board.png -share/icons/nuvola/128x128/apps/package_games_strategy.png -share/icons/nuvola/128x128/apps/package_graphics.png -share/icons/nuvola/128x128/apps/package_multimedia.png -share/icons/nuvola/128x128/apps/package_network.png -share/icons/nuvola/128x128/apps/package_settings.png -share/icons/nuvola/128x128/apps/package_system.png -share/icons/nuvola/128x128/apps/package_toys.png -share/icons/nuvola/128x128/apps/package_utilities.png -share/icons/nuvola/128x128/apps/package_wordprocessing.png -share/icons/nuvola/128x128/apps/password.png -share/icons/nuvola/128x128/apps/personal.png -share/icons/nuvola/128x128/apps/printmgr.png -share/icons/nuvola/128x128/apps/randr.png -share/icons/nuvola/128x128/apps/realplayer.png -share/icons/nuvola/128x128/apps/remote.png -share/icons/nuvola/128x128/apps/samba.png -share/icons/nuvola/128x128/apps/sodipodi.png -share/icons/nuvola/128x128/apps/style.png -share/icons/nuvola/128x128/apps/stylesheet.png -share/icons/nuvola/128x128/apps/terminal.png -share/icons/nuvola/128x128/apps/usb.png -share/icons/nuvola/128x128/apps/window_list.png -share/icons/nuvola/128x128/apps/winprops.png -share/icons/nuvola/128x128/apps/x.png -share/icons/nuvola/128x128/apps/xapp.png -share/icons/nuvola/128x128/apps/xcalc.png -share/icons/nuvola/128x128/apps/xclock.png -share/icons/nuvola/128x128/apps/xconfig.png -share/icons/nuvola/128x128/apps/xemacs.png -share/icons/nuvola/128x128/apps/xfmail.png -share/icons/nuvola/128x128/apps/xmag.png -share/icons/nuvola/128x128/devices/3floppy_mount.png -share/icons/nuvola/128x128/devices/3floppy_unmount.png -share/icons/nuvola/128x128/devices/5floppy_mount.png -share/icons/nuvola/128x128/devices/5floppy_unmount.png -share/icons/nuvola/128x128/devices/blockdevice.png -share/icons/nuvola/128x128/devices/camera.png -share/icons/nuvola/128x128/devices/camera_mount.png -share/icons/nuvola/128x128/devices/camera_unmount.png -share/icons/nuvola/128x128/devices/cdaudio_mount.png -share/icons/nuvola/128x128/devices/cdaudio_unmount.png -share/icons/nuvola/128x128/devices/cdrom_mount.png -share/icons/nuvola/128x128/devices/cdrom_unmount.png -share/icons/nuvola/128x128/devices/cdwriter_mount.png -share/icons/nuvola/128x128/devices/cdwriter_unmount.png -share/icons/nuvola/128x128/devices/dvd_mount.png -share/icons/nuvola/128x128/devices/dvd_unmount.png -share/icons/nuvola/128x128/devices/hdd_mount.png -share/icons/nuvola/128x128/devices/hdd_unmount.png -share/icons/nuvola/128x128/devices/ipod.png -share/icons/nuvola/128x128/devices/joystick.png -share/icons/nuvola/128x128/devices/ksim_cpu.png -share/icons/nuvola/128x128/devices/memory.png -share/icons/nuvola/128x128/devices/mo_mount.png -share/icons/nuvola/128x128/devices/mo_unmount.png -share/icons/nuvola/128x128/devices/modem.png -share/icons/nuvola/128x128/devices/mouse.png -share/icons/nuvola/128x128/devices/nfs_mount.png -share/icons/nuvola/128x128/devices/nfs_unmount.png -share/icons/nuvola/128x128/devices/pda.png -share/icons/nuvola/128x128/devices/pda_black.png -share/icons/nuvola/128x128/devices/pda_blue.png -share/icons/nuvola/128x128/devices/print_class.png -share/icons/nuvola/128x128/devices/print_printer.png -share/icons/nuvola/128x128/devices/printer.png -share/icons/nuvola/128x128/devices/printer1.png -share/icons/nuvola/128x128/devices/raid.png -share/icons/nuvola/128x128/devices/samba_mount.png -share/icons/nuvola/128x128/devices/samba_unmount.png -share/icons/nuvola/128x128/devices/scanner.png -share/icons/nuvola/128x128/devices/tablet.png -share/icons/nuvola/128x128/devices/tv.png -share/icons/nuvola/128x128/devices/usbpendrive_mount.png -share/icons/nuvola/128x128/devices/usbpendrive_unmount.png -share/icons/nuvola/128x128/devices/zip_mount.png -share/icons/nuvola/128x128/devices/zip_unmount.png -share/icons/nuvola/128x128/mimetypes/abiword_abi.png -share/icons/nuvola/128x128/mimetypes/applix.png -share/icons/nuvola/128x128/mimetypes/ascii.png -share/icons/nuvola/128x128/mimetypes/bc.png -share/icons/nuvola/128x128/mimetypes/binary.png -share/icons/nuvola/128x128/mimetypes/cdbo_list.png -share/icons/nuvola/128x128/mimetypes/cdimage.png -share/icons/nuvola/128x128/mimetypes/cdr.png -share/icons/nuvola/128x128/mimetypes/cdtrack.png -share/icons/nuvola/128x128/mimetypes/colorscm.png -share/icons/nuvola/128x128/mimetypes/colorset.png -share/icons/nuvola/128x128/mimetypes/core.png -share/icons/nuvola/128x128/mimetypes/deb.png -share/icons/nuvola/128x128/mimetypes/document.png -share/icons/nuvola/128x128/mimetypes/dvi.png -share/icons/nuvola/128x128/mimetypes/ebuild.png -share/icons/nuvola/128x128/mimetypes/empty.png -share/icons/nuvola/128x128/mimetypes/encrypted.png -share/icons/nuvola/128x128/mimetypes/exec_wine.png -share/icons/nuvola/128x128/mimetypes/file_locked-[Converted].png -share/icons/nuvola/128x128/mimetypes/file_locked.png -share/icons/nuvola/128x128/mimetypes/file_temporary.png -share/icons/nuvola/128x128/mimetypes/font.png -share/icons/nuvola/128x128/mimetypes/font_bitmap.png -share/icons/nuvola/128x128/mimetypes/font_truetype.png -share/icons/nuvola/128x128/mimetypes/font_type1.png -share/icons/nuvola/128x128/mimetypes/gettext.png -share/icons/nuvola/128x128/mimetypes/gf.png -share/icons/nuvola/128x128/mimetypes/gnome_app_info.png -share/icons/nuvola/128x128/mimetypes/html.png -share/icons/nuvola/128x128/mimetypes/image.png -share/icons/nuvola/128x128/mimetypes/image_gimp.png -share/icons/nuvola/128x128/mimetypes/info.png -share/icons/nuvola/128x128/mimetypes/install.png -share/icons/nuvola/128x128/mimetypes/java_jar.png -share/icons/nuvola/128x128/mimetypes/karbon_karbon.png -share/icons/nuvola/128x128/mimetypes/kchart_chrt.png -share/icons/nuvola/128x128/mimetypes/kformula_kfo.png -share/icons/nuvola/128x128/mimetypes/kget_list.png -share/icons/nuvola/128x128/mimetypes/kig_doc.png -share/icons/nuvola/128x128/mimetypes/kivio_flw.png -share/icons/nuvola/128x128/mimetypes/kmultiple.png -share/icons/nuvola/128x128/mimetypes/koffice.png -share/icons/nuvola/128x128/mimetypes/kpovmodeler_doc.png -share/icons/nuvola/128x128/mimetypes/kpresenter_kpr.png -share/icons/nuvola/128x128/mimetypes/krec_fileempty.png -share/icons/nuvola/128x128/mimetypes/krec_fileplay.png -share/icons/nuvola/128x128/mimetypes/krec_filerec.png -share/icons/nuvola/128x128/mimetypes/krita_kra.png -share/icons/nuvola/128x128/mimetypes/kspread_ksp.png -share/icons/nuvola/128x128/mimetypes/kugar_kud.png -share/icons/nuvola/128x128/mimetypes/kugardata.png -share/icons/nuvola/128x128/mimetypes/kword_kwd.png -share/icons/nuvola/128x128/mimetypes/log.png -share/icons/nuvola/128x128/mimetypes/make.png -share/icons/nuvola/128x128/mimetypes/man.png -share/icons/nuvola/128x128/mimetypes/message.png -share/icons/nuvola/128x128/mimetypes/metafont.png -share/icons/nuvola/128x128/mimetypes/midi.png -share/icons/nuvola/128x128/mimetypes/mime.png -share/icons/nuvola/128x128/mimetypes/mime_ebuild.png -share/icons/nuvola/128x128/mimetypes/mime_empty.png -share/icons/nuvola/128x128/mimetypes/mime_koffice.png -share/icons/nuvola/128x128/mimetypes/mime_lyx.png -share/icons/nuvola/128x128/mimetypes/mime_temp.png -share/icons/nuvola/128x128/mimetypes/misc_doc.png -share/icons/nuvola/128x128/mimetypes/mozilla_doc.png -share/icons/nuvola/128x128/mimetypes/netscape_doc.png -share/icons/nuvola/128x128/mimetypes/ooo_calc.png -share/icons/nuvola/128x128/mimetypes/ooo_calc_tpl.png -share/icons/nuvola/128x128/mimetypes/ooo_draw.png -share/icons/nuvola/128x128/mimetypes/ooo_draw_tpl.png -share/icons/nuvola/128x128/mimetypes/ooo_impress.png -share/icons/nuvola/128x128/mimetypes/ooo_impress_tpl.png -share/icons/nuvola/128x128/mimetypes/ooo_setup.png -share/icons/nuvola/128x128/mimetypes/ooo_writer.png -share/icons/nuvola/128x128/mimetypes/ooo_writer_tpl.png -share/icons/nuvola/128x128/mimetypes/patch.png -share/icons/nuvola/128x128/mimetypes/pdf.png -share/icons/nuvola/128x128/mimetypes/postscript.png -share/icons/nuvola/128x128/mimetypes/quicktime.png -share/icons/nuvola/128x128/mimetypes/readme.png -share/icons/nuvola/128x128/mimetypes/real.png -share/icons/nuvola/128x128/mimetypes/real_doc.png -share/icons/nuvola/128x128/mimetypes/recycled.png -share/icons/nuvola/128x128/mimetypes/resource.png -share/icons/nuvola/128x128/mimetypes/rpm.png -share/icons/nuvola/128x128/mimetypes/shellscript.png -share/icons/nuvola/128x128/mimetypes/soffice.png -share/icons/nuvola/128x128/mimetypes/sound.png -share/icons/nuvola/128x128/mimetypes/source.png -share/icons/nuvola/128x128/mimetypes/source_c.png -share/icons/nuvola/128x128/mimetypes/source_cpp.png -share/icons/nuvola/128x128/mimetypes/source_css.png -share/icons/nuvola/128x128/mimetypes/source_f.png -share/icons/nuvola/128x128/mimetypes/source_h.png -share/icons/nuvola/128x128/mimetypes/source_j.png -share/icons/nuvola/128x128/mimetypes/source_java.png -share/icons/nuvola/128x128/mimetypes/source_l.png -share/icons/nuvola/128x128/mimetypes/source_moc.png -share/icons/nuvola/128x128/mimetypes/source_o.png -share/icons/nuvola/128x128/mimetypes/source_p.png -share/icons/nuvola/128x128/mimetypes/source_php.png -share/icons/nuvola/128x128/mimetypes/source_pl.png -share/icons/nuvola/128x128/mimetypes/source_py.png -share/icons/nuvola/128x128/mimetypes/source_s.png -share/icons/nuvola/128x128/mimetypes/source_y.png -share/icons/nuvola/128x128/mimetypes/spreadsheet.png -share/icons/nuvola/128x128/mimetypes/tar.png -share/icons/nuvola/128x128/mimetypes/template_source.png -share/icons/nuvola/128x128/mimetypes/tex.png -share/icons/nuvola/128x128/mimetypes/tgz.png -share/icons/nuvola/128x128/mimetypes/txt.png -share/icons/nuvola/128x128/mimetypes/unknown.png -share/icons/nuvola/128x128/mimetypes/vcalendar.png -share/icons/nuvola/128x128/mimetypes/vcard.png -share/icons/nuvola/128x128/mimetypes/vectorgfx.png -share/icons/nuvola/128x128/mimetypes/video.png -share/icons/nuvola/128x128/mimetypes/widget_doc.png -share/icons/nuvola/128x128/mimetypes/wordprocessing.png -share/icons/nuvola/16x16/actions/1downarrow.png -share/icons/nuvola/16x16/actions/1leftarrow.png -share/icons/nuvola/16x16/actions/1rightarrow.png -share/icons/nuvola/16x16/actions/1uparrow.png -share/icons/nuvola/16x16/actions/2downarrow.png -share/icons/nuvola/16x16/actions/2leftarrow.png -share/icons/nuvola/16x16/actions/2rightarrow.png -share/icons/nuvola/16x16/actions/2uparrow.png -share/icons/nuvola/16x16/actions/about_kde.png -share/icons/nuvola/16x16/actions/application-exit.png -share/icons/nuvola/16x16/actions/artsaudiomanager.png -share/icons/nuvola/16x16/actions/artsenvironment.png -share/icons/nuvola/16x16/actions/artsmediatypes.png -share/icons/nuvola/16x16/actions/artsmidimanager.png -share/icons/nuvola/16x16/actions/attach.png -share/icons/nuvola/16x16/actions/blend.png -share/icons/nuvola/16x16/actions/bookmark-new.png -share/icons/nuvola/16x16/actions/bookmark.png -share/icons/nuvola/16x16/actions/bookmark_folder.png -share/icons/nuvola/16x16/actions/bookmark_toolbar.png -share/icons/nuvola/16x16/actions/bookmarks_list_add.png -share/icons/nuvola/16x16/actions/button_accept.png -share/icons/nuvola/16x16/actions/button_ok.png -share/icons/nuvola/16x16/actions/camera_test.png -share/icons/nuvola/16x16/actions/cancel.png -share/icons/nuvola/16x16/actions/cd.png -share/icons/nuvola/16x16/actions/color_fill.png -share/icons/nuvola/16x16/actions/color_line.png -share/icons/nuvola/16x16/actions/colorize.png -share/icons/nuvola/16x16/actions/colorpicker.png -share/icons/nuvola/16x16/actions/compfile.png -share/icons/nuvola/16x16/actions/configure.png -share/icons/nuvola/16x16/actions/connect_creating.png -share/icons/nuvola/16x16/actions/connect_established.png -share/icons/nuvola/16x16/actions/connect_no.png -share/icons/nuvola/16x16/actions/contact-new.png -share/icons/nuvola/16x16/actions/cut.png -share/icons/nuvola/16x16/actions/decrypted.png -share/icons/nuvola/16x16/actions/dialog-cancel.png -share/icons/nuvola/16x16/actions/dialog-close.png -share/icons/nuvola/16x16/actions/dialog-ok.png -share/icons/nuvola/16x16/actions/document-new.png -share/icons/nuvola/16x16/actions/document-open.png -share/icons/nuvola/16x16/actions/document-print-preview.png -share/icons/nuvola/16x16/actions/document-print.png -share/icons/nuvola/16x16/actions/document-revert.png -share/icons/nuvola/16x16/actions/document-save-as.png -share/icons/nuvola/16x16/actions/document-save.png -share/icons/nuvola/16x16/actions/edit-copy.png -share/icons/nuvola/16x16/actions/edit-cut.png -share/icons/nuvola/16x16/actions/edit-delete.png -share/icons/nuvola/16x16/actions/edit-find.png -share/icons/nuvola/16x16/actions/edit-paste.png -share/icons/nuvola/16x16/actions/edit-redo.png -share/icons/nuvola/16x16/actions/edit-undo.png -share/icons/nuvola/16x16/actions/edit.png -share/icons/nuvola/16x16/actions/edit_add.png -share/icons/nuvola/16x16/actions/edit_remove.png -share/icons/nuvola/16x16/actions/editshred.png -share/icons/nuvola/16x16/actions/edittrash.png -share/icons/nuvola/16x16/actions/encrypted.png -share/icons/nuvola/16x16/actions/endturn.png -share/icons/nuvola/16x16/actions/fileexport.png -share/icons/nuvola/16x16/actions/fill.png -share/icons/nuvola/16x16/actions/folder-new.png -share/icons/nuvola/16x16/actions/frameprint.png -share/icons/nuvola/16x16/actions/go-bottom.png -share/icons/nuvola/16x16/actions/go-down.png -share/icons/nuvola/16x16/actions/go-first.png -share/icons/nuvola/16x16/actions/go-home.png -share/icons/nuvola/16x16/actions/go-last.png -share/icons/nuvola/16x16/actions/go-next-document.png -share/icons/nuvola/16x16/actions/go-next.png -share/icons/nuvola/16x16/actions/go-previous-document.png -share/icons/nuvola/16x16/actions/go-previous.png -share/icons/nuvola/16x16/actions/go-top.png -share/icons/nuvola/16x16/actions/go-up.png -share/icons/nuvola/16x16/actions/help.png -share/icons/nuvola/16x16/actions/history.png -share/icons/nuvola/16x16/actions/history_clear.png -share/icons/nuvola/16x16/actions/irkick.png -share/icons/nuvola/16x16/actions/irkickflash.png -share/icons/nuvola/16x16/actions/irkickoff.png -share/icons/nuvola/16x16/actions/kaboodleloop.png -share/icons/nuvola/16x16/actions/kalarm.png -share/icons/nuvola/16x16/actions/kalarm_disabled.png -share/icons/nuvola/16x16/actions/kdevelop_down.png -share/icons/nuvola/16x16/actions/kgpg.png -share/icons/nuvola/16x16/actions/kgpg_edit.png -share/icons/nuvola/16x16/actions/kgpg_export.png -share/icons/nuvola/16x16/actions/kgpg_gen.png -share/icons/nuvola/16x16/actions/kgpg_identity.png -share/icons/nuvola/16x16/actions/kgpg_import.png -share/icons/nuvola/16x16/actions/kgpg_info.png -share/icons/nuvola/16x16/actions/kgpg_key1.png -share/icons/nuvola/16x16/actions/kgpg_key2.png -share/icons/nuvola/16x16/actions/kgpg_key3.png -share/icons/nuvola/16x16/actions/kgpg_photo.png -share/icons/nuvola/16x16/actions/kgpg_show.png -share/icons/nuvola/16x16/actions/kgpg_sign.png -share/icons/nuvola/16x16/actions/kgpg_term.png -share/icons/nuvola/16x16/actions/klipper_dock.png -share/icons/nuvola/16x16/actions/kmixdocked.png -share/icons/nuvola/16x16/actions/kmixdocked_error.png -share/icons/nuvola/16x16/actions/kmixdocked_mute.png -share/icons/nuvola/16x16/actions/krec_record.png -share/icons/nuvola/16x16/actions/laptop_charge.png -share/icons/nuvola/16x16/actions/laptop_nobattery.png -share/icons/nuvola/16x16/actions/laptop_nocharge.png -share/icons/nuvola/16x16/actions/laptop_power.png -share/icons/nuvola/16x16/actions/ledblue.png -share/icons/nuvola/16x16/actions/ledgreen.png -share/icons/nuvola/16x16/actions/ledlightblue.png -share/icons/nuvola/16x16/actions/ledlightgreen.png -share/icons/nuvola/16x16/actions/ledorange.png -share/icons/nuvola/16x16/actions/ledpurple.png -share/icons/nuvola/16x16/actions/ledred.png -share/icons/nuvola/16x16/actions/ledyellow.png -share/icons/nuvola/16x16/actions/mail-forward.png -share/icons/nuvola/16x16/actions/mail-message-new.png -share/icons/nuvola/16x16/actions/mail-reply-all.png -share/icons/nuvola/16x16/actions/mail-reply-sender.png -share/icons/nuvola/16x16/actions/mail-send.png -share/icons/nuvola/16x16/actions/mail_delete.png -share/icons/nuvola/16x16/actions/mail_find.png -share/icons/nuvola/16x16/actions/mail_generic.png -share/icons/nuvola/16x16/actions/mail_get.png -share/icons/nuvola/16x16/actions/mail_post_to.png -share/icons/nuvola/16x16/actions/make_kdevelop.png -share/icons/nuvola/16x16/actions/media-eject.png -share/icons/nuvola/16x16/actions/media-playback-pause.png -share/icons/nuvola/16x16/actions/media-playback-start.png -share/icons/nuvola/16x16/actions/media-playback-stop.png -share/icons/nuvola/16x16/actions/media-seek-backward.png -share/icons/nuvola/16x16/actions/media-seek-forward.png -share/icons/nuvola/16x16/actions/media-skip-backward.png -share/icons/nuvola/16x16/actions/media-skip-forward.png -share/icons/nuvola/16x16/actions/message.png -share/icons/nuvola/16x16/actions/messagebox_critical.png -share/icons/nuvola/16x16/actions/messagebox_info.png -share/icons/nuvola/16x16/actions/messagebox_warning.png -share/icons/nuvola/16x16/actions/misc.png -share/icons/nuvola/16x16/actions/mix_midi.png -share/icons/nuvola/16x16/actions/mix_recmon.png -share/icons/nuvola/16x16/actions/mix_unknown.png -share/icons/nuvola/16x16/actions/mix_volume.png -share/icons/nuvola/16x16/actions/mouse.png -share/icons/nuvola/16x16/actions/newfont.png -share/icons/nuvola/16x16/actions/news_subscribe.png -share/icons/nuvola/16x16/actions/news_unsubscribe.png -share/icons/nuvola/16x16/actions/no.png -share/icons/nuvola/16x16/actions/noatunloopsong.png -share/icons/nuvola/16x16/actions/object-rotate-left.png -share/icons/nuvola/16x16/actions/object-rotate-right.png -share/icons/nuvola/16x16/actions/ok.png -share/icons/nuvola/16x16/actions/openterm.png -share/icons/nuvola/16x16/actions/pencil.png -share/icons/nuvola/16x16/actions/piano.png -share/icons/nuvola/16x16/actions/player_rev.png -share/icons/nuvola/16x16/actions/playsound.png -share/icons/nuvola/16x16/actions/power.png -share/icons/nuvola/16x16/actions/process-stop.png -share/icons/nuvola/16x16/actions/project_open.png -share/icons/nuvola/16x16/actions/queue.png -share/icons/nuvola/16x16/actions/quiz.png -share/icons/nuvola/16x16/actions/rebuild.png -share/icons/nuvola/16x16/actions/reload_all_tabs.png -share/icons/nuvola/16x16/actions/reload_page.png -share/icons/nuvola/16x16/actions/roll.png -share/icons/nuvola/16x16/actions/rotate.png -share/icons/nuvola/16x16/actions/save_all.png -share/icons/nuvola/16x16/actions/signature.png -share/icons/nuvola/16x16/actions/system-lock-screen.png -share/icons/nuvola/16x16/actions/system-run.png -share/icons/nuvola/16x16/actions/tab-close.png -share/icons/nuvola/16x16/actions/tab-duplicate.png -share/icons/nuvola/16x16/actions/tab-new.png -share/icons/nuvola/16x16/actions/tab_new_raised.png -share/icons/nuvola/16x16/actions/thumbnail.png -share/icons/nuvola/16x16/actions/toggle_log.png -share/icons/nuvola/16x16/actions/tools-check-spelling.png -share/icons/nuvola/16x16/actions/view-refresh.png -share/icons/nuvola/16x16/actions/view.png -share/icons/nuvola/16x16/actions/view_bottom.png -share/icons/nuvola/16x16/actions/view_choose.png -share/icons/nuvola/16x16/actions/view_detailed.png -share/icons/nuvola/16x16/actions/view_fullscreen.png -share/icons/nuvola/16x16/actions/view_icon.png -share/icons/nuvola/16x16/actions/view_left_right.png -share/icons/nuvola/16x16/actions/view_multicolumn.png -share/icons/nuvola/16x16/actions/view_nofullscreen.png -share/icons/nuvola/16x16/actions/view_right.png -share/icons/nuvola/16x16/actions/view_sidetree.png -share/icons/nuvola/16x16/actions/view_text.png -share/icons/nuvola/16x16/actions/view_top_bottom.png -share/icons/nuvola/16x16/actions/view_tree.png -share/icons/nuvola/16x16/actions/window-new.png -share/icons/nuvola/16x16/actions/wizard.png -share/icons/nuvola/16x16/actions/zoom-best-fit.png -share/icons/nuvola/16x16/actions/zoom-in.png -share/icons/nuvola/16x16/actions/zoom-original.png -share/icons/nuvola/16x16/actions/zoom-out.png -share/icons/nuvola/16x16/actions/zoom.png -share/icons/nuvola/16x16/apps/access.png -share/icons/nuvola/16x16/apps/acroread.png -share/icons/nuvola/16x16/apps/agent.png -share/icons/nuvola/16x16/apps/aktion.png -share/icons/nuvola/16x16/apps/amarok.png -share/icons/nuvola/16x16/apps/amor.png -share/icons/nuvola/16x16/apps/applixware.png -share/icons/nuvola/16x16/apps/ark.png -share/icons/nuvola/16x16/apps/arts.png -share/icons/nuvola/16x16/apps/artsbuilder.png -share/icons/nuvola/16x16/apps/artscontrol.png -share/icons/nuvola/16x16/apps/artsmidimanager.png -share/icons/nuvola/16x16/apps/atlantik.png -share/icons/nuvola/16x16/apps/background.png -share/icons/nuvola/16x16/apps/bell.png -share/icons/nuvola/16x16/apps/bookcase.png -share/icons/nuvola/16x16/apps/browser.png -share/icons/nuvola/16x16/apps/bug.png -share/icons/nuvola/16x16/apps/cache.png -share/icons/nuvola/16x16/apps/chat.png -share/icons/nuvola/16x16/apps/clanbomber.png -share/icons/nuvola/16x16/apps/clock.png -share/icons/nuvola/16x16/apps/colors.png -share/icons/nuvola/16x16/apps/cookie.png -share/icons/nuvola/16x16/apps/core.png -share/icons/nuvola/16x16/apps/date.png -share/icons/nuvola/16x16/apps/designer.png -share/icons/nuvola/16x16/apps/digikam.png -share/icons/nuvola/16x16/apps/display.png -share/icons/nuvola/16x16/apps/download_manager.png -share/icons/nuvola/16x16/apps/edu_languages.png -share/icons/nuvola/16x16/apps/edu_mathematics.png -share/icons/nuvola/16x16/apps/edu_miscellaneous.png -share/icons/nuvola/16x16/apps/edu_science.png -share/icons/nuvola/16x16/apps/emacs.png -share/icons/nuvola/16x16/apps/email.png -share/icons/nuvola/16x16/apps/energy.png -share/icons/nuvola/16x16/apps/enhanced_browsing.png -share/icons/nuvola/16x16/apps/error.png -share/icons/nuvola/16x16/apps/evolution.png -share/icons/nuvola/16x16/apps/file-manager.png -share/icons/nuvola/16x16/apps/filetypes.png -share/icons/nuvola/16x16/apps/flashkard.png -share/icons/nuvola/16x16/apps/fonts.png -share/icons/nuvola/16x16/apps/fsview.png -share/icons/nuvola/16x16/apps/gaim.png -share/icons/nuvola/16x16/apps/galeon.png -share/icons/nuvola/16x16/apps/gimp.png -share/icons/nuvola/16x16/apps/gimp2.png -share/icons/nuvola/16x16/apps/gnome_apps.png -share/icons/nuvola/16x16/apps/gnome_apps2.png -share/icons/nuvola/16x16/apps/go.png -share/icons/nuvola/16x16/apps/help_index.png -share/icons/nuvola/16x16/apps/hwinfo.png -share/icons/nuvola/16x16/apps/icons.png -share/icons/nuvola/16x16/apps/iconthemes.png -share/icons/nuvola/16x16/apps/important.png -share/icons/nuvola/16x16/apps/indeximg.png -share/icons/nuvola/16x16/apps/input_devices_settings.png -share/icons/nuvola/16x16/apps/irkick.png -share/icons/nuvola/16x16/apps/juk.png -share/icons/nuvola/16x16/apps/kaboodle.png -share/icons/nuvola/16x16/apps/kaddressbook.png -share/icons/nuvola/16x16/apps/kalarm.png -share/icons/nuvola/16x16/apps/kalzium.png -share/icons/nuvola/16x16/apps/kappfinder.png -share/icons/nuvola/16x16/apps/karm.png -share/icons/nuvola/16x16/apps/kasteroids.png -share/icons/nuvola/16x16/apps/kate.png -share/icons/nuvola/16x16/apps/katomic.png -share/icons/nuvola/16x16/apps/kaudiocreator.png -share/icons/nuvola/16x16/apps/kbackgammon.png -share/icons/nuvola/16x16/apps/kbackgammon_engine.png -share/icons/nuvola/16x16/apps/kblackbox.png -share/icons/nuvola/16x16/apps/kbounce.png -share/icons/nuvola/16x16/apps/kbrunch.png -share/icons/nuvola/16x16/apps/kcalc.png -share/icons/nuvola/16x16/apps/kcharselect.png -share/icons/nuvola/16x16/apps/kchart.png -share/icons/nuvola/16x16/apps/kcmdevice.png -share/icons/nuvola/16x16/apps/kcmdevices.png -share/icons/nuvola/16x16/apps/kcmdf.png -share/icons/nuvola/16x16/apps/kcmdrkonqi.png -share/icons/nuvola/16x16/apps/kcmfontinst.png -share/icons/nuvola/16x16/apps/kcmkwm.png -share/icons/nuvola/16x16/apps/kcmmemory.png -share/icons/nuvola/16x16/apps/kcmmidi.png -share/icons/nuvola/16x16/apps/kcmpartitions.png -share/icons/nuvola/16x16/apps/kcmpci.png -share/icons/nuvola/16x16/apps/kcmprocessor.png -share/icons/nuvola/16x16/apps/kcmscsi.png -share/icons/nuvola/16x16/apps/kcmsystem.png -share/icons/nuvola/16x16/apps/kcmx.png -share/icons/nuvola/16x16/apps/kcolorchooser.png -share/icons/nuvola/16x16/apps/kcoloredit.png -share/icons/nuvola/16x16/apps/kcontrol.png -share/icons/nuvola/16x16/apps/kdat.png -share/icons/nuvola/16x16/apps/kdf.png -share/icons/nuvola/16x16/apps/kdict.png -share/icons/nuvola/16x16/apps/kdisknav.png -share/icons/nuvola/16x16/apps/kdmconfig.png -share/icons/nuvola/16x16/apps/kedit.png -share/icons/nuvola/16x16/apps/keditbookmarks.png -share/icons/nuvola/16x16/apps/key_bindings.png -share/icons/nuvola/16x16/apps/keybindings.png -share/icons/nuvola/16x16/apps/keyboard.png -share/icons/nuvola/16x16/apps/keyboard_layout.png -share/icons/nuvola/16x16/apps/kfig.png -share/icons/nuvola/16x16/apps/kfind.png -share/icons/nuvola/16x16/apps/kfloppy.png -share/icons/nuvola/16x16/apps/kfm.png -share/icons/nuvola/16x16/apps/kfm_home.png -share/icons/nuvola/16x16/apps/kget.png -share/icons/nuvola/16x16/apps/kghostview.png -share/icons/nuvola/16x16/apps/kgpg.png -share/icons/nuvola/16x16/apps/khangman.png -share/icons/nuvola/16x16/apps/khelpcenter.png -share/icons/nuvola/16x16/apps/khexedit.png -share/icons/nuvola/16x16/apps/khotkeys.png -share/icons/nuvola/16x16/apps/kig.png -share/icons/nuvola/16x16/apps/kiten.png -share/icons/nuvola/16x16/apps/kivio.png -share/icons/nuvola/16x16/apps/kjobviewer.png -share/icons/nuvola/16x16/apps/kjots.png -share/icons/nuvola/16x16/apps/klettres.png -share/icons/nuvola/16x16/apps/klipper.png -share/icons/nuvola/16x16/apps/klpq.png -share/icons/nuvola/16x16/apps/kmag.png -share/icons/nuvola/16x16/apps/kmahjong.png -share/icons/nuvola/16x16/apps/kmail.png -share/icons/nuvola/16x16/apps/kmenu.png -share/icons/nuvola/16x16/apps/kmenuedit.png -share/icons/nuvola/16x16/apps/kmessedwords.png -share/icons/nuvola/16x16/apps/kmid.png -share/icons/nuvola/16x16/apps/kmines.png -share/icons/nuvola/16x16/apps/kmix.png -share/icons/nuvola/16x16/apps/kmoon.png -share/icons/nuvola/16x16/apps/kmousetool.png -share/icons/nuvola/16x16/apps/kmplot.png -share/icons/nuvola/16x16/apps/knewsticker.png -share/icons/nuvola/16x16/apps/knode.png -share/icons/nuvola/16x16/apps/knotes.png -share/icons/nuvola/16x16/apps/knotify.png -share/icons/nuvola/16x16/apps/kolf.png -share/icons/nuvola/16x16/apps/kolourpaint.png -share/icons/nuvola/16x16/apps/konqsidebar_mediaplayer.png -share/icons/nuvola/16x16/apps/konqueror.png -share/icons/nuvola/16x16/apps/konquest.png -share/icons/nuvola/16x16/apps/konsole.png -share/icons/nuvola/16x16/apps/kontact.png -share/icons/nuvola/16x16/apps/kooka.png -share/icons/nuvola/16x16/apps/kopete.png -share/icons/nuvola/16x16/apps/korganizer.png -share/icons/nuvola/16x16/apps/korganizer_todo.png -share/icons/nuvola/16x16/apps/korn.png -share/icons/nuvola/16x16/apps/kpackage.png -share/icons/nuvola/16x16/apps/kpager.png -share/icons/nuvola/16x16/apps/kpaint.png -share/icons/nuvola/16x16/apps/kpdf.png -share/icons/nuvola/16x16/apps/kpercentage.png -share/icons/nuvola/16x16/apps/kpilot.png -share/icons/nuvola/16x16/apps/kpovmodeler.png -share/icons/nuvola/16x16/apps/kppp.png -share/icons/nuvola/16x16/apps/kpresenter.png -share/icons/nuvola/16x16/apps/krdc.png -share/icons/nuvola/16x16/apps/krec.png -share/icons/nuvola/16x16/apps/kreversi.png -share/icons/nuvola/16x16/apps/krfb.png -share/icons/nuvola/16x16/apps/krita.png -share/icons/nuvola/16x16/apps/kruler.png -share/icons/nuvola/16x16/apps/kscd.png -share/icons/nuvola/16x16/apps/kscreensaver.png -share/icons/nuvola/16x16/apps/kservices.png -share/icons/nuvola/16x16/apps/kshisen.png -share/icons/nuvola/16x16/apps/ksig.png -share/icons/nuvola/16x16/apps/ksim.png -share/icons/nuvola/16x16/apps/ksim_cpu.png -share/icons/nuvola/16x16/apps/ksirc.png -share/icons/nuvola/16x16/apps/ksnapshot.png -share/icons/nuvola/16x16/apps/ksplash.png -share/icons/nuvola/16x16/apps/ksysv.png -share/icons/nuvola/16x16/apps/kteatime.png -share/icons/nuvola/16x16/apps/kthememgr.png -share/icons/nuvola/16x16/apps/ktimer.png -share/icons/nuvola/16x16/apps/ktip.png -share/icons/nuvola/16x16/apps/ktouch.png -share/icons/nuvola/16x16/apps/kugar.png -share/icons/nuvola/16x16/apps/kuickshow.png -share/icons/nuvola/16x16/apps/kuser.png -share/icons/nuvola/16x16/apps/kverbos.png -share/icons/nuvola/16x16/apps/kview.png -share/icons/nuvola/16x16/apps/kweather.png -share/icons/nuvola/16x16/apps/kwikdisk.png -share/icons/nuvola/16x16/apps/kwin.png -share/icons/nuvola/16x16/apps/kwin4.png -share/icons/nuvola/16x16/apps/kword.png -share/icons/nuvola/16x16/apps/kworldclock.png -share/icons/nuvola/16x16/apps/kwrite.png -share/icons/nuvola/16x16/apps/kxkb.png -share/icons/nuvola/16x16/apps/laptop_battery.png -share/icons/nuvola/16x16/apps/laptop_pcmcia.png -share/icons/nuvola/16x16/apps/licq.png -share/icons/nuvola/16x16/apps/locale.png -share/icons/nuvola/16x16/apps/looknfeel.png -share/icons/nuvola/16x16/apps/mozilla-firebird.png -share/icons/nuvola/16x16/apps/mozilla-thunderbird.png -share/icons/nuvola/16x16/apps/mozilla.png -share/icons/nuvola/16x16/apps/mplayer.png -share/icons/nuvola/16x16/apps/multimedia.png -share/icons/nuvola/16x16/apps/mycomputer.png -share/icons/nuvola/16x16/apps/netscape.png -share/icons/nuvola/16x16/apps/network.png -share/icons/nuvola/16x16/apps/noatun.png -share/icons/nuvola/16x16/apps/ooo_gulls.png -share/icons/nuvola/16x16/apps/ooo_setup.png -share/icons/nuvola/16x16/apps/opera.png -share/icons/nuvola/16x16/apps/package.png -share/icons/nuvola/16x16/apps/package_applications.png -share/icons/nuvola/16x16/apps/package_development.png -share/icons/nuvola/16x16/apps/package_editors.png -share/icons/nuvola/16x16/apps/package_edutainment.png -share/icons/nuvola/16x16/apps/package_favorite.png -share/icons/nuvola/16x16/apps/package_games.png -share/icons/nuvola/16x16/apps/package_games_arcade.png -share/icons/nuvola/16x16/apps/package_games_board.png -share/icons/nuvola/16x16/apps/package_games_strategy.png -share/icons/nuvola/16x16/apps/package_graphics.png -share/icons/nuvola/16x16/apps/package_multimedia.png -share/icons/nuvola/16x16/apps/package_network.png -share/icons/nuvola/16x16/apps/package_settings.png -share/icons/nuvola/16x16/apps/package_system.png -share/icons/nuvola/16x16/apps/package_toys.png -share/icons/nuvola/16x16/apps/package_utilities.png -share/icons/nuvola/16x16/apps/package_wordprocessing.png -share/icons/nuvola/16x16/apps/password.png -share/icons/nuvola/16x16/apps/personal.png -share/icons/nuvola/16x16/apps/printmgr.png -share/icons/nuvola/16x16/apps/randr.png -share/icons/nuvola/16x16/apps/realplayer.png -share/icons/nuvola/16x16/apps/reload.png -share/icons/nuvola/16x16/apps/remote.png -share/icons/nuvola/16x16/apps/samba.png -share/icons/nuvola/16x16/apps/sodipodi.png -share/icons/nuvola/16x16/apps/spellcheck.png -share/icons/nuvola/16x16/apps/style.png -share/icons/nuvola/16x16/apps/stylesheet.png -share/icons/nuvola/16x16/apps/terminal.png -share/icons/nuvola/16x16/apps/usb.png -share/icons/nuvola/16x16/apps/window_list.png -share/icons/nuvola/16x16/apps/winprops.png -share/icons/nuvola/16x16/apps/x.png -share/icons/nuvola/16x16/apps/xapp.png -share/icons/nuvola/16x16/apps/xcalc.png -share/icons/nuvola/16x16/apps/xclock.png -share/icons/nuvola/16x16/apps/xconfig.png -share/icons/nuvola/16x16/apps/xemacs.png -share/icons/nuvola/16x16/apps/xfmail.png -share/icons/nuvola/16x16/apps/xmag.png -share/icons/nuvola/16x16/devices/3floppy_mount.png -share/icons/nuvola/16x16/devices/3floppy_unmount.png -share/icons/nuvola/16x16/devices/5floppy_mount.png -share/icons/nuvola/16x16/devices/5floppy_unmount.png -share/icons/nuvola/16x16/devices/blockdevice.png -share/icons/nuvola/16x16/devices/camera.png -share/icons/nuvola/16x16/devices/camera_mount.png -share/icons/nuvola/16x16/devices/camera_unmount.png -share/icons/nuvola/16x16/devices/cdaudio_mount.png -share/icons/nuvola/16x16/devices/cdaudio_unmount.png -share/icons/nuvola/16x16/devices/cdrom_mount.png -share/icons/nuvola/16x16/devices/cdrom_unmount.png -share/icons/nuvola/16x16/devices/cdwriter_mount.png -share/icons/nuvola/16x16/devices/cdwriter_unmount.png -share/icons/nuvola/16x16/devices/dvd_mount.png -share/icons/nuvola/16x16/devices/dvd_unmount.png -share/icons/nuvola/16x16/devices/hdd_mount.png -share/icons/nuvola/16x16/devices/hdd_unmount.png -share/icons/nuvola/16x16/devices/ipod.png -share/icons/nuvola/16x16/devices/joystick.png -share/icons/nuvola/16x16/devices/memory.png -share/icons/nuvola/16x16/devices/mo_mount.png -share/icons/nuvola/16x16/devices/mo_unmount.png -share/icons/nuvola/16x16/devices/modem.png -share/icons/nuvola/16x16/devices/mouse.png -share/icons/nuvola/16x16/devices/nfs_mount.png -share/icons/nuvola/16x16/devices/nfs_unmount.png -share/icons/nuvola/16x16/devices/pda.png -share/icons/nuvola/16x16/devices/pda_black.png -share/icons/nuvola/16x16/devices/pda_blue.png -share/icons/nuvola/16x16/devices/print_class.png -share/icons/nuvola/16x16/devices/print_printer.png -share/icons/nuvola/16x16/devices/printer.png -share/icons/nuvola/16x16/devices/printer1.png -share/icons/nuvola/16x16/devices/raid.png -share/icons/nuvola/16x16/devices/samba_mount.png -share/icons/nuvola/16x16/devices/samba_unmount.png -share/icons/nuvola/16x16/devices/scanner.png -share/icons/nuvola/16x16/devices/tablet.png -share/icons/nuvola/16x16/devices/tv.png -share/icons/nuvola/16x16/devices/usbpendrive_mount.png -share/icons/nuvola/16x16/devices/usbpendrive_unmount.png -share/icons/nuvola/16x16/devices/zip_mount.png -share/icons/nuvola/16x16/devices/zip_unmount.png -share/icons/nuvola/16x16/mimetypes/abiword_abi.png -share/icons/nuvola/16x16/mimetypes/applix.png -share/icons/nuvola/16x16/mimetypes/ascii.png -share/icons/nuvola/16x16/mimetypes/bc.png -share/icons/nuvola/16x16/mimetypes/binary.png -share/icons/nuvola/16x16/mimetypes/cdbo_list.png -share/icons/nuvola/16x16/mimetypes/cdimage.png -share/icons/nuvola/16x16/mimetypes/cdr.png -share/icons/nuvola/16x16/mimetypes/cdtrack.png -share/icons/nuvola/16x16/mimetypes/colorscm.png -share/icons/nuvola/16x16/mimetypes/colorset.png -share/icons/nuvola/16x16/mimetypes/core.png -share/icons/nuvola/16x16/mimetypes/deb.png -share/icons/nuvola/16x16/mimetypes/document.png -share/icons/nuvola/16x16/mimetypes/dvi.png -share/icons/nuvola/16x16/mimetypes/ebuild.png -share/icons/nuvola/16x16/mimetypes/empty.png -share/icons/nuvola/16x16/mimetypes/encrypted.png -share/icons/nuvola/16x16/mimetypes/exec_wine.png -share/icons/nuvola/16x16/mimetypes/file_locked-[Converted].png -share/icons/nuvola/16x16/mimetypes/file_locked.png -share/icons/nuvola/16x16/mimetypes/file_temporary.png -share/icons/nuvola/16x16/mimetypes/font.png -share/icons/nuvola/16x16/mimetypes/font_bitmap.png -share/icons/nuvola/16x16/mimetypes/font_truetype.png -share/icons/nuvola/16x16/mimetypes/font_type1.png -share/icons/nuvola/16x16/mimetypes/gettext.png -share/icons/nuvola/16x16/mimetypes/gf.png -share/icons/nuvola/16x16/mimetypes/gnome_app_info.png -share/icons/nuvola/16x16/mimetypes/html.png -share/icons/nuvola/16x16/mimetypes/image.png -share/icons/nuvola/16x16/mimetypes/image_gimp.png -share/icons/nuvola/16x16/mimetypes/info.png -share/icons/nuvola/16x16/mimetypes/install.png -share/icons/nuvola/16x16/mimetypes/java_jar.png -share/icons/nuvola/16x16/mimetypes/karbon_karbon.png -share/icons/nuvola/16x16/mimetypes/kchart_chrt.png -share/icons/nuvola/16x16/mimetypes/kformula_kfo.png -share/icons/nuvola/16x16/mimetypes/kget_list.png -share/icons/nuvola/16x16/mimetypes/kig_doc.png -share/icons/nuvola/16x16/mimetypes/kivio_flw.png -share/icons/nuvola/16x16/mimetypes/kmultiple.png -share/icons/nuvola/16x16/mimetypes/koffice.png -share/icons/nuvola/16x16/mimetypes/kpovmodeler_doc.png -share/icons/nuvola/16x16/mimetypes/kpresenter_kpr.png -share/icons/nuvola/16x16/mimetypes/krec_fileempty.png -share/icons/nuvola/16x16/mimetypes/krec_fileplay.png -share/icons/nuvola/16x16/mimetypes/krec_filerec.png -share/icons/nuvola/16x16/mimetypes/krita_kra.png -share/icons/nuvola/16x16/mimetypes/kspread_ksp.png -share/icons/nuvola/16x16/mimetypes/kugar_kud.png -share/icons/nuvola/16x16/mimetypes/kugardata.png -share/icons/nuvola/16x16/mimetypes/kword_kwd.png -share/icons/nuvola/16x16/mimetypes/log.png -share/icons/nuvola/16x16/mimetypes/make.png -share/icons/nuvola/16x16/mimetypes/man.png -share/icons/nuvola/16x16/mimetypes/message.png -share/icons/nuvola/16x16/mimetypes/metafont.png -share/icons/nuvola/16x16/mimetypes/midi.png -share/icons/nuvola/16x16/mimetypes/mime.png -share/icons/nuvola/16x16/mimetypes/mime_ebuild.png -share/icons/nuvola/16x16/mimetypes/mime_empty.png -share/icons/nuvola/16x16/mimetypes/mime_koffice.png -share/icons/nuvola/16x16/mimetypes/mime_lyx.png -share/icons/nuvola/16x16/mimetypes/mime_temp.png -share/icons/nuvola/16x16/mimetypes/misc_doc.png -share/icons/nuvola/16x16/mimetypes/mozilla_doc.png -share/icons/nuvola/16x16/mimetypes/netscape_doc.png -share/icons/nuvola/16x16/mimetypes/ooo_calc.png -share/icons/nuvola/16x16/mimetypes/ooo_calc_tpl.png -share/icons/nuvola/16x16/mimetypes/ooo_draw.png -share/icons/nuvola/16x16/mimetypes/ooo_draw_tpl.png -share/icons/nuvola/16x16/mimetypes/ooo_impress.png -share/icons/nuvola/16x16/mimetypes/ooo_impress_tpl.png -share/icons/nuvola/16x16/mimetypes/ooo_setup.png -share/icons/nuvola/16x16/mimetypes/ooo_writer.png -share/icons/nuvola/16x16/mimetypes/ooo_writer_tpl.png -share/icons/nuvola/16x16/mimetypes/patch.png -share/icons/nuvola/16x16/mimetypes/pdf.png -share/icons/nuvola/16x16/mimetypes/postscript.png -share/icons/nuvola/16x16/mimetypes/quicktime.png -share/icons/nuvola/16x16/mimetypes/readme.png -share/icons/nuvola/16x16/mimetypes/real.png -share/icons/nuvola/16x16/mimetypes/real_doc.png -share/icons/nuvola/16x16/mimetypes/recycled.png -share/icons/nuvola/16x16/mimetypes/resource.png -share/icons/nuvola/16x16/mimetypes/rpm.png -share/icons/nuvola/16x16/mimetypes/shellscript.png -share/icons/nuvola/16x16/mimetypes/soffice.png -share/icons/nuvola/16x16/mimetypes/sound.png -share/icons/nuvola/16x16/mimetypes/source.png -share/icons/nuvola/16x16/mimetypes/source_c.png -share/icons/nuvola/16x16/mimetypes/source_cpp.png -share/icons/nuvola/16x16/mimetypes/source_css.png -share/icons/nuvola/16x16/mimetypes/source_f.png -share/icons/nuvola/16x16/mimetypes/source_h.png -share/icons/nuvola/16x16/mimetypes/source_j.png -share/icons/nuvola/16x16/mimetypes/source_java.png -share/icons/nuvola/16x16/mimetypes/source_l.png -share/icons/nuvola/16x16/mimetypes/source_moc.png -share/icons/nuvola/16x16/mimetypes/source_o.png -share/icons/nuvola/16x16/mimetypes/source_p.png -share/icons/nuvola/16x16/mimetypes/source_php.png -share/icons/nuvola/16x16/mimetypes/source_pl.png -share/icons/nuvola/16x16/mimetypes/source_py.png -share/icons/nuvola/16x16/mimetypes/source_s.png -share/icons/nuvola/16x16/mimetypes/source_y.png -share/icons/nuvola/16x16/mimetypes/spreadsheet.png -share/icons/nuvola/16x16/mimetypes/tar.png -share/icons/nuvola/16x16/mimetypes/template_source.png -share/icons/nuvola/16x16/mimetypes/tex.png -share/icons/nuvola/16x16/mimetypes/tgz.png -share/icons/nuvola/16x16/mimetypes/txt.png -share/icons/nuvola/16x16/mimetypes/unknown.png -share/icons/nuvola/16x16/mimetypes/vcalendar.png -share/icons/nuvola/16x16/mimetypes/vcard.png -share/icons/nuvola/16x16/mimetypes/vectorgfx.png -share/icons/nuvola/16x16/mimetypes/video.png -share/icons/nuvola/16x16/mimetypes/widget_doc.png -share/icons/nuvola/16x16/mimetypes/wordprocessing.png -share/icons/nuvola/22x22/actions/1downarrow.png -share/icons/nuvola/22x22/actions/1leftarrow.png -share/icons/nuvola/22x22/actions/1rightarrow.png -share/icons/nuvola/22x22/actions/1uparrow.png -share/icons/nuvola/22x22/actions/2downarrow.png -share/icons/nuvola/22x22/actions/2leftarrow.png -share/icons/nuvola/22x22/actions/2rightarrow.png -share/icons/nuvola/22x22/actions/2uparrow.png -share/icons/nuvola/22x22/actions/about_kde.png -share/icons/nuvola/22x22/actions/amarok.png -share/icons/nuvola/22x22/actions/application-exit.png -share/icons/nuvola/22x22/actions/ark_new.png -share/icons/nuvola/22x22/actions/ark_options.png -share/icons/nuvola/22x22/actions/artsaudiomanager.png -share/icons/nuvola/22x22/actions/artsenvironment.png -share/icons/nuvola/22x22/actions/artsmediatypes.png -share/icons/nuvola/22x22/actions/artsmidimanager.png -share/icons/nuvola/22x22/actions/attach.png -share/icons/nuvola/22x22/actions/blend.png -share/icons/nuvola/22x22/actions/bookmark-new.png -share/icons/nuvola/22x22/actions/bookmark.png -share/icons/nuvola/22x22/actions/bookmark_folder.png -share/icons/nuvola/22x22/actions/bookmark_toolbar.png -share/icons/nuvola/22x22/actions/bookmarks_list_add.png -share/icons/nuvola/22x22/actions/button_accept.png -share/icons/nuvola/22x22/actions/button_ok.png -share/icons/nuvola/22x22/actions/camera_test.png -share/icons/nuvola/22x22/actions/cancel.png -share/icons/nuvola/22x22/actions/cd.png -share/icons/nuvola/22x22/actions/color_fill.png -share/icons/nuvola/22x22/actions/color_line.png -share/icons/nuvola/22x22/actions/colorize.png -share/icons/nuvola/22x22/actions/colorpicker.png -share/icons/nuvola/22x22/actions/compfile.png -share/icons/nuvola/22x22/actions/configure.png -share/icons/nuvola/22x22/actions/connect_creating.png -share/icons/nuvola/22x22/actions/connect_established.png -share/icons/nuvola/22x22/actions/connect_no.png -share/icons/nuvola/22x22/actions/contact-new.png -share/icons/nuvola/22x22/actions/cut.png -share/icons/nuvola/22x22/actions/decrypted.png -share/icons/nuvola/22x22/actions/dialog-cancel.png -share/icons/nuvola/22x22/actions/dialog-close.png -share/icons/nuvola/22x22/actions/dialog-ok.png -share/icons/nuvola/22x22/actions/dock.png -share/icons/nuvola/22x22/actions/document-new.png -share/icons/nuvola/22x22/actions/document-open.png -share/icons/nuvola/22x22/actions/document-print-preview.png -share/icons/nuvola/22x22/actions/document-print.png -share/icons/nuvola/22x22/actions/document-revert.png -share/icons/nuvola/22x22/actions/document-save-as.png -share/icons/nuvola/22x22/actions/document-save.png -share/icons/nuvola/22x22/actions/edit-copy.png -share/icons/nuvola/22x22/actions/edit-cut.png -share/icons/nuvola/22x22/actions/edit-delete.png -share/icons/nuvola/22x22/actions/edit-find.png -share/icons/nuvola/22x22/actions/edit-paste.png -share/icons/nuvola/22x22/actions/edit-redo.png -share/icons/nuvola/22x22/actions/edit-undo.png -share/icons/nuvola/22x22/actions/edit.png -share/icons/nuvola/22x22/actions/edit_add.png -share/icons/nuvola/22x22/actions/edit_remove.png -share/icons/nuvola/22x22/actions/editshred.png -share/icons/nuvola/22x22/actions/edittrash.png -share/icons/nuvola/22x22/actions/encrypted.png -share/icons/nuvola/22x22/actions/endturn.png -share/icons/nuvola/22x22/actions/fileexport.png -share/icons/nuvola/22x22/actions/fill.png -share/icons/nuvola/22x22/actions/folder-new.png -share/icons/nuvola/22x22/actions/folder.png -share/icons/nuvola/22x22/actions/frameprint.png -share/icons/nuvola/22x22/actions/go-bottom.png -share/icons/nuvola/22x22/actions/go-down.png -share/icons/nuvola/22x22/actions/go-first.png -share/icons/nuvola/22x22/actions/go-home.png -share/icons/nuvola/22x22/actions/go-last.png -share/icons/nuvola/22x22/actions/go-next-document.png -share/icons/nuvola/22x22/actions/go-next.png -share/icons/nuvola/22x22/actions/go-previous-document.png -share/icons/nuvola/22x22/actions/go-previous.png -share/icons/nuvola/22x22/actions/go-top.png -share/icons/nuvola/22x22/actions/go-up.png -share/icons/nuvola/22x22/actions/help.png -share/icons/nuvola/22x22/actions/history.png -share/icons/nuvola/22x22/actions/history_clear.png -share/icons/nuvola/22x22/actions/irkick.png -share/icons/nuvola/22x22/actions/irkickflash.png -share/icons/nuvola/22x22/actions/irkickoff.png -share/icons/nuvola/22x22/actions/juk_dock.png -share/icons/nuvola/22x22/actions/kaboodleloop.png -share/icons/nuvola/22x22/actions/kalarm.png -share/icons/nuvola/22x22/actions/kalarm_disabled.png -share/icons/nuvola/22x22/actions/kdevelop_down.png -share/icons/nuvola/22x22/actions/kgpg.png -share/icons/nuvola/22x22/actions/kgpg_docked.png -share/icons/nuvola/22x22/actions/kgpg_edit.png -share/icons/nuvola/22x22/actions/kgpg_export.png -share/icons/nuvola/22x22/actions/kgpg_gen.png -share/icons/nuvola/22x22/actions/kgpg_identity.png -share/icons/nuvola/22x22/actions/kgpg_import.png -share/icons/nuvola/22x22/actions/kgpg_info.png -share/icons/nuvola/22x22/actions/kgpg_key1.png -share/icons/nuvola/22x22/actions/kgpg_key2.png -share/icons/nuvola/22x22/actions/kgpg_key3.png -share/icons/nuvola/22x22/actions/kgpg_photo.png -share/icons/nuvola/22x22/actions/kgpg_show.png -share/icons/nuvola/22x22/actions/kgpg_sign.png -share/icons/nuvola/22x22/actions/kgpg_term.png -share/icons/nuvola/22x22/actions/kjobviewer.png -share/icons/nuvola/22x22/actions/klipper.png -share/icons/nuvola/22x22/actions/klpq.png -share/icons/nuvola/22x22/actions/kmail.png -share/icons/nuvola/22x22/actions/kmaillight.png -share/icons/nuvola/22x22/actions/kmixdocked.png -share/icons/nuvola/22x22/actions/kmixdocked_error.png -share/icons/nuvola/22x22/actions/kmixdocked_mute.png -share/icons/nuvola/22x22/actions/kopete.png -share/icons/nuvola/22x22/actions/korgac.png -share/icons/nuvola/22x22/actions/krec_record.png -share/icons/nuvola/22x22/actions/laptop_charge.png -share/icons/nuvola/22x22/actions/laptop_nobattery.png -share/icons/nuvola/22x22/actions/laptop_nocharge.png -share/icons/nuvola/22x22/actions/laptop_power.png -share/icons/nuvola/22x22/actions/ledblue.png -share/icons/nuvola/22x22/actions/ledgreen.png -share/icons/nuvola/22x22/actions/ledlightblue.png -share/icons/nuvola/22x22/actions/ledlightgreen.png -share/icons/nuvola/22x22/actions/ledorange.png -share/icons/nuvola/22x22/actions/ledpurple.png -share/icons/nuvola/22x22/actions/ledred.png -share/icons/nuvola/22x22/actions/ledyellow.png -share/icons/nuvola/22x22/actions/mail-forward.png -share/icons/nuvola/22x22/actions/mail-message-new.png -share/icons/nuvola/22x22/actions/mail-reply-all.png -share/icons/nuvola/22x22/actions/mail-reply-sender.png -share/icons/nuvola/22x22/actions/mail-send.png -share/icons/nuvola/22x22/actions/mail_delete.png -share/icons/nuvola/22x22/actions/mail_find.png -share/icons/nuvola/22x22/actions/mail_generic.png -share/icons/nuvola/22x22/actions/mail_get.png -share/icons/nuvola/22x22/actions/mail_post_to.png -share/icons/nuvola/22x22/actions/make_kdevelop.png -share/icons/nuvola/22x22/actions/media-eject.png -share/icons/nuvola/22x22/actions/media-playback-pause.png -share/icons/nuvola/22x22/actions/media-playback-start.png -share/icons/nuvola/22x22/actions/media-playback-stop.png -share/icons/nuvola/22x22/actions/media-seek-backward.png -share/icons/nuvola/22x22/actions/media-seek-forward.png -share/icons/nuvola/22x22/actions/media-skip-backward.png -share/icons/nuvola/22x22/actions/media-skip-forward.png -share/icons/nuvola/22x22/actions/messagebox_critical.png -share/icons/nuvola/22x22/actions/messagebox_info.png -share/icons/nuvola/22x22/actions/messagebox_warning.png -share/icons/nuvola/22x22/actions/misc.png -share/icons/nuvola/22x22/actions/mix_audio.png -share/icons/nuvola/22x22/actions/mix_cd.png -share/icons/nuvola/22x22/actions/mix_midi.png -share/icons/nuvola/22x22/actions/mix_recmon.png -share/icons/nuvola/22x22/actions/mix_record.png -share/icons/nuvola/22x22/actions/mix_unknown.png -share/icons/nuvola/22x22/actions/mix_video.png -share/icons/nuvola/22x22/actions/mix_volume.png -share/icons/nuvola/22x22/actions/mouse.png -share/icons/nuvola/22x22/actions/newfont.png -share/icons/nuvola/22x22/actions/news_subscribe.png -share/icons/nuvola/22x22/actions/news_unsubscribe.png -share/icons/nuvola/22x22/actions/no.png -share/icons/nuvola/22x22/actions/noatunback.png -share/icons/nuvola/22x22/actions/noatunforward.png -share/icons/nuvola/22x22/actions/noatunloopsong.png -share/icons/nuvola/22x22/actions/noatunpause.png -share/icons/nuvola/22x22/actions/noatunplay.png -share/icons/nuvola/22x22/actions/noatunplaylist.png -share/icons/nuvola/22x22/actions/noatunstop.png -share/icons/nuvola/22x22/actions/object-rotate-left.png -share/icons/nuvola/22x22/actions/object-rotate-right.png -share/icons/nuvola/22x22/actions/ok.png -share/icons/nuvola/22x22/actions/openterm.png -share/icons/nuvola/22x22/actions/pencil.png -share/icons/nuvola/22x22/actions/piano.png -share/icons/nuvola/22x22/actions/player_rev.png -share/icons/nuvola/22x22/actions/playsound.png -share/icons/nuvola/22x22/actions/power.png -share/icons/nuvola/22x22/actions/printmgr.png -share/icons/nuvola/22x22/actions/process-stop.png -share/icons/nuvola/22x22/actions/project_open.png -share/icons/nuvola/22x22/actions/queue.png -share/icons/nuvola/22x22/actions/quiz.png -share/icons/nuvola/22x22/actions/rebuild.png -share/icons/nuvola/22x22/actions/reload_all_tabs.png -share/icons/nuvola/22x22/actions/reload_page.png -share/icons/nuvola/22x22/actions/roll.png -share/icons/nuvola/22x22/actions/rotate.png -share/icons/nuvola/22x22/actions/save_all.png -share/icons/nuvola/22x22/actions/signature.png -share/icons/nuvola/22x22/actions/system-lock-screen.png -share/icons/nuvola/22x22/actions/system-run.png -share/icons/nuvola/22x22/actions/tab-close.png -share/icons/nuvola/22x22/actions/tab-duplicate.png -share/icons/nuvola/22x22/actions/tab-new.png -share/icons/nuvola/22x22/actions/tab_new_raised.png -share/icons/nuvola/22x22/actions/thumbnail.png -share/icons/nuvola/22x22/actions/toggle_log.png -share/icons/nuvola/22x22/actions/tool_clipboard.png -share/icons/nuvola/22x22/actions/tool_delay.png -share/icons/nuvola/22x22/actions/tool_delete.png -share/icons/nuvola/22x22/actions/tool_dock.png -share/icons/nuvola/22x22/actions/tool_drop_target.png -share/icons/nuvola/22x22/actions/tool_pause.png -share/icons/nuvola/22x22/actions/tool_restart.png -share/icons/nuvola/22x22/actions/tool_resume.png -share/icons/nuvola/22x22/actions/tool_timer.png -share/icons/nuvola/22x22/actions/tool_uselastdir.png -share/icons/nuvola/22x22/actions/tools-check-spelling.png -share/icons/nuvola/22x22/actions/view-refresh.png -share/icons/nuvola/22x22/actions/view.png -share/icons/nuvola/22x22/actions/view_bottom.png -share/icons/nuvola/22x22/actions/view_choose.png -share/icons/nuvola/22x22/actions/view_detailed.png -share/icons/nuvola/22x22/actions/view_fullscreen.png -share/icons/nuvola/22x22/actions/view_icon.png -share/icons/nuvola/22x22/actions/view_left_right.png -share/icons/nuvola/22x22/actions/view_multicolumn.png -share/icons/nuvola/22x22/actions/view_nofullscreen.png -share/icons/nuvola/22x22/actions/view_right.png -share/icons/nuvola/22x22/actions/view_sidetree.png -share/icons/nuvola/22x22/actions/view_text.png -share/icons/nuvola/22x22/actions/view_top_bottom.png -share/icons/nuvola/22x22/actions/view_tree.png -share/icons/nuvola/22x22/actions/volume.png -share/icons/nuvola/22x22/actions/window-new.png -share/icons/nuvola/22x22/actions/wizard.png -share/icons/nuvola/22x22/actions/zoom-best-fit.png -share/icons/nuvola/22x22/actions/zoom-in.png -share/icons/nuvola/22x22/actions/zoom-original.png -share/icons/nuvola/22x22/actions/zoom-out.png -share/icons/nuvola/22x22/actions/zoom.png -share/icons/nuvola/22x22/apps/access.png -share/icons/nuvola/22x22/apps/acroread.png -share/icons/nuvola/22x22/apps/agent.png -share/icons/nuvola/22x22/apps/amarok.png -share/icons/nuvola/22x22/apps/amor.png -share/icons/nuvola/22x22/apps/applixware.png -share/icons/nuvola/22x22/apps/ark.png -share/icons/nuvola/22x22/apps/arts.png -share/icons/nuvola/22x22/apps/artsbuilder.png -share/icons/nuvola/22x22/apps/artscontrol.png -share/icons/nuvola/22x22/apps/artsmidimanager.png -share/icons/nuvola/22x22/apps/atlantik.png -share/icons/nuvola/22x22/apps/background.png -share/icons/nuvola/22x22/apps/bell.png -share/icons/nuvola/22x22/apps/bookcase.png -share/icons/nuvola/22x22/apps/browser.png -share/icons/nuvola/22x22/apps/bug.png -share/icons/nuvola/22x22/apps/cache.png -share/icons/nuvola/22x22/apps/chat.png -share/icons/nuvola/22x22/apps/clanbomber.png -share/icons/nuvola/22x22/apps/clock.png -share/icons/nuvola/22x22/apps/colors.png -share/icons/nuvola/22x22/apps/cookie.png -share/icons/nuvola/22x22/apps/core.png -share/icons/nuvola/22x22/apps/date.png -share/icons/nuvola/22x22/apps/designer.png -share/icons/nuvola/22x22/apps/digikam.png -share/icons/nuvola/22x22/apps/display.png -share/icons/nuvola/22x22/apps/download_manager.png -share/icons/nuvola/22x22/apps/edu_languages.png -share/icons/nuvola/22x22/apps/edu_mathematics.png -share/icons/nuvola/22x22/apps/edu_miscellaneous.png -share/icons/nuvola/22x22/apps/edu_science.png -share/icons/nuvola/22x22/apps/emacs.png -share/icons/nuvola/22x22/apps/email.png -share/icons/nuvola/22x22/apps/energy.png -share/icons/nuvola/22x22/apps/enhanced_browsing.png -share/icons/nuvola/22x22/apps/error.png -share/icons/nuvola/22x22/apps/evolution.png -share/icons/nuvola/22x22/apps/file-manager.png -share/icons/nuvola/22x22/apps/filetypes.png -share/icons/nuvola/22x22/apps/flashkard.png -share/icons/nuvola/22x22/apps/fonts.png -share/icons/nuvola/22x22/apps/fsview.png -share/icons/nuvola/22x22/apps/gaim.png -share/icons/nuvola/22x22/apps/galeon.png -share/icons/nuvola/22x22/apps/gimp.png -share/icons/nuvola/22x22/apps/gnome_apps.png -share/icons/nuvola/22x22/apps/gnome_apps2.png -share/icons/nuvola/22x22/apps/go.png -share/icons/nuvola/22x22/apps/help_index.png -share/icons/nuvola/22x22/apps/hwinfo.png -share/icons/nuvola/22x22/apps/icons.png -share/icons/nuvola/22x22/apps/iconthemes.png -share/icons/nuvola/22x22/apps/important.png -share/icons/nuvola/22x22/apps/indeximg.png -share/icons/nuvola/22x22/apps/input_devices_settings.png -share/icons/nuvola/22x22/apps/irkick.png -share/icons/nuvola/22x22/apps/juk.png -share/icons/nuvola/22x22/apps/kaboodle.png -share/icons/nuvola/22x22/apps/kaddressbook.png -share/icons/nuvola/22x22/apps/kalarm.png -share/icons/nuvola/22x22/apps/kalzium.png -share/icons/nuvola/22x22/apps/kappfinder.png -share/icons/nuvola/22x22/apps/karm.png -share/icons/nuvola/22x22/apps/kasteroids.png -share/icons/nuvola/22x22/apps/kate.png -share/icons/nuvola/22x22/apps/katomic.png -share/icons/nuvola/22x22/apps/kaudiocreator.png -share/icons/nuvola/22x22/apps/kbackgammon.png -share/icons/nuvola/22x22/apps/kbackgammon_engine.png -share/icons/nuvola/22x22/apps/kblackbox.png -share/icons/nuvola/22x22/apps/kbounce.png -share/icons/nuvola/22x22/apps/kbrunch.png -share/icons/nuvola/22x22/apps/kcalc.png -share/icons/nuvola/22x22/apps/kcharselect.png -share/icons/nuvola/22x22/apps/kchart.png -share/icons/nuvola/22x22/apps/kcmdevice.png -share/icons/nuvola/22x22/apps/kcmdf.png -share/icons/nuvola/22x22/apps/kcmdrkonqi.png -share/icons/nuvola/22x22/apps/kcmkwm.png -share/icons/nuvola/22x22/apps/kcmmemory.png -share/icons/nuvola/22x22/apps/kcmmidi.png -share/icons/nuvola/22x22/apps/kcmpartitions.png -share/icons/nuvola/22x22/apps/kcmpci.png -share/icons/nuvola/22x22/apps/kcmprocessor.png -share/icons/nuvola/22x22/apps/kcmscsi.png -share/icons/nuvola/22x22/apps/kcmx.png -share/icons/nuvola/22x22/apps/kcolorchooser.png -share/icons/nuvola/22x22/apps/kcoloredit.png -share/icons/nuvola/22x22/apps/kcontrol.png -share/icons/nuvola/22x22/apps/kdat.png -share/icons/nuvola/22x22/apps/kdict.png -share/icons/nuvola/22x22/apps/kdmconfig.png -share/icons/nuvola/22x22/apps/kedit.png -share/icons/nuvola/22x22/apps/keditbookmarks.png -share/icons/nuvola/22x22/apps/keybindings.png -share/icons/nuvola/22x22/apps/keyboard.png -share/icons/nuvola/22x22/apps/keyboard_layout.png -share/icons/nuvola/22x22/apps/kfig.png -share/icons/nuvola/22x22/apps/kfind.png -share/icons/nuvola/22x22/apps/kfloppy.png -share/icons/nuvola/22x22/apps/kfm.png -share/icons/nuvola/22x22/apps/kfm_home.png -share/icons/nuvola/22x22/apps/kget.png -share/icons/nuvola/22x22/apps/kghostview.png -share/icons/nuvola/22x22/apps/kgpg.png -share/icons/nuvola/22x22/apps/kgpg_docked.png -share/icons/nuvola/22x22/apps/khangman.png -share/icons/nuvola/22x22/apps/khelpcenter.png -share/icons/nuvola/22x22/apps/khexedit.png -share/icons/nuvola/22x22/apps/khotkeys.png -share/icons/nuvola/22x22/apps/kiten.png -share/icons/nuvola/22x22/apps/kjobviewer.png -share/icons/nuvola/22x22/apps/kjots.png -share/icons/nuvola/22x22/apps/klettres.png -share/icons/nuvola/22x22/apps/klpq.png -share/icons/nuvola/22x22/apps/kmag.png -share/icons/nuvola/22x22/apps/kmahjong.png -share/icons/nuvola/22x22/apps/kmail.png -share/icons/nuvola/22x22/apps/kmaillight.png -share/icons/nuvola/22x22/apps/kmenu.png -share/icons/nuvola/22x22/apps/kmenuedit.png -share/icons/nuvola/22x22/apps/kmid.png -share/icons/nuvola/22x22/apps/kmines.png -share/icons/nuvola/22x22/apps/kmix.png -share/icons/nuvola/22x22/apps/kmoon.png -share/icons/nuvola/22x22/apps/kmousetool.png -share/icons/nuvola/22x22/apps/kmplot.png -share/icons/nuvola/22x22/apps/knewsticker.png -share/icons/nuvola/22x22/apps/knode.png -share/icons/nuvola/22x22/apps/knotes.png -share/icons/nuvola/22x22/apps/knotify.png -share/icons/nuvola/22x22/apps/kolourpaint.png -share/icons/nuvola/22x22/apps/konqsidebar_mediaplayer.png -share/icons/nuvola/22x22/apps/konqueror.png -share/icons/nuvola/22x22/apps/konquest.png -share/icons/nuvola/22x22/apps/konsole.png -share/icons/nuvola/22x22/apps/kontact.png -share/icons/nuvola/22x22/apps/kooka.png -share/icons/nuvola/22x22/apps/kopete.png -share/icons/nuvola/22x22/apps/kopete_all_away.png -share/icons/nuvola/22x22/apps/kopete_offline.png -share/icons/nuvola/22x22/apps/kopete_some_away.png -share/icons/nuvola/22x22/apps/kopete_some_online.png -share/icons/nuvola/22x22/apps/korganizer.png -share/icons/nuvola/22x22/apps/korganizer_todo.png -share/icons/nuvola/22x22/apps/korn.png -share/icons/nuvola/22x22/apps/kpackage.png -share/icons/nuvola/22x22/apps/kpager.png -share/icons/nuvola/22x22/apps/kpaint.png -share/icons/nuvola/22x22/apps/kpdf.png -share/icons/nuvola/22x22/apps/kpilot.png -share/icons/nuvola/22x22/apps/kpovmodeler.png -share/icons/nuvola/22x22/apps/kppp.png -share/icons/nuvola/22x22/apps/krdc.png -share/icons/nuvola/22x22/apps/krec.png -share/icons/nuvola/22x22/apps/kreversi.png -share/icons/nuvola/22x22/apps/krfb.png -share/icons/nuvola/22x22/apps/krita.png -share/icons/nuvola/22x22/apps/kruler.png -share/icons/nuvola/22x22/apps/kscd.png -share/icons/nuvola/22x22/apps/kscreensaver.png -share/icons/nuvola/22x22/apps/kshisen.png -share/icons/nuvola/22x22/apps/ksig.png -share/icons/nuvola/22x22/apps/ksim.png -share/icons/nuvola/22x22/apps/ksirc.png -share/icons/nuvola/22x22/apps/ksnapshot.png -share/icons/nuvola/22x22/apps/ksplash.png -share/icons/nuvola/22x22/apps/ksysv.png -share/icons/nuvola/22x22/apps/kteatime.png -share/icons/nuvola/22x22/apps/kthememgr.png -share/icons/nuvola/22x22/apps/ktimer.png -share/icons/nuvola/22x22/apps/ktip.png -share/icons/nuvola/22x22/apps/ktouch.png -share/icons/nuvola/22x22/apps/kugar.png -share/icons/nuvola/22x22/apps/kuickshow.png -share/icons/nuvola/22x22/apps/kuser.png -share/icons/nuvola/22x22/apps/kverbos.png -share/icons/nuvola/22x22/apps/kview.png -share/icons/nuvola/22x22/apps/kweather.png -share/icons/nuvola/22x22/apps/kwin4.png -share/icons/nuvola/22x22/apps/kworldclock.png -share/icons/nuvola/22x22/apps/kwrite.png -share/icons/nuvola/22x22/apps/kxkb.png -share/icons/nuvola/22x22/apps/laptop_battery.png -share/icons/nuvola/22x22/apps/laptop_pcmcia.png -share/icons/nuvola/22x22/apps/licq.png -share/icons/nuvola/22x22/apps/locale.png -share/icons/nuvola/22x22/apps/mplayer.png -share/icons/nuvola/22x22/apps/multimedia.png -share/icons/nuvola/22x22/apps/mycomputer.png -share/icons/nuvola/22x22/apps/netscape.png -share/icons/nuvola/22x22/apps/network.png -share/icons/nuvola/22x22/apps/ooo_gulls.png -share/icons/nuvola/22x22/apps/ooo_setup.png -share/icons/nuvola/22x22/apps/opera.png -share/icons/nuvola/22x22/apps/package_applications.png -share/icons/nuvola/22x22/apps/package_development.png -share/icons/nuvola/22x22/apps/package_editors.png -share/icons/nuvola/22x22/apps/package_edutainment.png -share/icons/nuvola/22x22/apps/package_favorite.png -share/icons/nuvola/22x22/apps/package_games.png -share/icons/nuvola/22x22/apps/package_games_arcade.png -share/icons/nuvola/22x22/apps/package_games_board.png -share/icons/nuvola/22x22/apps/package_games_strategy.png -share/icons/nuvola/22x22/apps/package_graphics.png -share/icons/nuvola/22x22/apps/package_multimedia.png -share/icons/nuvola/22x22/apps/package_network.png -share/icons/nuvola/22x22/apps/package_settings.png -share/icons/nuvola/22x22/apps/package_system.png -share/icons/nuvola/22x22/apps/package_toys.png -share/icons/nuvola/22x22/apps/package_utilities.png -share/icons/nuvola/22x22/apps/package_wordprocessing.png -share/icons/nuvola/22x22/apps/password.png -share/icons/nuvola/22x22/apps/personal.png -share/icons/nuvola/22x22/apps/printmgr.png -share/icons/nuvola/22x22/apps/randr.png -share/icons/nuvola/22x22/apps/realplayer.png -share/icons/nuvola/22x22/apps/reload.png -share/icons/nuvola/22x22/apps/remote.png -share/icons/nuvola/22x22/apps/samba.png -share/icons/nuvola/22x22/apps/sodipodi.png -share/icons/nuvola/22x22/apps/style.png -share/icons/nuvola/22x22/apps/stylesheet.png -share/icons/nuvola/22x22/apps/terminal.png -share/icons/nuvola/22x22/apps/usb.png -share/icons/nuvola/22x22/apps/window_list.png -share/icons/nuvola/22x22/apps/winprops.png -share/icons/nuvola/22x22/apps/x.png -share/icons/nuvola/22x22/apps/xapp.png -share/icons/nuvola/22x22/apps/xclock.png -share/icons/nuvola/22x22/apps/xconfig.png -share/icons/nuvola/22x22/apps/xmag.png -share/icons/nuvola/22x22/devices/3floppy_mount.png -share/icons/nuvola/22x22/devices/3floppy_unmount.png -share/icons/nuvola/22x22/devices/5floppy_mount.png -share/icons/nuvola/22x22/devices/5floppy_unmount.png -share/icons/nuvola/22x22/devices/camera.png -share/icons/nuvola/22x22/devices/camera_mount.png -share/icons/nuvola/22x22/devices/camera_unmount.png -share/icons/nuvola/22x22/devices/cdaudio_mount.png -share/icons/nuvola/22x22/devices/cdaudio_unmount.png -share/icons/nuvola/22x22/devices/cdrom_mount.png -share/icons/nuvola/22x22/devices/cdrom_unmount.png -share/icons/nuvola/22x22/devices/cdwriter_mount.png -share/icons/nuvola/22x22/devices/cdwriter_unmount.png -share/icons/nuvola/22x22/devices/dvd_mount.png -share/icons/nuvola/22x22/devices/dvd_unmount.png -share/icons/nuvola/22x22/devices/hdd_mount.png -share/icons/nuvola/22x22/devices/hdd_unmount.png -share/icons/nuvola/22x22/devices/ipod.png -share/icons/nuvola/22x22/devices/joystick.png -share/icons/nuvola/22x22/devices/memory.png -share/icons/nuvola/22x22/devices/mo_mount.png -share/icons/nuvola/22x22/devices/mo_unmount.png -share/icons/nuvola/22x22/devices/modem.png -share/icons/nuvola/22x22/devices/mouse.png -share/icons/nuvola/22x22/devices/nfs_mount.png -share/icons/nuvola/22x22/devices/nfs_unmount.png -share/icons/nuvola/22x22/devices/pda.png -share/icons/nuvola/22x22/devices/pda_black.png -share/icons/nuvola/22x22/devices/pda_blue.png -share/icons/nuvola/22x22/devices/print_class.png -share/icons/nuvola/22x22/devices/print_printer.png -share/icons/nuvola/22x22/devices/printer.png -share/icons/nuvola/22x22/devices/raid.png -share/icons/nuvola/22x22/devices/samba_mount.png -share/icons/nuvola/22x22/devices/samba_unmount.png -share/icons/nuvola/22x22/devices/scanner.png -share/icons/nuvola/22x22/devices/tablet.png -share/icons/nuvola/22x22/devices/tv.png -share/icons/nuvola/22x22/devices/usbpendrive_mount.png -share/icons/nuvola/22x22/devices/usbpendrive_unmount.png -share/icons/nuvola/22x22/devices/zip_mount.png -share/icons/nuvola/22x22/devices/zip_unmount.png -share/icons/nuvola/22x22/mimetypes/abiword_abi.png -share/icons/nuvola/22x22/mimetypes/applix.png -share/icons/nuvola/22x22/mimetypes/ascii.png -share/icons/nuvola/22x22/mimetypes/bc.png -share/icons/nuvola/22x22/mimetypes/binary.png -share/icons/nuvola/22x22/mimetypes/cdbo_list.png -share/icons/nuvola/22x22/mimetypes/cdimage.png -share/icons/nuvola/22x22/mimetypes/cdr.png -share/icons/nuvola/22x22/mimetypes/cdtrack.png -share/icons/nuvola/22x22/mimetypes/colorscm.png -share/icons/nuvola/22x22/mimetypes/colorset.png -share/icons/nuvola/22x22/mimetypes/core.png -share/icons/nuvola/22x22/mimetypes/deb.png -share/icons/nuvola/22x22/mimetypes/document.png -share/icons/nuvola/22x22/mimetypes/dvi.png -share/icons/nuvola/22x22/mimetypes/ebuild.png -share/icons/nuvola/22x22/mimetypes/empty.png -share/icons/nuvola/22x22/mimetypes/encrypted.png -share/icons/nuvola/22x22/mimetypes/exec_wine.png -share/icons/nuvola/22x22/mimetypes/file_locked-[Converted].png -share/icons/nuvola/22x22/mimetypes/file_temporary.png -share/icons/nuvola/22x22/mimetypes/font.png -share/icons/nuvola/22x22/mimetypes/font_bitmap.png -share/icons/nuvola/22x22/mimetypes/font_truetype.png -share/icons/nuvola/22x22/mimetypes/font_type1.png -share/icons/nuvola/22x22/mimetypes/gettext.png -share/icons/nuvola/22x22/mimetypes/gf.png -share/icons/nuvola/22x22/mimetypes/gnome_app_info.png -share/icons/nuvola/22x22/mimetypes/html.png -share/icons/nuvola/22x22/mimetypes/image.png -share/icons/nuvola/22x22/mimetypes/image_gimp.png -share/icons/nuvola/22x22/mimetypes/info.png -share/icons/nuvola/22x22/mimetypes/install.png -share/icons/nuvola/22x22/mimetypes/java_jar.png -share/icons/nuvola/22x22/mimetypes/karbon_karbon.png -share/icons/nuvola/22x22/mimetypes/kchart_chrt.png -share/icons/nuvola/22x22/mimetypes/kformula_kfo.png -share/icons/nuvola/22x22/mimetypes/kget_list.png -share/icons/nuvola/22x22/mimetypes/kig_doc.png -share/icons/nuvola/22x22/mimetypes/kivio_flw.png -share/icons/nuvola/22x22/mimetypes/kmultiple.png -share/icons/nuvola/22x22/mimetypes/koffice.png -share/icons/nuvola/22x22/mimetypes/kpovmodeler_doc.png -share/icons/nuvola/22x22/mimetypes/kpresenter_kpr.png -share/icons/nuvola/22x22/mimetypes/krec_fileempty.png -share/icons/nuvola/22x22/mimetypes/krec_fileplay.png -share/icons/nuvola/22x22/mimetypes/krec_filerec.png -share/icons/nuvola/22x22/mimetypes/krita_kra.png -share/icons/nuvola/22x22/mimetypes/kspread_ksp.png -share/icons/nuvola/22x22/mimetypes/kugar_kud.png -share/icons/nuvola/22x22/mimetypes/kugardata.png -share/icons/nuvola/22x22/mimetypes/kword_kwd.png -share/icons/nuvola/22x22/mimetypes/log.png -share/icons/nuvola/22x22/mimetypes/make.png -share/icons/nuvola/22x22/mimetypes/man.png -share/icons/nuvola/22x22/mimetypes/message.png -share/icons/nuvola/22x22/mimetypes/metafont.png -share/icons/nuvola/22x22/mimetypes/midi.png -share/icons/nuvola/22x22/mimetypes/mime.png -share/icons/nuvola/22x22/mimetypes/mime_ebuild.png -share/icons/nuvola/22x22/mimetypes/mime_koffice.png -share/icons/nuvola/22x22/mimetypes/mime_lyx.png -share/icons/nuvola/22x22/mimetypes/misc_doc.png -share/icons/nuvola/22x22/mimetypes/netscape_doc.png -share/icons/nuvola/22x22/mimetypes/ooo_calc.png -share/icons/nuvola/22x22/mimetypes/ooo_calc_tpl.png -share/icons/nuvola/22x22/mimetypes/ooo_draw_tpl.png -share/icons/nuvola/22x22/mimetypes/ooo_impress_tpl.png -share/icons/nuvola/22x22/mimetypes/ooo_setup.png -share/icons/nuvola/22x22/mimetypes/ooo_writer.png -share/icons/nuvola/22x22/mimetypes/ooo_writer_tpl.png -share/icons/nuvola/22x22/mimetypes/patch.png -share/icons/nuvola/22x22/mimetypes/pdf.png -share/icons/nuvola/22x22/mimetypes/postscript.png -share/icons/nuvola/22x22/mimetypes/quicktime.png -share/icons/nuvola/22x22/mimetypes/readme.png -share/icons/nuvola/22x22/mimetypes/real.png -share/icons/nuvola/22x22/mimetypes/real_doc.png -share/icons/nuvola/22x22/mimetypes/recycled.png -share/icons/nuvola/22x22/mimetypes/resource.png -share/icons/nuvola/22x22/mimetypes/rpm.png -share/icons/nuvola/22x22/mimetypes/shellscript.png -share/icons/nuvola/22x22/mimetypes/soffice.png -share/icons/nuvola/22x22/mimetypes/sound.png -share/icons/nuvola/22x22/mimetypes/source.png -share/icons/nuvola/22x22/mimetypes/source_c.png -share/icons/nuvola/22x22/mimetypes/source_cpp.png -share/icons/nuvola/22x22/mimetypes/source_css.png -share/icons/nuvola/22x22/mimetypes/source_f.png -share/icons/nuvola/22x22/mimetypes/source_h.png -share/icons/nuvola/22x22/mimetypes/source_j.png -share/icons/nuvola/22x22/mimetypes/source_java.png -share/icons/nuvola/22x22/mimetypes/source_moc.png -share/icons/nuvola/22x22/mimetypes/source_o.png -share/icons/nuvola/22x22/mimetypes/source_p.png -share/icons/nuvola/22x22/mimetypes/source_php.png -share/icons/nuvola/22x22/mimetypes/source_pl.png -share/icons/nuvola/22x22/mimetypes/source_py.png -share/icons/nuvola/22x22/mimetypes/source_s.png -share/icons/nuvola/22x22/mimetypes/source_y.png -share/icons/nuvola/22x22/mimetypes/spreadsheet.png -share/icons/nuvola/22x22/mimetypes/tar.png -share/icons/nuvola/22x22/mimetypes/template_source.png -share/icons/nuvola/22x22/mimetypes/tex.png -share/icons/nuvola/22x22/mimetypes/tgz.png -share/icons/nuvola/22x22/mimetypes/txt.png -share/icons/nuvola/22x22/mimetypes/unknown.png -share/icons/nuvola/22x22/mimetypes/vcalendar.png -share/icons/nuvola/22x22/mimetypes/vcard.png -share/icons/nuvola/22x22/mimetypes/vectorgfx.png -share/icons/nuvola/22x22/mimetypes/video.png -share/icons/nuvola/22x22/mimetypes/widget_doc.png -share/icons/nuvola/22x22/mimetypes/wordprocessing.png -share/icons/nuvola/32x32/actions/1downarrow.png -share/icons/nuvola/32x32/actions/1leftarrow.png -share/icons/nuvola/32x32/actions/1rightarrow.png -share/icons/nuvola/32x32/actions/1uparrow.png -share/icons/nuvola/32x32/actions/2downarrow.png -share/icons/nuvola/32x32/actions/2leftarrow.png -share/icons/nuvola/32x32/actions/2rightarrow.png -share/icons/nuvola/32x32/actions/2uparrow.png -share/icons/nuvola/32x32/actions/about_kde.png -share/icons/nuvola/32x32/actions/application-exit.png -share/icons/nuvola/32x32/actions/artsaudiomanager.png -share/icons/nuvola/32x32/actions/artsenvironment.png -share/icons/nuvola/32x32/actions/artsmediatypes.png -share/icons/nuvola/32x32/actions/artsmidimanager.png -share/icons/nuvola/32x32/actions/attach.png -share/icons/nuvola/32x32/actions/blend.png -share/icons/nuvola/32x32/actions/bookmark-new.png -share/icons/nuvola/32x32/actions/bookmark.png -share/icons/nuvola/32x32/actions/bookmark_folder.png -share/icons/nuvola/32x32/actions/bookmark_toolbar.png -share/icons/nuvola/32x32/actions/bookmarks_list_add.png -share/icons/nuvola/32x32/actions/button_accept.png -share/icons/nuvola/32x32/actions/button_ok.png -share/icons/nuvola/32x32/actions/camera_test.png -share/icons/nuvola/32x32/actions/cancel.png -share/icons/nuvola/32x32/actions/cd.png -share/icons/nuvola/32x32/actions/color_fill.png -share/icons/nuvola/32x32/actions/color_line.png -share/icons/nuvola/32x32/actions/colorize.png -share/icons/nuvola/32x32/actions/compfile.png -share/icons/nuvola/32x32/actions/configure.png -share/icons/nuvola/32x32/actions/connect_creating.png -share/icons/nuvola/32x32/actions/connect_established.png -share/icons/nuvola/32x32/actions/connect_no.png -share/icons/nuvola/32x32/actions/contact-new.png -share/icons/nuvola/32x32/actions/contents.png -share/icons/nuvola/32x32/actions/cut.png -share/icons/nuvola/32x32/actions/decrypted.png -share/icons/nuvola/32x32/actions/dialog-cancel.png -share/icons/nuvola/32x32/actions/dialog-close.png -share/icons/nuvola/32x32/actions/dialog-ok.png -share/icons/nuvola/32x32/actions/document-new.png -share/icons/nuvola/32x32/actions/document-open.png -share/icons/nuvola/32x32/actions/document-print-preview.png -share/icons/nuvola/32x32/actions/document-print.png -share/icons/nuvola/32x32/actions/document-revert.png -share/icons/nuvola/32x32/actions/document-save-as.png -share/icons/nuvola/32x32/actions/document-save.png -share/icons/nuvola/32x32/actions/edit-copy.png -share/icons/nuvola/32x32/actions/edit-cut.png -share/icons/nuvola/32x32/actions/edit-delete.png -share/icons/nuvola/32x32/actions/edit-find.png -share/icons/nuvola/32x32/actions/edit-paste.png -share/icons/nuvola/32x32/actions/edit-redo.png -share/icons/nuvola/32x32/actions/edit-undo.png -share/icons/nuvola/32x32/actions/edit.png -share/icons/nuvola/32x32/actions/edit_add.png -share/icons/nuvola/32x32/actions/edit_remove.png -share/icons/nuvola/32x32/actions/editshred.png -share/icons/nuvola/32x32/actions/edittrash.png -share/icons/nuvola/32x32/actions/email.png -share/icons/nuvola/32x32/actions/encrypted.png -share/icons/nuvola/32x32/actions/endturn.png -share/icons/nuvola/32x32/actions/fileexport.png -share/icons/nuvola/32x32/actions/fill.png -share/icons/nuvola/32x32/actions/folder-new.png -share/icons/nuvola/32x32/actions/frameprint.png -share/icons/nuvola/32x32/actions/go-bottom.png -share/icons/nuvola/32x32/actions/go-down.png -share/icons/nuvola/32x32/actions/go-first.png -share/icons/nuvola/32x32/actions/go-home.png -share/icons/nuvola/32x32/actions/go-last.png -share/icons/nuvola/32x32/actions/go-next-document.png -share/icons/nuvola/32x32/actions/go-next.png -share/icons/nuvola/32x32/actions/go-previous-document.png -share/icons/nuvola/32x32/actions/go-previous.png -share/icons/nuvola/32x32/actions/go-top.png -share/icons/nuvola/32x32/actions/go-up.png -share/icons/nuvola/32x32/actions/help.png -share/icons/nuvola/32x32/actions/history.png -share/icons/nuvola/32x32/actions/history_clear.png -share/icons/nuvola/32x32/actions/homepage.png -share/icons/nuvola/32x32/actions/hwinfo.png -share/icons/nuvola/32x32/actions/irkick.png -share/icons/nuvola/32x32/actions/irkickflash.png -share/icons/nuvola/32x32/actions/irkickoff.png -share/icons/nuvola/32x32/actions/kaboodleloop.png -share/icons/nuvola/32x32/actions/kalarm.png -share/icons/nuvola/32x32/actions/kalarm_disabled.png -share/icons/nuvola/32x32/actions/kcmpci.png -share/icons/nuvola/32x32/actions/kdevelop_down.png -share/icons/nuvola/32x32/actions/kgpg_edit.png -share/icons/nuvola/32x32/actions/kgpg_export.png -share/icons/nuvola/32x32/actions/kgpg_gen.png -share/icons/nuvola/32x32/actions/kgpg_identity.png -share/icons/nuvola/32x32/actions/kgpg_import.png -share/icons/nuvola/32x32/actions/kgpg_info.png -share/icons/nuvola/32x32/actions/kgpg_key1.png -share/icons/nuvola/32x32/actions/kgpg_key2.png -share/icons/nuvola/32x32/actions/kgpg_key3.png -share/icons/nuvola/32x32/actions/kgpg_photo.png -share/icons/nuvola/32x32/actions/kgpg_show.png -share/icons/nuvola/32x32/actions/kgpg_sign.png -share/icons/nuvola/32x32/actions/kgpg_term.png -share/icons/nuvola/32x32/actions/klipper_dock.png -share/icons/nuvola/32x32/actions/kmixdocked.png -share/icons/nuvola/32x32/actions/kmixdocked_error.png -share/icons/nuvola/32x32/actions/kmixdocked_mute.png -share/icons/nuvola/32x32/actions/krec_record.png -share/icons/nuvola/32x32/actions/laptop_charge.png -share/icons/nuvola/32x32/actions/laptop_nobattery.png -share/icons/nuvola/32x32/actions/laptop_nocharge.png -share/icons/nuvola/32x32/actions/laptop_power.png -share/icons/nuvola/32x32/actions/ledblue.png -share/icons/nuvola/32x32/actions/ledgreen.png -share/icons/nuvola/32x32/actions/ledlightblue.png -share/icons/nuvola/32x32/actions/ledlightgreen.png -share/icons/nuvola/32x32/actions/ledorange.png -share/icons/nuvola/32x32/actions/ledpurple.png -share/icons/nuvola/32x32/actions/ledred.png -share/icons/nuvola/32x32/actions/ledyellow.png -share/icons/nuvola/32x32/actions/mail-forward.png -share/icons/nuvola/32x32/actions/mail-message-new.png -share/icons/nuvola/32x32/actions/mail-reply-all.png -share/icons/nuvola/32x32/actions/mail-reply-sender.png -share/icons/nuvola/32x32/actions/mail-send.png -share/icons/nuvola/32x32/actions/mail_delete.png -share/icons/nuvola/32x32/actions/mail_find.png -share/icons/nuvola/32x32/actions/mail_generic.png -share/icons/nuvola/32x32/actions/mail_get.png -share/icons/nuvola/32x32/actions/mail_post_to.png -share/icons/nuvola/32x32/actions/make_kdevelop.png -share/icons/nuvola/32x32/actions/media-eject.png -share/icons/nuvola/32x32/actions/media-playback-pause.png -share/icons/nuvola/32x32/actions/media-playback-start.png -share/icons/nuvola/32x32/actions/media-playback-stop.png -share/icons/nuvola/32x32/actions/media-seek-backward.png -share/icons/nuvola/32x32/actions/media-seek-forward.png -share/icons/nuvola/32x32/actions/media-skip-backward.png -share/icons/nuvola/32x32/actions/media-skip-forward.png -share/icons/nuvola/32x32/actions/messagebox_critical.png -share/icons/nuvola/32x32/actions/messagebox_info.png -share/icons/nuvola/32x32/actions/messagebox_warning.png -share/icons/nuvola/32x32/actions/misc.png -share/icons/nuvola/32x32/actions/mix_midi.png -share/icons/nuvola/32x32/actions/mix_recmon.png -share/icons/nuvola/32x32/actions/mix_unknown.png -share/icons/nuvola/32x32/actions/mix_volume.png -share/icons/nuvola/32x32/actions/mouse.png -share/icons/nuvola/32x32/actions/newfont.png -share/icons/nuvola/32x32/actions/news_subscribe.png -share/icons/nuvola/32x32/actions/news_unsubscribe.png -share/icons/nuvola/32x32/actions/no.png -share/icons/nuvola/32x32/actions/noatunback.png -share/icons/nuvola/32x32/actions/noatunforward.png -share/icons/nuvola/32x32/actions/noatunloopsong.png -share/icons/nuvola/32x32/actions/noatunpause.png -share/icons/nuvola/32x32/actions/noatunplay.png -share/icons/nuvola/32x32/actions/noatunplaylist.png -share/icons/nuvola/32x32/actions/noatunstop.png -share/icons/nuvola/32x32/actions/object-rotate-left.png -share/icons/nuvola/32x32/actions/object-rotate-right.png -share/icons/nuvola/32x32/actions/ok.png -share/icons/nuvola/32x32/actions/openterm.png -share/icons/nuvola/32x32/actions/package_system.png -share/icons/nuvola/32x32/actions/pencil.png -share/icons/nuvola/32x32/actions/piano.png -share/icons/nuvola/32x32/actions/player_rev.png -share/icons/nuvola/32x32/actions/power.png -share/icons/nuvola/32x32/actions/process-stop.png -share/icons/nuvola/32x32/actions/project_open.png -share/icons/nuvola/32x32/actions/queue.png -share/icons/nuvola/32x32/actions/quiz.png -share/icons/nuvola/32x32/actions/rebuild.png -share/icons/nuvola/32x32/actions/reload_all_tabs.png -share/icons/nuvola/32x32/actions/reload_page.png -share/icons/nuvola/32x32/actions/roll.png -share/icons/nuvola/32x32/actions/rotate.png -share/icons/nuvola/32x32/actions/save_all.png -share/icons/nuvola/32x32/actions/signature.png -share/icons/nuvola/32x32/actions/system-lock-screen.png -share/icons/nuvola/32x32/actions/system-run.png -share/icons/nuvola/32x32/actions/tab-close.png -share/icons/nuvola/32x32/actions/tab-duplicate.png -share/icons/nuvola/32x32/actions/tab-new.png -share/icons/nuvola/32x32/actions/tab_new_raised.png -share/icons/nuvola/32x32/actions/thumbnail.png -share/icons/nuvola/32x32/actions/toggle_log.png -share/icons/nuvola/32x32/actions/tools-check-spelling.png -share/icons/nuvola/32x32/actions/view-refresh.png -share/icons/nuvola/32x32/actions/view.png -share/icons/nuvola/32x32/actions/view_bottom.png -share/icons/nuvola/32x32/actions/view_choose.png -share/icons/nuvola/32x32/actions/view_detailed.png -share/icons/nuvola/32x32/actions/view_fullscreen.png -share/icons/nuvola/32x32/actions/view_icon.png -share/icons/nuvola/32x32/actions/view_left_right.png -share/icons/nuvola/32x32/actions/view_multicolumn.png -share/icons/nuvola/32x32/actions/view_nofullscreen.png -share/icons/nuvola/32x32/actions/view_right.png -share/icons/nuvola/32x32/actions/view_sidetree.png -share/icons/nuvola/32x32/actions/view_text.png -share/icons/nuvola/32x32/actions/view_top_bottom.png -share/icons/nuvola/32x32/actions/view_tree.png -share/icons/nuvola/32x32/actions/window-new.png -share/icons/nuvola/32x32/actions/wizard.png -share/icons/nuvola/32x32/actions/zoom-best-fit.png -share/icons/nuvola/32x32/actions/zoom-in.png -share/icons/nuvola/32x32/actions/zoom-original.png -share/icons/nuvola/32x32/actions/zoom-out.png -share/icons/nuvola/32x32/actions/zoom.png -share/icons/nuvola/32x32/apps/access.png -share/icons/nuvola/32x32/apps/acroread.png -share/icons/nuvola/32x32/apps/agent.png -share/icons/nuvola/32x32/apps/aktion.png -share/icons/nuvola/32x32/apps/amarok.png -share/icons/nuvola/32x32/apps/amor.png -share/icons/nuvola/32x32/apps/applixware.png -share/icons/nuvola/32x32/apps/ark.png -share/icons/nuvola/32x32/apps/arts.png -share/icons/nuvola/32x32/apps/artsbuilder.png -share/icons/nuvola/32x32/apps/artscontrol.png -share/icons/nuvola/32x32/apps/artsmidimanager.png -share/icons/nuvola/32x32/apps/atlantik.png -share/icons/nuvola/32x32/apps/background.png -share/icons/nuvola/32x32/apps/bell.png -share/icons/nuvola/32x32/apps/bookcase.png -share/icons/nuvola/32x32/apps/browser.png -share/icons/nuvola/32x32/apps/bug.png -share/icons/nuvola/32x32/apps/cache.png -share/icons/nuvola/32x32/apps/chat.png -share/icons/nuvola/32x32/apps/clanbomber.png -share/icons/nuvola/32x32/apps/clock.png -share/icons/nuvola/32x32/apps/colors.png -share/icons/nuvola/32x32/apps/cookie.png -share/icons/nuvola/32x32/apps/core.png -share/icons/nuvola/32x32/apps/date.png -share/icons/nuvola/32x32/apps/designer.png -share/icons/nuvola/32x32/apps/digikam.png -share/icons/nuvola/32x32/apps/display.png -share/icons/nuvola/32x32/apps/download_manager.png -share/icons/nuvola/32x32/apps/edu_languages.png -share/icons/nuvola/32x32/apps/edu_mathematics.png -share/icons/nuvola/32x32/apps/edu_miscellaneous.png -share/icons/nuvola/32x32/apps/edu_science.png -share/icons/nuvola/32x32/apps/emacs.png -share/icons/nuvola/32x32/apps/email.png -share/icons/nuvola/32x32/apps/energy.png -share/icons/nuvola/32x32/apps/enhanced_browsing.png -share/icons/nuvola/32x32/apps/error.png -share/icons/nuvola/32x32/apps/evolution.png -share/icons/nuvola/32x32/apps/file-manager.png -share/icons/nuvola/32x32/apps/filetypes.png -share/icons/nuvola/32x32/apps/flashkard.png -share/icons/nuvola/32x32/apps/fonts.png -share/icons/nuvola/32x32/apps/fsview.png -share/icons/nuvola/32x32/apps/gaim.png -share/icons/nuvola/32x32/apps/galeon.png -share/icons/nuvola/32x32/apps/gimp.png -share/icons/nuvola/32x32/apps/gimp2.png -share/icons/nuvola/32x32/apps/gnome.png -share/icons/nuvola/32x32/apps/gnome_apps.png -share/icons/nuvola/32x32/apps/gnome_apps2.png -share/icons/nuvola/32x32/apps/go.png -share/icons/nuvola/32x32/apps/help_index.png -share/icons/nuvola/32x32/apps/hwinfo.png -share/icons/nuvola/32x32/apps/icons.png -share/icons/nuvola/32x32/apps/iconthemes.png -share/icons/nuvola/32x32/apps/important.png -share/icons/nuvola/32x32/apps/indeximg.png -share/icons/nuvola/32x32/apps/input_devices_settings.png -share/icons/nuvola/32x32/apps/irkick.png -share/icons/nuvola/32x32/apps/juk.png -share/icons/nuvola/32x32/apps/kaboodle.png -share/icons/nuvola/32x32/apps/kaddressbook.png -share/icons/nuvola/32x32/apps/kalarm.png -share/icons/nuvola/32x32/apps/kalzium.png -share/icons/nuvola/32x32/apps/kappfinder.png -share/icons/nuvola/32x32/apps/karm.png -share/icons/nuvola/32x32/apps/kasteroids.png -share/icons/nuvola/32x32/apps/kate.png -share/icons/nuvola/32x32/apps/katomic.png -share/icons/nuvola/32x32/apps/kaudiocreator.png -share/icons/nuvola/32x32/apps/kbackgammon.png -share/icons/nuvola/32x32/apps/kbackgammon_engine.png -share/icons/nuvola/32x32/apps/kblackbox.png -share/icons/nuvola/32x32/apps/kbounce.png -share/icons/nuvola/32x32/apps/kbrunch.png -share/icons/nuvola/32x32/apps/kcalc.png -share/icons/nuvola/32x32/apps/kcharselect.png -share/icons/nuvola/32x32/apps/kchart.png -share/icons/nuvola/32x32/apps/kcmdevice.png -share/icons/nuvola/32x32/apps/kcmdevices.png -share/icons/nuvola/32x32/apps/kcmdf.png -share/icons/nuvola/32x32/apps/kcmdrkonqi.png -share/icons/nuvola/32x32/apps/kcmfontinst.png -share/icons/nuvola/32x32/apps/kcmkwm.png -share/icons/nuvola/32x32/apps/kcmmemory.png -share/icons/nuvola/32x32/apps/kcmmidi.png -share/icons/nuvola/32x32/apps/kcmpartitions.png -share/icons/nuvola/32x32/apps/kcmpci.png -share/icons/nuvola/32x32/apps/kcmprocessor.png -share/icons/nuvola/32x32/apps/kcmscsi.png -share/icons/nuvola/32x32/apps/kcmsystem.png -share/icons/nuvola/32x32/apps/kcmx.png -share/icons/nuvola/32x32/apps/kcolorchooser.png -share/icons/nuvola/32x32/apps/kcoloredit.png -share/icons/nuvola/32x32/apps/kcontrol.png -share/icons/nuvola/32x32/apps/kdat.png -share/icons/nuvola/32x32/apps/kdf.png -share/icons/nuvola/32x32/apps/kdict.png -share/icons/nuvola/32x32/apps/kdisknav.png -share/icons/nuvola/32x32/apps/kdmconfig.png -share/icons/nuvola/32x32/apps/kedit.png -share/icons/nuvola/32x32/apps/keditbookmarks.png -share/icons/nuvola/32x32/apps/key_bindings.png -share/icons/nuvola/32x32/apps/keybindings.png -share/icons/nuvola/32x32/apps/keyboard.png -share/icons/nuvola/32x32/apps/keyboard_layout.png -share/icons/nuvola/32x32/apps/kfig.png -share/icons/nuvola/32x32/apps/kfind.png -share/icons/nuvola/32x32/apps/kfloppy.png -share/icons/nuvola/32x32/apps/kfm.png -share/icons/nuvola/32x32/apps/kfm_home.png -share/icons/nuvola/32x32/apps/kget.png -share/icons/nuvola/32x32/apps/kghostview.png -share/icons/nuvola/32x32/apps/kgpg.png -share/icons/nuvola/32x32/apps/khangman.png -share/icons/nuvola/32x32/apps/khelpcenter.png -share/icons/nuvola/32x32/apps/khexedit.png -share/icons/nuvola/32x32/apps/khotkeys.png -share/icons/nuvola/32x32/apps/kig.png -share/icons/nuvola/32x32/apps/kiten.png -share/icons/nuvola/32x32/apps/kivio.png -share/icons/nuvola/32x32/apps/kjobviewer.png -share/icons/nuvola/32x32/apps/kjots.png -share/icons/nuvola/32x32/apps/klettres.png -share/icons/nuvola/32x32/apps/klipper.png -share/icons/nuvola/32x32/apps/klpq.png -share/icons/nuvola/32x32/apps/kmag.png -share/icons/nuvola/32x32/apps/kmahjong.png -share/icons/nuvola/32x32/apps/kmail.png -share/icons/nuvola/32x32/apps/kmenu.png -share/icons/nuvola/32x32/apps/kmenuedit.png -share/icons/nuvola/32x32/apps/kmessedwords.png -share/icons/nuvola/32x32/apps/kmid.png -share/icons/nuvola/32x32/apps/kmines.png -share/icons/nuvola/32x32/apps/kmix.png -share/icons/nuvola/32x32/apps/kmoon.png -share/icons/nuvola/32x32/apps/kmousetool.png -share/icons/nuvola/32x32/apps/kmplot.png -share/icons/nuvola/32x32/apps/knewsticker.png -share/icons/nuvola/32x32/apps/knode.png -share/icons/nuvola/32x32/apps/knotes.png -share/icons/nuvola/32x32/apps/knotify.png -share/icons/nuvola/32x32/apps/kolf.png -share/icons/nuvola/32x32/apps/kolourpaint.png -share/icons/nuvola/32x32/apps/konqsidebar_mediaplayer.png -share/icons/nuvola/32x32/apps/konqueror.png -share/icons/nuvola/32x32/apps/konquest.png -share/icons/nuvola/32x32/apps/konsole.png -share/icons/nuvola/32x32/apps/kontact.png -share/icons/nuvola/32x32/apps/kooka.png -share/icons/nuvola/32x32/apps/kopete.png -share/icons/nuvola/32x32/apps/korganizer.png -share/icons/nuvola/32x32/apps/korganizer_todo.png -share/icons/nuvola/32x32/apps/korn.png -share/icons/nuvola/32x32/apps/kpackage.png -share/icons/nuvola/32x32/apps/kpager.png -share/icons/nuvola/32x32/apps/kpaint.png -share/icons/nuvola/32x32/apps/kpdf.png -share/icons/nuvola/32x32/apps/kpercentage.png -share/icons/nuvola/32x32/apps/kpilot.png -share/icons/nuvola/32x32/apps/kpovmodeler.png -share/icons/nuvola/32x32/apps/kppp.png -share/icons/nuvola/32x32/apps/kpresenter.png -share/icons/nuvola/32x32/apps/krdc.png -share/icons/nuvola/32x32/apps/krec.png -share/icons/nuvola/32x32/apps/kreversi.png -share/icons/nuvola/32x32/apps/krfb.png -share/icons/nuvola/32x32/apps/krita.png -share/icons/nuvola/32x32/apps/kruler.png -share/icons/nuvola/32x32/apps/kscd.png -share/icons/nuvola/32x32/apps/kscreensaver.png -share/icons/nuvola/32x32/apps/kservices.png -share/icons/nuvola/32x32/apps/kshisen.png -share/icons/nuvola/32x32/apps/ksig.png -share/icons/nuvola/32x32/apps/ksim.png -share/icons/nuvola/32x32/apps/ksirc.png -share/icons/nuvola/32x32/apps/ksnapshot.png -share/icons/nuvola/32x32/apps/ksplash.png -share/icons/nuvola/32x32/apps/ksysv.png -share/icons/nuvola/32x32/apps/kteatime.png -share/icons/nuvola/32x32/apps/kthememgr.png -share/icons/nuvola/32x32/apps/ktimer.png -share/icons/nuvola/32x32/apps/ktip.png -share/icons/nuvola/32x32/apps/ktouch.png -share/icons/nuvola/32x32/apps/kugar.png -share/icons/nuvola/32x32/apps/kuickshow.png -share/icons/nuvola/32x32/apps/kuser.png -share/icons/nuvola/32x32/apps/kverbos.png -share/icons/nuvola/32x32/apps/kview.png -share/icons/nuvola/32x32/apps/kweather.png -share/icons/nuvola/32x32/apps/kwikdisk.png -share/icons/nuvola/32x32/apps/kwin.png -share/icons/nuvola/32x32/apps/kwin4.png -share/icons/nuvola/32x32/apps/kword.png -share/icons/nuvola/32x32/apps/kworldclock.png -share/icons/nuvola/32x32/apps/kwrite.png -share/icons/nuvola/32x32/apps/kxkb.png -share/icons/nuvola/32x32/apps/laptop_battery.png -share/icons/nuvola/32x32/apps/laptop_pcmcia.png -share/icons/nuvola/32x32/apps/licq.png -share/icons/nuvola/32x32/apps/locale.png -share/icons/nuvola/32x32/apps/looknfeel.png -share/icons/nuvola/32x32/apps/mozilla-firebird.png -share/icons/nuvola/32x32/apps/mozilla-thunderbird.png -share/icons/nuvola/32x32/apps/mozilla.png -share/icons/nuvola/32x32/apps/mplayer.png -share/icons/nuvola/32x32/apps/multimedia.png -share/icons/nuvola/32x32/apps/mycomputer.png -share/icons/nuvola/32x32/apps/netscape.png -share/icons/nuvola/32x32/apps/network.png -share/icons/nuvola/32x32/apps/noatun.png -share/icons/nuvola/32x32/apps/ooo_gulls.png -share/icons/nuvola/32x32/apps/ooo_setup.png -share/icons/nuvola/32x32/apps/opera.png -share/icons/nuvola/32x32/apps/package.png -share/icons/nuvola/32x32/apps/package_applications.png -share/icons/nuvola/32x32/apps/package_development.png -share/icons/nuvola/32x32/apps/package_editors.png -share/icons/nuvola/32x32/apps/package_edutainment.png -share/icons/nuvola/32x32/apps/package_favorite.png -share/icons/nuvola/32x32/apps/package_games.png -share/icons/nuvola/32x32/apps/package_games_arcade.png -share/icons/nuvola/32x32/apps/package_games_board.png -share/icons/nuvola/32x32/apps/package_games_strategy.png -share/icons/nuvola/32x32/apps/package_graphics.png -share/icons/nuvola/32x32/apps/package_multimedia.png -share/icons/nuvola/32x32/apps/package_network.png -share/icons/nuvola/32x32/apps/package_settings.png -share/icons/nuvola/32x32/apps/package_system.png -share/icons/nuvola/32x32/apps/package_toys.png -share/icons/nuvola/32x32/apps/package_utilities.png -share/icons/nuvola/32x32/apps/package_wordprocessing.png -share/icons/nuvola/32x32/apps/password.png -share/icons/nuvola/32x32/apps/personal.png -share/icons/nuvola/32x32/apps/printmgr.png -share/icons/nuvola/32x32/apps/randr.png -share/icons/nuvola/32x32/apps/realplayer.png -share/icons/nuvola/32x32/apps/remote.png -share/icons/nuvola/32x32/apps/samba.png -share/icons/nuvola/32x32/apps/sodipodi.png -share/icons/nuvola/32x32/apps/style.png -share/icons/nuvola/32x32/apps/stylesheet.png -share/icons/nuvola/32x32/apps/terminal.png -share/icons/nuvola/32x32/apps/usb.png -share/icons/nuvola/32x32/apps/window_list.png -share/icons/nuvola/32x32/apps/winprops.png -share/icons/nuvola/32x32/apps/x.png -share/icons/nuvola/32x32/apps/xapp.png -share/icons/nuvola/32x32/apps/xcalc.png -share/icons/nuvola/32x32/apps/xclock.png -share/icons/nuvola/32x32/apps/xconfig.png -share/icons/nuvola/32x32/apps/xemacs.png -share/icons/nuvola/32x32/apps/xfmail.png -share/icons/nuvola/32x32/apps/xmag.png -share/icons/nuvola/32x32/devices/3floppy_mount.png -share/icons/nuvola/32x32/devices/3floppy_unmount.png -share/icons/nuvola/32x32/devices/5floppy_mount.png -share/icons/nuvola/32x32/devices/5floppy_unmount.png -share/icons/nuvola/32x32/devices/blockdevice.png -share/icons/nuvola/32x32/devices/camera.png -share/icons/nuvola/32x32/devices/camera_mount.png -share/icons/nuvola/32x32/devices/camera_unmount.png -share/icons/nuvola/32x32/devices/cdaudio_mount.png -share/icons/nuvola/32x32/devices/cdaudio_unmount.png -share/icons/nuvola/32x32/devices/cdrom_mount.png -share/icons/nuvola/32x32/devices/cdrom_unmount.png -share/icons/nuvola/32x32/devices/cdwriter_mount.png -share/icons/nuvola/32x32/devices/cdwriter_unmount.png -share/icons/nuvola/32x32/devices/dvd_mount.png -share/icons/nuvola/32x32/devices/dvd_unmount.png -share/icons/nuvola/32x32/devices/hdd_mount.png -share/icons/nuvola/32x32/devices/hdd_unmount.png -share/icons/nuvola/32x32/devices/ipod.png -share/icons/nuvola/32x32/devices/joystick.png -share/icons/nuvola/32x32/devices/ksim_cpu.png -share/icons/nuvola/32x32/devices/memory.png -share/icons/nuvola/32x32/devices/mo_mount.png -share/icons/nuvola/32x32/devices/mo_unmount.png -share/icons/nuvola/32x32/devices/modem.png -share/icons/nuvola/32x32/devices/mouse.png -share/icons/nuvola/32x32/devices/nfs_mount.png -share/icons/nuvola/32x32/devices/nfs_unmount.png -share/icons/nuvola/32x32/devices/pda.png -share/icons/nuvola/32x32/devices/pda_black.png -share/icons/nuvola/32x32/devices/pda_blue.png -share/icons/nuvola/32x32/devices/print_class.png -share/icons/nuvola/32x32/devices/print_printer.png -share/icons/nuvola/32x32/devices/printer.png -share/icons/nuvola/32x32/devices/printer1.png -share/icons/nuvola/32x32/devices/raid.png -share/icons/nuvola/32x32/devices/samba_mount.png -share/icons/nuvola/32x32/devices/samba_unmount.png -share/icons/nuvola/32x32/devices/scanner.png -share/icons/nuvola/32x32/devices/tablet.png -share/icons/nuvola/32x32/devices/tv.png -share/icons/nuvola/32x32/devices/usbpendrive_mount.png -share/icons/nuvola/32x32/devices/usbpendrive_unmount.png -share/icons/nuvola/32x32/devices/zip_mount.png -share/icons/nuvola/32x32/devices/zip_unmount.png -share/icons/nuvola/32x32/mimetypes/abiword_abi.png -share/icons/nuvola/32x32/mimetypes/applix.png -share/icons/nuvola/32x32/mimetypes/ascii.png -share/icons/nuvola/32x32/mimetypes/bc.png -share/icons/nuvola/32x32/mimetypes/binary.png -share/icons/nuvola/32x32/mimetypes/cdbo_list.png -share/icons/nuvola/32x32/mimetypes/cdimage.png -share/icons/nuvola/32x32/mimetypes/cdr.png -share/icons/nuvola/32x32/mimetypes/cdtrack.png -share/icons/nuvola/32x32/mimetypes/colorscm.png -share/icons/nuvola/32x32/mimetypes/colorset.png -share/icons/nuvola/32x32/mimetypes/core.png -share/icons/nuvola/32x32/mimetypes/deb.png -share/icons/nuvola/32x32/mimetypes/document.png -share/icons/nuvola/32x32/mimetypes/dvi.png -share/icons/nuvola/32x32/mimetypes/ebuild.png -share/icons/nuvola/32x32/mimetypes/empty.png -share/icons/nuvola/32x32/mimetypes/encrypted.png -share/icons/nuvola/32x32/mimetypes/exec_wine.png -share/icons/nuvola/32x32/mimetypes/file_locked-[Converted].png -share/icons/nuvola/32x32/mimetypes/file_locked.png -share/icons/nuvola/32x32/mimetypes/file_temporary.png -share/icons/nuvola/32x32/mimetypes/font.png -share/icons/nuvola/32x32/mimetypes/font_bitmap.png -share/icons/nuvola/32x32/mimetypes/font_truetype.png -share/icons/nuvola/32x32/mimetypes/font_type1.png -share/icons/nuvola/32x32/mimetypes/gettext.png -share/icons/nuvola/32x32/mimetypes/gf.png -share/icons/nuvola/32x32/mimetypes/gnome_app_info.png -share/icons/nuvola/32x32/mimetypes/html.png -share/icons/nuvola/32x32/mimetypes/image.png -share/icons/nuvola/32x32/mimetypes/image_gimp.png -share/icons/nuvola/32x32/mimetypes/info.png -share/icons/nuvola/32x32/mimetypes/install.png -share/icons/nuvola/32x32/mimetypes/java_jar.png -share/icons/nuvola/32x32/mimetypes/karbon_karbon.png -share/icons/nuvola/32x32/mimetypes/kchart_chrt.png -share/icons/nuvola/32x32/mimetypes/kformula_kfo.png -share/icons/nuvola/32x32/mimetypes/kget_list.png -share/icons/nuvola/32x32/mimetypes/kig_doc.png -share/icons/nuvola/32x32/mimetypes/kivio_flw.png -share/icons/nuvola/32x32/mimetypes/kmultiple.png -share/icons/nuvola/32x32/mimetypes/koffice.png -share/icons/nuvola/32x32/mimetypes/kpovmodeler_doc.png -share/icons/nuvola/32x32/mimetypes/kpresenter_kpr.png -share/icons/nuvola/32x32/mimetypes/krec_fileempty.png -share/icons/nuvola/32x32/mimetypes/krec_fileplay.png -share/icons/nuvola/32x32/mimetypes/krec_filerec.png -share/icons/nuvola/32x32/mimetypes/krita_kra.png -share/icons/nuvola/32x32/mimetypes/kspread_ksp.png -share/icons/nuvola/32x32/mimetypes/kugar_kud.png -share/icons/nuvola/32x32/mimetypes/kugardata.png -share/icons/nuvola/32x32/mimetypes/kword_kwd.png -share/icons/nuvola/32x32/mimetypes/log.png -share/icons/nuvola/32x32/mimetypes/make.png -share/icons/nuvola/32x32/mimetypes/man.png -share/icons/nuvola/32x32/mimetypes/message.png -share/icons/nuvola/32x32/mimetypes/metafont.png -share/icons/nuvola/32x32/mimetypes/midi.png -share/icons/nuvola/32x32/mimetypes/mime.png -share/icons/nuvola/32x32/mimetypes/mime_ebuild.png -share/icons/nuvola/32x32/mimetypes/mime_empty.png -share/icons/nuvola/32x32/mimetypes/mime_koffice.png -share/icons/nuvola/32x32/mimetypes/mime_lyx.png -share/icons/nuvola/32x32/mimetypes/mime_temp.png -share/icons/nuvola/32x32/mimetypes/misc_doc.png -share/icons/nuvola/32x32/mimetypes/mozilla_doc.png -share/icons/nuvola/32x32/mimetypes/netscape_doc.png -share/icons/nuvola/32x32/mimetypes/ooo_calc.png -share/icons/nuvola/32x32/mimetypes/ooo_calc_tpl.png -share/icons/nuvola/32x32/mimetypes/ooo_draw.png -share/icons/nuvola/32x32/mimetypes/ooo_draw_tpl.png -share/icons/nuvola/32x32/mimetypes/ooo_impress.png -share/icons/nuvola/32x32/mimetypes/ooo_impress_tpl.png -share/icons/nuvola/32x32/mimetypes/ooo_setup.png -share/icons/nuvola/32x32/mimetypes/ooo_writer.png -share/icons/nuvola/32x32/mimetypes/ooo_writer_tpl.png -share/icons/nuvola/32x32/mimetypes/patch.png -share/icons/nuvola/32x32/mimetypes/pdf.png -share/icons/nuvola/32x32/mimetypes/postscript.png -share/icons/nuvola/32x32/mimetypes/quicktime.png -share/icons/nuvola/32x32/mimetypes/readme.png -share/icons/nuvola/32x32/mimetypes/real.png -share/icons/nuvola/32x32/mimetypes/real_doc.png -share/icons/nuvola/32x32/mimetypes/recycled.png -share/icons/nuvola/32x32/mimetypes/resource.png -share/icons/nuvola/32x32/mimetypes/rpm.png -share/icons/nuvola/32x32/mimetypes/shellscript.png -share/icons/nuvola/32x32/mimetypes/soffice.png -share/icons/nuvola/32x32/mimetypes/sound.png -share/icons/nuvola/32x32/mimetypes/source.png -share/icons/nuvola/32x32/mimetypes/source_c.png -share/icons/nuvola/32x32/mimetypes/source_cpp.png -share/icons/nuvola/32x32/mimetypes/source_css.png -share/icons/nuvola/32x32/mimetypes/source_f.png -share/icons/nuvola/32x32/mimetypes/source_h.png -share/icons/nuvola/32x32/mimetypes/source_j.png -share/icons/nuvola/32x32/mimetypes/source_java.png -share/icons/nuvola/32x32/mimetypes/source_l.png -share/icons/nuvola/32x32/mimetypes/source_moc.png -share/icons/nuvola/32x32/mimetypes/source_o.png -share/icons/nuvola/32x32/mimetypes/source_p.png -share/icons/nuvola/32x32/mimetypes/source_php.png -share/icons/nuvola/32x32/mimetypes/source_pl.png -share/icons/nuvola/32x32/mimetypes/source_py.png -share/icons/nuvola/32x32/mimetypes/source_s.png -share/icons/nuvola/32x32/mimetypes/source_y.png -share/icons/nuvola/32x32/mimetypes/spreadsheet.png -share/icons/nuvola/32x32/mimetypes/tar.png -share/icons/nuvola/32x32/mimetypes/template_source.png -share/icons/nuvola/32x32/mimetypes/tex.png -share/icons/nuvola/32x32/mimetypes/tgz.png -share/icons/nuvola/32x32/mimetypes/txt.png -share/icons/nuvola/32x32/mimetypes/unknown.png -share/icons/nuvola/32x32/mimetypes/vcalendar.png -share/icons/nuvola/32x32/mimetypes/vcard.png -share/icons/nuvola/32x32/mimetypes/vectorgfx.png -share/icons/nuvola/32x32/mimetypes/video.png -share/icons/nuvola/32x32/mimetypes/widget_doc.png -share/icons/nuvola/32x32/mimetypes/wordprocessing.png -share/icons/nuvola/48x48/actions/1downarrow.png -share/icons/nuvola/48x48/actions/1leftarrow.png -share/icons/nuvola/48x48/actions/1rightarrow.png -share/icons/nuvola/48x48/actions/1uparrow.png -share/icons/nuvola/48x48/actions/2downarrow.png -share/icons/nuvola/48x48/actions/2leftarrow.png -share/icons/nuvola/48x48/actions/2rightarrow.png -share/icons/nuvola/48x48/actions/2uparrow.png -share/icons/nuvola/48x48/actions/about_kde.png -share/icons/nuvola/48x48/actions/application-exit.png -share/icons/nuvola/48x48/actions/artsaudiomanager.png -share/icons/nuvola/48x48/actions/artsenvironment.png -share/icons/nuvola/48x48/actions/artsmediatypes.png -share/icons/nuvola/48x48/actions/artsmidimanager.png -share/icons/nuvola/48x48/actions/attach.png -share/icons/nuvola/48x48/actions/blend.png -share/icons/nuvola/48x48/actions/bookmark-new.png -share/icons/nuvola/48x48/actions/bookmark.png -share/icons/nuvola/48x48/actions/bookmark_folder.png -share/icons/nuvola/48x48/actions/bookmark_toolbar.png -share/icons/nuvola/48x48/actions/bookmarks_list_add.png -share/icons/nuvola/48x48/actions/button_accept.png -share/icons/nuvola/48x48/actions/button_ok.png -share/icons/nuvola/48x48/actions/camera_test.png -share/icons/nuvola/48x48/actions/cancel.png -share/icons/nuvola/48x48/actions/cd.png -share/icons/nuvola/48x48/actions/color_fill.png -share/icons/nuvola/48x48/actions/color_line.png -share/icons/nuvola/48x48/actions/colorize.png -share/icons/nuvola/48x48/actions/compfile.png -share/icons/nuvola/48x48/actions/configure.png -share/icons/nuvola/48x48/actions/connect_creating.png -share/icons/nuvola/48x48/actions/connect_established.png -share/icons/nuvola/48x48/actions/connect_no.png -share/icons/nuvola/48x48/actions/contact-new.png -share/icons/nuvola/48x48/actions/cut.png -share/icons/nuvola/48x48/actions/decrypted.png -share/icons/nuvola/48x48/actions/dialog-cancel.png -share/icons/nuvola/48x48/actions/dialog-close.png -share/icons/nuvola/48x48/actions/dialog-ok.png -share/icons/nuvola/48x48/actions/document-new.png -share/icons/nuvola/48x48/actions/document-open.png -share/icons/nuvola/48x48/actions/document-print-preview.png -share/icons/nuvola/48x48/actions/document-print.png -share/icons/nuvola/48x48/actions/document-revert.png -share/icons/nuvola/48x48/actions/document-save-as.png -share/icons/nuvola/48x48/actions/document-save.png -share/icons/nuvola/48x48/actions/edit-copy.png -share/icons/nuvola/48x48/actions/edit-cut.png -share/icons/nuvola/48x48/actions/edit-delete.png -share/icons/nuvola/48x48/actions/edit-find.png -share/icons/nuvola/48x48/actions/edit-paste.png -share/icons/nuvola/48x48/actions/edit-redo.png -share/icons/nuvola/48x48/actions/edit-undo.png -share/icons/nuvola/48x48/actions/edit.png -share/icons/nuvola/48x48/actions/edit_add.png -share/icons/nuvola/48x48/actions/edit_remove.png -share/icons/nuvola/48x48/actions/editshred.png -share/icons/nuvola/48x48/actions/edittrash.png -share/icons/nuvola/48x48/actions/encrypted.png -share/icons/nuvola/48x48/actions/endturn.png -share/icons/nuvola/48x48/actions/fileexport.png -share/icons/nuvola/48x48/actions/fill.png -share/icons/nuvola/48x48/actions/folder-new.png -share/icons/nuvola/48x48/actions/frameprint.png -share/icons/nuvola/48x48/actions/go-bottom.png -share/icons/nuvola/48x48/actions/go-down.png -share/icons/nuvola/48x48/actions/go-first.png -share/icons/nuvola/48x48/actions/go-home.png -share/icons/nuvola/48x48/actions/go-last.png -share/icons/nuvola/48x48/actions/go-next-document.png -share/icons/nuvola/48x48/actions/go-next.png -share/icons/nuvola/48x48/actions/go-previous-document.png -share/icons/nuvola/48x48/actions/go-previous.png -share/icons/nuvola/48x48/actions/go-top.png -share/icons/nuvola/48x48/actions/go-up.png -share/icons/nuvola/48x48/actions/help.png -share/icons/nuvola/48x48/actions/history.png -share/icons/nuvola/48x48/actions/history_clear.png -share/icons/nuvola/48x48/actions/irkick.png -share/icons/nuvola/48x48/actions/irkickflash.png -share/icons/nuvola/48x48/actions/irkickoff.png -share/icons/nuvola/48x48/actions/kaboodleloop.png -share/icons/nuvola/48x48/actions/kalarm.png -share/icons/nuvola/48x48/actions/kalarm_disabled.png -share/icons/nuvola/48x48/actions/kdevelop_down.png -share/icons/nuvola/48x48/actions/kgpg_edit.png -share/icons/nuvola/48x48/actions/kgpg_export.png -share/icons/nuvola/48x48/actions/kgpg_gen.png -share/icons/nuvola/48x48/actions/kgpg_identity.png -share/icons/nuvola/48x48/actions/kgpg_import.png -share/icons/nuvola/48x48/actions/kgpg_info.png -share/icons/nuvola/48x48/actions/kgpg_key1.png -share/icons/nuvola/48x48/actions/kgpg_key2.png -share/icons/nuvola/48x48/actions/kgpg_key3.png -share/icons/nuvola/48x48/actions/kgpg_photo.png -share/icons/nuvola/48x48/actions/kgpg_show.png -share/icons/nuvola/48x48/actions/kgpg_sign.png -share/icons/nuvola/48x48/actions/kgpg_term.png -share/icons/nuvola/48x48/actions/klipper_dock.png -share/icons/nuvola/48x48/actions/kmixdocked.png -share/icons/nuvola/48x48/actions/kmixdocked_error.png -share/icons/nuvola/48x48/actions/kmixdocked_mute.png -share/icons/nuvola/48x48/actions/laptop_charge.png -share/icons/nuvola/48x48/actions/laptop_nobattery.png -share/icons/nuvola/48x48/actions/laptop_nocharge.png -share/icons/nuvola/48x48/actions/laptop_power.png -share/icons/nuvola/48x48/actions/ledblue.png -share/icons/nuvola/48x48/actions/ledgreen.png -share/icons/nuvola/48x48/actions/ledlightblue.png -share/icons/nuvola/48x48/actions/ledlightgreen.png -share/icons/nuvola/48x48/actions/ledorange.png -share/icons/nuvola/48x48/actions/ledpurple.png -share/icons/nuvola/48x48/actions/ledred.png -share/icons/nuvola/48x48/actions/ledyellow.png -share/icons/nuvola/48x48/actions/mail-forward.png -share/icons/nuvola/48x48/actions/mail-message-new.png -share/icons/nuvola/48x48/actions/mail-reply-all.png -share/icons/nuvola/48x48/actions/mail-reply-sender.png -share/icons/nuvola/48x48/actions/mail-send.png -share/icons/nuvola/48x48/actions/mail_delete.png -share/icons/nuvola/48x48/actions/mail_find.png -share/icons/nuvola/48x48/actions/mail_generic.png -share/icons/nuvola/48x48/actions/mail_get.png -share/icons/nuvola/48x48/actions/mail_post_to.png -share/icons/nuvola/48x48/actions/make_kdevelop.png -share/icons/nuvola/48x48/actions/media-eject.png -share/icons/nuvola/48x48/actions/media-playback-pause.png -share/icons/nuvola/48x48/actions/media-playback-start.png -share/icons/nuvola/48x48/actions/media-playback-stop.png -share/icons/nuvola/48x48/actions/media-seek-backward.png -share/icons/nuvola/48x48/actions/media-seek-forward.png -share/icons/nuvola/48x48/actions/media-skip-backward.png -share/icons/nuvola/48x48/actions/media-skip-forward.png -share/icons/nuvola/48x48/actions/messagebox_critical.png -share/icons/nuvola/48x48/actions/messagebox_info.png -share/icons/nuvola/48x48/actions/messagebox_warning.png -share/icons/nuvola/48x48/actions/misc.png -share/icons/nuvola/48x48/actions/mix_midi.png -share/icons/nuvola/48x48/actions/mix_recmon.png -share/icons/nuvola/48x48/actions/mix_unknown.png -share/icons/nuvola/48x48/actions/mix_volume.png -share/icons/nuvola/48x48/actions/mouse.png -share/icons/nuvola/48x48/actions/newfont.png -share/icons/nuvola/48x48/actions/news_subscribe.png -share/icons/nuvola/48x48/actions/news_unsubscribe.png -share/icons/nuvola/48x48/actions/no.png -share/icons/nuvola/48x48/actions/noatunloopsong.png -share/icons/nuvola/48x48/actions/object-rotate-left.png -share/icons/nuvola/48x48/actions/object-rotate-right.png -share/icons/nuvola/48x48/actions/ok.png -share/icons/nuvola/48x48/actions/openterm.png -share/icons/nuvola/48x48/actions/pencil.png -share/icons/nuvola/48x48/actions/piano.png -share/icons/nuvola/48x48/actions/player_rev.png -share/icons/nuvola/48x48/actions/power.png -share/icons/nuvola/48x48/actions/process-stop.png -share/icons/nuvola/48x48/actions/project_open.png -share/icons/nuvola/48x48/actions/queue.png -share/icons/nuvola/48x48/actions/quiz.png -share/icons/nuvola/48x48/actions/rebuild.png -share/icons/nuvola/48x48/actions/reload_all_tabs.png -share/icons/nuvola/48x48/actions/reload_page.png -share/icons/nuvola/48x48/actions/roll.png -share/icons/nuvola/48x48/actions/rotate.png -share/icons/nuvola/48x48/actions/save_all.png -share/icons/nuvola/48x48/actions/signature.png -share/icons/nuvola/48x48/actions/system-lock-screen.png -share/icons/nuvola/48x48/actions/system-run.png -share/icons/nuvola/48x48/actions/tab-close.png -share/icons/nuvola/48x48/actions/tab-duplicate.png -share/icons/nuvola/48x48/actions/tab-new.png -share/icons/nuvola/48x48/actions/tab_new_raised.png -share/icons/nuvola/48x48/actions/thumbnail.png -share/icons/nuvola/48x48/actions/toggle_log.png -share/icons/nuvola/48x48/actions/tools-check-spelling.png -share/icons/nuvola/48x48/actions/view-refresh.png -share/icons/nuvola/48x48/actions/view.png -share/icons/nuvola/48x48/actions/view_bottom.png -share/icons/nuvola/48x48/actions/view_choose.png -share/icons/nuvola/48x48/actions/view_detailed.png -share/icons/nuvola/48x48/actions/view_fullscreen.png -share/icons/nuvola/48x48/actions/view_icon.png -share/icons/nuvola/48x48/actions/view_left_right.png -share/icons/nuvola/48x48/actions/view_multicolumn.png -share/icons/nuvola/48x48/actions/view_nofullscreen.png -share/icons/nuvola/48x48/actions/view_right.png -share/icons/nuvola/48x48/actions/view_sidetree.png -share/icons/nuvola/48x48/actions/view_text.png -share/icons/nuvola/48x48/actions/view_top_bottom.png -share/icons/nuvola/48x48/actions/view_tree.png -share/icons/nuvola/48x48/actions/window-new.png -share/icons/nuvola/48x48/actions/wizard.png -share/icons/nuvola/48x48/actions/zoom-best-fit.png -share/icons/nuvola/48x48/actions/zoom-in.png -share/icons/nuvola/48x48/actions/zoom-original.png -share/icons/nuvola/48x48/actions/zoom-out.png -share/icons/nuvola/48x48/actions/zoom.png -share/icons/nuvola/48x48/apps/access.png -share/icons/nuvola/48x48/apps/acroread.png -share/icons/nuvola/48x48/apps/agent.png -share/icons/nuvola/48x48/apps/aktion.png -share/icons/nuvola/48x48/apps/amarok.png -share/icons/nuvola/48x48/apps/amor.png -share/icons/nuvola/48x48/apps/applixware.png -share/icons/nuvola/48x48/apps/ark.png -share/icons/nuvola/48x48/apps/arts.png -share/icons/nuvola/48x48/apps/artsbuilder.png -share/icons/nuvola/48x48/apps/artscontrol.png -share/icons/nuvola/48x48/apps/artsmidimanager.png -share/icons/nuvola/48x48/apps/atlantik.png -share/icons/nuvola/48x48/apps/background.png -share/icons/nuvola/48x48/apps/bell.png -share/icons/nuvola/48x48/apps/bookcase.png -share/icons/nuvola/48x48/apps/browser.png -share/icons/nuvola/48x48/apps/bug.png -share/icons/nuvola/48x48/apps/cache.png -share/icons/nuvola/48x48/apps/chat.png -share/icons/nuvola/48x48/apps/clanbomber.png -share/icons/nuvola/48x48/apps/clock.png -share/icons/nuvola/48x48/apps/colors.png -share/icons/nuvola/48x48/apps/cookie.png -share/icons/nuvola/48x48/apps/core.png -share/icons/nuvola/48x48/apps/date.png -share/icons/nuvola/48x48/apps/designer.png -share/icons/nuvola/48x48/apps/digikam.png -share/icons/nuvola/48x48/apps/display.png -share/icons/nuvola/48x48/apps/download_manager.png -share/icons/nuvola/48x48/apps/edu_languages.png -share/icons/nuvola/48x48/apps/edu_mathematics.png -share/icons/nuvola/48x48/apps/edu_miscellaneous.png -share/icons/nuvola/48x48/apps/edu_science.png -share/icons/nuvola/48x48/apps/emacs.png -share/icons/nuvola/48x48/apps/email.png -share/icons/nuvola/48x48/apps/energy.png -share/icons/nuvola/48x48/apps/enhanced_browsing.png -share/icons/nuvola/48x48/apps/error.png -share/icons/nuvola/48x48/apps/evolution.png -share/icons/nuvola/48x48/apps/file-manager.png -share/icons/nuvola/48x48/apps/filetypes.png -share/icons/nuvola/48x48/apps/flashkard.png -share/icons/nuvola/48x48/apps/fonts.png -share/icons/nuvola/48x48/apps/fsview.png -share/icons/nuvola/48x48/apps/gaim.png -share/icons/nuvola/48x48/apps/galeon.png -share/icons/nuvola/48x48/apps/gimp.png -share/icons/nuvola/48x48/apps/gimp2.png -share/icons/nuvola/48x48/apps/gnome_apps.png -share/icons/nuvola/48x48/apps/gnome_apps2.png -share/icons/nuvola/48x48/apps/go.png -share/icons/nuvola/48x48/apps/help_index.png -share/icons/nuvola/48x48/apps/hwinfo.png -share/icons/nuvola/48x48/apps/icons.png -share/icons/nuvola/48x48/apps/iconthemes.png -share/icons/nuvola/48x48/apps/important.png -share/icons/nuvola/48x48/apps/indeximg.png -share/icons/nuvola/48x48/apps/input_devices_settings.png -share/icons/nuvola/48x48/apps/irkick.png -share/icons/nuvola/48x48/apps/juk.png -share/icons/nuvola/48x48/apps/kaboodle.png -share/icons/nuvola/48x48/apps/kaddressbook.png -share/icons/nuvola/48x48/apps/kalarm.png -share/icons/nuvola/48x48/apps/kalzium.png -share/icons/nuvola/48x48/apps/kappfinder.png -share/icons/nuvola/48x48/apps/karm.png -share/icons/nuvola/48x48/apps/kasteroids.png -share/icons/nuvola/48x48/apps/kate.png -share/icons/nuvola/48x48/apps/katomic.png -share/icons/nuvola/48x48/apps/kaudiocreator.png -share/icons/nuvola/48x48/apps/kbackgammon.png -share/icons/nuvola/48x48/apps/kbackgammon_engine.png -share/icons/nuvola/48x48/apps/kblackbox.png -share/icons/nuvola/48x48/apps/kbounce.png -share/icons/nuvola/48x48/apps/kbrunch.png -share/icons/nuvola/48x48/apps/kcalc.png -share/icons/nuvola/48x48/apps/kcharselect.png -share/icons/nuvola/48x48/apps/kchart.png -share/icons/nuvola/48x48/apps/kcmdevice.png -share/icons/nuvola/48x48/apps/kcmdevices.png -share/icons/nuvola/48x48/apps/kcmdf.png -share/icons/nuvola/48x48/apps/kcmdrkonqi.png -share/icons/nuvola/48x48/apps/kcmfontinst.png -share/icons/nuvola/48x48/apps/kcmkwm.png -share/icons/nuvola/48x48/apps/kcmmemory.png -share/icons/nuvola/48x48/apps/kcmmidi.png -share/icons/nuvola/48x48/apps/kcmpartitions.png -share/icons/nuvola/48x48/apps/kcmpci.png -share/icons/nuvola/48x48/apps/kcmprocessor.png -share/icons/nuvola/48x48/apps/kcmscsi.png -share/icons/nuvola/48x48/apps/kcmsystem.png -share/icons/nuvola/48x48/apps/kcmx.png -share/icons/nuvola/48x48/apps/kcolorchooser.png -share/icons/nuvola/48x48/apps/kcoloredit.png -share/icons/nuvola/48x48/apps/kcontrol.png -share/icons/nuvola/48x48/apps/kdat.png -share/icons/nuvola/48x48/apps/kdf.png -share/icons/nuvola/48x48/apps/kdict.png -share/icons/nuvola/48x48/apps/kdisknav.png -share/icons/nuvola/48x48/apps/kdmconfig.png -share/icons/nuvola/48x48/apps/kedit.png -share/icons/nuvola/48x48/apps/keditbookmarks.png -share/icons/nuvola/48x48/apps/key_bindings.png -share/icons/nuvola/48x48/apps/keybindings.png -share/icons/nuvola/48x48/apps/keyboard.png -share/icons/nuvola/48x48/apps/keyboard_layout.png -share/icons/nuvola/48x48/apps/kfig.png -share/icons/nuvola/48x48/apps/kfind.png -share/icons/nuvola/48x48/apps/kfloppy.png -share/icons/nuvola/48x48/apps/kfm.png -share/icons/nuvola/48x48/apps/kfm_home.png -share/icons/nuvola/48x48/apps/kget.png -share/icons/nuvola/48x48/apps/kghostview.png -share/icons/nuvola/48x48/apps/kgpg.png -share/icons/nuvola/48x48/apps/khangman.png -share/icons/nuvola/48x48/apps/khelpcenter.png -share/icons/nuvola/48x48/apps/khexedit.png -share/icons/nuvola/48x48/apps/khotkeys.png -share/icons/nuvola/48x48/apps/kig.png -share/icons/nuvola/48x48/apps/kiten.png -share/icons/nuvola/48x48/apps/kivio.png -share/icons/nuvola/48x48/apps/kjobviewer.png -share/icons/nuvola/48x48/apps/kjots.png -share/icons/nuvola/48x48/apps/klettres.png -share/icons/nuvola/48x48/apps/klipper.png -share/icons/nuvola/48x48/apps/klpq.png -share/icons/nuvola/48x48/apps/kmag.png -share/icons/nuvola/48x48/apps/kmahjong.png -share/icons/nuvola/48x48/apps/kmail.png -share/icons/nuvola/48x48/apps/kmenu.png -share/icons/nuvola/48x48/apps/kmenuedit.png -share/icons/nuvola/48x48/apps/kmessedwords.png -share/icons/nuvola/48x48/apps/kmid.png -share/icons/nuvola/48x48/apps/kmines.png -share/icons/nuvola/48x48/apps/kmix.png -share/icons/nuvola/48x48/apps/kmoon.png -share/icons/nuvola/48x48/apps/kmousetool.png -share/icons/nuvola/48x48/apps/kmplot.png -share/icons/nuvola/48x48/apps/knewsticker.png -share/icons/nuvola/48x48/apps/knode.png -share/icons/nuvola/48x48/apps/knotes.png -share/icons/nuvola/48x48/apps/knotify.png -share/icons/nuvola/48x48/apps/kolf.png -share/icons/nuvola/48x48/apps/kolourpaint.png -share/icons/nuvola/48x48/apps/konqsidebar_mediaplayer.png -share/icons/nuvola/48x48/apps/konqueror.png -share/icons/nuvola/48x48/apps/konquest.png -share/icons/nuvola/48x48/apps/konsole.png -share/icons/nuvola/48x48/apps/kontact.png -share/icons/nuvola/48x48/apps/kooka.png -share/icons/nuvola/48x48/apps/kopete.png -share/icons/nuvola/48x48/apps/korganizer.png -share/icons/nuvola/48x48/apps/korganizer_todo.png -share/icons/nuvola/48x48/apps/korn.png -share/icons/nuvola/48x48/apps/kpackage.png -share/icons/nuvola/48x48/apps/kpager.png -share/icons/nuvola/48x48/apps/kpaint.png -share/icons/nuvola/48x48/apps/kpdf.png -share/icons/nuvola/48x48/apps/kpercentage.png -share/icons/nuvola/48x48/apps/kpilot.png -share/icons/nuvola/48x48/apps/kpovmodeler.png -share/icons/nuvola/48x48/apps/kppp.png -share/icons/nuvola/48x48/apps/kpresenter.png -share/icons/nuvola/48x48/apps/krdc.png -share/icons/nuvola/48x48/apps/krec.png -share/icons/nuvola/48x48/apps/kreversi.png -share/icons/nuvola/48x48/apps/krfb.png -share/icons/nuvola/48x48/apps/krita.png -share/icons/nuvola/48x48/apps/kruler.png -share/icons/nuvola/48x48/apps/kscd.png -share/icons/nuvola/48x48/apps/kscreensaver.png -share/icons/nuvola/48x48/apps/kservices.png -share/icons/nuvola/48x48/apps/kshisen.png -share/icons/nuvola/48x48/apps/ksig.png -share/icons/nuvola/48x48/apps/ksim.png -share/icons/nuvola/48x48/apps/ksirc.png -share/icons/nuvola/48x48/apps/ksnapshot.png -share/icons/nuvola/48x48/apps/ksplash.png -share/icons/nuvola/48x48/apps/ksysv.png -share/icons/nuvola/48x48/apps/kteatime.png -share/icons/nuvola/48x48/apps/kthememgr.png -share/icons/nuvola/48x48/apps/ktimer.png -share/icons/nuvola/48x48/apps/ktip.png -share/icons/nuvola/48x48/apps/ktouch.png -share/icons/nuvola/48x48/apps/kugar.png -share/icons/nuvola/48x48/apps/kuickshow.png -share/icons/nuvola/48x48/apps/kuser.png -share/icons/nuvola/48x48/apps/kverbos.png -share/icons/nuvola/48x48/apps/kview.png -share/icons/nuvola/48x48/apps/kweather.png -share/icons/nuvola/48x48/apps/kwikdisk.png -share/icons/nuvola/48x48/apps/kwin.png -share/icons/nuvola/48x48/apps/kwin4.png -share/icons/nuvola/48x48/apps/kword.png -share/icons/nuvola/48x48/apps/kworldclock.png -share/icons/nuvola/48x48/apps/kwrite.png -share/icons/nuvola/48x48/apps/kxkb.png -share/icons/nuvola/48x48/apps/laptop_battery.png -share/icons/nuvola/48x48/apps/laptop_pcmcia.png -share/icons/nuvola/48x48/apps/licq.png -share/icons/nuvola/48x48/apps/locale.png -share/icons/nuvola/48x48/apps/looknfeel.png -share/icons/nuvola/48x48/apps/mozilla-firebird.png -share/icons/nuvola/48x48/apps/mozilla-thunderbird.png -share/icons/nuvola/48x48/apps/mozilla.png -share/icons/nuvola/48x48/apps/mplayer.png -share/icons/nuvola/48x48/apps/multimedia.png -share/icons/nuvola/48x48/apps/mycomputer.png -share/icons/nuvola/48x48/apps/netscape.png -share/icons/nuvola/48x48/apps/network.png -share/icons/nuvola/48x48/apps/noatun.png -share/icons/nuvola/48x48/apps/ooo_gulls.png -share/icons/nuvola/48x48/apps/ooo_setup.png -share/icons/nuvola/48x48/apps/opera.png -share/icons/nuvola/48x48/apps/package.png -share/icons/nuvola/48x48/apps/package_applications.png -share/icons/nuvola/48x48/apps/package_development.png -share/icons/nuvola/48x48/apps/package_editors.png -share/icons/nuvola/48x48/apps/package_edutainment.png -share/icons/nuvola/48x48/apps/package_favorite.png -share/icons/nuvola/48x48/apps/package_games.png -share/icons/nuvola/48x48/apps/package_games_arcade.png -share/icons/nuvola/48x48/apps/package_games_board.png -share/icons/nuvola/48x48/apps/package_games_strategy.png -share/icons/nuvola/48x48/apps/package_graphics.png -share/icons/nuvola/48x48/apps/package_multimedia.png -share/icons/nuvola/48x48/apps/package_network.png -share/icons/nuvola/48x48/apps/package_settings.png -share/icons/nuvola/48x48/apps/package_system.png -share/icons/nuvola/48x48/apps/package_toys.png -share/icons/nuvola/48x48/apps/package_utilities.png -share/icons/nuvola/48x48/apps/package_wordprocessing.png -share/icons/nuvola/48x48/apps/password.png -share/icons/nuvola/48x48/apps/personal.png -share/icons/nuvola/48x48/apps/printmgr.png -share/icons/nuvola/48x48/apps/randr.png -share/icons/nuvola/48x48/apps/realplayer.png -share/icons/nuvola/48x48/apps/remote.png -share/icons/nuvola/48x48/apps/samba.png -share/icons/nuvola/48x48/apps/sodipodi.png -share/icons/nuvola/48x48/apps/style.png -share/icons/nuvola/48x48/apps/stylesheet.png -share/icons/nuvola/48x48/apps/terminal.png -share/icons/nuvola/48x48/apps/usb.png -share/icons/nuvola/48x48/apps/window_list.png -share/icons/nuvola/48x48/apps/winprops.png -share/icons/nuvola/48x48/apps/x.png -share/icons/nuvola/48x48/apps/xapp.png -share/icons/nuvola/48x48/apps/xcalc.png -share/icons/nuvola/48x48/apps/xclock.png -share/icons/nuvola/48x48/apps/xconfig.png -share/icons/nuvola/48x48/apps/xemacs.png -share/icons/nuvola/48x48/apps/xfmail.png -share/icons/nuvola/48x48/apps/xmag.png -share/icons/nuvola/48x48/devices/3floppy_mount.png -share/icons/nuvola/48x48/devices/3floppy_unmount.png -share/icons/nuvola/48x48/devices/5floppy_mount.png -share/icons/nuvola/48x48/devices/5floppy_unmount.png -share/icons/nuvola/48x48/devices/blockdevice.png -share/icons/nuvola/48x48/devices/camera.png -share/icons/nuvola/48x48/devices/camera_mount.png -share/icons/nuvola/48x48/devices/camera_unmount.png -share/icons/nuvola/48x48/devices/cdaudio_mount.png -share/icons/nuvola/48x48/devices/cdaudio_unmount.png -share/icons/nuvola/48x48/devices/cdrom_mount.png -share/icons/nuvola/48x48/devices/cdrom_unmount.png -share/icons/nuvola/48x48/devices/cdwriter_mount.png -share/icons/nuvola/48x48/devices/cdwriter_unmount.png -share/icons/nuvola/48x48/devices/dvd_mount.png -share/icons/nuvola/48x48/devices/dvd_unmount.png -share/icons/nuvola/48x48/devices/hdd_mount.png -share/icons/nuvola/48x48/devices/hdd_unmount.png -share/icons/nuvola/48x48/devices/ipod.png -share/icons/nuvola/48x48/devices/joystick.png -share/icons/nuvola/48x48/devices/ksim_cpu.png -share/icons/nuvola/48x48/devices/memory.png -share/icons/nuvola/48x48/devices/mo_mount.png -share/icons/nuvola/48x48/devices/mo_unmount.png -share/icons/nuvola/48x48/devices/modem.png -share/icons/nuvola/48x48/devices/mouse.png -share/icons/nuvola/48x48/devices/nfs_mount.png -share/icons/nuvola/48x48/devices/nfs_unmount.png -share/icons/nuvola/48x48/devices/pda.png -share/icons/nuvola/48x48/devices/pda_black.png -share/icons/nuvola/48x48/devices/pda_blue.png -share/icons/nuvola/48x48/devices/print_class.png -share/icons/nuvola/48x48/devices/print_printer.png -share/icons/nuvola/48x48/devices/printer.png -share/icons/nuvola/48x48/devices/printer1.png -share/icons/nuvola/48x48/devices/raid.png -share/icons/nuvola/48x48/devices/samba_mount.png -share/icons/nuvola/48x48/devices/samba_unmount.png -share/icons/nuvola/48x48/devices/scanner.png -share/icons/nuvola/48x48/devices/tablet.png -share/icons/nuvola/48x48/devices/tv.png -share/icons/nuvola/48x48/devices/usbpendrive_mount.png -share/icons/nuvola/48x48/devices/usbpendrive_unmount.png -share/icons/nuvola/48x48/devices/zip_mount.png -share/icons/nuvola/48x48/devices/zip_unmount.png -share/icons/nuvola/48x48/mimetypes/abiword_abi.png -share/icons/nuvola/48x48/mimetypes/applix.png -share/icons/nuvola/48x48/mimetypes/ascii.png -share/icons/nuvola/48x48/mimetypes/bc.png -share/icons/nuvola/48x48/mimetypes/binary.png -share/icons/nuvola/48x48/mimetypes/cdbo_list.png -share/icons/nuvola/48x48/mimetypes/cdimage.png -share/icons/nuvola/48x48/mimetypes/cdr.png -share/icons/nuvola/48x48/mimetypes/cdtrack.png -share/icons/nuvola/48x48/mimetypes/colorscm.png -share/icons/nuvola/48x48/mimetypes/colorset.png -share/icons/nuvola/48x48/mimetypes/core.png -share/icons/nuvola/48x48/mimetypes/deb.png -share/icons/nuvola/48x48/mimetypes/document.png -share/icons/nuvola/48x48/mimetypes/dvi.png -share/icons/nuvola/48x48/mimetypes/ebuild.png -share/icons/nuvola/48x48/mimetypes/empty.png -share/icons/nuvola/48x48/mimetypes/encrypted.png -share/icons/nuvola/48x48/mimetypes/exec_wine.png -share/icons/nuvola/48x48/mimetypes/file_locked-[Converted].png -share/icons/nuvola/48x48/mimetypes/file_locked.png -share/icons/nuvola/48x48/mimetypes/file_temporary.png -share/icons/nuvola/48x48/mimetypes/font.png -share/icons/nuvola/48x48/mimetypes/font_bitmap.png -share/icons/nuvola/48x48/mimetypes/font_truetype.png -share/icons/nuvola/48x48/mimetypes/font_type1.png -share/icons/nuvola/48x48/mimetypes/gettext.png -share/icons/nuvola/48x48/mimetypes/gf.png -share/icons/nuvola/48x48/mimetypes/gnome_app_info.png -share/icons/nuvola/48x48/mimetypes/html.png -share/icons/nuvola/48x48/mimetypes/image.png -share/icons/nuvola/48x48/mimetypes/image_gimp.png -share/icons/nuvola/48x48/mimetypes/info.png -share/icons/nuvola/48x48/mimetypes/install.png -share/icons/nuvola/48x48/mimetypes/java_jar.png -share/icons/nuvola/48x48/mimetypes/karbon_karbon.png -share/icons/nuvola/48x48/mimetypes/kchart_chrt.png -share/icons/nuvola/48x48/mimetypes/kformula_kfo.png -share/icons/nuvola/48x48/mimetypes/kget_list.png -share/icons/nuvola/48x48/mimetypes/kig_doc.png -share/icons/nuvola/48x48/mimetypes/kivio_flw.png -share/icons/nuvola/48x48/mimetypes/kmultiple.png -share/icons/nuvola/48x48/mimetypes/koffice.png -share/icons/nuvola/48x48/mimetypes/kpovmodeler_doc.png -share/icons/nuvola/48x48/mimetypes/kpresenter_kpr.png -share/icons/nuvola/48x48/mimetypes/krec_fileempty.png -share/icons/nuvola/48x48/mimetypes/krec_fileplay.png -share/icons/nuvola/48x48/mimetypes/krec_filerec.png -share/icons/nuvola/48x48/mimetypes/krita_kra.png -share/icons/nuvola/48x48/mimetypes/kspread_ksp.png -share/icons/nuvola/48x48/mimetypes/kugar_kud.png -share/icons/nuvola/48x48/mimetypes/kugardata.png -share/icons/nuvola/48x48/mimetypes/kword_kwd.png -share/icons/nuvola/48x48/mimetypes/log.png -share/icons/nuvola/48x48/mimetypes/make.png -share/icons/nuvola/48x48/mimetypes/man.png -share/icons/nuvola/48x48/mimetypes/message.png -share/icons/nuvola/48x48/mimetypes/metafont.png -share/icons/nuvola/48x48/mimetypes/midi.png -share/icons/nuvola/48x48/mimetypes/mime.png -share/icons/nuvola/48x48/mimetypes/mime_ebuild.png -share/icons/nuvola/48x48/mimetypes/mime_empty.png -share/icons/nuvola/48x48/mimetypes/mime_koffice.png -share/icons/nuvola/48x48/mimetypes/mime_lyx.png -share/icons/nuvola/48x48/mimetypes/mime_temp.png -share/icons/nuvola/48x48/mimetypes/misc_doc.png -share/icons/nuvola/48x48/mimetypes/mozilla_doc.png -share/icons/nuvola/48x48/mimetypes/netscape_doc.png -share/icons/nuvola/48x48/mimetypes/ooo_calc.png -share/icons/nuvola/48x48/mimetypes/ooo_calc_tpl.png -share/icons/nuvola/48x48/mimetypes/ooo_draw.png -share/icons/nuvola/48x48/mimetypes/ooo_draw_tpl.png -share/icons/nuvola/48x48/mimetypes/ooo_impress.png -share/icons/nuvola/48x48/mimetypes/ooo_impress_tpl.png -share/icons/nuvola/48x48/mimetypes/ooo_setup.png -share/icons/nuvola/48x48/mimetypes/ooo_writer.png -share/icons/nuvola/48x48/mimetypes/ooo_writer_tpl.png -share/icons/nuvola/48x48/mimetypes/patch.png -share/icons/nuvola/48x48/mimetypes/pdf.png -share/icons/nuvola/48x48/mimetypes/postscript.png -share/icons/nuvola/48x48/mimetypes/quicktime.png -share/icons/nuvola/48x48/mimetypes/readme.png -share/icons/nuvola/48x48/mimetypes/real.png -share/icons/nuvola/48x48/mimetypes/real_doc.png -share/icons/nuvola/48x48/mimetypes/recycled.png -share/icons/nuvola/48x48/mimetypes/resource.png -share/icons/nuvola/48x48/mimetypes/rpm.png -share/icons/nuvola/48x48/mimetypes/shellscript.png -share/icons/nuvola/48x48/mimetypes/soffice.png -share/icons/nuvola/48x48/mimetypes/sound.png -share/icons/nuvola/48x48/mimetypes/source.png -share/icons/nuvola/48x48/mimetypes/source_c.png -share/icons/nuvola/48x48/mimetypes/source_cpp.png -share/icons/nuvola/48x48/mimetypes/source_css.png -share/icons/nuvola/48x48/mimetypes/source_f.png -share/icons/nuvola/48x48/mimetypes/source_h.png -share/icons/nuvola/48x48/mimetypes/source_j.png -share/icons/nuvola/48x48/mimetypes/source_java.png -share/icons/nuvola/48x48/mimetypes/source_l.png -share/icons/nuvola/48x48/mimetypes/source_moc.png -share/icons/nuvola/48x48/mimetypes/source_o.png -share/icons/nuvola/48x48/mimetypes/source_p.png -share/icons/nuvola/48x48/mimetypes/source_php.png -share/icons/nuvola/48x48/mimetypes/source_pl.png -share/icons/nuvola/48x48/mimetypes/source_py.png -share/icons/nuvola/48x48/mimetypes/source_s.png -share/icons/nuvola/48x48/mimetypes/source_y.png -share/icons/nuvola/48x48/mimetypes/spreadsheet.png -share/icons/nuvola/48x48/mimetypes/tar.png -share/icons/nuvola/48x48/mimetypes/template_source.png -share/icons/nuvola/48x48/mimetypes/tex.png -share/icons/nuvola/48x48/mimetypes/tgz.png -share/icons/nuvola/48x48/mimetypes/txt.png -share/icons/nuvola/48x48/mimetypes/unknown.png -share/icons/nuvola/48x48/mimetypes/vcalendar.png -share/icons/nuvola/48x48/mimetypes/vcard.png -share/icons/nuvola/48x48/mimetypes/vectorgfx.png -share/icons/nuvola/48x48/mimetypes/video.png -share/icons/nuvola/48x48/mimetypes/widget_doc.png -share/icons/nuvola/48x48/mimetypes/wordprocessing.png -share/icons/nuvola/64x64/apps/access.png -share/icons/nuvola/64x64/apps/acroread.png -share/icons/nuvola/64x64/apps/agent.png -share/icons/nuvola/64x64/apps/aktion.png -share/icons/nuvola/64x64/apps/amarok.png -share/icons/nuvola/64x64/apps/amor.png -share/icons/nuvola/64x64/apps/applixware.png -share/icons/nuvola/64x64/apps/ark.png -share/icons/nuvola/64x64/apps/arts.png -share/icons/nuvola/64x64/apps/artsbuilder.png -share/icons/nuvola/64x64/apps/artscontrol.png -share/icons/nuvola/64x64/apps/artsmidimanager.png -share/icons/nuvola/64x64/apps/atlantik.png -share/icons/nuvola/64x64/apps/background.png -share/icons/nuvola/64x64/apps/bell.png -share/icons/nuvola/64x64/apps/bookcase.png -share/icons/nuvola/64x64/apps/browser.png -share/icons/nuvola/64x64/apps/bug.png -share/icons/nuvola/64x64/apps/cache.png -share/icons/nuvola/64x64/apps/chat.png -share/icons/nuvola/64x64/apps/clanbomber.png -share/icons/nuvola/64x64/apps/clock.png -share/icons/nuvola/64x64/apps/colors.png -share/icons/nuvola/64x64/apps/cookie.png -share/icons/nuvola/64x64/apps/core.png -share/icons/nuvola/64x64/apps/date.png -share/icons/nuvola/64x64/apps/designer.png -share/icons/nuvola/64x64/apps/digikam.png -share/icons/nuvola/64x64/apps/display.png -share/icons/nuvola/64x64/apps/download_manager.png -share/icons/nuvola/64x64/apps/edu_languages.png -share/icons/nuvola/64x64/apps/edu_mathematics.png -share/icons/nuvola/64x64/apps/edu_miscellaneous.png -share/icons/nuvola/64x64/apps/edu_science.png -share/icons/nuvola/64x64/apps/emacs.png -share/icons/nuvola/64x64/apps/email.png -share/icons/nuvola/64x64/apps/energy.png -share/icons/nuvola/64x64/apps/enhanced_browsing.png -share/icons/nuvola/64x64/apps/error.png -share/icons/nuvola/64x64/apps/evolution.png -share/icons/nuvola/64x64/apps/file-manager.png -share/icons/nuvola/64x64/apps/filetypes.png -share/icons/nuvola/64x64/apps/flashkard.png -share/icons/nuvola/64x64/apps/fonts.png -share/icons/nuvola/64x64/apps/fsview.png -share/icons/nuvola/64x64/apps/gaim.png -share/icons/nuvola/64x64/apps/galeon.png -share/icons/nuvola/64x64/apps/gimp.png -share/icons/nuvola/64x64/apps/gimp2.png -share/icons/nuvola/64x64/apps/gnome_apps.png -share/icons/nuvola/64x64/apps/gnome_apps2.png -share/icons/nuvola/64x64/apps/go.png -share/icons/nuvola/64x64/apps/help_index.png -share/icons/nuvola/64x64/apps/hwinfo.png -share/icons/nuvola/64x64/apps/icons.png -share/icons/nuvola/64x64/apps/iconthemes.png -share/icons/nuvola/64x64/apps/important.png -share/icons/nuvola/64x64/apps/indeximg.png -share/icons/nuvola/64x64/apps/input_devices_settings.png -share/icons/nuvola/64x64/apps/irkick.png -share/icons/nuvola/64x64/apps/juk.png -share/icons/nuvola/64x64/apps/kaboodle.png -share/icons/nuvola/64x64/apps/kaddressbook.png -share/icons/nuvola/64x64/apps/kalarm.png -share/icons/nuvola/64x64/apps/kalzium.png -share/icons/nuvola/64x64/apps/kappfinder.png -share/icons/nuvola/64x64/apps/karm.png -share/icons/nuvola/64x64/apps/kasteroids.png -share/icons/nuvola/64x64/apps/kate.png -share/icons/nuvola/64x64/apps/katomic.png -share/icons/nuvola/64x64/apps/kaudiocreator.png -share/icons/nuvola/64x64/apps/kbackgammon.png -share/icons/nuvola/64x64/apps/kbackgammon_engine.png -share/icons/nuvola/64x64/apps/kblackbox.png -share/icons/nuvola/64x64/apps/kbounce.png -share/icons/nuvola/64x64/apps/kbrunch.png -share/icons/nuvola/64x64/apps/kcalc.png -share/icons/nuvola/64x64/apps/kcharselect.png -share/icons/nuvola/64x64/apps/kchart.png -share/icons/nuvola/64x64/apps/kcmdevice.png -share/icons/nuvola/64x64/apps/kcmdevices.png -share/icons/nuvola/64x64/apps/kcmdf.png -share/icons/nuvola/64x64/apps/kcmdrkonqi.png -share/icons/nuvola/64x64/apps/kcmfontinst.png -share/icons/nuvola/64x64/apps/kcmkwm.png -share/icons/nuvola/64x64/apps/kcmmemory.png -share/icons/nuvola/64x64/apps/kcmmidi.png -share/icons/nuvola/64x64/apps/kcmpartitions.png -share/icons/nuvola/64x64/apps/kcmpci.png -share/icons/nuvola/64x64/apps/kcmprocessor.png -share/icons/nuvola/64x64/apps/kcmscsi.png -share/icons/nuvola/64x64/apps/kcmsystem.png -share/icons/nuvola/64x64/apps/kcmx.png -share/icons/nuvola/64x64/apps/kcolorchooser.png -share/icons/nuvola/64x64/apps/kcoloredit.png -share/icons/nuvola/64x64/apps/kcontrol.png -share/icons/nuvola/64x64/apps/kdat.png -share/icons/nuvola/64x64/apps/kdf.png -share/icons/nuvola/64x64/apps/kdict.png -share/icons/nuvola/64x64/apps/kdisknav.png -share/icons/nuvola/64x64/apps/kdmconfig.png -share/icons/nuvola/64x64/apps/kedit.png -share/icons/nuvola/64x64/apps/keditbookmarks.png -share/icons/nuvola/64x64/apps/keybindings.png -share/icons/nuvola/64x64/apps/keyboard.png -share/icons/nuvola/64x64/apps/keyboard_layout.png -share/icons/nuvola/64x64/apps/kfig.png -share/icons/nuvola/64x64/apps/kfind.png -share/icons/nuvola/64x64/apps/kfloppy.png -share/icons/nuvola/64x64/apps/kfm.png -share/icons/nuvola/64x64/apps/kfm_home.png -share/icons/nuvola/64x64/apps/kget.png -share/icons/nuvola/64x64/apps/kghostview.png -share/icons/nuvola/64x64/apps/kgpg.png -share/icons/nuvola/64x64/apps/khangman.png -share/icons/nuvola/64x64/apps/khelpcenter.png -share/icons/nuvola/64x64/apps/khexedit.png -share/icons/nuvola/64x64/apps/khotkeys.png -share/icons/nuvola/64x64/apps/kig.png -share/icons/nuvola/64x64/apps/kiten.png -share/icons/nuvola/64x64/apps/kivio.png -share/icons/nuvola/64x64/apps/kjobviewer.png -share/icons/nuvola/64x64/apps/kjots.png -share/icons/nuvola/64x64/apps/klettres.png -share/icons/nuvola/64x64/apps/klipper.png -share/icons/nuvola/64x64/apps/klpq.png -share/icons/nuvola/64x64/apps/kmag.png -share/icons/nuvola/64x64/apps/kmahjong.png -share/icons/nuvola/64x64/apps/kmail.png -share/icons/nuvola/64x64/apps/kmenu.png -share/icons/nuvola/64x64/apps/kmenuedit.png -share/icons/nuvola/64x64/apps/kmessedwords.png -share/icons/nuvola/64x64/apps/kmid.png -share/icons/nuvola/64x64/apps/kmines.png -share/icons/nuvola/64x64/apps/kmix.png -share/icons/nuvola/64x64/apps/kmoon.png -share/icons/nuvola/64x64/apps/kmousetool.png -share/icons/nuvola/64x64/apps/kmplot.png -share/icons/nuvola/64x64/apps/knewsletter.png -share/icons/nuvola/64x64/apps/knewsticker.png -share/icons/nuvola/64x64/apps/knode.png -share/icons/nuvola/64x64/apps/knotes.png -share/icons/nuvola/64x64/apps/knotify.png -share/icons/nuvola/64x64/apps/kolf.png -share/icons/nuvola/64x64/apps/kolourpaint.png -share/icons/nuvola/64x64/apps/konqsidebar_mediaplayer.png -share/icons/nuvola/64x64/apps/konqueror.png -share/icons/nuvola/64x64/apps/konquest.png -share/icons/nuvola/64x64/apps/konsole.png -share/icons/nuvola/64x64/apps/kontact.png -share/icons/nuvola/64x64/apps/kooka.png -share/icons/nuvola/64x64/apps/kopete.png -share/icons/nuvola/64x64/apps/korganizer.png -share/icons/nuvola/64x64/apps/korganizer_todo.png -share/icons/nuvola/64x64/apps/korn.png -share/icons/nuvola/64x64/apps/kpackage.png -share/icons/nuvola/64x64/apps/kpager.png -share/icons/nuvola/64x64/apps/kpaint.png -share/icons/nuvola/64x64/apps/kpdf.png -share/icons/nuvola/64x64/apps/kpercentage.png -share/icons/nuvola/64x64/apps/kpilot.png -share/icons/nuvola/64x64/apps/kpovmodeler.png -share/icons/nuvola/64x64/apps/kppp.png -share/icons/nuvola/64x64/apps/kpresenter.png -share/icons/nuvola/64x64/apps/krdc.png -share/icons/nuvola/64x64/apps/krec.png -share/icons/nuvola/64x64/apps/kreversi.png -share/icons/nuvola/64x64/apps/krfb.png -share/icons/nuvola/64x64/apps/krita.png -share/icons/nuvola/64x64/apps/kruler.png -share/icons/nuvola/64x64/apps/kscd.png -share/icons/nuvola/64x64/apps/kscreensaver.png -share/icons/nuvola/64x64/apps/kservices.png -share/icons/nuvola/64x64/apps/kshisen.png -share/icons/nuvola/64x64/apps/ksig.png -share/icons/nuvola/64x64/apps/ksim.png -share/icons/nuvola/64x64/apps/ksirc.png -share/icons/nuvola/64x64/apps/ksnapshot.png -share/icons/nuvola/64x64/apps/ksplash.png -share/icons/nuvola/64x64/apps/ksysv.png -share/icons/nuvola/64x64/apps/kteatime.png -share/icons/nuvola/64x64/apps/kthememgr.png -share/icons/nuvola/64x64/apps/ktimer.png -share/icons/nuvola/64x64/apps/ktip.png -share/icons/nuvola/64x64/apps/ktouch.png -share/icons/nuvola/64x64/apps/kugar.png -share/icons/nuvola/64x64/apps/kuickshow.png -share/icons/nuvola/64x64/apps/kuser.png -share/icons/nuvola/64x64/apps/kverbos.png -share/icons/nuvola/64x64/apps/kview.png -share/icons/nuvola/64x64/apps/kweather.png -share/icons/nuvola/64x64/apps/kwikdisk.png -share/icons/nuvola/64x64/apps/kwin.png -share/icons/nuvola/64x64/apps/kwin4.png -share/icons/nuvola/64x64/apps/kword.png -share/icons/nuvola/64x64/apps/kworldclock.png -share/icons/nuvola/64x64/apps/kwrite.png -share/icons/nuvola/64x64/apps/kxkb.png -share/icons/nuvola/64x64/apps/laptop_battery.png -share/icons/nuvola/64x64/apps/laptop_pcmcia.png -share/icons/nuvola/64x64/apps/licq.png -share/icons/nuvola/64x64/apps/locale.png -share/icons/nuvola/64x64/apps/looknfeel.png -share/icons/nuvola/64x64/apps/mozilla-firebird.png -share/icons/nuvola/64x64/apps/mozilla-thunderbird.png -share/icons/nuvola/64x64/apps/mozilla.png -share/icons/nuvola/64x64/apps/mplayer.png -share/icons/nuvola/64x64/apps/multimedia.png -share/icons/nuvola/64x64/apps/mycomputer.png -share/icons/nuvola/64x64/apps/netscape.png -share/icons/nuvola/64x64/apps/network.png -share/icons/nuvola/64x64/apps/noatun.png -share/icons/nuvola/64x64/apps/ooo_gulls.png -share/icons/nuvola/64x64/apps/ooo_setup.png -share/icons/nuvola/64x64/apps/opera.png -share/icons/nuvola/64x64/apps/package.png -share/icons/nuvola/64x64/apps/package_applications.png -share/icons/nuvola/64x64/apps/package_development.png -share/icons/nuvola/64x64/apps/package_editors.png -share/icons/nuvola/64x64/apps/package_edutainment.png -share/icons/nuvola/64x64/apps/package_favorite.png -share/icons/nuvola/64x64/apps/package_games.png -share/icons/nuvola/64x64/apps/package_games_arcade.png -share/icons/nuvola/64x64/apps/package_games_board.png -share/icons/nuvola/64x64/apps/package_games_strategy.png -share/icons/nuvola/64x64/apps/package_graphics.png -share/icons/nuvola/64x64/apps/package_multimedia.png -share/icons/nuvola/64x64/apps/package_network.png -share/icons/nuvola/64x64/apps/package_settings.png -share/icons/nuvola/64x64/apps/package_system.png -share/icons/nuvola/64x64/apps/package_toys.png -share/icons/nuvola/64x64/apps/package_utilities.png -share/icons/nuvola/64x64/apps/package_wordprocessing.png -share/icons/nuvola/64x64/apps/password.png -share/icons/nuvola/64x64/apps/personal.png -share/icons/nuvola/64x64/apps/printmgr.png -share/icons/nuvola/64x64/apps/randr.png -share/icons/nuvola/64x64/apps/realplayer.png -share/icons/nuvola/64x64/apps/remote.png -share/icons/nuvola/64x64/apps/samba.png -share/icons/nuvola/64x64/apps/sodipodi.png -share/icons/nuvola/64x64/apps/style.png -share/icons/nuvola/64x64/apps/stylesheet.png -share/icons/nuvola/64x64/apps/terminal.png -share/icons/nuvola/64x64/apps/usb.png -share/icons/nuvola/64x64/apps/window_list.png -share/icons/nuvola/64x64/apps/winprops.png -share/icons/nuvola/64x64/apps/x.png -share/icons/nuvola/64x64/apps/xapp.png -share/icons/nuvola/64x64/apps/xcalc.png -share/icons/nuvola/64x64/apps/xclock.png -share/icons/nuvola/64x64/apps/xconfig.png -share/icons/nuvola/64x64/apps/xemacs.png -share/icons/nuvola/64x64/apps/xfmail.png -share/icons/nuvola/64x64/apps/xmag.png -share/icons/nuvola/64x64/devices/3floppy_mount.png -share/icons/nuvola/64x64/devices/3floppy_unmount.png -share/icons/nuvola/64x64/devices/5floppy_mount.png -share/icons/nuvola/64x64/devices/5floppy_unmount.png -share/icons/nuvola/64x64/devices/blockdevice.png -share/icons/nuvola/64x64/devices/camera.png -share/icons/nuvola/64x64/devices/camera_mount.png -share/icons/nuvola/64x64/devices/camera_unmount.png -share/icons/nuvola/64x64/devices/cdaudio_mount.png -share/icons/nuvola/64x64/devices/cdaudio_unmount.png -share/icons/nuvola/64x64/devices/cdrom_mount.png -share/icons/nuvola/64x64/devices/cdrom_unmount.png -share/icons/nuvola/64x64/devices/cdwriter_mount.png -share/icons/nuvola/64x64/devices/cdwriter_unmount.png -share/icons/nuvola/64x64/devices/dvd_mount.png -share/icons/nuvola/64x64/devices/dvd_unmount.png -share/icons/nuvola/64x64/devices/hdd_mount.png -share/icons/nuvola/64x64/devices/hdd_unmount.png -share/icons/nuvola/64x64/devices/ipod.png -share/icons/nuvola/64x64/devices/joystick.png -share/icons/nuvola/64x64/devices/ksim_cpu.png -share/icons/nuvola/64x64/devices/memory.png -share/icons/nuvola/64x64/devices/mo_mount.png -share/icons/nuvola/64x64/devices/mo_unmount.png -share/icons/nuvola/64x64/devices/modem.png -share/icons/nuvola/64x64/devices/mouse.png -share/icons/nuvola/64x64/devices/nfs_mount.png -share/icons/nuvola/64x64/devices/nfs_unmount.png -share/icons/nuvola/64x64/devices/pda.png -share/icons/nuvola/64x64/devices/pda_black.png -share/icons/nuvola/64x64/devices/pda_blue.png -share/icons/nuvola/64x64/devices/print_class.png -share/icons/nuvola/64x64/devices/print_printer.png -share/icons/nuvola/64x64/devices/printer.png -share/icons/nuvola/64x64/devices/printer1.png -share/icons/nuvola/64x64/devices/raid.png -share/icons/nuvola/64x64/devices/samba_mount.png -share/icons/nuvola/64x64/devices/samba_unmount.png -share/icons/nuvola/64x64/devices/scanner.png -share/icons/nuvola/64x64/devices/tablet.png -share/icons/nuvola/64x64/devices/tv.png -share/icons/nuvola/64x64/devices/usbpendrive_mount.png -share/icons/nuvola/64x64/devices/usbpendrive_unmount.png -share/icons/nuvola/64x64/devices/zip_mount.png -share/icons/nuvola/64x64/devices/zip_unmount.png -share/icons/nuvola/64x64/mimetypes/abiword_abi.png -share/icons/nuvola/64x64/mimetypes/applix.png -share/icons/nuvola/64x64/mimetypes/ascii.png -share/icons/nuvola/64x64/mimetypes/bc.png -share/icons/nuvola/64x64/mimetypes/binary.png -share/icons/nuvola/64x64/mimetypes/cdbo_list.png -share/icons/nuvola/64x64/mimetypes/cdimage.png -share/icons/nuvola/64x64/mimetypes/cdr.png -share/icons/nuvola/64x64/mimetypes/cdtrack.png -share/icons/nuvola/64x64/mimetypes/colorscm.png -share/icons/nuvola/64x64/mimetypes/colorset.png -share/icons/nuvola/64x64/mimetypes/core.png -share/icons/nuvola/64x64/mimetypes/deb.png -share/icons/nuvola/64x64/mimetypes/document.png -share/icons/nuvola/64x64/mimetypes/dvi.png -share/icons/nuvola/64x64/mimetypes/ebuild.png -share/icons/nuvola/64x64/mimetypes/empty.png -share/icons/nuvola/64x64/mimetypes/encrypted.png -share/icons/nuvola/64x64/mimetypes/exec_wine.png -share/icons/nuvola/64x64/mimetypes/file_locked-[Converted].png -share/icons/nuvola/64x64/mimetypes/file_locked.png -share/icons/nuvola/64x64/mimetypes/file_temporary.png -share/icons/nuvola/64x64/mimetypes/font.png -share/icons/nuvola/64x64/mimetypes/font_bitmap.png -share/icons/nuvola/64x64/mimetypes/font_truetype.png -share/icons/nuvola/64x64/mimetypes/font_type1.png -share/icons/nuvola/64x64/mimetypes/gettext.png -share/icons/nuvola/64x64/mimetypes/gf.png -share/icons/nuvola/64x64/mimetypes/gnome_app_info.png -share/icons/nuvola/64x64/mimetypes/html.png -share/icons/nuvola/64x64/mimetypes/image.png -share/icons/nuvola/64x64/mimetypes/image_gimp.png -share/icons/nuvola/64x64/mimetypes/info.png -share/icons/nuvola/64x64/mimetypes/install.png -share/icons/nuvola/64x64/mimetypes/java_jar.png -share/icons/nuvola/64x64/mimetypes/karbon_karbon.png -share/icons/nuvola/64x64/mimetypes/kchart_chrt.png -share/icons/nuvola/64x64/mimetypes/kformula_kfo.png -share/icons/nuvola/64x64/mimetypes/kget_list.png -share/icons/nuvola/64x64/mimetypes/kig_doc.png -share/icons/nuvola/64x64/mimetypes/kivio_flw.png -share/icons/nuvola/64x64/mimetypes/kmultiple.png -share/icons/nuvola/64x64/mimetypes/koffice.png -share/icons/nuvola/64x64/mimetypes/kpovmodeler_doc.png -share/icons/nuvola/64x64/mimetypes/kpresenter_kpr.png -share/icons/nuvola/64x64/mimetypes/krec_fileempty.png -share/icons/nuvola/64x64/mimetypes/krec_fileplay.png -share/icons/nuvola/64x64/mimetypes/krec_filerec.png -share/icons/nuvola/64x64/mimetypes/krita_kra.png -share/icons/nuvola/64x64/mimetypes/kspread_ksp.png -share/icons/nuvola/64x64/mimetypes/kugar_kud.png -share/icons/nuvola/64x64/mimetypes/kugardata.png -share/icons/nuvola/64x64/mimetypes/kword_kwd.png -share/icons/nuvola/64x64/mimetypes/log.png -share/icons/nuvola/64x64/mimetypes/make.png -share/icons/nuvola/64x64/mimetypes/man.png -share/icons/nuvola/64x64/mimetypes/message.png -share/icons/nuvola/64x64/mimetypes/metafont.png -share/icons/nuvola/64x64/mimetypes/midi.png -share/icons/nuvola/64x64/mimetypes/mime.png -share/icons/nuvola/64x64/mimetypes/mime_ebuild.png -share/icons/nuvola/64x64/mimetypes/mime_empty.png -share/icons/nuvola/64x64/mimetypes/mime_koffice.png -share/icons/nuvola/64x64/mimetypes/mime_lyx.png -share/icons/nuvola/64x64/mimetypes/mime_temp.png -share/icons/nuvola/64x64/mimetypes/misc_doc.png -share/icons/nuvola/64x64/mimetypes/mozilla_doc.png -share/icons/nuvola/64x64/mimetypes/netscape_doc.png -share/icons/nuvola/64x64/mimetypes/ooo_calc.png -share/icons/nuvola/64x64/mimetypes/ooo_calc_tpl.png -share/icons/nuvola/64x64/mimetypes/ooo_draw.png -share/icons/nuvola/64x64/mimetypes/ooo_draw_tpl.png -share/icons/nuvola/64x64/mimetypes/ooo_impress.png -share/icons/nuvola/64x64/mimetypes/ooo_impress_tpl.png -share/icons/nuvola/64x64/mimetypes/ooo_setup.png -share/icons/nuvola/64x64/mimetypes/ooo_writer.png -share/icons/nuvola/64x64/mimetypes/ooo_writer_tpl.png -share/icons/nuvola/64x64/mimetypes/patch.png -share/icons/nuvola/64x64/mimetypes/pdf.png -share/icons/nuvola/64x64/mimetypes/postscript.png -share/icons/nuvola/64x64/mimetypes/quicktime.png -share/icons/nuvola/64x64/mimetypes/readme.png -share/icons/nuvola/64x64/mimetypes/real.png -share/icons/nuvola/64x64/mimetypes/real_doc.png -share/icons/nuvola/64x64/mimetypes/recycled.png -share/icons/nuvola/64x64/mimetypes/resource.png -share/icons/nuvola/64x64/mimetypes/rpm.png -share/icons/nuvola/64x64/mimetypes/shellscript.png -share/icons/nuvola/64x64/mimetypes/soffice.png -share/icons/nuvola/64x64/mimetypes/sound.png -share/icons/nuvola/64x64/mimetypes/source.png -share/icons/nuvola/64x64/mimetypes/source_c.png -share/icons/nuvola/64x64/mimetypes/source_cpp.png -share/icons/nuvola/64x64/mimetypes/source_css.png -share/icons/nuvola/64x64/mimetypes/source_f.png -share/icons/nuvola/64x64/mimetypes/source_h.png -share/icons/nuvola/64x64/mimetypes/source_j.png -share/icons/nuvola/64x64/mimetypes/source_java.png -share/icons/nuvola/64x64/mimetypes/source_l.png -share/icons/nuvola/64x64/mimetypes/source_moc.png -share/icons/nuvola/64x64/mimetypes/source_o.png -share/icons/nuvola/64x64/mimetypes/source_p.png -share/icons/nuvola/64x64/mimetypes/source_php.png -share/icons/nuvola/64x64/mimetypes/source_pl.png -share/icons/nuvola/64x64/mimetypes/source_py.png -share/icons/nuvola/64x64/mimetypes/source_s.png -share/icons/nuvola/64x64/mimetypes/source_y.png -share/icons/nuvola/64x64/mimetypes/spreadsheet.png -share/icons/nuvola/64x64/mimetypes/tar.png -share/icons/nuvola/64x64/mimetypes/template_source.png -share/icons/nuvola/64x64/mimetypes/tex.png -share/icons/nuvola/64x64/mimetypes/tgz.png -share/icons/nuvola/64x64/mimetypes/txt.png -share/icons/nuvola/64x64/mimetypes/unknown.png -share/icons/nuvola/64x64/mimetypes/vcalendar.png -share/icons/nuvola/64x64/mimetypes/vcard.png -share/icons/nuvola/64x64/mimetypes/vectorgfx.png -share/icons/nuvola/64x64/mimetypes/video.png -share/icons/nuvola/64x64/mimetypes/widget_doc.png -share/icons/nuvola/64x64/mimetypes/wordprocessing.png -share/icons/nuvola/index.theme -share/icons/slick/16x16/actions/1downarrow.png -share/icons/slick/16x16/actions/1leftarrow.png -share/icons/slick/16x16/actions/1rightarrow.png -share/icons/slick/16x16/actions/1uparrow.png -share/icons/slick/16x16/actions/2downarrow.png -share/icons/slick/16x16/actions/2leftarrow.png -share/icons/slick/16x16/actions/2rightarrow.png -share/icons/slick/16x16/actions/2uparrow.png -share/icons/slick/16x16/actions/about_kde.png -share/icons/slick/16x16/actions/airbrush.png -share/icons/slick/16x16/actions/application-exit.png -share/icons/slick/16x16/actions/arrow_bottomleft.png -share/icons/slick/16x16/actions/arrow_bottomright.png -share/icons/slick/16x16/actions/arrow_topleft.png -share/icons/slick/16x16/actions/arrow_topright.png -share/icons/slick/16x16/actions/attach.png -share/icons/slick/16x16/actions/backimage.png -share/icons/slick/16x16/actions/blank.png -share/icons/slick/16x16/actions/blend.png -share/icons/slick/16x16/actions/bookmark-new.png -share/icons/slick/16x16/actions/bookmark.png -share/icons/slick/16x16/actions/bookmark_folder.png -share/icons/slick/16x16/actions/bookmark_toolbar.png -share/icons/slick/16x16/actions/bookmarks_list_add.png -share/icons/slick/16x16/actions/camera_test.png -share/icons/slick/16x16/actions/cancel.png -share/icons/slick/16x16/actions/cd.png -share/icons/slick/16x16/actions/cdburn.png -share/icons/slick/16x16/actions/cdcopy.png -share/icons/slick/16x16/actions/cdrwblank.png -share/icons/slick/16x16/actions/charset.png -share/icons/slick/16x16/actions/clear_left.png -share/icons/slick/16x16/actions/colorize.png -share/icons/slick/16x16/actions/completion.png -share/icons/slick/16x16/actions/compress.png -share/icons/slick/16x16/actions/configure.png -share/icons/slick/16x16/actions/configure_shortcuts.png -share/icons/slick/16x16/actions/configure_toolbars.png -share/icons/slick/16x16/actions/connect_creating.png -share/icons/slick/16x16/actions/connect_established.png -share/icons/slick/16x16/actions/connect_no.png -share/icons/slick/16x16/actions/contact-new.png -share/icons/slick/16x16/actions/contents.png -share/icons/slick/16x16/actions/contents2.png -share/icons/slick/16x16/actions/contexthelp.png -share/icons/slick/16x16/actions/decrypted.png -share/icons/slick/16x16/actions/define_clip.png -share/icons/slick/16x16/actions/dialog-close.png -share/icons/slick/16x16/actions/dialog-ok.png -share/icons/slick/16x16/actions/document-new.png -share/icons/slick/16x16/actions/document-open.png -share/icons/slick/16x16/actions/document-print-preview.png -share/icons/slick/16x16/actions/document-print.png -share/icons/slick/16x16/actions/document-revert.png -share/icons/slick/16x16/actions/document-save-as.png -share/icons/slick/16x16/actions/document-save.png -share/icons/slick/16x16/actions/domtreeviewer.png -share/icons/slick/16x16/actions/edit-clear.png -share/icons/slick/16x16/actions/edit-copy.png -share/icons/slick/16x16/actions/edit-cut.png -share/icons/slick/16x16/actions/edit-delete.png -share/icons/slick/16x16/actions/edit-find.png -share/icons/slick/16x16/actions/edit-paste.png -share/icons/slick/16x16/actions/edit-redo.png -share/icons/slick/16x16/actions/edit-undo.png -share/icons/slick/16x16/actions/edit.png -share/icons/slick/16x16/actions/editshred.png -share/icons/slick/16x16/actions/edittrash.png -share/icons/slick/16x16/actions/emptytrash.png -share/icons/slick/16x16/actions/encrypted.png -share/icons/slick/16x16/actions/enhanced_browsing.png -share/icons/slick/16x16/actions/exec.png -share/icons/slick/16x16/actions/fileexport.png -share/icons/slick/16x16/actions/filefind.png -share/icons/slick/16x16/actions/fill.png -share/icons/slick/16x16/actions/filter.png -share/icons/slick/16x16/actions/folder-new.png -share/icons/slick/16x16/actions/fork.png -share/icons/slick/16x16/actions/frameprint.png -share/icons/slick/16x16/actions/gear.png -share/icons/slick/16x16/actions/go-bottom.png -share/icons/slick/16x16/actions/go-down.png -share/icons/slick/16x16/actions/go-first.png -share/icons/slick/16x16/actions/go-home.png -share/icons/slick/16x16/actions/go-jump-locationbar.png -share/icons/slick/16x16/actions/go-last.png -share/icons/slick/16x16/actions/go-next-document.png -share/icons/slick/16x16/actions/go-next.png -share/icons/slick/16x16/actions/go-previous-document.png -share/icons/slick/16x16/actions/go-previous.png -share/icons/slick/16x16/actions/go-top.png -share/icons/slick/16x16/actions/go-up.png -share/icons/slick/16x16/actions/goto.png -share/icons/slick/16x16/actions/greenled.png -share/icons/slick/16x16/actions/halfencrypted.png -share/icons/slick/16x16/actions/help.png -share/icons/slick/16x16/actions/history.png -share/icons/slick/16x16/actions/history_clear.png -share/icons/slick/16x16/actions/hotlistadd.png -share/icons/slick/16x16/actions/hotlistdel.png -share/icons/slick/16x16/actions/idea.png -share/icons/slick/16x16/actions/imagegallery.png -share/icons/slick/16x16/actions/indicator_connect.png -share/icons/slick/16x16/actions/indicator_empty.png -share/icons/slick/16x16/actions/indicator_full.png -share/icons/slick/16x16/actions/indicator_noconnect.png -share/icons/slick/16x16/actions/indicator_viewactive.png -share/icons/slick/16x16/actions/kde.png -share/icons/slick/16x16/actions/kde1.png -share/icons/slick/16x16/actions/kde2.png -share/icons/slick/16x16/actions/kde3.png -share/icons/slick/16x16/actions/kde4.png -share/icons/slick/16x16/actions/kde5.png -share/icons/slick/16x16/actions/kde6.png -share/icons/slick/16x16/actions/kde7.png -share/icons/slick/16x16/actions/khtml_kget.png -share/icons/slick/16x16/actions/klipper_dock.png -share/icons/slick/16x16/actions/ktip.png -share/icons/slick/16x16/actions/launch.png -share/icons/slick/16x16/actions/list-remove.png -share/icons/slick/16x16/actions/locationbar_erase.png -share/icons/slick/16x16/actions/mail-forward.png -share/icons/slick/16x16/actions/mail-message-new.png -share/icons/slick/16x16/actions/mail-reply-all.png -share/icons/slick/16x16/actions/mail-reply-sender.png -share/icons/slick/16x16/actions/mail-send.png -share/icons/slick/16x16/actions/mail_find.png -share/icons/slick/16x16/actions/mail_generic.png -share/icons/slick/16x16/actions/mail_get.png -share/icons/slick/16x16/actions/mail_replylist.png -share/icons/slick/16x16/actions/media-eject.png -share/icons/slick/16x16/actions/media-playback-pause.png -share/icons/slick/16x16/actions/media-playback-start.png -share/icons/slick/16x16/actions/media-playback-stop.png -share/icons/slick/16x16/actions/media-seek-backward.png -share/icons/slick/16x16/actions/media-seek-forward.png -share/icons/slick/16x16/actions/media-skip-backward.png -share/icons/slick/16x16/actions/media-skip-forward.png -share/icons/slick/16x16/actions/misc.png -share/icons/slick/16x16/actions/move.png -share/icons/slick/16x16/actions/news.png -share/icons/slick/16x16/actions/news_subscribe.png -share/icons/slick/16x16/actions/news_unsubscribe.png -share/icons/slick/16x16/actions/no.png -share/icons/slick/16x16/actions/noatunback.png -share/icons/slick/16x16/actions/noatunforward.png -share/icons/slick/16x16/actions/noatunpause.png -share/icons/slick/16x16/actions/noatunplay.png -share/icons/slick/16x16/actions/noatunplaylist.png -share/icons/slick/16x16/actions/noatunstop.png -share/icons/slick/16x16/actions/noatuntray.png -share/icons/slick/16x16/actions/noatuntraypause.png -share/icons/slick/16x16/actions/noatuntrayplay.png -share/icons/slick/16x16/actions/noatuntraystop.png -share/icons/slick/16x16/actions/object-rotate-left.png -share/icons/slick/16x16/actions/object-rotate-right.png -share/icons/slick/16x16/actions/ok.png -share/icons/slick/16x16/actions/openterm.png -share/icons/slick/16x16/actions/opentermblue.png -share/icons/slick/16x16/actions/opentermred.png -share/icons/slick/16x16/actions/photobook.png -share/icons/slick/16x16/actions/process-stop.png -share/icons/slick/16x16/actions/query_erase.png -share/icons/slick/16x16/actions/redled.png -share/icons/slick/16x16/actions/reload_all_tabs.png -share/icons/slick/16x16/actions/reload_page.png -share/icons/slick/16x16/actions/rotate.png -share/icons/slick/16x16/actions/save_all.png -share/icons/slick/16x16/actions/share.png -share/icons/slick/16x16/actions/showmenu.png -share/icons/slick/16x16/actions/stop1.png -share/icons/slick/16x16/actions/switchuser.png -share/icons/slick/16x16/actions/system-lock-screen.png -share/icons/slick/16x16/actions/system-run.png -share/icons/slick/16x16/actions/tab-close.png -share/icons/slick/16x16/actions/tab-detach.png -share/icons/slick/16x16/actions/tab-duplicate.png -share/icons/slick/16x16/actions/tab-new-background.png -share/icons/slick/16x16/actions/tab-new.png -share/icons/slick/16x16/actions/text.png -share/icons/slick/16x16/actions/thumbnail.png -share/icons/slick/16x16/actions/tick.png -share/icons/slick/16x16/actions/tools-check-spelling.png -share/icons/slick/16x16/actions/unlock.png -share/icons/slick/16x16/actions/view-fit-height.png -share/icons/slick/16x16/actions/view-fit-width.png -share/icons/slick/16x16/actions/view-fit-window.png -share/icons/slick/16x16/actions/view-fullscreen.png -share/icons/slick/16x16/actions/view-refresh.png -share/icons/slick/16x16/actions/view-restore.png -share/icons/slick/16x16/actions/view.png -share/icons/slick/16x16/actions/view_bottom.png -share/icons/slick/16x16/actions/view_choose.png -share/icons/slick/16x16/actions/view_detailed.png -share/icons/slick/16x16/actions/view_icon.png -share/icons/slick/16x16/actions/view_left_right.png -share/icons/slick/16x16/actions/view_multicolumn.png -share/icons/slick/16x16/actions/view_right.png -share/icons/slick/16x16/actions/view_sidetree.png -share/icons/slick/16x16/actions/view_text.png -share/icons/slick/16x16/actions/view_top_bottom.png -share/icons/slick/16x16/actions/view_tree.png -share/icons/slick/16x16/actions/webarchiver.png -share/icons/slick/16x16/actions/window-new.png -share/icons/slick/16x16/actions/window_suppressed.png -share/icons/slick/16x16/actions/yellowled.png -share/icons/slick/16x16/actions/zoom-best-fit.png -share/icons/slick/16x16/actions/zoom-in.png -share/icons/slick/16x16/actions/zoom-out.png -share/icons/slick/16x16/actions/zoom.png -share/icons/slick/16x16/apps/ark.png -share/icons/slick/16x16/apps/background.png -share/icons/slick/16x16/apps/bell.png -share/icons/slick/16x16/apps/camera.png -share/icons/slick/16x16/apps/cdbakeoven.png -share/icons/slick/16x16/apps/cervisia.png -share/icons/slick/16x16/apps/clock.png -share/icons/slick/16x16/apps/colors.png -share/icons/slick/16x16/apps/configure_shortcuts.png -share/icons/slick/16x16/apps/date.png -share/icons/slick/16x16/apps/energy.png -share/icons/slick/16x16/apps/filetypes.png -share/icons/slick/16x16/apps/fonts.png -share/icons/slick/16x16/apps/gimp.png -share/icons/slick/16x16/apps/go.png -share/icons/slick/16x16/apps/help_index.png -share/icons/slick/16x16/apps/hwinfo.png -share/icons/slick/16x16/apps/icon-cartoon.png -share/icons/slick/16x16/apps/icons.png -share/icons/slick/16x16/apps/k3b.png -share/icons/slick/16x16/apps/kab.png -share/icons/slick/16x16/apps/kaddressbook.png -share/icons/slick/16x16/apps/karchiver.png -share/icons/slick/16x16/apps/kate.png -share/icons/slick/16x16/apps/kaudiocdcreator.png -share/icons/slick/16x16/apps/kaudiocreator.png -share/icons/slick/16x16/apps/kbear.png -share/icons/slick/16x16/apps/kcalc.png -share/icons/slick/16x16/apps/kcmdevices.png -share/icons/slick/16x16/apps/kcmdf.png -share/icons/slick/16x16/apps/kcmkicker.png -share/icons/slick/16x16/apps/kcmkwin.png -share/icons/slick/16x16/apps/kcmkwm.png -share/icons/slick/16x16/apps/kcmmemory.png -share/icons/slick/16x16/apps/kcmpartitions.png -share/icons/slick/16x16/apps/kcmpci.png -share/icons/slick/16x16/apps/kcmprocessor.png -share/icons/slick/16x16/apps/kcmsound.png -share/icons/slick/16x16/apps/kcmsystem.png -share/icons/slick/16x16/apps/kcmx.png -share/icons/slick/16x16/apps/kcontrol.png -share/icons/slick/16x16/apps/kcontrol_2.png -share/icons/slick/16x16/apps/kdf.png -share/icons/slick/16x16/apps/kdirstat.png -share/icons/slick/16x16/apps/kdisknav.png -share/icons/slick/16x16/apps/kdisknav1.png -share/icons/slick/16x16/apps/kdmconfig.png -share/icons/slick/16x16/apps/kedit.png -share/icons/slick/16x16/apps/keditbookmarks.png -share/icons/slick/16x16/apps/key_bindings.png -share/icons/slick/16x16/apps/keyboard.png -share/icons/slick/16x16/apps/kfind.png -share/icons/slick/16x16/apps/kfm.png -share/icons/slick/16x16/apps/kfm2.png -share/icons/slick/16x16/apps/kfm3.png -share/icons/slick/16x16/apps/kfm_home.png -share/icons/slick/16x16/apps/kget.png -share/icons/slick/16x16/apps/khelpcenter.png -share/icons/slick/16x16/apps/kicker.png -share/icons/slick/16x16/apps/kio_uiserver.png -share/icons/slick/16x16/apps/kjobviewer.png -share/icons/slick/16x16/apps/kjots.png -share/icons/slick/16x16/apps/klipper.png -share/icons/slick/16x16/apps/klpq.png -share/icons/slick/16x16/apps/kmail.png -share/icons/slick/16x16/apps/kmenu.png -share/icons/slick/16x16/apps/kmenuedit.png -share/icons/slick/16x16/apps/kmix.png -share/icons/slick/16x16/apps/knode.png -share/icons/slick/16x16/apps/knotes.png -share/icons/slick/16x16/apps/knotify.png -share/icons/slick/16x16/apps/komba2.png -share/icons/slick/16x16/apps/konqsidebar_mediaplayer.png -share/icons/slick/16x16/apps/konqueror.png -share/icons/slick/16x16/apps/konsole.png -share/icons/slick/16x16/apps/kontact.png -share/icons/slick/16x16/apps/konversation.png -share/icons/slick/16x16/apps/kopete.png -share/icons/slick/16x16/apps/korganizer.png -share/icons/slick/16x16/apps/kpackage.png -share/icons/slick/16x16/apps/kpf.png -share/icons/slick/16x16/apps/kpilot.png -share/icons/slick/16x16/apps/kppp.png -share/icons/slick/16x16/apps/kprintfax.png -share/icons/slick/16x16/apps/kreatecd.png -share/icons/slick/16x16/apps/kscd.png -share/icons/slick/16x16/apps/kscreensaver.png -share/icons/slick/16x16/apps/ksplash.png -share/icons/slick/16x16/apps/ksysguard.png -share/icons/slick/16x16/apps/ksysv.png -share/icons/slick/16x16/apps/kteatime.png -share/icons/slick/16x16/apps/kthememgr.png -share/icons/slick/16x16/apps/ktip.png -share/icons/slick/16x16/apps/kuickshow.png -share/icons/slick/16x16/apps/kview.png -share/icons/slick/16x16/apps/kwikdisk.png -share/icons/slick/16x16/apps/kwin.png -share/icons/slick/16x16/apps/kword.png -share/icons/slick/16x16/apps/kwrite.png -share/icons/slick/16x16/apps/laptop_battery.png -share/icons/slick/16x16/apps/laptop_pcmcia.png -share/icons/slick/16x16/apps/licq.png -share/icons/slick/16x16/apps/looknfeel.png -share/icons/slick/16x16/apps/mplayer.png -share/icons/slick/16x16/apps/multimedia.png -share/icons/slick/16x16/apps/noatun.png -share/icons/slick/16x16/apps/opera.png -share/icons/slick/16x16/apps/package.png -share/icons/slick/16x16/apps/package_application.png -share/icons/slick/16x16/apps/package_applications.png -share/icons/slick/16x16/apps/package_development.png -share/icons/slick/16x16/apps/package_editors.png -share/icons/slick/16x16/apps/package_edutainment.png -share/icons/slick/16x16/apps/package_games.png -share/icons/slick/16x16/apps/package_graphics.png -share/icons/slick/16x16/apps/package_multimedia.png -share/icons/slick/16x16/apps/package_multimedia2.png -share/icons/slick/16x16/apps/package_network.png -share/icons/slick/16x16/apps/package_settings.png -share/icons/slick/16x16/apps/package_settings33.png -share/icons/slick/16x16/apps/package_system.png -share/icons/slick/16x16/apps/package_toys.png -share/icons/slick/16x16/apps/package_utilities.png -share/icons/slick/16x16/apps/package_wordprocessing.png -share/icons/slick/16x16/apps/panel.png -share/icons/slick/16x16/apps/password.png -share/icons/slick/16x16/apps/penguin.png -share/icons/slick/16x16/apps/personal.png -share/icons/slick/16x16/apps/printmgr.png -share/icons/slick/16x16/apps/randr.png -share/icons/slick/16x16/apps/remote.png -share/icons/slick/16x16/apps/samba.png -share/icons/slick/16x16/apps/showimg.png -share/icons/slick/16x16/apps/smb4k.png -share/icons/slick/16x16/apps/speaker.png -share/icons/slick/16x16/apps/style.png -share/icons/slick/16x16/apps/suspend.png -share/icons/slick/16x16/apps/system.png -share/icons/slick/16x16/apps/terminal.png -share/icons/slick/16x16/apps/trees.png -share/icons/slick/16x16/apps/tux.png -share/icons/slick/16x16/apps/vmware.png -share/icons/slick/16x16/apps/window_list.png -share/icons/slick/16x16/apps/xapp.png -share/icons/slick/16x16/apps/xchat.png -share/icons/slick/16x16/apps/xmms.png -share/icons/slick/16x16/apps/xpaint.png -share/icons/slick/16x16/apps/yakuake.png -share/icons/slick/16x16/devices/3floppy_mount.png -share/icons/slick/16x16/devices/3floppy_unmount.png -share/icons/slick/16x16/devices/camera_mount.png -share/icons/slick/16x16/devices/camera_unmount.png -share/icons/slick/16x16/devices/cd.png -share/icons/slick/16x16/devices/cdaudio_mount.png -share/icons/slick/16x16/devices/cdaudio_unmount.png -share/icons/slick/16x16/devices/cdrom_mount.png -share/icons/slick/16x16/devices/cdrom_unmount.png -share/icons/slick/16x16/devices/cdwriter_mount.png -share/icons/slick/16x16/devices/cdwriter_unmount.png -share/icons/slick/16x16/devices/dvd_mount.png -share/icons/slick/16x16/devices/dvd_unmount.png -share/icons/slick/16x16/devices/hdd_games.png -share/icons/slick/16x16/devices/hdd_gfx.png -share/icons/slick/16x16/devices/hdd_linux.png -share/icons/slick/16x16/devices/hdd_mount.png -share/icons/slick/16x16/devices/hdd_system.png -share/icons/slick/16x16/devices/hdd_umount.png -share/icons/slick/16x16/devices/hdd_unmount.png -share/icons/slick/16x16/devices/hdd_www.png -share/icons/slick/16x16/devices/host.png -share/icons/slick/16x16/devices/host_down.png -share/icons/slick/16x16/devices/ksim_cpu.png -share/icons/slick/16x16/devices/lan.png -share/icons/slick/16x16/devices/lo.png -share/icons/slick/16x16/devices/memory.png -share/icons/slick/16x16/devices/nfs_mount.png -share/icons/slick/16x16/devices/nfs_unmount.png -share/icons/slick/16x16/devices/print_printer.png -share/icons/slick/16x16/devices/printer1.png -share/icons/slick/16x16/devices/printer2.png -share/icons/slick/16x16/devices/usbpendrive_mount.png -share/icons/slick/16x16/devices/usbpendrive_unmount.png -share/icons/slick/16x16/mimetypes/applix.png -share/icons/slick/16x16/mimetypes/archive.png -share/icons/slick/16x16/mimetypes/archive_2.png -share/icons/slick/16x16/mimetypes/ascii.png -share/icons/slick/16x16/mimetypes/binary.png -share/icons/slick/16x16/mimetypes/binary2.png -share/icons/slick/16x16/mimetypes/cdimage.png -share/icons/slick/16x16/mimetypes/cdr.png -share/icons/slick/16x16/mimetypes/cdtrack.png -share/icons/slick/16x16/mimetypes/colorscm.png -share/icons/slick/16x16/mimetypes/colorset.png -share/icons/slick/16x16/mimetypes/configure_script.png -share/icons/slick/16x16/mimetypes/core.png -share/icons/slick/16x16/mimetypes/cpp.png -share/icons/slick/16x16/mimetypes/deb.png -share/icons/slick/16x16/mimetypes/desktopfile.png -share/icons/slick/16x16/mimetypes/develop.png -share/icons/slick/16x16/mimetypes/disk_image.png -share/icons/slick/16x16/mimetypes/doc.png -share/icons/slick/16x16/mimetypes/document.png -share/icons/slick/16x16/mimetypes/document2.png -share/icons/slick/16x16/mimetypes/dvi.png -share/icons/slick/16x16/mimetypes/empty.png -share/icons/slick/16x16/mimetypes/empty2.png -share/icons/slick/16x16/mimetypes/empty_ascii.png -share/icons/slick/16x16/mimetypes/encrypted.png -share/icons/slick/16x16/mimetypes/font.png -share/icons/slick/16x16/mimetypes/font_bitmap.png -share/icons/slick/16x16/mimetypes/font_truetype.png -share/icons/slick/16x16/mimetypes/font_type1.png -share/icons/slick/16x16/mimetypes/html.png -share/icons/slick/16x16/mimetypes/html2.png -share/icons/slick/16x16/mimetypes/image-compressed.png -share/icons/slick/16x16/mimetypes/image-truecolor.png -share/icons/slick/16x16/mimetypes/image.png -share/icons/slick/16x16/mimetypes/info.png -share/icons/slick/16x16/mimetypes/java.png -share/icons/slick/16x16/mimetypes/kmultiple.png -share/icons/slick/16x16/mimetypes/log.png -share/icons/slick/16x16/mimetypes/make.png -share/icons/slick/16x16/mimetypes/man.png -share/icons/slick/16x16/mimetypes/message.png -share/icons/slick/16x16/mimetypes/midi.png -share/icons/slick/16x16/mimetypes/mime.png -share/icons/slick/16x16/mimetypes/mime_empty.png -share/icons/slick/16x16/mimetypes/mp3.png -share/icons/slick/16x16/mimetypes/netscape_doc.png -share/icons/slick/16x16/mimetypes/pdf.png -share/icons/slick/16x16/mimetypes/person.png -share/icons/slick/16x16/mimetypes/postscript.png -share/icons/slick/16x16/mimetypes/pov.png -share/icons/slick/16x16/mimetypes/readme.png -share/icons/slick/16x16/mimetypes/real_doc.png -share/icons/slick/16x16/mimetypes/recycled.png -share/icons/slick/16x16/mimetypes/resource.png -share/icons/slick/16x16/mimetypes/rpm.png -share/icons/slick/16x16/mimetypes/ruby.png -share/icons/slick/16x16/mimetypes/shellscript.png -share/icons/slick/16x16/mimetypes/soffice.png -share/icons/slick/16x16/mimetypes/sound.png -share/icons/slick/16x16/mimetypes/sound1.png -share/icons/slick/16x16/mimetypes/source.png -share/icons/slick/16x16/mimetypes/source_c.png -share/icons/slick/16x16/mimetypes/source_cpp.png -share/icons/slick/16x16/mimetypes/source_f.png -share/icons/slick/16x16/mimetypes/source_h.png -share/icons/slick/16x16/mimetypes/source_java.png -share/icons/slick/16x16/mimetypes/source_l.png -share/icons/slick/16x16/mimetypes/source_moc.png -share/icons/slick/16x16/mimetypes/source_o.png -share/icons/slick/16x16/mimetypes/source_php.png -share/icons/slick/16x16/mimetypes/source_pl.png -share/icons/slick/16x16/mimetypes/source_py.png -share/icons/slick/16x16/mimetypes/source_ruby.png -share/icons/slick/16x16/mimetypes/source_s.png -share/icons/slick/16x16/mimetypes/source_y.png -share/icons/slick/16x16/mimetypes/tar.png -share/icons/slick/16x16/mimetypes/tgz.png -share/icons/slick/16x16/mimetypes/txt.png -share/icons/slick/16x16/mimetypes/unknown.png -share/icons/slick/16x16/mimetypes/vcard.png -share/icons/slick/16x16/mimetypes/video.png -share/icons/slick/16x16/mimetypes/war.png -share/icons/slick/16x16/mimetypes/widget_doc.png -share/icons/slick/16x16/mimetypes/wordprocessing.png -share/icons/slick/16x16/mimetypes/xcf.png -share/icons/slick/22x22/actions/1day.png -share/icons/slick/22x22/actions/1downarrow.png -share/icons/slick/22x22/actions/1leftarrow.png -share/icons/slick/22x22/actions/1rightarrow.png -share/icons/slick/22x22/actions/1uparrow.png -share/icons/slick/22x22/actions/2arrowback.png -share/icons/slick/22x22/actions/2arrowforward.png -share/icons/slick/22x22/actions/2downarrow.png -share/icons/slick/22x22/actions/2leftarrow.png -share/icons/slick/22x22/actions/2rightarrow.png -share/icons/slick/22x22/actions/2uparrow.png -share/icons/slick/22x22/actions/5days.png -share/icons/slick/22x22/actions/7days.png -share/icons/slick/22x22/actions/agenda.png -share/icons/slick/22x22/actions/agent.png -share/icons/slick/22x22/actions/airbrush.png -share/icons/slick/22x22/actions/application-exit.png -share/icons/slick/22x22/actions/appointment-new.png -share/icons/slick/22x22/actions/arrowback.png -share/icons/slick/22x22/actions/arrowforward.png -share/icons/slick/22x22/actions/attach.png -share/icons/slick/22x22/actions/babelfish.png -share/icons/slick/22x22/actions/bar0.png -share/icons/slick/22x22/actions/bar1.png -share/icons/slick/22x22/actions/bar2.png -share/icons/slick/22x22/actions/bar3.png -share/icons/slick/22x22/actions/bar4.png -share/icons/slick/22x22/actions/bar5.png -share/icons/slick/22x22/actions/bar6.png -share/icons/slick/22x22/actions/bookmark-new.png -share/icons/slick/22x22/actions/bookmark.png -share/icons/slick/22x22/actions/bookmark_folder.png -share/icons/slick/22x22/actions/bookmark_toolbar.png -share/icons/slick/22x22/actions/button_cancel1.png -share/icons/slick/22x22/actions/button_ok.png -share/icons/slick/22x22/actions/calender.png -share/icons/slick/22x22/actions/cancel.png -share/icons/slick/22x22/actions/cd.png -share/icons/slick/22x22/actions/cdburn.png -share/icons/slick/22x22/actions/cdcopy.png -share/icons/slick/22x22/actions/cdrwblank.png -share/icons/slick/22x22/actions/colorpicker.png -share/icons/slick/22x22/actions/configure.png -share/icons/slick/22x22/actions/connect_creating.png -share/icons/slick/22x22/actions/connect_established.png -share/icons/slick/22x22/actions/connect_no.png -share/icons/slick/22x22/actions/contact-new.png -share/icons/slick/22x22/actions/contents.png -share/icons/slick/22x22/actions/contexthelp.png -share/icons/slick/22x22/actions/decrypted.png -share/icons/slick/22x22/actions/define_clip.png -share/icons/slick/22x22/actions/dialog-cancel.png -share/icons/slick/22x22/actions/dialog-close.png -share/icons/slick/22x22/actions/dialog-ok.png -share/icons/slick/22x22/actions/dock.png -share/icons/slick/22x22/actions/document-new.png -share/icons/slick/22x22/actions/document-open.png -share/icons/slick/22x22/actions/document-print-preview.png -share/icons/slick/22x22/actions/document-print.png -share/icons/slick/22x22/actions/document-revert.png -share/icons/slick/22x22/actions/document-save-as.png -share/icons/slick/22x22/actions/document-save.png -share/icons/slick/22x22/actions/domtreeviewer.png -share/icons/slick/22x22/actions/dynamic.png -share/icons/slick/22x22/actions/edit-copy.png -share/icons/slick/22x22/actions/edit-cut.png -share/icons/slick/22x22/actions/edit-delete.png -share/icons/slick/22x22/actions/edit-find.png -share/icons/slick/22x22/actions/edit-paste.png -share/icons/slick/22x22/actions/edit-redo.png -share/icons/slick/22x22/actions/edit-undo.png -share/icons/slick/22x22/actions/edit.png -share/icons/slick/22x22/actions/editshred.png -share/icons/slick/22x22/actions/edittrash.png -share/icons/slick/22x22/actions/emptytrash.png -share/icons/slick/22x22/actions/encrypted.png -share/icons/slick/22x22/actions/exec.png -share/icons/slick/22x22/actions/filefind.png -share/icons/slick/22x22/actions/filter.png -share/icons/slick/22x22/actions/folder-new.png -share/icons/slick/22x22/actions/fork.png -share/icons/slick/22x22/actions/frameprint.png -share/icons/slick/22x22/actions/fsview.png -share/icons/slick/22x22/actions/ftin.png -share/icons/slick/22x22/actions/ftout.png -share/icons/slick/22x22/actions/gear.png -share/icons/slick/22x22/actions/go-bottom.png -share/icons/slick/22x22/actions/go-down.png -share/icons/slick/22x22/actions/go-first.png -share/icons/slick/22x22/actions/go-home.png -share/icons/slick/22x22/actions/go-jump-locationbar.png -share/icons/slick/22x22/actions/go-last.png -share/icons/slick/22x22/actions/go-next-document.png -share/icons/slick/22x22/actions/go-next.png -share/icons/slick/22x22/actions/go-previous-document.png -share/icons/slick/22x22/actions/go-previous.png -share/icons/slick/22x22/actions/go-top.png -share/icons/slick/22x22/actions/go-up.png -share/icons/slick/22x22/actions/gvdirpart.png -share/icons/slick/22x22/actions/halfencrypted.png -share/icons/slick/22x22/actions/help.png -share/icons/slick/22x22/actions/history.png -share/icons/slick/22x22/actions/htmlvalidator.png -share/icons/slick/22x22/actions/idea.png -share/icons/slick/22x22/actions/imagegallery.png -share/icons/slick/22x22/actions/journal.png -share/icons/slick/22x22/actions/kalarmdgui.png -share/icons/slick/22x22/actions/kalarmdgui_disabled.png -share/icons/slick/22x22/actions/kde.png -share/icons/slick/22x22/actions/kde1.png -share/icons/slick/22x22/actions/kde2.png -share/icons/slick/22x22/actions/kde3.png -share/icons/slick/22x22/actions/kde4.png -share/icons/slick/22x22/actions/kde5.png -share/icons/slick/22x22/actions/kde6.png -share/icons/slick/22x22/actions/kde7.png -share/icons/slick/22x22/actions/kget_dock.png -share/icons/slick/22x22/actions/kget_dock_download.png -share/icons/slick/22x22/actions/kget_dock_downloading.png -share/icons/slick/22x22/actions/khtml_kget.png -share/icons/slick/22x22/actions/klipper_dock.png -share/icons/slick/22x22/actions/kontact_contacts.png -share/icons/slick/22x22/actions/kontact_date.png -share/icons/slick/22x22/actions/kontact_journal.png -share/icons/slick/22x22/actions/kontact_mail.png -share/icons/slick/22x22/actions/kontact_news.png -share/icons/slick/22x22/actions/kontact_notes.png -share/icons/slick/22x22/actions/kontact_summary.png -share/icons/slick/22x22/actions/kontact_todo.png -share/icons/slick/22x22/actions/kopete_all_away.png -share/icons/slick/22x22/actions/korgac.png -share/icons/slick/22x22/actions/korgac_disabled.png -share/icons/slick/22x22/actions/launch.png -share/icons/slick/22x22/actions/list.png -share/icons/slick/22x22/actions/locationbar_erase.png -share/icons/slick/22x22/actions/mail-forward.png -share/icons/slick/22x22/actions/mail-message-new.png -share/icons/slick/22x22/actions/mail-reply-all.png -share/icons/slick/22x22/actions/mail-reply-sender.png -share/icons/slick/22x22/actions/mail-send.png -share/icons/slick/22x22/actions/mail_find.png -share/icons/slick/22x22/actions/mail_generic.png -share/icons/slick/22x22/actions/mail_get.png -share/icons/slick/22x22/actions/mail_replylist.png -share/icons/slick/22x22/actions/media-eject.png -share/icons/slick/22x22/actions/media-playback-pause.png -share/icons/slick/22x22/actions/media-playback-start.png -share/icons/slick/22x22/actions/media-playback-stop.png -share/icons/slick/22x22/actions/media-skip-backward.png -share/icons/slick/22x22/actions/media-skip-forward.png -share/icons/slick/22x22/actions/metacontact_away.png -share/icons/slick/22x22/actions/metacontact_offline.png -share/icons/slick/22x22/actions/metacontact_online.png -share/icons/slick/22x22/actions/mime_empty.png -share/icons/slick/22x22/actions/misc.png -share/icons/slick/22x22/actions/mix_audio.png -share/icons/slick/22x22/actions/mix_bass.png -share/icons/slick/22x22/actions/mix_cd.png -share/icons/slick/22x22/actions/mix_ext.png -share/icons/slick/22x22/actions/mix_microphone.png -share/icons/slick/22x22/actions/mix_midi.png -share/icons/slick/22x22/actions/mix_record.png -share/icons/slick/22x22/actions/mix_surround.png -share/icons/slick/22x22/actions/mix_treble.png -share/icons/slick/22x22/actions/mix_video.png -share/icons/slick/22x22/actions/mix_volume.png -share/icons/slick/22x22/actions/month.png -share/icons/slick/22x22/actions/move.png -share/icons/slick/22x22/actions/network_connected.png -share/icons/slick/22x22/actions/network_disconnected.png -share/icons/slick/22x22/actions/network_incoming.png -share/icons/slick/22x22/actions/network_outgoing.png -share/icons/slick/22x22/actions/newrecurevent.png -share/icons/slick/22x22/actions/newtodo.png -share/icons/slick/22x22/actions/no.png -share/icons/slick/22x22/actions/noatunback.png -share/icons/slick/22x22/actions/noatunforward.png -share/icons/slick/22x22/actions/noatunloopnone.png -share/icons/slick/22x22/actions/noatunloopplaylist.png -share/icons/slick/22x22/actions/noatunlooprandom.png -share/icons/slick/22x22/actions/noatunloopsong.png -share/icons/slick/22x22/actions/noatunpause.png -share/icons/slick/22x22/actions/noatunplay.png -share/icons/slick/22x22/actions/noatunplaylist.png -share/icons/slick/22x22/actions/noatunstop.png -share/icons/slick/22x22/actions/noatuntray.png -share/icons/slick/22x22/actions/noatuntraypause.png -share/icons/slick/22x22/actions/noatuntrayplay.png -share/icons/slick/22x22/actions/noatuntraystop.png -share/icons/slick/22x22/actions/object-rotate-left.png -share/icons/slick/22x22/actions/object-rotate-right.png -share/icons/slick/22x22/actions/openterm.png -share/icons/slick/22x22/actions/photobook.png -share/icons/slick/22x22/actions/player_playlist_2.png -share/icons/slick/22x22/actions/process-stop.png -share/icons/slick/22x22/actions/query_erase.png -share/icons/slick/22x22/actions/queue.png -share/icons/slick/22x22/actions/random.png -share/icons/slick/22x22/actions/rebuild.png -share/icons/slick/22x22/actions/reload1.png -share/icons/slick/22x22/actions/repeat_playlist.png -share/icons/slick/22x22/actions/repeat_track.png -share/icons/slick/22x22/actions/rotate.png -share/icons/slick/22x22/actions/save_all.png -share/icons/slick/22x22/actions/share.png -share/icons/slick/22x22/actions/showmenu.png -share/icons/slick/22x22/actions/slideshow.png -share/icons/slick/22x22/actions/sphere.png -share/icons/slick/22x22/actions/switchuser.png -share/icons/slick/22x22/actions/system-lock-screen.png -share/icons/slick/22x22/actions/system-run.png -share/icons/slick/22x22/actions/tab-close.png -share/icons/slick/22x22/actions/tab-detach.png -share/icons/slick/22x22/actions/tab-duplicate.png -share/icons/slick/22x22/actions/tab-new-background.png -share/icons/slick/22x22/actions/tab-new.png -share/icons/slick/22x22/actions/thumbnail.png -share/icons/slick/22x22/actions/today.png -share/icons/slick/22x22/actions/todo.png -share/icons/slick/22x22/actions/toggle_log.png -share/icons/slick/22x22/actions/tool_clipboard.png -share/icons/slick/22x22/actions/tool_delete.png -share/icons/slick/22x22/actions/tool_disconnect.png -share/icons/slick/22x22/actions/tool_dock.png -share/icons/slick/22x22/actions/tool_drop_target.png -share/icons/slick/22x22/actions/tool_expert.png -share/icons/slick/22x22/actions/tool_logwindow.png -share/icons/slick/22x22/actions/tool_normal.png -share/icons/slick/22x22/actions/tool_offline_mode_off.png -share/icons/slick/22x22/actions/tool_offline_mode_on.png -share/icons/slick/22x22/actions/tool_paste.png -share/icons/slick/22x22/actions/tool_pause.png -share/icons/slick/22x22/actions/tool_preferences.png -share/icons/slick/22x22/actions/tool_queue.png -share/icons/slick/22x22/actions/tool_restart.png -share/icons/slick/22x22/actions/tool_resume.png -share/icons/slick/22x22/actions/tool_shutdown.png -share/icons/slick/22x22/actions/tool_timer.png -share/icons/slick/22x22/actions/tool_uselastdir.png -share/icons/slick/22x22/actions/tools-check-spelling.png -share/icons/slick/22x22/actions/translate.png -share/icons/slick/22x22/actions/unlock.png -share/icons/slick/22x22/actions/validators.png -share/icons/slick/22x22/actions/view-fit-height.png -share/icons/slick/22x22/actions/view-fit-width.png -share/icons/slick/22x22/actions/view-fit-window.png -share/icons/slick/22x22/actions/view-fullscreen.png -share/icons/slick/22x22/actions/view-refresh.png -share/icons/slick/22x22/actions/view-restore.png -share/icons/slick/22x22/actions/view.png -share/icons/slick/22x22/actions/view_bottom.png -share/icons/slick/22x22/actions/view_choose.png -share/icons/slick/22x22/actions/view_detailed.png -share/icons/slick/22x22/actions/view_icon.png -share/icons/slick/22x22/actions/view_left_right.png -share/icons/slick/22x22/actions/view_multicolumn.png -share/icons/slick/22x22/actions/view_right.png -share/icons/slick/22x22/actions/view_sidetree.png -share/icons/slick/22x22/actions/view_text.png -share/icons/slick/22x22/actions/view_top_bottom.png -share/icons/slick/22x22/actions/view_tree.png -share/icons/slick/22x22/actions/wallet_closed.png -share/icons/slick/22x22/actions/wallet_open.png -share/icons/slick/22x22/actions/webarchiver.png -share/icons/slick/22x22/actions/whatsnext.png -share/icons/slick/22x22/actions/window-new.png -share/icons/slick/22x22/actions/window_suppressed.png -share/icons/slick/22x22/actions/window_supressed.png -share/icons/slick/22x22/actions/xdays.png -share/icons/slick/22x22/actions/yellowled.png -share/icons/slick/22x22/actions/zoom-best-fit.png -share/icons/slick/22x22/actions/zoom-in.png -share/icons/slick/22x22/actions/zoom-original.png -share/icons/slick/22x22/actions/zoom-out.png -share/icons/slick/22x22/actions/zoom.png -share/icons/slick/22x22/apps/1randr.png -share/icons/slick/22x22/apps/bell.png -share/icons/slick/22x22/apps/cervisia.png -share/icons/slick/22x22/apps/date.png -share/icons/slick/22x22/apps/energy.png -share/icons/slick/22x22/apps/fonts.png -share/icons/slick/22x22/apps/go.png -share/icons/slick/22x22/apps/gwenview.png -share/icons/slick/22x22/apps/icon-cartoon.png -share/icons/slick/22x22/apps/icons.png -share/icons/slick/22x22/apps/input_devices_settings.png -share/icons/slick/22x22/apps/k3b.png -share/icons/slick/22x22/apps/kcmdf.png -share/icons/slick/22x22/apps/kcmkwin.png -share/icons/slick/22x22/apps/kcmsystem.png -share/icons/slick/22x22/apps/kdmconfig.png -share/icons/slick/22x22/apps/kfind.png -share/icons/slick/22x22/apps/kfm.png -share/icons/slick/22x22/apps/kfm_home.png -share/icons/slick/22x22/apps/kget.png -share/icons/slick/22x22/apps/khelpcenter.png -share/icons/slick/22x22/apps/kjobviewer.png -share/icons/slick/22x22/apps/klipper.png -share/icons/slick/22x22/apps/kmail.png -share/icons/slick/22x22/apps/kmenu.png -share/icons/slick/22x22/apps/kmenuedit.png -share/icons/slick/22x22/apps/kmixdocked.png -share/icons/slick/22x22/apps/kmixdocked1.png -share/icons/slick/22x22/apps/kmixdocked_mute.png -share/icons/slick/22x22/apps/knotes.png -share/icons/slick/22x22/apps/kompose.png -share/icons/slick/22x22/apps/konqsidebar_mediaplayer.png -share/icons/slick/22x22/apps/konqueror.png -share/icons/slick/22x22/apps/konsole.png -share/icons/slick/22x22/apps/kontact.png -share/icons/slick/22x22/apps/konv_message.png -share/icons/slick/22x22/apps/konversation.png -share/icons/slick/22x22/apps/kopete.png -share/icons/slick/22x22/apps/kopete_all_away.png -share/icons/slick/22x22/apps/kopete_offline.png -share/icons/slick/22x22/apps/kopete_some_away.png -share/icons/slick/22x22/apps/kopete_some_online.png -share/icons/slick/22x22/apps/ksplash.png -share/icons/slick/22x22/apps/kthememgr.png -share/icons/slick/22x22/apps/kwalletmanager.png -share/icons/slick/22x22/apps/kwin.png -share/icons/slick/22x22/apps/looknfeel.png -share/icons/slick/22x22/apps/mix_cd.png -share/icons/slick/22x22/apps/mix_ext.png -share/icons/slick/22x22/apps/mix_microphone.png -share/icons/slick/22x22/apps/multimedia.png -share/icons/slick/22x22/apps/noatun.png -share/icons/slick/22x22/apps/package.png -share/icons/slick/22x22/apps/package_network.png -share/icons/slick/22x22/apps/package_settings.png -share/icons/slick/22x22/apps/package_system.png -share/icons/slick/22x22/apps/password.png -share/icons/slick/22x22/apps/personal.png -share/icons/slick/22x22/apps/printmgr.png -share/icons/slick/22x22/apps/randr.png -share/icons/slick/22x22/apps/style.png -share/icons/slick/22x22/apps/window_list.png -share/icons/slick/22x22/apps/xkill.png -share/icons/slick/22x22/apps/xmms.png -share/icons/slick/22x22/devices/3floppy_mount.png -share/icons/slick/22x22/devices/3floppy_unmount.png -share/icons/slick/22x22/devices/camera_mount.png -share/icons/slick/22x22/devices/camera_unmount.png -share/icons/slick/22x22/devices/cdaudio_mount.png -share/icons/slick/22x22/devices/cdaudio_unmount.png -share/icons/slick/22x22/devices/cdrom_mount.png -share/icons/slick/22x22/devices/cdrom_unmount.png -share/icons/slick/22x22/devices/cdwriter_mount.png -share/icons/slick/22x22/devices/cdwriter_unmount.png -share/icons/slick/22x22/devices/dvd_mount.png -share/icons/slick/22x22/devices/dvd_unmount.png -share/icons/slick/22x22/devices/floppy_mount.png -share/icons/slick/22x22/devices/floppy_unmount.png -share/icons/slick/22x22/devices/hdd.png -share/icons/slick/22x22/devices/hdd_mount.png -share/icons/slick/22x22/devices/hdd_unmount.png -share/icons/slick/22x22/devices/keyboard.png -share/icons/slick/22x22/devices/lan.png -share/icons/slick/22x22/devices/memory.png -share/icons/slick/22x22/devices/mouse.png -share/icons/slick/22x22/devices/nfs_mount.png -share/icons/slick/22x22/devices/nfs_unmount.png -share/icons/slick/22x22/devices/print.png -share/icons/slick/22x22/devices/printer.png -share/icons/slick/22x22/devices/printer1.png -share/icons/slick/22x22/devices/printer2.png -share/icons/slick/22x22/devices/usbpendrive_mount.png -share/icons/slick/22x22/devices/usbpendrive_unmount.png -share/icons/slick/22x22/mimetypes/ascii.png -share/icons/slick/22x22/mimetypes/binary.png -share/icons/slick/22x22/mimetypes/cdtrack.png -share/icons/slick/22x22/mimetypes/core.png -share/icons/slick/22x22/mimetypes/deb.png -share/icons/slick/22x22/mimetypes/develop.png -share/icons/slick/22x22/mimetypes/disk_image.png -share/icons/slick/22x22/mimetypes/document.png -share/icons/slick/22x22/mimetypes/empty.png -share/icons/slick/22x22/mimetypes/font.png -share/icons/slick/22x22/mimetypes/font_bitmap.png -share/icons/slick/22x22/mimetypes/font_truetype.png -share/icons/slick/22x22/mimetypes/html.png -share/icons/slick/22x22/mimetypes/image.png -share/icons/slick/22x22/mimetypes/info.png -share/icons/slick/22x22/mimetypes/kmultiple.png -share/icons/slick/22x22/mimetypes/kword_kwd.png -share/icons/slick/22x22/mimetypes/log.png -share/icons/slick/22x22/mimetypes/message.png -share/icons/slick/22x22/mimetypes/mime_empty.png -share/icons/slick/22x22/mimetypes/pdf.png -share/icons/slick/22x22/mimetypes/pov.png -share/icons/slick/22x22/mimetypes/real_doc.png -share/icons/slick/22x22/mimetypes/recycled.png -share/icons/slick/22x22/mimetypes/resource.png -share/icons/slick/22x22/mimetypes/rpm.png -share/icons/slick/22x22/mimetypes/shellscript.png -share/icons/slick/22x22/mimetypes/sound.png -share/icons/slick/22x22/mimetypes/source_java.png -share/icons/slick/22x22/mimetypes/source_moc.png -share/icons/slick/22x22/mimetypes/source_php.png -share/icons/slick/22x22/mimetypes/spreadsheet.png -share/icons/slick/22x22/mimetypes/tar.png -share/icons/slick/22x22/mimetypes/text.png -share/icons/slick/22x22/mimetypes/text1.png -share/icons/slick/22x22/mimetypes/tgz.png -share/icons/slick/22x22/mimetypes/txt.png -share/icons/slick/22x22/mimetypes/unknown.png -share/icons/slick/22x22/mimetypes/vectorgfx.png -share/icons/slick/22x22/mimetypes/video.png -share/icons/slick/22x22/mimetypes/webarchiver.png -share/icons/slick/22x22/mimetypes/wordprocessing.png -share/icons/slick/32x32/actions/1downarrow.png -share/icons/slick/32x32/actions/1leftarrow.png -share/icons/slick/32x32/actions/1rightarrow.png -share/icons/slick/32x32/actions/1uparrow.png -share/icons/slick/32x32/actions/2downarrow.png -share/icons/slick/32x32/actions/2leftarrow.png -share/icons/slick/32x32/actions/2rightarrow.png -share/icons/slick/32x32/actions/2uparrow.png -share/icons/slick/32x32/actions/about_kde.png -share/icons/slick/32x32/actions/application-exit.png -share/icons/slick/32x32/actions/attach.png -share/icons/slick/32x32/actions/autozoom.png -share/icons/slick/32x32/actions/babelfish.png -share/icons/slick/32x32/actions/blank.png -share/icons/slick/32x32/actions/bookmark-new.png -share/icons/slick/32x32/actions/bookmark.png -share/icons/slick/32x32/actions/cancel.png -share/icons/slick/32x32/actions/cdcopy.png -share/icons/slick/32x32/actions/cdrwblank.png -share/icons/slick/32x32/actions/colorpicker.png -share/icons/slick/32x32/actions/configure.png -share/icons/slick/32x32/actions/connect_creating.png -share/icons/slick/32x32/actions/connect_established.png -share/icons/slick/32x32/actions/connect_no.png -share/icons/slick/32x32/actions/contact-new.png -share/icons/slick/32x32/actions/contents.png -share/icons/slick/32x32/actions/decrypted.png -share/icons/slick/32x32/actions/define_clip.png -share/icons/slick/32x32/actions/dialog-cancel.png -share/icons/slick/32x32/actions/dialog-close.png -share/icons/slick/32x32/actions/dialog-ok.png -share/icons/slick/32x32/actions/document-new.png -share/icons/slick/32x32/actions/document-open.png -share/icons/slick/32x32/actions/document-print-preview.png -share/icons/slick/32x32/actions/document-print.png -share/icons/slick/32x32/actions/document-revert.png -share/icons/slick/32x32/actions/document-save-as.png -share/icons/slick/32x32/actions/document-save.png -share/icons/slick/32x32/actions/domtreeviewer.png -share/icons/slick/32x32/actions/edit-copy.png -share/icons/slick/32x32/actions/edit-cut.png -share/icons/slick/32x32/actions/edit-delete.png -share/icons/slick/32x32/actions/edit-find.png -share/icons/slick/32x32/actions/edit-paste.png -share/icons/slick/32x32/actions/edit-redo.png -share/icons/slick/32x32/actions/edit-undo.png -share/icons/slick/32x32/actions/edit.png -share/icons/slick/32x32/actions/editshred.png -share/icons/slick/32x32/actions/edittrash.png -share/icons/slick/32x32/actions/encrypted.png -share/icons/slick/32x32/actions/exec.png -share/icons/slick/32x32/actions/filefind.png -share/icons/slick/32x32/actions/filter.png -share/icons/slick/32x32/actions/flip.png -share/icons/slick/32x32/actions/folder-new.png -share/icons/slick/32x32/actions/fork.png -share/icons/slick/32x32/actions/format-text-bold.png -share/icons/slick/32x32/actions/format-text-italic.png -share/icons/slick/32x32/actions/format-text-underline.png -share/icons/slick/32x32/actions/frameprint.png -share/icons/slick/32x32/actions/fsview.png -share/icons/slick/32x32/actions/gear.png -share/icons/slick/32x32/actions/go-bottom.png -share/icons/slick/32x32/actions/go-down.png -share/icons/slick/32x32/actions/go-first.png -share/icons/slick/32x32/actions/go-home.png -share/icons/slick/32x32/actions/go-jump-locationbar.png -share/icons/slick/32x32/actions/go-last.png -share/icons/slick/32x32/actions/go-next-document.png -share/icons/slick/32x32/actions/go-next.png -share/icons/slick/32x32/actions/go-previous-document.png -share/icons/slick/32x32/actions/go-previous.png -share/icons/slick/32x32/actions/go-top.png -share/icons/slick/32x32/actions/go-up.png -share/icons/slick/32x32/actions/gohome.1.png -share/icons/slick/32x32/actions/halfencrypted.png -share/icons/slick/32x32/actions/help.png -share/icons/slick/32x32/actions/history.png -share/icons/slick/32x32/actions/idea.png -share/icons/slick/32x32/actions/imagegallery.png -share/icons/slick/32x32/actions/kde.png -share/icons/slick/32x32/actions/kde1.png -share/icons/slick/32x32/actions/khtml_kget.png -share/icons/slick/32x32/actions/klipper_dock.png -share/icons/slick/32x32/actions/kontact_contacts.png -share/icons/slick/32x32/actions/kontact_date.png -share/icons/slick/32x32/actions/kontact_journal.png -share/icons/slick/32x32/actions/kontact_mail.png -share/icons/slick/32x32/actions/kontact_news.png -share/icons/slick/32x32/actions/kontact_notes.png -share/icons/slick/32x32/actions/kontact_summary.png -share/icons/slick/32x32/actions/kontact_todo.png -share/icons/slick/32x32/actions/locationbar_erase.png -share/icons/slick/32x32/actions/mag.png -share/icons/slick/32x32/actions/mail-forward.png -share/icons/slick/32x32/actions/mail-message-new.png -share/icons/slick/32x32/actions/mail-reply-all.png -share/icons/slick/32x32/actions/mail-reply-sender.png -share/icons/slick/32x32/actions/mail-send.png -share/icons/slick/32x32/actions/mail_find.png -share/icons/slick/32x32/actions/mail_generic.png -share/icons/slick/32x32/actions/mail_get.png -share/icons/slick/32x32/actions/mail_replylist.png -share/icons/slick/32x32/actions/media-eject.png -share/icons/slick/32x32/actions/media-playback-pause.png -share/icons/slick/32x32/actions/media-playback-start.png -share/icons/slick/32x32/actions/media-playback-stop.png -share/icons/slick/32x32/actions/media-skip-backward.png -share/icons/slick/32x32/actions/media-skip-forward.png -share/icons/slick/32x32/actions/medthumbnails.png -share/icons/slick/32x32/actions/messagebox_critical.png -share/icons/slick/32x32/actions/messagebox_info.png -share/icons/slick/32x32/actions/messagebox_warning.png -share/icons/slick/32x32/actions/messagebox_warning2.png -share/icons/slick/32x32/actions/miror.png -share/icons/slick/32x32/actions/misc.png -share/icons/slick/32x32/actions/move.png -share/icons/slick/32x32/actions/multisynk.png -share/icons/slick/32x32/actions/news.png -share/icons/slick/32x32/actions/news_subscribe.png -share/icons/slick/32x32/actions/news_unsubscribe.png -share/icons/slick/32x32/actions/object-rotate-left.png -share/icons/slick/32x32/actions/object-rotate-right.png -share/icons/slick/32x32/actions/openterm.png -share/icons/slick/32x32/actions/opentermblue.png -share/icons/slick/32x32/actions/photobook.png -share/icons/slick/32x32/actions/process-stop.png -share/icons/slick/32x32/actions/queue.png -share/icons/slick/32x32/actions/reload1.png -share/icons/slick/32x32/actions/rotate.png -share/icons/slick/32x32/actions/rotation_acw.png -share/icons/slick/32x32/actions/rotation_cw.png -share/icons/slick/32x32/actions/share.png -share/icons/slick/32x32/actions/showmenu.png -share/icons/slick/32x32/actions/smallthumbnails.png -share/icons/slick/32x32/actions/stop1.png -share/icons/slick/32x32/actions/system-lock-screen.png -share/icons/slick/32x32/actions/system-run.png -share/icons/slick/32x32/actions/thumbnail.png -share/icons/slick/32x32/actions/tools-check-spelling.png -share/icons/slick/32x32/actions/unlock.png -share/icons/slick/32x32/actions/view-fullscreen.png -share/icons/slick/32x32/actions/view-refresh.png -share/icons/slick/32x32/actions/view-restore.png -share/icons/slick/32x32/actions/view.png -share/icons/slick/32x32/actions/view_choose.png -share/icons/slick/32x32/actions/view_detailed.png -share/icons/slick/32x32/actions/view_icon.png -share/icons/slick/32x32/actions/view_multicolumn.png -share/icons/slick/32x32/actions/view_sidetree.png -share/icons/slick/32x32/actions/view_text.png -share/icons/slick/32x32/actions/view_tree.png -share/icons/slick/32x32/actions/viewmag_bis+.png -share/icons/slick/32x32/actions/viewmag_bis-.png -share/icons/slick/32x32/actions/viewmag_factor.png -share/icons/slick/32x32/actions/viewmag_full.png -share/icons/slick/32x32/actions/viewmag_h.png -share/icons/slick/32x32/actions/viewmag_lock.png -share/icons/slick/32x32/actions/viewmag_no.png -share/icons/slick/32x32/actions/viewmag_old.png -share/icons/slick/32x32/actions/viewmag_w.png -share/icons/slick/32x32/actions/window-new.png -share/icons/slick/32x32/actions/window.png -share/icons/slick/32x32/actions/zoom-best-fit.png -share/icons/slick/32x32/actions/zoom-in.png -share/icons/slick/32x32/actions/zoom-out.png -share/icons/slick/32x32/actions/zoom.png -share/icons/slick/32x32/apps/akregator.png -share/icons/slick/32x32/apps/ark.png -share/icons/slick/32x32/apps/bell.png -share/icons/slick/32x32/apps/camera.png -share/icons/slick/32x32/apps/clock.png -share/icons/slick/32x32/apps/date.png -share/icons/slick/32x32/apps/energy.png -share/icons/slick/32x32/apps/filetypes.png -share/icons/slick/32x32/apps/fonts.png -share/icons/slick/32x32/apps/gimp.png -share/icons/slick/32x32/apps/go.png -share/icons/slick/32x32/apps/help_index.png -share/icons/slick/32x32/apps/icon-cartoon.png -share/icons/slick/32x32/apps/icons.png -share/icons/slick/32x32/apps/k3b.png -share/icons/slick/32x32/apps/kab.png -share/icons/slick/32x32/apps/kaddressbook.png -share/icons/slick/32x32/apps/kaudiocreator.png -share/icons/slick/32x32/apps/kcalc.png -share/icons/slick/32x32/apps/kchart.png -share/icons/slick/32x32/apps/kcmkicker.png -share/icons/slick/32x32/apps/kcmmemory.png -share/icons/slick/32x32/apps/kcmsystem.png -share/icons/slick/32x32/apps/kcontrol.png -share/icons/slick/32x32/apps/kcontrol_2.png -share/icons/slick/32x32/apps/kdf.png -share/icons/slick/32x32/apps/kdisknav.png -share/icons/slick/32x32/apps/kfind.png -share/icons/slick/32x32/apps/kfm.png -share/icons/slick/32x32/apps/kfm_home.png -share/icons/slick/32x32/apps/kformula.png -share/icons/slick/32x32/apps/kget.png -share/icons/slick/32x32/apps/khelpcenter.png -share/icons/slick/32x32/apps/kicker.png -share/icons/slick/32x32/apps/kjobviewer.png -share/icons/slick/32x32/apps/klpq.png -share/icons/slick/32x32/apps/kmail.png -share/icons/slick/32x32/apps/kmenu.png -share/icons/slick/32x32/apps/kmix.png -share/icons/slick/32x32/apps/knode.png -share/icons/slick/32x32/apps/komba2.png -share/icons/slick/32x32/apps/kompose.png -share/icons/slick/32x32/apps/konqueror.png -share/icons/slick/32x32/apps/konsole.png -share/icons/slick/32x32/apps/kontact.png -share/icons/slick/32x32/apps/kontour.png -share/icons/slick/32x32/apps/kopete.png -share/icons/slick/32x32/apps/korganizer.png -share/icons/slick/32x32/apps/kpackage.png -share/icons/slick/32x32/apps/kpf.png -share/icons/slick/32x32/apps/kppp.png -share/icons/slick/32x32/apps/kpresenter.png -share/icons/slick/32x32/apps/krayon.png -share/icons/slick/32x32/apps/kreatecd.png -share/icons/slick/32x32/apps/kscreensaver.png -share/icons/slick/32x32/apps/kspread.png -share/icons/slick/32x32/apps/ksysv.png -share/icons/slick/32x32/apps/ktip.png -share/icons/slick/32x32/apps/kugar.png -share/icons/slick/32x32/apps/kword.png -share/icons/slick/32x32/apps/kwrite.png -share/icons/slick/32x32/apps/laptop_battery.png -share/icons/slick/32x32/apps/looknfeel.png -share/icons/slick/32x32/apps/mplayer.png -share/icons/slick/32x32/apps/multimedia.png -share/icons/slick/32x32/apps/noatun.png -share/icons/slick/32x32/apps/noatun2.png -share/icons/slick/32x32/apps/opera.png -share/icons/slick/32x32/apps/package.png -share/icons/slick/32x32/apps/package_development.png -share/icons/slick/32x32/apps/package_editors.png -share/icons/slick/32x32/apps/package_games.png -share/icons/slick/32x32/apps/package_games1.png -share/icons/slick/32x32/apps/package_graphics.png -share/icons/slick/32x32/apps/package_graphics1.png -share/icons/slick/32x32/apps/package_graphics2.png -share/icons/slick/32x32/apps/package_multimedia.png -share/icons/slick/32x32/apps/package_network.png -share/icons/slick/32x32/apps/package_office.png -share/icons/slick/32x32/apps/package_settings.png -share/icons/slick/32x32/apps/package_system.png -share/icons/slick/32x32/apps/package_toys.png -share/icons/slick/32x32/apps/package_utilities.png -share/icons/slick/32x32/apps/penguin.png -share/icons/slick/32x32/apps/remote.png -share/icons/slick/32x32/apps/samba.png -share/icons/slick/32x32/apps/showimg.png -share/icons/slick/32x32/apps/smb4k.png -share/icons/slick/32x32/apps/speaker.png -share/icons/slick/32x32/apps/trees.png -share/icons/slick/32x32/apps/tux.png -share/icons/slick/32x32/apps/vmware.png -share/icons/slick/32x32/apps/window_list.png -share/icons/slick/32x32/apps/xapp.png -share/icons/slick/32x32/apps/xmms.png -share/icons/slick/32x32/devices/3floppy_mount.png -share/icons/slick/32x32/devices/3floppy_unmount.png -share/icons/slick/32x32/devices/camera.png -share/icons/slick/32x32/devices/camera_mount.png -share/icons/slick/32x32/devices/camera_unmount.png -share/icons/slick/32x32/devices/cd.png -share/icons/slick/32x32/devices/cdaudio_mount.png -share/icons/slick/32x32/devices/cdaudio_unmount.png -share/icons/slick/32x32/devices/cdrom_mount.png -share/icons/slick/32x32/devices/cdrom_unmount.png -share/icons/slick/32x32/devices/cdwriter_mount.png -share/icons/slick/32x32/devices/cdwriter_unmount.png -share/icons/slick/32x32/devices/dvd_mount.png -share/icons/slick/32x32/devices/dvd_unmount.png -share/icons/slick/32x32/devices/hdd_games.png -share/icons/slick/32x32/devices/hdd_gfx.png -share/icons/slick/32x32/devices/hdd_linux.png -share/icons/slick/32x32/devices/hdd_mount.png -share/icons/slick/32x32/devices/hdd_system.png -share/icons/slick/32x32/devices/hdd_unmount.png -share/icons/slick/32x32/devices/hdd_www.png -share/icons/slick/32x32/devices/memory.png -share/icons/slick/32x32/devices/nfs_mount.png -share/icons/slick/32x32/devices/nfs_unmount.png -share/icons/slick/32x32/devices/print_printer.png -share/icons/slick/32x32/devices/printer1.png -share/icons/slick/32x32/devices/printer2.png -share/icons/slick/32x32/devices/usbpendrive_mount.png -share/icons/slick/32x32/devices/usbpendrive_unmount.png -share/icons/slick/32x32/mimetypes/applix.png -share/icons/slick/32x32/mimetypes/archive.png -share/icons/slick/32x32/mimetypes/ascii.png -share/icons/slick/32x32/mimetypes/binary.png -share/icons/slick/32x32/mimetypes/binary2.png -share/icons/slick/32x32/mimetypes/cdimage.png -share/icons/slick/32x32/mimetypes/cdr.png -share/icons/slick/32x32/mimetypes/cdtrack.png -share/icons/slick/32x32/mimetypes/colorscm.png -share/icons/slick/32x32/mimetypes/colorset.png -share/icons/slick/32x32/mimetypes/configure_script.png -share/icons/slick/32x32/mimetypes/core.png -share/icons/slick/32x32/mimetypes/deb.png -share/icons/slick/32x32/mimetypes/develop.png -share/icons/slick/32x32/mimetypes/disk_image.png -share/icons/slick/32x32/mimetypes/doc.png -share/icons/slick/32x32/mimetypes/document.png -share/icons/slick/32x32/mimetypes/document2.png -share/icons/slick/32x32/mimetypes/dvi.png -share/icons/slick/32x32/mimetypes/font_bitmap.png -share/icons/slick/32x32/mimetypes/font_truetype.png -share/icons/slick/32x32/mimetypes/font_type1.png -share/icons/slick/32x32/mimetypes/html.png -share/icons/slick/32x32/mimetypes/image.png -share/icons/slick/32x32/mimetypes/info.png -share/icons/slick/32x32/mimetypes/karchiveur_trash.png -share/icons/slick/32x32/mimetypes/kmultiple.png -share/icons/slick/32x32/mimetypes/log.png -share/icons/slick/32x32/mimetypes/make.png -share/icons/slick/32x32/mimetypes/man.png -share/icons/slick/32x32/mimetypes/message.png -share/icons/slick/32x32/mimetypes/midi.png -share/icons/slick/32x32/mimetypes/mime_empty.png -share/icons/slick/32x32/mimetypes/misc_doc.png -share/icons/slick/32x32/mimetypes/mp3.png -share/icons/slick/32x32/mimetypes/netscape_doc.png -share/icons/slick/32x32/mimetypes/pdf.png -share/icons/slick/32x32/mimetypes/postscript.png -share/icons/slick/32x32/mimetypes/pov.png -share/icons/slick/32x32/mimetypes/readme.png -share/icons/slick/32x32/mimetypes/real_doc.png -share/icons/slick/32x32/mimetypes/recycled.png -share/icons/slick/32x32/mimetypes/resource.png -share/icons/slick/32x32/mimetypes/rpm.png -share/icons/slick/32x32/mimetypes/ruby.png -share/icons/slick/32x32/mimetypes/shellscript.png -share/icons/slick/32x32/mimetypes/soffice.png -share/icons/slick/32x32/mimetypes/sound.png -share/icons/slick/32x32/mimetypes/source.png -share/icons/slick/32x32/mimetypes/source_c.png -share/icons/slick/32x32/mimetypes/source_cpp.png -share/icons/slick/32x32/mimetypes/source_f.png -share/icons/slick/32x32/mimetypes/source_h.png -share/icons/slick/32x32/mimetypes/source_java.png -share/icons/slick/32x32/mimetypes/source_l.png -share/icons/slick/32x32/mimetypes/source_moc.png -share/icons/slick/32x32/mimetypes/source_o.png -share/icons/slick/32x32/mimetypes/source_p.png -share/icons/slick/32x32/mimetypes/source_php.png -share/icons/slick/32x32/mimetypes/source_pl.png -share/icons/slick/32x32/mimetypes/source_py.png -share/icons/slick/32x32/mimetypes/source_s.png -share/icons/slick/32x32/mimetypes/source_y.png -share/icons/slick/32x32/mimetypes/tar.png -share/icons/slick/32x32/mimetypes/tgz.png -share/icons/slick/32x32/mimetypes/txt.png -share/icons/slick/32x32/mimetypes/unknown.png -share/icons/slick/32x32/mimetypes/vcard.png -share/icons/slick/32x32/mimetypes/video.png -share/icons/slick/32x32/mimetypes/war.png -share/icons/slick/32x32/mimetypes/widget_doc.png -share/icons/slick/32x32/mimetypes/wordprocessing.png -share/icons/slick/32x32/mimetypes/xcf.png -share/icons/slick/48x48/actions/application-exit.png -share/icons/slick/48x48/actions/cdcopy.png -share/icons/slick/48x48/actions/configure.png -share/icons/slick/48x48/actions/document-open.png -share/icons/slick/48x48/actions/fork.png -share/icons/slick/48x48/actions/gear.png -share/icons/slick/48x48/actions/go-home.png -share/icons/slick/48x48/actions/help.png -share/icons/slick/48x48/actions/kontact_calender.png -share/icons/slick/48x48/actions/kontact_contacts.png -share/icons/slick/48x48/actions/kontact_date.png -share/icons/slick/48x48/actions/kontact_journal.png -share/icons/slick/48x48/actions/kontact_mail.png -share/icons/slick/48x48/actions/kontact_summary.png -share/icons/slick/48x48/actions/kontact_todo.png -share/icons/slick/48x48/actions/launch.png -share/icons/slick/48x48/actions/media-playback-start.png -share/icons/slick/48x48/actions/messagebox_critical.png -share/icons/slick/48x48/actions/messagebox_info.png -share/icons/slick/48x48/actions/messagebox_warning.png -share/icons/slick/48x48/actions/multisynk.png -share/icons/slick/48x48/actions/share.png -share/icons/slick/48x48/actions/system-lock-screen.png -share/icons/slick/48x48/apps/ark.png -share/icons/slick/48x48/apps/background.png -share/icons/slick/48x48/apps/bell.png -share/icons/slick/48x48/apps/cdbakeoven.png -share/icons/slick/48x48/apps/clock.png -share/icons/slick/48x48/apps/energy.png -share/icons/slick/48x48/apps/filetypes.png -share/icons/slick/48x48/apps/fonts.png -share/icons/slick/48x48/apps/gimp.png -share/icons/slick/48x48/apps/go.png -share/icons/slick/48x48/apps/help_index.png -share/icons/slick/48x48/apps/icon-cartoon.png -share/icons/slick/48x48/apps/icon-confused.png -share/icons/slick/48x48/apps/icon-greenies.png -share/icons/slick/48x48/apps/icons.png -share/icons/slick/48x48/apps/k3b.png -share/icons/slick/48x48/apps/kab.png -share/icons/slick/48x48/apps/kaddressbook.png -share/icons/slick/48x48/apps/kate.png -share/icons/slick/48x48/apps/kcalc.png -share/icons/slick/48x48/apps/kchart.png -share/icons/slick/48x48/apps/kcmkicker.png -share/icons/slick/48x48/apps/kcmkwm.png -share/icons/slick/48x48/apps/kcmprocessor.png -share/icons/slick/48x48/apps/kcmsystem.png -share/icons/slick/48x48/apps/kcontrol.png -share/icons/slick/48x48/apps/kcontrol_2.png -share/icons/slick/48x48/apps/kdf.png -share/icons/slick/48x48/apps/kdisknav.png -share/icons/slick/48x48/apps/kfind.png -share/icons/slick/48x48/apps/kfm.png -share/icons/slick/48x48/apps/kfm_home.png -share/icons/slick/48x48/apps/kformula.png -share/icons/slick/48x48/apps/khelpcenter.png -share/icons/slick/48x48/apps/kicker.png -share/icons/slick/48x48/apps/kjobviewer.png -share/icons/slick/48x48/apps/klpg.png -share/icons/slick/48x48/apps/klpq.png -share/icons/slick/48x48/apps/kmail.old.png -share/icons/slick/48x48/apps/kmail.png -share/icons/slick/48x48/apps/kmenu.png -share/icons/slick/48x48/apps/kmix.png -share/icons/slick/48x48/apps/knode.png -share/icons/slick/48x48/apps/komba2.png -share/icons/slick/48x48/apps/koncd.png -share/icons/slick/48x48/apps/konqueror.png -share/icons/slick/48x48/apps/konsole.png -share/icons/slick/48x48/apps/kontact.png -share/icons/slick/48x48/apps/kontour.png -share/icons/slick/48x48/apps/kopete.png -share/icons/slick/48x48/apps/korganizer.png -share/icons/slick/48x48/apps/kpackage.png -share/icons/slick/48x48/apps/kpf.png -share/icons/slick/48x48/apps/kppp.png -share/icons/slick/48x48/apps/kpresenter.png -share/icons/slick/48x48/apps/kprintfax.png -share/icons/slick/48x48/apps/krayon.png -share/icons/slick/48x48/apps/kreatecd.png -share/icons/slick/48x48/apps/krfb.png -share/icons/slick/48x48/apps/kscreensaver.png -share/icons/slick/48x48/apps/kspread.png -share/icons/slick/48x48/apps/ksysv.png -share/icons/slick/48x48/apps/kugar.png -share/icons/slick/48x48/apps/kword.png -share/icons/slick/48x48/apps/kwrite.png -share/icons/slick/48x48/apps/laptop_battery.png -share/icons/slick/48x48/apps/licq.png -share/icons/slick/48x48/apps/looknfeel.png -share/icons/slick/48x48/apps/mplayer.png -share/icons/slick/48x48/apps/multimedia.png -share/icons/slick/48x48/apps/noatun.png -share/icons/slick/48x48/apps/noatun2.png -share/icons/slick/48x48/apps/opera.png -share/icons/slick/48x48/apps/package.png -share/icons/slick/48x48/apps/package_development.png -share/icons/slick/48x48/apps/package_editors.png -share/icons/slick/48x48/apps/package_games.png -share/icons/slick/48x48/apps/package_games1.png -share/icons/slick/48x48/apps/package_graphics.png -share/icons/slick/48x48/apps/package_graphics1.png -share/icons/slick/48x48/apps/package_graphics2.png -share/icons/slick/48x48/apps/package_multimedia.png -share/icons/slick/48x48/apps/package_network.png -share/icons/slick/48x48/apps/package_settings.png -share/icons/slick/48x48/apps/package_system.png -share/icons/slick/48x48/apps/package_toys.png -share/icons/slick/48x48/apps/package_utilities.png -share/icons/slick/48x48/apps/penguin.png -share/icons/slick/48x48/apps/personal.png -share/icons/slick/48x48/apps/remote.png -share/icons/slick/48x48/apps/samba.png -share/icons/slick/48x48/apps/showimg.png -share/icons/slick/48x48/apps/smb4k.png -share/icons/slick/48x48/apps/speaker.png -share/icons/slick/48x48/apps/telnet.png -share/icons/slick/48x48/apps/trees.png -share/icons/slick/48x48/apps/tux.png -share/icons/slick/48x48/apps/vmware.png -share/icons/slick/48x48/apps/window_list.png -share/icons/slick/48x48/apps/xapp.png -share/icons/slick/48x48/apps/xmms.png -share/icons/slick/48x48/devices/3floppy_mount.png -share/icons/slick/48x48/devices/3floppy_unmount.png -share/icons/slick/48x48/devices/camera.png -share/icons/slick/48x48/devices/camera_mount.png -share/icons/slick/48x48/devices/camera_unmount.png -share/icons/slick/48x48/devices/cd.png -share/icons/slick/48x48/devices/cdaudio_mount.png -share/icons/slick/48x48/devices/cdaudio_unmount.png -share/icons/slick/48x48/devices/cdrom_mount.png -share/icons/slick/48x48/devices/cdrom_mount_1.png -share/icons/slick/48x48/devices/cdrom_unmount.png -share/icons/slick/48x48/devices/cdwriter_mount.png -share/icons/slick/48x48/devices/cdwriter_unmount.png -share/icons/slick/48x48/devices/dvd_mount.png -share/icons/slick/48x48/devices/dvd_unmount.png -share/icons/slick/48x48/devices/hdd_games.png -share/icons/slick/48x48/devices/hdd_gfx.png -share/icons/slick/48x48/devices/hdd_linux.png -share/icons/slick/48x48/devices/hdd_mount.png -share/icons/slick/48x48/devices/hdd_system.png -share/icons/slick/48x48/devices/hdd_unmount.png -share/icons/slick/48x48/devices/hdd_www.png -share/icons/slick/48x48/devices/memory.png -share/icons/slick/48x48/devices/nfs_mount.png -share/icons/slick/48x48/devices/nfs_unmount.png -share/icons/slick/48x48/devices/print_printer.png -share/icons/slick/48x48/devices/printer1.png -share/icons/slick/48x48/devices/usbpendrive_mount.png -share/icons/slick/48x48/devices/usbpendrive_unmount.png -share/icons/slick/48x48/mimetypes/applix.png -share/icons/slick/48x48/mimetypes/archive.png -share/icons/slick/48x48/mimetypes/ascii.png -share/icons/slick/48x48/mimetypes/binary.png -share/icons/slick/48x48/mimetypes/binary2.png -share/icons/slick/48x48/mimetypes/cdimage.png -share/icons/slick/48x48/mimetypes/cdr.png -share/icons/slick/48x48/mimetypes/cdtrack.png -share/icons/slick/48x48/mimetypes/colorscm.png -share/icons/slick/48x48/mimetypes/colorset.png -share/icons/slick/48x48/mimetypes/configure_script.png -share/icons/slick/48x48/mimetypes/core.png -share/icons/slick/48x48/mimetypes/deb.png -share/icons/slick/48x48/mimetypes/develop.png -share/icons/slick/48x48/mimetypes/disk_image.png -share/icons/slick/48x48/mimetypes/document.png -share/icons/slick/48x48/mimetypes/document2.png -share/icons/slick/48x48/mimetypes/dvi.png -share/icons/slick/48x48/mimetypes/empty.png -share/icons/slick/48x48/mimetypes/encrypted.png -share/icons/slick/48x48/mimetypes/font_bitmap.png -share/icons/slick/48x48/mimetypes/font_truetype.png -share/icons/slick/48x48/mimetypes/font_type1.png -share/icons/slick/48x48/mimetypes/gettext.png -share/icons/slick/48x48/mimetypes/html.png -share/icons/slick/48x48/mimetypes/image.png -share/icons/slick/48x48/mimetypes/images.png -share/icons/slick/48x48/mimetypes/info.png -share/icons/slick/48x48/mimetypes/jar.png -share/icons/slick/48x48/mimetypes/kmultiple.png -share/icons/slick/48x48/mimetypes/kspread_ksp.png -share/icons/slick/48x48/mimetypes/kugar_kud.png -share/icons/slick/48x48/mimetypes/kword_kwd.png -share/icons/slick/48x48/mimetypes/log.png -share/icons/slick/48x48/mimetypes/make.png -share/icons/slick/48x48/mimetypes/man.png -share/icons/slick/48x48/mimetypes/message.png -share/icons/slick/48x48/mimetypes/midi.png -share/icons/slick/48x48/mimetypes/mime_empty.png -share/icons/slick/48x48/mimetypes/mime_html.png -share/icons/slick/48x48/mimetypes/mime_sound.png -share/icons/slick/48x48/mimetypes/mime_track.png -share/icons/slick/48x48/mimetypes/mime_txt.png -share/icons/slick/48x48/mimetypes/misc_doc.png -share/icons/slick/48x48/mimetypes/mp3.png -share/icons/slick/48x48/mimetypes/ms_access.png -share/icons/slick/48x48/mimetypes/ms_excel.png -share/icons/slick/48x48/mimetypes/ms_powerpoint.png -share/icons/slick/48x48/mimetypes/ms_word.png -share/icons/slick/48x48/mimetypes/netscape_doc.png -share/icons/slick/48x48/mimetypes/pdf.png -share/icons/slick/48x48/mimetypes/person.png -share/icons/slick/48x48/mimetypes/postscript.png -share/icons/slick/48x48/mimetypes/pov.png -share/icons/slick/48x48/mimetypes/readme.png -share/icons/slick/48x48/mimetypes/real_doc.png -share/icons/slick/48x48/mimetypes/recycled.png -share/icons/slick/48x48/mimetypes/resource.png -share/icons/slick/48x48/mimetypes/rpm.png -share/icons/slick/48x48/mimetypes/ruby.png -share/icons/slick/48x48/mimetypes/shellscript.png -share/icons/slick/48x48/mimetypes/soffice.png -share/icons/slick/48x48/mimetypes/sound.png -share/icons/slick/48x48/mimetypes/source.png -share/icons/slick/48x48/mimetypes/source_c.png -share/icons/slick/48x48/mimetypes/source_cpp.png -share/icons/slick/48x48/mimetypes/source_f.png -share/icons/slick/48x48/mimetypes/source_h.png -share/icons/slick/48x48/mimetypes/source_java.png -share/icons/slick/48x48/mimetypes/source_l.png -share/icons/slick/48x48/mimetypes/source_moc.png -share/icons/slick/48x48/mimetypes/source_o.png -share/icons/slick/48x48/mimetypes/source_p.png -share/icons/slick/48x48/mimetypes/source_php.png -share/icons/slick/48x48/mimetypes/source_pl.png -share/icons/slick/48x48/mimetypes/source_py.png -share/icons/slick/48x48/mimetypes/source_s.png -share/icons/slick/48x48/mimetypes/source_y.png -share/icons/slick/48x48/mimetypes/spreadsheet.png -share/icons/slick/48x48/mimetypes/tar.png -share/icons/slick/48x48/mimetypes/tex.png -share/icons/slick/48x48/mimetypes/tgz.png -share/icons/slick/48x48/mimetypes/txt.png -share/icons/slick/48x48/mimetypes/unknown.png -share/icons/slick/48x48/mimetypes/vcard.png -share/icons/slick/48x48/mimetypes/vectorgfx.png -share/icons/slick/48x48/mimetypes/video.png -share/icons/slick/48x48/mimetypes/war.png -share/icons/slick/48x48/mimetypes/widget_doc.png -share/icons/slick/48x48/mimetypes/wordprocessing.png -share/icons/slick/48x48/mimetypes/xcf.png -share/icons/slick/48x48/mimetypes/zip.png -share/icons/slick/64x64/actions/application-exit.png -share/icons/slick/64x64/actions/bookmark-new.png -share/icons/slick/64x64/actions/bookmark.png -share/icons/slick/64x64/actions/cdcopy.png -share/icons/slick/64x64/actions/document-print.png -share/icons/slick/64x64/actions/fork.png -share/icons/slick/64x64/actions/gear.png -share/icons/slick/64x64/actions/go-home.png -share/icons/slick/64x64/actions/launch.png -share/icons/slick/64x64/actions/share.png -share/icons/slick/64x64/actions/share1.png -share/icons/slick/64x64/actions/system-lock-screen.png -share/icons/slick/64x64/apps/kcalc.png -share/icons/slick/64x64/apps/kcontrol.png -share/icons/slick/64x64/apps/kfm_home.png -share/icons/slick/64x64/apps/kmail.png -share/icons/slick/64x64/apps/kmenu.png -share/icons/slick/64x64/apps/komba2.png -share/icons/slick/64x64/apps/konsole.png -share/icons/slick/64x64/apps/kontact.png -share/icons/slick/64x64/apps/package_settings.png -share/icons/slick/64x64/apps/samba.png -share/icons/slick/64x64/apps/terminal.png -share/icons/slick/64x64/devices/3floppy_mount.png -share/icons/slick/64x64/devices/3floppy_unmount.png -share/icons/slick/64x64/devices/blockdevice.png -share/icons/slick/64x64/devices/camera.png -share/icons/slick/64x64/devices/camera_mount.png -share/icons/slick/64x64/devices/camera_unmount.png -share/icons/slick/64x64/devices/cd.png -share/icons/slick/64x64/devices/cdaudio_mount.png -share/icons/slick/64x64/devices/cdaudio_unmount.png -share/icons/slick/64x64/devices/cdrom_mount.png -share/icons/slick/64x64/devices/cdrom_unmount.png -share/icons/slick/64x64/devices/cdwriter_mount.png -share/icons/slick/64x64/devices/cdwriter_unmount.png -share/icons/slick/64x64/devices/dvd_mount.png -share/icons/slick/64x64/devices/dvd_unmount.png -share/icons/slick/64x64/devices/hdd.png -share/icons/slick/64x64/devices/hdd_games.png -share/icons/slick/64x64/devices/hdd_gfx.png -share/icons/slick/64x64/devices/hdd_linux.png -share/icons/slick/64x64/devices/hdd_mount.png -share/icons/slick/64x64/devices/hdd_system.png -share/icons/slick/64x64/devices/hdd_unmount.png -share/icons/slick/64x64/devices/hdd_www.png -share/icons/slick/64x64/devices/memory.png -share/icons/slick/64x64/devices/nfs.png -share/icons/slick/64x64/devices/nfs_mount.png -share/icons/slick/64x64/devices/nfs_unmount.png -share/icons/slick/64x64/devices/print_printer.png -share/icons/slick/64x64/devices/printer1.png -share/icons/slick/64x64/devices/usbpendrive_mount.png -share/icons/slick/64x64/devices/usbpendrive_unmount.png -share/icons/slick/64x64/mimetypes/applix.png -share/icons/slick/64x64/mimetypes/archive.png -share/icons/slick/64x64/mimetypes/ascii.png -share/icons/slick/64x64/mimetypes/binary.png -share/icons/slick/64x64/mimetypes/binary2.png -share/icons/slick/64x64/mimetypes/cdimage.png -share/icons/slick/64x64/mimetypes/cdr.png -share/icons/slick/64x64/mimetypes/cdtrack.png -share/icons/slick/64x64/mimetypes/colorscm.png -share/icons/slick/64x64/mimetypes/colorset.png -share/icons/slick/64x64/mimetypes/configure_script.png -share/icons/slick/64x64/mimetypes/core.png -share/icons/slick/64x64/mimetypes/deb.png -share/icons/slick/64x64/mimetypes/develop.png -share/icons/slick/64x64/mimetypes/disk_image.png -share/icons/slick/64x64/mimetypes/document.png -share/icons/slick/64x64/mimetypes/document2.png -share/icons/slick/64x64/mimetypes/dvi.png -share/icons/slick/64x64/mimetypes/encrypted.png -share/icons/slick/64x64/mimetypes/font_bitmap.png -share/icons/slick/64x64/mimetypes/font_truetype.png -share/icons/slick/64x64/mimetypes/font_type1.png -share/icons/slick/64x64/mimetypes/gettext.png -share/icons/slick/64x64/mimetypes/html.png -share/icons/slick/64x64/mimetypes/image.png -share/icons/slick/64x64/mimetypes/images.png -share/icons/slick/64x64/mimetypes/info.png -share/icons/slick/64x64/mimetypes/jar.png -share/icons/slick/64x64/mimetypes/kget.png -share/icons/slick/64x64/mimetypes/kmultiple.png -share/icons/slick/64x64/mimetypes/log.png -share/icons/slick/64x64/mimetypes/make.png -share/icons/slick/64x64/mimetypes/man.png -share/icons/slick/64x64/mimetypes/message.png -share/icons/slick/64x64/mimetypes/midi.png -share/icons/slick/64x64/mimetypes/mime_empty.png -share/icons/slick/64x64/mimetypes/mime_html.png -share/icons/slick/64x64/mimetypes/mime_image.png -share/icons/slick/64x64/mimetypes/mime_sound.png -share/icons/slick/64x64/mimetypes/mime_track.png -share/icons/slick/64x64/mimetypes/mime_txt.png -share/icons/slick/64x64/mimetypes/misc_doc.png -share/icons/slick/64x64/mimetypes/mp3.png -share/icons/slick/64x64/mimetypes/ms_access.png -share/icons/slick/64x64/mimetypes/ms_excel.png -share/icons/slick/64x64/mimetypes/ms_powerpoint.png -share/icons/slick/64x64/mimetypes/ms_word.png -share/icons/slick/64x64/mimetypes/netscape_doc.png -share/icons/slick/64x64/mimetypes/pdf.png -share/icons/slick/64x64/mimetypes/person.png -share/icons/slick/64x64/mimetypes/postscript.png -share/icons/slick/64x64/mimetypes/pov.png -share/icons/slick/64x64/mimetypes/readme.png -share/icons/slick/64x64/mimetypes/real_doc.png -share/icons/slick/64x64/mimetypes/recycled.png -share/icons/slick/64x64/mimetypes/resource.png -share/icons/slick/64x64/mimetypes/rpm.png -share/icons/slick/64x64/mimetypes/ruby.png -share/icons/slick/64x64/mimetypes/shellscript.png -share/icons/slick/64x64/mimetypes/soffice.png -share/icons/slick/64x64/mimetypes/sound.png -share/icons/slick/64x64/mimetypes/source.png -share/icons/slick/64x64/mimetypes/source_c.png -share/icons/slick/64x64/mimetypes/source_cpp.png -share/icons/slick/64x64/mimetypes/source_f.png -share/icons/slick/64x64/mimetypes/source_h.png -share/icons/slick/64x64/mimetypes/source_java.png -share/icons/slick/64x64/mimetypes/source_l.png -share/icons/slick/64x64/mimetypes/source_moc.png -share/icons/slick/64x64/mimetypes/source_o.png -share/icons/slick/64x64/mimetypes/source_p.png -share/icons/slick/64x64/mimetypes/source_pl.png -share/icons/slick/64x64/mimetypes/source_py.png -share/icons/slick/64x64/mimetypes/source_s.png -share/icons/slick/64x64/mimetypes/source_y.png -share/icons/slick/64x64/mimetypes/spreadsheet.png -share/icons/slick/64x64/mimetypes/tar.png -share/icons/slick/64x64/mimetypes/tex.png -share/icons/slick/64x64/mimetypes/tgz.png -share/icons/slick/64x64/mimetypes/txt.png -share/icons/slick/64x64/mimetypes/unknown.png -share/icons/slick/64x64/mimetypes/vcard.png -share/icons/slick/64x64/mimetypes/vectorgfx.png -share/icons/slick/64x64/mimetypes/video.png -share/icons/slick/64x64/mimetypes/war.png -share/icons/slick/64x64/mimetypes/widget_doc.png -share/icons/slick/64x64/mimetypes/wordprocessing.png -share/icons/slick/64x64/mimetypes/xcf.png -share/icons/slick/64x64/mimetypes/zip.png -share/icons/slick/index.theme share/kde4/services/ScreenSavers/KBanner.desktop share/kde4/services/ScreenSavers/KBlob.desktop share/kde4/services/ScreenSavers/KClock.desktop @@ -14656,255 +3127,353 @@ share/kde4/services/ScreenSavers/KRotation.desktop share/kde4/services/ScreenSavers/KScience.desktop share/kde4/services/ScreenSavers/KSlideshow.desktop share/kde4/services/ScreenSavers/KSolarWinds.desktop +share/kde4/services/ScreenSavers/KSwarm.desktop share/kde4/services/ScreenSavers/KVm.desktop share/kde4/services/ScreenSavers/KWave.desktop +share/kde4/services/ScreenSavers/anemone.desktop +share/kde4/services/ScreenSavers/anemotaxis.desktop +share/kde4/services/ScreenSavers/ant.desktop +share/kde4/services/ScreenSavers/antinspect.desktop +share/kde4/services/ScreenSavers/antspotlight.desktop +share/kde4/services/ScreenSavers/apollonian.desktop +share/kde4/services/ScreenSavers/apple2.desktop +share/kde4/services/ScreenSavers/asciiquarium.desktop +share/kde4/services/ScreenSavers/atlantis.desktop +share/kde4/services/ScreenSavers/attraction.desktop +share/kde4/services/ScreenSavers/atunnel.desktop +share/kde4/services/ScreenSavers/barcode.desktop +share/kde4/services/ScreenSavers/blaster.desktop +share/kde4/services/ScreenSavers/blinkbox.desktop +share/kde4/services/ScreenSavers/blitspin.desktop +share/kde4/services/ScreenSavers/blocktube.desktop +share/kde4/services/ScreenSavers/bouboule.desktop +share/kde4/services/ScreenSavers/bouncingcow.desktop +share/kde4/services/ScreenSavers/boxed.desktop +share/kde4/services/ScreenSavers/braid.desktop +share/kde4/services/ScreenSavers/bsod.desktop +share/kde4/services/ScreenSavers/bubble3d.desktop +share/kde4/services/ScreenSavers/bubbles.desktop +share/kde4/services/ScreenSavers/bumps.desktop +share/kde4/services/ScreenSavers/cage.desktop +share/kde4/services/ScreenSavers/ccurve.desktop +share/kde4/services/ScreenSavers/circuit.desktop +share/kde4/services/ScreenSavers/cloudlife.desktop +share/kde4/services/ScreenSavers/compass.desktop +share/kde4/services/ScreenSavers/coral.desktop +share/kde4/services/ScreenSavers/critical.desktop +share/kde4/services/ScreenSavers/crystal.desktop +share/kde4/services/ScreenSavers/cubenetic.desktop +share/kde4/services/ScreenSavers/cubestorm.desktop +share/kde4/services/ScreenSavers/cynosure.desktop +share/kde4/services/ScreenSavers/dangerball.desktop +share/kde4/services/ScreenSavers/decayscreen.desktop +share/kde4/services/ScreenSavers/deco.desktop +share/kde4/services/ScreenSavers/deluxe.desktop +share/kde4/services/ScreenSavers/demon.desktop +share/kde4/services/ScreenSavers/discrete.desktop +share/kde4/services/ScreenSavers/distort.desktop +share/kde4/services/ScreenSavers/drift.desktop +share/kde4/services/ScreenSavers/endgame.desktop +share/kde4/services/ScreenSavers/engine.desktop +share/kde4/services/ScreenSavers/epicycle.desktop +share/kde4/services/ScreenSavers/eruption.desktop +share/kde4/services/ScreenSavers/euler2d.desktop +share/kde4/services/ScreenSavers/extrusion.desktop +share/kde4/services/ScreenSavers/fadeplot.desktop +share/kde4/services/ScreenSavers/fireworkx.desktop +share/kde4/services/ScreenSavers/flag.desktop +share/kde4/services/ScreenSavers/flame.desktop +share/kde4/services/ScreenSavers/flipflop.desktop +share/kde4/services/ScreenSavers/flipscreen3d.desktop +share/kde4/services/ScreenSavers/flow.desktop +share/kde4/services/ScreenSavers/fluidballs.desktop +share/kde4/services/ScreenSavers/flurry.desktop +share/kde4/services/ScreenSavers/flyingtoasters.desktop +share/kde4/services/ScreenSavers/fontglide.desktop +share/kde4/services/ScreenSavers/forest.desktop +share/kde4/services/ScreenSavers/fuzzyflakes.desktop +share/kde4/services/ScreenSavers/galaxy.desktop +share/kde4/services/ScreenSavers/gears.desktop +share/kde4/services/ScreenSavers/gflux.desktop +share/kde4/services/ScreenSavers/glblur.desktop +share/kde4/services/ScreenSavers/gleidescope.desktop +share/kde4/services/ScreenSavers/glforestfire.desktop +share/kde4/services/ScreenSavers/glknots.desktop +share/kde4/services/ScreenSavers/glmatrix.desktop +share/kde4/services/ScreenSavers/glplanet.desktop +share/kde4/services/ScreenSavers/glslideshow.desktop +share/kde4/services/ScreenSavers/glsnake.desktop +share/kde4/services/ScreenSavers/gltext.desktop +share/kde4/services/ScreenSavers/goop.desktop +share/kde4/services/ScreenSavers/grav.desktop +share/kde4/services/ScreenSavers/greynetic.desktop +share/kde4/services/ScreenSavers/halftone.desktop +share/kde4/services/ScreenSavers/halo.desktop +share/kde4/services/ScreenSavers/helix.desktop +share/kde4/services/ScreenSavers/hopalong.desktop +share/kde4/services/ScreenSavers/hyperball.desktop +share/kde4/services/ScreenSavers/hypercube.desktop +share/kde4/services/ScreenSavers/hypertorus.desktop +share/kde4/services/ScreenSavers/ifs.desktop +share/kde4/services/ScreenSavers/imsmap.desktop +share/kde4/services/ScreenSavers/interference.desktop +share/kde4/services/ScreenSavers/intermomentary.desktop +share/kde4/services/ScreenSavers/jigglypuff.desktop +share/kde4/services/ScreenSavers/jigsaw.desktop +share/kde4/services/ScreenSavers/juggle.desktop +share/kde4/services/ScreenSavers/julia.desktop +share/kde4/services/ScreenSavers/kaleidescope.desktop +share/kde4/services/ScreenSavers/klein.desktop share/kde4/services/ScreenSavers/kpartsaver.desktop +share/kde4/services/ScreenSavers/kumppa.desktop +share/kde4/services/ScreenSavers/lament.desktop +share/kde4/services/ScreenSavers/laser.desktop +share/kde4/services/ScreenSavers/lavalite.desktop +share/kde4/services/ScreenSavers/lightning.desktop +share/kde4/services/ScreenSavers/lisa.desktop +share/kde4/services/ScreenSavers/lissie.desktop +share/kde4/services/ScreenSavers/lmorph.desktop +share/kde4/services/ScreenSavers/loop.desktop +share/kde4/services/ScreenSavers/maze.desktop +share/kde4/services/ScreenSavers/memscroller.desktop +share/kde4/services/ScreenSavers/menger.desktop +share/kde4/services/ScreenSavers/metaballs.desktop +share/kde4/services/ScreenSavers/mirrorblob.desktop +share/kde4/services/ScreenSavers/mismunch.desktop +share/kde4/services/ScreenSavers/moebius.desktop +share/kde4/services/ScreenSavers/moire.desktop +share/kde4/services/ScreenSavers/moire2.desktop +share/kde4/services/ScreenSavers/molecule.desktop +share/kde4/services/ScreenSavers/morph3d.desktop +share/kde4/services/ScreenSavers/mountain.desktop +share/kde4/services/ScreenSavers/munch.desktop +share/kde4/services/ScreenSavers/nerverot.desktop +share/kde4/services/ScreenSavers/noof.desktop +share/kde4/services/ScreenSavers/noseguy.desktop +share/kde4/services/ScreenSavers/pacman.desktop +share/kde4/services/ScreenSavers/pedal.desktop +share/kde4/services/ScreenSavers/penetrate.desktop +share/kde4/services/ScreenSavers/penrose.desktop +share/kde4/services/ScreenSavers/petri.desktop +share/kde4/services/ScreenSavers/phosphor.desktop +share/kde4/services/ScreenSavers/piecewise.desktop +share/kde4/services/ScreenSavers/pinion.desktop +share/kde4/services/ScreenSavers/pipes.desktop +share/kde4/services/ScreenSavers/pixmaps.desktop +share/kde4/services/ScreenSavers/polyhedra.desktop +share/kde4/services/ScreenSavers/polyominoes.desktop +share/kde4/services/ScreenSavers/polytopes.desktop +share/kde4/services/ScreenSavers/pong.desktop +share/kde4/services/ScreenSavers/popsquares.desktop +share/kde4/services/ScreenSavers/providence.desktop +share/kde4/services/ScreenSavers/pulsar.desktop +share/kde4/services/ScreenSavers/pyro.desktop +share/kde4/services/ScreenSavers/qix.desktop +share/kde4/services/ScreenSavers/queens.desktop +share/kde4/services/ScreenSavers/rd-bomb.desktop +share/kde4/services/ScreenSavers/ripples.desktop +share/kde4/services/ScreenSavers/rocks.desktop +share/kde4/services/ScreenSavers/rorschach.desktop +share/kde4/services/ScreenSavers/rotor.desktop +share/kde4/services/ScreenSavers/rotzoomer.desktop +share/kde4/services/ScreenSavers/rubik.desktop +share/kde4/services/ScreenSavers/sballs.desktop +share/kde4/services/ScreenSavers/shadebobs.desktop +share/kde4/services/ScreenSavers/sierpinski.desktop +share/kde4/services/ScreenSavers/sierpinski3d.desktop +share/kde4/services/ScreenSavers/slidescreen.desktop +share/kde4/services/ScreenSavers/slip.desktop +share/kde4/services/ScreenSavers/sonar.desktop +share/kde4/services/ScreenSavers/speedmine.desktop +share/kde4/services/ScreenSavers/sphere.desktop +share/kde4/services/ScreenSavers/spheremonics.desktop +share/kde4/services/ScreenSavers/spiral.desktop +share/kde4/services/ScreenSavers/spotlight.desktop +share/kde4/services/ScreenSavers/sproingies.desktop +share/kde4/services/ScreenSavers/squiral.desktop +share/kde4/services/ScreenSavers/stairs.desktop +share/kde4/services/ScreenSavers/starfish.desktop +share/kde4/services/ScreenSavers/starwars.desktop +share/kde4/services/ScreenSavers/stonerview.desktop +share/kde4/services/ScreenSavers/strange.desktop +share/kde4/services/ScreenSavers/substrate.desktop +share/kde4/services/ScreenSavers/superquadrics.desktop +share/kde4/services/ScreenSavers/swirl.desktop +share/kde4/services/ScreenSavers/t3d.desktop +share/kde4/services/ScreenSavers/thornbird.desktop +share/kde4/services/ScreenSavers/triangle.desktop +share/kde4/services/ScreenSavers/truchet.desktop +share/kde4/services/ScreenSavers/twang.desktop +share/kde4/services/ScreenSavers/vermiculate.desktop +share/kde4/services/ScreenSavers/vidwhacker.desktop +share/kde4/services/ScreenSavers/vines.desktop +share/kde4/services/ScreenSavers/wander.desktop +share/kde4/services/ScreenSavers/webcollage.desktop +share/kde4/services/ScreenSavers/whirlwindwarp.desktop +share/kde4/services/ScreenSavers/whirlygig.desktop +share/kde4/services/ScreenSavers/worm.desktop +share/kde4/services/ScreenSavers/wormhole.desktop +share/kde4/services/ScreenSavers/xanalogtv.desktop +share/kde4/services/ScreenSavers/xflame.desktop +share/kde4/services/ScreenSavers/xjack.desktop +share/kde4/services/ScreenSavers/xlyap.desktop +share/kde4/services/ScreenSavers/xmatrix.desktop +share/kde4/services/ScreenSavers/xrayswarm.desktop +share/kde4/services/ScreenSavers/xspirograph.desktop +share/kde4/services/ScreenSavers/xsublim.desktop +share/kde4/services/ScreenSavers/xteevee.desktop +share/kde4/services/ScreenSavers/zoom.desktop share/sounds/KDE_Logout_new.wav share/sounds/KDE_Startup_new.wav -share/wallpapers/Appropriately-Left-Handed-2.jpg -share/wallpapers/Superfluous-Organ-1.jpg -share/wallpapers/The-Good-Times-1.jpg -share/wallpapers/Water01.jpg -share/wallpapers/alien-night.jpg -share/wallpapers/blue_angle_swirl.jpg -share/wallpapers/bluegreencrisscross.jpg -share/wallpapers/fulmine.jpg -share/wallpapers/fulmine.jpg.desktop -share/wallpapers/gear-flowers.svgz -share/wallpapers/gear-flowers.svgz.desktop -share/wallpapers/gold_crinkle.jpg -share/wallpapers/kraftwurm.jpg -share/wallpapers/kubical.png -share/wallpapers/mystical_rightturn.jpg -share/wallpapers/vegetative_fog.jpg -@dirrmtry share/wallpapers -@dirrmtry share/sounds -@dirrmtry share/kde4/services/ScreenSavers -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/slick/64x64/mimetypes -@dirrmtry share/icons/slick/64x64/devices -@dirrmtry share/icons/slick/64x64/apps -@dirrmtry share/icons/slick/64x64/actions -@dirrmtry share/icons/slick/64x64 -@dirrmtry share/icons/slick/48x48/mimetypes -@dirrmtry share/icons/slick/48x48/devices -@dirrmtry share/icons/slick/48x48/apps -@dirrmtry share/icons/slick/48x48/actions -@dirrmtry share/icons/slick/48x48 -@dirrmtry share/icons/slick/32x32/mimetypes -@dirrmtry share/icons/slick/32x32/devices -@dirrmtry share/icons/slick/32x32/apps -@dirrmtry share/icons/slick/32x32/actions -@dirrmtry share/icons/slick/32x32 -@dirrmtry share/icons/slick/22x22/mimetypes -@dirrmtry share/icons/slick/22x22/devices -@dirrmtry share/icons/slick/22x22/apps -@dirrmtry share/icons/slick/22x22/actions -@dirrmtry share/icons/slick/22x22 -@dirrmtry share/icons/slick/16x16/mimetypes -@dirrmtry share/icons/slick/16x16/devices -@dirrmtry share/icons/slick/16x16/apps -@dirrmtry share/icons/slick/16x16/actions -@dirrmtry share/icons/slick/16x16 -@dirrmtry share/icons/slick -@dirrmtry share/icons/nuvola/64x64/mimetypes -@dirrmtry share/icons/nuvola/64x64/devices -@dirrmtry share/icons/nuvola/64x64/apps -@dirrmtry share/icons/nuvola/64x64 -@dirrmtry share/icons/nuvola/48x48/mimetypes -@dirrmtry share/icons/nuvola/48x48/devices -@dirrmtry share/icons/nuvola/48x48/apps -@dirrmtry share/icons/nuvola/48x48/actions -@dirrmtry share/icons/nuvola/48x48 -@dirrmtry share/icons/nuvola/32x32/mimetypes -@dirrmtry share/icons/nuvola/32x32/devices -@dirrmtry share/icons/nuvola/32x32/apps -@dirrmtry share/icons/nuvola/32x32/actions -@dirrmtry share/icons/nuvola/32x32 -@dirrmtry share/icons/nuvola/22x22/mimetypes -@dirrmtry share/icons/nuvola/22x22/devices -@dirrmtry share/icons/nuvola/22x22/apps -@dirrmtry share/icons/nuvola/22x22/actions -@dirrmtry share/icons/nuvola/22x22 -@dirrmtry share/icons/nuvola/16x16/mimetypes -@dirrmtry share/icons/nuvola/16x16/devices -@dirrmtry share/icons/nuvola/16x16/apps -@dirrmtry share/icons/nuvola/16x16/actions -@dirrmtry share/icons/nuvola/16x16 -@dirrmtry share/icons/nuvola/128x128/mimetypes -@dirrmtry share/icons/nuvola/128x128/devices -@dirrmtry share/icons/nuvola/128x128/apps -@dirrmtry share/icons/nuvola/128x128 -@dirrmtry share/icons/nuvola -@dirrmtry share/icons/kids/64x64/mimetypes -@dirrmtry share/icons/kids/64x64/devices -@dirrmtry share/icons/kids/64x64/apps -@dirrmtry share/icons/kids/64x64/actions -@dirrmtry share/icons/kids/64x64 -@dirrmtry share/icons/kids/48x48/mimetypes -@dirrmtry share/icons/kids/48x48/devices -@dirrmtry share/icons/kids/48x48/apps -@dirrmtry share/icons/kids/48x48/actions -@dirrmtry share/icons/kids/48x48 -@dirrmtry share/icons/kids/32x32/mimetypes -@dirrmtry share/icons/kids/32x32/devices -@dirrmtry share/icons/kids/32x32/apps -@dirrmtry share/icons/kids/32x32/actions -@dirrmtry share/icons/kids/32x32 -@dirrmtry share/icons/kids/22x22/mimetypes -@dirrmtry share/icons/kids/22x22/devices -@dirrmtry share/icons/kids/22x22/apps -@dirrmtry share/icons/kids/22x22/actions -@dirrmtry share/icons/kids/22x22 -@dirrmtry share/icons/kids/16x16/mimetypes -@dirrmtry share/icons/kids/16x16/devices -@dirrmtry share/icons/kids/16x16/apps -@dirrmtry share/icons/kids/16x16/actions -@dirrmtry share/icons/kids/16x16 -@dirrmtry share/icons/kids -@dirrmtry share/icons/kdeclassic/8x8/emblems -@dirrmtry share/icons/kdeclassic/8x8 -@dirrmtry share/icons/kdeclassic/64x64/places -@dirrmtry share/icons/kdeclassic/64x64/mimetypes -@dirrmtry share/icons/kdeclassic/64x64/apps -@dirrmtry share/icons/kdeclassic/64x64 -@dirrmtry share/icons/kdeclassic/48x48/places -@dirrmtry share/icons/kdeclassic/48x48/mimetypes -@dirrmtry share/icons/kdeclassic/48x48/devices -@dirrmtry share/icons/kdeclassic/48x48/categories -@dirrmtry share/icons/kdeclassic/48x48/apps -@dirrmtry share/icons/kdeclassic/48x48/actions -@dirrmtry share/icons/kdeclassic/48x48 -@dirrmtry share/icons/kdeclassic/32x32/places -@dirrmtry share/icons/kdeclassic/32x32/mimetypes -@dirrmtry share/icons/kdeclassic/32x32/emblems -@dirrmtry share/icons/kdeclassic/32x32/devices -@dirrmtry share/icons/kdeclassic/32x32/categories -@dirrmtry share/icons/kdeclassic/32x32/apps -@dirrmtry share/icons/kdeclassic/32x32/animations -@dirrmtry share/icons/kdeclassic/32x32/actions -@dirrmtry share/icons/kdeclassic/32x32 -@dirrmtry share/icons/kdeclassic/24x24/emblems -@dirrmtry share/icons/kdeclassic/24x24 -@dirrmtry share/icons/kdeclassic/22x22/mimetypes -@dirrmtry share/icons/kdeclassic/22x22/apps -@dirrmtry share/icons/kdeclassic/22x22/animations -@dirrmtry share/icons/kdeclassic/22x22/actions -@dirrmtry share/icons/kdeclassic/22x22 -@dirrmtry share/icons/kdeclassic/16x16/places -@dirrmtry share/icons/kdeclassic/16x16/mimetypes -@dirrmtry share/icons/kdeclassic/16x16/emblems -@dirrmtry share/icons/kdeclassic/16x16/devices -@dirrmtry share/icons/kdeclassic/16x16/categories -@dirrmtry share/icons/kdeclassic/16x16/apps -@dirrmtry share/icons/kdeclassic/16x16/actions -@dirrmtry share/icons/kdeclassic/16x16 -@dirrmtry share/icons/kdeclassic -@dirrmtry share/icons/ikons/64x64/apps -@dirrmtry share/icons/ikons/64x64 -@dirrmtry share/icons/ikons/48x48/mimetypes -@dirrmtry share/icons/ikons/48x48/devices -@dirrmtry share/icons/ikons/48x48/apps -@dirrmtry share/icons/ikons/48x48 -@dirrmtry share/icons/ikons/32x32/mimetypes -@dirrmtry share/icons/ikons/32x32/devices -@dirrmtry share/icons/ikons/32x32/apps -@dirrmtry share/icons/ikons/32x32 -@dirrmtry share/icons/ikons/22x22/apps -@dirrmtry share/icons/ikons/22x22/actions -@dirrmtry share/icons/ikons/22x22 -@dirrmtry share/icons/ikons/16x16/mimetypes -@dirrmtry share/icons/ikons/16x16/devices -@dirrmtry share/icons/ikons/16x16/apps -@dirrmtry share/icons/ikons/16x16/actions -@dirrmtry share/icons/ikons/16x16 -@dirrmtry share/icons/ikons -@dirrmtry share/icons/crystalsvg/scalable/mimetypes -@dirrmtry share/icons/crystalsvg/scalable/devices -@dirrmtry share/icons/crystalsvg/scalable/apps -@dirrmtry share/icons/crystalsvg/scalable/actions -@dirrmtry share/icons/crystalsvg/scalable -@dirrmtry share/icons/crystalsvg/64x64/mimetypes -@dirrmtry share/icons/crystalsvg/64x64/devices -@dirrmtry share/icons/crystalsvg/64x64/apps -@dirrmtry share/icons/crystalsvg/64x64/actions -@dirrmtry share/icons/crystalsvg/64x64 -@dirrmtry share/icons/crystalsvg/48x48/status -@dirrmtry share/icons/crystalsvg/48x48/mimetypes -@dirrmtry share/icons/crystalsvg/48x48/devices -@dirrmtry share/icons/crystalsvg/48x48/apps -@dirrmtry share/icons/crystalsvg/48x48/actions -@dirrmtry share/icons/crystalsvg/48x48 -@dirrmtry share/icons/crystalsvg/32x32/status -@dirrmtry share/icons/crystalsvg/32x32/mimetypes -@dirrmtry share/icons/crystalsvg/32x32/devices -@dirrmtry share/icons/crystalsvg/32x32/apps -@dirrmtry share/icons/crystalsvg/32x32/actions -@dirrmtry share/icons/crystalsvg/32x32 -@dirrmtry share/icons/crystalsvg/22x22/mimetypes -@dirrmtry share/icons/crystalsvg/22x22/devices -@dirrmtry share/icons/crystalsvg/22x22/apps -@dirrmtry share/icons/crystalsvg/22x22/actions -@dirrmtry share/icons/crystalsvg/22x22 -@dirrmtry share/icons/crystalsvg/16x16/status -@dirrmtry share/icons/crystalsvg/16x16/mimetypes -@dirrmtry share/icons/crystalsvg/16x16/devices -@dirrmtry share/icons/crystalsvg/16x16/apps -@dirrmtry share/icons/crystalsvg/16x16/actions -@dirrmtry share/icons/crystalsvg/16x16 -@dirrmtry share/icons/crystalsvg/128x128/mimetypes -@dirrmtry share/icons/crystalsvg/128x128/devices -@dirrmtry share/icons/crystalsvg/128x128/apps -@dirrmtry share/icons/crystalsvg/128x128/actions -@dirrmtry share/icons/crystalsvg/128x128 -@dirrmtry share/icons/crystalsvg -@dirrmtry share/icons/Locolor/32x32/mimetypes -@dirrmtry share/icons/Locolor/32x32/devices -@dirrmtry share/icons/Locolor/32x32/apps -@dirrmtry share/icons/Locolor/32x32/actions -@dirrmtry share/icons/Locolor/32x32 -@dirrmtry share/icons/Locolor/22x22/apps -@dirrmtry share/icons/Locolor/22x22/actions -@dirrmtry share/icons/Locolor/22x22 -@dirrmtry share/icons/Locolor/16x16/mimetypes -@dirrmtry share/icons/Locolor/16x16/devices -@dirrmtry share/icons/Locolor/16x16/apps -@dirrmtry share/icons/Locolor/16x16/actions -@dirrmtry share/icons/Locolor/16x16 -@dirrmtry share/icons/Locolor -@dirrmtry share/icons -@dirrmtry share/emoticons/tweakers.net -@dirrmtry share/emoticons/phpBB -@dirrmtry share/emoticons/greggman.com -@dirrmtry share/emoticons/ccmathteam.com -@dirrmtry share/emoticons/RedOnes -@dirrmtry share/emoticons/Plain -@dirrmtry share/emoticons/KMess-Violet -@dirrmtry share/emoticons/KMess-Cartoon -@dirrmtry share/emoticons/KMess-Blue -@dirrmtry share/emoticons/KMess -@dirrmtry share/emoticons/GroupWise -@dirrmtry share/emoticons/Boxed -@dirrmtry share/emoticons -@dirrmtry share/apps/kworldclock/maps/rainfall -@dirrmtry share/apps/kworldclock/maps/mggd -@dirrmtry share/apps/kworldclock/maps/caida_bw -@dirrmtry share/apps/kworldclock/maps/caida -@dirrmtry share/apps/kworldclock/maps/bio -@dirrmtry share/apps/kworldclock/maps/alt -@dirrmtry share/apps/kworldclock/maps -@dirrmtry share/apps/kworldclock -@dirrmtry share/apps/kwin/icewm-themes/Model -@dirrmtry share/apps/kwin/icewm-themes/MenschMaschine -@dirrmtry share/apps/kwin/icewm-themes -@dirrmtry share/apps/kwin -@dirrmtry share/apps/kstyle/themes -@dirrmtry share/apps/kstyle -@dirrmtry share/apps/kscreensaver -@dirrmtry share/apps/kfiresaver -@dirrmtry share/apps/color-schemes -@dirrmtry share/apps -@dirrmtry lib/kde4/plugins/styles -@dirrmtry lib/kde4/plugins -@dirrmtry lib/kde4 +share/wallpapers/Colorado_Farm/contents/images/1024x768.jpg +share/wallpapers/Colorado_Farm/contents/images/1280x1024.jpg +share/wallpapers/Colorado_Farm/contents/images/1280x800.jpg +share/wallpapers/Colorado_Farm/contents/images/1440x900.jpg +share/wallpapers/Colorado_Farm/contents/images/1600x1200.jpg +share/wallpapers/Colorado_Farm/contents/images/1920x1200.jpg +share/wallpapers/Colorado_Farm/contents/screenshot.png +share/wallpapers/Colorado_Farm/metadata.desktop +share/wallpapers/Emotion/contents/images/1024x768.jpg +share/wallpapers/Emotion/contents/images/1280x1024.jpg +share/wallpapers/Emotion/contents/images/1280x800.jpg +share/wallpapers/Emotion/contents/images/1440x900.jpg +share/wallpapers/Emotion/contents/images/1600x1200.jpg +share/wallpapers/Emotion/contents/images/1920x1200.jpg +share/wallpapers/Emotion/contents/screenshot.png +share/wallpapers/Emotion/metadata.desktop +share/wallpapers/Golden_Ripples/contents/images/1024x768.jpg +share/wallpapers/Golden_Ripples/contents/images/1280x1024.jpg +share/wallpapers/Golden_Ripples/contents/images/1280x800.jpg +share/wallpapers/Golden_Ripples/contents/images/1440x900.jpg +share/wallpapers/Golden_Ripples/contents/images/1600x1200.jpg +share/wallpapers/Golden_Ripples/contents/images/1920x1200.jpg +share/wallpapers/Golden_Ripples/contents/screenshot.png +share/wallpapers/Golden_Ripples/metadata.desktop +share/wallpapers/Green_Concentration/contents/images/1024x768.jpg +share/wallpapers/Green_Concentration/contents/images/1280x1024.jpg +share/wallpapers/Green_Concentration/contents/images/1280x800.jpg +share/wallpapers/Green_Concentration/contents/images/1440x900.jpg +share/wallpapers/Green_Concentration/contents/images/1600x1200.jpg +share/wallpapers/Green_Concentration/contents/images/1920x1200.jpg +share/wallpapers/Green_Concentration/contents/screenshot.png +share/wallpapers/Green_Concentration/metadata.desktop +share/wallpapers/Leafs_Labyrinth/contents/images/1024x768.jpg +share/wallpapers/Leafs_Labyrinth/contents/images/1280x1024.jpg +share/wallpapers/Leafs_Labyrinth/contents/images/1280x800.jpg +share/wallpapers/Leafs_Labyrinth/contents/images/1440x900.jpg +share/wallpapers/Leafs_Labyrinth/contents/images/1600x1200.jpg +share/wallpapers/Leafs_Labyrinth/contents/images/1920x1200.jpg +share/wallpapers/Leafs_Labyrinth/contents/screenshot.png +share/wallpapers/Leafs_Labyrinth/metadata.desktop +share/wallpapers/Skeeter_Hawk/contents/images/1024x768.jpg +share/wallpapers/Skeeter_Hawk/contents/images/1280x1024.jpg +share/wallpapers/Skeeter_Hawk/contents/images/1280x800.jpg +share/wallpapers/Skeeter_Hawk/contents/images/1440x900.jpg +share/wallpapers/Skeeter_Hawk/contents/images/1600x1200.jpg +share/wallpapers/Skeeter_Hawk/contents/images/1920x1200.jpg +share/wallpapers/Skeeter_Hawk/contents/screenshot.png +share/wallpapers/Skeeter_Hawk/metadata.desktop +@dirrm share/wallpapers/Skeeter_Hawk/contents/images +@dirrm share/wallpapers/Skeeter_Hawk/contents +@dirrm share/wallpapers/Skeeter_Hawk +@dirrm share/wallpapers/Leafs_Labyrinth/contents/images +@dirrm share/wallpapers/Leafs_Labyrinth/contents +@dirrm share/wallpapers/Leafs_Labyrinth +@dirrm share/wallpapers/Green_Concentration/contents/images +@dirrm share/wallpapers/Green_Concentration/contents +@dirrm share/wallpapers/Green_Concentration +@dirrm share/wallpapers/Golden_Ripples/contents/images +@dirrm share/wallpapers/Golden_Ripples/contents +@dirrm share/wallpapers/Golden_Ripples +@dirrm share/wallpapers/Emotion/contents/images +@dirrm share/wallpapers/Emotion/contents +@dirrm share/wallpapers/Emotion +@dirrm share/wallpapers/Colorado_Farm/contents/images +@dirrm share/wallpapers/Colorado_Farm/contents +@dirrm share/wallpapers/Colorado_Farm +@dirrm share/icons/kdeclassic/8x8/emblems +@dirrm share/icons/kdeclassic/8x8 +@dirrm share/icons/kdeclassic/64x64/places +@dirrm share/icons/kdeclassic/64x64/mimetypes +@dirrm share/icons/kdeclassic/64x64/apps +@dirrm share/icons/kdeclassic/64x64 +@dirrm share/icons/kdeclassic/48x48/places +@dirrm share/icons/kdeclassic/48x48/mimetypes +@dirrm share/icons/kdeclassic/48x48/devices +@dirrm share/icons/kdeclassic/48x48/categories +@dirrm share/icons/kdeclassic/48x48/apps +@dirrm share/icons/kdeclassic/48x48/actions +@dirrm share/icons/kdeclassic/48x48 +@dirrm share/icons/kdeclassic/32x32/places +@dirrm share/icons/kdeclassic/32x32/mimetypes +@dirrm share/icons/kdeclassic/32x32/emblems +@dirrm share/icons/kdeclassic/32x32/devices +@dirrm share/icons/kdeclassic/32x32/categories +@dirrm share/icons/kdeclassic/32x32/apps +@dirrm share/icons/kdeclassic/32x32/animations +@dirrm share/icons/kdeclassic/32x32/actions +@dirrm share/icons/kdeclassic/32x32 +@dirrm share/icons/kdeclassic/24x24/emblems +@dirrm share/icons/kdeclassic/24x24 +@dirrm share/icons/kdeclassic/22x22/mimetypes +@dirrm share/icons/kdeclassic/22x22/apps +@dirrm share/icons/kdeclassic/22x22/animations +@dirrm share/icons/kdeclassic/22x22/actions +@dirrm share/icons/kdeclassic/22x22 +@dirrm share/icons/kdeclassic/16x16/places +@dirrm share/icons/kdeclassic/16x16/mimetypes +@dirrm share/icons/kdeclassic/16x16/emblems +@dirrm share/icons/kdeclassic/16x16/devices +@dirrm share/icons/kdeclassic/16x16/categories +@dirrm share/icons/kdeclassic/16x16/apps +@dirrm share/icons/kdeclassic/16x16/actions +@dirrm share/icons/kdeclassic/16x16 +@dirrm share/icons/kdeclassic +@dirrm share/emoticons/tweakers.net +@dirrm share/emoticons/phpBB +@dirrm share/emoticons/greggman.com +@dirrm share/emoticons/ccmathteam.com +@dirrm share/emoticons/RedOnes +@dirrm share/emoticons/Plain +@dirrm share/emoticons/KMess-Violet +@dirrm share/emoticons/KMess-Cartoon +@dirrm share/emoticons/KMess-Blue +@dirrm share/emoticons/KMess +@dirrm share/emoticons/Boxed +@dirrm share/apps/kscreensaver +@dirrm share/apps/kfiresaver +@dirrm share/apps/desktoptheme/slim-glow/widgets +@dirrm share/apps/desktoptheme/slim-glow/opaque/widgets +@dirrm share/apps/desktoptheme/slim-glow/opaque/dialogs +@dirrm share/apps/desktoptheme/slim-glow/opaque +@dirrm share/apps/desktoptheme/slim-glow/dialogs +@dirrm share/apps/desktoptheme/slim-glow +@dirrm share/apps/desktoptheme/heron/widgets +@dirrm share/apps/desktoptheme/heron/opaque/widgets +@dirrm share/apps/desktoptheme/heron/opaque/dialogs +@dirrm share/apps/desktoptheme/heron/opaque +@dirrm share/apps/desktoptheme/heron/dialogs +@dirrm share/apps/desktoptheme/heron +@dirrm share/apps/desktoptheme/Silicon/widgets +@dirrm share/apps/desktoptheme/Silicon/dialogs +@dirrm share/apps/desktoptheme/Silicon +@dirrm share/apps/desktoptheme/Elegance/widgets +@dirrm share/apps/desktoptheme/Elegance/dialogs +@dirrm share/apps/desktoptheme/Elegance +@dirrm share/apps/desktoptheme/Clean-Blend/widgets +@dirrm share/apps/desktoptheme/Clean-Blend/weatherstation +@dirrm share/apps/desktoptheme/Clean-Blend/systemtray +@dirrm share/apps/desktoptheme/Clean-Blend/stylesheets +@dirrm share/apps/desktoptheme/Clean-Blend/rssnow +@dirrm share/apps/desktoptheme/Clean-Blend/opaque/widgets +@dirrm share/apps/desktoptheme/Clean-Blend/opaque/dialogs +@dirrm share/apps/desktoptheme/Clean-Blend/opaque +@dirrm share/apps/desktoptheme/Clean-Blend/lancelot +@dirrm share/apps/desktoptheme/Clean-Blend/dialogs +@dirrm share/apps/desktoptheme/Clean-Blend +@dirrm share/apps/desktoptheme/Aya/widgets +@dirrm share/apps/desktoptheme/Aya/opaque/widgets +@dirrm share/apps/desktoptheme/Aya/opaque/dialogs +@dirrm share/apps/desktoptheme/Aya/opaque +@dirrm share/apps/desktoptheme/Aya/dialogs +@dirrm share/apps/desktoptheme/Aya diff --git a/x11/kde4-baseapps/Makefile b/x11/kde4-baseapps/Makefile index ba14aa4a884e..dad591780fd1 100644 --- a/x11/kde4-baseapps/Makefile +++ b/x11/kde4-baseapps/Makefile @@ -10,7 +10,7 @@ PORTNAME= kdebase PORTVERSION= ${KDE4_VERSION} CATEGORIES= x11 kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org @@ -18,7 +18,8 @@ COMMENT= Basic applications for the KDE system LIB_DEPENDS= searchclient:${PORTSDIR}/deskutils/strigi \ soprano.4:${PORTSDIR}/textproc/soprano \ - qimageblitz.4:${PORTSDIR}/x11/qimageblitz + qimageblitz.4:${PORTSDIR}/x11/qimageblitz \ + pci.2:${PORTSDIR}/devel/libpci LATEST_LINK= ${PORTNAME}4 @@ -29,20 +30,17 @@ QT_COMPONENTS= corelib opengl dbus qt3support \ qmake_build moc_build rcc_build uic_build USE_GETTEXT= yes -USE_KDE4= kdelibs workspace kdeprefix kdehier automoc4 +USE_KDE4= kdelibs kdeprefix kdehier automoc4 KDE4_BUILDENV= yes +CMAKE_ARGS+= -DCMAKE_REQUIRED_FLAGS:STRING="-L${LOCALBASE}/lib" \ + -DWITH_RAW1394:BOOL=OFF + +MAN1= kappfinder.1 \ + kbookmarkmerger.1 \ + kfind.1 + post-extract: ${MKDIR} ${WRKSRC} -post-patch: - ${REINPLACE_CMD} -e "s,<qfile.h>,<QFile>,;s,<qevent.h>,<QtEvents>,; \ - s,<qapplication.h>,<QApplication>," \ - ${WRKSRC}/../apps/konqueror/src/konqbookmarkbar.cpp - ${REINPLACE_CMD} -e 's|<qstringlist.h>|<QStringList>|'\ - ${WRKSRC}/../apps/nsplugins/plugin_paths.h - ${REINPLACE_CMD} -e "s,<qtimer.h>,<QTimer>,; \ - s,<qwidget.h>,<QWidget>," \ - ${WRKSRC}/../apps/nsplugins/viewer/xtevents.h - .include <bsd.port.mk> diff --git a/x11/kde4-baseapps/distinfo b/x11/kde4-baseapps/distinfo index 6043ff083d16..8da5f818e6ed 100644 --- a/x11/kde4-baseapps/distinfo +++ b/x11/kde4-baseapps/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdebase-4.1.4.tar.bz2) = 9a76438f5453a3ba4f773db6847825f7 -SHA256 (KDE/kdebase-4.1.4.tar.bz2) = 1c8c0390eb231a84819bfa9f6015a5c99fbf44b622e22ea39bfdc7caf3715a8f -SIZE (KDE/kdebase-4.1.4.tar.bz2) = 4403306 +MD5 (KDE/kdebase-4.2.0.tar.bz2) = da86a8ad624e86eda3a7509f39272060 +SHA256 (KDE/kdebase-4.2.0.tar.bz2) = 51694794fd90883f45456c8bf694feb9c0eafef1b267377c586c417913b0dd88 +SIZE (KDE/kdebase-4.2.0.tar.bz2) = 4249816 diff --git a/x11/kde4-baseapps/files/patch-apps_cmake_modules_FindPCIUTILS.cmake b/x11/kde4-baseapps/files/patch-apps_cmake_modules_FindPCIUTILS.cmake new file mode 100644 index 000000000000..37de8dc3f358 --- /dev/null +++ b/x11/kde4-baseapps/files/patch-apps_cmake_modules_FindPCIUTILS.cmake @@ -0,0 +1,15 @@ +--- ../apps/cmake/modules/FindPCIUTILS.cmake.orig 2008-08-07 15:20:57.000000000 +0000 ++++ ../apps/cmake/modules/FindPCIUTILS.cmake 2008-12-27 11:49:04.000000000 +0000 +@@ -14,7 +14,11 @@ + FIND_LIBRARY(PCIUTILS_LIBRARY NAMES pci) + if(PCIUTILS_LIBRARY) + FIND_LIBRARY(RESOLV_LIBRARY NAMES resolv) +- set(PCIUTILS_LIBRARIES ${PCIUTILS_LIBRARY} ${RESOLV_LIBRARY}) ++ if(RESOLV_LIBRARY) ++ set(PCIUTILS_LIBRARIES ${PCIUTILS_LIBRARY} ${RESOLV_LIBRARY}) ++ else(RESOLV_LIBRARY) ++ set(PCIUTILS_LIBRARIES ${PCIUTILS_LIBRARY}) ++ endif(RESOLV_LIBRARY) + endif(PCIUTILS_LIBRARY) + + diff --git a/x11/kde4-baseapps/pkg-plist b/x11/kde4-baseapps/pkg-plist index a27496373688..12a5eecae333 100644 --- a/x11/kde4-baseapps/pkg-plist +++ b/x11/kde4-baseapps/pkg-plist @@ -26,7 +26,6 @@ include/konqmimedata.h include/konqsidebarplugin.h include/libkonq_export.h lib/kde4/dolphinpart.so -lib/kde4/kcm_css.so lib/kde4/kcm_dolphin.so lib/kde4/kcm_filetypes.so lib/kde4/kcm_history.so @@ -48,7 +47,6 @@ lib/kde4/kcm_usb.so lib/kde4/kcm_useraccount.so lib/kde4/kded_favicons.so lib/kde4/kded_konqy_preloader.so -lib/kde4/kded_kwrited.so lib/kde4/khtmlkttsdplugin.so lib/kde4/konq_aboutpage.so lib/kde4/konq_remoteencoding.so @@ -67,7 +65,7 @@ lib/kde4/libnsplugin.so lib/kde4/plasma_applet_folderview.so lib/libdolphinprivate.so lib/libdolphinprivate.so.5 -lib/libdolphinprivate.so.5.0.0 +lib/libdolphinprivate.so.5.0.1 lib/libkdeinit4_keditbookmarks.so lib/libkdeinit4_kfmclient.so lib/libkdeinit4_kinfocenter.so @@ -76,13 +74,13 @@ lib/libkdeinit4_konsole.so lib/libkdeinit4_kwrite.so lib/libkonq.so lib/libkonq.so.7 -lib/libkonq.so.7.0.0 +lib/libkonq.so.7.0.1 lib/libkonqsidebarplugin.so lib/libkonqsidebarplugin.so.5 -lib/libkonqsidebarplugin.so.5.0.0 +lib/libkonqsidebarplugin.so.5.0.1 lib/libkonquerorprivate.so lib/libkonquerorprivate.so.5 -lib/libkonquerorprivate.so.5.0.0 +lib/libkonquerorprivate.so.5.0.1 share/applications/kde4/Home.desktop share/applications/kde4/dolphin.desktop share/applications/kde4/kappfinder.desktop @@ -341,7 +339,6 @@ share/apps/kconf_update/kfmclient_3_2_update.sh share/apps/kconf_update/konqsidebartng.upd share/apps/kconf_update/move_favicons.sh share/apps/kconf_update/move_konqsidebartng_entries.sh -share/apps/kconf_update/socks.upd share/apps/kcontrol/pics/onlyone.png share/apps/kcontrol/pics/overlapping.png share/apps/kdm/pics/users/Blackbox.png @@ -392,12 +389,6 @@ share/apps/konqueror/about/plugins_rtl.html share/apps/konqueror/about/specs.html share/apps/konqueror/about/tips.html share/apps/konqueror/about/top-left-konqueror.png -share/apps/konqueror/icons/crystalsvg/16x16/actions/kde1.png -share/apps/konqueror/icons/crystalsvg/16x16/actions/kde2.png -share/apps/konqueror/icons/crystalsvg/16x16/actions/kde3.png -share/apps/konqueror/icons/crystalsvg/16x16/actions/kde4.png -share/apps/konqueror/icons/crystalsvg/16x16/actions/kde5.png -share/apps/konqueror/icons/crystalsvg/16x16/actions/kde6.png share/apps/konqueror/konqueror.rc share/apps/konqueror/pics/arrow_bottomleft.png share/apps/konqueror/pics/arrow_bottomright.png @@ -428,7 +419,6 @@ share/apps/konsole/linux.keytab share/apps/konsole/partui.rc share/apps/konsole/sessionui.rc share/apps/konsole/solaris.keytab -share/apps/konsole/vt420pc.keytab share/apps/kwrite/kwriteui.rc share/apps/plugin/nspluginpart.rc share/autostart/konqy_preload.desktop @@ -599,7 +589,6 @@ share/icons/oxygen/128x128/apps/wp.png share/icons/oxygen/128x128/apps/xclock.png share/icons/oxygen/128x128/apps/xfmail.png share/icons/oxygen/128x128/apps/xmag.png -share/icons/oxygen/16x16/actions/view-file-columns.png share/icons/oxygen/16x16/apps/abiword.png share/icons/oxygen/16x16/apps/alevt.png share/icons/oxygen/16x16/apps/applixware.png @@ -651,9 +640,7 @@ share/icons/oxygen/16x16/apps/xmms.png share/icons/oxygen/16x16/apps/xosview.png share/icons/oxygen/16x16/apps/xpaint.png share/icons/oxygen/16x16/apps/xv.png -share/icons/oxygen/22x22/actions/view-file-columns.png share/icons/oxygen/22x22/apps/email.png -share/icons/oxygen/32x32/actions/view-file-columns.png share/icons/oxygen/32x32/apps/abiword.png share/icons/oxygen/32x32/apps/alevt.png share/icons/oxygen/32x32/apps/applixware.png @@ -708,7 +695,6 @@ share/icons/oxygen/32x32/apps/xmms.png share/icons/oxygen/32x32/apps/xosview.png share/icons/oxygen/32x32/apps/xpaint.png share/icons/oxygen/32x32/apps/xv.png -share/icons/oxygen/48x48/actions/view-file-columns.png share/icons/oxygen/48x48/apps/abiword.png share/icons/oxygen/48x48/apps/applixware.png share/icons/oxygen/48x48/apps/blender.png @@ -761,7 +747,6 @@ share/icons/oxygen/64x64/apps/wp.png share/icons/oxygen/64x64/apps/xclock.png share/icons/oxygen/64x64/apps/xfmail.png share/icons/oxygen/64x64/apps/xmag.png -share/icons/oxygen/scalable/actions/view-file-columns.svgz share/icons/oxygen/scalable/apps/aim.svgz share/icons/oxygen/scalable/apps/antivirus.svgz share/icons/oxygen/scalable/apps/applixware.svgz @@ -788,6 +773,7 @@ share/icons/oxygen/scalable/apps/xclock.svgz share/icons/oxygen/scalable/apps/xeyes.svgz share/icons/oxygen/scalable/apps/xpaint.svgz share/kde4/services/ServiceMenus/konsolehere.desktop +share/kde4/services/bookmarks.desktop share/kde4/services/cache.desktop share/kde4/services/cookies.desktop share/kde4/services/desktoppath.desktop @@ -796,8 +782,6 @@ share/kde4/services/dma.desktop share/kde4/services/dolphinpart.desktop share/kde4/services/ebrowsing.desktop share/kde4/services/filebehavior.desktop -share/kde4/services/filebrowser.desktop -share/kde4/services/filepreviews.desktop share/kde4/services/filetypes.desktop share/kde4/services/interrupts.desktop share/kde4/services/ioports.desktop @@ -806,7 +790,6 @@ share/kde4/services/kcm_memory.desktop share/kde4/services/kcm_partition.desktop share/kde4/services/kcm_pci.desktop share/kde4/services/kcm_useraccount.desktop -share/kde4/services/kcmcss.desktop share/kde4/services/kcmdolphin.desktop share/kde4/services/kcmhistory.desktop share/kde4/services/kcmkonqyperformance.desktop @@ -815,11 +798,10 @@ share/kde4/services/kcmsolidproc.desktop share/kde4/services/kcmusb.desktop share/kde4/services/kded/favicons.desktop share/kde4/services/kded/konqy_preloader.desktop -share/kde4/services/kded/kwrited.desktop share/kde4/services/kfindpart.desktop +share/kde4/services/khtml_appearance.desktop share/kde4/services/khtml_behavior.desktop share/kde4/services/khtml_filter.desktop -share/kde4/services/khtml_fonts.desktop share/kde4/services/khtml_general.desktop share/kde4/services/khtml_java_js.desktop share/kde4/services/khtml_plugins.desktop @@ -895,53 +877,7 @@ share/templates/linkNFS.desktop share/templates/linkProgram.desktop share/templates/linkURL.desktop share/templates/linkZIP.desktop -@dirrmtry share/kde4/servicetypes @dirrm share/kde4/services/useragentstrings -@dirrmtry share/kde4/services/kded -@dirrmtry share/kde4/services/ServiceMenus -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/oxygen/scalable/apps -@dirrmtry share/icons/oxygen/scalable/actions -@dirrmtry share/icons/oxygen/scalable -@dirrmtry share/icons/oxygen/64x64/apps -@dirrmtry share/icons/oxygen/64x64 -@dirrmtry share/icons/oxygen/48x48/apps -@dirrmtry share/icons/oxygen/48x48/actions -@dirrmtry share/icons/oxygen/48x48 -@dirrmtry share/icons/oxygen/32x32/apps -@dirrmtry share/icons/oxygen/32x32/actions -@dirrmtry share/icons/oxygen/32x32 -@dirrmtry share/icons/oxygen/22x22/apps -@dirrmtry share/icons/oxygen/22x22/actions -@dirrmtry share/icons/oxygen/22x22 -@dirrmtry share/icons/oxygen/16x16/apps -@dirrmtry share/icons/oxygen/16x16/actions -@dirrmtry share/icons/oxygen/16x16 -@dirrmtry share/icons/oxygen/128x128/apps -@dirrmtry share/icons/oxygen/128x128 -@dirrmtry share/icons/oxygen -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64/actions -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48/actions -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32/actions -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22/actions -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16/actions -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128/actions -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor @dirrm share/doc/HTML/en/kwrite @dirrm share/doc/HTML/en/konsole @dirrm share/doc/HTML/en/konqueror @@ -966,28 +902,22 @@ share/templates/linkZIP.desktop @dirrm share/doc/HTML/en/kfind @dirrm share/doc/HTML/en/kdepasswd @dirrm share/doc/HTML/en/dolphin -@dirrmtry share/config -@dirrmtry share/autostart @dirrm share/apps/plugin @dirrm share/apps/kwrite +@dirrm share/apps/konsole +@dirrm share/apps/konqueror/profiles @dirrm share/apps/konqueror/pics -@dirrm share/apps/konqueror/icons/crystalsvg/16x16/actions -@dirrm share/apps/konqueror/icons/crystalsvg/16x16 -@dirrm share/apps/konqueror/icons/crystalsvg -@dirrm share/apps/konqueror/icons @dirrm share/apps/konqueror/about @dirrm share/apps/konqsidebartng/websidebar +@dirrm share/apps/konqsidebartng/virtual_folders/remote/web +@dirrm share/apps/konqsidebartng/virtual_folders/remote/ftp +@dirrm share/apps/konqsidebartng/virtual_folders/remote +@dirrm share/apps/konqsidebartng/entries +@dirrm share/apps/konqsidebartng/dirtree +@dirrm share/apps/konqsidebartng/add @dirrm share/apps/kinfocenter/about @dirrm share/apps/kinfocenter -@dirrm share/apps/khtml/kpartplugins -@dirrmtry share/apps/khtml @dirrm share/apps/keditbookmarks -@dirrmtry share/apps/kdm/pics/users -@dirrmtry share/apps/kdm/pics -@dirrmtry share/apps/kdm -@dirrmtry share/apps/kcontrol/pics -@dirrmtry share/apps/kcontrol -@dirrmtry share/apps/kconf_update @dirrm share/apps/kcmusb @dirrm share/apps/kcmcss @dirrm share/apps/kbookmark @@ -1015,4 +945,3 @@ share/templates/linkZIP.desktop @dirrm share/apps/dolphinpart/kpartplugins @dirrm share/apps/dolphinpart @dirrm share/apps/dolphin -@dirrmtry share/applications/kde4 diff --git a/x11/kde4-runtime/Makefile b/x11/kde4-runtime/Makefile index 9c9b84157b75..b37826a60f10 100644 --- a/x11/kde4-runtime/Makefile +++ b/x11/kde4-runtime/Makefile @@ -8,21 +8,14 @@ PORTNAME= kdebase-runtime PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Basic applications for the KDE system -LIB_DEPENDS= usb-0.1.8:${PORTSDIR}/devel/libusb \ - xcb.2:${PORTSDIR}/x11/libxcb \ - xine.1:${PORTSDIR}/multimedia/libxine \ - xklavier.12:${PORTSDIR}/x11/libxklavier -RUN_DEPENDS= ${LOCALBASE}/share/icons/hicolor/index.theme:${PORTSDIR}/misc/hicolor-icon-theme - USE_KDE4= kdelibs pimlibs kdeprefix kdehier automoc4 KDE4_BUILDENV= yes USE_BZIP2= yes @@ -33,7 +26,18 @@ USE_GETTEXT= yes MAN1= kdesu.1 +OPTIONS= PULSEAUDIO "Enable playback via PulseAudio soundserver" off + +.include <bsd.port.pre.mk> + +.if defined(WITH_PULSEAUDIO) +CMAKE_ARGS+= -DWITH_PulseAudio:BOOL=ON +LIB_DEPENDS+= pulse.0:${PORTSDIR}/audio/pulseaudio +.else +CMAKE_ARGS+= -DWITH_PulseAudio:BOOL=OFF +.endif + post-extract: ${MKDIR} ${WRKSRC} -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/x11/kde4-runtime/distinfo b/x11/kde4-runtime/distinfo index 09007714a0a4..94fa7bb63013 100644 --- a/x11/kde4-runtime/distinfo +++ b/x11/kde4-runtime/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdebase-runtime-4.1.4.tar.bz2) = fad82875745bacbb52001eabf9c71202 -SHA256 (KDE/kdebase-runtime-4.1.4.tar.bz2) = 0b96c34785edcd9a0d308ca8a5623bd2de15939bcaee3bbda6de4ac3d832b513 -SIZE (KDE/kdebase-runtime-4.1.4.tar.bz2) = 52272004 +MD5 (KDE/kdebase-runtime-4.2.0.tar.bz2) = 8ef48aae16a6dddb3055d81d7e5c375f +SHA256 (KDE/kdebase-runtime-4.2.0.tar.bz2) = 5bb18a691915f42dc2a836422ce913405b5c51463caa236f2474293feead51d8 +SIZE (KDE/kdebase-runtime-4.2.0.tar.bz2) = 69901790 diff --git a/x11/kde4-runtime/pkg-plist b/x11/kde4-runtime/pkg-plist index 76962631e938..0083d1aa44fa 100644 --- a/x11/kde4-runtime/pkg-plist +++ b/x11/kde4-runtime/pkg-plist @@ -19,18 +19,21 @@ bin/ksvgtopng bin/ktraderclient bin/ktrash bin/kuiserver +bin/kwalletd bin/kwriteconfig bin/nepomukserver bin/nepomukservicestub bin/solid-hardware etc/xdg/menus/kde-information.menu lib/kconf_update_bin/phonon_devicepreference_update +lib/kconf_update_bin/phonon_deviceuids_update lib/kde4/cursorthumbnail.so lib/kde4/djvuthumbnail.so lib/kde4/exrthumbnail.so lib/kde4/fixhosturifilter.so lib/kde4/htmlthumbnail.so lib/kde4/imagethumbnail.so +lib/kde4/jpegthumbnail.so lib/kde4/kcm_cgi.so lib/kde4/kcm_componentchooser.so lib/kde4/kcm_emoticons.so @@ -42,14 +45,19 @@ lib/kde4/kcm_locale.so lib/kde4/kcm_nepomuk.so lib/kde4/kcm_phonon.so lib/kde4/kcm_phononxine.so +lib/kde4/kcm_trash.so lib/kde4/kcmspellchecking.so lib/kde4/kded_desktopnotifier.so +lib/kde4/kded_globalaccel.so lib/kde4/kded_kpasswdserver.so lib/kde4/kded_ktimezoned.so +lib/kde4/kded_phononserver.so lib/kde4/kded_remotedirnotify.so lib/kde4/kded_soliduiserver.so lib/kde4/kio_about.so +lib/kde4/kio_applications.so lib/kde4/kio_archive.so +lib/kde4/kio_bookmarks.so lib/kde4/kio_cgi.so lib/kde4/kio_desktop.so lib/kde4/kio_filter.so @@ -58,6 +66,7 @@ lib/kde4/kio_fish.so lib/kde4/kio_floppy.so lib/kde4/kio_info.so lib/kde4/kio_man.so +lib/kde4/kio_nepomuksearch.so lib/kde4/kio_nfs.so lib/kde4/kio_remote.so lib/kde4/kio_settings.so @@ -88,41 +97,84 @@ lib/kde4/localdomainurifilter.so lib/kde4/nepomukfilewatch.so lib/kde4/nepomukmigration1.so lib/kde4/nepomukontologyloader.so +lib/kde4/nepomukqueryservice.so lib/kde4/nepomukstorage.so lib/kde4/nepomukstrigiservice.so -lib/kde4/phonon_xine.so lib/kde4/plugins/phonon_platform/kde.so lib/kde4/plugins/styles/oxygen.so lib/kde4/svgthumbnail.so lib/kde4/textthumbnail.so -lib/libkaudiodevicelist.so -lib/libkaudiodevicelist.so.5 -lib/libkaudiodevicelist.so.5.0.0 lib/libkdeinit4_kcmshell4.so lib/libkdeinit4_khelpcenter.so lib/libkdeinit4_kuiserver.so +lib/libkdeinit4_kwalletd.so lib/libkdeinit4_nepomukserver.so +lib/libkwalletbackend.so +lib/libkwalletbackend.so.5 +lib/libkwalletbackend.so.5.0.1 lib/strigi/strigiindex_sopranobackend.so share/applications/kde4/Help.desktop share/applications/kde4/knetattach.desktop share/apps/cmake/modules/FindCLucene.cmake -share/apps/cmake/modules/FindXCB.cmake +share/apps/cmake/modules/FindPulseAudio.cmake +share/apps/desktoptheme/default/colors +share/apps/desktoptheme/default/dialogs/background.svgz +share/apps/desktoptheme/default/dialogs/kickoff.svgz +share/apps/desktoptheme/default/dialogs/krunner.svgz +share/apps/desktoptheme/default/dialogs/shutdowndialog.source.svgz +share/apps/desktoptheme/default/dialogs/shutdowndialog.svgz +share/apps/desktoptheme/default/metadata.desktop +share/apps/desktoptheme/default/opaque/dialogs/background.svgz +share/apps/desktoptheme/default/opaque/dialogs/krunner.svgz +share/apps/desktoptheme/default/opaque/dialogs/shutdowndialog.svgz +share/apps/desktoptheme/default/opaque/widgets/extender-background.svgz +share/apps/desktoptheme/default/opaque/widgets/panel-background.svgz +share/apps/desktoptheme/default/opaque/widgets/tooltip.svgz +share/apps/desktoptheme/default/widgets/analog_meter.svgz +share/apps/desktoptheme/default/widgets/arrows.svgz +share/apps/desktoptheme/default/widgets/background.svgz +share/apps/desktoptheme/default/widgets/bar_meter_horizontal.svgz +share/apps/desktoptheme/default/widgets/bar_meter_vertical.svgz +share/apps/desktoptheme/default/widgets/branding.svgz +share/apps/desktoptheme/default/widgets/busywidget.svgz +share/apps/desktoptheme/default/widgets/button.svgz +share/apps/desktoptheme/default/widgets/calendar.svgz +share/apps/desktoptheme/default/widgets/clock.svgz +share/apps/desktoptheme/default/widgets/configuration-icons.svgz +share/apps/desktoptheme/default/widgets/containment-controls.svgz +share/apps/desktoptheme/default/widgets/dragger.svgz +share/apps/desktoptheme/default/widgets/extender-background.svgz +share/apps/desktoptheme/default/widgets/extender-dragger.svgz +share/apps/desktoptheme/default/widgets/frame.svgz +share/apps/desktoptheme/default/widgets/glowbar.svgz +share/apps/desktoptheme/default/widgets/monitor.svgz +share/apps/desktoptheme/default/widgets/pager.svgz +share/apps/desktoptheme/default/widgets/panel-background.svgz +share/apps/desktoptheme/default/widgets/plot-background.svgz +share/apps/desktoptheme/default/widgets/scrollbar.svgz +share/apps/desktoptheme/default/widgets/systemtray.svgz +share/apps/desktoptheme/default/widgets/tasks.svgz +share/apps/desktoptheme/default/widgets/tooltip.svgz +share/apps/desktoptheme/default/widgets/translucentbackground.svgz +share/apps/desktoptheme/default/widgets/viewitem.svgz share/apps/drkonqi/debuggers/gdbrc share/apps/drkonqi/pics/konqi.png share/apps/drkonqi/presets/developerrc share/apps/drkonqi/presets/enduserrc share/apps/kcm_componentchooser/kcm_browser.desktop +share/apps/kcm_componentchooser/kcm_filemanager.desktop share/apps/kcm_componentchooser/kcm_kemail.desktop share/apps/kcm_componentchooser/kcm_terminal.desktop +share/apps/kcm_componentchooser/kcm_wm.desktop share/apps/kcm_phonon/listview-background.png share/apps/kcmlocale/pics/background.png share/apps/kconf_update/devicepreference.upd +share/apps/kconf_update/kdedglobalaccel_kde42.upd share/apps/kconf_update/kuriikwsfilter.upd share/apps/kde/kde.notifyrc share/apps/khelpcenter/glossary.html.in share/apps/khelpcenter/glossary.xslt share/apps/khelpcenter/index.html.in -share/apps/khelpcenter/intro.html.in share/apps/khelpcenter/khelpcenterui.rc share/apps/khelpcenter/plugins/Applications/.directory share/apps/khelpcenter/plugins/Manpages/.directory @@ -157,6 +209,10 @@ share/apps/khelpcenter/searchhandlers/htdig.desktop share/apps/khelpcenter/searchhandlers/htdig/htdig_long.html share/apps/khelpcenter/searchhandlers/man.desktop share/apps/khelpcenter/table-of-contents.xslt +share/apps/kio_bookmarks/kio_bookmarks.css +share/apps/kio_desktop/DesktopLinks/Home.desktop +share/apps/kio_desktop/directory.desktop +share/apps/kio_desktop/directory.trash share/apps/kio_finger/kio_finger.css share/apps/kio_finger/kio_finger.pl share/apps/kio_info/kde-info2html @@ -164,8 +220,36 @@ share/apps/kio_info/kde-info2html.conf share/apps/kio_man/kio_man.css share/apps/kio_thumbnail/pics/thumbnailfont_7x4.png share/apps/konqueror/dirtree/remote/smb-network.desktop +share/apps/ksmserver/windowmanagers/compiz-custom.desktop +share/apps/ksmserver/windowmanagers/compiz.desktop +share/apps/ksmserver/windowmanagers/metacity.desktop +share/apps/ksmserver/windowmanagers/openbox.desktop share/apps/kstyle/themes/oxygen.themerc share/apps/libphonon/hardwaredatabase +share/apps/nepomuk/ontologies/dces.desktop +share/apps/nepomuk/ontologies/dces.rdf +share/apps/nepomuk/ontologies/dcq.desktop +share/apps/nepomuk/ontologies/dcq.rdf +share/apps/nepomuk/ontologies/dctype.desktop +share/apps/nepomuk/ontologies/dctype.rdf +share/apps/nepomuk/ontologies/nao.desktop +share/apps/nepomuk/ontologies/nao.trig +share/apps/nepomuk/ontologies/nfo.desktop +share/apps/nepomuk/ontologies/nfo.trig +share/apps/nepomuk/ontologies/nie.desktop +share/apps/nepomuk/ontologies/nie.trig +share/apps/nepomuk/ontologies/nrl.desktop +share/apps/nepomuk/ontologies/nrl.trig +share/apps/nepomuk/ontologies/pimo.desktop +share/apps/nepomuk/ontologies/pimo.trig +share/apps/nepomuk/ontologies/rdf.desktop +share/apps/nepomuk/ontologies/rdf.rdfs +share/apps/nepomuk/ontologies/rdfs.desktop +share/apps/nepomuk/ontologies/rdfs.rdfs +share/apps/nepomuk/ontologies/xesam.desktop +share/apps/nepomuk/ontologies/xesam.rdfs +share/apps/nepomukstorage/nepomukstorage.notifyrc +share/apps/nepomukstrigiservice/nepomukstrigiservice.notifyrc share/apps/phonon/phonon.notifyrc share/apps/remoteview/smb-network.desktop share/autostart/nepomukserver.desktop @@ -177,8 +261,13 @@ share/config/kshorturifilterrc share/dbus-1/interfaces/org.kde.KTimeZoned.xml share/dbus-1/interfaces/org.kde.NepomukServer.xml share/dbus-1/interfaces/org.kde.khelpcenter.kcmhelpcenter.xml +share/dbus-1/interfaces/org.kde.nepomuk.OntologyManager.xml +share/dbus-1/interfaces/org.kde.nepomuk.Query.xml +share/dbus-1/interfaces/org.kde.nepomuk.QueryService.xml share/dbus-1/interfaces/org.kde.nepomuk.ServiceControl.xml share/dbus-1/interfaces/org.kde.nepomuk.ServiceManager.xml +share/dbus-1/interfaces/org.kde.nepomuk.Storage.xml +share/dbus-1/interfaces/org.kde.nepomuk.Strigi.xml share/dbus-1/services/org.kde.knotify.service share/desktop-directories/kde-development-translation.directory share/desktop-directories/kde-development-webdevelopment.directory @@ -194,6 +283,7 @@ share/desktop-directories/kde-games-arcade.directory share/desktop-directories/kde-games-board.directory share/desktop-directories/kde-games-card.directory share/desktop-directories/kde-games-kids.directory +share/desktop-directories/kde-games-logic.directory share/desktop-directories/kde-games-roguelikes.directory share/desktop-directories/kde-games-strategy.directory share/desktop-directories/kde-games.directory @@ -221,6 +311,9 @@ share/desktop-directories/kde-utilities.directory share/doc/HTML/en/kcontrol/background/common share/doc/HTML/en/kcontrol/background/index.cache.bz2 share/doc/HTML/en/kcontrol/background/index.docbook +share/doc/HTML/en/kcontrol/bookmarks/common +share/doc/HTML/en/kcontrol/bookmarks/index.cache.bz2 +share/doc/HTML/en/kcontrol/bookmarks/index.docbook share/doc/HTML/en/kcontrol/cache/common share/doc/HTML/en/kcontrol/cache/index.cache.bz2 share/doc/HTML/en/kcontrol/cache/index.docbook @@ -491,47 +584,48 @@ share/doc/HTML/en/khelpcenter/visualdict/pict8.png share/doc/HTML/en/khelpcenter/visualdict/pict9.png share/doc/HTML/en/khelpcenter/welcome.docbook share/doc/HTML/en/khelpcenter/whatiskde.docbook -share/doc/HTML/en/kioslave/bzip.docbook -share/doc/HTML/en/kioslave/bzip2.docbook -share/doc/HTML/en/kioslave/cgi.docbook -share/doc/HTML/en/kioslave/common -share/doc/HTML/en/kioslave/data.docbook -share/doc/HTML/en/kioslave/file.docbook -share/doc/HTML/en/kioslave/finger.docbook -share/doc/HTML/en/kioslave/fish.docbook -share/doc/HTML/en/kioslave/floppy.docbook -share/doc/HTML/en/kioslave/ftp.docbook -share/doc/HTML/en/kioslave/gopher.docbook -share/doc/HTML/en/kioslave/gzip.docbook -share/doc/HTML/en/kioslave/help.docbook -share/doc/HTML/en/kioslave/http.docbook -share/doc/HTML/en/kioslave/https.docbook -share/doc/HTML/en/kioslave/imap.docbook -share/doc/HTML/en/kioslave/imaps.docbook -share/doc/HTML/en/kioslave/index.cache.bz2 -share/doc/HTML/en/kioslave/index.docbook -share/doc/HTML/en/kioslave/info.docbook -share/doc/HTML/en/kioslave/lan.docbook -share/doc/HTML/en/kioslave/ldap.docbook -share/doc/HTML/en/kioslave/mac.docbook -share/doc/HTML/en/kioslave/mailto.docbook -share/doc/HTML/en/kioslave/man.docbook -share/doc/HTML/en/kioslave/mrml.docbook -share/doc/HTML/en/kioslave/news.docbook -share/doc/HTML/en/kioslave/nfs.docbook -share/doc/HTML/en/kioslave/nntp.docbook -share/doc/HTML/en/kioslave/pop3.docbook -share/doc/HTML/en/kioslave/pop3s.docbook -share/doc/HTML/en/kioslave/rlan.docbook -share/doc/HTML/en/kioslave/rlogin.docbook -share/doc/HTML/en/kioslave/sftp.docbook -share/doc/HTML/en/kioslave/smb.docbook -share/doc/HTML/en/kioslave/smtp.docbook -share/doc/HTML/en/kioslave/tar.docbook -share/doc/HTML/en/kioslave/telnet.docbook -share/doc/HTML/en/kioslave/thumbnail.docbook -share/doc/HTML/en/kioslave/webdav.docbook -share/doc/HTML/en/kioslave/webdavs.docbook +share/doc/HTML/en/kioslave/bookmarks/common +share/doc/HTML/en/kioslave/bookmarks/index.cache.bz2 +share/doc/HTML/en/kioslave/bookmarks/index.docbook +share/doc/HTML/en/kioslave/bzip2/common +share/doc/HTML/en/kioslave/bzip2/index.cache.bz2 +share/doc/HTML/en/kioslave/bzip2/index.docbook +share/doc/HTML/en/kioslave/cgi/common +share/doc/HTML/en/kioslave/cgi/index.cache.bz2 +share/doc/HTML/en/kioslave/cgi/index.docbook +share/doc/HTML/en/kioslave/finger/common +share/doc/HTML/en/kioslave/finger/index.cache.bz2 +share/doc/HTML/en/kioslave/finger/index.docbook +share/doc/HTML/en/kioslave/fish/common +share/doc/HTML/en/kioslave/fish/index.cache.bz2 +share/doc/HTML/en/kioslave/fish/index.docbook +share/doc/HTML/en/kioslave/floppy/common +share/doc/HTML/en/kioslave/floppy/index.cache.bz2 +share/doc/HTML/en/kioslave/floppy/index.docbook +share/doc/HTML/en/kioslave/gzip/common +share/doc/HTML/en/kioslave/gzip/index.cache.bz2 +share/doc/HTML/en/kioslave/gzip/index.docbook +share/doc/HTML/en/kioslave/info/common +share/doc/HTML/en/kioslave/info/index.cache.bz2 +share/doc/HTML/en/kioslave/info/index.docbook +share/doc/HTML/en/kioslave/man/common +share/doc/HTML/en/kioslave/man/index.cache.bz2 +share/doc/HTML/en/kioslave/man/index.docbook +share/doc/HTML/en/kioslave/nfs/common +share/doc/HTML/en/kioslave/nfs/index.cache.bz2 +share/doc/HTML/en/kioslave/nfs/index.docbook +share/doc/HTML/en/kioslave/sftp/common +share/doc/HTML/en/kioslave/sftp/index.cache.bz2 +share/doc/HTML/en/kioslave/sftp/index.docbook +share/doc/HTML/en/kioslave/smb/common +share/doc/HTML/en/kioslave/smb/index.cache.bz2 +share/doc/HTML/en/kioslave/smb/index.docbook +share/doc/HTML/en/kioslave/tar/common +share/doc/HTML/en/kioslave/tar/index.cache.bz2 +share/doc/HTML/en/kioslave/tar/index.docbook +share/doc/HTML/en/kioslave/thumbnail/common +share/doc/HTML/en/kioslave/thumbnail/index.cache.bz2 +share/doc/HTML/en/kioslave/thumbnail/index.docbook share/doc/HTML/en/knetattach/common share/doc/HTML/en/knetattach/index.cache.bz2 share/doc/HTML/en/knetattach/index.docbook @@ -596,21 +690,23 @@ share/icons/oxygen/128x128/actions/application-exit.png share/icons/oxygen/128x128/actions/appointment-new.png share/icons/oxygen/128x128/actions/bookmark-new.png share/icons/oxygen/128x128/actions/bookmarks-organize.png +share/icons/oxygen/128x128/actions/configure.png share/icons/oxygen/128x128/actions/dashboard-show.png share/icons/oxygen/128x128/actions/dialog-ok-apply.png share/icons/oxygen/128x128/actions/dialog-ok.png +share/icons/oxygen/128x128/actions/document-edit.png share/icons/oxygen/128x128/actions/document-preview.png share/icons/oxygen/128x128/actions/edit-bomb.png share/icons/oxygen/128x128/actions/edit-find.png share/icons/oxygen/128x128/actions/go-bottom.png share/icons/oxygen/128x128/actions/go-down.png -share/icons/oxygen/128x128/actions/go-first-page.png +share/icons/oxygen/128x128/actions/go-first-view-page.png share/icons/oxygen/128x128/actions/go-first.png -share/icons/oxygen/128x128/actions/go-last-page.png +share/icons/oxygen/128x128/actions/go-last-view-page.png share/icons/oxygen/128x128/actions/go-last.png -share/icons/oxygen/128x128/actions/go-next-page.png +share/icons/oxygen/128x128/actions/go-next-view-page.png share/icons/oxygen/128x128/actions/go-next.png -share/icons/oxygen/128x128/actions/go-previous-page.png +share/icons/oxygen/128x128/actions/go-previous-view-page.png share/icons/oxygen/128x128/actions/go-previous.png share/icons/oxygen/128x128/actions/go-top.png share/icons/oxygen/128x128/actions/go-up.png @@ -638,8 +734,10 @@ share/icons/oxygen/128x128/actions/system-shutdown.png share/icons/oxygen/128x128/actions/system-suspend-hibernate.png share/icons/oxygen/128x128/actions/system-suspend.png share/icons/oxygen/128x128/actions/system-switch-user.png +share/icons/oxygen/128x128/actions/tool-animator.png share/icons/oxygen/128x128/actions/tools-report-bug.png share/icons/oxygen/128x128/actions/tools-wizard.png +share/icons/oxygen/128x128/actions/transform-crop-and-resize.png share/icons/oxygen/128x128/actions/transform-move.png share/icons/oxygen/128x128/actions/transform-scale.png share/icons/oxygen/128x128/actions/user-group-new.png @@ -659,6 +757,7 @@ share/icons/oxygen/128x128/apps/akonadi.png share/icons/oxygen/128x128/apps/akregator.png share/icons/oxygen/128x128/apps/basket.png share/icons/oxygen/128x128/apps/bovo.png +share/icons/oxygen/128x128/apps/device-notifier.png share/icons/oxygen/128x128/apps/digikam.png share/icons/oxygen/128x128/apps/esd.png share/icons/oxygen/128x128/apps/fontforge.png @@ -671,17 +770,16 @@ share/icons/oxygen/128x128/apps/internet-telephony.png share/icons/oxygen/128x128/apps/internet-web-browser.png share/icons/oxygen/128x128/apps/k3b.png share/icons/oxygen/128x128/apps/kaffeine.png -share/icons/oxygen/128x128/apps/kate.png share/icons/oxygen/128x128/apps/kblogger.png share/icons/oxygen/128x128/apps/kbugbuster.png share/icons/oxygen/128x128/apps/kchart.png share/icons/oxygen/128x128/apps/kcolorchooser.png share/icons/oxygen/128x128/apps/kde.png share/icons/oxygen/128x128/apps/kexi.png -share/icons/oxygen/128x128/apps/kjots.png share/icons/oxygen/128x128/apps/kjournal.png share/icons/oxygen/128x128/apps/klipper.png share/icons/oxygen/128x128/apps/kmplayer.png +share/icons/oxygen/128x128/apps/knewsticker.png share/icons/oxygen/128x128/apps/knotes.png share/icons/oxygen/128x128/apps/kolf.png share/icons/oxygen/128x128/apps/konqueror.png @@ -705,7 +803,6 @@ share/icons/oxygen/128x128/apps/office-address-book.png share/icons/oxygen/128x128/apps/office-calendar.png share/icons/oxygen/128x128/apps/okteta.png share/icons/oxygen/128x128/apps/oxygen.png -share/icons/oxygen/128x128/apps/phonon-xine.png share/icons/oxygen/128x128/apps/plasma.png share/icons/oxygen/128x128/apps/plasmagik.png share/icons/oxygen/128x128/apps/preferences-contact-list.png @@ -714,6 +811,7 @@ share/icons/oxygen/128x128/apps/preferences-desktop-color.png share/icons/oxygen/128x128/apps/preferences-desktop-cryptography.png share/icons/oxygen/128x128/apps/preferences-desktop-default-applications.png share/icons/oxygen/128x128/apps/preferences-desktop-display.png +share/icons/oxygen/128x128/apps/preferences-desktop-font.png share/icons/oxygen/128x128/apps/preferences-desktop-gaming.png share/icons/oxygen/128x128/apps/preferences-desktop-icons.png share/icons/oxygen/128x128/apps/preferences-desktop-keyboard.png @@ -735,14 +833,19 @@ share/icons/oxygen/128x128/apps/preferences-system-login.png share/icons/oxygen/128x128/apps/preferences-system-network-sharing.png share/icons/oxygen/128x128/apps/preferences-system-power-management.png share/icons/oxygen/128x128/apps/preferences-system-time.png +share/icons/oxygen/128x128/apps/preferences-system-windows-actions.png +share/icons/oxygen/128x128/apps/preferences-system-windows-move.png share/icons/oxygen/128x128/apps/preferences-system-windows.png share/icons/oxygen/128x128/apps/preferences-web-browser-identification.png share/icons/oxygen/128x128/apps/scribus.png +share/icons/oxygen/128x128/apps/semn.png share/icons/oxygen/128x128/apps/strigi.png +share/icons/oxygen/128x128/apps/system-diagnosis.png share/icons/oxygen/128x128/apps/system-file-manager.png share/icons/oxygen/128x128/apps/system-software-update.png share/icons/oxygen/128x128/apps/system-users.png share/icons/oxygen/128x128/apps/tagua.png +share/icons/oxygen/128x128/apps/utilities-desktop-extra.png share/icons/oxygen/128x128/apps/utilities-file-archiver.png share/icons/oxygen/128x128/apps/utilities-log-viewer.png share/icons/oxygen/128x128/apps/utilities-system-monitor.png @@ -808,6 +911,7 @@ share/icons/oxygen/128x128/devices/multimedia-player.png share/icons/oxygen/128x128/devices/network-wired.png share/icons/oxygen/128x128/devices/network-wireless.png share/icons/oxygen/128x128/devices/pda.png +share/icons/oxygen/128x128/devices/phone-openmoko-freerunner.png share/icons/oxygen/128x128/devices/phone.png share/icons/oxygen/128x128/devices/printer.png share/icons/oxygen/128x128/devices/scanner.png @@ -827,7 +931,9 @@ share/icons/oxygen/128x128/emotes/face-smile-big.png share/icons/oxygen/128x128/emotes/face-smile.png share/icons/oxygen/128x128/emotes/face-surprise.png share/icons/oxygen/128x128/emotes/face-uncertain.png +share/icons/oxygen/128x128/emotes/face-wink.png share/icons/oxygen/128x128/mimetypes/application-illustrator.png +share/icons/oxygen/128x128/mimetypes/application-javascript.png share/icons/oxygen/128x128/mimetypes/application-msword.png share/icons/oxygen/128x128/mimetypes/application-octet-stream.png share/icons/oxygen/128x128/mimetypes/application-pdf.png @@ -838,6 +944,7 @@ share/icons/oxygen/128x128/mimetypes/application-postscript.png share/icons/oxygen/128x128/mimetypes/application-relaxng.png share/icons/oxygen/128x128/mimetypes/application-rss+xml.png share/icons/oxygen/128x128/mimetypes/application-rtf.png +share/icons/oxygen/128x128/mimetypes/application-vnd.ms-access.png share/icons/oxygen/128x128/mimetypes/application-vnd.ms-excel.png share/icons/oxygen/128x128/mimetypes/application-vnd.ms-powerpoint.png share/icons/oxygen/128x128/mimetypes/application-vnd.oasis.opendocument.chart.png @@ -902,7 +1009,9 @@ share/icons/oxygen/128x128/mimetypes/application-x-kontour.png share/icons/oxygen/128x128/mimetypes/application-x-krita.png share/icons/oxygen/128x128/mimetypes/application-x-kvtml.png share/icons/oxygen/128x128/mimetypes/application-x-lha.png +share/icons/oxygen/128x128/mimetypes/application-x-lzma-compressed-tar.png share/icons/oxygen/128x128/mimetypes/application-x-lzop.png +share/icons/oxygen/128x128/mimetypes/application-x-m4.png share/icons/oxygen/128x128/mimetypes/application-x-marble.png share/icons/oxygen/128x128/mimetypes/application-x-mimearchive.png share/icons/oxygen/128x128/mimetypes/application-x-mplayer2.png @@ -912,6 +1021,7 @@ share/icons/oxygen/128x128/mimetypes/application-x-mswrite.png share/icons/oxygen/128x128/mimetypes/application-x-nzb.png share/icons/oxygen/128x128/mimetypes/application-x-object.png share/icons/oxygen/128x128/mimetypes/application-x-pak.png +share/icons/oxygen/128x128/mimetypes/application-x-pem-key.png share/icons/oxygen/128x128/mimetypes/application-x-perl.png share/icons/oxygen/128x128/mimetypes/application-x-php.png share/icons/oxygen/128x128/mimetypes/application-x-plasma.png @@ -922,7 +1032,11 @@ share/icons/oxygen/128x128/mimetypes/application-x-rpm.png share/icons/oxygen/128x128/mimetypes/application-x-ruby.png share/icons/oxygen/128x128/mimetypes/application-x-sharedlib.png share/icons/oxygen/128x128/mimetypes/application-x-shellscript.png +share/icons/oxygen/128x128/mimetypes/application-x-shockwave-flash.png share/icons/oxygen/128x128/mimetypes/application-x-siag.png +share/icons/oxygen/128x128/mimetypes/application-x-smb-server.png +share/icons/oxygen/128x128/mimetypes/application-x-smb-workgroup.png +share/icons/oxygen/128x128/mimetypes/application-x-subrip.png share/icons/oxygen/128x128/mimetypes/application-x-tar.png share/icons/oxygen/128x128/mimetypes/application-x-tarz.png share/icons/oxygen/128x128/mimetypes/application-x-tgif.png @@ -956,6 +1070,7 @@ share/icons/oxygen/128x128/mimetypes/audio-x-mod.png share/icons/oxygen/128x128/mimetypes/audio-x-monkey.png share/icons/oxygen/128x128/mimetypes/audio-x-mp2.png share/icons/oxygen/128x128/mimetypes/audio-x-mpegurl.png +share/icons/oxygen/128x128/mimetypes/audio-x-ms-asx.png share/icons/oxygen/128x128/mimetypes/audio-x-ms-wma.png share/icons/oxygen/128x128/mimetypes/audio-x-musepack.png share/icons/oxygen/128x128/mimetypes/audio-x-pn-realaudio-plugin.png @@ -1020,25 +1135,35 @@ share/icons/oxygen/128x128/mimetypes/text-vcalendar.png share/icons/oxygen/128x128/mimetypes/text-vnd.abc.png share/icons/oxygen/128x128/mimetypes/text-vnd.wap.wml.png share/icons/oxygen/128x128/mimetypes/text-x-adasrc.png +share/icons/oxygen/128x128/mimetypes/text-x-authors.png share/icons/oxygen/128x128/mimetypes/text-x-bibtex.png share/icons/oxygen/128x128/mimetypes/text-x-c++hdr.png share/icons/oxygen/128x128/mimetypes/text-x-c++src.png +share/icons/oxygen/128x128/mimetypes/text-x-changelog.png share/icons/oxygen/128x128/mimetypes/text-x-chdr.png +share/icons/oxygen/128x128/mimetypes/text-x-cmake.png +share/icons/oxygen/128x128/mimetypes/text-x-copying.png share/icons/oxygen/128x128/mimetypes/text-x-csharp.png share/icons/oxygen/128x128/mimetypes/text-x-csrc.png share/icons/oxygen/128x128/mimetypes/text-x-dtd.png share/icons/oxygen/128x128/mimetypes/text-x-generic.png share/icons/oxygen/128x128/mimetypes/text-x-hex.png +share/icons/oxygen/128x128/mimetypes/text-x-install.png share/icons/oxygen/128x128/mimetypes/text-x-java.png share/icons/oxygen/128x128/mimetypes/text-x-katefilelist.png share/icons/oxygen/128x128/mimetypes/text-x-ldif.png +share/icons/oxygen/128x128/mimetypes/text-x-log.png share/icons/oxygen/128x128/mimetypes/text-x-makefile.png +share/icons/oxygen/128x128/mimetypes/text-x-nfo.png share/icons/oxygen/128x128/mimetypes/text-x-objchdr.png share/icons/oxygen/128x128/mimetypes/text-x-objcsrc.png share/icons/oxygen/128x128/mimetypes/text-x-pascal.png share/icons/oxygen/128x128/mimetypes/text-x-patch.png +share/icons/oxygen/128x128/mimetypes/text-x-po.png share/icons/oxygen/128x128/mimetypes/text-x-python.png +share/icons/oxygen/128x128/mimetypes/text-x-readme.png share/icons/oxygen/128x128/mimetypes/text-x-script.png +share/icons/oxygen/128x128/mimetypes/text-x-sql.png share/icons/oxygen/128x128/mimetypes/text-x-tcl.png share/icons/oxygen/128x128/mimetypes/text-x-tex.png share/icons/oxygen/128x128/mimetypes/text-x-texinfo.png @@ -1057,6 +1182,7 @@ share/icons/oxygen/128x128/mimetypes/video-mp4.png share/icons/oxygen/128x128/mimetypes/video-mpeg.png share/icons/oxygen/128x128/mimetypes/video-quicktime.png share/icons/oxygen/128x128/mimetypes/video-x-flic.png +share/icons/oxygen/128x128/mimetypes/video-x-flv.png share/icons/oxygen/128x128/mimetypes/video-x-generic.png share/icons/oxygen/128x128/mimetypes/video-x-matroska.png share/icons/oxygen/128x128/mimetypes/video-x-mng.png @@ -1072,6 +1198,7 @@ share/icons/oxygen/128x128/mimetypes/x-office-document.png share/icons/oxygen/128x128/mimetypes/x-office-spreadsheet.png share/icons/oxygen/128x128/places/document-multiple.png share/icons/oxygen/128x128/places/folder-blue.png +share/icons/oxygen/128x128/places/folder-bookmark.png share/icons/oxygen/128x128/places/folder-bookmarks.png share/icons/oxygen/128x128/places/folder-brown.png share/icons/oxygen/128x128/places/folder-cyan.png @@ -1116,6 +1243,30 @@ share/icons/oxygen/128x128/status/security-high.png share/icons/oxygen/128x128/status/security-low.png share/icons/oxygen/128x128/status/security-medium.png share/icons/oxygen/128x128/status/user-trash-full.png +share/icons/oxygen/128x128/status/weather-clear-night.png +share/icons/oxygen/128x128/status/weather-clear.png +share/icons/oxygen/128x128/status/weather-clouds-night.png +share/icons/oxygen/128x128/status/weather-clouds.png +share/icons/oxygen/128x128/status/weather-few-clouds-night.png +share/icons/oxygen/128x128/status/weather-few-clouds.png +share/icons/oxygen/128x128/status/weather-hail.png +share/icons/oxygen/128x128/status/weather-many-clouds.png +share/icons/oxygen/128x128/status/weather-mist.png +share/icons/oxygen/128x128/status/weather-none-available.png +share/icons/oxygen/128x128/status/weather-showers-day.png +share/icons/oxygen/128x128/status/weather-showers-night.png +share/icons/oxygen/128x128/status/weather-showers-scattered-day.png +share/icons/oxygen/128x128/status/weather-showers-scattered-night.png +share/icons/oxygen/128x128/status/weather-showers-scattered.png +share/icons/oxygen/128x128/status/weather-showers.png +share/icons/oxygen/128x128/status/weather-snow-rain.png +share/icons/oxygen/128x128/status/weather-snow-scattered-day.png +share/icons/oxygen/128x128/status/weather-snow-scattered-night.png +share/icons/oxygen/128x128/status/weather-snow-scattered.png +share/icons/oxygen/128x128/status/weather-snow.png +share/icons/oxygen/128x128/status/weather-storm-day.png +share/icons/oxygen/128x128/status/weather-storm-night.png +share/icons/oxygen/128x128/status/weather-storm.png share/icons/oxygen/16x16/actions/address-book-new.png share/icons/oxygen/16x16/actions/application-exit.png share/icons/oxygen/16x16/actions/appointment-new.png @@ -1137,6 +1288,9 @@ share/icons/oxygen/16x16/actions/bookmark-toolbar.png share/icons/oxygen/16x16/actions/bookmarks-organize.png share/icons/oxygen/16x16/actions/character-set.png share/icons/oxygen/16x16/actions/chronometer.png +share/icons/oxygen/16x16/actions/color-picker-black.png +share/icons/oxygen/16x16/actions/color-picker-grey.png +share/icons/oxygen/16x16/actions/color-picker-white.png share/icons/oxygen/16x16/actions/color-picker.png share/icons/oxygen/16x16/actions/configure-shortcuts.png share/icons/oxygen/16x16/actions/configure-toolbars.png @@ -1148,6 +1302,7 @@ share/icons/oxygen/16x16/actions/dialog-close.png share/icons/oxygen/16x16/actions/dialog-ok-apply.png share/icons/oxygen/16x16/actions/dialog-ok.png share/icons/oxygen/16x16/actions/document-decrypt.png +share/icons/oxygen/16x16/actions/document-edit.png share/icons/oxygen/16x16/actions/document-encrypt.png share/icons/oxygen/16x16/actions/document-export.png share/icons/oxygen/16x16/actions/document-import.png @@ -1239,17 +1394,21 @@ share/icons/oxygen/16x16/actions/get-hot-new-stuff.png share/icons/oxygen/16x16/actions/go-bottom.png share/icons/oxygen/16x16/actions/go-down-search.png share/icons/oxygen/16x16/actions/go-down.png -share/icons/oxygen/16x16/actions/go-first-page.png +share/icons/oxygen/16x16/actions/go-first-view-page.png +share/icons/oxygen/16x16/actions/go-first-view.png share/icons/oxygen/16x16/actions/go-first.png share/icons/oxygen/16x16/actions/go-home.png share/icons/oxygen/16x16/actions/go-jump-locationbar.png share/icons/oxygen/16x16/actions/go-jump-today.png share/icons/oxygen/16x16/actions/go-jump.png -share/icons/oxygen/16x16/actions/go-last-page.png +share/icons/oxygen/16x16/actions/go-last-view-page.png +share/icons/oxygen/16x16/actions/go-last-view.png share/icons/oxygen/16x16/actions/go-last.png -share/icons/oxygen/16x16/actions/go-next-page.png +share/icons/oxygen/16x16/actions/go-next-view-page.png +share/icons/oxygen/16x16/actions/go-next-view.png share/icons/oxygen/16x16/actions/go-next.png -share/icons/oxygen/16x16/actions/go-previous-page.png +share/icons/oxygen/16x16/actions/go-previous-view-page.png +share/icons/oxygen/16x16/actions/go-previous-view.png share/icons/oxygen/16x16/actions/go-previous.png share/icons/oxygen/16x16/actions/go-top.png share/icons/oxygen/16x16/actions/go-up-search.png @@ -1299,8 +1458,14 @@ share/icons/oxygen/16x16/actions/news-subscribe.png share/icons/oxygen/16x16/actions/news-unsubscribe.png share/icons/oxygen/16x16/actions/object-flip-horizontal.png share/icons/oxygen/16x16/actions/object-flip-vertical.png +share/icons/oxygen/16x16/actions/object-group.png +share/icons/oxygen/16x16/actions/object-order-back.png +share/icons/oxygen/16x16/actions/object-order-front.png +share/icons/oxygen/16x16/actions/object-order-lower.png +share/icons/oxygen/16x16/actions/object-order-raise.png share/icons/oxygen/16x16/actions/object-rotate-left.png share/icons/oxygen/16x16/actions/object-rotate-right.png +share/icons/oxygen/16x16/actions/object-ungroup.png share/icons/oxygen/16x16/actions/page-zoom.png share/icons/oxygen/16x16/actions/player-time.png share/icons/oxygen/16x16/actions/player-volume.png @@ -1330,16 +1495,20 @@ share/icons/oxygen/16x16/actions/tab-duplicate.png share/icons/oxygen/16x16/actions/tab-new-background.png share/icons/oxygen/16x16/actions/tab-new.png share/icons/oxygen/16x16/actions/text-speak.png +share/icons/oxygen/16x16/actions/tool-animator.png share/icons/oxygen/16x16/actions/tools-check-spelling.png share/icons/oxygen/16x16/actions/tools-media-optical-burn.png share/icons/oxygen/16x16/actions/tools-media-optical-copy.png share/icons/oxygen/16x16/actions/tools-report-bug.png share/icons/oxygen/16x16/actions/tools-wizard.png +share/icons/oxygen/16x16/actions/transform-crop-and-resize.png share/icons/oxygen/16x16/actions/transform-move.png share/icons/oxygen/16x16/actions/transform-rotate.png share/icons/oxygen/16x16/actions/transform-scale.png share/icons/oxygen/16x16/actions/trash-empty.png +share/icons/oxygen/16x16/actions/user-group-delete.png share/icons/oxygen/16x16/actions/user-group-new.png +share/icons/oxygen/16x16/actions/user-group-properties.png share/icons/oxygen/16x16/actions/user-properties.png share/icons/oxygen/16x16/actions/view-calendar-day.png share/icons/oxygen/16x16/actions/view-calendar-list.png @@ -1353,6 +1522,7 @@ share/icons/oxygen/16x16/actions/view-calendar-week.png share/icons/oxygen/16x16/actions/view-calendar-workweek.png share/icons/oxygen/16x16/actions/view-choose.png share/icons/oxygen/16x16/actions/view-close.png +share/icons/oxygen/16x16/actions/view-file-columns.png share/icons/oxygen/16x16/actions/view-filter.png share/icons/oxygen/16x16/actions/view-fullscreen.png share/icons/oxygen/16x16/actions/view-history.png @@ -1366,6 +1536,8 @@ share/icons/oxygen/16x16/actions/view-media-equalizer.png share/icons/oxygen/16x16/actions/view-media-lyrics.png share/icons/oxygen/16x16/actions/view-media-playlist.png share/icons/oxygen/16x16/actions/view-media-visualization.png +share/icons/oxygen/16x16/actions/view-object-histogram-linear.png +share/icons/oxygen/16x16/actions/view-object-histogram-logarithmic.png share/icons/oxygen/16x16/actions/view-pim-calendar.png share/icons/oxygen/16x16/actions/view-pim-contacts.png share/icons/oxygen/16x16/actions/view-pim-journal.png @@ -1426,17 +1598,16 @@ share/icons/oxygen/16x16/apps/internet-web-browser.png share/icons/oxygen/16x16/apps/java.png share/icons/oxygen/16x16/apps/k3b.png share/icons/oxygen/16x16/apps/kaffeine.png -share/icons/oxygen/16x16/apps/kate.png share/icons/oxygen/16x16/apps/kblogger.png share/icons/oxygen/16x16/apps/kbugbuster.png share/icons/oxygen/16x16/apps/kchart.png share/icons/oxygen/16x16/apps/kcolorchooser.png share/icons/oxygen/16x16/apps/kde.png share/icons/oxygen/16x16/apps/kexi.png -share/icons/oxygen/16x16/apps/kjots.png share/icons/oxygen/16x16/apps/kjournal.png share/icons/oxygen/16x16/apps/klipper.png share/icons/oxygen/16x16/apps/kmplayer.png +share/icons/oxygen/16x16/apps/knewsticker.png share/icons/oxygen/16x16/apps/knotes.png share/icons/oxygen/16x16/apps/kolf.png share/icons/oxygen/16x16/apps/konqueror.png @@ -1460,7 +1631,6 @@ share/icons/oxygen/16x16/apps/office-address-book.png share/icons/oxygen/16x16/apps/office-calendar.png share/icons/oxygen/16x16/apps/okteta.png share/icons/oxygen/16x16/apps/oxygen.png -share/icons/oxygen/16x16/apps/phonon-xine.png share/icons/oxygen/16x16/apps/plasma.png share/icons/oxygen/16x16/apps/plasmagik.png share/icons/oxygen/16x16/apps/preferences-contact-list.png @@ -1497,6 +1667,8 @@ share/icons/oxygen/16x16/apps/preferences-system-performance.png share/icons/oxygen/16x16/apps/preferences-system-power-management.png share/icons/oxygen/16x16/apps/preferences-system-session-services.png share/icons/oxygen/16x16/apps/preferences-system-time.png +share/icons/oxygen/16x16/apps/preferences-system-windows-actions.png +share/icons/oxygen/16x16/apps/preferences-system-windows-move.png share/icons/oxygen/16x16/apps/preferences-system-windows.png share/icons/oxygen/16x16/apps/preferences-web-browser-adblock.png share/icons/oxygen/16x16/apps/preferences-web-browser-cache.png @@ -1505,11 +1677,13 @@ share/icons/oxygen/16x16/apps/preferences-web-browser-identification.png share/icons/oxygen/16x16/apps/preferences-web-browser-shortcuts.png share/icons/oxygen/16x16/apps/preferences-web-browser-stylesheets.png share/icons/oxygen/16x16/apps/scribus.png +share/icons/oxygen/16x16/apps/semn.png share/icons/oxygen/16x16/apps/strigi.png share/icons/oxygen/16x16/apps/system-file-manager.png share/icons/oxygen/16x16/apps/system-software-update.png share/icons/oxygen/16x16/apps/system-users.png share/icons/oxygen/16x16/apps/tagua.png +share/icons/oxygen/16x16/apps/utilities-desktop-extra.png share/icons/oxygen/16x16/apps/utilities-file-archiver.png share/icons/oxygen/16x16/apps/utilities-log-viewer.png share/icons/oxygen/16x16/apps/utilities-system-monitor.png @@ -1575,6 +1749,7 @@ share/icons/oxygen/16x16/devices/multimedia-player.png share/icons/oxygen/16x16/devices/network-wired.png share/icons/oxygen/16x16/devices/network-wireless.png share/icons/oxygen/16x16/devices/pda.png +share/icons/oxygen/16x16/devices/phone-openmoko-freerunner.png share/icons/oxygen/16x16/devices/phone.png share/icons/oxygen/16x16/devices/printer.png share/icons/oxygen/16x16/devices/scanner.png @@ -1596,7 +1771,9 @@ share/icons/oxygen/16x16/emotes/face-smile-big.png share/icons/oxygen/16x16/emotes/face-smile.png share/icons/oxygen/16x16/emotes/face-surprise.png share/icons/oxygen/16x16/emotes/face-uncertain.png +share/icons/oxygen/16x16/emotes/face-wink.png share/icons/oxygen/16x16/mimetypes/application-illustrator.png +share/icons/oxygen/16x16/mimetypes/application-javascript.png share/icons/oxygen/16x16/mimetypes/application-msword.png share/icons/oxygen/16x16/mimetypes/application-octet-stream.png share/icons/oxygen/16x16/mimetypes/application-pdf.png @@ -1608,6 +1785,7 @@ share/icons/oxygen/16x16/mimetypes/application-pkcs7-signature.png share/icons/oxygen/16x16/mimetypes/application-relaxng.png share/icons/oxygen/16x16/mimetypes/application-rss+xml.png share/icons/oxygen/16x16/mimetypes/application-rtf.png +share/icons/oxygen/16x16/mimetypes/application-vnd.ms-access.png share/icons/oxygen/16x16/mimetypes/application-vnd.ms-excel.png share/icons/oxygen/16x16/mimetypes/application-vnd.ms-powerpoint.png share/icons/oxygen/16x16/mimetypes/application-vnd.oasis.opendocument.chart.png @@ -1671,7 +1849,9 @@ share/icons/oxygen/16x16/mimetypes/application-x-kontour.png share/icons/oxygen/16x16/mimetypes/application-x-krita.png share/icons/oxygen/16x16/mimetypes/application-x-kvtml.png share/icons/oxygen/16x16/mimetypes/application-x-lha.png +share/icons/oxygen/16x16/mimetypes/application-x-lzma-compressed-tar.png share/icons/oxygen/16x16/mimetypes/application-x-lzop.png +share/icons/oxygen/16x16/mimetypes/application-x-m4.png share/icons/oxygen/16x16/mimetypes/application-x-marble.png share/icons/oxygen/16x16/mimetypes/application-x-mimearchive.png share/icons/oxygen/16x16/mimetypes/application-x-mplayer2.png @@ -1681,6 +1861,7 @@ share/icons/oxygen/16x16/mimetypes/application-x-mswrite.png share/icons/oxygen/16x16/mimetypes/application-x-nzb.png share/icons/oxygen/16x16/mimetypes/application-x-object.png share/icons/oxygen/16x16/mimetypes/application-x-pak.png +share/icons/oxygen/16x16/mimetypes/application-x-pem-key.png share/icons/oxygen/16x16/mimetypes/application-x-perl.png share/icons/oxygen/16x16/mimetypes/application-x-php.png share/icons/oxygen/16x16/mimetypes/application-x-plasma.png @@ -1691,7 +1872,11 @@ share/icons/oxygen/16x16/mimetypes/application-x-rpm.png share/icons/oxygen/16x16/mimetypes/application-x-ruby.png share/icons/oxygen/16x16/mimetypes/application-x-sharedlib.png share/icons/oxygen/16x16/mimetypes/application-x-shellscript.png +share/icons/oxygen/16x16/mimetypes/application-x-shockwave-flash.png share/icons/oxygen/16x16/mimetypes/application-x-siag.png +share/icons/oxygen/16x16/mimetypes/application-x-smb-server.png +share/icons/oxygen/16x16/mimetypes/application-x-smb-workgroup.png +share/icons/oxygen/16x16/mimetypes/application-x-subrip.png share/icons/oxygen/16x16/mimetypes/application-x-tar.png share/icons/oxygen/16x16/mimetypes/application-x-tarz.png share/icons/oxygen/16x16/mimetypes/application-x-tgif.png @@ -1725,6 +1910,7 @@ share/icons/oxygen/16x16/mimetypes/audio-x-mod.png share/icons/oxygen/16x16/mimetypes/audio-x-monkey.png share/icons/oxygen/16x16/mimetypes/audio-x-mp2.png share/icons/oxygen/16x16/mimetypes/audio-x-mpegurl.png +share/icons/oxygen/16x16/mimetypes/audio-x-ms-asx.png share/icons/oxygen/16x16/mimetypes/audio-x-ms-wma.png share/icons/oxygen/16x16/mimetypes/audio-x-musepack.png share/icons/oxygen/16x16/mimetypes/audio-x-pn-realaudio-plugin.png @@ -1789,25 +1975,35 @@ share/icons/oxygen/16x16/mimetypes/text-vcalendar.png share/icons/oxygen/16x16/mimetypes/text-vnd.abc.png share/icons/oxygen/16x16/mimetypes/text-vnd.wap.wml.png share/icons/oxygen/16x16/mimetypes/text-x-adasrc.png +share/icons/oxygen/16x16/mimetypes/text-x-authors.png share/icons/oxygen/16x16/mimetypes/text-x-bibtex.png share/icons/oxygen/16x16/mimetypes/text-x-c++hdr.png share/icons/oxygen/16x16/mimetypes/text-x-c++src.png +share/icons/oxygen/16x16/mimetypes/text-x-changelog.png share/icons/oxygen/16x16/mimetypes/text-x-chdr.png +share/icons/oxygen/16x16/mimetypes/text-x-cmake.png +share/icons/oxygen/16x16/mimetypes/text-x-copying.png share/icons/oxygen/16x16/mimetypes/text-x-csharp.png share/icons/oxygen/16x16/mimetypes/text-x-csrc.png share/icons/oxygen/16x16/mimetypes/text-x-dtd.png share/icons/oxygen/16x16/mimetypes/text-x-generic.png share/icons/oxygen/16x16/mimetypes/text-x-hex.png +share/icons/oxygen/16x16/mimetypes/text-x-install.png share/icons/oxygen/16x16/mimetypes/text-x-java.png share/icons/oxygen/16x16/mimetypes/text-x-katefilelist.png share/icons/oxygen/16x16/mimetypes/text-x-ldif.png +share/icons/oxygen/16x16/mimetypes/text-x-log.png share/icons/oxygen/16x16/mimetypes/text-x-makefile.png +share/icons/oxygen/16x16/mimetypes/text-x-nfo.png share/icons/oxygen/16x16/mimetypes/text-x-objchdr.png share/icons/oxygen/16x16/mimetypes/text-x-objcsrc.png share/icons/oxygen/16x16/mimetypes/text-x-pascal.png share/icons/oxygen/16x16/mimetypes/text-x-patch.png +share/icons/oxygen/16x16/mimetypes/text-x-po.png share/icons/oxygen/16x16/mimetypes/text-x-python.png +share/icons/oxygen/16x16/mimetypes/text-x-readme.png share/icons/oxygen/16x16/mimetypes/text-x-script.png +share/icons/oxygen/16x16/mimetypes/text-x-sql.png share/icons/oxygen/16x16/mimetypes/text-x-tcl.png share/icons/oxygen/16x16/mimetypes/text-x-tex.png share/icons/oxygen/16x16/mimetypes/text-x-texinfo.png @@ -1826,6 +2022,7 @@ share/icons/oxygen/16x16/mimetypes/video-mp4.png share/icons/oxygen/16x16/mimetypes/video-mpeg.png share/icons/oxygen/16x16/mimetypes/video-quicktime.png share/icons/oxygen/16x16/mimetypes/video-x-flic.png +share/icons/oxygen/16x16/mimetypes/video-x-flv.png share/icons/oxygen/16x16/mimetypes/video-x-generic.png share/icons/oxygen/16x16/mimetypes/video-x-matroska.png share/icons/oxygen/16x16/mimetypes/video-x-mng.png @@ -1845,6 +2042,7 @@ share/icons/oxygen/16x16/places/bookmarks.png share/icons/oxygen/16x16/places/document-multiple.png share/icons/oxygen/16x16/places/favorites.png share/icons/oxygen/16x16/places/folder-blue.png +share/icons/oxygen/16x16/places/folder-bookmark.png share/icons/oxygen/16x16/places/folder-bookmarks.png share/icons/oxygen/16x16/places/folder-brown.png share/icons/oxygen/16x16/places/folder-cyan.png @@ -1880,6 +2078,10 @@ share/icons/oxygen/16x16/places/user-desktop.png share/icons/oxygen/16x16/places/user-home.png share/icons/oxygen/16x16/places/user-identity.png share/icons/oxygen/16x16/places/user-trash.png +share/icons/oxygen/16x16/status/audio-volume-high.png +share/icons/oxygen/16x16/status/audio-volume-low.png +share/icons/oxygen/16x16/status/audio-volume-medium.png +share/icons/oxygen/16x16/status/audio-volume-muted.png share/icons/oxygen/16x16/status/battery-040.png share/icons/oxygen/16x16/status/battery-060.png share/icons/oxygen/16x16/status/battery-080.png @@ -1925,6 +2127,27 @@ share/icons/oxygen/16x16/status/user-online.png share/icons/oxygen/16x16/status/user-trash-full.png share/icons/oxygen/16x16/status/wallet-closed.png share/icons/oxygen/16x16/status/wallet-open.png +share/icons/oxygen/16x16/status/weather-clear-night.png +share/icons/oxygen/16x16/status/weather-clear.png +share/icons/oxygen/16x16/status/weather-clouds-night.png +share/icons/oxygen/16x16/status/weather-clouds.png +share/icons/oxygen/16x16/status/weather-few-clouds-night.png +share/icons/oxygen/16x16/status/weather-few-clouds.png +share/icons/oxygen/16x16/status/weather-hail.png +share/icons/oxygen/16x16/status/weather-many-clouds.png +share/icons/oxygen/16x16/status/weather-mist.png +share/icons/oxygen/16x16/status/weather-showers-day.png +share/icons/oxygen/16x16/status/weather-showers-night.png +share/icons/oxygen/16x16/status/weather-showers-scattered-day.png +share/icons/oxygen/16x16/status/weather-showers-scattered-night.png +share/icons/oxygen/16x16/status/weather-showers-scattered.png +share/icons/oxygen/16x16/status/weather-showers.png +share/icons/oxygen/16x16/status/weather-snow-rain.png +share/icons/oxygen/16x16/status/weather-snow-scattered-day.png +share/icons/oxygen/16x16/status/weather-snow-scattered-night.png +share/icons/oxygen/16x16/status/weather-snow-scattered.png +share/icons/oxygen/16x16/status/weather-snow.png +share/icons/oxygen/16x16/status/weather-storm.png share/icons/oxygen/16x16/status/window-suppressed.png share/icons/oxygen/22x22/actions/address-book-new.png share/icons/oxygen/22x22/actions/application-exit.png @@ -1947,6 +2170,9 @@ share/icons/oxygen/22x22/actions/bookmark-toolbar.png share/icons/oxygen/22x22/actions/bookmarks-organize.png share/icons/oxygen/22x22/actions/character-set.png share/icons/oxygen/22x22/actions/chronometer.png +share/icons/oxygen/22x22/actions/color-picker-black.png +share/icons/oxygen/22x22/actions/color-picker-grey.png +share/icons/oxygen/22x22/actions/color-picker-white.png share/icons/oxygen/22x22/actions/color-picker.png share/icons/oxygen/22x22/actions/configure-shortcuts.png share/icons/oxygen/22x22/actions/configure-toolbars.png @@ -1958,6 +2184,7 @@ share/icons/oxygen/22x22/actions/dialog-close.png share/icons/oxygen/22x22/actions/dialog-ok-apply.png share/icons/oxygen/22x22/actions/dialog-ok.png share/icons/oxygen/22x22/actions/document-decrypt.png +share/icons/oxygen/22x22/actions/document-edit.png share/icons/oxygen/22x22/actions/document-encrypt.png share/icons/oxygen/22x22/actions/document-export.png share/icons/oxygen/22x22/actions/document-import.png @@ -2048,17 +2275,21 @@ share/icons/oxygen/22x22/actions/get-hot-new-stuff.png share/icons/oxygen/22x22/actions/go-bottom.png share/icons/oxygen/22x22/actions/go-down-search.png share/icons/oxygen/22x22/actions/go-down.png -share/icons/oxygen/22x22/actions/go-first-page.png +share/icons/oxygen/22x22/actions/go-first-view-page.png +share/icons/oxygen/22x22/actions/go-first-view.png share/icons/oxygen/22x22/actions/go-first.png share/icons/oxygen/22x22/actions/go-home.png share/icons/oxygen/22x22/actions/go-jump-locationbar.png share/icons/oxygen/22x22/actions/go-jump-today.png share/icons/oxygen/22x22/actions/go-jump.png -share/icons/oxygen/22x22/actions/go-last-page.png +share/icons/oxygen/22x22/actions/go-last-view-page.png +share/icons/oxygen/22x22/actions/go-last-view.png share/icons/oxygen/22x22/actions/go-last.png -share/icons/oxygen/22x22/actions/go-next-page.png +share/icons/oxygen/22x22/actions/go-next-view-page.png +share/icons/oxygen/22x22/actions/go-next-view.png share/icons/oxygen/22x22/actions/go-next.png -share/icons/oxygen/22x22/actions/go-previous-page.png +share/icons/oxygen/22x22/actions/go-previous-view-page.png +share/icons/oxygen/22x22/actions/go-previous-view.png share/icons/oxygen/22x22/actions/go-previous.png share/icons/oxygen/22x22/actions/go-top.png share/icons/oxygen/22x22/actions/go-up-search.png @@ -2138,16 +2369,20 @@ share/icons/oxygen/22x22/actions/tab-duplicate.png share/icons/oxygen/22x22/actions/tab-new-background.png share/icons/oxygen/22x22/actions/tab-new.png share/icons/oxygen/22x22/actions/text-speak.png +share/icons/oxygen/22x22/actions/tool-animator.png share/icons/oxygen/22x22/actions/tools-check-spelling.png share/icons/oxygen/22x22/actions/tools-media-optical-burn.png share/icons/oxygen/22x22/actions/tools-media-optical-copy.png share/icons/oxygen/22x22/actions/tools-report-bug.png share/icons/oxygen/22x22/actions/tools-wizard.png +share/icons/oxygen/22x22/actions/transform-crop-and-resize.png share/icons/oxygen/22x22/actions/transform-move.png share/icons/oxygen/22x22/actions/transform-rotate.png share/icons/oxygen/22x22/actions/transform-scale.png share/icons/oxygen/22x22/actions/trash-empty.png +share/icons/oxygen/22x22/actions/user-group-delete.png share/icons/oxygen/22x22/actions/user-group-new.png +share/icons/oxygen/22x22/actions/user-group-properties.png share/icons/oxygen/22x22/actions/user-properties.png share/icons/oxygen/22x22/actions/view-calendar-day.png share/icons/oxygen/22x22/actions/view-calendar-list.png @@ -2161,6 +2396,7 @@ share/icons/oxygen/22x22/actions/view-calendar-week.png share/icons/oxygen/22x22/actions/view-calendar-workweek.png share/icons/oxygen/22x22/actions/view-choose.png share/icons/oxygen/22x22/actions/view-close.png +share/icons/oxygen/22x22/actions/view-file-columns.png share/icons/oxygen/22x22/actions/view-filter.png share/icons/oxygen/22x22/actions/view-fullscreen.png share/icons/oxygen/22x22/actions/view-history.png @@ -2174,6 +2410,8 @@ share/icons/oxygen/22x22/actions/view-media-equalizer.png share/icons/oxygen/22x22/actions/view-media-lyrics.png share/icons/oxygen/22x22/actions/view-media-playlist.png share/icons/oxygen/22x22/actions/view-media-visualization.png +share/icons/oxygen/22x22/actions/view-object-histogram-linear.png +share/icons/oxygen/22x22/actions/view-object-histogram-logarithmic.png share/icons/oxygen/22x22/actions/view-pim-calendar.png share/icons/oxygen/22x22/actions/view-pim-contacts.png share/icons/oxygen/22x22/actions/view-pim-journal.png @@ -2199,6 +2437,7 @@ share/icons/oxygen/22x22/actions/view-sort-descending.png share/icons/oxygen/22x22/actions/view-split-left-right.png share/icons/oxygen/22x22/actions/view-split-top-bottom.png share/icons/oxygen/22x22/actions/view-statistics.png +share/icons/oxygen/22x22/actions/view-table-of-contents-ltr.png share/icons/oxygen/22x22/actions/view-table-of-contents-rtl.png share/icons/oxygen/22x22/actions/view-web-browser-dom-tree.png share/icons/oxygen/22x22/actions/window-close.png @@ -2236,14 +2475,12 @@ share/icons/oxygen/22x22/apps/internet-web-browser.png share/icons/oxygen/22x22/apps/java.png share/icons/oxygen/22x22/apps/k3b.png share/icons/oxygen/22x22/apps/kaffeine.png -share/icons/oxygen/22x22/apps/kate.png share/icons/oxygen/22x22/apps/kblogger.png share/icons/oxygen/22x22/apps/kbugbuster.png share/icons/oxygen/22x22/apps/kchart.png share/icons/oxygen/22x22/apps/kcolorchooser.png share/icons/oxygen/22x22/apps/kde.png share/icons/oxygen/22x22/apps/kexi.png -share/icons/oxygen/22x22/apps/kjots.png share/icons/oxygen/22x22/apps/kjournal.png share/icons/oxygen/22x22/apps/klipper.png share/icons/oxygen/22x22/apps/kmplayer.png @@ -2270,7 +2507,6 @@ share/icons/oxygen/22x22/apps/office-address-book.png share/icons/oxygen/22x22/apps/office-calendar.png share/icons/oxygen/22x22/apps/okteta.png share/icons/oxygen/22x22/apps/oxygen.png -share/icons/oxygen/22x22/apps/phonon-xine.png share/icons/oxygen/22x22/apps/plasma.png share/icons/oxygen/22x22/apps/plasmagik.png share/icons/oxygen/22x22/apps/preferences-contact-list.png @@ -2307,6 +2543,8 @@ share/icons/oxygen/22x22/apps/preferences-system-performance.png share/icons/oxygen/22x22/apps/preferences-system-power-management.png share/icons/oxygen/22x22/apps/preferences-system-session-services.png share/icons/oxygen/22x22/apps/preferences-system-time.png +share/icons/oxygen/22x22/apps/preferences-system-windows-actions.png +share/icons/oxygen/22x22/apps/preferences-system-windows-move.png share/icons/oxygen/22x22/apps/preferences-system-windows.png share/icons/oxygen/22x22/apps/preferences-web-browser-adblock.png share/icons/oxygen/22x22/apps/preferences-web-browser-cache.png @@ -2314,11 +2552,13 @@ share/icons/oxygen/22x22/apps/preferences-web-browser-cookies.png share/icons/oxygen/22x22/apps/preferences-web-browser-shortcuts.png share/icons/oxygen/22x22/apps/preferences-web-browser-stylesheets.png share/icons/oxygen/22x22/apps/scribus.png +share/icons/oxygen/22x22/apps/semn.png share/icons/oxygen/22x22/apps/strigi.png share/icons/oxygen/22x22/apps/system-file-manager.png share/icons/oxygen/22x22/apps/system-software-update.png share/icons/oxygen/22x22/apps/system-users.png share/icons/oxygen/22x22/apps/tagua.png +share/icons/oxygen/22x22/apps/utilities-desktop-extra.png share/icons/oxygen/22x22/apps/utilities-file-archiver.png share/icons/oxygen/22x22/apps/utilities-log-viewer.png share/icons/oxygen/22x22/apps/utilities-system-monitor.png @@ -2384,6 +2624,7 @@ share/icons/oxygen/22x22/devices/multimedia-player.png share/icons/oxygen/22x22/devices/network-wired.png share/icons/oxygen/22x22/devices/network-wireless.png share/icons/oxygen/22x22/devices/pda.png +share/icons/oxygen/22x22/devices/phone-openmoko-freerunner.png share/icons/oxygen/22x22/devices/phone.png share/icons/oxygen/22x22/devices/printer.png share/icons/oxygen/22x22/devices/scanner.png @@ -2415,6 +2656,7 @@ share/icons/oxygen/22x22/emotes/face-surprise.png share/icons/oxygen/22x22/emotes/face-uncertain.png share/icons/oxygen/22x22/emotes/face-wink.png share/icons/oxygen/22x22/mimetypes/application-illustrator.png +share/icons/oxygen/22x22/mimetypes/application-javascript.png share/icons/oxygen/22x22/mimetypes/application-msword.png share/icons/oxygen/22x22/mimetypes/application-octet-stream.png share/icons/oxygen/22x22/mimetypes/application-pdf.png @@ -2427,6 +2669,7 @@ share/icons/oxygen/22x22/mimetypes/application-postscript.png share/icons/oxygen/22x22/mimetypes/application-relaxng.png share/icons/oxygen/22x22/mimetypes/application-rss+xml.png share/icons/oxygen/22x22/mimetypes/application-rtf.png +share/icons/oxygen/22x22/mimetypes/application-vnd.ms-access.png share/icons/oxygen/22x22/mimetypes/application-vnd.ms-excel.png share/icons/oxygen/22x22/mimetypes/application-vnd.ms-powerpoint.png share/icons/oxygen/22x22/mimetypes/application-vnd.oasis.opendocument.chart.png @@ -2491,7 +2734,9 @@ share/icons/oxygen/22x22/mimetypes/application-x-kontour.png share/icons/oxygen/22x22/mimetypes/application-x-krita.png share/icons/oxygen/22x22/mimetypes/application-x-kvtml.png share/icons/oxygen/22x22/mimetypes/application-x-lha.png +share/icons/oxygen/22x22/mimetypes/application-x-lzma-compressed-tar.png share/icons/oxygen/22x22/mimetypes/application-x-lzop.png +share/icons/oxygen/22x22/mimetypes/application-x-m4.png share/icons/oxygen/22x22/mimetypes/application-x-marble.png share/icons/oxygen/22x22/mimetypes/application-x-mimearchive.png share/icons/oxygen/22x22/mimetypes/application-x-mplayer2.png @@ -2501,6 +2746,7 @@ share/icons/oxygen/22x22/mimetypes/application-x-mswrite.png share/icons/oxygen/22x22/mimetypes/application-x-nzb.png share/icons/oxygen/22x22/mimetypes/application-x-object.png share/icons/oxygen/22x22/mimetypes/application-x-pak.png +share/icons/oxygen/22x22/mimetypes/application-x-pem-key.png share/icons/oxygen/22x22/mimetypes/application-x-perl.png share/icons/oxygen/22x22/mimetypes/application-x-php.png share/icons/oxygen/22x22/mimetypes/application-x-plasma.png @@ -2511,7 +2757,11 @@ share/icons/oxygen/22x22/mimetypes/application-x-rpm.png share/icons/oxygen/22x22/mimetypes/application-x-ruby.png share/icons/oxygen/22x22/mimetypes/application-x-sharedlib.png share/icons/oxygen/22x22/mimetypes/application-x-shellscript.png +share/icons/oxygen/22x22/mimetypes/application-x-shockwave-flash.png share/icons/oxygen/22x22/mimetypes/application-x-siag.png +share/icons/oxygen/22x22/mimetypes/application-x-smb-server.png +share/icons/oxygen/22x22/mimetypes/application-x-smb-workgroup.png +share/icons/oxygen/22x22/mimetypes/application-x-subrip.png share/icons/oxygen/22x22/mimetypes/application-x-tar.png share/icons/oxygen/22x22/mimetypes/application-x-tarz.png share/icons/oxygen/22x22/mimetypes/application-x-tgif.png @@ -2545,6 +2795,7 @@ share/icons/oxygen/22x22/mimetypes/audio-x-mod.png share/icons/oxygen/22x22/mimetypes/audio-x-monkey.png share/icons/oxygen/22x22/mimetypes/audio-x-mp2.png share/icons/oxygen/22x22/mimetypes/audio-x-mpegurl.png +share/icons/oxygen/22x22/mimetypes/audio-x-ms-asx.png share/icons/oxygen/22x22/mimetypes/audio-x-ms-wma.png share/icons/oxygen/22x22/mimetypes/audio-x-musepack.png share/icons/oxygen/22x22/mimetypes/audio-x-pn-realaudio-plugin.png @@ -2609,25 +2860,35 @@ share/icons/oxygen/22x22/mimetypes/text-vcalendar.png share/icons/oxygen/22x22/mimetypes/text-vnd.abc.png share/icons/oxygen/22x22/mimetypes/text-vnd.wap.wml.png share/icons/oxygen/22x22/mimetypes/text-x-adasrc.png +share/icons/oxygen/22x22/mimetypes/text-x-authors.png share/icons/oxygen/22x22/mimetypes/text-x-bibtex.png share/icons/oxygen/22x22/mimetypes/text-x-c++hdr.png share/icons/oxygen/22x22/mimetypes/text-x-c++src.png +share/icons/oxygen/22x22/mimetypes/text-x-changelog.png share/icons/oxygen/22x22/mimetypes/text-x-chdr.png +share/icons/oxygen/22x22/mimetypes/text-x-cmake.png +share/icons/oxygen/22x22/mimetypes/text-x-copying.png share/icons/oxygen/22x22/mimetypes/text-x-csharp.png share/icons/oxygen/22x22/mimetypes/text-x-csrc.png share/icons/oxygen/22x22/mimetypes/text-x-dtd.png share/icons/oxygen/22x22/mimetypes/text-x-generic.png share/icons/oxygen/22x22/mimetypes/text-x-hex.png +share/icons/oxygen/22x22/mimetypes/text-x-install.png share/icons/oxygen/22x22/mimetypes/text-x-java.png share/icons/oxygen/22x22/mimetypes/text-x-katefilelist.png share/icons/oxygen/22x22/mimetypes/text-x-ldif.png +share/icons/oxygen/22x22/mimetypes/text-x-log.png share/icons/oxygen/22x22/mimetypes/text-x-makefile.png +share/icons/oxygen/22x22/mimetypes/text-x-nfo.png share/icons/oxygen/22x22/mimetypes/text-x-objchdr.png share/icons/oxygen/22x22/mimetypes/text-x-objcsrc.png share/icons/oxygen/22x22/mimetypes/text-x-pascal.png share/icons/oxygen/22x22/mimetypes/text-x-patch.png +share/icons/oxygen/22x22/mimetypes/text-x-po.png share/icons/oxygen/22x22/mimetypes/text-x-python.png +share/icons/oxygen/22x22/mimetypes/text-x-readme.png share/icons/oxygen/22x22/mimetypes/text-x-script.png +share/icons/oxygen/22x22/mimetypes/text-x-sql.png share/icons/oxygen/22x22/mimetypes/text-x-tcl.png share/icons/oxygen/22x22/mimetypes/text-x-tex.png share/icons/oxygen/22x22/mimetypes/text-x-texinfo.png @@ -2646,6 +2907,7 @@ share/icons/oxygen/22x22/mimetypes/video-mp4.png share/icons/oxygen/22x22/mimetypes/video-mpeg.png share/icons/oxygen/22x22/mimetypes/video-quicktime.png share/icons/oxygen/22x22/mimetypes/video-x-flic.png +share/icons/oxygen/22x22/mimetypes/video-x-flv.png share/icons/oxygen/22x22/mimetypes/video-x-generic.png share/icons/oxygen/22x22/mimetypes/video-x-matroska.png share/icons/oxygen/22x22/mimetypes/video-x-mng.png @@ -2665,6 +2927,7 @@ share/icons/oxygen/22x22/places/bookmarks.png share/icons/oxygen/22x22/places/document-multiple.png share/icons/oxygen/22x22/places/favorites.png share/icons/oxygen/22x22/places/folder-blue.png +share/icons/oxygen/22x22/places/folder-bookmark.png share/icons/oxygen/22x22/places/folder-bookmarks.png share/icons/oxygen/22x22/places/folder-brown.png share/icons/oxygen/22x22/places/folder-cyan.png @@ -2749,8 +3012,28 @@ share/icons/oxygen/22x22/status/user-online.png share/icons/oxygen/22x22/status/user-trash-full.png share/icons/oxygen/22x22/status/wallet-closed.png share/icons/oxygen/22x22/status/wallet-open.png +share/icons/oxygen/22x22/status/weather-clear-night.png +share/icons/oxygen/22x22/status/weather-clear.png +share/icons/oxygen/22x22/status/weather-clouds-night.png +share/icons/oxygen/22x22/status/weather-clouds.png +share/icons/oxygen/22x22/status/weather-few-clouds-night.png +share/icons/oxygen/22x22/status/weather-few-clouds.png +share/icons/oxygen/22x22/status/weather-hail.png +share/icons/oxygen/22x22/status/weather-many-clouds.png +share/icons/oxygen/22x22/status/weather-mist.png +share/icons/oxygen/22x22/status/weather-showers-day.png +share/icons/oxygen/22x22/status/weather-showers-night.png +share/icons/oxygen/22x22/status/weather-showers-scattered-day.png +share/icons/oxygen/22x22/status/weather-showers-scattered-night.png +share/icons/oxygen/22x22/status/weather-showers-scattered.png +share/icons/oxygen/22x22/status/weather-showers.png +share/icons/oxygen/22x22/status/weather-snow-rain.png +share/icons/oxygen/22x22/status/weather-snow-scattered-day.png +share/icons/oxygen/22x22/status/weather-snow-scattered-night.png +share/icons/oxygen/22x22/status/weather-snow-scattered.png +share/icons/oxygen/22x22/status/weather-snow.png +share/icons/oxygen/22x22/status/weather-storm.png share/icons/oxygen/22x22/status/window-suppressed.png -share/icons/oxygen/22x22/view-table-of-contents-ltr.png share/icons/oxygen/32x32/actions/address-book-new.png share/icons/oxygen/32x32/actions/application-exit.png share/icons/oxygen/32x32/actions/appointment-new.png @@ -2772,6 +3055,9 @@ share/icons/oxygen/32x32/actions/bookmark-toolbar.png share/icons/oxygen/32x32/actions/bookmarks-organize.png share/icons/oxygen/32x32/actions/character-set.png share/icons/oxygen/32x32/actions/chronometer.png +share/icons/oxygen/32x32/actions/color-picker-black.png +share/icons/oxygen/32x32/actions/color-picker-grey.png +share/icons/oxygen/32x32/actions/color-picker-white.png share/icons/oxygen/32x32/actions/color-picker.png share/icons/oxygen/32x32/actions/configure-shortcuts.png share/icons/oxygen/32x32/actions/configure-toolbars.png @@ -2783,6 +3069,7 @@ share/icons/oxygen/32x32/actions/dialog-close.png share/icons/oxygen/32x32/actions/dialog-ok-apply.png share/icons/oxygen/32x32/actions/dialog-ok.png share/icons/oxygen/32x32/actions/document-decrypt.png +share/icons/oxygen/32x32/actions/document-edit.png share/icons/oxygen/32x32/actions/document-encrypt.png share/icons/oxygen/32x32/actions/document-export.png share/icons/oxygen/32x32/actions/document-import.png @@ -2825,6 +3112,7 @@ share/icons/oxygen/32x32/actions/edit-rename.png share/icons/oxygen/32x32/actions/edit-select-all.png share/icons/oxygen/32x32/actions/edit-undo.png share/icons/oxygen/32x32/actions/feed-subscribe.png +share/icons/oxygen/32x32/actions/fileview-preview.png share/icons/oxygen/32x32/actions/fill-color.png share/icons/oxygen/32x32/actions/flag-black.png share/icons/oxygen/32x32/actions/flag-blue.png @@ -2873,17 +3161,21 @@ share/icons/oxygen/32x32/actions/get-hot-new-stuff.png share/icons/oxygen/32x32/actions/go-bottom.png share/icons/oxygen/32x32/actions/go-down-search.png share/icons/oxygen/32x32/actions/go-down.png -share/icons/oxygen/32x32/actions/go-first-page.png +share/icons/oxygen/32x32/actions/go-first-view-page.png +share/icons/oxygen/32x32/actions/go-first-view.png share/icons/oxygen/32x32/actions/go-first.png share/icons/oxygen/32x32/actions/go-home.png share/icons/oxygen/32x32/actions/go-jump-locationbar.png share/icons/oxygen/32x32/actions/go-jump-today.png share/icons/oxygen/32x32/actions/go-jump.png -share/icons/oxygen/32x32/actions/go-last-page.png +share/icons/oxygen/32x32/actions/go-last-view-page.png +share/icons/oxygen/32x32/actions/go-last-view.png share/icons/oxygen/32x32/actions/go-last.png -share/icons/oxygen/32x32/actions/go-next-page.png +share/icons/oxygen/32x32/actions/go-next-view-page.png +share/icons/oxygen/32x32/actions/go-next-view.png share/icons/oxygen/32x32/actions/go-next.png -share/icons/oxygen/32x32/actions/go-previous-page.png +share/icons/oxygen/32x32/actions/go-previous-view-page.png +share/icons/oxygen/32x32/actions/go-previous-view.png share/icons/oxygen/32x32/actions/go-previous.png share/icons/oxygen/32x32/actions/go-top.png share/icons/oxygen/32x32/actions/go-up-search.png @@ -2964,16 +3256,20 @@ share/icons/oxygen/32x32/actions/tab-duplicate.png share/icons/oxygen/32x32/actions/tab-new-background.png share/icons/oxygen/32x32/actions/tab-new.png share/icons/oxygen/32x32/actions/text-speak.png +share/icons/oxygen/32x32/actions/tool-animator.png share/icons/oxygen/32x32/actions/tools-check-spelling.png share/icons/oxygen/32x32/actions/tools-media-optical-burn.png share/icons/oxygen/32x32/actions/tools-media-optical-copy.png share/icons/oxygen/32x32/actions/tools-report-bug.png share/icons/oxygen/32x32/actions/tools-wizard.png +share/icons/oxygen/32x32/actions/transform-crop-and-resize.png share/icons/oxygen/32x32/actions/transform-move.png share/icons/oxygen/32x32/actions/transform-rotate.png share/icons/oxygen/32x32/actions/transform-scale.png share/icons/oxygen/32x32/actions/trash-empty.png +share/icons/oxygen/32x32/actions/user-group-delete.png share/icons/oxygen/32x32/actions/user-group-new.png +share/icons/oxygen/32x32/actions/user-group-properties.png share/icons/oxygen/32x32/actions/user-properties.png share/icons/oxygen/32x32/actions/view-calendar-day.png share/icons/oxygen/32x32/actions/view-calendar-list.png @@ -2987,6 +3283,7 @@ share/icons/oxygen/32x32/actions/view-calendar-week.png share/icons/oxygen/32x32/actions/view-calendar-workweek.png share/icons/oxygen/32x32/actions/view-choose.png share/icons/oxygen/32x32/actions/view-close.png +share/icons/oxygen/32x32/actions/view-file-columns.png share/icons/oxygen/32x32/actions/view-filter.png share/icons/oxygen/32x32/actions/view-fullscreen.png share/icons/oxygen/32x32/actions/view-history.png @@ -3000,6 +3297,8 @@ share/icons/oxygen/32x32/actions/view-media-equalizer.png share/icons/oxygen/32x32/actions/view-media-lyrics.png share/icons/oxygen/32x32/actions/view-media-playlist.png share/icons/oxygen/32x32/actions/view-media-visualization.png +share/icons/oxygen/32x32/actions/view-object-histogram-linear.png +share/icons/oxygen/32x32/actions/view-object-histogram-logarithmic.png share/icons/oxygen/32x32/actions/view-pim-calendar.png share/icons/oxygen/32x32/actions/view-pim-contacts.png share/icons/oxygen/32x32/actions/view-pim-journal.png @@ -3025,6 +3324,7 @@ share/icons/oxygen/32x32/actions/view-sort-descending.png share/icons/oxygen/32x32/actions/view-split-left-right.png share/icons/oxygen/32x32/actions/view-split-top-bottom.png share/icons/oxygen/32x32/actions/view-statistics.png +share/icons/oxygen/32x32/actions/view-table-of-contents-ltr.png share/icons/oxygen/32x32/actions/view-table-of-contents-rtl.png share/icons/oxygen/32x32/actions/view-web-browser-dom-tree.png share/icons/oxygen/32x32/actions/window-close.png @@ -3060,17 +3360,16 @@ share/icons/oxygen/32x32/apps/internet-web-browser.png share/icons/oxygen/32x32/apps/java.png share/icons/oxygen/32x32/apps/k3b.png share/icons/oxygen/32x32/apps/kaffeine.png -share/icons/oxygen/32x32/apps/kate.png share/icons/oxygen/32x32/apps/kblogger.png share/icons/oxygen/32x32/apps/kbugbuster.png share/icons/oxygen/32x32/apps/kchart.png share/icons/oxygen/32x32/apps/kcolorchooser.png share/icons/oxygen/32x32/apps/kde.png share/icons/oxygen/32x32/apps/kexi.png -share/icons/oxygen/32x32/apps/kjots.png share/icons/oxygen/32x32/apps/kjournal.png share/icons/oxygen/32x32/apps/klipper.png share/icons/oxygen/32x32/apps/kmplayer.png +share/icons/oxygen/32x32/apps/knewsticker.png share/icons/oxygen/32x32/apps/knotes.png share/icons/oxygen/32x32/apps/kolf.png share/icons/oxygen/32x32/apps/konqueror.png @@ -3094,7 +3393,6 @@ share/icons/oxygen/32x32/apps/office-address-book.png share/icons/oxygen/32x32/apps/office-calendar.png share/icons/oxygen/32x32/apps/okteta.png share/icons/oxygen/32x32/apps/oxygen.png -share/icons/oxygen/32x32/apps/phonon-xine.png share/icons/oxygen/32x32/apps/plasma.png share/icons/oxygen/32x32/apps/plasmagik.png share/icons/oxygen/32x32/apps/preferences-contact-list.png @@ -3131,6 +3429,8 @@ share/icons/oxygen/32x32/apps/preferences-system-performance.png share/icons/oxygen/32x32/apps/preferences-system-power-management.png share/icons/oxygen/32x32/apps/preferences-system-session-services.png share/icons/oxygen/32x32/apps/preferences-system-time.png +share/icons/oxygen/32x32/apps/preferences-system-windows-actions.png +share/icons/oxygen/32x32/apps/preferences-system-windows-move.png share/icons/oxygen/32x32/apps/preferences-system-windows.png share/icons/oxygen/32x32/apps/preferences-web-browser-adblock.png share/icons/oxygen/32x32/apps/preferences-web-browser-cache.png @@ -3139,11 +3439,13 @@ share/icons/oxygen/32x32/apps/preferences-web-browser-identification.png share/icons/oxygen/32x32/apps/preferences-web-browser-shortcuts.png share/icons/oxygen/32x32/apps/preferences-web-browser-stylesheets.png share/icons/oxygen/32x32/apps/scribus.png +share/icons/oxygen/32x32/apps/semn.png share/icons/oxygen/32x32/apps/strigi.png share/icons/oxygen/32x32/apps/system-file-manager.png share/icons/oxygen/32x32/apps/system-software-update.png share/icons/oxygen/32x32/apps/system-users.png share/icons/oxygen/32x32/apps/tagua.png +share/icons/oxygen/32x32/apps/utilities-desktop-extra.png share/icons/oxygen/32x32/apps/utilities-file-archiver.png share/icons/oxygen/32x32/apps/utilities-log-viewer.png share/icons/oxygen/32x32/apps/utilities-system-monitor.png @@ -3209,6 +3511,7 @@ share/icons/oxygen/32x32/devices/multimedia-player.png share/icons/oxygen/32x32/devices/network-wired.png share/icons/oxygen/32x32/devices/network-wireless.png share/icons/oxygen/32x32/devices/pda.png +share/icons/oxygen/32x32/devices/phone-openmoko-freerunner.png share/icons/oxygen/32x32/devices/phone.png share/icons/oxygen/32x32/devices/printer.png share/icons/oxygen/32x32/devices/scanner.png @@ -3230,7 +3533,9 @@ share/icons/oxygen/32x32/emotes/face-smile-big.png share/icons/oxygen/32x32/emotes/face-smile.png share/icons/oxygen/32x32/emotes/face-surprise.png share/icons/oxygen/32x32/emotes/face-uncertain.png +share/icons/oxygen/32x32/emotes/face-wink.png share/icons/oxygen/32x32/mimetypes/application-illustrator.png +share/icons/oxygen/32x32/mimetypes/application-javascript.png share/icons/oxygen/32x32/mimetypes/application-msword.png share/icons/oxygen/32x32/mimetypes/application-octet-stream.png share/icons/oxygen/32x32/mimetypes/application-pdf.png @@ -3243,6 +3548,7 @@ share/icons/oxygen/32x32/mimetypes/application-postscript.png share/icons/oxygen/32x32/mimetypes/application-relaxng.png share/icons/oxygen/32x32/mimetypes/application-rss+xml.png share/icons/oxygen/32x32/mimetypes/application-rtf.png +share/icons/oxygen/32x32/mimetypes/application-vnd.ms-access.png share/icons/oxygen/32x32/mimetypes/application-vnd.ms-excel.png share/icons/oxygen/32x32/mimetypes/application-vnd.ms-powerpoint.png share/icons/oxygen/32x32/mimetypes/application-vnd.oasis.opendocument.chart.png @@ -3307,7 +3613,9 @@ share/icons/oxygen/32x32/mimetypes/application-x-kontour.png share/icons/oxygen/32x32/mimetypes/application-x-krita.png share/icons/oxygen/32x32/mimetypes/application-x-kvtml.png share/icons/oxygen/32x32/mimetypes/application-x-lha.png +share/icons/oxygen/32x32/mimetypes/application-x-lzma-compressed-tar.png share/icons/oxygen/32x32/mimetypes/application-x-lzop.png +share/icons/oxygen/32x32/mimetypes/application-x-m4.png share/icons/oxygen/32x32/mimetypes/application-x-marble.png share/icons/oxygen/32x32/mimetypes/application-x-mimearchive.png share/icons/oxygen/32x32/mimetypes/application-x-mplayer2.png @@ -3317,6 +3625,7 @@ share/icons/oxygen/32x32/mimetypes/application-x-mswrite.png share/icons/oxygen/32x32/mimetypes/application-x-nzb.png share/icons/oxygen/32x32/mimetypes/application-x-object.png share/icons/oxygen/32x32/mimetypes/application-x-pak.png +share/icons/oxygen/32x32/mimetypes/application-x-pem-key.png share/icons/oxygen/32x32/mimetypes/application-x-perl.png share/icons/oxygen/32x32/mimetypes/application-x-php.png share/icons/oxygen/32x32/mimetypes/application-x-plasma.png @@ -3327,7 +3636,11 @@ share/icons/oxygen/32x32/mimetypes/application-x-rpm.png share/icons/oxygen/32x32/mimetypes/application-x-ruby.png share/icons/oxygen/32x32/mimetypes/application-x-sharedlib.png share/icons/oxygen/32x32/mimetypes/application-x-shellscript.png +share/icons/oxygen/32x32/mimetypes/application-x-shockwave-flash.png share/icons/oxygen/32x32/mimetypes/application-x-siag.png +share/icons/oxygen/32x32/mimetypes/application-x-smb-server.png +share/icons/oxygen/32x32/mimetypes/application-x-smb-workgroup.png +share/icons/oxygen/32x32/mimetypes/application-x-subrip.png share/icons/oxygen/32x32/mimetypes/application-x-tar.png share/icons/oxygen/32x32/mimetypes/application-x-tarz.png share/icons/oxygen/32x32/mimetypes/application-x-tgif.png @@ -3361,6 +3674,7 @@ share/icons/oxygen/32x32/mimetypes/audio-x-mod.png share/icons/oxygen/32x32/mimetypes/audio-x-monkey.png share/icons/oxygen/32x32/mimetypes/audio-x-mp2.png share/icons/oxygen/32x32/mimetypes/audio-x-mpegurl.png +share/icons/oxygen/32x32/mimetypes/audio-x-ms-asx.png share/icons/oxygen/32x32/mimetypes/audio-x-ms-wma.png share/icons/oxygen/32x32/mimetypes/audio-x-musepack.png share/icons/oxygen/32x32/mimetypes/audio-x-pn-realaudio-plugin.png @@ -3425,25 +3739,35 @@ share/icons/oxygen/32x32/mimetypes/text-vcalendar.png share/icons/oxygen/32x32/mimetypes/text-vnd.abc.png share/icons/oxygen/32x32/mimetypes/text-vnd.wap.wml.png share/icons/oxygen/32x32/mimetypes/text-x-adasrc.png +share/icons/oxygen/32x32/mimetypes/text-x-authors.png share/icons/oxygen/32x32/mimetypes/text-x-bibtex.png share/icons/oxygen/32x32/mimetypes/text-x-c++hdr.png share/icons/oxygen/32x32/mimetypes/text-x-c++src.png +share/icons/oxygen/32x32/mimetypes/text-x-changelog.png share/icons/oxygen/32x32/mimetypes/text-x-chdr.png +share/icons/oxygen/32x32/mimetypes/text-x-cmake.png +share/icons/oxygen/32x32/mimetypes/text-x-copying.png share/icons/oxygen/32x32/mimetypes/text-x-csharp.png share/icons/oxygen/32x32/mimetypes/text-x-csrc.png share/icons/oxygen/32x32/mimetypes/text-x-dtd.png share/icons/oxygen/32x32/mimetypes/text-x-generic.png share/icons/oxygen/32x32/mimetypes/text-x-hex.png +share/icons/oxygen/32x32/mimetypes/text-x-install.png share/icons/oxygen/32x32/mimetypes/text-x-java.png share/icons/oxygen/32x32/mimetypes/text-x-katefilelist.png share/icons/oxygen/32x32/mimetypes/text-x-ldif.png +share/icons/oxygen/32x32/mimetypes/text-x-log.png share/icons/oxygen/32x32/mimetypes/text-x-makefile.png +share/icons/oxygen/32x32/mimetypes/text-x-nfo.png share/icons/oxygen/32x32/mimetypes/text-x-objchdr.png share/icons/oxygen/32x32/mimetypes/text-x-objcsrc.png share/icons/oxygen/32x32/mimetypes/text-x-pascal.png share/icons/oxygen/32x32/mimetypes/text-x-patch.png +share/icons/oxygen/32x32/mimetypes/text-x-po.png share/icons/oxygen/32x32/mimetypes/text-x-python.png +share/icons/oxygen/32x32/mimetypes/text-x-readme.png share/icons/oxygen/32x32/mimetypes/text-x-script.png +share/icons/oxygen/32x32/mimetypes/text-x-sql.png share/icons/oxygen/32x32/mimetypes/text-x-tcl.png share/icons/oxygen/32x32/mimetypes/text-x-tex.png share/icons/oxygen/32x32/mimetypes/text-x-texinfo.png @@ -3462,6 +3786,7 @@ share/icons/oxygen/32x32/mimetypes/video-mp4.png share/icons/oxygen/32x32/mimetypes/video-mpeg.png share/icons/oxygen/32x32/mimetypes/video-quicktime.png share/icons/oxygen/32x32/mimetypes/video-x-flic.png +share/icons/oxygen/32x32/mimetypes/video-x-flv.png share/icons/oxygen/32x32/mimetypes/video-x-generic.png share/icons/oxygen/32x32/mimetypes/video-x-matroska.png share/icons/oxygen/32x32/mimetypes/video-x-mng.png @@ -3481,6 +3806,7 @@ share/icons/oxygen/32x32/places/bookmarks.png share/icons/oxygen/32x32/places/document-multiple.png share/icons/oxygen/32x32/places/favorites.png share/icons/oxygen/32x32/places/folder-blue.png +share/icons/oxygen/32x32/places/folder-bookmark.png share/icons/oxygen/32x32/places/folder-bookmarks.png share/icons/oxygen/32x32/places/folder-brown.png share/icons/oxygen/32x32/places/folder-cyan.png @@ -3516,6 +3842,10 @@ share/icons/oxygen/32x32/places/user-desktop.png share/icons/oxygen/32x32/places/user-home.png share/icons/oxygen/32x32/places/user-identity.png share/icons/oxygen/32x32/places/user-trash.png +share/icons/oxygen/32x32/status/audio-volume-high.png +share/icons/oxygen/32x32/status/audio-volume-low.png +share/icons/oxygen/32x32/status/audio-volume-medium.png +share/icons/oxygen/32x32/status/audio-volume-muted.png share/icons/oxygen/32x32/status/battery-040.png share/icons/oxygen/32x32/status/battery-060.png share/icons/oxygen/32x32/status/battery-080.png @@ -3560,8 +3890,29 @@ share/icons/oxygen/32x32/status/user-online.png share/icons/oxygen/32x32/status/user-trash-full.png share/icons/oxygen/32x32/status/wallet-closed.png share/icons/oxygen/32x32/status/wallet-open.png +share/icons/oxygen/32x32/status/weather-clear-night.png +share/icons/oxygen/32x32/status/weather-clear.png +share/icons/oxygen/32x32/status/weather-clouds-night.png +share/icons/oxygen/32x32/status/weather-clouds.png +share/icons/oxygen/32x32/status/weather-few-clouds-night.png +share/icons/oxygen/32x32/status/weather-few-clouds.png +share/icons/oxygen/32x32/status/weather-hail.png +share/icons/oxygen/32x32/status/weather-many-clouds.png +share/icons/oxygen/32x32/status/weather-mist.png +share/icons/oxygen/32x32/status/weather-none-available.png +share/icons/oxygen/32x32/status/weather-showers-day.png +share/icons/oxygen/32x32/status/weather-showers-night.png +share/icons/oxygen/32x32/status/weather-showers-scattered-day.png +share/icons/oxygen/32x32/status/weather-showers-scattered-night.png +share/icons/oxygen/32x32/status/weather-showers-scattered.png +share/icons/oxygen/32x32/status/weather-showers.png +share/icons/oxygen/32x32/status/weather-snow-rain.png +share/icons/oxygen/32x32/status/weather-snow-scattered-day.png +share/icons/oxygen/32x32/status/weather-snow-scattered-night.png +share/icons/oxygen/32x32/status/weather-snow-scattered.png +share/icons/oxygen/32x32/status/weather-snow.png +share/icons/oxygen/32x32/status/weather-storm.png share/icons/oxygen/32x32/status/window-suppressed.png -share/icons/oxygen/32x32/view-table-of-contents-ltr.png share/icons/oxygen/48x48/actions/address-book-new.png share/icons/oxygen/48x48/actions/application-exit.png share/icons/oxygen/48x48/actions/appointment-new.png @@ -3583,6 +3934,9 @@ share/icons/oxygen/48x48/actions/bookmark-toolbar.png share/icons/oxygen/48x48/actions/bookmarks-organize.png share/icons/oxygen/48x48/actions/character-set.png share/icons/oxygen/48x48/actions/chronometer.png +share/icons/oxygen/48x48/actions/color-picker-black.png +share/icons/oxygen/48x48/actions/color-picker-grey.png +share/icons/oxygen/48x48/actions/color-picker-white.png share/icons/oxygen/48x48/actions/color-picker.png share/icons/oxygen/48x48/actions/configure-shortcuts.png share/icons/oxygen/48x48/actions/configure-toolbars.png @@ -3594,6 +3948,7 @@ share/icons/oxygen/48x48/actions/dialog-close.png share/icons/oxygen/48x48/actions/dialog-ok-apply.png share/icons/oxygen/48x48/actions/dialog-ok.png share/icons/oxygen/48x48/actions/document-decrypt.png +share/icons/oxygen/48x48/actions/document-edit.png share/icons/oxygen/48x48/actions/document-encrypt.png share/icons/oxygen/48x48/actions/document-export.png share/icons/oxygen/48x48/actions/document-import.png @@ -3684,17 +4039,21 @@ share/icons/oxygen/48x48/actions/get-hot-new-stuff.png share/icons/oxygen/48x48/actions/go-bottom.png share/icons/oxygen/48x48/actions/go-down-search.png share/icons/oxygen/48x48/actions/go-down.png -share/icons/oxygen/48x48/actions/go-first-page.png +share/icons/oxygen/48x48/actions/go-first-view-page.png share/icons/oxygen/48x48/actions/go-first.png +share/icons/oxygen/48x48/actions/go-frist-view.png share/icons/oxygen/48x48/actions/go-home.png share/icons/oxygen/48x48/actions/go-jump-locationbar.png share/icons/oxygen/48x48/actions/go-jump-today.png share/icons/oxygen/48x48/actions/go-jump.png -share/icons/oxygen/48x48/actions/go-last-page.png +share/icons/oxygen/48x48/actions/go-last-view-page.png +share/icons/oxygen/48x48/actions/go-last-view.png share/icons/oxygen/48x48/actions/go-last.png -share/icons/oxygen/48x48/actions/go-next-page.png +share/icons/oxygen/48x48/actions/go-next-view-page.png +share/icons/oxygen/48x48/actions/go-next-view.png share/icons/oxygen/48x48/actions/go-next.png -share/icons/oxygen/48x48/actions/go-previous-page.png +share/icons/oxygen/48x48/actions/go-previous-view-page.png +share/icons/oxygen/48x48/actions/go-previous-view.png share/icons/oxygen/48x48/actions/go-previous.png share/icons/oxygen/48x48/actions/go-top.png share/icons/oxygen/48x48/actions/go-up-search.png @@ -3775,16 +4134,20 @@ share/icons/oxygen/48x48/actions/tab-duplicate.png share/icons/oxygen/48x48/actions/tab-new-background.png share/icons/oxygen/48x48/actions/tab-new.png share/icons/oxygen/48x48/actions/text-speak.png +share/icons/oxygen/48x48/actions/tool-animator.png share/icons/oxygen/48x48/actions/tools-check-spelling.png share/icons/oxygen/48x48/actions/tools-media-optical-burn.png share/icons/oxygen/48x48/actions/tools-media-optical-copy.png share/icons/oxygen/48x48/actions/tools-report-bug.png share/icons/oxygen/48x48/actions/tools-wizard.png +share/icons/oxygen/48x48/actions/transform-crop-and-resize.png share/icons/oxygen/48x48/actions/transform-move.png share/icons/oxygen/48x48/actions/transform-rotate.png share/icons/oxygen/48x48/actions/transform-scale.png share/icons/oxygen/48x48/actions/trash-empty.png +share/icons/oxygen/48x48/actions/user-group-delete.png share/icons/oxygen/48x48/actions/user-group-new.png +share/icons/oxygen/48x48/actions/user-group-properties.png share/icons/oxygen/48x48/actions/user-properties.png share/icons/oxygen/48x48/actions/view-calendar-day.png share/icons/oxygen/48x48/actions/view-calendar-list.png @@ -3798,9 +4161,11 @@ share/icons/oxygen/48x48/actions/view-calendar-week.png share/icons/oxygen/48x48/actions/view-calendar-workweek.png share/icons/oxygen/48x48/actions/view-choose.png share/icons/oxygen/48x48/actions/view-close.png +share/icons/oxygen/48x48/actions/view-file-columns.png share/icons/oxygen/48x48/actions/view-filter.png share/icons/oxygen/48x48/actions/view-fullscreen.png share/icons/oxygen/48x48/actions/view-history.png +share/icons/oxygen/48x48/actions/view-left-close.png share/icons/oxygen/48x48/actions/view-list-details.png share/icons/oxygen/48x48/actions/view-list-text.png share/icons/oxygen/48x48/actions/view-list-tree.png @@ -3826,12 +4191,15 @@ share/icons/oxygen/48x48/actions/view-process-system.png share/icons/oxygen/48x48/actions/view-process-users.png share/icons/oxygen/48x48/actions/view-refresh.png share/icons/oxygen/48x48/actions/view-restore.png +share/icons/oxygen/48x48/actions/view-right-close.png +share/icons/oxygen/48x48/actions/view-right-new.png share/icons/oxygen/48x48/actions/view-sidetree.png share/icons/oxygen/48x48/actions/view-sort-ascending.png share/icons/oxygen/48x48/actions/view-sort-descending.png share/icons/oxygen/48x48/actions/view-split-left-right.png share/icons/oxygen/48x48/actions/view-split-top-bottom.png share/icons/oxygen/48x48/actions/view-statistics.png +share/icons/oxygen/48x48/actions/view-table-of-contents-ltr.png share/icons/oxygen/48x48/actions/view-table-of-contents-rtl.png share/icons/oxygen/48x48/actions/view-web-browser-dom-tree.png share/icons/oxygen/48x48/actions/window-close.png @@ -3867,17 +4235,16 @@ share/icons/oxygen/48x48/apps/internet-web-browser.png share/icons/oxygen/48x48/apps/java.png share/icons/oxygen/48x48/apps/k3b.png share/icons/oxygen/48x48/apps/kaffeine.png -share/icons/oxygen/48x48/apps/kate.png share/icons/oxygen/48x48/apps/kblogger.png share/icons/oxygen/48x48/apps/kbugbuster.png share/icons/oxygen/48x48/apps/kchart.png share/icons/oxygen/48x48/apps/kcolorchooser.png share/icons/oxygen/48x48/apps/kde.png share/icons/oxygen/48x48/apps/kexi.png -share/icons/oxygen/48x48/apps/kjots.png share/icons/oxygen/48x48/apps/kjournal.png share/icons/oxygen/48x48/apps/klipper.png share/icons/oxygen/48x48/apps/kmplayer.png +share/icons/oxygen/48x48/apps/knewsticker.png share/icons/oxygen/48x48/apps/knotes.png share/icons/oxygen/48x48/apps/kolf.png share/icons/oxygen/48x48/apps/konqueror.png @@ -3901,7 +4268,6 @@ share/icons/oxygen/48x48/apps/office-address-book.png share/icons/oxygen/48x48/apps/office-calendar.png share/icons/oxygen/48x48/apps/okteta.png share/icons/oxygen/48x48/apps/oxygen.png -share/icons/oxygen/48x48/apps/phonon-xine.png share/icons/oxygen/48x48/apps/plasma.png share/icons/oxygen/48x48/apps/plasmagik.png share/icons/oxygen/48x48/apps/preferences-contact-list.png @@ -3938,6 +4304,8 @@ share/icons/oxygen/48x48/apps/preferences-system-performance.png share/icons/oxygen/48x48/apps/preferences-system-power-management.png share/icons/oxygen/48x48/apps/preferences-system-session-services.png share/icons/oxygen/48x48/apps/preferences-system-time.png +share/icons/oxygen/48x48/apps/preferences-system-windows-actions.png +share/icons/oxygen/48x48/apps/preferences-system-windows-move.png share/icons/oxygen/48x48/apps/preferences-system-windows.png share/icons/oxygen/48x48/apps/preferences-web-browser-adblock.png share/icons/oxygen/48x48/apps/preferences-web-browser-cache.png @@ -3946,11 +4314,13 @@ share/icons/oxygen/48x48/apps/preferences-web-browser-identification.png share/icons/oxygen/48x48/apps/preferences-web-browser-shortcuts.png share/icons/oxygen/48x48/apps/preferences-web-browser-stylesheets.png share/icons/oxygen/48x48/apps/scribus.png +share/icons/oxygen/48x48/apps/semn.png share/icons/oxygen/48x48/apps/strigi.png share/icons/oxygen/48x48/apps/system-file-manager.png share/icons/oxygen/48x48/apps/system-software-update.png share/icons/oxygen/48x48/apps/system-users.png share/icons/oxygen/48x48/apps/tagua.png +share/icons/oxygen/48x48/apps/utilities-desktop-extra.png share/icons/oxygen/48x48/apps/utilities-file-archiver.png share/icons/oxygen/48x48/apps/utilities-log-viewer.png share/icons/oxygen/48x48/apps/utilities-system-monitor.png @@ -4016,6 +4386,7 @@ share/icons/oxygen/48x48/devices/multimedia-player.png share/icons/oxygen/48x48/devices/network-wired.png share/icons/oxygen/48x48/devices/network-wireless.png share/icons/oxygen/48x48/devices/pda.png +share/icons/oxygen/48x48/devices/phone-openmoko-freerunner.png share/icons/oxygen/48x48/devices/phone.png share/icons/oxygen/48x48/devices/printer.png share/icons/oxygen/48x48/devices/scanner.png @@ -4037,7 +4408,9 @@ share/icons/oxygen/48x48/emotes/face-smile-big.png share/icons/oxygen/48x48/emotes/face-smile.png share/icons/oxygen/48x48/emotes/face-surprise.png share/icons/oxygen/48x48/emotes/face-uncertain.png +share/icons/oxygen/48x48/emotes/face-wink.png share/icons/oxygen/48x48/mimetypes/application-illustrator.png +share/icons/oxygen/48x48/mimetypes/application-javascript.png share/icons/oxygen/48x48/mimetypes/application-msword.png share/icons/oxygen/48x48/mimetypes/application-octet-stream.png share/icons/oxygen/48x48/mimetypes/application-pdf.png @@ -4050,6 +4423,7 @@ share/icons/oxygen/48x48/mimetypes/application-postscript.png share/icons/oxygen/48x48/mimetypes/application-relaxng.png share/icons/oxygen/48x48/mimetypes/application-rss+xml.png share/icons/oxygen/48x48/mimetypes/application-rtf.png +share/icons/oxygen/48x48/mimetypes/application-vnd.ms-access.png share/icons/oxygen/48x48/mimetypes/application-vnd.ms-excel.png share/icons/oxygen/48x48/mimetypes/application-vnd.ms-powerpoint.png share/icons/oxygen/48x48/mimetypes/application-vnd.oasis.opendocument.chart.png @@ -4114,7 +4488,9 @@ share/icons/oxygen/48x48/mimetypes/application-x-kontour.png share/icons/oxygen/48x48/mimetypes/application-x-krita.png share/icons/oxygen/48x48/mimetypes/application-x-kvtml.png share/icons/oxygen/48x48/mimetypes/application-x-lha.png +share/icons/oxygen/48x48/mimetypes/application-x-lzma-compressed-tar.png share/icons/oxygen/48x48/mimetypes/application-x-lzop.png +share/icons/oxygen/48x48/mimetypes/application-x-m4.png share/icons/oxygen/48x48/mimetypes/application-x-marble.png share/icons/oxygen/48x48/mimetypes/application-x-mimearchive.png share/icons/oxygen/48x48/mimetypes/application-x-mplayer2.png @@ -4124,6 +4500,7 @@ share/icons/oxygen/48x48/mimetypes/application-x-mswrite.png share/icons/oxygen/48x48/mimetypes/application-x-nzb.png share/icons/oxygen/48x48/mimetypes/application-x-object.png share/icons/oxygen/48x48/mimetypes/application-x-pak.png +share/icons/oxygen/48x48/mimetypes/application-x-pem-key.png share/icons/oxygen/48x48/mimetypes/application-x-perl.png share/icons/oxygen/48x48/mimetypes/application-x-php.png share/icons/oxygen/48x48/mimetypes/application-x-plasma.png @@ -4134,7 +4511,11 @@ share/icons/oxygen/48x48/mimetypes/application-x-rpm.png share/icons/oxygen/48x48/mimetypes/application-x-ruby.png share/icons/oxygen/48x48/mimetypes/application-x-sharedlib.png share/icons/oxygen/48x48/mimetypes/application-x-shellscript.png +share/icons/oxygen/48x48/mimetypes/application-x-shockwave-flash.png share/icons/oxygen/48x48/mimetypes/application-x-siag.png +share/icons/oxygen/48x48/mimetypes/application-x-smb-server.png +share/icons/oxygen/48x48/mimetypes/application-x-smb-workgroup.png +share/icons/oxygen/48x48/mimetypes/application-x-subrip.png share/icons/oxygen/48x48/mimetypes/application-x-tar.png share/icons/oxygen/48x48/mimetypes/application-x-tarz.png share/icons/oxygen/48x48/mimetypes/application-x-tgif.png @@ -4168,6 +4549,7 @@ share/icons/oxygen/48x48/mimetypes/audio-x-mod.png share/icons/oxygen/48x48/mimetypes/audio-x-monkey.png share/icons/oxygen/48x48/mimetypes/audio-x-mp2.png share/icons/oxygen/48x48/mimetypes/audio-x-mpegurl.png +share/icons/oxygen/48x48/mimetypes/audio-x-ms-asx.png share/icons/oxygen/48x48/mimetypes/audio-x-ms-wma.png share/icons/oxygen/48x48/mimetypes/audio-x-musepack.png share/icons/oxygen/48x48/mimetypes/audio-x-pn-realaudio-plugin.png @@ -4232,25 +4614,35 @@ share/icons/oxygen/48x48/mimetypes/text-vcalendar.png share/icons/oxygen/48x48/mimetypes/text-vnd.abc.png share/icons/oxygen/48x48/mimetypes/text-vnd.wap.wml.png share/icons/oxygen/48x48/mimetypes/text-x-adasrc.png +share/icons/oxygen/48x48/mimetypes/text-x-authors.png share/icons/oxygen/48x48/mimetypes/text-x-bibtex.png share/icons/oxygen/48x48/mimetypes/text-x-c++hdr.png share/icons/oxygen/48x48/mimetypes/text-x-c++src.png +share/icons/oxygen/48x48/mimetypes/text-x-changelog.png share/icons/oxygen/48x48/mimetypes/text-x-chdr.png +share/icons/oxygen/48x48/mimetypes/text-x-cmake.png +share/icons/oxygen/48x48/mimetypes/text-x-copying.png share/icons/oxygen/48x48/mimetypes/text-x-csharp.png share/icons/oxygen/48x48/mimetypes/text-x-csrc.png share/icons/oxygen/48x48/mimetypes/text-x-dtd.png share/icons/oxygen/48x48/mimetypes/text-x-generic.png share/icons/oxygen/48x48/mimetypes/text-x-hex.png +share/icons/oxygen/48x48/mimetypes/text-x-install.png share/icons/oxygen/48x48/mimetypes/text-x-java.png share/icons/oxygen/48x48/mimetypes/text-x-katefilelist.png share/icons/oxygen/48x48/mimetypes/text-x-ldif.png +share/icons/oxygen/48x48/mimetypes/text-x-log.png share/icons/oxygen/48x48/mimetypes/text-x-makefile.png +share/icons/oxygen/48x48/mimetypes/text-x-nfo.png share/icons/oxygen/48x48/mimetypes/text-x-objchdr.png share/icons/oxygen/48x48/mimetypes/text-x-objcsrc.png share/icons/oxygen/48x48/mimetypes/text-x-pascal.png share/icons/oxygen/48x48/mimetypes/text-x-patch.png +share/icons/oxygen/48x48/mimetypes/text-x-po.png share/icons/oxygen/48x48/mimetypes/text-x-python.png +share/icons/oxygen/48x48/mimetypes/text-x-readme.png share/icons/oxygen/48x48/mimetypes/text-x-script.png +share/icons/oxygen/48x48/mimetypes/text-x-sql.png share/icons/oxygen/48x48/mimetypes/text-x-tcl.png share/icons/oxygen/48x48/mimetypes/text-x-tex.png share/icons/oxygen/48x48/mimetypes/text-x-texinfo.png @@ -4269,6 +4661,7 @@ share/icons/oxygen/48x48/mimetypes/video-mp4.png share/icons/oxygen/48x48/mimetypes/video-mpeg.png share/icons/oxygen/48x48/mimetypes/video-quicktime.png share/icons/oxygen/48x48/mimetypes/video-x-flic.png +share/icons/oxygen/48x48/mimetypes/video-x-flv.png share/icons/oxygen/48x48/mimetypes/video-x-generic.png share/icons/oxygen/48x48/mimetypes/video-x-matroska.png share/icons/oxygen/48x48/mimetypes/video-x-mng.png @@ -4288,6 +4681,7 @@ share/icons/oxygen/48x48/places/bookmarks.png share/icons/oxygen/48x48/places/document-multiple.png share/icons/oxygen/48x48/places/favorites.png share/icons/oxygen/48x48/places/folder-blue.png +share/icons/oxygen/48x48/places/folder-bookmark.png share/icons/oxygen/48x48/places/folder-bookmarks.png share/icons/oxygen/48x48/places/folder-brown.png share/icons/oxygen/48x48/places/folder-cyan.png @@ -4323,6 +4717,10 @@ share/icons/oxygen/48x48/places/user-desktop.png share/icons/oxygen/48x48/places/user-home.png share/icons/oxygen/48x48/places/user-identity.png share/icons/oxygen/48x48/places/user-trash.png +share/icons/oxygen/48x48/status/audio-volume-high.png +share/icons/oxygen/48x48/status/audio-volume-low.png +share/icons/oxygen/48x48/status/audio-volume-medium.png +share/icons/oxygen/48x48/status/audio-volume-muted.png share/icons/oxygen/48x48/status/battery-040.png share/icons/oxygen/48x48/status/battery-060.png share/icons/oxygen/48x48/status/battery-080.png @@ -4368,28 +4766,52 @@ share/icons/oxygen/48x48/status/user-online.png share/icons/oxygen/48x48/status/user-trash-full.png share/icons/oxygen/48x48/status/wallet-closed.png share/icons/oxygen/48x48/status/wallet-open.png +share/icons/oxygen/48x48/status/weather-clear-night.png +share/icons/oxygen/48x48/status/weather-clear.png +share/icons/oxygen/48x48/status/weather-clouds-night.png +share/icons/oxygen/48x48/status/weather-clouds.png +share/icons/oxygen/48x48/status/weather-few-clouds-night.png +share/icons/oxygen/48x48/status/weather-few-clouds.png +share/icons/oxygen/48x48/status/weather-hail.png +share/icons/oxygen/48x48/status/weather-many-clouds.png +share/icons/oxygen/48x48/status/weather-mist.png +share/icons/oxygen/48x48/status/weather-showers-day.png +share/icons/oxygen/48x48/status/weather-showers-night.png +share/icons/oxygen/48x48/status/weather-showers-scattered-day.png +share/icons/oxygen/48x48/status/weather-showers-scattered-night.png +share/icons/oxygen/48x48/status/weather-showers-scattered.png +share/icons/oxygen/48x48/status/weather-showers.png +share/icons/oxygen/48x48/status/weather-snow-rain.png +share/icons/oxygen/48x48/status/weather-snow-scattered-day.png +share/icons/oxygen/48x48/status/weather-snow-scattered-night.png +share/icons/oxygen/48x48/status/weather-snow-scattered.png +share/icons/oxygen/48x48/status/weather-snow.png +share/icons/oxygen/48x48/status/weather-storm-day.png +share/icons/oxygen/48x48/status/weather-storm-night.png +share/icons/oxygen/48x48/status/weather-storm.png share/icons/oxygen/48x48/status/window-suppressed.png -share/icons/oxygen/48x48/view-table-of-contents-ltr.png share/icons/oxygen/64x64/actions/address-book-new.png share/icons/oxygen/64x64/actions/application-exit.png share/icons/oxygen/64x64/actions/appointment-new.png share/icons/oxygen/64x64/actions/bookmark-new.png share/icons/oxygen/64x64/actions/bookmarks-organize.png +share/icons/oxygen/64x64/actions/configure.png share/icons/oxygen/64x64/actions/dashboard-show.png share/icons/oxygen/64x64/actions/dialog-ok-apply.png share/icons/oxygen/64x64/actions/dialog-ok.png +share/icons/oxygen/64x64/actions/document-edit.png share/icons/oxygen/64x64/actions/document-preview.png share/icons/oxygen/64x64/actions/edit-bomb.png share/icons/oxygen/64x64/actions/edit-find.png share/icons/oxygen/64x64/actions/go-bottom.png share/icons/oxygen/64x64/actions/go-down.png -share/icons/oxygen/64x64/actions/go-first-page.png +share/icons/oxygen/64x64/actions/go-first-view-page.png share/icons/oxygen/64x64/actions/go-first.png -share/icons/oxygen/64x64/actions/go-last-page.png +share/icons/oxygen/64x64/actions/go-last-view-page.png share/icons/oxygen/64x64/actions/go-last.png -share/icons/oxygen/64x64/actions/go-next-page.png +share/icons/oxygen/64x64/actions/go-next-view-page.png share/icons/oxygen/64x64/actions/go-next.png -share/icons/oxygen/64x64/actions/go-previous-page.png +share/icons/oxygen/64x64/actions/go-previous-view-page.png share/icons/oxygen/64x64/actions/go-previous.png share/icons/oxygen/64x64/actions/go-top.png share/icons/oxygen/64x64/actions/go-up.png @@ -4417,8 +4839,10 @@ share/icons/oxygen/64x64/actions/system-shutdown.png share/icons/oxygen/64x64/actions/system-suspend-hibernate.png share/icons/oxygen/64x64/actions/system-suspend.png share/icons/oxygen/64x64/actions/system-switch-user.png +share/icons/oxygen/64x64/actions/tool-animator.png share/icons/oxygen/64x64/actions/tools-report-bug.png share/icons/oxygen/64x64/actions/tools-wizard.png +share/icons/oxygen/64x64/actions/transform-crop-and-resize.png share/icons/oxygen/64x64/actions/transform-move.png share/icons/oxygen/64x64/actions/transform-scale.png share/icons/oxygen/64x64/actions/user-group-new.png @@ -4450,17 +4874,16 @@ share/icons/oxygen/64x64/apps/internet-telephony.png share/icons/oxygen/64x64/apps/internet-web-browser.png share/icons/oxygen/64x64/apps/k3b.png share/icons/oxygen/64x64/apps/kaffeine.png -share/icons/oxygen/64x64/apps/kate.png share/icons/oxygen/64x64/apps/kblogger.png share/icons/oxygen/64x64/apps/kbugbuster.png share/icons/oxygen/64x64/apps/kchart.png share/icons/oxygen/64x64/apps/kcolorchooser.png share/icons/oxygen/64x64/apps/kde.png share/icons/oxygen/64x64/apps/kexi.png -share/icons/oxygen/64x64/apps/kjots.png share/icons/oxygen/64x64/apps/kjournal.png share/icons/oxygen/64x64/apps/klipper.png share/icons/oxygen/64x64/apps/kmplayer.png +share/icons/oxygen/64x64/apps/knewsticker.png share/icons/oxygen/64x64/apps/knotes.png share/icons/oxygen/64x64/apps/kolf.png share/icons/oxygen/64x64/apps/konqueror.png @@ -4484,7 +4907,6 @@ share/icons/oxygen/64x64/apps/office-address-book.png share/icons/oxygen/64x64/apps/office-calendar.png share/icons/oxygen/64x64/apps/okteta.png share/icons/oxygen/64x64/apps/oxygen.png -share/icons/oxygen/64x64/apps/phonon-xine.png share/icons/oxygen/64x64/apps/plasma.png share/icons/oxygen/64x64/apps/plasmagik.png share/icons/oxygen/64x64/apps/preferences-contact-list.png @@ -4493,6 +4915,7 @@ share/icons/oxygen/64x64/apps/preferences-desktop-color.png share/icons/oxygen/64x64/apps/preferences-desktop-cryptography.png share/icons/oxygen/64x64/apps/preferences-desktop-default-applications.png share/icons/oxygen/64x64/apps/preferences-desktop-display.png +share/icons/oxygen/64x64/apps/preferences-desktop-font.png share/icons/oxygen/64x64/apps/preferences-desktop-gaming.png share/icons/oxygen/64x64/apps/preferences-desktop-icons.png share/icons/oxygen/64x64/apps/preferences-desktop-keyboard.png @@ -4514,13 +4937,17 @@ share/icons/oxygen/64x64/apps/preferences-system-login.png share/icons/oxygen/64x64/apps/preferences-system-network-sharing.png share/icons/oxygen/64x64/apps/preferences-system-power-management.png share/icons/oxygen/64x64/apps/preferences-system-time.png +share/icons/oxygen/64x64/apps/preferences-system-windows-actions.png +share/icons/oxygen/64x64/apps/preferences-system-windows-move.png share/icons/oxygen/64x64/apps/preferences-system-windows.png share/icons/oxygen/64x64/apps/scribus.png +share/icons/oxygen/64x64/apps/semn.png share/icons/oxygen/64x64/apps/strigi.png share/icons/oxygen/64x64/apps/system-file-manager.png share/icons/oxygen/64x64/apps/system-software-update.png share/icons/oxygen/64x64/apps/system-users.png share/icons/oxygen/64x64/apps/tagua.png +share/icons/oxygen/64x64/apps/utilities-desktop-extra.png share/icons/oxygen/64x64/apps/utilities-file-archiver.png share/icons/oxygen/64x64/apps/utilities-log-viewer.png share/icons/oxygen/64x64/apps/utilities-system-monitor.png @@ -4586,6 +5013,7 @@ share/icons/oxygen/64x64/devices/multimedia-player.png share/icons/oxygen/64x64/devices/network-wired.png share/icons/oxygen/64x64/devices/network-wireless.png share/icons/oxygen/64x64/devices/pda.png +share/icons/oxygen/64x64/devices/phone-openmoko-freerunner.png share/icons/oxygen/64x64/devices/phone.png share/icons/oxygen/64x64/devices/printer.png share/icons/oxygen/64x64/devices/scanner.png @@ -4606,7 +5034,9 @@ share/icons/oxygen/64x64/emotes/face-smile-big.png share/icons/oxygen/64x64/emotes/face-smile.png share/icons/oxygen/64x64/emotes/face-surprise.png share/icons/oxygen/64x64/emotes/face-uncertain.png +share/icons/oxygen/64x64/emotes/face-wink.png share/icons/oxygen/64x64/mimetypes/application-illustrator.png +share/icons/oxygen/64x64/mimetypes/application-javascript.png share/icons/oxygen/64x64/mimetypes/application-msword.png share/icons/oxygen/64x64/mimetypes/application-octet-stream.png share/icons/oxygen/64x64/mimetypes/application-pdf.png @@ -4617,6 +5047,7 @@ share/icons/oxygen/64x64/mimetypes/application-postscript.png share/icons/oxygen/64x64/mimetypes/application-relaxng.png share/icons/oxygen/64x64/mimetypes/application-rss+xml.png share/icons/oxygen/64x64/mimetypes/application-rtf.png +share/icons/oxygen/64x64/mimetypes/application-vnd.ms-access.png share/icons/oxygen/64x64/mimetypes/application-vnd.ms-excel.png share/icons/oxygen/64x64/mimetypes/application-vnd.ms-powerpoint.png share/icons/oxygen/64x64/mimetypes/application-vnd.oasis.opendocument.chart.png @@ -4681,7 +5112,9 @@ share/icons/oxygen/64x64/mimetypes/application-x-kontour.png share/icons/oxygen/64x64/mimetypes/application-x-krita.png share/icons/oxygen/64x64/mimetypes/application-x-kvtml.png share/icons/oxygen/64x64/mimetypes/application-x-lha.png +share/icons/oxygen/64x64/mimetypes/application-x-lzma-compressed-tar.png share/icons/oxygen/64x64/mimetypes/application-x-lzop.png +share/icons/oxygen/64x64/mimetypes/application-x-m4.png share/icons/oxygen/64x64/mimetypes/application-x-marble.png share/icons/oxygen/64x64/mimetypes/application-x-mimearchive.png share/icons/oxygen/64x64/mimetypes/application-x-mplayer2.png @@ -4691,6 +5124,7 @@ share/icons/oxygen/64x64/mimetypes/application-x-mswrite.png share/icons/oxygen/64x64/mimetypes/application-x-nzb.png share/icons/oxygen/64x64/mimetypes/application-x-object.png share/icons/oxygen/64x64/mimetypes/application-x-pak.png +share/icons/oxygen/64x64/mimetypes/application-x-pem-key.png share/icons/oxygen/64x64/mimetypes/application-x-perl.png share/icons/oxygen/64x64/mimetypes/application-x-php.png share/icons/oxygen/64x64/mimetypes/application-x-plasma.png @@ -4701,7 +5135,11 @@ share/icons/oxygen/64x64/mimetypes/application-x-rpm.png share/icons/oxygen/64x64/mimetypes/application-x-ruby.png share/icons/oxygen/64x64/mimetypes/application-x-sharedlib.png share/icons/oxygen/64x64/mimetypes/application-x-shellscript.png +share/icons/oxygen/64x64/mimetypes/application-x-shockwave-flash.png share/icons/oxygen/64x64/mimetypes/application-x-siag.png +share/icons/oxygen/64x64/mimetypes/application-x-smb-server.png +share/icons/oxygen/64x64/mimetypes/application-x-smb-workgroup.png +share/icons/oxygen/64x64/mimetypes/application-x-subrip.png share/icons/oxygen/64x64/mimetypes/application-x-tar.png share/icons/oxygen/64x64/mimetypes/application-x-tarz.png share/icons/oxygen/64x64/mimetypes/application-x-tgif.png @@ -4735,6 +5173,7 @@ share/icons/oxygen/64x64/mimetypes/audio-x-mod.png share/icons/oxygen/64x64/mimetypes/audio-x-monkey.png share/icons/oxygen/64x64/mimetypes/audio-x-mp2.png share/icons/oxygen/64x64/mimetypes/audio-x-mpegurl.png +share/icons/oxygen/64x64/mimetypes/audio-x-ms-asx.png share/icons/oxygen/64x64/mimetypes/audio-x-ms-wma.png share/icons/oxygen/64x64/mimetypes/audio-x-musepack.png share/icons/oxygen/64x64/mimetypes/audio-x-pn-realaudio-plugin.png @@ -4799,25 +5238,35 @@ share/icons/oxygen/64x64/mimetypes/text-vcalendar.png share/icons/oxygen/64x64/mimetypes/text-vnd.abc.png share/icons/oxygen/64x64/mimetypes/text-vnd.wap.wml.png share/icons/oxygen/64x64/mimetypes/text-x-adasrc.png +share/icons/oxygen/64x64/mimetypes/text-x-authors.png share/icons/oxygen/64x64/mimetypes/text-x-bibtex.png share/icons/oxygen/64x64/mimetypes/text-x-c++hdr.png share/icons/oxygen/64x64/mimetypes/text-x-c++src.png +share/icons/oxygen/64x64/mimetypes/text-x-changelog.png share/icons/oxygen/64x64/mimetypes/text-x-chdr.png +share/icons/oxygen/64x64/mimetypes/text-x-cmake.png +share/icons/oxygen/64x64/mimetypes/text-x-copying.png share/icons/oxygen/64x64/mimetypes/text-x-csharp.png share/icons/oxygen/64x64/mimetypes/text-x-csrc.png share/icons/oxygen/64x64/mimetypes/text-x-dtd.png share/icons/oxygen/64x64/mimetypes/text-x-generic.png share/icons/oxygen/64x64/mimetypes/text-x-hex.png +share/icons/oxygen/64x64/mimetypes/text-x-install.png share/icons/oxygen/64x64/mimetypes/text-x-java.png share/icons/oxygen/64x64/mimetypes/text-x-katefilelist.png share/icons/oxygen/64x64/mimetypes/text-x-ldif.png +share/icons/oxygen/64x64/mimetypes/text-x-log.png share/icons/oxygen/64x64/mimetypes/text-x-makefile.png +share/icons/oxygen/64x64/mimetypes/text-x-nfo.png share/icons/oxygen/64x64/mimetypes/text-x-objchdr.png share/icons/oxygen/64x64/mimetypes/text-x-objcsrc.png share/icons/oxygen/64x64/mimetypes/text-x-pascal.png share/icons/oxygen/64x64/mimetypes/text-x-patch.png +share/icons/oxygen/64x64/mimetypes/text-x-po.png share/icons/oxygen/64x64/mimetypes/text-x-python.png +share/icons/oxygen/64x64/mimetypes/text-x-readme.png share/icons/oxygen/64x64/mimetypes/text-x-script.png +share/icons/oxygen/64x64/mimetypes/text-x-sql.png share/icons/oxygen/64x64/mimetypes/text-x-tcl.png share/icons/oxygen/64x64/mimetypes/text-x-tex.png share/icons/oxygen/64x64/mimetypes/text-x-texinfo.png @@ -4836,6 +5285,7 @@ share/icons/oxygen/64x64/mimetypes/video-mp4.png share/icons/oxygen/64x64/mimetypes/video-mpeg.png share/icons/oxygen/64x64/mimetypes/video-quicktime.png share/icons/oxygen/64x64/mimetypes/video-x-flic.png +share/icons/oxygen/64x64/mimetypes/video-x-flv.png share/icons/oxygen/64x64/mimetypes/video-x-generic.png share/icons/oxygen/64x64/mimetypes/video-x-matroska.png share/icons/oxygen/64x64/mimetypes/video-x-mng.png @@ -4851,6 +5301,7 @@ share/icons/oxygen/64x64/mimetypes/x-office-document.png share/icons/oxygen/64x64/mimetypes/x-office-spreadsheet.png share/icons/oxygen/64x64/places/document-multiple.png share/icons/oxygen/64x64/places/folder-blue.png +share/icons/oxygen/64x64/places/folder-bookmark.png share/icons/oxygen/64x64/places/folder-bookmarks.png share/icons/oxygen/64x64/places/folder-brown.png share/icons/oxygen/64x64/places/folder-cyan.png @@ -4901,6 +5352,29 @@ share/icons/oxygen/64x64/status/user-invisible.png share/icons/oxygen/64x64/status/user-offline.png share/icons/oxygen/64x64/status/user-online.png share/icons/oxygen/64x64/status/user-trash-full.png +share/icons/oxygen/64x64/status/weather-clear-night.png +share/icons/oxygen/64x64/status/weather-clear.png +share/icons/oxygen/64x64/status/weather-clouds-night.png +share/icons/oxygen/64x64/status/weather-clouds.png +share/icons/oxygen/64x64/status/weather-few-clouds-night.png +share/icons/oxygen/64x64/status/weather-few-clouds.png +share/icons/oxygen/64x64/status/weather-hail.png +share/icons/oxygen/64x64/status/weather-many-clouds.png +share/icons/oxygen/64x64/status/weather-mist.png +share/icons/oxygen/64x64/status/weather-showers-day.png +share/icons/oxygen/64x64/status/weather-showers-night.png +share/icons/oxygen/64x64/status/weather-showers-scattered-day.png +share/icons/oxygen/64x64/status/weather-showers-scattered-night.png +share/icons/oxygen/64x64/status/weather-showers-scattered.png +share/icons/oxygen/64x64/status/weather-showers.png +share/icons/oxygen/64x64/status/weather-snow-rain.png +share/icons/oxygen/64x64/status/weather-snow-scattered-day.png +share/icons/oxygen/64x64/status/weather-snow-scattered-night.png +share/icons/oxygen/64x64/status/weather-snow-scattered.png +share/icons/oxygen/64x64/status/weather-snow.png +share/icons/oxygen/64x64/status/weather-storm-day.png +share/icons/oxygen/64x64/status/weather-storm-night.png +share/icons/oxygen/64x64/status/weather-storm.png share/icons/oxygen/8x8/emblems/emblem-important.png share/icons/oxygen/8x8/emblems/emblem-link.png share/icons/oxygen/8x8/emblems/emblem-mounted.png @@ -4926,6 +5400,9 @@ share/icons/oxygen/scalable/actions/bookmark-toolbar.svgz share/icons/oxygen/scalable/actions/bookmarks-organize.svgz share/icons/oxygen/scalable/actions/character-set.svgz share/icons/oxygen/scalable/actions/chronometer.svgz +share/icons/oxygen/scalable/actions/color-picker-black.svgz +share/icons/oxygen/scalable/actions/color-picker-grey.svgz +share/icons/oxygen/scalable/actions/color-picker-white.svgz share/icons/oxygen/scalable/actions/color-picker.svgz share/icons/oxygen/scalable/actions/configure-shortcuts.svgz share/icons/oxygen/scalable/actions/configure-toolbars.svgz @@ -4937,6 +5414,7 @@ share/icons/oxygen/scalable/actions/dialog-close.svgz share/icons/oxygen/scalable/actions/dialog-ok-apply.svgz share/icons/oxygen/scalable/actions/dialog-ok.svgz share/icons/oxygen/scalable/actions/document-decrypt.svgz +share/icons/oxygen/scalable/actions/document-edit.svgz share/icons/oxygen/scalable/actions/document-encrypt.svgz share/icons/oxygen/scalable/actions/document-export.svgz share/icons/oxygen/scalable/actions/document-import.svgz @@ -4989,29 +5467,8 @@ share/icons/oxygen/scalable/actions/flag.svgz share/icons/oxygen/scalable/actions/folder-new.svgz share/icons/oxygen/scalable/actions/fork.svgz share/icons/oxygen/scalable/actions/format-fill-color.svgz -share/icons/oxygen/scalable/actions/format-font-size-less.svgz -share/icons/oxygen/scalable/actions/format-font-size-more.svgz -share/icons/oxygen/scalable/actions/format-indent-less.svgz -share/icons/oxygen/scalable/actions/format-indent-more.svgz -share/icons/oxygen/scalable/actions/format-justify-center.svgz -share/icons/oxygen/scalable/actions/format-justify-fill.svgz -share/icons/oxygen/scalable/actions/format-justify-left.svgz -share/icons/oxygen/scalable/actions/format-justify-right.svgz -share/icons/oxygen/scalable/actions/format-line-spacing-double.svgz -share/icons/oxygen/scalable/actions/format-line-spacing-normal.svgz -share/icons/oxygen/scalable/actions/format-line-spacing-triple.svgz -share/icons/oxygen/scalable/actions/format-list-ordered.svgz -share/icons/oxygen/scalable/actions/format-list-unordered.svgz share/icons/oxygen/scalable/actions/format-stroke-color.svgz -share/icons/oxygen/scalable/actions/format-text-bold.svgz share/icons/oxygen/scalable/actions/format-text-color.svgz -share/icons/oxygen/scalable/actions/format-text-direction-ltr.svgz -share/icons/oxygen/scalable/actions/format-text-direction-rtl.svgz -share/icons/oxygen/scalable/actions/format-text-italic.svgz -share/icons/oxygen/scalable/actions/format-text-strikethrough.svgz -share/icons/oxygen/scalable/actions/format-text-subscript.svgz -share/icons/oxygen/scalable/actions/format-text-superscript.svgz -share/icons/oxygen/scalable/actions/format-text-underline.svgz share/icons/oxygen/scalable/actions/games-config-background.svgz share/icons/oxygen/scalable/actions/games-config-board.svgz share/icons/oxygen/scalable/actions/games-config-custom.svgz @@ -5027,17 +5484,21 @@ share/icons/oxygen/scalable/actions/get-hot-new-stuff.svgz share/icons/oxygen/scalable/actions/go-bottom.svgz share/icons/oxygen/scalable/actions/go-down-search.svgz share/icons/oxygen/scalable/actions/go-down.svgz -share/icons/oxygen/scalable/actions/go-first-page.svgz +share/icons/oxygen/scalable/actions/go-first-view-page.svgz +share/icons/oxygen/scalable/actions/go-first-view.svgz share/icons/oxygen/scalable/actions/go-first.svgz share/icons/oxygen/scalable/actions/go-home.svgz share/icons/oxygen/scalable/actions/go-jump-locationbar.svgz share/icons/oxygen/scalable/actions/go-jump-today.svgz share/icons/oxygen/scalable/actions/go-jump.svgz -share/icons/oxygen/scalable/actions/go-last-page.svgz +share/icons/oxygen/scalable/actions/go-last-view-page.svgz +share/icons/oxygen/scalable/actions/go-last-view.svgz share/icons/oxygen/scalable/actions/go-last.svgz -share/icons/oxygen/scalable/actions/go-next-page.svgz +share/icons/oxygen/scalable/actions/go-next-view-page.svgz +share/icons/oxygen/scalable/actions/go-next-view.svgz share/icons/oxygen/scalable/actions/go-next.svgz -share/icons/oxygen/scalable/actions/go-previous-page.svgz +share/icons/oxygen/scalable/actions/go-previous-view-page.svgz +share/icons/oxygen/scalable/actions/go-previous-view.svgz share/icons/oxygen/scalable/actions/go-previous.svgz share/icons/oxygen/scalable/actions/go-top.svgz share/icons/oxygen/scalable/actions/go-up-search.svgz @@ -5121,12 +5582,15 @@ share/icons/oxygen/scalable/actions/small/16x16/bookmark-new.svgz share/icons/oxygen/scalable/actions/small/16x16/bookmark-toolbar.svgz share/icons/oxygen/scalable/actions/small/16x16/bookmarks-organize.svgz share/icons/oxygen/scalable/actions/small/16x16/character-set.svgz +share/icons/oxygen/scalable/actions/small/16x16/configure-shortcuts.svgz share/icons/oxygen/scalable/actions/small/16x16/configure-toolbars.svgz +share/icons/oxygen/scalable/actions/small/16x16/configure.svgz share/icons/oxygen/scalable/actions/small/16x16/contact-new.svgz share/icons/oxygen/scalable/actions/small/16x16/dialog-cancel.svgz share/icons/oxygen/scalable/actions/small/16x16/dialog-ok-apply.svgz share/icons/oxygen/scalable/actions/small/16x16/dialog-ok.svgz share/icons/oxygen/scalable/actions/small/16x16/document-decrypt.svgz +share/icons/oxygen/scalable/actions/small/16x16/document-edit.svgz share/icons/oxygen/scalable/actions/small/16x16/document-encrypt.svgz share/icons/oxygen/scalable/actions/small/16x16/document-export.svgz share/icons/oxygen/scalable/actions/small/16x16/document-import.svgz @@ -5144,6 +5608,7 @@ share/icons/oxygen/scalable/actions/small/16x16/document-revert.svgz share/icons/oxygen/scalable/actions/small/16x16/document-save-all.svgz share/icons/oxygen/scalable/actions/small/16x16/document-save-as.svgz share/icons/oxygen/scalable/actions/small/16x16/document-save.svgz +share/icons/oxygen/scalable/actions/small/16x16/document-sign.svgz share/icons/oxygen/scalable/actions/small/16x16/draw-brush.svgz share/icons/oxygen/scalable/actions/small/16x16/draw-eraser.svgz share/icons/oxygen/scalable/actions/small/16x16/draw-freehand.svgz @@ -5163,37 +5628,20 @@ share/icons/oxygen/scalable/actions/small/16x16/edit-rename.svgz share/icons/oxygen/scalable/actions/small/16x16/edit-select-all.svgz share/icons/oxygen/scalable/actions/small/16x16/edit-undo.svgz share/icons/oxygen/scalable/actions/small/16x16/folder-new.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-font-size-less.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-font-size-more.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-indent-less.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-indent-more.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-justify-center.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-justify-fill.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-justify-left.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-justify-right.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-line-spacing-double.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-line-spacing-normal.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-line-spacing-triple.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-list-ordered.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-list-unordered.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-text-bold.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-text-direction-ltr.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-text-direction-rtl.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-text-italic.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-text-strikethrough.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-text-subscript.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-text-superscript.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-text-underline.svgz share/icons/oxygen/scalable/actions/small/16x16/go-down-search.svgz share/icons/oxygen/scalable/actions/small/16x16/go-down.svgz -share/icons/oxygen/scalable/actions/small/16x16/go-frist-page.svgz +share/icons/oxygen/scalable/actions/small/16x16/go-first-view-page.svgz +share/icons/oxygen/scalable/actions/small/16x16/go-first-view.svgz share/icons/oxygen/scalable/actions/small/16x16/go-home.svgz share/icons/oxygen/scalable/actions/small/16x16/go-jump-locationbar.svgz share/icons/oxygen/scalable/actions/small/16x16/go-jump-today.svgz -share/icons/oxygen/scalable/actions/small/16x16/go-last-page.svgz -share/icons/oxygen/scalable/actions/small/16x16/go-next-page.svgz +share/icons/oxygen/scalable/actions/small/16x16/go-last-view-page.svgz +share/icons/oxygen/scalable/actions/small/16x16/go-last-view.svgz +share/icons/oxygen/scalable/actions/small/16x16/go-next-view-page.svgz +share/icons/oxygen/scalable/actions/small/16x16/go-next-view.svgz share/icons/oxygen/scalable/actions/small/16x16/go-next.svgz -share/icons/oxygen/scalable/actions/small/16x16/go-previous-page.svgz +share/icons/oxygen/scalable/actions/small/16x16/go-previous-view-page.svgz +share/icons/oxygen/scalable/actions/small/16x16/go-previous-view.svgz share/icons/oxygen/scalable/actions/small/16x16/go-previous.svgz share/icons/oxygen/scalable/actions/small/16x16/go-up-search.svgz share/icons/oxygen/scalable/actions/small/16x16/go-up.svgz @@ -5229,8 +5677,14 @@ share/icons/oxygen/scalable/actions/small/16x16/news-subscribe.svgz share/icons/oxygen/scalable/actions/small/16x16/news-unsubscribe.svgz share/icons/oxygen/scalable/actions/small/16x16/object-flip-horizontal.svgz share/icons/oxygen/scalable/actions/small/16x16/object-flip-vertical.svgz +share/icons/oxygen/scalable/actions/small/16x16/object-group.svgz +share/icons/oxygen/scalable/actions/small/16x16/object-order-back.svgz +share/icons/oxygen/scalable/actions/small/16x16/object-order-front.svgz +share/icons/oxygen/scalable/actions/small/16x16/object-order-lower.svgz +share/icons/oxygen/scalable/actions/small/16x16/object-order-raise.svgz share/icons/oxygen/scalable/actions/small/16x16/object-rotate-left.svgz share/icons/oxygen/scalable/actions/small/16x16/object-rotate-right.svgz +share/icons/oxygen/scalable/actions/small/16x16/object-ungroup.svgz share/icons/oxygen/scalable/actions/small/16x16/page-zoom.svgz share/icons/oxygen/scalable/actions/small/16x16/process-stop.svgz share/icons/oxygen/scalable/actions/small/16x16/rating.svgz @@ -5245,12 +5699,16 @@ share/icons/oxygen/scalable/actions/small/16x16/tab-new-background.svgz share/icons/oxygen/scalable/actions/small/16x16/tab-new.svgz share/icons/oxygen/scalable/actions/small/16x16/text-completion.svgz share/icons/oxygen/scalable/actions/small/16x16/text-speak.svgz +share/icons/oxygen/scalable/actions/small/16x16/tool-animator.svgz share/icons/oxygen/scalable/actions/small/16x16/tools-check-spelling.svgz share/icons/oxygen/scalable/actions/small/16x16/tools-media-optical-copy.svgz +share/icons/oxygen/scalable/actions/small/16x16/transform-crop-and-resize.svgz share/icons/oxygen/scalable/actions/small/16x16/transform-rotate.svgz share/icons/oxygen/scalable/actions/small/16x16/transform-scale.svgz share/icons/oxygen/scalable/actions/small/16x16/trash-empty.svgz +share/icons/oxygen/scalable/actions/small/16x16/user-group-delete.svgz share/icons/oxygen/scalable/actions/small/16x16/user-group-new.svgz +share/icons/oxygen/scalable/actions/small/16x16/user-group-properties.svgz share/icons/oxygen/scalable/actions/small/16x16/user-properties.svgz share/icons/oxygen/scalable/actions/small/16x16/view-calendar-day.svgz share/icons/oxygen/scalable/actions/small/16x16/view-calendar-list.svgz @@ -5262,6 +5720,9 @@ share/icons/oxygen/scalable/actions/small/16x16/view-calendar-upcoming-days.svgz share/icons/oxygen/scalable/actions/small/16x16/view-calendar-upcoming-events.svgz share/icons/oxygen/scalable/actions/small/16x16/view-calendar-week.svgz share/icons/oxygen/scalable/actions/small/16x16/view-calendar-workweek.svgz +share/icons/oxygen/scalable/actions/small/16x16/view-choose.svgz +share/icons/oxygen/scalable/actions/small/16x16/view-close.svgz +share/icons/oxygen/scalable/actions/small/16x16/view-file-columns.svgz share/icons/oxygen/scalable/actions/small/16x16/view-filter.svgz share/icons/oxygen/scalable/actions/small/16x16/view-fullscreen.svgz share/icons/oxygen/scalable/actions/small/16x16/view-history.svgz @@ -5269,6 +5730,7 @@ share/icons/oxygen/scalable/actions/small/16x16/view-left-close.svgz share/icons/oxygen/scalable/actions/small/16x16/view-list-details.svgz share/icons/oxygen/scalable/actions/small/16x16/view-list-icons.svgz share/icons/oxygen/scalable/actions/small/16x16/view-list-text.svgz +share/icons/oxygen/scalable/actions/small/16x16/view-list-tree.svgz share/icons/oxygen/scalable/actions/small/16x16/view-media-artist.svgz share/icons/oxygen/scalable/actions/small/16x16/view-media-lyrics.svgz share/icons/oxygen/scalable/actions/small/16x16/view-media-playlist.svgz @@ -5320,11 +5782,13 @@ share/icons/oxygen/scalable/actions/small/22x22/bookmarks-organize.svgz share/icons/oxygen/scalable/actions/small/22x22/character-set.svgz share/icons/oxygen/scalable/actions/small/22x22/color-picker.svgz share/icons/oxygen/scalable/actions/small/22x22/configure-toolbars.svgz +share/icons/oxygen/scalable/actions/small/22x22/configure.svgz share/icons/oxygen/scalable/actions/small/22x22/contact-new.svgz share/icons/oxygen/scalable/actions/small/22x22/dialog-cancel.svgz share/icons/oxygen/scalable/actions/small/22x22/dialog-ok-apply.svgz share/icons/oxygen/scalable/actions/small/22x22/dialog-ok.svgz share/icons/oxygen/scalable/actions/small/22x22/document-decrypt.svgz +share/icons/oxygen/scalable/actions/small/22x22/document-edit.svgz share/icons/oxygen/scalable/actions/small/22x22/document-encrypt.svgz share/icons/oxygen/scalable/actions/small/22x22/document-export.svgz share/icons/oxygen/scalable/actions/small/22x22/document-import.svgz @@ -5359,38 +5823,21 @@ share/icons/oxygen/scalable/actions/small/22x22/edit-rename.svgz share/icons/oxygen/scalable/actions/small/22x22/edit-select-all.svgz share/icons/oxygen/scalable/actions/small/22x22/edit-undo.svgz share/icons/oxygen/scalable/actions/small/22x22/folder-new.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-font-size-less.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-font-size-more.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-indent-less.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-indent-more.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-justify-center.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-justify-fill.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-justify-left.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-justify-right.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-line-spacing-double.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-line-spacing-normal.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-line-spacing-triple.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-list-ordered.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-list-unordered.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-text-bold.svgz share/icons/oxygen/scalable/actions/small/22x22/format-text-color.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-text-direction-ltr.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-text-direction-rtl.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-text-italic.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-text-strikethrough.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-text-subscript.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-text-superscript.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-text-underline.svgz share/icons/oxygen/scalable/actions/small/22x22/go-down-search.svgz share/icons/oxygen/scalable/actions/small/22x22/go-down.svgz -share/icons/oxygen/scalable/actions/small/22x22/go-first-page.svgz +share/icons/oxygen/scalable/actions/small/22x22/go-first-view-page.svgz +share/icons/oxygen/scalable/actions/small/22x22/go-first-view.svgz share/icons/oxygen/scalable/actions/small/22x22/go-home.svgz share/icons/oxygen/scalable/actions/small/22x22/go-jump-locationbar.svgz share/icons/oxygen/scalable/actions/small/22x22/go-jump-today.svgz -share/icons/oxygen/scalable/actions/small/22x22/go-last-page.svgz -share/icons/oxygen/scalable/actions/small/22x22/go-next-page.svgz +share/icons/oxygen/scalable/actions/small/22x22/go-last-view-page.svgz +share/icons/oxygen/scalable/actions/small/22x22/go-last-view.svgz +share/icons/oxygen/scalable/actions/small/22x22/go-next-view-page.svgz +share/icons/oxygen/scalable/actions/small/22x22/go-next-view.svgz share/icons/oxygen/scalable/actions/small/22x22/go-next.svgz -share/icons/oxygen/scalable/actions/small/22x22/go-previous-page.svgz +share/icons/oxygen/scalable/actions/small/22x22/go-previous-view-page.svgz +share/icons/oxygen/scalable/actions/small/22x22/go-previous-view.svgz share/icons/oxygen/scalable/actions/small/22x22/go-previous.svgz share/icons/oxygen/scalable/actions/small/22x22/go-up-search.svgz share/icons/oxygen/scalable/actions/small/22x22/go-up.svgz @@ -5432,11 +5879,15 @@ share/icons/oxygen/scalable/actions/small/22x22/tab-close.svgz share/icons/oxygen/scalable/actions/small/22x22/tab-detach.svgz share/icons/oxygen/scalable/actions/small/22x22/tab-duplicate.svgz share/icons/oxygen/scalable/actions/small/22x22/tab-new-background.svgz +share/icons/oxygen/scalable/actions/small/22x22/tool-animator.svgz share/icons/oxygen/scalable/actions/small/22x22/tools-check-spelling.svgz +share/icons/oxygen/scalable/actions/small/22x22/transform-crop-and-resize.svgz share/icons/oxygen/scalable/actions/small/22x22/transform-rotate.svgz share/icons/oxygen/scalable/actions/small/22x22/transform-scale.svgz share/icons/oxygen/scalable/actions/small/22x22/trash-empty.svgz +share/icons/oxygen/scalable/actions/small/22x22/user-group-delete.svgz share/icons/oxygen/scalable/actions/small/22x22/user-group-new.svgz +share/icons/oxygen/scalable/actions/small/22x22/user-group-properties.svgz share/icons/oxygen/scalable/actions/small/22x22/view-calendar-day.svgz share/icons/oxygen/scalable/actions/small/22x22/view-calendar-list.svgz share/icons/oxygen/scalable/actions/small/22x22/view-calendar-month.svgz @@ -5447,12 +5898,16 @@ share/icons/oxygen/scalable/actions/small/22x22/view-calendar-upcoming-days.svgz share/icons/oxygen/scalable/actions/small/22x22/view-calendar-upcoming-events.svgz share/icons/oxygen/scalable/actions/small/22x22/view-calendar-week.svgz share/icons/oxygen/scalable/actions/small/22x22/view-calendar-workweek.svgz +share/icons/oxygen/scalable/actions/small/22x22/view-choose.svgz +share/icons/oxygen/scalable/actions/small/22x22/view-close.svgz +share/icons/oxygen/scalable/actions/small/22x22/view-file-columns.svgz share/icons/oxygen/scalable/actions/small/22x22/view-fullscreen.svgz share/icons/oxygen/scalable/actions/small/22x22/view-history.svgz share/icons/oxygen/scalable/actions/small/22x22/view-left-close.svgz share/icons/oxygen/scalable/actions/small/22x22/view-list-details.svgz share/icons/oxygen/scalable/actions/small/22x22/view-list-icons.svgz share/icons/oxygen/scalable/actions/small/22x22/view-list-text.svgz +share/icons/oxygen/scalable/actions/small/22x22/view-list-tree.svgz share/icons/oxygen/scalable/actions/small/22x22/view-media-artist.svgz share/icons/oxygen/scalable/actions/small/22x22/view-media-lyrics.svgz share/icons/oxygen/scalable/actions/small/22x22/view-media-playlist.svgz @@ -5485,15 +5940,17 @@ share/icons/oxygen/scalable/actions/small/22x22/zoom-original.svgz share/icons/oxygen/scalable/actions/small/22x22/zoom-out.svgz share/icons/oxygen/scalable/actions/small/32x32/bookmark-new.svgz share/icons/oxygen/scalable/actions/small/32x32/dashboard-show.svgz +share/icons/oxygen/scalable/actions/small/32x32/document-edit.svgz share/icons/oxygen/scalable/actions/small/32x32/edit-find-mail.svgz share/icons/oxygen/scalable/actions/small/32x32/edit-find.svgz -share/icons/oxygen/scalable/actions/small/32x32/go-first-page.svgz -share/icons/oxygen/scalable/actions/small/32x32/go-last-page.svgz -share/icons/oxygen/scalable/actions/small/32x32/go-next-page.svgz -share/icons/oxygen/scalable/actions/small/32x32/go-previous-page.svgz +share/icons/oxygen/scalable/actions/small/32x32/go-first-view-page.svgz +share/icons/oxygen/scalable/actions/small/32x32/go-last-view-page.svgz +share/icons/oxygen/scalable/actions/small/32x32/go-next-view-page.svgz +share/icons/oxygen/scalable/actions/small/32x32/go-previous-view-page.svgz share/icons/oxygen/scalable/actions/small/32x32/mail-mark-junk.svgz share/icons/oxygen/scalable/actions/small/32x32/mail-receive.svgz share/icons/oxygen/scalable/actions/small/32x32/system-search.svgz +share/icons/oxygen/scalable/actions/small/32x32/tool-animator.svgz share/icons/oxygen/scalable/actions/small/32x32/view-table-of-contents-ltr.svgz share/icons/oxygen/scalable/actions/small/32x32/view-table-of-contents-rtl.svgz share/icons/oxygen/scalable/actions/small/32x32/zoom-fit-best.svgz @@ -5502,19 +5959,27 @@ share/icons/oxygen/scalable/actions/small/32x32/zoom-fit-width.svgz share/icons/oxygen/scalable/actions/small/48x48/address-book-new.svgz share/icons/oxygen/scalable/actions/small/48x48/appointment-new.svgz share/icons/oxygen/scalable/actions/small/48x48/bookmark-new.svgz +share/icons/oxygen/scalable/actions/small/48x48/bookmark-toolbar.svgz +share/icons/oxygen/scalable/actions/small/48x48/configure-toolbars.svgz share/icons/oxygen/scalable/actions/small/48x48/contact-new.svgz +share/icons/oxygen/scalable/actions/small/48x48/document-edit.svgz share/icons/oxygen/scalable/actions/small/48x48/document-new.svgz share/icons/oxygen/scalable/actions/small/48x48/document-open-recent.svgz share/icons/oxygen/scalable/actions/small/48x48/document-open.svgz share/icons/oxygen/scalable/actions/small/48x48/document-save-all.svgz share/icons/oxygen/scalable/actions/small/48x48/document-save-as.svgz share/icons/oxygen/scalable/actions/small/48x48/document-save.svgz +share/icons/oxygen/scalable/actions/small/48x48/edit-copy.svgz share/icons/oxygen/scalable/actions/small/48x48/folder-new.svgz share/icons/oxygen/scalable/actions/small/48x48/format-text-color.svgz -share/icons/oxygen/scalable/actions/small/48x48/go-first-page.svgz -share/icons/oxygen/scalable/actions/small/48x48/go-last-page.svgz -share/icons/oxygen/scalable/actions/small/48x48/go-next-page.svgz -share/icons/oxygen/scalable/actions/small/48x48/go-previous-page.svgz +share/icons/oxygen/scalable/actions/small/48x48/go-first-view-page.svgz +share/icons/oxygen/scalable/actions/small/48x48/go-frist-view.svgz +share/icons/oxygen/scalable/actions/small/48x48/go-last-view-page.svgz +share/icons/oxygen/scalable/actions/small/48x48/go-last-view.svgz +share/icons/oxygen/scalable/actions/small/48x48/go-next-view-page.svgz +share/icons/oxygen/scalable/actions/small/48x48/go-next-view.svgz +share/icons/oxygen/scalable/actions/small/48x48/go-previous-view-page.svgz +share/icons/oxygen/scalable/actions/small/48x48/go-previous-view.svgz share/icons/oxygen/scalable/actions/small/48x48/mail-forward.svgz share/icons/oxygen/scalable/actions/small/48x48/mail-message-new.svgz share/icons/oxygen/scalable/actions/small/48x48/mail-queue.svgz @@ -5524,10 +5989,29 @@ share/icons/oxygen/scalable/actions/small/48x48/mail-reply-sender.svgz share/icons/oxygen/scalable/actions/small/48x48/object-flip-horizontal.svgz share/icons/oxygen/scalable/actions/small/48x48/object-flip-vertical.svgz share/icons/oxygen/scalable/actions/small/48x48/tab-new-background.svgz +share/icons/oxygen/scalable/actions/small/48x48/tool-animator.svgz +share/icons/oxygen/scalable/actions/small/48x48/transform-crop-and-resize.svgz +share/icons/oxygen/scalable/actions/small/48x48/transform-scale.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-choose.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-close.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-file-columns.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-fullscreen.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-left-close.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-list-details.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-list-text.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-list-tree.svgz share/icons/oxygen/scalable/actions/small/48x48/view-media-lyrics.svgz share/icons/oxygen/scalable/actions/small/48x48/view-media-playlist.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-preview.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-restore.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-right-close.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-right-new.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-sidetree.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-split-left-right.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-split-top-bottom.svgz share/icons/oxygen/scalable/actions/small/48x48/view-table-of-contents-ltr.svgz share/icons/oxygen/scalable/actions/small/48x48/view-table-of-contents-rtl.svgz +share/icons/oxygen/scalable/actions/small/48x48/window-duplicate.svgz share/icons/oxygen/scalable/actions/small/48x48/window-new.svgz share/icons/oxygen/scalable/actions/small/48x48/zoom-fit-best.svgz share/icons/oxygen/scalable/actions/small/48x48/zoom-fit-height.svgz @@ -5549,16 +6033,20 @@ share/icons/oxygen/scalable/actions/tab-duplicate.svgz share/icons/oxygen/scalable/actions/tab-new-background.svgz share/icons/oxygen/scalable/actions/tab-new.svgz share/icons/oxygen/scalable/actions/text-speak.svgz +share/icons/oxygen/scalable/actions/tool-animator.svgz share/icons/oxygen/scalable/actions/tools-check-spelling.svgz share/icons/oxygen/scalable/actions/tools-media-optical-burn.svgz share/icons/oxygen/scalable/actions/tools-media-optical-copy.svgz share/icons/oxygen/scalable/actions/tools-report-bug.svgz share/icons/oxygen/scalable/actions/tools-wizard.svgz +share/icons/oxygen/scalable/actions/transform-crop-and-resize.svgz share/icons/oxygen/scalable/actions/transform-move.svgz share/icons/oxygen/scalable/actions/transform-rotate.svgz share/icons/oxygen/scalable/actions/transform-scale.svgz share/icons/oxygen/scalable/actions/trash-empty.svgz +share/icons/oxygen/scalable/actions/user-group-delete.svg share/icons/oxygen/scalable/actions/user-group-new.svgz +share/icons/oxygen/scalable/actions/user-group-properties.svgz share/icons/oxygen/scalable/actions/user-properties.svgz share/icons/oxygen/scalable/actions/view-calendar-day.svgz share/icons/oxygen/scalable/actions/view-calendar-list.svgz @@ -5572,6 +6060,7 @@ share/icons/oxygen/scalable/actions/view-calendar-week.svgz share/icons/oxygen/scalable/actions/view-calendar-workweek.svgz share/icons/oxygen/scalable/actions/view-choose.svgz share/icons/oxygen/scalable/actions/view-close.svgz +share/icons/oxygen/scalable/actions/view-file-columns.svgz share/icons/oxygen/scalable/actions/view-filter.svgz share/icons/oxygen/scalable/actions/view-fullscreen.svgz share/icons/oxygen/scalable/actions/view-history.svgz @@ -5585,6 +6074,8 @@ share/icons/oxygen/scalable/actions/view-media-equalizer.svgz share/icons/oxygen/scalable/actions/view-media-lyrics.svgz share/icons/oxygen/scalable/actions/view-media-playlist.svgz share/icons/oxygen/scalable/actions/view-media-visualization.svgz +share/icons/oxygen/scalable/actions/view-object-histogram-linear.svgz +share/icons/oxygen/scalable/actions/view-object-histogram-logarithmic.svgz share/icons/oxygen/scalable/actions/view-pim-calendar.svgz share/icons/oxygen/scalable/actions/view-pim-contacts.svgz share/icons/oxygen/scalable/actions/view-pim-journal.svgz @@ -5634,6 +6125,7 @@ share/icons/oxygen/scalable/apps/alternativ/khelpcenter2.svgz share/icons/oxygen/scalable/apps/alternativ/knotes.svgz share/icons/oxygen/scalable/apps/basket.svgz share/icons/oxygen/scalable/apps/bovo.svgz +share/icons/oxygen/scalable/apps/device-notifier.svgz share/icons/oxygen/scalable/apps/digikam.svgz share/icons/oxygen/scalable/apps/esd.svgz share/icons/oxygen/scalable/apps/fontforge.svgz @@ -5648,17 +6140,16 @@ share/icons/oxygen/scalable/apps/internet-web-browser.svgz share/icons/oxygen/scalable/apps/java.svgz share/icons/oxygen/scalable/apps/k3b.svgz share/icons/oxygen/scalable/apps/kaffeine.svgz -share/icons/oxygen/scalable/apps/kate.svgz share/icons/oxygen/scalable/apps/kblogger.svgz share/icons/oxygen/scalable/apps/kbugbuster.svgz share/icons/oxygen/scalable/apps/kchart.svgz share/icons/oxygen/scalable/apps/kcolorchooser.svgz share/icons/oxygen/scalable/apps/kde.svgz share/icons/oxygen/scalable/apps/kexi.svgz -share/icons/oxygen/scalable/apps/kjots.svgz share/icons/oxygen/scalable/apps/kjournal.svgz share/icons/oxygen/scalable/apps/klipper.svgz share/icons/oxygen/scalable/apps/kmplayer.svgz +share/icons/oxygen/scalable/apps/knewsticker.svgz share/icons/oxygen/scalable/apps/knotes.svgz share/icons/oxygen/scalable/apps/kolf.svgz share/icons/oxygen/scalable/apps/konqueror.svgz @@ -5682,7 +6173,6 @@ share/icons/oxygen/scalable/apps/office-address-book.svgz share/icons/oxygen/scalable/apps/office-calendar.svgz share/icons/oxygen/scalable/apps/okteta.svgz share/icons/oxygen/scalable/apps/oxygen.svgz -share/icons/oxygen/scalable/apps/phonon-xine.svgz share/icons/oxygen/scalable/apps/plasma.svgz share/icons/oxygen/scalable/apps/plasmagik.svgz share/icons/oxygen/scalable/apps/preferences-contact-list.svgz @@ -5719,6 +6209,8 @@ share/icons/oxygen/scalable/apps/preferences-system-performance.svgz share/icons/oxygen/scalable/apps/preferences-system-power-management.svgz share/icons/oxygen/scalable/apps/preferences-system-session-services.svgz share/icons/oxygen/scalable/apps/preferences-system-time.svgz +share/icons/oxygen/scalable/apps/preferences-system-windows-actions.svgz +share/icons/oxygen/scalable/apps/preferences-system-windows-move.svgz share/icons/oxygen/scalable/apps/preferences-system-windows.svgz share/icons/oxygen/scalable/apps/preferences-web-browser-adblock.svgz share/icons/oxygen/scalable/apps/preferences-web-browser-cache.svgz @@ -5727,6 +6219,7 @@ share/icons/oxygen/scalable/apps/preferences-web-browser-identification.svgz share/icons/oxygen/scalable/apps/preferences-web-browser-shortcuts.svgz share/icons/oxygen/scalable/apps/preferences-web-browser-stylesheets.svgz share/icons/oxygen/scalable/apps/scribus.svgz +share/icons/oxygen/scalable/apps/semn.svg share/icons/oxygen/scalable/apps/small/16x16/accessories-calculator.svgz share/icons/oxygen/scalable/apps/small/16x16/accessories-character-map.svgz share/icons/oxygen/scalable/apps/small/16x16/accessories-dictionary.svgz @@ -5738,9 +6231,9 @@ share/icons/oxygen/scalable/apps/small/16x16/graphics-viewer-document.svgz share/icons/oxygen/scalable/apps/small/16x16/internet-mail.svgz share/icons/oxygen/scalable/apps/small/16x16/java.svgz share/icons/oxygen/scalable/apps/small/16x16/kaffeine.svgz -share/icons/oxygen/scalable/apps/small/16x16/kate.svgz share/icons/oxygen/scalable/apps/small/16x16/kchart.svgz share/icons/oxygen/scalable/apps/small/16x16/kde.svgz +share/icons/oxygen/scalable/apps/small/16x16/knewsticker.svgz share/icons/oxygen/scalable/apps/small/16x16/knotes.svgz share/icons/oxygen/scalable/apps/small/16x16/konqueror.svgz share/icons/oxygen/scalable/apps/small/16x16/krita.svgz @@ -5751,7 +6244,7 @@ share/icons/oxygen/scalable/apps/small/16x16/office-address-book.svgz share/icons/oxygen/scalable/apps/small/16x16/office-calendar.svgz share/icons/oxygen/scalable/apps/small/16x16/preferences-contact-list.svgz share/icons/oxygen/scalable/apps/small/16x16/preferences-desktop-accessibility.svgz -share/icons/oxygen/scalable/apps/small/16x16/preferences-desktop-display.svgz +share/icons/oxygen/scalable/apps/small/16x16/preferences-desktop-font.svgz share/icons/oxygen/scalable/apps/small/16x16/preferences-desktop-gaming.svgz share/icons/oxygen/scalable/apps/small/16x16/preferences-desktop-icons.svgz share/icons/oxygen/scalable/apps/small/16x16/preferences-desktop-mouse.svgz @@ -5761,6 +6254,9 @@ share/icons/oxygen/scalable/apps/small/16x16/preferences-desktop-text-to-speech. share/icons/oxygen/scalable/apps/small/16x16/preferences-desktop-theme.svgz share/icons/oxygen/scalable/apps/small/16x16/preferences-desktop-user.svgz share/icons/oxygen/scalable/apps/small/16x16/preferences-plugin.svgz +share/icons/oxygen/scalable/apps/small/16x16/preferences-system-windows-actions.svgz +share/icons/oxygen/scalable/apps/small/16x16/preferences-system-windows-move.svgz +share/icons/oxygen/scalable/apps/small/16x16/preferences-system-windows.svgz share/icons/oxygen/scalable/apps/small/16x16/preferences-web-browser-identification.svgz share/icons/oxygen/scalable/apps/small/16x16/preferences-web-browser-stylesheets.svgz share/icons/oxygen/scalable/apps/small/16x16/scribus.svgz @@ -5785,24 +6281,39 @@ share/icons/oxygen/scalable/apps/small/22x22/office-calendar.svgz share/icons/oxygen/scalable/apps/small/22x22/package-utilities.svgz share/icons/oxygen/scalable/apps/small/22x22/preferences-contact-list.svgz share/icons/oxygen/scalable/apps/small/22x22/preferences-desktop-accessibility.svgz -share/icons/oxygen/scalable/apps/small/22x22/preferences-desktop-display.svgz +share/icons/oxygen/scalable/apps/small/22x22/preferences-desktop-font.svgz share/icons/oxygen/scalable/apps/small/22x22/preferences-desktop-gaming.svgz share/icons/oxygen/scalable/apps/small/22x22/preferences-desktop-icons.svgz share/icons/oxygen/scalable/apps/small/22x22/preferences-desktop-mouse.svgz share/icons/oxygen/scalable/apps/small/22x22/preferences-desktop-notification-bell.svgz +share/icons/oxygen/scalable/apps/small/22x22/preferences-system-windows-move.svg +share/icons/oxygen/scalable/apps/small/22x22/preferences-system-windows-move.svgz +share/icons/oxygen/scalable/apps/small/22x22/preferences-system-windows.svgz share/icons/oxygen/scalable/apps/small/22x22/scribus.svgz share/icons/oxygen/scalable/apps/small/22x22/system-file-manager.svgz share/icons/oxygen/scalable/apps/small/22x22/utilities-system-monitor.svgz share/icons/oxygen/scalable/apps/small/22x22/utilities-terminal.svgz share/icons/oxygen/scalable/apps/small/32x32/digikam.svgz share/icons/oxygen/scalable/apps/small/32x32/klipper.svgz +share/icons/oxygen/scalable/apps/small/32x32/knewsticker.svgz +share/icons/oxygen/scalable/apps/small/32x32/preferences-desktop-font.svgz share/icons/oxygen/scalable/apps/small/32x32/preferences-desktop-user.svgz +share/icons/oxygen/scalable/apps/small/32x32/preferences-system-windows-actions.svgz +share/icons/oxygen/scalable/apps/small/32x32/preferences-system-windows-move.svgz +share/icons/oxygen/scalable/apps/small/32x32/preferences-system-windows.svgz share/icons/oxygen/scalable/apps/small/32x32/system-file-manager.svgz +share/icons/oxygen/scalable/apps/small/48x48/knewsticker.svgz +share/icons/oxygen/scalable/apps/small/48x48/preferences-desktop-font.svgz +share/icons/oxygen/scalable/apps/small/48x48/preferences-system-windows-actions.svgz +share/icons/oxygen/scalable/apps/small/48x48/preferences-system-windows-move.svgz +share/icons/oxygen/scalable/apps/small/48x48/preferences-system-windows.svgz share/icons/oxygen/scalable/apps/strigi.svgz +share/icons/oxygen/scalable/apps/system-diagnosis.svgz share/icons/oxygen/scalable/apps/system-file-manager.svgz share/icons/oxygen/scalable/apps/system-software-update.svgz share/icons/oxygen/scalable/apps/system-users.svgz share/icons/oxygen/scalable/apps/tagua.svgz +share/icons/oxygen/scalable/apps/utilities-desktop-extra.svgz share/icons/oxygen/scalable/apps/utilities-file-archiver.svgz share/icons/oxygen/scalable/apps/utilities-log-viewer.svgz share/icons/oxygen/scalable/apps/utilities-system-monitor.svgz @@ -5934,13 +6445,17 @@ share/icons/oxygen/scalable/devices/small/32x32/media-floppy.svgz share/icons/oxygen/scalable/devices/small/32x32/multimedia-player-ipod.svgz share/icons/oxygen/scalable/devices/small/32x32/network-wireless.svgz share/icons/oxygen/scalable/devices/small/32x32/phone.svgz +share/icons/oxygen/scalable/devices/small/32x32/video-display.svgz share/icons/oxygen/scalable/devices/small/48x48/computer-laptop.svgz share/icons/oxygen/scalable/devices/small/48x48/computer.svgz share/icons/oxygen/scalable/devices/small/48x48/media-floppy.svgz share/icons/oxygen/scalable/devices/small/48x48/network-wireless.svgz +share/icons/oxygen/scalable/devices/small/48x48/video-display.svgz share/icons/oxygen/scalable/devices/small/64x64/camera-photo.svgz +share/icons/oxygen/scalable/devices/small/64x64/computer.svgz share/icons/oxygen/scalable/devices/small/64x64/media-floppy.svgz share/icons/oxygen/scalable/devices/small/64x64/network-wireless.svgz +share/icons/oxygen/scalable/devices/small/64x64/video-display.svgz share/icons/oxygen/scalable/devices/video-display.svgz share/icons/oxygen/scalable/devices/video-projector.svgz share/icons/oxygen/scalable/devices/video-television.svgz @@ -5968,6 +6483,7 @@ share/icons/oxygen/scalable/emotes/face-smile-big.svgz share/icons/oxygen/scalable/emotes/face-smile.svgz share/icons/oxygen/scalable/emotes/face-surprise.svgz share/icons/oxygen/scalable/emotes/face-uncertain.svgz +share/icons/oxygen/scalable/emotes/face-wink.svgz share/icons/oxygen/scalable/emotes/small/16x16/face-angel.svgz share/icons/oxygen/scalable/emotes/small/16x16/face-kiss.svgz share/icons/oxygen/scalable/emotes/small/16x16/face-laugh.svgz @@ -5996,6 +6512,7 @@ share/icons/oxygen/scalable/emotes/small/22x22/face-surprise.svgz share/icons/oxygen/scalable/emotes/small/22x22/face-uncertain.svgz share/icons/oxygen/scalable/emotes/small/22x22/face-wink.svgz share/icons/oxygen/scalable/mimetypes/application-illustrator.svgz +share/icons/oxygen/scalable/mimetypes/application-javascript.svgz share/icons/oxygen/scalable/mimetypes/application-msword.svgz share/icons/oxygen/scalable/mimetypes/application-octet-stream.svgz share/icons/oxygen/scalable/mimetypes/application-pdf.svgz @@ -6008,6 +6525,7 @@ share/icons/oxygen/scalable/mimetypes/application-postscript.svgz share/icons/oxygen/scalable/mimetypes/application-relaxng.svgz share/icons/oxygen/scalable/mimetypes/application-rss+xml.svgz share/icons/oxygen/scalable/mimetypes/application-rtf.svgz +share/icons/oxygen/scalable/mimetypes/application-vnd.ms-access.svgz share/icons/oxygen/scalable/mimetypes/application-vnd.ms-excel.svgz share/icons/oxygen/scalable/mimetypes/application-vnd.ms-powerpoint.svgz share/icons/oxygen/scalable/mimetypes/application-vnd.oasis.opendocument.chart.svgz @@ -6072,7 +6590,9 @@ share/icons/oxygen/scalable/mimetypes/application-x-kontour.svgz share/icons/oxygen/scalable/mimetypes/application-x-krita.svgz share/icons/oxygen/scalable/mimetypes/application-x-kvtml.svgz share/icons/oxygen/scalable/mimetypes/application-x-lha.svgz +share/icons/oxygen/scalable/mimetypes/application-x-lzma-compressed-tar.svgz share/icons/oxygen/scalable/mimetypes/application-x-lzop.svgz +share/icons/oxygen/scalable/mimetypes/application-x-m4.svgz share/icons/oxygen/scalable/mimetypes/application-x-marble.svgz share/icons/oxygen/scalable/mimetypes/application-x-mimearchive.svgz share/icons/oxygen/scalable/mimetypes/application-x-mplayer2.svgz @@ -6082,6 +6602,7 @@ share/icons/oxygen/scalable/mimetypes/application-x-mswrite.svgz share/icons/oxygen/scalable/mimetypes/application-x-nzb.svgz share/icons/oxygen/scalable/mimetypes/application-x-object.svgz share/icons/oxygen/scalable/mimetypes/application-x-pak.svgz +share/icons/oxygen/scalable/mimetypes/application-x-pem-key.svgz share/icons/oxygen/scalable/mimetypes/application-x-perl.svgz share/icons/oxygen/scalable/mimetypes/application-x-php.svgz share/icons/oxygen/scalable/mimetypes/application-x-plasma.svgz @@ -6092,7 +6613,11 @@ share/icons/oxygen/scalable/mimetypes/application-x-rpm.svgz share/icons/oxygen/scalable/mimetypes/application-x-ruby.svgz share/icons/oxygen/scalable/mimetypes/application-x-sharedlib.svgz share/icons/oxygen/scalable/mimetypes/application-x-shellscript.svgz +share/icons/oxygen/scalable/mimetypes/application-x-shockwave-flash.svgz share/icons/oxygen/scalable/mimetypes/application-x-siag.svgz +share/icons/oxygen/scalable/mimetypes/application-x-smb-server.svgz +share/icons/oxygen/scalable/mimetypes/application-x-smb-workgroup.svgz +share/icons/oxygen/scalable/mimetypes/application-x-subrip.svgz share/icons/oxygen/scalable/mimetypes/application-x-tar.svgz share/icons/oxygen/scalable/mimetypes/application-x-tarz.svgz share/icons/oxygen/scalable/mimetypes/application-x-tgif.svgz @@ -6126,6 +6651,7 @@ share/icons/oxygen/scalable/mimetypes/audio-x-mod.svgz share/icons/oxygen/scalable/mimetypes/audio-x-monkey.svgz share/icons/oxygen/scalable/mimetypes/audio-x-mp2.svgz share/icons/oxygen/scalable/mimetypes/audio-x-mpegurl.svgz +share/icons/oxygen/scalable/mimetypes/audio-x-ms-asx.svgz share/icons/oxygen/scalable/mimetypes/audio-x-ms-wma.svgz share/icons/oxygen/scalable/mimetypes/audio-x-musepack.svgz share/icons/oxygen/scalable/mimetypes/audio-x-pn-realaudio-plugin.svgz @@ -6175,6 +6701,7 @@ share/icons/oxygen/scalable/mimetypes/message-rfc822.svgz share/icons/oxygen/scalable/mimetypes/message.svgz share/icons/oxygen/scalable/mimetypes/odf.svgz share/icons/oxygen/scalable/mimetypes/package-x-generic.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/application-javascript.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-msword.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-pdf.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-pgp-encrypted.svgz @@ -6182,6 +6709,7 @@ share/icons/oxygen/scalable/mimetypes/small/16x16/application-pgp-keys.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-pkcs7-mime.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-rss+xml.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-rtf.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/application-vnd.ms-access.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-vnd.ms-excel.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-vnd.ms-powerpoint.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-vnd.oasis.opendocument.database.svgz @@ -6227,10 +6755,13 @@ share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-font-type1.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-kcsrc.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-kgetlist.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-kontour.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-lzma-compressed-tar.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-m4.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-marble.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-mplayer2.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-ms-dos-executable.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-mswrite.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-pem-key.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-perl.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-php.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-python.svgz @@ -6238,6 +6769,8 @@ share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-rar.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-rpm.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-ruby.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-shellscript.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-shockwave-flash.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-subrip.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-tar.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-tarz.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-tgif.svgz @@ -6268,6 +6801,7 @@ share/icons/oxygen/scalable/mimetypes/small/16x16/audio-x-mod.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/audio-x-monkey.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/audio-x-mp2.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/audio-x-mpegurl.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/audio-x-ms-asx.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/audio-x-ms-wma.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/audio-x-musepack.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/audio-x-pn-realaudio-plugin.svgz @@ -6323,20 +6857,30 @@ share/icons/oxygen/scalable/mimetypes/small/16x16/text-sgml.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-vcalendar.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-vnd.abc.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-adasrc.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-authors.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-c++hdr.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-c++src.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-changelog.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-chdr.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-cmake.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-copying.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-csharp.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-csrc.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-generic.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-hex.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-install.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-katefilelist.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-log.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-makefile.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-nfo.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-objchdr.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-objcsrc.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-patch.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-po.svg share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-python.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-readme.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-script.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-sql.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-tcl.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-texinfo.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-xml.svgz @@ -6351,6 +6895,7 @@ share/icons/oxygen/scalable/mimetypes/small/16x16/video-mp4.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/video-mpeg.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/video-quicktime.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/video-x-flic.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/video-x-flv.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/video-x-generic.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/video-x-matroska.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/video-x-mng.svgz @@ -6365,6 +6910,7 @@ share/icons/oxygen/scalable/mimetypes/small/16x16/x-office-calendar.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/x-office-contact.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/x-office-document.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/x-office-spreadsheet.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/application-javascript.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-msword.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-pdf.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-pgp-encrypted.svgz @@ -6372,6 +6918,7 @@ share/icons/oxygen/scalable/mimetypes/small/22x22/application-pgp-keys.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-pkcs7-mime.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-rss+xml.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-rtf.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/application-vnd.ms-access.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-vnd.ms-excel.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-vnd.ms-powerpoint.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-vnd.oasis.opendocument.database.svgz @@ -6407,10 +6954,15 @@ share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-javascript.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-kcsrc.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-kgetlist.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-kontour.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-lzma-compressed-tar.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-m4.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-marble.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-mplayer2.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-pem-key.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-rar.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-shellscript.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-shockwave-flash.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-subrip.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-tar.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-tarz.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-tgif.svgz @@ -6438,6 +6990,7 @@ share/icons/oxygen/scalable/mimetypes/small/22x22/audio-x-matroska.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/audio-x-mod.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/audio-x-mp2.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/audio-x-mpegurl.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/audio-x-ms-asx.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/audio-x-ms-wma.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/audio-x-musepack.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/audio-x-pn-realaudio-plugin.svgz @@ -6494,17 +7047,27 @@ share/icons/oxygen/scalable/mimetypes/small/22x22/text-rtf.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-sgml.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-vcalendar.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-vnd.abc.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-authors.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-bibtex.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-c++hdr.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-changelog.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-cmake.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-copying.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-generic.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-hex.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-install.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-katefilelist.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-log.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-makefile.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-nfo.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-objchdr.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-pascal.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-patch.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-po.svg share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-python.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-readme.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-script.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-sql.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-tcl.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-tex.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-xml.svgz @@ -6518,6 +7081,7 @@ share/icons/oxygen/scalable/mimetypes/small/22x22/video-mp4.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/video-mpeg.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/video-quicktime.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/video-x-flic.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/video-x-flv.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/video-x-generic.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/video-x-matroska.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/video-x-mng.svgz @@ -6531,6 +7095,7 @@ share/icons/oxygen/scalable/mimetypes/small/22x22/x-office-contact.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/x-office-document.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/x-office-spreadsheet.svgz share/icons/oxygen/scalable/mimetypes/small/32x32/inode-directory.svgz +share/icons/oxygen/scalable/mimetypes/small/32x32/text-x-po.svg share/icons/oxygen/scalable/mimetypes/text-calendar.svgz share/icons/oxygen/scalable/mimetypes/text-css.svgz share/icons/oxygen/scalable/mimetypes/text-csv.svgz @@ -6547,25 +7112,36 @@ share/icons/oxygen/scalable/mimetypes/text-vcalendar.svgz share/icons/oxygen/scalable/mimetypes/text-vnd.abc.svgz share/icons/oxygen/scalable/mimetypes/text-vnd.wap.wml.svgz share/icons/oxygen/scalable/mimetypes/text-x-adasrc.svgz +share/icons/oxygen/scalable/mimetypes/text-x-authors.svgz share/icons/oxygen/scalable/mimetypes/text-x-bibtex.svgz share/icons/oxygen/scalable/mimetypes/text-x-c++hdr.svgz share/icons/oxygen/scalable/mimetypes/text-x-c++src.svgz +share/icons/oxygen/scalable/mimetypes/text-x-changelog.svgz share/icons/oxygen/scalable/mimetypes/text-x-chdr.svgz +share/icons/oxygen/scalable/mimetypes/text-x-cmake.svgz +share/icons/oxygen/scalable/mimetypes/text-x-copying.svgz share/icons/oxygen/scalable/mimetypes/text-x-csharp.svgz share/icons/oxygen/scalable/mimetypes/text-x-csrc.svgz share/icons/oxygen/scalable/mimetypes/text-x-dtd.svgz share/icons/oxygen/scalable/mimetypes/text-x-generic.svgz share/icons/oxygen/scalable/mimetypes/text-x-hex.svgz +share/icons/oxygen/scalable/mimetypes/text-x-install.svgz share/icons/oxygen/scalable/mimetypes/text-x-java.svgz share/icons/oxygen/scalable/mimetypes/text-x-katefilelist.svgz share/icons/oxygen/scalable/mimetypes/text-x-ldif.svgz +share/icons/oxygen/scalable/mimetypes/text-x-lilypond.svgz +share/icons/oxygen/scalable/mimetypes/text-x-log.svgz share/icons/oxygen/scalable/mimetypes/text-x-makefile.svgz +share/icons/oxygen/scalable/mimetypes/text-x-nfo.svgz share/icons/oxygen/scalable/mimetypes/text-x-objchdr.svgz share/icons/oxygen/scalable/mimetypes/text-x-objcsrc.svgz share/icons/oxygen/scalable/mimetypes/text-x-pascal.svgz share/icons/oxygen/scalable/mimetypes/text-x-patch.svgz +share/icons/oxygen/scalable/mimetypes/text-x-po.svgz share/icons/oxygen/scalable/mimetypes/text-x-python.svgz +share/icons/oxygen/scalable/mimetypes/text-x-readme.svgz share/icons/oxygen/scalable/mimetypes/text-x-script.svgz +share/icons/oxygen/scalable/mimetypes/text-x-sql.svgz share/icons/oxygen/scalable/mimetypes/text-x-tcl.svgz share/icons/oxygen/scalable/mimetypes/text-x-tex.svgz share/icons/oxygen/scalable/mimetypes/text-x-texinfo.svgz @@ -6584,6 +7160,7 @@ share/icons/oxygen/scalable/mimetypes/video-mp4.svgz share/icons/oxygen/scalable/mimetypes/video-mpeg.svgz share/icons/oxygen/scalable/mimetypes/video-quicktime.svgz share/icons/oxygen/scalable/mimetypes/video-x-flic.svgz +share/icons/oxygen/scalable/mimetypes/video-x-flv.svgz share/icons/oxygen/scalable/mimetypes/video-x-generic.svgz share/icons/oxygen/scalable/mimetypes/video-x-matroska.svgz share/icons/oxygen/scalable/mimetypes/video-x-mng.svgz @@ -6661,6 +7238,7 @@ share/icons/oxygen/scalable/places/small/22x22/user-desktop.svgz share/icons/oxygen/scalable/places/small/22x22/user-home.svgz share/icons/oxygen/scalable/places/small/22x22/user-identity.svgz share/icons/oxygen/scalable/places/small/32x32/mail-folder-sent.svgz +share/icons/oxygen/scalable/places/small/48x48/folder-add.svgz share/icons/oxygen/scalable/places/small/48x48/mail-folder-sent.svgz share/icons/oxygen/scalable/places/start-here-kde.svgz share/icons/oxygen/scalable/places/start-here.svgz @@ -6668,6 +7246,10 @@ share/icons/oxygen/scalable/places/user-desktop.svgz share/icons/oxygen/scalable/places/user-home.svgz share/icons/oxygen/scalable/places/user-identity.svgz share/icons/oxygen/scalable/places/user-trash.svgz +share/icons/oxygen/scalable/status/audio-volume-high.svgz +share/icons/oxygen/scalable/status/audio-volume-low.svgz +share/icons/oxygen/scalable/status/audio-volume-medium.svgz +share/icons/oxygen/scalable/status/audio-volume-muted.svgz share/icons/oxygen/scalable/status/battery-040.svgz share/icons/oxygen/scalable/status/battery-060.svgz share/icons/oxygen/scalable/status/battery-080.svgz @@ -6704,6 +7286,10 @@ share/icons/oxygen/scalable/status/script-error.svgz share/icons/oxygen/scalable/status/security-high.svgz share/icons/oxygen/scalable/status/security-low.svgz share/icons/oxygen/scalable/status/security-medium.svgz +share/icons/oxygen/scalable/status/small/16x16/audio-volume-high.svgz +share/icons/oxygen/scalable/status/small/16x16/audio-volume-low.svgz +share/icons/oxygen/scalable/status/small/16x16/audio-volume-medium.svgz +share/icons/oxygen/scalable/status/small/16x16/audio-volume-muted.svgz share/icons/oxygen/scalable/status/small/16x16/battery-040.svgz share/icons/oxygen/scalable/status/small/16x16/battery-060.svgz share/icons/oxygen/scalable/status/small/16x16/battery-080.svgz @@ -6763,7 +7349,34 @@ share/icons/oxygen/scalable/status/small/22x22/mail-unread-new.svgz share/icons/oxygen/scalable/status/small/22x22/mail-unread.svgz share/icons/oxygen/scalable/status/small/22x22/object-locked.svgz share/icons/oxygen/scalable/status/small/22x22/object-unlocked.svgz +share/icons/oxygen/scalable/status/small/22x22/weather-hail.svgz +share/icons/oxygen/scalable/status/small/22x22/weather-showers-day.svgz +share/icons/oxygen/scalable/status/small/22x22/weather-showers-night.svgz +share/icons/oxygen/scalable/status/small/22x22/weather-showers.svgz +share/icons/oxygen/scalable/status/small/22x22/weather-snow-rain.svgz +share/icons/oxygen/scalable/status/small/22x22/weather-snow-scattered-day.svgz +share/icons/oxygen/scalable/status/small/22x22/weather-snow-scattered-night.svgz +share/icons/oxygen/scalable/status/small/22x22/weather-snow-scattered.svgz +share/icons/oxygen/scalable/status/small/22x22/weather-snow.svgz share/icons/oxygen/scalable/status/small/22x22/window-suppressed.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-clouds-night.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-clouds.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-hail.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-showers-day.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-showers-night.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-showers-scattered-day.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-showers-scattered-night.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-showers-scattered.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-showers.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-snow-rain.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-snow-scattered-day.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-snow-scattered-night.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-snow-scattered.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-snow.svgz +share/icons/oxygen/scalable/status/small/48x48/audio-volume-high.svgz +share/icons/oxygen/scalable/status/small/48x48/audio-volume-low.svgz +share/icons/oxygen/scalable/status/small/48x48/audio-volume-medium.svgz +share/icons/oxygen/scalable/status/small/48x48/audio-volume-muted.svgz share/icons/oxygen/scalable/status/small/48x48/dialog-error.svgz share/icons/oxygen/scalable/status/small/48x48/dialog-information.svgz share/icons/oxygen/scalable/status/small/48x48/dialog-warning.svgz @@ -6777,10 +7390,36 @@ share/icons/oxygen/scalable/status/user-online.svgz share/icons/oxygen/scalable/status/user-trash-full.svgz share/icons/oxygen/scalable/status/wallet-closed.svgz share/icons/oxygen/scalable/status/wallet-open.svgz +share/icons/oxygen/scalable/status/weather-clear-night.svgz +share/icons/oxygen/scalable/status/weather-clear.svgz +share/icons/oxygen/scalable/status/weather-clouds-night.svgz +share/icons/oxygen/scalable/status/weather-clouds.svgz +share/icons/oxygen/scalable/status/weather-few-clouds-night.svgz +share/icons/oxygen/scalable/status/weather-few-clouds.svgz +share/icons/oxygen/scalable/status/weather-hail.svgz +share/icons/oxygen/scalable/status/weather-many-clouds.svg +share/icons/oxygen/scalable/status/weather-mist.svgz +share/icons/oxygen/scalable/status/weather-none-available.svgz +share/icons/oxygen/scalable/status/weather-showers-day.svgz +share/icons/oxygen/scalable/status/weather-showers-night.svgz +share/icons/oxygen/scalable/status/weather-showers-scattered-day.svgz +share/icons/oxygen/scalable/status/weather-showers-scattered-night.svgz +share/icons/oxygen/scalable/status/weather-showers-scattered.svgz +share/icons/oxygen/scalable/status/weather-showers.svgz +share/icons/oxygen/scalable/status/weather-snow-rain.svgz +share/icons/oxygen/scalable/status/weather-snow-scattered-day.svgz +share/icons/oxygen/scalable/status/weather-snow-scattered-night.svgz +share/icons/oxygen/scalable/status/weather-snow-scattered.svgz +share/icons/oxygen/scalable/status/weather-snow.svgz +share/icons/oxygen/scalable/status/weather-storm-day.svgz +share/icons/oxygen/scalable/status/weather-storm-night.svgz +share/icons/oxygen/scalable/status/weather-storm.svgz share/icons/oxygen/scalable/status/window-suppressed.svgz +share/icons/oxygen/scalable/text-formatting.svg share/kde4/services/about.protocol share/kde4/services/applications.protocol share/kde4/services/ar.protocol +share/kde4/services/bookmarks.protocol share/kde4/services/bzip.protocol share/kde4/services/bzip2.protocol share/kde4/services/cgi.protocol @@ -6799,6 +7438,7 @@ share/kde4/services/htmlthumbnail.desktop share/kde4/services/icons.desktop share/kde4/services/imagethumbnail.desktop share/kde4/services/info.protocol +share/kde4/services/jpegthumbnail.desktop share/kde4/services/kcm_kdnssd.desktop share/kde4/services/kcm_nepomuk.desktop share/kde4/services/kcm_phonon.desktop @@ -6806,9 +7446,12 @@ share/kde4/services/kcm_phononxine.desktop share/kde4/services/kcmcgi.desktop share/kde4/services/kcmkded.desktop share/kde4/services/kcmnotify.desktop +share/kde4/services/kcmtrash.desktop share/kde4/services/kded/desktopnotifier.desktop +share/kde4/services/kded/kdedglobalaccel.desktop share/kde4/services/kded/kpasswdserver.desktop share/kde4/services/kded/ktimezoned.desktop +share/kde4/services/kded/phononserver.desktop share/kde4/services/kded/remotedirnotify.desktop share/kde4/services/kded/soliduiserver.desktop share/kde4/services/khelpcenter.desktop @@ -6818,16 +7461,18 @@ share/kde4/services/kshorturifilter.desktop share/kde4/services/kuiserver.desktop share/kde4/services/kuriikwsfilter.desktop share/kde4/services/kurisearchfilter.desktop +share/kde4/services/kwalletd.desktop share/kde4/services/language.desktop share/kde4/services/localdomainurifilter.desktop share/kde4/services/man.protocol share/kde4/services/nepomukfilewatch.desktop share/kde4/services/nepomukmigration1.desktop share/kde4/services/nepomukontologyloader.desktop +share/kde4/services/nepomukqueryservice.desktop +share/kde4/services/nepomuksearch.protocol share/kde4/services/nepomukstorage.desktop share/kde4/services/nepomukstrigiservice.desktop share/kde4/services/nfs.protocol -share/kde4/services/phononbackends/xine.desktop share/kde4/services/programs.protocol share/kde4/services/remote.protocol share/kde4/services/renaudiodlg.desktop @@ -7064,6 +7709,7 @@ share/locale/l10n/do/entry.desktop share/locale/l10n/do/flag.png share/locale/l10n/dz/entry.desktop share/locale/l10n/dz/flag.png +share/locale/l10n/eastafrica.desktop share/locale/l10n/eastasia.desktop share/locale/l10n/easteurope.desktop share/locale/l10n/ec/entry.desktop @@ -7329,6 +7975,8 @@ share/locale/l10n/si/entry.desktop share/locale/l10n/si/flag.png share/locale/l10n/sk/entry.desktop share/locale/l10n/sk/flag.png +share/locale/l10n/sl/entry.desktop +share/locale/l10n/sl/flag.png share/locale/l10n/sm/entry.desktop share/locale/l10n/sm/flag.png share/locale/l10n/sn/entry.desktop @@ -7362,6 +8010,8 @@ share/locale/l10n/tj/entry.desktop share/locale/l10n/tj/flag.png share/locale/l10n/tk/entry.desktop share/locale/l10n/tk/flag.png +share/locale/l10n/tl/entry.desktop +share/locale/l10n/tl/flag.png share/locale/l10n/tm/entry.desktop share/locale/l10n/tm/flag.png share/locale/l10n/tn/entry.desktop @@ -7467,7 +8117,6 @@ share/sounds/KDE-Window-Move-Stop.ogg share/sounds/KDE-Window-Move.ogg share/sounds/KDE-Window-Shade-Down.ogg share/sounds/KDE-Window-Shade-Up.ogg -@dirrmtry share/sounds @dirrm share/locale/l10n/zw @dirrm share/locale/l10n/zm @dirrm share/locale/l10n/za @@ -7495,6 +8144,7 @@ share/sounds/KDE-Window-Shade-Up.ogg @dirrm share/locale/l10n/to @dirrm share/locale/l10n/tn @dirrm share/locale/l10n/tm +@dirrm share/locale/l10n/tl @dirrm share/locale/l10n/tk @dirrm share/locale/l10n/tj @dirrm share/locale/l10n/th @@ -7509,6 +8159,7 @@ share/sounds/KDE-Window-Shade-Up.ogg @dirrm share/locale/l10n/so @dirrm share/locale/l10n/sn @dirrm share/locale/l10n/sm +@dirrm share/locale/l10n/sl @dirrm share/locale/l10n/sk @dirrm share/locale/l10n/si @dirrm share/locale/l10n/sh @@ -7698,256 +8349,150 @@ share/sounds/KDE-Window-Shade-Up.ogg @dirrm share/locale/l10n/ad @dirrm share/locale/l10n/C @dirrm share/locale/l10n -@dirrmtry share/locale/en_US -@dirrmtry share/locale -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services/searchproviders -@dirrmtry share/kde4/services/phononbackends -@dirrmtry share/kde4/services/kded -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/oxygen/scalable/status/small/48x48 -@dirrmtry share/icons/oxygen/scalable/status/small/22x22 -@dirrmtry share/icons/oxygen/scalable/status/small/16x16 -@dirrmtry share/icons/oxygen/scalable/status/small -@dirrmtry share/icons/oxygen/scalable/status -@dirrmtry share/icons/oxygen/scalable/places/small/48x48 -@dirrmtry share/icons/oxygen/scalable/places/small/32x32 -@dirrmtry share/icons/oxygen/scalable/places/small/22x22 -@dirrmtry share/icons/oxygen/scalable/places/small/16x16 -@dirrmtry share/icons/oxygen/scalable/places/small -@dirrmtry share/icons/oxygen/scalable/places -@dirrmtry share/icons/oxygen/scalable/mimetypes/small/32x32 -@dirrmtry share/icons/oxygen/scalable/mimetypes/small/22x22 -@dirrmtry share/icons/oxygen/scalable/mimetypes/small/16x16 -@dirrmtry share/icons/oxygen/scalable/mimetypes/small -@dirrmtry share/icons/oxygen/scalable/mimetypes -@dirrmtry share/icons/oxygen/scalable/intl -@dirrmtry share/icons/oxygen/scalable/emotes/small/22x22 -@dirrmtry share/icons/oxygen/scalable/emotes/small/16x16 -@dirrmtry share/icons/oxygen/scalable/emotes/small -@dirrmtry share/icons/oxygen/scalable/emotes -@dirrmtry share/icons/oxygen/scalable/emblems/small/8x8 -@dirrmtry share/icons/oxygen/scalable/emblems/small/22x22 -@dirrmtry share/icons/oxygen/scalable/emblems/small/16x16 -@dirrmtry share/icons/oxygen/scalable/emblems/small -@dirrmtry share/icons/oxygen/scalable/emblems -@dirrmtry share/icons/oxygen/scalable/devices/small/64x64 -@dirrmtry share/icons/oxygen/scalable/devices/small/48x48 -@dirrmtry share/icons/oxygen/scalable/devices/small/32x32 -@dirrmtry share/icons/oxygen/scalable/devices/small/22x22 -@dirrmtry share/icons/oxygen/scalable/devices/small/16x16 -@dirrmtry share/icons/oxygen/scalable/devices/small -@dirrmtry share/icons/oxygen/scalable/devices -@dirrmtry share/icons/oxygen/scalable/categories/small/22x22 -@dirrmtry share/icons/oxygen/scalable/categories/small/16x16 -@dirrmtry share/icons/oxygen/scalable/categories/small -@dirrmtry share/icons/oxygen/scalable/categories -@dirrmtry share/icons/oxygen/scalable/apps/small/32x32 -@dirrmtry share/icons/oxygen/scalable/apps/small/22x22 -@dirrmtry share/icons/oxygen/scalable/apps/small/16x16 -@dirrmtry share/icons/oxygen/scalable/apps/small -@dirrmtry share/icons/oxygen/scalable/apps/alternativ -@dirrmtry share/icons/oxygen/scalable/apps -@dirrmtry share/icons/oxygen/scalable/animations -@dirrmtry share/icons/oxygen/scalable/actions/small/48x48 -@dirrmtry share/icons/oxygen/scalable/actions/small/32x32 -@dirrmtry share/icons/oxygen/scalable/actions/small/22x22 -@dirrmtry share/icons/oxygen/scalable/actions/small/16x16 -@dirrmtry share/icons/oxygen/scalable/actions/small -@dirrmtry share/icons/oxygen/scalable/actions -@dirrmtry share/icons/oxygen/scalable -@dirrmtry share/icons/oxygen/8x8/emblems -@dirrmtry share/icons/oxygen/8x8 -@dirrmtry share/icons/oxygen/64x64/status -@dirrmtry share/icons/oxygen/64x64/places -@dirrmtry share/icons/oxygen/64x64/mimetypes -@dirrmtry share/icons/oxygen/64x64/intl -@dirrmtry share/icons/oxygen/64x64/filesystems -@dirrmtry share/icons/oxygen/64x64/emotes -@dirrmtry share/icons/oxygen/64x64/emblems -@dirrmtry share/icons/oxygen/64x64/devices -@dirrmtry share/icons/oxygen/64x64/categories -@dirrmtry share/icons/oxygen/64x64/apps -@dirrmtry share/icons/oxygen/64x64/animations -@dirrmtry share/icons/oxygen/64x64/actions -@dirrmtry share/icons/oxygen/64x64 -@dirrmtry share/icons/oxygen/48x48/status -@dirrmtry share/icons/oxygen/48x48/places -@dirrmtry share/icons/oxygen/48x48/mimetypes -@dirrmtry share/icons/oxygen/48x48/intl -@dirrmtry share/icons/oxygen/48x48/filesystems -@dirrmtry share/icons/oxygen/48x48/emotes -@dirrmtry share/icons/oxygen/48x48/emblems -@dirrmtry share/icons/oxygen/48x48/devices -@dirrmtry share/icons/oxygen/48x48/categories -@dirrmtry share/icons/oxygen/48x48/apps -@dirrmtry share/icons/oxygen/48x48/animations -@dirrmtry share/icons/oxygen/48x48/actions -@dirrmtry share/icons/oxygen/48x48 -@dirrmtry share/icons/oxygen/32x32/status -@dirrmtry share/icons/oxygen/32x32/places -@dirrmtry share/icons/oxygen/32x32/mimetypes -@dirrmtry share/icons/oxygen/32x32/intl -@dirrmtry share/icons/oxygen/32x32/filesystems -@dirrmtry share/icons/oxygen/32x32/emotes -@dirrmtry share/icons/oxygen/32x32/emblems -@dirrmtry share/icons/oxygen/32x32/devices -@dirrmtry share/icons/oxygen/32x32/categories -@dirrmtry share/icons/oxygen/32x32/apps -@dirrmtry share/icons/oxygen/32x32/animations -@dirrmtry share/icons/oxygen/32x32/actions -@dirrmtry share/icons/oxygen/32x32 -@dirrmtry share/icons/oxygen/22x22/status -@dirrmtry share/icons/oxygen/22x22/places -@dirrmtry share/icons/oxygen/22x22/mimetypes -@dirrmtry share/icons/oxygen/22x22/intl -@dirrmtry share/icons/oxygen/22x22/filesystems -@dirrmtry share/icons/oxygen/22x22/emotes -@dirrmtry share/icons/oxygen/22x22/emblems -@dirrmtry share/icons/oxygen/22x22/devices -@dirrmtry share/icons/oxygen/22x22/categories -@dirrmtry share/icons/oxygen/22x22/apps -@dirrmtry share/icons/oxygen/22x22/animations -@dirrmtry share/icons/oxygen/22x22/actions -@dirrmtry share/icons/oxygen/22x22 -@dirrmtry share/icons/oxygen/16x16/status -@dirrmtry share/icons/oxygen/16x16/places -@dirrmtry share/icons/oxygen/16x16/mimetypes -@dirrmtry share/icons/oxygen/16x16/intl -@dirrmtry share/icons/oxygen/16x16/filesystems -@dirrmtry share/icons/oxygen/16x16/emotes -@dirrmtry share/icons/oxygen/16x16/emblems -@dirrmtry share/icons/oxygen/16x16/devices -@dirrmtry share/icons/oxygen/16x16/categories -@dirrmtry share/icons/oxygen/16x16/apps -@dirrmtry share/icons/oxygen/16x16/animations -@dirrmtry share/icons/oxygen/16x16/actions -@dirrmtry share/icons/oxygen/16x16 -@dirrmtry share/icons/oxygen/128x128/status -@dirrmtry share/icons/oxygen/128x128/places -@dirrmtry share/icons/oxygen/128x128/mimetypes -@dirrmtry share/icons/oxygen/128x128/intl -@dirrmtry share/icons/oxygen/128x128/filesystems -@dirrmtry share/icons/oxygen/128x128/emotes -@dirrmtry share/icons/oxygen/128x128/emblems -@dirrmtry share/icons/oxygen/128x128/devices -@dirrmtry share/icons/oxygen/128x128/categories -@dirrmtry share/icons/oxygen/128x128/apps -@dirrmtry share/icons/oxygen/128x128/animations -@dirrmtry share/icons/oxygen/128x128/actions -@dirrmtry share/icons/oxygen/128x128 -@dirrmtry share/icons/oxygen -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons -@dirrmtry share/emoticons/kde4 -@dirrmtry share/emoticons -@dirrmtry share/doc/HTML/en/knetattach -@dirrmtry share/doc/HTML/en/kioslave -@dirrmtry share/doc/HTML/en/khelpcenter/visualdict -@dirrmtry share/doc/HTML/en/khelpcenter/userguide -@dirrmtry share/doc/HTML/en/khelpcenter/quickstart -@dirrmtry share/doc/HTML/en/khelpcenter/glossary -@dirrmtry share/doc/HTML/en/khelpcenter/faq -@dirrmtry share/doc/HTML/en/khelpcenter -@dirrmtry share/doc/HTML/en/kdesu -@dirrmtry share/doc/HTML/en/kdebugdialog -@dirrmtry share/doc/HTML/en/kcontrol/useragent -@dirrmtry share/doc/HTML/en/kcontrol/spellchecking -@dirrmtry share/doc/HTML/en/kcontrol/smb -@dirrmtry share/doc/HTML/en/kcontrol/proxy -@dirrmtry share/doc/HTML/en/kcontrol/performance -@dirrmtry share/doc/HTML/en/kcontrol/paths -@dirrmtry share/doc/HTML/en/kcontrol/passwords -@dirrmtry share/doc/HTML/en/kcontrol/panelappearance -@dirrmtry share/doc/HTML/en/kcontrol/panel -@dirrmtry share/doc/HTML/en/kcontrol/netpref -@dirrmtry share/doc/HTML/en/kcontrol/language -@dirrmtry share/doc/HTML/en/kcontrol/khtml -@dirrmtry share/doc/HTML/en/kcontrol/kdm -@dirrmtry share/doc/HTML/en/kcontrol/kcmtaskbar -@dirrmtry share/doc/HTML/en/kcontrol/kcmnotify -@dirrmtry share/doc/HTML/en/kcontrol/kcmlaunch -@dirrmtry share/doc/HTML/en/kcontrol/kcmkonsole -@dirrmtry share/doc/HTML/en/kcontrol/kcmcss -@dirrmtry share/doc/HTML/en/kcontrol/icons -@dirrmtry share/doc/HTML/en/kcontrol/helpindex -@dirrmtry share/doc/HTML/en/kcontrol/filetypes -@dirrmtry share/doc/HTML/en/kcontrol/filemanager -@dirrmtry share/doc/HTML/en/kcontrol/emoticons -@dirrmtry share/doc/HTML/en/kcontrol/email -@dirrmtry share/doc/HTML/en/kcontrol/ebrowsing -@dirrmtry share/doc/HTML/en/kcontrol/desktopbehavior -@dirrmtry share/doc/HTML/en/kcontrol/desktop -@dirrmtry share/doc/HTML/en/kcontrol/crypto -@dirrmtry share/doc/HTML/en/kcontrol/cookies -@dirrmtry share/doc/HTML/en/kcontrol/cache -@dirrmtry share/doc/HTML/en/kcontrol/background -@dirrmtry share/doc/HTML/en/kcontrol -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/doc +@dirrm share/kde4/services/searchproviders +@dirrm share/icons/oxygen/scalable/status/small/48x48 +@dirrm share/icons/oxygen/scalable/status/small/32x32 +@dirrm share/icons/oxygen/scalable/status/small/22x22 +@dirrm share/icons/oxygen/scalable/status/small/16x16 +@dirrm share/icons/oxygen/scalable/places/small/48x48 +@dirrm share/icons/oxygen/scalable/places/small/32x32 +@dirrm share/icons/oxygen/scalable/places/small/22x22 +@dirrm share/icons/oxygen/scalable/places/small/16x16 +@dirrm share/icons/oxygen/scalable/mimetypes/small/32x32 +@dirrm share/icons/oxygen/scalable/mimetypes/small/22x22 +@dirrm share/icons/oxygen/scalable/mimetypes/small/16x16 +@dirrm share/icons/oxygen/scalable/intl +@dirrm share/icons/oxygen/scalable/emotes/small/22x22 +@dirrm share/icons/oxygen/scalable/emotes/small/16x16 +@dirrm share/icons/oxygen/scalable/emblems/small/8x8 +@dirrm share/icons/oxygen/scalable/emblems/small/22x22 +@dirrm share/icons/oxygen/scalable/emblems/small/16x16 +@dirrm share/icons/oxygen/scalable/devices/small/64x64 +@dirrm share/icons/oxygen/scalable/devices/small/48x48 +@dirrm share/icons/oxygen/scalable/devices/small/32x32 +@dirrm share/icons/oxygen/scalable/devices/small/22x22 +@dirrm share/icons/oxygen/scalable/devices/small/16x16 +@dirrm share/icons/oxygen/scalable/categories/small/22x22 +@dirrm share/icons/oxygen/scalable/categories/small/16x16 +@dirrm share/icons/oxygen/scalable/apps/small/48x48 +@dirrm share/icons/oxygen/scalable/apps/small/32x32 +@dirrm share/icons/oxygen/scalable/apps/small/22x22 +@dirrm share/icons/oxygen/scalable/apps/small/16x16 +@dirrm share/icons/oxygen/scalable/apps/alternativ +@dirrm share/icons/oxygen/scalable/animations +@dirrm share/icons/oxygen/scalable/actions/small/48x48 +@dirrm share/icons/oxygen/scalable/actions/small/32x32 +@dirrm share/icons/oxygen/scalable/actions/small/22x22 +@dirrm share/icons/oxygen/scalable/actions/small/16x16 +@dirrm share/icons/oxygen/64x64/intl +@dirrm share/icons/oxygen/64x64/filesystems +@dirrm share/icons/oxygen/64x64/animations +@dirrm share/icons/oxygen/48x48/intl +@dirrm share/icons/oxygen/48x48/filesystems +@dirrm share/icons/oxygen/48x48/animations +@dirrm share/icons/oxygen/32x32/intl +@dirrm share/icons/oxygen/32x32/filesystems +@dirrm share/icons/oxygen/32x32/animations +@dirrm share/icons/oxygen/22x22/intl +@dirrm share/icons/oxygen/22x22/filesystems +@dirrm share/icons/oxygen/22x22/animations +@dirrm share/icons/oxygen/16x16/intl +@dirrm share/icons/oxygen/16x16/filesystems +@dirrm share/icons/oxygen/16x16/animations +@dirrm share/icons/oxygen/128x128/intl +@dirrm share/icons/oxygen/128x128/filesystems +@dirrm share/icons/oxygen/128x128/animations +@dirrm share/emoticons/kde4 +@dirrm share/doc/HTML/en/knetattach +@dirrm share/doc/HTML/en/kioslave/thumbnail +@dirrm share/doc/HTML/en/kioslave/tar +@dirrm share/doc/HTML/en/kioslave/smb +@dirrm share/doc/HTML/en/kioslave/sftp +@dirrm share/doc/HTML/en/kioslave/nfs +@dirrm share/doc/HTML/en/kioslave/man +@dirrm share/doc/HTML/en/kioslave/info +@dirrm share/doc/HTML/en/kioslave/gzip +@dirrm share/doc/HTML/en/kioslave/floppy +@dirrm share/doc/HTML/en/kioslave/fish +@dirrm share/doc/HTML/en/kioslave/finger +@dirrm share/doc/HTML/en/kioslave/cgi +@dirrm share/doc/HTML/en/kioslave/bzip2 +@dirrm share/doc/HTML/en/kioslave/bookmarks +@dirrm share/doc/HTML/en/khelpcenter/visualdict +@dirrm share/doc/HTML/en/khelpcenter/userguide +@dirrm share/doc/HTML/en/khelpcenter/quickstart +@dirrm share/doc/HTML/en/khelpcenter/glossary +@dirrm share/doc/HTML/en/khelpcenter/faq +@dirrm share/doc/HTML/en/khelpcenter +@dirrm share/doc/HTML/en/kdesu +@dirrm share/doc/HTML/en/kdebugdialog +@dirrm share/doc/HTML/en/kcontrol/useragent +@dirrm share/doc/HTML/en/kcontrol/spellchecking +@dirrm share/doc/HTML/en/kcontrol/smb +@dirrm share/doc/HTML/en/kcontrol/proxy +@dirrm share/doc/HTML/en/kcontrol/performance +@dirrm share/doc/HTML/en/kcontrol/paths +@dirrm share/doc/HTML/en/kcontrol/passwords +@dirrm share/doc/HTML/en/kcontrol/panelappearance +@dirrm share/doc/HTML/en/kcontrol/panel +@dirrm share/doc/HTML/en/kcontrol/netpref +@dirrm share/doc/HTML/en/kcontrol/language +@dirrm share/doc/HTML/en/kcontrol/khtml +@dirrm share/doc/HTML/en/kcontrol/kdm +@dirrm share/doc/HTML/en/kcontrol/kcmtaskbar +@dirrm share/doc/HTML/en/kcontrol/kcmnotify +@dirrm share/doc/HTML/en/kcontrol/kcmlaunch +@dirrm share/doc/HTML/en/kcontrol/kcmkonsole +@dirrm share/doc/HTML/en/kcontrol/kcmcss +@dirrm share/doc/HTML/en/kcontrol/icons +@dirrm share/doc/HTML/en/kcontrol/helpindex +@dirrm share/doc/HTML/en/kcontrol/filetypes +@dirrm share/doc/HTML/en/kcontrol/filemanager +@dirrm share/doc/HTML/en/kcontrol/emoticons +@dirrm share/doc/HTML/en/kcontrol/email +@dirrm share/doc/HTML/en/kcontrol/ebrowsing +@dirrm share/doc/HTML/en/kcontrol/desktopbehavior +@dirrm share/doc/HTML/en/kcontrol/desktop +@dirrm share/doc/HTML/en/kcontrol/crypto +@dirrm share/doc/HTML/en/kcontrol/cookies +@dirrm share/doc/HTML/en/kcontrol/cache +@dirrm share/doc/HTML/en/kcontrol/bookmarks +@dirrm share/doc/HTML/en/kcontrol/background @dirrm share/desktop-directories -@dirrmtry share/dbus-1/services -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 -@dirrmtry share/config.kcfg -@dirrmtry share/config -@dirrmtry share/autostart -@dirrm share/apps/remoteview @dirrm share/apps/phonon +@dirrm share/apps/nepomukstrigiservice +@dirrm share/apps/nepomukstorage @dirrm share/apps/libphonon -@dirrmtry share/apps/kstyle/themes -@dirrmtry share/apps/kstyle -@dirrmtry share/apps/konqueror/dirtree/remote -@dirrmtry share/apps/konqueror/dirtree -@dirrmtry share/apps/konqueror +@dirrm share/apps/ksmserver/windowmanagers +@dirrm share/apps/ksmserver +@dirrm share/apps/konqueror/dirtree/remote +@dirrm share/apps/konqueror/dirtree @dirrm share/apps/kio_thumbnail/pics @dirrm share/apps/kio_thumbnail @dirrm share/apps/kio_man @dirrm share/apps/kio_info @dirrm share/apps/kio_finger -@dirrmtry share/apps/khelpcenter/searchhandlers/htdig -@dirrmtry share/apps/khelpcenter/searchhandlers -@dirrmtry share/apps/khelpcenter/plugins/Tutorials -@dirrmtry share/apps/khelpcenter/plugins/Scrollkeeper -@dirrmtry share/apps/khelpcenter/plugins/Manpages -@dirrmtry share/apps/khelpcenter/plugins/Applications -@dirrmtry share/apps/khelpcenter/plugins -@dirrmtry share/apps/khelpcenter -@dirrmtry share/apps/kde -@dirrmtry share/apps/kconf_update +@dirrm share/apps/kio_desktop/DesktopLinks +@dirrm share/apps/kio_desktop +@dirrm share/apps/kio_bookmarks +@dirrm share/apps/khelpcenter/searchhandlers/htdig +@dirrm share/apps/khelpcenter/searchhandlers +@dirrm share/apps/khelpcenter/plugins/Tutorials +@dirrm share/apps/khelpcenter/plugins/Scrollkeeper +@dirrm share/apps/khelpcenter/plugins/Manpages +@dirrm share/apps/khelpcenter/plugins/Applications +@dirrm share/apps/kde @dirrm share/apps/kcmlocale/pics @dirrm share/apps/kcmlocale @dirrm share/apps/kcm_phonon -@dirrmtry share/apps/kcm_componentchooser @dirrm share/apps/drkonqi/presets @dirrm share/apps/drkonqi/pics @dirrm share/apps/drkonqi/debuggers @dirrm share/apps/drkonqi -@dirrmtry share/apps/cmake/modules -@dirrmtry share/apps/cmake -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/strigi -@dirrmtry lib/kde4/plugins/styles +@dirrm share/apps/desktoptheme/default/opaque/widgets +@dirrm share/apps/desktoptheme/default/opaque/dialogs +@dirrm share/apps/desktoptheme/default/opaque +@dirrm share/apps/desktoptheme/default/dialogs @dirrm lib/kde4/plugins/phonon_platform -@dirrmtry lib/kde4/plugins -@dirrmtry lib/kde4/libexec -@dirrmtry lib/kconf_update_bin @dirrmtry etc/xdg/menus @dirrmtry etc/xdg diff --git a/x11/kde4-workspace/Makefile b/x11/kde4-workspace/Makefile index 4d97bf669506..cd7b63248e9f 100644 --- a/x11/kde4-workspace/Makefile +++ b/x11/kde4-workspace/Makefile @@ -8,10 +8,9 @@ PORTNAME= kdebase-workspace PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org @@ -31,10 +30,8 @@ RUN_DEPENDS= ${KDE4_PREFIX}/env/xdg-env.sh:${PORTSDIR}/misc/kde4-xdg-env \ mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir \ xset:${PORTSDIR}/x11/xset -CONFLICTS= kdebase-runtime-4.1.[0-1]* - SUB_FILES= kdm -USE_KDE4= kdelibs kdeprefix kdehier automoc4 +USE_KDE4= kdelibs pimlibs kdeprefix kdehier automoc4 KDE4_BUILDENV= yes USE_BZIP2= yes USE_QT_VER= 4 @@ -45,73 +42,39 @@ QT_COMPONENTS= assistant corelib dbus designer gui network opengl \ USE_GETTEXT= yes USE_ICONV= yes -CMAKE_ARGS+= -DWITH_BlueZ:BOOL=Off +CMAKE_ARGS+= -DCMAKE_REQUIRED_FLAGS:STRING="-L${LOCALBASE}/lib" \ + -DWITH_BlueZ:BOOL=OFF \ + -DWITH_Sensors:BOOL=OFF \ + -DWITH_NetworkManager:BOOL=OFF \ + -DWITH_Xmms:BOOL=OFF \ + -DWITH_Googlegadgets:BOOL=OFF \ + -DWITH_QEdje:BOOL=OFF +#Xmms and Googlegadgets could be enabled, +#QEdje has not been ported yet. post-extract: ${MKDIR} ${WRKSRC} pre-configure: - -.for item in effects/showfps.h scene.h workspace.h - ${REINPLACE_CMD} -e 's|<qdatetime.h>|<QDateTime>|'\ - ${WRKSRC}/../kwin/${item} -.endfor -.for item in client.h compositingprefs.h - ${REINPLACE_CMD} -e 's|<qframe.h>|<QFrame>|'\ - ${WRKSRC}/../kwin/${item} -.endfor -.for item in placement.cpp popupinfo.cpp tabbox.cpp - ${REINPLACE_CMD} -e 's|<qdrawutil.h>|<QtGui/qdrawutil.h>|'\ - -e 's|<qdesktopwidget.h>|<QDesktopWidget>|'\ - ${WRKSRC}/../kwin/${item} -.endfor - ${REINPLACE_CMD} -e 's|<qsessionmanager.h>|<QSessionManager>|'\ - ${WRKSRC}/../kwin/sm.cpp -.for item in effects/desktopgrid.h toplevel.h - ${REINPLACE_CMD} -e 's|<qobject.h>|<QObject>|'\ - ${WRKSRC}/../kwin/${item} -.endfor - ${REINPLACE_CMD} -e 's|<qpainter.h>|<QPainter>|'\ - ${WRKSRC}/../kwin/effects/presentwindows.cpp - ${REINPLACE_CMD} -e 's|<qcursor.h>|<QCursor>|'\ - -e 's|<qevent.h>|<QtEvents>|'\ - ${WRKSRC}/../kwin/effects/test/test_input.cpp ${REINPLACE_CMD} -e 's|<qhash.h>|<QHash>|'\ ${WRKSRC}/../kwin/effects/thumbnailaside.h ${REINPLACE_CMD} -e 's|<qdir.h>|<QDir>|'\ -e 's|<qfile.h>|<QFile>|'\ ${WRKSRC}/../kwin/effects/videorecord.cpp -.for item in kcmkwin/kwinoptions/windows.cpp clients/plastik/plastikclient.cpp\ - clients/plastik/plastikclient.cpp - ${REINPLACE_CMD} -e 's|<qdesktopwidget.h>|<QDesktopWidget>|'\ - ${WRKSRC}/../kwin/${item} -.endfor .for item in b2/b2client.cpp kwmtheme/kwmthemeclient.cpp\ laptop/laptopclient.cpp modernsystem/modernsys.cpp\ redmond/redmond.cpp ${REINPLACE_CMD} -e 's|<qdrawutil.h>|<QtGui/qdrawutil.h>|'\ ${WRKSRC}/../kwin/clients/${item} .endfor - ${REINPLACE_CMD} -e 's|<qbitmap.h>|<QBitmap>|'\ - -e 's|<qlabel.h>|<QLabel>|'\ - -e 's|<qlayout.h>|<QLayout>|'\ - -e 's|<qpainter.h>|<QPainter>|'\ - -e 's|<qtooltip.h>|<QToolTip>|'\ - ${WRKSRC}/../kwin/clients/oxygen/oxygenclient.cpp - ${REINPLACE_CMD} -e 's|<qevent.h>|<QtEvents>|'\ - ${WRKSRC}/../kwin/effects/desktopgrid.cpp - -post-configure: - ${REINPLACE_CMD} -e 's|/\* #undef HAVE_XKB \*/|#define HAVE_XKB 1|'\ - ${WRKSRC}/../build/config-X11.h post-install: - ${CHGRP} kmem ${KDE4_PREFIX}/bin/ksysguardd && \ - ${CHMOD} g+s ${KDE4_PREFIX}/bin/ksysguardd - @${LN} -sf ${KDE4_PREFIX}/bin/startkde ${KDE4_PREFIX}/bin/startkde4 - @${MV} ${KDE4_PREFIX}/bin/kdm ${KDE4_PREFIX}/bin/kdm-bin - @${MV} ${KDE4_PREFIX}/lib/kde4/libexec/kdm_config ${KDE4_PREFIX}/lib/kde4/libexec/kdm-bin_config - @${MV} ${KDE4_PREFIX}/lib/kde4/libexec/kdm_greet ${KDE4_PREFIX}/lib/kde4/libexec/kdm-bin_greet - @${INSTALL_SCRIPT} ${WRKDIR}/kdm ${KDE4_PREFIX}/bin + ${CHGRP} kmem ${PREFIX}/bin/ksysguardd && \ + ${CHMOD} g+s ${PREFIX}/bin/ksysguardd + @${LN} -sf ${PREFIX}/bin/startkde ${PREFIX}/bin/startkde4 + @${MV} ${PREFIX}/bin/kdm ${PREFIX}/bin/kdm-bin + @${MV} ${PREFIX}/lib/kde4/libexec/kdm_config ${PREFIX}/lib/kde4/libexec/kdm-bin_config + @${MV} ${PREFIX}/lib/kde4/libexec/kdm_greet ${PREFIX}/lib/kde4/libexec/kdm-bin_greet + @${INSTALL_SCRIPT} ${WRKDIR}/kdm ${PREFIX}/bin .include <bsd.port.mk> diff --git a/x11/kde4-workspace/distinfo b/x11/kde4-workspace/distinfo index 9e9c3bdeaf2b..89497e8c976b 100644 --- a/x11/kde4-workspace/distinfo +++ b/x11/kde4-workspace/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdebase-workspace-4.1.4.tar.bz2) = bdac9ac8055b976845587fe544d568be -SHA256 (KDE/kdebase-workspace-4.1.4.tar.bz2) = 5f0a63ab3d97c9240ff78c4219572fa82ebe803a1f7ce5786ba44cca50c28e08 -SIZE (KDE/kdebase-workspace-4.1.4.tar.bz2) = 47504097 +MD5 (KDE/kdebase-workspace-4.2.0.tar.bz2) = 193e30b9ed0b55b0196289d9df43a904 +SHA256 (KDE/kdebase-workspace-4.2.0.tar.bz2) = e5c550af7d655d62e37c51667f264b53eb9785166f3567960d91acd37b6f902b +SIZE (KDE/kdebase-workspace-4.2.0.tar.bz2) = 50724381 diff --git a/x11/kde4-workspace/files/patch-ksysguard-gui-SystemLoad.sgrd b/x11/kde4-workspace/files/patch-ksysguard-gui-SystemLoad.sgrd index 68bbae35e8af..b3ac831e0ac3 100644 --- a/x11/kde4-workspace/files/patch-ksysguard-gui-SystemLoad.sgrd +++ b/x11/kde4-workspace/files/patch-ksysguard-gui-SystemLoad.sgrd @@ -1,11 +1,11 @@ ---- ../ksysguard/gui/SystemLoad.sgrd.orig 2008-04-15 04:43:53.000000000 +0200 -+++ ../ksysguard/gui/SystemLoad.sgrd 2008-04-15 04:54:52.000000000 +0200 -@@ -6,7 +6,7 @@ - <beam sensorName="cpu/nice" sensorType="float" hostName="localhost" color="872414995" /> - <beam sensorName="cpu/user" sensorType="float" hostName="localhost" color="4279798271" /> - <beam sensorName="cpu/sys" sensorType="float" hostName="localhost" color="4294933768" /> -- <beam sensorName="cpu/wait" sensorType="float" hostName="localhost" color="4294955007" /> -+ <beam sensorName="cpu/system/intr" sensorType="float" hostName="localhost" color="4294955007" /> +--- ../ksysguard/gui/SystemLoad.sgrd.orig 2009-02-03 20:22:46.000000000 +0100 ++++ ../ksysguard/gui/SystemLoad.sgrd 2009-02-03 20:22:58.000000000 +0100 +@@ -3,7 +3,7 @@ + <WorkSheet title="System Load" interval="0.5" locked="1" rows="3" columns="1" > + <host port="-1" command="ksysguardd" shell="" name="localhost" /> + <display title="CPU History" svgBackground="widgets/plot-background" autoRange="0" class="FancyPlotter" column="0" row="0" vLines="0" vScroll="0" > +- <beam sensorType="float" hostName="localhost" regexpSensorName="cpu/cpu.*/TotalLoad" color="0xffff8000,0xffe20800" /> ++ <beam sensorType="float" hostName="localhost" regexpSensorName="cpu/.*/TotalLoad" color="0xffff8000,0xffe20800" /> </display> - <display svgBackground="widgets/plot-background" bColor="4281413681" title="Load Average (1 min)" hScale="3" hCount="5" fontColor="4294967295" vLines="0" hColor="838860800" pause="0" labels="1" autoRange="1" vDistance="30" globalUpdate="1" fontSize="8" vScroll="0" column="1" topBar="1" unit="" vColor="838860800" hLines="1" showUnit="1" class="FancyPlotter" row="0" > - <beam sensorName="cpu/loadavg1" sensorType="float" hostName="localhost" color="4279798271" /> + <display title="Memory and Swap History" svgBackground="widgets/plot-background" autoRange="0" class="FancyPlotter" column="0" row="1" vLines="0" vScroll="0" > + <beam summationName="Memory" sensorName="mem/physical/application" sensorType="integer" hostName="localhost" color="0xffc000c0" /> diff --git a/x11/kde4-workspace/files/patch-ksysguard-gui-ksgrd-SensorManager.cc b/x11/kde4-workspace/files/patch-ksysguard-gui-ksgrd-SensorManager.cc index cfea43043386..a112710f60ff 100644 --- a/x11/kde4-workspace/files/patch-ksysguard-gui-ksgrd-SensorManager.cc +++ b/x11/kde4-workspace/files/patch-ksysguard-gui-ksgrd-SensorManager.cc @@ -1,9 +1,9 @@ ---- ../ksysguard/gui/ksgrd/SensorManager.cc.orig 2008-04-15 04:49:59.000000000 +0200 -+++ ../ksysguard/gui/ksgrd/SensorManager.cc 2008-04-15 04:51:01.000000000 +0200 +--- ../ksysguard/gui/ksgrd/SensorManager.cc.orgi 2009-01-22 23:54:35.000000000 +0100 ++++ ../ksysguard/gui/ksgrd/SensorManager.cc 2009-01-22 23:54:52.000000000 +0100 @@ -61,6 +61,7 @@ mDict.insert( QLatin1String( "nice" ), i18n( "Nice Load" ) ); mDict.insert( QLatin1String( "user" ), i18n( "User Load" ) ); - mDict.insert( QLatin1String( "sys" ), i18n( "System Load" ) ); + mDict.insert( QLatin1String( "sys" ), i18nc( "@item sensor description", "System Load" ) ); + mDict.insert( QLatin1String( "intr" ), i18n( "Interrupt Load" ) ); mDict.insert( QLatin1String( "wait" ), i18n( "Waiting" ) ); mDict.insert( QLatin1String( "TotalLoad" ), i18n( "Total Load" ) ); diff --git a/x11/kde4-workspace/files/patch-ksysguard-ksysguardd-FreeBSD-CPU.c b/x11/kde4-workspace/files/patch-ksysguard-ksysguardd-FreeBSD-CPU.c index 23f3252cabac..978857c88f17 100644 --- a/x11/kde4-workspace/files/patch-ksysguard-ksysguardd-FreeBSD-CPU.c +++ b/x11/kde4-workspace/files/patch-ksysguard-ksysguardd-FreeBSD-CPU.c @@ -1,5 +1,5 @@ ---- ../ksysguard/ksysguardd/FreeBSD/CPU.c.orig 2008-04-15 04:26:36.000000000 +0200 -+++ ../ksysguard/ksysguardd/FreeBSD/CPU.c 2008-04-15 04:39:27.000000000 +0200 +--- ../ksysguard/ksysguardd/FreeBSD/CPU.c.orig 2008-01-05 00:55:46.000000000 +0100 ++++ ../ksysguard/ksysguardd/FreeBSD/CPU.c 2009-02-03 20:54:08.000000000 +0100 @@ -49,11 +49,12 @@ struct kinfo_cputime *); static struct kinfo_cputime cp_time, cp_old; @@ -15,26 +15,41 @@ #else long percentages(int cnt, int *out, long *new, long *old, long *diffs); -@@ -74,6 +75,7 @@ +@@ -74,6 +75,8 @@ registerMonitor("cpu/system/user", "integer", printCPUUser, printCPUUserInfo, sm); registerMonitor("cpu/system/nice", "integer", printCPUNice, printCPUNiceInfo, sm); registerMonitor("cpu/system/sys", "integer", printCPUSys, printCPUSysInfo, sm); ++ registerMonitor("cpu/system/TotalLoad", "float", printCPUTotalLoad, printCPUTotalLoadInfo, sm); + registerMonitor("cpu/system/intr", "integer", printCPUIntr, printCPUIntrInfo, sm); registerMonitor("cpu/system/idle", "integer", printCPUIdle, printCPUIdleInfo, sm); /* Monitor names changed from kde3 => kde4. Remain compatible with legacy requests when possible. */ -@@ -91,6 +93,7 @@ +@@ -91,6 +94,8 @@ removeMonitor("cpu/system/user"); removeMonitor("cpu/system/nice"); removeMonitor("cpu/system/sys"); ++ removeMonitor("cpu/system/TotalLoad"); + removeMonitor("cpu/system/intr"); removeMonitor("cpu/system/idle"); /* These were registered as legacy monitors */ -@@ -151,6 +154,18 @@ +@@ -151,6 +156,31 @@ } void ++printCPUTotalLoad(const char* cmd) ++{ ++ fprintf(CurrentClient, "%f\n", (cpu_states[CP_SYS] + cpu_states[CP_USER] + ++ cpu_states[CP_NICE] + cpu_states[CP_INTR]) / 10.0); ++} ++ ++void ++printCPUTotalLoadInfo(const char* cmd) ++{ ++ fprintf(CurrentClient, "CPU Total Load\t0\t100\t%%\n"); ++} ++ ++void +printCPUIntr(const char* cmd) +{ + fprintf(CurrentClient, "%d\n", cpu_states[CP_INTR]/10); @@ -50,7 +65,7 @@ printCPUIdle(const char* cmd) { fprintf(CurrentClient, "%d\n", cpu_states[CP_IDLE]/10); -@@ -216,7 +231,8 @@ +@@ -216,7 +246,8 @@ out[0] = ((diffs.cp_user * 1000LL + half_total) / total_change); out[1] = ((diffs.cp_nice * 1000LL + half_total) / total_change); diff --git a/x11/kde4-workspace/files/patch-ksysguard-ksysguardd-FreeBSD-CPU.h b/x11/kde4-workspace/files/patch-ksysguard-ksysguardd-FreeBSD-CPU.h index 7a09e987892f..df52f95fab38 100644 --- a/x11/kde4-workspace/files/patch-ksysguard-ksysguardd-FreeBSD-CPU.h +++ b/x11/kde4-workspace/files/patch-ksysguard-ksysguardd-FreeBSD-CPU.h @@ -1,15 +1,17 @@ ---- ../ksysguard/ksysguardd/FreeBSD/CPU.h.orig 2008-04-15 04:36:40.000000000 +0200 -+++ ../ksysguard/ksysguardd/FreeBSD/CPU.h 2008-04-15 04:38:11.000000000 +0200 -@@ -35,6 +35,8 @@ +--- ../ksysguard/ksysguardd/FreeBSD/CPU.h.orig 2008-01-05 00:55:46.000000000 +0100 ++++ ../ksysguard/ksysguardd/FreeBSD/CPU.h 2009-02-03 16:26:12.000000000 +0100 +@@ -35,6 +35,10 @@ void printCPUNiceInfo(const char* cmd); void printCPUSys(const char* cmd); void printCPUSysInfo(const char* cmd); ++void printCPUTotalLoad(const char* cmd); ++void printCPUTotalLoadInfo(const char* cmd); +void printCPUIntr(const char* cmd); +void printCPUIntrInfo(const char* cmd); void printCPUIdle(const char* cmd); void printCPUIdleInfo(const char* cmd); void printCPUxUser(const char* cmd); -@@ -43,6 +45,8 @@ +@@ -43,6 +47,8 @@ void printCPUxNiceInfo(const char* cmd); void printCPUxSys(const char* cmd); void printCPUxSysInfo(const char* cmd); diff --git a/x11/kde4-workspace/files/patch-libs-ksysguard-processcore-processes_freebsd_p.cpp b/x11/kde4-workspace/files/patch-libs-ksysguard-processcore-processes_freebsd_p.cpp deleted file mode 100644 index a803f7b1069b..000000000000 --- a/x11/kde4-workspace/files/patch-libs-ksysguard-processcore-processes_freebsd_p.cpp +++ /dev/null @@ -1,131 +0,0 @@ ---- ../libs/ksysguard/processcore/processes_freebsd_p.cpp.orig 2008-04-15 00:09:17.000000000 +0200 -+++ ../libs/ksysguard/processcore/processes_freebsd_p.cpp 2008-04-15 03:41:27.000000000 +0200 -@@ -78,9 +78,11 @@ - process->setTracerpid(0); - - --#if defined(__FreeBSD__) && __FreeBSD_version >= 500015 -- process->setUid(p->ki_uid); -- process->setGid(p->ki_pgid); -+#if defined(__FreeBSD__) -+ process->setEuid(p->ki_uid); -+ process->setUid(p->ki_ruid); -+ process->setEgid(p->ki_svgid); -+ process->setGid(p->ki_rgid); - process->setName(QString(p->ki_comm ? p->ki_comm : "????")); - #elif defined(__DragonFly__) && __DragonFly_version >= 190000 - process->setUid(p->kp_uid); -@@ -96,13 +98,15 @@ - { - int status; - struct rusage pru; --#if defined(__FreeBSD__) && __FreeBSD_version >= 500015 -- ps->setUserTime(p->ki_runtime / 10000); -+#if defined(__FreeBSD__) -+ ps->setUserTime(p->ki_rusage.ru_utime.tv_sec * 100 + p->ki_rusage.ru_utime.tv_usec / 10000); -+ ps->setSysTime(p->ki_rusage.ru_stime.tv_sec * 100 + p->ki_rusage.ru_stime.tv_usec / 10000); - ps->setNiceLevel(p->ki_nice); -- ps->setVmSize(p->ki_size); -- ps->setVmRSS(p->ki_rssize * getpagesize()); -+ ps->setVmSize(p->ki_size / 1024); -+ ps->setVmRSS(p->ki_rssize * getpagesize() / 1024); - status = p->ki_stat; --#elif defined(__DragonFly__) && __DragonFly_version >= 190000 -+#elif defined(__DragonFly__) -+#if __DragonFly_version >= 190000 - if (!getrusage(p->kp_pid, &pru)) { - errx(1, "failed to get rusage info"); - } -@@ -119,22 +123,22 @@ - status = p->kp_proc.p_stat; - #endif - ps->setSysTime(0); -+#endif - - // "idle","run","sleep","stop","zombie" - switch( status ) { -- case '0': -- ps->setStatus(Process::DiskSleep); -- break; -- case '1': -- ps->setStatus(Process::Running); -- break; -- case '2': -- ps->setStatus(Process::Sleeping); -- break; -- case '3': -- ps->setStatus(Process::Stopped); -- break; -- case '4': -+ case SRUN: -+ ps->setStatus(Process::Running); -+ break; -+ case SSLEEP: -+ case SWAIT: -+ case SLOCK: -+ ps->setStatus(Process::Sleeping); -+ break; -+ case SSTOP: -+ ps->setStatus(Process::Stopped); -+ break; -+ case SZOMB: - ps->setStatus(Process::Zombie); - break; - default: -@@ -145,10 +149,7 @@ - - void ProcessesLocal::Private::readProcStatm(struct kinfo_proc *p, Process *process) - { --// TODO -- --// unsigned long shared; --// process->setVmURSS(process->vmRSS - (shared * sysconf(_SC_PAGESIZE) / 1024)); -+ process->setVmURSS(-1); - } - - bool ProcessesLocal::Private::readProcCmdline(long pid, Process *process) -@@ -184,7 +185,7 @@ - struct kinfo_proc p; - if(d->readProc(pid, &p)) - { --#if defined(__FreeBSD__) && __FreeBSD_version >= 500015 -+#if defined(__FreeBSD__) - ppid = p.ki_ppid; - #elif defined(__DragonFly__) && __DragonFly_version >= 190000 - ppid = p.kp_ppid; -@@ -218,13 +219,18 @@ - mib[0] = CTL_KERN; - mib[1] = KERN_PROC; - mib[2] = KERN_PROC_ALL; -- sysctl(mib, 3, NULL, &len, NULL, 0); -- p = (kinfo_proc *) malloc(len); -- sysctl(mib, 3, p, &len, NULL, 0); -+ if (sysctl(mib, 3, NULL, &len, NULL, 0) == -1) -+ return pids; -+ if ((p = (kinfo_proc *) malloc(len)) == NULL) -+ return pids; -+ if (sysctl(mib, 3, p, &len, NULL, 0) == -1) { -+ free(p); -+ return pids; -+ } - - for (num = 0; num < len / sizeof(struct kinfo_proc); num++) - { --#if defined(__FreeBSD__) && __FreeBSD_version >= 500015 -+#if defined(__FreeBSD__) - long pid = p[num].ki_pid; - long long ppid = p[num].ki_ppid; - #elif defined(__DragonFly__) && __DragonFly_version >= 190000 -@@ -294,8 +300,11 @@ - - size_t Total; - size_t len; -+ - len = sizeof (Total); -- sysctlbyname("hw.physmem", &Total, &len, NULL, 0); -+ if (sysctlbyname("hw.physmem", &Total, &len, NULL, 0) == -1) -+ return 0; -+ - return Total /= 1024; - } - diff --git a/x11/kde4-workspace/files/patch-plasma-applets-systemtray_systemtraywidget.cpp b/x11/kde4-workspace/files/patch-plasma-applets-systemtray_systemtraywidget.cpp deleted file mode 100644 index d756e11a6e00..000000000000 --- a/x11/kde4-workspace/files/patch-plasma-applets-systemtray_systemtraywidget.cpp +++ /dev/null @@ -1,20 +0,0 @@ ---- ../plasma/applets/systemtray/systemtraywidget.cpp 2008/07/03 02:32:22 827463 -+++ ../plasma/applets/systemtray/systemtraywidget.cpp 2008/08/05 13:57:28 842541 -@@ -52,6 +52,17 @@ - // Override spacing set by the current style - m_mainLayout->setContentsMargins(0, 0, 0, 0); - m_mainLayout->setSpacing(4); -+ -+ // Widgets added to the parent before this one may end up -+ // on top of this one if their native windows are created -+ // after this one, so raise() to make sure this widget is -+ // on top. -+ // raise() -- doesn't work for some reason -+ foreach (QObject *sibling, parent->children()) { -+ if (sibling != this && sibling->isWidgetType()) { -+ static_cast<QWidget*>(sibling)->lower(); -+ } -+ } - } - - void SystemTrayWidget::init() diff --git a/x11/kde4-workspace/files/patch-svn916964_krunner_lock_lockprocess.cc b/x11/kde4-workspace/files/patch-svn916964_krunner_lock_lockprocess.cc new file mode 100644 index 000000000000..835260b86eff --- /dev/null +++ b/x11/kde4-workspace/files/patch-svn916964_krunner_lock_lockprocess.cc @@ -0,0 +1,10 @@ +--- ../krunner/lock/lockprocess.cc (revision 916963) ++++ ../krunner/lock/lockprocess.cc (revision 916964) +@@ -1104,7 +1104,6 @@ + return; // no resuming with dialog visible or when not visible + if( mSuspended && mHackProc.state() == QProcess::Running ) + { +- XForceScreenSaver(QX11Info::display(), ScreenSaverReset ); + QPainter p( this ); + p.drawPixmap( 0, 0, mSavedScreen ); + p.end(); diff --git a/x11/kde4-workspace/files/patch-svn916964_krunner_screensaver_saverengine.cpp b/x11/kde4-workspace/files/patch-svn916964_krunner_screensaver_saverengine.cpp new file mode 100644 index 000000000000..4f49a3d0463b --- /dev/null +++ b/x11/kde4-workspace/files/patch-svn916964_krunner_screensaver_saverengine.cpp @@ -0,0 +1,40 @@ +--- ../krunner/screensaver/saverengine.cpp (revision 916963) ++++ ../krunner/screensaver/saverengine.cpp (revision 916964) +@@ -46,7 +46,11 @@ + // Save X screensaver parameters + XGetScreenSaver(QX11Info::display(), &mXTimeout, &mXInterval, + &mXBlanking, &mXExposures); +- // ... and disable it ++ // And disable it. The internal X screensaver is not used at all, but we use its ++ // internal idle timer (and it is also used by DPMS support in X). This timer must not ++ // be altered by this code, since e.g. resetting the counter after activating our ++ // screensaver would prevent DPMS from activating. We use the timer merely to detect ++ // user activity. + XSetScreenSaver(QX11Info::display(), 0, mXInterval, mXBlanking, mXExposures); + + mState = Waiting; +@@ -87,7 +91,6 @@ + + void SaverEngine::Lock() + { +- bool ok = true; + if (mState == Waiting) + { + startLockProcess( ForceLock ); +@@ -125,6 +128,7 @@ + + void SaverEngine::SimulateUserActivity() + { ++ XForceScreenSaver( QX11Info::display(), ScreenSaverReset ); + if ( mXAutoLock && mState == Waiting ) + { + mXAutoLock->resetTrigger(); +@@ -323,6 +327,8 @@ + // + void SaverEngine::idleTimeout() + { ++ if( mState != Waiting ) ++ return; // already saving + startLockProcess( DefaultLock ); + } + diff --git a/x11/kde4-workspace/files/patch-svn916964_krunner_screensaver_xautolock.cpp b/x11/kde4-workspace/files/patch-svn916964_krunner_screensaver_xautolock.cpp new file mode 100644 index 000000000000..fac3a214f2d1 --- /dev/null +++ b/x11/kde4-workspace/files/patch-svn916964_krunner_screensaver_xautolock.cpp @@ -0,0 +1,84 @@ +--- ../krunner/screensaver/xautolock.cpp (revision 916963) ++++ ../krunner/screensaver/xautolock.cpp (revision 916964) +@@ -83,8 +83,10 @@ + mActive = false; + + mTimerId = startTimer( CHECK_INTERVAL ); ++ // This is an internal clock timer (in seconds), used instead of querying system time. ++ // It is incremented manually, preventing from problems with clock jumps. ++ // In other words, this is the 'now' time and the reference point for other times here. + mElapsed = 0; +- + } + + //--------------------------------------------------------------------------- +@@ -126,8 +128,6 @@ + { + mActive = true; + resetTrigger(); +- XSetScreenSaver(QX11Info::display(), mTimeout + 10, 100, PreferBlanking, DontAllowExposures); // We'll handle blanking +- kDebug() << "XSetScreenSaver" << mTimeout + 10; + } + + //--------------------------------------------------------------------------- +@@ -138,8 +138,6 @@ + { + mActive = false; + resetTrigger(); +- XSetScreenSaver(QX11Info::display(), 0, 100, PreferBlanking, DontAllowExposures); // No blanking at all +- kDebug() << "XSetScreenSaver 0"; + } + + //--------------------------------------------------------------------------- +@@ -148,12 +146,15 @@ + // + void XAutoLock::resetTrigger() + { ++ // Time of the last user activity (used only when the internal XScreensaver ++ // idle counter is not available). + mLastReset = mElapsed; ++ // Time when screensaver should be activated. + mTrigger = mElapsed + mTimeout; + #ifdef HAVE_XSCREENSAVER + mLastIdle = 0; + #endif +- XForceScreenSaver( QX11Info::display(), ScreenSaverReset ); ++ // Do not reset the internal X screensaver here (no XForceScreenSaver()) + } + + //--------------------------------------------------------------------------- +@@ -205,6 +206,9 @@ + if (mMitInfo) + { + Display *d = QX11Info::display(); ++ // Check user idle time. If it is smaller than before, it is either ++ // clock jump or user activity, so reset the trigger time. Checking whether ++ // there is user inactivity timeout is done below using mTrigger and mElapsed. + XScreenSaverQueryInfo(d, DefaultRootWindow(d), mMitInfo); + if (mLastIdle < mMitInfo->idle) + mLastIdle = mMitInfo->idle; +@@ -218,12 +222,11 @@ + + bool activate = false; + +- // kDebug() << now << mTrigger; ++ // This is the test whether to activate screensaver. If we have reached the time ++ // and for the whole timeout period there was no activity (which would change mTrigger ++ // again), activate. + if (mElapsed >= mTrigger) +- { +- resetTrigger(); + activate = true; +- } + + #ifdef HAVE_DPMS + BOOL on; +@@ -237,6 +240,8 @@ + // that is always smaller than DPMS timeout (X bug I guess). So if DPMS + // saving is active, simply always activate our saving too, otherwise + // this could prevent locking from working. ++ // X.Org 7.4: With this version activating DPMS resets the screensaver idle timer, ++ // so keep this. It probably makes sense to always do this anyway. + if(state == DPMSModeStandby || state == DPMSModeSuspend || state == DPMSModeOff) + activate = true; + // If we are DPMS-dependent and either DPMS is turned off completely or all diff --git a/x11/kde4-workspace/pkg-plist b/x11/kde4-workspace/pkg-plist index f66f119cafb4..0f53efd5db76 100644 --- a/x11/kde4-workspace/pkg-plist +++ b/x11/kde4-workspace/pkg-plist @@ -11,7 +11,6 @@ bin/kdmctl bin/kdostartupconfig4 bin/kfontinst bin/kfontview -bin/khotkeys bin/klipper bin/kmenuedit bin/krandom.kss @@ -29,71 +28,31 @@ bin/ksystraycmd bin/kwin bin/kwin_killer_helper bin/kwin_rules_dialog +bin/kwrited bin/kxkb bin/plasma +bin/plasma-overlay bin/plasmaengineexplorer bin/plasmapkg bin/plasmoidviewer bin/safestartkde +bin/setscheduler bin/startkde bin/startkde4 bin/systemsettings etc/ksysguarddrc etc/systemsettingsrc -include/KDE/Plasma/AbstractRunner -include/KDE/Plasma/AnimationDriver -include/KDE/Plasma/Animator -include/KDE/Plasma/Applet -include/KDE/Plasma/AppletBrowser -include/KDE/Plasma/AppletScript -include/KDE/Plasma/CheckBox -include/KDE/Plasma/ComboBox -include/KDE/Plasma/ConfigXml -include/KDE/Plasma/Containment -include/KDE/Plasma/Corona -include/KDE/Plasma/DataContainer -include/KDE/Plasma/DataEngine -include/KDE/Plasma/DataEngineManager -include/KDE/Plasma/DataEngineScript -include/KDE/Plasma/Delegate -include/KDE/Plasma/Dialog -include/KDE/Plasma/Flash -include/KDE/Plasma/GLApplet -include/KDE/Plasma/GroupBox -include/KDE/Plasma/Icon -include/KDE/Plasma/Label -include/KDE/Plasma/LineEdit -include/KDE/Plasma/Meter -include/KDE/Plasma/Package -include/KDE/Plasma/PackageMetadata -include/KDE/Plasma/PackageStructure -include/KDE/Plasma/PaintUtils -include/KDE/Plasma/PanelSvg -include/KDE/Plasma/Plasma -include/KDE/Plasma/PushButton -include/KDE/Plasma/QueryMatch -include/KDE/Plasma/RadioButton -include/KDE/Plasma/RunnerContext -include/KDE/Plasma/RunnerManager -include/KDE/Plasma/RunnerScript -include/KDE/Plasma/ScriptEngine -include/KDE/Plasma/Service -include/KDE/Plasma/ServiceJob -include/KDE/Plasma/SignalPlotter -include/KDE/Plasma/Svg -include/KDE/Plasma/TextEdit -include/KDE/Plasma/Theme -include/KDE/Plasma/UiLoader -include/KDE/Plasma/Version -include/KDE/Plasma/View -include/KDE/Plasma/Weather/Formulas include/KDE/Plasma/Weather/Ion -include/KDE/Plasma/WebContent -include/clocknumber.h +include/KDE/Plasma/Weather/WeatherUtils include/kcommondecoration.h include/kdecoration.h include/kdecorationbridge.h include/kdecorationfactory.h +include/kephal/configurations.h +include/kephal/kephal.h +include/kephal/kephal_export.h +include/kephal/outputs.h +include/kephal/screens.h include/kgreeterplugin.h include/kscreensaver.h include/kscreensaver_vroot.h @@ -107,6 +66,7 @@ include/ksysguard/KTextEditVT.h include/ksysguard/ProcessFilter.h include/ksysguard/ProcessModel.h include/ksysguard/ksysguardprocesslist.h +include/ksysguard/lsof.h include/ksysguard/process.h include/ksysguard/processes.h include/kwinconfig.h @@ -119,58 +79,22 @@ include/kwinxrenderutils.h include/kworkspace/kdisplaymanager.h include/kworkspace/kwindowlistmenu.h include/kworkspace/kworkspace.h -include/plasma/abstractrunner.h -include/plasma/animationdriver.h -include/plasma/animator.h -include/plasma/applet.h -include/plasma/appletbrowser.h -include/plasma/configxml.h -include/plasma/containment.h -include/plasma/corona.h -include/plasma/datacontainer.h -include/plasma/dataengine.h -include/plasma/dataenginemanager.h -include/plasma/delegate.h -include/plasma/dialog.h -include/plasma/glapplet.h -include/plasma/package.h -include/plasma/packagemetadata.h -include/plasma/packagestructure.h -include/plasma/paintutils.h -include/plasma/panelsvg.h -include/plasma/plasma.h -include/plasma/plasma_export.h -include/plasma/querymatch.h -include/plasma/runnercontext.h -include/plasma/runnermanager.h -include/plasma/scripting/appletscript.h -include/plasma/scripting/dataenginescript.h -include/plasma/scripting/runnerscript.h -include/plasma/scripting/scriptengine.h -include/plasma/service.h -include/plasma/servicejob.h -include/plasma/svg.h -include/plasma/theme.h -include/plasma/uiloader.h -include/plasma/version.h -include/plasma/view.h -include/plasma/weather/formulas.h +include/nepomuk/nepomukquery_export.h +include/nepomuk/nepomukqueryclient_export.h +include/nepomuk/query.h +include/nepomuk/queryparser.h +include/nepomuk/queryserviceclient.h +include/nepomuk/result.h +include/nepomuk/term.h include/plasma/weather/ion.h include/plasma/weather/ion_export.h -include/plasma/widgets/checkbox.h -include/plasma/widgets/combobox.h -include/plasma/widgets/flash.h -include/plasma/widgets/groupbox.h -include/plasma/widgets/icon.h -include/plasma/widgets/label.h -include/plasma/widgets/lineedit.h -include/plasma/widgets/meter.h -include/plasma/widgets/pushbutton.h -include/plasma/widgets/radiobutton.h -include/plasma/widgets/signalplotter.h -include/plasma/widgets/textedit.h -include/plasma/widgets/webcontent.h -include/plasmaclock_export.h +include/plasma/weather/weatherutils.h +include/plasmaclock/calendar.h +include/plasmaclock/calendartable.h +include/plasmaclock/clockapplet.h +include/plasmaclock/clocknumber.h +include/plasmaclock/plasmaclock_export.h +include/plasmaclock/ui_calendar.h include/solid/control/bluetoothinputdevice.h include/solid/control/bluetoothinterface.h include/solid/control/bluetoothmanager.h @@ -202,10 +126,21 @@ include/solid/control/solid_control_export.h include/solid/control/wirednetworkinterface.h include/solid/control/wirelessaccesspoint.h include/solid/control/wirelessnetworkinterface.h +include/taskmanager/abstractgroupableitem.h +include/taskmanager/abstractgroupingstrategy.h +include/taskmanager/abstractsortingstrategy.h +include/taskmanager/groupmanager.h include/taskmanager/startup.h include/taskmanager/task.h +include/taskmanager/taskactions.h +include/taskmanager/taskgroup.h +include/taskmanager/taskitem.h include/taskmanager/taskmanager.h -include/ui_calendar.h +include/taskmanager/taskmanager_export.h +lib/KDE4Workspace-%%KDE4_VERSION%%/cmake/KDE4WorkspaceConfig.cmake +lib/KDE4Workspace-%%KDE4_VERSION%%/cmake/KDE4WorkspaceConfigVersion.cmake +lib/KDE4Workspace-%%KDE4_VERSION%%/cmake/KDE4WorkspaceLibraryTargets-%%KDE4_BUILD_TYPE%%.cmake +lib/KDE4Workspace-%%KDE4_VERSION%%/cmake/KDE4WorkspaceLibraryTargets.cmake lib/kconf_update_bin/khotkeys_update lib/kconf_update_bin/krdb_clearlibrarypath lib/kconf_update_bin/kwin_update_default_rules @@ -220,16 +155,18 @@ lib/kde4/kcm_autostart.so lib/kde4/kcm_bell.so lib/kde4/kcm_clock.so lib/kde4/kcm_colors.so +lib/kde4/kcm_desktopthemedetails.so lib/kde4/kcm_display.so lib/kde4/kcm_energy.so lib/kde4/kcm_fontinst.so lib/kde4/kcm_fonts.so +lib/kde4/kcm_hotkeys.so lib/kde4/kcm_input.so lib/kde4/kcm_kdm.so lib/kde4/kcm_keyboard.so lib/kde4/kcm_keyboard_layout.so lib/kde4/kcm_keys.so -lib/kde4/kcm_khotkeys.so +lib/kde4/kcm_krunner_shell.so lib/kde4/kcm_ksplashthemes.so lib/kde4/kcm_kwin4_effect_builtins.so lib/kde4/kcm_kwincompositing.so @@ -238,13 +175,17 @@ lib/kde4/kcm_kwindesktop.so lib/kde4/kcm_kwinoptions.so lib/kde4/kcm_kwinrules.so lib/kde4/kcm_launch.so +lib/kde4/kcm_powerdevilconfig.so lib/kde4/kcm_randr.so lib/kde4/kcm_screensaver.so lib/kde4/kcm_smserver.so lib/kde4/kcm_solid.so +lib/kde4/kcm_standard_actions.so lib/kde4/kcm_style.so lib/kde4/kcm_xinerama.so +lib/kde4/kded_kephal.so lib/kde4/kded_khotkeys.so +lib/kde4/kded_powerdevil.so lib/kde4/kfontviewpart.so lib/kde4/kgreet_classic.so lib/kde4/kgreet_generic.so @@ -253,11 +194,14 @@ lib/kde4/kio_fonts.so lib/kde4/krunner_bookmarksrunner.so lib/kde4/krunner_calculatorrunner.so lib/kde4/krunner_locations.so +lib/kde4/krunner_nepomuksearchrunner.so +lib/kde4/krunner_placesrunner.so +lib/kde4/krunner_powerdevil.so +lib/kde4/krunner_recentdocuments.so lib/kde4/krunner_services.so lib/kde4/krunner_sessions.so lib/kde4/krunner_shell.so lib/kde4/krunner_webshortcuts.so -lib/kde4/krunner_xesam.so lib/kde4/kstyle_keramik_config.so lib/kde4/kwin3_b2.so lib/kde4/kwin3_kde2.so @@ -289,7 +233,9 @@ lib/kde4/libexec/krootimage lib/kde4/libexec/krunner_lock lib/kde4/libexec/test_kcm_xinerama lib/kde4/plasma_animator_default.so +lib/kde4/plasma_applet_activitybar.so lib/kde4/plasma_applet_battery.so +lib/kde4/plasma_applet_calendar.so lib/kde4/plasma_applet_clock.so lib/kde4/plasma_applet_devicenotifier.so lib/kde4/plasma_applet_dig_clock.so @@ -297,38 +243,57 @@ lib/kde4/plasma_applet_icon.so lib/kde4/plasma_applet_launcher.so lib/kde4/plasma_applet_lockout.so lib/kde4/plasma_applet_pager.so +lib/kde4/plasma_applet_quicklaunch.so lib/kde4/plasma_applet_simplelauncher.so +lib/kde4/plasma_applet_sm_cpu.so +lib/kde4/plasma_applet_sm_hdd.so +lib/kde4/plasma_applet_sm_hwinfo.so +lib/kde4/plasma_applet_sm_net.so +lib/kde4/plasma_applet_sm_temperature.so +lib/kde4/plasma_applet_system-monitor.so lib/kde4/plasma_applet_systemtray.so lib/kde4/plasma_applet_tasks.so lib/kde4/plasma_applet_trash.so +lib/kde4/plasma_applet_webbrowser.so +lib/kde4/plasma_appletscript_simple_javascript.so lib/kde4/plasma_appletscriptengine_dashboard.so lib/kde4/plasma_appletscriptengine_webapplet.so lib/kde4/plasma_containment_desktop.so +lib/kde4/plasma_containment_midpanel.so lib/kde4/plasma_containment_panel.so +lib/kde4/plasma_containment_saverdesktop.so +lib/kde4/plasma_engine_applicationjobs.so lib/kde4/plasma_engine_dict.so +lib/kde4/plasma_engine_executable.so +lib/kde4/plasma_engine_favicons.so lib/kde4/plasma_engine_filebrowser.so lib/kde4/plasma_engine_hotplug.so lib/kde4/plasma_engine_mouse.so +lib/kde4/plasma_engine_network.so +lib/kde4/plasma_engine_notifications.so lib/kde4/plasma_engine_nowplaying.so lib/kde4/plasma_engine_places.so lib/kde4/plasma_engine_powermanagement.so +lib/kde4/plasma_engine_rss.so lib/kde4/plasma_engine_soliddevice.so +lib/kde4/plasma_engine_systemmonitor.so lib/kde4/plasma_engine_tasks.so lib/kde4/plasma_engine_time.so lib/kde4/plasma_engine_weather.so lib/kde4/plasma_packagestructure_dashboard.so -lib/kde4/plasma_runner_scriptengine_qscript.so -lib/kde4/plasma_scriptengine_qscript.so +lib/kde4/plasma_packagestructure_web.so +lib/kde4/plasma_runnerscript_javascript.so +lib/kde4/plasma_wallpaper_color.so +lib/kde4/plasma_wallpaper_image.so +lib/kde4/plugins/designer/ksysguardlsofwidgets.so lib/kde4/plugins/designer/ksysguardwidgets.so -lib/kde4/solid_fakebluetooth.so lib/kde4/solid_fakenet.so lib/libkdecorations.so lib/libkdecorations.so.5 -lib/libkdecorations.so.5.0.0 +lib/libkdecorations.so.5.0.1 lib/libkdeinit4_kaccess.so lib/libkdeinit4_kcminit.so lib/libkdeinit4_kcminit_startup.so -lib/libkdeinit4_khotkeys.so lib/libkdeinit4_klipper.so lib/libkdeinit4_kmenuedit.so lib/libkdeinit4_krunner.so @@ -338,54 +303,65 @@ lib/libkdeinit4_kwin.so lib/libkdeinit4_kwin_rules_dialog.so lib/libkdeinit4_kxkb.so lib/libkdeinit4_plasma.so +lib/libkephal.so +lib/libkephal.so.5 +lib/libkephal.so.5.0.1 lib/libkfontinst.so lib/libkfontinst.so.5 -lib/libkfontinst.so.5.0.0 +lib/libkfontinst.so.5.0.1 lib/libkfontinstui.so lib/libkfontinstui.so.5 -lib/libkfontinstui.so.5.0.0 -lib/libkhotkeysprivate.so +lib/libkfontinstui.so.5.0.1 lib/libkhotkeysprivate.so.5 -lib/libkhotkeysprivate.so.5.0.0 +lib/libkhotkeysprivate.so.5.0.1 lib/libkscreensaver.so lib/libkscreensaver.so.5 lib/libkscreensaver.so.5.0.0 lib/libksgrd.so lib/libksgrd.so.5 -lib/libksgrd.so.5.0.0 +lib/libksgrd.so.5.0.1 lib/libkwineffects.so lib/libkwineffects.so.1 lib/libkwineffects.so.1.0.0 lib/libkwinnvidiahack.so lib/libkwinnvidiahack.so.5 -lib/libkwinnvidiahack.so.5.0.0 +lib/libkwinnvidiahack.so.5.0.1 lib/libkworkspace.so lib/libkworkspace.so.5 -lib/libkworkspace.so.5.0.0 -lib/libplasma.so -lib/libplasma.so.2 -lib/libplasma.so.2.0.0 +lib/libkworkspace.so.5.0.1 +lib/liblsofui.so +lib/liblsofui.so.5 +lib/liblsofui.so.5.0.1 +lib/libnepomukquery.so +lib/libnepomukquery.so.5 +lib/libnepomukquery.so.5.0.1 +lib/libnepomukqueryclient.so +lib/libnepomukqueryclient.so.5 +lib/libnepomukqueryclient.so.5.0.1 +lib/libplasma_applet-system-monitor.so +lib/libplasma_applet-system-monitor.so.5 +lib/libplasma_applet-system-monitor.so.5.0.1 lib/libplasmaclock.so lib/libplasmaclock.so.5 -lib/libplasmaclock.so.5.0.0 +lib/libplasmaclock.so.5.0.1 lib/libprocesscore.so lib/libprocesscore.so.5 -lib/libprocesscore.so.5.0.0 +lib/libprocesscore.so.5.0.1 lib/libprocessui.so lib/libprocessui.so.5 -lib/libprocessui.so.5.0.0 +lib/libprocessui.so.5.0.1 lib/libsolidcontrol.so lib/libsolidcontrol.so.5 -lib/libsolidcontrol.so.5.0.0 +lib/libsolidcontrol.so.5.0.1 lib/libsolidcontrolifaces.so lib/libsolidcontrolifaces.so.5 -lib/libsolidcontrolifaces.so.5.0.0 +lib/libsolidcontrolifaces.so.5.0.1 lib/libtaskmanager.so lib/libtaskmanager.so.5 -lib/libtaskmanager.so.5.0.0 +lib/libtaskmanager.so.5.0.1 lib/libweather_ion.so lib/libweather_ion.so.5 -lib/libweather_ion.so.5.0.0 +lib/libweather_ion.so.5.0.1 lib/strigi/strigita_font.so share/applications/kde4/kfontview.desktop share/applications/kde4/klipper.desktop @@ -393,45 +369,25 @@ share/applications/kde4/kmenuedit.desktop share/applications/kde4/krandrtray.desktop share/applications/kde4/ksysguard.desktop share/applications/kde4/systemsettings.desktop +share/apps/cmake/modules/FindCkConnector.cmake +share/apps/cmake/modules/FindDBus.cmake +share/apps/cmake/modules/FindGooglegadgets.cmake +share/apps/cmake/modules/FindKephal.cmake share/apps/cmake/modules/FindLibXKlavier.cmake share/apps/cmake/modules/FindPAM.cmake +share/apps/cmake/modules/FindQEdje.cmake share/apps/cmake/modules/FindSensors.cmake share/apps/cmake/modules/UnixAuth.cmake +share/apps/cmake/modules/create_exe_symlink.cmake share/apps/color-schemes/Honeycomb.colors share/apps/color-schemes/Norway.colors share/apps/color-schemes/ObsidianCoast.colors share/apps/color-schemes/Oxygen.colors share/apps/color-schemes/Steel.colors share/apps/color-schemes/WontonSoup.colors -share/apps/desktoptheme/default/colors -share/apps/desktoptheme/default/dialogs/background.svg -share/apps/desktoptheme/default/dialogs/krunner.svg -share/apps/desktoptheme/default/dialogs/shutdowndialog.source.svg -share/apps/desktoptheme/default/dialogs/shutdowndialog.svg -share/apps/desktoptheme/default/metadata.desktop -share/apps/desktoptheme/default/opaque/dialogs/background.svg -share/apps/desktoptheme/default/opaque/dialogs/krunner.svg -share/apps/desktoptheme/default/opaque/dialogs/shutdowndialog.svg -share/apps/desktoptheme/default/opaque/widgets/panel-background.svg -share/apps/desktoptheme/default/opaque/widgets/tooltip.svg -share/apps/desktoptheme/default/widgets/analog_meter.svg -share/apps/desktoptheme/default/widgets/background.svg -share/apps/desktoptheme/default/widgets/bar_meter_horizontal.svg -share/apps/desktoptheme/default/widgets/bar_meter_vertical.svg -share/apps/desktoptheme/default/widgets/battery-oxygen.svg -share/apps/desktoptheme/default/widgets/battery.svg -share/apps/desktoptheme/default/widgets/branding.svg -share/apps/desktoptheme/default/widgets/clock.svg -share/apps/desktoptheme/default/widgets/connection-established.svg -share/apps/desktoptheme/default/widgets/containment-controls.svg -share/apps/desktoptheme/default/widgets/pager.svg -share/apps/desktoptheme/default/widgets/panel-background.svg -share/apps/desktoptheme/default/widgets/plot-background.svg -share/apps/desktoptheme/default/widgets/systemtray.svg -share/apps/desktoptheme/default/widgets/tasks.svg -share/apps/desktoptheme/default/widgets/toolbox-button.svg -share/apps/desktoptheme/default/widgets/tooltip.svg -share/apps/desktoptheme/default/widgets/translucentbackground.svg +share/apps/desktoptheme/default/calendar/mini-calendar.svgz +share/apps/desktoptheme/default/system-monitor/hdd_panel.svgz +share/apps/desktoptheme/default/widgets/battery-oxygen.svgz share/apps/doc/kdm/README share/apps/doc/kdm/greeter.dtd share/apps/kaccess/kaccess.notifyrc @@ -452,7 +408,6 @@ share/apps/kconf_update/kaccel.upd share/apps/kconf_update/kcmdisplayrc.upd share/apps/kconf_update/khotkeys_32b1_update.upd share/apps/kconf_update/khotkeys_printscreen.upd -share/apps/kconf_update/khotkeys_remove_shortcuts.upd share/apps/kconf_update/konqueror_gestures_kde321_update.upd share/apps/kconf_update/krdb.upd share/apps/kconf_update/ksmserver.upd @@ -605,17 +560,12 @@ share/apps/kfontview/kfontviewui.rc share/apps/khotkeys/kde32b1.khotkeys share/apps/khotkeys/konqueror_gestures_kde321.khotkeys share/apps/khotkeys/printscreen.khotkeys -share/apps/kicker/applets/ksysguardapplet.desktop share/apps/kmenuedit/icons/oxygen/22x22/actions/menu_new.png share/apps/kmenuedit/icons/oxygen/22x22/actions/menu_new_sep.png share/apps/kmenuedit/icons/oxygen/32x32/actions/menu_new.png share/apps/kmenuedit/icons/oxygen/32x32/actions/menu_new_sep.png share/apps/kmenuedit/kmenueditui.rc share/apps/konqsidebartng/virtual_folders/services/fonts.desktop -share/apps/ksmserver/windowmanagers/compiz-custom.desktop -share/apps/ksmserver/windowmanagers/compiz.desktop -share/apps/ksmserver/windowmanagers/metacity.desktop -share/apps/ksmserver/windowmanagers/openbox.desktop share/apps/ksplash/Themes/Default/1024x768/background.png share/apps/ksplash/Themes/Default/1280x1024/background.png share/apps/ksplash/Themes/Default/1600x1200/background.png @@ -677,6 +627,9 @@ share/apps/kwin/blur.frag share/apps/kwin/blur.vert share/apps/kwin/circle-edgy.png share/apps/kwin/circle.png +share/apps/kwin/cubecap.png +share/apps/kwin/cylinder.frag +share/apps/kwin/cylinder.vert share/apps/kwin/default_rules/fsp_workarounds_1.kwinrules share/apps/kwin/default_rules/plasma_desktop_containment.kwinrules share/apps/kwin/explosion-end.png @@ -700,35 +653,56 @@ share/apps/kwin/redmond.desktop share/apps/kwin/shadow-texture.png share/apps/kwin/sharpen.frag share/apps/kwin/sharpen.vert +share/apps/kwin/snow.frag +share/apps/kwin/snow.vert share/apps/kwin/snowflake.png +share/apps/kwin/sphere.vert share/apps/kwin/trackmouse.png share/apps/kwin/web.desktop +share/apps/kwrited/kwrited.notifyrc +share/apps/plasma/dashboard/AppleClasses/AppleAnimator.js +share/apps/plasma/dashboard/AppleClasses/AppleButton.js +share/apps/plasma/dashboard/AppleClasses/AppleInfoButton.js +share/apps/plasma/dashboard/AppleClasses/AppleScrollArea.js +share/apps/plasma/dashboard/AppleClasses/AppleScrollbar.js +share/apps/plasma/dashboard/AppleClasses/AppleSlider.js +share/apps/plasma/dashboard/button/genericButton.js +share/apps/plasma/services/applicationjobs.operations +share/apps/plasma/services/notifications.operations +share/apps/plasma/services/nowplaying.operations +share/apps/plasma/services/tasks.operations +share/apps/plasma_scriptengine_ruby/applet.rb +share/apps/plasma_scriptengine_ruby/data_engine.rb +share/apps/powerdevil/default.powerdevilprofiles +share/apps/powerdevil/powerdevil.notifyrc share/apps/solid/actions/test-predicate-openinwindow.desktop -share/apps/solidfakebluetoothbackend/fakebluetooth.xml share/apps/solidfakenetbackend/fakenetworking.xml share/apps/systemsettings/systemsettingsui.rc -share/autostart/khotkeys.desktop share/autostart/klipper.desktop share/autostart/krunner.desktop +share/autostart/kwrited-autostart.desktop share/autostart/plasma.desktop share/config.kcfg/klaunch.kcfg share/config.kcfg/kscreensaversettings.kcfg share/config.kcfg/kwin.kcfg +share/config.kcfg/plasma-shell-desktop.kcfg share/config/background.knsrc share/config/colorschemes.knsrc share/config/kdm.knsrc share/config/klipperrc share/config/ksplash.knsrc +share/config/ksysguard.knsrc +share/config/plasma-overlayrc share/config/plasma-themes.knsrc -share/config/plasmoids.knsrc share/config/wallpaper.knsrc share/dbus-1/interfaces/org.freedesktop.ScreenSaver.xml share/dbus-1/interfaces/org.kde.KSMServerInterface.xml share/dbus-1/interfaces/org.kde.KWin.xml +share/dbus-1/interfaces/org.kde.PowerDevil.xml share/dbus-1/interfaces/org.kde.khotkeys.xml share/dbus-1/interfaces/org.kde.krunner.App.xml -share/dbus-1/interfaces/org.kde.krunner.Interface.xml share/dbus-1/interfaces/org.kde.screensaver.xml +share/dbus-1/services/org.kde.krunner.service share/doc/HTML/en/kcontrol/autostart/common share/doc/HTML/en/kcontrol/autostart/index.cache.bz2 share/doc/HTML/en/kcontrol/autostart/index.docbook @@ -776,6 +750,9 @@ share/doc/HTML/en/kcontrol/keyboard/index.docbook share/doc/HTML/en/kcontrol/keys/common share/doc/HTML/en/kcontrol/keys/index.cache.bz2 share/doc/HTML/en/kcontrol/keys/index.docbook +share/doc/HTML/en/kcontrol/kwincompositing/common +share/doc/HTML/en/kcontrol/kwincompositing/index.cache.bz2 +share/doc/HTML/en/kcontrol/kwincompositing/index.docbook share/doc/HTML/en/kcontrol/kwindecoration/buttons.png share/doc/HTML/en/kcontrol/kwindecoration/common share/doc/HTML/en/kcontrol/kwindecoration/index.cache.bz2 @@ -784,6 +761,9 @@ share/doc/HTML/en/kcontrol/kwindecoration/main.png share/doc/HTML/en/kcontrol/mouse/common share/doc/HTML/en/kcontrol/mouse/index.cache.bz2 share/doc/HTML/en/kcontrol/mouse/index.docbook +share/doc/HTML/en/kcontrol/powerdevilconfig/common +share/doc/HTML/en/kcontrol/powerdevilconfig/index.cache.bz2 +share/doc/HTML/en/kcontrol/powerdevilconfig/index.docbook share/doc/HTML/en/kcontrol/screensaver/common share/doc/HTML/en/kcontrol/screensaver/index.cache.bz2 share/doc/HTML/en/kcontrol/screensaver/index.docbook @@ -814,6 +794,7 @@ share/doc/HTML/en/kmenuedit/index.docbook share/doc/HTML/en/kmenuedit/itemname.png share/doc/HTML/en/kmenuedit/kmenueditmain.png share/doc/HTML/en/kmenuedit/new.png +share/doc/HTML/en/kmenuedit/reset.png share/doc/HTML/en/kmenuedit/selecticon.png share/doc/HTML/en/kmenuedit/selectinternet.png share/doc/HTML/en/ksysguard/common @@ -823,8 +804,10 @@ share/doc/HTML/en/kxkb/common share/doc/HTML/en/kxkb/index.cache.bz2 share/doc/HTML/en/kxkb/index.docbook share/doc/HTML/en/plasma/common +share/doc/HTML/en/plasma/favorite-widgets.png share/doc/HTML/en/plasma/index.cache.bz2 share/doc/HTML/en/plasma/index.docbook +share/doc/HTML/en/plasma/taskbar-settings.png share/doc/HTML/en/systemsettings/common share/doc/HTML/en/systemsettings/index.cache.bz2 share/doc/HTML/en/systemsettings/index.docbook @@ -1569,13 +1552,11 @@ share/icons/Oxygen_Zion_Big/cursors/whats_this share/icons/Oxygen_Zion_Big/cursors/xterm share/icons/Oxygen_Zion_Big/index.theme share/icons/hicolor/128x128/apps/ksplash.png -share/icons/hicolor/16x16/apps/khotkeys.png share/icons/hicolor/16x16/apps/kmenuedit.png share/icons/hicolor/16x16/apps/ksplash.png share/icons/hicolor/16x16/apps/kxkb.png share/icons/hicolor/22x22/apps/kmenuedit.png share/icons/hicolor/22x22/apps/ksplash.png -share/icons/hicolor/32x32/apps/khotkeys.png share/icons/hicolor/32x32/apps/kmenuedit.png share/icons/hicolor/32x32/apps/ksplash.png share/icons/hicolor/32x32/apps/kxkb.png @@ -1625,6 +1606,7 @@ share/kde4/services/bell.desktop share/kde4/services/clock.desktop share/kde4/services/colors.desktop share/kde4/services/desktop.desktop +share/kde4/services/desktopthemedetails.desktop share/kde4/services/display.desktop share/kde4/services/energy.desktop share/kde4/services/fontinst.desktop @@ -1639,7 +1621,9 @@ share/kde4/services/kcm_solid.desktop share/kde4/services/kcmaccess.desktop share/kde4/services/kcmlaunch.desktop share/kde4/services/kcmsmserver.desktop +share/kde4/services/kded/kded_kephal.desktop share/kde4/services/kded/khotkeys.desktop +share/kde4/services/kded/powerdevil.desktop share/kde4/services/kdm.desktop share/kde4/services/keyboard.desktop share/kde4/services/keyboard_layout.desktop @@ -1649,8 +1633,13 @@ share/kde4/services/khotkeys.desktop share/kde4/services/ksplashthememgr.desktop share/kde4/services/kwin/blur.desktop share/kde4/services/kwin/boxswitch.desktop +share/kde4/services/kwin/boxswitch_config.desktop share/kde4/services/kwin/coverswitch.desktop share/kde4/services/kwin/coverswitch_config.desktop +share/kde4/services/kwin/cube.desktop +share/kde4/services/kwin/cube_config.desktop +share/kde4/services/kwin/cylinder.desktop +share/kde4/services/kwin/cylinder_config.desktop share/kde4/services/kwin/desktopgrid.desktop share/kde4/services/kwin/desktopgrid_config.desktop share/kde4/services/kwin/dialogparent.desktop @@ -1668,6 +1657,7 @@ share/kde4/services/kwin/login.desktop share/kde4/services/kwin/logout.desktop share/kde4/services/kwin/lookingglass.desktop share/kde4/services/kwin/lookingglass_config.desktop +share/kde4/services/kwin/magiclamp.desktop share/kde4/services/kwin/magnifier.desktop share/kde4/services/kwin/magnifier_config.desktop share/kde4/services/kwin/maketransparent.desktop @@ -1685,8 +1675,12 @@ share/kde4/services/kwin/sharpen_config.desktop share/kde4/services/kwin/showfps.desktop share/kde4/services/kwin/showfps_config.desktop share/kde4/services/kwin/showpaint.desktop +share/kde4/services/kwin/slide.desktop share/kde4/services/kwin/snow.desktop share/kde4/services/kwin/snow_config.desktop +share/kde4/services/kwin/sphere.desktop +share/kde4/services/kwin/sphere_config.desktop +share/kde4/services/kwin/taskbarthumbnail.desktop share/kde4/services/kwin/thumbnailaside.desktop share/kde4/services/kwin/thumbnailaside_config.desktop share/kde4/services/kwin/trackmouse.desktop @@ -1705,45 +1699,74 @@ share/kde4/services/kwinoptions.desktop share/kde4/services/kwinrules.desktop share/kde4/services/mouse.desktop share/kde4/services/plasma-animator-default.desktop +share/kde4/services/plasma-applet-activitybar.desktop share/kde4/services/plasma-applet-analogclock.desktop +share/kde4/services/plasma-applet-calendar.desktop share/kde4/services/plasma-applet-devicenotifier.desktop share/kde4/services/plasma-applet-digitalclock.desktop share/kde4/services/plasma-applet-icon.desktop share/kde4/services/plasma-applet-launcher.desktop share/kde4/services/plasma-applet-lockout.desktop +share/kde4/services/plasma-applet-quicklaunch.desktop share/kde4/services/plasma-applet-simplelauncher.desktop +share/kde4/services/plasma-applet-sm_cpu.desktop +share/kde4/services/plasma-applet-sm_hdd.desktop +share/kde4/services/plasma-applet-sm_hwinfo.desktop +share/kde4/services/plasma-applet-sm_net.desktop +share/kde4/services/plasma-applet-sm_temperature.desktop +share/kde4/services/plasma-applet-system-monitor.desktop share/kde4/services/plasma-applet-systemtray.desktop share/kde4/services/plasma-applet-trash.desktop +share/kde4/services/plasma-applet-webbrowser.desktop share/kde4/services/plasma-battery-default.desktop share/kde4/services/plasma-containment-desktop.desktop +share/kde4/services/plasma-containment-midpanel.desktop share/kde4/services/plasma-containment-panel.desktop +share/kde4/services/plasma-containment-saverdesktop.desktop +share/kde4/services/plasma-dataengine-applicationjobs.desktop share/kde4/services/plasma-dataengine-dict.desktop +share/kde4/services/plasma-dataengine-executable.desktop +share/kde4/services/plasma-dataengine-favicons.desktop share/kde4/services/plasma-dataengine-filebrowser.desktop share/kde4/services/plasma-dataengine-hotplug.desktop share/kde4/services/plasma-dataengine-mouse.desktop +share/kde4/services/plasma-dataengine-network.desktop +share/kde4/services/plasma-dataengine-notifications.desktop share/kde4/services/plasma-dataengine-nowplaying.desktop share/kde4/services/plasma-dataengine-places.desktop share/kde4/services/plasma-dataengine-powermanagement.desktop +share/kde4/services/plasma-dataengine-rss.desktop share/kde4/services/plasma-dataengine-soliddevice.desktop +share/kde4/services/plasma-dataengine-systemmonitor.desktop share/kde4/services/plasma-dataengine-tasks.desktop share/kde4/services/plasma-dataengine-time.desktop share/kde4/services/plasma-dataengine-weather.desktop share/kde4/services/plasma-packagestructure-dashboard.desktop +share/kde4/services/plasma-packagestructure-web.desktop share/kde4/services/plasma-pager-default.desktop share/kde4/services/plasma-runner-bookmarks.desktop share/kde4/services/plasma-runner-calculator.desktop share/kde4/services/plasma-runner-locations.desktop +share/kde4/services/plasma-runner-nepomuksearch.desktop +share/kde4/services/plasma-runner-places.desktop +share/kde4/services/plasma-runner-powerdevil.desktop share/kde4/services/plasma-runner-services.desktop share/kde4/services/plasma-runner-sessions.desktop share/kde4/services/plasma-runner-shell.desktop +share/kde4/services/plasma-runner-shell_config.desktop share/kde4/services/plasma-runner-webshortcuts.desktop -share/kde4/services/plasma-runner-xesam.desktop share/kde4/services/plasma-scriptengine-applet-dashboard.desktop +share/kde4/services/plasma-scriptengine-applet-simple-javascript.desktop share/kde4/services/plasma-scriptengine-applet-web.desktop -share/kde4/services/plasma-scriptengine-qscript.desktop -share/kde4/services/plasma-scriptengine-qscriptrunner.desktop +share/kde4/services/plasma-scriptengine-ruby-applet.desktop +share/kde4/services/plasma-scriptengine-ruby-dataengine.desktop +share/kde4/services/plasma-scriptengine-runner-javascript.desktop share/kde4/services/plasma-tasks-default.desktop +share/kde4/services/plasma-wallpaper-color.desktop +share/kde4/services/plasma-wallpaper-image.desktop +share/kde4/services/powerdevilconfig.desktop share/kde4/services/randr.desktop +share/kde4/services/recentdocuments.desktop share/kde4/services/screensaver.desktop share/kde4/services/settings-about-me.desktop share/kde4/services/settings-accessibility.desktop @@ -1755,6 +1778,7 @@ share/kde4/services/settings-computer-administration.desktop share/kde4/services/settings-desktop.desktop share/kde4/services/settings-display.desktop share/kde4/services/settings-general.desktop +share/kde4/services/settings-input-actions.desktop share/kde4/services/settings-keyboard-and-mouse.desktop share/kde4/services/settings-look-and-feel.desktop share/kde4/services/settings-network-and-connectivity.desktop @@ -1765,18 +1789,11 @@ share/kde4/services/settings-regional-and-language.desktop share/kde4/services/settings-sharing.desktop share/kde4/services/settings-system.desktop share/kde4/services/settings-window-behaviour.desktop -share/kde4/services/solidbackends/solid_fakebluetooth.desktop share/kde4/services/solidbackends/solid_fakenet.desktop +share/kde4/services/standard_actions.desktop share/kde4/services/style.desktop share/kde4/services/xinerama.desktop share/kde4/servicetypes/kwineffect.desktop -share/kde4/servicetypes/plasma-animator.desktop -share/kde4/servicetypes/plasma-applet.desktop -share/kde4/servicetypes/plasma-containment.desktop -share/kde4/servicetypes/plasma-dataengine.desktop -share/kde4/servicetypes/plasma-packagestructure.desktop -share/kde4/servicetypes/plasma-runner.desktop -share/kde4/servicetypes/plasma-scriptengine.desktop share/kde4/servicetypes/screensaver.desktop share/kde4/servicetypes/solidbluetoothmanager.desktop share/kde4/servicetypes/solidnetworkmanager.desktop @@ -1784,6 +1801,15 @@ share/kde4/servicetypes/solidpowermanager.desktop share/kde4/servicetypes/systemsettingscategory.desktop share/kde4/servicetypes/weather_ion.desktop share/sounds/pop.wav +share/wallpapers/Air/contents/images/1024x768.jpg +share/wallpapers/Air/contents/images/1280x1024.jpg +share/wallpapers/Air/contents/images/1280x800.jpg +share/wallpapers/Air/contents/images/1440x900.jpg +share/wallpapers/Air/contents/images/1600x1200.jpg +share/wallpapers/Air/contents/images/1920x1080.jpg +share/wallpapers/Air/contents/images/1920x1200.jpg +share/wallpapers/Air/contents/screenshot.png +share/wallpapers/Air/metadata.desktop share/wallpapers/Blue_Curl/contents/images/1024x768.jpg share/wallpapers/Blue_Curl/contents/images/1280x1024.jpg share/wallpapers/Blue_Curl/contents/images/1280x800.jpg @@ -1800,14 +1826,6 @@ share/wallpapers/Code_Poets_Dream/contents/images/1600x1200.jpg share/wallpapers/Code_Poets_Dream/contents/images/1920x1200.jpg share/wallpapers/Code_Poets_Dream/contents/screenshot.png share/wallpapers/Code_Poets_Dream/metadata.desktop -share/wallpapers/Colorado_Farm/contents/images/1024x768.jpg -share/wallpapers/Colorado_Farm/contents/images/1280x1024.jpg -share/wallpapers/Colorado_Farm/contents/images/1280x800.jpg -share/wallpapers/Colorado_Farm/contents/images/1440x900.jpg -share/wallpapers/Colorado_Farm/contents/images/1600x1200.jpg -share/wallpapers/Colorado_Farm/contents/images/1920x1200.jpg -share/wallpapers/Colorado_Farm/contents/screenshot.png -share/wallpapers/Colorado_Farm/metadata.desktop share/wallpapers/Curls_on_Green/contents/images/1024x768.jpg share/wallpapers/Curls_on_Green/contents/images/1280x1024.jpg share/wallpapers/Curls_on_Green/contents/images/1280x800.jpg @@ -1824,14 +1842,6 @@ share/wallpapers/EOS/contents/images/1600x1200.jpg share/wallpapers/EOS/contents/images/1920x1200.jpg share/wallpapers/EOS/contents/screenshot.png share/wallpapers/EOS/metadata.desktop -share/wallpapers/Emotion/contents/images/1024x768.jpg -share/wallpapers/Emotion/contents/images/1280x1024.jpg -share/wallpapers/Emotion/contents/images/1280x800.jpg -share/wallpapers/Emotion/contents/images/1440x900.jpg -share/wallpapers/Emotion/contents/images/1600x1200.jpg -share/wallpapers/Emotion/contents/images/1920x1200.jpg -share/wallpapers/Emotion/contents/screenshot.png -share/wallpapers/Emotion/metadata.desktop share/wallpapers/Fields_of_Peace/contents/images/1024x768.JPG share/wallpapers/Fields_of_Peace/contents/images/1280x1024.JPG share/wallpapers/Fields_of_Peace/contents/images/1280x800.JPG @@ -1864,22 +1874,14 @@ share/wallpapers/Fresh_Morning/contents/images/1600x1200.jpg share/wallpapers/Fresh_Morning/contents/images/1920x1200.jpg share/wallpapers/Fresh_Morning/contents/screenshot.png share/wallpapers/Fresh_Morning/metadata.desktop -share/wallpapers/Golden_Ripples/contents/images/1024x768.jpg -share/wallpapers/Golden_Ripples/contents/images/1280x1024.jpg -share/wallpapers/Golden_Ripples/contents/images/1280x800.jpg -share/wallpapers/Golden_Ripples/contents/images/1440x900.jpg -share/wallpapers/Golden_Ripples/contents/images/1600x1200.jpg -share/wallpapers/Golden_Ripples/contents/images/1920x1200.jpg -share/wallpapers/Golden_Ripples/contents/screenshot.png -share/wallpapers/Golden_Ripples/metadata.desktop -share/wallpapers/Green_Concentration/contents/images/1024x768.jpg -share/wallpapers/Green_Concentration/contents/images/1280x1024.jpg -share/wallpapers/Green_Concentration/contents/images/1280x800.jpg -share/wallpapers/Green_Concentration/contents/images/1440x900.jpg -share/wallpapers/Green_Concentration/contents/images/1600x1200.jpg -share/wallpapers/Green_Concentration/contents/images/1920x1200.jpg -share/wallpapers/Green_Concentration/contents/screenshot.png -share/wallpapers/Green_Concentration/metadata.desktop +share/wallpapers/HighTide/contents/images/1024x768.jpg +share/wallpapers/HighTide/contents/images/1280x1024.jpg +share/wallpapers/HighTide/contents/images/1280x800.jpg +share/wallpapers/HighTide/contents/images/1440x900.jpg +share/wallpapers/HighTide/contents/images/1600x1200.jpg +share/wallpapers/HighTide/contents/images/1920x1200.jpg +share/wallpapers/HighTide/contents/screenshot.png +share/wallpapers/HighTide/metadata.desktop share/wallpapers/Ladybuggin/contents/images/1024x768.jpg share/wallpapers/Ladybuggin/contents/images/1280x1024.jpg share/wallpapers/Ladybuggin/contents/images/1280x800.jpg @@ -1888,14 +1890,13 @@ share/wallpapers/Ladybuggin/contents/images/1600x1200.jpg share/wallpapers/Ladybuggin/contents/images/1920x1200.jpg share/wallpapers/Ladybuggin/contents/screenshot.png share/wallpapers/Ladybuggin/metadata.desktop -share/wallpapers/Leafs_Labyrinth/contents/images/1024x768.jpg -share/wallpapers/Leafs_Labyrinth/contents/images/1280x1024.jpg -share/wallpapers/Leafs_Labyrinth/contents/images/1280x800.jpg -share/wallpapers/Leafs_Labyrinth/contents/images/1440x900.jpg -share/wallpapers/Leafs_Labyrinth/contents/images/1600x1200.jpg -share/wallpapers/Leafs_Labyrinth/contents/images/1920x1200.jpg -share/wallpapers/Leafs_Labyrinth/contents/screenshot.png -share/wallpapers/Leafs_Labyrinth/metadata.desktop +share/wallpapers/Plasmalicious/contents/images/1280x1024.jpg +share/wallpapers/Plasmalicious/contents/images/1280x800.jpg +share/wallpapers/Plasmalicious/contents/images/1400x900.jpg +share/wallpapers/Plasmalicious/contents/images/1600x1200.jpg +share/wallpapers/Plasmalicious/contents/images/1920x1200.jpg +share/wallpapers/Plasmalicious/contents/screenshot.png +share/wallpapers/Plasmalicious/metadata.desktop share/wallpapers/Red_Leaf/contents/images/1024x768.jpg share/wallpapers/Red_Leaf/contents/images/1280x1024.jpg share/wallpapers/Red_Leaf/contents/images/1280x800.jpg @@ -1904,14 +1905,6 @@ share/wallpapers/Red_Leaf/contents/images/1600x1200.jpg share/wallpapers/Red_Leaf/contents/images/1920x1200.jpg share/wallpapers/Red_Leaf/contents/screenshot.png share/wallpapers/Red_Leaf/metadata.desktop -share/wallpapers/Skeeter_Hawk/contents/images/1024x768.jpg -share/wallpapers/Skeeter_Hawk/contents/images/1280x1024.jpg -share/wallpapers/Skeeter_Hawk/contents/images/1280x800.jpg -share/wallpapers/Skeeter_Hawk/contents/images/1440x900.jpg -share/wallpapers/Skeeter_Hawk/contents/images/1600x1200.jpg -share/wallpapers/Skeeter_Hawk/contents/images/1920x1200.jpg -share/wallpapers/Skeeter_Hawk/contents/screenshot.png -share/wallpapers/Skeeter_Hawk/metadata.desktop share/wallpapers/There_is_Rain_on_the_Table/contents/images/1024x768.jpg share/wallpapers/There_is_Rain_on_the_Table/contents/images/1280x1024.jpg share/wallpapers/There_is_Rain_on_the_Table/contents/images/1280x800.jpg @@ -1936,24 +1929,18 @@ share/wallpapers/default_blue.jpg.desktop @dirrm share/wallpapers/There_is_Rain_on_the_Table/contents/images @dirrm share/wallpapers/There_is_Rain_on_the_Table/contents @dirrm share/wallpapers/There_is_Rain_on_the_Table -@dirrm share/wallpapers/Skeeter_Hawk/contents/images -@dirrm share/wallpapers/Skeeter_Hawk/contents -@dirrm share/wallpapers/Skeeter_Hawk @dirrm share/wallpapers/Red_Leaf/contents/images @dirrm share/wallpapers/Red_Leaf/contents @dirrm share/wallpapers/Red_Leaf -@dirrm share/wallpapers/Leafs_Labyrinth/contents/images -@dirrm share/wallpapers/Leafs_Labyrinth/contents -@dirrm share/wallpapers/Leafs_Labyrinth +@dirrm share/wallpapers/Plasmalicious/contents/images +@dirrm share/wallpapers/Plasmalicious/contents +@dirrm share/wallpapers/Plasmalicious @dirrm share/wallpapers/Ladybuggin/contents/images @dirrm share/wallpapers/Ladybuggin/contents @dirrm share/wallpapers/Ladybuggin -@dirrm share/wallpapers/Green_Concentration/contents/images -@dirrm share/wallpapers/Green_Concentration/contents -@dirrm share/wallpapers/Green_Concentration -@dirrm share/wallpapers/Golden_Ripples/contents/images -@dirrm share/wallpapers/Golden_Ripples/contents -@dirrm share/wallpapers/Golden_Ripples +@dirrm share/wallpapers/HighTide/contents/images +@dirrm share/wallpapers/HighTide/contents +@dirrm share/wallpapers/HighTide @dirrm share/wallpapers/Fresh_Morning/contents/images @dirrm share/wallpapers/Fresh_Morning/contents @dirrm share/wallpapers/Fresh_Morning @@ -1966,57 +1953,23 @@ share/wallpapers/default_blue.jpg.desktop @dirrm share/wallpapers/Fields_of_Peace/contents/images @dirrm share/wallpapers/Fields_of_Peace/contents @dirrm share/wallpapers/Fields_of_Peace -@dirrm share/wallpapers/Emotion/contents/images -@dirrm share/wallpapers/Emotion/contents -@dirrm share/wallpapers/Emotion @dirrm share/wallpapers/EOS/contents/images @dirrm share/wallpapers/EOS/contents @dirrm share/wallpapers/EOS @dirrm share/wallpapers/Curls_on_Green/contents/images @dirrm share/wallpapers/Curls_on_Green/contents @dirrm share/wallpapers/Curls_on_Green -@dirrm share/wallpapers/Colorado_Farm/contents/images -@dirrm share/wallpapers/Colorado_Farm/contents -@dirrm share/wallpapers/Colorado_Farm @dirrm share/wallpapers/Code_Poets_Dream/contents/images @dirrm share/wallpapers/Code_Poets_Dream/contents @dirrm share/wallpapers/Code_Poets_Dream @dirrm share/wallpapers/Blue_Curl/contents/images @dirrm share/wallpapers/Blue_Curl/contents @dirrm share/wallpapers/Blue_Curl -@dirrmtry share/wallpapers -@dirrmtry share/sounds -@dirrmtry share/pixmaps -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services/solidbackends -@dirrmtry share/kde4/services/kwin -@dirrmtry share/kde4/services/kded -@dirrmtry share/kde4/services/ServiceMenus -@dirrmtry share/kde4/services/ScreenSavers -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/oxygen/scalable/mimetypes -@dirrmtry share/icons/oxygen/scalable/apps -@dirrmtry share/icons/oxygen/scalable -@dirrmtry share/icons/oxygen/64x64/mimetypes -@dirrmtry share/icons/oxygen/64x64/apps -@dirrmtry share/icons/oxygen/64x64 -@dirrmtry share/icons/oxygen/48x48/mimetypes -@dirrmtry share/icons/oxygen/48x48/apps -@dirrmtry share/icons/oxygen/48x48 -@dirrmtry share/icons/oxygen/32x32/mimetypes -@dirrmtry share/icons/oxygen/32x32/apps -@dirrmtry share/icons/oxygen/32x32 -@dirrmtry share/icons/oxygen/22x22/mimetypes -@dirrmtry share/icons/oxygen/22x22/apps -@dirrmtry share/icons/oxygen/22x22 -@dirrmtry share/icons/oxygen/16x16/mimetypes -@dirrmtry share/icons/oxygen/16x16/apps -@dirrmtry share/icons/oxygen/16x16 -@dirrmtry share/icons/oxygen/128x128/mimetypes -@dirrmtry share/icons/oxygen/128x128/apps -@dirrmtry share/icons/oxygen/128x128 -@dirrmtry share/icons/oxygen +@dirrm share/wallpapers/Air/contents/images +@dirrm share/wallpapers/Air/contents +@dirrm share/wallpapers/Air +@dirrm share/kde4/services/solidbackends +@dirrm share/kde4/services/kwin @dirrm share/icons/Oxygen_Zion_Big/cursors @dirrm share/icons/Oxygen_Zion_Big @dirrm share/icons/Oxygen_Zion/cursors @@ -2037,52 +1990,44 @@ share/wallpapers/default_blue.jpg.desktop @dirrm share/icons/Oxygen_Black_Big @dirrm share/icons/Oxygen_Black/cursors @dirrm share/icons/Oxygen_Black -@dirrmtry share/icons -@dirrmtry share/doc/HTML/en/systemsettings -@dirrmtry share/doc/HTML/en/plasma -@dirrmtry share/doc/HTML/en/kxkb -@dirrmtry share/doc/HTML/en/ksysguard -@dirrmtry share/doc/HTML/en/kmenuedit -@dirrmtry share/doc/HTML/en/klipper -@dirrmtry share/doc/HTML/en/kdm -@dirrmtry share/doc/HTML/en/kcontrol/windowspecific -@dirrmtry share/doc/HTML/en/kcontrol/windowbehaviour -@dirrmtry share/doc/HTML/en/kcontrol/splashscreen -@dirrmtry share/doc/HTML/en/kcontrol/screensaver -@dirrmtry share/doc/HTML/en/kcontrol/mouse -@dirrmtry share/doc/HTML/en/kcontrol/kwindecoration -@dirrmtry share/doc/HTML/en/kcontrol/keys -@dirrmtry share/doc/HTML/en/kcontrol/keyboard -@dirrmtry share/doc/HTML/en/kcontrol/kcmstyle -@dirrmtry share/doc/HTML/en/kcontrol/kcmsmserver -@dirrmtry share/doc/HTML/en/kcontrol/kcmdisplay -@dirrmtry share/doc/HTML/en/kcontrol/kcmaccess -@dirrmtry share/doc/HTML/en/kcontrol/joystick -@dirrmtry share/doc/HTML/en/kcontrol/fonts -@dirrmtry share/doc/HTML/en/kcontrol/fontinst -@dirrmtry share/doc/HTML/en/kcontrol/energy -@dirrmtry share/doc/HTML/en/kcontrol/colors -@dirrmtry share/doc/HTML/en/kcontrol/clock -@dirrmtry share/doc/HTML/en/kcontrol/bell -@dirrmtry share/doc/HTML/en/kcontrol/autostart -@dirrmtry share/doc/HTML/en/kcontrol -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/doc -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 -@dirrmtry share/config/kdm/sessions -@dirrmtry share/config/kdm -@dirrmtry share/config.kcfg -@dirrmtry share/config -@dirrmtry share/autostart -@dirrmtry share/apps/systemsettings -@dirrmtry share/apps/solidfakenetbackend -@dirrmtry share/apps/solidfakebluetoothbackend -@dirrmtry share/apps/solid/actions -@dirrmtry share/apps/solid -@dirrmtry share/apps/kwin/default_rules -@dirrmtry share/apps/kwin +@dirrm share/doc/HTML/en/systemsettings +@dirrm share/doc/HTML/en/plasma +@dirrm share/doc/HTML/en/kxkb +@dirrm share/doc/HTML/en/ksysguard +@dirrm share/doc/HTML/en/kmenuedit +@dirrm share/doc/HTML/en/klipper +@dirrm share/doc/HTML/en/kdm +@dirrm share/doc/HTML/en/kcontrol/windowspecific +@dirrm share/doc/HTML/en/kcontrol/windowbehaviour +@dirrm share/doc/HTML/en/kcontrol/splashscreen +@dirrm share/doc/HTML/en/kcontrol/screensaver +@dirrm share/doc/HTML/en/kcontrol/powerdevilconfig +@dirrm share/doc/HTML/en/kcontrol/mouse +@dirrm share/doc/HTML/en/kcontrol/kwindecoration +@dirrm share/doc/HTML/en/kcontrol/kwincompositing +@dirrm share/doc/HTML/en/kcontrol/keys +@dirrm share/doc/HTML/en/kcontrol/keyboard +@dirrm share/doc/HTML/en/kcontrol/kcmstyle +@dirrm share/doc/HTML/en/kcontrol/kcmsmserver +@dirrm share/doc/HTML/en/kcontrol/kcmdisplay +@dirrm share/doc/HTML/en/kcontrol/kcmaccess +@dirrm share/doc/HTML/en/kcontrol/joystick +@dirrm share/doc/HTML/en/kcontrol/fonts +@dirrm share/doc/HTML/en/kcontrol/fontinst +@dirrm share/doc/HTML/en/kcontrol/energy +@dirrm share/doc/HTML/en/kcontrol/colors +@dirrm share/doc/HTML/en/kcontrol/clock +@dirrm share/doc/HTML/en/kcontrol/bell +@dirrm share/doc/HTML/en/kcontrol/autostart +@dirrm share/apps/systemsettings +@dirrm share/apps/solidfakenetbackend +@dirrm share/apps/powerdevil +@dirrm share/apps/plasma_scriptengine_ruby +@dirrm share/apps/plasma/dashboard/button +@dirrm share/apps/plasma/dashboard/AppleClasses +@dirrm share/apps/plasma/dashboard +@dirrm share/apps/kwrited +@dirrm share/apps/kwin/default_rules @dirrm share/apps/kthememanager/themes/YellowOnBlue-big @dirrm share/apps/kthememanager/themes/YellowOnBlue @dirrm share/apps/kthememanager/themes/Sunshine @@ -2110,11 +2055,6 @@ share/wallpapers/default_blue.jpg.desktop @dirrm share/apps/ksplash/Themes/Default @dirrm share/apps/ksplash/Themes @dirrm share/apps/ksplash -@dirrm share/apps/ksmserver/windowmanagers -@dirrm share/apps/ksmserver -@dirrmtry share/apps/konqsidebartng/virtual_folders/services -@dirrmtry share/apps/konqsidebartng/virtual_folders -@dirrmtry share/apps/konqsidebartng @dirrm share/apps/kmenuedit/icons/oxygen/32x32/actions @dirrm share/apps/kmenuedit/icons/oxygen/32x32 @dirrm share/apps/kmenuedit/icons/oxygen/22x22/actions @@ -2122,8 +2062,6 @@ share/wallpapers/default_blue.jpg.desktop @dirrm share/apps/kmenuedit/icons/oxygen @dirrm share/apps/kmenuedit/icons @dirrm share/apps/kmenuedit -@dirrmtry share/apps/kicker/applets -@dirrmtry share/apps/kicker @dirrm share/apps/khotkeys @dirrm share/apps/kfontview @dirrm share/apps/kfontinst/icons/oxygen/scalable/actions @@ -2140,51 +2078,30 @@ share/wallpapers/default_blue.jpg.desktop @dirrm share/apps/kdm/themes @dirrm share/apps/kdm/sessions @dirrm share/apps/kdm/programs -@dirrm share/apps/kdm/pics/users -@dirrm share/apps/kdm/pics @dirrm share/apps/kdm/patterns -@dirrm share/apps/kdm @dirrm share/apps/kdisplay/app-defaults @dirrm share/apps/kdisplay -@dirrm share/apps/kcontrol/pics -@dirrm share/apps/kcontrol -@dirrmtry share/apps/kconf_update @dirrm share/apps/kcmkeys @dirrm share/apps/kcminput/pics @dirrm share/apps/kcminput @dirrm share/apps/kaccess @dirrm share/apps/doc/kdm @dirrm share/apps/doc -@dirrm share/apps/desktoptheme/default/widgets -@dirrm share/apps/desktoptheme/default/opaque/widgets -@dirrm share/apps/desktoptheme/default/opaque/dialogs -@dirrm share/apps/desktoptheme/default/opaque -@dirrm share/apps/desktoptheme/default/dialogs -@dirrm share/apps/desktoptheme/default -@dirrm share/apps/desktoptheme -@dirrm share/apps/color-schemes -@dirrmtry share/apps/cmake/modules -@dirrmtry share/apps/cmake -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/strigi -@dirrmtry lib/kde4/plugins/designer -@dirrmtry lib/kde4/plugins -@dirrmtry lib/kde4/libexec -@dirrmtry lib/kde4 -@dirrmtry lib/kconf_update_bin +@dirrm share/apps/desktoptheme/default/system-monitor +@dirrm share/apps/desktoptheme/default/calendar +@dirrm lib/KDE4Workspace-%%KDE4_VERSION%%/cmake +@dirrm lib/KDE4Workspace-%%KDE4_VERSION%% @dirrm include/taskmanager -@dirrmtry include/solid/control/ifaces -@dirrmtry include/solid/control +@dirrm include/solid/control/ifaces +@dirrm include/solid/control @dirrmtry include/solid -@dirrmtry include/plasma/widgets -@dirrmtry include/plasma/weather -@dirrmtry include/plasma/scripting +@dirrm include/plasmaclock +@dirrm include/plasma/weather @dirrmtry include/plasma -@dirrmtry include/kworkspace +@dirrmtry include/nepomuk +@dirrm include/kworkspace @dirrm include/ksysguard @dirrm include/ksgrd -@dirrmtry include/KDE/Plasma/Weather +@dirrm include/kephal +@dirrm include/KDE/Plasma/Weather @dirrmtry include/KDE/Plasma -@dirrmtry include/KDE diff --git a/x11/kde4/Makefile b/x11/kde4/Makefile index 9eee5714ce3d..886d2fa1eac0 100644 --- a/x11/kde4/Makefile +++ b/x11/kde4/Makefile @@ -7,7 +7,6 @@ PORTNAME?= kde4 PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde MASTER_SITES= # empty DISTFILES= # none diff --git a/x11/kdebase4-runtime/Makefile b/x11/kdebase4-runtime/Makefile index 9c9b84157b75..b37826a60f10 100644 --- a/x11/kdebase4-runtime/Makefile +++ b/x11/kdebase4-runtime/Makefile @@ -8,21 +8,14 @@ PORTNAME= kdebase-runtime PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Basic applications for the KDE system -LIB_DEPENDS= usb-0.1.8:${PORTSDIR}/devel/libusb \ - xcb.2:${PORTSDIR}/x11/libxcb \ - xine.1:${PORTSDIR}/multimedia/libxine \ - xklavier.12:${PORTSDIR}/x11/libxklavier -RUN_DEPENDS= ${LOCALBASE}/share/icons/hicolor/index.theme:${PORTSDIR}/misc/hicolor-icon-theme - USE_KDE4= kdelibs pimlibs kdeprefix kdehier automoc4 KDE4_BUILDENV= yes USE_BZIP2= yes @@ -33,7 +26,18 @@ USE_GETTEXT= yes MAN1= kdesu.1 +OPTIONS= PULSEAUDIO "Enable playback via PulseAudio soundserver" off + +.include <bsd.port.pre.mk> + +.if defined(WITH_PULSEAUDIO) +CMAKE_ARGS+= -DWITH_PulseAudio:BOOL=ON +LIB_DEPENDS+= pulse.0:${PORTSDIR}/audio/pulseaudio +.else +CMAKE_ARGS+= -DWITH_PulseAudio:BOOL=OFF +.endif + post-extract: ${MKDIR} ${WRKSRC} -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/x11/kdebase4-runtime/distinfo b/x11/kdebase4-runtime/distinfo index 09007714a0a4..94fa7bb63013 100644 --- a/x11/kdebase4-runtime/distinfo +++ b/x11/kdebase4-runtime/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdebase-runtime-4.1.4.tar.bz2) = fad82875745bacbb52001eabf9c71202 -SHA256 (KDE/kdebase-runtime-4.1.4.tar.bz2) = 0b96c34785edcd9a0d308ca8a5623bd2de15939bcaee3bbda6de4ac3d832b513 -SIZE (KDE/kdebase-runtime-4.1.4.tar.bz2) = 52272004 +MD5 (KDE/kdebase-runtime-4.2.0.tar.bz2) = 8ef48aae16a6dddb3055d81d7e5c375f +SHA256 (KDE/kdebase-runtime-4.2.0.tar.bz2) = 5bb18a691915f42dc2a836422ce913405b5c51463caa236f2474293feead51d8 +SIZE (KDE/kdebase-runtime-4.2.0.tar.bz2) = 69901790 diff --git a/x11/kdebase4-runtime/pkg-plist b/x11/kdebase4-runtime/pkg-plist index 76962631e938..0083d1aa44fa 100644 --- a/x11/kdebase4-runtime/pkg-plist +++ b/x11/kdebase4-runtime/pkg-plist @@ -19,18 +19,21 @@ bin/ksvgtopng bin/ktraderclient bin/ktrash bin/kuiserver +bin/kwalletd bin/kwriteconfig bin/nepomukserver bin/nepomukservicestub bin/solid-hardware etc/xdg/menus/kde-information.menu lib/kconf_update_bin/phonon_devicepreference_update +lib/kconf_update_bin/phonon_deviceuids_update lib/kde4/cursorthumbnail.so lib/kde4/djvuthumbnail.so lib/kde4/exrthumbnail.so lib/kde4/fixhosturifilter.so lib/kde4/htmlthumbnail.so lib/kde4/imagethumbnail.so +lib/kde4/jpegthumbnail.so lib/kde4/kcm_cgi.so lib/kde4/kcm_componentchooser.so lib/kde4/kcm_emoticons.so @@ -42,14 +45,19 @@ lib/kde4/kcm_locale.so lib/kde4/kcm_nepomuk.so lib/kde4/kcm_phonon.so lib/kde4/kcm_phononxine.so +lib/kde4/kcm_trash.so lib/kde4/kcmspellchecking.so lib/kde4/kded_desktopnotifier.so +lib/kde4/kded_globalaccel.so lib/kde4/kded_kpasswdserver.so lib/kde4/kded_ktimezoned.so +lib/kde4/kded_phononserver.so lib/kde4/kded_remotedirnotify.so lib/kde4/kded_soliduiserver.so lib/kde4/kio_about.so +lib/kde4/kio_applications.so lib/kde4/kio_archive.so +lib/kde4/kio_bookmarks.so lib/kde4/kio_cgi.so lib/kde4/kio_desktop.so lib/kde4/kio_filter.so @@ -58,6 +66,7 @@ lib/kde4/kio_fish.so lib/kde4/kio_floppy.so lib/kde4/kio_info.so lib/kde4/kio_man.so +lib/kde4/kio_nepomuksearch.so lib/kde4/kio_nfs.so lib/kde4/kio_remote.so lib/kde4/kio_settings.so @@ -88,41 +97,84 @@ lib/kde4/localdomainurifilter.so lib/kde4/nepomukfilewatch.so lib/kde4/nepomukmigration1.so lib/kde4/nepomukontologyloader.so +lib/kde4/nepomukqueryservice.so lib/kde4/nepomukstorage.so lib/kde4/nepomukstrigiservice.so -lib/kde4/phonon_xine.so lib/kde4/plugins/phonon_platform/kde.so lib/kde4/plugins/styles/oxygen.so lib/kde4/svgthumbnail.so lib/kde4/textthumbnail.so -lib/libkaudiodevicelist.so -lib/libkaudiodevicelist.so.5 -lib/libkaudiodevicelist.so.5.0.0 lib/libkdeinit4_kcmshell4.so lib/libkdeinit4_khelpcenter.so lib/libkdeinit4_kuiserver.so +lib/libkdeinit4_kwalletd.so lib/libkdeinit4_nepomukserver.so +lib/libkwalletbackend.so +lib/libkwalletbackend.so.5 +lib/libkwalletbackend.so.5.0.1 lib/strigi/strigiindex_sopranobackend.so share/applications/kde4/Help.desktop share/applications/kde4/knetattach.desktop share/apps/cmake/modules/FindCLucene.cmake -share/apps/cmake/modules/FindXCB.cmake +share/apps/cmake/modules/FindPulseAudio.cmake +share/apps/desktoptheme/default/colors +share/apps/desktoptheme/default/dialogs/background.svgz +share/apps/desktoptheme/default/dialogs/kickoff.svgz +share/apps/desktoptheme/default/dialogs/krunner.svgz +share/apps/desktoptheme/default/dialogs/shutdowndialog.source.svgz +share/apps/desktoptheme/default/dialogs/shutdowndialog.svgz +share/apps/desktoptheme/default/metadata.desktop +share/apps/desktoptheme/default/opaque/dialogs/background.svgz +share/apps/desktoptheme/default/opaque/dialogs/krunner.svgz +share/apps/desktoptheme/default/opaque/dialogs/shutdowndialog.svgz +share/apps/desktoptheme/default/opaque/widgets/extender-background.svgz +share/apps/desktoptheme/default/opaque/widgets/panel-background.svgz +share/apps/desktoptheme/default/opaque/widgets/tooltip.svgz +share/apps/desktoptheme/default/widgets/analog_meter.svgz +share/apps/desktoptheme/default/widgets/arrows.svgz +share/apps/desktoptheme/default/widgets/background.svgz +share/apps/desktoptheme/default/widgets/bar_meter_horizontal.svgz +share/apps/desktoptheme/default/widgets/bar_meter_vertical.svgz +share/apps/desktoptheme/default/widgets/branding.svgz +share/apps/desktoptheme/default/widgets/busywidget.svgz +share/apps/desktoptheme/default/widgets/button.svgz +share/apps/desktoptheme/default/widgets/calendar.svgz +share/apps/desktoptheme/default/widgets/clock.svgz +share/apps/desktoptheme/default/widgets/configuration-icons.svgz +share/apps/desktoptheme/default/widgets/containment-controls.svgz +share/apps/desktoptheme/default/widgets/dragger.svgz +share/apps/desktoptheme/default/widgets/extender-background.svgz +share/apps/desktoptheme/default/widgets/extender-dragger.svgz +share/apps/desktoptheme/default/widgets/frame.svgz +share/apps/desktoptheme/default/widgets/glowbar.svgz +share/apps/desktoptheme/default/widgets/monitor.svgz +share/apps/desktoptheme/default/widgets/pager.svgz +share/apps/desktoptheme/default/widgets/panel-background.svgz +share/apps/desktoptheme/default/widgets/plot-background.svgz +share/apps/desktoptheme/default/widgets/scrollbar.svgz +share/apps/desktoptheme/default/widgets/systemtray.svgz +share/apps/desktoptheme/default/widgets/tasks.svgz +share/apps/desktoptheme/default/widgets/tooltip.svgz +share/apps/desktoptheme/default/widgets/translucentbackground.svgz +share/apps/desktoptheme/default/widgets/viewitem.svgz share/apps/drkonqi/debuggers/gdbrc share/apps/drkonqi/pics/konqi.png share/apps/drkonqi/presets/developerrc share/apps/drkonqi/presets/enduserrc share/apps/kcm_componentchooser/kcm_browser.desktop +share/apps/kcm_componentchooser/kcm_filemanager.desktop share/apps/kcm_componentchooser/kcm_kemail.desktop share/apps/kcm_componentchooser/kcm_terminal.desktop +share/apps/kcm_componentchooser/kcm_wm.desktop share/apps/kcm_phonon/listview-background.png share/apps/kcmlocale/pics/background.png share/apps/kconf_update/devicepreference.upd +share/apps/kconf_update/kdedglobalaccel_kde42.upd share/apps/kconf_update/kuriikwsfilter.upd share/apps/kde/kde.notifyrc share/apps/khelpcenter/glossary.html.in share/apps/khelpcenter/glossary.xslt share/apps/khelpcenter/index.html.in -share/apps/khelpcenter/intro.html.in share/apps/khelpcenter/khelpcenterui.rc share/apps/khelpcenter/plugins/Applications/.directory share/apps/khelpcenter/plugins/Manpages/.directory @@ -157,6 +209,10 @@ share/apps/khelpcenter/searchhandlers/htdig.desktop share/apps/khelpcenter/searchhandlers/htdig/htdig_long.html share/apps/khelpcenter/searchhandlers/man.desktop share/apps/khelpcenter/table-of-contents.xslt +share/apps/kio_bookmarks/kio_bookmarks.css +share/apps/kio_desktop/DesktopLinks/Home.desktop +share/apps/kio_desktop/directory.desktop +share/apps/kio_desktop/directory.trash share/apps/kio_finger/kio_finger.css share/apps/kio_finger/kio_finger.pl share/apps/kio_info/kde-info2html @@ -164,8 +220,36 @@ share/apps/kio_info/kde-info2html.conf share/apps/kio_man/kio_man.css share/apps/kio_thumbnail/pics/thumbnailfont_7x4.png share/apps/konqueror/dirtree/remote/smb-network.desktop +share/apps/ksmserver/windowmanagers/compiz-custom.desktop +share/apps/ksmserver/windowmanagers/compiz.desktop +share/apps/ksmserver/windowmanagers/metacity.desktop +share/apps/ksmserver/windowmanagers/openbox.desktop share/apps/kstyle/themes/oxygen.themerc share/apps/libphonon/hardwaredatabase +share/apps/nepomuk/ontologies/dces.desktop +share/apps/nepomuk/ontologies/dces.rdf +share/apps/nepomuk/ontologies/dcq.desktop +share/apps/nepomuk/ontologies/dcq.rdf +share/apps/nepomuk/ontologies/dctype.desktop +share/apps/nepomuk/ontologies/dctype.rdf +share/apps/nepomuk/ontologies/nao.desktop +share/apps/nepomuk/ontologies/nao.trig +share/apps/nepomuk/ontologies/nfo.desktop +share/apps/nepomuk/ontologies/nfo.trig +share/apps/nepomuk/ontologies/nie.desktop +share/apps/nepomuk/ontologies/nie.trig +share/apps/nepomuk/ontologies/nrl.desktop +share/apps/nepomuk/ontologies/nrl.trig +share/apps/nepomuk/ontologies/pimo.desktop +share/apps/nepomuk/ontologies/pimo.trig +share/apps/nepomuk/ontologies/rdf.desktop +share/apps/nepomuk/ontologies/rdf.rdfs +share/apps/nepomuk/ontologies/rdfs.desktop +share/apps/nepomuk/ontologies/rdfs.rdfs +share/apps/nepomuk/ontologies/xesam.desktop +share/apps/nepomuk/ontologies/xesam.rdfs +share/apps/nepomukstorage/nepomukstorage.notifyrc +share/apps/nepomukstrigiservice/nepomukstrigiservice.notifyrc share/apps/phonon/phonon.notifyrc share/apps/remoteview/smb-network.desktop share/autostart/nepomukserver.desktop @@ -177,8 +261,13 @@ share/config/kshorturifilterrc share/dbus-1/interfaces/org.kde.KTimeZoned.xml share/dbus-1/interfaces/org.kde.NepomukServer.xml share/dbus-1/interfaces/org.kde.khelpcenter.kcmhelpcenter.xml +share/dbus-1/interfaces/org.kde.nepomuk.OntologyManager.xml +share/dbus-1/interfaces/org.kde.nepomuk.Query.xml +share/dbus-1/interfaces/org.kde.nepomuk.QueryService.xml share/dbus-1/interfaces/org.kde.nepomuk.ServiceControl.xml share/dbus-1/interfaces/org.kde.nepomuk.ServiceManager.xml +share/dbus-1/interfaces/org.kde.nepomuk.Storage.xml +share/dbus-1/interfaces/org.kde.nepomuk.Strigi.xml share/dbus-1/services/org.kde.knotify.service share/desktop-directories/kde-development-translation.directory share/desktop-directories/kde-development-webdevelopment.directory @@ -194,6 +283,7 @@ share/desktop-directories/kde-games-arcade.directory share/desktop-directories/kde-games-board.directory share/desktop-directories/kde-games-card.directory share/desktop-directories/kde-games-kids.directory +share/desktop-directories/kde-games-logic.directory share/desktop-directories/kde-games-roguelikes.directory share/desktop-directories/kde-games-strategy.directory share/desktop-directories/kde-games.directory @@ -221,6 +311,9 @@ share/desktop-directories/kde-utilities.directory share/doc/HTML/en/kcontrol/background/common share/doc/HTML/en/kcontrol/background/index.cache.bz2 share/doc/HTML/en/kcontrol/background/index.docbook +share/doc/HTML/en/kcontrol/bookmarks/common +share/doc/HTML/en/kcontrol/bookmarks/index.cache.bz2 +share/doc/HTML/en/kcontrol/bookmarks/index.docbook share/doc/HTML/en/kcontrol/cache/common share/doc/HTML/en/kcontrol/cache/index.cache.bz2 share/doc/HTML/en/kcontrol/cache/index.docbook @@ -491,47 +584,48 @@ share/doc/HTML/en/khelpcenter/visualdict/pict8.png share/doc/HTML/en/khelpcenter/visualdict/pict9.png share/doc/HTML/en/khelpcenter/welcome.docbook share/doc/HTML/en/khelpcenter/whatiskde.docbook -share/doc/HTML/en/kioslave/bzip.docbook -share/doc/HTML/en/kioslave/bzip2.docbook -share/doc/HTML/en/kioslave/cgi.docbook -share/doc/HTML/en/kioslave/common -share/doc/HTML/en/kioslave/data.docbook -share/doc/HTML/en/kioslave/file.docbook -share/doc/HTML/en/kioslave/finger.docbook -share/doc/HTML/en/kioslave/fish.docbook -share/doc/HTML/en/kioslave/floppy.docbook -share/doc/HTML/en/kioslave/ftp.docbook -share/doc/HTML/en/kioslave/gopher.docbook -share/doc/HTML/en/kioslave/gzip.docbook -share/doc/HTML/en/kioslave/help.docbook -share/doc/HTML/en/kioslave/http.docbook -share/doc/HTML/en/kioslave/https.docbook -share/doc/HTML/en/kioslave/imap.docbook -share/doc/HTML/en/kioslave/imaps.docbook -share/doc/HTML/en/kioslave/index.cache.bz2 -share/doc/HTML/en/kioslave/index.docbook -share/doc/HTML/en/kioslave/info.docbook -share/doc/HTML/en/kioslave/lan.docbook -share/doc/HTML/en/kioslave/ldap.docbook -share/doc/HTML/en/kioslave/mac.docbook -share/doc/HTML/en/kioslave/mailto.docbook -share/doc/HTML/en/kioslave/man.docbook -share/doc/HTML/en/kioslave/mrml.docbook -share/doc/HTML/en/kioslave/news.docbook -share/doc/HTML/en/kioslave/nfs.docbook -share/doc/HTML/en/kioslave/nntp.docbook -share/doc/HTML/en/kioslave/pop3.docbook -share/doc/HTML/en/kioslave/pop3s.docbook -share/doc/HTML/en/kioslave/rlan.docbook -share/doc/HTML/en/kioslave/rlogin.docbook -share/doc/HTML/en/kioslave/sftp.docbook -share/doc/HTML/en/kioslave/smb.docbook -share/doc/HTML/en/kioslave/smtp.docbook -share/doc/HTML/en/kioslave/tar.docbook -share/doc/HTML/en/kioslave/telnet.docbook -share/doc/HTML/en/kioslave/thumbnail.docbook -share/doc/HTML/en/kioslave/webdav.docbook -share/doc/HTML/en/kioslave/webdavs.docbook +share/doc/HTML/en/kioslave/bookmarks/common +share/doc/HTML/en/kioslave/bookmarks/index.cache.bz2 +share/doc/HTML/en/kioslave/bookmarks/index.docbook +share/doc/HTML/en/kioslave/bzip2/common +share/doc/HTML/en/kioslave/bzip2/index.cache.bz2 +share/doc/HTML/en/kioslave/bzip2/index.docbook +share/doc/HTML/en/kioslave/cgi/common +share/doc/HTML/en/kioslave/cgi/index.cache.bz2 +share/doc/HTML/en/kioslave/cgi/index.docbook +share/doc/HTML/en/kioslave/finger/common +share/doc/HTML/en/kioslave/finger/index.cache.bz2 +share/doc/HTML/en/kioslave/finger/index.docbook +share/doc/HTML/en/kioslave/fish/common +share/doc/HTML/en/kioslave/fish/index.cache.bz2 +share/doc/HTML/en/kioslave/fish/index.docbook +share/doc/HTML/en/kioslave/floppy/common +share/doc/HTML/en/kioslave/floppy/index.cache.bz2 +share/doc/HTML/en/kioslave/floppy/index.docbook +share/doc/HTML/en/kioslave/gzip/common +share/doc/HTML/en/kioslave/gzip/index.cache.bz2 +share/doc/HTML/en/kioslave/gzip/index.docbook +share/doc/HTML/en/kioslave/info/common +share/doc/HTML/en/kioslave/info/index.cache.bz2 +share/doc/HTML/en/kioslave/info/index.docbook +share/doc/HTML/en/kioslave/man/common +share/doc/HTML/en/kioslave/man/index.cache.bz2 +share/doc/HTML/en/kioslave/man/index.docbook +share/doc/HTML/en/kioslave/nfs/common +share/doc/HTML/en/kioslave/nfs/index.cache.bz2 +share/doc/HTML/en/kioslave/nfs/index.docbook +share/doc/HTML/en/kioslave/sftp/common +share/doc/HTML/en/kioslave/sftp/index.cache.bz2 +share/doc/HTML/en/kioslave/sftp/index.docbook +share/doc/HTML/en/kioslave/smb/common +share/doc/HTML/en/kioslave/smb/index.cache.bz2 +share/doc/HTML/en/kioslave/smb/index.docbook +share/doc/HTML/en/kioslave/tar/common +share/doc/HTML/en/kioslave/tar/index.cache.bz2 +share/doc/HTML/en/kioslave/tar/index.docbook +share/doc/HTML/en/kioslave/thumbnail/common +share/doc/HTML/en/kioslave/thumbnail/index.cache.bz2 +share/doc/HTML/en/kioslave/thumbnail/index.docbook share/doc/HTML/en/knetattach/common share/doc/HTML/en/knetattach/index.cache.bz2 share/doc/HTML/en/knetattach/index.docbook @@ -596,21 +690,23 @@ share/icons/oxygen/128x128/actions/application-exit.png share/icons/oxygen/128x128/actions/appointment-new.png share/icons/oxygen/128x128/actions/bookmark-new.png share/icons/oxygen/128x128/actions/bookmarks-organize.png +share/icons/oxygen/128x128/actions/configure.png share/icons/oxygen/128x128/actions/dashboard-show.png share/icons/oxygen/128x128/actions/dialog-ok-apply.png share/icons/oxygen/128x128/actions/dialog-ok.png +share/icons/oxygen/128x128/actions/document-edit.png share/icons/oxygen/128x128/actions/document-preview.png share/icons/oxygen/128x128/actions/edit-bomb.png share/icons/oxygen/128x128/actions/edit-find.png share/icons/oxygen/128x128/actions/go-bottom.png share/icons/oxygen/128x128/actions/go-down.png -share/icons/oxygen/128x128/actions/go-first-page.png +share/icons/oxygen/128x128/actions/go-first-view-page.png share/icons/oxygen/128x128/actions/go-first.png -share/icons/oxygen/128x128/actions/go-last-page.png +share/icons/oxygen/128x128/actions/go-last-view-page.png share/icons/oxygen/128x128/actions/go-last.png -share/icons/oxygen/128x128/actions/go-next-page.png +share/icons/oxygen/128x128/actions/go-next-view-page.png share/icons/oxygen/128x128/actions/go-next.png -share/icons/oxygen/128x128/actions/go-previous-page.png +share/icons/oxygen/128x128/actions/go-previous-view-page.png share/icons/oxygen/128x128/actions/go-previous.png share/icons/oxygen/128x128/actions/go-top.png share/icons/oxygen/128x128/actions/go-up.png @@ -638,8 +734,10 @@ share/icons/oxygen/128x128/actions/system-shutdown.png share/icons/oxygen/128x128/actions/system-suspend-hibernate.png share/icons/oxygen/128x128/actions/system-suspend.png share/icons/oxygen/128x128/actions/system-switch-user.png +share/icons/oxygen/128x128/actions/tool-animator.png share/icons/oxygen/128x128/actions/tools-report-bug.png share/icons/oxygen/128x128/actions/tools-wizard.png +share/icons/oxygen/128x128/actions/transform-crop-and-resize.png share/icons/oxygen/128x128/actions/transform-move.png share/icons/oxygen/128x128/actions/transform-scale.png share/icons/oxygen/128x128/actions/user-group-new.png @@ -659,6 +757,7 @@ share/icons/oxygen/128x128/apps/akonadi.png share/icons/oxygen/128x128/apps/akregator.png share/icons/oxygen/128x128/apps/basket.png share/icons/oxygen/128x128/apps/bovo.png +share/icons/oxygen/128x128/apps/device-notifier.png share/icons/oxygen/128x128/apps/digikam.png share/icons/oxygen/128x128/apps/esd.png share/icons/oxygen/128x128/apps/fontforge.png @@ -671,17 +770,16 @@ share/icons/oxygen/128x128/apps/internet-telephony.png share/icons/oxygen/128x128/apps/internet-web-browser.png share/icons/oxygen/128x128/apps/k3b.png share/icons/oxygen/128x128/apps/kaffeine.png -share/icons/oxygen/128x128/apps/kate.png share/icons/oxygen/128x128/apps/kblogger.png share/icons/oxygen/128x128/apps/kbugbuster.png share/icons/oxygen/128x128/apps/kchart.png share/icons/oxygen/128x128/apps/kcolorchooser.png share/icons/oxygen/128x128/apps/kde.png share/icons/oxygen/128x128/apps/kexi.png -share/icons/oxygen/128x128/apps/kjots.png share/icons/oxygen/128x128/apps/kjournal.png share/icons/oxygen/128x128/apps/klipper.png share/icons/oxygen/128x128/apps/kmplayer.png +share/icons/oxygen/128x128/apps/knewsticker.png share/icons/oxygen/128x128/apps/knotes.png share/icons/oxygen/128x128/apps/kolf.png share/icons/oxygen/128x128/apps/konqueror.png @@ -705,7 +803,6 @@ share/icons/oxygen/128x128/apps/office-address-book.png share/icons/oxygen/128x128/apps/office-calendar.png share/icons/oxygen/128x128/apps/okteta.png share/icons/oxygen/128x128/apps/oxygen.png -share/icons/oxygen/128x128/apps/phonon-xine.png share/icons/oxygen/128x128/apps/plasma.png share/icons/oxygen/128x128/apps/plasmagik.png share/icons/oxygen/128x128/apps/preferences-contact-list.png @@ -714,6 +811,7 @@ share/icons/oxygen/128x128/apps/preferences-desktop-color.png share/icons/oxygen/128x128/apps/preferences-desktop-cryptography.png share/icons/oxygen/128x128/apps/preferences-desktop-default-applications.png share/icons/oxygen/128x128/apps/preferences-desktop-display.png +share/icons/oxygen/128x128/apps/preferences-desktop-font.png share/icons/oxygen/128x128/apps/preferences-desktop-gaming.png share/icons/oxygen/128x128/apps/preferences-desktop-icons.png share/icons/oxygen/128x128/apps/preferences-desktop-keyboard.png @@ -735,14 +833,19 @@ share/icons/oxygen/128x128/apps/preferences-system-login.png share/icons/oxygen/128x128/apps/preferences-system-network-sharing.png share/icons/oxygen/128x128/apps/preferences-system-power-management.png share/icons/oxygen/128x128/apps/preferences-system-time.png +share/icons/oxygen/128x128/apps/preferences-system-windows-actions.png +share/icons/oxygen/128x128/apps/preferences-system-windows-move.png share/icons/oxygen/128x128/apps/preferences-system-windows.png share/icons/oxygen/128x128/apps/preferences-web-browser-identification.png share/icons/oxygen/128x128/apps/scribus.png +share/icons/oxygen/128x128/apps/semn.png share/icons/oxygen/128x128/apps/strigi.png +share/icons/oxygen/128x128/apps/system-diagnosis.png share/icons/oxygen/128x128/apps/system-file-manager.png share/icons/oxygen/128x128/apps/system-software-update.png share/icons/oxygen/128x128/apps/system-users.png share/icons/oxygen/128x128/apps/tagua.png +share/icons/oxygen/128x128/apps/utilities-desktop-extra.png share/icons/oxygen/128x128/apps/utilities-file-archiver.png share/icons/oxygen/128x128/apps/utilities-log-viewer.png share/icons/oxygen/128x128/apps/utilities-system-monitor.png @@ -808,6 +911,7 @@ share/icons/oxygen/128x128/devices/multimedia-player.png share/icons/oxygen/128x128/devices/network-wired.png share/icons/oxygen/128x128/devices/network-wireless.png share/icons/oxygen/128x128/devices/pda.png +share/icons/oxygen/128x128/devices/phone-openmoko-freerunner.png share/icons/oxygen/128x128/devices/phone.png share/icons/oxygen/128x128/devices/printer.png share/icons/oxygen/128x128/devices/scanner.png @@ -827,7 +931,9 @@ share/icons/oxygen/128x128/emotes/face-smile-big.png share/icons/oxygen/128x128/emotes/face-smile.png share/icons/oxygen/128x128/emotes/face-surprise.png share/icons/oxygen/128x128/emotes/face-uncertain.png +share/icons/oxygen/128x128/emotes/face-wink.png share/icons/oxygen/128x128/mimetypes/application-illustrator.png +share/icons/oxygen/128x128/mimetypes/application-javascript.png share/icons/oxygen/128x128/mimetypes/application-msword.png share/icons/oxygen/128x128/mimetypes/application-octet-stream.png share/icons/oxygen/128x128/mimetypes/application-pdf.png @@ -838,6 +944,7 @@ share/icons/oxygen/128x128/mimetypes/application-postscript.png share/icons/oxygen/128x128/mimetypes/application-relaxng.png share/icons/oxygen/128x128/mimetypes/application-rss+xml.png share/icons/oxygen/128x128/mimetypes/application-rtf.png +share/icons/oxygen/128x128/mimetypes/application-vnd.ms-access.png share/icons/oxygen/128x128/mimetypes/application-vnd.ms-excel.png share/icons/oxygen/128x128/mimetypes/application-vnd.ms-powerpoint.png share/icons/oxygen/128x128/mimetypes/application-vnd.oasis.opendocument.chart.png @@ -902,7 +1009,9 @@ share/icons/oxygen/128x128/mimetypes/application-x-kontour.png share/icons/oxygen/128x128/mimetypes/application-x-krita.png share/icons/oxygen/128x128/mimetypes/application-x-kvtml.png share/icons/oxygen/128x128/mimetypes/application-x-lha.png +share/icons/oxygen/128x128/mimetypes/application-x-lzma-compressed-tar.png share/icons/oxygen/128x128/mimetypes/application-x-lzop.png +share/icons/oxygen/128x128/mimetypes/application-x-m4.png share/icons/oxygen/128x128/mimetypes/application-x-marble.png share/icons/oxygen/128x128/mimetypes/application-x-mimearchive.png share/icons/oxygen/128x128/mimetypes/application-x-mplayer2.png @@ -912,6 +1021,7 @@ share/icons/oxygen/128x128/mimetypes/application-x-mswrite.png share/icons/oxygen/128x128/mimetypes/application-x-nzb.png share/icons/oxygen/128x128/mimetypes/application-x-object.png share/icons/oxygen/128x128/mimetypes/application-x-pak.png +share/icons/oxygen/128x128/mimetypes/application-x-pem-key.png share/icons/oxygen/128x128/mimetypes/application-x-perl.png share/icons/oxygen/128x128/mimetypes/application-x-php.png share/icons/oxygen/128x128/mimetypes/application-x-plasma.png @@ -922,7 +1032,11 @@ share/icons/oxygen/128x128/mimetypes/application-x-rpm.png share/icons/oxygen/128x128/mimetypes/application-x-ruby.png share/icons/oxygen/128x128/mimetypes/application-x-sharedlib.png share/icons/oxygen/128x128/mimetypes/application-x-shellscript.png +share/icons/oxygen/128x128/mimetypes/application-x-shockwave-flash.png share/icons/oxygen/128x128/mimetypes/application-x-siag.png +share/icons/oxygen/128x128/mimetypes/application-x-smb-server.png +share/icons/oxygen/128x128/mimetypes/application-x-smb-workgroup.png +share/icons/oxygen/128x128/mimetypes/application-x-subrip.png share/icons/oxygen/128x128/mimetypes/application-x-tar.png share/icons/oxygen/128x128/mimetypes/application-x-tarz.png share/icons/oxygen/128x128/mimetypes/application-x-tgif.png @@ -956,6 +1070,7 @@ share/icons/oxygen/128x128/mimetypes/audio-x-mod.png share/icons/oxygen/128x128/mimetypes/audio-x-monkey.png share/icons/oxygen/128x128/mimetypes/audio-x-mp2.png share/icons/oxygen/128x128/mimetypes/audio-x-mpegurl.png +share/icons/oxygen/128x128/mimetypes/audio-x-ms-asx.png share/icons/oxygen/128x128/mimetypes/audio-x-ms-wma.png share/icons/oxygen/128x128/mimetypes/audio-x-musepack.png share/icons/oxygen/128x128/mimetypes/audio-x-pn-realaudio-plugin.png @@ -1020,25 +1135,35 @@ share/icons/oxygen/128x128/mimetypes/text-vcalendar.png share/icons/oxygen/128x128/mimetypes/text-vnd.abc.png share/icons/oxygen/128x128/mimetypes/text-vnd.wap.wml.png share/icons/oxygen/128x128/mimetypes/text-x-adasrc.png +share/icons/oxygen/128x128/mimetypes/text-x-authors.png share/icons/oxygen/128x128/mimetypes/text-x-bibtex.png share/icons/oxygen/128x128/mimetypes/text-x-c++hdr.png share/icons/oxygen/128x128/mimetypes/text-x-c++src.png +share/icons/oxygen/128x128/mimetypes/text-x-changelog.png share/icons/oxygen/128x128/mimetypes/text-x-chdr.png +share/icons/oxygen/128x128/mimetypes/text-x-cmake.png +share/icons/oxygen/128x128/mimetypes/text-x-copying.png share/icons/oxygen/128x128/mimetypes/text-x-csharp.png share/icons/oxygen/128x128/mimetypes/text-x-csrc.png share/icons/oxygen/128x128/mimetypes/text-x-dtd.png share/icons/oxygen/128x128/mimetypes/text-x-generic.png share/icons/oxygen/128x128/mimetypes/text-x-hex.png +share/icons/oxygen/128x128/mimetypes/text-x-install.png share/icons/oxygen/128x128/mimetypes/text-x-java.png share/icons/oxygen/128x128/mimetypes/text-x-katefilelist.png share/icons/oxygen/128x128/mimetypes/text-x-ldif.png +share/icons/oxygen/128x128/mimetypes/text-x-log.png share/icons/oxygen/128x128/mimetypes/text-x-makefile.png +share/icons/oxygen/128x128/mimetypes/text-x-nfo.png share/icons/oxygen/128x128/mimetypes/text-x-objchdr.png share/icons/oxygen/128x128/mimetypes/text-x-objcsrc.png share/icons/oxygen/128x128/mimetypes/text-x-pascal.png share/icons/oxygen/128x128/mimetypes/text-x-patch.png +share/icons/oxygen/128x128/mimetypes/text-x-po.png share/icons/oxygen/128x128/mimetypes/text-x-python.png +share/icons/oxygen/128x128/mimetypes/text-x-readme.png share/icons/oxygen/128x128/mimetypes/text-x-script.png +share/icons/oxygen/128x128/mimetypes/text-x-sql.png share/icons/oxygen/128x128/mimetypes/text-x-tcl.png share/icons/oxygen/128x128/mimetypes/text-x-tex.png share/icons/oxygen/128x128/mimetypes/text-x-texinfo.png @@ -1057,6 +1182,7 @@ share/icons/oxygen/128x128/mimetypes/video-mp4.png share/icons/oxygen/128x128/mimetypes/video-mpeg.png share/icons/oxygen/128x128/mimetypes/video-quicktime.png share/icons/oxygen/128x128/mimetypes/video-x-flic.png +share/icons/oxygen/128x128/mimetypes/video-x-flv.png share/icons/oxygen/128x128/mimetypes/video-x-generic.png share/icons/oxygen/128x128/mimetypes/video-x-matroska.png share/icons/oxygen/128x128/mimetypes/video-x-mng.png @@ -1072,6 +1198,7 @@ share/icons/oxygen/128x128/mimetypes/x-office-document.png share/icons/oxygen/128x128/mimetypes/x-office-spreadsheet.png share/icons/oxygen/128x128/places/document-multiple.png share/icons/oxygen/128x128/places/folder-blue.png +share/icons/oxygen/128x128/places/folder-bookmark.png share/icons/oxygen/128x128/places/folder-bookmarks.png share/icons/oxygen/128x128/places/folder-brown.png share/icons/oxygen/128x128/places/folder-cyan.png @@ -1116,6 +1243,30 @@ share/icons/oxygen/128x128/status/security-high.png share/icons/oxygen/128x128/status/security-low.png share/icons/oxygen/128x128/status/security-medium.png share/icons/oxygen/128x128/status/user-trash-full.png +share/icons/oxygen/128x128/status/weather-clear-night.png +share/icons/oxygen/128x128/status/weather-clear.png +share/icons/oxygen/128x128/status/weather-clouds-night.png +share/icons/oxygen/128x128/status/weather-clouds.png +share/icons/oxygen/128x128/status/weather-few-clouds-night.png +share/icons/oxygen/128x128/status/weather-few-clouds.png +share/icons/oxygen/128x128/status/weather-hail.png +share/icons/oxygen/128x128/status/weather-many-clouds.png +share/icons/oxygen/128x128/status/weather-mist.png +share/icons/oxygen/128x128/status/weather-none-available.png +share/icons/oxygen/128x128/status/weather-showers-day.png +share/icons/oxygen/128x128/status/weather-showers-night.png +share/icons/oxygen/128x128/status/weather-showers-scattered-day.png +share/icons/oxygen/128x128/status/weather-showers-scattered-night.png +share/icons/oxygen/128x128/status/weather-showers-scattered.png +share/icons/oxygen/128x128/status/weather-showers.png +share/icons/oxygen/128x128/status/weather-snow-rain.png +share/icons/oxygen/128x128/status/weather-snow-scattered-day.png +share/icons/oxygen/128x128/status/weather-snow-scattered-night.png +share/icons/oxygen/128x128/status/weather-snow-scattered.png +share/icons/oxygen/128x128/status/weather-snow.png +share/icons/oxygen/128x128/status/weather-storm-day.png +share/icons/oxygen/128x128/status/weather-storm-night.png +share/icons/oxygen/128x128/status/weather-storm.png share/icons/oxygen/16x16/actions/address-book-new.png share/icons/oxygen/16x16/actions/application-exit.png share/icons/oxygen/16x16/actions/appointment-new.png @@ -1137,6 +1288,9 @@ share/icons/oxygen/16x16/actions/bookmark-toolbar.png share/icons/oxygen/16x16/actions/bookmarks-organize.png share/icons/oxygen/16x16/actions/character-set.png share/icons/oxygen/16x16/actions/chronometer.png +share/icons/oxygen/16x16/actions/color-picker-black.png +share/icons/oxygen/16x16/actions/color-picker-grey.png +share/icons/oxygen/16x16/actions/color-picker-white.png share/icons/oxygen/16x16/actions/color-picker.png share/icons/oxygen/16x16/actions/configure-shortcuts.png share/icons/oxygen/16x16/actions/configure-toolbars.png @@ -1148,6 +1302,7 @@ share/icons/oxygen/16x16/actions/dialog-close.png share/icons/oxygen/16x16/actions/dialog-ok-apply.png share/icons/oxygen/16x16/actions/dialog-ok.png share/icons/oxygen/16x16/actions/document-decrypt.png +share/icons/oxygen/16x16/actions/document-edit.png share/icons/oxygen/16x16/actions/document-encrypt.png share/icons/oxygen/16x16/actions/document-export.png share/icons/oxygen/16x16/actions/document-import.png @@ -1239,17 +1394,21 @@ share/icons/oxygen/16x16/actions/get-hot-new-stuff.png share/icons/oxygen/16x16/actions/go-bottom.png share/icons/oxygen/16x16/actions/go-down-search.png share/icons/oxygen/16x16/actions/go-down.png -share/icons/oxygen/16x16/actions/go-first-page.png +share/icons/oxygen/16x16/actions/go-first-view-page.png +share/icons/oxygen/16x16/actions/go-first-view.png share/icons/oxygen/16x16/actions/go-first.png share/icons/oxygen/16x16/actions/go-home.png share/icons/oxygen/16x16/actions/go-jump-locationbar.png share/icons/oxygen/16x16/actions/go-jump-today.png share/icons/oxygen/16x16/actions/go-jump.png -share/icons/oxygen/16x16/actions/go-last-page.png +share/icons/oxygen/16x16/actions/go-last-view-page.png +share/icons/oxygen/16x16/actions/go-last-view.png share/icons/oxygen/16x16/actions/go-last.png -share/icons/oxygen/16x16/actions/go-next-page.png +share/icons/oxygen/16x16/actions/go-next-view-page.png +share/icons/oxygen/16x16/actions/go-next-view.png share/icons/oxygen/16x16/actions/go-next.png -share/icons/oxygen/16x16/actions/go-previous-page.png +share/icons/oxygen/16x16/actions/go-previous-view-page.png +share/icons/oxygen/16x16/actions/go-previous-view.png share/icons/oxygen/16x16/actions/go-previous.png share/icons/oxygen/16x16/actions/go-top.png share/icons/oxygen/16x16/actions/go-up-search.png @@ -1299,8 +1458,14 @@ share/icons/oxygen/16x16/actions/news-subscribe.png share/icons/oxygen/16x16/actions/news-unsubscribe.png share/icons/oxygen/16x16/actions/object-flip-horizontal.png share/icons/oxygen/16x16/actions/object-flip-vertical.png +share/icons/oxygen/16x16/actions/object-group.png +share/icons/oxygen/16x16/actions/object-order-back.png +share/icons/oxygen/16x16/actions/object-order-front.png +share/icons/oxygen/16x16/actions/object-order-lower.png +share/icons/oxygen/16x16/actions/object-order-raise.png share/icons/oxygen/16x16/actions/object-rotate-left.png share/icons/oxygen/16x16/actions/object-rotate-right.png +share/icons/oxygen/16x16/actions/object-ungroup.png share/icons/oxygen/16x16/actions/page-zoom.png share/icons/oxygen/16x16/actions/player-time.png share/icons/oxygen/16x16/actions/player-volume.png @@ -1330,16 +1495,20 @@ share/icons/oxygen/16x16/actions/tab-duplicate.png share/icons/oxygen/16x16/actions/tab-new-background.png share/icons/oxygen/16x16/actions/tab-new.png share/icons/oxygen/16x16/actions/text-speak.png +share/icons/oxygen/16x16/actions/tool-animator.png share/icons/oxygen/16x16/actions/tools-check-spelling.png share/icons/oxygen/16x16/actions/tools-media-optical-burn.png share/icons/oxygen/16x16/actions/tools-media-optical-copy.png share/icons/oxygen/16x16/actions/tools-report-bug.png share/icons/oxygen/16x16/actions/tools-wizard.png +share/icons/oxygen/16x16/actions/transform-crop-and-resize.png share/icons/oxygen/16x16/actions/transform-move.png share/icons/oxygen/16x16/actions/transform-rotate.png share/icons/oxygen/16x16/actions/transform-scale.png share/icons/oxygen/16x16/actions/trash-empty.png +share/icons/oxygen/16x16/actions/user-group-delete.png share/icons/oxygen/16x16/actions/user-group-new.png +share/icons/oxygen/16x16/actions/user-group-properties.png share/icons/oxygen/16x16/actions/user-properties.png share/icons/oxygen/16x16/actions/view-calendar-day.png share/icons/oxygen/16x16/actions/view-calendar-list.png @@ -1353,6 +1522,7 @@ share/icons/oxygen/16x16/actions/view-calendar-week.png share/icons/oxygen/16x16/actions/view-calendar-workweek.png share/icons/oxygen/16x16/actions/view-choose.png share/icons/oxygen/16x16/actions/view-close.png +share/icons/oxygen/16x16/actions/view-file-columns.png share/icons/oxygen/16x16/actions/view-filter.png share/icons/oxygen/16x16/actions/view-fullscreen.png share/icons/oxygen/16x16/actions/view-history.png @@ -1366,6 +1536,8 @@ share/icons/oxygen/16x16/actions/view-media-equalizer.png share/icons/oxygen/16x16/actions/view-media-lyrics.png share/icons/oxygen/16x16/actions/view-media-playlist.png share/icons/oxygen/16x16/actions/view-media-visualization.png +share/icons/oxygen/16x16/actions/view-object-histogram-linear.png +share/icons/oxygen/16x16/actions/view-object-histogram-logarithmic.png share/icons/oxygen/16x16/actions/view-pim-calendar.png share/icons/oxygen/16x16/actions/view-pim-contacts.png share/icons/oxygen/16x16/actions/view-pim-journal.png @@ -1426,17 +1598,16 @@ share/icons/oxygen/16x16/apps/internet-web-browser.png share/icons/oxygen/16x16/apps/java.png share/icons/oxygen/16x16/apps/k3b.png share/icons/oxygen/16x16/apps/kaffeine.png -share/icons/oxygen/16x16/apps/kate.png share/icons/oxygen/16x16/apps/kblogger.png share/icons/oxygen/16x16/apps/kbugbuster.png share/icons/oxygen/16x16/apps/kchart.png share/icons/oxygen/16x16/apps/kcolorchooser.png share/icons/oxygen/16x16/apps/kde.png share/icons/oxygen/16x16/apps/kexi.png -share/icons/oxygen/16x16/apps/kjots.png share/icons/oxygen/16x16/apps/kjournal.png share/icons/oxygen/16x16/apps/klipper.png share/icons/oxygen/16x16/apps/kmplayer.png +share/icons/oxygen/16x16/apps/knewsticker.png share/icons/oxygen/16x16/apps/knotes.png share/icons/oxygen/16x16/apps/kolf.png share/icons/oxygen/16x16/apps/konqueror.png @@ -1460,7 +1631,6 @@ share/icons/oxygen/16x16/apps/office-address-book.png share/icons/oxygen/16x16/apps/office-calendar.png share/icons/oxygen/16x16/apps/okteta.png share/icons/oxygen/16x16/apps/oxygen.png -share/icons/oxygen/16x16/apps/phonon-xine.png share/icons/oxygen/16x16/apps/plasma.png share/icons/oxygen/16x16/apps/plasmagik.png share/icons/oxygen/16x16/apps/preferences-contact-list.png @@ -1497,6 +1667,8 @@ share/icons/oxygen/16x16/apps/preferences-system-performance.png share/icons/oxygen/16x16/apps/preferences-system-power-management.png share/icons/oxygen/16x16/apps/preferences-system-session-services.png share/icons/oxygen/16x16/apps/preferences-system-time.png +share/icons/oxygen/16x16/apps/preferences-system-windows-actions.png +share/icons/oxygen/16x16/apps/preferences-system-windows-move.png share/icons/oxygen/16x16/apps/preferences-system-windows.png share/icons/oxygen/16x16/apps/preferences-web-browser-adblock.png share/icons/oxygen/16x16/apps/preferences-web-browser-cache.png @@ -1505,11 +1677,13 @@ share/icons/oxygen/16x16/apps/preferences-web-browser-identification.png share/icons/oxygen/16x16/apps/preferences-web-browser-shortcuts.png share/icons/oxygen/16x16/apps/preferences-web-browser-stylesheets.png share/icons/oxygen/16x16/apps/scribus.png +share/icons/oxygen/16x16/apps/semn.png share/icons/oxygen/16x16/apps/strigi.png share/icons/oxygen/16x16/apps/system-file-manager.png share/icons/oxygen/16x16/apps/system-software-update.png share/icons/oxygen/16x16/apps/system-users.png share/icons/oxygen/16x16/apps/tagua.png +share/icons/oxygen/16x16/apps/utilities-desktop-extra.png share/icons/oxygen/16x16/apps/utilities-file-archiver.png share/icons/oxygen/16x16/apps/utilities-log-viewer.png share/icons/oxygen/16x16/apps/utilities-system-monitor.png @@ -1575,6 +1749,7 @@ share/icons/oxygen/16x16/devices/multimedia-player.png share/icons/oxygen/16x16/devices/network-wired.png share/icons/oxygen/16x16/devices/network-wireless.png share/icons/oxygen/16x16/devices/pda.png +share/icons/oxygen/16x16/devices/phone-openmoko-freerunner.png share/icons/oxygen/16x16/devices/phone.png share/icons/oxygen/16x16/devices/printer.png share/icons/oxygen/16x16/devices/scanner.png @@ -1596,7 +1771,9 @@ share/icons/oxygen/16x16/emotes/face-smile-big.png share/icons/oxygen/16x16/emotes/face-smile.png share/icons/oxygen/16x16/emotes/face-surprise.png share/icons/oxygen/16x16/emotes/face-uncertain.png +share/icons/oxygen/16x16/emotes/face-wink.png share/icons/oxygen/16x16/mimetypes/application-illustrator.png +share/icons/oxygen/16x16/mimetypes/application-javascript.png share/icons/oxygen/16x16/mimetypes/application-msword.png share/icons/oxygen/16x16/mimetypes/application-octet-stream.png share/icons/oxygen/16x16/mimetypes/application-pdf.png @@ -1608,6 +1785,7 @@ share/icons/oxygen/16x16/mimetypes/application-pkcs7-signature.png share/icons/oxygen/16x16/mimetypes/application-relaxng.png share/icons/oxygen/16x16/mimetypes/application-rss+xml.png share/icons/oxygen/16x16/mimetypes/application-rtf.png +share/icons/oxygen/16x16/mimetypes/application-vnd.ms-access.png share/icons/oxygen/16x16/mimetypes/application-vnd.ms-excel.png share/icons/oxygen/16x16/mimetypes/application-vnd.ms-powerpoint.png share/icons/oxygen/16x16/mimetypes/application-vnd.oasis.opendocument.chart.png @@ -1671,7 +1849,9 @@ share/icons/oxygen/16x16/mimetypes/application-x-kontour.png share/icons/oxygen/16x16/mimetypes/application-x-krita.png share/icons/oxygen/16x16/mimetypes/application-x-kvtml.png share/icons/oxygen/16x16/mimetypes/application-x-lha.png +share/icons/oxygen/16x16/mimetypes/application-x-lzma-compressed-tar.png share/icons/oxygen/16x16/mimetypes/application-x-lzop.png +share/icons/oxygen/16x16/mimetypes/application-x-m4.png share/icons/oxygen/16x16/mimetypes/application-x-marble.png share/icons/oxygen/16x16/mimetypes/application-x-mimearchive.png share/icons/oxygen/16x16/mimetypes/application-x-mplayer2.png @@ -1681,6 +1861,7 @@ share/icons/oxygen/16x16/mimetypes/application-x-mswrite.png share/icons/oxygen/16x16/mimetypes/application-x-nzb.png share/icons/oxygen/16x16/mimetypes/application-x-object.png share/icons/oxygen/16x16/mimetypes/application-x-pak.png +share/icons/oxygen/16x16/mimetypes/application-x-pem-key.png share/icons/oxygen/16x16/mimetypes/application-x-perl.png share/icons/oxygen/16x16/mimetypes/application-x-php.png share/icons/oxygen/16x16/mimetypes/application-x-plasma.png @@ -1691,7 +1872,11 @@ share/icons/oxygen/16x16/mimetypes/application-x-rpm.png share/icons/oxygen/16x16/mimetypes/application-x-ruby.png share/icons/oxygen/16x16/mimetypes/application-x-sharedlib.png share/icons/oxygen/16x16/mimetypes/application-x-shellscript.png +share/icons/oxygen/16x16/mimetypes/application-x-shockwave-flash.png share/icons/oxygen/16x16/mimetypes/application-x-siag.png +share/icons/oxygen/16x16/mimetypes/application-x-smb-server.png +share/icons/oxygen/16x16/mimetypes/application-x-smb-workgroup.png +share/icons/oxygen/16x16/mimetypes/application-x-subrip.png share/icons/oxygen/16x16/mimetypes/application-x-tar.png share/icons/oxygen/16x16/mimetypes/application-x-tarz.png share/icons/oxygen/16x16/mimetypes/application-x-tgif.png @@ -1725,6 +1910,7 @@ share/icons/oxygen/16x16/mimetypes/audio-x-mod.png share/icons/oxygen/16x16/mimetypes/audio-x-monkey.png share/icons/oxygen/16x16/mimetypes/audio-x-mp2.png share/icons/oxygen/16x16/mimetypes/audio-x-mpegurl.png +share/icons/oxygen/16x16/mimetypes/audio-x-ms-asx.png share/icons/oxygen/16x16/mimetypes/audio-x-ms-wma.png share/icons/oxygen/16x16/mimetypes/audio-x-musepack.png share/icons/oxygen/16x16/mimetypes/audio-x-pn-realaudio-plugin.png @@ -1789,25 +1975,35 @@ share/icons/oxygen/16x16/mimetypes/text-vcalendar.png share/icons/oxygen/16x16/mimetypes/text-vnd.abc.png share/icons/oxygen/16x16/mimetypes/text-vnd.wap.wml.png share/icons/oxygen/16x16/mimetypes/text-x-adasrc.png +share/icons/oxygen/16x16/mimetypes/text-x-authors.png share/icons/oxygen/16x16/mimetypes/text-x-bibtex.png share/icons/oxygen/16x16/mimetypes/text-x-c++hdr.png share/icons/oxygen/16x16/mimetypes/text-x-c++src.png +share/icons/oxygen/16x16/mimetypes/text-x-changelog.png share/icons/oxygen/16x16/mimetypes/text-x-chdr.png +share/icons/oxygen/16x16/mimetypes/text-x-cmake.png +share/icons/oxygen/16x16/mimetypes/text-x-copying.png share/icons/oxygen/16x16/mimetypes/text-x-csharp.png share/icons/oxygen/16x16/mimetypes/text-x-csrc.png share/icons/oxygen/16x16/mimetypes/text-x-dtd.png share/icons/oxygen/16x16/mimetypes/text-x-generic.png share/icons/oxygen/16x16/mimetypes/text-x-hex.png +share/icons/oxygen/16x16/mimetypes/text-x-install.png share/icons/oxygen/16x16/mimetypes/text-x-java.png share/icons/oxygen/16x16/mimetypes/text-x-katefilelist.png share/icons/oxygen/16x16/mimetypes/text-x-ldif.png +share/icons/oxygen/16x16/mimetypes/text-x-log.png share/icons/oxygen/16x16/mimetypes/text-x-makefile.png +share/icons/oxygen/16x16/mimetypes/text-x-nfo.png share/icons/oxygen/16x16/mimetypes/text-x-objchdr.png share/icons/oxygen/16x16/mimetypes/text-x-objcsrc.png share/icons/oxygen/16x16/mimetypes/text-x-pascal.png share/icons/oxygen/16x16/mimetypes/text-x-patch.png +share/icons/oxygen/16x16/mimetypes/text-x-po.png share/icons/oxygen/16x16/mimetypes/text-x-python.png +share/icons/oxygen/16x16/mimetypes/text-x-readme.png share/icons/oxygen/16x16/mimetypes/text-x-script.png +share/icons/oxygen/16x16/mimetypes/text-x-sql.png share/icons/oxygen/16x16/mimetypes/text-x-tcl.png share/icons/oxygen/16x16/mimetypes/text-x-tex.png share/icons/oxygen/16x16/mimetypes/text-x-texinfo.png @@ -1826,6 +2022,7 @@ share/icons/oxygen/16x16/mimetypes/video-mp4.png share/icons/oxygen/16x16/mimetypes/video-mpeg.png share/icons/oxygen/16x16/mimetypes/video-quicktime.png share/icons/oxygen/16x16/mimetypes/video-x-flic.png +share/icons/oxygen/16x16/mimetypes/video-x-flv.png share/icons/oxygen/16x16/mimetypes/video-x-generic.png share/icons/oxygen/16x16/mimetypes/video-x-matroska.png share/icons/oxygen/16x16/mimetypes/video-x-mng.png @@ -1845,6 +2042,7 @@ share/icons/oxygen/16x16/places/bookmarks.png share/icons/oxygen/16x16/places/document-multiple.png share/icons/oxygen/16x16/places/favorites.png share/icons/oxygen/16x16/places/folder-blue.png +share/icons/oxygen/16x16/places/folder-bookmark.png share/icons/oxygen/16x16/places/folder-bookmarks.png share/icons/oxygen/16x16/places/folder-brown.png share/icons/oxygen/16x16/places/folder-cyan.png @@ -1880,6 +2078,10 @@ share/icons/oxygen/16x16/places/user-desktop.png share/icons/oxygen/16x16/places/user-home.png share/icons/oxygen/16x16/places/user-identity.png share/icons/oxygen/16x16/places/user-trash.png +share/icons/oxygen/16x16/status/audio-volume-high.png +share/icons/oxygen/16x16/status/audio-volume-low.png +share/icons/oxygen/16x16/status/audio-volume-medium.png +share/icons/oxygen/16x16/status/audio-volume-muted.png share/icons/oxygen/16x16/status/battery-040.png share/icons/oxygen/16x16/status/battery-060.png share/icons/oxygen/16x16/status/battery-080.png @@ -1925,6 +2127,27 @@ share/icons/oxygen/16x16/status/user-online.png share/icons/oxygen/16x16/status/user-trash-full.png share/icons/oxygen/16x16/status/wallet-closed.png share/icons/oxygen/16x16/status/wallet-open.png +share/icons/oxygen/16x16/status/weather-clear-night.png +share/icons/oxygen/16x16/status/weather-clear.png +share/icons/oxygen/16x16/status/weather-clouds-night.png +share/icons/oxygen/16x16/status/weather-clouds.png +share/icons/oxygen/16x16/status/weather-few-clouds-night.png +share/icons/oxygen/16x16/status/weather-few-clouds.png +share/icons/oxygen/16x16/status/weather-hail.png +share/icons/oxygen/16x16/status/weather-many-clouds.png +share/icons/oxygen/16x16/status/weather-mist.png +share/icons/oxygen/16x16/status/weather-showers-day.png +share/icons/oxygen/16x16/status/weather-showers-night.png +share/icons/oxygen/16x16/status/weather-showers-scattered-day.png +share/icons/oxygen/16x16/status/weather-showers-scattered-night.png +share/icons/oxygen/16x16/status/weather-showers-scattered.png +share/icons/oxygen/16x16/status/weather-showers.png +share/icons/oxygen/16x16/status/weather-snow-rain.png +share/icons/oxygen/16x16/status/weather-snow-scattered-day.png +share/icons/oxygen/16x16/status/weather-snow-scattered-night.png +share/icons/oxygen/16x16/status/weather-snow-scattered.png +share/icons/oxygen/16x16/status/weather-snow.png +share/icons/oxygen/16x16/status/weather-storm.png share/icons/oxygen/16x16/status/window-suppressed.png share/icons/oxygen/22x22/actions/address-book-new.png share/icons/oxygen/22x22/actions/application-exit.png @@ -1947,6 +2170,9 @@ share/icons/oxygen/22x22/actions/bookmark-toolbar.png share/icons/oxygen/22x22/actions/bookmarks-organize.png share/icons/oxygen/22x22/actions/character-set.png share/icons/oxygen/22x22/actions/chronometer.png +share/icons/oxygen/22x22/actions/color-picker-black.png +share/icons/oxygen/22x22/actions/color-picker-grey.png +share/icons/oxygen/22x22/actions/color-picker-white.png share/icons/oxygen/22x22/actions/color-picker.png share/icons/oxygen/22x22/actions/configure-shortcuts.png share/icons/oxygen/22x22/actions/configure-toolbars.png @@ -1958,6 +2184,7 @@ share/icons/oxygen/22x22/actions/dialog-close.png share/icons/oxygen/22x22/actions/dialog-ok-apply.png share/icons/oxygen/22x22/actions/dialog-ok.png share/icons/oxygen/22x22/actions/document-decrypt.png +share/icons/oxygen/22x22/actions/document-edit.png share/icons/oxygen/22x22/actions/document-encrypt.png share/icons/oxygen/22x22/actions/document-export.png share/icons/oxygen/22x22/actions/document-import.png @@ -2048,17 +2275,21 @@ share/icons/oxygen/22x22/actions/get-hot-new-stuff.png share/icons/oxygen/22x22/actions/go-bottom.png share/icons/oxygen/22x22/actions/go-down-search.png share/icons/oxygen/22x22/actions/go-down.png -share/icons/oxygen/22x22/actions/go-first-page.png +share/icons/oxygen/22x22/actions/go-first-view-page.png +share/icons/oxygen/22x22/actions/go-first-view.png share/icons/oxygen/22x22/actions/go-first.png share/icons/oxygen/22x22/actions/go-home.png share/icons/oxygen/22x22/actions/go-jump-locationbar.png share/icons/oxygen/22x22/actions/go-jump-today.png share/icons/oxygen/22x22/actions/go-jump.png -share/icons/oxygen/22x22/actions/go-last-page.png +share/icons/oxygen/22x22/actions/go-last-view-page.png +share/icons/oxygen/22x22/actions/go-last-view.png share/icons/oxygen/22x22/actions/go-last.png -share/icons/oxygen/22x22/actions/go-next-page.png +share/icons/oxygen/22x22/actions/go-next-view-page.png +share/icons/oxygen/22x22/actions/go-next-view.png share/icons/oxygen/22x22/actions/go-next.png -share/icons/oxygen/22x22/actions/go-previous-page.png +share/icons/oxygen/22x22/actions/go-previous-view-page.png +share/icons/oxygen/22x22/actions/go-previous-view.png share/icons/oxygen/22x22/actions/go-previous.png share/icons/oxygen/22x22/actions/go-top.png share/icons/oxygen/22x22/actions/go-up-search.png @@ -2138,16 +2369,20 @@ share/icons/oxygen/22x22/actions/tab-duplicate.png share/icons/oxygen/22x22/actions/tab-new-background.png share/icons/oxygen/22x22/actions/tab-new.png share/icons/oxygen/22x22/actions/text-speak.png +share/icons/oxygen/22x22/actions/tool-animator.png share/icons/oxygen/22x22/actions/tools-check-spelling.png share/icons/oxygen/22x22/actions/tools-media-optical-burn.png share/icons/oxygen/22x22/actions/tools-media-optical-copy.png share/icons/oxygen/22x22/actions/tools-report-bug.png share/icons/oxygen/22x22/actions/tools-wizard.png +share/icons/oxygen/22x22/actions/transform-crop-and-resize.png share/icons/oxygen/22x22/actions/transform-move.png share/icons/oxygen/22x22/actions/transform-rotate.png share/icons/oxygen/22x22/actions/transform-scale.png share/icons/oxygen/22x22/actions/trash-empty.png +share/icons/oxygen/22x22/actions/user-group-delete.png share/icons/oxygen/22x22/actions/user-group-new.png +share/icons/oxygen/22x22/actions/user-group-properties.png share/icons/oxygen/22x22/actions/user-properties.png share/icons/oxygen/22x22/actions/view-calendar-day.png share/icons/oxygen/22x22/actions/view-calendar-list.png @@ -2161,6 +2396,7 @@ share/icons/oxygen/22x22/actions/view-calendar-week.png share/icons/oxygen/22x22/actions/view-calendar-workweek.png share/icons/oxygen/22x22/actions/view-choose.png share/icons/oxygen/22x22/actions/view-close.png +share/icons/oxygen/22x22/actions/view-file-columns.png share/icons/oxygen/22x22/actions/view-filter.png share/icons/oxygen/22x22/actions/view-fullscreen.png share/icons/oxygen/22x22/actions/view-history.png @@ -2174,6 +2410,8 @@ share/icons/oxygen/22x22/actions/view-media-equalizer.png share/icons/oxygen/22x22/actions/view-media-lyrics.png share/icons/oxygen/22x22/actions/view-media-playlist.png share/icons/oxygen/22x22/actions/view-media-visualization.png +share/icons/oxygen/22x22/actions/view-object-histogram-linear.png +share/icons/oxygen/22x22/actions/view-object-histogram-logarithmic.png share/icons/oxygen/22x22/actions/view-pim-calendar.png share/icons/oxygen/22x22/actions/view-pim-contacts.png share/icons/oxygen/22x22/actions/view-pim-journal.png @@ -2199,6 +2437,7 @@ share/icons/oxygen/22x22/actions/view-sort-descending.png share/icons/oxygen/22x22/actions/view-split-left-right.png share/icons/oxygen/22x22/actions/view-split-top-bottom.png share/icons/oxygen/22x22/actions/view-statistics.png +share/icons/oxygen/22x22/actions/view-table-of-contents-ltr.png share/icons/oxygen/22x22/actions/view-table-of-contents-rtl.png share/icons/oxygen/22x22/actions/view-web-browser-dom-tree.png share/icons/oxygen/22x22/actions/window-close.png @@ -2236,14 +2475,12 @@ share/icons/oxygen/22x22/apps/internet-web-browser.png share/icons/oxygen/22x22/apps/java.png share/icons/oxygen/22x22/apps/k3b.png share/icons/oxygen/22x22/apps/kaffeine.png -share/icons/oxygen/22x22/apps/kate.png share/icons/oxygen/22x22/apps/kblogger.png share/icons/oxygen/22x22/apps/kbugbuster.png share/icons/oxygen/22x22/apps/kchart.png share/icons/oxygen/22x22/apps/kcolorchooser.png share/icons/oxygen/22x22/apps/kde.png share/icons/oxygen/22x22/apps/kexi.png -share/icons/oxygen/22x22/apps/kjots.png share/icons/oxygen/22x22/apps/kjournal.png share/icons/oxygen/22x22/apps/klipper.png share/icons/oxygen/22x22/apps/kmplayer.png @@ -2270,7 +2507,6 @@ share/icons/oxygen/22x22/apps/office-address-book.png share/icons/oxygen/22x22/apps/office-calendar.png share/icons/oxygen/22x22/apps/okteta.png share/icons/oxygen/22x22/apps/oxygen.png -share/icons/oxygen/22x22/apps/phonon-xine.png share/icons/oxygen/22x22/apps/plasma.png share/icons/oxygen/22x22/apps/plasmagik.png share/icons/oxygen/22x22/apps/preferences-contact-list.png @@ -2307,6 +2543,8 @@ share/icons/oxygen/22x22/apps/preferences-system-performance.png share/icons/oxygen/22x22/apps/preferences-system-power-management.png share/icons/oxygen/22x22/apps/preferences-system-session-services.png share/icons/oxygen/22x22/apps/preferences-system-time.png +share/icons/oxygen/22x22/apps/preferences-system-windows-actions.png +share/icons/oxygen/22x22/apps/preferences-system-windows-move.png share/icons/oxygen/22x22/apps/preferences-system-windows.png share/icons/oxygen/22x22/apps/preferences-web-browser-adblock.png share/icons/oxygen/22x22/apps/preferences-web-browser-cache.png @@ -2314,11 +2552,13 @@ share/icons/oxygen/22x22/apps/preferences-web-browser-cookies.png share/icons/oxygen/22x22/apps/preferences-web-browser-shortcuts.png share/icons/oxygen/22x22/apps/preferences-web-browser-stylesheets.png share/icons/oxygen/22x22/apps/scribus.png +share/icons/oxygen/22x22/apps/semn.png share/icons/oxygen/22x22/apps/strigi.png share/icons/oxygen/22x22/apps/system-file-manager.png share/icons/oxygen/22x22/apps/system-software-update.png share/icons/oxygen/22x22/apps/system-users.png share/icons/oxygen/22x22/apps/tagua.png +share/icons/oxygen/22x22/apps/utilities-desktop-extra.png share/icons/oxygen/22x22/apps/utilities-file-archiver.png share/icons/oxygen/22x22/apps/utilities-log-viewer.png share/icons/oxygen/22x22/apps/utilities-system-monitor.png @@ -2384,6 +2624,7 @@ share/icons/oxygen/22x22/devices/multimedia-player.png share/icons/oxygen/22x22/devices/network-wired.png share/icons/oxygen/22x22/devices/network-wireless.png share/icons/oxygen/22x22/devices/pda.png +share/icons/oxygen/22x22/devices/phone-openmoko-freerunner.png share/icons/oxygen/22x22/devices/phone.png share/icons/oxygen/22x22/devices/printer.png share/icons/oxygen/22x22/devices/scanner.png @@ -2415,6 +2656,7 @@ share/icons/oxygen/22x22/emotes/face-surprise.png share/icons/oxygen/22x22/emotes/face-uncertain.png share/icons/oxygen/22x22/emotes/face-wink.png share/icons/oxygen/22x22/mimetypes/application-illustrator.png +share/icons/oxygen/22x22/mimetypes/application-javascript.png share/icons/oxygen/22x22/mimetypes/application-msword.png share/icons/oxygen/22x22/mimetypes/application-octet-stream.png share/icons/oxygen/22x22/mimetypes/application-pdf.png @@ -2427,6 +2669,7 @@ share/icons/oxygen/22x22/mimetypes/application-postscript.png share/icons/oxygen/22x22/mimetypes/application-relaxng.png share/icons/oxygen/22x22/mimetypes/application-rss+xml.png share/icons/oxygen/22x22/mimetypes/application-rtf.png +share/icons/oxygen/22x22/mimetypes/application-vnd.ms-access.png share/icons/oxygen/22x22/mimetypes/application-vnd.ms-excel.png share/icons/oxygen/22x22/mimetypes/application-vnd.ms-powerpoint.png share/icons/oxygen/22x22/mimetypes/application-vnd.oasis.opendocument.chart.png @@ -2491,7 +2734,9 @@ share/icons/oxygen/22x22/mimetypes/application-x-kontour.png share/icons/oxygen/22x22/mimetypes/application-x-krita.png share/icons/oxygen/22x22/mimetypes/application-x-kvtml.png share/icons/oxygen/22x22/mimetypes/application-x-lha.png +share/icons/oxygen/22x22/mimetypes/application-x-lzma-compressed-tar.png share/icons/oxygen/22x22/mimetypes/application-x-lzop.png +share/icons/oxygen/22x22/mimetypes/application-x-m4.png share/icons/oxygen/22x22/mimetypes/application-x-marble.png share/icons/oxygen/22x22/mimetypes/application-x-mimearchive.png share/icons/oxygen/22x22/mimetypes/application-x-mplayer2.png @@ -2501,6 +2746,7 @@ share/icons/oxygen/22x22/mimetypes/application-x-mswrite.png share/icons/oxygen/22x22/mimetypes/application-x-nzb.png share/icons/oxygen/22x22/mimetypes/application-x-object.png share/icons/oxygen/22x22/mimetypes/application-x-pak.png +share/icons/oxygen/22x22/mimetypes/application-x-pem-key.png share/icons/oxygen/22x22/mimetypes/application-x-perl.png share/icons/oxygen/22x22/mimetypes/application-x-php.png share/icons/oxygen/22x22/mimetypes/application-x-plasma.png @@ -2511,7 +2757,11 @@ share/icons/oxygen/22x22/mimetypes/application-x-rpm.png share/icons/oxygen/22x22/mimetypes/application-x-ruby.png share/icons/oxygen/22x22/mimetypes/application-x-sharedlib.png share/icons/oxygen/22x22/mimetypes/application-x-shellscript.png +share/icons/oxygen/22x22/mimetypes/application-x-shockwave-flash.png share/icons/oxygen/22x22/mimetypes/application-x-siag.png +share/icons/oxygen/22x22/mimetypes/application-x-smb-server.png +share/icons/oxygen/22x22/mimetypes/application-x-smb-workgroup.png +share/icons/oxygen/22x22/mimetypes/application-x-subrip.png share/icons/oxygen/22x22/mimetypes/application-x-tar.png share/icons/oxygen/22x22/mimetypes/application-x-tarz.png share/icons/oxygen/22x22/mimetypes/application-x-tgif.png @@ -2545,6 +2795,7 @@ share/icons/oxygen/22x22/mimetypes/audio-x-mod.png share/icons/oxygen/22x22/mimetypes/audio-x-monkey.png share/icons/oxygen/22x22/mimetypes/audio-x-mp2.png share/icons/oxygen/22x22/mimetypes/audio-x-mpegurl.png +share/icons/oxygen/22x22/mimetypes/audio-x-ms-asx.png share/icons/oxygen/22x22/mimetypes/audio-x-ms-wma.png share/icons/oxygen/22x22/mimetypes/audio-x-musepack.png share/icons/oxygen/22x22/mimetypes/audio-x-pn-realaudio-plugin.png @@ -2609,25 +2860,35 @@ share/icons/oxygen/22x22/mimetypes/text-vcalendar.png share/icons/oxygen/22x22/mimetypes/text-vnd.abc.png share/icons/oxygen/22x22/mimetypes/text-vnd.wap.wml.png share/icons/oxygen/22x22/mimetypes/text-x-adasrc.png +share/icons/oxygen/22x22/mimetypes/text-x-authors.png share/icons/oxygen/22x22/mimetypes/text-x-bibtex.png share/icons/oxygen/22x22/mimetypes/text-x-c++hdr.png share/icons/oxygen/22x22/mimetypes/text-x-c++src.png +share/icons/oxygen/22x22/mimetypes/text-x-changelog.png share/icons/oxygen/22x22/mimetypes/text-x-chdr.png +share/icons/oxygen/22x22/mimetypes/text-x-cmake.png +share/icons/oxygen/22x22/mimetypes/text-x-copying.png share/icons/oxygen/22x22/mimetypes/text-x-csharp.png share/icons/oxygen/22x22/mimetypes/text-x-csrc.png share/icons/oxygen/22x22/mimetypes/text-x-dtd.png share/icons/oxygen/22x22/mimetypes/text-x-generic.png share/icons/oxygen/22x22/mimetypes/text-x-hex.png +share/icons/oxygen/22x22/mimetypes/text-x-install.png share/icons/oxygen/22x22/mimetypes/text-x-java.png share/icons/oxygen/22x22/mimetypes/text-x-katefilelist.png share/icons/oxygen/22x22/mimetypes/text-x-ldif.png +share/icons/oxygen/22x22/mimetypes/text-x-log.png share/icons/oxygen/22x22/mimetypes/text-x-makefile.png +share/icons/oxygen/22x22/mimetypes/text-x-nfo.png share/icons/oxygen/22x22/mimetypes/text-x-objchdr.png share/icons/oxygen/22x22/mimetypes/text-x-objcsrc.png share/icons/oxygen/22x22/mimetypes/text-x-pascal.png share/icons/oxygen/22x22/mimetypes/text-x-patch.png +share/icons/oxygen/22x22/mimetypes/text-x-po.png share/icons/oxygen/22x22/mimetypes/text-x-python.png +share/icons/oxygen/22x22/mimetypes/text-x-readme.png share/icons/oxygen/22x22/mimetypes/text-x-script.png +share/icons/oxygen/22x22/mimetypes/text-x-sql.png share/icons/oxygen/22x22/mimetypes/text-x-tcl.png share/icons/oxygen/22x22/mimetypes/text-x-tex.png share/icons/oxygen/22x22/mimetypes/text-x-texinfo.png @@ -2646,6 +2907,7 @@ share/icons/oxygen/22x22/mimetypes/video-mp4.png share/icons/oxygen/22x22/mimetypes/video-mpeg.png share/icons/oxygen/22x22/mimetypes/video-quicktime.png share/icons/oxygen/22x22/mimetypes/video-x-flic.png +share/icons/oxygen/22x22/mimetypes/video-x-flv.png share/icons/oxygen/22x22/mimetypes/video-x-generic.png share/icons/oxygen/22x22/mimetypes/video-x-matroska.png share/icons/oxygen/22x22/mimetypes/video-x-mng.png @@ -2665,6 +2927,7 @@ share/icons/oxygen/22x22/places/bookmarks.png share/icons/oxygen/22x22/places/document-multiple.png share/icons/oxygen/22x22/places/favorites.png share/icons/oxygen/22x22/places/folder-blue.png +share/icons/oxygen/22x22/places/folder-bookmark.png share/icons/oxygen/22x22/places/folder-bookmarks.png share/icons/oxygen/22x22/places/folder-brown.png share/icons/oxygen/22x22/places/folder-cyan.png @@ -2749,8 +3012,28 @@ share/icons/oxygen/22x22/status/user-online.png share/icons/oxygen/22x22/status/user-trash-full.png share/icons/oxygen/22x22/status/wallet-closed.png share/icons/oxygen/22x22/status/wallet-open.png +share/icons/oxygen/22x22/status/weather-clear-night.png +share/icons/oxygen/22x22/status/weather-clear.png +share/icons/oxygen/22x22/status/weather-clouds-night.png +share/icons/oxygen/22x22/status/weather-clouds.png +share/icons/oxygen/22x22/status/weather-few-clouds-night.png +share/icons/oxygen/22x22/status/weather-few-clouds.png +share/icons/oxygen/22x22/status/weather-hail.png +share/icons/oxygen/22x22/status/weather-many-clouds.png +share/icons/oxygen/22x22/status/weather-mist.png +share/icons/oxygen/22x22/status/weather-showers-day.png +share/icons/oxygen/22x22/status/weather-showers-night.png +share/icons/oxygen/22x22/status/weather-showers-scattered-day.png +share/icons/oxygen/22x22/status/weather-showers-scattered-night.png +share/icons/oxygen/22x22/status/weather-showers-scattered.png +share/icons/oxygen/22x22/status/weather-showers.png +share/icons/oxygen/22x22/status/weather-snow-rain.png +share/icons/oxygen/22x22/status/weather-snow-scattered-day.png +share/icons/oxygen/22x22/status/weather-snow-scattered-night.png +share/icons/oxygen/22x22/status/weather-snow-scattered.png +share/icons/oxygen/22x22/status/weather-snow.png +share/icons/oxygen/22x22/status/weather-storm.png share/icons/oxygen/22x22/status/window-suppressed.png -share/icons/oxygen/22x22/view-table-of-contents-ltr.png share/icons/oxygen/32x32/actions/address-book-new.png share/icons/oxygen/32x32/actions/application-exit.png share/icons/oxygen/32x32/actions/appointment-new.png @@ -2772,6 +3055,9 @@ share/icons/oxygen/32x32/actions/bookmark-toolbar.png share/icons/oxygen/32x32/actions/bookmarks-organize.png share/icons/oxygen/32x32/actions/character-set.png share/icons/oxygen/32x32/actions/chronometer.png +share/icons/oxygen/32x32/actions/color-picker-black.png +share/icons/oxygen/32x32/actions/color-picker-grey.png +share/icons/oxygen/32x32/actions/color-picker-white.png share/icons/oxygen/32x32/actions/color-picker.png share/icons/oxygen/32x32/actions/configure-shortcuts.png share/icons/oxygen/32x32/actions/configure-toolbars.png @@ -2783,6 +3069,7 @@ share/icons/oxygen/32x32/actions/dialog-close.png share/icons/oxygen/32x32/actions/dialog-ok-apply.png share/icons/oxygen/32x32/actions/dialog-ok.png share/icons/oxygen/32x32/actions/document-decrypt.png +share/icons/oxygen/32x32/actions/document-edit.png share/icons/oxygen/32x32/actions/document-encrypt.png share/icons/oxygen/32x32/actions/document-export.png share/icons/oxygen/32x32/actions/document-import.png @@ -2825,6 +3112,7 @@ share/icons/oxygen/32x32/actions/edit-rename.png share/icons/oxygen/32x32/actions/edit-select-all.png share/icons/oxygen/32x32/actions/edit-undo.png share/icons/oxygen/32x32/actions/feed-subscribe.png +share/icons/oxygen/32x32/actions/fileview-preview.png share/icons/oxygen/32x32/actions/fill-color.png share/icons/oxygen/32x32/actions/flag-black.png share/icons/oxygen/32x32/actions/flag-blue.png @@ -2873,17 +3161,21 @@ share/icons/oxygen/32x32/actions/get-hot-new-stuff.png share/icons/oxygen/32x32/actions/go-bottom.png share/icons/oxygen/32x32/actions/go-down-search.png share/icons/oxygen/32x32/actions/go-down.png -share/icons/oxygen/32x32/actions/go-first-page.png +share/icons/oxygen/32x32/actions/go-first-view-page.png +share/icons/oxygen/32x32/actions/go-first-view.png share/icons/oxygen/32x32/actions/go-first.png share/icons/oxygen/32x32/actions/go-home.png share/icons/oxygen/32x32/actions/go-jump-locationbar.png share/icons/oxygen/32x32/actions/go-jump-today.png share/icons/oxygen/32x32/actions/go-jump.png -share/icons/oxygen/32x32/actions/go-last-page.png +share/icons/oxygen/32x32/actions/go-last-view-page.png +share/icons/oxygen/32x32/actions/go-last-view.png share/icons/oxygen/32x32/actions/go-last.png -share/icons/oxygen/32x32/actions/go-next-page.png +share/icons/oxygen/32x32/actions/go-next-view-page.png +share/icons/oxygen/32x32/actions/go-next-view.png share/icons/oxygen/32x32/actions/go-next.png -share/icons/oxygen/32x32/actions/go-previous-page.png +share/icons/oxygen/32x32/actions/go-previous-view-page.png +share/icons/oxygen/32x32/actions/go-previous-view.png share/icons/oxygen/32x32/actions/go-previous.png share/icons/oxygen/32x32/actions/go-top.png share/icons/oxygen/32x32/actions/go-up-search.png @@ -2964,16 +3256,20 @@ share/icons/oxygen/32x32/actions/tab-duplicate.png share/icons/oxygen/32x32/actions/tab-new-background.png share/icons/oxygen/32x32/actions/tab-new.png share/icons/oxygen/32x32/actions/text-speak.png +share/icons/oxygen/32x32/actions/tool-animator.png share/icons/oxygen/32x32/actions/tools-check-spelling.png share/icons/oxygen/32x32/actions/tools-media-optical-burn.png share/icons/oxygen/32x32/actions/tools-media-optical-copy.png share/icons/oxygen/32x32/actions/tools-report-bug.png share/icons/oxygen/32x32/actions/tools-wizard.png +share/icons/oxygen/32x32/actions/transform-crop-and-resize.png share/icons/oxygen/32x32/actions/transform-move.png share/icons/oxygen/32x32/actions/transform-rotate.png share/icons/oxygen/32x32/actions/transform-scale.png share/icons/oxygen/32x32/actions/trash-empty.png +share/icons/oxygen/32x32/actions/user-group-delete.png share/icons/oxygen/32x32/actions/user-group-new.png +share/icons/oxygen/32x32/actions/user-group-properties.png share/icons/oxygen/32x32/actions/user-properties.png share/icons/oxygen/32x32/actions/view-calendar-day.png share/icons/oxygen/32x32/actions/view-calendar-list.png @@ -2987,6 +3283,7 @@ share/icons/oxygen/32x32/actions/view-calendar-week.png share/icons/oxygen/32x32/actions/view-calendar-workweek.png share/icons/oxygen/32x32/actions/view-choose.png share/icons/oxygen/32x32/actions/view-close.png +share/icons/oxygen/32x32/actions/view-file-columns.png share/icons/oxygen/32x32/actions/view-filter.png share/icons/oxygen/32x32/actions/view-fullscreen.png share/icons/oxygen/32x32/actions/view-history.png @@ -3000,6 +3297,8 @@ share/icons/oxygen/32x32/actions/view-media-equalizer.png share/icons/oxygen/32x32/actions/view-media-lyrics.png share/icons/oxygen/32x32/actions/view-media-playlist.png share/icons/oxygen/32x32/actions/view-media-visualization.png +share/icons/oxygen/32x32/actions/view-object-histogram-linear.png +share/icons/oxygen/32x32/actions/view-object-histogram-logarithmic.png share/icons/oxygen/32x32/actions/view-pim-calendar.png share/icons/oxygen/32x32/actions/view-pim-contacts.png share/icons/oxygen/32x32/actions/view-pim-journal.png @@ -3025,6 +3324,7 @@ share/icons/oxygen/32x32/actions/view-sort-descending.png share/icons/oxygen/32x32/actions/view-split-left-right.png share/icons/oxygen/32x32/actions/view-split-top-bottom.png share/icons/oxygen/32x32/actions/view-statistics.png +share/icons/oxygen/32x32/actions/view-table-of-contents-ltr.png share/icons/oxygen/32x32/actions/view-table-of-contents-rtl.png share/icons/oxygen/32x32/actions/view-web-browser-dom-tree.png share/icons/oxygen/32x32/actions/window-close.png @@ -3060,17 +3360,16 @@ share/icons/oxygen/32x32/apps/internet-web-browser.png share/icons/oxygen/32x32/apps/java.png share/icons/oxygen/32x32/apps/k3b.png share/icons/oxygen/32x32/apps/kaffeine.png -share/icons/oxygen/32x32/apps/kate.png share/icons/oxygen/32x32/apps/kblogger.png share/icons/oxygen/32x32/apps/kbugbuster.png share/icons/oxygen/32x32/apps/kchart.png share/icons/oxygen/32x32/apps/kcolorchooser.png share/icons/oxygen/32x32/apps/kde.png share/icons/oxygen/32x32/apps/kexi.png -share/icons/oxygen/32x32/apps/kjots.png share/icons/oxygen/32x32/apps/kjournal.png share/icons/oxygen/32x32/apps/klipper.png share/icons/oxygen/32x32/apps/kmplayer.png +share/icons/oxygen/32x32/apps/knewsticker.png share/icons/oxygen/32x32/apps/knotes.png share/icons/oxygen/32x32/apps/kolf.png share/icons/oxygen/32x32/apps/konqueror.png @@ -3094,7 +3393,6 @@ share/icons/oxygen/32x32/apps/office-address-book.png share/icons/oxygen/32x32/apps/office-calendar.png share/icons/oxygen/32x32/apps/okteta.png share/icons/oxygen/32x32/apps/oxygen.png -share/icons/oxygen/32x32/apps/phonon-xine.png share/icons/oxygen/32x32/apps/plasma.png share/icons/oxygen/32x32/apps/plasmagik.png share/icons/oxygen/32x32/apps/preferences-contact-list.png @@ -3131,6 +3429,8 @@ share/icons/oxygen/32x32/apps/preferences-system-performance.png share/icons/oxygen/32x32/apps/preferences-system-power-management.png share/icons/oxygen/32x32/apps/preferences-system-session-services.png share/icons/oxygen/32x32/apps/preferences-system-time.png +share/icons/oxygen/32x32/apps/preferences-system-windows-actions.png +share/icons/oxygen/32x32/apps/preferences-system-windows-move.png share/icons/oxygen/32x32/apps/preferences-system-windows.png share/icons/oxygen/32x32/apps/preferences-web-browser-adblock.png share/icons/oxygen/32x32/apps/preferences-web-browser-cache.png @@ -3139,11 +3439,13 @@ share/icons/oxygen/32x32/apps/preferences-web-browser-identification.png share/icons/oxygen/32x32/apps/preferences-web-browser-shortcuts.png share/icons/oxygen/32x32/apps/preferences-web-browser-stylesheets.png share/icons/oxygen/32x32/apps/scribus.png +share/icons/oxygen/32x32/apps/semn.png share/icons/oxygen/32x32/apps/strigi.png share/icons/oxygen/32x32/apps/system-file-manager.png share/icons/oxygen/32x32/apps/system-software-update.png share/icons/oxygen/32x32/apps/system-users.png share/icons/oxygen/32x32/apps/tagua.png +share/icons/oxygen/32x32/apps/utilities-desktop-extra.png share/icons/oxygen/32x32/apps/utilities-file-archiver.png share/icons/oxygen/32x32/apps/utilities-log-viewer.png share/icons/oxygen/32x32/apps/utilities-system-monitor.png @@ -3209,6 +3511,7 @@ share/icons/oxygen/32x32/devices/multimedia-player.png share/icons/oxygen/32x32/devices/network-wired.png share/icons/oxygen/32x32/devices/network-wireless.png share/icons/oxygen/32x32/devices/pda.png +share/icons/oxygen/32x32/devices/phone-openmoko-freerunner.png share/icons/oxygen/32x32/devices/phone.png share/icons/oxygen/32x32/devices/printer.png share/icons/oxygen/32x32/devices/scanner.png @@ -3230,7 +3533,9 @@ share/icons/oxygen/32x32/emotes/face-smile-big.png share/icons/oxygen/32x32/emotes/face-smile.png share/icons/oxygen/32x32/emotes/face-surprise.png share/icons/oxygen/32x32/emotes/face-uncertain.png +share/icons/oxygen/32x32/emotes/face-wink.png share/icons/oxygen/32x32/mimetypes/application-illustrator.png +share/icons/oxygen/32x32/mimetypes/application-javascript.png share/icons/oxygen/32x32/mimetypes/application-msword.png share/icons/oxygen/32x32/mimetypes/application-octet-stream.png share/icons/oxygen/32x32/mimetypes/application-pdf.png @@ -3243,6 +3548,7 @@ share/icons/oxygen/32x32/mimetypes/application-postscript.png share/icons/oxygen/32x32/mimetypes/application-relaxng.png share/icons/oxygen/32x32/mimetypes/application-rss+xml.png share/icons/oxygen/32x32/mimetypes/application-rtf.png +share/icons/oxygen/32x32/mimetypes/application-vnd.ms-access.png share/icons/oxygen/32x32/mimetypes/application-vnd.ms-excel.png share/icons/oxygen/32x32/mimetypes/application-vnd.ms-powerpoint.png share/icons/oxygen/32x32/mimetypes/application-vnd.oasis.opendocument.chart.png @@ -3307,7 +3613,9 @@ share/icons/oxygen/32x32/mimetypes/application-x-kontour.png share/icons/oxygen/32x32/mimetypes/application-x-krita.png share/icons/oxygen/32x32/mimetypes/application-x-kvtml.png share/icons/oxygen/32x32/mimetypes/application-x-lha.png +share/icons/oxygen/32x32/mimetypes/application-x-lzma-compressed-tar.png share/icons/oxygen/32x32/mimetypes/application-x-lzop.png +share/icons/oxygen/32x32/mimetypes/application-x-m4.png share/icons/oxygen/32x32/mimetypes/application-x-marble.png share/icons/oxygen/32x32/mimetypes/application-x-mimearchive.png share/icons/oxygen/32x32/mimetypes/application-x-mplayer2.png @@ -3317,6 +3625,7 @@ share/icons/oxygen/32x32/mimetypes/application-x-mswrite.png share/icons/oxygen/32x32/mimetypes/application-x-nzb.png share/icons/oxygen/32x32/mimetypes/application-x-object.png share/icons/oxygen/32x32/mimetypes/application-x-pak.png +share/icons/oxygen/32x32/mimetypes/application-x-pem-key.png share/icons/oxygen/32x32/mimetypes/application-x-perl.png share/icons/oxygen/32x32/mimetypes/application-x-php.png share/icons/oxygen/32x32/mimetypes/application-x-plasma.png @@ -3327,7 +3636,11 @@ share/icons/oxygen/32x32/mimetypes/application-x-rpm.png share/icons/oxygen/32x32/mimetypes/application-x-ruby.png share/icons/oxygen/32x32/mimetypes/application-x-sharedlib.png share/icons/oxygen/32x32/mimetypes/application-x-shellscript.png +share/icons/oxygen/32x32/mimetypes/application-x-shockwave-flash.png share/icons/oxygen/32x32/mimetypes/application-x-siag.png +share/icons/oxygen/32x32/mimetypes/application-x-smb-server.png +share/icons/oxygen/32x32/mimetypes/application-x-smb-workgroup.png +share/icons/oxygen/32x32/mimetypes/application-x-subrip.png share/icons/oxygen/32x32/mimetypes/application-x-tar.png share/icons/oxygen/32x32/mimetypes/application-x-tarz.png share/icons/oxygen/32x32/mimetypes/application-x-tgif.png @@ -3361,6 +3674,7 @@ share/icons/oxygen/32x32/mimetypes/audio-x-mod.png share/icons/oxygen/32x32/mimetypes/audio-x-monkey.png share/icons/oxygen/32x32/mimetypes/audio-x-mp2.png share/icons/oxygen/32x32/mimetypes/audio-x-mpegurl.png +share/icons/oxygen/32x32/mimetypes/audio-x-ms-asx.png share/icons/oxygen/32x32/mimetypes/audio-x-ms-wma.png share/icons/oxygen/32x32/mimetypes/audio-x-musepack.png share/icons/oxygen/32x32/mimetypes/audio-x-pn-realaudio-plugin.png @@ -3425,25 +3739,35 @@ share/icons/oxygen/32x32/mimetypes/text-vcalendar.png share/icons/oxygen/32x32/mimetypes/text-vnd.abc.png share/icons/oxygen/32x32/mimetypes/text-vnd.wap.wml.png share/icons/oxygen/32x32/mimetypes/text-x-adasrc.png +share/icons/oxygen/32x32/mimetypes/text-x-authors.png share/icons/oxygen/32x32/mimetypes/text-x-bibtex.png share/icons/oxygen/32x32/mimetypes/text-x-c++hdr.png share/icons/oxygen/32x32/mimetypes/text-x-c++src.png +share/icons/oxygen/32x32/mimetypes/text-x-changelog.png share/icons/oxygen/32x32/mimetypes/text-x-chdr.png +share/icons/oxygen/32x32/mimetypes/text-x-cmake.png +share/icons/oxygen/32x32/mimetypes/text-x-copying.png share/icons/oxygen/32x32/mimetypes/text-x-csharp.png share/icons/oxygen/32x32/mimetypes/text-x-csrc.png share/icons/oxygen/32x32/mimetypes/text-x-dtd.png share/icons/oxygen/32x32/mimetypes/text-x-generic.png share/icons/oxygen/32x32/mimetypes/text-x-hex.png +share/icons/oxygen/32x32/mimetypes/text-x-install.png share/icons/oxygen/32x32/mimetypes/text-x-java.png share/icons/oxygen/32x32/mimetypes/text-x-katefilelist.png share/icons/oxygen/32x32/mimetypes/text-x-ldif.png +share/icons/oxygen/32x32/mimetypes/text-x-log.png share/icons/oxygen/32x32/mimetypes/text-x-makefile.png +share/icons/oxygen/32x32/mimetypes/text-x-nfo.png share/icons/oxygen/32x32/mimetypes/text-x-objchdr.png share/icons/oxygen/32x32/mimetypes/text-x-objcsrc.png share/icons/oxygen/32x32/mimetypes/text-x-pascal.png share/icons/oxygen/32x32/mimetypes/text-x-patch.png +share/icons/oxygen/32x32/mimetypes/text-x-po.png share/icons/oxygen/32x32/mimetypes/text-x-python.png +share/icons/oxygen/32x32/mimetypes/text-x-readme.png share/icons/oxygen/32x32/mimetypes/text-x-script.png +share/icons/oxygen/32x32/mimetypes/text-x-sql.png share/icons/oxygen/32x32/mimetypes/text-x-tcl.png share/icons/oxygen/32x32/mimetypes/text-x-tex.png share/icons/oxygen/32x32/mimetypes/text-x-texinfo.png @@ -3462,6 +3786,7 @@ share/icons/oxygen/32x32/mimetypes/video-mp4.png share/icons/oxygen/32x32/mimetypes/video-mpeg.png share/icons/oxygen/32x32/mimetypes/video-quicktime.png share/icons/oxygen/32x32/mimetypes/video-x-flic.png +share/icons/oxygen/32x32/mimetypes/video-x-flv.png share/icons/oxygen/32x32/mimetypes/video-x-generic.png share/icons/oxygen/32x32/mimetypes/video-x-matroska.png share/icons/oxygen/32x32/mimetypes/video-x-mng.png @@ -3481,6 +3806,7 @@ share/icons/oxygen/32x32/places/bookmarks.png share/icons/oxygen/32x32/places/document-multiple.png share/icons/oxygen/32x32/places/favorites.png share/icons/oxygen/32x32/places/folder-blue.png +share/icons/oxygen/32x32/places/folder-bookmark.png share/icons/oxygen/32x32/places/folder-bookmarks.png share/icons/oxygen/32x32/places/folder-brown.png share/icons/oxygen/32x32/places/folder-cyan.png @@ -3516,6 +3842,10 @@ share/icons/oxygen/32x32/places/user-desktop.png share/icons/oxygen/32x32/places/user-home.png share/icons/oxygen/32x32/places/user-identity.png share/icons/oxygen/32x32/places/user-trash.png +share/icons/oxygen/32x32/status/audio-volume-high.png +share/icons/oxygen/32x32/status/audio-volume-low.png +share/icons/oxygen/32x32/status/audio-volume-medium.png +share/icons/oxygen/32x32/status/audio-volume-muted.png share/icons/oxygen/32x32/status/battery-040.png share/icons/oxygen/32x32/status/battery-060.png share/icons/oxygen/32x32/status/battery-080.png @@ -3560,8 +3890,29 @@ share/icons/oxygen/32x32/status/user-online.png share/icons/oxygen/32x32/status/user-trash-full.png share/icons/oxygen/32x32/status/wallet-closed.png share/icons/oxygen/32x32/status/wallet-open.png +share/icons/oxygen/32x32/status/weather-clear-night.png +share/icons/oxygen/32x32/status/weather-clear.png +share/icons/oxygen/32x32/status/weather-clouds-night.png +share/icons/oxygen/32x32/status/weather-clouds.png +share/icons/oxygen/32x32/status/weather-few-clouds-night.png +share/icons/oxygen/32x32/status/weather-few-clouds.png +share/icons/oxygen/32x32/status/weather-hail.png +share/icons/oxygen/32x32/status/weather-many-clouds.png +share/icons/oxygen/32x32/status/weather-mist.png +share/icons/oxygen/32x32/status/weather-none-available.png +share/icons/oxygen/32x32/status/weather-showers-day.png +share/icons/oxygen/32x32/status/weather-showers-night.png +share/icons/oxygen/32x32/status/weather-showers-scattered-day.png +share/icons/oxygen/32x32/status/weather-showers-scattered-night.png +share/icons/oxygen/32x32/status/weather-showers-scattered.png +share/icons/oxygen/32x32/status/weather-showers.png +share/icons/oxygen/32x32/status/weather-snow-rain.png +share/icons/oxygen/32x32/status/weather-snow-scattered-day.png +share/icons/oxygen/32x32/status/weather-snow-scattered-night.png +share/icons/oxygen/32x32/status/weather-snow-scattered.png +share/icons/oxygen/32x32/status/weather-snow.png +share/icons/oxygen/32x32/status/weather-storm.png share/icons/oxygen/32x32/status/window-suppressed.png -share/icons/oxygen/32x32/view-table-of-contents-ltr.png share/icons/oxygen/48x48/actions/address-book-new.png share/icons/oxygen/48x48/actions/application-exit.png share/icons/oxygen/48x48/actions/appointment-new.png @@ -3583,6 +3934,9 @@ share/icons/oxygen/48x48/actions/bookmark-toolbar.png share/icons/oxygen/48x48/actions/bookmarks-organize.png share/icons/oxygen/48x48/actions/character-set.png share/icons/oxygen/48x48/actions/chronometer.png +share/icons/oxygen/48x48/actions/color-picker-black.png +share/icons/oxygen/48x48/actions/color-picker-grey.png +share/icons/oxygen/48x48/actions/color-picker-white.png share/icons/oxygen/48x48/actions/color-picker.png share/icons/oxygen/48x48/actions/configure-shortcuts.png share/icons/oxygen/48x48/actions/configure-toolbars.png @@ -3594,6 +3948,7 @@ share/icons/oxygen/48x48/actions/dialog-close.png share/icons/oxygen/48x48/actions/dialog-ok-apply.png share/icons/oxygen/48x48/actions/dialog-ok.png share/icons/oxygen/48x48/actions/document-decrypt.png +share/icons/oxygen/48x48/actions/document-edit.png share/icons/oxygen/48x48/actions/document-encrypt.png share/icons/oxygen/48x48/actions/document-export.png share/icons/oxygen/48x48/actions/document-import.png @@ -3684,17 +4039,21 @@ share/icons/oxygen/48x48/actions/get-hot-new-stuff.png share/icons/oxygen/48x48/actions/go-bottom.png share/icons/oxygen/48x48/actions/go-down-search.png share/icons/oxygen/48x48/actions/go-down.png -share/icons/oxygen/48x48/actions/go-first-page.png +share/icons/oxygen/48x48/actions/go-first-view-page.png share/icons/oxygen/48x48/actions/go-first.png +share/icons/oxygen/48x48/actions/go-frist-view.png share/icons/oxygen/48x48/actions/go-home.png share/icons/oxygen/48x48/actions/go-jump-locationbar.png share/icons/oxygen/48x48/actions/go-jump-today.png share/icons/oxygen/48x48/actions/go-jump.png -share/icons/oxygen/48x48/actions/go-last-page.png +share/icons/oxygen/48x48/actions/go-last-view-page.png +share/icons/oxygen/48x48/actions/go-last-view.png share/icons/oxygen/48x48/actions/go-last.png -share/icons/oxygen/48x48/actions/go-next-page.png +share/icons/oxygen/48x48/actions/go-next-view-page.png +share/icons/oxygen/48x48/actions/go-next-view.png share/icons/oxygen/48x48/actions/go-next.png -share/icons/oxygen/48x48/actions/go-previous-page.png +share/icons/oxygen/48x48/actions/go-previous-view-page.png +share/icons/oxygen/48x48/actions/go-previous-view.png share/icons/oxygen/48x48/actions/go-previous.png share/icons/oxygen/48x48/actions/go-top.png share/icons/oxygen/48x48/actions/go-up-search.png @@ -3775,16 +4134,20 @@ share/icons/oxygen/48x48/actions/tab-duplicate.png share/icons/oxygen/48x48/actions/tab-new-background.png share/icons/oxygen/48x48/actions/tab-new.png share/icons/oxygen/48x48/actions/text-speak.png +share/icons/oxygen/48x48/actions/tool-animator.png share/icons/oxygen/48x48/actions/tools-check-spelling.png share/icons/oxygen/48x48/actions/tools-media-optical-burn.png share/icons/oxygen/48x48/actions/tools-media-optical-copy.png share/icons/oxygen/48x48/actions/tools-report-bug.png share/icons/oxygen/48x48/actions/tools-wizard.png +share/icons/oxygen/48x48/actions/transform-crop-and-resize.png share/icons/oxygen/48x48/actions/transform-move.png share/icons/oxygen/48x48/actions/transform-rotate.png share/icons/oxygen/48x48/actions/transform-scale.png share/icons/oxygen/48x48/actions/trash-empty.png +share/icons/oxygen/48x48/actions/user-group-delete.png share/icons/oxygen/48x48/actions/user-group-new.png +share/icons/oxygen/48x48/actions/user-group-properties.png share/icons/oxygen/48x48/actions/user-properties.png share/icons/oxygen/48x48/actions/view-calendar-day.png share/icons/oxygen/48x48/actions/view-calendar-list.png @@ -3798,9 +4161,11 @@ share/icons/oxygen/48x48/actions/view-calendar-week.png share/icons/oxygen/48x48/actions/view-calendar-workweek.png share/icons/oxygen/48x48/actions/view-choose.png share/icons/oxygen/48x48/actions/view-close.png +share/icons/oxygen/48x48/actions/view-file-columns.png share/icons/oxygen/48x48/actions/view-filter.png share/icons/oxygen/48x48/actions/view-fullscreen.png share/icons/oxygen/48x48/actions/view-history.png +share/icons/oxygen/48x48/actions/view-left-close.png share/icons/oxygen/48x48/actions/view-list-details.png share/icons/oxygen/48x48/actions/view-list-text.png share/icons/oxygen/48x48/actions/view-list-tree.png @@ -3826,12 +4191,15 @@ share/icons/oxygen/48x48/actions/view-process-system.png share/icons/oxygen/48x48/actions/view-process-users.png share/icons/oxygen/48x48/actions/view-refresh.png share/icons/oxygen/48x48/actions/view-restore.png +share/icons/oxygen/48x48/actions/view-right-close.png +share/icons/oxygen/48x48/actions/view-right-new.png share/icons/oxygen/48x48/actions/view-sidetree.png share/icons/oxygen/48x48/actions/view-sort-ascending.png share/icons/oxygen/48x48/actions/view-sort-descending.png share/icons/oxygen/48x48/actions/view-split-left-right.png share/icons/oxygen/48x48/actions/view-split-top-bottom.png share/icons/oxygen/48x48/actions/view-statistics.png +share/icons/oxygen/48x48/actions/view-table-of-contents-ltr.png share/icons/oxygen/48x48/actions/view-table-of-contents-rtl.png share/icons/oxygen/48x48/actions/view-web-browser-dom-tree.png share/icons/oxygen/48x48/actions/window-close.png @@ -3867,17 +4235,16 @@ share/icons/oxygen/48x48/apps/internet-web-browser.png share/icons/oxygen/48x48/apps/java.png share/icons/oxygen/48x48/apps/k3b.png share/icons/oxygen/48x48/apps/kaffeine.png -share/icons/oxygen/48x48/apps/kate.png share/icons/oxygen/48x48/apps/kblogger.png share/icons/oxygen/48x48/apps/kbugbuster.png share/icons/oxygen/48x48/apps/kchart.png share/icons/oxygen/48x48/apps/kcolorchooser.png share/icons/oxygen/48x48/apps/kde.png share/icons/oxygen/48x48/apps/kexi.png -share/icons/oxygen/48x48/apps/kjots.png share/icons/oxygen/48x48/apps/kjournal.png share/icons/oxygen/48x48/apps/klipper.png share/icons/oxygen/48x48/apps/kmplayer.png +share/icons/oxygen/48x48/apps/knewsticker.png share/icons/oxygen/48x48/apps/knotes.png share/icons/oxygen/48x48/apps/kolf.png share/icons/oxygen/48x48/apps/konqueror.png @@ -3901,7 +4268,6 @@ share/icons/oxygen/48x48/apps/office-address-book.png share/icons/oxygen/48x48/apps/office-calendar.png share/icons/oxygen/48x48/apps/okteta.png share/icons/oxygen/48x48/apps/oxygen.png -share/icons/oxygen/48x48/apps/phonon-xine.png share/icons/oxygen/48x48/apps/plasma.png share/icons/oxygen/48x48/apps/plasmagik.png share/icons/oxygen/48x48/apps/preferences-contact-list.png @@ -3938,6 +4304,8 @@ share/icons/oxygen/48x48/apps/preferences-system-performance.png share/icons/oxygen/48x48/apps/preferences-system-power-management.png share/icons/oxygen/48x48/apps/preferences-system-session-services.png share/icons/oxygen/48x48/apps/preferences-system-time.png +share/icons/oxygen/48x48/apps/preferences-system-windows-actions.png +share/icons/oxygen/48x48/apps/preferences-system-windows-move.png share/icons/oxygen/48x48/apps/preferences-system-windows.png share/icons/oxygen/48x48/apps/preferences-web-browser-adblock.png share/icons/oxygen/48x48/apps/preferences-web-browser-cache.png @@ -3946,11 +4314,13 @@ share/icons/oxygen/48x48/apps/preferences-web-browser-identification.png share/icons/oxygen/48x48/apps/preferences-web-browser-shortcuts.png share/icons/oxygen/48x48/apps/preferences-web-browser-stylesheets.png share/icons/oxygen/48x48/apps/scribus.png +share/icons/oxygen/48x48/apps/semn.png share/icons/oxygen/48x48/apps/strigi.png share/icons/oxygen/48x48/apps/system-file-manager.png share/icons/oxygen/48x48/apps/system-software-update.png share/icons/oxygen/48x48/apps/system-users.png share/icons/oxygen/48x48/apps/tagua.png +share/icons/oxygen/48x48/apps/utilities-desktop-extra.png share/icons/oxygen/48x48/apps/utilities-file-archiver.png share/icons/oxygen/48x48/apps/utilities-log-viewer.png share/icons/oxygen/48x48/apps/utilities-system-monitor.png @@ -4016,6 +4386,7 @@ share/icons/oxygen/48x48/devices/multimedia-player.png share/icons/oxygen/48x48/devices/network-wired.png share/icons/oxygen/48x48/devices/network-wireless.png share/icons/oxygen/48x48/devices/pda.png +share/icons/oxygen/48x48/devices/phone-openmoko-freerunner.png share/icons/oxygen/48x48/devices/phone.png share/icons/oxygen/48x48/devices/printer.png share/icons/oxygen/48x48/devices/scanner.png @@ -4037,7 +4408,9 @@ share/icons/oxygen/48x48/emotes/face-smile-big.png share/icons/oxygen/48x48/emotes/face-smile.png share/icons/oxygen/48x48/emotes/face-surprise.png share/icons/oxygen/48x48/emotes/face-uncertain.png +share/icons/oxygen/48x48/emotes/face-wink.png share/icons/oxygen/48x48/mimetypes/application-illustrator.png +share/icons/oxygen/48x48/mimetypes/application-javascript.png share/icons/oxygen/48x48/mimetypes/application-msword.png share/icons/oxygen/48x48/mimetypes/application-octet-stream.png share/icons/oxygen/48x48/mimetypes/application-pdf.png @@ -4050,6 +4423,7 @@ share/icons/oxygen/48x48/mimetypes/application-postscript.png share/icons/oxygen/48x48/mimetypes/application-relaxng.png share/icons/oxygen/48x48/mimetypes/application-rss+xml.png share/icons/oxygen/48x48/mimetypes/application-rtf.png +share/icons/oxygen/48x48/mimetypes/application-vnd.ms-access.png share/icons/oxygen/48x48/mimetypes/application-vnd.ms-excel.png share/icons/oxygen/48x48/mimetypes/application-vnd.ms-powerpoint.png share/icons/oxygen/48x48/mimetypes/application-vnd.oasis.opendocument.chart.png @@ -4114,7 +4488,9 @@ share/icons/oxygen/48x48/mimetypes/application-x-kontour.png share/icons/oxygen/48x48/mimetypes/application-x-krita.png share/icons/oxygen/48x48/mimetypes/application-x-kvtml.png share/icons/oxygen/48x48/mimetypes/application-x-lha.png +share/icons/oxygen/48x48/mimetypes/application-x-lzma-compressed-tar.png share/icons/oxygen/48x48/mimetypes/application-x-lzop.png +share/icons/oxygen/48x48/mimetypes/application-x-m4.png share/icons/oxygen/48x48/mimetypes/application-x-marble.png share/icons/oxygen/48x48/mimetypes/application-x-mimearchive.png share/icons/oxygen/48x48/mimetypes/application-x-mplayer2.png @@ -4124,6 +4500,7 @@ share/icons/oxygen/48x48/mimetypes/application-x-mswrite.png share/icons/oxygen/48x48/mimetypes/application-x-nzb.png share/icons/oxygen/48x48/mimetypes/application-x-object.png share/icons/oxygen/48x48/mimetypes/application-x-pak.png +share/icons/oxygen/48x48/mimetypes/application-x-pem-key.png share/icons/oxygen/48x48/mimetypes/application-x-perl.png share/icons/oxygen/48x48/mimetypes/application-x-php.png share/icons/oxygen/48x48/mimetypes/application-x-plasma.png @@ -4134,7 +4511,11 @@ share/icons/oxygen/48x48/mimetypes/application-x-rpm.png share/icons/oxygen/48x48/mimetypes/application-x-ruby.png share/icons/oxygen/48x48/mimetypes/application-x-sharedlib.png share/icons/oxygen/48x48/mimetypes/application-x-shellscript.png +share/icons/oxygen/48x48/mimetypes/application-x-shockwave-flash.png share/icons/oxygen/48x48/mimetypes/application-x-siag.png +share/icons/oxygen/48x48/mimetypes/application-x-smb-server.png +share/icons/oxygen/48x48/mimetypes/application-x-smb-workgroup.png +share/icons/oxygen/48x48/mimetypes/application-x-subrip.png share/icons/oxygen/48x48/mimetypes/application-x-tar.png share/icons/oxygen/48x48/mimetypes/application-x-tarz.png share/icons/oxygen/48x48/mimetypes/application-x-tgif.png @@ -4168,6 +4549,7 @@ share/icons/oxygen/48x48/mimetypes/audio-x-mod.png share/icons/oxygen/48x48/mimetypes/audio-x-monkey.png share/icons/oxygen/48x48/mimetypes/audio-x-mp2.png share/icons/oxygen/48x48/mimetypes/audio-x-mpegurl.png +share/icons/oxygen/48x48/mimetypes/audio-x-ms-asx.png share/icons/oxygen/48x48/mimetypes/audio-x-ms-wma.png share/icons/oxygen/48x48/mimetypes/audio-x-musepack.png share/icons/oxygen/48x48/mimetypes/audio-x-pn-realaudio-plugin.png @@ -4232,25 +4614,35 @@ share/icons/oxygen/48x48/mimetypes/text-vcalendar.png share/icons/oxygen/48x48/mimetypes/text-vnd.abc.png share/icons/oxygen/48x48/mimetypes/text-vnd.wap.wml.png share/icons/oxygen/48x48/mimetypes/text-x-adasrc.png +share/icons/oxygen/48x48/mimetypes/text-x-authors.png share/icons/oxygen/48x48/mimetypes/text-x-bibtex.png share/icons/oxygen/48x48/mimetypes/text-x-c++hdr.png share/icons/oxygen/48x48/mimetypes/text-x-c++src.png +share/icons/oxygen/48x48/mimetypes/text-x-changelog.png share/icons/oxygen/48x48/mimetypes/text-x-chdr.png +share/icons/oxygen/48x48/mimetypes/text-x-cmake.png +share/icons/oxygen/48x48/mimetypes/text-x-copying.png share/icons/oxygen/48x48/mimetypes/text-x-csharp.png share/icons/oxygen/48x48/mimetypes/text-x-csrc.png share/icons/oxygen/48x48/mimetypes/text-x-dtd.png share/icons/oxygen/48x48/mimetypes/text-x-generic.png share/icons/oxygen/48x48/mimetypes/text-x-hex.png +share/icons/oxygen/48x48/mimetypes/text-x-install.png share/icons/oxygen/48x48/mimetypes/text-x-java.png share/icons/oxygen/48x48/mimetypes/text-x-katefilelist.png share/icons/oxygen/48x48/mimetypes/text-x-ldif.png +share/icons/oxygen/48x48/mimetypes/text-x-log.png share/icons/oxygen/48x48/mimetypes/text-x-makefile.png +share/icons/oxygen/48x48/mimetypes/text-x-nfo.png share/icons/oxygen/48x48/mimetypes/text-x-objchdr.png share/icons/oxygen/48x48/mimetypes/text-x-objcsrc.png share/icons/oxygen/48x48/mimetypes/text-x-pascal.png share/icons/oxygen/48x48/mimetypes/text-x-patch.png +share/icons/oxygen/48x48/mimetypes/text-x-po.png share/icons/oxygen/48x48/mimetypes/text-x-python.png +share/icons/oxygen/48x48/mimetypes/text-x-readme.png share/icons/oxygen/48x48/mimetypes/text-x-script.png +share/icons/oxygen/48x48/mimetypes/text-x-sql.png share/icons/oxygen/48x48/mimetypes/text-x-tcl.png share/icons/oxygen/48x48/mimetypes/text-x-tex.png share/icons/oxygen/48x48/mimetypes/text-x-texinfo.png @@ -4269,6 +4661,7 @@ share/icons/oxygen/48x48/mimetypes/video-mp4.png share/icons/oxygen/48x48/mimetypes/video-mpeg.png share/icons/oxygen/48x48/mimetypes/video-quicktime.png share/icons/oxygen/48x48/mimetypes/video-x-flic.png +share/icons/oxygen/48x48/mimetypes/video-x-flv.png share/icons/oxygen/48x48/mimetypes/video-x-generic.png share/icons/oxygen/48x48/mimetypes/video-x-matroska.png share/icons/oxygen/48x48/mimetypes/video-x-mng.png @@ -4288,6 +4681,7 @@ share/icons/oxygen/48x48/places/bookmarks.png share/icons/oxygen/48x48/places/document-multiple.png share/icons/oxygen/48x48/places/favorites.png share/icons/oxygen/48x48/places/folder-blue.png +share/icons/oxygen/48x48/places/folder-bookmark.png share/icons/oxygen/48x48/places/folder-bookmarks.png share/icons/oxygen/48x48/places/folder-brown.png share/icons/oxygen/48x48/places/folder-cyan.png @@ -4323,6 +4717,10 @@ share/icons/oxygen/48x48/places/user-desktop.png share/icons/oxygen/48x48/places/user-home.png share/icons/oxygen/48x48/places/user-identity.png share/icons/oxygen/48x48/places/user-trash.png +share/icons/oxygen/48x48/status/audio-volume-high.png +share/icons/oxygen/48x48/status/audio-volume-low.png +share/icons/oxygen/48x48/status/audio-volume-medium.png +share/icons/oxygen/48x48/status/audio-volume-muted.png share/icons/oxygen/48x48/status/battery-040.png share/icons/oxygen/48x48/status/battery-060.png share/icons/oxygen/48x48/status/battery-080.png @@ -4368,28 +4766,52 @@ share/icons/oxygen/48x48/status/user-online.png share/icons/oxygen/48x48/status/user-trash-full.png share/icons/oxygen/48x48/status/wallet-closed.png share/icons/oxygen/48x48/status/wallet-open.png +share/icons/oxygen/48x48/status/weather-clear-night.png +share/icons/oxygen/48x48/status/weather-clear.png +share/icons/oxygen/48x48/status/weather-clouds-night.png +share/icons/oxygen/48x48/status/weather-clouds.png +share/icons/oxygen/48x48/status/weather-few-clouds-night.png +share/icons/oxygen/48x48/status/weather-few-clouds.png +share/icons/oxygen/48x48/status/weather-hail.png +share/icons/oxygen/48x48/status/weather-many-clouds.png +share/icons/oxygen/48x48/status/weather-mist.png +share/icons/oxygen/48x48/status/weather-showers-day.png +share/icons/oxygen/48x48/status/weather-showers-night.png +share/icons/oxygen/48x48/status/weather-showers-scattered-day.png +share/icons/oxygen/48x48/status/weather-showers-scattered-night.png +share/icons/oxygen/48x48/status/weather-showers-scattered.png +share/icons/oxygen/48x48/status/weather-showers.png +share/icons/oxygen/48x48/status/weather-snow-rain.png +share/icons/oxygen/48x48/status/weather-snow-scattered-day.png +share/icons/oxygen/48x48/status/weather-snow-scattered-night.png +share/icons/oxygen/48x48/status/weather-snow-scattered.png +share/icons/oxygen/48x48/status/weather-snow.png +share/icons/oxygen/48x48/status/weather-storm-day.png +share/icons/oxygen/48x48/status/weather-storm-night.png +share/icons/oxygen/48x48/status/weather-storm.png share/icons/oxygen/48x48/status/window-suppressed.png -share/icons/oxygen/48x48/view-table-of-contents-ltr.png share/icons/oxygen/64x64/actions/address-book-new.png share/icons/oxygen/64x64/actions/application-exit.png share/icons/oxygen/64x64/actions/appointment-new.png share/icons/oxygen/64x64/actions/bookmark-new.png share/icons/oxygen/64x64/actions/bookmarks-organize.png +share/icons/oxygen/64x64/actions/configure.png share/icons/oxygen/64x64/actions/dashboard-show.png share/icons/oxygen/64x64/actions/dialog-ok-apply.png share/icons/oxygen/64x64/actions/dialog-ok.png +share/icons/oxygen/64x64/actions/document-edit.png share/icons/oxygen/64x64/actions/document-preview.png share/icons/oxygen/64x64/actions/edit-bomb.png share/icons/oxygen/64x64/actions/edit-find.png share/icons/oxygen/64x64/actions/go-bottom.png share/icons/oxygen/64x64/actions/go-down.png -share/icons/oxygen/64x64/actions/go-first-page.png +share/icons/oxygen/64x64/actions/go-first-view-page.png share/icons/oxygen/64x64/actions/go-first.png -share/icons/oxygen/64x64/actions/go-last-page.png +share/icons/oxygen/64x64/actions/go-last-view-page.png share/icons/oxygen/64x64/actions/go-last.png -share/icons/oxygen/64x64/actions/go-next-page.png +share/icons/oxygen/64x64/actions/go-next-view-page.png share/icons/oxygen/64x64/actions/go-next.png -share/icons/oxygen/64x64/actions/go-previous-page.png +share/icons/oxygen/64x64/actions/go-previous-view-page.png share/icons/oxygen/64x64/actions/go-previous.png share/icons/oxygen/64x64/actions/go-top.png share/icons/oxygen/64x64/actions/go-up.png @@ -4417,8 +4839,10 @@ share/icons/oxygen/64x64/actions/system-shutdown.png share/icons/oxygen/64x64/actions/system-suspend-hibernate.png share/icons/oxygen/64x64/actions/system-suspend.png share/icons/oxygen/64x64/actions/system-switch-user.png +share/icons/oxygen/64x64/actions/tool-animator.png share/icons/oxygen/64x64/actions/tools-report-bug.png share/icons/oxygen/64x64/actions/tools-wizard.png +share/icons/oxygen/64x64/actions/transform-crop-and-resize.png share/icons/oxygen/64x64/actions/transform-move.png share/icons/oxygen/64x64/actions/transform-scale.png share/icons/oxygen/64x64/actions/user-group-new.png @@ -4450,17 +4874,16 @@ share/icons/oxygen/64x64/apps/internet-telephony.png share/icons/oxygen/64x64/apps/internet-web-browser.png share/icons/oxygen/64x64/apps/k3b.png share/icons/oxygen/64x64/apps/kaffeine.png -share/icons/oxygen/64x64/apps/kate.png share/icons/oxygen/64x64/apps/kblogger.png share/icons/oxygen/64x64/apps/kbugbuster.png share/icons/oxygen/64x64/apps/kchart.png share/icons/oxygen/64x64/apps/kcolorchooser.png share/icons/oxygen/64x64/apps/kde.png share/icons/oxygen/64x64/apps/kexi.png -share/icons/oxygen/64x64/apps/kjots.png share/icons/oxygen/64x64/apps/kjournal.png share/icons/oxygen/64x64/apps/klipper.png share/icons/oxygen/64x64/apps/kmplayer.png +share/icons/oxygen/64x64/apps/knewsticker.png share/icons/oxygen/64x64/apps/knotes.png share/icons/oxygen/64x64/apps/kolf.png share/icons/oxygen/64x64/apps/konqueror.png @@ -4484,7 +4907,6 @@ share/icons/oxygen/64x64/apps/office-address-book.png share/icons/oxygen/64x64/apps/office-calendar.png share/icons/oxygen/64x64/apps/okteta.png share/icons/oxygen/64x64/apps/oxygen.png -share/icons/oxygen/64x64/apps/phonon-xine.png share/icons/oxygen/64x64/apps/plasma.png share/icons/oxygen/64x64/apps/plasmagik.png share/icons/oxygen/64x64/apps/preferences-contact-list.png @@ -4493,6 +4915,7 @@ share/icons/oxygen/64x64/apps/preferences-desktop-color.png share/icons/oxygen/64x64/apps/preferences-desktop-cryptography.png share/icons/oxygen/64x64/apps/preferences-desktop-default-applications.png share/icons/oxygen/64x64/apps/preferences-desktop-display.png +share/icons/oxygen/64x64/apps/preferences-desktop-font.png share/icons/oxygen/64x64/apps/preferences-desktop-gaming.png share/icons/oxygen/64x64/apps/preferences-desktop-icons.png share/icons/oxygen/64x64/apps/preferences-desktop-keyboard.png @@ -4514,13 +4937,17 @@ share/icons/oxygen/64x64/apps/preferences-system-login.png share/icons/oxygen/64x64/apps/preferences-system-network-sharing.png share/icons/oxygen/64x64/apps/preferences-system-power-management.png share/icons/oxygen/64x64/apps/preferences-system-time.png +share/icons/oxygen/64x64/apps/preferences-system-windows-actions.png +share/icons/oxygen/64x64/apps/preferences-system-windows-move.png share/icons/oxygen/64x64/apps/preferences-system-windows.png share/icons/oxygen/64x64/apps/scribus.png +share/icons/oxygen/64x64/apps/semn.png share/icons/oxygen/64x64/apps/strigi.png share/icons/oxygen/64x64/apps/system-file-manager.png share/icons/oxygen/64x64/apps/system-software-update.png share/icons/oxygen/64x64/apps/system-users.png share/icons/oxygen/64x64/apps/tagua.png +share/icons/oxygen/64x64/apps/utilities-desktop-extra.png share/icons/oxygen/64x64/apps/utilities-file-archiver.png share/icons/oxygen/64x64/apps/utilities-log-viewer.png share/icons/oxygen/64x64/apps/utilities-system-monitor.png @@ -4586,6 +5013,7 @@ share/icons/oxygen/64x64/devices/multimedia-player.png share/icons/oxygen/64x64/devices/network-wired.png share/icons/oxygen/64x64/devices/network-wireless.png share/icons/oxygen/64x64/devices/pda.png +share/icons/oxygen/64x64/devices/phone-openmoko-freerunner.png share/icons/oxygen/64x64/devices/phone.png share/icons/oxygen/64x64/devices/printer.png share/icons/oxygen/64x64/devices/scanner.png @@ -4606,7 +5034,9 @@ share/icons/oxygen/64x64/emotes/face-smile-big.png share/icons/oxygen/64x64/emotes/face-smile.png share/icons/oxygen/64x64/emotes/face-surprise.png share/icons/oxygen/64x64/emotes/face-uncertain.png +share/icons/oxygen/64x64/emotes/face-wink.png share/icons/oxygen/64x64/mimetypes/application-illustrator.png +share/icons/oxygen/64x64/mimetypes/application-javascript.png share/icons/oxygen/64x64/mimetypes/application-msword.png share/icons/oxygen/64x64/mimetypes/application-octet-stream.png share/icons/oxygen/64x64/mimetypes/application-pdf.png @@ -4617,6 +5047,7 @@ share/icons/oxygen/64x64/mimetypes/application-postscript.png share/icons/oxygen/64x64/mimetypes/application-relaxng.png share/icons/oxygen/64x64/mimetypes/application-rss+xml.png share/icons/oxygen/64x64/mimetypes/application-rtf.png +share/icons/oxygen/64x64/mimetypes/application-vnd.ms-access.png share/icons/oxygen/64x64/mimetypes/application-vnd.ms-excel.png share/icons/oxygen/64x64/mimetypes/application-vnd.ms-powerpoint.png share/icons/oxygen/64x64/mimetypes/application-vnd.oasis.opendocument.chart.png @@ -4681,7 +5112,9 @@ share/icons/oxygen/64x64/mimetypes/application-x-kontour.png share/icons/oxygen/64x64/mimetypes/application-x-krita.png share/icons/oxygen/64x64/mimetypes/application-x-kvtml.png share/icons/oxygen/64x64/mimetypes/application-x-lha.png +share/icons/oxygen/64x64/mimetypes/application-x-lzma-compressed-tar.png share/icons/oxygen/64x64/mimetypes/application-x-lzop.png +share/icons/oxygen/64x64/mimetypes/application-x-m4.png share/icons/oxygen/64x64/mimetypes/application-x-marble.png share/icons/oxygen/64x64/mimetypes/application-x-mimearchive.png share/icons/oxygen/64x64/mimetypes/application-x-mplayer2.png @@ -4691,6 +5124,7 @@ share/icons/oxygen/64x64/mimetypes/application-x-mswrite.png share/icons/oxygen/64x64/mimetypes/application-x-nzb.png share/icons/oxygen/64x64/mimetypes/application-x-object.png share/icons/oxygen/64x64/mimetypes/application-x-pak.png +share/icons/oxygen/64x64/mimetypes/application-x-pem-key.png share/icons/oxygen/64x64/mimetypes/application-x-perl.png share/icons/oxygen/64x64/mimetypes/application-x-php.png share/icons/oxygen/64x64/mimetypes/application-x-plasma.png @@ -4701,7 +5135,11 @@ share/icons/oxygen/64x64/mimetypes/application-x-rpm.png share/icons/oxygen/64x64/mimetypes/application-x-ruby.png share/icons/oxygen/64x64/mimetypes/application-x-sharedlib.png share/icons/oxygen/64x64/mimetypes/application-x-shellscript.png +share/icons/oxygen/64x64/mimetypes/application-x-shockwave-flash.png share/icons/oxygen/64x64/mimetypes/application-x-siag.png +share/icons/oxygen/64x64/mimetypes/application-x-smb-server.png +share/icons/oxygen/64x64/mimetypes/application-x-smb-workgroup.png +share/icons/oxygen/64x64/mimetypes/application-x-subrip.png share/icons/oxygen/64x64/mimetypes/application-x-tar.png share/icons/oxygen/64x64/mimetypes/application-x-tarz.png share/icons/oxygen/64x64/mimetypes/application-x-tgif.png @@ -4735,6 +5173,7 @@ share/icons/oxygen/64x64/mimetypes/audio-x-mod.png share/icons/oxygen/64x64/mimetypes/audio-x-monkey.png share/icons/oxygen/64x64/mimetypes/audio-x-mp2.png share/icons/oxygen/64x64/mimetypes/audio-x-mpegurl.png +share/icons/oxygen/64x64/mimetypes/audio-x-ms-asx.png share/icons/oxygen/64x64/mimetypes/audio-x-ms-wma.png share/icons/oxygen/64x64/mimetypes/audio-x-musepack.png share/icons/oxygen/64x64/mimetypes/audio-x-pn-realaudio-plugin.png @@ -4799,25 +5238,35 @@ share/icons/oxygen/64x64/mimetypes/text-vcalendar.png share/icons/oxygen/64x64/mimetypes/text-vnd.abc.png share/icons/oxygen/64x64/mimetypes/text-vnd.wap.wml.png share/icons/oxygen/64x64/mimetypes/text-x-adasrc.png +share/icons/oxygen/64x64/mimetypes/text-x-authors.png share/icons/oxygen/64x64/mimetypes/text-x-bibtex.png share/icons/oxygen/64x64/mimetypes/text-x-c++hdr.png share/icons/oxygen/64x64/mimetypes/text-x-c++src.png +share/icons/oxygen/64x64/mimetypes/text-x-changelog.png share/icons/oxygen/64x64/mimetypes/text-x-chdr.png +share/icons/oxygen/64x64/mimetypes/text-x-cmake.png +share/icons/oxygen/64x64/mimetypes/text-x-copying.png share/icons/oxygen/64x64/mimetypes/text-x-csharp.png share/icons/oxygen/64x64/mimetypes/text-x-csrc.png share/icons/oxygen/64x64/mimetypes/text-x-dtd.png share/icons/oxygen/64x64/mimetypes/text-x-generic.png share/icons/oxygen/64x64/mimetypes/text-x-hex.png +share/icons/oxygen/64x64/mimetypes/text-x-install.png share/icons/oxygen/64x64/mimetypes/text-x-java.png share/icons/oxygen/64x64/mimetypes/text-x-katefilelist.png share/icons/oxygen/64x64/mimetypes/text-x-ldif.png +share/icons/oxygen/64x64/mimetypes/text-x-log.png share/icons/oxygen/64x64/mimetypes/text-x-makefile.png +share/icons/oxygen/64x64/mimetypes/text-x-nfo.png share/icons/oxygen/64x64/mimetypes/text-x-objchdr.png share/icons/oxygen/64x64/mimetypes/text-x-objcsrc.png share/icons/oxygen/64x64/mimetypes/text-x-pascal.png share/icons/oxygen/64x64/mimetypes/text-x-patch.png +share/icons/oxygen/64x64/mimetypes/text-x-po.png share/icons/oxygen/64x64/mimetypes/text-x-python.png +share/icons/oxygen/64x64/mimetypes/text-x-readme.png share/icons/oxygen/64x64/mimetypes/text-x-script.png +share/icons/oxygen/64x64/mimetypes/text-x-sql.png share/icons/oxygen/64x64/mimetypes/text-x-tcl.png share/icons/oxygen/64x64/mimetypes/text-x-tex.png share/icons/oxygen/64x64/mimetypes/text-x-texinfo.png @@ -4836,6 +5285,7 @@ share/icons/oxygen/64x64/mimetypes/video-mp4.png share/icons/oxygen/64x64/mimetypes/video-mpeg.png share/icons/oxygen/64x64/mimetypes/video-quicktime.png share/icons/oxygen/64x64/mimetypes/video-x-flic.png +share/icons/oxygen/64x64/mimetypes/video-x-flv.png share/icons/oxygen/64x64/mimetypes/video-x-generic.png share/icons/oxygen/64x64/mimetypes/video-x-matroska.png share/icons/oxygen/64x64/mimetypes/video-x-mng.png @@ -4851,6 +5301,7 @@ share/icons/oxygen/64x64/mimetypes/x-office-document.png share/icons/oxygen/64x64/mimetypes/x-office-spreadsheet.png share/icons/oxygen/64x64/places/document-multiple.png share/icons/oxygen/64x64/places/folder-blue.png +share/icons/oxygen/64x64/places/folder-bookmark.png share/icons/oxygen/64x64/places/folder-bookmarks.png share/icons/oxygen/64x64/places/folder-brown.png share/icons/oxygen/64x64/places/folder-cyan.png @@ -4901,6 +5352,29 @@ share/icons/oxygen/64x64/status/user-invisible.png share/icons/oxygen/64x64/status/user-offline.png share/icons/oxygen/64x64/status/user-online.png share/icons/oxygen/64x64/status/user-trash-full.png +share/icons/oxygen/64x64/status/weather-clear-night.png +share/icons/oxygen/64x64/status/weather-clear.png +share/icons/oxygen/64x64/status/weather-clouds-night.png +share/icons/oxygen/64x64/status/weather-clouds.png +share/icons/oxygen/64x64/status/weather-few-clouds-night.png +share/icons/oxygen/64x64/status/weather-few-clouds.png +share/icons/oxygen/64x64/status/weather-hail.png +share/icons/oxygen/64x64/status/weather-many-clouds.png +share/icons/oxygen/64x64/status/weather-mist.png +share/icons/oxygen/64x64/status/weather-showers-day.png +share/icons/oxygen/64x64/status/weather-showers-night.png +share/icons/oxygen/64x64/status/weather-showers-scattered-day.png +share/icons/oxygen/64x64/status/weather-showers-scattered-night.png +share/icons/oxygen/64x64/status/weather-showers-scattered.png +share/icons/oxygen/64x64/status/weather-showers.png +share/icons/oxygen/64x64/status/weather-snow-rain.png +share/icons/oxygen/64x64/status/weather-snow-scattered-day.png +share/icons/oxygen/64x64/status/weather-snow-scattered-night.png +share/icons/oxygen/64x64/status/weather-snow-scattered.png +share/icons/oxygen/64x64/status/weather-snow.png +share/icons/oxygen/64x64/status/weather-storm-day.png +share/icons/oxygen/64x64/status/weather-storm-night.png +share/icons/oxygen/64x64/status/weather-storm.png share/icons/oxygen/8x8/emblems/emblem-important.png share/icons/oxygen/8x8/emblems/emblem-link.png share/icons/oxygen/8x8/emblems/emblem-mounted.png @@ -4926,6 +5400,9 @@ share/icons/oxygen/scalable/actions/bookmark-toolbar.svgz share/icons/oxygen/scalable/actions/bookmarks-organize.svgz share/icons/oxygen/scalable/actions/character-set.svgz share/icons/oxygen/scalable/actions/chronometer.svgz +share/icons/oxygen/scalable/actions/color-picker-black.svgz +share/icons/oxygen/scalable/actions/color-picker-grey.svgz +share/icons/oxygen/scalable/actions/color-picker-white.svgz share/icons/oxygen/scalable/actions/color-picker.svgz share/icons/oxygen/scalable/actions/configure-shortcuts.svgz share/icons/oxygen/scalable/actions/configure-toolbars.svgz @@ -4937,6 +5414,7 @@ share/icons/oxygen/scalable/actions/dialog-close.svgz share/icons/oxygen/scalable/actions/dialog-ok-apply.svgz share/icons/oxygen/scalable/actions/dialog-ok.svgz share/icons/oxygen/scalable/actions/document-decrypt.svgz +share/icons/oxygen/scalable/actions/document-edit.svgz share/icons/oxygen/scalable/actions/document-encrypt.svgz share/icons/oxygen/scalable/actions/document-export.svgz share/icons/oxygen/scalable/actions/document-import.svgz @@ -4989,29 +5467,8 @@ share/icons/oxygen/scalable/actions/flag.svgz share/icons/oxygen/scalable/actions/folder-new.svgz share/icons/oxygen/scalable/actions/fork.svgz share/icons/oxygen/scalable/actions/format-fill-color.svgz -share/icons/oxygen/scalable/actions/format-font-size-less.svgz -share/icons/oxygen/scalable/actions/format-font-size-more.svgz -share/icons/oxygen/scalable/actions/format-indent-less.svgz -share/icons/oxygen/scalable/actions/format-indent-more.svgz -share/icons/oxygen/scalable/actions/format-justify-center.svgz -share/icons/oxygen/scalable/actions/format-justify-fill.svgz -share/icons/oxygen/scalable/actions/format-justify-left.svgz -share/icons/oxygen/scalable/actions/format-justify-right.svgz -share/icons/oxygen/scalable/actions/format-line-spacing-double.svgz -share/icons/oxygen/scalable/actions/format-line-spacing-normal.svgz -share/icons/oxygen/scalable/actions/format-line-spacing-triple.svgz -share/icons/oxygen/scalable/actions/format-list-ordered.svgz -share/icons/oxygen/scalable/actions/format-list-unordered.svgz share/icons/oxygen/scalable/actions/format-stroke-color.svgz -share/icons/oxygen/scalable/actions/format-text-bold.svgz share/icons/oxygen/scalable/actions/format-text-color.svgz -share/icons/oxygen/scalable/actions/format-text-direction-ltr.svgz -share/icons/oxygen/scalable/actions/format-text-direction-rtl.svgz -share/icons/oxygen/scalable/actions/format-text-italic.svgz -share/icons/oxygen/scalable/actions/format-text-strikethrough.svgz -share/icons/oxygen/scalable/actions/format-text-subscript.svgz -share/icons/oxygen/scalable/actions/format-text-superscript.svgz -share/icons/oxygen/scalable/actions/format-text-underline.svgz share/icons/oxygen/scalable/actions/games-config-background.svgz share/icons/oxygen/scalable/actions/games-config-board.svgz share/icons/oxygen/scalable/actions/games-config-custom.svgz @@ -5027,17 +5484,21 @@ share/icons/oxygen/scalable/actions/get-hot-new-stuff.svgz share/icons/oxygen/scalable/actions/go-bottom.svgz share/icons/oxygen/scalable/actions/go-down-search.svgz share/icons/oxygen/scalable/actions/go-down.svgz -share/icons/oxygen/scalable/actions/go-first-page.svgz +share/icons/oxygen/scalable/actions/go-first-view-page.svgz +share/icons/oxygen/scalable/actions/go-first-view.svgz share/icons/oxygen/scalable/actions/go-first.svgz share/icons/oxygen/scalable/actions/go-home.svgz share/icons/oxygen/scalable/actions/go-jump-locationbar.svgz share/icons/oxygen/scalable/actions/go-jump-today.svgz share/icons/oxygen/scalable/actions/go-jump.svgz -share/icons/oxygen/scalable/actions/go-last-page.svgz +share/icons/oxygen/scalable/actions/go-last-view-page.svgz +share/icons/oxygen/scalable/actions/go-last-view.svgz share/icons/oxygen/scalable/actions/go-last.svgz -share/icons/oxygen/scalable/actions/go-next-page.svgz +share/icons/oxygen/scalable/actions/go-next-view-page.svgz +share/icons/oxygen/scalable/actions/go-next-view.svgz share/icons/oxygen/scalable/actions/go-next.svgz -share/icons/oxygen/scalable/actions/go-previous-page.svgz +share/icons/oxygen/scalable/actions/go-previous-view-page.svgz +share/icons/oxygen/scalable/actions/go-previous-view.svgz share/icons/oxygen/scalable/actions/go-previous.svgz share/icons/oxygen/scalable/actions/go-top.svgz share/icons/oxygen/scalable/actions/go-up-search.svgz @@ -5121,12 +5582,15 @@ share/icons/oxygen/scalable/actions/small/16x16/bookmark-new.svgz share/icons/oxygen/scalable/actions/small/16x16/bookmark-toolbar.svgz share/icons/oxygen/scalable/actions/small/16x16/bookmarks-organize.svgz share/icons/oxygen/scalable/actions/small/16x16/character-set.svgz +share/icons/oxygen/scalable/actions/small/16x16/configure-shortcuts.svgz share/icons/oxygen/scalable/actions/small/16x16/configure-toolbars.svgz +share/icons/oxygen/scalable/actions/small/16x16/configure.svgz share/icons/oxygen/scalable/actions/small/16x16/contact-new.svgz share/icons/oxygen/scalable/actions/small/16x16/dialog-cancel.svgz share/icons/oxygen/scalable/actions/small/16x16/dialog-ok-apply.svgz share/icons/oxygen/scalable/actions/small/16x16/dialog-ok.svgz share/icons/oxygen/scalable/actions/small/16x16/document-decrypt.svgz +share/icons/oxygen/scalable/actions/small/16x16/document-edit.svgz share/icons/oxygen/scalable/actions/small/16x16/document-encrypt.svgz share/icons/oxygen/scalable/actions/small/16x16/document-export.svgz share/icons/oxygen/scalable/actions/small/16x16/document-import.svgz @@ -5144,6 +5608,7 @@ share/icons/oxygen/scalable/actions/small/16x16/document-revert.svgz share/icons/oxygen/scalable/actions/small/16x16/document-save-all.svgz share/icons/oxygen/scalable/actions/small/16x16/document-save-as.svgz share/icons/oxygen/scalable/actions/small/16x16/document-save.svgz +share/icons/oxygen/scalable/actions/small/16x16/document-sign.svgz share/icons/oxygen/scalable/actions/small/16x16/draw-brush.svgz share/icons/oxygen/scalable/actions/small/16x16/draw-eraser.svgz share/icons/oxygen/scalable/actions/small/16x16/draw-freehand.svgz @@ -5163,37 +5628,20 @@ share/icons/oxygen/scalable/actions/small/16x16/edit-rename.svgz share/icons/oxygen/scalable/actions/small/16x16/edit-select-all.svgz share/icons/oxygen/scalable/actions/small/16x16/edit-undo.svgz share/icons/oxygen/scalable/actions/small/16x16/folder-new.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-font-size-less.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-font-size-more.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-indent-less.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-indent-more.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-justify-center.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-justify-fill.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-justify-left.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-justify-right.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-line-spacing-double.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-line-spacing-normal.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-line-spacing-triple.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-list-ordered.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-list-unordered.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-text-bold.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-text-direction-ltr.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-text-direction-rtl.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-text-italic.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-text-strikethrough.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-text-subscript.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-text-superscript.svgz -share/icons/oxygen/scalable/actions/small/16x16/format-text-underline.svgz share/icons/oxygen/scalable/actions/small/16x16/go-down-search.svgz share/icons/oxygen/scalable/actions/small/16x16/go-down.svgz -share/icons/oxygen/scalable/actions/small/16x16/go-frist-page.svgz +share/icons/oxygen/scalable/actions/small/16x16/go-first-view-page.svgz +share/icons/oxygen/scalable/actions/small/16x16/go-first-view.svgz share/icons/oxygen/scalable/actions/small/16x16/go-home.svgz share/icons/oxygen/scalable/actions/small/16x16/go-jump-locationbar.svgz share/icons/oxygen/scalable/actions/small/16x16/go-jump-today.svgz -share/icons/oxygen/scalable/actions/small/16x16/go-last-page.svgz -share/icons/oxygen/scalable/actions/small/16x16/go-next-page.svgz +share/icons/oxygen/scalable/actions/small/16x16/go-last-view-page.svgz +share/icons/oxygen/scalable/actions/small/16x16/go-last-view.svgz +share/icons/oxygen/scalable/actions/small/16x16/go-next-view-page.svgz +share/icons/oxygen/scalable/actions/small/16x16/go-next-view.svgz share/icons/oxygen/scalable/actions/small/16x16/go-next.svgz -share/icons/oxygen/scalable/actions/small/16x16/go-previous-page.svgz +share/icons/oxygen/scalable/actions/small/16x16/go-previous-view-page.svgz +share/icons/oxygen/scalable/actions/small/16x16/go-previous-view.svgz share/icons/oxygen/scalable/actions/small/16x16/go-previous.svgz share/icons/oxygen/scalable/actions/small/16x16/go-up-search.svgz share/icons/oxygen/scalable/actions/small/16x16/go-up.svgz @@ -5229,8 +5677,14 @@ share/icons/oxygen/scalable/actions/small/16x16/news-subscribe.svgz share/icons/oxygen/scalable/actions/small/16x16/news-unsubscribe.svgz share/icons/oxygen/scalable/actions/small/16x16/object-flip-horizontal.svgz share/icons/oxygen/scalable/actions/small/16x16/object-flip-vertical.svgz +share/icons/oxygen/scalable/actions/small/16x16/object-group.svgz +share/icons/oxygen/scalable/actions/small/16x16/object-order-back.svgz +share/icons/oxygen/scalable/actions/small/16x16/object-order-front.svgz +share/icons/oxygen/scalable/actions/small/16x16/object-order-lower.svgz +share/icons/oxygen/scalable/actions/small/16x16/object-order-raise.svgz share/icons/oxygen/scalable/actions/small/16x16/object-rotate-left.svgz share/icons/oxygen/scalable/actions/small/16x16/object-rotate-right.svgz +share/icons/oxygen/scalable/actions/small/16x16/object-ungroup.svgz share/icons/oxygen/scalable/actions/small/16x16/page-zoom.svgz share/icons/oxygen/scalable/actions/small/16x16/process-stop.svgz share/icons/oxygen/scalable/actions/small/16x16/rating.svgz @@ -5245,12 +5699,16 @@ share/icons/oxygen/scalable/actions/small/16x16/tab-new-background.svgz share/icons/oxygen/scalable/actions/small/16x16/tab-new.svgz share/icons/oxygen/scalable/actions/small/16x16/text-completion.svgz share/icons/oxygen/scalable/actions/small/16x16/text-speak.svgz +share/icons/oxygen/scalable/actions/small/16x16/tool-animator.svgz share/icons/oxygen/scalable/actions/small/16x16/tools-check-spelling.svgz share/icons/oxygen/scalable/actions/small/16x16/tools-media-optical-copy.svgz +share/icons/oxygen/scalable/actions/small/16x16/transform-crop-and-resize.svgz share/icons/oxygen/scalable/actions/small/16x16/transform-rotate.svgz share/icons/oxygen/scalable/actions/small/16x16/transform-scale.svgz share/icons/oxygen/scalable/actions/small/16x16/trash-empty.svgz +share/icons/oxygen/scalable/actions/small/16x16/user-group-delete.svgz share/icons/oxygen/scalable/actions/small/16x16/user-group-new.svgz +share/icons/oxygen/scalable/actions/small/16x16/user-group-properties.svgz share/icons/oxygen/scalable/actions/small/16x16/user-properties.svgz share/icons/oxygen/scalable/actions/small/16x16/view-calendar-day.svgz share/icons/oxygen/scalable/actions/small/16x16/view-calendar-list.svgz @@ -5262,6 +5720,9 @@ share/icons/oxygen/scalable/actions/small/16x16/view-calendar-upcoming-days.svgz share/icons/oxygen/scalable/actions/small/16x16/view-calendar-upcoming-events.svgz share/icons/oxygen/scalable/actions/small/16x16/view-calendar-week.svgz share/icons/oxygen/scalable/actions/small/16x16/view-calendar-workweek.svgz +share/icons/oxygen/scalable/actions/small/16x16/view-choose.svgz +share/icons/oxygen/scalable/actions/small/16x16/view-close.svgz +share/icons/oxygen/scalable/actions/small/16x16/view-file-columns.svgz share/icons/oxygen/scalable/actions/small/16x16/view-filter.svgz share/icons/oxygen/scalable/actions/small/16x16/view-fullscreen.svgz share/icons/oxygen/scalable/actions/small/16x16/view-history.svgz @@ -5269,6 +5730,7 @@ share/icons/oxygen/scalable/actions/small/16x16/view-left-close.svgz share/icons/oxygen/scalable/actions/small/16x16/view-list-details.svgz share/icons/oxygen/scalable/actions/small/16x16/view-list-icons.svgz share/icons/oxygen/scalable/actions/small/16x16/view-list-text.svgz +share/icons/oxygen/scalable/actions/small/16x16/view-list-tree.svgz share/icons/oxygen/scalable/actions/small/16x16/view-media-artist.svgz share/icons/oxygen/scalable/actions/small/16x16/view-media-lyrics.svgz share/icons/oxygen/scalable/actions/small/16x16/view-media-playlist.svgz @@ -5320,11 +5782,13 @@ share/icons/oxygen/scalable/actions/small/22x22/bookmarks-organize.svgz share/icons/oxygen/scalable/actions/small/22x22/character-set.svgz share/icons/oxygen/scalable/actions/small/22x22/color-picker.svgz share/icons/oxygen/scalable/actions/small/22x22/configure-toolbars.svgz +share/icons/oxygen/scalable/actions/small/22x22/configure.svgz share/icons/oxygen/scalable/actions/small/22x22/contact-new.svgz share/icons/oxygen/scalable/actions/small/22x22/dialog-cancel.svgz share/icons/oxygen/scalable/actions/small/22x22/dialog-ok-apply.svgz share/icons/oxygen/scalable/actions/small/22x22/dialog-ok.svgz share/icons/oxygen/scalable/actions/small/22x22/document-decrypt.svgz +share/icons/oxygen/scalable/actions/small/22x22/document-edit.svgz share/icons/oxygen/scalable/actions/small/22x22/document-encrypt.svgz share/icons/oxygen/scalable/actions/small/22x22/document-export.svgz share/icons/oxygen/scalable/actions/small/22x22/document-import.svgz @@ -5359,38 +5823,21 @@ share/icons/oxygen/scalable/actions/small/22x22/edit-rename.svgz share/icons/oxygen/scalable/actions/small/22x22/edit-select-all.svgz share/icons/oxygen/scalable/actions/small/22x22/edit-undo.svgz share/icons/oxygen/scalable/actions/small/22x22/folder-new.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-font-size-less.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-font-size-more.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-indent-less.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-indent-more.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-justify-center.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-justify-fill.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-justify-left.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-justify-right.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-line-spacing-double.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-line-spacing-normal.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-line-spacing-triple.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-list-ordered.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-list-unordered.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-text-bold.svgz share/icons/oxygen/scalable/actions/small/22x22/format-text-color.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-text-direction-ltr.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-text-direction-rtl.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-text-italic.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-text-strikethrough.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-text-subscript.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-text-superscript.svgz -share/icons/oxygen/scalable/actions/small/22x22/format-text-underline.svgz share/icons/oxygen/scalable/actions/small/22x22/go-down-search.svgz share/icons/oxygen/scalable/actions/small/22x22/go-down.svgz -share/icons/oxygen/scalable/actions/small/22x22/go-first-page.svgz +share/icons/oxygen/scalable/actions/small/22x22/go-first-view-page.svgz +share/icons/oxygen/scalable/actions/small/22x22/go-first-view.svgz share/icons/oxygen/scalable/actions/small/22x22/go-home.svgz share/icons/oxygen/scalable/actions/small/22x22/go-jump-locationbar.svgz share/icons/oxygen/scalable/actions/small/22x22/go-jump-today.svgz -share/icons/oxygen/scalable/actions/small/22x22/go-last-page.svgz -share/icons/oxygen/scalable/actions/small/22x22/go-next-page.svgz +share/icons/oxygen/scalable/actions/small/22x22/go-last-view-page.svgz +share/icons/oxygen/scalable/actions/small/22x22/go-last-view.svgz +share/icons/oxygen/scalable/actions/small/22x22/go-next-view-page.svgz +share/icons/oxygen/scalable/actions/small/22x22/go-next-view.svgz share/icons/oxygen/scalable/actions/small/22x22/go-next.svgz -share/icons/oxygen/scalable/actions/small/22x22/go-previous-page.svgz +share/icons/oxygen/scalable/actions/small/22x22/go-previous-view-page.svgz +share/icons/oxygen/scalable/actions/small/22x22/go-previous-view.svgz share/icons/oxygen/scalable/actions/small/22x22/go-previous.svgz share/icons/oxygen/scalable/actions/small/22x22/go-up-search.svgz share/icons/oxygen/scalable/actions/small/22x22/go-up.svgz @@ -5432,11 +5879,15 @@ share/icons/oxygen/scalable/actions/small/22x22/tab-close.svgz share/icons/oxygen/scalable/actions/small/22x22/tab-detach.svgz share/icons/oxygen/scalable/actions/small/22x22/tab-duplicate.svgz share/icons/oxygen/scalable/actions/small/22x22/tab-new-background.svgz +share/icons/oxygen/scalable/actions/small/22x22/tool-animator.svgz share/icons/oxygen/scalable/actions/small/22x22/tools-check-spelling.svgz +share/icons/oxygen/scalable/actions/small/22x22/transform-crop-and-resize.svgz share/icons/oxygen/scalable/actions/small/22x22/transform-rotate.svgz share/icons/oxygen/scalable/actions/small/22x22/transform-scale.svgz share/icons/oxygen/scalable/actions/small/22x22/trash-empty.svgz +share/icons/oxygen/scalable/actions/small/22x22/user-group-delete.svgz share/icons/oxygen/scalable/actions/small/22x22/user-group-new.svgz +share/icons/oxygen/scalable/actions/small/22x22/user-group-properties.svgz share/icons/oxygen/scalable/actions/small/22x22/view-calendar-day.svgz share/icons/oxygen/scalable/actions/small/22x22/view-calendar-list.svgz share/icons/oxygen/scalable/actions/small/22x22/view-calendar-month.svgz @@ -5447,12 +5898,16 @@ share/icons/oxygen/scalable/actions/small/22x22/view-calendar-upcoming-days.svgz share/icons/oxygen/scalable/actions/small/22x22/view-calendar-upcoming-events.svgz share/icons/oxygen/scalable/actions/small/22x22/view-calendar-week.svgz share/icons/oxygen/scalable/actions/small/22x22/view-calendar-workweek.svgz +share/icons/oxygen/scalable/actions/small/22x22/view-choose.svgz +share/icons/oxygen/scalable/actions/small/22x22/view-close.svgz +share/icons/oxygen/scalable/actions/small/22x22/view-file-columns.svgz share/icons/oxygen/scalable/actions/small/22x22/view-fullscreen.svgz share/icons/oxygen/scalable/actions/small/22x22/view-history.svgz share/icons/oxygen/scalable/actions/small/22x22/view-left-close.svgz share/icons/oxygen/scalable/actions/small/22x22/view-list-details.svgz share/icons/oxygen/scalable/actions/small/22x22/view-list-icons.svgz share/icons/oxygen/scalable/actions/small/22x22/view-list-text.svgz +share/icons/oxygen/scalable/actions/small/22x22/view-list-tree.svgz share/icons/oxygen/scalable/actions/small/22x22/view-media-artist.svgz share/icons/oxygen/scalable/actions/small/22x22/view-media-lyrics.svgz share/icons/oxygen/scalable/actions/small/22x22/view-media-playlist.svgz @@ -5485,15 +5940,17 @@ share/icons/oxygen/scalable/actions/small/22x22/zoom-original.svgz share/icons/oxygen/scalable/actions/small/22x22/zoom-out.svgz share/icons/oxygen/scalable/actions/small/32x32/bookmark-new.svgz share/icons/oxygen/scalable/actions/small/32x32/dashboard-show.svgz +share/icons/oxygen/scalable/actions/small/32x32/document-edit.svgz share/icons/oxygen/scalable/actions/small/32x32/edit-find-mail.svgz share/icons/oxygen/scalable/actions/small/32x32/edit-find.svgz -share/icons/oxygen/scalable/actions/small/32x32/go-first-page.svgz -share/icons/oxygen/scalable/actions/small/32x32/go-last-page.svgz -share/icons/oxygen/scalable/actions/small/32x32/go-next-page.svgz -share/icons/oxygen/scalable/actions/small/32x32/go-previous-page.svgz +share/icons/oxygen/scalable/actions/small/32x32/go-first-view-page.svgz +share/icons/oxygen/scalable/actions/small/32x32/go-last-view-page.svgz +share/icons/oxygen/scalable/actions/small/32x32/go-next-view-page.svgz +share/icons/oxygen/scalable/actions/small/32x32/go-previous-view-page.svgz share/icons/oxygen/scalable/actions/small/32x32/mail-mark-junk.svgz share/icons/oxygen/scalable/actions/small/32x32/mail-receive.svgz share/icons/oxygen/scalable/actions/small/32x32/system-search.svgz +share/icons/oxygen/scalable/actions/small/32x32/tool-animator.svgz share/icons/oxygen/scalable/actions/small/32x32/view-table-of-contents-ltr.svgz share/icons/oxygen/scalable/actions/small/32x32/view-table-of-contents-rtl.svgz share/icons/oxygen/scalable/actions/small/32x32/zoom-fit-best.svgz @@ -5502,19 +5959,27 @@ share/icons/oxygen/scalable/actions/small/32x32/zoom-fit-width.svgz share/icons/oxygen/scalable/actions/small/48x48/address-book-new.svgz share/icons/oxygen/scalable/actions/small/48x48/appointment-new.svgz share/icons/oxygen/scalable/actions/small/48x48/bookmark-new.svgz +share/icons/oxygen/scalable/actions/small/48x48/bookmark-toolbar.svgz +share/icons/oxygen/scalable/actions/small/48x48/configure-toolbars.svgz share/icons/oxygen/scalable/actions/small/48x48/contact-new.svgz +share/icons/oxygen/scalable/actions/small/48x48/document-edit.svgz share/icons/oxygen/scalable/actions/small/48x48/document-new.svgz share/icons/oxygen/scalable/actions/small/48x48/document-open-recent.svgz share/icons/oxygen/scalable/actions/small/48x48/document-open.svgz share/icons/oxygen/scalable/actions/small/48x48/document-save-all.svgz share/icons/oxygen/scalable/actions/small/48x48/document-save-as.svgz share/icons/oxygen/scalable/actions/small/48x48/document-save.svgz +share/icons/oxygen/scalable/actions/small/48x48/edit-copy.svgz share/icons/oxygen/scalable/actions/small/48x48/folder-new.svgz share/icons/oxygen/scalable/actions/small/48x48/format-text-color.svgz -share/icons/oxygen/scalable/actions/small/48x48/go-first-page.svgz -share/icons/oxygen/scalable/actions/small/48x48/go-last-page.svgz -share/icons/oxygen/scalable/actions/small/48x48/go-next-page.svgz -share/icons/oxygen/scalable/actions/small/48x48/go-previous-page.svgz +share/icons/oxygen/scalable/actions/small/48x48/go-first-view-page.svgz +share/icons/oxygen/scalable/actions/small/48x48/go-frist-view.svgz +share/icons/oxygen/scalable/actions/small/48x48/go-last-view-page.svgz +share/icons/oxygen/scalable/actions/small/48x48/go-last-view.svgz +share/icons/oxygen/scalable/actions/small/48x48/go-next-view-page.svgz +share/icons/oxygen/scalable/actions/small/48x48/go-next-view.svgz +share/icons/oxygen/scalable/actions/small/48x48/go-previous-view-page.svgz +share/icons/oxygen/scalable/actions/small/48x48/go-previous-view.svgz share/icons/oxygen/scalable/actions/small/48x48/mail-forward.svgz share/icons/oxygen/scalable/actions/small/48x48/mail-message-new.svgz share/icons/oxygen/scalable/actions/small/48x48/mail-queue.svgz @@ -5524,10 +5989,29 @@ share/icons/oxygen/scalable/actions/small/48x48/mail-reply-sender.svgz share/icons/oxygen/scalable/actions/small/48x48/object-flip-horizontal.svgz share/icons/oxygen/scalable/actions/small/48x48/object-flip-vertical.svgz share/icons/oxygen/scalable/actions/small/48x48/tab-new-background.svgz +share/icons/oxygen/scalable/actions/small/48x48/tool-animator.svgz +share/icons/oxygen/scalable/actions/small/48x48/transform-crop-and-resize.svgz +share/icons/oxygen/scalable/actions/small/48x48/transform-scale.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-choose.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-close.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-file-columns.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-fullscreen.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-left-close.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-list-details.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-list-text.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-list-tree.svgz share/icons/oxygen/scalable/actions/small/48x48/view-media-lyrics.svgz share/icons/oxygen/scalable/actions/small/48x48/view-media-playlist.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-preview.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-restore.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-right-close.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-right-new.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-sidetree.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-split-left-right.svgz +share/icons/oxygen/scalable/actions/small/48x48/view-split-top-bottom.svgz share/icons/oxygen/scalable/actions/small/48x48/view-table-of-contents-ltr.svgz share/icons/oxygen/scalable/actions/small/48x48/view-table-of-contents-rtl.svgz +share/icons/oxygen/scalable/actions/small/48x48/window-duplicate.svgz share/icons/oxygen/scalable/actions/small/48x48/window-new.svgz share/icons/oxygen/scalable/actions/small/48x48/zoom-fit-best.svgz share/icons/oxygen/scalable/actions/small/48x48/zoom-fit-height.svgz @@ -5549,16 +6033,20 @@ share/icons/oxygen/scalable/actions/tab-duplicate.svgz share/icons/oxygen/scalable/actions/tab-new-background.svgz share/icons/oxygen/scalable/actions/tab-new.svgz share/icons/oxygen/scalable/actions/text-speak.svgz +share/icons/oxygen/scalable/actions/tool-animator.svgz share/icons/oxygen/scalable/actions/tools-check-spelling.svgz share/icons/oxygen/scalable/actions/tools-media-optical-burn.svgz share/icons/oxygen/scalable/actions/tools-media-optical-copy.svgz share/icons/oxygen/scalable/actions/tools-report-bug.svgz share/icons/oxygen/scalable/actions/tools-wizard.svgz +share/icons/oxygen/scalable/actions/transform-crop-and-resize.svgz share/icons/oxygen/scalable/actions/transform-move.svgz share/icons/oxygen/scalable/actions/transform-rotate.svgz share/icons/oxygen/scalable/actions/transform-scale.svgz share/icons/oxygen/scalable/actions/trash-empty.svgz +share/icons/oxygen/scalable/actions/user-group-delete.svg share/icons/oxygen/scalable/actions/user-group-new.svgz +share/icons/oxygen/scalable/actions/user-group-properties.svgz share/icons/oxygen/scalable/actions/user-properties.svgz share/icons/oxygen/scalable/actions/view-calendar-day.svgz share/icons/oxygen/scalable/actions/view-calendar-list.svgz @@ -5572,6 +6060,7 @@ share/icons/oxygen/scalable/actions/view-calendar-week.svgz share/icons/oxygen/scalable/actions/view-calendar-workweek.svgz share/icons/oxygen/scalable/actions/view-choose.svgz share/icons/oxygen/scalable/actions/view-close.svgz +share/icons/oxygen/scalable/actions/view-file-columns.svgz share/icons/oxygen/scalable/actions/view-filter.svgz share/icons/oxygen/scalable/actions/view-fullscreen.svgz share/icons/oxygen/scalable/actions/view-history.svgz @@ -5585,6 +6074,8 @@ share/icons/oxygen/scalable/actions/view-media-equalizer.svgz share/icons/oxygen/scalable/actions/view-media-lyrics.svgz share/icons/oxygen/scalable/actions/view-media-playlist.svgz share/icons/oxygen/scalable/actions/view-media-visualization.svgz +share/icons/oxygen/scalable/actions/view-object-histogram-linear.svgz +share/icons/oxygen/scalable/actions/view-object-histogram-logarithmic.svgz share/icons/oxygen/scalable/actions/view-pim-calendar.svgz share/icons/oxygen/scalable/actions/view-pim-contacts.svgz share/icons/oxygen/scalable/actions/view-pim-journal.svgz @@ -5634,6 +6125,7 @@ share/icons/oxygen/scalable/apps/alternativ/khelpcenter2.svgz share/icons/oxygen/scalable/apps/alternativ/knotes.svgz share/icons/oxygen/scalable/apps/basket.svgz share/icons/oxygen/scalable/apps/bovo.svgz +share/icons/oxygen/scalable/apps/device-notifier.svgz share/icons/oxygen/scalable/apps/digikam.svgz share/icons/oxygen/scalable/apps/esd.svgz share/icons/oxygen/scalable/apps/fontforge.svgz @@ -5648,17 +6140,16 @@ share/icons/oxygen/scalable/apps/internet-web-browser.svgz share/icons/oxygen/scalable/apps/java.svgz share/icons/oxygen/scalable/apps/k3b.svgz share/icons/oxygen/scalable/apps/kaffeine.svgz -share/icons/oxygen/scalable/apps/kate.svgz share/icons/oxygen/scalable/apps/kblogger.svgz share/icons/oxygen/scalable/apps/kbugbuster.svgz share/icons/oxygen/scalable/apps/kchart.svgz share/icons/oxygen/scalable/apps/kcolorchooser.svgz share/icons/oxygen/scalable/apps/kde.svgz share/icons/oxygen/scalable/apps/kexi.svgz -share/icons/oxygen/scalable/apps/kjots.svgz share/icons/oxygen/scalable/apps/kjournal.svgz share/icons/oxygen/scalable/apps/klipper.svgz share/icons/oxygen/scalable/apps/kmplayer.svgz +share/icons/oxygen/scalable/apps/knewsticker.svgz share/icons/oxygen/scalable/apps/knotes.svgz share/icons/oxygen/scalable/apps/kolf.svgz share/icons/oxygen/scalable/apps/konqueror.svgz @@ -5682,7 +6173,6 @@ share/icons/oxygen/scalable/apps/office-address-book.svgz share/icons/oxygen/scalable/apps/office-calendar.svgz share/icons/oxygen/scalable/apps/okteta.svgz share/icons/oxygen/scalable/apps/oxygen.svgz -share/icons/oxygen/scalable/apps/phonon-xine.svgz share/icons/oxygen/scalable/apps/plasma.svgz share/icons/oxygen/scalable/apps/plasmagik.svgz share/icons/oxygen/scalable/apps/preferences-contact-list.svgz @@ -5719,6 +6209,8 @@ share/icons/oxygen/scalable/apps/preferences-system-performance.svgz share/icons/oxygen/scalable/apps/preferences-system-power-management.svgz share/icons/oxygen/scalable/apps/preferences-system-session-services.svgz share/icons/oxygen/scalable/apps/preferences-system-time.svgz +share/icons/oxygen/scalable/apps/preferences-system-windows-actions.svgz +share/icons/oxygen/scalable/apps/preferences-system-windows-move.svgz share/icons/oxygen/scalable/apps/preferences-system-windows.svgz share/icons/oxygen/scalable/apps/preferences-web-browser-adblock.svgz share/icons/oxygen/scalable/apps/preferences-web-browser-cache.svgz @@ -5727,6 +6219,7 @@ share/icons/oxygen/scalable/apps/preferences-web-browser-identification.svgz share/icons/oxygen/scalable/apps/preferences-web-browser-shortcuts.svgz share/icons/oxygen/scalable/apps/preferences-web-browser-stylesheets.svgz share/icons/oxygen/scalable/apps/scribus.svgz +share/icons/oxygen/scalable/apps/semn.svg share/icons/oxygen/scalable/apps/small/16x16/accessories-calculator.svgz share/icons/oxygen/scalable/apps/small/16x16/accessories-character-map.svgz share/icons/oxygen/scalable/apps/small/16x16/accessories-dictionary.svgz @@ -5738,9 +6231,9 @@ share/icons/oxygen/scalable/apps/small/16x16/graphics-viewer-document.svgz share/icons/oxygen/scalable/apps/small/16x16/internet-mail.svgz share/icons/oxygen/scalable/apps/small/16x16/java.svgz share/icons/oxygen/scalable/apps/small/16x16/kaffeine.svgz -share/icons/oxygen/scalable/apps/small/16x16/kate.svgz share/icons/oxygen/scalable/apps/small/16x16/kchart.svgz share/icons/oxygen/scalable/apps/small/16x16/kde.svgz +share/icons/oxygen/scalable/apps/small/16x16/knewsticker.svgz share/icons/oxygen/scalable/apps/small/16x16/knotes.svgz share/icons/oxygen/scalable/apps/small/16x16/konqueror.svgz share/icons/oxygen/scalable/apps/small/16x16/krita.svgz @@ -5751,7 +6244,7 @@ share/icons/oxygen/scalable/apps/small/16x16/office-address-book.svgz share/icons/oxygen/scalable/apps/small/16x16/office-calendar.svgz share/icons/oxygen/scalable/apps/small/16x16/preferences-contact-list.svgz share/icons/oxygen/scalable/apps/small/16x16/preferences-desktop-accessibility.svgz -share/icons/oxygen/scalable/apps/small/16x16/preferences-desktop-display.svgz +share/icons/oxygen/scalable/apps/small/16x16/preferences-desktop-font.svgz share/icons/oxygen/scalable/apps/small/16x16/preferences-desktop-gaming.svgz share/icons/oxygen/scalable/apps/small/16x16/preferences-desktop-icons.svgz share/icons/oxygen/scalable/apps/small/16x16/preferences-desktop-mouse.svgz @@ -5761,6 +6254,9 @@ share/icons/oxygen/scalable/apps/small/16x16/preferences-desktop-text-to-speech. share/icons/oxygen/scalable/apps/small/16x16/preferences-desktop-theme.svgz share/icons/oxygen/scalable/apps/small/16x16/preferences-desktop-user.svgz share/icons/oxygen/scalable/apps/small/16x16/preferences-plugin.svgz +share/icons/oxygen/scalable/apps/small/16x16/preferences-system-windows-actions.svgz +share/icons/oxygen/scalable/apps/small/16x16/preferences-system-windows-move.svgz +share/icons/oxygen/scalable/apps/small/16x16/preferences-system-windows.svgz share/icons/oxygen/scalable/apps/small/16x16/preferences-web-browser-identification.svgz share/icons/oxygen/scalable/apps/small/16x16/preferences-web-browser-stylesheets.svgz share/icons/oxygen/scalable/apps/small/16x16/scribus.svgz @@ -5785,24 +6281,39 @@ share/icons/oxygen/scalable/apps/small/22x22/office-calendar.svgz share/icons/oxygen/scalable/apps/small/22x22/package-utilities.svgz share/icons/oxygen/scalable/apps/small/22x22/preferences-contact-list.svgz share/icons/oxygen/scalable/apps/small/22x22/preferences-desktop-accessibility.svgz -share/icons/oxygen/scalable/apps/small/22x22/preferences-desktop-display.svgz +share/icons/oxygen/scalable/apps/small/22x22/preferences-desktop-font.svgz share/icons/oxygen/scalable/apps/small/22x22/preferences-desktop-gaming.svgz share/icons/oxygen/scalable/apps/small/22x22/preferences-desktop-icons.svgz share/icons/oxygen/scalable/apps/small/22x22/preferences-desktop-mouse.svgz share/icons/oxygen/scalable/apps/small/22x22/preferences-desktop-notification-bell.svgz +share/icons/oxygen/scalable/apps/small/22x22/preferences-system-windows-move.svg +share/icons/oxygen/scalable/apps/small/22x22/preferences-system-windows-move.svgz +share/icons/oxygen/scalable/apps/small/22x22/preferences-system-windows.svgz share/icons/oxygen/scalable/apps/small/22x22/scribus.svgz share/icons/oxygen/scalable/apps/small/22x22/system-file-manager.svgz share/icons/oxygen/scalable/apps/small/22x22/utilities-system-monitor.svgz share/icons/oxygen/scalable/apps/small/22x22/utilities-terminal.svgz share/icons/oxygen/scalable/apps/small/32x32/digikam.svgz share/icons/oxygen/scalable/apps/small/32x32/klipper.svgz +share/icons/oxygen/scalable/apps/small/32x32/knewsticker.svgz +share/icons/oxygen/scalable/apps/small/32x32/preferences-desktop-font.svgz share/icons/oxygen/scalable/apps/small/32x32/preferences-desktop-user.svgz +share/icons/oxygen/scalable/apps/small/32x32/preferences-system-windows-actions.svgz +share/icons/oxygen/scalable/apps/small/32x32/preferences-system-windows-move.svgz +share/icons/oxygen/scalable/apps/small/32x32/preferences-system-windows.svgz share/icons/oxygen/scalable/apps/small/32x32/system-file-manager.svgz +share/icons/oxygen/scalable/apps/small/48x48/knewsticker.svgz +share/icons/oxygen/scalable/apps/small/48x48/preferences-desktop-font.svgz +share/icons/oxygen/scalable/apps/small/48x48/preferences-system-windows-actions.svgz +share/icons/oxygen/scalable/apps/small/48x48/preferences-system-windows-move.svgz +share/icons/oxygen/scalable/apps/small/48x48/preferences-system-windows.svgz share/icons/oxygen/scalable/apps/strigi.svgz +share/icons/oxygen/scalable/apps/system-diagnosis.svgz share/icons/oxygen/scalable/apps/system-file-manager.svgz share/icons/oxygen/scalable/apps/system-software-update.svgz share/icons/oxygen/scalable/apps/system-users.svgz share/icons/oxygen/scalable/apps/tagua.svgz +share/icons/oxygen/scalable/apps/utilities-desktop-extra.svgz share/icons/oxygen/scalable/apps/utilities-file-archiver.svgz share/icons/oxygen/scalable/apps/utilities-log-viewer.svgz share/icons/oxygen/scalable/apps/utilities-system-monitor.svgz @@ -5934,13 +6445,17 @@ share/icons/oxygen/scalable/devices/small/32x32/media-floppy.svgz share/icons/oxygen/scalable/devices/small/32x32/multimedia-player-ipod.svgz share/icons/oxygen/scalable/devices/small/32x32/network-wireless.svgz share/icons/oxygen/scalable/devices/small/32x32/phone.svgz +share/icons/oxygen/scalable/devices/small/32x32/video-display.svgz share/icons/oxygen/scalable/devices/small/48x48/computer-laptop.svgz share/icons/oxygen/scalable/devices/small/48x48/computer.svgz share/icons/oxygen/scalable/devices/small/48x48/media-floppy.svgz share/icons/oxygen/scalable/devices/small/48x48/network-wireless.svgz +share/icons/oxygen/scalable/devices/small/48x48/video-display.svgz share/icons/oxygen/scalable/devices/small/64x64/camera-photo.svgz +share/icons/oxygen/scalable/devices/small/64x64/computer.svgz share/icons/oxygen/scalable/devices/small/64x64/media-floppy.svgz share/icons/oxygen/scalable/devices/small/64x64/network-wireless.svgz +share/icons/oxygen/scalable/devices/small/64x64/video-display.svgz share/icons/oxygen/scalable/devices/video-display.svgz share/icons/oxygen/scalable/devices/video-projector.svgz share/icons/oxygen/scalable/devices/video-television.svgz @@ -5968,6 +6483,7 @@ share/icons/oxygen/scalable/emotes/face-smile-big.svgz share/icons/oxygen/scalable/emotes/face-smile.svgz share/icons/oxygen/scalable/emotes/face-surprise.svgz share/icons/oxygen/scalable/emotes/face-uncertain.svgz +share/icons/oxygen/scalable/emotes/face-wink.svgz share/icons/oxygen/scalable/emotes/small/16x16/face-angel.svgz share/icons/oxygen/scalable/emotes/small/16x16/face-kiss.svgz share/icons/oxygen/scalable/emotes/small/16x16/face-laugh.svgz @@ -5996,6 +6512,7 @@ share/icons/oxygen/scalable/emotes/small/22x22/face-surprise.svgz share/icons/oxygen/scalable/emotes/small/22x22/face-uncertain.svgz share/icons/oxygen/scalable/emotes/small/22x22/face-wink.svgz share/icons/oxygen/scalable/mimetypes/application-illustrator.svgz +share/icons/oxygen/scalable/mimetypes/application-javascript.svgz share/icons/oxygen/scalable/mimetypes/application-msword.svgz share/icons/oxygen/scalable/mimetypes/application-octet-stream.svgz share/icons/oxygen/scalable/mimetypes/application-pdf.svgz @@ -6008,6 +6525,7 @@ share/icons/oxygen/scalable/mimetypes/application-postscript.svgz share/icons/oxygen/scalable/mimetypes/application-relaxng.svgz share/icons/oxygen/scalable/mimetypes/application-rss+xml.svgz share/icons/oxygen/scalable/mimetypes/application-rtf.svgz +share/icons/oxygen/scalable/mimetypes/application-vnd.ms-access.svgz share/icons/oxygen/scalable/mimetypes/application-vnd.ms-excel.svgz share/icons/oxygen/scalable/mimetypes/application-vnd.ms-powerpoint.svgz share/icons/oxygen/scalable/mimetypes/application-vnd.oasis.opendocument.chart.svgz @@ -6072,7 +6590,9 @@ share/icons/oxygen/scalable/mimetypes/application-x-kontour.svgz share/icons/oxygen/scalable/mimetypes/application-x-krita.svgz share/icons/oxygen/scalable/mimetypes/application-x-kvtml.svgz share/icons/oxygen/scalable/mimetypes/application-x-lha.svgz +share/icons/oxygen/scalable/mimetypes/application-x-lzma-compressed-tar.svgz share/icons/oxygen/scalable/mimetypes/application-x-lzop.svgz +share/icons/oxygen/scalable/mimetypes/application-x-m4.svgz share/icons/oxygen/scalable/mimetypes/application-x-marble.svgz share/icons/oxygen/scalable/mimetypes/application-x-mimearchive.svgz share/icons/oxygen/scalable/mimetypes/application-x-mplayer2.svgz @@ -6082,6 +6602,7 @@ share/icons/oxygen/scalable/mimetypes/application-x-mswrite.svgz share/icons/oxygen/scalable/mimetypes/application-x-nzb.svgz share/icons/oxygen/scalable/mimetypes/application-x-object.svgz share/icons/oxygen/scalable/mimetypes/application-x-pak.svgz +share/icons/oxygen/scalable/mimetypes/application-x-pem-key.svgz share/icons/oxygen/scalable/mimetypes/application-x-perl.svgz share/icons/oxygen/scalable/mimetypes/application-x-php.svgz share/icons/oxygen/scalable/mimetypes/application-x-plasma.svgz @@ -6092,7 +6613,11 @@ share/icons/oxygen/scalable/mimetypes/application-x-rpm.svgz share/icons/oxygen/scalable/mimetypes/application-x-ruby.svgz share/icons/oxygen/scalable/mimetypes/application-x-sharedlib.svgz share/icons/oxygen/scalable/mimetypes/application-x-shellscript.svgz +share/icons/oxygen/scalable/mimetypes/application-x-shockwave-flash.svgz share/icons/oxygen/scalable/mimetypes/application-x-siag.svgz +share/icons/oxygen/scalable/mimetypes/application-x-smb-server.svgz +share/icons/oxygen/scalable/mimetypes/application-x-smb-workgroup.svgz +share/icons/oxygen/scalable/mimetypes/application-x-subrip.svgz share/icons/oxygen/scalable/mimetypes/application-x-tar.svgz share/icons/oxygen/scalable/mimetypes/application-x-tarz.svgz share/icons/oxygen/scalable/mimetypes/application-x-tgif.svgz @@ -6126,6 +6651,7 @@ share/icons/oxygen/scalable/mimetypes/audio-x-mod.svgz share/icons/oxygen/scalable/mimetypes/audio-x-monkey.svgz share/icons/oxygen/scalable/mimetypes/audio-x-mp2.svgz share/icons/oxygen/scalable/mimetypes/audio-x-mpegurl.svgz +share/icons/oxygen/scalable/mimetypes/audio-x-ms-asx.svgz share/icons/oxygen/scalable/mimetypes/audio-x-ms-wma.svgz share/icons/oxygen/scalable/mimetypes/audio-x-musepack.svgz share/icons/oxygen/scalable/mimetypes/audio-x-pn-realaudio-plugin.svgz @@ -6175,6 +6701,7 @@ share/icons/oxygen/scalable/mimetypes/message-rfc822.svgz share/icons/oxygen/scalable/mimetypes/message.svgz share/icons/oxygen/scalable/mimetypes/odf.svgz share/icons/oxygen/scalable/mimetypes/package-x-generic.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/application-javascript.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-msword.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-pdf.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-pgp-encrypted.svgz @@ -6182,6 +6709,7 @@ share/icons/oxygen/scalable/mimetypes/small/16x16/application-pgp-keys.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-pkcs7-mime.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-rss+xml.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-rtf.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/application-vnd.ms-access.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-vnd.ms-excel.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-vnd.ms-powerpoint.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-vnd.oasis.opendocument.database.svgz @@ -6227,10 +6755,13 @@ share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-font-type1.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-kcsrc.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-kgetlist.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-kontour.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-lzma-compressed-tar.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-m4.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-marble.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-mplayer2.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-ms-dos-executable.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-mswrite.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-pem-key.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-perl.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-php.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-python.svgz @@ -6238,6 +6769,8 @@ share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-rar.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-rpm.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-ruby.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-shellscript.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-shockwave-flash.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-subrip.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-tar.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-tarz.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/application-x-tgif.svgz @@ -6268,6 +6801,7 @@ share/icons/oxygen/scalable/mimetypes/small/16x16/audio-x-mod.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/audio-x-monkey.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/audio-x-mp2.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/audio-x-mpegurl.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/audio-x-ms-asx.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/audio-x-ms-wma.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/audio-x-musepack.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/audio-x-pn-realaudio-plugin.svgz @@ -6323,20 +6857,30 @@ share/icons/oxygen/scalable/mimetypes/small/16x16/text-sgml.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-vcalendar.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-vnd.abc.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-adasrc.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-authors.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-c++hdr.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-c++src.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-changelog.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-chdr.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-cmake.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-copying.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-csharp.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-csrc.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-generic.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-hex.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-install.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-katefilelist.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-log.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-makefile.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-nfo.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-objchdr.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-objcsrc.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-patch.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-po.svg share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-python.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-readme.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-script.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-sql.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-tcl.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-x-texinfo.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/text-xml.svgz @@ -6351,6 +6895,7 @@ share/icons/oxygen/scalable/mimetypes/small/16x16/video-mp4.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/video-mpeg.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/video-quicktime.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/video-x-flic.svgz +share/icons/oxygen/scalable/mimetypes/small/16x16/video-x-flv.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/video-x-generic.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/video-x-matroska.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/video-x-mng.svgz @@ -6365,6 +6910,7 @@ share/icons/oxygen/scalable/mimetypes/small/16x16/x-office-calendar.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/x-office-contact.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/x-office-document.svgz share/icons/oxygen/scalable/mimetypes/small/16x16/x-office-spreadsheet.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/application-javascript.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-msword.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-pdf.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-pgp-encrypted.svgz @@ -6372,6 +6918,7 @@ share/icons/oxygen/scalable/mimetypes/small/22x22/application-pgp-keys.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-pkcs7-mime.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-rss+xml.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-rtf.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/application-vnd.ms-access.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-vnd.ms-excel.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-vnd.ms-powerpoint.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-vnd.oasis.opendocument.database.svgz @@ -6407,10 +6954,15 @@ share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-javascript.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-kcsrc.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-kgetlist.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-kontour.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-lzma-compressed-tar.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-m4.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-marble.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-mplayer2.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-pem-key.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-rar.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-shellscript.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-shockwave-flash.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-subrip.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-tar.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-tarz.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/application-x-tgif.svgz @@ -6438,6 +6990,7 @@ share/icons/oxygen/scalable/mimetypes/small/22x22/audio-x-matroska.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/audio-x-mod.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/audio-x-mp2.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/audio-x-mpegurl.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/audio-x-ms-asx.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/audio-x-ms-wma.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/audio-x-musepack.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/audio-x-pn-realaudio-plugin.svgz @@ -6494,17 +7047,27 @@ share/icons/oxygen/scalable/mimetypes/small/22x22/text-rtf.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-sgml.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-vcalendar.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-vnd.abc.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-authors.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-bibtex.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-c++hdr.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-changelog.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-cmake.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-copying.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-generic.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-hex.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-install.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-katefilelist.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-log.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-makefile.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-nfo.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-objchdr.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-pascal.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-patch.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-po.svg share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-python.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-readme.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-script.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-sql.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-tcl.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-x-tex.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/text-xml.svgz @@ -6518,6 +7081,7 @@ share/icons/oxygen/scalable/mimetypes/small/22x22/video-mp4.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/video-mpeg.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/video-quicktime.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/video-x-flic.svgz +share/icons/oxygen/scalable/mimetypes/small/22x22/video-x-flv.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/video-x-generic.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/video-x-matroska.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/video-x-mng.svgz @@ -6531,6 +7095,7 @@ share/icons/oxygen/scalable/mimetypes/small/22x22/x-office-contact.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/x-office-document.svgz share/icons/oxygen/scalable/mimetypes/small/22x22/x-office-spreadsheet.svgz share/icons/oxygen/scalable/mimetypes/small/32x32/inode-directory.svgz +share/icons/oxygen/scalable/mimetypes/small/32x32/text-x-po.svg share/icons/oxygen/scalable/mimetypes/text-calendar.svgz share/icons/oxygen/scalable/mimetypes/text-css.svgz share/icons/oxygen/scalable/mimetypes/text-csv.svgz @@ -6547,25 +7112,36 @@ share/icons/oxygen/scalable/mimetypes/text-vcalendar.svgz share/icons/oxygen/scalable/mimetypes/text-vnd.abc.svgz share/icons/oxygen/scalable/mimetypes/text-vnd.wap.wml.svgz share/icons/oxygen/scalable/mimetypes/text-x-adasrc.svgz +share/icons/oxygen/scalable/mimetypes/text-x-authors.svgz share/icons/oxygen/scalable/mimetypes/text-x-bibtex.svgz share/icons/oxygen/scalable/mimetypes/text-x-c++hdr.svgz share/icons/oxygen/scalable/mimetypes/text-x-c++src.svgz +share/icons/oxygen/scalable/mimetypes/text-x-changelog.svgz share/icons/oxygen/scalable/mimetypes/text-x-chdr.svgz +share/icons/oxygen/scalable/mimetypes/text-x-cmake.svgz +share/icons/oxygen/scalable/mimetypes/text-x-copying.svgz share/icons/oxygen/scalable/mimetypes/text-x-csharp.svgz share/icons/oxygen/scalable/mimetypes/text-x-csrc.svgz share/icons/oxygen/scalable/mimetypes/text-x-dtd.svgz share/icons/oxygen/scalable/mimetypes/text-x-generic.svgz share/icons/oxygen/scalable/mimetypes/text-x-hex.svgz +share/icons/oxygen/scalable/mimetypes/text-x-install.svgz share/icons/oxygen/scalable/mimetypes/text-x-java.svgz share/icons/oxygen/scalable/mimetypes/text-x-katefilelist.svgz share/icons/oxygen/scalable/mimetypes/text-x-ldif.svgz +share/icons/oxygen/scalable/mimetypes/text-x-lilypond.svgz +share/icons/oxygen/scalable/mimetypes/text-x-log.svgz share/icons/oxygen/scalable/mimetypes/text-x-makefile.svgz +share/icons/oxygen/scalable/mimetypes/text-x-nfo.svgz share/icons/oxygen/scalable/mimetypes/text-x-objchdr.svgz share/icons/oxygen/scalable/mimetypes/text-x-objcsrc.svgz share/icons/oxygen/scalable/mimetypes/text-x-pascal.svgz share/icons/oxygen/scalable/mimetypes/text-x-patch.svgz +share/icons/oxygen/scalable/mimetypes/text-x-po.svgz share/icons/oxygen/scalable/mimetypes/text-x-python.svgz +share/icons/oxygen/scalable/mimetypes/text-x-readme.svgz share/icons/oxygen/scalable/mimetypes/text-x-script.svgz +share/icons/oxygen/scalable/mimetypes/text-x-sql.svgz share/icons/oxygen/scalable/mimetypes/text-x-tcl.svgz share/icons/oxygen/scalable/mimetypes/text-x-tex.svgz share/icons/oxygen/scalable/mimetypes/text-x-texinfo.svgz @@ -6584,6 +7160,7 @@ share/icons/oxygen/scalable/mimetypes/video-mp4.svgz share/icons/oxygen/scalable/mimetypes/video-mpeg.svgz share/icons/oxygen/scalable/mimetypes/video-quicktime.svgz share/icons/oxygen/scalable/mimetypes/video-x-flic.svgz +share/icons/oxygen/scalable/mimetypes/video-x-flv.svgz share/icons/oxygen/scalable/mimetypes/video-x-generic.svgz share/icons/oxygen/scalable/mimetypes/video-x-matroska.svgz share/icons/oxygen/scalable/mimetypes/video-x-mng.svgz @@ -6661,6 +7238,7 @@ share/icons/oxygen/scalable/places/small/22x22/user-desktop.svgz share/icons/oxygen/scalable/places/small/22x22/user-home.svgz share/icons/oxygen/scalable/places/small/22x22/user-identity.svgz share/icons/oxygen/scalable/places/small/32x32/mail-folder-sent.svgz +share/icons/oxygen/scalable/places/small/48x48/folder-add.svgz share/icons/oxygen/scalable/places/small/48x48/mail-folder-sent.svgz share/icons/oxygen/scalable/places/start-here-kde.svgz share/icons/oxygen/scalable/places/start-here.svgz @@ -6668,6 +7246,10 @@ share/icons/oxygen/scalable/places/user-desktop.svgz share/icons/oxygen/scalable/places/user-home.svgz share/icons/oxygen/scalable/places/user-identity.svgz share/icons/oxygen/scalable/places/user-trash.svgz +share/icons/oxygen/scalable/status/audio-volume-high.svgz +share/icons/oxygen/scalable/status/audio-volume-low.svgz +share/icons/oxygen/scalable/status/audio-volume-medium.svgz +share/icons/oxygen/scalable/status/audio-volume-muted.svgz share/icons/oxygen/scalable/status/battery-040.svgz share/icons/oxygen/scalable/status/battery-060.svgz share/icons/oxygen/scalable/status/battery-080.svgz @@ -6704,6 +7286,10 @@ share/icons/oxygen/scalable/status/script-error.svgz share/icons/oxygen/scalable/status/security-high.svgz share/icons/oxygen/scalable/status/security-low.svgz share/icons/oxygen/scalable/status/security-medium.svgz +share/icons/oxygen/scalable/status/small/16x16/audio-volume-high.svgz +share/icons/oxygen/scalable/status/small/16x16/audio-volume-low.svgz +share/icons/oxygen/scalable/status/small/16x16/audio-volume-medium.svgz +share/icons/oxygen/scalable/status/small/16x16/audio-volume-muted.svgz share/icons/oxygen/scalable/status/small/16x16/battery-040.svgz share/icons/oxygen/scalable/status/small/16x16/battery-060.svgz share/icons/oxygen/scalable/status/small/16x16/battery-080.svgz @@ -6763,7 +7349,34 @@ share/icons/oxygen/scalable/status/small/22x22/mail-unread-new.svgz share/icons/oxygen/scalable/status/small/22x22/mail-unread.svgz share/icons/oxygen/scalable/status/small/22x22/object-locked.svgz share/icons/oxygen/scalable/status/small/22x22/object-unlocked.svgz +share/icons/oxygen/scalable/status/small/22x22/weather-hail.svgz +share/icons/oxygen/scalable/status/small/22x22/weather-showers-day.svgz +share/icons/oxygen/scalable/status/small/22x22/weather-showers-night.svgz +share/icons/oxygen/scalable/status/small/22x22/weather-showers.svgz +share/icons/oxygen/scalable/status/small/22x22/weather-snow-rain.svgz +share/icons/oxygen/scalable/status/small/22x22/weather-snow-scattered-day.svgz +share/icons/oxygen/scalable/status/small/22x22/weather-snow-scattered-night.svgz +share/icons/oxygen/scalable/status/small/22x22/weather-snow-scattered.svgz +share/icons/oxygen/scalable/status/small/22x22/weather-snow.svgz share/icons/oxygen/scalable/status/small/22x22/window-suppressed.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-clouds-night.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-clouds.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-hail.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-showers-day.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-showers-night.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-showers-scattered-day.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-showers-scattered-night.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-showers-scattered.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-showers.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-snow-rain.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-snow-scattered-day.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-snow-scattered-night.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-snow-scattered.svgz +share/icons/oxygen/scalable/status/small/32x32/weather-snow.svgz +share/icons/oxygen/scalable/status/small/48x48/audio-volume-high.svgz +share/icons/oxygen/scalable/status/small/48x48/audio-volume-low.svgz +share/icons/oxygen/scalable/status/small/48x48/audio-volume-medium.svgz +share/icons/oxygen/scalable/status/small/48x48/audio-volume-muted.svgz share/icons/oxygen/scalable/status/small/48x48/dialog-error.svgz share/icons/oxygen/scalable/status/small/48x48/dialog-information.svgz share/icons/oxygen/scalable/status/small/48x48/dialog-warning.svgz @@ -6777,10 +7390,36 @@ share/icons/oxygen/scalable/status/user-online.svgz share/icons/oxygen/scalable/status/user-trash-full.svgz share/icons/oxygen/scalable/status/wallet-closed.svgz share/icons/oxygen/scalable/status/wallet-open.svgz +share/icons/oxygen/scalable/status/weather-clear-night.svgz +share/icons/oxygen/scalable/status/weather-clear.svgz +share/icons/oxygen/scalable/status/weather-clouds-night.svgz +share/icons/oxygen/scalable/status/weather-clouds.svgz +share/icons/oxygen/scalable/status/weather-few-clouds-night.svgz +share/icons/oxygen/scalable/status/weather-few-clouds.svgz +share/icons/oxygen/scalable/status/weather-hail.svgz +share/icons/oxygen/scalable/status/weather-many-clouds.svg +share/icons/oxygen/scalable/status/weather-mist.svgz +share/icons/oxygen/scalable/status/weather-none-available.svgz +share/icons/oxygen/scalable/status/weather-showers-day.svgz +share/icons/oxygen/scalable/status/weather-showers-night.svgz +share/icons/oxygen/scalable/status/weather-showers-scattered-day.svgz +share/icons/oxygen/scalable/status/weather-showers-scattered-night.svgz +share/icons/oxygen/scalable/status/weather-showers-scattered.svgz +share/icons/oxygen/scalable/status/weather-showers.svgz +share/icons/oxygen/scalable/status/weather-snow-rain.svgz +share/icons/oxygen/scalable/status/weather-snow-scattered-day.svgz +share/icons/oxygen/scalable/status/weather-snow-scattered-night.svgz +share/icons/oxygen/scalable/status/weather-snow-scattered.svgz +share/icons/oxygen/scalable/status/weather-snow.svgz +share/icons/oxygen/scalable/status/weather-storm-day.svgz +share/icons/oxygen/scalable/status/weather-storm-night.svgz +share/icons/oxygen/scalable/status/weather-storm.svgz share/icons/oxygen/scalable/status/window-suppressed.svgz +share/icons/oxygen/scalable/text-formatting.svg share/kde4/services/about.protocol share/kde4/services/applications.protocol share/kde4/services/ar.protocol +share/kde4/services/bookmarks.protocol share/kde4/services/bzip.protocol share/kde4/services/bzip2.protocol share/kde4/services/cgi.protocol @@ -6799,6 +7438,7 @@ share/kde4/services/htmlthumbnail.desktop share/kde4/services/icons.desktop share/kde4/services/imagethumbnail.desktop share/kde4/services/info.protocol +share/kde4/services/jpegthumbnail.desktop share/kde4/services/kcm_kdnssd.desktop share/kde4/services/kcm_nepomuk.desktop share/kde4/services/kcm_phonon.desktop @@ -6806,9 +7446,12 @@ share/kde4/services/kcm_phononxine.desktop share/kde4/services/kcmcgi.desktop share/kde4/services/kcmkded.desktop share/kde4/services/kcmnotify.desktop +share/kde4/services/kcmtrash.desktop share/kde4/services/kded/desktopnotifier.desktop +share/kde4/services/kded/kdedglobalaccel.desktop share/kde4/services/kded/kpasswdserver.desktop share/kde4/services/kded/ktimezoned.desktop +share/kde4/services/kded/phononserver.desktop share/kde4/services/kded/remotedirnotify.desktop share/kde4/services/kded/soliduiserver.desktop share/kde4/services/khelpcenter.desktop @@ -6818,16 +7461,18 @@ share/kde4/services/kshorturifilter.desktop share/kde4/services/kuiserver.desktop share/kde4/services/kuriikwsfilter.desktop share/kde4/services/kurisearchfilter.desktop +share/kde4/services/kwalletd.desktop share/kde4/services/language.desktop share/kde4/services/localdomainurifilter.desktop share/kde4/services/man.protocol share/kde4/services/nepomukfilewatch.desktop share/kde4/services/nepomukmigration1.desktop share/kde4/services/nepomukontologyloader.desktop +share/kde4/services/nepomukqueryservice.desktop +share/kde4/services/nepomuksearch.protocol share/kde4/services/nepomukstorage.desktop share/kde4/services/nepomukstrigiservice.desktop share/kde4/services/nfs.protocol -share/kde4/services/phononbackends/xine.desktop share/kde4/services/programs.protocol share/kde4/services/remote.protocol share/kde4/services/renaudiodlg.desktop @@ -7064,6 +7709,7 @@ share/locale/l10n/do/entry.desktop share/locale/l10n/do/flag.png share/locale/l10n/dz/entry.desktop share/locale/l10n/dz/flag.png +share/locale/l10n/eastafrica.desktop share/locale/l10n/eastasia.desktop share/locale/l10n/easteurope.desktop share/locale/l10n/ec/entry.desktop @@ -7329,6 +7975,8 @@ share/locale/l10n/si/entry.desktop share/locale/l10n/si/flag.png share/locale/l10n/sk/entry.desktop share/locale/l10n/sk/flag.png +share/locale/l10n/sl/entry.desktop +share/locale/l10n/sl/flag.png share/locale/l10n/sm/entry.desktop share/locale/l10n/sm/flag.png share/locale/l10n/sn/entry.desktop @@ -7362,6 +8010,8 @@ share/locale/l10n/tj/entry.desktop share/locale/l10n/tj/flag.png share/locale/l10n/tk/entry.desktop share/locale/l10n/tk/flag.png +share/locale/l10n/tl/entry.desktop +share/locale/l10n/tl/flag.png share/locale/l10n/tm/entry.desktop share/locale/l10n/tm/flag.png share/locale/l10n/tn/entry.desktop @@ -7467,7 +8117,6 @@ share/sounds/KDE-Window-Move-Stop.ogg share/sounds/KDE-Window-Move.ogg share/sounds/KDE-Window-Shade-Down.ogg share/sounds/KDE-Window-Shade-Up.ogg -@dirrmtry share/sounds @dirrm share/locale/l10n/zw @dirrm share/locale/l10n/zm @dirrm share/locale/l10n/za @@ -7495,6 +8144,7 @@ share/sounds/KDE-Window-Shade-Up.ogg @dirrm share/locale/l10n/to @dirrm share/locale/l10n/tn @dirrm share/locale/l10n/tm +@dirrm share/locale/l10n/tl @dirrm share/locale/l10n/tk @dirrm share/locale/l10n/tj @dirrm share/locale/l10n/th @@ -7509,6 +8159,7 @@ share/sounds/KDE-Window-Shade-Up.ogg @dirrm share/locale/l10n/so @dirrm share/locale/l10n/sn @dirrm share/locale/l10n/sm +@dirrm share/locale/l10n/sl @dirrm share/locale/l10n/sk @dirrm share/locale/l10n/si @dirrm share/locale/l10n/sh @@ -7698,256 +8349,150 @@ share/sounds/KDE-Window-Shade-Up.ogg @dirrm share/locale/l10n/ad @dirrm share/locale/l10n/C @dirrm share/locale/l10n -@dirrmtry share/locale/en_US -@dirrmtry share/locale -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services/searchproviders -@dirrmtry share/kde4/services/phononbackends -@dirrmtry share/kde4/services/kded -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/oxygen/scalable/status/small/48x48 -@dirrmtry share/icons/oxygen/scalable/status/small/22x22 -@dirrmtry share/icons/oxygen/scalable/status/small/16x16 -@dirrmtry share/icons/oxygen/scalable/status/small -@dirrmtry share/icons/oxygen/scalable/status -@dirrmtry share/icons/oxygen/scalable/places/small/48x48 -@dirrmtry share/icons/oxygen/scalable/places/small/32x32 -@dirrmtry share/icons/oxygen/scalable/places/small/22x22 -@dirrmtry share/icons/oxygen/scalable/places/small/16x16 -@dirrmtry share/icons/oxygen/scalable/places/small -@dirrmtry share/icons/oxygen/scalable/places -@dirrmtry share/icons/oxygen/scalable/mimetypes/small/32x32 -@dirrmtry share/icons/oxygen/scalable/mimetypes/small/22x22 -@dirrmtry share/icons/oxygen/scalable/mimetypes/small/16x16 -@dirrmtry share/icons/oxygen/scalable/mimetypes/small -@dirrmtry share/icons/oxygen/scalable/mimetypes -@dirrmtry share/icons/oxygen/scalable/intl -@dirrmtry share/icons/oxygen/scalable/emotes/small/22x22 -@dirrmtry share/icons/oxygen/scalable/emotes/small/16x16 -@dirrmtry share/icons/oxygen/scalable/emotes/small -@dirrmtry share/icons/oxygen/scalable/emotes -@dirrmtry share/icons/oxygen/scalable/emblems/small/8x8 -@dirrmtry share/icons/oxygen/scalable/emblems/small/22x22 -@dirrmtry share/icons/oxygen/scalable/emblems/small/16x16 -@dirrmtry share/icons/oxygen/scalable/emblems/small -@dirrmtry share/icons/oxygen/scalable/emblems -@dirrmtry share/icons/oxygen/scalable/devices/small/64x64 -@dirrmtry share/icons/oxygen/scalable/devices/small/48x48 -@dirrmtry share/icons/oxygen/scalable/devices/small/32x32 -@dirrmtry share/icons/oxygen/scalable/devices/small/22x22 -@dirrmtry share/icons/oxygen/scalable/devices/small/16x16 -@dirrmtry share/icons/oxygen/scalable/devices/small -@dirrmtry share/icons/oxygen/scalable/devices -@dirrmtry share/icons/oxygen/scalable/categories/small/22x22 -@dirrmtry share/icons/oxygen/scalable/categories/small/16x16 -@dirrmtry share/icons/oxygen/scalable/categories/small -@dirrmtry share/icons/oxygen/scalable/categories -@dirrmtry share/icons/oxygen/scalable/apps/small/32x32 -@dirrmtry share/icons/oxygen/scalable/apps/small/22x22 -@dirrmtry share/icons/oxygen/scalable/apps/small/16x16 -@dirrmtry share/icons/oxygen/scalable/apps/small -@dirrmtry share/icons/oxygen/scalable/apps/alternativ -@dirrmtry share/icons/oxygen/scalable/apps -@dirrmtry share/icons/oxygen/scalable/animations -@dirrmtry share/icons/oxygen/scalable/actions/small/48x48 -@dirrmtry share/icons/oxygen/scalable/actions/small/32x32 -@dirrmtry share/icons/oxygen/scalable/actions/small/22x22 -@dirrmtry share/icons/oxygen/scalable/actions/small/16x16 -@dirrmtry share/icons/oxygen/scalable/actions/small -@dirrmtry share/icons/oxygen/scalable/actions -@dirrmtry share/icons/oxygen/scalable -@dirrmtry share/icons/oxygen/8x8/emblems -@dirrmtry share/icons/oxygen/8x8 -@dirrmtry share/icons/oxygen/64x64/status -@dirrmtry share/icons/oxygen/64x64/places -@dirrmtry share/icons/oxygen/64x64/mimetypes -@dirrmtry share/icons/oxygen/64x64/intl -@dirrmtry share/icons/oxygen/64x64/filesystems -@dirrmtry share/icons/oxygen/64x64/emotes -@dirrmtry share/icons/oxygen/64x64/emblems -@dirrmtry share/icons/oxygen/64x64/devices -@dirrmtry share/icons/oxygen/64x64/categories -@dirrmtry share/icons/oxygen/64x64/apps -@dirrmtry share/icons/oxygen/64x64/animations -@dirrmtry share/icons/oxygen/64x64/actions -@dirrmtry share/icons/oxygen/64x64 -@dirrmtry share/icons/oxygen/48x48/status -@dirrmtry share/icons/oxygen/48x48/places -@dirrmtry share/icons/oxygen/48x48/mimetypes -@dirrmtry share/icons/oxygen/48x48/intl -@dirrmtry share/icons/oxygen/48x48/filesystems -@dirrmtry share/icons/oxygen/48x48/emotes -@dirrmtry share/icons/oxygen/48x48/emblems -@dirrmtry share/icons/oxygen/48x48/devices -@dirrmtry share/icons/oxygen/48x48/categories -@dirrmtry share/icons/oxygen/48x48/apps -@dirrmtry share/icons/oxygen/48x48/animations -@dirrmtry share/icons/oxygen/48x48/actions -@dirrmtry share/icons/oxygen/48x48 -@dirrmtry share/icons/oxygen/32x32/status -@dirrmtry share/icons/oxygen/32x32/places -@dirrmtry share/icons/oxygen/32x32/mimetypes -@dirrmtry share/icons/oxygen/32x32/intl -@dirrmtry share/icons/oxygen/32x32/filesystems -@dirrmtry share/icons/oxygen/32x32/emotes -@dirrmtry share/icons/oxygen/32x32/emblems -@dirrmtry share/icons/oxygen/32x32/devices -@dirrmtry share/icons/oxygen/32x32/categories -@dirrmtry share/icons/oxygen/32x32/apps -@dirrmtry share/icons/oxygen/32x32/animations -@dirrmtry share/icons/oxygen/32x32/actions -@dirrmtry share/icons/oxygen/32x32 -@dirrmtry share/icons/oxygen/22x22/status -@dirrmtry share/icons/oxygen/22x22/places -@dirrmtry share/icons/oxygen/22x22/mimetypes -@dirrmtry share/icons/oxygen/22x22/intl -@dirrmtry share/icons/oxygen/22x22/filesystems -@dirrmtry share/icons/oxygen/22x22/emotes -@dirrmtry share/icons/oxygen/22x22/emblems -@dirrmtry share/icons/oxygen/22x22/devices -@dirrmtry share/icons/oxygen/22x22/categories -@dirrmtry share/icons/oxygen/22x22/apps -@dirrmtry share/icons/oxygen/22x22/animations -@dirrmtry share/icons/oxygen/22x22/actions -@dirrmtry share/icons/oxygen/22x22 -@dirrmtry share/icons/oxygen/16x16/status -@dirrmtry share/icons/oxygen/16x16/places -@dirrmtry share/icons/oxygen/16x16/mimetypes -@dirrmtry share/icons/oxygen/16x16/intl -@dirrmtry share/icons/oxygen/16x16/filesystems -@dirrmtry share/icons/oxygen/16x16/emotes -@dirrmtry share/icons/oxygen/16x16/emblems -@dirrmtry share/icons/oxygen/16x16/devices -@dirrmtry share/icons/oxygen/16x16/categories -@dirrmtry share/icons/oxygen/16x16/apps -@dirrmtry share/icons/oxygen/16x16/animations -@dirrmtry share/icons/oxygen/16x16/actions -@dirrmtry share/icons/oxygen/16x16 -@dirrmtry share/icons/oxygen/128x128/status -@dirrmtry share/icons/oxygen/128x128/places -@dirrmtry share/icons/oxygen/128x128/mimetypes -@dirrmtry share/icons/oxygen/128x128/intl -@dirrmtry share/icons/oxygen/128x128/filesystems -@dirrmtry share/icons/oxygen/128x128/emotes -@dirrmtry share/icons/oxygen/128x128/emblems -@dirrmtry share/icons/oxygen/128x128/devices -@dirrmtry share/icons/oxygen/128x128/categories -@dirrmtry share/icons/oxygen/128x128/apps -@dirrmtry share/icons/oxygen/128x128/animations -@dirrmtry share/icons/oxygen/128x128/actions -@dirrmtry share/icons/oxygen/128x128 -@dirrmtry share/icons/oxygen -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons -@dirrmtry share/emoticons/kde4 -@dirrmtry share/emoticons -@dirrmtry share/doc/HTML/en/knetattach -@dirrmtry share/doc/HTML/en/kioslave -@dirrmtry share/doc/HTML/en/khelpcenter/visualdict -@dirrmtry share/doc/HTML/en/khelpcenter/userguide -@dirrmtry share/doc/HTML/en/khelpcenter/quickstart -@dirrmtry share/doc/HTML/en/khelpcenter/glossary -@dirrmtry share/doc/HTML/en/khelpcenter/faq -@dirrmtry share/doc/HTML/en/khelpcenter -@dirrmtry share/doc/HTML/en/kdesu -@dirrmtry share/doc/HTML/en/kdebugdialog -@dirrmtry share/doc/HTML/en/kcontrol/useragent -@dirrmtry share/doc/HTML/en/kcontrol/spellchecking -@dirrmtry share/doc/HTML/en/kcontrol/smb -@dirrmtry share/doc/HTML/en/kcontrol/proxy -@dirrmtry share/doc/HTML/en/kcontrol/performance -@dirrmtry share/doc/HTML/en/kcontrol/paths -@dirrmtry share/doc/HTML/en/kcontrol/passwords -@dirrmtry share/doc/HTML/en/kcontrol/panelappearance -@dirrmtry share/doc/HTML/en/kcontrol/panel -@dirrmtry share/doc/HTML/en/kcontrol/netpref -@dirrmtry share/doc/HTML/en/kcontrol/language -@dirrmtry share/doc/HTML/en/kcontrol/khtml -@dirrmtry share/doc/HTML/en/kcontrol/kdm -@dirrmtry share/doc/HTML/en/kcontrol/kcmtaskbar -@dirrmtry share/doc/HTML/en/kcontrol/kcmnotify -@dirrmtry share/doc/HTML/en/kcontrol/kcmlaunch -@dirrmtry share/doc/HTML/en/kcontrol/kcmkonsole -@dirrmtry share/doc/HTML/en/kcontrol/kcmcss -@dirrmtry share/doc/HTML/en/kcontrol/icons -@dirrmtry share/doc/HTML/en/kcontrol/helpindex -@dirrmtry share/doc/HTML/en/kcontrol/filetypes -@dirrmtry share/doc/HTML/en/kcontrol/filemanager -@dirrmtry share/doc/HTML/en/kcontrol/emoticons -@dirrmtry share/doc/HTML/en/kcontrol/email -@dirrmtry share/doc/HTML/en/kcontrol/ebrowsing -@dirrmtry share/doc/HTML/en/kcontrol/desktopbehavior -@dirrmtry share/doc/HTML/en/kcontrol/desktop -@dirrmtry share/doc/HTML/en/kcontrol/crypto -@dirrmtry share/doc/HTML/en/kcontrol/cookies -@dirrmtry share/doc/HTML/en/kcontrol/cache -@dirrmtry share/doc/HTML/en/kcontrol/background -@dirrmtry share/doc/HTML/en/kcontrol -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/doc +@dirrm share/kde4/services/searchproviders +@dirrm share/icons/oxygen/scalable/status/small/48x48 +@dirrm share/icons/oxygen/scalable/status/small/32x32 +@dirrm share/icons/oxygen/scalable/status/small/22x22 +@dirrm share/icons/oxygen/scalable/status/small/16x16 +@dirrm share/icons/oxygen/scalable/places/small/48x48 +@dirrm share/icons/oxygen/scalable/places/small/32x32 +@dirrm share/icons/oxygen/scalable/places/small/22x22 +@dirrm share/icons/oxygen/scalable/places/small/16x16 +@dirrm share/icons/oxygen/scalable/mimetypes/small/32x32 +@dirrm share/icons/oxygen/scalable/mimetypes/small/22x22 +@dirrm share/icons/oxygen/scalable/mimetypes/small/16x16 +@dirrm share/icons/oxygen/scalable/intl +@dirrm share/icons/oxygen/scalable/emotes/small/22x22 +@dirrm share/icons/oxygen/scalable/emotes/small/16x16 +@dirrm share/icons/oxygen/scalable/emblems/small/8x8 +@dirrm share/icons/oxygen/scalable/emblems/small/22x22 +@dirrm share/icons/oxygen/scalable/emblems/small/16x16 +@dirrm share/icons/oxygen/scalable/devices/small/64x64 +@dirrm share/icons/oxygen/scalable/devices/small/48x48 +@dirrm share/icons/oxygen/scalable/devices/small/32x32 +@dirrm share/icons/oxygen/scalable/devices/small/22x22 +@dirrm share/icons/oxygen/scalable/devices/small/16x16 +@dirrm share/icons/oxygen/scalable/categories/small/22x22 +@dirrm share/icons/oxygen/scalable/categories/small/16x16 +@dirrm share/icons/oxygen/scalable/apps/small/48x48 +@dirrm share/icons/oxygen/scalable/apps/small/32x32 +@dirrm share/icons/oxygen/scalable/apps/small/22x22 +@dirrm share/icons/oxygen/scalable/apps/small/16x16 +@dirrm share/icons/oxygen/scalable/apps/alternativ +@dirrm share/icons/oxygen/scalable/animations +@dirrm share/icons/oxygen/scalable/actions/small/48x48 +@dirrm share/icons/oxygen/scalable/actions/small/32x32 +@dirrm share/icons/oxygen/scalable/actions/small/22x22 +@dirrm share/icons/oxygen/scalable/actions/small/16x16 +@dirrm share/icons/oxygen/64x64/intl +@dirrm share/icons/oxygen/64x64/filesystems +@dirrm share/icons/oxygen/64x64/animations +@dirrm share/icons/oxygen/48x48/intl +@dirrm share/icons/oxygen/48x48/filesystems +@dirrm share/icons/oxygen/48x48/animations +@dirrm share/icons/oxygen/32x32/intl +@dirrm share/icons/oxygen/32x32/filesystems +@dirrm share/icons/oxygen/32x32/animations +@dirrm share/icons/oxygen/22x22/intl +@dirrm share/icons/oxygen/22x22/filesystems +@dirrm share/icons/oxygen/22x22/animations +@dirrm share/icons/oxygen/16x16/intl +@dirrm share/icons/oxygen/16x16/filesystems +@dirrm share/icons/oxygen/16x16/animations +@dirrm share/icons/oxygen/128x128/intl +@dirrm share/icons/oxygen/128x128/filesystems +@dirrm share/icons/oxygen/128x128/animations +@dirrm share/emoticons/kde4 +@dirrm share/doc/HTML/en/knetattach +@dirrm share/doc/HTML/en/kioslave/thumbnail +@dirrm share/doc/HTML/en/kioslave/tar +@dirrm share/doc/HTML/en/kioslave/smb +@dirrm share/doc/HTML/en/kioslave/sftp +@dirrm share/doc/HTML/en/kioslave/nfs +@dirrm share/doc/HTML/en/kioslave/man +@dirrm share/doc/HTML/en/kioslave/info +@dirrm share/doc/HTML/en/kioslave/gzip +@dirrm share/doc/HTML/en/kioslave/floppy +@dirrm share/doc/HTML/en/kioslave/fish +@dirrm share/doc/HTML/en/kioslave/finger +@dirrm share/doc/HTML/en/kioslave/cgi +@dirrm share/doc/HTML/en/kioslave/bzip2 +@dirrm share/doc/HTML/en/kioslave/bookmarks +@dirrm share/doc/HTML/en/khelpcenter/visualdict +@dirrm share/doc/HTML/en/khelpcenter/userguide +@dirrm share/doc/HTML/en/khelpcenter/quickstart +@dirrm share/doc/HTML/en/khelpcenter/glossary +@dirrm share/doc/HTML/en/khelpcenter/faq +@dirrm share/doc/HTML/en/khelpcenter +@dirrm share/doc/HTML/en/kdesu +@dirrm share/doc/HTML/en/kdebugdialog +@dirrm share/doc/HTML/en/kcontrol/useragent +@dirrm share/doc/HTML/en/kcontrol/spellchecking +@dirrm share/doc/HTML/en/kcontrol/smb +@dirrm share/doc/HTML/en/kcontrol/proxy +@dirrm share/doc/HTML/en/kcontrol/performance +@dirrm share/doc/HTML/en/kcontrol/paths +@dirrm share/doc/HTML/en/kcontrol/passwords +@dirrm share/doc/HTML/en/kcontrol/panelappearance +@dirrm share/doc/HTML/en/kcontrol/panel +@dirrm share/doc/HTML/en/kcontrol/netpref +@dirrm share/doc/HTML/en/kcontrol/language +@dirrm share/doc/HTML/en/kcontrol/khtml +@dirrm share/doc/HTML/en/kcontrol/kdm +@dirrm share/doc/HTML/en/kcontrol/kcmtaskbar +@dirrm share/doc/HTML/en/kcontrol/kcmnotify +@dirrm share/doc/HTML/en/kcontrol/kcmlaunch +@dirrm share/doc/HTML/en/kcontrol/kcmkonsole +@dirrm share/doc/HTML/en/kcontrol/kcmcss +@dirrm share/doc/HTML/en/kcontrol/icons +@dirrm share/doc/HTML/en/kcontrol/helpindex +@dirrm share/doc/HTML/en/kcontrol/filetypes +@dirrm share/doc/HTML/en/kcontrol/filemanager +@dirrm share/doc/HTML/en/kcontrol/emoticons +@dirrm share/doc/HTML/en/kcontrol/email +@dirrm share/doc/HTML/en/kcontrol/ebrowsing +@dirrm share/doc/HTML/en/kcontrol/desktopbehavior +@dirrm share/doc/HTML/en/kcontrol/desktop +@dirrm share/doc/HTML/en/kcontrol/crypto +@dirrm share/doc/HTML/en/kcontrol/cookies +@dirrm share/doc/HTML/en/kcontrol/cache +@dirrm share/doc/HTML/en/kcontrol/bookmarks +@dirrm share/doc/HTML/en/kcontrol/background @dirrm share/desktop-directories -@dirrmtry share/dbus-1/services -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 -@dirrmtry share/config.kcfg -@dirrmtry share/config -@dirrmtry share/autostart -@dirrm share/apps/remoteview @dirrm share/apps/phonon +@dirrm share/apps/nepomukstrigiservice +@dirrm share/apps/nepomukstorage @dirrm share/apps/libphonon -@dirrmtry share/apps/kstyle/themes -@dirrmtry share/apps/kstyle -@dirrmtry share/apps/konqueror/dirtree/remote -@dirrmtry share/apps/konqueror/dirtree -@dirrmtry share/apps/konqueror +@dirrm share/apps/ksmserver/windowmanagers +@dirrm share/apps/ksmserver +@dirrm share/apps/konqueror/dirtree/remote +@dirrm share/apps/konqueror/dirtree @dirrm share/apps/kio_thumbnail/pics @dirrm share/apps/kio_thumbnail @dirrm share/apps/kio_man @dirrm share/apps/kio_info @dirrm share/apps/kio_finger -@dirrmtry share/apps/khelpcenter/searchhandlers/htdig -@dirrmtry share/apps/khelpcenter/searchhandlers -@dirrmtry share/apps/khelpcenter/plugins/Tutorials -@dirrmtry share/apps/khelpcenter/plugins/Scrollkeeper -@dirrmtry share/apps/khelpcenter/plugins/Manpages -@dirrmtry share/apps/khelpcenter/plugins/Applications -@dirrmtry share/apps/khelpcenter/plugins -@dirrmtry share/apps/khelpcenter -@dirrmtry share/apps/kde -@dirrmtry share/apps/kconf_update +@dirrm share/apps/kio_desktop/DesktopLinks +@dirrm share/apps/kio_desktop +@dirrm share/apps/kio_bookmarks +@dirrm share/apps/khelpcenter/searchhandlers/htdig +@dirrm share/apps/khelpcenter/searchhandlers +@dirrm share/apps/khelpcenter/plugins/Tutorials +@dirrm share/apps/khelpcenter/plugins/Scrollkeeper +@dirrm share/apps/khelpcenter/plugins/Manpages +@dirrm share/apps/khelpcenter/plugins/Applications +@dirrm share/apps/kde @dirrm share/apps/kcmlocale/pics @dirrm share/apps/kcmlocale @dirrm share/apps/kcm_phonon -@dirrmtry share/apps/kcm_componentchooser @dirrm share/apps/drkonqi/presets @dirrm share/apps/drkonqi/pics @dirrm share/apps/drkonqi/debuggers @dirrm share/apps/drkonqi -@dirrmtry share/apps/cmake/modules -@dirrmtry share/apps/cmake -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/strigi -@dirrmtry lib/kde4/plugins/styles +@dirrm share/apps/desktoptheme/default/opaque/widgets +@dirrm share/apps/desktoptheme/default/opaque/dialogs +@dirrm share/apps/desktoptheme/default/opaque +@dirrm share/apps/desktoptheme/default/dialogs @dirrm lib/kde4/plugins/phonon_platform -@dirrmtry lib/kde4/plugins -@dirrmtry lib/kde4/libexec -@dirrmtry lib/kconf_update_bin @dirrmtry etc/xdg/menus @dirrmtry etc/xdg diff --git a/x11/kdebase4-workspace/Makefile b/x11/kdebase4-workspace/Makefile index 4d97bf669506..cd7b63248e9f 100644 --- a/x11/kdebase4-workspace/Makefile +++ b/x11/kdebase4-workspace/Makefile @@ -8,10 +8,9 @@ PORTNAME= kdebase-workspace PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org @@ -31,10 +30,8 @@ RUN_DEPENDS= ${KDE4_PREFIX}/env/xdg-env.sh:${PORTSDIR}/misc/kde4-xdg-env \ mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir \ xset:${PORTSDIR}/x11/xset -CONFLICTS= kdebase-runtime-4.1.[0-1]* - SUB_FILES= kdm -USE_KDE4= kdelibs kdeprefix kdehier automoc4 +USE_KDE4= kdelibs pimlibs kdeprefix kdehier automoc4 KDE4_BUILDENV= yes USE_BZIP2= yes USE_QT_VER= 4 @@ -45,73 +42,39 @@ QT_COMPONENTS= assistant corelib dbus designer gui network opengl \ USE_GETTEXT= yes USE_ICONV= yes -CMAKE_ARGS+= -DWITH_BlueZ:BOOL=Off +CMAKE_ARGS+= -DCMAKE_REQUIRED_FLAGS:STRING="-L${LOCALBASE}/lib" \ + -DWITH_BlueZ:BOOL=OFF \ + -DWITH_Sensors:BOOL=OFF \ + -DWITH_NetworkManager:BOOL=OFF \ + -DWITH_Xmms:BOOL=OFF \ + -DWITH_Googlegadgets:BOOL=OFF \ + -DWITH_QEdje:BOOL=OFF +#Xmms and Googlegadgets could be enabled, +#QEdje has not been ported yet. post-extract: ${MKDIR} ${WRKSRC} pre-configure: - -.for item in effects/showfps.h scene.h workspace.h - ${REINPLACE_CMD} -e 's|<qdatetime.h>|<QDateTime>|'\ - ${WRKSRC}/../kwin/${item} -.endfor -.for item in client.h compositingprefs.h - ${REINPLACE_CMD} -e 's|<qframe.h>|<QFrame>|'\ - ${WRKSRC}/../kwin/${item} -.endfor -.for item in placement.cpp popupinfo.cpp tabbox.cpp - ${REINPLACE_CMD} -e 's|<qdrawutil.h>|<QtGui/qdrawutil.h>|'\ - -e 's|<qdesktopwidget.h>|<QDesktopWidget>|'\ - ${WRKSRC}/../kwin/${item} -.endfor - ${REINPLACE_CMD} -e 's|<qsessionmanager.h>|<QSessionManager>|'\ - ${WRKSRC}/../kwin/sm.cpp -.for item in effects/desktopgrid.h toplevel.h - ${REINPLACE_CMD} -e 's|<qobject.h>|<QObject>|'\ - ${WRKSRC}/../kwin/${item} -.endfor - ${REINPLACE_CMD} -e 's|<qpainter.h>|<QPainter>|'\ - ${WRKSRC}/../kwin/effects/presentwindows.cpp - ${REINPLACE_CMD} -e 's|<qcursor.h>|<QCursor>|'\ - -e 's|<qevent.h>|<QtEvents>|'\ - ${WRKSRC}/../kwin/effects/test/test_input.cpp ${REINPLACE_CMD} -e 's|<qhash.h>|<QHash>|'\ ${WRKSRC}/../kwin/effects/thumbnailaside.h ${REINPLACE_CMD} -e 's|<qdir.h>|<QDir>|'\ -e 's|<qfile.h>|<QFile>|'\ ${WRKSRC}/../kwin/effects/videorecord.cpp -.for item in kcmkwin/kwinoptions/windows.cpp clients/plastik/plastikclient.cpp\ - clients/plastik/plastikclient.cpp - ${REINPLACE_CMD} -e 's|<qdesktopwidget.h>|<QDesktopWidget>|'\ - ${WRKSRC}/../kwin/${item} -.endfor .for item in b2/b2client.cpp kwmtheme/kwmthemeclient.cpp\ laptop/laptopclient.cpp modernsystem/modernsys.cpp\ redmond/redmond.cpp ${REINPLACE_CMD} -e 's|<qdrawutil.h>|<QtGui/qdrawutil.h>|'\ ${WRKSRC}/../kwin/clients/${item} .endfor - ${REINPLACE_CMD} -e 's|<qbitmap.h>|<QBitmap>|'\ - -e 's|<qlabel.h>|<QLabel>|'\ - -e 's|<qlayout.h>|<QLayout>|'\ - -e 's|<qpainter.h>|<QPainter>|'\ - -e 's|<qtooltip.h>|<QToolTip>|'\ - ${WRKSRC}/../kwin/clients/oxygen/oxygenclient.cpp - ${REINPLACE_CMD} -e 's|<qevent.h>|<QtEvents>|'\ - ${WRKSRC}/../kwin/effects/desktopgrid.cpp - -post-configure: - ${REINPLACE_CMD} -e 's|/\* #undef HAVE_XKB \*/|#define HAVE_XKB 1|'\ - ${WRKSRC}/../build/config-X11.h post-install: - ${CHGRP} kmem ${KDE4_PREFIX}/bin/ksysguardd && \ - ${CHMOD} g+s ${KDE4_PREFIX}/bin/ksysguardd - @${LN} -sf ${KDE4_PREFIX}/bin/startkde ${KDE4_PREFIX}/bin/startkde4 - @${MV} ${KDE4_PREFIX}/bin/kdm ${KDE4_PREFIX}/bin/kdm-bin - @${MV} ${KDE4_PREFIX}/lib/kde4/libexec/kdm_config ${KDE4_PREFIX}/lib/kde4/libexec/kdm-bin_config - @${MV} ${KDE4_PREFIX}/lib/kde4/libexec/kdm_greet ${KDE4_PREFIX}/lib/kde4/libexec/kdm-bin_greet - @${INSTALL_SCRIPT} ${WRKDIR}/kdm ${KDE4_PREFIX}/bin + ${CHGRP} kmem ${PREFIX}/bin/ksysguardd && \ + ${CHMOD} g+s ${PREFIX}/bin/ksysguardd + @${LN} -sf ${PREFIX}/bin/startkde ${PREFIX}/bin/startkde4 + @${MV} ${PREFIX}/bin/kdm ${PREFIX}/bin/kdm-bin + @${MV} ${PREFIX}/lib/kde4/libexec/kdm_config ${PREFIX}/lib/kde4/libexec/kdm-bin_config + @${MV} ${PREFIX}/lib/kde4/libexec/kdm_greet ${PREFIX}/lib/kde4/libexec/kdm-bin_greet + @${INSTALL_SCRIPT} ${WRKDIR}/kdm ${PREFIX}/bin .include <bsd.port.mk> diff --git a/x11/kdebase4-workspace/distinfo b/x11/kdebase4-workspace/distinfo index 9e9c3bdeaf2b..89497e8c976b 100644 --- a/x11/kdebase4-workspace/distinfo +++ b/x11/kdebase4-workspace/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdebase-workspace-4.1.4.tar.bz2) = bdac9ac8055b976845587fe544d568be -SHA256 (KDE/kdebase-workspace-4.1.4.tar.bz2) = 5f0a63ab3d97c9240ff78c4219572fa82ebe803a1f7ce5786ba44cca50c28e08 -SIZE (KDE/kdebase-workspace-4.1.4.tar.bz2) = 47504097 +MD5 (KDE/kdebase-workspace-4.2.0.tar.bz2) = 193e30b9ed0b55b0196289d9df43a904 +SHA256 (KDE/kdebase-workspace-4.2.0.tar.bz2) = e5c550af7d655d62e37c51667f264b53eb9785166f3567960d91acd37b6f902b +SIZE (KDE/kdebase-workspace-4.2.0.tar.bz2) = 50724381 diff --git a/x11/kdebase4-workspace/files/patch-ksysguard-gui-SystemLoad.sgrd b/x11/kdebase4-workspace/files/patch-ksysguard-gui-SystemLoad.sgrd index 68bbae35e8af..b3ac831e0ac3 100644 --- a/x11/kdebase4-workspace/files/patch-ksysguard-gui-SystemLoad.sgrd +++ b/x11/kdebase4-workspace/files/patch-ksysguard-gui-SystemLoad.sgrd @@ -1,11 +1,11 @@ ---- ../ksysguard/gui/SystemLoad.sgrd.orig 2008-04-15 04:43:53.000000000 +0200 -+++ ../ksysguard/gui/SystemLoad.sgrd 2008-04-15 04:54:52.000000000 +0200 -@@ -6,7 +6,7 @@ - <beam sensorName="cpu/nice" sensorType="float" hostName="localhost" color="872414995" /> - <beam sensorName="cpu/user" sensorType="float" hostName="localhost" color="4279798271" /> - <beam sensorName="cpu/sys" sensorType="float" hostName="localhost" color="4294933768" /> -- <beam sensorName="cpu/wait" sensorType="float" hostName="localhost" color="4294955007" /> -+ <beam sensorName="cpu/system/intr" sensorType="float" hostName="localhost" color="4294955007" /> +--- ../ksysguard/gui/SystemLoad.sgrd.orig 2009-02-03 20:22:46.000000000 +0100 ++++ ../ksysguard/gui/SystemLoad.sgrd 2009-02-03 20:22:58.000000000 +0100 +@@ -3,7 +3,7 @@ + <WorkSheet title="System Load" interval="0.5" locked="1" rows="3" columns="1" > + <host port="-1" command="ksysguardd" shell="" name="localhost" /> + <display title="CPU History" svgBackground="widgets/plot-background" autoRange="0" class="FancyPlotter" column="0" row="0" vLines="0" vScroll="0" > +- <beam sensorType="float" hostName="localhost" regexpSensorName="cpu/cpu.*/TotalLoad" color="0xffff8000,0xffe20800" /> ++ <beam sensorType="float" hostName="localhost" regexpSensorName="cpu/.*/TotalLoad" color="0xffff8000,0xffe20800" /> </display> - <display svgBackground="widgets/plot-background" bColor="4281413681" title="Load Average (1 min)" hScale="3" hCount="5" fontColor="4294967295" vLines="0" hColor="838860800" pause="0" labels="1" autoRange="1" vDistance="30" globalUpdate="1" fontSize="8" vScroll="0" column="1" topBar="1" unit="" vColor="838860800" hLines="1" showUnit="1" class="FancyPlotter" row="0" > - <beam sensorName="cpu/loadavg1" sensorType="float" hostName="localhost" color="4279798271" /> + <display title="Memory and Swap History" svgBackground="widgets/plot-background" autoRange="0" class="FancyPlotter" column="0" row="1" vLines="0" vScroll="0" > + <beam summationName="Memory" sensorName="mem/physical/application" sensorType="integer" hostName="localhost" color="0xffc000c0" /> diff --git a/x11/kdebase4-workspace/files/patch-ksysguard-gui-ksgrd-SensorManager.cc b/x11/kdebase4-workspace/files/patch-ksysguard-gui-ksgrd-SensorManager.cc index cfea43043386..a112710f60ff 100644 --- a/x11/kdebase4-workspace/files/patch-ksysguard-gui-ksgrd-SensorManager.cc +++ b/x11/kdebase4-workspace/files/patch-ksysguard-gui-ksgrd-SensorManager.cc @@ -1,9 +1,9 @@ ---- ../ksysguard/gui/ksgrd/SensorManager.cc.orig 2008-04-15 04:49:59.000000000 +0200 -+++ ../ksysguard/gui/ksgrd/SensorManager.cc 2008-04-15 04:51:01.000000000 +0200 +--- ../ksysguard/gui/ksgrd/SensorManager.cc.orgi 2009-01-22 23:54:35.000000000 +0100 ++++ ../ksysguard/gui/ksgrd/SensorManager.cc 2009-01-22 23:54:52.000000000 +0100 @@ -61,6 +61,7 @@ mDict.insert( QLatin1String( "nice" ), i18n( "Nice Load" ) ); mDict.insert( QLatin1String( "user" ), i18n( "User Load" ) ); - mDict.insert( QLatin1String( "sys" ), i18n( "System Load" ) ); + mDict.insert( QLatin1String( "sys" ), i18nc( "@item sensor description", "System Load" ) ); + mDict.insert( QLatin1String( "intr" ), i18n( "Interrupt Load" ) ); mDict.insert( QLatin1String( "wait" ), i18n( "Waiting" ) ); mDict.insert( QLatin1String( "TotalLoad" ), i18n( "Total Load" ) ); diff --git a/x11/kdebase4-workspace/files/patch-ksysguard-ksysguardd-FreeBSD-CPU.c b/x11/kdebase4-workspace/files/patch-ksysguard-ksysguardd-FreeBSD-CPU.c index 23f3252cabac..978857c88f17 100644 --- a/x11/kdebase4-workspace/files/patch-ksysguard-ksysguardd-FreeBSD-CPU.c +++ b/x11/kdebase4-workspace/files/patch-ksysguard-ksysguardd-FreeBSD-CPU.c @@ -1,5 +1,5 @@ ---- ../ksysguard/ksysguardd/FreeBSD/CPU.c.orig 2008-04-15 04:26:36.000000000 +0200 -+++ ../ksysguard/ksysguardd/FreeBSD/CPU.c 2008-04-15 04:39:27.000000000 +0200 +--- ../ksysguard/ksysguardd/FreeBSD/CPU.c.orig 2008-01-05 00:55:46.000000000 +0100 ++++ ../ksysguard/ksysguardd/FreeBSD/CPU.c 2009-02-03 20:54:08.000000000 +0100 @@ -49,11 +49,12 @@ struct kinfo_cputime *); static struct kinfo_cputime cp_time, cp_old; @@ -15,26 +15,41 @@ #else long percentages(int cnt, int *out, long *new, long *old, long *diffs); -@@ -74,6 +75,7 @@ +@@ -74,6 +75,8 @@ registerMonitor("cpu/system/user", "integer", printCPUUser, printCPUUserInfo, sm); registerMonitor("cpu/system/nice", "integer", printCPUNice, printCPUNiceInfo, sm); registerMonitor("cpu/system/sys", "integer", printCPUSys, printCPUSysInfo, sm); ++ registerMonitor("cpu/system/TotalLoad", "float", printCPUTotalLoad, printCPUTotalLoadInfo, sm); + registerMonitor("cpu/system/intr", "integer", printCPUIntr, printCPUIntrInfo, sm); registerMonitor("cpu/system/idle", "integer", printCPUIdle, printCPUIdleInfo, sm); /* Monitor names changed from kde3 => kde4. Remain compatible with legacy requests when possible. */ -@@ -91,6 +93,7 @@ +@@ -91,6 +94,8 @@ removeMonitor("cpu/system/user"); removeMonitor("cpu/system/nice"); removeMonitor("cpu/system/sys"); ++ removeMonitor("cpu/system/TotalLoad"); + removeMonitor("cpu/system/intr"); removeMonitor("cpu/system/idle"); /* These were registered as legacy monitors */ -@@ -151,6 +154,18 @@ +@@ -151,6 +156,31 @@ } void ++printCPUTotalLoad(const char* cmd) ++{ ++ fprintf(CurrentClient, "%f\n", (cpu_states[CP_SYS] + cpu_states[CP_USER] + ++ cpu_states[CP_NICE] + cpu_states[CP_INTR]) / 10.0); ++} ++ ++void ++printCPUTotalLoadInfo(const char* cmd) ++{ ++ fprintf(CurrentClient, "CPU Total Load\t0\t100\t%%\n"); ++} ++ ++void +printCPUIntr(const char* cmd) +{ + fprintf(CurrentClient, "%d\n", cpu_states[CP_INTR]/10); @@ -50,7 +65,7 @@ printCPUIdle(const char* cmd) { fprintf(CurrentClient, "%d\n", cpu_states[CP_IDLE]/10); -@@ -216,7 +231,8 @@ +@@ -216,7 +246,8 @@ out[0] = ((diffs.cp_user * 1000LL + half_total) / total_change); out[1] = ((diffs.cp_nice * 1000LL + half_total) / total_change); diff --git a/x11/kdebase4-workspace/files/patch-ksysguard-ksysguardd-FreeBSD-CPU.h b/x11/kdebase4-workspace/files/patch-ksysguard-ksysguardd-FreeBSD-CPU.h index 7a09e987892f..df52f95fab38 100644 --- a/x11/kdebase4-workspace/files/patch-ksysguard-ksysguardd-FreeBSD-CPU.h +++ b/x11/kdebase4-workspace/files/patch-ksysguard-ksysguardd-FreeBSD-CPU.h @@ -1,15 +1,17 @@ ---- ../ksysguard/ksysguardd/FreeBSD/CPU.h.orig 2008-04-15 04:36:40.000000000 +0200 -+++ ../ksysguard/ksysguardd/FreeBSD/CPU.h 2008-04-15 04:38:11.000000000 +0200 -@@ -35,6 +35,8 @@ +--- ../ksysguard/ksysguardd/FreeBSD/CPU.h.orig 2008-01-05 00:55:46.000000000 +0100 ++++ ../ksysguard/ksysguardd/FreeBSD/CPU.h 2009-02-03 16:26:12.000000000 +0100 +@@ -35,6 +35,10 @@ void printCPUNiceInfo(const char* cmd); void printCPUSys(const char* cmd); void printCPUSysInfo(const char* cmd); ++void printCPUTotalLoad(const char* cmd); ++void printCPUTotalLoadInfo(const char* cmd); +void printCPUIntr(const char* cmd); +void printCPUIntrInfo(const char* cmd); void printCPUIdle(const char* cmd); void printCPUIdleInfo(const char* cmd); void printCPUxUser(const char* cmd); -@@ -43,6 +45,8 @@ +@@ -43,6 +47,8 @@ void printCPUxNiceInfo(const char* cmd); void printCPUxSys(const char* cmd); void printCPUxSysInfo(const char* cmd); diff --git a/x11/kdebase4-workspace/files/patch-libs-ksysguard-processcore-processes_freebsd_p.cpp b/x11/kdebase4-workspace/files/patch-libs-ksysguard-processcore-processes_freebsd_p.cpp deleted file mode 100644 index a803f7b1069b..000000000000 --- a/x11/kdebase4-workspace/files/patch-libs-ksysguard-processcore-processes_freebsd_p.cpp +++ /dev/null @@ -1,131 +0,0 @@ ---- ../libs/ksysguard/processcore/processes_freebsd_p.cpp.orig 2008-04-15 00:09:17.000000000 +0200 -+++ ../libs/ksysguard/processcore/processes_freebsd_p.cpp 2008-04-15 03:41:27.000000000 +0200 -@@ -78,9 +78,11 @@ - process->setTracerpid(0); - - --#if defined(__FreeBSD__) && __FreeBSD_version >= 500015 -- process->setUid(p->ki_uid); -- process->setGid(p->ki_pgid); -+#if defined(__FreeBSD__) -+ process->setEuid(p->ki_uid); -+ process->setUid(p->ki_ruid); -+ process->setEgid(p->ki_svgid); -+ process->setGid(p->ki_rgid); - process->setName(QString(p->ki_comm ? p->ki_comm : "????")); - #elif defined(__DragonFly__) && __DragonFly_version >= 190000 - process->setUid(p->kp_uid); -@@ -96,13 +98,15 @@ - { - int status; - struct rusage pru; --#if defined(__FreeBSD__) && __FreeBSD_version >= 500015 -- ps->setUserTime(p->ki_runtime / 10000); -+#if defined(__FreeBSD__) -+ ps->setUserTime(p->ki_rusage.ru_utime.tv_sec * 100 + p->ki_rusage.ru_utime.tv_usec / 10000); -+ ps->setSysTime(p->ki_rusage.ru_stime.tv_sec * 100 + p->ki_rusage.ru_stime.tv_usec / 10000); - ps->setNiceLevel(p->ki_nice); -- ps->setVmSize(p->ki_size); -- ps->setVmRSS(p->ki_rssize * getpagesize()); -+ ps->setVmSize(p->ki_size / 1024); -+ ps->setVmRSS(p->ki_rssize * getpagesize() / 1024); - status = p->ki_stat; --#elif defined(__DragonFly__) && __DragonFly_version >= 190000 -+#elif defined(__DragonFly__) -+#if __DragonFly_version >= 190000 - if (!getrusage(p->kp_pid, &pru)) { - errx(1, "failed to get rusage info"); - } -@@ -119,22 +123,22 @@ - status = p->kp_proc.p_stat; - #endif - ps->setSysTime(0); -+#endif - - // "idle","run","sleep","stop","zombie" - switch( status ) { -- case '0': -- ps->setStatus(Process::DiskSleep); -- break; -- case '1': -- ps->setStatus(Process::Running); -- break; -- case '2': -- ps->setStatus(Process::Sleeping); -- break; -- case '3': -- ps->setStatus(Process::Stopped); -- break; -- case '4': -+ case SRUN: -+ ps->setStatus(Process::Running); -+ break; -+ case SSLEEP: -+ case SWAIT: -+ case SLOCK: -+ ps->setStatus(Process::Sleeping); -+ break; -+ case SSTOP: -+ ps->setStatus(Process::Stopped); -+ break; -+ case SZOMB: - ps->setStatus(Process::Zombie); - break; - default: -@@ -145,10 +149,7 @@ - - void ProcessesLocal::Private::readProcStatm(struct kinfo_proc *p, Process *process) - { --// TODO -- --// unsigned long shared; --// process->setVmURSS(process->vmRSS - (shared * sysconf(_SC_PAGESIZE) / 1024)); -+ process->setVmURSS(-1); - } - - bool ProcessesLocal::Private::readProcCmdline(long pid, Process *process) -@@ -184,7 +185,7 @@ - struct kinfo_proc p; - if(d->readProc(pid, &p)) - { --#if defined(__FreeBSD__) && __FreeBSD_version >= 500015 -+#if defined(__FreeBSD__) - ppid = p.ki_ppid; - #elif defined(__DragonFly__) && __DragonFly_version >= 190000 - ppid = p.kp_ppid; -@@ -218,13 +219,18 @@ - mib[0] = CTL_KERN; - mib[1] = KERN_PROC; - mib[2] = KERN_PROC_ALL; -- sysctl(mib, 3, NULL, &len, NULL, 0); -- p = (kinfo_proc *) malloc(len); -- sysctl(mib, 3, p, &len, NULL, 0); -+ if (sysctl(mib, 3, NULL, &len, NULL, 0) == -1) -+ return pids; -+ if ((p = (kinfo_proc *) malloc(len)) == NULL) -+ return pids; -+ if (sysctl(mib, 3, p, &len, NULL, 0) == -1) { -+ free(p); -+ return pids; -+ } - - for (num = 0; num < len / sizeof(struct kinfo_proc); num++) - { --#if defined(__FreeBSD__) && __FreeBSD_version >= 500015 -+#if defined(__FreeBSD__) - long pid = p[num].ki_pid; - long long ppid = p[num].ki_ppid; - #elif defined(__DragonFly__) && __DragonFly_version >= 190000 -@@ -294,8 +300,11 @@ - - size_t Total; - size_t len; -+ - len = sizeof (Total); -- sysctlbyname("hw.physmem", &Total, &len, NULL, 0); -+ if (sysctlbyname("hw.physmem", &Total, &len, NULL, 0) == -1) -+ return 0; -+ - return Total /= 1024; - } - diff --git a/x11/kdebase4-workspace/files/patch-plasma-applets-systemtray_systemtraywidget.cpp b/x11/kdebase4-workspace/files/patch-plasma-applets-systemtray_systemtraywidget.cpp deleted file mode 100644 index d756e11a6e00..000000000000 --- a/x11/kdebase4-workspace/files/patch-plasma-applets-systemtray_systemtraywidget.cpp +++ /dev/null @@ -1,20 +0,0 @@ ---- ../plasma/applets/systemtray/systemtraywidget.cpp 2008/07/03 02:32:22 827463 -+++ ../plasma/applets/systemtray/systemtraywidget.cpp 2008/08/05 13:57:28 842541 -@@ -52,6 +52,17 @@ - // Override spacing set by the current style - m_mainLayout->setContentsMargins(0, 0, 0, 0); - m_mainLayout->setSpacing(4); -+ -+ // Widgets added to the parent before this one may end up -+ // on top of this one if their native windows are created -+ // after this one, so raise() to make sure this widget is -+ // on top. -+ // raise() -- doesn't work for some reason -+ foreach (QObject *sibling, parent->children()) { -+ if (sibling != this && sibling->isWidgetType()) { -+ static_cast<QWidget*>(sibling)->lower(); -+ } -+ } - } - - void SystemTrayWidget::init() diff --git a/x11/kdebase4-workspace/files/patch-svn916964_krunner_lock_lockprocess.cc b/x11/kdebase4-workspace/files/patch-svn916964_krunner_lock_lockprocess.cc new file mode 100644 index 000000000000..835260b86eff --- /dev/null +++ b/x11/kdebase4-workspace/files/patch-svn916964_krunner_lock_lockprocess.cc @@ -0,0 +1,10 @@ +--- ../krunner/lock/lockprocess.cc (revision 916963) ++++ ../krunner/lock/lockprocess.cc (revision 916964) +@@ -1104,7 +1104,6 @@ + return; // no resuming with dialog visible or when not visible + if( mSuspended && mHackProc.state() == QProcess::Running ) + { +- XForceScreenSaver(QX11Info::display(), ScreenSaverReset ); + QPainter p( this ); + p.drawPixmap( 0, 0, mSavedScreen ); + p.end(); diff --git a/x11/kdebase4-workspace/files/patch-svn916964_krunner_screensaver_saverengine.cpp b/x11/kdebase4-workspace/files/patch-svn916964_krunner_screensaver_saverengine.cpp new file mode 100644 index 000000000000..4f49a3d0463b --- /dev/null +++ b/x11/kdebase4-workspace/files/patch-svn916964_krunner_screensaver_saverengine.cpp @@ -0,0 +1,40 @@ +--- ../krunner/screensaver/saverengine.cpp (revision 916963) ++++ ../krunner/screensaver/saverengine.cpp (revision 916964) +@@ -46,7 +46,11 @@ + // Save X screensaver parameters + XGetScreenSaver(QX11Info::display(), &mXTimeout, &mXInterval, + &mXBlanking, &mXExposures); +- // ... and disable it ++ // And disable it. The internal X screensaver is not used at all, but we use its ++ // internal idle timer (and it is also used by DPMS support in X). This timer must not ++ // be altered by this code, since e.g. resetting the counter after activating our ++ // screensaver would prevent DPMS from activating. We use the timer merely to detect ++ // user activity. + XSetScreenSaver(QX11Info::display(), 0, mXInterval, mXBlanking, mXExposures); + + mState = Waiting; +@@ -87,7 +91,6 @@ + + void SaverEngine::Lock() + { +- bool ok = true; + if (mState == Waiting) + { + startLockProcess( ForceLock ); +@@ -125,6 +128,7 @@ + + void SaverEngine::SimulateUserActivity() + { ++ XForceScreenSaver( QX11Info::display(), ScreenSaverReset ); + if ( mXAutoLock && mState == Waiting ) + { + mXAutoLock->resetTrigger(); +@@ -323,6 +327,8 @@ + // + void SaverEngine::idleTimeout() + { ++ if( mState != Waiting ) ++ return; // already saving + startLockProcess( DefaultLock ); + } + diff --git a/x11/kdebase4-workspace/files/patch-svn916964_krunner_screensaver_xautolock.cpp b/x11/kdebase4-workspace/files/patch-svn916964_krunner_screensaver_xautolock.cpp new file mode 100644 index 000000000000..fac3a214f2d1 --- /dev/null +++ b/x11/kdebase4-workspace/files/patch-svn916964_krunner_screensaver_xautolock.cpp @@ -0,0 +1,84 @@ +--- ../krunner/screensaver/xautolock.cpp (revision 916963) ++++ ../krunner/screensaver/xautolock.cpp (revision 916964) +@@ -83,8 +83,10 @@ + mActive = false; + + mTimerId = startTimer( CHECK_INTERVAL ); ++ // This is an internal clock timer (in seconds), used instead of querying system time. ++ // It is incremented manually, preventing from problems with clock jumps. ++ // In other words, this is the 'now' time and the reference point for other times here. + mElapsed = 0; +- + } + + //--------------------------------------------------------------------------- +@@ -126,8 +128,6 @@ + { + mActive = true; + resetTrigger(); +- XSetScreenSaver(QX11Info::display(), mTimeout + 10, 100, PreferBlanking, DontAllowExposures); // We'll handle blanking +- kDebug() << "XSetScreenSaver" << mTimeout + 10; + } + + //--------------------------------------------------------------------------- +@@ -138,8 +138,6 @@ + { + mActive = false; + resetTrigger(); +- XSetScreenSaver(QX11Info::display(), 0, 100, PreferBlanking, DontAllowExposures); // No blanking at all +- kDebug() << "XSetScreenSaver 0"; + } + + //--------------------------------------------------------------------------- +@@ -148,12 +146,15 @@ + // + void XAutoLock::resetTrigger() + { ++ // Time of the last user activity (used only when the internal XScreensaver ++ // idle counter is not available). + mLastReset = mElapsed; ++ // Time when screensaver should be activated. + mTrigger = mElapsed + mTimeout; + #ifdef HAVE_XSCREENSAVER + mLastIdle = 0; + #endif +- XForceScreenSaver( QX11Info::display(), ScreenSaverReset ); ++ // Do not reset the internal X screensaver here (no XForceScreenSaver()) + } + + //--------------------------------------------------------------------------- +@@ -205,6 +206,9 @@ + if (mMitInfo) + { + Display *d = QX11Info::display(); ++ // Check user idle time. If it is smaller than before, it is either ++ // clock jump or user activity, so reset the trigger time. Checking whether ++ // there is user inactivity timeout is done below using mTrigger and mElapsed. + XScreenSaverQueryInfo(d, DefaultRootWindow(d), mMitInfo); + if (mLastIdle < mMitInfo->idle) + mLastIdle = mMitInfo->idle; +@@ -218,12 +222,11 @@ + + bool activate = false; + +- // kDebug() << now << mTrigger; ++ // This is the test whether to activate screensaver. If we have reached the time ++ // and for the whole timeout period there was no activity (which would change mTrigger ++ // again), activate. + if (mElapsed >= mTrigger) +- { +- resetTrigger(); + activate = true; +- } + + #ifdef HAVE_DPMS + BOOL on; +@@ -237,6 +240,8 @@ + // that is always smaller than DPMS timeout (X bug I guess). So if DPMS + // saving is active, simply always activate our saving too, otherwise + // this could prevent locking from working. ++ // X.Org 7.4: With this version activating DPMS resets the screensaver idle timer, ++ // so keep this. It probably makes sense to always do this anyway. + if(state == DPMSModeStandby || state == DPMSModeSuspend || state == DPMSModeOff) + activate = true; + // If we are DPMS-dependent and either DPMS is turned off completely or all diff --git a/x11/kdebase4-workspace/pkg-plist b/x11/kdebase4-workspace/pkg-plist index f66f119cafb4..0f53efd5db76 100644 --- a/x11/kdebase4-workspace/pkg-plist +++ b/x11/kdebase4-workspace/pkg-plist @@ -11,7 +11,6 @@ bin/kdmctl bin/kdostartupconfig4 bin/kfontinst bin/kfontview -bin/khotkeys bin/klipper bin/kmenuedit bin/krandom.kss @@ -29,71 +28,31 @@ bin/ksystraycmd bin/kwin bin/kwin_killer_helper bin/kwin_rules_dialog +bin/kwrited bin/kxkb bin/plasma +bin/plasma-overlay bin/plasmaengineexplorer bin/plasmapkg bin/plasmoidviewer bin/safestartkde +bin/setscheduler bin/startkde bin/startkde4 bin/systemsettings etc/ksysguarddrc etc/systemsettingsrc -include/KDE/Plasma/AbstractRunner -include/KDE/Plasma/AnimationDriver -include/KDE/Plasma/Animator -include/KDE/Plasma/Applet -include/KDE/Plasma/AppletBrowser -include/KDE/Plasma/AppletScript -include/KDE/Plasma/CheckBox -include/KDE/Plasma/ComboBox -include/KDE/Plasma/ConfigXml -include/KDE/Plasma/Containment -include/KDE/Plasma/Corona -include/KDE/Plasma/DataContainer -include/KDE/Plasma/DataEngine -include/KDE/Plasma/DataEngineManager -include/KDE/Plasma/DataEngineScript -include/KDE/Plasma/Delegate -include/KDE/Plasma/Dialog -include/KDE/Plasma/Flash -include/KDE/Plasma/GLApplet -include/KDE/Plasma/GroupBox -include/KDE/Plasma/Icon -include/KDE/Plasma/Label -include/KDE/Plasma/LineEdit -include/KDE/Plasma/Meter -include/KDE/Plasma/Package -include/KDE/Plasma/PackageMetadata -include/KDE/Plasma/PackageStructure -include/KDE/Plasma/PaintUtils -include/KDE/Plasma/PanelSvg -include/KDE/Plasma/Plasma -include/KDE/Plasma/PushButton -include/KDE/Plasma/QueryMatch -include/KDE/Plasma/RadioButton -include/KDE/Plasma/RunnerContext -include/KDE/Plasma/RunnerManager -include/KDE/Plasma/RunnerScript -include/KDE/Plasma/ScriptEngine -include/KDE/Plasma/Service -include/KDE/Plasma/ServiceJob -include/KDE/Plasma/SignalPlotter -include/KDE/Plasma/Svg -include/KDE/Plasma/TextEdit -include/KDE/Plasma/Theme -include/KDE/Plasma/UiLoader -include/KDE/Plasma/Version -include/KDE/Plasma/View -include/KDE/Plasma/Weather/Formulas include/KDE/Plasma/Weather/Ion -include/KDE/Plasma/WebContent -include/clocknumber.h +include/KDE/Plasma/Weather/WeatherUtils include/kcommondecoration.h include/kdecoration.h include/kdecorationbridge.h include/kdecorationfactory.h +include/kephal/configurations.h +include/kephal/kephal.h +include/kephal/kephal_export.h +include/kephal/outputs.h +include/kephal/screens.h include/kgreeterplugin.h include/kscreensaver.h include/kscreensaver_vroot.h @@ -107,6 +66,7 @@ include/ksysguard/KTextEditVT.h include/ksysguard/ProcessFilter.h include/ksysguard/ProcessModel.h include/ksysguard/ksysguardprocesslist.h +include/ksysguard/lsof.h include/ksysguard/process.h include/ksysguard/processes.h include/kwinconfig.h @@ -119,58 +79,22 @@ include/kwinxrenderutils.h include/kworkspace/kdisplaymanager.h include/kworkspace/kwindowlistmenu.h include/kworkspace/kworkspace.h -include/plasma/abstractrunner.h -include/plasma/animationdriver.h -include/plasma/animator.h -include/plasma/applet.h -include/plasma/appletbrowser.h -include/plasma/configxml.h -include/plasma/containment.h -include/plasma/corona.h -include/plasma/datacontainer.h -include/plasma/dataengine.h -include/plasma/dataenginemanager.h -include/plasma/delegate.h -include/plasma/dialog.h -include/plasma/glapplet.h -include/plasma/package.h -include/plasma/packagemetadata.h -include/plasma/packagestructure.h -include/plasma/paintutils.h -include/plasma/panelsvg.h -include/plasma/plasma.h -include/plasma/plasma_export.h -include/plasma/querymatch.h -include/plasma/runnercontext.h -include/plasma/runnermanager.h -include/plasma/scripting/appletscript.h -include/plasma/scripting/dataenginescript.h -include/plasma/scripting/runnerscript.h -include/plasma/scripting/scriptengine.h -include/plasma/service.h -include/plasma/servicejob.h -include/plasma/svg.h -include/plasma/theme.h -include/plasma/uiloader.h -include/plasma/version.h -include/plasma/view.h -include/plasma/weather/formulas.h +include/nepomuk/nepomukquery_export.h +include/nepomuk/nepomukqueryclient_export.h +include/nepomuk/query.h +include/nepomuk/queryparser.h +include/nepomuk/queryserviceclient.h +include/nepomuk/result.h +include/nepomuk/term.h include/plasma/weather/ion.h include/plasma/weather/ion_export.h -include/plasma/widgets/checkbox.h -include/plasma/widgets/combobox.h -include/plasma/widgets/flash.h -include/plasma/widgets/groupbox.h -include/plasma/widgets/icon.h -include/plasma/widgets/label.h -include/plasma/widgets/lineedit.h -include/plasma/widgets/meter.h -include/plasma/widgets/pushbutton.h -include/plasma/widgets/radiobutton.h -include/plasma/widgets/signalplotter.h -include/plasma/widgets/textedit.h -include/plasma/widgets/webcontent.h -include/plasmaclock_export.h +include/plasma/weather/weatherutils.h +include/plasmaclock/calendar.h +include/plasmaclock/calendartable.h +include/plasmaclock/clockapplet.h +include/plasmaclock/clocknumber.h +include/plasmaclock/plasmaclock_export.h +include/plasmaclock/ui_calendar.h include/solid/control/bluetoothinputdevice.h include/solid/control/bluetoothinterface.h include/solid/control/bluetoothmanager.h @@ -202,10 +126,21 @@ include/solid/control/solid_control_export.h include/solid/control/wirednetworkinterface.h include/solid/control/wirelessaccesspoint.h include/solid/control/wirelessnetworkinterface.h +include/taskmanager/abstractgroupableitem.h +include/taskmanager/abstractgroupingstrategy.h +include/taskmanager/abstractsortingstrategy.h +include/taskmanager/groupmanager.h include/taskmanager/startup.h include/taskmanager/task.h +include/taskmanager/taskactions.h +include/taskmanager/taskgroup.h +include/taskmanager/taskitem.h include/taskmanager/taskmanager.h -include/ui_calendar.h +include/taskmanager/taskmanager_export.h +lib/KDE4Workspace-%%KDE4_VERSION%%/cmake/KDE4WorkspaceConfig.cmake +lib/KDE4Workspace-%%KDE4_VERSION%%/cmake/KDE4WorkspaceConfigVersion.cmake +lib/KDE4Workspace-%%KDE4_VERSION%%/cmake/KDE4WorkspaceLibraryTargets-%%KDE4_BUILD_TYPE%%.cmake +lib/KDE4Workspace-%%KDE4_VERSION%%/cmake/KDE4WorkspaceLibraryTargets.cmake lib/kconf_update_bin/khotkeys_update lib/kconf_update_bin/krdb_clearlibrarypath lib/kconf_update_bin/kwin_update_default_rules @@ -220,16 +155,18 @@ lib/kde4/kcm_autostart.so lib/kde4/kcm_bell.so lib/kde4/kcm_clock.so lib/kde4/kcm_colors.so +lib/kde4/kcm_desktopthemedetails.so lib/kde4/kcm_display.so lib/kde4/kcm_energy.so lib/kde4/kcm_fontinst.so lib/kde4/kcm_fonts.so +lib/kde4/kcm_hotkeys.so lib/kde4/kcm_input.so lib/kde4/kcm_kdm.so lib/kde4/kcm_keyboard.so lib/kde4/kcm_keyboard_layout.so lib/kde4/kcm_keys.so -lib/kde4/kcm_khotkeys.so +lib/kde4/kcm_krunner_shell.so lib/kde4/kcm_ksplashthemes.so lib/kde4/kcm_kwin4_effect_builtins.so lib/kde4/kcm_kwincompositing.so @@ -238,13 +175,17 @@ lib/kde4/kcm_kwindesktop.so lib/kde4/kcm_kwinoptions.so lib/kde4/kcm_kwinrules.so lib/kde4/kcm_launch.so +lib/kde4/kcm_powerdevilconfig.so lib/kde4/kcm_randr.so lib/kde4/kcm_screensaver.so lib/kde4/kcm_smserver.so lib/kde4/kcm_solid.so +lib/kde4/kcm_standard_actions.so lib/kde4/kcm_style.so lib/kde4/kcm_xinerama.so +lib/kde4/kded_kephal.so lib/kde4/kded_khotkeys.so +lib/kde4/kded_powerdevil.so lib/kde4/kfontviewpart.so lib/kde4/kgreet_classic.so lib/kde4/kgreet_generic.so @@ -253,11 +194,14 @@ lib/kde4/kio_fonts.so lib/kde4/krunner_bookmarksrunner.so lib/kde4/krunner_calculatorrunner.so lib/kde4/krunner_locations.so +lib/kde4/krunner_nepomuksearchrunner.so +lib/kde4/krunner_placesrunner.so +lib/kde4/krunner_powerdevil.so +lib/kde4/krunner_recentdocuments.so lib/kde4/krunner_services.so lib/kde4/krunner_sessions.so lib/kde4/krunner_shell.so lib/kde4/krunner_webshortcuts.so -lib/kde4/krunner_xesam.so lib/kde4/kstyle_keramik_config.so lib/kde4/kwin3_b2.so lib/kde4/kwin3_kde2.so @@ -289,7 +233,9 @@ lib/kde4/libexec/krootimage lib/kde4/libexec/krunner_lock lib/kde4/libexec/test_kcm_xinerama lib/kde4/plasma_animator_default.so +lib/kde4/plasma_applet_activitybar.so lib/kde4/plasma_applet_battery.so +lib/kde4/plasma_applet_calendar.so lib/kde4/plasma_applet_clock.so lib/kde4/plasma_applet_devicenotifier.so lib/kde4/plasma_applet_dig_clock.so @@ -297,38 +243,57 @@ lib/kde4/plasma_applet_icon.so lib/kde4/plasma_applet_launcher.so lib/kde4/plasma_applet_lockout.so lib/kde4/plasma_applet_pager.so +lib/kde4/plasma_applet_quicklaunch.so lib/kde4/plasma_applet_simplelauncher.so +lib/kde4/plasma_applet_sm_cpu.so +lib/kde4/plasma_applet_sm_hdd.so +lib/kde4/plasma_applet_sm_hwinfo.so +lib/kde4/plasma_applet_sm_net.so +lib/kde4/plasma_applet_sm_temperature.so +lib/kde4/plasma_applet_system-monitor.so lib/kde4/plasma_applet_systemtray.so lib/kde4/plasma_applet_tasks.so lib/kde4/plasma_applet_trash.so +lib/kde4/plasma_applet_webbrowser.so +lib/kde4/plasma_appletscript_simple_javascript.so lib/kde4/plasma_appletscriptengine_dashboard.so lib/kde4/plasma_appletscriptengine_webapplet.so lib/kde4/plasma_containment_desktop.so +lib/kde4/plasma_containment_midpanel.so lib/kde4/plasma_containment_panel.so +lib/kde4/plasma_containment_saverdesktop.so +lib/kde4/plasma_engine_applicationjobs.so lib/kde4/plasma_engine_dict.so +lib/kde4/plasma_engine_executable.so +lib/kde4/plasma_engine_favicons.so lib/kde4/plasma_engine_filebrowser.so lib/kde4/plasma_engine_hotplug.so lib/kde4/plasma_engine_mouse.so +lib/kde4/plasma_engine_network.so +lib/kde4/plasma_engine_notifications.so lib/kde4/plasma_engine_nowplaying.so lib/kde4/plasma_engine_places.so lib/kde4/plasma_engine_powermanagement.so +lib/kde4/plasma_engine_rss.so lib/kde4/plasma_engine_soliddevice.so +lib/kde4/plasma_engine_systemmonitor.so lib/kde4/plasma_engine_tasks.so lib/kde4/plasma_engine_time.so lib/kde4/plasma_engine_weather.so lib/kde4/plasma_packagestructure_dashboard.so -lib/kde4/plasma_runner_scriptengine_qscript.so -lib/kde4/plasma_scriptengine_qscript.so +lib/kde4/plasma_packagestructure_web.so +lib/kde4/plasma_runnerscript_javascript.so +lib/kde4/plasma_wallpaper_color.so +lib/kde4/plasma_wallpaper_image.so +lib/kde4/plugins/designer/ksysguardlsofwidgets.so lib/kde4/plugins/designer/ksysguardwidgets.so -lib/kde4/solid_fakebluetooth.so lib/kde4/solid_fakenet.so lib/libkdecorations.so lib/libkdecorations.so.5 -lib/libkdecorations.so.5.0.0 +lib/libkdecorations.so.5.0.1 lib/libkdeinit4_kaccess.so lib/libkdeinit4_kcminit.so lib/libkdeinit4_kcminit_startup.so -lib/libkdeinit4_khotkeys.so lib/libkdeinit4_klipper.so lib/libkdeinit4_kmenuedit.so lib/libkdeinit4_krunner.so @@ -338,54 +303,65 @@ lib/libkdeinit4_kwin.so lib/libkdeinit4_kwin_rules_dialog.so lib/libkdeinit4_kxkb.so lib/libkdeinit4_plasma.so +lib/libkephal.so +lib/libkephal.so.5 +lib/libkephal.so.5.0.1 lib/libkfontinst.so lib/libkfontinst.so.5 -lib/libkfontinst.so.5.0.0 +lib/libkfontinst.so.5.0.1 lib/libkfontinstui.so lib/libkfontinstui.so.5 -lib/libkfontinstui.so.5.0.0 -lib/libkhotkeysprivate.so +lib/libkfontinstui.so.5.0.1 lib/libkhotkeysprivate.so.5 -lib/libkhotkeysprivate.so.5.0.0 +lib/libkhotkeysprivate.so.5.0.1 lib/libkscreensaver.so lib/libkscreensaver.so.5 lib/libkscreensaver.so.5.0.0 lib/libksgrd.so lib/libksgrd.so.5 -lib/libksgrd.so.5.0.0 +lib/libksgrd.so.5.0.1 lib/libkwineffects.so lib/libkwineffects.so.1 lib/libkwineffects.so.1.0.0 lib/libkwinnvidiahack.so lib/libkwinnvidiahack.so.5 -lib/libkwinnvidiahack.so.5.0.0 +lib/libkwinnvidiahack.so.5.0.1 lib/libkworkspace.so lib/libkworkspace.so.5 -lib/libkworkspace.so.5.0.0 -lib/libplasma.so -lib/libplasma.so.2 -lib/libplasma.so.2.0.0 +lib/libkworkspace.so.5.0.1 +lib/liblsofui.so +lib/liblsofui.so.5 +lib/liblsofui.so.5.0.1 +lib/libnepomukquery.so +lib/libnepomukquery.so.5 +lib/libnepomukquery.so.5.0.1 +lib/libnepomukqueryclient.so +lib/libnepomukqueryclient.so.5 +lib/libnepomukqueryclient.so.5.0.1 +lib/libplasma_applet-system-monitor.so +lib/libplasma_applet-system-monitor.so.5 +lib/libplasma_applet-system-monitor.so.5.0.1 lib/libplasmaclock.so lib/libplasmaclock.so.5 -lib/libplasmaclock.so.5.0.0 +lib/libplasmaclock.so.5.0.1 lib/libprocesscore.so lib/libprocesscore.so.5 -lib/libprocesscore.so.5.0.0 +lib/libprocesscore.so.5.0.1 lib/libprocessui.so lib/libprocessui.so.5 -lib/libprocessui.so.5.0.0 +lib/libprocessui.so.5.0.1 lib/libsolidcontrol.so lib/libsolidcontrol.so.5 -lib/libsolidcontrol.so.5.0.0 +lib/libsolidcontrol.so.5.0.1 lib/libsolidcontrolifaces.so lib/libsolidcontrolifaces.so.5 -lib/libsolidcontrolifaces.so.5.0.0 +lib/libsolidcontrolifaces.so.5.0.1 lib/libtaskmanager.so lib/libtaskmanager.so.5 -lib/libtaskmanager.so.5.0.0 +lib/libtaskmanager.so.5.0.1 lib/libweather_ion.so lib/libweather_ion.so.5 -lib/libweather_ion.so.5.0.0 +lib/libweather_ion.so.5.0.1 lib/strigi/strigita_font.so share/applications/kde4/kfontview.desktop share/applications/kde4/klipper.desktop @@ -393,45 +369,25 @@ share/applications/kde4/kmenuedit.desktop share/applications/kde4/krandrtray.desktop share/applications/kde4/ksysguard.desktop share/applications/kde4/systemsettings.desktop +share/apps/cmake/modules/FindCkConnector.cmake +share/apps/cmake/modules/FindDBus.cmake +share/apps/cmake/modules/FindGooglegadgets.cmake +share/apps/cmake/modules/FindKephal.cmake share/apps/cmake/modules/FindLibXKlavier.cmake share/apps/cmake/modules/FindPAM.cmake +share/apps/cmake/modules/FindQEdje.cmake share/apps/cmake/modules/FindSensors.cmake share/apps/cmake/modules/UnixAuth.cmake +share/apps/cmake/modules/create_exe_symlink.cmake share/apps/color-schemes/Honeycomb.colors share/apps/color-schemes/Norway.colors share/apps/color-schemes/ObsidianCoast.colors share/apps/color-schemes/Oxygen.colors share/apps/color-schemes/Steel.colors share/apps/color-schemes/WontonSoup.colors -share/apps/desktoptheme/default/colors -share/apps/desktoptheme/default/dialogs/background.svg -share/apps/desktoptheme/default/dialogs/krunner.svg -share/apps/desktoptheme/default/dialogs/shutdowndialog.source.svg -share/apps/desktoptheme/default/dialogs/shutdowndialog.svg -share/apps/desktoptheme/default/metadata.desktop -share/apps/desktoptheme/default/opaque/dialogs/background.svg -share/apps/desktoptheme/default/opaque/dialogs/krunner.svg -share/apps/desktoptheme/default/opaque/dialogs/shutdowndialog.svg -share/apps/desktoptheme/default/opaque/widgets/panel-background.svg -share/apps/desktoptheme/default/opaque/widgets/tooltip.svg -share/apps/desktoptheme/default/widgets/analog_meter.svg -share/apps/desktoptheme/default/widgets/background.svg -share/apps/desktoptheme/default/widgets/bar_meter_horizontal.svg -share/apps/desktoptheme/default/widgets/bar_meter_vertical.svg -share/apps/desktoptheme/default/widgets/battery-oxygen.svg -share/apps/desktoptheme/default/widgets/battery.svg -share/apps/desktoptheme/default/widgets/branding.svg -share/apps/desktoptheme/default/widgets/clock.svg -share/apps/desktoptheme/default/widgets/connection-established.svg -share/apps/desktoptheme/default/widgets/containment-controls.svg -share/apps/desktoptheme/default/widgets/pager.svg -share/apps/desktoptheme/default/widgets/panel-background.svg -share/apps/desktoptheme/default/widgets/plot-background.svg -share/apps/desktoptheme/default/widgets/systemtray.svg -share/apps/desktoptheme/default/widgets/tasks.svg -share/apps/desktoptheme/default/widgets/toolbox-button.svg -share/apps/desktoptheme/default/widgets/tooltip.svg -share/apps/desktoptheme/default/widgets/translucentbackground.svg +share/apps/desktoptheme/default/calendar/mini-calendar.svgz +share/apps/desktoptheme/default/system-monitor/hdd_panel.svgz +share/apps/desktoptheme/default/widgets/battery-oxygen.svgz share/apps/doc/kdm/README share/apps/doc/kdm/greeter.dtd share/apps/kaccess/kaccess.notifyrc @@ -452,7 +408,6 @@ share/apps/kconf_update/kaccel.upd share/apps/kconf_update/kcmdisplayrc.upd share/apps/kconf_update/khotkeys_32b1_update.upd share/apps/kconf_update/khotkeys_printscreen.upd -share/apps/kconf_update/khotkeys_remove_shortcuts.upd share/apps/kconf_update/konqueror_gestures_kde321_update.upd share/apps/kconf_update/krdb.upd share/apps/kconf_update/ksmserver.upd @@ -605,17 +560,12 @@ share/apps/kfontview/kfontviewui.rc share/apps/khotkeys/kde32b1.khotkeys share/apps/khotkeys/konqueror_gestures_kde321.khotkeys share/apps/khotkeys/printscreen.khotkeys -share/apps/kicker/applets/ksysguardapplet.desktop share/apps/kmenuedit/icons/oxygen/22x22/actions/menu_new.png share/apps/kmenuedit/icons/oxygen/22x22/actions/menu_new_sep.png share/apps/kmenuedit/icons/oxygen/32x32/actions/menu_new.png share/apps/kmenuedit/icons/oxygen/32x32/actions/menu_new_sep.png share/apps/kmenuedit/kmenueditui.rc share/apps/konqsidebartng/virtual_folders/services/fonts.desktop -share/apps/ksmserver/windowmanagers/compiz-custom.desktop -share/apps/ksmserver/windowmanagers/compiz.desktop -share/apps/ksmserver/windowmanagers/metacity.desktop -share/apps/ksmserver/windowmanagers/openbox.desktop share/apps/ksplash/Themes/Default/1024x768/background.png share/apps/ksplash/Themes/Default/1280x1024/background.png share/apps/ksplash/Themes/Default/1600x1200/background.png @@ -677,6 +627,9 @@ share/apps/kwin/blur.frag share/apps/kwin/blur.vert share/apps/kwin/circle-edgy.png share/apps/kwin/circle.png +share/apps/kwin/cubecap.png +share/apps/kwin/cylinder.frag +share/apps/kwin/cylinder.vert share/apps/kwin/default_rules/fsp_workarounds_1.kwinrules share/apps/kwin/default_rules/plasma_desktop_containment.kwinrules share/apps/kwin/explosion-end.png @@ -700,35 +653,56 @@ share/apps/kwin/redmond.desktop share/apps/kwin/shadow-texture.png share/apps/kwin/sharpen.frag share/apps/kwin/sharpen.vert +share/apps/kwin/snow.frag +share/apps/kwin/snow.vert share/apps/kwin/snowflake.png +share/apps/kwin/sphere.vert share/apps/kwin/trackmouse.png share/apps/kwin/web.desktop +share/apps/kwrited/kwrited.notifyrc +share/apps/plasma/dashboard/AppleClasses/AppleAnimator.js +share/apps/plasma/dashboard/AppleClasses/AppleButton.js +share/apps/plasma/dashboard/AppleClasses/AppleInfoButton.js +share/apps/plasma/dashboard/AppleClasses/AppleScrollArea.js +share/apps/plasma/dashboard/AppleClasses/AppleScrollbar.js +share/apps/plasma/dashboard/AppleClasses/AppleSlider.js +share/apps/plasma/dashboard/button/genericButton.js +share/apps/plasma/services/applicationjobs.operations +share/apps/plasma/services/notifications.operations +share/apps/plasma/services/nowplaying.operations +share/apps/plasma/services/tasks.operations +share/apps/plasma_scriptengine_ruby/applet.rb +share/apps/plasma_scriptengine_ruby/data_engine.rb +share/apps/powerdevil/default.powerdevilprofiles +share/apps/powerdevil/powerdevil.notifyrc share/apps/solid/actions/test-predicate-openinwindow.desktop -share/apps/solidfakebluetoothbackend/fakebluetooth.xml share/apps/solidfakenetbackend/fakenetworking.xml share/apps/systemsettings/systemsettingsui.rc -share/autostart/khotkeys.desktop share/autostart/klipper.desktop share/autostart/krunner.desktop +share/autostart/kwrited-autostart.desktop share/autostart/plasma.desktop share/config.kcfg/klaunch.kcfg share/config.kcfg/kscreensaversettings.kcfg share/config.kcfg/kwin.kcfg +share/config.kcfg/plasma-shell-desktop.kcfg share/config/background.knsrc share/config/colorschemes.knsrc share/config/kdm.knsrc share/config/klipperrc share/config/ksplash.knsrc +share/config/ksysguard.knsrc +share/config/plasma-overlayrc share/config/plasma-themes.knsrc -share/config/plasmoids.knsrc share/config/wallpaper.knsrc share/dbus-1/interfaces/org.freedesktop.ScreenSaver.xml share/dbus-1/interfaces/org.kde.KSMServerInterface.xml share/dbus-1/interfaces/org.kde.KWin.xml +share/dbus-1/interfaces/org.kde.PowerDevil.xml share/dbus-1/interfaces/org.kde.khotkeys.xml share/dbus-1/interfaces/org.kde.krunner.App.xml -share/dbus-1/interfaces/org.kde.krunner.Interface.xml share/dbus-1/interfaces/org.kde.screensaver.xml +share/dbus-1/services/org.kde.krunner.service share/doc/HTML/en/kcontrol/autostart/common share/doc/HTML/en/kcontrol/autostart/index.cache.bz2 share/doc/HTML/en/kcontrol/autostart/index.docbook @@ -776,6 +750,9 @@ share/doc/HTML/en/kcontrol/keyboard/index.docbook share/doc/HTML/en/kcontrol/keys/common share/doc/HTML/en/kcontrol/keys/index.cache.bz2 share/doc/HTML/en/kcontrol/keys/index.docbook +share/doc/HTML/en/kcontrol/kwincompositing/common +share/doc/HTML/en/kcontrol/kwincompositing/index.cache.bz2 +share/doc/HTML/en/kcontrol/kwincompositing/index.docbook share/doc/HTML/en/kcontrol/kwindecoration/buttons.png share/doc/HTML/en/kcontrol/kwindecoration/common share/doc/HTML/en/kcontrol/kwindecoration/index.cache.bz2 @@ -784,6 +761,9 @@ share/doc/HTML/en/kcontrol/kwindecoration/main.png share/doc/HTML/en/kcontrol/mouse/common share/doc/HTML/en/kcontrol/mouse/index.cache.bz2 share/doc/HTML/en/kcontrol/mouse/index.docbook +share/doc/HTML/en/kcontrol/powerdevilconfig/common +share/doc/HTML/en/kcontrol/powerdevilconfig/index.cache.bz2 +share/doc/HTML/en/kcontrol/powerdevilconfig/index.docbook share/doc/HTML/en/kcontrol/screensaver/common share/doc/HTML/en/kcontrol/screensaver/index.cache.bz2 share/doc/HTML/en/kcontrol/screensaver/index.docbook @@ -814,6 +794,7 @@ share/doc/HTML/en/kmenuedit/index.docbook share/doc/HTML/en/kmenuedit/itemname.png share/doc/HTML/en/kmenuedit/kmenueditmain.png share/doc/HTML/en/kmenuedit/new.png +share/doc/HTML/en/kmenuedit/reset.png share/doc/HTML/en/kmenuedit/selecticon.png share/doc/HTML/en/kmenuedit/selectinternet.png share/doc/HTML/en/ksysguard/common @@ -823,8 +804,10 @@ share/doc/HTML/en/kxkb/common share/doc/HTML/en/kxkb/index.cache.bz2 share/doc/HTML/en/kxkb/index.docbook share/doc/HTML/en/plasma/common +share/doc/HTML/en/plasma/favorite-widgets.png share/doc/HTML/en/plasma/index.cache.bz2 share/doc/HTML/en/plasma/index.docbook +share/doc/HTML/en/plasma/taskbar-settings.png share/doc/HTML/en/systemsettings/common share/doc/HTML/en/systemsettings/index.cache.bz2 share/doc/HTML/en/systemsettings/index.docbook @@ -1569,13 +1552,11 @@ share/icons/Oxygen_Zion_Big/cursors/whats_this share/icons/Oxygen_Zion_Big/cursors/xterm share/icons/Oxygen_Zion_Big/index.theme share/icons/hicolor/128x128/apps/ksplash.png -share/icons/hicolor/16x16/apps/khotkeys.png share/icons/hicolor/16x16/apps/kmenuedit.png share/icons/hicolor/16x16/apps/ksplash.png share/icons/hicolor/16x16/apps/kxkb.png share/icons/hicolor/22x22/apps/kmenuedit.png share/icons/hicolor/22x22/apps/ksplash.png -share/icons/hicolor/32x32/apps/khotkeys.png share/icons/hicolor/32x32/apps/kmenuedit.png share/icons/hicolor/32x32/apps/ksplash.png share/icons/hicolor/32x32/apps/kxkb.png @@ -1625,6 +1606,7 @@ share/kde4/services/bell.desktop share/kde4/services/clock.desktop share/kde4/services/colors.desktop share/kde4/services/desktop.desktop +share/kde4/services/desktopthemedetails.desktop share/kde4/services/display.desktop share/kde4/services/energy.desktop share/kde4/services/fontinst.desktop @@ -1639,7 +1621,9 @@ share/kde4/services/kcm_solid.desktop share/kde4/services/kcmaccess.desktop share/kde4/services/kcmlaunch.desktop share/kde4/services/kcmsmserver.desktop +share/kde4/services/kded/kded_kephal.desktop share/kde4/services/kded/khotkeys.desktop +share/kde4/services/kded/powerdevil.desktop share/kde4/services/kdm.desktop share/kde4/services/keyboard.desktop share/kde4/services/keyboard_layout.desktop @@ -1649,8 +1633,13 @@ share/kde4/services/khotkeys.desktop share/kde4/services/ksplashthememgr.desktop share/kde4/services/kwin/blur.desktop share/kde4/services/kwin/boxswitch.desktop +share/kde4/services/kwin/boxswitch_config.desktop share/kde4/services/kwin/coverswitch.desktop share/kde4/services/kwin/coverswitch_config.desktop +share/kde4/services/kwin/cube.desktop +share/kde4/services/kwin/cube_config.desktop +share/kde4/services/kwin/cylinder.desktop +share/kde4/services/kwin/cylinder_config.desktop share/kde4/services/kwin/desktopgrid.desktop share/kde4/services/kwin/desktopgrid_config.desktop share/kde4/services/kwin/dialogparent.desktop @@ -1668,6 +1657,7 @@ share/kde4/services/kwin/login.desktop share/kde4/services/kwin/logout.desktop share/kde4/services/kwin/lookingglass.desktop share/kde4/services/kwin/lookingglass_config.desktop +share/kde4/services/kwin/magiclamp.desktop share/kde4/services/kwin/magnifier.desktop share/kde4/services/kwin/magnifier_config.desktop share/kde4/services/kwin/maketransparent.desktop @@ -1685,8 +1675,12 @@ share/kde4/services/kwin/sharpen_config.desktop share/kde4/services/kwin/showfps.desktop share/kde4/services/kwin/showfps_config.desktop share/kde4/services/kwin/showpaint.desktop +share/kde4/services/kwin/slide.desktop share/kde4/services/kwin/snow.desktop share/kde4/services/kwin/snow_config.desktop +share/kde4/services/kwin/sphere.desktop +share/kde4/services/kwin/sphere_config.desktop +share/kde4/services/kwin/taskbarthumbnail.desktop share/kde4/services/kwin/thumbnailaside.desktop share/kde4/services/kwin/thumbnailaside_config.desktop share/kde4/services/kwin/trackmouse.desktop @@ -1705,45 +1699,74 @@ share/kde4/services/kwinoptions.desktop share/kde4/services/kwinrules.desktop share/kde4/services/mouse.desktop share/kde4/services/plasma-animator-default.desktop +share/kde4/services/plasma-applet-activitybar.desktop share/kde4/services/plasma-applet-analogclock.desktop +share/kde4/services/plasma-applet-calendar.desktop share/kde4/services/plasma-applet-devicenotifier.desktop share/kde4/services/plasma-applet-digitalclock.desktop share/kde4/services/plasma-applet-icon.desktop share/kde4/services/plasma-applet-launcher.desktop share/kde4/services/plasma-applet-lockout.desktop +share/kde4/services/plasma-applet-quicklaunch.desktop share/kde4/services/plasma-applet-simplelauncher.desktop +share/kde4/services/plasma-applet-sm_cpu.desktop +share/kde4/services/plasma-applet-sm_hdd.desktop +share/kde4/services/plasma-applet-sm_hwinfo.desktop +share/kde4/services/plasma-applet-sm_net.desktop +share/kde4/services/plasma-applet-sm_temperature.desktop +share/kde4/services/plasma-applet-system-monitor.desktop share/kde4/services/plasma-applet-systemtray.desktop share/kde4/services/plasma-applet-trash.desktop +share/kde4/services/plasma-applet-webbrowser.desktop share/kde4/services/plasma-battery-default.desktop share/kde4/services/plasma-containment-desktop.desktop +share/kde4/services/plasma-containment-midpanel.desktop share/kde4/services/plasma-containment-panel.desktop +share/kde4/services/plasma-containment-saverdesktop.desktop +share/kde4/services/plasma-dataengine-applicationjobs.desktop share/kde4/services/plasma-dataengine-dict.desktop +share/kde4/services/plasma-dataengine-executable.desktop +share/kde4/services/plasma-dataengine-favicons.desktop share/kde4/services/plasma-dataengine-filebrowser.desktop share/kde4/services/plasma-dataengine-hotplug.desktop share/kde4/services/plasma-dataengine-mouse.desktop +share/kde4/services/plasma-dataengine-network.desktop +share/kde4/services/plasma-dataengine-notifications.desktop share/kde4/services/plasma-dataengine-nowplaying.desktop share/kde4/services/plasma-dataengine-places.desktop share/kde4/services/plasma-dataengine-powermanagement.desktop +share/kde4/services/plasma-dataengine-rss.desktop share/kde4/services/plasma-dataengine-soliddevice.desktop +share/kde4/services/plasma-dataengine-systemmonitor.desktop share/kde4/services/plasma-dataengine-tasks.desktop share/kde4/services/plasma-dataengine-time.desktop share/kde4/services/plasma-dataengine-weather.desktop share/kde4/services/plasma-packagestructure-dashboard.desktop +share/kde4/services/plasma-packagestructure-web.desktop share/kde4/services/plasma-pager-default.desktop share/kde4/services/plasma-runner-bookmarks.desktop share/kde4/services/plasma-runner-calculator.desktop share/kde4/services/plasma-runner-locations.desktop +share/kde4/services/plasma-runner-nepomuksearch.desktop +share/kde4/services/plasma-runner-places.desktop +share/kde4/services/plasma-runner-powerdevil.desktop share/kde4/services/plasma-runner-services.desktop share/kde4/services/plasma-runner-sessions.desktop share/kde4/services/plasma-runner-shell.desktop +share/kde4/services/plasma-runner-shell_config.desktop share/kde4/services/plasma-runner-webshortcuts.desktop -share/kde4/services/plasma-runner-xesam.desktop share/kde4/services/plasma-scriptengine-applet-dashboard.desktop +share/kde4/services/plasma-scriptengine-applet-simple-javascript.desktop share/kde4/services/plasma-scriptengine-applet-web.desktop -share/kde4/services/plasma-scriptengine-qscript.desktop -share/kde4/services/plasma-scriptengine-qscriptrunner.desktop +share/kde4/services/plasma-scriptengine-ruby-applet.desktop +share/kde4/services/plasma-scriptengine-ruby-dataengine.desktop +share/kde4/services/plasma-scriptengine-runner-javascript.desktop share/kde4/services/plasma-tasks-default.desktop +share/kde4/services/plasma-wallpaper-color.desktop +share/kde4/services/plasma-wallpaper-image.desktop +share/kde4/services/powerdevilconfig.desktop share/kde4/services/randr.desktop +share/kde4/services/recentdocuments.desktop share/kde4/services/screensaver.desktop share/kde4/services/settings-about-me.desktop share/kde4/services/settings-accessibility.desktop @@ -1755,6 +1778,7 @@ share/kde4/services/settings-computer-administration.desktop share/kde4/services/settings-desktop.desktop share/kde4/services/settings-display.desktop share/kde4/services/settings-general.desktop +share/kde4/services/settings-input-actions.desktop share/kde4/services/settings-keyboard-and-mouse.desktop share/kde4/services/settings-look-and-feel.desktop share/kde4/services/settings-network-and-connectivity.desktop @@ -1765,18 +1789,11 @@ share/kde4/services/settings-regional-and-language.desktop share/kde4/services/settings-sharing.desktop share/kde4/services/settings-system.desktop share/kde4/services/settings-window-behaviour.desktop -share/kde4/services/solidbackends/solid_fakebluetooth.desktop share/kde4/services/solidbackends/solid_fakenet.desktop +share/kde4/services/standard_actions.desktop share/kde4/services/style.desktop share/kde4/services/xinerama.desktop share/kde4/servicetypes/kwineffect.desktop -share/kde4/servicetypes/plasma-animator.desktop -share/kde4/servicetypes/plasma-applet.desktop -share/kde4/servicetypes/plasma-containment.desktop -share/kde4/servicetypes/plasma-dataengine.desktop -share/kde4/servicetypes/plasma-packagestructure.desktop -share/kde4/servicetypes/plasma-runner.desktop -share/kde4/servicetypes/plasma-scriptengine.desktop share/kde4/servicetypes/screensaver.desktop share/kde4/servicetypes/solidbluetoothmanager.desktop share/kde4/servicetypes/solidnetworkmanager.desktop @@ -1784,6 +1801,15 @@ share/kde4/servicetypes/solidpowermanager.desktop share/kde4/servicetypes/systemsettingscategory.desktop share/kde4/servicetypes/weather_ion.desktop share/sounds/pop.wav +share/wallpapers/Air/contents/images/1024x768.jpg +share/wallpapers/Air/contents/images/1280x1024.jpg +share/wallpapers/Air/contents/images/1280x800.jpg +share/wallpapers/Air/contents/images/1440x900.jpg +share/wallpapers/Air/contents/images/1600x1200.jpg +share/wallpapers/Air/contents/images/1920x1080.jpg +share/wallpapers/Air/contents/images/1920x1200.jpg +share/wallpapers/Air/contents/screenshot.png +share/wallpapers/Air/metadata.desktop share/wallpapers/Blue_Curl/contents/images/1024x768.jpg share/wallpapers/Blue_Curl/contents/images/1280x1024.jpg share/wallpapers/Blue_Curl/contents/images/1280x800.jpg @@ -1800,14 +1826,6 @@ share/wallpapers/Code_Poets_Dream/contents/images/1600x1200.jpg share/wallpapers/Code_Poets_Dream/contents/images/1920x1200.jpg share/wallpapers/Code_Poets_Dream/contents/screenshot.png share/wallpapers/Code_Poets_Dream/metadata.desktop -share/wallpapers/Colorado_Farm/contents/images/1024x768.jpg -share/wallpapers/Colorado_Farm/contents/images/1280x1024.jpg -share/wallpapers/Colorado_Farm/contents/images/1280x800.jpg -share/wallpapers/Colorado_Farm/contents/images/1440x900.jpg -share/wallpapers/Colorado_Farm/contents/images/1600x1200.jpg -share/wallpapers/Colorado_Farm/contents/images/1920x1200.jpg -share/wallpapers/Colorado_Farm/contents/screenshot.png -share/wallpapers/Colorado_Farm/metadata.desktop share/wallpapers/Curls_on_Green/contents/images/1024x768.jpg share/wallpapers/Curls_on_Green/contents/images/1280x1024.jpg share/wallpapers/Curls_on_Green/contents/images/1280x800.jpg @@ -1824,14 +1842,6 @@ share/wallpapers/EOS/contents/images/1600x1200.jpg share/wallpapers/EOS/contents/images/1920x1200.jpg share/wallpapers/EOS/contents/screenshot.png share/wallpapers/EOS/metadata.desktop -share/wallpapers/Emotion/contents/images/1024x768.jpg -share/wallpapers/Emotion/contents/images/1280x1024.jpg -share/wallpapers/Emotion/contents/images/1280x800.jpg -share/wallpapers/Emotion/contents/images/1440x900.jpg -share/wallpapers/Emotion/contents/images/1600x1200.jpg -share/wallpapers/Emotion/contents/images/1920x1200.jpg -share/wallpapers/Emotion/contents/screenshot.png -share/wallpapers/Emotion/metadata.desktop share/wallpapers/Fields_of_Peace/contents/images/1024x768.JPG share/wallpapers/Fields_of_Peace/contents/images/1280x1024.JPG share/wallpapers/Fields_of_Peace/contents/images/1280x800.JPG @@ -1864,22 +1874,14 @@ share/wallpapers/Fresh_Morning/contents/images/1600x1200.jpg share/wallpapers/Fresh_Morning/contents/images/1920x1200.jpg share/wallpapers/Fresh_Morning/contents/screenshot.png share/wallpapers/Fresh_Morning/metadata.desktop -share/wallpapers/Golden_Ripples/contents/images/1024x768.jpg -share/wallpapers/Golden_Ripples/contents/images/1280x1024.jpg -share/wallpapers/Golden_Ripples/contents/images/1280x800.jpg -share/wallpapers/Golden_Ripples/contents/images/1440x900.jpg -share/wallpapers/Golden_Ripples/contents/images/1600x1200.jpg -share/wallpapers/Golden_Ripples/contents/images/1920x1200.jpg -share/wallpapers/Golden_Ripples/contents/screenshot.png -share/wallpapers/Golden_Ripples/metadata.desktop -share/wallpapers/Green_Concentration/contents/images/1024x768.jpg -share/wallpapers/Green_Concentration/contents/images/1280x1024.jpg -share/wallpapers/Green_Concentration/contents/images/1280x800.jpg -share/wallpapers/Green_Concentration/contents/images/1440x900.jpg -share/wallpapers/Green_Concentration/contents/images/1600x1200.jpg -share/wallpapers/Green_Concentration/contents/images/1920x1200.jpg -share/wallpapers/Green_Concentration/contents/screenshot.png -share/wallpapers/Green_Concentration/metadata.desktop +share/wallpapers/HighTide/contents/images/1024x768.jpg +share/wallpapers/HighTide/contents/images/1280x1024.jpg +share/wallpapers/HighTide/contents/images/1280x800.jpg +share/wallpapers/HighTide/contents/images/1440x900.jpg +share/wallpapers/HighTide/contents/images/1600x1200.jpg +share/wallpapers/HighTide/contents/images/1920x1200.jpg +share/wallpapers/HighTide/contents/screenshot.png +share/wallpapers/HighTide/metadata.desktop share/wallpapers/Ladybuggin/contents/images/1024x768.jpg share/wallpapers/Ladybuggin/contents/images/1280x1024.jpg share/wallpapers/Ladybuggin/contents/images/1280x800.jpg @@ -1888,14 +1890,13 @@ share/wallpapers/Ladybuggin/contents/images/1600x1200.jpg share/wallpapers/Ladybuggin/contents/images/1920x1200.jpg share/wallpapers/Ladybuggin/contents/screenshot.png share/wallpapers/Ladybuggin/metadata.desktop -share/wallpapers/Leafs_Labyrinth/contents/images/1024x768.jpg -share/wallpapers/Leafs_Labyrinth/contents/images/1280x1024.jpg -share/wallpapers/Leafs_Labyrinth/contents/images/1280x800.jpg -share/wallpapers/Leafs_Labyrinth/contents/images/1440x900.jpg -share/wallpapers/Leafs_Labyrinth/contents/images/1600x1200.jpg -share/wallpapers/Leafs_Labyrinth/contents/images/1920x1200.jpg -share/wallpapers/Leafs_Labyrinth/contents/screenshot.png -share/wallpapers/Leafs_Labyrinth/metadata.desktop +share/wallpapers/Plasmalicious/contents/images/1280x1024.jpg +share/wallpapers/Plasmalicious/contents/images/1280x800.jpg +share/wallpapers/Plasmalicious/contents/images/1400x900.jpg +share/wallpapers/Plasmalicious/contents/images/1600x1200.jpg +share/wallpapers/Plasmalicious/contents/images/1920x1200.jpg +share/wallpapers/Plasmalicious/contents/screenshot.png +share/wallpapers/Plasmalicious/metadata.desktop share/wallpapers/Red_Leaf/contents/images/1024x768.jpg share/wallpapers/Red_Leaf/contents/images/1280x1024.jpg share/wallpapers/Red_Leaf/contents/images/1280x800.jpg @@ -1904,14 +1905,6 @@ share/wallpapers/Red_Leaf/contents/images/1600x1200.jpg share/wallpapers/Red_Leaf/contents/images/1920x1200.jpg share/wallpapers/Red_Leaf/contents/screenshot.png share/wallpapers/Red_Leaf/metadata.desktop -share/wallpapers/Skeeter_Hawk/contents/images/1024x768.jpg -share/wallpapers/Skeeter_Hawk/contents/images/1280x1024.jpg -share/wallpapers/Skeeter_Hawk/contents/images/1280x800.jpg -share/wallpapers/Skeeter_Hawk/contents/images/1440x900.jpg -share/wallpapers/Skeeter_Hawk/contents/images/1600x1200.jpg -share/wallpapers/Skeeter_Hawk/contents/images/1920x1200.jpg -share/wallpapers/Skeeter_Hawk/contents/screenshot.png -share/wallpapers/Skeeter_Hawk/metadata.desktop share/wallpapers/There_is_Rain_on_the_Table/contents/images/1024x768.jpg share/wallpapers/There_is_Rain_on_the_Table/contents/images/1280x1024.jpg share/wallpapers/There_is_Rain_on_the_Table/contents/images/1280x800.jpg @@ -1936,24 +1929,18 @@ share/wallpapers/default_blue.jpg.desktop @dirrm share/wallpapers/There_is_Rain_on_the_Table/contents/images @dirrm share/wallpapers/There_is_Rain_on_the_Table/contents @dirrm share/wallpapers/There_is_Rain_on_the_Table -@dirrm share/wallpapers/Skeeter_Hawk/contents/images -@dirrm share/wallpapers/Skeeter_Hawk/contents -@dirrm share/wallpapers/Skeeter_Hawk @dirrm share/wallpapers/Red_Leaf/contents/images @dirrm share/wallpapers/Red_Leaf/contents @dirrm share/wallpapers/Red_Leaf -@dirrm share/wallpapers/Leafs_Labyrinth/contents/images -@dirrm share/wallpapers/Leafs_Labyrinth/contents -@dirrm share/wallpapers/Leafs_Labyrinth +@dirrm share/wallpapers/Plasmalicious/contents/images +@dirrm share/wallpapers/Plasmalicious/contents +@dirrm share/wallpapers/Plasmalicious @dirrm share/wallpapers/Ladybuggin/contents/images @dirrm share/wallpapers/Ladybuggin/contents @dirrm share/wallpapers/Ladybuggin -@dirrm share/wallpapers/Green_Concentration/contents/images -@dirrm share/wallpapers/Green_Concentration/contents -@dirrm share/wallpapers/Green_Concentration -@dirrm share/wallpapers/Golden_Ripples/contents/images -@dirrm share/wallpapers/Golden_Ripples/contents -@dirrm share/wallpapers/Golden_Ripples +@dirrm share/wallpapers/HighTide/contents/images +@dirrm share/wallpapers/HighTide/contents +@dirrm share/wallpapers/HighTide @dirrm share/wallpapers/Fresh_Morning/contents/images @dirrm share/wallpapers/Fresh_Morning/contents @dirrm share/wallpapers/Fresh_Morning @@ -1966,57 +1953,23 @@ share/wallpapers/default_blue.jpg.desktop @dirrm share/wallpapers/Fields_of_Peace/contents/images @dirrm share/wallpapers/Fields_of_Peace/contents @dirrm share/wallpapers/Fields_of_Peace -@dirrm share/wallpapers/Emotion/contents/images -@dirrm share/wallpapers/Emotion/contents -@dirrm share/wallpapers/Emotion @dirrm share/wallpapers/EOS/contents/images @dirrm share/wallpapers/EOS/contents @dirrm share/wallpapers/EOS @dirrm share/wallpapers/Curls_on_Green/contents/images @dirrm share/wallpapers/Curls_on_Green/contents @dirrm share/wallpapers/Curls_on_Green -@dirrm share/wallpapers/Colorado_Farm/contents/images -@dirrm share/wallpapers/Colorado_Farm/contents -@dirrm share/wallpapers/Colorado_Farm @dirrm share/wallpapers/Code_Poets_Dream/contents/images @dirrm share/wallpapers/Code_Poets_Dream/contents @dirrm share/wallpapers/Code_Poets_Dream @dirrm share/wallpapers/Blue_Curl/contents/images @dirrm share/wallpapers/Blue_Curl/contents @dirrm share/wallpapers/Blue_Curl -@dirrmtry share/wallpapers -@dirrmtry share/sounds -@dirrmtry share/pixmaps -@dirrmtry share/kde4/servicetypes -@dirrmtry share/kde4/services/solidbackends -@dirrmtry share/kde4/services/kwin -@dirrmtry share/kde4/services/kded -@dirrmtry share/kde4/services/ServiceMenus -@dirrmtry share/kde4/services/ScreenSavers -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/oxygen/scalable/mimetypes -@dirrmtry share/icons/oxygen/scalable/apps -@dirrmtry share/icons/oxygen/scalable -@dirrmtry share/icons/oxygen/64x64/mimetypes -@dirrmtry share/icons/oxygen/64x64/apps -@dirrmtry share/icons/oxygen/64x64 -@dirrmtry share/icons/oxygen/48x48/mimetypes -@dirrmtry share/icons/oxygen/48x48/apps -@dirrmtry share/icons/oxygen/48x48 -@dirrmtry share/icons/oxygen/32x32/mimetypes -@dirrmtry share/icons/oxygen/32x32/apps -@dirrmtry share/icons/oxygen/32x32 -@dirrmtry share/icons/oxygen/22x22/mimetypes -@dirrmtry share/icons/oxygen/22x22/apps -@dirrmtry share/icons/oxygen/22x22 -@dirrmtry share/icons/oxygen/16x16/mimetypes -@dirrmtry share/icons/oxygen/16x16/apps -@dirrmtry share/icons/oxygen/16x16 -@dirrmtry share/icons/oxygen/128x128/mimetypes -@dirrmtry share/icons/oxygen/128x128/apps -@dirrmtry share/icons/oxygen/128x128 -@dirrmtry share/icons/oxygen +@dirrm share/wallpapers/Air/contents/images +@dirrm share/wallpapers/Air/contents +@dirrm share/wallpapers/Air +@dirrm share/kde4/services/solidbackends +@dirrm share/kde4/services/kwin @dirrm share/icons/Oxygen_Zion_Big/cursors @dirrm share/icons/Oxygen_Zion_Big @dirrm share/icons/Oxygen_Zion/cursors @@ -2037,52 +1990,44 @@ share/wallpapers/default_blue.jpg.desktop @dirrm share/icons/Oxygen_Black_Big @dirrm share/icons/Oxygen_Black/cursors @dirrm share/icons/Oxygen_Black -@dirrmtry share/icons -@dirrmtry share/doc/HTML/en/systemsettings -@dirrmtry share/doc/HTML/en/plasma -@dirrmtry share/doc/HTML/en/kxkb -@dirrmtry share/doc/HTML/en/ksysguard -@dirrmtry share/doc/HTML/en/kmenuedit -@dirrmtry share/doc/HTML/en/klipper -@dirrmtry share/doc/HTML/en/kdm -@dirrmtry share/doc/HTML/en/kcontrol/windowspecific -@dirrmtry share/doc/HTML/en/kcontrol/windowbehaviour -@dirrmtry share/doc/HTML/en/kcontrol/splashscreen -@dirrmtry share/doc/HTML/en/kcontrol/screensaver -@dirrmtry share/doc/HTML/en/kcontrol/mouse -@dirrmtry share/doc/HTML/en/kcontrol/kwindecoration -@dirrmtry share/doc/HTML/en/kcontrol/keys -@dirrmtry share/doc/HTML/en/kcontrol/keyboard -@dirrmtry share/doc/HTML/en/kcontrol/kcmstyle -@dirrmtry share/doc/HTML/en/kcontrol/kcmsmserver -@dirrmtry share/doc/HTML/en/kcontrol/kcmdisplay -@dirrmtry share/doc/HTML/en/kcontrol/kcmaccess -@dirrmtry share/doc/HTML/en/kcontrol/joystick -@dirrmtry share/doc/HTML/en/kcontrol/fonts -@dirrmtry share/doc/HTML/en/kcontrol/fontinst -@dirrmtry share/doc/HTML/en/kcontrol/energy -@dirrmtry share/doc/HTML/en/kcontrol/colors -@dirrmtry share/doc/HTML/en/kcontrol/clock -@dirrmtry share/doc/HTML/en/kcontrol/bell -@dirrmtry share/doc/HTML/en/kcontrol/autostart -@dirrmtry share/doc/HTML/en/kcontrol -@dirrmtry share/doc/HTML/en -@dirrmtry share/doc/HTML -@dirrmtry share/doc -@dirrmtry share/dbus-1/interfaces -@dirrmtry share/dbus-1 -@dirrmtry share/config/kdm/sessions -@dirrmtry share/config/kdm -@dirrmtry share/config.kcfg -@dirrmtry share/config -@dirrmtry share/autostart -@dirrmtry share/apps/systemsettings -@dirrmtry share/apps/solidfakenetbackend -@dirrmtry share/apps/solidfakebluetoothbackend -@dirrmtry share/apps/solid/actions -@dirrmtry share/apps/solid -@dirrmtry share/apps/kwin/default_rules -@dirrmtry share/apps/kwin +@dirrm share/doc/HTML/en/systemsettings +@dirrm share/doc/HTML/en/plasma +@dirrm share/doc/HTML/en/kxkb +@dirrm share/doc/HTML/en/ksysguard +@dirrm share/doc/HTML/en/kmenuedit +@dirrm share/doc/HTML/en/klipper +@dirrm share/doc/HTML/en/kdm +@dirrm share/doc/HTML/en/kcontrol/windowspecific +@dirrm share/doc/HTML/en/kcontrol/windowbehaviour +@dirrm share/doc/HTML/en/kcontrol/splashscreen +@dirrm share/doc/HTML/en/kcontrol/screensaver +@dirrm share/doc/HTML/en/kcontrol/powerdevilconfig +@dirrm share/doc/HTML/en/kcontrol/mouse +@dirrm share/doc/HTML/en/kcontrol/kwindecoration +@dirrm share/doc/HTML/en/kcontrol/kwincompositing +@dirrm share/doc/HTML/en/kcontrol/keys +@dirrm share/doc/HTML/en/kcontrol/keyboard +@dirrm share/doc/HTML/en/kcontrol/kcmstyle +@dirrm share/doc/HTML/en/kcontrol/kcmsmserver +@dirrm share/doc/HTML/en/kcontrol/kcmdisplay +@dirrm share/doc/HTML/en/kcontrol/kcmaccess +@dirrm share/doc/HTML/en/kcontrol/joystick +@dirrm share/doc/HTML/en/kcontrol/fonts +@dirrm share/doc/HTML/en/kcontrol/fontinst +@dirrm share/doc/HTML/en/kcontrol/energy +@dirrm share/doc/HTML/en/kcontrol/colors +@dirrm share/doc/HTML/en/kcontrol/clock +@dirrm share/doc/HTML/en/kcontrol/bell +@dirrm share/doc/HTML/en/kcontrol/autostart +@dirrm share/apps/systemsettings +@dirrm share/apps/solidfakenetbackend +@dirrm share/apps/powerdevil +@dirrm share/apps/plasma_scriptengine_ruby +@dirrm share/apps/plasma/dashboard/button +@dirrm share/apps/plasma/dashboard/AppleClasses +@dirrm share/apps/plasma/dashboard +@dirrm share/apps/kwrited +@dirrm share/apps/kwin/default_rules @dirrm share/apps/kthememanager/themes/YellowOnBlue-big @dirrm share/apps/kthememanager/themes/YellowOnBlue @dirrm share/apps/kthememanager/themes/Sunshine @@ -2110,11 +2055,6 @@ share/wallpapers/default_blue.jpg.desktop @dirrm share/apps/ksplash/Themes/Default @dirrm share/apps/ksplash/Themes @dirrm share/apps/ksplash -@dirrm share/apps/ksmserver/windowmanagers -@dirrm share/apps/ksmserver -@dirrmtry share/apps/konqsidebartng/virtual_folders/services -@dirrmtry share/apps/konqsidebartng/virtual_folders -@dirrmtry share/apps/konqsidebartng @dirrm share/apps/kmenuedit/icons/oxygen/32x32/actions @dirrm share/apps/kmenuedit/icons/oxygen/32x32 @dirrm share/apps/kmenuedit/icons/oxygen/22x22/actions @@ -2122,8 +2062,6 @@ share/wallpapers/default_blue.jpg.desktop @dirrm share/apps/kmenuedit/icons/oxygen @dirrm share/apps/kmenuedit/icons @dirrm share/apps/kmenuedit -@dirrmtry share/apps/kicker/applets -@dirrmtry share/apps/kicker @dirrm share/apps/khotkeys @dirrm share/apps/kfontview @dirrm share/apps/kfontinst/icons/oxygen/scalable/actions @@ -2140,51 +2078,30 @@ share/wallpapers/default_blue.jpg.desktop @dirrm share/apps/kdm/themes @dirrm share/apps/kdm/sessions @dirrm share/apps/kdm/programs -@dirrm share/apps/kdm/pics/users -@dirrm share/apps/kdm/pics @dirrm share/apps/kdm/patterns -@dirrm share/apps/kdm @dirrm share/apps/kdisplay/app-defaults @dirrm share/apps/kdisplay -@dirrm share/apps/kcontrol/pics -@dirrm share/apps/kcontrol -@dirrmtry share/apps/kconf_update @dirrm share/apps/kcmkeys @dirrm share/apps/kcminput/pics @dirrm share/apps/kcminput @dirrm share/apps/kaccess @dirrm share/apps/doc/kdm @dirrm share/apps/doc -@dirrm share/apps/desktoptheme/default/widgets -@dirrm share/apps/desktoptheme/default/opaque/widgets -@dirrm share/apps/desktoptheme/default/opaque/dialogs -@dirrm share/apps/desktoptheme/default/opaque -@dirrm share/apps/desktoptheme/default/dialogs -@dirrm share/apps/desktoptheme/default -@dirrm share/apps/desktoptheme -@dirrm share/apps/color-schemes -@dirrmtry share/apps/cmake/modules -@dirrmtry share/apps/cmake -@dirrmtry share/apps -@dirrmtry share/applications/kde4 -@dirrmtry share/applications -@dirrmtry lib/strigi -@dirrmtry lib/kde4/plugins/designer -@dirrmtry lib/kde4/plugins -@dirrmtry lib/kde4/libexec -@dirrmtry lib/kde4 -@dirrmtry lib/kconf_update_bin +@dirrm share/apps/desktoptheme/default/system-monitor +@dirrm share/apps/desktoptheme/default/calendar +@dirrm lib/KDE4Workspace-%%KDE4_VERSION%%/cmake +@dirrm lib/KDE4Workspace-%%KDE4_VERSION%% @dirrm include/taskmanager -@dirrmtry include/solid/control/ifaces -@dirrmtry include/solid/control +@dirrm include/solid/control/ifaces +@dirrm include/solid/control @dirrmtry include/solid -@dirrmtry include/plasma/widgets -@dirrmtry include/plasma/weather -@dirrmtry include/plasma/scripting +@dirrm include/plasmaclock +@dirrm include/plasma/weather @dirrmtry include/plasma -@dirrmtry include/kworkspace +@dirrmtry include/nepomuk +@dirrm include/kworkspace @dirrm include/ksysguard @dirrm include/ksgrd -@dirrmtry include/KDE/Plasma/Weather +@dirrm include/kephal +@dirrm include/KDE/Plasma/Weather @dirrmtry include/KDE/Plasma -@dirrmtry include/KDE diff --git a/x11/kdebase4/Makefile b/x11/kdebase4/Makefile index ba14aa4a884e..dad591780fd1 100644 --- a/x11/kdebase4/Makefile +++ b/x11/kdebase4/Makefile @@ -10,7 +10,7 @@ PORTNAME= kdebase PORTVERSION= ${KDE4_VERSION} CATEGORIES= x11 kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org @@ -18,7 +18,8 @@ COMMENT= Basic applications for the KDE system LIB_DEPENDS= searchclient:${PORTSDIR}/deskutils/strigi \ soprano.4:${PORTSDIR}/textproc/soprano \ - qimageblitz.4:${PORTSDIR}/x11/qimageblitz + qimageblitz.4:${PORTSDIR}/x11/qimageblitz \ + pci.2:${PORTSDIR}/devel/libpci LATEST_LINK= ${PORTNAME}4 @@ -29,20 +30,17 @@ QT_COMPONENTS= corelib opengl dbus qt3support \ qmake_build moc_build rcc_build uic_build USE_GETTEXT= yes -USE_KDE4= kdelibs workspace kdeprefix kdehier automoc4 +USE_KDE4= kdelibs kdeprefix kdehier automoc4 KDE4_BUILDENV= yes +CMAKE_ARGS+= -DCMAKE_REQUIRED_FLAGS:STRING="-L${LOCALBASE}/lib" \ + -DWITH_RAW1394:BOOL=OFF + +MAN1= kappfinder.1 \ + kbookmarkmerger.1 \ + kfind.1 + post-extract: ${MKDIR} ${WRKSRC} -post-patch: - ${REINPLACE_CMD} -e "s,<qfile.h>,<QFile>,;s,<qevent.h>,<QtEvents>,; \ - s,<qapplication.h>,<QApplication>," \ - ${WRKSRC}/../apps/konqueror/src/konqbookmarkbar.cpp - ${REINPLACE_CMD} -e 's|<qstringlist.h>|<QStringList>|'\ - ${WRKSRC}/../apps/nsplugins/plugin_paths.h - ${REINPLACE_CMD} -e "s,<qtimer.h>,<QTimer>,; \ - s,<qwidget.h>,<QWidget>," \ - ${WRKSRC}/../apps/nsplugins/viewer/xtevents.h - .include <bsd.port.mk> diff --git a/x11/kdebase4/distinfo b/x11/kdebase4/distinfo index 6043ff083d16..8da5f818e6ed 100644 --- a/x11/kdebase4/distinfo +++ b/x11/kdebase4/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdebase-4.1.4.tar.bz2) = 9a76438f5453a3ba4f773db6847825f7 -SHA256 (KDE/kdebase-4.1.4.tar.bz2) = 1c8c0390eb231a84819bfa9f6015a5c99fbf44b622e22ea39bfdc7caf3715a8f -SIZE (KDE/kdebase-4.1.4.tar.bz2) = 4403306 +MD5 (KDE/kdebase-4.2.0.tar.bz2) = da86a8ad624e86eda3a7509f39272060 +SHA256 (KDE/kdebase-4.2.0.tar.bz2) = 51694794fd90883f45456c8bf694feb9c0eafef1b267377c586c417913b0dd88 +SIZE (KDE/kdebase-4.2.0.tar.bz2) = 4249816 diff --git a/x11/kdebase4/files/patch-apps_cmake_modules_FindPCIUTILS.cmake b/x11/kdebase4/files/patch-apps_cmake_modules_FindPCIUTILS.cmake new file mode 100644 index 000000000000..37de8dc3f358 --- /dev/null +++ b/x11/kdebase4/files/patch-apps_cmake_modules_FindPCIUTILS.cmake @@ -0,0 +1,15 @@ +--- ../apps/cmake/modules/FindPCIUTILS.cmake.orig 2008-08-07 15:20:57.000000000 +0000 ++++ ../apps/cmake/modules/FindPCIUTILS.cmake 2008-12-27 11:49:04.000000000 +0000 +@@ -14,7 +14,11 @@ + FIND_LIBRARY(PCIUTILS_LIBRARY NAMES pci) + if(PCIUTILS_LIBRARY) + FIND_LIBRARY(RESOLV_LIBRARY NAMES resolv) +- set(PCIUTILS_LIBRARIES ${PCIUTILS_LIBRARY} ${RESOLV_LIBRARY}) ++ if(RESOLV_LIBRARY) ++ set(PCIUTILS_LIBRARIES ${PCIUTILS_LIBRARY} ${RESOLV_LIBRARY}) ++ else(RESOLV_LIBRARY) ++ set(PCIUTILS_LIBRARIES ${PCIUTILS_LIBRARY}) ++ endif(RESOLV_LIBRARY) + endif(PCIUTILS_LIBRARY) + + diff --git a/x11/kdebase4/pkg-plist b/x11/kdebase4/pkg-plist index a27496373688..12a5eecae333 100644 --- a/x11/kdebase4/pkg-plist +++ b/x11/kdebase4/pkg-plist @@ -26,7 +26,6 @@ include/konqmimedata.h include/konqsidebarplugin.h include/libkonq_export.h lib/kde4/dolphinpart.so -lib/kde4/kcm_css.so lib/kde4/kcm_dolphin.so lib/kde4/kcm_filetypes.so lib/kde4/kcm_history.so @@ -48,7 +47,6 @@ lib/kde4/kcm_usb.so lib/kde4/kcm_useraccount.so lib/kde4/kded_favicons.so lib/kde4/kded_konqy_preloader.so -lib/kde4/kded_kwrited.so lib/kde4/khtmlkttsdplugin.so lib/kde4/konq_aboutpage.so lib/kde4/konq_remoteencoding.so @@ -67,7 +65,7 @@ lib/kde4/libnsplugin.so lib/kde4/plasma_applet_folderview.so lib/libdolphinprivate.so lib/libdolphinprivate.so.5 -lib/libdolphinprivate.so.5.0.0 +lib/libdolphinprivate.so.5.0.1 lib/libkdeinit4_keditbookmarks.so lib/libkdeinit4_kfmclient.so lib/libkdeinit4_kinfocenter.so @@ -76,13 +74,13 @@ lib/libkdeinit4_konsole.so lib/libkdeinit4_kwrite.so lib/libkonq.so lib/libkonq.so.7 -lib/libkonq.so.7.0.0 +lib/libkonq.so.7.0.1 lib/libkonqsidebarplugin.so lib/libkonqsidebarplugin.so.5 -lib/libkonqsidebarplugin.so.5.0.0 +lib/libkonqsidebarplugin.so.5.0.1 lib/libkonquerorprivate.so lib/libkonquerorprivate.so.5 -lib/libkonquerorprivate.so.5.0.0 +lib/libkonquerorprivate.so.5.0.1 share/applications/kde4/Home.desktop share/applications/kde4/dolphin.desktop share/applications/kde4/kappfinder.desktop @@ -341,7 +339,6 @@ share/apps/kconf_update/kfmclient_3_2_update.sh share/apps/kconf_update/konqsidebartng.upd share/apps/kconf_update/move_favicons.sh share/apps/kconf_update/move_konqsidebartng_entries.sh -share/apps/kconf_update/socks.upd share/apps/kcontrol/pics/onlyone.png share/apps/kcontrol/pics/overlapping.png share/apps/kdm/pics/users/Blackbox.png @@ -392,12 +389,6 @@ share/apps/konqueror/about/plugins_rtl.html share/apps/konqueror/about/specs.html share/apps/konqueror/about/tips.html share/apps/konqueror/about/top-left-konqueror.png -share/apps/konqueror/icons/crystalsvg/16x16/actions/kde1.png -share/apps/konqueror/icons/crystalsvg/16x16/actions/kde2.png -share/apps/konqueror/icons/crystalsvg/16x16/actions/kde3.png -share/apps/konqueror/icons/crystalsvg/16x16/actions/kde4.png -share/apps/konqueror/icons/crystalsvg/16x16/actions/kde5.png -share/apps/konqueror/icons/crystalsvg/16x16/actions/kde6.png share/apps/konqueror/konqueror.rc share/apps/konqueror/pics/arrow_bottomleft.png share/apps/konqueror/pics/arrow_bottomright.png @@ -428,7 +419,6 @@ share/apps/konsole/linux.keytab share/apps/konsole/partui.rc share/apps/konsole/sessionui.rc share/apps/konsole/solaris.keytab -share/apps/konsole/vt420pc.keytab share/apps/kwrite/kwriteui.rc share/apps/plugin/nspluginpart.rc share/autostart/konqy_preload.desktop @@ -599,7 +589,6 @@ share/icons/oxygen/128x128/apps/wp.png share/icons/oxygen/128x128/apps/xclock.png share/icons/oxygen/128x128/apps/xfmail.png share/icons/oxygen/128x128/apps/xmag.png -share/icons/oxygen/16x16/actions/view-file-columns.png share/icons/oxygen/16x16/apps/abiword.png share/icons/oxygen/16x16/apps/alevt.png share/icons/oxygen/16x16/apps/applixware.png @@ -651,9 +640,7 @@ share/icons/oxygen/16x16/apps/xmms.png share/icons/oxygen/16x16/apps/xosview.png share/icons/oxygen/16x16/apps/xpaint.png share/icons/oxygen/16x16/apps/xv.png -share/icons/oxygen/22x22/actions/view-file-columns.png share/icons/oxygen/22x22/apps/email.png -share/icons/oxygen/32x32/actions/view-file-columns.png share/icons/oxygen/32x32/apps/abiword.png share/icons/oxygen/32x32/apps/alevt.png share/icons/oxygen/32x32/apps/applixware.png @@ -708,7 +695,6 @@ share/icons/oxygen/32x32/apps/xmms.png share/icons/oxygen/32x32/apps/xosview.png share/icons/oxygen/32x32/apps/xpaint.png share/icons/oxygen/32x32/apps/xv.png -share/icons/oxygen/48x48/actions/view-file-columns.png share/icons/oxygen/48x48/apps/abiword.png share/icons/oxygen/48x48/apps/applixware.png share/icons/oxygen/48x48/apps/blender.png @@ -761,7 +747,6 @@ share/icons/oxygen/64x64/apps/wp.png share/icons/oxygen/64x64/apps/xclock.png share/icons/oxygen/64x64/apps/xfmail.png share/icons/oxygen/64x64/apps/xmag.png -share/icons/oxygen/scalable/actions/view-file-columns.svgz share/icons/oxygen/scalable/apps/aim.svgz share/icons/oxygen/scalable/apps/antivirus.svgz share/icons/oxygen/scalable/apps/applixware.svgz @@ -788,6 +773,7 @@ share/icons/oxygen/scalable/apps/xclock.svgz share/icons/oxygen/scalable/apps/xeyes.svgz share/icons/oxygen/scalable/apps/xpaint.svgz share/kde4/services/ServiceMenus/konsolehere.desktop +share/kde4/services/bookmarks.desktop share/kde4/services/cache.desktop share/kde4/services/cookies.desktop share/kde4/services/desktoppath.desktop @@ -796,8 +782,6 @@ share/kde4/services/dma.desktop share/kde4/services/dolphinpart.desktop share/kde4/services/ebrowsing.desktop share/kde4/services/filebehavior.desktop -share/kde4/services/filebrowser.desktop -share/kde4/services/filepreviews.desktop share/kde4/services/filetypes.desktop share/kde4/services/interrupts.desktop share/kde4/services/ioports.desktop @@ -806,7 +790,6 @@ share/kde4/services/kcm_memory.desktop share/kde4/services/kcm_partition.desktop share/kde4/services/kcm_pci.desktop share/kde4/services/kcm_useraccount.desktop -share/kde4/services/kcmcss.desktop share/kde4/services/kcmdolphin.desktop share/kde4/services/kcmhistory.desktop share/kde4/services/kcmkonqyperformance.desktop @@ -815,11 +798,10 @@ share/kde4/services/kcmsolidproc.desktop share/kde4/services/kcmusb.desktop share/kde4/services/kded/favicons.desktop share/kde4/services/kded/konqy_preloader.desktop -share/kde4/services/kded/kwrited.desktop share/kde4/services/kfindpart.desktop +share/kde4/services/khtml_appearance.desktop share/kde4/services/khtml_behavior.desktop share/kde4/services/khtml_filter.desktop -share/kde4/services/khtml_fonts.desktop share/kde4/services/khtml_general.desktop share/kde4/services/khtml_java_js.desktop share/kde4/services/khtml_plugins.desktop @@ -895,53 +877,7 @@ share/templates/linkNFS.desktop share/templates/linkProgram.desktop share/templates/linkURL.desktop share/templates/linkZIP.desktop -@dirrmtry share/kde4/servicetypes @dirrm share/kde4/services/useragentstrings -@dirrmtry share/kde4/services/kded -@dirrmtry share/kde4/services/ServiceMenus -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/oxygen/scalable/apps -@dirrmtry share/icons/oxygen/scalable/actions -@dirrmtry share/icons/oxygen/scalable -@dirrmtry share/icons/oxygen/64x64/apps -@dirrmtry share/icons/oxygen/64x64 -@dirrmtry share/icons/oxygen/48x48/apps -@dirrmtry share/icons/oxygen/48x48/actions -@dirrmtry share/icons/oxygen/48x48 -@dirrmtry share/icons/oxygen/32x32/apps -@dirrmtry share/icons/oxygen/32x32/actions -@dirrmtry share/icons/oxygen/32x32 -@dirrmtry share/icons/oxygen/22x22/apps -@dirrmtry share/icons/oxygen/22x22/actions -@dirrmtry share/icons/oxygen/22x22 -@dirrmtry share/icons/oxygen/16x16/apps -@dirrmtry share/icons/oxygen/16x16/actions -@dirrmtry share/icons/oxygen/16x16 -@dirrmtry share/icons/oxygen/128x128/apps -@dirrmtry share/icons/oxygen/128x128 -@dirrmtry share/icons/oxygen -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64/actions -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48/actions -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32/actions -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22/actions -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16/actions -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128/actions -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor @dirrm share/doc/HTML/en/kwrite @dirrm share/doc/HTML/en/konsole @dirrm share/doc/HTML/en/konqueror @@ -966,28 +902,22 @@ share/templates/linkZIP.desktop @dirrm share/doc/HTML/en/kfind @dirrm share/doc/HTML/en/kdepasswd @dirrm share/doc/HTML/en/dolphin -@dirrmtry share/config -@dirrmtry share/autostart @dirrm share/apps/plugin @dirrm share/apps/kwrite +@dirrm share/apps/konsole +@dirrm share/apps/konqueror/profiles @dirrm share/apps/konqueror/pics -@dirrm share/apps/konqueror/icons/crystalsvg/16x16/actions -@dirrm share/apps/konqueror/icons/crystalsvg/16x16 -@dirrm share/apps/konqueror/icons/crystalsvg -@dirrm share/apps/konqueror/icons @dirrm share/apps/konqueror/about @dirrm share/apps/konqsidebartng/websidebar +@dirrm share/apps/konqsidebartng/virtual_folders/remote/web +@dirrm share/apps/konqsidebartng/virtual_folders/remote/ftp +@dirrm share/apps/konqsidebartng/virtual_folders/remote +@dirrm share/apps/konqsidebartng/entries +@dirrm share/apps/konqsidebartng/dirtree +@dirrm share/apps/konqsidebartng/add @dirrm share/apps/kinfocenter/about @dirrm share/apps/kinfocenter -@dirrm share/apps/khtml/kpartplugins -@dirrmtry share/apps/khtml @dirrm share/apps/keditbookmarks -@dirrmtry share/apps/kdm/pics/users -@dirrmtry share/apps/kdm/pics -@dirrmtry share/apps/kdm -@dirrmtry share/apps/kcontrol/pics -@dirrmtry share/apps/kcontrol -@dirrmtry share/apps/kconf_update @dirrm share/apps/kcmusb @dirrm share/apps/kcmcss @dirrm share/apps/kbookmark @@ -1015,4 +945,3 @@ share/templates/linkZIP.desktop @dirrm share/apps/dolphinpart/kpartplugins @dirrm share/apps/dolphinpart @dirrm share/apps/dolphin -@dirrmtry share/applications/kde4 diff --git a/x11/kdelibs4/Makefile b/x11/kdelibs4/Makefile index ac45b8dc4cb0..f5b5d6fb4c54 100644 --- a/x11/kdelibs4/Makefile +++ b/x11/kdelibs4/Makefile @@ -10,13 +10,14 @@ PORTNAME= kdelibs PORTVERSION= ${KDE4_VERSION} CATEGORIES= x11 kde ipv6 MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src +MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src PKGNAMESUFFIX?= # empty DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Base set of libraries needed by KDE programs +BUILD_DEPENDS= ${LOCALBASE}/lib/libhspell.a:${PORTSDIR}/hebrew/hspell LIB_DEPENDS= searchclient:${PORTSDIR}/deskutils/strigi \ soprano.4:${PORTSDIR}/textproc/soprano \ IlmImf:${PORTSDIR}/graphics/OpenEXR \ @@ -36,8 +37,6 @@ RUN_DEPENDS= ${LOCALBASE}/share/icons/hicolor/index.theme:${PORTSDIR}/misc/hicol update-mime-database:${PORTSDIR}/misc/shared-mime-info \ iceauth:${PORTSDIR}/x11/iceauth \ xauth:${PORTSDIR}/x11/xauth -# XXX: hebrew/hspell? -# XXX: gssapi/kerberos special handling? .if exists(${LOCALBASE}/include/avahi-compat-libdns_sd/dns_sd.h) || defined(WITH_LIBDNS) LIB_DEPENDS+= avahi-qt4:${PORTSDIR}/net/avahi-qt4 \ @@ -46,10 +45,9 @@ LIB_DEPENDS+= avahi-qt4:${PORTSDIR}/net/avahi-qt4 \ LIB_DEPENDS+= dns_sd:${PORTSDIR}/net/mDNSResponder .endif -CONFLICTS= qt4-phonon-4* -LATEST_LINK= ${PORTNAME}4 +CONFLICTS= kdebase-workspace-4.1.* -CMAKE_ARGS+= -DWITH_FAM:BOOL=Off +LATEST_LINK= ${PORTNAME}4 USE_KDE4= kdeprefix kdehier automoc4 sharedmime KDE4_BUILDENV= yes @@ -60,38 +58,41 @@ USE_QT_VER= 4 QT_COMPONENTS= corelib dbus gui network opengl qt3support \ qtestlib script sql svg xml designer \ assistant svg qdbusviewer makeqpf imageformats \ - qmake_build moc_build rcc_build uic_build uic3_build + qmake_build moc_build rcc_build uic_build USE_GNOME= libxml2 libxslt -MAN1= checkXML.1 kde4-config.1 makekdewidgets.1 kdecmake.1 -MAN7= kdeoptions.7 qtoptions.7 -MAN8= kbuildsycoca4.8 +CMAKE_ARGS+= -DWITH_FAM:BOOL=Off \ + -DKDE4_PREFIX:String=${KDE4_PREFIX} -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 700042 -EXTRA_PATCHES= ${FILESDIR}/extrapatch-nepomuk-core-resourcefiltermodel.cpp \ - ${FILESDIR}/extrapatch-nepomuk-core-resourcefiltermodel.h -.endif +MAN1= checkXML.1 \ + kde4-config.1 \ + kdecmake.1 \ + kjs.1 \ + kjscmd.1 \ + kross.1 \ + makekdewidgets.1 +MAN7= kdeoptions.7 \ + qtoptions.7 +MAN8= kbuildsycoca4.8 \ + kcookiejar4.8 \ + kded4.8 \ + kdeinit4.8 \ + meinproc4.8 post-extract: ${MKDIR} ${WRKSRC} -post-patch: -#fix finding automoc when PREFIX is not matched KDE4_PREFIX - ${REINPLACE_CMD} -e 's|NO_DEFAULT_PATH|${KDE4_PREFIX} NO_DEFAULT_PATH|' \ - ${WRKSRC}/../cmake/modules/FindAutomoc4.cmake - pre-configure: - ${REINPLACE_CMD} -e 's|<qdatetime.h>|<QDateTime>|'\ - ${WRKSRC}/../kjs/api/kjsobject.cpp + ${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ + ${WRKSRC}/../cmake/modules/*.cmake #prevent updating mime during build ${REINPLACE_CMD} -e '/^update_xdg_mimetypes/d; /SharedMimeInfo/d' \ ${WRKSRC}/../mimetypes/CMakeLists.txt - ${REINPLACE_CMD} -e 's|".kde"|".kde4"|' \ + #default KDEHOME dir + ${REINPLACE_CMD} -e '/KDE_DEFAULT_HOME/s|.kde|.kde4|' \ ${WRKSRC}/../CMakeLists.txt post-install: - @-update-mime-database ${KDE4_PREFIX}/share/mime + @-update-mime-database ${PREFIX}/share/mime -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/x11/kdelibs4/distinfo b/x11/kdelibs4/distinfo index 5eee0f4125be..612408102bb4 100644 --- a/x11/kdelibs4/distinfo +++ b/x11/kdelibs4/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdelibs-4.1.4.tar.bz2) = ffdb0340a72aaf06a0b98f354c0c59ef -SHA256 (KDE/kdelibs-4.1.4.tar.bz2) = e98891cfaec6d60e361ed8630c0ecaf019bb4d497f984574ee76963236f43360 -SIZE (KDE/kdelibs-4.1.4.tar.bz2) = 9118858 +MD5 (KDE/kdelibs-4.2.0.tar.bz2) = 2d830a922195fefe6e073111850247ac +SHA256 (KDE/kdelibs-4.2.0.tar.bz2) = d66da8881f4d347a2140ce19e87dacf48809c02823f87cece680148f2b2ed665 +SIZE (KDE/kdelibs-4.2.0.tar.bz2) = 10033136 diff --git a/x11/kdelibs4/files/extrapatch-nepomuk-core-resourcefiltermodel.cpp b/x11/kdelibs4/files/extrapatch-nepomuk-core-resourcefiltermodel.cpp deleted file mode 100644 index 9ac26cd42ad8..000000000000 --- a/x11/kdelibs4/files/extrapatch-nepomuk-core-resourcefiltermodel.cpp +++ /dev/null @@ -1,19 +0,0 @@ ---- ../nepomuk/core/resourcefiltermodel.cpp.orig 2009-01-06 23:35:20.000000000 +0000 -+++ ../nepomuk/core/resourcefiltermodel.cpp 2009-01-09 10:03:30.000000000 +0000 -@@ -42,15 +42,9 @@ - using namespace Soprano; - - --uint Soprano::qHash( const Soprano::Node& node ) --{ -- return qHash( node.toString() ); --} -- --// @deprecated: just for keeping binary compatibility - uint qHash( const Soprano::Node& node ) - { -- return Soprano::qHash( node ); -+ return qHash( node.toString() ); - } - - class Nepomuk::ResourceFilterModel::Private diff --git a/x11/kdelibs4/files/extrapatch-nepomuk-core-resourcefiltermodel.h b/x11/kdelibs4/files/extrapatch-nepomuk-core-resourcefiltermodel.h deleted file mode 100644 index e3ebee61dca4..000000000000 --- a/x11/kdelibs4/files/extrapatch-nepomuk-core-resourcefiltermodel.h +++ /dev/null @@ -1,13 +0,0 @@ ---- ../nepomuk/core/resourcefiltermodel.h.orig 2009-01-06 23:35:20.000000000 +0000 -+++ ../nepomuk/core/resourcefiltermodel.h 2009-01-09 10:15:12.000000000 +0000 -@@ -113,9 +113,7 @@ - }; - } - --namespace Soprano { -- uint qHash( const Node& node ); --} -+uint qHash( const Soprano::Node& node ); - - - #endif diff --git a/x11/kdelibs4/files/patch-FindKDE4Internal.cmake b/x11/kdelibs4/files/patch-FindKDE4Internal.cmake deleted file mode 100644 index 466260ee1478..000000000000 --- a/x11/kdelibs4/files/patch-FindKDE4Internal.cmake +++ /dev/null @@ -1,104 +0,0 @@ ---- ../cmake/modules/FindKDE4Internal.cmake.orig 2008-07-29 14:17:48.000000000 +0200 -+++ ../cmake/modules/FindKDE4Internal.cmake 2008-07-29 14:31:16.000000000 +0200 -@@ -380,62 +380,62 @@ - set(KDE4_KDECORE_LIBS ${kdecore_LIB_DEPENDS} ${KDE4_KDECORE_LIBRARY} ) - - find_library(KDE4_KDEUI_LIBRARY NAMES kdeui PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) -- set(KDE4_KDEUI_LIBS ${kdeui_LIB_DEPENDS} ${KDE4_KDEUI_LIBRARY} ) -+ set(KDE4_KDEUI_LIBS ${kdeui_LIB_DEPENDS} ${KDE4_KDEUI_LIBRARY} ${KDE4_KDECORE_LIBRARY} ) - find_library(KDE4_KIO_LIBRARY NAMES kio PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) -- set(KDE4_KIO_LIBS ${kio_LIB_DEPENDS} ${KDE4_KIO_LIBRARY} ) -+ set(KDE4_KIO_LIBS ${kio_LIB_DEPENDS} ${KDE4_KIO_LIBRARY} ${KDE4_KDECORE_LIBRARY} ) - - find_library(KDE4_KPARTS_LIBRARY NAMES kparts PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) -- set(KDE4_KPARTS_LIBS ${kparts_LIB_DEPENDS} ${KDE4_KPARTS_LIBRARY} ) -+ set(KDE4_KPARTS_LIBS ${kparts_LIB_DEPENDS} ${KDE4_KPARTS_LIBRARY} ${KDE4_KDECORE_LIBRARY} ) - - find_library(KDE4_KUTILS_LIBRARY NAMES kutils PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) -- set(KDE4_KUTILS_LIBS ${kutils_LIB_DEPENDS} ${KDE4_KUTILS_LIBRARY} ) -+ set(KDE4_KUTILS_LIBS ${kutils_LIB_DEPENDS} ${KDE4_KUTILS_LIBRARY} ${KDE4_KDECORE_LIBRARY} ) - - find_library(KDE4_KDE3SUPPORT_LIBRARY NAMES kde3support PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) -- set(KDE4_KDE3SUPPORT_LIBS ${kde3support_LIB_DEPENDS} ${KDE4_KDE3SUPPORT_LIBRARY} ) -+ set(KDE4_KDE3SUPPORT_LIBS ${kde3support_LIB_DEPENDS} ${KDE4_KDE3SUPPORT_LIBRARY} ${KDE4_KDECORE_LIBRARY} ) - - find_library(KDE4_KFILE_LIBRARY NAMES kfile PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) -- set(KDE4_KFILE_LIBS ${kfile_LIB_DEPENDS} ${KDE4_KFILE_LIBRARY} ) -+ set(KDE4_KFILE_LIBS ${kfile_LIB_DEPENDS} ${KDE4_KFILE_LIBRARY} ${KDE4_KDECORE_LIBRARY} ) - - find_library(KDE4_KHTML_LIBRARY NAMES khtml PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) -- set(KDE4_KHTML_LIBS ${khtml_LIB_DEPENDS} ${KDE4_KHTML_LIBRARY} ) -+ set(KDE4_KHTML_LIBS ${khtml_LIB_DEPENDS} ${KDE4_KHTML_LIBRARY} ${KDE4_KDECORE_LIBRARY} ) - - find_library(KDE4_KJS_LIBRARY NAMES kjs PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) -- set(KDE4_KJS_LIBS ${kjs_LIB_DEPENDS} ${KDE4_KJS_LIBRARY} ) -+ set(KDE4_KJS_LIBS ${kjs_LIB_DEPENDS} ${KDE4_KJS_LIBRARY} ${KDE4_KDECORE_LIBRARY} ) - - find_library(KDE4_KJSAPI_LIBRARY NAMES kjsapi PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) -- set(KDE4_KJSAPI_LIBS ${kjsapi_LIB_DEPENDS} ${KDE4_KJSAPI_LIBRARY} ) -+ set(KDE4_KJSAPI_LIBS ${kjsapi_LIB_DEPENDS} ${KDE4_KJSAPI_LIBRARY} ${KDE4_KDECORE_LIBRARY} ) - - find_library(KDE4_KNEWSTUFF2_LIBRARY NAMES knewstuff2 PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) -- set(KDE4_KNEWSTUFF2_LIBS ${knewstuff2_LIB_DEPENDS} ${KDE4_KNEWSTUFF2_LIBRARY} ) -+ set(KDE4_KNEWSTUFF2_LIBS ${knewstuff2_LIB_DEPENDS} ${KDE4_KNEWSTUFF2_LIBRARY} ${KDE4_KDECORE_LIBRARY} ) - - if (UNIX) - find_library(KDE4_KPTY_LIBRARY NAMES kpty PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) -- set(KDE4_KPTY_LIBS ${kpty_LIB_DEPENDS} ${KDE4_KPTY_LIBRARY} ) -+ set(KDE4_KPTY_LIBS ${kpty_LIB_DEPENDS} ${KDE4_KPTY_LIBRARY} ${KDE4_KDECORE_LIBRARY} ) - - find_library(KDE4_KDESU_LIBRARY NAMES kdesu PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) -- set(KDE4_KDESU_LIBS ${kdesu_LIB_DEPENDS} ${KDE4_KDESU_LIBRARY} ) -+ set(KDE4_KDESU_LIBS ${kdesu_LIB_DEPENDS} ${KDE4_KDESU_LIBRARY} ${KDE4_KDECORE_LIBRARY} ) - endif (UNIX) - - find_library(KDE4_KDNSSD_LIBRARY NAMES kdnssd PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) -- set(KDE4_KDNSSD_LIBS ${kdnssd_LIB_DEPENDS} ${KDE4_KDNSSD_LIBRARY} ) -+ set(KDE4_KDNSSD_LIBS ${kdnssd_LIB_DEPENDS} ${KDE4_KDNSSD_LIBRARY} ${KDE4_KDECORE_LIBRARY} ) - - find_library(KDE4_SOLID_LIBRARY NAMES solid PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) -- set(KDE4_SOLID_LIBS ${solid_LIB_DEPENDS} ${KDE4_SOLID_LIBRARY} ) -+ set(KDE4_SOLID_LIBS ${solid_LIB_DEPENDS} ${KDE4_SOLID_LIBRARY} ${KDE4_KDECORE_LIBRARY} ) - - find_library(KDE4_THREADWEAVER_LIBRARY NAMES threadweaver PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) -- set(KDE4_THREADWEAVER_LIBRARIES ${threadweaver_LIB_DEPENDS} ${KDE4_THREADWEAVER_LIBRARY} ) -+ set(KDE4_THREADWEAVER_LIBRARIES ${threadweaver_LIB_DEPENDS} ${KDE4_THREADWEAVER_LIBRARY} ${KDE4_KDECORE_LIBRARY} ) - - find_library(KDE4_KNOTIFYCONFIG_LIBRARY NAMES knotifyconfig PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) -- set(KDE4_KNOTIFYCONFIG_LIBS ${knotifyconfig_LIB_DEPENDS} ${KDE4_KNOTIFYCONFIG_LIBRARY} ) -+ set(KDE4_KNOTIFYCONFIG_LIBS ${knotifyconfig_LIB_DEPENDS} ${KDE4_KNOTIFYCONFIG_LIBRARY} ${KDE4_KDECORE_LIBRARY} ) - - find_library(KDE4_KROSSCORE_LIBRARY NAMES krosscore PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) -- set(KDE4_KROSSCORE_LIBS ${krosscore_LIB_DEPENDS} ${KDE4_KROSSCORE_LIBRARY} ) -+ set(KDE4_KROSSCORE_LIBS ${krosscore_LIB_DEPENDS} ${KDE4_KROSSCORE_LIBRARY} ${KDE4_KDECORE_LIBRARY} ) - - find_library(KDE4_KROSSUI_LIBRARY NAMES krossui PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) -- set(KDE4_KROSSUI_LIBS ${krossui_LIB_DEPENDS} ${KDE4_KROSSCORE_LIBS} ${KDE4_KROSSUI_LIBRARY} ) -+ set(KDE4_KROSSUI_LIBS ${krossui_LIB_DEPENDS} ${KDE4_KROSSCORE_LIBS} ${KDE4_KROSSUI_LIBRARY} ${KDE4_KDECORE_LIBRARY} ) - - find_library(KDE4_KTEXTEDITOR_LIBRARY NAMES ktexteditor PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) -- set(KDE4_KTEXTEDITOR_LIBS ${ktexteditor_LIB_DEPENDS} ${KDE4_KTEXTEDITOR_LIBRARY} ) -+ set(KDE4_KTEXTEDITOR_LIBS ${ktexteditor_LIB_DEPENDS} ${KDE4_KTEXTEDITOR_LIBRARY} ${KDE4_KDECORE_LIBRARY} ) - - # Can't do that, it's not always compiled. - #find_library(KDE4_KNEPOMUK_LIBRARY NAMES knepomuk PATHS ${KDE4_LIB_INSTALL_DIR} NO_DEFAULT_PATH ) -@@ -642,8 +642,8 @@ - _set_fancy(XDG_MIME_INSTALL_DIR "${SHARE_INSTALL_PREFIX}/mime/packages" "The install dir for the xdg mimetypes") - - _set_fancy(SYSCONF_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/etc" "The kde sysconfig install dir (default ${CMAKE_INSTALL_PREFIX}/etc)") -- _set_fancy(MAN_INSTALL_DIR "${SHARE_INSTALL_PREFIX}/man" "The kde man install dir (default ${SHARE_INSTALL_PREFIX}/man/)") -- _set_fancy(INFO_INSTALL_DIR "${SHARE_INSTALL_PREFIX}/info" "The kde info install dir (default ${SHARE_INSTALL_PREFIX}/info)") -+ _set_fancy(MAN_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/man" "The kde man install dir (default ${SHARE_INSTALL_PREFIX}/man/)") -+ _set_fancy(INFO_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/info" "The kde info install dir (default ${SHARE_INSTALL_PREFIX}/info)") - _set_fancy(DBUS_INTERFACES_INSTALL_DIR "${SHARE_INSTALL_PREFIX}/dbus-1/interfaces" "The kde dbus interfaces install dir (default ${SHARE_INSTALL_PREFIX}/dbus-1/interfaces)") - _set_fancy(DBUS_SERVICES_INSTALL_DIR "${SHARE_INSTALL_PREFIX}/dbus-1/services" "The kde dbus services install dir (default ${SHARE_INSTALL_PREFIX}/dbus-1/services)") - -@@ -1128,6 +1128,8 @@ - message(FATAL_ERROR "ERROR: the installed kdelibs version ${KDEVERSION} is too old, at least version ${KDE_MIN_VERSION} is required") - endif (NOT KDE4_INSTALLED_VERSION_OK) - -+link_directories(${KDE4_LIB_DIR}) -+ - if (NOT KDE4_KCFGC_EXECUTABLE) - message(FATAL_ERROR "ERROR: could not detect a usable kconfig_compiler") - endif (NOT KDE4_KCFGC_EXECUTABLE) diff --git a/x11/kdelibs4/files/patch-KDE4Defaults.cmake b/x11/kdelibs4/files/patch-KDE4Defaults.cmake index f684714eca37..cd75deccc6b1 100644 --- a/x11/kdelibs4/files/patch-KDE4Defaults.cmake +++ b/x11/kdelibs4/files/patch-KDE4Defaults.cmake @@ -1,17 +1,18 @@ ---- ../cmake/modules/KDE4Defaults.cmake.orig 2008-05-21 13:06:10.000000000 +0200 -+++ ../cmake/modules/KDE4Defaults.cmake 2008-05-27 18:51:10.000000000 +0200 -@@ -29,11 +29,11 @@ - +--- ../cmake/modules/KDE4Defaults.cmake.orgi 2009-01-22 23:26:08.000000000 +0100 ++++ ../cmake/modules/KDE4Defaults.cmake 2009-01-22 23:27:02.000000000 +0100 +@@ -24,12 +24,12 @@ # define the generic version of the libraries here # this makes it easy to advance it when the next KDE release comes --set(GENERIC_LIB_VERSION "4.1.0") + # Use this version number for libraries which are at version n in KDE version n +-set(GENERIC_LIB_VERSION "4.2.0") -set(GENERIC_LIB_SOVERSION "4") -+set(GENERIC_LIB_VERSION "5.0.0") ++set(GENERIC_LIB_VERSION "5.0.1") +set(GENERIC_LIB_SOVERSION "5") --set(KDE_NON_GENERIC_LIB_VERSION "5.1.0") + # Use this version number for libraries which are already at version n+1 in KDE version n +-set(KDE_NON_GENERIC_LIB_VERSION "5.2.0") -set(KDE_NON_GENERIC_LIB_SOVERSION "5") -+set(KDE_NON_GENERIC_LIB_VERSION "7.0.0") ++set(KDE_NON_GENERIC_LIB_VERSION "7.0.1") +set(KDE_NON_GENERIC_LIB_SOVERSION "7") # windows does not support LD_LIBRARY_PATH or similar diff --git a/x11/kdelibs4/files/patch-Modules_FindQt4.cmake b/x11/kdelibs4/files/patch-Modules_FindQt4.cmake deleted file mode 100644 index bae246f8f6e2..000000000000 --- a/x11/kdelibs4/files/patch-Modules_FindQt4.cmake +++ /dev/null @@ -1,39 +0,0 @@ ---- ../cmake/modules/FindQt4.cmake.orig 2008-05-05 22:25:53.000000000 +0400 -+++ ../cmake/modules/FindQt4.cmake 2008-07-21 02:37:16.000000000 +0400 -@@ -293,7 +293,7 @@ - - GET_FILENAME_COMPONENT(qt_install_version "[HKEY_CURRENT_USER\\Software\\trolltech\\Versions;DefaultQtVersion]" NAME) - # check for qmake --FIND_PROGRAM(QT_QMAKE_EXECUTABLE NAMES qmake qmake4 qmake-qt4 PATHS -+FIND_PROGRAM(QT_QMAKE_EXECUTABLE NAMES qmake-qt4 qmake4 qmake PATHS - "[HKEY_CURRENT_USER\\Software\\Trolltech\\Qt3Versions\\4.0.0;InstallDir]/bin" - "[HKEY_CURRENT_USER\\Software\\Trolltech\\Versions\\4.0.0;InstallDir]/bin" - "[HKEY_CURRENT_USER\\Software\\Trolltech\\Versions\\${qt_install_version};InstallDir]/bin" -@@ -915,9 +915,9 @@ - "${QT_UIC_EXECUTABLE_INTERNAL}" QT_UIC_EXECUTABLE_INTERNAL) - - SET(QT_MOC_EXECUTABLE -- ${QT_MOC_EXECUTABLE_INTERNAL} CACHE FILEPATH "The moc executable") -+ ${QT_MOC_EXECUTABLE_INTERNAL} CACHE FILEPATH "The moc executable" FORCE) - SET(QT_UIC_EXECUTABLE -- ${QT_UIC_EXECUTABLE_INTERNAL} CACHE FILEPATH "The uic executable") -+ ${QT_UIC_EXECUTABLE_INTERNAL} CACHE FILEPATH "The uic executable" FORCE) - - FIND_PROGRAM(QT_UIC3_EXECUTABLE - NAMES uic3 -@@ -944,13 +944,13 @@ - ) - - FIND_PROGRAM(QT_LUPDATE_EXECUTABLE -- NAMES lupdate -+ NAMES lupdate-qt4 - PATHS ${QT_BINARY_DIR} - NO_DEFAULT_PATH - ) - - FIND_PROGRAM(QT_LRELEASE_EXECUTABLE -- NAMES lrelease -+ NAMES lrelease-qt4 - PATHS ${QT_BINARY_DIR} - NO_DEFAULT_PATH - ) diff --git a/x11/kdelibs4/files/patch-cmake-modules-FindGettext.cmake b/x11/kdelibs4/files/patch-cmake-modules-FindGettext.cmake deleted file mode 100644 index 4e8657ae7c19..000000000000 --- a/x11/kdelibs4/files/patch-cmake-modules-FindGettext.cmake +++ /dev/null @@ -1,29 +0,0 @@ ---- ../cmake/modules/FindGettext.cmake.orig 2008-07-11 18:32:43.000000000 +0200 -+++ ../cmake/modules/FindGettext.cmake 2008-07-11 18:32:58.000000000 +0200 -@@ -26,13 +26,12 @@ - include(CheckIncludeFiles) - include(CheckLibraryExists) - include(CheckFunctionExists) -- -- check_include_files(libintl.h HAVE_LIBINTL_H) -- -- set(GETTEXT_INCLUDE_DIR) -+ -+ FIND_PATH(GETTEXT_INCLUDE_DIR libintl.h) - set(GETTEXT_LIBRARIES) - -- if (HAVE_LIBINTL_H) -+ if (GETTEXT_INCLUDE_DIR) -+ set(HAVE_LIBINTL_H TRUE) - check_function_exists(dgettext LIBC_HAS_DGETTEXT) - if (LIBC_HAS_DGETTEXT) - set(GETTEXT_SOURCE "built in libc") -@@ -47,7 +46,7 @@ - set(GETTEXT_FOUND TRUE) - endif (LIBINTL_HAS_DGETTEXT) - endif (LIBC_HAS_DGETTEXT) -- endif (HAVE_LIBINTL_H) -+ endif (GETTEXT_INCLUDE_DIR) - - if (GETTEXT_FOUND) - if (NOT Gettext_FIND_QUIETLY) diff --git a/x11/kdelibs4/files/patch-cmake-modules-FindQCA2.cmake b/x11/kdelibs4/files/patch-cmake-modules-FindQCA2.cmake deleted file mode 100644 index c6eb3c1959ed..000000000000 --- a/x11/kdelibs4/files/patch-cmake-modules-FindQCA2.cmake +++ /dev/null @@ -1,11 +0,0 @@ ---- ../cmake/modules/FindQCA2.cmake.orig 2008-07-11 14:15:58.000000000 +0200 -+++ ../cmake/modules/FindQCA2.cmake 2008-07-11 14:16:35.000000000 +0200 -@@ -26,7 +26,7 @@ - INCLUDE(UsePkgConfig) - - IF (NOT WIN32) -- PKGCONFIG(qca2 QCA2_INCLUDE_DIR _Qca2LinkDir _Qca2LinkFlags _Qca2Cflags) -+ PKGCONFIG(qca QCA2_INCLUDE_DIR _Qca2LinkDir _Qca2LinkFlags _Qca2Cflags) - - set(QCA2_DEFINITIONS ${_Qca2Cflags}) - diff --git a/x11/kdelibs4/files/patch-cmake_modules_FindKDE4Internal.cmake b/x11/kdelibs4/files/patch-cmake_modules_FindKDE4Internal.cmake new file mode 100644 index 000000000000..3c4408efa3bf --- /dev/null +++ b/x11/kdelibs4/files/patch-cmake_modules_FindKDE4Internal.cmake @@ -0,0 +1,13 @@ +--- ../cmake/modules/FindKDE4Internal.cmake.orig 2008-12-04 11:35:54.000000000 +0300 ++++ ../cmake/modules/FindKDE4Internal.cmake 2008-12-15 02:56:07.000000000 +0300 +@@ -743,8 +743,8 @@ + _set_fancy(XDG_MIME_INSTALL_DIR "${SHARE_INSTALL_PREFIX}/mime/packages" "The install dir for the xdg mimetypes") + + _set_fancy(SYSCONF_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/etc" "The kde sysconfig install dir (default ${CMAKE_INSTALL_PREFIX}/etc)") +- _set_fancy(MAN_INSTALL_DIR "${SHARE_INSTALL_PREFIX}/man" "The kde man install dir (default ${SHARE_INSTALL_PREFIX}/man/)") +- _set_fancy(INFO_INSTALL_DIR "${SHARE_INSTALL_PREFIX}/info" "The kde info install dir (default ${SHARE_INSTALL_PREFIX}/info)") ++ _set_fancy(MAN_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/man" "The kde man install dir (default ${SHARE_INSTALL_PREFIX}/man/)") ++ _set_fancy(INFO_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/info" "The kde info install dir (default ${SHARE_INSTALL_PREFIX}/info)") + _set_fancy(DBUS_INTERFACES_INSTALL_DIR "${SHARE_INSTALL_PREFIX}/dbus-1/interfaces" "The kde dbus interfaces install dir (default ${SHARE_INSTALL_PREFIX}/dbus-1/interfaces)") + _set_fancy(DBUS_SERVICES_INSTALL_DIR "${SHARE_INSTALL_PREFIX}/dbus-1/services" "The kde dbus services install dir (default ${SHARE_INSTALL_PREFIX}/dbus-1/services)") + diff --git a/x11/kdelibs4/files/patch-cmake_modules_FindKdcraw.cmake b/x11/kdelibs4/files/patch-cmake_modules_FindKdcraw.cmake new file mode 100644 index 000000000000..2e5639bbadce --- /dev/null +++ b/x11/kdelibs4/files/patch-cmake_modules_FindKdcraw.cmake @@ -0,0 +1,11 @@ +--- ../cmake/modules/FindKdcraw.cmake.orig 2009-01-06 17:27:37.000000000 +0000 ++++ ../cmake/modules/FindKdcraw.cmake 2009-01-25 08:34:44.000000000 +0000 +@@ -51,7 +51,7 @@ + # in the FIND_PATH() and FIND_LIBRARY() calls + INCLUDE(UsePkgConfig) + +- PKGCONFIG(libkdcraw _KDCRAWIncDir _KDCRAWLinkDir _KDCRAWLinkFlags _KDCRAWCflags) ++ PKGCONFIG(libkdcraw-kde4 _KDCRAWIncDir _KDCRAWLinkDir _KDCRAWLinkFlags _KDCRAWCflags) + + if(_KDCRAWLinkFlags) + # query pkg-config asking for a libkdcraw >= 0.2.0 diff --git a/x11/kdelibs4/files/patch-cmake_modules_FindKexiv2.cmake b/x11/kdelibs4/files/patch-cmake_modules_FindKexiv2.cmake new file mode 100644 index 000000000000..8844a6ab8e28 --- /dev/null +++ b/x11/kdelibs4/files/patch-cmake_modules_FindKexiv2.cmake @@ -0,0 +1,11 @@ +--- ../cmake/modules/FindKexiv2.cmake.orig 2009-01-06 17:27:37.000000000 +0000 ++++ ../cmake/modules/FindKexiv2.cmake 2009-01-25 08:34:53.000000000 +0000 +@@ -49,7 +49,7 @@ + # in the FIND_PATH() and FIND_LIBRARY() calls + INCLUDE(UsePkgConfig) + +- PKGCONFIG(libkexiv2 _KEXIV2IncDir _KEXIV2LinkDir _KEXIV2LinkFlags _KEXIV2Cflags) ++ PKGCONFIG(libkexiv2-kde4 _KEXIV2IncDir _KEXIV2LinkDir _KEXIV2LinkFlags _KEXIV2Cflags) + + if(_KEXIV2LinkFlags) + # query pkg-config asking for a libkexiv2 >= 0.2.0 diff --git a/x11/kdelibs4/files/patch-cmake_modules_FindKipi.cmake b/x11/kdelibs4/files/patch-cmake_modules_FindKipi.cmake new file mode 100644 index 000000000000..18a427d0d0d0 --- /dev/null +++ b/x11/kdelibs4/files/patch-cmake_modules_FindKipi.cmake @@ -0,0 +1,11 @@ +--- ../cmake/modules/FindKipi.cmake.orig 2009-01-06 17:27:37.000000000 +0000 ++++ ../cmake/modules/FindKipi.cmake 2009-01-25 08:35:05.000000000 +0000 +@@ -50,7 +50,7 @@ + # in the FIND_PATH() and FIND_LIBRARY() calls + INCLUDE(UsePkgConfig) + +- PKGCONFIG(libkipi _KIPIIncDir _KIPILinkDir _KIPILinkFlags _KIPICflags) ++ PKGCONFIG(libkipi-kde4 _KIPIIncDir _KIPILinkDir _KIPILinkFlags _KIPICflags) + + if(_KIPILinkFlags) + # query pkg-config asking for a libkipi >= 0.2.0 diff --git a/x11/kdelibs4/files/patch-cmake_modules_FindPhonon.cmake b/x11/kdelibs4/files/patch-cmake_modules_FindPhonon.cmake new file mode 100644 index 000000000000..2ba8f352bf4a --- /dev/null +++ b/x11/kdelibs4/files/patch-cmake_modules_FindPhonon.cmake @@ -0,0 +1,16 @@ +--- ../cmake/modules/FindPhonon.cmake.orig 2008-12-04 11:35:54.000000000 +0300 ++++ ../cmake/modules/FindPhonon.cmake 2008-12-15 23:16:39.000000000 +0300 +@@ -27,11 +27,11 @@ + endif(PHONON_INCLUDE_DIR AND PHONON_LIBRARY) + + # As discussed on kde-buildsystem: first look at CMAKE_PREFIX_PATH, then at the suggested PATHS (kde4 install dir) +- find_library(PHONON_LIBRARY NAMES phonon PATHS ${KDE4_LIB_INSTALL_DIR} ${QT_LIBRARY_DIR} NO_SYSTEM_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH) ++ find_library(PHONON_LIBRARY NAMES phonon PATHS ${KDE4_PREFIX}/lib ${KDE4_LIB_INSTALL_DIR} ${QT_LIBRARY_DIR} NO_SYSTEM_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH) + # then at the default system locations (CMAKE_SYSTEM_PREFIX_PATH, i.e. /usr etc.) + find_library(PHONON_LIBRARY NAMES phonon) + +- find_path(PHONON_INCLUDE_DIR NAMES phonon/phonon_export.h PATHS ${KDE4_INCLUDE_INSTALL_DIR} ${QT_INCLUDE_DIR} ${INCLUDE_INSTALL_DIR} NO_SYSTEM_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH) ++ find_path(PHONON_INCLUDE_DIR NAMES phonon/phonon_export.h PATHS ${KDE4_PREFIX}/include ${KDE4_INCLUDE_INSTALL_DIR} ${QT_INCLUDE_DIR} ${INCLUDE_INSTALL_DIR} NO_SYSTEM_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH) + find_path(PHONON_INCLUDE_DIR NAMES phonon/phonon_export.h) + + if(PHONON_INCLUDE_DIR AND PHONON_LIBRARY) diff --git a/x11/kdelibs4/files/patch-cmake_modules_FindQt4.cmake b/x11/kdelibs4/files/patch-cmake_modules_FindQt4.cmake new file mode 100644 index 000000000000..cfdac69ba1f2 --- /dev/null +++ b/x11/kdelibs4/files/patch-cmake_modules_FindQt4.cmake @@ -0,0 +1,18 @@ +--- ../cmake/modules/FindQt4.cmake.orig 2008-10-17 15:01:33.000000000 +0400 ++++ ../cmake/modules/FindQt4.cmake 2008-12-16 00:40:06.000000000 +0300 +@@ -1096,13 +1096,13 @@ + ) + + FIND_PROGRAM(QT_LUPDATE_EXECUTABLE +- NAMES lupdate ++ NAMES lupdate-qt4 + PATHS ${QT_BINARY_DIR} + NO_DEFAULT_PATH + ) + + FIND_PROGRAM(QT_LRELEASE_EXECUTABLE +- NAMES lrelease ++ NAMES lrelease-qt4 + PATHS ${QT_BINARY_DIR} + NO_DEFAULT_PATH + ) diff --git a/x11/kdelibs4/files/patch-kded-kded.cpp b/x11/kdelibs4/files/patch-kded-kded.cpp new file mode 100644 index 000000000000..af0ff725708f --- /dev/null +++ b/x11/kdelibs4/files/patch-kded-kded.cpp @@ -0,0 +1,68 @@ +--- ../kded/kded.cpp (revision 918837) ++++ ../kded/kded.cpp (revision 918838) +@@ -115,9 +115,8 @@ + KToolInvocation::kdeinitExecWait( "kdontchangethehostname", args ); + } + +-Kded::Kded(bool checkUpdates) +- : b_checkUpdates(checkUpdates), +- m_needDelayedCheck(false) ++Kded::Kded() ++ : m_needDelayedCheck(false) + { + _self = this; + +@@ -280,7 +279,7 @@ + KSharedConfig::Ptr config = KGlobal::config(); + // Ensure the service exists. + KService::Ptr service = KService::serviceByDesktopPath("kded/"+obj+".desktop"); +- if (!service) ++ if (!service) + return; + KConfigGroup cg(config, QString("Module-%1").arg(service->desktopEntryName())); + cg.writeEntry("autoload", autoload); +@@ -290,7 +289,7 @@ + bool Kded::isModuleAutoloaded(const QString &obj) const + { + KService::Ptr s = KService::serviceByDesktopPath("kded/"+obj+".desktop"); +- if (!s) ++ if (!s) + return false; + return isModuleAutoloaded(s); + } +@@ -307,7 +306,7 @@ + bool Kded::isModuleLoadedOnDemand(const QString &obj) const + { + KService::Ptr s = KService::serviceByDesktopPath("kded/"+obj+".desktop"); +- if (!s) ++ if (!s) + return false; + return isModuleLoadedOnDemand(s); + } +@@ -446,7 +445,7 @@ + + void Kded::updateDirWatch() + { +- if (!b_checkUpdates) return; ++ if (!bCheckUpdates) return; + + delete m_pDirWatch; + m_pDirWatch = new KDirWatch; +@@ -471,7 +470,7 @@ + { + delete KSycoca::self(); + +- if (!b_checkUpdates) return; ++ if (!bCheckUpdates) return; + + if (delayedCheck) return; + +@@ -921,7 +920,7 @@ + checkStamps = cg.readEntry("CheckFileStamps", true); + delayedCheck = cg.readEntry("DelayedCheck", false); + +- Kded *kded = new Kded(false); // Build data base ++ Kded *kded = new Kded(); // Build data base + + KDE_signal(SIGTERM, sighandler); + KDE_signal(SIGHUP, sighandler); diff --git a/x11/kdelibs4/files/patch-kded-kded.h b/x11/kdelibs4/files/patch-kded-kded.h new file mode 100644 index 000000000000..b5459c80193e --- /dev/null +++ b/x11/kdelibs4/files/patch-kded-kded.h @@ -0,0 +1,20 @@ +--- ../kded/kded.h (revision 918837) ++++ ../kded/kded.h (revision 918838) +@@ -41,7 +41,7 @@ + { + Q_OBJECT + public: +- Kded(bool checkUpdates); ++ Kded(); + virtual ~Kded(); + + static Kded *self() { return _self;} +@@ -186,8 +186,6 @@ + */ + KDirWatch* m_pDirWatch; + +- bool b_checkUpdates; +- + /** + * When a desktop file is updated, a timer is started (5 sec) + * before rebuilding the binary - so that multiple updates result diff --git a/x11/kdelibs4/files/patch-kfile-kfileplacesmodel.cpp b/x11/kdelibs4/files/patch-kfile-kfileplacesmodel.cpp deleted file mode 100644 index a6090fc7c2df..000000000000 --- a/x11/kdelibs4/files/patch-kfile-kfileplacesmodel.cpp +++ /dev/null @@ -1,106 +0,0 @@ ---- ../kfile/kfileplacesmodel.cpp 2008/08/15 10:29:57 847375 -+++ ../kfile/kfileplacesmodel.cpp 2008/08/15 10:30:45 847376 -@@ -54,7 +54,7 @@ - public: - Private(KFilePlacesModel *self) : q(self), bookmarkManager(0), sharedBookmarks(0) {} - ~Private() -- { -+ { - delete sharedBookmarks; - qDeleteAll(items); - } -@@ -68,7 +68,7 @@ - Solid::Predicate predicate; - KBookmarkManager *bookmarkManager; - KFilePlacesSharedBookmarks * sharedBookmarks; -- -+ - void reloadAndSignal(); - QList<KFilePlacesItem *> loadBookmarkList(); - -@@ -663,8 +663,7 @@ - { - Solid::Device device = deviceForIndex(index); - -- if ( (device.is<Solid::StorageAccess>() && device.as<Solid::StorageAccess>()->isAccessible()) -- || device.is<Solid::OpticalDisc>()) { -+ if (device.is<Solid::StorageAccess>() && device.as<Solid::StorageAccess>()->isAccessible()) { - - Solid::StorageDrive *drive = device.as<Solid::StorageDrive>(); - -@@ -680,17 +679,39 @@ - removable = drive->isRemovable(); - } - -+ QString iconName; - QString text; - QString label = data(index, Qt::DisplayRole).toString().replace('&',"&&"); - - if (device.is<Solid::OpticalDisc>()) { -- text = i18n("&Eject '%1'", label); -+ text = i18n("&Release '%1'", label); - } else if (removable || hotpluggable) { - text = i18n("&Safely Remove '%1'", label); -+ iconName = "media-eject"; - } else { - text = i18n("&Unmount '%1'", label); -+ iconName = "media-eject"; - } - -+ if (!iconName.isEmpty()) { -+ return new QAction(KIcon(iconName), text, 0); -+ } else { -+ return new QAction(text, 0); -+ } -+ } -+ -+ return 0; -+} -+ -+QAction *KFilePlacesModel::ejectActionForIndex(const QModelIndex &index) const -+{ -+ Solid::Device device = deviceForIndex(index); -+ -+ if (device.is<Solid::OpticalDisc>()) { -+ -+ QString label = data(index, Qt::DisplayRole).toString().replace('&',"&&"); -+ QString text = i18n("&Eject '%1'", label); -+ - return new QAction(KIcon("media-eject"), text, 0); - } - -@@ -701,6 +722,18 @@ - { - Solid::Device device = deviceForIndex(index); - -+ Solid::StorageAccess *access = device.as<Solid::StorageAccess>(); -+ -+ connect(access, SIGNAL(teardownDone(Solid::ErrorType, QVariant, const QString &)), -+ this, SLOT(_k_storageTeardownDone(Solid::ErrorType, QVariant))); -+ -+ device.as<Solid::StorageAccess>()->teardown(); -+} -+ -+void KFilePlacesModel::requestEject(const QModelIndex &index) -+{ -+ Solid::Device device = deviceForIndex(index); -+ - Solid::OpticalDrive *drive = device.parent().as<Solid::OpticalDrive>(); - - if (drive!=0) { -@@ -709,12 +742,9 @@ - - drive->eject(); - } else { -- Solid::StorageAccess *access = device.as<Solid::StorageAccess>(); -- -- connect(access, SIGNAL(teardownDone(Solid::ErrorType, QVariant, const QString &)), -- this, SLOT(_k_storageTeardownDone(Solid::ErrorType, QVariant))); -- -- device.as<Solid::StorageAccess>()->teardown(); -+ QString label = data(index, Qt::DisplayRole).toString().replace('&',"&&"); -+ QString message = i18n("The device '%1' is not a disc and can't be ejected.", label); -+ emit errorMessage(message); - } - } - diff --git a/x11/kdelibs4/files/patch-kfile-kfileplacesmodel.h b/x11/kdelibs4/files/patch-kfile-kfileplacesmodel.h deleted file mode 100644 index ba6853976ab3..000000000000 --- a/x11/kdelibs4/files/patch-kfile-kfileplacesmodel.h +++ /dev/null @@ -1,12 +0,0 @@ ---- ../kfile/kfileplacesmodel.h 2008/08/15 10:29:57 847375 -+++ ../kfile/kfileplacesmodel.h 2008/08/15 10:30:45 847376 -@@ -60,7 +60,9 @@ - KBookmark bookmarkForIndex(const QModelIndex &index) const; - - QAction *teardownActionForIndex(const QModelIndex &index) const; -+ QAction *ejectActionForIndex(const QModelIndex &index) const; - void requestTeardown(const QModelIndex &index); -+ void requestEject(const QModelIndex &index); - void requestSetup(const QModelIndex &index); - - void addPlace(const QString &text, const KUrl &url, const QString &iconName = QString(), const QString &appName = QString()); diff --git a/x11/kdelibs4/files/patch-kfile-kfileplacesview.cpp b/x11/kdelibs4/files/patch-kfile-kfileplacesview.cpp deleted file mode 100644 index ffb64af99a56..000000000000 --- a/x11/kdelibs4/files/patch-kfile-kfileplacesview.cpp +++ /dev/null @@ -1,65 +0,0 @@ ---- ../kfile/kfileplacesview.cpp 2008/08/06 22:07:11 843298 -+++ ../kfile/kfileplacesview.cpp 2008/08/15 10:30:45 847376 -@@ -551,6 +551,9 @@ - QAction *edit = 0; - QAction *hide = 0; - QAction *emptyTrash = 0; -+ QAction* eject = 0; -+ QAction* teardown = 0; -+ - if (index.isValid()) { - if (!placesModel->isDevice(index)) { - if (placesModel->url(index) == KUrl("trash:/")) { -@@ -561,6 +564,22 @@ - } - - edit = menu.addAction(KIcon("document-properties"), i18n("&Edit '%1'...", label)); -+ } else { -+ eject = placesModel->ejectActionForIndex(index); -+ if (eject!=0) { -+ eject->setParent(&menu); -+ menu.addAction(eject); -+ } -+ -+ teardown = placesModel->teardownActionForIndex(index); -+ if (teardown!=0) { -+ teardown->setParent(&menu); -+ menu.addAction(teardown); -+ } -+ -+ if (teardown!=0 || eject!=0) { -+ menu.addSeparator(); -+ } - } - - hide = menu.addAction(i18n("&Hide '%1'", label)); -@@ -575,19 +594,11 @@ - showAll->setChecked(d->showAll); - } - -- QAction* remove = 0L; -- QAction* teardown = 0L; -+ QAction* remove = 0; - if (index.isValid()) { - if (!placesModel->isDevice(index)) { - menu.addSeparator(); - remove = menu.addAction( KIcon("edit-delete"), i18n("&Remove '%1'", label)); -- } else { -- teardown = placesModel->teardownActionForIndex(index); -- if (teardown!=0) { -- teardown->setParent(&menu); -- menu.addSeparator(); -- menu.addAction(teardown); -- } - } - } - -@@ -646,6 +657,8 @@ - setShowAll(showAll->isChecked()); - } else if (teardown != 0 && result == teardown) { - placesModel->requestTeardown(index); -+ } else if (eject != 0 && result == eject) { -+ placesModel->requestEject(index); - } - - index = placesModel->closestItem(d->currentUrl); diff --git a/x11/kdelibs4/files/patch-kinit-klauncher.cpp b/x11/kdelibs4/files/patch-kinit-klauncher.cpp new file mode 100644 index 000000000000..bd4e42526602 --- /dev/null +++ b/x11/kdelibs4/files/patch-kinit-klauncher.cpp @@ -0,0 +1,199 @@ +diff -u ../kinit/klauncher.cpp ../kinit/klauncher.cpp +--- ../kinit/klauncher.cpp (revision 918403) ++++ ../kinit/klauncher.cpp (revision 918654) +@@ -58,6 +58,9 @@ + + // #define KLAUNCHER_VERBOSE_OUTPUT + ++static const char* const s_DBusStartupTypeToString[] = ++ { "DBusNone", "DBusUnique", "DBusMulti", "DBusWait", "ERROR" }; ++ + using namespace KIO; + + IdleSlave::IdleSlave(QObject *parent) +@@ -167,7 +170,7 @@ + + KLauncher::KLauncher(int _kdeinitSocket) + : QObject(0), +- kdeinitSocket(_kdeinitSocket), dontBlockReading(false) ++ kdeinitSocket(_kdeinitSocket) + { + #ifdef Q_WS_X11 + mCached_dpy = NULL; +@@ -276,8 +279,24 @@ + { + ssize_t result; + int bytes_left = len; +- while ( bytes_left > 0) +- { ++ while (bytes_left > 0) { ++ // in case we get a request to start an application and data arrive ++ // to kdeinitSocket at the same time, requestStart() will already ++ // call slotKDEInitData(), so we must check there's still something ++ // to read, otherwise this would block ++ ++ // Same thing if kdeinit dies without warning. ++ ++ fd_set in; ++ timeval tm = { 30, 0 }; // 30 seconds timeout, so we're not stuck in case kdeinit dies on us ++ FD_ZERO ( &in ); ++ FD_SET( sock, &in ); ++ select( sock + 1, &in, 0, 0, &tm ); ++ if( !FD_ISSET( sock, &in )) { ++ kDebug(7016) << "read_socket" << sock << "nothing to read, kdeinit4 must be dead"; ++ return -1; ++ } ++ + result = read(sock, buffer, bytes_left); + if (result > 0) + { +@@ -298,21 +317,7 @@ + { + klauncher_header request_header; + QByteArray requestData; +- if( dontBlockReading ) +- { +- // in case we get a request to start an application and data arrive +- // to kdeinitSocket at the same time, requestStart() will already +- // call slotKDEInitData(), so we must check there's still something +- // to read, otherwise this would block +- fd_set in; +- timeval tm = { 0, 0 }; +- FD_ZERO ( &in ); +- FD_SET( kdeinitSocket, &in ); +- select( kdeinitSocket + 1, &in, 0, 0, &tm ); +- if( !FD_ISSET( kdeinitSocket, &in )) +- return; +- } +- dontBlockReading = false; ++ + int result = read_socket(kdeinitSocket, (char *) &request_header, + sizeof( request_header)); + if (result == -1) +@@ -391,15 +396,19 @@ + if (request->pid == pid) + { + if (request->dbus_startup_type == KService::DBusWait) +- request->status = KLaunchRequest::Done; ++ request->status = KLaunchRequest::Done; + else if ((request->dbus_startup_type == KService::DBusUnique) +- && QDBusConnection::sessionBus().interface()->isServiceRegistered(request->dbus_name)) +- request->status = KLaunchRequest::Running; +- else +- request->status = KLaunchRequest::Error; ++ && QDBusConnection::sessionBus().interface()->isServiceRegistered(request->dbus_name)) { ++ request->status = KLaunchRequest::Running; + #ifdef KLAUNCHER_VERBOSE_OUTPUT +- kDebug(7016) << pid << "died, requestDone. status=" << request->status; ++ kDebug(7016) << pid << "running as a unique app"; + #endif ++ } else { ++ request->status = KLaunchRequest::Error; ++#ifdef KLAUNCHER_VERBOSE_OUTPUT ++ kDebug(7016) << pid << "died, requestDone. status=" << request->status; ++#endif ++ } + requestDone(request); + return; + } +@@ -444,19 +453,29 @@ + if (request->status != KLaunchRequest::Launching) + continue; + ++#ifdef KLAUNCHER_VERBOSE_OUTPUT ++ kDebug(7016) << "had pending request" << request->name << s_DBusStartupTypeToString[request->dbus_startup_type] << "dbus_name" << request->dbus_name << request->tolerant_dbus_name; ++#endif + // For unique services check the requested service name first +- if ((request->dbus_startup_type == KService::DBusUnique) && +- ((appId == request->dbus_name) || +- QDBusConnection::sessionBus().interface()->isServiceRegistered(request->dbus_name))) +- { +- request->status = KLaunchRequest::Running; +- requestDone(request); +- continue; ++ if (request->dbus_startup_type == KService::DBusUnique) { ++ if ((appId == request->dbus_name) || // just started ++ QDBusConnection::sessionBus().interface()->isServiceRegistered(request->dbus_name)) { // was already running ++ request->status = KLaunchRequest::Running; ++#ifdef KLAUNCHER_VERBOSE_OUTPUT ++ kDebug(7016) << "OK, unique app" << request->dbus_name << "is running"; ++#endif ++ requestDone(request); ++ continue; ++ } else { ++#ifdef KLAUNCHER_VERBOSE_OUTPUT ++ kDebug(7016) << "unique app" << request->dbus_name << "not running yet"; ++#endif ++ } + } + +- const QString rAppId = request->dbus_name; ++ const QString rAppId = !request->tolerant_dbus_name.isEmpty() ? request->tolerant_dbus_name : request->dbus_name; + #ifdef KLAUNCHER_VERBOSE_OUTPUT +- kDebug(7016) << "had pending request" << rAppId; ++ //kDebug(7016) << "using" << rAppId << "for matching"; + #endif + if (rAppId.isEmpty()) + continue; +@@ -647,17 +666,21 @@ + request_header.cmd = LAUNCHER_EXEC_NEW; + #endif + request_header.arg_length = requestData.length(); ++ ++#ifdef KLAUNCHER_VERBOSE_OUTPUT ++ kDebug(7016) << "Asking kdeinit to start" << request->name << request->arg_list ++ << "cmd=" << commandToString(request_header.cmd); ++#endif ++ + write(kdeinitSocket, &request_header, sizeof(request_header)); + write(kdeinitSocket, requestData.data(), requestData.length()); + + // Wait for pid to return. + lastRequest = request; +- dontBlockReading = false; + do { + slotKDEInitData( kdeinitSocket ); + } + while (lastRequest != 0); +- dontBlockReading = true; + #endif + } + +@@ -812,11 +835,18 @@ + request->dbus_name = v.toString().toUtf8(); + } + if (request->dbus_name.isEmpty()) { +- request->dbus_name = "*." + QFile::encodeName(KRun::binaryName(service->exec(), true)); ++ const QString binName = KRun::binaryName(service->exec(), true); ++ request->dbus_name = "org.kde." + binName; ++ request->tolerant_dbus_name = "*." + binName; + } + } + } + ++#ifdef KLAUNCHER_VERBOSE_OUTPUT ++ kDebug(7016) << "name=" << request->name << "dbus_name=" << request->dbus_name ++ << "startup type=" << s_DBusStartupTypeToString[request->dbus_startup_type]; ++#endif ++ + request->pid = 0; + request->envs = envs; + send_service_startup_info( request, service, startup_id, envs ); +@@ -932,7 +962,7 @@ + request->arg_list.append(arg.toLocal8Bit()); + } + +- request->name = app.toLocal8Bit(); ++ request->name = app; + + if (wait) + request->dbus_startup_type = KService::DBusWait; +@@ -1107,7 +1137,7 @@ + } + if (mSlaveValgrind == arg1) + { +- arg_list.prepend(QFile::encodeName(KLibLoader::findLibrary(name.toLocal8Bit()))); ++ arg_list.prepend(QFile::encodeName(KLibLoader::findLibrary(name))); + arg_list.prepend(QFile::encodeName(KStandardDirs::locate("exe", "kioslave"))); + name = "valgrind"; + if (!mSlaveValgrindSkin.isEmpty()) { diff --git a/x11/kdelibs4/files/patch-kinit-klauncher.h b/x11/kdelibs4/files/patch-kinit-klauncher.h new file mode 100644 index 000000000000..bc0b14f52f45 --- /dev/null +++ b/x11/kdelibs4/files/patch-kinit-klauncher.h @@ -0,0 +1,10 @@ +--- ../kinit/klauncher.h (revision 918653) ++++ ../kinit/klauncher.h (revision 918654) +@@ -87,6 +87,7 @@ + QString name; + QStringList arg_list; + QString dbus_name; ++ QString tolerant_dbus_name; + enum status_t { Init = 0, Launching, Running, Error, Done }; + pid_t pid; + status_t status; diff --git a/x11/kdelibs4/files/patch-kio-kio-copyjob.cpp b/x11/kdelibs4/files/patch-kio-kio-copyjob.cpp new file mode 100644 index 000000000000..9ab742f74206 --- /dev/null +++ b/x11/kdelibs4/files/patch-kio-kio-copyjob.cpp @@ -0,0 +1,116 @@ +--- ../kio/kio/copyjob.cpp (revision 917169) ++++ ../kio/kio/copyjob.cpp (revision 917170) +@@ -153,7 +153,7 @@ + QList<CopyInfo> dirs; + KUrl::List dirsToRemove; + KUrl::List m_srcList; +- KUrl::List m_skippedSourceUrls; ++ KUrl::List m_successSrcList; + KUrl::List::const_iterator m_currentStatSrc; + bool m_bCurrentSrcIsDir; + bool m_bCurrentOperationIsLink; +@@ -770,10 +770,6 @@ + + void CopyJobPrivate::skip( const KUrl & sourceUrl ) + { +- // If this is one if toplevel sources, +- // remove it from d->m_srcList, for a correct FilesRemoved() signal +- // But don't do it right away, we have iterators into that list (#157601) +- m_skippedSourceUrls.append( sourceUrl ); + dirsToRemove.removeAll( sourceUrl ); + } + +@@ -857,6 +853,7 @@ + { + //this is required for the undo feature + emit q->copyingDone( q, (*it).uSource, (*it).uDest, (*it).mtime, true, false ); ++ m_successSrcList.append((*it).uSource); + m_directoriesCopied.append( *it ); + dirs.erase( it ); + } +@@ -1118,6 +1115,7 @@ + emit q->copyingDone( q, (*it).uSource, (*it).uDest, (*it).mtime, false, false ); + if (m_mode == CopyJob::Move) + org::kde::KDirNotify::emitFileMoved( (*it).uSource.url(), (*it).uDest.url() ); ++ m_successSrcList.append((*it).uSource); + } + // remove from list, to move on to next file + files.erase( it ); +@@ -1372,7 +1370,7 @@ + KIO::Job * newjob = 0; + if ( m_mode == CopyJob::Link ) { + // User requested that a symlink be made +- JobFlags flags = bOverwrite ? Overwrite : DefaultFlags; ++ const JobFlags flags = bOverwrite ? Overwrite : DefaultFlags; + newjob = linkNextFile(uSource, uDest, flags); + if (!newjob) + return; +@@ -1384,7 +1382,7 @@ + (uSource.pass() == uDest.pass())) + // Copying a symlink - only on the same protocol/host/etc. (#5601, downloading an FTP file through its link), + { +- JobFlags flags = bOverwrite ? Overwrite : DefaultFlags; ++ const JobFlags flags = bOverwrite ? Overwrite : DefaultFlags; + KIO::SimpleJob *newJob = KIO::symlink( (*it).linkDest, uDest, flags | HideProgressInfo /*no GUI*/ ); + Scheduler::scheduleJob(newJob); + newjob = newJob; +@@ -1509,23 +1507,6 @@ + // but then we need to jump to the else part below. Maybe with a recursive call? + #endif + } else { +- // Finished - tell the world +- if ( !m_bOnlyRenames ) +- { +- KUrl url( m_globalDest ); +- if ( m_globalDestinationState != DEST_IS_DIR || m_asMethod ) +- url.setPath( url.directory() ); +- //kDebug(7007) << "KDirNotify'ing FilesAdded " << url; +- org::kde::KDirNotify::emitFilesAdded( url.url() ); +- +- Q_FOREACH(const KUrl& url, m_skippedSourceUrls) +- m_srcList.removeAll(url); +- +- if ( m_mode == CopyJob::Move && !m_srcList.isEmpty() ) { +- //kDebug(7007) << "KDirNotify'ing FilesRemoved " << m_srcList.toStringList(); +- org::kde::KDirNotify::emitFilesRemoved( m_srcList.toStringList() ); +- } +- } + if (m_reportTimer) + m_reportTimer->stop(); + --m_processedFiles; // undo the "start at 1" hack +@@ -1535,6 +1516,27 @@ + } + } + ++void CopyJob::emitResult() ++{ ++ Q_D(CopyJob); ++ // Before we go, tell the world about the changes that were made. ++ // Even if some error made us abort midway, we might still have done ++ // part of the job so we better update the views! (#118583) ++ if (!d->m_bOnlyRenames) { ++ KUrl url(d->m_globalDest); ++ if (d->m_globalDestinationState != DEST_IS_DIR || d->m_asMethod) ++ url.setPath(url.directory()); ++ //kDebug(7007) << "KDirNotify'ing FilesAdded " << url; ++ org::kde::KDirNotify::emitFilesAdded( url.url() ); ++ ++ if (d->m_mode == CopyJob::Move && !d->m_successSrcList.isEmpty()) { ++ kDebug(7007) << "KDirNotify'ing FilesRemoved" << d->m_successSrcList.toStringList(); ++ org::kde::KDirNotify::emitFilesRemoved(d->m_successSrcList.toStringList()); ++ } ++ } ++ Job::emitResult(); ++} ++ + void CopyJobPrivate::slotProcessedSize( KJob*, qulonglong data_size ) + { + Q_Q(CopyJob); +@@ -1801,6 +1803,7 @@ + kDebug(7007) << "Renaming succeeded, move on"; + ++m_processedFiles; + emit q->copyingDone( q, *m_currentStatSrc, dest, -1 /*mtime unknown, and not needed*/, true, true ); ++ m_successSrcList.append(*m_currentStatSrc); + statNextSrc(); + } + } diff --git a/x11/kdelibs4/files/patch-kio-kio-copyjob.h b/x11/kdelibs4/files/patch-kio-kio-copyjob.h new file mode 100644 index 000000000000..e42e30810389 --- /dev/null +++ b/x11/kdelibs4/files/patch-kio-kio-copyjob.h @@ -0,0 +1,10 @@ +--- ../kio/kio/copyjob.h (revision 917169) ++++ ../kio/kio/copyjob.h (revision 917170) +@@ -245,6 +245,7 @@ + + protected: + CopyJob(CopyJobPrivate &dd); ++ void emitResult(); + + private: + Q_PRIVATE_SLOT(d_func(), void slotStart()) diff --git a/x11/kdelibs4/files/patch-kio-kio-kdirwatch.cpp b/x11/kdelibs4/files/patch-kio-kio-kdirwatch.cpp index d570729d5339..964be83b064b 100644 --- a/x11/kdelibs4/files/patch-kio-kio-kdirwatch.cpp +++ b/x11/kdelibs4/files/patch-kio-kio-kdirwatch.cpp @@ -1,18 +1,16 @@ ---- ../kio/kio/kdirwatch.cpp.orig 2008-06-29 18:29:43.000000000 +0200 -+++ ../kio/kio/kdirwatch.cpp 2008-06-30 00:40:46.000000000 +0200 -@@ -124,7 +124,11 @@ - m_nfsPollInterval = config.readEntry("NFSPollInterval", 5000); - m_PollInterval = config.readEntry("PollInterval", 500); - +--- ../kio/kio/kdirwatch.cpp.orgi 2009-01-27 18:07:49.000000000 +0100 ++++ ../kio/kio/kdirwatch.cpp 2009-01-27 18:15:04.000000000 +0100 +@@ -89,6 +89,9 @@ + } else if (method == "QFSWatch") { + return KDirWatchPrivate::QFSWatch; + } else { +#ifdef Q_OS_FREEBSD -+ QString method = config.readEntry("PreferredMethod", "Stat"); -+#else - QString method = config.readEntry("PreferredMethod", "inotify"); ++ return KDirWatchPrivate::Stat; +#endif - if (method == "Fam") - { - m_preferredMethod = Fam; -@@ -154,7 +158,7 @@ + #ifdef Q_OS_WIN + return KDirWatchPrivate::QFSWatch; + #else +@@ -159,7 +162,7 @@ #ifdef HAVE_FAM // It's possible that FAM server can't be started diff --git a/x11/kdelibs4/files/patch-kpty-kptydevice.cpp b/x11/kdelibs4/files/patch-kpty-kptydevice.cpp deleted file mode 100644 index bde5029cef92..000000000000 --- a/x11/kdelibs4/files/patch-kpty-kptydevice.cpp +++ /dev/null @@ -1,12 +0,0 @@ ---- ../kpty/kptydevice.cpp.orig 2008-07-14 10:04:55.000000000 -0400 -+++ ../kpty/kptydevice.cpp 2008-07-14 10:05:24.000000000 -0400 -@@ -265,7 +265,8 @@ - #else - int available; - #endif -- if (!::ioctl(q->masterFd(), FIONREAD, (char *) &available)) { -+ //if (!::ioctl(q->masterFd(), FIONREAD, (char *) &available)) { -+ if (!::ioctl(q->masterFd(), TIOCOUTQ, (char *) &available)) { - char *ptr = readBuffer.reserve(available); - NO_INTR(readBytes, read(q->masterFd(), ptr, available)); - if (readBytes < 0) { diff --git a/x11/kdelibs4/pkg-plist b/x11/kdelibs4/pkg-plist index a8fd983c1da5..c84d936d548d 100644 --- a/x11/kdelibs4/pkg-plist +++ b/x11/kdelibs4/pkg-plist @@ -13,7 +13,6 @@ bin/kross bin/kshell4 bin/kunittestmodrunner bin/kwrapper4 -bin/kwalletd bin/makekdewidgets bin/meinproc4 bin/nepomuk-rcgen @@ -207,6 +206,7 @@ include/KDE/KAccelGen/Deref include/KDE/KAccelGen/Deref_Key include/KDE/KAcceleratorManager include/KDE/KAction +include/KDE/KActionCategory include/KDE/KActionCollection include/KDE/KActionMenu include/KDE/KActionSelector @@ -308,6 +308,7 @@ include/KDE/KDirOperator include/KDE/KDirSelectDialog include/KDE/KDirWatch include/KDE/KDiskFreeSpace +include/KDE/KDiskFreeSpaceInfo include/KDE/KDoubleNumInput include/KDE/KDoubleSpinBox include/KDE/KDoubleValidator @@ -318,6 +319,7 @@ include/KDE/KEmoticons include/KDE/KEmoticonsProvider include/KDE/KEmoticonsTheme include/KDE/KEncodingFileDialog +include/KDE/KEncodingProber include/KDE/KExtendableItemDelegate include/KDE/KFadeWidgetEffect include/KDE/KFile @@ -329,12 +331,14 @@ include/KDE/KFileItemList include/KDE/KFileMetaInfo include/KDE/KFileMetaInfoGroup include/KDE/KFileMetaInfoItem +include/KDE/KFilePlacesModel include/KDE/KFileShare include/KDE/KFileSharePropsPlugin include/KDE/KFileTreeBranch include/KDE/KFileTreeView include/KDE/KFilterBase include/KDE/KFilterDev +include/KDE/KFilterProxySearchLine include/KDE/KFind include/KDE/KFindDialog include/KDE/KFloatValidator @@ -429,6 +433,7 @@ include/KDE/KLibLoader include/KDE/KLibrary include/KDE/KLineEdit include/KDE/KListWidget +include/KDE/KListWidgetSearchLine include/KDE/KLocale include/KDE/KLocalizedString include/KDE/KLockFile @@ -628,11 +633,13 @@ include/KDE/KTextEdit include/KDE/KTextEditor/Attribute include/KDE/KTextEditor/CodeCompletionInterface include/KDE/KTextEditor/CodeCompletionModel +include/KDE/KTextEditor/CodeCompletionModelControllerInterface include/KDE/KTextEditor/Command include/KDE/KTextEditor/CommandExtension include/KDE/KTextEditor/CommandInterface include/KDE/KTextEditor/ConfigInterface include/KDE/KTextEditor/ConfigPage +include/KDE/KTextEditor/ContainerInterface include/KDE/KTextEditor/Cursor include/KDE/KTextEditor/Document include/KDE/KTextEditor/Editor @@ -720,10 +727,13 @@ include/KDE/KonqBookmarkOwner include/KDE/NET include/KDE/NETRootInfo include/KDE/NETWinInfo +include/KDE/Nepomuk/KRatingPainter +include/KDE/Nepomuk/KRatingWidget include/KDE/Nepomuk/Resource include/KDE/Nepomuk/ResourceManager include/KDE/Nepomuk/Service include/KDE/Nepomuk/Tag +include/KDE/Nepomuk/Thing include/KDE/Nepomuk/Tools include/KDE/Nepomuk/Types/Class include/KDE/Nepomuk/Types/Literal @@ -732,6 +742,66 @@ include/KDE/Nepomuk/Types/Property include/KDE/Nepomuk/Variant include/KDE/OrgKdeKDirNotifyInterface include/KDE/OrgKdeKLauncherInterface +include/KDE/Plasma/AbstractRunner +include/KDE/Plasma/AnimationDriver +include/KDE/Plasma/Animator +include/KDE/Plasma/Applet +include/KDE/Plasma/AppletScript +include/KDE/Plasma/BusyWidget +include/KDE/Plasma/CheckBox +include/KDE/Plasma/ComboBox +include/KDE/Plasma/ConfigLoader +include/KDE/Plasma/Containment +include/KDE/Plasma/Context +include/KDE/Plasma/Corona +include/KDE/Plasma/DataContainer +include/KDE/Plasma/DataEngine +include/KDE/Plasma/DataEngineManager +include/KDE/Plasma/DataEngineScript +include/KDE/Plasma/Delegate +include/KDE/Plasma/Dialog +include/KDE/Plasma/Extender +include/KDE/Plasma/ExtenderItem +include/KDE/Plasma/FlashingLabel +include/KDE/Plasma/Frame +include/KDE/Plasma/FrameSvg +include/KDE/Plasma/GLApplet +include/KDE/Plasma/GroupBox +include/KDE/Plasma/IconWidget +include/KDE/Plasma/Label +include/KDE/Plasma/LineEdit +include/KDE/Plasma/Meter +include/KDE/Plasma/Package +include/KDE/Plasma/PackageMetadata +include/KDE/Plasma/PackageStructure +include/KDE/Plasma/PaintUtils +include/KDE/Plasma/Plasma +include/KDE/Plasma/PopupApplet +include/KDE/Plasma/PushButton +include/KDE/Plasma/QueryMatch +include/KDE/Plasma/RadioButton +include/KDE/Plasma/RunnerContext +include/KDE/Plasma/RunnerManager +include/KDE/Plasma/RunnerScript +include/KDE/Plasma/ScriptEngine +include/KDE/Plasma/ScrollBar +include/KDE/Plasma/Service +include/KDE/Plasma/ServiceJob +include/KDE/Plasma/SignalPlotter +include/KDE/Plasma/Slider +include/KDE/Plasma/Svg +include/KDE/Plasma/SvgWidget +include/KDE/Plasma/TabBar +include/KDE/Plasma/TextEdit +include/KDE/Plasma/Theme +include/KDE/Plasma/ToolButton +include/KDE/Plasma/ToolTipContent +include/KDE/Plasma/ToolTipManager +include/KDE/Plasma/TreeView +include/KDE/Plasma/Version +include/KDE/Plasma/View +include/KDE/Plasma/Wallpaper +include/KDE/Plasma/WebView include/KDE/PtyProcess include/KDE/Solid/AcAdapter include/KDE/Solid/AudioInterface @@ -879,6 +949,7 @@ include/kacceleratormanager.h include/kaccelgen.h include/kacl.h include/kaction.h +include/kactioncategory.h include/kactioncollection.h include/kactionmenu.h include/kactionselector.h @@ -897,11 +968,11 @@ include/kautosavefile.h include/kautostart.h include/kbookmark.h include/kbookmarkdialog.h +include/kbookmarkdombuilder.h include/kbookmarkexporter.h include/kbookmarkimporter.h include/kbookmarkimporter_crash.h include/kbookmarkimporter_ie.h -include/kbookmarkdombuilder.h include/kbookmarkimporter_ns.h include/kbookmarkimporter_opera.h include/kbookmarkmanager.h @@ -911,6 +982,7 @@ include/kbuildsycocaprogressdialog.h include/kbuttongroup.h include/kcalendarsystem.h include/kcalendarsystemfactory.h +include/kcapacitybar.h include/kcategorizedsortfilterproxymodel.h include/kcategorizedview.h include/kcategorydrawer.h @@ -987,6 +1059,7 @@ include/kdirselectdialog.h include/kdirsortfilterproxymodel.h include/kdirwatch.h include/kdiskfreespace.h +include/kdiskfreespaceinfo.h include/keditlistbox.h include/kedittoolbar.h include/kemailsettings.h @@ -995,6 +1068,7 @@ include/kemoticonsprovider.h include/kemoticonstheme.h include/kencodingdetector.h include/kencodingfiledialog.h +include/kencodingprober.h include/kexportplugin.h include/kextendableitemdelegate.h include/kfadewidgeteffect.h @@ -1008,6 +1082,7 @@ include/kfilemetainfo.h include/kfilemetainfoitem.h include/kfileplacesmodel.h include/kfileplacesview.h +include/kfilepreviewgenerator.h include/kfileshare.h include/kfilesharedialog.h include/kfilesharedlg.h @@ -1017,6 +1092,7 @@ include/kfilewidget.h include/kfilewriteplugin.h include/kfilterbase.h include/kfilterdev.h +include/kfilterproxysearchline.h include/kfind.h include/kfinddialog.h include/kfontaction.h @@ -1031,6 +1107,8 @@ include/kgesture.h include/kglobal.h include/kglobalaccel.h include/kglobalsettings.h +include/kglobalshortcutinfo.h +include/kglobalshortcutinfo_p.h include/kguiitem.h include/khbox.h include/khelpmenu.h @@ -1227,6 +1305,7 @@ include/kross/core/metafunction.h include/kross/core/metatype.h include/kross/core/object.h include/kross/core/script.h +include/kross/core/wrapperinterface.h include/kross/ui/model.h include/kross/ui/plugin.h include/kross/ui/view.h @@ -1294,6 +1373,7 @@ include/ktexteditor/annotationinterface.h include/ktexteditor/attribute.h include/ktexteditor/codecompletioninterface.h include/ktexteditor/codecompletionmodel.h +include/ktexteditor/codecompletionmodelcontrollerinterface.h include/ktexteditor/commandinterface.h include/ktexteditor/configinterface.h include/ktexteditor/configpage.h @@ -1305,6 +1385,7 @@ include/ktexteditor/editor.h include/ktexteditor/editorchooser.h include/ktexteditor/factory.h include/ktexteditor/ktexteditor_export.h +include/ktexteditor/loadsavefiltercheckplugin.h include/ktexteditor/markinterface.h include/ktexteditor/modificationinterface.h include/ktexteditor/plugin.h @@ -1392,11 +1473,73 @@ include/nepomuk/property.h include/nepomuk/resource.h include/nepomuk/resourcemanager.h include/nepomuk/tag.h +include/nepomuk/thing.h include/nepomuk/tools.h include/nepomuk/variant.h include/netwm.h include/netwm_def.h include/passdlg.h +include/plasma/abstractrunner.h +include/plasma/animationdriver.h +include/plasma/animator.h +include/plasma/applet.h +include/plasma/configloader.h +include/plasma/containment.h +include/plasma/context.h +include/plasma/corona.h +include/plasma/datacontainer.h +include/plasma/dataengine.h +include/plasma/dataenginemanager.h +include/plasma/delegate.h +include/plasma/dialog.h +include/plasma/extender.h +include/plasma/extenderitem.h +include/plasma/framesvg.h +include/plasma/glapplet.h +include/plasma/package.h +include/plasma/packagemetadata.h +include/plasma/packagestructure.h +include/plasma/paintutils.h +include/plasma/plasma.h +include/plasma/plasma_export.h +include/plasma/popupapplet.h +include/plasma/querymatch.h +include/plasma/runnercontext.h +include/plasma/runnermanager.h +include/plasma/scripting/appletscript.h +include/plasma/scripting/dataenginescript.h +include/plasma/scripting/runnerscript.h +include/plasma/scripting/scriptengine.h +include/plasma/service.h +include/plasma/servicejob.h +include/plasma/svg.h +include/plasma/theme.h +include/plasma/tooltipcontent.h +include/plasma/tooltipmanager.h +include/plasma/version.h +include/plasma/view.h +include/plasma/wallpaper.h +include/plasma/widgets/busywidget.h +include/plasma/widgets/checkbox.h +include/plasma/widgets/combobox.h +include/plasma/widgets/flashinglabel.h +include/plasma/widgets/frame.h +include/plasma/widgets/groupbox.h +include/plasma/widgets/iconwidget.h +include/plasma/widgets/label.h +include/plasma/widgets/lineedit.h +include/plasma/widgets/meter.h +include/plasma/widgets/pushbutton.h +include/plasma/widgets/radiobutton.h +include/plasma/widgets/scrollbar.h +include/plasma/widgets/signalplotter.h +include/plasma/widgets/slider.h +include/plasma/widgets/svgwidget.h +include/plasma/widgets/tabbar.h +include/plasma/widgets/textedit.h +include/plasma/widgets/toolbutton.h +include/plasma/widgets/treeview.h +include/plasma/widgets/webview.h include/predicateproperties.h include/qtest_kde.h include/skipdlg.h @@ -1429,6 +1572,8 @@ include/sonnet/backgroundchecker.h include/sonnet/configdialog.h include/sonnet/configwidget.h include/sonnet/dialog.h +include/sonnet/dictionarycombobox.h +include/sonnet/globals.h include/sonnet/highlighter.h include/sonnet/speller.h include/threadweaver/DebuggingAids.h @@ -1448,11 +1593,9 @@ lib/kde4/emoticonstheme_adium.so lib/kde4/emoticonstheme_kde.so lib/kde4/emoticonstheme_pidgin.so lib/kde4/emoticonstheme_xmpp.so -lib/libkdeinit4_kwalletd.so lib/kde4/katepart.so lib/kde4/kcertpart.so lib/kde4/kcm_crypto.so -lib/kde4/kded_globalaccel.so lib/kde4/kded_kcookiejar.so lib/kde4/kded_kssld.so lib/kde4/kded_proxyscout.so @@ -1468,12 +1611,15 @@ lib/kde4/kio_metainfo.so lib/kde4/kjavaappletviewer.so lib/kde4/krosskjs.so lib/kde4/krossmoduleforms.so +lib/kde4/krossmodulekdetranslation.so lib/kde4/krossqts.so lib/kde4/kspell_aspell.so lib/kde4/kspell_enchant.so +lib/kde4/kspell_hspell.so lib/kde4/ktexteditor_docwordcompletion.so lib/kde4/ktexteditor_insertfile.so lib/kde4/ktexteditor_kdatatool.so +lib/kde4/ktexteditor_python-encoding.so lib/kde4/ktranscript.so lib/kde4/libexec/filesharelist lib/kde4/libexec/fileshareset @@ -1492,6 +1638,7 @@ lib/kde4/libkfilemodule.so lib/kde4/libkhtmlpart.so lib/kde4/libkmultipart.so lib/kde4/notepadpart.so +lib/kde4/plugins/designer/kde3supportwidgets.so lib/kde4/plugins/designer/kdewidgets.so lib/kde4/plugins/imageformats/kimg_dds.so lib/kde4/plugins/imageformats/kimg_eps.so @@ -1505,17 +1652,17 @@ lib/kde4/plugins/imageformats/kimg_xcf.so lib/kde4/plugins/imageformats/kimg_xview.so lib/kde4/plugins/script/libkrossqtsplugin.so lib/kde4/plugins/script/libkrossqtsplugin.so.5 -lib/kde4/plugins/script/libkrossqtsplugin.so.5.0.0 +lib/kde4/plugins/script/libkrossqtsplugin.so.5.0.1 lib/kde4/spellcheckplugin.so lib/libkde3support.so lib/libkde3support.so.5 -lib/libkde3support.so.5.0.0 +lib/libkde3support.so.5.0.1 lib/libkdecore.so lib/libkdecore.so.7 -lib/libkdecore.so.7.0.0 +lib/libkdecore.so.7.0.1 lib/libkdefakes.so lib/libkdefakes.so.7 -lib/libkdefakes.so.7.0.0 +lib/libkdefakes.so.7.0.1 lib/libkdeinit4_kbuildsycoca4.so lib/libkdeinit4_kconf_update.so lib/libkdeinit4_kded4.so @@ -1523,79 +1670,79 @@ lib/libkdeinit4_kio_http_cache_cleaner.so lib/libkdeinit4_klauncher.so lib/libkdesu.so lib/libkdesu.so.7 -lib/libkdesu.so.7.0.0 +lib/libkdesu.so.7.0.1 lib/libkdeui.so lib/libkdeui.so.7 -lib/libkdeui.so.7.0.0 +lib/libkdeui.so.7.0.1 lib/libkdnssd.so lib/libkdnssd.so.5 -lib/libkdnssd.so.5.0.0 +lib/libkdnssd.so.5.0.1 lib/libkfile.so lib/libkfile.so.5 -lib/libkfile.so.5.0.0 +lib/libkfile.so.5.0.1 lib/libkhtml.so lib/libkhtml.so.7 -lib/libkhtml.so.7.0.0 +lib/libkhtml.so.7.0.1 lib/libkimproxy.so lib/libkimproxy.so.5 -lib/libkimproxy.so.5.0.0 +lib/libkimproxy.so.5.0.1 lib/libkio.so lib/libkio.so.7 -lib/libkio.so.7.0.0 +lib/libkio.so.7.0.1 lib/libkjs.so lib/libkjs.so.5 -lib/libkjs.so.5.0.0 +lib/libkjs.so.5.0.1 lib/libkjsapi.so lib/libkjsapi.so.5 -lib/libkjsapi.so.5.0.0 +lib/libkjsapi.so.5.0.1 lib/libkjsembed.so lib/libkjsembed.so.5 -lib/libkjsembed.so.5.0.0 +lib/libkjsembed.so.5.0.1 lib/libkmediaplayer.so lib/libkmediaplayer.so.5 -lib/libkmediaplayer.so.5.0.0 +lib/libkmediaplayer.so.5.0.1 lib/libknewstuff2.so lib/libknewstuff2.so.5 -lib/libknewstuff2.so.5.0.0 +lib/libknewstuff2.so.5.0.1 lib/libknotifyconfig.so lib/libknotifyconfig.so.5 -lib/libknotifyconfig.so.5.0.0 +lib/libknotifyconfig.so.5.0.1 lib/libkntlm.so lib/libkntlm.so.5 -lib/libkntlm.so.5.0.0 +lib/libkntlm.so.5.0.1 lib/libkparts.so lib/libkparts.so.5 -lib/libkparts.so.5.0.0 +lib/libkparts.so.5.0.1 lib/libkpty.so lib/libkpty.so.5 -lib/libkpty.so.5.0.0 +lib/libkpty.so.5.0.1 lib/libkrosscore.so lib/libkrosscore.so.5 -lib/libkrosscore.so.5.0.0 +lib/libkrosscore.so.5.0.1 lib/libkrossui.so lib/libkrossui.so.5 -lib/libkrossui.so.5.0.0 +lib/libkrossui.so.5.0.1 lib/libktexteditor.so lib/libktexteditor.so.5 -lib/libktexteditor.so.5.0.0 +lib/libktexteditor.so.5.0.1 lib/libkunittest.so lib/libkunittest.so.5 -lib/libkunittest.so.5.0.0 +lib/libkunittest.so.5.0.1 lib/libkutils.so lib/libkutils.so.5 -lib/libkutils.so.5.0.0 -lib/libkwalletbackend.so -lib/libkwalletbackend.so.5 -lib/libkwalletbackend.so.5.0.0 +lib/libkutils.so.5.0.1 lib/libnepomuk.so lib/libnepomuk.so.5 -lib/libnepomuk.so.5.0.0 +lib/libnepomuk.so.5.0.1 +lib/libplasma.so +lib/libplasma.so.3 +lib/libplasma.so.3.0.0 lib/libsolid.so lib/libsolid.so.5 -lib/libsolid.so.5.0.0 +lib/libsolid.so.5.0.1 lib/libthreadweaver.so lib/libthreadweaver.so.5 -lib/libthreadweaver.so.5.0.0 +lib/libthreadweaver.so.5.0.1 share/apps/LICENSES/ARTISTIC share/apps/LICENSES/BSD share/apps/LICENSES/GPL_V2 @@ -1603,6 +1750,7 @@ share/apps/LICENSES/GPL_V3 share/apps/LICENSES/LGPL_V2 share/apps/LICENSES/LGPL_V3 share/apps/LICENSES/QPL_V1.0 +share/apps/cmake/modules/BasicFindPackageVersion.cmake.in share/apps/cmake/modules/CheckPointerMember.cmake share/apps/cmake/modules/CheckPrototypeExists.cmake share/apps/cmake/modules/CheckStructMember.cmake @@ -1637,7 +1785,7 @@ share/apps/cmake/modules/FindGStreamer.cmake share/apps/cmake/modules/FindGettext.cmake share/apps/cmake/modules/FindGphoto2.cmake share/apps/cmake/modules/FindKDE4Internal.cmake -share/apps/cmake/modules/FindKDEWIN.cmake +share/apps/cmake/modules/FindKDE4Workspace.cmake share/apps/cmake/modules/FindKDEWIN32.cmake share/apps/cmake/modules/FindKDEWIN_Packager.cmake share/apps/cmake/modules/FindKNepomuk.cmake @@ -1652,6 +1800,8 @@ share/apps/cmake/modules/FindKopete.cmake share/apps/cmake/modules/FindKorundum.cmake share/apps/cmake/modules/FindLCMS.cmake share/apps/cmake/modules/FindLibArt.cmake +share/apps/cmake/modules/FindLibKonq.cmake +share/apps/cmake/modules/FindLibPython.py share/apps/cmake/modules/FindLibXml2.cmake share/apps/cmake/modules/FindLibXslt.cmake share/apps/cmake/modules/FindLibintl.cmake @@ -1666,17 +1816,21 @@ share/apps/cmake/modules/FindOggVorbis.cmake share/apps/cmake/modules/FindOpenEXR.cmake share/apps/cmake/modules/FindOpenSSL.cmake share/apps/cmake/modules/FindPCRE.cmake -share/apps/cmake/modules/FindPNG.cmake -share/apps/cmake/modules/FindPackageHandleStandardArgs.cmake share/apps/cmake/modules/FindPhonon.cmake -share/apps/cmake/modules/FindPkgConfig.cmake share/apps/cmake/modules/FindPlasma.cmake share/apps/cmake/modules/FindPopplerQt4.cmake share/apps/cmake/modules/FindPostgreSQL.cmake +share/apps/cmake/modules/FindPyKDE4.cmake +share/apps/cmake/modules/FindPyKDE4.py +share/apps/cmake/modules/FindPyQt.py +share/apps/cmake/modules/FindPyQt4.cmake +share/apps/cmake/modules/FindPythonLibrary.cmake share/apps/cmake/modules/FindQCA2.cmake share/apps/cmake/modules/FindQImageBlitz.cmake share/apps/cmake/modules/FindQt4.cmake share/apps/cmake/modules/FindRUBY.cmake +share/apps/cmake/modules/FindSIP.cmake +share/apps/cmake/modules/FindSIP.py share/apps/cmake/modules/FindSamba.cmake share/apps/cmake/modules/FindSane.cmake share/apps/cmake/modules/FindSasl2.cmake @@ -1684,17 +1838,20 @@ share/apps/cmake/modules/FindSharedMimeInfo.cmake share/apps/cmake/modules/FindSoprano.cmake share/apps/cmake/modules/FindSqlite.cmake share/apps/cmake/modules/FindStrigi.cmake -share/apps/cmake/modules/FindTIFF.cmake share/apps/cmake/modules/FindTaglib.cmake share/apps/cmake/modules/FindUSB.cmake share/apps/cmake/modules/FindX11.cmake share/apps/cmake/modules/FindXKB.cmake share/apps/cmake/modules/FindXine.cmake share/apps/cmake/modules/FindXmms.cmake +share/apps/cmake/modules/KDE4CTestNightlySetup.cmake share/apps/cmake/modules/KDE4Defaults.cmake share/apps/cmake/modules/KDE4Macros.cmake +share/apps/cmake/modules/KDELibs4LibraryTargets-%%KDE4_BUILD_TYPE%%.cmake +share/apps/cmake/modules/KDELibs4LibraryTargets.cmake +share/apps/cmake/modules/KDELibs4ToolsTargets-%%KDE4_BUILD_TYPE%%.cmake +share/apps/cmake/modules/KDELibs4ToolsTargets.cmake share/apps/cmake/modules/KDELibsDependencies.cmake -share/apps/cmake/modules/KDELibsDependenciesInternal.cmake share/apps/cmake/modules/MacroAddCompileFlags.cmake share/apps/cmake/modules/MacroAddFileDependencies.cmake share/apps/cmake/modules/MacroAddLinkFlags.cmake @@ -1709,9 +1866,13 @@ share/apps/cmake/modules/MacroOptionalAddSubdirectory.cmake share/apps/cmake/modules/MacroOptionalDependPackage.cmake share/apps/cmake/modules/MacroOptionalFindPackage.cmake share/apps/cmake/modules/MacroPushRequiredVars.cmake +share/apps/cmake/modules/MacroWriteBasicCMakeVersionFile.cmake share/apps/cmake/modules/NepomukMacros.cmake -share/apps/cmake/modules/UsePkgConfig.cmake +share/apps/cmake/modules/PythonCompile.py +share/apps/cmake/modules/PythonMacros.cmake +share/apps/cmake/modules/SIPMacros.cmake share/apps/cmake/modules/Win32Macros.cmake +share/apps/cmake/modules/check_installed_exports_file.cmake share/apps/cmake/modules/cmake-modules-styleguide.txt share/apps/cmake/modules/config-alsa.h.cmake share/apps/cmake/modules/kde4_cmake_uninstall.cmake.in @@ -1767,6 +1928,7 @@ share/apps/katepart/syntax/desktop.xml share/apps/katepart/syntax/diff.xml share/apps/katepart/syntax/djangotemplate.xml share/apps/katepart/syntax/doxygen.xml +share/apps/katepart/syntax/doxygenlua.xml share/apps/katepart/syntax/dtd.xml share/apps/katepart/syntax/e.xml share/apps/katepart/syntax/eiffel.xml @@ -1778,12 +1940,14 @@ share/apps/katepart/syntax/fgl-4gl.xml share/apps/katepart/syntax/fgl-per.xml share/apps/katepart/syntax/fortran.xml share/apps/katepart/syntax/freebasic.xml +share/apps/katepart/syntax/fstab.xml share/apps/katepart/syntax/gap.xml share/apps/katepart/syntax/gdl.xml share/apps/katepart/syntax/gettext.xml share/apps/katepart/syntax/glsl.xml share/apps/katepart/syntax/gnuassembler.xml share/apps/katepart/syntax/haskell.xml +share/apps/katepart/syntax/haxe.xml share/apps/katepart/syntax/html-php.xml share/apps/katepart/syntax/html.xml share/apps/katepart/syntax/idconsole.xml @@ -1813,8 +1977,11 @@ share/apps/katepart/syntax/makefile.xml share/apps/katepart/syntax/mandoc.xml share/apps/katepart/syntax/mason.xml share/apps/katepart/syntax/matlab.xml +share/apps/katepart/syntax/maxima.xml share/apps/katepart/syntax/mediawiki.xml +share/apps/katepart/syntax/mergetagtext.xml share/apps/katepart/syntax/mips.xml +share/apps/katepart/syntax/modelica.xml share/apps/katepart/syntax/modula-2.xml share/apps/katepart/syntax/monobasic.xml share/apps/katepart/syntax/mup.xml @@ -1840,9 +2007,8 @@ share/apps/katepart/syntax/purebasic.xml share/apps/katepart/syntax/python.xml share/apps/katepart/syntax/r.xml share/apps/katepart/syntax/rapidq.xml -share/apps/katepart/syntax/rhtml.xml -share/apps/katepart/syntax/fstab.xml share/apps/katepart/syntax/rexx.xml +share/apps/katepart/syntax/rhtml.xml share/apps/katepart/syntax/rib.xml share/apps/katepart/syntax/roff.xml share/apps/katepart/syntax/rpmspec.xml @@ -1862,6 +2028,7 @@ share/apps/katepart/syntax/sql-postgresql.xml share/apps/katepart/syntax/sql.xml share/apps/katepart/syntax/stata.xml share/apps/katepart/syntax/syntax.template +share/apps/katepart/syntax/systemc.xml share/apps/katepart/syntax/tcl.xml share/apps/katepart/syntax/texinfo.xml share/apps/katepart/syntax/tibasic.xml @@ -2234,7 +2401,6 @@ share/apps/ksgmltools2/customization/fo/user.entities share/apps/ksgmltools2/customization/fr/catalog.xml share/apps/ksgmltools2/customization/fr/entities/fdl-notice.docbook share/apps/ksgmltools2/customization/fr/entities/gpl-notice.docbook -share/apps/ksgmltools2/customization/fr/entities/underLGPL.docbook share/apps/ksgmltools2/customization/fr/entities/help-menu.docbook share/apps/ksgmltools2/customization/fr/entities/install-compile.docbook share/apps/ksgmltools2/customization/fr/entities/install-intro.docbook @@ -2244,11 +2410,31 @@ share/apps/ksgmltools2/customization/fr/entities/underArtisticLicense.docbook share/apps/ksgmltools2/customization/fr/entities/underBSDLicense.docbook share/apps/ksgmltools2/customization/fr/entities/underFDL.docbook share/apps/ksgmltools2/customization/fr/entities/underGPL.docbook +share/apps/ksgmltools2/customization/fr/entities/underLGPL.docbook share/apps/ksgmltools2/customization/fr/entities/underX11License.docbook share/apps/ksgmltools2/customization/fr/entities/update-doc.docbook share/apps/ksgmltools2/customization/fr/lang.entities share/apps/ksgmltools2/customization/fr/strings.entities share/apps/ksgmltools2/customization/fr/user.entities +share/apps/ksgmltools2/customization/gl/catalog.xml +share/apps/ksgmltools2/customization/gl/contributor.entities +share/apps/ksgmltools2/customization/gl/entities/fdl-notice.docbook +share/apps/ksgmltools2/customization/gl/entities/gpl-notice.docbook +share/apps/ksgmltools2/customization/gl/entities/help-menu.docbook +share/apps/ksgmltools2/customization/gl/entities/install-compile.docbook +share/apps/ksgmltools2/customization/gl/entities/install-intro.docbook +share/apps/ksgmltools2/customization/gl/entities/lgpl-notice.docbook +share/apps/ksgmltools2/customization/gl/entities/report-bugs.docbook +share/apps/ksgmltools2/customization/gl/entities/underArtisticLicense.docbook +share/apps/ksgmltools2/customization/gl/entities/underBSDLicense.docbook +share/apps/ksgmltools2/customization/gl/entities/underFDL.docbook +share/apps/ksgmltools2/customization/gl/entities/underGPL.docbook +share/apps/ksgmltools2/customization/gl/entities/underLGPL.docbook +share/apps/ksgmltools2/customization/gl/entities/underX11License.docbook +share/apps/ksgmltools2/customization/gl/entities/update-doc.docbook +share/apps/ksgmltools2/customization/gl/lang.entities +share/apps/ksgmltools2/customization/gl/strings.entities +share/apps/ksgmltools2/customization/gl/user.entities share/apps/ksgmltools2/customization/he/catalog.xml share/apps/ksgmltools2/customization/he/entities/fdl-notice.docbook share/apps/ksgmltools2/customization/he/entities/gpl-notice.docbook @@ -2394,6 +2580,7 @@ share/apps/ksgmltools2/customization/nl/entities/underArtisticLicense.docbook share/apps/ksgmltools2/customization/nl/entities/underBSDLicense.docbook share/apps/ksgmltools2/customization/nl/entities/underFDL.docbook share/apps/ksgmltools2/customization/nl/entities/underGPL.docbook +share/apps/ksgmltools2/customization/nl/entities/underLGPL.docbook share/apps/ksgmltools2/customization/nl/entities/underX11License.docbook share/apps/ksgmltools2/customization/nl/entities/update-doc.docbook share/apps/ksgmltools2/customization/nl/lang.entities @@ -2659,9 +2846,9 @@ share/apps/ksgmltools2/customization/uk/entities/lgpl-notice.docbook share/apps/ksgmltools2/customization/uk/entities/report-bugs.docbook share/apps/ksgmltools2/customization/uk/entities/underArtisticLicense.docbook share/apps/ksgmltools2/customization/uk/entities/underBSDLicense.docbook -share/apps/ksgmltools2/customization/uk/entities/underLGPL.docbook share/apps/ksgmltools2/customization/uk/entities/underFDL.docbook share/apps/ksgmltools2/customization/uk/entities/underGPL.docbook +share/apps/ksgmltools2/customization/uk/entities/underLGPL.docbook share/apps/ksgmltools2/customization/uk/entities/underX11License.docbook share/apps/ksgmltools2/customization/uk/entities/update-doc.docbook share/apps/ksgmltools2/customization/uk/lang.entities @@ -2871,6 +3058,7 @@ share/apps/ksgmltools2/docbook/xsl/common/eu.xml share/apps/ksgmltools2/docbook/xsl/common/fi.xml share/apps/ksgmltools2/docbook/xsl/common/fr.xml share/apps/ksgmltools2/docbook/xsl/common/gentext.xsl +share/apps/ksgmltools2/docbook/xsl/common/gl.xml share/apps/ksgmltools2/docbook/xsl/common/he.xml share/apps/ksgmltools2/docbook/xsl/common/hr.xml share/apps/ksgmltools2/docbook/xsl/common/hu.xml @@ -3440,28 +3628,6 @@ share/apps/kssl/ca-bundle.crt share/apps/ktexteditor_docwordcompletion/docwordcompletionui.rc share/apps/ktexteditor_insertfile/ktexteditor_insertfileui.rc share/apps/ktexteditor_kdatatool/ktexteditor_kdatatoolui.rc -share/apps/nepomuk/ontologies/dces.desktop -share/apps/nepomuk/ontologies/dces.rdf -share/apps/nepomuk/ontologies/dcq.desktop -share/apps/nepomuk/ontologies/dcq.rdf -share/apps/nepomuk/ontologies/dctype.desktop -share/apps/nepomuk/ontologies/dctype.rdf -share/apps/nepomuk/ontologies/nao.desktop -share/apps/nepomuk/ontologies/nao.trig -share/apps/nepomuk/ontologies/nfo.desktop -share/apps/nepomuk/ontologies/nfo.trig -share/apps/nepomuk/ontologies/nie.desktop -share/apps/nepomuk/ontologies/nie.trig -share/apps/nepomuk/ontologies/nrl.desktop -share/apps/nepomuk/ontologies/nrl.trig -share/apps/nepomuk/ontologies/rdf.desktop -share/apps/nepomuk/ontologies/rdf.rdfs -share/apps/nepomuk/ontologies/rdfs.desktop -share/apps/nepomuk/ontologies/rdfs.rdfs -share/apps/nepomuk/ontologies/xesam.desktop -share/apps/nepomuk/ontologies/xesam.rdfs -share/apps/nepomuk/ontologies/xss.desktop -share/apps/nepomuk/ontologies/xss.rdfs share/apps/nepomuk/pics/rating.png share/apps/proxyscout/proxyscout.notifyrc share/config/accept-languages.codes @@ -3470,10 +3636,14 @@ share/config/colors/Oxygen.colors share/config/colors/Rainbow.colors share/config/colors/Royal.colors share/config/colors/Web.colors +share/config/katemoderc share/config/kdebug.areas share/config/kdebugrc share/config/ksslcalist +share/config/plasmoids.knsrc share/config/ui/ui_standards.rc +share/dbus-1/interfaces/org.freedesktop.PowerManagement.Inhibit.xml +share/dbus-1/interfaces/org.freedesktop.PowerManagement.xml share/dbus-1/interfaces/org.kde.JobView.xml share/dbus-1/interfaces/org.kde.JobViewServer.xml share/dbus-1/interfaces/org.kde.KCookieServer.xml @@ -3484,7 +3654,6 @@ share/dbus-1/interfaces/org.kde.KLauncher.xml share/dbus-1/interfaces/org.kde.KMediaPlayer.xml share/dbus-1/interfaces/org.kde.KSpeech.xml share/dbus-1/interfaces/org.kde.KWallet.xml -share/dbus-1/interfaces/org.kde.KdedGlobalAccel.xml share/dbus-1/interfaces/org.kde.Solid.Networking.Client.xml share/dbus-1/interfaces/org.kde.kded.xml share/dbus-1/interfaces/org.kde.kio.FileUndoManager.xml @@ -3532,6 +3701,33 @@ share/doc/HTML/en/common/top-right.png share/doc/HTML/en/common/top.jpg share/doc/HTML/en/common/x11-license.html share/doc/HTML/en/common/xml.dcl +share/doc/HTML/en/kioslave/data/common +share/doc/HTML/en/kioslave/data/index.cache.bz2 +share/doc/HTML/en/kioslave/data/index.docbook +share/doc/HTML/en/kioslave/file/common +share/doc/HTML/en/kioslave/file/index.cache.bz2 +share/doc/HTML/en/kioslave/file/index.docbook +share/doc/HTML/en/kioslave/ftp/common +share/doc/HTML/en/kioslave/ftp/index.cache.bz2 +share/doc/HTML/en/kioslave/ftp/index.docbook +share/doc/HTML/en/kioslave/help/common +share/doc/HTML/en/kioslave/help/index.cache.bz2 +share/doc/HTML/en/kioslave/help/index.docbook +share/doc/HTML/en/kioslave/http/common +share/doc/HTML/en/kioslave/http/index.cache.bz2 +share/doc/HTML/en/kioslave/http/index.docbook +share/doc/HTML/en/kioslave/mailto/common +share/doc/HTML/en/kioslave/mailto/index.cache.bz2 +share/doc/HTML/en/kioslave/mailto/index.docbook +share/doc/HTML/en/kioslave/rlogin/common +share/doc/HTML/en/kioslave/rlogin/index.cache.bz2 +share/doc/HTML/en/kioslave/rlogin/index.docbook +share/doc/HTML/en/kioslave/telnet/common +share/doc/HTML/en/kioslave/telnet/index.cache.bz2 +share/doc/HTML/en/kioslave/telnet/index.docbook +share/doc/HTML/en/kioslave/webdav/common +share/doc/HTML/en/kioslave/webdav/index.cache.bz2 +share/doc/HTML/en/kioslave/webdav/index.docbook share/doc/HTML/en/sonnet/common share/doc/HTML/en/sonnet/index.cache.bz2 share/doc/HTML/en/sonnet/index.docbook @@ -3547,7 +3743,6 @@ share/icons/hicolor/48x48/actions/presence_away.png share/icons/hicolor/48x48/actions/presence_offline.png share/icons/hicolor/48x48/actions/presence_online.png share/kde4/services/crypto.desktop -share/kde4/services/kwalletd.desktop share/kde4/services/data.protocol share/kde4/services/emoticonstheme_adium.desktop share/kde4/services/emoticonstheme_kde.desktop @@ -3563,7 +3758,6 @@ share/kde4/services/https.protocol share/kde4/services/katepart.desktop share/kde4/services/kcertpart.desktop share/kde4/services/kded/kcookiejar.desktop -share/kde4/services/kded/kdedglobalaccel.desktop share/kde4/services/kded/kssld.desktop share/kde4/services/kded/proxyscout.desktop share/kde4/services/khtml.desktop @@ -3574,14 +3768,17 @@ share/kde4/services/kmailservice.protocol share/kde4/services/kmultipart.desktop share/kde4/services/kspell_aspell.desktop share/kde4/services/kspell_enchant.desktop +share/kde4/services/kspell_hspell.desktop share/kde4/services/ktexteditor_docwordcompletion.desktop share/kde4/services/ktexteditor_docwordcompletion_config.desktop share/kde4/services/ktexteditor_insertfile.desktop share/kde4/services/ktexteditor_kdatatool.desktop +share/kde4/services/ktexteditor_python-encoding.desktop share/kde4/services/metainfo.protocol share/kde4/services/mms.protocol share/kde4/services/mmst.protocol share/kde4/services/mmsu.protocol +share/kde4/services/plasma-applet-extenderapplet.desktop share/kde4/services/pnm.protocol share/kde4/services/qimageioplugins/bmp.desktop share/kde4/services/qimageioplugins/dds.desktop @@ -3638,91 +3835,26 @@ share/kde4/servicetypes/krop.desktop share/kde4/servicetypes/krwp.desktop share/kde4/servicetypes/kscan.desktop share/kde4/servicetypes/ktexteditor.desktop +share/kde4/servicetypes/ktexteditor_loadsavefiltercheckplugin.desktop share/kde4/servicetypes/ktexteditorplugin.desktop share/kde4/servicetypes/kurifilterplugin.desktop +share/kde4/servicetypes/plasma-animator.desktop +share/kde4/servicetypes/plasma-applet.desktop +share/kde4/servicetypes/plasma-containment.desktop +share/kde4/servicetypes/plasma-dataengine.desktop +share/kde4/servicetypes/plasma-packagestructure.desktop +share/kde4/servicetypes/plasma-runner.desktop +share/kde4/servicetypes/plasma-scriptengine.desktop +share/kde4/servicetypes/plasma-wallpaper.desktop share/kde4/servicetypes/qimageio_plugin.desktop share/kde4/servicetypes/renamedialogplugin.desktop share/kde4/servicetypes/sonnetspeller.desktop share/locale/all_languages share/mime/all/all.xml share/mime/all/allfiles.xml -share/mime/application/epub+zip.xml -share/mime/application/metalink+xml.xml -share/mime/application/msword.xml -share/mime/application/pkcs10.xml -share/mime/application/prs.plucker.xml -share/mime/application/relaxng.xml -share/mime/application/vnd.kde.kphotoalbum-import.xml -share/mime/application/vnd.ms-tnef.xml -share/mime/application/vnd.ms-xpsdocument.xml -share/mime/application/x-cabri.xml -share/mime/application/x-cda.xml -share/mime/application/x-drgeo.xml -share/mime/application/x-fictionbook.xml -share/mime/application/x-font-snf.xml -share/mime/application/x-icq.xml -share/mime/application/x-java-applet.xml -share/mime/application/x-kcachegrind.xml -share/mime/application/x-kcsrc.xml -share/mime/application/x-kexi-connectiondata.xml -share/mime/application/x-kexiproject-shortcut.xml -share/mime/application/x-kexiproject-sqlite.xml -share/mime/application/x-kexiproject-sqlite2.xml -share/mime/application/x-kexiproject-sqlite3.xml -share/mime/application/x-kgeo.xml -share/mime/application/x-kgetlist.xml -share/mime/application/x-khtml-adaptor.xml -share/mime/application/x-kig.xml -share/mime/application/x-kmplot.xml -share/mime/application/x-kns.xml -share/mime/application/x-kolf.xml -share/mime/application/x-kommander.xml -share/mime/application/x-konsole.xml -share/mime/application/x-kopete-emoticons.xml -share/mime/application/x-kourse.xml -share/mime/application/x-kseg.xml -share/mime/application/x-ksysguard.xml -share/mime/application/x-ktheme.xml -share/mime/application/x-kudesigner.xml -share/mime/application/x-kvtml.xml -share/mime/application/x-kwallet.xml -share/mime/application/x-kwordquiz.xml -share/mime/application/x-mimearchive.xml -share/mime/application/x-nzb.xml -share/mime/application/x-openraster.xml -share/mime/application/x-pak.xml -share/mime/application/x-plasma.xml -share/mime/application/x-quanta.xml -share/mime/application/x-smb-server.xml -share/mime/application/x-smb-workgroup.xml -share/mime/application/x-superkaramba.xml -share/mime/application/x-tuberling.xml -share/mime/application/x-uml.xml -share/mime/application/x-vnd.kde.kexi.xml -share/mime/application/x-vnd.kde.kplato.work.xml -share/mime/application/x-vnd.kde.kplato.xml -share/mime/application/x-vnd.kde.kugar.mixed.xml -share/mime/application/x-webarchive.xml -share/mime/application/x-win-lnk.xml -share/mime/application/x-xcursor.xml -share/mime/application/xsd.xml -share/mime/audio/aac.xml -share/mime/audio/x-pn-realaudio-plugin.xml share/mime/fonts/package.xml -share/mime/image/x-dds.xml -share/mime/image/x-exr.xml -share/mime/image/x-hdr.xml -share/mime/image/x-kde-raw.xml share/mime/interface/x-winamp-skin.xml share/mime/packages/kde.xml -share/mime/text/mrml.xml -share/mime/text/plain.xml -share/mime/text/vnd.abc.xml -share/mime/text/x-cmake.xml -share/mime/text/x-hex.xml -share/mime/text/x-katefilelist.xml -share/mime/text/x-objchdr.xml -share/mime/text/xmcd.xml share/mime/uri/mms.xml share/mime/uri/mmst.xml share/mime/uri/mmsu.xml @@ -3730,36 +3862,25 @@ share/mime/uri/pnm.xml share/mime/uri/rtspt.xml share/mime/uri/rtspu.xml @dirrmtry share/mime/uri -@dirrmtry share/mime/text -@dirrmtry share/mime/packages @dirrmtry share/mime/interface -@dirrmtry share/mime/image @dirrmtry share/mime/fonts -@dirrmtry share/mime/audio -@dirrmtry share/mime/application @dirrmtry share/mime/all -@dirrmtry share/mime -@dirrmtry share/kde4/servicetypes @dirrm share/kde4/services/qimageioplugins -@dirrmtry share/kde4/services/kded -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/icons/hicolor/48x48/actions -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/actions -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/16x16/actions -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor -@dirrmtry share/doc/HTML/en/sonnet -@dirrmtry share/doc/HTML/en/common -@dirrmtry share/config/ui -@dirrmtry share/config/colors -@dirrmtry share/config +@dirrm share/doc/HTML/en/sonnet +@dirrm share/doc/HTML/en/kioslave/webdav +@dirrm share/doc/HTML/en/kioslave/telnet +@dirrm share/doc/HTML/en/kioslave/rlogin +@dirrm share/doc/HTML/en/kioslave/mailto +@dirrm share/doc/HTML/en/kioslave/http +@dirrm share/doc/HTML/en/kioslave/help +@dirrm share/doc/HTML/en/kioslave/ftp +@dirrm share/doc/HTML/en/kioslave/file +@dirrm share/doc/HTML/en/kioslave/data +@dirrm share/doc/HTML/en/common +@dirrm share/config/ui +@dirrm share/config/colors @dirrm share/apps/proxyscout @dirrm share/apps/nepomuk/pics -@dirrm share/apps/nepomuk/ontologies -@dirrm share/apps/nepomuk @dirrm share/apps/ktexteditor_kdatatool @dirrm share/apps/ktexteditor_insertfile @dirrm share/apps/ktexteditor_docwordcompletion @@ -3835,6 +3956,8 @@ share/mime/uri/rtspu.xml @dirrm share/apps/ksgmltools2/customization/hu @dirrm share/apps/ksgmltools2/customization/he/entities @dirrm share/apps/ksgmltools2/customization/he +@dirrm share/apps/ksgmltools2/customization/gl/entities +@dirrm share/apps/ksgmltools2/customization/gl @dirrm share/apps/ksgmltools2/customization/fr/entities @dirrm share/apps/ksgmltools2/customization/fr @dirrm share/apps/ksgmltools2/customization/fo/entities @@ -3873,31 +3996,23 @@ share/mime/uri/rtspu.xml @dirrm share/apps/knewstuff @dirrm share/apps/kjava @dirrm share/apps/khtml/css -@dirrm share/apps/khtml @dirrm share/apps/kdewidgets/pics @dirrm share/apps/kdewidgets @dirrm share/apps/kdeui/pics @dirrm share/apps/kdeui/about @dirrm share/apps/kdeui -@dirrmtry share/apps/kconf_update -@dirrmtry share/apps/kcm_componentchooser -@dirrm share/apps/kcharselect @dirrm share/apps/kcertpart -@dirrm share/apps/katepart/syntax @dirrm share/apps/katepart/script -@dirrm share/apps/katepart -@dirrmtry share/apps/cmake/modules -@dirrmtry share/apps/cmake @dirrm share/apps/LICENSES -@dirrmtry lib/kde4/plugins/script -@dirrmtry lib/kde4/plugins/imageformats -@dirrmtry lib/kde4/plugins/designer -@dirrmtry lib/kde4/plugins -@dirrmtry lib/kde4/libexec +@dirrm lib/kde4/plugins/script +@dirrm lib/kde4/plugins/imageformats @dirrm include/threadweaver @dirrm include/sonnet -@dirrm include/solid -@dirrm include/nepomuk +@dirrmtry include/solid +@dirrm include/plasma/widgets +@dirrm include/plasma/scripting +@dirrmtry include/plasma +@dirrmtry include/nepomuk @dirrm include/kunittest @dirrm include/ktexteditor @dirrm include/ksettings @@ -3918,6 +4033,7 @@ share/mime/uri/rtspu.xml @dirrm include/KDE/khtml @dirrm include/KDE/ThreadWeaver @dirrm include/KDE/Solid +@dirrmtry include/KDE/Plasma @dirrm include/KDE/Nepomuk/Types @dirrm include/KDE/Nepomuk @dirrm include/KDE/KWallet @@ -3934,7 +4050,7 @@ share/mime/uri/rtspu.xml @dirrm include/KDE/DOM @dirrm include/KDE/DNSSD @dirrm include/KDE/ConversionCheck -@dirrmtry etc/xdg/menus -@dirrmtry etc/xdg +@dirrm etc/xdg/menus +@dirrm etc/xdg @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 |