diff options
169 files changed, 0 insertions, 33385 deletions
diff --git a/audio/kdemultimedia2/Makefile b/audio/kdemultimedia2/Makefile deleted file mode 100644 index a4751fc..0000000 --- a/audio/kdemultimedia2/Makefile +++ /dev/null @@ -1,72 +0,0 @@ -# New ports collection makefile for: KDE2 Multimedia -# Date created: Saturday 2 September 2000 -# Whom: Will Andrews <will@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= kdemultimedia -PORTVERSION= 2.2.2 -PORTREVISION= 3 -CATEGORIES= audio kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= Attic/${PORTVERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 -LIB_DEPENDS= vorbis.2:${PORTSDIR}/audio/libvorbis -RUN_DEPENDS= xanim:${PORTSDIR}/graphics/xanim - -USE_KDELIBS_VER=2 -USE_BZIP2= yes -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--with-qt-includes=${X11BASE}/include/qt2 \ - --with-qt-libraries=${X11BASE}/lib - -USE_GMAKE= yes -MAKE_ENV= ${CONFIGURE_ENV} - -.include <bsd.port.pre.mk> - -_NO_KDE_FINAL= yes -.if ${OSVERSION} >= 500029 -_NO_KDE_OBJPRELINK=yes -.endif -.include "${.CURDIR}/../../x11/kde2/Makefile.kde" - -pre-configure: - ${PERL} -pi -e "s@all_includes=\"@all_includes=\"-I/usr/include @g" \ - ${WRKSRC}/acinclude.m4 ${WRKSRC}/aclocal.m4 - ${PERL} -pi -e \ - 's,kscd_compile=no,kscd_compile=yes,g; \ - s,kde_artsplug_compiles = xno,kde_artsplug_compiles = x,g' \ - ${WRKSRC}/kscd/configure.in.in - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - cd ${WRKSRC} && env PATH=${WRKSRC}/auto-bin:$$PATH \ - ${GMAKE} -f Makefile.cvs - -post-install: - @${ECHO_MSG} - @${ECHO_MSG} "In order to run the kscd program properly, please run as root:" - @${ECHO_MSG} - @${ECHO_MSG} " # ${LN} -sf <cdrom_device> /dev/cdrom" - @${ECHO_MSG} " # ${CHMOD} 666 <cdrom_device>" - @${ECHO_MSG} - @${ECHO_MSG} "to link and give permission to access the CD-ROM device." - @${ECHO_MSG} "For example, if you have an IDE/ATAPI CD-ROM device:" - @${ECHO_MSG} - @${ECHO_MSG} " # ${LN} -sf /dev/racd0c /dev/cdrom" - @${ECHO_MSG} " # ${CHMOD} 666 /dev/racd0c" - @${ECHO_MSG} - -.include <bsd.port.post.mk> diff --git a/audio/kdemultimedia2/distinfo b/audio/kdemultimedia2/distinfo deleted file mode 100644 index b2e1bbc..0000000 --- a/audio/kdemultimedia2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/kdemultimedia-2.2.2.tar.bz2) = 76981ca284663093cd0bc37500e10441 diff --git a/audio/kdemultimedia2/files/patch-cdrom.c b/audio/kdemultimedia2/files/patch-cdrom.c deleted file mode 100644 index f833b83..0000000 --- a/audio/kdemultimedia2/files/patch-cdrom.c +++ /dev/null @@ -1,163 +0,0 @@ ---- kscd/libwm/cdrom.c Mon Jun 18 07:01:07 2001 -+++ kscd/libwm/cdrom.c.new Thu Nov 29 21:37:42 2001 -@@ -182,6 +182,13 @@ - struct wm_playlist *l; - int i; - int pos; -+ -+ if(drive.get_trackcount == NULL) -+ { -+ perror("trackcount: function pointer NULL"); -+ return (NULL); -+ } -+ - if ((drive.get_trackcount)(&drive, &thiscd.ntracks) < 0) - { - perror("trackcount"); -@@ -217,6 +224,12 @@ - - for (i = 0; i < thiscd.ntracks; i++) - { -+ if(drive.get_trackinfo == NULL) -+ { -+ perror("CD track info read: function pointer null"); -+ return (NULL); -+ } -+ - if ((drive.get_trackinfo)(&drive, i + 1, &thiscd.trk[i].data, - &thiscd.trk[i].start) < 0) - { -@@ -235,6 +248,12 @@ - thiscd.trk[i].section = 0; - } - -+ if(drive.get_cdlen == NULL) -+ { -+ perror("CD length read: function pointer null"); -+ return (NULL); -+ } -+ - if ((drive.get_cdlen)(&drive, &thiscd.trk[i].start) < 0) - { - perror("CD length read"); -@@ -305,6 +324,12 @@ - if( (cur_cdmode == WM_CDM_STOPPED) || (cur_cdmode == WM_CDM_PLAYING) ) - oldmode = cur_cdmode; - -+ if(drive.get_drive_status == NULL) -+ { -+ perror("CD get drive status: function pointer NULL"); -+ return (-1); -+ } -+ - if( (drive.get_drive_status)(&drive, oldmode, &mode, &cur_frame, - &trackno, &cur_index) < 0) - { -@@ -474,7 +499,8 @@ - right = right < 0 ? 0 : right > 100 ? 100 : right; - /* printf("Left = %d, Right = %d\n", left, right); - */ -- (void) (drive.set_volume)(&drive, left, right); -+ if(drive.set_volume != NULL) -+ (void) (drive.set_volume)(&drive, left, right); - } /* cd_volume() */ - - #else -@@ -513,7 +539,8 @@ - if (right > 100) - right = 100; - -- (void) (drive.set_volume)(&drive, left, right); -+ if(drive.set_volume != NULL) -+ (void) (drive.set_volume)(&drive, left, right); - } /* cd_volume() */ - - #endif /* CLIF_VOL */ -@@ -536,18 +563,20 @@ - switch (cur_cdmode) { - case WM_CDM_PLAYING: /* playing */ - cur_cdmode = WM_CDM_PAUSED; -- (drive.pause)(&drive); -- paused_pos = cur_pos_rel; -+ if(drive.pause != NULL) -+ (drive.pause)(&drive); -+ -+ paused_pos = cur_pos_rel; - break; - - case WM_CDM_PAUSED: /* paused */ - cur_cdmode = WM_CDM_PLAYING; - /* (drive.resume)(&drive); */ -- if ((drive.resume)(&drive) > 0 ) -- { -- wm_cd_play(cur_track, paused_pos, -- playlist[cur_listno-1].end); -- } -+ if(drive.resume != NULL) -+ if ((drive.resume)(&drive) > 0 ) -+ wm_cd_play(cur_track, paused_pos, playlist[cur_listno-1].end); -+ break; -+ - default: /* */ - break; - } -@@ -568,7 +597,10 @@ - { - cur_lasttrack = cur_firsttrack = -1; - cur_cdmode = WM_CDM_STOPPED; -- (drive.stop)(&drive); -+ -+ if(drive.stop != NULL) -+ (drive.stop)(&drive); -+ - cur_track = 1; - } - } /* wm_cd_stop() */ -@@ -595,7 +627,8 @@ - if (start >= end) - start = end-1; - -- (drive.play)(&drive, start, end, realstart); -+ if(drive.play != NULL) -+ (drive.play)(&drive, start, end, realstart); - } - - /* -@@ -681,6 +714,12 @@ - { - int status; - -+ if(drive.eject == NULL) -+ { -+ perror("Could not eject CD: function pointer NULL"); -+ return (1); -+ } -+ - status = (drive.eject)(&drive); - if (status < 0) - { -@@ -705,6 +744,12 @@ - - int wm_cd_closetray(void) - { -+ if(drive.closetray == NULL) -+ { -+ perror("Could not close drive tray: function pointer NULL"); -+ return (1); -+ } -+ - return((drive.closetray)(&drive) ? 0 : wm_cd_status()==2 ? 1 : 0); - } /* wm_cd_closetray() */ - -@@ -785,8 +830,9 @@ - { - int left, right; - -- if ((drive.get_volume)(&drive, &left, &right) < 0 || left == -1) -- return (max); -+ if(drive.get_volume != NULL) -+ if ((drive.get_volume)(&drive, &left, &right) < 0 || left == -1) -+ return (max); - - left = (left * max + 99) / 100; - right = (right * max + 99) / 100; diff --git a/audio/kdemultimedia2/files/patch-kmidi::config.h b/audio/kdemultimedia2/files/patch-kmidi::config.h deleted file mode 100644 index c0b516c..0000000 --- a/audio/kdemultimedia2/files/patch-kmidi::config.h +++ /dev/null @@ -1,19 +0,0 @@ -Apply a patch next. But this is not good solution, I think. I ---- kmidi/config.h.orig Thu Jun 7 03:55:40 2001 -+++ kmidi/config.h Mon Apr 1 20:53:28 2002 -@@ -263,9 +263,12 @@ - #if __FreeBSD_version <= 500000 - #define XCHG_SHORT(x) __byte_swap_word(x) - #define XCHG_LONG(x) __byte_swap_long(x) -- #else -+ #elif __FreeBSD_version <= 500031 - #define XCHG_SHORT(x) __uint8_swap_uint16(x) - #define XCHG_LONG(x) __uint8_swap_uint32(x) -+ #else -+ #define XCHG_SHORT(x) __bswap16(x) -+ #define XCHG_LONG(x) __bswap32(x) - #endif - #else - #define XCHG_SHORT(x) ((((x)&0xFF)<<8) | (((x)>>8)&0xFF)) - - diff --git a/audio/kdemultimedia2/files/patch-kscd.cpp b/audio/kdemultimedia2/files/patch-kscd.cpp deleted file mode 100644 index 905e3b3..0000000 --- a/audio/kdemultimedia2/files/patch-kscd.cpp +++ /dev/null @@ -1,19 +0,0 @@ ---- kscd/kscd.cpp Sun Dec 2 15:08:44 2001 -+++ kscd/kscd.cpp.new Sun Dec 2 15:10:04 2001 -@@ -1313,7 +1313,6 @@ - /* - * cdMode - * -- * - 'No disc' handling is missing - * - Data discs not recognized as data discs. - * - */ -@@ -1329,7 +1328,7 @@ - if( sss == 2 ) - have_new_cd = true; - -- if(sss < 0) -+ if(sss < 0 || sss == WM_CDS_NO_DISC) - { - if(cddrive_is_ok && (sss != WM_ERR_SCSI_INQUIRY_FAILED)) - { diff --git a/audio/kdemultimedia2/files/patch-plat_freebsd.c b/audio/kdemultimedia2/files/patch-plat_freebsd.c deleted file mode 100644 index dd6c062..0000000 --- a/audio/kdemultimedia2/files/patch-plat_freebsd.c +++ /dev/null @@ -1,11 +0,0 @@ ---- kscd/libwm/plat_freebsd.c Tue Apr 10 13:34:52 2001 -+++ kscd/libwm/plat_freebsd.c.new Thu Nov 29 22:20:56 2001 -@@ -159,6 +159,8 @@ - wm_lib_message(WM_MSG_LEVEL_DEBUG|WM_MSG_CLASS, "calling wmcd_open()\n"); - status = wmcd_open( d ); /* open it as usual */ - wm_susleep( 1000 ); -+ if(status == -EACCES || status == 1) -+ return status; - } while ( status != 0 ); - return status; - } /* wmcd_reopen() */ diff --git a/audio/kdemultimedia2/files/patch-wm_helpers.c b/audio/kdemultimedia2/files/patch-wm_helpers.c deleted file mode 100644 index 89c62a8..0000000 --- a/audio/kdemultimedia2/files/patch-wm_helpers.c +++ /dev/null @@ -1,10 +0,0 @@ ---- kscd/libwm/wm_helpers.c Mon Dec 10 20:02:44 2001 -+++ kscd/libwm/wm_helpers.c.new Mon Dec 10 20:02:51 2001 -@@ -30,7 +30,6 @@ - - #include <stdio.h> - #include <string.h> --#include <malloc.h> - #include <errno.h> - #include <stdarg.h> - #include <sys/time.h> diff --git a/audio/kdemultimedia2/pkg-comment b/audio/kdemultimedia2/pkg-comment deleted file mode 100644 index 186230f..0000000 --- a/audio/kdemultimedia2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Utilities for the KDE integrated X11 desktop diff --git a/audio/kdemultimedia2/pkg-descr b/audio/kdemultimedia2/pkg-descr deleted file mode 100644 index 90ae457..0000000 --- a/audio/kdemultimedia2/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -KDE provides an integrated X11 based environment, much like CDE. diff --git a/audio/kdemultimedia2/pkg-plist b/audio/kdemultimedia2/pkg-plist deleted file mode 100644 index 05c19b9..0000000 --- a/audio/kdemultimedia2/pkg-plist +++ /dev/null @@ -1,833 +0,0 @@ -bin/aktion -bin/artsbuilder -bin/artscontrol -bin/kmid -bin/kmidi -bin/kmix -bin/kmixctrl -bin/kscd -bin/midisend -bin/noatun -bin/noatun_kjofol_fixskin.sh -bin/sf2cfg -bin/timidity -bin/workman2cddb.pl -include/arts/artsbuilder.h -include/arts/artsbuilder.idl -include/arts/artsgui.h -include/arts/artsgui.idl -include/arts/artsmidi.h -include/arts/artsmidi.idl -include/arts/artsmodules.h -include/arts/artsmodules.idl -include/arts/kartswidget.h -include/cmodule.h -include/effectview.h -include/equalizerview.h -include/mimetypetree.h -include/noatun/controls.h -include/noatun/conversion.h -include/noatun/downloader.h -include/noatun/effects.h -include/noatun/engine.h -include/noatun/equalizer.h -include/noatun/noatunapp.h -include/noatun/noatunarts.h -include/noatun/noatunplaylist.h -include/noatun/noatunpref.h -include/noatun/noatunstdaction.h -include/noatun/player.h -include/noatun/plugin.h -include/noatun/pluginloader.h -include/playlistsaver.h -include/plugin_deps.h -lib/artseffects.mcopclass -lib/artseffects.mcoptype -lib/kmixctrl.la -lib/kmixctrl.so -lib/libaktion.la -lib/libaktion.so -lib/libaktion.so.1 -lib/libartsbuilder.la -lib/libartsbuilder.so -lib/libartsbuilder.so.0 -lib/libartseffects.la -lib/libartseffects.so -lib/libartsgui.la -lib/libartsgui.so -lib/libartsgui.so.0 -lib/libartsgui_idl.la -lib/libartsgui_idl.so -lib/libartsgui_idl.so.0 -lib/libartsgui_kde.la -lib/libartsgui_kde.so -lib/libartsgui_kde.so.0 -lib/libartsmidi.la -lib/libartsmidi.so -lib/libartsmidi.so.0 -lib/libartsmidi_idl.la -lib/libartsmidi_idl.so -lib/libartsmidi_idl.so.0 -lib/libartsmodules.la -lib/libartsmodules.so -lib/libartsmodules.so.0 -lib/libkcm_kmix.la -lib/libkcm_kmix.so -lib/libkjofolui.la -lib/libkjofolui.so -lib/libkmidpart.la -lib/libkmidpart.so -lib/libkmidpart.so.1 -lib/libkmixapplet.la -lib/libkmixapplet.so -lib/libkmixapplet.so.1 -lib/libliszt.la -lib/libliszt.so -lib/libmpg123.la -lib/libmpg123.so -lib/libmpg123arts.la -lib/libmpg123arts.so -lib/libnoatun.la -lib/libnoatun.so -lib/libnoatun.so.0 -lib/libnoatunarts.la -lib/libnoatunarts.so -lib/libnoatuncontrols.la -lib/libnoatuncontrols.so -lib/libnoatuncontrols.so.0 -lib/libnoatundcopiface.la -lib/libnoatundcopiface.so -lib/libnoatunexcellent.la -lib/libnoatunexcellent.so -lib/libnoatunhtmlexport.la -lib/libnoatunhtmlexport.so -lib/libnoatunid3tag.la -lib/libnoatunid3tag.so -lib/libnoatuninfrared.la -lib/libnoatuninfrared.so -lib/libnoatunkaiman.la -lib/libnoatunkaiman.so -lib/libnoatunkeyz.la -lib/libnoatunkeyz.so -lib/libnoatunmain.la -lib/libnoatunmain.so -lib/libnoatunmarquis.la -lib/libnoatunmarquis.so -lib/libnoatunmonoscope.la -lib/libnoatunmonoscope.so -lib/libnoatunnet.la -lib/libnoatunnet.so -lib/libnoatunoggtag.la -lib/libnoatunoggtag.so -lib/libnoatunsystray.la -lib/libnoatunsystray.so -lib/libnoatuntron.la -lib/libnoatuntron.so -lib/libnoatunui.la -lib/libnoatunui.so -lib/libnoatunvoiceprint.la -lib/libnoatunvoiceprint.so -lib/liboggarts.la -lib/liboggarts.so -lib/libsplitplaylist.la -lib/libsplitplaylist.so -lib/libworkman.la -lib/libworkman.so -lib/libworkman.so.5 -lib/mcop/Arts/ArtsBuilderLoader.mcopclass -lib/mcop/Arts/Button.mcopclass -lib/mcop/Arts/FreeverbGuiFactory.mcopclass -lib/mcop/Arts/GenericGuiFactory.mcopclass -lib/mcop/Arts/HBox.mcopclass -lib/mcop/Arts/LineEdit.mcopclass -lib/mcop/Arts/LocalFactory.mcopclass -lib/mcop/Arts/MidiManager.mcopclass -lib/mcop/Arts/Poti.mcopclass -lib/mcop/Arts/SpinBox.mcopclass -lib/mcop/Arts/StructureBuilder.mcopclass -lib/mcop/Arts/StructureDesc.mcopclass -lib/mcop/Arts/Synth_ATAN_SATURATE.mcopclass -lib/mcop/Arts/Synth_AUTOPANNER.mcopclass -lib/mcop/Arts/Synth_BRICKWALL_LIMITER.mcopclass -lib/mcop/Arts/Synth_CAPTURE_WAV.mcopclass -lib/mcop/Arts/Synth_CDELAY.mcopclass -lib/mcop/Arts/Synth_DATA.mcopclass -lib/mcop/Arts/Synth_DEBUG.mcopclass -lib/mcop/Arts/Synth_DELAY.mcopclass -lib/mcop/Arts/Synth_ENVELOPE_ADSR.mcopclass -lib/mcop/Arts/Synth_FM_SOURCE.mcopclass -lib/mcop/Arts/Synth_FREEVERB.mcopclass -lib/mcop/Arts/Synth_FX_CFLANGER.mcopclass -lib/mcop/Arts/Synth_MIDI_DEBUG.mcopclass -lib/mcop/Arts/Synth_MIDI_TEST.mcopclass -lib/mcop/Arts/Synth_MOOG_VCF.mcopclass -lib/mcop/Arts/Synth_NIL.mcopclass -lib/mcop/Arts/Synth_NOISE.mcopclass -lib/mcop/Arts/Synth_PITCH_SHIFT.mcopclass -lib/mcop/Arts/Synth_PSCALE.mcopclass -lib/mcop/Arts/Synth_RC.mcopclass -lib/mcop/Arts/Synth_SEQUENCE.mcopclass -lib/mcop/Arts/Synth_SHELVE_CUTOFF.mcopclass -lib/mcop/Arts/Synth_STD_EQUALIZER.mcopclass -lib/mcop/Arts/Synth_TREMOLO.mcopclass -lib/mcop/Arts/Synth_WAVE_PULSE.mcopclass -lib/mcop/Arts/Synth_WAVE_SOFTSAW.mcopclass -lib/mcop/Arts/Synth_WAVE_SQUARE.mcopclass -lib/mcop/Arts/Synth_WAVE_TRI.mcopclass -lib/mcop/Arts/Synth_XFADE.mcopclass -lib/mcop/Arts/VBox.mcopclass -lib/mcop/Arts/Widget.mcopclass -lib/mcop/Arts/mpg123PlayObject.mcopclass -lib/mcop/Arts/oggPlayObject.mcopclass -lib/mcop/ExtraStereo.mcopclass -lib/mcop/ExtraStereoGuiFactory.mcopclass -lib/mcop/Noatun/Equalizer.mcopclass -lib/mcop/Noatun/EqualizerSSE.mcopclass -lib/mcop/Noatun/FFTScope.mcopclass -lib/mcop/Noatun/FFTScopeStereo.mcopclass -lib/mcop/Noatun/Listener.mcopclass -lib/mcop/Noatun/RawScope.mcopclass -lib/mcop/Noatun/RawScopeStereo.mcopclass -lib/mcop/Noatun/Session.mcopclass -lib/mcop/Noatun/StereoEffectStack.mcopclass -lib/mcop/Noatun/StereoVolumeControl.mcopclass -lib/mcop/Noatun/StereoVolumeControlSSE.mcopclass -lib/mcop/RawWriter.mcopclass -lib/mcop/VoiceRemoval.mcopclass -lib/mcop/artsbuilder.mcopclass -lib/mcop/artsbuilder.mcoptype -lib/mcop/artseffects.mcopclass -lib/mcop/artseffects.mcoptype -lib/mcop/artsgui.mcopclass -lib/mcop/artsgui.mcoptype -lib/mcop/artsmidi.mcopclass -lib/mcop/artsmidi.mcoptype -lib/mcop/artsmodules.mcopclass -lib/mcop/artsmodules.mcoptype -lib/mcop/mpg123arts.mcopclass -lib/mcop/mpg123arts.mcoptype -lib/mcop/noatunarts.mcopclass -lib/mcop/noatunarts.mcoptype -lib/mcop/oggarts.mcopclass -lib/mcop/oggarts.mcoptype -share/applnk/Multimedia/aktion.desktop -share/applnk/Multimedia/artsbuilder.desktop -share/applnk/Multimedia/artscontrol.desktop -share/applnk/Multimedia/kmid.desktop -share/applnk/Multimedia/kmidi.desktop -share/applnk/Multimedia/kmix.desktop -share/applnk/Multimedia/kscd.desktop -share/applnk/Multimedia/noatun.desktop -share/applnk/Multimedia/timidity.desktop -share/applnk/Settings/Sound/kmix.desktop -share/apps/aktion/aktion_part.rc -share/apps/aktion/toolbar/ak_maximize.png -share/apps/aktion/toolbar/ak_setup.png -share/apps/aktion/toolbar/aktion_logo.png -share/apps/aktion/toolbar/avanzar.png -share/apps/aktion/toolbar/ayuda.png -share/apps/aktion/toolbar/double.png -share/apps/aktion/toolbar/fullscreen.png -share/apps/aktion/toolbar/half.png -share/apps/aktion/toolbar/original.png -share/apps/aktion/toolbar/parar.png -share/apps/aktion/toolbar/pause.png -share/apps/aktion/toolbar/retroceder.png -share/apps/aktion/toolbar/tocar.png -share/apps/artsbuilder/examples/README -share/apps/artsbuilder/examples/example_adsr.arts -share/apps/artsbuilder/examples/example_atan_saturate.arts -share/apps/artsbuilder/examples/example_autopanner.arts -share/apps/artsbuilder/examples/example_brickwall.arts -share/apps/artsbuilder/examples/example_bus.arts -share/apps/artsbuilder/examples/example_capture_wav.arts -share/apps/artsbuilder/examples/example_cdelay.arts -share/apps/artsbuilder/examples/example_cflanger.arts -share/apps/artsbuilder/examples/example_data.arts -share/apps/artsbuilder/examples/example_delay.arts -share/apps/artsbuilder/examples/example_dtmf1.arts -share/apps/artsbuilder/examples/example_equalizer.arts -share/apps/artsbuilder/examples/example_fm.arts -share/apps/artsbuilder/examples/example_freeverb.arts -share/apps/artsbuilder/examples/example_moog.arts -share/apps/artsbuilder/examples/example_multi_add.arts -share/apps/artsbuilder/examples/example_noise.arts -share/apps/artsbuilder/examples/example_pitchshift.arts -share/apps/artsbuilder/examples/example_play_wave.arts -share/apps/artsbuilder/examples/example_pscale.arts -share/apps/artsbuilder/examples/example_pulse.arts -share/apps/artsbuilder/examples/example_rc.arts -share/apps/artsbuilder/examples/example_record.arts -share/apps/artsbuilder/examples/example_sequence.arts -share/apps/artsbuilder/examples/example_shelve_cutoff.arts -share/apps/artsbuilder/examples/example_sine.arts -share/apps/artsbuilder/examples/example_softsaw.arts -share/apps/artsbuilder/examples/example_square.arts -share/apps/artsbuilder/examples/example_stereobeep.arts -share/apps/artsbuilder/examples/example_tremolo.arts -share/apps/artsbuilder/examples/example_tri.arts -share/apps/artsbuilder/examples/example_xfade.arts -share/apps/artsbuilder/examples/instrument_arts_all.arts-map -share/apps/artsbuilder/examples/instrument_chirpdrum.arts -share/apps/artsbuilder/examples/instrument_deepdrum.arts -share/apps/artsbuilder/examples/instrument_full_square.arts -share/apps/artsbuilder/examples/instrument_hihat.arts -share/apps/artsbuilder/examples/instrument_neworgan.arts -share/apps/artsbuilder/examples/instrument_nokind.arts -share/apps/artsbuilder/examples/instrument_organ2.arts -share/apps/artsbuilder/examples/instrument_simple_sin.arts -share/apps/artsbuilder/examples/instrument_simple_square.arts -share/apps/artsbuilder/examples/instrument_simple_tri.arts -share/apps/artsbuilder/examples/instrument_slide.arts -share/apps/artsbuilder/examples/instrument_slide1.arts -share/apps/artsbuilder/examples/instrument_square.arts -share/apps/artsbuilder/examples/instrument_tri.arts -share/apps/artsbuilder/examples/template_Empty_Structure.arts -share/apps/artsbuilder/examples/template_Instrument.arts -share/apps/artsbuilder/examples/todo/effect_delay.arts -share/apps/artsbuilder/examples/todo/effect_delay_alone.arts -share/apps/artsbuilder/examples/todo/effect_flanger_alone.arts -share/apps/artsbuilder/examples/todo/instrument_flexible_slide.arts -share/apps/artsbuilder/examples/todo/instrument_flexible_slide_GUI.arts -share/apps/artsbuilder/examples/todo/instrument_fm_horn.arts -share/apps/artsbuilder/examples/todo/instrument_moog_vcf_tune.arts -share/apps/artsbuilder/examples/todo/instrument_moog_vcf_tune_GUI.arts -share/apps/artsbuilder/examples/todo/mixer_element_eq.arts -share/apps/artsbuilder/examples/todo/mixer_element_eqfx.arts -share/apps/artsbuilder/examples/todo/mixer_element_simple.arts -share/apps/artsbuilder/examples/todo/template_Instrument_GUI.arts -share/apps/artsbuilder/examples/todo/template_Mixer_Element.arts -share/apps/artsbuilder/pics/Synth_ADD.xpm -share/apps/artsbuilder/pics/Synth_AMAN_PLAY.xpm -share/apps/artsbuilder/pics/Synth_ATAN_SATURATE.xpm -share/apps/artsbuilder/pics/Synth_BUS_DOWNLINK.xpm -share/apps/artsbuilder/pics/Synth_BUS_UPLINK.xpm -share/apps/artsbuilder/pics/Synth_DEBUG.xpm -share/apps/artsbuilder/pics/Synth_ENVELOPE_ADSR.xpm -share/apps/artsbuilder/pics/Synth_FILEPLAY.xpm -share/apps/artsbuilder/pics/Synth_MIDI_DEBUG.xpm -share/apps/artsbuilder/pics/Synth_MOOG_VCF.xpm -share/apps/artsbuilder/pics/Synth_MUL.xpm -share/apps/artsbuilder/pics/Synth_MULTI_ADD.xpm -share/apps/artsbuilder/pics/Synth_PLAY.xpm -share/apps/artsbuilder/pics/Synth_PLAY_WAV.xpm -share/apps/artsbuilder/pics/Synth_PSCALE.xpm -share/apps/artsbuilder/pics/Synth_RC.xpm -share/apps/artsbuilder/pics/Synth_SEQUENCE.xpm -share/apps/artsbuilder/pics/Synth_SHELVE_CUTOFF.xpm -share/apps/artsbuilder/pics/Synth_WAVE_SAW.xpm -share/apps/artsbuilder/pics/Synth_WAVE_SIN.xpm -share/apps/artsbuilder/pics/Synth_WAVE_SQUARE.xpm -share/apps/artsbuilder/pics/Synth_WAVE_TRI.xpm -share/apps/artsbuilder/pics/Synth_XFADE.xpm -share/apps/artscontrol/artscontrol.rc -share/apps/artscontrol/artsmidimanagerview.rc -share/apps/kicker/applets/kmixapplet.desktop -share/apps/kmid/DiesIrae.kar -share/apps/kmid/Guantanamera.kar -share/apps/kmid/MariaDeLasMercedes.kar -share/apps/kmid/OFortuna.kar -share/apps/kmid/fm/drums.o3 -share/apps/kmid/fm/drums.sb -share/apps/kmid/fm/std.o3 -share/apps/kmid/fm/std.sb -share/apps/kmid/icons/button1.xpm -share/apps/kmid/icons/button2.xpm -share/apps/kmid/icons/hicolor/16x16/actions/piano.png -share/apps/kmid/icons/hicolor/16x16/actions/volume.png -share/apps/kmid/icons/hicolor/22x22/actions/piano.png -share/apps/kmid/icons/hicolor/22x22/actions/volume.png -share/apps/kmid/icons/hicolor/32x32/actions/piano.png -share/apps/kmid/icons/hicolor/32x32/actions/volume.png -share/apps/kmid/icons/keyboard.xpm -share/apps/kmid/kmid_partui.rc -share/apps/kmid/kmidui.rc -share/apps/kmid/maps/YamahaPSR500.map -share/apps/kmid/maps/YamahaPSS790.map -share/apps/kmid/maps/YamahaQY10.map -share/apps/kmid/maps/gm.map -share/apps/kmidi/Axel_Elf.mid -share/apps/kmidi/Cavatina.mid -share/apps/kmidi/Georgia.mid -share/apps/kmidi/Malaguena.mid -share/apps/kmidi/Mission_Impossible.mid -share/apps/kmidi/Mr_Postman.mid -share/apps/kmidi/Take_The_A_Train-Seq_by_Dianne_Lewandowski.mid -share/apps/kmidi/Vangelis-Chung_Kuo.mid -share/apps/kmidi/config/BITMAPS/arrow.xbm -share/apps/kmidi/config/BITMAPS/back.xbm -share/apps/kmidi/config/BITMAPS/check.xbm -share/apps/kmidi/config/BITMAPS/fwd.xbm -share/apps/kmidi/config/BITMAPS/fwrd.xbm -share/apps/kmidi/config/BITMAPS/next.xbm -share/apps/kmidi/config/BITMAPS/off.xbm -share/apps/kmidi/config/BITMAPS/on.xbm -share/apps/kmidi/config/BITMAPS/pause.xbm -share/apps/kmidi/config/BITMAPS/play.xbm -share/apps/kmidi/config/BITMAPS/prev.xbm -share/apps/kmidi/config/BITMAPS/quit.xbm -share/apps/kmidi/config/BITMAPS/restart.xbm -share/apps/kmidi/config/BITMAPS/stop.xbm -share/apps/kmidi/config/BITMAPS/tback.xbm -share/apps/kmidi/config/BITMAPS/timidity.xbm -share/apps/kmidi/config/BITMAPS/tnext.xbm -share/apps/kmidi/config/BITMAPS/tpause.xbm -share/apps/kmidi/config/BITMAPS/tprev.xbm -share/apps/kmidi/config/BITMAPS/tquit.xbm -share/apps/kmidi/config/chaos12-voices -share/apps/kmidi/config/chaos8-voices -share/apps/kmidi/config/drums -share/apps/kmidi/config/gravis.cfg -share/apps/kmidi/config/gsdrum.cfg -share/apps/kmidi/config/guitar -share/apps/kmidi/config/megadrum -share/apps/kmidi/config/megainst -share/apps/kmidi/config/midia.cfg -share/apps/kmidi/config/mt32.cfg -share/apps/kmidi/config/patch/acbass.pat -share/apps/kmidi/config/patch/cymride1.pat -share/apps/kmidi/config/patch/hihatcl.pat -share/apps/kmidi/config/patch/kick1.pat -share/apps/kmidi/config/patch/kick2.pat -share/apps/kmidi/config/patch/nylongt2.pat -share/apps/kmidi/config/patch/sologrnd.pat -share/apps/kmidi/config/piano -share/apps/kmidi/config/piano+guitar -share/apps/kmidi/config/pila-voices -share/apps/kmidi/config/sound-canvas-drums -share/apps/kmidi/config/timidity.cfg -share/apps/kmidi/config/wowpats.cfg -share/apps/kmidi/pics/kmidilogo.png -share/apps/kmix/kmixui.rc -share/apps/kmix/pics/kmixdocked.png -share/apps/kmix/pics/mix_audio.png -share/apps/kmix/pics/mix_bass.png -share/apps/kmix/pics/mix_cd.png -share/apps/kmix/pics/mix_ext.png -share/apps/kmix/pics/mix_microphone.png -share/apps/kmix/pics/mix_midi.png -share/apps/kmix/pics/mix_recmon.png -share/apps/kmix/pics/mix_surround.png -share/apps/kmix/pics/mix_treble.png -share/apps/kmix/pics/mix_unknown.png -share/apps/kmix/pics/mix_video.png -share/apps/kmix/pics/mix_volume.png -share/apps/kscd/pics/cdsmall.xpm -share/apps/kscd/pics/kscdlogo.xpm -share/apps/noatun/dcopiface.plugin -share/apps/noatun/eq.preset/preset.dance -share/apps/noatun/eq.preset/preset.jazz -share/apps/noatun/eq.preset/preset.metal -share/apps/noatun/eq.preset/preset.trance -share/apps/noatun/eq.preset/preset.zero -share/apps/noatun/excellent.plugin -share/apps/noatun/excellentui.rc -share/apps/noatun/htmlexport.plugin -share/apps/noatun/icons/hicolor/16x16/actions/effect.png -share/apps/noatun/icons/hicolor/16x16/actions/noatunback.png -share/apps/noatun/icons/hicolor/16x16/actions/noatunforward.png -share/apps/noatun/icons/hicolor/16x16/actions/noatunpause.png -share/apps/noatun/icons/hicolor/16x16/actions/noatunplay.png -share/apps/noatun/icons/hicolor/16x16/actions/noatunplaylist.png -share/apps/noatun/icons/hicolor/16x16/actions/noatunstop.png -share/apps/noatun/icons/hicolor/16x16/actions/noatuntray.png -share/apps/noatun/icons/hicolor/16x16/actions/noatuntraypause.png -share/apps/noatun/icons/hicolor/16x16/actions/noatuntrayplay.png -share/apps/noatun/icons/hicolor/16x16/actions/noatuntraystop.png -share/apps/noatun/icons/hicolor/22x22/actions/edit_add.png -share/apps/noatun/icons/hicolor/22x22/actions/edit_remove.png -share/apps/noatun/icons/hicolor/22x22/actions/noatunback.png -share/apps/noatun/icons/hicolor/22x22/actions/noatunfback.png -share/apps/noatun/icons/hicolor/22x22/actions/noatunfforward.png -share/apps/noatun/icons/hicolor/22x22/actions/noatunforward.png -share/apps/noatun/icons/hicolor/22x22/actions/noatunloopnone.png -share/apps/noatun/icons/hicolor/22x22/actions/noatunloopplaylist.png -share/apps/noatun/icons/hicolor/22x22/actions/noatunloopsong.png -share/apps/noatun/icons/hicolor/22x22/actions/noatunpause.png -share/apps/noatun/icons/hicolor/22x22/actions/noatunplay.png -share/apps/noatun/icons/hicolor/22x22/actions/noatunplaylist.png -share/apps/noatun/icons/hicolor/22x22/actions/noatunstop.png -share/apps/noatun/icons/hicolor/22x22/actions/noatuntiny.png -share/apps/noatun/icons/hicolor/32x32/actions/effect.png -share/apps/noatun/icons/hicolor/48x48/actions/effect.png -share/apps/noatun/icons/locolor/16x16/actions/edit_add.png -share/apps/noatun/icons/locolor/16x16/actions/edit_remove.png -share/apps/noatun/id3tag.plugin -share/apps/noatun/infrared.plugin -share/apps/noatun/kaiman.plugin -share/apps/noatun/kaimanui.rc -share/apps/noatun/keyz.plugin -share/apps/noatun/kjofolui.plugin -share/apps/noatun/kjskins/kjofol/Makefile.am -share/apps/noatun/kjskins/kjofol/kjofol.dck -share/apps/noatun/kjskins/kjofol/kjofol.pl -share/apps/noatun/kjskins/kjofol/kjofol.rc -share/apps/noatun/kjskins/kjofol/kjofol.wsh -share/apps/noatun/kjskins/kjofol/sg.png -share/apps/noatun/kjskins/kjofol/sg_num.png -share/apps/noatun/kjskins/kjofol/sg_seek.bmp -share/apps/noatun/kjskins/kjofol/sg_seek.png -share/apps/noatun/kjskins/kjofol/sg_text.png -share/apps/noatun/kjskins/kjofol/sgdock.png -share/apps/noatun/kjskins/kjofol/sgdock2.png -share/apps/noatun/kjskins/kjofol/sgdocksk.png -share/apps/noatun/kjskins/kjofol/sgdockvp.png -share/apps/noatun/kjskins/kjofol/sgeq.png -share/apps/noatun/kjskins/kjofol/sgpitch.png -share/apps/noatun/kjskins/kjofol/sgpitchp.png -share/apps/noatun/kjskins/kjofol/sgplist.png -share/apps/noatun/kjskins/kjofol/sgplist2.png -share/apps/noatun/kjskins/kjofol/sgpres1.png -share/apps/noatun/kjskins/kjofol/sgpres2.png -share/apps/noatun/kjskins/kjofol/sgpres3.png -share/apps/noatun/kjskins/kjofol/sgvol.png -share/apps/noatun/kjskins/kjofol/sgvolnum.png -share/apps/noatun/kjskins/kjofol/sgvolpos.png -share/apps/noatun/kjskins/kjofol/sgwshad.png -share/apps/noatun/kjskins/kjofol/sgwshad2.png -share/apps/noatun/kjskins/kjofol/sgwshdsk.png -share/apps/noatun/kjskins/kjofol/sgwshvol.png -share/apps/noatun/kjskins/kjofol/sgwshvp.png -share/apps/noatun/kjskins/phong/p_eq.png -share/apps/noatun/kjskins/phong/p_main.png -share/apps/noatun/kjskins/phong/p_mainback.png -share/apps/noatun/kjskins/phong/p_numbers.png -share/apps/noatun/kjskins/phong/p_playback.png -share/apps/noatun/kjskins/phong/p_playlist.png -share/apps/noatun/kjskins/phong/p_propos.png -share/apps/noatun/kjskins/phong/p_text.png -share/apps/noatun/kjskins/phong/p_volbar.png -share/apps/noatun/kjskins/phong/p_volpos.png -share/apps/noatun/kjskins/phong/phong.dck -share/apps/noatun/kjskins/phong/phong.rc -share/apps/noatun/kjskins/phong/phong.wsh -share/apps/noatun/kjskins/phong/phong_readme.txt -share/apps/noatun/kjskins/vibrocentric/i_base.png -share/apps/noatun/kjskins/vibrocentric/i_base2.png -share/apps/noatun/kjskins/vibrocentric/i_eq.png -share/apps/noatun/kjskins/vibrocentric/i_font.png -share/apps/noatun/kjskins/vibrocentric/i_pl.png -share/apps/noatun/kjskins/vibrocentric/i_pl2.png -share/apps/noatun/kjskins/vibrocentric/i_pro.png -share/apps/noatun/kjskins/vibrocentric/i_text.png -share/apps/noatun/kjskins/vibrocentric/i_vol.png -share/apps/noatun/kjskins/vibrocentric/i_volpos.png -share/apps/noatun/kjskins/vibrocentric/vibrocentric.dck -share/apps/noatun/kjskins/vibrocentric/vibrocentric.rc -share/apps/noatun/kjskins/vibrocentric/vibrocentric.wsh -share/apps/noatun/kjskins/vibrocentric/vibrocentric_readme.txt -share/apps/noatun/liszt.plugin -share/apps/noatun/marquis.plugin -share/apps/noatun/monoscope.plugin -share/apps/noatun/net.plugin -share/apps/noatun/noatunui.plugin -share/apps/noatun/oggtag.plugin -share/apps/noatun/skins/kaiman/car-preset/btn_exit.png -share/apps/noatun/skins/kaiman/car-preset/btn_iconify.png -share/apps/noatun/skins/kaiman/car-preset/btn_list.png -share/apps/noatun/skins/kaiman/car-preset/btn_next.png -share/apps/noatun/skins/kaiman/car-preset/btn_p1.png -share/apps/noatun/skins/kaiman/car-preset/btn_p2.png -share/apps/noatun/skins/kaiman/car-preset/btn_p3.png -share/apps/noatun/skins/kaiman/car-preset/btn_p4.png -share/apps/noatun/skins/kaiman/car-preset/btn_p5.png -share/apps/noatun/skins/kaiman/car-preset/btn_p6.png -share/apps/noatun/skins/kaiman/car-preset/btn_play.png -share/apps/noatun/skins/kaiman/car-preset/btn_prev.png -share/apps/noatun/skins/kaiman/car-preset/btn_sml.png -share/apps/noatun/skins/kaiman/car-preset/btn_stop.png -share/apps/noatun/skins/kaiman/car-preset/btn_voldn.png -share/apps/noatun/skins/kaiman/car-preset/btn_volup.png -share/apps/noatun/skins/kaiman/car-preset/digbig.png -share/apps/noatun/skins/kaiman/car-preset/digmed.png -share/apps/noatun/skins/kaiman/car-preset/letters.png -share/apps/noatun/skins/kaiman/car-preset/main.png -share/apps/noatun/skins/kaiman/car-preset/monoster.png -share/apps/noatun/skins/kaiman/car-preset/posbar.png -share/apps/noatun/skins/kaiman/car-preset/random.png -share/apps/noatun/skins/kaiman/car-preset/repeat.png -share/apps/noatun/skins/kaiman/car-preset/skindata -share/apps/noatun/skins/kaiman/car-preset/status.png -share/apps/noatun/skins/kaiman/car-preset/volume.png -share/apps/noatun/skins/kaiman/circle/back.png -share/apps/noatun/skins/kaiman/circle/back_mask.png -share/apps/noatun/skins/kaiman/circle/back_sm.png -share/apps/noatun/skins/kaiman/circle/back_sm_mask.png -share/apps/noatun/skins/kaiman/circle/bar_pos.png -share/apps/noatun/skins/kaiman/circle/bar_vol.png -share/apps/noatun/skins/kaiman/circle/btn_exit.png -share/apps/noatun/skins/kaiman/circle/btn_iconify.png -share/apps/noatun/skins/kaiman/circle/btn_list.png -share/apps/noatun/skins/kaiman/circle/btn_mode.png -share/apps/noatun/skins/kaiman/circle/btn_next.png -share/apps/noatun/skins/kaiman/circle/btn_play.png -share/apps/noatun/skins/kaiman/circle/btn_pref.png -share/apps/noatun/skins/kaiman/circle/btn_prev.png -share/apps/noatun/skins/kaiman/circle/btn_repeat.png -share/apps/noatun/skins/kaiman/circle/btn_shuffle.png -share/apps/noatun/skins/kaiman/circle/btn_sm_exit.png -share/apps/noatun/skins/kaiman/circle/btn_sm_iconify.png -share/apps/noatun/skins/kaiman/circle/btn_sm_mode.png -share/apps/noatun/skins/kaiman/circle/btn_sm_next.png -share/apps/noatun/skins/kaiman/circle/btn_sm_play.png -share/apps/noatun/skins/kaiman/circle/btn_sm_prev.png -share/apps/noatun/skins/kaiman/circle/btn_sm_stop.png -share/apps/noatun/skins/kaiman/circle/btn_stop.png -share/apps/noatun/skins/kaiman/circle/dig.png -share/apps/noatun/skins/kaiman/circle/digsml.png -share/apps/noatun/skins/kaiman/circle/letters.png -share/apps/noatun/skins/kaiman/circle/skindata -share/apps/noatun/skins/kaiman/circle/status.png -share/apps/noatun/skins/kaiman/k9/README -share/apps/noatun/skins/kaiman/k9/conf.jpg -share/apps/noatun/skins/kaiman/k9/conf.png -share/apps/noatun/skins/kaiman/k9/eject.jpg -share/apps/noatun/skins/kaiman/k9/icon.jpg -share/apps/noatun/skins/kaiman/k9/icon.png -share/apps/noatun/skins/kaiman/k9/kill.jpg -share/apps/noatun/skins/kaiman/k9/kill.png -share/apps/noatun/skins/kaiman/k9/knine-nfont.jpg -share/apps/noatun/skins/kaiman/k9/knine-nfont.png -share/apps/noatun/skins/kaiman/k9/knine-nfont2.jpg -share/apps/noatun/skins/kaiman/k9/knine-nfont2.png -share/apps/noatun/skins/kaiman/k9/knine-normal2.jpg -share/apps/noatun/skins/kaiman/k9/knine-normal2.png -share/apps/noatun/skins/kaiman/k9/knine-vfont.jpg -share/apps/noatun/skins/kaiman/k9/knine-vfont.png -share/apps/noatun/skins/kaiman/k9/long2.jpg -share/apps/noatun/skins/kaiman/k9/mask.png -share/apps/noatun/skins/kaiman/k9/newtext.jpg -share/apps/noatun/skins/kaiman/k9/newtext.png -share/apps/noatun/skins/kaiman/k9/next.jpg -share/apps/noatun/skins/kaiman/k9/pause.jpg -share/apps/noatun/skins/kaiman/k9/play.jpg -share/apps/noatun/skins/kaiman/k9/pos_item.jpg -share/apps/noatun/skins/kaiman/k9/repeat.jpg -share/apps/noatun/skins/kaiman/k9/repeat.png -share/apps/noatun/skins/kaiman/k9/reverse.jpg -share/apps/noatun/skins/kaiman/k9/shuffle.jpg -share/apps/noatun/skins/kaiman/k9/shuffle.png -share/apps/noatun/skins/kaiman/k9/skindata -share/apps/noatun/skins/kaiman/k9/small-k.jpg -share/apps/noatun/skins/kaiman/k9/small-k.png -share/apps/noatun/skins/kaiman/k9/square.jpg -share/apps/noatun/skins/kaiman/k9/square.png -share/apps/noatun/skins/kaiman/k9/status.jpg -share/apps/noatun/skins/kaiman/k9/status.png -share/apps/noatun/skins/kaiman/k9/stop.jpg -share/apps/noatun/skins/kaiman/k9/trans-pos.png -share/apps/noatun/skins/kaiman/k9/trans-slide.png -share/apps/noatun/splitplaylist.plugin -share/apps/noatun/systray.plugin -share/apps/noatun/systrayui.rc -share/apps/noatun/tron.plugin -share/apps/noatun/tronui.rc -share/apps/noatun/voiceprint.plugin -share/config/aktionrc -share/doc/HTML/en/aktion/aktion.png -share/doc/HTML/en/aktion/aktiontoolbar.png -share/doc/HTML/en/aktion/common -share/doc/HTML/en/aktion/index.cache.bz2 -share/doc/HTML/en/aktion/index.docbook -share/doc/HTML/en/artsbuilder/apis.docbook -share/doc/HTML/en/artsbuilder/arts-structure.png -share/doc/HTML/en/artsbuilder/artsbuilder.docbook -share/doc/HTML/en/artsbuilder/common -share/doc/HTML/en/artsbuilder/detail.docbook -share/doc/HTML/en/artsbuilder/digitalaudio.docbook -share/doc/HTML/en/artsbuilder/faq.docbook -share/doc/HTML/en/artsbuilder/future.docbook -share/doc/HTML/en/artsbuilder/glossary.docbook -share/doc/HTML/en/artsbuilder/gui.docbook -share/doc/HTML/en/artsbuilder/helping.docbook -share/doc/HTML/en/artsbuilder/images/Doc_MODUL.png -share/doc/HTML/en/artsbuilder/images/Gui_AUDIO_MANAGER.png -share/doc/HTML/en/artsbuilder/images/Gui_INSTRUMENT_MAPPER.png -share/doc/HTML/en/artsbuilder/images/Gui_LABEL.png -share/doc/HTML/en/artsbuilder/images/Gui_MIXER.png -share/doc/HTML/en/artsbuilder/images/Gui_PANEL.png -share/doc/HTML/en/artsbuilder/images/Gui_POTI.png -share/doc/HTML/en/artsbuilder/images/Gui_SLIDER.png -share/doc/HTML/en/artsbuilder/images/Gui_SUBPANEL.png -share/doc/HTML/en/artsbuilder/images/Gui_WINDOW.png -share/doc/HTML/en/artsbuilder/images/Interface_MIDI_NOTE.png -share/doc/HTML/en/artsbuilder/images/Synth_ADD.png -share/doc/HTML/en/artsbuilder/images/Synth_ATAN_SATURATE.png -share/doc/HTML/en/artsbuilder/images/Synth_BUS_DOWNLINK.png -share/doc/HTML/en/artsbuilder/images/Synth_BUS_UPLINK.png -share/doc/HTML/en/artsbuilder/images/Synth_CDELAY.png -share/doc/HTML/en/artsbuilder/images/Synth_DEBUG.png -share/doc/HTML/en/artsbuilder/images/Synth_DELAY.png -share/doc/HTML/en/artsbuilder/images/Synth_ENVELOPE_ADSR.png -share/doc/HTML/en/artsbuilder/images/Synth_FILEPLAY.png -share/doc/HTML/en/artsbuilder/images/Synth_FM_SOURCE.png -share/doc/HTML/en/artsbuilder/images/Synth_FREQUENCY.png -share/doc/HTML/en/artsbuilder/images/Synth_MIDI_DEBUG.png -share/doc/HTML/en/artsbuilder/images/Synth_MIDI_ROUTER.png -share/doc/HTML/en/artsbuilder/images/Synth_MUL.png -share/doc/HTML/en/artsbuilder/images/Synth_NIL.png -share/doc/HTML/en/artsbuilder/images/Synth_PLAY.png -share/doc/HTML/en/artsbuilder/images/Synth_PLAY_AKAI.png -share/doc/HTML/en/artsbuilder/images/Synth_PLAY_AKAIS.png -share/doc/HTML/en/artsbuilder/images/Synth_PLAY_WAV.png -share/doc/HTML/en/artsbuilder/images/Synth_PSCALE.png -share/doc/HTML/en/artsbuilder/images/Synth_RC.png -share/doc/HTML/en/artsbuilder/images/Synth_SEQUENCE.png -share/doc/HTML/en/artsbuilder/images/Synth_SHELVE_CUTOFF.png -share/doc/HTML/en/artsbuilder/images/Synth_STD_EQUALIZER.png -share/doc/HTML/en/artsbuilder/images/Synth_STRUCT_KILL.png -share/doc/HTML/en/artsbuilder/images/Synth_WAVE_SIN.png -share/doc/HTML/en/artsbuilder/images/Synth_WAVE_SQUARE.png -share/doc/HTML/en/artsbuilder/images/Synth_WAVE_TRI.png -share/doc/HTML/en/artsbuilder/images/Synth_XFADE.png -share/doc/HTML/en/artsbuilder/images/schema1.png -share/doc/HTML/en/artsbuilder/images/schema2.png -share/doc/HTML/en/artsbuilder/images/schema3.png -share/doc/HTML/en/artsbuilder/images/schema4.png -share/doc/HTML/en/artsbuilder/index.cache.bz2 -share/doc/HTML/en/artsbuilder/index.docbook -share/doc/HTML/en/artsbuilder/mcop.docbook -share/doc/HTML/en/artsbuilder/midi.docbook -share/doc/HTML/en/artsbuilder/midiintro.docbook -share/doc/HTML/en/artsbuilder/modules.docbook -share/doc/HTML/en/artsbuilder/porting.docbook -share/doc/HTML/en/artsbuilder/references.docbook -share/doc/HTML/en/artsbuilder/tools.docbook -share/doc/HTML/en/kmid/common -share/doc/HTML/en/kmid/index.cache.bz2 -share/doc/HTML/en/kmid/index.docbook -share/doc/HTML/en/kmidi/FAQ -share/doc/HTML/en/kmidi/common -share/doc/HTML/en/kmidi/index.cache.bz2 -share/doc/HTML/en/kmidi/index.docbook -share/doc/HTML/en/kmix/common -share/doc/HTML/en/kmix/index.cache.bz2 -share/doc/HTML/en/kmix/index.docbook -share/doc/HTML/en/kscd/cddb.howto -share/doc/HTML/en/kscd/common -share/doc/HTML/en/kscd/index.cache.bz2 -share/doc/HTML/en/kscd/index.docbook -share/doc/HTML/en/kscd/kscd.png -share/doc/HTML/en/kscd/kscd1.png -share/doc/HTML/en/kscd/kscd10.png -share/doc/HTML/en/kscd/kscd11.png -share/doc/HTML/en/kscd/kscd12.png -share/doc/HTML/en/kscd/kscd13.png -share/doc/HTML/en/kscd/kscd14.png -share/doc/HTML/en/kscd/kscd15.png -share/doc/HTML/en/kscd/kscd16.png -share/doc/HTML/en/kscd/kscd17.png -share/doc/HTML/en/kscd/kscd18.png -share/doc/HTML/en/kscd/kscd19.png -share/doc/HTML/en/kscd/kscd2.png -share/doc/HTML/en/kscd/kscd2a.png -share/doc/HTML/en/kscd/kscd3.png -share/doc/HTML/en/kscd/kscd4.png -share/doc/HTML/en/kscd/kscd5.png -share/doc/HTML/en/kscd/kscd6.png -share/doc/HTML/en/kscd/kscd7.png -share/doc/HTML/en/kscd/kscd8.png -share/doc/HTML/en/kscd/kscd9.png -share/doc/HTML/en/noatun/common -share/doc/HTML/en/noatun/index.cache.bz2 -share/doc/HTML/en/noatun/index.docbook -share/icons/hicolor/16x16/apps/aktion.png -share/icons/hicolor/16x16/apps/artsbuilder.png -share/icons/hicolor/16x16/apps/artscontrol.png -share/icons/hicolor/16x16/apps/kmid.png -share/icons/hicolor/16x16/apps/kmidi.png -share/icons/hicolor/16x16/apps/kmix.png -share/icons/hicolor/16x16/apps/kscd.png -share/icons/hicolor/16x16/apps/noatun.png -share/icons/hicolor/22x22/apps/noatun.png -share/icons/hicolor/32x32/apps/aktion.png -share/icons/hicolor/32x32/apps/kmid.png -share/icons/hicolor/32x32/apps/kmidi.png -share/icons/hicolor/32x32/apps/kmix.png -share/icons/hicolor/32x32/apps/kscd.png -share/icons/hicolor/32x32/apps/noatun.png -share/icons/hicolor/48x48/apps/kmid.png -share/icons/hicolor/48x48/apps/kmidi.png -share/icons/hicolor/48x48/apps/kmix.png -share/icons/hicolor/48x48/apps/kscd.png -share/icons/hicolor/48x48/apps/noatun.png -share/mimelnk/application/x-artsbuilder.desktop -share/mimelnk/audio/x-karaoke.desktop -share/mimelnk/text/xmcd.desktop -share/services/kmixctrl_restore.desktop -share/servicetypes/audiomidi.desktop -@dirrm share/doc/HTML/en/noatun -@dirrm share/doc/HTML/en/kscd -@dirrm share/doc/HTML/en/kmix -@dirrm share/doc/HTML/en/kmidi -@dirrm share/doc/HTML/en/kmid -@dirrm share/doc/HTML/en/artsbuilder/images -@dirrm share/doc/HTML/en/artsbuilder -@dirrm share/doc/HTML/en/aktion -@dirrm share/apps/noatun/skins/kaiman/k9 -@dirrm share/apps/noatun/skins/kaiman/circle -@dirrm share/apps/noatun/skins/kaiman/car-preset -@dirrm share/apps/noatun/skins/kaiman -@dirrm share/apps/noatun/skins -@dirrm share/apps/noatun/kjskins/vibrocentric -@dirrm share/apps/noatun/kjskins/phong -@dirrm share/apps/noatun/kjskins/kjofol -@dirrm share/apps/noatun/kjskins -@dirrm share/apps/noatun/icons/locolor/16x16/actions -@dirrm share/apps/noatun/icons/locolor/16x16 -@dirrm share/apps/noatun/icons/locolor -@dirrm share/apps/noatun/icons/hicolor/48x48/actions -@dirrm share/apps/noatun/icons/hicolor/48x48 -@dirrm share/apps/noatun/icons/hicolor/32x32/actions -@dirrm share/apps/noatun/icons/hicolor/32x32 -@dirrm share/apps/noatun/icons/hicolor/22x22/actions -@dirrm share/apps/noatun/icons/hicolor/22x22 -@dirrm share/apps/noatun/icons/hicolor/16x16/actions -@dirrm share/apps/noatun/icons/hicolor/16x16 -@dirrm share/apps/noatun/icons/hicolor -@dirrm share/apps/noatun/icons -@dirrm share/apps/noatun/eq.preset -@dirrm share/apps/noatun -@dirrm share/apps/kscd/pics -@dirrm share/apps/kscd/cddb/soundtrack -@dirrm share/apps/kscd/cddb/rock -@dirrm share/apps/kscd/cddb/reggae -@dirrm share/apps/kscd/cddb/newage -@dirrm share/apps/kscd/cddb/misc -@dirrm share/apps/kscd/cddb/jazz -@dirrm share/apps/kscd/cddb/folk -@dirrm share/apps/kscd/cddb/data -@dirrm share/apps/kscd/cddb/country -@dirrm share/apps/kscd/cddb/classical -@dirrm share/apps/kscd/cddb/blues -@dirrm share/apps/kscd/cddb -@dirrm share/apps/kscd -@dirrm share/apps/kmix/pics -@dirrm share/apps/kmix -@dirrm share/apps/kmidi/pics -@dirrm share/apps/kmidi/config/patch -@dirrm share/apps/kmidi/config/BITMAPS -@dirrm share/apps/kmidi/config -@dirrm share/apps/kmidi -@dirrm share/apps/kmid/maps -@dirrm share/apps/kmid/icons/hicolor/32x32/actions -@dirrm share/apps/kmid/icons/hicolor/32x32 -@dirrm share/apps/kmid/icons/hicolor/22x22/actions -@dirrm share/apps/kmid/icons/hicolor/22x22 -@dirrm share/apps/kmid/icons/hicolor/16x16/actions -@dirrm share/apps/kmid/icons/hicolor/16x16 -@dirrm share/apps/kmid/icons/hicolor -@dirrm share/apps/kmid/icons -@dirrm share/apps/kmid/fm -@dirrm share/apps/kmid -@dirrm share/apps/artscontrol -@dirrm share/apps/artsbuilder/pics -@dirrm share/apps/artsbuilder/examples/todo -@dirrm share/apps/artsbuilder/examples -@dirrm share/apps/artsbuilder -@dirrm share/apps/aktion/toolbar -@dirrm share/apps/aktion -@dirrm share/applnk/Settings/Sound -@dirrm share/applnk/Multimedia -@dirrm lib/mcop/Noatun -@dirrm include/noatun diff --git a/deskutils/kdepim/Makefile b/deskutils/kdepim/Makefile deleted file mode 100644 index 732e310..0000000 --- a/deskutils/kdepim/Makefile +++ /dev/null @@ -1,60 +0,0 @@ -# New ports collection makefile for: KDE PIM -# Date created: 2 March 2001 -# Whom: Dmitry Sivachenko <demon@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= kdepim -PORTVERSION= 2.2.2 -CATEGORIES= deskutils kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= Attic/${PORTVERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 -LIB_DEPENDS= pisock.4:${PORTSDIR}/palm/pilot-link - -USE_KDELIBS_VER=2 -USE_BISON= yes -USE_BZIP2= yes -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes - -.include <bsd.port.pre.mk> -.if ${OSVERSION} >= 500029 -_NO_KDE_OBJPRELINK=yes -.endif - -.include "${.CURDIR}/../../x11/kde2/Makefile.kde" - -QTCPPFLAGS= -I${LOCALBASE}/include -L${LOCALBASE}/lib -QTLDFLAGS= ${QTCPPFLAGS} -CONFIGURE_ENV+= LIBS="${QTLDFLAGS}" -MAKE_ENV= ${CONFIGURE_ENV} -USE_GMAKE= yes - -post-patch: - @${FIND} ${WRKSRC} -type f | ${XARGS} ${PERL} -pi -e \ - "s,#include.*<malloc.h>,#include <stdlib.h>,g" - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - cd ${WRKSRC} && env PATH=${WRKSRC}/auto-bin:$$PATH \ - ${GMAKE} -f Makefile.cvs - find ${WRKSRC}/kpilot \( -name Makefile.in -o -name Makefile.am \) | \ - xargs ${PERL} -pi -e \ - "s@LDFLAGS =@LDFLAGS=-L${LOCALBASE}/pilot/lib@g" - find ${WRKSRC}/libical -name Makefile.in | xargs ${PERL} -pi -e \ - "s|INSTALL = \@INSTALL\@|INSTALL=${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP}|g" - -.include <bsd.port.post.mk> diff --git a/deskutils/kdepim/distinfo b/deskutils/kdepim/distinfo deleted file mode 100644 index 37134e6..0000000 --- a/deskutils/kdepim/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/kdepim-2.2.2.tar.bz2) = 55daf69b90108509895814b96fc8b671 diff --git a/deskutils/kdepim/pkg-comment b/deskutils/kdepim/pkg-comment deleted file mode 100644 index 7131824..0000000 --- a/deskutils/kdepim/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Personal Information Management tools for KDE diff --git a/deskutils/kdepim/pkg-descr b/deskutils/kdepim/pkg-descr deleted file mode 100644 index 4e1f337..0000000 --- a/deskutils/kdepim/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Personal Information Management tools for KDE. - -This rather broad scope encompasses mail clients, addressbooks, usenet news, -scheduling and even sticky notes. diff --git a/deskutils/kdepim/pkg-plist b/deskutils/kdepim/pkg-plist deleted file mode 100644 index 6189673..0000000 --- a/deskutils/kdepim/pkg-plist +++ /dev/null @@ -1,325 +0,0 @@ -bin/abbrowser_conduit -bin/alarmd -bin/conduitExpense -bin/conduitKNotes -bin/ical2vcal -bin/kandy -bin/kandy_client -bin/korganizer -bin/kpilot -bin/kpilotDaemon -bin/null_conduit -bin/pilotListener -bin/popmail_conduit -bin/todoconduit -bin/vcalconduit -include/kgantt/KGantt.h -include/kgantt/KGanttBarConfig.h -include/kgantt/KGanttItem.h -include/kgantt/KGanttRelation.h -include/kgantt/xQGanttBarView.h -include/kgantt/xQGanttBarViewPort.h -include/kgantt/xQGanttListView.h -include/kgantt/xQGanttListViewPort.h -include/rmm/Address.h -include/rmm/AddressList.h -include/rmm/AddressList_generated.h -include/rmm/Address_generated.h -include/rmm/BodyPart.h -include/rmm/BodyPart_generated.h -include/rmm/ContentDisposition.h -include/rmm/ContentDisposition_generated.h -include/rmm/ContentType.h -include/rmm/ContentType_generated.h -include/rmm/Cte.h -include/rmm/Cte_generated.h -include/rmm/DateTime.h -include/rmm/DateTime_generated.h -include/rmm/Defines.h -include/rmm/Entity.h -include/rmm/Entity_generated.h -include/rmm/Enum.h -include/rmm/Envelope.h -include/rmm/Envelope_generated.h -include/rmm/Header.h -include/rmm/HeaderBody.h -include/rmm/HeaderBody_generated.h -include/rmm/Header_generated.h -include/rmm/Mailbox.h -include/rmm/Mailbox_generated.h -include/rmm/Mechanism.h -include/rmm/Mechanism_generated.h -include/rmm/Message.h -include/rmm/MessageComponent.h -include/rmm/MessageID.h -include/rmm/MessageID_generated.h -include/rmm/Message_generated.h -include/rmm/MimeType.h -include/rmm/MimeType_generated.h -include/rmm/Parameter.h -include/rmm/ParameterList.h -include/rmm/ParameterList_generated.h -include/rmm/Parameter_generated.h -include/rmm/Text.h -include/rmm/Text_generated.h -include/rmm/Token.h -include/rmm/Utilities.h -lib/libkcal.la -lib/libkcal.so -lib/libkcal.so.1 -lib/libkgantt.la -lib/libkgantt.so -lib/libkgantt.so.0 -lib/libkimap.la -lib/libkimap.so -lib/libkimap.so.0 -lib/libkorganizer.la -lib/libkorganizer.so -lib/libkorganizer.so.1 -lib/librmm.la -lib/librmm.so -lib/librmm.so.1 -lib/libvcard.la -lib/libvcard.so -lib/libvcard.so.0 -share/applnk/Applications/korganizer.desktop -share/applnk/Utilities/kandy.desktop -share/applnk/Utilities/kpilot.desktop -share/applnk/Utilities/kpilotdaemon.desktop -share/apps/kandy/default.kandy -share/apps/kandy/kandymobileui.rc -share/apps/kandy/kandyui.rc -share/apps/kgantt/icons/hicolor/16x16/actions/ganttSelect.png -share/apps/kgantt/icons/hicolor/16x16/actions/ganttSelecttask.png -share/apps/kgantt/icons/hicolor/16x16/actions/ganttUnselecttask.png -share/apps/kgantt/icons/hicolor/22x22/actions/ganttSelect.png -share/apps/kgantt/icons/hicolor/22x22/actions/ganttSelecttask.png -share/apps/kgantt/icons/hicolor/22x22/actions/ganttUnselecttask.png -share/apps/kgantt/icons/hicolor/32x32/actions/ganttSelect.png -share/apps/kgantt/icons/hicolor/32x32/actions/ganttSelecttask.png -share/apps/kgantt/icons/hicolor/32x32/actions/ganttUnselecttask.png -share/apps/korganizer/holiday_at -share/apps/korganizer/holiday_au -share/apps/korganizer/holiday_bavarian -share/apps/korganizer/holiday_be -share/apps/korganizer/holiday_ca -share/apps/korganizer/holiday_catalan -share/apps/korganizer/holiday_ch -share/apps/korganizer/holiday_cz -share/apps/korganizer/holiday_de -share/apps/korganizer/holiday_dk -share/apps/korganizer/holiday_es -share/apps/korganizer/holiday_fi -share/apps/korganizer/holiday_fr -share/apps/korganizer/holiday_frswiss -share/apps/korganizer/holiday_gb -share/apps/korganizer/holiday_hu -share/apps/korganizer/holiday_il -share/apps/korganizer/holiday_is -share/apps/korganizer/holiday_it -share/apps/korganizer/holiday_ja -share/apps/korganizer/holiday_mx -share/apps/korganizer/holiday_nl -share/apps/korganizer/holiday_no -share/apps/korganizer/holiday_nz -share/apps/korganizer/holiday_pl -share/apps/korganizer/holiday_pt -share/apps/korganizer/holiday_quebec -share/apps/korganizer/holiday_ro -share/apps/korganizer/holiday_se -share/apps/korganizer/holiday_si -share/apps/korganizer/holiday_th -share/apps/korganizer/holiday_us -share/apps/korganizer/icons/hicolor/16x16/actions/1day.png -share/apps/korganizer/icons/hicolor/16x16/actions/1downarrow.png -share/apps/korganizer/icons/hicolor/16x16/actions/1leftarrow.png -share/apps/korganizer/icons/hicolor/16x16/actions/1rightarrow.png -share/apps/korganizer/icons/hicolor/16x16/actions/1uparrow.png -share/apps/korganizer/icons/hicolor/16x16/actions/2downarrow.png -share/apps/korganizer/icons/hicolor/16x16/actions/2leftarrow.png -share/apps/korganizer/icons/hicolor/16x16/actions/2rightarrow.png -share/apps/korganizer/icons/hicolor/16x16/actions/2uparrow.png -share/apps/korganizer/icons/hicolor/16x16/actions/3downarrow.png -share/apps/korganizer/icons/hicolor/16x16/actions/3uparrow.png -share/apps/korganizer/icons/hicolor/16x16/actions/5days.png -share/apps/korganizer/icons/hicolor/16x16/actions/7days.png -share/apps/korganizer/icons/hicolor/16x16/actions/appointment.png -share/apps/korganizer/icons/hicolor/16x16/actions/bell.png -share/apps/korganizer/icons/hicolor/16x16/actions/dayview.png -share/apps/korganizer/icons/hicolor/16x16/actions/findf.png -share/apps/korganizer/icons/hicolor/16x16/actions/inverse_recur.png -share/apps/korganizer/icons/hicolor/16x16/actions/list.png -share/apps/korganizer/icons/hicolor/16x16/actions/mailappt.png -share/apps/korganizer/icons/hicolor/16x16/actions/month.png -share/apps/korganizer/icons/hicolor/16x16/actions/nomailappt.png -share/apps/korganizer/icons/hicolor/16x16/actions/playsound.png -share/apps/korganizer/icons/hicolor/16x16/actions/readonlyevent.png -share/apps/korganizer/icons/hicolor/16x16/actions/recur.png -share/apps/korganizer/icons/hicolor/16x16/actions/runprog.png -share/apps/korganizer/icons/hicolor/16x16/actions/smallcal.png -share/apps/korganizer/icons/hicolor/16x16/actions/smallclock.png -share/apps/korganizer/icons/hicolor/16x16/actions/today.png -share/apps/korganizer/icons/hicolor/16x16/actions/todo.png -share/apps/korganizer/icons/hicolor/22x22/actions/1day.png -share/apps/korganizer/icons/hicolor/22x22/actions/3leftarrow.png -share/apps/korganizer/icons/hicolor/22x22/actions/3rightarrow.png -share/apps/korganizer/icons/hicolor/22x22/actions/5days.png -share/apps/korganizer/icons/hicolor/22x22/actions/7days.png -share/apps/korganizer/icons/hicolor/22x22/actions/agenda.png -share/apps/korganizer/icons/hicolor/22x22/actions/alarmd.png -share/apps/korganizer/icons/hicolor/22x22/actions/alarmd_disabled.png -share/apps/korganizer/icons/hicolor/22x22/actions/appointment.png -share/apps/korganizer/icons/hicolor/22x22/actions/checkedbox.png -share/apps/korganizer/icons/hicolor/22x22/actions/checkedbox/mask.png -share/apps/korganizer/icons/hicolor/22x22/actions/checkedclipboard.png -share/apps/korganizer/icons/hicolor/22x22/actions/checkmark.png -share/apps/korganizer/icons/hicolor/22x22/actions/delete.png -share/apps/korganizer/icons/hicolor/22x22/actions/emptybox.png -share/apps/korganizer/icons/hicolor/22x22/actions/emptybox/mask.png -share/apps/korganizer/icons/hicolor/22x22/actions/list.png -share/apps/korganizer/icons/hicolor/22x22/actions/month.png -share/apps/korganizer/icons/hicolor/22x22/actions/newrecurevent.png -share/apps/korganizer/icons/hicolor/22x22/actions/search.png -share/apps/korganizer/icons/hicolor/22x22/actions/send.png -share/apps/korganizer/icons/hicolor/22x22/actions/today.png -share/apps/korganizer/icons/hicolor/22x22/actions/todo.png -share/apps/korganizer/icons/hicolor/22x22/actions/whatsnext.png -share/apps/korganizer/icons/hicolor/32x32/actions/1day.png -share/apps/korganizer/icons/hicolor/32x32/actions/5days.png -share/apps/korganizer/icons/hicolor/32x32/actions/7days.png -share/apps/korganizer/icons/hicolor/32x32/actions/appointment.png -share/apps/korganizer/icons/hicolor/32x32/actions/list.png -share/apps/korganizer/icons/hicolor/32x32/actions/month.png -share/apps/korganizer/icons/hicolor/32x32/actions/today.png -share/apps/korganizer/icons/hicolor/32x32/actions/todo.png -share/apps/korganizer/korganizer_part.rc -share/apps/korganizer/korganizergsui.rc -share/apps/korganizer/korganizerui.rc -share/apps/korganizer/sounds/alert.wav -share/apps/korganizer/sounds/icemag.wav -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/icons/hicolor/16x16/actions/backup.png -share/apps/kpilot/icons/hicolor/16x16/actions/fastsync.png -share/apps/kpilot/icons/hicolor/16x16/actions/hotsync.png -share/apps/kpilot/icons/hicolor/16x16/actions/restore.png -share/apps/kpilot/kpilotui.rc -share/autostart/alarmd.desktop -share/config/korganizerrc -share/doc/HTML/en/kandy/common -share/doc/HTML/en/kandy/index.cache.bz2 -share/doc/HTML/en/kandy/index.docbook -share/doc/HTML/en/korganizer/alarmd-panel.png -share/doc/HTML/en/korganizer/common -share/doc/HTML/en/korganizer/datenavigator.png -share/doc/HTML/en/korganizer/i_actions_new_event.png -share/doc/HTML/en/korganizer/i_copy.png -share/doc/HTML/en/korganizer/i_cut.png -share/doc/HTML/en/korganizer/i_edit_find.png -share/doc/HTML/en/korganizer/i_file_close.png -share/doc/HTML/en/korganizer/i_file_new.png -share/doc/HTML/en/korganizer/i_file_open.png -share/doc/HTML/en/korganizer/i_file_print.png -share/doc/HTML/en/korganizer/i_file_print_preview.png -share/doc/HTML/en/korganizer/i_file_quit.png -share/doc/HTML/en/korganizer/i_file_save.png -share/doc/HTML/en/korganizer/i_go_backward.png -share/doc/HTML/en/korganizer/i_go_forward.png -share/doc/HTML/en/korganizer/i_go_to_today.png -share/doc/HTML/en/korganizer/i_help_contents.png -share/doc/HTML/en/korganizer/i_paste.png -share/doc/HTML/en/korganizer/i_settings_prefs.png -share/doc/HTML/en/korganizer/i_view_day.png -share/doc/HTML/en/korganizer/i_view_list.png -share/doc/HTML/en/korganizer/i_view_month.png -share/doc/HTML/en/korganizer/i_view_todo_list.png -share/doc/HTML/en/korganizer/i_view_week.png -share/doc/HTML/en/korganizer/i_view_work_week.png -share/doc/HTML/en/korganizer/index.cache.bz2 -share/doc/HTML/en/korganizer/index.docbook -share/doc/HTML/en/korganizer/kagenda-appointment.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-popmail-kmail.png -share/doc/HTML/en/kpilot/conduit-popmail-recv-method.png -share/doc/HTML/en/kpilot/conduit-popmail-recv-pop.png -share/doc/HTML/en/kpilot/conduit-popmail-recv-unix.png -share/doc/HTML/en/kpilot/conduit-popmail-send-as.png -share/doc/HTML/en/kpilot/conduit-popmail-send-method.png -share/doc/HTML/en/kpilot/conduit-popmail-sendmail.png -share/doc/HTML/en/kpilot/conduit-popmail-smtp.png -share/doc/HTML/en/kpilot/conduit-popmail-top.png -share/doc/HTML/en/kpilot/conduit-vcal.png -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-sync.png -share/doc/HTML/en/kpilot/toolbar.png -share/doc/HTML/en/kpilot/toolbar_backup.png -share/doc/HTML/en/kpilot/toolbar_hotsync.png -share/icons/hicolor/16x16/apps/kandy.png -share/icons/hicolor/16x16/apps/korganizer.png -share/icons/hicolor/16x16/apps/kpilot.png -share/icons/hicolor/32x32/apps/kandy.png -share/icons/hicolor/32x32/apps/korganizer.png -share/icons/hicolor/32x32/apps/kpilot.png -share/icons/hicolor/48x48/apps/korganizer.png -share/icons/locolor/16x16/apps/kpilot.xpm -share/services/abbrowser_conduit.desktop -share/services/expense-conduit.desktop -share/services/knotes-conduit.desktop -share/services/null-conduit.desktop -share/services/popmail-conduit.desktop -share/services/todo-conduit.desktop -share/services/vcal-conduit.desktop -share/servicetypes/kpilotconduit.desktop -@dirrm share/icons/locolor/16x16/apps -@dirrm share/icons/locolor/16x16 -@dirrm share/icons/locolor -@dirrm share/icons/hicolor/48x48/apps -@dirrm share/icons/hicolor/32x32/apps -@dirrm share/doc/HTML/en/kpilot -@dirrm share/doc/HTML/en/korganizer -@dirrm share/doc/HTML/en/kandy -@dirrm share/autostart -@dirrm share/apps/kpilot/icons/hicolor/16x16/actions -@dirrm share/apps/kpilot/icons/hicolor/16x16 -@dirrm share/apps/kpilot/icons/hicolor -@dirrm share/apps/kpilot/icons -@dirrm share/apps/kpilot -@dirrm share/apps/korganizer/sounds -@dirrm share/apps/korganizer/icons/hicolor/32x32/actions -@dirrm share/apps/korganizer/icons/hicolor/32x32 -@dirrm share/apps/korganizer/icons/hicolor/22x22/actions/emptybox -@dirrm share/apps/korganizer/icons/hicolor/22x22/actions/checkedbox -@dirrm share/apps/korganizer/icons/hicolor/22x22/actions -@dirrm share/apps/korganizer/icons/hicolor/22x22 -@dirrm share/apps/korganizer/icons/hicolor/16x16/actions -@dirrm share/apps/korganizer/icons/hicolor/16x16 -@dirrm share/apps/korganizer/icons/hicolor -@dirrm share/apps/korganizer/icons -@dirrm share/apps/korganizer -@dirrm share/apps/kgantt/icons/hicolor/32x32/actions -@dirrm share/apps/kgantt/icons/hicolor/32x32 -@dirrm share/apps/kgantt/icons/hicolor/22x22/actions -@dirrm share/apps/kgantt/icons/hicolor/22x22 -@dirrm share/apps/kgantt/icons/hicolor/16x16/actions -@dirrm share/apps/kgantt/icons/hicolor/16x16 -@dirrm share/apps/kgantt/icons/hicolor -@dirrm share/apps/kgantt/icons -@dirrm share/apps/kgantt -@dirrm share/apps/kandy -@dirrm share/applnk/Utilities -@dirrm share/applnk/Applications -@dirrm share/applnk -@dirrm include/rmm -@dirrm include/kgantt diff --git a/devel/kdesdk/Makefile b/devel/kdesdk/Makefile deleted file mode 100644 index 87991f2..0000000 --- a/devel/kdesdk/Makefile +++ /dev/null @@ -1,49 +0,0 @@ -# New ports collection makefile for: KDE SDK -# Date created: 2 March 2001 -# Whom: Dmitry Sivachenko <demon@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= kdesdk -PORTVERSION= 2.2.2 -CATEGORIES= devel kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= Attic/${PORTVERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 -LIB_DEPENDS= db2.0:${PORTSDIR}/databases/db2 - -USE_KDEBASE_VER=2 -USE_BZIP2= yes -GNU_CONFIGURE= yes - -.include <bsd.port.pre.mk> -.if ${OSVERSION} >= 500029 -_NO_KDE_OBJPRELINK=yes -.endif - -.include "${.CURDIR}/../../x11/kde2/Makefile.kde" - -USE_GMAKE= yes -INSTALLS_SHLIB= yes -LDCONFIG_DIRS= %%PREFIX%%/lib %%PREFIX%%/lib/kde2 - -MAN1= cvs2pack.1 cvschanged.1 cvsversion.1 noncvslist.1 kde-build.1 - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - cd ${WRKSRC} && env PATH=${WRKSRC}/auto-bin:$$PATH \ - ${GMAKE} -f Makefile.cvs - -.include <bsd.port.post.mk> diff --git a/devel/kdesdk/distinfo b/devel/kdesdk/distinfo deleted file mode 100644 index 9170412..0000000 --- a/devel/kdesdk/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/kdesdk-2.2.2.tar.bz2) = f8080a3269a99f0c22a55ad9cab0682d diff --git a/devel/kdesdk/files/patch-aa b/devel/kdesdk/files/patch-aa deleted file mode 100644 index 2d65987..0000000 --- a/devel/kdesdk/files/patch-aa +++ /dev/null @@ -1,27 +0,0 @@ ---- kbabel/common/libgettext/xmalloc.c.orig Tue Aug 21 11:08:13 2001 -+++ kbabel/common/libgettext/xmalloc.c Tue Aug 21 11:09:28 2001 -@@ -26,6 +26,7 @@ - #endif - - #include <sys/types.h> -+#include <err.h> - - #if STDC_HEADERS - # include <stdlib.h> -@@ -61,7 +62,6 @@ - The caller may set it to some other value. */ - int xmalloc_exit_failure = EXIT_FAILURE; - --void error (int, int, const char *, ...); - - static VOID * - fixup_null_alloc (n) -@@ -73,7 +73,7 @@ - if (n == 0) - p = malloc ((size_t) 1); - if (p == 0) -- error (xmalloc_exit_failure, 0, _("Memory exhausted")); -+ err (xmalloc_exit_failure, "Memory exhausted"); - return p; - } - diff --git a/devel/kdesdk/files/patch-kstartperf-libkstartperf.c b/devel/kdesdk/files/patch-kstartperf-libkstartperf.c deleted file mode 100644 index 8ffcc6b..0000000 --- a/devel/kdesdk/files/patch-kstartperf-libkstartperf.c +++ /dev/null @@ -1,11 +0,0 @@ - ---- kstartperf/libkstartperf.c.orig Tue Dec 11 15:13:51 2001 -+++ kstartperf/libkstartperf.c Tue Dec 11 15:13:55 2001 -@@ -13,7 +13,6 @@ - * (C) 2000 Bill Soudan <soudan@kde.org> - */ - --#include <malloc.h> - #include <unistd.h> - #include <stdlib.h> - #include <stdio.h> diff --git a/devel/kdesdk/pkg-comment b/devel/kdesdk/pkg-comment deleted file mode 100644 index 5045473..0000000 --- a/devel/kdesdk/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -KDE Software Development Kit diff --git a/devel/kdesdk/pkg-descr b/devel/kdesdk/pkg-descr deleted file mode 100644 index 53d4824..0000000 --- a/devel/kdesdk/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This is a collection of applications and tools used by KDE developers. -It also has example code for use in learning KDE programming or starting -a new KDE application. diff --git a/devel/kdesdk/pkg-plist b/devel/kdesdk/pkg-plist deleted file mode 100644 index 1156d82..0000000 --- a/devel/kdesdk/pkg-plist +++ /dev/null @@ -1,246 +0,0 @@ -bin/adddebug -bin/create_makefile -bin/create_makefiles -bin/cvs2pack -bin/cvschanged -bin/cvslastchange -bin/cvslastlog -bin/cvsversion -bin/cxxmetric -bin/extend_dmalloc -bin/extractmsg -bin/extractrc -bin/fixsgml -bin/gendebug -bin/includemocs -bin/kbabel -bin/kbabeldict -bin/kde-build -bin/kdedoc -bin/kdekillall -bin/kdelnk2desktop.py -bin/kless -bin/kstartperf -bin/licensecheck -bin/makeobj -bin/noncvslist -bin/po2xml -bin/pruneemptydirs -bin/qtdoc -bin/split2po -bin/swappo -bin/xml2pot -include/kbabel/catalog.h -include/kbabel/catalogitem.h -include/kbabel/catalogsettings.h -include/kbabel/catalogview.h -include/kbabel/dictchooser.h -include/kbabel/dictionarymenu.h -include/kbabel/editcmd.h -include/kbabel/findoptions.h -include/kbabel/kbabeldictbox.h -include/kbabel/kbabeldictiface.h -include/kbabel/msgfmt.h -include/kbabel/searchengine.h -include/kbabel/tagextractor.h -include/kspy.h -lib/kde2/libdbsearchengine.la -lib/kde2/libdbsearchengine.so -lib/kde2/libpoauxiliary.la -lib/kde2/libpoauxiliary.so -lib/kde2/libpocompendium.la -lib/kde2/libpocompendium.so -lib/kde2/pothumbnail.la -lib/kde2/pothumbnail.so -lib/libkbabel.la -lib/libkbabel.so -lib/libkbabel.so.1 -lib/libkbabelcommon.la -lib/libkbabelcommon.so -lib/libkbabelcommon.so.1 -lib/libkbabeldict.la -lib/libkbabeldict.so -lib/libkbabeldict.so.1 -lib/libkbabeldictplugin.la -lib/libkbabeldictplugin.so -lib/libkbabeldictplugin.so.1 -lib/libkspy.la -lib/libkspy.so -lib/libkspy.so.1 -lib/libkstartperf.la -lib/libkstartperf.so -lib/libkstartperf.so.1 -share/applnk/Development/kbabel.desktop -share/applnk/Development/kbabeldict.desktop -share/applnk/Utilities/kless.desktop -share/apps/kbabel/icons/hicolor/16x16/actions/autodiff.png -share/apps/kbabel/icons/hicolor/16x16/actions/catalogmanager.png -share/apps/kbabel/icons/hicolor/16x16/actions/diff.png -share/apps/kbabel/icons/hicolor/16x16/actions/insert_tag.png -share/apps/kbabel/icons/hicolor/16x16/actions/msgid2msgstr.png -share/apps/kbabel/icons/hicolor/16x16/actions/nexterror.png -share/apps/kbabel/icons/hicolor/16x16/actions/nextfuzzy.png -share/apps/kbabel/icons/hicolor/16x16/actions/nextfuzzyuntrans.png -share/apps/kbabel/icons/hicolor/16x16/actions/nextuntranslated.png -share/apps/kbabel/icons/hicolor/16x16/actions/preverror.png -share/apps/kbabel/icons/hicolor/16x16/actions/prevfuzzy.png -share/apps/kbabel/icons/hicolor/16x16/actions/prevfuzzyuntrans.png -share/apps/kbabel/icons/hicolor/16x16/actions/prevuntranslated.png -share/apps/kbabel/icons/hicolor/16x16/actions/search2msgstr.png -share/apps/kbabel/icons/hicolor/16x16/actions/transsearch.png -share/apps/kbabel/icons/hicolor/22x22/actions/autodiff.png -share/apps/kbabel/icons/hicolor/22x22/actions/catalogmanager.png -share/apps/kbabel/icons/hicolor/22x22/actions/diff.png -share/apps/kbabel/icons/hicolor/22x22/actions/insert_tag.png -share/apps/kbabel/icons/hicolor/22x22/actions/msgid2msgstr.png -share/apps/kbabel/icons/hicolor/22x22/actions/nexterror.png -share/apps/kbabel/icons/hicolor/22x22/actions/nextfuzzy.png -share/apps/kbabel/icons/hicolor/22x22/actions/nextfuzzyuntrans.png -share/apps/kbabel/icons/hicolor/22x22/actions/nextuntranslated.png -share/apps/kbabel/icons/hicolor/22x22/actions/preverror.png -share/apps/kbabel/icons/hicolor/22x22/actions/prevfuzzy.png -share/apps/kbabel/icons/hicolor/22x22/actions/prevfuzzyuntrans.png -share/apps/kbabel/icons/hicolor/22x22/actions/prevuntranslated.png -share/apps/kbabel/icons/hicolor/22x22/actions/search2msgstr.png -share/apps/kbabel/icons/hicolor/22x22/actions/transsearch.png -share/apps/kbabel/icons/hicolor/32x32/actions/autodiff.png -share/apps/kbabel/icons/hicolor/32x32/actions/catalogmanager.png -share/apps/kbabel/icons/hicolor/32x32/actions/diff.png -share/apps/kbabel/icons/hicolor/32x32/actions/insert_tag.png -share/apps/kbabel/icons/hicolor/32x32/actions/msgid2msgstr.png -share/apps/kbabel/icons/hicolor/32x32/actions/nexterror.png -share/apps/kbabel/icons/hicolor/32x32/actions/nextfuzzy.png -share/apps/kbabel/icons/hicolor/32x32/actions/nextfuzzyuntrans.png -share/apps/kbabel/icons/hicolor/32x32/actions/nextuntranslated.png -share/apps/kbabel/icons/hicolor/32x32/actions/preverror.png -share/apps/kbabel/icons/hicolor/32x32/actions/prevfuzzy.png -share/apps/kbabel/icons/hicolor/32x32/actions/prevfuzzyuntrans.png -share/apps/kbabel/icons/hicolor/32x32/actions/prevuntranslated.png -share/apps/kbabel/icons/hicolor/32x32/actions/search2msgstr.png -share/apps/kbabel/icons/hicolor/32x32/actions/transsearch.png -share/apps/kbabel/icons/locolor/16x16/actions/autodiff.png -share/apps/kbabel/icons/locolor/16x16/actions/catalogmanager.png -share/apps/kbabel/icons/locolor/16x16/actions/diff.png -share/apps/kbabel/icons/locolor/16x16/actions/insert_tag.png -share/apps/kbabel/icons/locolor/16x16/actions/msgid2msgstr.png -share/apps/kbabel/icons/locolor/16x16/actions/nexterror.png -share/apps/kbabel/icons/locolor/16x16/actions/nextfuzzy.png -share/apps/kbabel/icons/locolor/16x16/actions/nextfuzzyuntrans.png -share/apps/kbabel/icons/locolor/16x16/actions/nextuntranslated.png -share/apps/kbabel/icons/locolor/16x16/actions/preverror.png -share/apps/kbabel/icons/locolor/16x16/actions/prevfuzzy.png -share/apps/kbabel/icons/locolor/16x16/actions/prevfuzzyuntrans.png -share/apps/kbabel/icons/locolor/16x16/actions/prevuntranslated.png -share/apps/kbabel/icons/locolor/16x16/actions/search2msgstr.png -share/apps/kbabel/icons/locolor/16x16/actions/transsearch.png -share/apps/kbabel/icons/locolor/32x32/actions/autodiff.png -share/apps/kbabel/icons/locolor/32x32/actions/catalogmanager.png -share/apps/kbabel/icons/locolor/32x32/actions/diff.png -share/apps/kbabel/icons/locolor/32x32/actions/insert_tag.png -share/apps/kbabel/icons/locolor/32x32/actions/msgid2msgstr.png -share/apps/kbabel/icons/locolor/32x32/actions/nexterror.png -share/apps/kbabel/icons/locolor/32x32/actions/nextfuzzy.png -share/apps/kbabel/icons/locolor/32x32/actions/nextfuzzyuntrans.png -share/apps/kbabel/icons/locolor/32x32/actions/nextuntranslated.png -share/apps/kbabel/icons/locolor/32x32/actions/preverror.png -share/apps/kbabel/icons/locolor/32x32/actions/prevfuzzy.png -share/apps/kbabel/icons/locolor/32x32/actions/prevfuzzyuntrans.png -share/apps/kbabel/icons/locolor/32x32/actions/prevuntranslated.png -share/apps/kbabel/icons/locolor/32x32/actions/search2msgstr.png -share/apps/kbabel/icons/locolor/32x32/actions/transsearch.png -share/apps/kbabel/kbabelui.rc -share/apps/kbabel/pics/broken.png -share/apps/kbabel/pics/missing.png -share/apps/kbabel/pics/needwork.png -share/apps/kbabel/pics/ok.png -share/apps/kbabel/pics/pref_identity.png -share/apps/kbabel/pics/splash.png -share/apps/kbabeldict/modules/dbsearchengine.rc -share/apps/kbabeldict/modules/poauxiliary.rc -share/apps/kbabeldict/modules/pocompendium.rc -share/doc/HTML/en/kbabel/back.png -share/doc/HTML/en/kbabel/bottom.png -share/doc/HTML/en/kbabel/catalogmanager.png -share/doc/HTML/en/kbabel/catalogmanager_broken.png -share/doc/HTML/en/kbabel/catalogmanager_missing.png -share/doc/HTML/en/kbabel/catalogmanager_needwork.png -share/doc/HTML/en/kbabel/catalogmanager_nopot.png -share/doc/HTML/en/kbabel/catalogmanager_nopot_ok.png -share/doc/HTML/en/kbabel/catalogmanager_ok.png -share/doc/HTML/en/kbabel/common -share/doc/HTML/en/kbabel/editcopy.png -share/doc/HTML/en/kbabel/editcut.png -share/doc/HTML/en/kbabel/editpaste.png -share/doc/HTML/en/kbabel/fileopen.png -share/doc/HTML/en/kbabel/filesave.png -share/doc/HTML/en/kbabel/find.png -share/doc/HTML/en/kbabel/forward.png -share/doc/HTML/en/kbabel/index.cache.bz2 -share/doc/HTML/en/kbabel/index.docbook -share/doc/HTML/en/kbabel/insert_tag.png -share/doc/HTML/en/kbabel/missing.png -share/doc/HTML/en/kbabel/msgid2msgstr.png -share/doc/HTML/en/kbabel/needwork.png -share/doc/HTML/en/kbabel/next.png -share/doc/HTML/en/kbabel/nexterror.png -share/doc/HTML/en/kbabel/nextfuzzy.png -share/doc/HTML/en/kbabel/nextfuzzyuntrans.png -share/doc/HTML/en/kbabel/nextuntranslated.png -share/doc/HTML/en/kbabel/ok.png -share/doc/HTML/en/kbabel/preverror.png -share/doc/HTML/en/kbabel/prevfuzzy.png -share/doc/HTML/en/kbabel/prevfuzzyuntrans.png -share/doc/HTML/en/kbabel/previous.png -share/doc/HTML/en/kbabel/prevuntranslated.png -share/doc/HTML/en/kbabel/redo.png -share/doc/HTML/en/kbabel/search2msgstr.png -share/doc/HTML/en/kbabel/snap1.png -share/doc/HTML/en/kbabel/snap_catalogmanager.png -share/doc/HTML/en/kbabel/spellcheck.png -share/doc/HTML/en/kbabel/stop.png -share/doc/HTML/en/kbabel/top.png -share/doc/HTML/en/kbabel/transsearch.png -share/doc/HTML/en/kbabel/undo.png -share/doc/HTML/en/markup/common -share/doc/HTML/en/markup/index.cache.bz2 -share/doc/HTML/en/markup/index.docbook -share/icons/hicolor/16x16/apps/kbabel.png -share/icons/hicolor/16x16/apps/kbabeldict.png -share/icons/hicolor/16x16/mimetypes/gettext.png -share/icons/hicolor/32x32/apps/kbabel.png -share/icons/hicolor/32x32/apps/kbabeldict.png -share/icons/hicolor/32x32/mimetypes/gettext.png -share/icons/hicolor/48x48/apps/kbabel.png -share/icons/hicolor/48x48/mimetypes/gettext.png -share/icons/locolor/16x16/apps/kbabel.png -share/icons/locolor/16x16/apps/kbabeldict.png -share/icons/locolor/16x16/apps/kless.png -share/icons/locolor/16x16/mimetypes/gettext.png -share/icons/locolor/32x32/apps/kbabel.png -share/icons/locolor/32x32/apps/kbabeldict.png -share/icons/locolor/32x32/apps/kless.png -share/icons/locolor/32x32/mimetypes/gettext.png -share/mimelnk/application/x-gettext.desktop -share/services/pothumbnail.desktop -@dirrm share/icons/locolor/32x32/mimetypes -@dirrm share/icons/locolor/16x16/mimetypes -@dirrm share/doc/HTML/en/markup -@dirrm share/doc/HTML/en/kbabel -@dirrm share/apps/kbabeldict/modules -@dirrm share/apps/kbabeldict -@dirrm share/apps/kbabel/pics -@dirrm share/apps/kbabel/icons/locolor/32x32/actions -@dirrm share/apps/kbabel/icons/locolor/32x32 -@dirrm share/apps/kbabel/icons/locolor/16x16/actions -@dirrm share/apps/kbabel/icons/locolor/16x16 -@dirrm share/apps/kbabel/icons/locolor -@dirrm share/apps/kbabel/icons/hicolor/32x32/actions -@dirrm share/apps/kbabel/icons/hicolor/32x32 -@dirrm share/apps/kbabel/icons/hicolor/22x22/actions -@dirrm share/apps/kbabel/icons/hicolor/22x22 -@dirrm share/apps/kbabel/icons/hicolor/16x16/actions -@dirrm share/apps/kbabel/icons/hicolor/16x16 -@dirrm share/apps/kbabel/icons/hicolor -@dirrm share/apps/kbabel/icons -@dirrm share/apps/kbabel -@dirrm include/kbabel diff --git a/devel/kdestudio/Makefile b/devel/kdestudio/Makefile deleted file mode 100644 index c8fcfa1..0000000 --- a/devel/kdestudio/Makefile +++ /dev/null @@ -1,24 +0,0 @@ -# New ports collection makefile for: kdestudio -# Date created: Tuesday January 16, 2001 -# Whom: Trenton Schulz -# -# $FreeBSD$ -# - -PORTNAME= kdestudio -PORTVERSION= 2.0.0 -CATEGORIES= devel kde -MASTER_SITES= ftp://ftp.thekompany.com/pub/KDE_Studio/source/ \ - http://gauss.cord.edu/homepages/twschulz/demo/ - -MAINTAINER= twschulz@cord.edu - -USE_KDELIBS_VER=2 -USE_GMAKE= yes -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes - -pre-configure: - @/usr/bin/find ${WRKSRC} -name Makefile.in | /usr/bin/xargs ${PERL} -pi -e "s/CXXFLAGS = -O2 -Wall/#CXXFLAGS = do not touch me/" - -.include <bsd.port.mk> diff --git a/devel/kdestudio/distinfo b/devel/kdestudio/distinfo deleted file mode 100644 index cc172c8..0000000 --- a/devel/kdestudio/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (kdestudio-2.0.0.tar.gz) = 0ed3bf76700bdca5dc2cb8b7d7cd78bf diff --git a/devel/kdestudio/files/patch-RTClassParser b/devel/kdestudio/files/patch-RTClassParser deleted file mode 100644 index 9e16197..0000000 --- a/devel/kdestudio/files/patch-RTClassParser +++ /dev/null @@ -1,11 +0,0 @@ ---- Plugins/RTClassParser/parser/entry.h.orig Tue Mar 6 16:43:16 2001 -+++ Plugins/RTClassParser/parser/entry.h Tue Mar 6 16:43:38 2001 -@@ -1,6 +1,8 @@ - #ifndef _ENTRY_H - #define _ENTRY_H - -+#include <sys/types.h> -+ - #include <stdio.h> - - #include "ctags.h" diff --git a/devel/kdestudio/files/patch-aa b/devel/kdestudio/files/patch-aa deleted file mode 100644 index a2ec1c7..0000000 --- a/devel/kdestudio/files/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ ---- src/studio/Makefile.in.orig Thu Nov 16 02:13:34 2000 -+++ src/studio/Makefile.in Tue Mar 6 16:10:37 2001 -@@ -201,7 +201,7 @@ - bin_PROGRAMS = studio - - studio_LDFLAGS = $(all_libraries) --studio_LDADD = $(top_srcdir)/src/studiocore/libstudiocore.la -lX11 $ -lz -lpng -lz -lm -ljpeg -lqt $ $ -lXext $ $ -lkdecore -lkdeui -ltiff -ljpeg -lz -lfl -ldl -lkfile -lkhtml -lkparts -+studio_LDADD = $(top_srcdir)/src/studiocore/libstudiocore.la -lX11 $ -lz -lpng -lz -lm -ljpeg -lqt2 $ $ -lXext $ $ -lkdecore -lkdeui -ltiff -ljpeg -lz -lfl -lkfile -lkhtml -lkparts - - LDFLAGS = -s - INCLUDES = $(all_includes) -I$(top_srcdir)/src/PluginsManager -I$(top_srcdir)/src/studiocore diff --git a/devel/kdestudio/pkg-comment b/devel/kdestudio/pkg-comment deleted file mode 100644 index 420e314..0000000 --- a/devel/kdestudio/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Powerful Development Tool for K Desktop Environment diff --git a/devel/kdestudio/pkg-descr b/devel/kdestudio/pkg-descr deleted file mode 100644 index 3c99f8b..0000000 --- a/devel/kdestudio/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -KDE Studio is an IDE (integrated development environment) for the -K Desktop Environment (KDE). - -WWW: http://www.thekompany.com/projects/kdestudio/ diff --git a/devel/kdestudio/pkg-message b/devel/kdestudio/pkg-message deleted file mode 100644 index 92723a3..0000000 --- a/devel/kdestudio/pkg-message +++ /dev/null @@ -1,17 +0,0 @@ -***************************************************** - The following ports are optional, but the suggested - programs to compliment KDevelop. - You may come to want these ports, If you've not - installed them yet. - - - devel/automake - - devel/c_c++_reference - - devel/kdbg - - devel/kdelibdocs - - devel/ktranslator - - graphics/kdegraphics2 - - textproc/glimpse - - print/a2ps-* - - print/enscript-* - -***************************************************** diff --git a/devel/kdestudio/pkg-plist b/devel/kdestudio/pkg-plist deleted file mode 100644 index 19fc34d..0000000 --- a/devel/kdestudio/pkg-plist +++ /dev/null @@ -1,407 +0,0 @@ -bin/studio -lib/libstudiocore.la -lib/libstudiocore.so -lib/libstudiocore.so.0 -lib/kdestudio/plugins/libRTClassParser.la -lib/kdestudio/plugins/libRTClassParser.so -lib/kdestudio/plugins/libRTClassParser.so.0 -lib/kdestudio/plugins/libBookmarkGlobal.la -lib/kdestudio/plugins/libBookmarkGlobal.so -lib/kdestudio/plugins/libBookmarkGlobal.so.0 -lib/kdestudio/plugins/libBookmark.la -lib/kdestudio/plugins/libBookmark.so -lib/kdestudio/plugins/libBookmark.so.0 -share/applnk/Development/studio.desktop -share/apps/studio/icons/hicolor/48x48/actions/add_existing_file.png -share/apps/studio/icons/hicolor/48x48/actions/add_new_file.png -share/apps/studio/icons/hicolor/48x48/actions/bookmarks_hide.png -share/apps/studio/icons/hicolor/48x48/actions/bookmarks_show.png -share/apps/studio/icons/hicolor/48x48/actions/class_explorer.png -share/apps/studio/icons/hicolor/48x48/actions/class_explorer_hide.png -share/apps/studio/icons/hicolor/48x48/actions/class_explorer_show.png -share/apps/studio/icons/hicolor/48x48/actions/editcopy.png -share/apps/studio/icons/hicolor/48x48/actions/editor.png -share/apps/studio/icons/hicolor/48x48/actions/editor_hide.png -share/apps/studio/icons/hicolor/48x48/actions/editor_show.png -share/apps/studio/icons/hicolor/48x48/actions/editpaste.png -share/apps/studio/icons/hicolor/48x48/actions/filesave.png -share/apps/studio/icons/hicolor/48x48/actions/filesaveall.png -share/apps/studio/icons/hicolor/48x48/actions/find.png -share/apps/studio/icons/hicolor/48x48/actions/find_hide.png -share/apps/studio/icons/hicolor/48x48/actions/find_in_file.png -share/apps/studio/icons/hicolor/48x48/actions/find_show.png -share/apps/studio/icons/hicolor/48x48/actions/goto_line.png -share/apps/studio/icons/hicolor/48x48/actions/kode.png -share/apps/studio/icons/hicolor/48x48/actions/make.png -share/apps/studio/icons/hicolor/48x48/actions/make_clean.png -share/apps/studio/icons/hicolor/48x48/actions/make_distclean.png -share/apps/studio/icons/hicolor/48x48/actions/make_distribution.png -share/apps/studio/icons/hicolor/48x48/actions/make_hide.png -share/apps/studio/icons/hicolor/48x48/actions/make_install.png -share/apps/studio/icons/hicolor/48x48/actions/make_show.png -share/apps/studio/icons/hicolor/48x48/actions/new_project.png -share/apps/studio/icons/hicolor/48x48/actions/new_workspace.png -share/apps/studio/icons/hicolor/48x48/actions/open_project.png -share/apps/studio/icons/hicolor/48x48/actions/open_workspace.png -share/apps/studio/icons/hicolor/48x48/actions/project_manager.png -share/apps/studio/icons/hicolor/48x48/actions/project_manager_hide.png -share/apps/studio/icons/hicolor/48x48/actions/project_manager_show.png -share/apps/studio/icons/hicolor/48x48/actions/replace.png -share/apps/studio/icons/hicolor/48x48/actions/run.png -share/apps/studio/icons/hicolor/48x48/actions/run_error_hide.png -share/apps/studio/icons/hicolor/48x48/actions/run_error_show.png -share/apps/studio/icons/hicolor/48x48/actions/run_hide.png -share/apps/studio/icons/hicolor/48x48/actions/run_show.png -share/apps/studio/icons/hicolor/48x48/actions/studio.png -share/apps/studio/icons/hicolor/48x48/actions/AM_edit.png -share/apps/studio/icons/hicolor/48x48/actions/KDEStudio.png -share/apps/studio/icons/hicolor/48x48/actions/KDEStudio_setup.png -share/apps/studio/icons/hicolor/48x48/actions/back.png -share/apps/studio/icons/hicolor/48x48/actions/back_inactive.png -share/apps/studio/icons/hicolor/48x48/actions/close.png -share/apps/studio/icons/hicolor/48x48/actions/configure_keys.png -share/apps/studio/icons/hicolor/48x48/actions/editcut.png -share/apps/studio/icons/hicolor/48x48/actions/editor_color.png -share/apps/studio/icons/hicolor/48x48/actions/editor_defaults.png -share/apps/studio/icons/hicolor/48x48/actions/editor_highlighting.png -share/apps/studio/icons/hicolor/48x48/actions/editor_options.png -share/apps/studio/icons/hicolor/48x48/actions/exit.png -share/apps/studio/icons/hicolor/48x48/actions/fileopen.png -share/apps/studio/icons/hicolor/48x48/actions/forward.png -share/apps/studio/icons/hicolor/48x48/actions/forward_inactive.png -share/apps/studio/icons/hicolor/48x48/actions/indent.png -share/apps/studio/icons/hicolor/48x48/actions/make_uninstall.png -share/apps/studio/icons/hicolor/48x48/actions/options.png -share/apps/studio/icons/hicolor/48x48/actions/reconfigure.png -share/apps/studio/icons/hicolor/48x48/actions/redo.png -share/apps/studio/icons/hicolor/48x48/actions/search_again.png -share/apps/studio/icons/hicolor/48x48/actions/select_all.png -share/apps/studio/icons/hicolor/48x48/actions/single.png -share/apps/studio/icons/hicolor/48x48/actions/split_horizontal.png -share/apps/studio/icons/hicolor/48x48/actions/split_vertical.png -share/apps/studio/icons/hicolor/48x48/actions/stop.png -share/apps/studio/icons/hicolor/48x48/actions/undo.png -share/apps/studio/icons/hicolor/48x48/actions/unindent.png -share/apps/studio/icons/hicolor/48x48/actions/update_all_makefile.png -share/apps/studio/icons/hicolor/32x32/actions/add_existing_file.png -share/apps/studio/icons/hicolor/32x32/actions/add_new_file.png -share/apps/studio/icons/hicolor/32x32/actions/back.png -share/apps/studio/icons/hicolor/32x32/actions/back_inactive.png -share/apps/studio/icons/hicolor/32x32/actions/bookmarks_hide.png -share/apps/studio/icons/hicolor/32x32/actions/bookmarks_show.png -share/apps/studio/icons/hicolor/32x32/actions/class_explorer.png -share/apps/studio/icons/hicolor/32x32/actions/class_explorer_hide.png -share/apps/studio/icons/hicolor/32x32/actions/class_explorer_show.png -share/apps/studio/icons/hicolor/32x32/actions/edit_delete.png -share/apps/studio/icons/hicolor/32x32/actions/editcopy.png -share/apps/studio/icons/hicolor/32x32/actions/editcut.png -share/apps/studio/icons/hicolor/32x32/actions/editor.png -share/apps/studio/icons/hicolor/32x32/actions/editor_hide.png -share/apps/studio/icons/hicolor/32x32/actions/editor_show.png -share/apps/studio/icons/hicolor/32x32/actions/editpaste.png -share/apps/studio/icons/hicolor/32x32/actions/exit.png -share/apps/studio/icons/hicolor/32x32/actions/fileclose.png -share/apps/studio/icons/hicolor/32x32/actions/filenew.png -share/apps/studio/icons/hicolor/32x32/actions/filesave.png -share/apps/studio/icons/hicolor/32x32/actions/filesaveall.png -share/apps/studio/icons/hicolor/32x32/actions/find.png -share/apps/studio/icons/hicolor/32x32/actions/find_hide.png -share/apps/studio/icons/hicolor/32x32/actions/find_in_file.png -share/apps/studio/icons/hicolor/32x32/actions/find_show.png -share/apps/studio/icons/hicolor/32x32/actions/finish_inactive.png -share/apps/studio/icons/hicolor/32x32/actions/forward.png -share/apps/studio/icons/hicolor/32x32/actions/forward_inactive.png -share/apps/studio/icons/hicolor/32x32/actions/goto_line.png -share/apps/studio/icons/hicolor/32x32/actions/kode.png -share/apps/studio/icons/hicolor/32x32/actions/make.png -share/apps/studio/icons/hicolor/32x32/actions/make_clean.png -share/apps/studio/icons/hicolor/32x32/actions/make_distclean.png -share/apps/studio/icons/hicolor/32x32/actions/make_distribution.png -share/apps/studio/icons/hicolor/32x32/actions/make_hide.png -share/apps/studio/icons/hicolor/32x32/actions/make_install.png -share/apps/studio/icons/hicolor/32x32/actions/make_show.png -share/apps/studio/icons/hicolor/32x32/actions/new_project.png -share/apps/studio/icons/hicolor/32x32/actions/new_workspace.png -share/apps/studio/icons/hicolor/32x32/actions/open_project.png -share/apps/studio/icons/hicolor/32x32/actions/open_workspace.png -share/apps/studio/icons/hicolor/32x32/actions/project_manager.png -share/apps/studio/icons/hicolor/32x32/actions/project_manager_hide.png -share/apps/studio/icons/hicolor/32x32/actions/project_manager_show.png -share/apps/studio/icons/hicolor/32x32/actions/redo.png -share/apps/studio/icons/hicolor/32x32/actions/replace.png -share/apps/studio/icons/hicolor/32x32/actions/run.png -share/apps/studio/icons/hicolor/32x32/actions/run_error_hide.png -share/apps/studio/icons/hicolor/32x32/actions/run_error_show.png -share/apps/studio/icons/hicolor/32x32/actions/run_hide.png -share/apps/studio/icons/hicolor/32x32/actions/run_show.png -share/apps/studio/icons/hicolor/32x32/actions/stop.png -share/apps/studio/icons/hicolor/32x32/actions/view_left_right.png -share/apps/studio/icons/hicolor/32x32/actions/view_top_bottom.png -share/apps/studio/icons/hicolor/32x32/actions/studio.png -share/apps/studio/icons/hicolor/32x32/actions/AM_edit.png -share/apps/studio/icons/hicolor/32x32/actions/KDEStudio.png -share/apps/studio/icons/hicolor/32x32/actions/KDEStudio_setup.png -share/apps/studio/icons/hicolor/32x32/actions/configure_keys.png -share/apps/studio/icons/hicolor/32x32/actions/editor_color.png -share/apps/studio/icons/hicolor/32x32/actions/editor_defaults.png -share/apps/studio/icons/hicolor/32x32/actions/editor_highlighting.png -share/apps/studio/icons/hicolor/32x32/actions/editor_options.png -share/apps/studio/icons/hicolor/32x32/actions/indent.png -share/apps/studio/icons/hicolor/32x32/actions/make_uninstall.png -share/apps/studio/icons/hicolor/32x32/actions/options.png -share/apps/studio/icons/hicolor/32x32/actions/reconfigure.png -share/apps/studio/icons/hicolor/32x32/actions/search_again.png -share/apps/studio/icons/hicolor/32x32/actions/select_all.png -share/apps/studio/icons/hicolor/32x32/actions/single.png -share/apps/studio/icons/hicolor/32x32/actions/split_horizontal.png -share/apps/studio/icons/hicolor/32x32/actions/split_vertical.png -share/apps/studio/icons/hicolor/32x32/actions/undo.png -share/apps/studio/icons/hicolor/32x32/actions/unindent.png -share/apps/studio/icons/hicolor/32x32/actions/update_all_makefile.png -share/apps/studio/icons/locolor/22x22/actions/add_existing_file.png -share/apps/studio/icons/locolor/22x22/actions/add_new_file.png -share/apps/studio/icons/locolor/22x22/actions/back.png -share/apps/studio/icons/locolor/22x22/actions/back_inactive.png -share/apps/studio/icons/locolor/22x22/actions/bookmarks_hide.png -share/apps/studio/icons/locolor/22x22/actions/bookmarks_show.png -share/apps/studio/icons/locolor/22x22/actions/class_explorer.png -share/apps/studio/icons/locolor/22x22/actions/class_explorer_hide.png -share/apps/studio/icons/locolor/22x22/actions/class_explorer_show.png -share/apps/studio/icons/locolor/22x22/actions/editcopy.png -share/apps/studio/icons/locolor/22x22/actions/editcut.png -share/apps/studio/icons/locolor/22x22/actions/editdelete.png -share/apps/studio/icons/locolor/22x22/actions/editor.png -share/apps/studio/icons/locolor/22x22/actions/editor_hide.png -share/apps/studio/icons/locolor/22x22/actions/editor_show.png -share/apps/studio/icons/locolor/22x22/actions/editpaste.png -share/apps/studio/icons/locolor/22x22/actions/exit.png -share/apps/studio/icons/locolor/22x22/actions/fileclose.png -share/apps/studio/icons/locolor/22x22/actions/filesave.png -share/apps/studio/icons/locolor/22x22/actions/filesaveall.png -share/apps/studio/icons/locolor/22x22/actions/find.png -share/apps/studio/icons/locolor/22x22/actions/find_hide.png -share/apps/studio/icons/locolor/22x22/actions/find_in_file.png -share/apps/studio/icons/locolor/22x22/actions/find_show.png -share/apps/studio/icons/locolor/22x22/actions/forward.png -share/apps/studio/icons/locolor/22x22/actions/forward_inactive.png -share/apps/studio/icons/locolor/22x22/actions/goto_line.png -share/apps/studio/icons/locolor/22x22/actions/kode.png -share/apps/studio/icons/locolor/22x22/actions/make.png -share/apps/studio/icons/locolor/22x22/actions/make_clean.png -share/apps/studio/icons/locolor/22x22/actions/make_distclean.png -share/apps/studio/icons/locolor/22x22/actions/make_distribution.png -share/apps/studio/icons/locolor/22x22/actions/make_hide.png -share/apps/studio/icons/locolor/22x22/actions/make_install.png -share/apps/studio/icons/locolor/22x22/actions/make_show.png -share/apps/studio/icons/locolor/22x22/actions/new_project.png -share/apps/studio/icons/locolor/22x22/actions/new_workspace.png -share/apps/studio/icons/locolor/22x22/actions/open_project.png -share/apps/studio/icons/locolor/22x22/actions/open_workspace.png -share/apps/studio/icons/locolor/22x22/actions/project_manager.png -share/apps/studio/icons/locolor/22x22/actions/project_manager_hide.png -share/apps/studio/icons/locolor/22x22/actions/project_manager_show.png -share/apps/studio/icons/locolor/22x22/actions/redo.png -share/apps/studio/icons/locolor/22x22/actions/replace.png -share/apps/studio/icons/locolor/22x22/actions/run.png -share/apps/studio/icons/locolor/22x22/actions/run_error_hide.png -share/apps/studio/icons/locolor/22x22/actions/run_error_show.png -share/apps/studio/icons/locolor/22x22/actions/run_hide.png -share/apps/studio/icons/locolor/22x22/actions/run_show.png -share/apps/studio/icons/locolor/22x22/actions/stop.png -share/apps/studio/icons/locolor/22x22/actions/view_left_right.png -share/apps/studio/icons/locolor/22x22/actions/view_top_bottom.png -share/apps/studio/icons/locolor/22x22/actions/studio.png -share/apps/studio/icons/locolor/22x22/actions/AM_edit.png -share/apps/studio/icons/locolor/22x22/actions/KDEStudio.png -share/apps/studio/icons/locolor/22x22/actions/KDEStudio_setup.png -share/apps/studio/icons/locolor/22x22/actions/configure_keys.png -share/apps/studio/icons/locolor/22x22/actions/editor_color.png -share/apps/studio/icons/locolor/22x22/actions/editor_defaults.png -share/apps/studio/icons/locolor/22x22/actions/editor_highlighting.png -share/apps/studio/icons/locolor/22x22/actions/editor_options.png -share/apps/studio/icons/locolor/22x22/actions/indent.png -share/apps/studio/icons/locolor/22x22/actions/make_uninstall.png -share/apps/studio/icons/locolor/22x22/actions/options.png -share/apps/studio/icons/locolor/22x22/actions/reconfigure.png -share/apps/studio/icons/locolor/22x22/actions/search_again.png -share/apps/studio/icons/locolor/22x22/actions/select_all.png -share/apps/studio/icons/locolor/22x22/actions/single_window.png -share/apps/studio/icons/locolor/22x22/actions/split_horizontal.png -share/apps/studio/icons/locolor/22x22/actions/split_vertical.png -share/apps/studio/icons/locolor/22x22/actions/undo.png -share/apps/studio/icons/locolor/22x22/actions/unindent.png -share/apps/studio/icons/locolor/22x22/actions/update_all_makefile.png -share/apps/studio/icons/locolor/16x16/actions/add_existing_file.png -share/apps/studio/icons/locolor/16x16/actions/add_new_file.png -share/apps/studio/icons/locolor/16x16/actions/back.png -share/apps/studio/icons/locolor/16x16/actions/back_inactive.png -share/apps/studio/icons/locolor/16x16/actions/bookmark.png -share/apps/studio/icons/locolor/16x16/actions/bookmarks_hide.png -share/apps/studio/icons/locolor/16x16/actions/bookmarks_show.png -share/apps/studio/icons/locolor/16x16/actions/class_explorer.png -share/apps/studio/icons/locolor/16x16/actions/class_explorer_hide.png -share/apps/studio/icons/locolor/16x16/actions/class_explorer_show.png -share/apps/studio/icons/locolor/16x16/actions/editcopy.png -share/apps/studio/icons/locolor/16x16/actions/editcut.png -share/apps/studio/icons/locolor/16x16/actions/editor.png -share/apps/studio/icons/locolor/16x16/actions/editor_hide.png -share/apps/studio/icons/locolor/16x16/actions/editor_show.png -share/apps/studio/icons/locolor/16x16/actions/editpaste.png -share/apps/studio/icons/locolor/16x16/actions/exit.png -share/apps/studio/icons/locolor/16x16/actions/fileclose.png -share/apps/studio/icons/locolor/16x16/actions/filesave.png -share/apps/studio/icons/locolor/16x16/actions/filesaveall.png -share/apps/studio/icons/locolor/16x16/actions/find.png -share/apps/studio/icons/locolor/16x16/actions/find_hide.png -share/apps/studio/icons/locolor/16x16/actions/find_in_file.png -share/apps/studio/icons/locolor/16x16/actions/find_show.png -share/apps/studio/icons/locolor/16x16/actions/forward.png -share/apps/studio/icons/locolor/16x16/actions/forward_inactive.png -share/apps/studio/icons/locolor/16x16/actions/goto_line.png -share/apps/studio/icons/locolor/16x16/actions/kode.png -share/apps/studio/icons/locolor/16x16/actions/make.png -share/apps/studio/icons/locolor/16x16/actions/make_clean.png -share/apps/studio/icons/locolor/16x16/actions/make_distclean.png -share/apps/studio/icons/locolor/16x16/actions/make_distribution.png -share/apps/studio/icons/locolor/16x16/actions/make_hide.png -share/apps/studio/icons/locolor/16x16/actions/make_install.png -share/apps/studio/icons/locolor/16x16/actions/make_show.png -share/apps/studio/icons/locolor/16x16/actions/new_project.png -share/apps/studio/icons/locolor/16x16/actions/new_workspace.png -share/apps/studio/icons/locolor/16x16/actions/open_project.png -share/apps/studio/icons/locolor/16x16/actions/open_workspace.png -share/apps/studio/icons/locolor/16x16/actions/project_manager.png -share/apps/studio/icons/locolor/16x16/actions/project_manager_hide.png -share/apps/studio/icons/locolor/16x16/actions/project_manager_show.png -share/apps/studio/icons/locolor/16x16/actions/replace.png -share/apps/studio/icons/locolor/16x16/actions/run.png -share/apps/studio/icons/locolor/16x16/actions/run_error_hide.png -share/apps/studio/icons/locolor/16x16/actions/run_error_show.png -share/apps/studio/icons/locolor/16x16/actions/run_hide.png -share/apps/studio/icons/locolor/16x16/actions/run_show.png -share/apps/studio/icons/locolor/16x16/actions/studio.png -share/apps/studio/icons/locolor/16x16/actions/AM_edit.png -share/apps/studio/icons/locolor/16x16/actions/KDEStudio.png -share/apps/studio/icons/locolor/16x16/actions/KDEStudio_setup.png -share/apps/studio/icons/locolor/16x16/actions/configure_keys.png -share/apps/studio/icons/locolor/16x16/actions/editor_color.png -share/apps/studio/icons/locolor/16x16/actions/editor_defaults.png -share/apps/studio/icons/locolor/16x16/actions/editor_highlighting.png -share/apps/studio/icons/locolor/16x16/actions/editor_options.png -share/apps/studio/icons/locolor/16x16/actions/indent.png -share/apps/studio/icons/locolor/16x16/actions/make_uninstall.png -share/apps/studio/icons/locolor/16x16/actions/options.png -share/apps/studio/icons/locolor/16x16/actions/reconfigure.png -share/apps/studio/icons/locolor/16x16/actions/redo.png -share/apps/studio/icons/locolor/16x16/actions/search_again.png -share/apps/studio/icons/locolor/16x16/actions/select_all.png -share/apps/studio/icons/locolor/16x16/actions/single.png -share/apps/studio/icons/locolor/16x16/actions/split_horizontal.png -share/apps/studio/icons/locolor/16x16/actions/split_vertical.png -share/apps/studio/icons/locolor/16x16/actions/stop.png -share/apps/studio/icons/locolor/16x16/actions/undo.png -share/apps/studio/icons/locolor/16x16/actions/unindent.png -share/apps/studio/icons/locolor/16x16/actions/update_all_makefile.png -share/apps/studio/templates/kde_workspace.tar.gz -share/apps/studio/pix/breakpoint.xpm -share/apps/studio/pix/breakpoint_gr.xpm -share/apps/studio/pix/folder.xpm -share/apps/studio/pix/folder_link.xpm -share/apps/studio/pix/lock.xpm -share/apps/studio/pix/open_folder.xpm -share/apps/studio/pix/open_folder_link.xpm -share/apps/studio/pix/x2.xpm -share/apps/studio/pix/x3.xpm -share/apps/studio/pix/automoc.xpm -share/apps/studio/pix/color.xpm -share/apps/studio/pix/configure.xpm -share/apps/studio/pix/dist.xpm -share/apps/studio/pix/stop.xpm -share/apps/studio/pix/sys1.xpm -share/apps/studio/pix/sys2.xpm -share/apps/studio/pix/indent.xpm -share/apps/studio/pix/unindent.xpm -share/apps/studio/pix/x1.png -share/apps/studio/pix/add_file.xpm -share/apps/studio/pix/b_left.xpm -share/apps/studio/pix/b_right.xpm -share/apps/studio/pix/c.xpm -share/apps/studio/pix/close.xpm -share/apps/studio/pix/compile.xpm -share/apps/studio/pix/copy.xpm -share/apps/studio/pix/cut.xpm -share/apps/studio/pix/exe.xpm -share/apps/studio/pix/find1.xpm -share/apps/studio/pix/find_files.xpm -share/apps/studio/pix/h.xpm -share/apps/studio/pix/helper.xpm -share/apps/studio/pix/hform.xpm -share/apps/studio/pix/ident.xpm -share/apps/studio/pix/kill.xpm -share/apps/studio/pix/maximize.xpm -share/apps/studio/pix/minus_file.xpm -share/apps/studio/pix/newprj.xpm -share/apps/studio/pix/open.xpm -share/apps/studio/pix/options_dlg.xpm -share/apps/studio/pix/options_prj.xpm -share/apps/studio/pix/outdent.xpm -share/apps/studio/pix/output.xpm -share/apps/studio/pix/p_cpp.xpm -share/apps/studio/pix/p_cpp_h.xpm -share/apps/studio/pix/p_h.xpm -share/apps/studio/pix/paste.xpm -share/apps/studio/pix/pause.xpm -share/apps/studio/pix/redo.xpm -share/apps/studio/pix/run.xpm -share/apps/studio/pix/save.xpm -share/apps/studio/pix/save_all.xpm -share/apps/studio/pix/sfolder.xpm -share/apps/studio/pix/sfolder_open.xpm -share/apps/studio/pix/sharedlib.xpm -share/apps/studio/pix/stack.xpm -share/apps/studio/pix/staticlib.xpm -share/apps/studio/pix/step_into.xpm -share/apps/studio/pix/step_over.xpm -share/apps/studio/pix/undo.xpm -share/apps/studio/pix/vform.xpm -share/apps/studio/pix/w.xpm -share/apps/studio/pix/w_add.xpm -share/apps/studio/pix/watch.xpm -share/apps/studio/pix/bookmarkmenu.xpm -share/apps/studio/pix/t_class.xpm -share/apps/studio/pix/file.xpm -share/apps/studio/pix/lsm.xpm -share/apps/studio/pix/cpp_list.xpm -share/apps/studio/pix/main_prj.xpm -share/apps/studio/pix/new_x.xpm -share/apps/studio/pix/source_x.xpm -share/apps/studio/pix/del_form.xpm -share/apps/studio/pix/left_small.xpm -share/apps/studio/pix/right_small.xpm -share/apps/studio/pix/prop.xpm -share/apps/studio/pix/folder-trash.xpm -share/apps/studio/pix/contents.png -share/icons/hicolor/48x48/apps/kode.png -share/icons/hicolor/48x48/apps/studio.png -share/icons/locolor/16x16/apps/kode.png -share/icons/locolor/16x16/apps/studio.png -share/icons/locolor/22x22/apps/kode.png -share/icons/locolor/22x22/apps/studio.png -share/icons/locolor/32x32/apps/kode.png -share/icons/locolor/32x32/apps/studio.png -@dirrm lib/kdestudio/plugins -@dirrm lib/kdestudio -@dirrm share/apps/studio/icons/hicolor/48x48/actions -@dirrm share/apps/studio/icons/hicolor/48x48 -@dirrm share/apps/studio/icons/hicolor/32x32/actions -@dirrm share/apps/studio/icons/hicolor/32x32 -@dirrm share/apps/studio/icons/hicolor -@dirrm share/apps/studio/icons/locolor/22x22/actions -@dirrm share/apps/studio/icons/locolor/22x22 -@dirrm share/apps/studio/icons/locolor/16x16/actions -@dirrm share/apps/studio/icons/locolor/16x16 -@dirrm share/apps/studio/icons/locolor -@dirrm share/apps/studio/icons -@dirrm share/apps/studio/templates -@dirrm share/apps/studio/pix -@dirrm share/apps/studio diff --git a/devel/objprelink/Makefile b/devel/objprelink/Makefile deleted file mode 100644 index 804ecd9..0000000 --- a/devel/objprelink/Makefile +++ /dev/null @@ -1,60 +0,0 @@ -# New ports collection makefile for: objprelink -# Date Created: 18th November 2001 -# Whom: Dominic Marks <dominic_marks@btinternet.com> -# -# $FreeBSD$ -# - -PORTNAME= objprelink -PORTVERSION= 1.0 -PORTREVISION= 2 -CATEGORIES= devel kde -MASTER_SITES= http://leon.bottou.com/objprelink/ \ - ${MASTER_SITE_SOURCEWARE} -MASTER_SITE_SUBDIR= binutils/releases -DISTFILES= objprelink.c.gz binutils-${BINUTILS_VER}.tar.bz2 - -MAINTAINER= dominic_marks@btinternet.com - -LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext - -ONLY_FOR_ARCHS= i386 -BINUTILS_VER= 2.11.2 -USE_BZIP2= yes -USE_GMAKE= yes -WRKSRC= ${WRKDIR}/objprelink - -do-extract: - @${MKDIR} ${WRKSRC} - @cd ${WRKSRC} && ${TAR} xfy ${DISTDIR}/binutils-${BINUTILS_VER}.tar.bz2 - @${MV} ${WRKSRC}/binutils-${BINUTILS_VER} ${WRKSRC}/binutils - @cd ${WRKSRC} && ${GZIP_CMD} -dc ${DISTDIR}/objprelink.c.gz \ - > ${WRKSRC}/objprelink.c - -do-configure: - @cd ${WRKSRC}/binutils/bfd/ && \ - ${SETENV} LDFLAGS="$$LDFLAGS -L${LOCALBASE}/lib" \ - CFLAGS="$$CFLAGS -I${LOCALBASE}/include" \ - CPPFLAGS="$$CPPFLAGS -I${LOCALBASE}/include" ./configure \ - --disable-shared --enable-static - @cd ${WRKSRC}/binutils/libiberty/ && \ - ${SETENV} LDFLAGS="$$LDFLAGS -L${LOCALBASE}/lib" \ - CFLAGS="$$CFLAGS -I./../include" \ - CPPFLAGS="$$CPPFLAGS -I./../include" ./configure \ - --disable-shared --enable-static - -do-build: -.for DIR in bfd libiberty - @cd ${WRKSRC}/binutils/${DIR}/ && ${GMAKE} -.endfor - @${CC} ${CFLAGS} -static -o ${WRKSRC}/objprelink ${WRKSRC}/objprelink.c \ - ${WRKSRC}/binutils/bfd/libbfd.a \ - ${WRKSRC}/binutils/libiberty/libiberty.a \ - -I${WRKSRC}/binutils/include -I${WRKSRC}/binutils/bfd \ - -I${WRKSRC}/binutils/libiberty \ - -L${LOCALBASE}/lib -lintl -liconv - -do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/objprelink ${PREFIX}/bin - -.include <bsd.port.mk> diff --git a/devel/objprelink/distinfo b/devel/objprelink/distinfo deleted file mode 100644 index fcc86a9..0000000 --- a/devel/objprelink/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (objprelink.c.gz) = 53c4c235ec3da92e4a9fb50ffa54beeb -MD5 (binutils-2.11.2.tar.bz2) = cf268611a9d8c0924d514ccaf0360caa diff --git a/devel/objprelink/files/patch-binutils::libiberty::Makefile.in b/devel/objprelink/files/patch-binutils::libiberty::Makefile.in deleted file mode 100644 index 09c73e1..0000000 --- a/devel/objprelink/files/patch-binutils::libiberty::Makefile.in +++ /dev/null @@ -1,7 +0,0 @@ ---- binutils/libiberty/Makefile.in.orig Sat Dec 9 10:10:41 2000 -+++ binutils/libiberty/Makefile.in Wed Apr 3 19:01:38 2002 -@@ -95,3 +95,3 @@ - # Subdirectories to recurse into. We need to override this during cleaning --SUBDIRS = testsuite -+SUBDIRS = # testsuite - diff --git a/devel/objprelink/files/patch-configure b/devel/objprelink/files/patch-configure deleted file mode 100644 index cb8170a..0000000 --- a/devel/objprelink/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- binutils/bfd/configure Tue Jun 19 14:58:08 2001 -+++ binutils/bfd/configure.new Wed Nov 28 16:29:21 2001 -@@ -5016,7 +5016,7 @@ - TRAD_HEADER='"hosts/symmetry.h"' - ;; - i[3456]86-*-bsd* | i[34567]86-*-freebsd[1234] | i[34567]86-*-freebsd[1234]\.* | i[34567]86-*-freebsd*aout*) -- COREFILE=trad-core.lo -+ COREFILE='' - TRAD_HEADER='"hosts/i386bsd.h"' - ;; - i[3456]86-*-freebsd*) diff --git a/devel/objprelink/files/patch-objprelink.c b/devel/objprelink/files/patch-objprelink.c deleted file mode 100644 index d5c84d6..0000000 --- a/devel/objprelink/files/patch-objprelink.c +++ /dev/null @@ -1,19 +0,0 @@ -$FreeBSD$ - ---- objprelink.c.orig Tue Dec 4 14:01:10 2001 -+++ objprelink.c Tue Dec 4 14:01:49 2001 -@@ -239,12 +239,12 @@ - is_vt_section(bfd *abfd, asection *p) - { - const char *name = bfd_section_name(abfd, p); -- static const char prefix[] = ".gnu.linkonce.d.__vt_"; -+ static const char prefix[] = ".gnu.linkonce.d._vt"; - static flagword w = (SEC_ALLOC|SEC_LOAD|SEC_RELOC|SEC_DATA|SEC_LINK_ONCE); - flagword f = bfd_get_section_flags (abfd, p); - if (f & w == w) - if (!strncmp(name, prefix, sizeof(prefix)-1)) -- return name + sizeof(prefix)-6; -+ return name + sizeof(prefix)-4; - return false; - } - diff --git a/devel/objprelink/pkg-comment b/devel/objprelink/pkg-comment deleted file mode 100644 index b75e07f..0000000 --- a/devel/objprelink/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -An object file processor which improves dynamic linking performance diff --git a/devel/objprelink/pkg-descr b/devel/objprelink/pkg-descr deleted file mode 100644 index 3a6f9d7..0000000 --- a/devel/objprelink/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -This is a port of objprelink. This application is used on object files -before the linking stage to improve performance in applications which -rely heavily upon dynamic linking performance such as a Qt and KDE. - -WWW: http://leon.bottou.com/objprelink/ - -- Dominic -dominic_marks@btinternet.com diff --git a/devel/objprelink/pkg-plist b/devel/objprelink/pkg-plist deleted file mode 100644 index c95bf5e..0000000 --- a/devel/objprelink/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -bin/objprelink diff --git a/editors/calligra-l10n/Makefile b/editors/calligra-l10n/Makefile deleted file mode 100644 index 7927481..0000000 --- a/editors/calligra-l10n/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -# New ports collection makefile for: koffice-i18n -# Date created: 15 December 2001 -# Whom: SASAKI Katuhiro <sahiro@crest.ocn.ne.jp> -# -# $FreeBSD$ -# - -PORTNAME= koffice-i18n -PORTVERSION= 1.1.1 -PORTREVISION= 1 -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/koffice-${PORTVERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER?= sahiro@crest.ocn.ne.jp - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 -LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext -RUN_DEPENDS= koshell:${PORTSDIR}/editors/koffice - -USE_KDELIBS_VER=2 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes - -PLIST= ${WRKDIR}/PLIST -SCRIPTS_ENV+= PLIST=${PLIST} - -.include <bsd.port.pre.mk> - -post-extract: - @${RM} -fr ${WRKSRC}/nb ${WRKSRC}/nn - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - cd ${WRKSRC} && env PATH=${WRKSRC}/auto-bin:$$PATH \ - ${GMAKE} -f Makefile.cvs - @${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/Configure - -.include <bsd.port.post.mk> diff --git a/editors/calligra-l10n/distinfo b/editors/calligra-l10n/distinfo deleted file mode 100644 index 3d78fdf..0000000 --- a/editors/calligra-l10n/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/koffice-i18n-1.1.1.tar.bz2) = 3233e3f38f7dbc8d45a83add7bc2327a diff --git a/editors/calligra-l10n/pkg-comment b/editors/calligra-l10n/pkg-comment deleted file mode 100644 index 28de0ab..0000000 --- a/editors/calligra-l10n/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Localized messages for KOffice diff --git a/editors/calligra-l10n/pkg-descr b/editors/calligra-l10n/pkg-descr deleted file mode 100644 index 5a4554d..0000000 --- a/editors/calligra-l10n/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -Localized messages for KOffice. diff --git a/editors/calligra-l10n/pkg-plist b/editors/calligra-l10n/pkg-plist deleted file mode 100644 index 8bb0d7f..0000000 --- a/editors/calligra-l10n/pkg-plist +++ /dev/null @@ -1,567 +0,0 @@ -share/locale/az/LC_MESSAGES/csvfilter.mo -share/locale/az/LC_MESSAGES/example.mo -share/locale/az/LC_MESSAGES/graphite.mo -share/locale/az/LC_MESSAGES/kchart.mo -share/locale/az/LC_MESSAGES/kformula.mo -share/locale/az/LC_MESSAGES/kivio.mo -share/locale/az/LC_MESSAGES/koffice.mo -share/locale/az/LC_MESSAGES/kontour.mo -share/locale/az/LC_MESSAGES/koshell.mo -share/locale/az/LC_MESSAGES/kpresenter.mo -share/locale/az/LC_MESSAGES/krayon.mo -share/locale/az/LC_MESSAGES/kscan_plugin.mo -share/locale/az/LC_MESSAGES/kspread.mo -share/locale/az/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/az/LC_MESSAGES/kugar.mo -share/locale/az/LC_MESSAGES/kword.mo -share/locale/bg/LC_MESSAGES/example.mo -share/locale/bg/LC_MESSAGES/graphite.mo -share/locale/bg/LC_MESSAGES/kchart.mo -share/locale/bg/LC_MESSAGES/kformula.mo -share/locale/bg/LC_MESSAGES/kivio.mo -share/locale/bg/LC_MESSAGES/koffice.mo -share/locale/bg/LC_MESSAGES/kontour.mo -share/locale/bg/LC_MESSAGES/koshell.mo -share/locale/bg/LC_MESSAGES/kpresenter.mo -share/locale/bg/LC_MESSAGES/krayon.mo -share/locale/bg/LC_MESSAGES/kspread.mo -share/locale/bg/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/bg/LC_MESSAGES/kugar.mo -share/locale/bg/LC_MESSAGES/kword.mo -share/locale/cs/LC_MESSAGES/csvfilter.mo -share/locale/cs/LC_MESSAGES/kchart.mo -share/locale/cs/LC_MESSAGES/kivio.mo -share/locale/cs/LC_MESSAGES/koffice.mo -share/locale/cs/LC_MESSAGES/kontour.mo -share/locale/cs/LC_MESSAGES/koshell.mo -share/locale/cs/LC_MESSAGES/kpresenter.mo -share/locale/cs/LC_MESSAGES/krayon.mo -share/locale/cs/LC_MESSAGES/kscan_plugin.mo -share/locale/cs/LC_MESSAGES/kspread.mo -share/locale/cs/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/cs/LC_MESSAGES/kugar.mo -share/locale/cs/LC_MESSAGES/kword.mo -share/locale/da/LC_MESSAGES/csvfilter.mo -share/locale/da/LC_MESSAGES/example.mo -share/locale/da/LC_MESSAGES/graphite.mo -share/locale/da/LC_MESSAGES/kchart.mo -share/locale/da/LC_MESSAGES/kformula.mo -share/locale/da/LC_MESSAGES/kivio.mo -share/locale/da/LC_MESSAGES/kocryptfilter.mo -share/locale/da/LC_MESSAGES/koffice.mo -share/locale/da/LC_MESSAGES/kontour.mo -share/locale/da/LC_MESSAGES/koshell.mo -share/locale/da/LC_MESSAGES/kpresenter.mo -share/locale/da/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/da/LC_MESSAGES/krayon.mo -share/locale/da/LC_MESSAGES/kscan_plugin.mo -share/locale/da/LC_MESSAGES/kspread.mo -share/locale/da/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/da/LC_MESSAGES/kspreadqprofilter.mo -share/locale/da/LC_MESSAGES/kugar.mo -share/locale/da/LC_MESSAGES/kword.mo -share/locale/da/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/da/LC_MESSAGES/kwordlatexfilter.mo -share/locale/da/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/de/LC_MESSAGES/csvfilter.mo -share/locale/de/LC_MESSAGES/example.mo -share/locale/de/LC_MESSAGES/graphite.mo -share/locale/de/LC_MESSAGES/kchart.mo -share/locale/de/LC_MESSAGES/kformula.mo -share/locale/de/LC_MESSAGES/kivio.mo -share/locale/de/LC_MESSAGES/kocryptfilter.mo -share/locale/de/LC_MESSAGES/koffice.mo -share/locale/de/LC_MESSAGES/kontour.mo -share/locale/de/LC_MESSAGES/koshell.mo -share/locale/de/LC_MESSAGES/kpresenter.mo -share/locale/de/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/de/LC_MESSAGES/krayon.mo -share/locale/de/LC_MESSAGES/kscan_plugin.mo -share/locale/de/LC_MESSAGES/kspread.mo -share/locale/de/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/de/LC_MESSAGES/kspreadqprofilter.mo -share/locale/de/LC_MESSAGES/kugar.mo -share/locale/de/LC_MESSAGES/kword.mo -share/locale/de/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/de/LC_MESSAGES/kwordlatexfilter.mo -share/locale/de/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/en_GB/LC_MESSAGES/csvfilter.mo -share/locale/en_GB/LC_MESSAGES/example.mo -share/locale/en_GB/LC_MESSAGES/graphite.mo -share/locale/en_GB/LC_MESSAGES/kchart.mo -share/locale/en_GB/LC_MESSAGES/kformula.mo -share/locale/en_GB/LC_MESSAGES/kivio.mo -share/locale/en_GB/LC_MESSAGES/kocryptfilter.mo -share/locale/en_GB/LC_MESSAGES/koffice.mo -share/locale/en_GB/LC_MESSAGES/kontour.mo -share/locale/en_GB/LC_MESSAGES/koshell.mo -share/locale/en_GB/LC_MESSAGES/kpresenter.mo -share/locale/en_GB/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/en_GB/LC_MESSAGES/krayon.mo -share/locale/en_GB/LC_MESSAGES/kscan_plugin.mo -share/locale/en_GB/LC_MESSAGES/kspread.mo -share/locale/en_GB/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/en_GB/LC_MESSAGES/kspreadqprofilter.mo -share/locale/en_GB/LC_MESSAGES/kugar.mo -share/locale/en_GB/LC_MESSAGES/kword.mo -share/locale/en_GB/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/en_GB/LC_MESSAGES/kwordlatexfilter.mo -share/locale/en_GB/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/eo/LC_MESSAGES/csvfilter.mo -share/locale/eo/LC_MESSAGES/example.mo -share/locale/eo/LC_MESSAGES/graphite.mo -share/locale/eo/LC_MESSAGES/kchart.mo -share/locale/eo/LC_MESSAGES/kformula.mo -share/locale/eo/LC_MESSAGES/kivio.mo -share/locale/eo/LC_MESSAGES/koffice.mo -share/locale/eo/LC_MESSAGES/kontour.mo -share/locale/eo/LC_MESSAGES/koshell.mo -share/locale/eo/LC_MESSAGES/kpresenter.mo -share/locale/eo/LC_MESSAGES/krayon.mo -share/locale/eo/LC_MESSAGES/kscan_plugin.mo -share/locale/eo/LC_MESSAGES/kspread.mo -share/locale/eo/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/eo/LC_MESSAGES/kugar.mo -share/locale/eo/LC_MESSAGES/kword.mo -share/locale/es/LC_MESSAGES/csvfilter.mo -share/locale/es/LC_MESSAGES/example.mo -share/locale/es/LC_MESSAGES/graphite.mo -share/locale/es/LC_MESSAGES/kchart.mo -share/locale/es/LC_MESSAGES/kformula.mo -share/locale/es/LC_MESSAGES/kivio.mo -share/locale/es/LC_MESSAGES/koffice.mo -share/locale/es/LC_MESSAGES/kontour.mo -share/locale/es/LC_MESSAGES/koshell.mo -share/locale/es/LC_MESSAGES/kpresenter.mo -share/locale/es/LC_MESSAGES/krayon.mo -share/locale/es/LC_MESSAGES/kscan_plugin.mo -share/locale/es/LC_MESSAGES/kspread.mo -share/locale/es/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/es/LC_MESSAGES/kugar.mo -share/locale/es/LC_MESSAGES/kword.mo -share/locale/et/LC_MESSAGES/csvfilter.mo -share/locale/et/LC_MESSAGES/example.mo -share/locale/et/LC_MESSAGES/graphite.mo -share/locale/et/LC_MESSAGES/kchart.mo -share/locale/et/LC_MESSAGES/kformula.mo -share/locale/et/LC_MESSAGES/kivio.mo -share/locale/et/LC_MESSAGES/kocryptfilter.mo -share/locale/et/LC_MESSAGES/koffice.mo -share/locale/et/LC_MESSAGES/kontour.mo -share/locale/et/LC_MESSAGES/koshell.mo -share/locale/et/LC_MESSAGES/kpresenter.mo -share/locale/et/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/et/LC_MESSAGES/krayon.mo -share/locale/et/LC_MESSAGES/kscan_plugin.mo -share/locale/et/LC_MESSAGES/kspread.mo -share/locale/et/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/et/LC_MESSAGES/kspreadqprofilter.mo -share/locale/et/LC_MESSAGES/kugar.mo -share/locale/et/LC_MESSAGES/kword.mo -share/locale/et/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/et/LC_MESSAGES/kwordlatexfilter.mo -share/locale/et/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/fr/LC_MESSAGES/csvfilter.mo -share/locale/fr/LC_MESSAGES/example.mo -share/locale/fr/LC_MESSAGES/graphite.mo -share/locale/fr/LC_MESSAGES/kchart.mo -share/locale/fr/LC_MESSAGES/kformula.mo -share/locale/fr/LC_MESSAGES/kivio.mo -share/locale/fr/LC_MESSAGES/koffice.mo -share/locale/fr/LC_MESSAGES/kontour.mo -share/locale/fr/LC_MESSAGES/koshell.mo -share/locale/fr/LC_MESSAGES/kpresenter.mo -share/locale/fr/LC_MESSAGES/krayon.mo -share/locale/fr/LC_MESSAGES/kscan_plugin.mo -share/locale/fr/LC_MESSAGES/kspread.mo -share/locale/fr/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/fr/LC_MESSAGES/kugar.mo -share/locale/fr/LC_MESSAGES/kword.mo -share/locale/hu/LC_MESSAGES/csvfilter.mo -share/locale/hu/LC_MESSAGES/example.mo -share/locale/hu/LC_MESSAGES/graphite.mo -share/locale/hu/LC_MESSAGES/kchart.mo -share/locale/hu/LC_MESSAGES/kformula.mo -share/locale/hu/LC_MESSAGES/kivio.mo -share/locale/hu/LC_MESSAGES/kocryptfilter.mo -share/locale/hu/LC_MESSAGES/koffice.mo -share/locale/hu/LC_MESSAGES/kontour.mo -share/locale/hu/LC_MESSAGES/koshell.mo -share/locale/hu/LC_MESSAGES/kpresenter.mo -share/locale/hu/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/hu/LC_MESSAGES/krayon.mo -share/locale/hu/LC_MESSAGES/kscan_plugin.mo -share/locale/hu/LC_MESSAGES/kspread.mo -share/locale/hu/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/hu/LC_MESSAGES/kspreadqprofilter.mo -share/locale/hu/LC_MESSAGES/kugar.mo -share/locale/hu/LC_MESSAGES/kword.mo -share/locale/hu/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/hu/LC_MESSAGES/kwordlatexfilter.mo -share/locale/hu/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/it/LC_MESSAGES/csvfilter.mo -share/locale/it/LC_MESSAGES/example.mo -share/locale/it/LC_MESSAGES/graphite.mo -share/locale/it/LC_MESSAGES/kchart.mo -share/locale/it/LC_MESSAGES/kformula.mo -share/locale/it/LC_MESSAGES/kformviewer.mo -share/locale/it/LC_MESSAGES/kivio.mo -share/locale/it/LC_MESSAGES/kocryptfilter.mo -share/locale/it/LC_MESSAGES/koffice.mo -share/locale/it/LC_MESSAGES/kontour.mo -share/locale/it/LC_MESSAGES/koshell.mo -share/locale/it/LC_MESSAGES/kpresenter.mo -share/locale/it/LC_MESSAGES/krayon.mo -share/locale/it/LC_MESSAGES/kscan_plugin.mo -share/locale/it/LC_MESSAGES/kspread.mo -share/locale/it/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/it/LC_MESSAGES/kugar.mo -share/locale/it/LC_MESSAGES/kword.mo -share/locale/it/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/it/LC_MESSAGES/kwordlatexfilter.mo -share/locale/it/LC_MESSAGES/spell_tool.mo -share/locale/ja/LC_MESSAGES/csvfilter.mo -share/locale/ja/LC_MESSAGES/example.mo -share/locale/ja/LC_MESSAGES/graphite.mo -share/locale/ja/LC_MESSAGES/kchart.mo -share/locale/ja/LC_MESSAGES/kformula.mo -share/locale/ja/LC_MESSAGES/kivio.mo -share/locale/ja/LC_MESSAGES/koffice.mo -share/locale/ja/LC_MESSAGES/kontour.mo -share/locale/ja/LC_MESSAGES/koshell.mo -share/locale/ja/LC_MESSAGES/kpresenter.mo -share/locale/ja/LC_MESSAGES/krayon.mo -share/locale/ja/LC_MESSAGES/kscan_plugin.mo -share/locale/ja/LC_MESSAGES/kspread.mo -share/locale/ja/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/ja/LC_MESSAGES/kugar.mo -share/locale/ja/LC_MESSAGES/kword.mo -share/locale/lt/LC_MESSAGES/csvfilter.mo -share/locale/lt/LC_MESSAGES/example.mo -share/locale/lt/LC_MESSAGES/graphite.mo -share/locale/lt/LC_MESSAGES/kchart.mo -share/locale/lt/LC_MESSAGES/kformula.mo -share/locale/lt/LC_MESSAGES/kimageshop.mo -share/locale/lt/LC_MESSAGES/kivio.mo -share/locale/lt/LC_MESSAGES/koffice.mo -share/locale/lt/LC_MESSAGES/kontour.mo -share/locale/lt/LC_MESSAGES/koshell.mo -share/locale/lt/LC_MESSAGES/kpresenter.mo -share/locale/lt/LC_MESSAGES/krayon.mo -share/locale/lt/LC_MESSAGES/kscan_plugin.mo -share/locale/lt/LC_MESSAGES/kspread.mo -share/locale/lt/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/lt/LC_MESSAGES/kugar.mo -share/locale/lt/LC_MESSAGES/kword.mo -share/locale/mt/LC_MESSAGES/csvfilter.mo -share/locale/mt/LC_MESSAGES/example.mo -share/locale/mt/LC_MESSAGES/graphite.mo -share/locale/mt/LC_MESSAGES/kchart.mo -share/locale/mt/LC_MESSAGES/kformula.mo -share/locale/mt/LC_MESSAGES/kivio.mo -share/locale/mt/LC_MESSAGES/koffice.mo -share/locale/mt/LC_MESSAGES/kontour.mo -share/locale/mt/LC_MESSAGES/koshell.mo -share/locale/mt/LC_MESSAGES/kpresenter.mo -share/locale/mt/LC_MESSAGES/krayon.mo -share/locale/mt/LC_MESSAGES/kscan_plugin.mo -share/locale/mt/LC_MESSAGES/kspread.mo -share/locale/mt/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/mt/LC_MESSAGES/kugar.mo -share/locale/mt/LC_MESSAGES/kword.mo -share/locale/nl/LC_MESSAGES/csvfilter.mo -share/locale/nl/LC_MESSAGES/example.mo -share/locale/nl/LC_MESSAGES/graphite.mo -share/locale/nl/LC_MESSAGES/kchart.mo -share/locale/nl/LC_MESSAGES/kformula.mo -share/locale/nl/LC_MESSAGES/kivio.mo -share/locale/nl/LC_MESSAGES/koffice.mo -share/locale/nl/LC_MESSAGES/kontour.mo -share/locale/nl/LC_MESSAGES/koshell.mo -share/locale/nl/LC_MESSAGES/kpresenter.mo -share/locale/nl/LC_MESSAGES/krayon.mo -share/locale/nl/LC_MESSAGES/kscan_plugin.mo -share/locale/nl/LC_MESSAGES/kspread.mo -share/locale/nl/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/nl/LC_MESSAGES/kugar.mo -share/locale/nl/LC_MESSAGES/kword.mo -share/locale/no/LC_MESSAGES/csvfilter.mo -share/locale/no/LC_MESSAGES/example.mo -share/locale/no/LC_MESSAGES/graphite.mo -share/locale/no/LC_MESSAGES/kchart.mo -share/locale/no/LC_MESSAGES/kformula.mo -share/locale/no/LC_MESSAGES/kivio.mo -share/locale/no/LC_MESSAGES/kocryptfilter.mo -share/locale/no/LC_MESSAGES/koffice.mo -share/locale/no/LC_MESSAGES/kontour.mo -share/locale/no/LC_MESSAGES/koshell.mo -share/locale/no/LC_MESSAGES/kpresenter.mo -share/locale/no/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/no/LC_MESSAGES/krayon.mo -share/locale/no/LC_MESSAGES/kscan_plugin.mo -share/locale/no/LC_MESSAGES/kspread.mo -share/locale/no/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/no/LC_MESSAGES/kspreadqprofilter.mo -share/locale/no/LC_MESSAGES/kugar.mo -share/locale/no/LC_MESSAGES/kword.mo -share/locale/no/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/no/LC_MESSAGES/kwordlatexfilter.mo -share/locale/no/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/no_NY/LC_MESSAGES/csvfilter.mo -share/locale/no_NY/LC_MESSAGES/example.mo -share/locale/no_NY/LC_MESSAGES/graphite.mo -share/locale/no_NY/LC_MESSAGES/kchart.mo -share/locale/no_NY/LC_MESSAGES/kformula.mo -share/locale/no_NY/LC_MESSAGES/kivio.mo -share/locale/no_NY/LC_MESSAGES/kocryptfilter.mo -share/locale/no_NY/LC_MESSAGES/koffice.mo -share/locale/no_NY/LC_MESSAGES/kontour.mo -share/locale/no_NY/LC_MESSAGES/koshell.mo -share/locale/no_NY/LC_MESSAGES/kpresenter.mo -share/locale/no_NY/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/no_NY/LC_MESSAGES/krayon.mo -share/locale/no_NY/LC_MESSAGES/kscan_plugin.mo -share/locale/no_NY/LC_MESSAGES/kspread.mo -share/locale/no_NY/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/no_NY/LC_MESSAGES/kspreadqprofilter.mo -share/locale/no_NY/LC_MESSAGES/kugar.mo -share/locale/no_NY/LC_MESSAGES/kword.mo -share/locale/no_NY/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/no_NY/LC_MESSAGES/kwordlatexfilter.mo -share/locale/no_NY/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/pl/LC_MESSAGES/csvfilter.mo -share/locale/pl/LC_MESSAGES/example.mo -share/locale/pl/LC_MESSAGES/graphite.mo -share/locale/pl/LC_MESSAGES/kchart.mo -share/locale/pl/LC_MESSAGES/kformula.mo -share/locale/pl/LC_MESSAGES/kivio.mo -share/locale/pl/LC_MESSAGES/koffice.mo -share/locale/pl/LC_MESSAGES/kontour.mo -share/locale/pl/LC_MESSAGES/koshell.mo -share/locale/pl/LC_MESSAGES/kpresenter.mo -share/locale/pl/LC_MESSAGES/krayon.mo -share/locale/pl/LC_MESSAGES/kscan_plugin.mo -share/locale/pl/LC_MESSAGES/kspread.mo -share/locale/pl/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/pl/LC_MESSAGES/kugar.mo -share/locale/pl/LC_MESSAGES/kword.mo -share/locale/pt/LC_MESSAGES/csvfilter.mo -share/locale/pt/LC_MESSAGES/example.mo -share/locale/pt/LC_MESSAGES/graphite.mo -share/locale/pt/LC_MESSAGES/kchart.mo -share/locale/pt/LC_MESSAGES/kformula.mo -share/locale/pt/LC_MESSAGES/kivio.mo -share/locale/pt/LC_MESSAGES/kocryptfilter.mo -share/locale/pt/LC_MESSAGES/koffice.mo -share/locale/pt/LC_MESSAGES/kontour.mo -share/locale/pt/LC_MESSAGES/koshell.mo -share/locale/pt/LC_MESSAGES/kpresenter.mo -share/locale/pt/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/pt/LC_MESSAGES/krayon.mo -share/locale/pt/LC_MESSAGES/kscan_plugin.mo -share/locale/pt/LC_MESSAGES/kspread.mo -share/locale/pt/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/pt/LC_MESSAGES/kspreadqprofilter.mo -share/locale/pt/LC_MESSAGES/kugar.mo -share/locale/pt/LC_MESSAGES/kword.mo -share/locale/pt/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/pt/LC_MESSAGES/kwordlatexfilter.mo -share/locale/pt/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/pt_BR/LC_MESSAGES/example.mo -share/locale/pt_BR/LC_MESSAGES/graphite.mo -share/locale/pt_BR/LC_MESSAGES/kchart.mo -share/locale/pt_BR/LC_MESSAGES/kdiagramm.mo -share/locale/pt_BR/LC_MESSAGES/kformula.mo -share/locale/pt_BR/LC_MESSAGES/kimage.mo -share/locale/pt_BR/LC_MESSAGES/kimageshop.mo -share/locale/pt_BR/LC_MESSAGES/kivio.mo -share/locale/pt_BR/LC_MESSAGES/koffice.mo -share/locale/pt_BR/LC_MESSAGES/kohtml.mo -share/locale/pt_BR/LC_MESSAGES/kontour.mo -share/locale/pt_BR/LC_MESSAGES/koshell.mo -share/locale/pt_BR/LC_MESSAGES/kpresenter.mo -share/locale/pt_BR/LC_MESSAGES/krayon.mo -share/locale/pt_BR/LC_MESSAGES/kspread.mo -share/locale/pt_BR/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/pt_BR/LC_MESSAGES/kugar.mo -share/locale/pt_BR/LC_MESSAGES/kword.mo -share/locale/pt_BR/LC_MESSAGES/spell_tool.mo -share/locale/ro/LC_MESSAGES/example.mo -share/locale/ro/LC_MESSAGES/graphite.mo -share/locale/ro/LC_MESSAGES/kchart.mo -share/locale/ro/LC_MESSAGES/kformula.mo -share/locale/ro/LC_MESSAGES/kivio.mo -share/locale/ro/LC_MESSAGES/koffice.mo -share/locale/ro/LC_MESSAGES/kontour.mo -share/locale/ro/LC_MESSAGES/koshell.mo -share/locale/ro/LC_MESSAGES/kpresenter.mo -share/locale/ro/LC_MESSAGES/krayon.mo -share/locale/ro/LC_MESSAGES/kspread.mo -share/locale/ro/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/ro/LC_MESSAGES/kugar.mo -share/locale/ro/LC_MESSAGES/kword.mo -share/locale/ru/LC_MESSAGES/csvfilter.mo -share/locale/ru/LC_MESSAGES/example.mo -share/locale/ru/LC_MESSAGES/graphite.mo -share/locale/ru/LC_MESSAGES/kchart.mo -share/locale/ru/LC_MESSAGES/kformula.mo -share/locale/ru/LC_MESSAGES/kivio.mo -share/locale/ru/LC_MESSAGES/kocryptfilter.mo -share/locale/ru/LC_MESSAGES/koffice.mo -share/locale/ru/LC_MESSAGES/kontour.mo -share/locale/ru/LC_MESSAGES/koshell.mo -share/locale/ru/LC_MESSAGES/kpresenter.mo -share/locale/ru/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/ru/LC_MESSAGES/krayon.mo -share/locale/ru/LC_MESSAGES/kscan_plugin.mo -share/locale/ru/LC_MESSAGES/kspread.mo -share/locale/ru/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/ru/LC_MESSAGES/kspreadqprofilter.mo -share/locale/ru/LC_MESSAGES/kugar.mo -share/locale/ru/LC_MESSAGES/kword.mo -share/locale/ru/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/ru/LC_MESSAGES/kwordlatexfilter.mo -share/locale/ru/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/sk/LC_MESSAGES/csvfilter.mo -share/locale/sk/LC_MESSAGES/example.mo -share/locale/sk/LC_MESSAGES/graphite.mo -share/locale/sk/LC_MESSAGES/kchart.mo -share/locale/sk/LC_MESSAGES/kformula.mo -share/locale/sk/LC_MESSAGES/kivio.mo -share/locale/sk/LC_MESSAGES/koffice.mo -share/locale/sk/LC_MESSAGES/kontour.mo -share/locale/sk/LC_MESSAGES/koshell.mo -share/locale/sk/LC_MESSAGES/kpresenter.mo -share/locale/sk/LC_MESSAGES/krayon.mo -share/locale/sk/LC_MESSAGES/kscan_plugin.mo -share/locale/sk/LC_MESSAGES/kspread.mo -share/locale/sk/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/sk/LC_MESSAGES/kugar.mo -share/locale/sk/LC_MESSAGES/kword.mo -share/locale/sl/LC_MESSAGES/csvfilter.mo -share/locale/sl/LC_MESSAGES/example.mo -share/locale/sl/LC_MESSAGES/graphite.mo -share/locale/sl/LC_MESSAGES/kchart.mo -share/locale/sl/LC_MESSAGES/kformula.mo -share/locale/sl/LC_MESSAGES/kivio.mo -share/locale/sl/LC_MESSAGES/kocryptfilter.mo -share/locale/sl/LC_MESSAGES/koffice.mo -share/locale/sl/LC_MESSAGES/kontour.mo -share/locale/sl/LC_MESSAGES/koshell.mo -share/locale/sl/LC_MESSAGES/kpresenter.mo -share/locale/sl/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/sl/LC_MESSAGES/krayon.mo -share/locale/sl/LC_MESSAGES/kscan_plugin.mo -share/locale/sl/LC_MESSAGES/kspread.mo -share/locale/sl/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/sl/LC_MESSAGES/kspreadqprofilter.mo -share/locale/sl/LC_MESSAGES/kugar.mo -share/locale/sl/LC_MESSAGES/kword.mo -share/locale/sl/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/sl/LC_MESSAGES/kwordlatexfilter.mo -share/locale/sl/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/sv/LC_MESSAGES/csvfilter.mo -share/locale/sv/LC_MESSAGES/example.mo -share/locale/sv/LC_MESSAGES/graphite.mo -share/locale/sv/LC_MESSAGES/kchart.mo -share/locale/sv/LC_MESSAGES/kformula.mo -share/locale/sv/LC_MESSAGES/kivio.mo -share/locale/sv/LC_MESSAGES/koffice.mo -share/locale/sv/LC_MESSAGES/kontour.mo -share/locale/sv/LC_MESSAGES/koshell.mo -share/locale/sv/LC_MESSAGES/kpresenter.mo -share/locale/sv/LC_MESSAGES/krayon.mo -share/locale/sv/LC_MESSAGES/kscan_plugin.mo -share/locale/sv/LC_MESSAGES/kspread.mo -share/locale/sv/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/sv/LC_MESSAGES/kugar.mo -share/locale/sv/LC_MESSAGES/kword.mo -share/locale/ta/LC_MESSAGES/csvfilter.mo -share/locale/ta/LC_MESSAGES/example.mo -share/locale/ta/LC_MESSAGES/graphite.mo -share/locale/ta/LC_MESSAGES/kchart.mo -share/locale/ta/LC_MESSAGES/kformula.mo -share/locale/ta/LC_MESSAGES/kivio.mo -share/locale/ta/LC_MESSAGES/koffice.mo -share/locale/ta/LC_MESSAGES/kontour.mo -share/locale/ta/LC_MESSAGES/koshell.mo -share/locale/ta/LC_MESSAGES/kpresenter.mo -share/locale/ta/LC_MESSAGES/krayon.mo -share/locale/ta/LC_MESSAGES/kscan_plugin.mo -share/locale/ta/LC_MESSAGES/kspread.mo -share/locale/ta/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/ta/LC_MESSAGES/kugar.mo -share/locale/ta/LC_MESSAGES/kword.mo -share/locale/tr/LC_MESSAGES/csvfilter.mo -share/locale/tr/LC_MESSAGES/example.mo -share/locale/tr/LC_MESSAGES/graphite.mo -share/locale/tr/LC_MESSAGES/kchart.mo -share/locale/tr/LC_MESSAGES/kformula.mo -share/locale/tr/LC_MESSAGES/kimage.mo -share/locale/tr/LC_MESSAGES/kivio.mo -share/locale/tr/LC_MESSAGES/koffice.mo -share/locale/tr/LC_MESSAGES/kontour.mo -share/locale/tr/LC_MESSAGES/koshell.mo -share/locale/tr/LC_MESSAGES/kpresenter.mo -share/locale/tr/LC_MESSAGES/krayon.mo -share/locale/tr/LC_MESSAGES/kscan_plugin.mo -share/locale/tr/LC_MESSAGES/kspread.mo -share/locale/tr/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/tr/LC_MESSAGES/kugar.mo -share/locale/tr/LC_MESSAGES/kword.mo -@unexec rmdir %D/share/locale/tr/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/tr 2>/dev/null || true -@unexec rmdir %D/share/locale/ta/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ta 2>/dev/null || true -@unexec rmdir %D/share/locale/sv/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/sv 2>/dev/null || true -@unexec rmdir %D/share/locale/sl/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/sl 2>/dev/null || true -@unexec rmdir %D/share/locale/sk/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/sk 2>/dev/null || true -@unexec rmdir %D/share/locale/ru/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ru 2>/dev/null || true -@unexec rmdir %D/share/locale/ro/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ro 2>/dev/null || true -@unexec rmdir %D/share/locale/pt_BR/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/pt_BR 2>/dev/null || true -@unexec rmdir %D/share/locale/pt/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/pt 2>/dev/null || true -@unexec rmdir %D/share/locale/pl/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/pl 2>/dev/null || true -@unexec rmdir %D/share/locale/no_NY/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/no_NY 2>/dev/null || true -@unexec rmdir %D/share/locale/no/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/no 2>/dev/null || true -@unexec rmdir %D/share/locale/nl/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/nl 2>/dev/null || true -@unexec rmdir %D/share/locale/mt/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/mt 2>/dev/null || true -@unexec rmdir %D/share/locale/lt/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/lt 2>/dev/null || true -@unexec rmdir %D/share/locale/ja/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ja 2>/dev/null || true -@unexec rmdir %D/share/locale/it/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/it 2>/dev/null || true -@unexec rmdir %D/share/locale/hu/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/hu 2>/dev/null || true -@unexec rmdir %D/share/locale/fr/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/fr 2>/dev/null || true -@unexec rmdir %D/share/locale/et/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/et 2>/dev/null || true -@unexec rmdir %D/share/locale/es/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/es 2>/dev/null || true -@unexec rmdir %D/share/locale/eo/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/eo 2>/dev/null || true -@unexec rmdir %D/share/locale/en_GB/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/en_GB 2>/dev/null || true -@unexec rmdir %D/share/locale/de/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/de 2>/dev/null || true -@unexec rmdir %D/share/locale/da/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/da 2>/dev/null || true -@unexec rmdir %D/share/locale/cs/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/cs 2>/dev/null || true -@unexec rmdir %D/share/locale/bg/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/bg 2>/dev/null || true -@unexec rmdir %D/share/locale/az/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/az 2>/dev/null || true diff --git a/editors/calligra-l10n/scripts/Configure b/editors/calligra-l10n/scripts/Configure deleted file mode 100644 index 3f56118..0000000 --- a/editors/calligra-l10n/scripts/Configure +++ /dev/null @@ -1,76 +0,0 @@ -#! /bin/sh -# $FreeBSD$ - -/bin/rm -f ${PLIST} ${PLIST}.dirs - -if [ "${LINGUAS}" ]; then - set `echo $LINGUAS` -else -if [ "${BATCH}" ]; then - set \"az\" \"bg\" \"cs\" \"da\" \"en_GB\" \"eo\" \"es\" \"et\" \"hu\" \"it\" \"lt\" \"mt\" \"nl\" \"no\" \"no_NY\" \"pl\" \"pt\" \"pt_BR\" \"ro\" \"sk\" \"sl\" \"sv\" \"ta\" \"tr\" -else - /usr/bin/dialog --title "Select languages" --clear \ - --checklist "\n\ -Please select desired languages:" -1 -1 16 \ -az "Afrikaans" OFF \ -bg "Bulgarisch" OFF \ -cs "Czech" OFF \ -da "Danish" OFF \ -de "German" ON \ -en_GB "UK English" OFF \ -eo "Esperanto" OFF \ -es "Spanish" OFF \ -et "Estonian" OFF \ -fr "French" ON \ -hu "Hungarian" OFF \ -it "Italian" OFF \ -ja "Japanese" ON \ -lt "Lithuanian" OFF \ -mt "Maltese" OFF \ -nl "Dutch" OFF \ -no "Norwegian" OFF \ -no_NY "Norwegian (Nynorsk)" OFF \ -pl "Polish" OFF \ -pt "Portuguese" OFF \ -pt_BR "Portuguese (Brazil)" OFF \ -ro "Romanian" OFF \ -ru "Russian" ON \ -sk "Slovak" OFF \ -sl "Slovenian" OFF \ -sv "Swedish" OFF \ -ta "Tamil" OFF \ -tr "Turkish" OFF \ -2> /tmp/chklist.tmp.$$ - - retval=$? - - if [ -s /tmp/chklist.tmp.$$ ]; then - set `cat /tmp/chklist.tmp.$$` - fi - rm -f /tmp/chklist.tmp.$$ - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi -fi - -/bin/rm -f ${WRKSRC}/subdirs - -while [ "$1" ]; do - a=`echo -n $1 | /usr/bin/sed -e 's#\"##g'` - echo $a >> ${WRKSRC}/subdirs - /usr/bin/grep "^[^@].*/$a/.*" ${CURDIR}/pkg-plist >> ${PLIST} - /usr/bin/grep "^[^@].*-$a\$" ${CURDIR}/pkg-plist >> ${PLIST} - /usr/bin/grep "^@.*/$a/.*" ${CURDIR}/pkg-plist >> ${PLIST}.dirs - /usr/bin/grep "^@.*/$a$" ${CURDIR}/pkg-plist >> ${PLIST}.dirs - shift -done - -/bin/cat ${PLIST}.dirs >> ${PLIST} diff --git a/editors/koffice-i18n/Makefile b/editors/koffice-i18n/Makefile deleted file mode 100644 index 7927481..0000000 --- a/editors/koffice-i18n/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -# New ports collection makefile for: koffice-i18n -# Date created: 15 December 2001 -# Whom: SASAKI Katuhiro <sahiro@crest.ocn.ne.jp> -# -# $FreeBSD$ -# - -PORTNAME= koffice-i18n -PORTVERSION= 1.1.1 -PORTREVISION= 1 -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/koffice-${PORTVERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER?= sahiro@crest.ocn.ne.jp - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 -LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext -RUN_DEPENDS= koshell:${PORTSDIR}/editors/koffice - -USE_KDELIBS_VER=2 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes - -PLIST= ${WRKDIR}/PLIST -SCRIPTS_ENV+= PLIST=${PLIST} - -.include <bsd.port.pre.mk> - -post-extract: - @${RM} -fr ${WRKSRC}/nb ${WRKSRC}/nn - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - cd ${WRKSRC} && env PATH=${WRKSRC}/auto-bin:$$PATH \ - ${GMAKE} -f Makefile.cvs - @${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/Configure - -.include <bsd.port.post.mk> diff --git a/editors/koffice-i18n/distinfo b/editors/koffice-i18n/distinfo deleted file mode 100644 index 3d78fdf..0000000 --- a/editors/koffice-i18n/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/koffice-i18n-1.1.1.tar.bz2) = 3233e3f38f7dbc8d45a83add7bc2327a diff --git a/editors/koffice-i18n/pkg-comment b/editors/koffice-i18n/pkg-comment deleted file mode 100644 index 28de0ab..0000000 --- a/editors/koffice-i18n/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Localized messages for KOffice diff --git a/editors/koffice-i18n/pkg-descr b/editors/koffice-i18n/pkg-descr deleted file mode 100644 index 5a4554d..0000000 --- a/editors/koffice-i18n/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -Localized messages for KOffice. diff --git a/editors/koffice-i18n/pkg-plist b/editors/koffice-i18n/pkg-plist deleted file mode 100644 index 8bb0d7f..0000000 --- a/editors/koffice-i18n/pkg-plist +++ /dev/null @@ -1,567 +0,0 @@ -share/locale/az/LC_MESSAGES/csvfilter.mo -share/locale/az/LC_MESSAGES/example.mo -share/locale/az/LC_MESSAGES/graphite.mo -share/locale/az/LC_MESSAGES/kchart.mo -share/locale/az/LC_MESSAGES/kformula.mo -share/locale/az/LC_MESSAGES/kivio.mo -share/locale/az/LC_MESSAGES/koffice.mo -share/locale/az/LC_MESSAGES/kontour.mo -share/locale/az/LC_MESSAGES/koshell.mo -share/locale/az/LC_MESSAGES/kpresenter.mo -share/locale/az/LC_MESSAGES/krayon.mo -share/locale/az/LC_MESSAGES/kscan_plugin.mo -share/locale/az/LC_MESSAGES/kspread.mo -share/locale/az/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/az/LC_MESSAGES/kugar.mo -share/locale/az/LC_MESSAGES/kword.mo -share/locale/bg/LC_MESSAGES/example.mo -share/locale/bg/LC_MESSAGES/graphite.mo -share/locale/bg/LC_MESSAGES/kchart.mo -share/locale/bg/LC_MESSAGES/kformula.mo -share/locale/bg/LC_MESSAGES/kivio.mo -share/locale/bg/LC_MESSAGES/koffice.mo -share/locale/bg/LC_MESSAGES/kontour.mo -share/locale/bg/LC_MESSAGES/koshell.mo -share/locale/bg/LC_MESSAGES/kpresenter.mo -share/locale/bg/LC_MESSAGES/krayon.mo -share/locale/bg/LC_MESSAGES/kspread.mo -share/locale/bg/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/bg/LC_MESSAGES/kugar.mo -share/locale/bg/LC_MESSAGES/kword.mo -share/locale/cs/LC_MESSAGES/csvfilter.mo -share/locale/cs/LC_MESSAGES/kchart.mo -share/locale/cs/LC_MESSAGES/kivio.mo -share/locale/cs/LC_MESSAGES/koffice.mo -share/locale/cs/LC_MESSAGES/kontour.mo -share/locale/cs/LC_MESSAGES/koshell.mo -share/locale/cs/LC_MESSAGES/kpresenter.mo -share/locale/cs/LC_MESSAGES/krayon.mo -share/locale/cs/LC_MESSAGES/kscan_plugin.mo -share/locale/cs/LC_MESSAGES/kspread.mo -share/locale/cs/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/cs/LC_MESSAGES/kugar.mo -share/locale/cs/LC_MESSAGES/kword.mo -share/locale/da/LC_MESSAGES/csvfilter.mo -share/locale/da/LC_MESSAGES/example.mo -share/locale/da/LC_MESSAGES/graphite.mo -share/locale/da/LC_MESSAGES/kchart.mo -share/locale/da/LC_MESSAGES/kformula.mo -share/locale/da/LC_MESSAGES/kivio.mo -share/locale/da/LC_MESSAGES/kocryptfilter.mo -share/locale/da/LC_MESSAGES/koffice.mo -share/locale/da/LC_MESSAGES/kontour.mo -share/locale/da/LC_MESSAGES/koshell.mo -share/locale/da/LC_MESSAGES/kpresenter.mo -share/locale/da/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/da/LC_MESSAGES/krayon.mo -share/locale/da/LC_MESSAGES/kscan_plugin.mo -share/locale/da/LC_MESSAGES/kspread.mo -share/locale/da/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/da/LC_MESSAGES/kspreadqprofilter.mo -share/locale/da/LC_MESSAGES/kugar.mo -share/locale/da/LC_MESSAGES/kword.mo -share/locale/da/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/da/LC_MESSAGES/kwordlatexfilter.mo -share/locale/da/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/de/LC_MESSAGES/csvfilter.mo -share/locale/de/LC_MESSAGES/example.mo -share/locale/de/LC_MESSAGES/graphite.mo -share/locale/de/LC_MESSAGES/kchart.mo -share/locale/de/LC_MESSAGES/kformula.mo -share/locale/de/LC_MESSAGES/kivio.mo -share/locale/de/LC_MESSAGES/kocryptfilter.mo -share/locale/de/LC_MESSAGES/koffice.mo -share/locale/de/LC_MESSAGES/kontour.mo -share/locale/de/LC_MESSAGES/koshell.mo -share/locale/de/LC_MESSAGES/kpresenter.mo -share/locale/de/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/de/LC_MESSAGES/krayon.mo -share/locale/de/LC_MESSAGES/kscan_plugin.mo -share/locale/de/LC_MESSAGES/kspread.mo -share/locale/de/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/de/LC_MESSAGES/kspreadqprofilter.mo -share/locale/de/LC_MESSAGES/kugar.mo -share/locale/de/LC_MESSAGES/kword.mo -share/locale/de/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/de/LC_MESSAGES/kwordlatexfilter.mo -share/locale/de/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/en_GB/LC_MESSAGES/csvfilter.mo -share/locale/en_GB/LC_MESSAGES/example.mo -share/locale/en_GB/LC_MESSAGES/graphite.mo -share/locale/en_GB/LC_MESSAGES/kchart.mo -share/locale/en_GB/LC_MESSAGES/kformula.mo -share/locale/en_GB/LC_MESSAGES/kivio.mo -share/locale/en_GB/LC_MESSAGES/kocryptfilter.mo -share/locale/en_GB/LC_MESSAGES/koffice.mo -share/locale/en_GB/LC_MESSAGES/kontour.mo -share/locale/en_GB/LC_MESSAGES/koshell.mo -share/locale/en_GB/LC_MESSAGES/kpresenter.mo -share/locale/en_GB/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/en_GB/LC_MESSAGES/krayon.mo -share/locale/en_GB/LC_MESSAGES/kscan_plugin.mo -share/locale/en_GB/LC_MESSAGES/kspread.mo -share/locale/en_GB/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/en_GB/LC_MESSAGES/kspreadqprofilter.mo -share/locale/en_GB/LC_MESSAGES/kugar.mo -share/locale/en_GB/LC_MESSAGES/kword.mo -share/locale/en_GB/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/en_GB/LC_MESSAGES/kwordlatexfilter.mo -share/locale/en_GB/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/eo/LC_MESSAGES/csvfilter.mo -share/locale/eo/LC_MESSAGES/example.mo -share/locale/eo/LC_MESSAGES/graphite.mo -share/locale/eo/LC_MESSAGES/kchart.mo -share/locale/eo/LC_MESSAGES/kformula.mo -share/locale/eo/LC_MESSAGES/kivio.mo -share/locale/eo/LC_MESSAGES/koffice.mo -share/locale/eo/LC_MESSAGES/kontour.mo -share/locale/eo/LC_MESSAGES/koshell.mo -share/locale/eo/LC_MESSAGES/kpresenter.mo -share/locale/eo/LC_MESSAGES/krayon.mo -share/locale/eo/LC_MESSAGES/kscan_plugin.mo -share/locale/eo/LC_MESSAGES/kspread.mo -share/locale/eo/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/eo/LC_MESSAGES/kugar.mo -share/locale/eo/LC_MESSAGES/kword.mo -share/locale/es/LC_MESSAGES/csvfilter.mo -share/locale/es/LC_MESSAGES/example.mo -share/locale/es/LC_MESSAGES/graphite.mo -share/locale/es/LC_MESSAGES/kchart.mo -share/locale/es/LC_MESSAGES/kformula.mo -share/locale/es/LC_MESSAGES/kivio.mo -share/locale/es/LC_MESSAGES/koffice.mo -share/locale/es/LC_MESSAGES/kontour.mo -share/locale/es/LC_MESSAGES/koshell.mo -share/locale/es/LC_MESSAGES/kpresenter.mo -share/locale/es/LC_MESSAGES/krayon.mo -share/locale/es/LC_MESSAGES/kscan_plugin.mo -share/locale/es/LC_MESSAGES/kspread.mo -share/locale/es/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/es/LC_MESSAGES/kugar.mo -share/locale/es/LC_MESSAGES/kword.mo -share/locale/et/LC_MESSAGES/csvfilter.mo -share/locale/et/LC_MESSAGES/example.mo -share/locale/et/LC_MESSAGES/graphite.mo -share/locale/et/LC_MESSAGES/kchart.mo -share/locale/et/LC_MESSAGES/kformula.mo -share/locale/et/LC_MESSAGES/kivio.mo -share/locale/et/LC_MESSAGES/kocryptfilter.mo -share/locale/et/LC_MESSAGES/koffice.mo -share/locale/et/LC_MESSAGES/kontour.mo -share/locale/et/LC_MESSAGES/koshell.mo -share/locale/et/LC_MESSAGES/kpresenter.mo -share/locale/et/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/et/LC_MESSAGES/krayon.mo -share/locale/et/LC_MESSAGES/kscan_plugin.mo -share/locale/et/LC_MESSAGES/kspread.mo -share/locale/et/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/et/LC_MESSAGES/kspreadqprofilter.mo -share/locale/et/LC_MESSAGES/kugar.mo -share/locale/et/LC_MESSAGES/kword.mo -share/locale/et/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/et/LC_MESSAGES/kwordlatexfilter.mo -share/locale/et/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/fr/LC_MESSAGES/csvfilter.mo -share/locale/fr/LC_MESSAGES/example.mo -share/locale/fr/LC_MESSAGES/graphite.mo -share/locale/fr/LC_MESSAGES/kchart.mo -share/locale/fr/LC_MESSAGES/kformula.mo -share/locale/fr/LC_MESSAGES/kivio.mo -share/locale/fr/LC_MESSAGES/koffice.mo -share/locale/fr/LC_MESSAGES/kontour.mo -share/locale/fr/LC_MESSAGES/koshell.mo -share/locale/fr/LC_MESSAGES/kpresenter.mo -share/locale/fr/LC_MESSAGES/krayon.mo -share/locale/fr/LC_MESSAGES/kscan_plugin.mo -share/locale/fr/LC_MESSAGES/kspread.mo -share/locale/fr/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/fr/LC_MESSAGES/kugar.mo -share/locale/fr/LC_MESSAGES/kword.mo -share/locale/hu/LC_MESSAGES/csvfilter.mo -share/locale/hu/LC_MESSAGES/example.mo -share/locale/hu/LC_MESSAGES/graphite.mo -share/locale/hu/LC_MESSAGES/kchart.mo -share/locale/hu/LC_MESSAGES/kformula.mo -share/locale/hu/LC_MESSAGES/kivio.mo -share/locale/hu/LC_MESSAGES/kocryptfilter.mo -share/locale/hu/LC_MESSAGES/koffice.mo -share/locale/hu/LC_MESSAGES/kontour.mo -share/locale/hu/LC_MESSAGES/koshell.mo -share/locale/hu/LC_MESSAGES/kpresenter.mo -share/locale/hu/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/hu/LC_MESSAGES/krayon.mo -share/locale/hu/LC_MESSAGES/kscan_plugin.mo -share/locale/hu/LC_MESSAGES/kspread.mo -share/locale/hu/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/hu/LC_MESSAGES/kspreadqprofilter.mo -share/locale/hu/LC_MESSAGES/kugar.mo -share/locale/hu/LC_MESSAGES/kword.mo -share/locale/hu/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/hu/LC_MESSAGES/kwordlatexfilter.mo -share/locale/hu/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/it/LC_MESSAGES/csvfilter.mo -share/locale/it/LC_MESSAGES/example.mo -share/locale/it/LC_MESSAGES/graphite.mo -share/locale/it/LC_MESSAGES/kchart.mo -share/locale/it/LC_MESSAGES/kformula.mo -share/locale/it/LC_MESSAGES/kformviewer.mo -share/locale/it/LC_MESSAGES/kivio.mo -share/locale/it/LC_MESSAGES/kocryptfilter.mo -share/locale/it/LC_MESSAGES/koffice.mo -share/locale/it/LC_MESSAGES/kontour.mo -share/locale/it/LC_MESSAGES/koshell.mo -share/locale/it/LC_MESSAGES/kpresenter.mo -share/locale/it/LC_MESSAGES/krayon.mo -share/locale/it/LC_MESSAGES/kscan_plugin.mo -share/locale/it/LC_MESSAGES/kspread.mo -share/locale/it/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/it/LC_MESSAGES/kugar.mo -share/locale/it/LC_MESSAGES/kword.mo -share/locale/it/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/it/LC_MESSAGES/kwordlatexfilter.mo -share/locale/it/LC_MESSAGES/spell_tool.mo -share/locale/ja/LC_MESSAGES/csvfilter.mo -share/locale/ja/LC_MESSAGES/example.mo -share/locale/ja/LC_MESSAGES/graphite.mo -share/locale/ja/LC_MESSAGES/kchart.mo -share/locale/ja/LC_MESSAGES/kformula.mo -share/locale/ja/LC_MESSAGES/kivio.mo -share/locale/ja/LC_MESSAGES/koffice.mo -share/locale/ja/LC_MESSAGES/kontour.mo -share/locale/ja/LC_MESSAGES/koshell.mo -share/locale/ja/LC_MESSAGES/kpresenter.mo -share/locale/ja/LC_MESSAGES/krayon.mo -share/locale/ja/LC_MESSAGES/kscan_plugin.mo -share/locale/ja/LC_MESSAGES/kspread.mo -share/locale/ja/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/ja/LC_MESSAGES/kugar.mo -share/locale/ja/LC_MESSAGES/kword.mo -share/locale/lt/LC_MESSAGES/csvfilter.mo -share/locale/lt/LC_MESSAGES/example.mo -share/locale/lt/LC_MESSAGES/graphite.mo -share/locale/lt/LC_MESSAGES/kchart.mo -share/locale/lt/LC_MESSAGES/kformula.mo -share/locale/lt/LC_MESSAGES/kimageshop.mo -share/locale/lt/LC_MESSAGES/kivio.mo -share/locale/lt/LC_MESSAGES/koffice.mo -share/locale/lt/LC_MESSAGES/kontour.mo -share/locale/lt/LC_MESSAGES/koshell.mo -share/locale/lt/LC_MESSAGES/kpresenter.mo -share/locale/lt/LC_MESSAGES/krayon.mo -share/locale/lt/LC_MESSAGES/kscan_plugin.mo -share/locale/lt/LC_MESSAGES/kspread.mo -share/locale/lt/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/lt/LC_MESSAGES/kugar.mo -share/locale/lt/LC_MESSAGES/kword.mo -share/locale/mt/LC_MESSAGES/csvfilter.mo -share/locale/mt/LC_MESSAGES/example.mo -share/locale/mt/LC_MESSAGES/graphite.mo -share/locale/mt/LC_MESSAGES/kchart.mo -share/locale/mt/LC_MESSAGES/kformula.mo -share/locale/mt/LC_MESSAGES/kivio.mo -share/locale/mt/LC_MESSAGES/koffice.mo -share/locale/mt/LC_MESSAGES/kontour.mo -share/locale/mt/LC_MESSAGES/koshell.mo -share/locale/mt/LC_MESSAGES/kpresenter.mo -share/locale/mt/LC_MESSAGES/krayon.mo -share/locale/mt/LC_MESSAGES/kscan_plugin.mo -share/locale/mt/LC_MESSAGES/kspread.mo -share/locale/mt/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/mt/LC_MESSAGES/kugar.mo -share/locale/mt/LC_MESSAGES/kword.mo -share/locale/nl/LC_MESSAGES/csvfilter.mo -share/locale/nl/LC_MESSAGES/example.mo -share/locale/nl/LC_MESSAGES/graphite.mo -share/locale/nl/LC_MESSAGES/kchart.mo -share/locale/nl/LC_MESSAGES/kformula.mo -share/locale/nl/LC_MESSAGES/kivio.mo -share/locale/nl/LC_MESSAGES/koffice.mo -share/locale/nl/LC_MESSAGES/kontour.mo -share/locale/nl/LC_MESSAGES/koshell.mo -share/locale/nl/LC_MESSAGES/kpresenter.mo -share/locale/nl/LC_MESSAGES/krayon.mo -share/locale/nl/LC_MESSAGES/kscan_plugin.mo -share/locale/nl/LC_MESSAGES/kspread.mo -share/locale/nl/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/nl/LC_MESSAGES/kugar.mo -share/locale/nl/LC_MESSAGES/kword.mo -share/locale/no/LC_MESSAGES/csvfilter.mo -share/locale/no/LC_MESSAGES/example.mo -share/locale/no/LC_MESSAGES/graphite.mo -share/locale/no/LC_MESSAGES/kchart.mo -share/locale/no/LC_MESSAGES/kformula.mo -share/locale/no/LC_MESSAGES/kivio.mo -share/locale/no/LC_MESSAGES/kocryptfilter.mo -share/locale/no/LC_MESSAGES/koffice.mo -share/locale/no/LC_MESSAGES/kontour.mo -share/locale/no/LC_MESSAGES/koshell.mo -share/locale/no/LC_MESSAGES/kpresenter.mo -share/locale/no/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/no/LC_MESSAGES/krayon.mo -share/locale/no/LC_MESSAGES/kscan_plugin.mo -share/locale/no/LC_MESSAGES/kspread.mo -share/locale/no/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/no/LC_MESSAGES/kspreadqprofilter.mo -share/locale/no/LC_MESSAGES/kugar.mo -share/locale/no/LC_MESSAGES/kword.mo -share/locale/no/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/no/LC_MESSAGES/kwordlatexfilter.mo -share/locale/no/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/no_NY/LC_MESSAGES/csvfilter.mo -share/locale/no_NY/LC_MESSAGES/example.mo -share/locale/no_NY/LC_MESSAGES/graphite.mo -share/locale/no_NY/LC_MESSAGES/kchart.mo -share/locale/no_NY/LC_MESSAGES/kformula.mo -share/locale/no_NY/LC_MESSAGES/kivio.mo -share/locale/no_NY/LC_MESSAGES/kocryptfilter.mo -share/locale/no_NY/LC_MESSAGES/koffice.mo -share/locale/no_NY/LC_MESSAGES/kontour.mo -share/locale/no_NY/LC_MESSAGES/koshell.mo -share/locale/no_NY/LC_MESSAGES/kpresenter.mo -share/locale/no_NY/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/no_NY/LC_MESSAGES/krayon.mo -share/locale/no_NY/LC_MESSAGES/kscan_plugin.mo -share/locale/no_NY/LC_MESSAGES/kspread.mo -share/locale/no_NY/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/no_NY/LC_MESSAGES/kspreadqprofilter.mo -share/locale/no_NY/LC_MESSAGES/kugar.mo -share/locale/no_NY/LC_MESSAGES/kword.mo -share/locale/no_NY/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/no_NY/LC_MESSAGES/kwordlatexfilter.mo -share/locale/no_NY/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/pl/LC_MESSAGES/csvfilter.mo -share/locale/pl/LC_MESSAGES/example.mo -share/locale/pl/LC_MESSAGES/graphite.mo -share/locale/pl/LC_MESSAGES/kchart.mo -share/locale/pl/LC_MESSAGES/kformula.mo -share/locale/pl/LC_MESSAGES/kivio.mo -share/locale/pl/LC_MESSAGES/koffice.mo -share/locale/pl/LC_MESSAGES/kontour.mo -share/locale/pl/LC_MESSAGES/koshell.mo -share/locale/pl/LC_MESSAGES/kpresenter.mo -share/locale/pl/LC_MESSAGES/krayon.mo -share/locale/pl/LC_MESSAGES/kscan_plugin.mo -share/locale/pl/LC_MESSAGES/kspread.mo -share/locale/pl/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/pl/LC_MESSAGES/kugar.mo -share/locale/pl/LC_MESSAGES/kword.mo -share/locale/pt/LC_MESSAGES/csvfilter.mo -share/locale/pt/LC_MESSAGES/example.mo -share/locale/pt/LC_MESSAGES/graphite.mo -share/locale/pt/LC_MESSAGES/kchart.mo -share/locale/pt/LC_MESSAGES/kformula.mo -share/locale/pt/LC_MESSAGES/kivio.mo -share/locale/pt/LC_MESSAGES/kocryptfilter.mo -share/locale/pt/LC_MESSAGES/koffice.mo -share/locale/pt/LC_MESSAGES/kontour.mo -share/locale/pt/LC_MESSAGES/koshell.mo -share/locale/pt/LC_MESSAGES/kpresenter.mo -share/locale/pt/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/pt/LC_MESSAGES/krayon.mo -share/locale/pt/LC_MESSAGES/kscan_plugin.mo -share/locale/pt/LC_MESSAGES/kspread.mo -share/locale/pt/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/pt/LC_MESSAGES/kspreadqprofilter.mo -share/locale/pt/LC_MESSAGES/kugar.mo -share/locale/pt/LC_MESSAGES/kword.mo -share/locale/pt/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/pt/LC_MESSAGES/kwordlatexfilter.mo -share/locale/pt/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/pt_BR/LC_MESSAGES/example.mo -share/locale/pt_BR/LC_MESSAGES/graphite.mo -share/locale/pt_BR/LC_MESSAGES/kchart.mo -share/locale/pt_BR/LC_MESSAGES/kdiagramm.mo -share/locale/pt_BR/LC_MESSAGES/kformula.mo -share/locale/pt_BR/LC_MESSAGES/kimage.mo -share/locale/pt_BR/LC_MESSAGES/kimageshop.mo -share/locale/pt_BR/LC_MESSAGES/kivio.mo -share/locale/pt_BR/LC_MESSAGES/koffice.mo -share/locale/pt_BR/LC_MESSAGES/kohtml.mo -share/locale/pt_BR/LC_MESSAGES/kontour.mo -share/locale/pt_BR/LC_MESSAGES/koshell.mo -share/locale/pt_BR/LC_MESSAGES/kpresenter.mo -share/locale/pt_BR/LC_MESSAGES/krayon.mo -share/locale/pt_BR/LC_MESSAGES/kspread.mo -share/locale/pt_BR/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/pt_BR/LC_MESSAGES/kugar.mo -share/locale/pt_BR/LC_MESSAGES/kword.mo -share/locale/pt_BR/LC_MESSAGES/spell_tool.mo -share/locale/ro/LC_MESSAGES/example.mo -share/locale/ro/LC_MESSAGES/graphite.mo -share/locale/ro/LC_MESSAGES/kchart.mo -share/locale/ro/LC_MESSAGES/kformula.mo -share/locale/ro/LC_MESSAGES/kivio.mo -share/locale/ro/LC_MESSAGES/koffice.mo -share/locale/ro/LC_MESSAGES/kontour.mo -share/locale/ro/LC_MESSAGES/koshell.mo -share/locale/ro/LC_MESSAGES/kpresenter.mo -share/locale/ro/LC_MESSAGES/krayon.mo -share/locale/ro/LC_MESSAGES/kspread.mo -share/locale/ro/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/ro/LC_MESSAGES/kugar.mo -share/locale/ro/LC_MESSAGES/kword.mo -share/locale/ru/LC_MESSAGES/csvfilter.mo -share/locale/ru/LC_MESSAGES/example.mo -share/locale/ru/LC_MESSAGES/graphite.mo -share/locale/ru/LC_MESSAGES/kchart.mo -share/locale/ru/LC_MESSAGES/kformula.mo -share/locale/ru/LC_MESSAGES/kivio.mo -share/locale/ru/LC_MESSAGES/kocryptfilter.mo -share/locale/ru/LC_MESSAGES/koffice.mo -share/locale/ru/LC_MESSAGES/kontour.mo -share/locale/ru/LC_MESSAGES/koshell.mo -share/locale/ru/LC_MESSAGES/kpresenter.mo -share/locale/ru/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/ru/LC_MESSAGES/krayon.mo -share/locale/ru/LC_MESSAGES/kscan_plugin.mo -share/locale/ru/LC_MESSAGES/kspread.mo -share/locale/ru/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/ru/LC_MESSAGES/kspreadqprofilter.mo -share/locale/ru/LC_MESSAGES/kugar.mo -share/locale/ru/LC_MESSAGES/kword.mo -share/locale/ru/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/ru/LC_MESSAGES/kwordlatexfilter.mo -share/locale/ru/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/sk/LC_MESSAGES/csvfilter.mo -share/locale/sk/LC_MESSAGES/example.mo -share/locale/sk/LC_MESSAGES/graphite.mo -share/locale/sk/LC_MESSAGES/kchart.mo -share/locale/sk/LC_MESSAGES/kformula.mo -share/locale/sk/LC_MESSAGES/kivio.mo -share/locale/sk/LC_MESSAGES/koffice.mo -share/locale/sk/LC_MESSAGES/kontour.mo -share/locale/sk/LC_MESSAGES/koshell.mo -share/locale/sk/LC_MESSAGES/kpresenter.mo -share/locale/sk/LC_MESSAGES/krayon.mo -share/locale/sk/LC_MESSAGES/kscan_plugin.mo -share/locale/sk/LC_MESSAGES/kspread.mo -share/locale/sk/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/sk/LC_MESSAGES/kugar.mo -share/locale/sk/LC_MESSAGES/kword.mo -share/locale/sl/LC_MESSAGES/csvfilter.mo -share/locale/sl/LC_MESSAGES/example.mo -share/locale/sl/LC_MESSAGES/graphite.mo -share/locale/sl/LC_MESSAGES/kchart.mo -share/locale/sl/LC_MESSAGES/kformula.mo -share/locale/sl/LC_MESSAGES/kivio.mo -share/locale/sl/LC_MESSAGES/kocryptfilter.mo -share/locale/sl/LC_MESSAGES/koffice.mo -share/locale/sl/LC_MESSAGES/kontour.mo -share/locale/sl/LC_MESSAGES/koshell.mo -share/locale/sl/LC_MESSAGES/kpresenter.mo -share/locale/sl/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/sl/LC_MESSAGES/krayon.mo -share/locale/sl/LC_MESSAGES/kscan_plugin.mo -share/locale/sl/LC_MESSAGES/kspread.mo -share/locale/sl/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/sl/LC_MESSAGES/kspreadqprofilter.mo -share/locale/sl/LC_MESSAGES/kugar.mo -share/locale/sl/LC_MESSAGES/kword.mo -share/locale/sl/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/sl/LC_MESSAGES/kwordlatexfilter.mo -share/locale/sl/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/sv/LC_MESSAGES/csvfilter.mo -share/locale/sv/LC_MESSAGES/example.mo -share/locale/sv/LC_MESSAGES/graphite.mo -share/locale/sv/LC_MESSAGES/kchart.mo -share/locale/sv/LC_MESSAGES/kformula.mo -share/locale/sv/LC_MESSAGES/kivio.mo -share/locale/sv/LC_MESSAGES/koffice.mo -share/locale/sv/LC_MESSAGES/kontour.mo -share/locale/sv/LC_MESSAGES/koshell.mo -share/locale/sv/LC_MESSAGES/kpresenter.mo -share/locale/sv/LC_MESSAGES/krayon.mo -share/locale/sv/LC_MESSAGES/kscan_plugin.mo -share/locale/sv/LC_MESSAGES/kspread.mo -share/locale/sv/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/sv/LC_MESSAGES/kugar.mo -share/locale/sv/LC_MESSAGES/kword.mo -share/locale/ta/LC_MESSAGES/csvfilter.mo -share/locale/ta/LC_MESSAGES/example.mo -share/locale/ta/LC_MESSAGES/graphite.mo -share/locale/ta/LC_MESSAGES/kchart.mo -share/locale/ta/LC_MESSAGES/kformula.mo -share/locale/ta/LC_MESSAGES/kivio.mo -share/locale/ta/LC_MESSAGES/koffice.mo -share/locale/ta/LC_MESSAGES/kontour.mo -share/locale/ta/LC_MESSAGES/koshell.mo -share/locale/ta/LC_MESSAGES/kpresenter.mo -share/locale/ta/LC_MESSAGES/krayon.mo -share/locale/ta/LC_MESSAGES/kscan_plugin.mo -share/locale/ta/LC_MESSAGES/kspread.mo -share/locale/ta/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/ta/LC_MESSAGES/kugar.mo -share/locale/ta/LC_MESSAGES/kword.mo -share/locale/tr/LC_MESSAGES/csvfilter.mo -share/locale/tr/LC_MESSAGES/example.mo -share/locale/tr/LC_MESSAGES/graphite.mo -share/locale/tr/LC_MESSAGES/kchart.mo -share/locale/tr/LC_MESSAGES/kformula.mo -share/locale/tr/LC_MESSAGES/kimage.mo -share/locale/tr/LC_MESSAGES/kivio.mo -share/locale/tr/LC_MESSAGES/koffice.mo -share/locale/tr/LC_MESSAGES/kontour.mo -share/locale/tr/LC_MESSAGES/koshell.mo -share/locale/tr/LC_MESSAGES/kpresenter.mo -share/locale/tr/LC_MESSAGES/krayon.mo -share/locale/tr/LC_MESSAGES/kscan_plugin.mo -share/locale/tr/LC_MESSAGES/kspread.mo -share/locale/tr/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/tr/LC_MESSAGES/kugar.mo -share/locale/tr/LC_MESSAGES/kword.mo -@unexec rmdir %D/share/locale/tr/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/tr 2>/dev/null || true -@unexec rmdir %D/share/locale/ta/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ta 2>/dev/null || true -@unexec rmdir %D/share/locale/sv/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/sv 2>/dev/null || true -@unexec rmdir %D/share/locale/sl/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/sl 2>/dev/null || true -@unexec rmdir %D/share/locale/sk/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/sk 2>/dev/null || true -@unexec rmdir %D/share/locale/ru/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ru 2>/dev/null || true -@unexec rmdir %D/share/locale/ro/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ro 2>/dev/null || true -@unexec rmdir %D/share/locale/pt_BR/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/pt_BR 2>/dev/null || true -@unexec rmdir %D/share/locale/pt/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/pt 2>/dev/null || true -@unexec rmdir %D/share/locale/pl/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/pl 2>/dev/null || true -@unexec rmdir %D/share/locale/no_NY/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/no_NY 2>/dev/null || true -@unexec rmdir %D/share/locale/no/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/no 2>/dev/null || true -@unexec rmdir %D/share/locale/nl/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/nl 2>/dev/null || true -@unexec rmdir %D/share/locale/mt/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/mt 2>/dev/null || true -@unexec rmdir %D/share/locale/lt/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/lt 2>/dev/null || true -@unexec rmdir %D/share/locale/ja/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ja 2>/dev/null || true -@unexec rmdir %D/share/locale/it/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/it 2>/dev/null || true -@unexec rmdir %D/share/locale/hu/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/hu 2>/dev/null || true -@unexec rmdir %D/share/locale/fr/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/fr 2>/dev/null || true -@unexec rmdir %D/share/locale/et/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/et 2>/dev/null || true -@unexec rmdir %D/share/locale/es/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/es 2>/dev/null || true -@unexec rmdir %D/share/locale/eo/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/eo 2>/dev/null || true -@unexec rmdir %D/share/locale/en_GB/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/en_GB 2>/dev/null || true -@unexec rmdir %D/share/locale/de/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/de 2>/dev/null || true -@unexec rmdir %D/share/locale/da/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/da 2>/dev/null || true -@unexec rmdir %D/share/locale/cs/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/cs 2>/dev/null || true -@unexec rmdir %D/share/locale/bg/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/bg 2>/dev/null || true -@unexec rmdir %D/share/locale/az/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/az 2>/dev/null || true diff --git a/editors/koffice-i18n/scripts/Configure b/editors/koffice-i18n/scripts/Configure deleted file mode 100644 index 3f56118..0000000 --- a/editors/koffice-i18n/scripts/Configure +++ /dev/null @@ -1,76 +0,0 @@ -#! /bin/sh -# $FreeBSD$ - -/bin/rm -f ${PLIST} ${PLIST}.dirs - -if [ "${LINGUAS}" ]; then - set `echo $LINGUAS` -else -if [ "${BATCH}" ]; then - set \"az\" \"bg\" \"cs\" \"da\" \"en_GB\" \"eo\" \"es\" \"et\" \"hu\" \"it\" \"lt\" \"mt\" \"nl\" \"no\" \"no_NY\" \"pl\" \"pt\" \"pt_BR\" \"ro\" \"sk\" \"sl\" \"sv\" \"ta\" \"tr\" -else - /usr/bin/dialog --title "Select languages" --clear \ - --checklist "\n\ -Please select desired languages:" -1 -1 16 \ -az "Afrikaans" OFF \ -bg "Bulgarisch" OFF \ -cs "Czech" OFF \ -da "Danish" OFF \ -de "German" ON \ -en_GB "UK English" OFF \ -eo "Esperanto" OFF \ -es "Spanish" OFF \ -et "Estonian" OFF \ -fr "French" ON \ -hu "Hungarian" OFF \ -it "Italian" OFF \ -ja "Japanese" ON \ -lt "Lithuanian" OFF \ -mt "Maltese" OFF \ -nl "Dutch" OFF \ -no "Norwegian" OFF \ -no_NY "Norwegian (Nynorsk)" OFF \ -pl "Polish" OFF \ -pt "Portuguese" OFF \ -pt_BR "Portuguese (Brazil)" OFF \ -ro "Romanian" OFF \ -ru "Russian" ON \ -sk "Slovak" OFF \ -sl "Slovenian" OFF \ -sv "Swedish" OFF \ -ta "Tamil" OFF \ -tr "Turkish" OFF \ -2> /tmp/chklist.tmp.$$ - - retval=$? - - if [ -s /tmp/chklist.tmp.$$ ]; then - set `cat /tmp/chklist.tmp.$$` - fi - rm -f /tmp/chklist.tmp.$$ - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi -fi - -/bin/rm -f ${WRKSRC}/subdirs - -while [ "$1" ]; do - a=`echo -n $1 | /usr/bin/sed -e 's#\"##g'` - echo $a >> ${WRKSRC}/subdirs - /usr/bin/grep "^[^@].*/$a/.*" ${CURDIR}/pkg-plist >> ${PLIST} - /usr/bin/grep "^[^@].*-$a\$" ${CURDIR}/pkg-plist >> ${PLIST} - /usr/bin/grep "^@.*/$a/.*" ${CURDIR}/pkg-plist >> ${PLIST}.dirs - /usr/bin/grep "^@.*/$a$" ${CURDIR}/pkg-plist >> ${PLIST}.dirs - shift -done - -/bin/cat ${PLIST}.dirs >> ${PLIST} diff --git a/editors/koffice-kde4-l10n/Makefile b/editors/koffice-kde4-l10n/Makefile deleted file mode 100644 index 7927481..0000000 --- a/editors/koffice-kde4-l10n/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -# New ports collection makefile for: koffice-i18n -# Date created: 15 December 2001 -# Whom: SASAKI Katuhiro <sahiro@crest.ocn.ne.jp> -# -# $FreeBSD$ -# - -PORTNAME= koffice-i18n -PORTVERSION= 1.1.1 -PORTREVISION= 1 -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/koffice-${PORTVERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER?= sahiro@crest.ocn.ne.jp - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 -LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext -RUN_DEPENDS= koshell:${PORTSDIR}/editors/koffice - -USE_KDELIBS_VER=2 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes - -PLIST= ${WRKDIR}/PLIST -SCRIPTS_ENV+= PLIST=${PLIST} - -.include <bsd.port.pre.mk> - -post-extract: - @${RM} -fr ${WRKSRC}/nb ${WRKSRC}/nn - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - cd ${WRKSRC} && env PATH=${WRKSRC}/auto-bin:$$PATH \ - ${GMAKE} -f Makefile.cvs - @${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/Configure - -.include <bsd.port.post.mk> diff --git a/editors/koffice-kde4-l10n/distinfo b/editors/koffice-kde4-l10n/distinfo deleted file mode 100644 index 3d78fdf..0000000 --- a/editors/koffice-kde4-l10n/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/koffice-i18n-1.1.1.tar.bz2) = 3233e3f38f7dbc8d45a83add7bc2327a diff --git a/editors/koffice-kde4-l10n/pkg-comment b/editors/koffice-kde4-l10n/pkg-comment deleted file mode 100644 index 28de0ab..0000000 --- a/editors/koffice-kde4-l10n/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Localized messages for KOffice diff --git a/editors/koffice-kde4-l10n/pkg-descr b/editors/koffice-kde4-l10n/pkg-descr deleted file mode 100644 index 5a4554d..0000000 --- a/editors/koffice-kde4-l10n/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -Localized messages for KOffice. diff --git a/editors/koffice-kde4-l10n/pkg-plist b/editors/koffice-kde4-l10n/pkg-plist deleted file mode 100644 index 8bb0d7f..0000000 --- a/editors/koffice-kde4-l10n/pkg-plist +++ /dev/null @@ -1,567 +0,0 @@ -share/locale/az/LC_MESSAGES/csvfilter.mo -share/locale/az/LC_MESSAGES/example.mo -share/locale/az/LC_MESSAGES/graphite.mo -share/locale/az/LC_MESSAGES/kchart.mo -share/locale/az/LC_MESSAGES/kformula.mo -share/locale/az/LC_MESSAGES/kivio.mo -share/locale/az/LC_MESSAGES/koffice.mo -share/locale/az/LC_MESSAGES/kontour.mo -share/locale/az/LC_MESSAGES/koshell.mo -share/locale/az/LC_MESSAGES/kpresenter.mo -share/locale/az/LC_MESSAGES/krayon.mo -share/locale/az/LC_MESSAGES/kscan_plugin.mo -share/locale/az/LC_MESSAGES/kspread.mo -share/locale/az/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/az/LC_MESSAGES/kugar.mo -share/locale/az/LC_MESSAGES/kword.mo -share/locale/bg/LC_MESSAGES/example.mo -share/locale/bg/LC_MESSAGES/graphite.mo -share/locale/bg/LC_MESSAGES/kchart.mo -share/locale/bg/LC_MESSAGES/kformula.mo -share/locale/bg/LC_MESSAGES/kivio.mo -share/locale/bg/LC_MESSAGES/koffice.mo -share/locale/bg/LC_MESSAGES/kontour.mo -share/locale/bg/LC_MESSAGES/koshell.mo -share/locale/bg/LC_MESSAGES/kpresenter.mo -share/locale/bg/LC_MESSAGES/krayon.mo -share/locale/bg/LC_MESSAGES/kspread.mo -share/locale/bg/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/bg/LC_MESSAGES/kugar.mo -share/locale/bg/LC_MESSAGES/kword.mo -share/locale/cs/LC_MESSAGES/csvfilter.mo -share/locale/cs/LC_MESSAGES/kchart.mo -share/locale/cs/LC_MESSAGES/kivio.mo -share/locale/cs/LC_MESSAGES/koffice.mo -share/locale/cs/LC_MESSAGES/kontour.mo -share/locale/cs/LC_MESSAGES/koshell.mo -share/locale/cs/LC_MESSAGES/kpresenter.mo -share/locale/cs/LC_MESSAGES/krayon.mo -share/locale/cs/LC_MESSAGES/kscan_plugin.mo -share/locale/cs/LC_MESSAGES/kspread.mo -share/locale/cs/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/cs/LC_MESSAGES/kugar.mo -share/locale/cs/LC_MESSAGES/kword.mo -share/locale/da/LC_MESSAGES/csvfilter.mo -share/locale/da/LC_MESSAGES/example.mo -share/locale/da/LC_MESSAGES/graphite.mo -share/locale/da/LC_MESSAGES/kchart.mo -share/locale/da/LC_MESSAGES/kformula.mo -share/locale/da/LC_MESSAGES/kivio.mo -share/locale/da/LC_MESSAGES/kocryptfilter.mo -share/locale/da/LC_MESSAGES/koffice.mo -share/locale/da/LC_MESSAGES/kontour.mo -share/locale/da/LC_MESSAGES/koshell.mo -share/locale/da/LC_MESSAGES/kpresenter.mo -share/locale/da/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/da/LC_MESSAGES/krayon.mo -share/locale/da/LC_MESSAGES/kscan_plugin.mo -share/locale/da/LC_MESSAGES/kspread.mo -share/locale/da/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/da/LC_MESSAGES/kspreadqprofilter.mo -share/locale/da/LC_MESSAGES/kugar.mo -share/locale/da/LC_MESSAGES/kword.mo -share/locale/da/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/da/LC_MESSAGES/kwordlatexfilter.mo -share/locale/da/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/de/LC_MESSAGES/csvfilter.mo -share/locale/de/LC_MESSAGES/example.mo -share/locale/de/LC_MESSAGES/graphite.mo -share/locale/de/LC_MESSAGES/kchart.mo -share/locale/de/LC_MESSAGES/kformula.mo -share/locale/de/LC_MESSAGES/kivio.mo -share/locale/de/LC_MESSAGES/kocryptfilter.mo -share/locale/de/LC_MESSAGES/koffice.mo -share/locale/de/LC_MESSAGES/kontour.mo -share/locale/de/LC_MESSAGES/koshell.mo -share/locale/de/LC_MESSAGES/kpresenter.mo -share/locale/de/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/de/LC_MESSAGES/krayon.mo -share/locale/de/LC_MESSAGES/kscan_plugin.mo -share/locale/de/LC_MESSAGES/kspread.mo -share/locale/de/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/de/LC_MESSAGES/kspreadqprofilter.mo -share/locale/de/LC_MESSAGES/kugar.mo -share/locale/de/LC_MESSAGES/kword.mo -share/locale/de/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/de/LC_MESSAGES/kwordlatexfilter.mo -share/locale/de/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/en_GB/LC_MESSAGES/csvfilter.mo -share/locale/en_GB/LC_MESSAGES/example.mo -share/locale/en_GB/LC_MESSAGES/graphite.mo -share/locale/en_GB/LC_MESSAGES/kchart.mo -share/locale/en_GB/LC_MESSAGES/kformula.mo -share/locale/en_GB/LC_MESSAGES/kivio.mo -share/locale/en_GB/LC_MESSAGES/kocryptfilter.mo -share/locale/en_GB/LC_MESSAGES/koffice.mo -share/locale/en_GB/LC_MESSAGES/kontour.mo -share/locale/en_GB/LC_MESSAGES/koshell.mo -share/locale/en_GB/LC_MESSAGES/kpresenter.mo -share/locale/en_GB/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/en_GB/LC_MESSAGES/krayon.mo -share/locale/en_GB/LC_MESSAGES/kscan_plugin.mo -share/locale/en_GB/LC_MESSAGES/kspread.mo -share/locale/en_GB/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/en_GB/LC_MESSAGES/kspreadqprofilter.mo -share/locale/en_GB/LC_MESSAGES/kugar.mo -share/locale/en_GB/LC_MESSAGES/kword.mo -share/locale/en_GB/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/en_GB/LC_MESSAGES/kwordlatexfilter.mo -share/locale/en_GB/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/eo/LC_MESSAGES/csvfilter.mo -share/locale/eo/LC_MESSAGES/example.mo -share/locale/eo/LC_MESSAGES/graphite.mo -share/locale/eo/LC_MESSAGES/kchart.mo -share/locale/eo/LC_MESSAGES/kformula.mo -share/locale/eo/LC_MESSAGES/kivio.mo -share/locale/eo/LC_MESSAGES/koffice.mo -share/locale/eo/LC_MESSAGES/kontour.mo -share/locale/eo/LC_MESSAGES/koshell.mo -share/locale/eo/LC_MESSAGES/kpresenter.mo -share/locale/eo/LC_MESSAGES/krayon.mo -share/locale/eo/LC_MESSAGES/kscan_plugin.mo -share/locale/eo/LC_MESSAGES/kspread.mo -share/locale/eo/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/eo/LC_MESSAGES/kugar.mo -share/locale/eo/LC_MESSAGES/kword.mo -share/locale/es/LC_MESSAGES/csvfilter.mo -share/locale/es/LC_MESSAGES/example.mo -share/locale/es/LC_MESSAGES/graphite.mo -share/locale/es/LC_MESSAGES/kchart.mo -share/locale/es/LC_MESSAGES/kformula.mo -share/locale/es/LC_MESSAGES/kivio.mo -share/locale/es/LC_MESSAGES/koffice.mo -share/locale/es/LC_MESSAGES/kontour.mo -share/locale/es/LC_MESSAGES/koshell.mo -share/locale/es/LC_MESSAGES/kpresenter.mo -share/locale/es/LC_MESSAGES/krayon.mo -share/locale/es/LC_MESSAGES/kscan_plugin.mo -share/locale/es/LC_MESSAGES/kspread.mo -share/locale/es/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/es/LC_MESSAGES/kugar.mo -share/locale/es/LC_MESSAGES/kword.mo -share/locale/et/LC_MESSAGES/csvfilter.mo -share/locale/et/LC_MESSAGES/example.mo -share/locale/et/LC_MESSAGES/graphite.mo -share/locale/et/LC_MESSAGES/kchart.mo -share/locale/et/LC_MESSAGES/kformula.mo -share/locale/et/LC_MESSAGES/kivio.mo -share/locale/et/LC_MESSAGES/kocryptfilter.mo -share/locale/et/LC_MESSAGES/koffice.mo -share/locale/et/LC_MESSAGES/kontour.mo -share/locale/et/LC_MESSAGES/koshell.mo -share/locale/et/LC_MESSAGES/kpresenter.mo -share/locale/et/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/et/LC_MESSAGES/krayon.mo -share/locale/et/LC_MESSAGES/kscan_plugin.mo -share/locale/et/LC_MESSAGES/kspread.mo -share/locale/et/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/et/LC_MESSAGES/kspreadqprofilter.mo -share/locale/et/LC_MESSAGES/kugar.mo -share/locale/et/LC_MESSAGES/kword.mo -share/locale/et/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/et/LC_MESSAGES/kwordlatexfilter.mo -share/locale/et/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/fr/LC_MESSAGES/csvfilter.mo -share/locale/fr/LC_MESSAGES/example.mo -share/locale/fr/LC_MESSAGES/graphite.mo -share/locale/fr/LC_MESSAGES/kchart.mo -share/locale/fr/LC_MESSAGES/kformula.mo -share/locale/fr/LC_MESSAGES/kivio.mo -share/locale/fr/LC_MESSAGES/koffice.mo -share/locale/fr/LC_MESSAGES/kontour.mo -share/locale/fr/LC_MESSAGES/koshell.mo -share/locale/fr/LC_MESSAGES/kpresenter.mo -share/locale/fr/LC_MESSAGES/krayon.mo -share/locale/fr/LC_MESSAGES/kscan_plugin.mo -share/locale/fr/LC_MESSAGES/kspread.mo -share/locale/fr/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/fr/LC_MESSAGES/kugar.mo -share/locale/fr/LC_MESSAGES/kword.mo -share/locale/hu/LC_MESSAGES/csvfilter.mo -share/locale/hu/LC_MESSAGES/example.mo -share/locale/hu/LC_MESSAGES/graphite.mo -share/locale/hu/LC_MESSAGES/kchart.mo -share/locale/hu/LC_MESSAGES/kformula.mo -share/locale/hu/LC_MESSAGES/kivio.mo -share/locale/hu/LC_MESSAGES/kocryptfilter.mo -share/locale/hu/LC_MESSAGES/koffice.mo -share/locale/hu/LC_MESSAGES/kontour.mo -share/locale/hu/LC_MESSAGES/koshell.mo -share/locale/hu/LC_MESSAGES/kpresenter.mo -share/locale/hu/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/hu/LC_MESSAGES/krayon.mo -share/locale/hu/LC_MESSAGES/kscan_plugin.mo -share/locale/hu/LC_MESSAGES/kspread.mo -share/locale/hu/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/hu/LC_MESSAGES/kspreadqprofilter.mo -share/locale/hu/LC_MESSAGES/kugar.mo -share/locale/hu/LC_MESSAGES/kword.mo -share/locale/hu/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/hu/LC_MESSAGES/kwordlatexfilter.mo -share/locale/hu/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/it/LC_MESSAGES/csvfilter.mo -share/locale/it/LC_MESSAGES/example.mo -share/locale/it/LC_MESSAGES/graphite.mo -share/locale/it/LC_MESSAGES/kchart.mo -share/locale/it/LC_MESSAGES/kformula.mo -share/locale/it/LC_MESSAGES/kformviewer.mo -share/locale/it/LC_MESSAGES/kivio.mo -share/locale/it/LC_MESSAGES/kocryptfilter.mo -share/locale/it/LC_MESSAGES/koffice.mo -share/locale/it/LC_MESSAGES/kontour.mo -share/locale/it/LC_MESSAGES/koshell.mo -share/locale/it/LC_MESSAGES/kpresenter.mo -share/locale/it/LC_MESSAGES/krayon.mo -share/locale/it/LC_MESSAGES/kscan_plugin.mo -share/locale/it/LC_MESSAGES/kspread.mo -share/locale/it/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/it/LC_MESSAGES/kugar.mo -share/locale/it/LC_MESSAGES/kword.mo -share/locale/it/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/it/LC_MESSAGES/kwordlatexfilter.mo -share/locale/it/LC_MESSAGES/spell_tool.mo -share/locale/ja/LC_MESSAGES/csvfilter.mo -share/locale/ja/LC_MESSAGES/example.mo -share/locale/ja/LC_MESSAGES/graphite.mo -share/locale/ja/LC_MESSAGES/kchart.mo -share/locale/ja/LC_MESSAGES/kformula.mo -share/locale/ja/LC_MESSAGES/kivio.mo -share/locale/ja/LC_MESSAGES/koffice.mo -share/locale/ja/LC_MESSAGES/kontour.mo -share/locale/ja/LC_MESSAGES/koshell.mo -share/locale/ja/LC_MESSAGES/kpresenter.mo -share/locale/ja/LC_MESSAGES/krayon.mo -share/locale/ja/LC_MESSAGES/kscan_plugin.mo -share/locale/ja/LC_MESSAGES/kspread.mo -share/locale/ja/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/ja/LC_MESSAGES/kugar.mo -share/locale/ja/LC_MESSAGES/kword.mo -share/locale/lt/LC_MESSAGES/csvfilter.mo -share/locale/lt/LC_MESSAGES/example.mo -share/locale/lt/LC_MESSAGES/graphite.mo -share/locale/lt/LC_MESSAGES/kchart.mo -share/locale/lt/LC_MESSAGES/kformula.mo -share/locale/lt/LC_MESSAGES/kimageshop.mo -share/locale/lt/LC_MESSAGES/kivio.mo -share/locale/lt/LC_MESSAGES/koffice.mo -share/locale/lt/LC_MESSAGES/kontour.mo -share/locale/lt/LC_MESSAGES/koshell.mo -share/locale/lt/LC_MESSAGES/kpresenter.mo -share/locale/lt/LC_MESSAGES/krayon.mo -share/locale/lt/LC_MESSAGES/kscan_plugin.mo -share/locale/lt/LC_MESSAGES/kspread.mo -share/locale/lt/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/lt/LC_MESSAGES/kugar.mo -share/locale/lt/LC_MESSAGES/kword.mo -share/locale/mt/LC_MESSAGES/csvfilter.mo -share/locale/mt/LC_MESSAGES/example.mo -share/locale/mt/LC_MESSAGES/graphite.mo -share/locale/mt/LC_MESSAGES/kchart.mo -share/locale/mt/LC_MESSAGES/kformula.mo -share/locale/mt/LC_MESSAGES/kivio.mo -share/locale/mt/LC_MESSAGES/koffice.mo -share/locale/mt/LC_MESSAGES/kontour.mo -share/locale/mt/LC_MESSAGES/koshell.mo -share/locale/mt/LC_MESSAGES/kpresenter.mo -share/locale/mt/LC_MESSAGES/krayon.mo -share/locale/mt/LC_MESSAGES/kscan_plugin.mo -share/locale/mt/LC_MESSAGES/kspread.mo -share/locale/mt/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/mt/LC_MESSAGES/kugar.mo -share/locale/mt/LC_MESSAGES/kword.mo -share/locale/nl/LC_MESSAGES/csvfilter.mo -share/locale/nl/LC_MESSAGES/example.mo -share/locale/nl/LC_MESSAGES/graphite.mo -share/locale/nl/LC_MESSAGES/kchart.mo -share/locale/nl/LC_MESSAGES/kformula.mo -share/locale/nl/LC_MESSAGES/kivio.mo -share/locale/nl/LC_MESSAGES/koffice.mo -share/locale/nl/LC_MESSAGES/kontour.mo -share/locale/nl/LC_MESSAGES/koshell.mo -share/locale/nl/LC_MESSAGES/kpresenter.mo -share/locale/nl/LC_MESSAGES/krayon.mo -share/locale/nl/LC_MESSAGES/kscan_plugin.mo -share/locale/nl/LC_MESSAGES/kspread.mo -share/locale/nl/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/nl/LC_MESSAGES/kugar.mo -share/locale/nl/LC_MESSAGES/kword.mo -share/locale/no/LC_MESSAGES/csvfilter.mo -share/locale/no/LC_MESSAGES/example.mo -share/locale/no/LC_MESSAGES/graphite.mo -share/locale/no/LC_MESSAGES/kchart.mo -share/locale/no/LC_MESSAGES/kformula.mo -share/locale/no/LC_MESSAGES/kivio.mo -share/locale/no/LC_MESSAGES/kocryptfilter.mo -share/locale/no/LC_MESSAGES/koffice.mo -share/locale/no/LC_MESSAGES/kontour.mo -share/locale/no/LC_MESSAGES/koshell.mo -share/locale/no/LC_MESSAGES/kpresenter.mo -share/locale/no/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/no/LC_MESSAGES/krayon.mo -share/locale/no/LC_MESSAGES/kscan_plugin.mo -share/locale/no/LC_MESSAGES/kspread.mo -share/locale/no/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/no/LC_MESSAGES/kspreadqprofilter.mo -share/locale/no/LC_MESSAGES/kugar.mo -share/locale/no/LC_MESSAGES/kword.mo -share/locale/no/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/no/LC_MESSAGES/kwordlatexfilter.mo -share/locale/no/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/no_NY/LC_MESSAGES/csvfilter.mo -share/locale/no_NY/LC_MESSAGES/example.mo -share/locale/no_NY/LC_MESSAGES/graphite.mo -share/locale/no_NY/LC_MESSAGES/kchart.mo -share/locale/no_NY/LC_MESSAGES/kformula.mo -share/locale/no_NY/LC_MESSAGES/kivio.mo -share/locale/no_NY/LC_MESSAGES/kocryptfilter.mo -share/locale/no_NY/LC_MESSAGES/koffice.mo -share/locale/no_NY/LC_MESSAGES/kontour.mo -share/locale/no_NY/LC_MESSAGES/koshell.mo -share/locale/no_NY/LC_MESSAGES/kpresenter.mo -share/locale/no_NY/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/no_NY/LC_MESSAGES/krayon.mo -share/locale/no_NY/LC_MESSAGES/kscan_plugin.mo -share/locale/no_NY/LC_MESSAGES/kspread.mo -share/locale/no_NY/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/no_NY/LC_MESSAGES/kspreadqprofilter.mo -share/locale/no_NY/LC_MESSAGES/kugar.mo -share/locale/no_NY/LC_MESSAGES/kword.mo -share/locale/no_NY/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/no_NY/LC_MESSAGES/kwordlatexfilter.mo -share/locale/no_NY/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/pl/LC_MESSAGES/csvfilter.mo -share/locale/pl/LC_MESSAGES/example.mo -share/locale/pl/LC_MESSAGES/graphite.mo -share/locale/pl/LC_MESSAGES/kchart.mo -share/locale/pl/LC_MESSAGES/kformula.mo -share/locale/pl/LC_MESSAGES/kivio.mo -share/locale/pl/LC_MESSAGES/koffice.mo -share/locale/pl/LC_MESSAGES/kontour.mo -share/locale/pl/LC_MESSAGES/koshell.mo -share/locale/pl/LC_MESSAGES/kpresenter.mo -share/locale/pl/LC_MESSAGES/krayon.mo -share/locale/pl/LC_MESSAGES/kscan_plugin.mo -share/locale/pl/LC_MESSAGES/kspread.mo -share/locale/pl/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/pl/LC_MESSAGES/kugar.mo -share/locale/pl/LC_MESSAGES/kword.mo -share/locale/pt/LC_MESSAGES/csvfilter.mo -share/locale/pt/LC_MESSAGES/example.mo -share/locale/pt/LC_MESSAGES/graphite.mo -share/locale/pt/LC_MESSAGES/kchart.mo -share/locale/pt/LC_MESSAGES/kformula.mo -share/locale/pt/LC_MESSAGES/kivio.mo -share/locale/pt/LC_MESSAGES/kocryptfilter.mo -share/locale/pt/LC_MESSAGES/koffice.mo -share/locale/pt/LC_MESSAGES/kontour.mo -share/locale/pt/LC_MESSAGES/koshell.mo -share/locale/pt/LC_MESSAGES/kpresenter.mo -share/locale/pt/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/pt/LC_MESSAGES/krayon.mo -share/locale/pt/LC_MESSAGES/kscan_plugin.mo -share/locale/pt/LC_MESSAGES/kspread.mo -share/locale/pt/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/pt/LC_MESSAGES/kspreadqprofilter.mo -share/locale/pt/LC_MESSAGES/kugar.mo -share/locale/pt/LC_MESSAGES/kword.mo -share/locale/pt/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/pt/LC_MESSAGES/kwordlatexfilter.mo -share/locale/pt/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/pt_BR/LC_MESSAGES/example.mo -share/locale/pt_BR/LC_MESSAGES/graphite.mo -share/locale/pt_BR/LC_MESSAGES/kchart.mo -share/locale/pt_BR/LC_MESSAGES/kdiagramm.mo -share/locale/pt_BR/LC_MESSAGES/kformula.mo -share/locale/pt_BR/LC_MESSAGES/kimage.mo -share/locale/pt_BR/LC_MESSAGES/kimageshop.mo -share/locale/pt_BR/LC_MESSAGES/kivio.mo -share/locale/pt_BR/LC_MESSAGES/koffice.mo -share/locale/pt_BR/LC_MESSAGES/kohtml.mo -share/locale/pt_BR/LC_MESSAGES/kontour.mo -share/locale/pt_BR/LC_MESSAGES/koshell.mo -share/locale/pt_BR/LC_MESSAGES/kpresenter.mo -share/locale/pt_BR/LC_MESSAGES/krayon.mo -share/locale/pt_BR/LC_MESSAGES/kspread.mo -share/locale/pt_BR/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/pt_BR/LC_MESSAGES/kugar.mo -share/locale/pt_BR/LC_MESSAGES/kword.mo -share/locale/pt_BR/LC_MESSAGES/spell_tool.mo -share/locale/ro/LC_MESSAGES/example.mo -share/locale/ro/LC_MESSAGES/graphite.mo -share/locale/ro/LC_MESSAGES/kchart.mo -share/locale/ro/LC_MESSAGES/kformula.mo -share/locale/ro/LC_MESSAGES/kivio.mo -share/locale/ro/LC_MESSAGES/koffice.mo -share/locale/ro/LC_MESSAGES/kontour.mo -share/locale/ro/LC_MESSAGES/koshell.mo -share/locale/ro/LC_MESSAGES/kpresenter.mo -share/locale/ro/LC_MESSAGES/krayon.mo -share/locale/ro/LC_MESSAGES/kspread.mo -share/locale/ro/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/ro/LC_MESSAGES/kugar.mo -share/locale/ro/LC_MESSAGES/kword.mo -share/locale/ru/LC_MESSAGES/csvfilter.mo -share/locale/ru/LC_MESSAGES/example.mo -share/locale/ru/LC_MESSAGES/graphite.mo -share/locale/ru/LC_MESSAGES/kchart.mo -share/locale/ru/LC_MESSAGES/kformula.mo -share/locale/ru/LC_MESSAGES/kivio.mo -share/locale/ru/LC_MESSAGES/kocryptfilter.mo -share/locale/ru/LC_MESSAGES/koffice.mo -share/locale/ru/LC_MESSAGES/kontour.mo -share/locale/ru/LC_MESSAGES/koshell.mo -share/locale/ru/LC_MESSAGES/kpresenter.mo -share/locale/ru/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/ru/LC_MESSAGES/krayon.mo -share/locale/ru/LC_MESSAGES/kscan_plugin.mo -share/locale/ru/LC_MESSAGES/kspread.mo -share/locale/ru/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/ru/LC_MESSAGES/kspreadqprofilter.mo -share/locale/ru/LC_MESSAGES/kugar.mo -share/locale/ru/LC_MESSAGES/kword.mo -share/locale/ru/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/ru/LC_MESSAGES/kwordlatexfilter.mo -share/locale/ru/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/sk/LC_MESSAGES/csvfilter.mo -share/locale/sk/LC_MESSAGES/example.mo -share/locale/sk/LC_MESSAGES/graphite.mo -share/locale/sk/LC_MESSAGES/kchart.mo -share/locale/sk/LC_MESSAGES/kformula.mo -share/locale/sk/LC_MESSAGES/kivio.mo -share/locale/sk/LC_MESSAGES/koffice.mo -share/locale/sk/LC_MESSAGES/kontour.mo -share/locale/sk/LC_MESSAGES/koshell.mo -share/locale/sk/LC_MESSAGES/kpresenter.mo -share/locale/sk/LC_MESSAGES/krayon.mo -share/locale/sk/LC_MESSAGES/kscan_plugin.mo -share/locale/sk/LC_MESSAGES/kspread.mo -share/locale/sk/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/sk/LC_MESSAGES/kugar.mo -share/locale/sk/LC_MESSAGES/kword.mo -share/locale/sl/LC_MESSAGES/csvfilter.mo -share/locale/sl/LC_MESSAGES/example.mo -share/locale/sl/LC_MESSAGES/graphite.mo -share/locale/sl/LC_MESSAGES/kchart.mo -share/locale/sl/LC_MESSAGES/kformula.mo -share/locale/sl/LC_MESSAGES/kivio.mo -share/locale/sl/LC_MESSAGES/kocryptfilter.mo -share/locale/sl/LC_MESSAGES/koffice.mo -share/locale/sl/LC_MESSAGES/kontour.mo -share/locale/sl/LC_MESSAGES/koshell.mo -share/locale/sl/LC_MESSAGES/kpresenter.mo -share/locale/sl/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/sl/LC_MESSAGES/krayon.mo -share/locale/sl/LC_MESSAGES/kscan_plugin.mo -share/locale/sl/LC_MESSAGES/kspread.mo -share/locale/sl/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/sl/LC_MESSAGES/kspreadqprofilter.mo -share/locale/sl/LC_MESSAGES/kugar.mo -share/locale/sl/LC_MESSAGES/kword.mo -share/locale/sl/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/sl/LC_MESSAGES/kwordlatexfilter.mo -share/locale/sl/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/sv/LC_MESSAGES/csvfilter.mo -share/locale/sv/LC_MESSAGES/example.mo -share/locale/sv/LC_MESSAGES/graphite.mo -share/locale/sv/LC_MESSAGES/kchart.mo -share/locale/sv/LC_MESSAGES/kformula.mo -share/locale/sv/LC_MESSAGES/kivio.mo -share/locale/sv/LC_MESSAGES/koffice.mo -share/locale/sv/LC_MESSAGES/kontour.mo -share/locale/sv/LC_MESSAGES/koshell.mo -share/locale/sv/LC_MESSAGES/kpresenter.mo -share/locale/sv/LC_MESSAGES/krayon.mo -share/locale/sv/LC_MESSAGES/kscan_plugin.mo -share/locale/sv/LC_MESSAGES/kspread.mo -share/locale/sv/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/sv/LC_MESSAGES/kugar.mo -share/locale/sv/LC_MESSAGES/kword.mo -share/locale/ta/LC_MESSAGES/csvfilter.mo -share/locale/ta/LC_MESSAGES/example.mo -share/locale/ta/LC_MESSAGES/graphite.mo -share/locale/ta/LC_MESSAGES/kchart.mo -share/locale/ta/LC_MESSAGES/kformula.mo -share/locale/ta/LC_MESSAGES/kivio.mo -share/locale/ta/LC_MESSAGES/koffice.mo -share/locale/ta/LC_MESSAGES/kontour.mo -share/locale/ta/LC_MESSAGES/koshell.mo -share/locale/ta/LC_MESSAGES/kpresenter.mo -share/locale/ta/LC_MESSAGES/krayon.mo -share/locale/ta/LC_MESSAGES/kscan_plugin.mo -share/locale/ta/LC_MESSAGES/kspread.mo -share/locale/ta/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/ta/LC_MESSAGES/kugar.mo -share/locale/ta/LC_MESSAGES/kword.mo -share/locale/tr/LC_MESSAGES/csvfilter.mo -share/locale/tr/LC_MESSAGES/example.mo -share/locale/tr/LC_MESSAGES/graphite.mo -share/locale/tr/LC_MESSAGES/kchart.mo -share/locale/tr/LC_MESSAGES/kformula.mo -share/locale/tr/LC_MESSAGES/kimage.mo -share/locale/tr/LC_MESSAGES/kivio.mo -share/locale/tr/LC_MESSAGES/koffice.mo -share/locale/tr/LC_MESSAGES/kontour.mo -share/locale/tr/LC_MESSAGES/koshell.mo -share/locale/tr/LC_MESSAGES/kpresenter.mo -share/locale/tr/LC_MESSAGES/krayon.mo -share/locale/tr/LC_MESSAGES/kscan_plugin.mo -share/locale/tr/LC_MESSAGES/kspread.mo -share/locale/tr/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/tr/LC_MESSAGES/kugar.mo -share/locale/tr/LC_MESSAGES/kword.mo -@unexec rmdir %D/share/locale/tr/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/tr 2>/dev/null || true -@unexec rmdir %D/share/locale/ta/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ta 2>/dev/null || true -@unexec rmdir %D/share/locale/sv/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/sv 2>/dev/null || true -@unexec rmdir %D/share/locale/sl/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/sl 2>/dev/null || true -@unexec rmdir %D/share/locale/sk/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/sk 2>/dev/null || true -@unexec rmdir %D/share/locale/ru/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ru 2>/dev/null || true -@unexec rmdir %D/share/locale/ro/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ro 2>/dev/null || true -@unexec rmdir %D/share/locale/pt_BR/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/pt_BR 2>/dev/null || true -@unexec rmdir %D/share/locale/pt/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/pt 2>/dev/null || true -@unexec rmdir %D/share/locale/pl/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/pl 2>/dev/null || true -@unexec rmdir %D/share/locale/no_NY/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/no_NY 2>/dev/null || true -@unexec rmdir %D/share/locale/no/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/no 2>/dev/null || true -@unexec rmdir %D/share/locale/nl/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/nl 2>/dev/null || true -@unexec rmdir %D/share/locale/mt/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/mt 2>/dev/null || true -@unexec rmdir %D/share/locale/lt/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/lt 2>/dev/null || true -@unexec rmdir %D/share/locale/ja/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ja 2>/dev/null || true -@unexec rmdir %D/share/locale/it/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/it 2>/dev/null || true -@unexec rmdir %D/share/locale/hu/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/hu 2>/dev/null || true -@unexec rmdir %D/share/locale/fr/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/fr 2>/dev/null || true -@unexec rmdir %D/share/locale/et/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/et 2>/dev/null || true -@unexec rmdir %D/share/locale/es/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/es 2>/dev/null || true -@unexec rmdir %D/share/locale/eo/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/eo 2>/dev/null || true -@unexec rmdir %D/share/locale/en_GB/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/en_GB 2>/dev/null || true -@unexec rmdir %D/share/locale/de/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/de 2>/dev/null || true -@unexec rmdir %D/share/locale/da/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/da 2>/dev/null || true -@unexec rmdir %D/share/locale/cs/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/cs 2>/dev/null || true -@unexec rmdir %D/share/locale/bg/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/bg 2>/dev/null || true -@unexec rmdir %D/share/locale/az/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/az 2>/dev/null || true diff --git a/editors/koffice-kde4-l10n/scripts/Configure b/editors/koffice-kde4-l10n/scripts/Configure deleted file mode 100644 index 3f56118..0000000 --- a/editors/koffice-kde4-l10n/scripts/Configure +++ /dev/null @@ -1,76 +0,0 @@ -#! /bin/sh -# $FreeBSD$ - -/bin/rm -f ${PLIST} ${PLIST}.dirs - -if [ "${LINGUAS}" ]; then - set `echo $LINGUAS` -else -if [ "${BATCH}" ]; then - set \"az\" \"bg\" \"cs\" \"da\" \"en_GB\" \"eo\" \"es\" \"et\" \"hu\" \"it\" \"lt\" \"mt\" \"nl\" \"no\" \"no_NY\" \"pl\" \"pt\" \"pt_BR\" \"ro\" \"sk\" \"sl\" \"sv\" \"ta\" \"tr\" -else - /usr/bin/dialog --title "Select languages" --clear \ - --checklist "\n\ -Please select desired languages:" -1 -1 16 \ -az "Afrikaans" OFF \ -bg "Bulgarisch" OFF \ -cs "Czech" OFF \ -da "Danish" OFF \ -de "German" ON \ -en_GB "UK English" OFF \ -eo "Esperanto" OFF \ -es "Spanish" OFF \ -et "Estonian" OFF \ -fr "French" ON \ -hu "Hungarian" OFF \ -it "Italian" OFF \ -ja "Japanese" ON \ -lt "Lithuanian" OFF \ -mt "Maltese" OFF \ -nl "Dutch" OFF \ -no "Norwegian" OFF \ -no_NY "Norwegian (Nynorsk)" OFF \ -pl "Polish" OFF \ -pt "Portuguese" OFF \ -pt_BR "Portuguese (Brazil)" OFF \ -ro "Romanian" OFF \ -ru "Russian" ON \ -sk "Slovak" OFF \ -sl "Slovenian" OFF \ -sv "Swedish" OFF \ -ta "Tamil" OFF \ -tr "Turkish" OFF \ -2> /tmp/chklist.tmp.$$ - - retval=$? - - if [ -s /tmp/chklist.tmp.$$ ]; then - set `cat /tmp/chklist.tmp.$$` - fi - rm -f /tmp/chklist.tmp.$$ - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi -fi - -/bin/rm -f ${WRKSRC}/subdirs - -while [ "$1" ]; do - a=`echo -n $1 | /usr/bin/sed -e 's#\"##g'` - echo $a >> ${WRKSRC}/subdirs - /usr/bin/grep "^[^@].*/$a/.*" ${CURDIR}/pkg-plist >> ${PLIST} - /usr/bin/grep "^[^@].*-$a\$" ${CURDIR}/pkg-plist >> ${PLIST} - /usr/bin/grep "^@.*/$a/.*" ${CURDIR}/pkg-plist >> ${PLIST}.dirs - /usr/bin/grep "^@.*/$a$" ${CURDIR}/pkg-plist >> ${PLIST}.dirs - shift -done - -/bin/cat ${PLIST}.dirs >> ${PLIST} diff --git a/editors/koffice/Makefile b/editors/koffice/Makefile deleted file mode 100644 index 72cb881..0000000 --- a/editors/koffice/Makefile +++ /dev/null @@ -1,60 +0,0 @@ -# New ports collection makefile for: koffice -# Date created: Sun May 14 2000 16:33:15 -# Whom: Will Andrews <will@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= koffice -PORTVERSION= 1.1.1 -PORTREVISION= 1 -PORTEPOCH= 1 -CATEGORIES= editors kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= Attic/koffice-${PORTVERSION}-kde2/src -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 -LIB_DEPENDS= iconv.3:${PORTSDIR}/converters/libiconv - -USE_KDELIBS_VER=2 -USE_PYTHON= yes -USE_BZIP2= yes -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -USE_GMAKE= yes - -_NO_KDE_OBJPRELINK= yes -.include "${.CURDIR}/../../x11/kde2/Makefile.kde" - -post-patch: - @${PERL} -pi -e "s@Icon=killustrator@Icon=kontour@g" \ - ${WRKSRC}/templates/Illustration.desktop - @${PERL} -pi -e "s@KIllustrator@Kontour@g" \ - ${WRKSRC}/templates/Illustration.desktop - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - cd ${WRKSRC} && env PATH=${WRKSRC}/auto-bin:$$PATH \ - ${GMAKE} -f Makefile.cvs - find ${WRKSRC} -name Makefile.in | xargs ${PERL} -pi -e \ - "s@LIBPYTHON =@LIBPYTHON= ${PTHREAD_LIBS}@g" - ${PERL} -pi -e "s@la_LIBADD =@la_LIBADD= ${PTHREAD_LIBS}@g" \ - ${WRKSRC}/kivio/plugins/*/Makefile.in - ${PERL} -pi -e "s@Exec=kivio@Exec=env LD_PRELOAD=/usr/lib/libc_r.so kivio@g" \ - ${WRKSRC}/kivio/kiviopart/kivio.desktop - -post-install: - ${MV} ${PREFIX}/bin/kivio ${PREFIX}/bin/kivio.real - ${INSTALL_SCRIPT} ${FILESDIR}/kivio.sh ${PREFIX}/bin/kivio - -.include <bsd.port.mk> diff --git a/editors/koffice/distinfo b/editors/koffice/distinfo deleted file mode 100644 index ef05f7f..0000000 --- a/editors/koffice/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/koffice-1.1.1.tar.bz2) = 7692854feb223180e00f47f850fd006a diff --git a/editors/koffice/files/kivio.sh b/editors/koffice/files/kivio.sh deleted file mode 100644 index 397df85..0000000 --- a/editors/koffice/files/kivio.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -env LD_PRELOAD=/usr/lib/libc_r.so kivio.real diff --git a/editors/koffice/pkg-comment b/editors/koffice/pkg-comment deleted file mode 100644 index 90c73f5..0000000 --- a/editors/koffice/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Office suite for KDE2 diff --git a/editors/koffice/pkg-descr b/editors/koffice/pkg-descr deleted file mode 100644 index f6cdc07..0000000 --- a/editors/koffice/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -This is the office suite for KDE2 that includes -KWord, KSpread, KPresenter, KChart, and so forth. -KOffice tries to improve over many earlier attempts -by UNIX hackers to create a decent office suite -that can be used under productivity situations. So -far, it looks quite good! :-) - -WWW: http://www.koffice.org/ - ---Will <andrews@technologist.com> diff --git a/editors/koffice/pkg-plist b/editors/koffice/pkg-plist deleted file mode 100644 index 4904d52..0000000 --- a/editors/koffice/pkg-plist +++ /dev/null @@ -1,1666 +0,0 @@ -bin/filter_wrapper -bin/kchart -bin/kformula -bin/kivio -bin/kivio.real -bin/kontour -bin/koscript -bin/koshell -bin/kprconverter.pl -bin/kpresenter -bin/kspread -bin/kugar -bin/kword -include/KDChartData.h -include/KDChartTable.h -include/KoApplicationIface.h -include/KoDocumentIface.h -include/KoMainWindowIface.h -include/KoViewIface.h -include/handler.h -include/kcoloractions.h -include/kformulacontainer.h -include/kformuladocument.h -include/kformulaview.h -include/koApplication.h -include/koChart.h -include/koChild.h -include/koClipart.h -include/koClipartCollection.h -include/koDataTool.h -include/koDocument.h -include/koDocumentChild.h -include/koDocumentInfo.h -include/koDocumentInfoDlg.h -include/koFactory.h -include/koFilter.h -include/koFilterManager.h -include/koFind.h -include/koFrame.h -include/koGlobal.h -include/koImage.h -include/koImageCollection.h -include/koKoolBar.h -include/koMainWindow.h -include/koPageLayoutDia.h -include/koPartSelectAction.h -include/koPartSelectDia.h -include/koPrintPreview.h -include/koQueryTrader.h -include/koReplace.h -include/koRuler.h -include/koStore.h -include/koStoreDevice.h -include/koTabChooser.h -include/koTemplateChooseDia.h -include/koTemplateCreateDia.h -include/koTemplates.h -include/koToolBox.h -include/koView.h -include/koprinter.h -include/tkaction.h -include/tkcoloractions.h -include/tkcombobox.h -include/tktoolbarbutton.h -lib/kchart.la -lib/kchart.so -lib/kde2/libabiwordexport.la -lib/kde2/libabiwordexport.so -lib/kde2/libabiwordimport.la -lib/kde2/libabiwordimport.so -lib/kde2/libapplixgraphicimport.la -lib/kde2/libapplixgraphicimport.so -lib/kde2/libapplixspreadimport.la -lib/kde2/libapplixspreadimport.so -lib/kde2/libapplixwordimport.la -lib/kde2/libapplixwordimport.so -lib/kde2/libasciiexport.la -lib/kde2/libasciiexport.so -lib/kde2/libasciiimport.la -lib/kde2/libasciiimport.so -lib/kde2/libcsvexport.la -lib/kde2/libcsvexport.so -lib/kde2/libcsvimport.la -lib/kde2/libcsvimport.so -lib/kde2/libdocbookexport.la -lib/kde2/libdocbookexport.so -lib/kde2/libgnumericexport.la -lib/kde2/libgnumericexport.so -lib/kde2/libgnumericimport.la -lib/kde2/libgnumericimport.so -lib/kde2/libhtmlexport.la -lib/kde2/libhtmlexport.so -lib/kde2/libhtmlimport.la -lib/kde2/libhtmlimport.so -lib/kde2/libkchartpart.la -lib/kde2/libkchartpart.so -lib/kde2/libkformulapart.la -lib/kde2/libkformulapart.so -lib/kde2/libkiviopart.la -lib/kde2/libkiviopart.so -lib/kde2/libkofficescan.la -lib/kde2/libkofficescan.so -lib/kde2/libkontourpart.la -lib/kde2/libkontourpart.so -lib/kde2/libkpresenterpart.la -lib/kde2/libkpresenterpart.so -lib/kde2/libkprkword.la -lib/kde2/libkprkword.so -lib/kde2/libkspelltool.la -lib/kde2/libkspelltool.so -lib/kde2/libkspreadcalc.la -lib/kde2/libkspreadcalc.so -lib/kde2/libkspreadhtmlexport.la -lib/kde2/libkspreadhtmlexport.so -lib/kde2/libkspreadpart.la -lib/kde2/libkspreadpart.so -lib/kde2/libkwordpart.la -lib/kde2/libkwordpart.so -lib/kde2/liblatexexport.la -lib/kde2/liblatexexport.so -lib/kde2/libmsodimport.la -lib/kde2/libmsodimport.so -lib/kde2/libolefilter.la -lib/kde2/libolefilter.so -lib/kde2/libqproimport.la -lib/kde2/libqproimport.so -lib/kde2/librtfexport.la -lib/kde2/librtfexport.so -lib/kde2/libsvgexport.la -lib/kde2/libsvgexport.so -lib/kde2/libsvgimport.la -lib/kde2/libsvgimport.so -lib/kde2/libwmfimport.la -lib/kde2/libwmfimport.so -lib/kde2/libxfigimport.la -lib/kde2/libxfigimport.so -lib/kformulamain.la -lib/kformulamain.so -lib/kivio.la -lib/kivio.so -lib/kontour.la -lib/kontour.so -lib/koshell.la -lib/koshell.so -lib/kpresenter.la -lib/kpresenter.so -lib/kspread.la -lib/kspread.so -lib/kword.la -lib/kword.so -lib/libkdchart.la -lib/libkdchart.so -lib/libkdchart.so.0 -lib/libkformula.la -lib/libkformula.so -lib/libkformula.so.3 -lib/libkivioconnectortool.la -lib/libkivioconnectortool.so -lib/libkivioselecttool.la -lib/libkivioselecttool.so -lib/libkiviotexttool.la -lib/libkiviotexttool.so -lib/libkiviozoomtool.la -lib/libkiviozoomtool.so -lib/libkochart.la -lib/libkochart.so -lib/libkochart.so.1 -lib/libkodocinfopropspage.la -lib/libkodocinfopropspage.so -lib/libkodocinfopropspage.so.0 -lib/libkofficecore.la -lib/libkofficecore.so -lib/libkofficecore.so.1 -lib/libkofficeui.la -lib/libkofficeui.so -lib/libkofficeui.so.1 -lib/libkoscript.la -lib/libkoscript.so -lib/libkoscript.so.1 -lib/libkstore.la -lib/libkstore.so -lib/libkstore.so.1 -lib/libkugarpart.la -lib/libkugarpart.so -lib/libkwmf.la -lib/libkwmf.so -lib/libkwmf.so.1 -share/applnk/Office/kchart.desktop -share/applnk/Office/kformula.desktop -share/applnk/Office/killustrator.desktop -share/applnk/Office/kivio.desktop -share/applnk/Office/kontour.desktop -share/applnk/Office/koshell.desktop -share/applnk/Office/kpresenter.desktop -share/applnk/Office/kspread.desktop -share/applnk/Office/kugar.desktop -share/applnk/Office/kword.desktop -share/apps/kchart/icons/hicolor/22x22/actions/areas.png -share/apps/kchart/icons/hicolor/22x22/actions/areas3d.png -share/apps/kchart/icons/hicolor/22x22/actions/bars.png -share/apps/kchart/icons/hicolor/22x22/actions/bars3d.png -share/apps/kchart/icons/hicolor/22x22/actions/cakes.png -share/apps/kchart/icons/hicolor/22x22/actions/cakes3d.png -share/apps/kchart/icons/hicolor/22x22/actions/data.png -share/apps/kchart/icons/hicolor/22x22/actions/hilo.png -share/apps/kchart/icons/hicolor/22x22/actions/lines.png -share/apps/kchart/icons/hicolor/22x22/actions/lines3d.png -share/apps/kchart/icons/hicolor/22x22/actions/options.png -share/apps/kchart/icons/hicolor/22x22/actions/polar.png -share/apps/kchart/icons/hicolor/22x22/actions/ring.png -share/apps/kchart/icons/hicolor/22x22/actions/wizard.png -share/apps/kchart/icons/locolor/16x16/actions/areas.png -share/apps/kchart/icons/locolor/16x16/actions/areas3d.png -share/apps/kchart/icons/locolor/16x16/actions/bars.png -share/apps/kchart/icons/locolor/16x16/actions/bars3d.png -share/apps/kchart/icons/locolor/16x16/actions/cakes.png -share/apps/kchart/icons/locolor/16x16/actions/cakes3d.png -share/apps/kchart/icons/locolor/16x16/actions/data.png -share/apps/kchart/icons/locolor/16x16/actions/hilo.png -share/apps/kchart/icons/locolor/16x16/actions/lines.png -share/apps/kchart/icons/locolor/16x16/actions/lines3d.png -share/apps/kchart/icons/locolor/16x16/actions/options.png -share/apps/kchart/icons/locolor/16x16/actions/ring.png -share/apps/kchart/icons/locolor/16x16/actions/wizard.png -share/apps/kchart/kchart.rc -share/apps/kchart/pics/3DAREA.png -share/apps/kchart/pics/3DBAR.png -share/apps/kchart/pics/3DCOMBO_HLC_AREA.png -share/apps/kchart/pics/3DCOMBO_HLC_BAR.png -share/apps/kchart/pics/3DCOMBO_LINE_AREA.png -share/apps/kchart/pics/3DCOMBO_LINE_BAR.png -share/apps/kchart/pics/3DLINE.png -share/apps/kchart/pics/areasubtypebeside.png -share/apps/kchart/pics/areasubtypedepth.png -share/apps/kchart/pics/barsubtypebeside.png -share/apps/kchart/pics/barsubtypedepth.png -share/apps/kchart/pics/barsubtypelayer.png -share/apps/kchart/pics/barsubtypepercent.png -share/apps/kchart/pics/chart_3dhiloclose.png -share/apps/kchart/pics/chart_area.png -share/apps/kchart/pics/chart_bar.png -share/apps/kchart/pics/chart_combo_hlc_area.png -share/apps/kchart/pics/chart_combo_hlc_bar.png -share/apps/kchart/pics/chart_combo_line_area.png -share/apps/kchart/pics/chart_combo_line_bar.png -share/apps/kchart/pics/chart_hiloclose.png -share/apps/kchart/pics/chart_lines.png -share/apps/kchart/pics/chart_pie2D.png -share/apps/kchart/pics/chart_pie3D.png -share/apps/kformula/kformula.rc -share/apps/kformula/pics/Ihigher.png -share/apps/kformula/pics/Ilower.png -share/apps/kformula/pics/Shigher.png -share/apps/kformula/pics/Slower.png -share/apps/kformula/pics/bold.png -share/apps/kformula/pics/centralign.png -share/apps/kformula/pics/childrensw.png -share/apps/kformula/pics/delimiter.png -share/apps/kformula/pics/downalign.png -share/apps/kformula/pics/elementsw.png -share/apps/kformula/pics/enlarge.png -share/apps/kformula/pics/enlargeall.png -share/apps/kformula/pics/enlargenext.png -share/apps/kformula/pics/far.png -share/apps/kformula/pics/frac-vline.png -share/apps/kformula/pics/greek.png -share/apps/kformula/pics/index.png -share/apps/kformula/pics/index0.png -share/apps/kformula/pics/index1.png -share/apps/kformula/pics/index2.png -share/apps/kformula/pics/index3.png -share/apps/kformula/pics/indexsw.png -share/apps/kformula/pics/inscol.png -share/apps/kformula/pics/insrow.png -share/apps/kformula/pics/italic.png -share/apps/kformula/pics/kformula1-0.png -share/apps/kformula/pics/kformula2-0.png -share/apps/kformula/pics/kformula2-1.png -share/apps/kformula/pics/kformula2-2.png -share/apps/kformula/pics/kformula2-3.png -share/apps/kformula/pics/kformula3-2.png -share/apps/kformula/pics/leftalign.png -share/apps/kformula/pics/matrix.png -share/apps/kformula/pics/midalign.png -share/apps/kformula/pics/midline.png -share/apps/kformula/pics/mini-bra.png -share/apps/kformula/pics/mini-frac.png -share/apps/kformula/pics/mini-integral.png -share/apps/kformula/pics/mini-root.png -share/apps/kformula/pics/mini-rootindex.png -share/apps/kformula/pics/mini-symbols.png -share/apps/kformula/pics/mini-vspace.png -share/apps/kformula/pics/mini-xy.png -share/apps/kformula/pics/near.png -share/apps/kformula/pics/nextsw.png -share/apps/kformula/pics/par1.xbm -share/apps/kformula/pics/par2.xbm -share/apps/kformula/pics/par3.xbm -share/apps/kformula/pics/pixmap.png -share/apps/kformula/pics/reduce.png -share/apps/kformula/pics/reduceall.png -share/apps/kformula/pics/remcol.png -share/apps/kformula/pics/remrow.png -share/apps/kformula/pics/rightalign.png -share/apps/kformula/pics/rootindex.png -share/apps/kformula/pics/split.png -share/apps/kformula/pics/underl.png -share/apps/kformula/pics/upalign.png -share/apps/kivio/autoloadStencils/Text.sml -share/apps/kivio/autoloadStencils/Text.xpm -share/apps/kivio/autoloadStencils/straight_connector.ksp -share/apps/kivio/autoloadStencils/straight_connector.xpm -share/apps/kivio/icons/hicolor/16x16/actions/add_stencil.xpm -share/apps/kivio/icons/hicolor/16x16/actions/arrow_back.xpm -share/apps/kivio/icons/hicolor/16x16/actions/arrow_first.xpm -share/apps/kivio/icons/hicolor/16x16/actions/arrow_forward.xpm -share/apps/kivio/icons/hicolor/16x16/actions/arrow_last.xpm -share/apps/kivio/icons/hicolor/16x16/actions/bring_stencil_to_front.xpm -share/apps/kivio/icons/hicolor/16x16/actions/color_fill.png -share/apps/kivio/icons/hicolor/16x16/actions/color_line.png -share/apps/kivio/icons/hicolor/16x16/actions/copy_stencil.xpm -share/apps/kivio/icons/hicolor/16x16/actions/cut_stencil.xpm -share/apps/kivio/icons/hicolor/16x16/actions/fillcolor.xpm -share/apps/kivio/icons/hicolor/16x16/actions/font_bold.xpm -share/apps/kivio/icons/hicolor/16x16/actions/font_italic.xpm -share/apps/kivio/icons/hicolor/16x16/actions/font_names.xpm -share/apps/kivio/icons/hicolor/16x16/actions/font_size.xpm -share/apps/kivio/icons/hicolor/16x16/actions/font_under.xpm -share/apps/kivio/icons/hicolor/16x16/actions/group_stencils.xpm -share/apps/kivio/icons/hicolor/16x16/actions/guides_horizontal.xpm -share/apps/kivio/icons/hicolor/16x16/actions/guides_vertical.xpm -share/apps/kivio/icons/hicolor/16x16/actions/item_add.xpm -share/apps/kivio/icons/hicolor/16x16/actions/item_remove.xpm -share/apps/kivio/icons/hicolor/16x16/actions/item_rename.xpm -share/apps/kivio/icons/hicolor/16x16/actions/layer_add.xpm -share/apps/kivio/icons/hicolor/16x16/actions/layer_connect.xpm -share/apps/kivio/icons/hicolor/16x16/actions/layer_editable.xpm -share/apps/kivio/icons/hicolor/16x16/actions/layer_noconnect.xpm -share/apps/kivio/icons/hicolor/16x16/actions/layer_noeditable.xpm -share/apps/kivio/icons/hicolor/16x16/actions/layer_noprint.xpm -share/apps/kivio/icons/hicolor/16x16/actions/layer_novisible.xpm -share/apps/kivio/icons/hicolor/16x16/actions/layer_print.xpm -share/apps/kivio/icons/hicolor/16x16/actions/layer_remove.xpm -share/apps/kivio/icons/hicolor/16x16/actions/layer_visible.xpm -share/apps/kivio/icons/hicolor/16x16/actions/linewidth.xpm -share/apps/kivio/icons/hicolor/16x16/actions/open_stencilset.xpm -share/apps/kivio/icons/hicolor/16x16/actions/page_disabled.xpm -share/apps/kivio/icons/hicolor/16x16/actions/page_enabled.xpm -share/apps/kivio/icons/hicolor/16x16/actions/paste_stencil.xpm -share/apps/kivio/icons/hicolor/16x16/actions/pencolor.xpm -share/apps/kivio/icons/hicolor/16x16/actions/remove_stencil.xpm -share/apps/kivio/icons/hicolor/16x16/actions/send_stencil_to_back.xpm -share/apps/kivio/icons/hicolor/16x16/actions/textcolor.xpm -share/apps/kivio/icons/hicolor/16x16/actions/ungroup_stencils.xpm -share/apps/kivio/icons/hicolor/16x16/actions/view_grid.xpm -share/apps/kivio/icons/hicolor/16x16/actions/view_guidelines.xpm -share/apps/kivio/icons/hicolor/16x16/actions/view_manager.xpm -share/apps/kivio/icons/hicolor/16x16/actions/view_margins.xpm -share/apps/kivio/icons/hicolor/16x16/actions/view_page.xpm -share/apps/kivio/icons/hicolor/16x16/actions/view_pageborder.xpm -share/apps/kivio/icons/hicolor/16x16/actions/view_ruler.xpm -share/apps/kivio/icons/hicolor/16x16/actions/zoom_disabled.xpm -share/apps/kivio/icons/hicolor/16x16/actions/zoom_enabled.xpm -share/apps/kivio/icons/hicolor/22x22/actions/bring_stencil_to_front.xpm -share/apps/kivio/icons/hicolor/22x22/actions/close_stencilset.xpm -share/apps/kivio/icons/hicolor/22x22/actions/color_fill.png -share/apps/kivio/icons/hicolor/22x22/actions/color_line.png -share/apps/kivio/icons/hicolor/22x22/actions/font_bold.xpm -share/apps/kivio/icons/hicolor/22x22/actions/font_italic.xpm -share/apps/kivio/icons/hicolor/22x22/actions/font_under.xpm -share/apps/kivio/icons/hicolor/22x22/actions/group_stencils.xpm -share/apps/kivio/icons/hicolor/22x22/actions/open_stencilset.xpm -share/apps/kivio/icons/hicolor/22x22/actions/select_all.xpm -share/apps/kivio/icons/hicolor/22x22/actions/send_stencil_to_back.xpm -share/apps/kivio/icons/hicolor/22x22/actions/ungroup_stencils.xpm -share/apps/kivio/icons/hicolor/22x22/actions/unselect_all.xpm -share/apps/kivio/icons/hicolor/22x22/actions/view_grid.xpm -share/apps/kivio/icons/hicolor/22x22/actions/view_margins.xpm -share/apps/kivio/icons/hicolor/22x22/actions/view_pageborder.xpm -share/apps/kivio/icons/hicolor/22x22/actions/view_ruler.xpm -share/apps/kivio/icons/hicolor/32x32/actions/bring_stencil_to_front.xpm -share/apps/kivio/icons/hicolor/32x32/actions/close_stencilset.xpm -share/apps/kivio/icons/hicolor/32x32/actions/font_bold.xpm -share/apps/kivio/icons/hicolor/32x32/actions/font_italic.xpm -share/apps/kivio/icons/hicolor/32x32/actions/font_under.xpm -share/apps/kivio/icons/hicolor/32x32/actions/group_stencils.xpm -share/apps/kivio/icons/hicolor/32x32/actions/open_stencilset.xpm -share/apps/kivio/icons/hicolor/32x32/actions/select_all.xpm -share/apps/kivio/icons/hicolor/32x32/actions/send_stencil_to_back.xpm -share/apps/kivio/icons/hicolor/32x32/actions/ungroup_stencils.xpm -share/apps/kivio/icons/hicolor/32x32/actions/unselect_all.xpm -share/apps/kivio/icons/hicolor/32x32/actions/view_grid.xpm -share/apps/kivio/icons/hicolor/32x32/actions/view_margins.xpm -share/apps/kivio/icons/hicolor/32x32/actions/view_pageborder.xpm -share/apps/kivio/icons/hicolor/32x32/actions/view_ruler.xpm -share/apps/kivio/kivio.rc -share/apps/kivio/kivio_tool.rc -share/apps/kivio/kpartplugins/kivioconnectortool.rc -share/apps/kivio/kpartplugins/kivioselecttool.rc -share/apps/kivio/kpartplugins/kiviotexttool.rc -share/apps/kivio/kpartplugins/kiviozoomtool.rc -share/apps/kivio/pics/kivio_arrow.xpm -share/apps/kivio/pics/kivio_connector.xpm -share/apps/kivio/pics/kivio_connector_cursor1.xpm -share/apps/kivio/pics/kivio_connector_cursor2.xpm -share/apps/kivio/pics/kivio_text.xpm -share/apps/kivio/pics/kivio_text_cursor.xpm -share/apps/kivio/pics/kivio_zoom.xpm -share/apps/kivio/pics/kivio_zoom_allobject.xpm -share/apps/kivio/pics/kivio_zoom_hand.xpm -share/apps/kivio/pics/kivio_zoom_height.xpm -share/apps/kivio/pics/kivio_zoom_minus.xpm -share/apps/kivio/pics/kivio_zoom_page.xpm -share/apps/kivio/pics/kivio_zoom_plus.xpm -share/apps/kivio/pics/kivio_zoom_selected.xpm -share/apps/kivio/pics/kivio_zoom_width.xpm -share/apps/kivio/pics/kiviosplash.png -share/apps/kivio/pics/tile_scissors1.xpm -share/apps/kivio/pics/tile_skulls1.xpm -share/apps/kivio/pics/tile_yellow_swirl.xpm -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/Card.sml -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/Card.xpm -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/Data.sml -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/Data.xpm -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/Decision.sml -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/Decision.xpm -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/DirectData.sml -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/DirectData.xpm -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/Display.sml -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/Display.xpm -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/Document.sml -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/Document.xpm -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/InternalStorage.sml -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/InternalStorage.xpm -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/LoopLimit.sml -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/LoopLimit.xpm -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/ManualInput.sml -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/ManualInput.xpm -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/ManualOperation.sml -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/ManualOperation.xpm -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/OffPageRef.sml -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/OffPageRef.xpm -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/OnPageRef.sml -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/OnPageRef.xpm -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/PaperTape.sml -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/PaperTape.xpm -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/PredefinedProcess.sml -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/PredefinedProcess.xpm -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/Preperation.sml -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/Preperation.xpm -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/Process.sml -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/Process.xpm -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/SequentialData.sml -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/SequentialData.xpm -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/StoredData.sml -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/StoredData.xpm -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/Terminator.sml -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/Terminator.xpm -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/desc -share/apps/kivio/stencils/Flowcharting/BasicFlowcharting/icon.xpm -share/apps/kivio/stencils/Flowcharting/desc -share/apps/kivio/stencils/Flowcharting/icon.xpm -share/apps/koffice/icons/hicolor/16x16/actions/delete_table_col.png -share/apps/koffice/icons/hicolor/16x16/actions/delete_table_row.png -share/apps/koffice/icons/hicolor/16x16/actions/documentinfo.png -share/apps/koffice/icons/hicolor/16x16/actions/enum_list.png -share/apps/koffice/icons/hicolor/16x16/actions/format_decreaseindent.png -share/apps/koffice/icons/hicolor/16x16/actions/format_increaseindent.png -share/apps/koffice/icons/hicolor/16x16/actions/frame_edit.png -share/apps/koffice/icons/hicolor/16x16/actions/frame_formula.png -share/apps/koffice/icons/hicolor/16x16/actions/frame_image.png -share/apps/koffice/icons/hicolor/16x16/actions/frame_query.png -share/apps/koffice/icons/hicolor/16x16/actions/frame_spreadsheet.png -share/apps/koffice/icons/hicolor/16x16/actions/frame_text.png -share/apps/koffice/icons/hicolor/16x16/actions/inline_image.png -share/apps/koffice/icons/hicolor/16x16/actions/inline_table.png -share/apps/koffice/icons/hicolor/16x16/actions/insert_table_col.png -share/apps/koffice/icons/hicolor/16x16/actions/insert_table_row.png -share/apps/koffice/icons/hicolor/16x16/actions/text_strike.png -share/apps/koffice/icons/hicolor/16x16/actions/text_sub.png -share/apps/koffice/icons/hicolor/16x16/actions/text_super.png -share/apps/koffice/icons/hicolor/16x16/actions/textcolor.png -share/apps/koffice/icons/hicolor/16x16/actions/unsorted_list.png -share/apps/koffice/icons/hicolor/16x16/actions/view_orientation.png -share/apps/koffice/icons/hicolor/16x16/actions/view_remove.png -share/apps/koffice/icons/hicolor/16x16/actions/view_split.png -share/apps/koffice/icons/hicolor/16x16/apps/go.png -share/apps/koffice/icons/hicolor/16x16/apps/key_bindings.png -share/apps/koffice/icons/hicolor/16x16/apps/style.png -share/apps/koffice/icons/hicolor/22x22/actions/cancel.png -share/apps/koffice/icons/hicolor/22x22/actions/clipart.png -share/apps/koffice/icons/hicolor/22x22/actions/clipart_from_file.png -share/apps/koffice/icons/hicolor/22x22/actions/delete_table_col.png -share/apps/koffice/icons/hicolor/22x22/actions/delete_table_row.png -share/apps/koffice/icons/hicolor/22x22/actions/format_decreaseindent.png -share/apps/koffice/icons/hicolor/22x22/actions/format_increaseindent.png -share/apps/koffice/icons/hicolor/22x22/actions/frame_chart.png -share/apps/koffice/icons/hicolor/22x22/actions/frame_edit.png -share/apps/koffice/icons/hicolor/22x22/actions/frame_formula.png -share/apps/koffice/icons/hicolor/22x22/actions/frame_image.png -share/apps/koffice/icons/hicolor/22x22/actions/frame_query.png -share/apps/koffice/icons/hicolor/22x22/actions/frame_spreadsheet.png -share/apps/koffice/icons/hicolor/22x22/actions/frame_text.png -share/apps/koffice/icons/hicolor/22x22/actions/inline_image.png -share/apps/koffice/icons/hicolor/22x22/actions/inline_table.png -share/apps/koffice/icons/hicolor/22x22/actions/insert_table_col.png -share/apps/koffice/icons/hicolor/22x22/actions/insert_table_row.png -share/apps/koffice/icons/hicolor/22x22/actions/neonpen.png -share/apps/koffice/icons/hicolor/22x22/actions/ok.png -share/apps/koffice/icons/hicolor/22x22/actions/part/killustrator.png -share/apps/koffice/icons/hicolor/22x22/actions/part/kword.png -share/apps/koffice/icons/hicolor/22x22/actions/tab_first.png -share/apps/koffice/icons/hicolor/22x22/actions/tab_last.png -share/apps/koffice/icons/hicolor/22x22/actions/tab_left.png -share/apps/koffice/icons/hicolor/22x22/actions/tab_right.png -share/apps/koffice/icons/hicolor/22x22/actions/text_strike.png -share/apps/koffice/icons/hicolor/22x22/actions/view_remove.png -share/apps/koffice/icons/hicolor/32x32/actions/delete_table_col.png -share/apps/koffice/icons/hicolor/32x32/actions/delete_table_row.png -share/apps/koffice/icons/hicolor/32x32/actions/insert_table_col.png -share/apps/koffice/icons/hicolor/32x32/actions/insert_table_row.png -share/apps/koffice/icons/hicolor/32x32/actions/sort_az.png -share/apps/koffice/icons/hicolor/32x32/actions/view_remove.png -share/apps/koffice/icons/hicolor/32x32/apps/go.png -share/apps/koffice/icons/hicolor/48x48/apps/key_bindings.png -share/apps/koffice/koffice_shell.rc -share/apps/koffice/pics/koKoolBarDown.png -share/apps/koffice/pics/koKoolBarUp.png -share/apps/koffice/pics/koRulerFirst.png -share/apps/koffice/pics/koRulerLeft.png -share/apps/koffice/pics/koffice-logo.png -share/apps/kontour/KIllustrator.rc -share/apps/kontour/icons/hicolor/16x16/actions/abottom.png -share/apps/kontour/icons/hicolor/16x16/actions/ahcenter.png -share/apps/kontour/icons/hicolor/16x16/actions/aleft.png -share/apps/kontour/icons/hicolor/16x16/actions/aright.png -share/apps/kontour/icons/hicolor/16x16/actions/atop.png -share/apps/kontour/icons/hicolor/16x16/actions/avcenter.png -share/apps/kontour/icons/hicolor/16x16/actions/beziertool.png -share/apps/kontour/icons/hicolor/16x16/actions/dbottom.png -share/apps/kontour/icons/hicolor/16x16/actions/deleteNode.png -share/apps/kontour/icons/hicolor/16x16/actions/deletelayer.png -share/apps/kontour/icons/hicolor/16x16/actions/dhcenter.png -share/apps/kontour/icons/hicolor/16x16/actions/dhdist.png -share/apps/kontour/icons/hicolor/16x16/actions/dleft.png -share/apps/kontour/icons/hicolor/16x16/actions/dright.png -share/apps/kontour/icons/hicolor/16x16/actions/dtop.png -share/apps/kontour/icons/hicolor/16x16/actions/dvcenter.png -share/apps/kontour/icons/hicolor/16x16/actions/dvdist.png -share/apps/kontour/icons/hicolor/16x16/actions/ellipse1.png -share/apps/kontour/icons/hicolor/16x16/actions/ellipse2.png -share/apps/kontour/icons/hicolor/16x16/actions/ellipse3.png -share/apps/kontour/icons/hicolor/16x16/actions/ellipsetool.png -share/apps/kontour/icons/hicolor/16x16/actions/eye.png -share/apps/kontour/icons/hicolor/16x16/actions/freehandtool.png -share/apps/kontour/icons/hicolor/16x16/actions/group.png -share/apps/kontour/icons/hicolor/16x16/actions/hmirror.png -share/apps/kontour/icons/hicolor/16x16/actions/insertclipart.png -share/apps/kontour/icons/hicolor/16x16/actions/item_add.png -share/apps/kontour/icons/hicolor/16x16/actions/item_remove.png -share/apps/kontour/icons/hicolor/16x16/actions/item_rename.png -share/apps/kontour/icons/hicolor/16x16/actions/joinNodes.png -share/apps/kontour/icons/hicolor/16x16/actions/linetool.png -share/apps/kontour/icons/hicolor/16x16/actions/lowerlayer.png -share/apps/kontour/icons/hicolor/16x16/actions/moveNode.png -share/apps/kontour/icons/hicolor/16x16/actions/newNode.png -share/apps/kontour/icons/hicolor/16x16/actions/newlayer.png -share/apps/kontour/icons/hicolor/16x16/actions/pointtool.png -share/apps/kontour/icons/hicolor/16x16/actions/polygontool.png -share/apps/kontour/icons/hicolor/16x16/actions/raiselayer.png -share/apps/kontour/icons/hicolor/16x16/actions/recttool.png -share/apps/kontour/icons/hicolor/16x16/actions/selecttool.png -share/apps/kontour/icons/hicolor/16x16/actions/snap_to_grid.png -share/apps/kontour/icons/hicolor/16x16/actions/split.png -share/apps/kontour/icons/hicolor/16x16/actions/tcenteralign.png -share/apps/kontour/icons/hicolor/16x16/actions/texttool.png -share/apps/kontour/icons/hicolor/16x16/actions/tleftalign.png -share/apps/kontour/icons/hicolor/16x16/actions/trightalign.png -share/apps/kontour/icons/hicolor/16x16/actions/ungroup.png -share/apps/kontour/icons/hicolor/16x16/actions/vmirror.png -share/apps/kontour/icons/hicolor/16x16/apps/kontour.png -share/apps/kontour/icons/hicolor/32x32/apps/kontour.png -share/apps/kontour/icons/hicolor/48x48/apps/kontour.png -share/apps/kontour/kpartplugins/scan-kontour.rc -share/apps/kontour/templates/Simple/.directory -share/apps/kontour/templates/Simple/.icon/Plain.png -share/apps/kontour/templates/Simple/.source/Plain.kil -share/apps/kontour/templates/Simple/Plain.desktop -share/apps/kpresenter/autoforms/.autoforms -share/apps/kpresenter/autoforms/Arrows/.directory -share/apps/kpresenter/autoforms/Arrows/.icon/ArrowDown.png -share/apps/kpresenter/autoforms/Arrows/.icon/ArrowLeft.png -share/apps/kpresenter/autoforms/Arrows/.icon/ArrowLeftDown.png -share/apps/kpresenter/autoforms/Arrows/.icon/ArrowLeftUp.png -share/apps/kpresenter/autoforms/Arrows/.icon/ArrowRight.png -share/apps/kpresenter/autoforms/Arrows/.icon/ArrowRightDown.png -share/apps/kpresenter/autoforms/Arrows/.icon/ArrowRightUp.png -share/apps/kpresenter/autoforms/Arrows/.icon/ArrowUp.png -share/apps/kpresenter/autoforms/Arrows/.source/ArrowDown.atf -share/apps/kpresenter/autoforms/Arrows/.source/ArrowLeft.atf -share/apps/kpresenter/autoforms/Arrows/.source/ArrowLeftDown.atf -share/apps/kpresenter/autoforms/Arrows/.source/ArrowLeftUp.atf -share/apps/kpresenter/autoforms/Arrows/.source/ArrowRight.atf -share/apps/kpresenter/autoforms/Arrows/.source/ArrowRightDown.atf -share/apps/kpresenter/autoforms/Arrows/.source/ArrowRightUp.atf -share/apps/kpresenter/autoforms/Arrows/.source/ArrowUp.atf -share/apps/kpresenter/autoforms/Arrows/ArrowDown.desktop -share/apps/kpresenter/autoforms/Arrows/ArrowLeft.desktop -share/apps/kpresenter/autoforms/Arrows/ArrowLeftDown.desktop -share/apps/kpresenter/autoforms/Arrows/ArrowLeftUp.desktop -share/apps/kpresenter/autoforms/Arrows/ArrowRight.desktop -share/apps/kpresenter/autoforms/Arrows/ArrowRightDown.desktop -share/apps/kpresenter/autoforms/Arrows/ArrowRightUp.desktop -share/apps/kpresenter/autoforms/Arrows/ArrowUp.desktop -share/apps/kpresenter/autoforms/Connections/.directory -share/apps/kpresenter/autoforms/Connections/.icon/Connection1.png -share/apps/kpresenter/autoforms/Connections/.icon/Connection10.png -share/apps/kpresenter/autoforms/Connections/.icon/Connection11.png -share/apps/kpresenter/autoforms/Connections/.icon/Connection12.png -share/apps/kpresenter/autoforms/Connections/.icon/Connection2.png -share/apps/kpresenter/autoforms/Connections/.icon/Connection3.png -share/apps/kpresenter/autoforms/Connections/.icon/Connection4.png -share/apps/kpresenter/autoforms/Connections/.icon/Connection5.png -share/apps/kpresenter/autoforms/Connections/.icon/Connection6.png -share/apps/kpresenter/autoforms/Connections/.icon/Connection7.png -share/apps/kpresenter/autoforms/Connections/.icon/Connection8.png -share/apps/kpresenter/autoforms/Connections/.icon/Connection9.png -share/apps/kpresenter/autoforms/Connections/.source/Connection1.atf -share/apps/kpresenter/autoforms/Connections/.source/Connection10.atf -share/apps/kpresenter/autoforms/Connections/.source/Connection11.atf -share/apps/kpresenter/autoforms/Connections/.source/Connection12.atf -share/apps/kpresenter/autoforms/Connections/.source/Connection2.atf -share/apps/kpresenter/autoforms/Connections/.source/Connection3.atf -share/apps/kpresenter/autoforms/Connections/.source/Connection4.atf -share/apps/kpresenter/autoforms/Connections/.source/Connection5.atf -share/apps/kpresenter/autoforms/Connections/.source/Connection6.atf -share/apps/kpresenter/autoforms/Connections/.source/Connection7.atf -share/apps/kpresenter/autoforms/Connections/.source/Connection8.atf -share/apps/kpresenter/autoforms/Connections/.source/Connection9.atf -share/apps/kpresenter/autoforms/Connections/Connection1.desktop -share/apps/kpresenter/autoforms/Connections/Connection10.desktop -share/apps/kpresenter/autoforms/Connections/Connection11.desktop -share/apps/kpresenter/autoforms/Connections/Connection12.desktop -share/apps/kpresenter/autoforms/Connections/Connection2.desktop -share/apps/kpresenter/autoforms/Connections/Connection3.desktop -share/apps/kpresenter/autoforms/Connections/Connection4.desktop -share/apps/kpresenter/autoforms/Connections/Connection5.desktop -share/apps/kpresenter/autoforms/Connections/Connection6.desktop -share/apps/kpresenter/autoforms/Connections/Connection7.desktop -share/apps/kpresenter/autoforms/Connections/Connection8.desktop -share/apps/kpresenter/autoforms/Connections/Connection9.desktop -share/apps/kpresenter/dtd/kpresenter.dtd -share/apps/kpresenter/icons/hicolor/22x22/actions/alignobjs.png -share/apps/kpresenter/icons/hicolor/22x22/actions/aobottom.png -share/apps/kpresenter/icons/hicolor/22x22/actions/aocenterh.png -share/apps/kpresenter/icons/hicolor/22x22/actions/aocenterv.png -share/apps/kpresenter/icons/hicolor/22x22/actions/aoleft.png -share/apps/kpresenter/icons/hicolor/22x22/actions/aoright.png -share/apps/kpresenter/icons/hicolor/22x22/actions/aotop.png -share/apps/kpresenter/icons/hicolor/22x22/actions/autoform.png -share/apps/kpresenter/icons/hicolor/22x22/actions/circle.png -share/apps/kpresenter/icons/hicolor/22x22/actions/delete.png -share/apps/kpresenter/icons/hicolor/22x22/actions/delslide.png -share/apps/kpresenter/icons/hicolor/22x22/actions/depth+.png -share/apps/kpresenter/icons/hicolor/22x22/actions/depth-.png -share/apps/kpresenter/icons/hicolor/22x22/actions/edit_pie.png -share/apps/kpresenter/icons/hicolor/22x22/actions/effect.png -share/apps/kpresenter/icons/hicolor/22x22/actions/enumList.png -share/apps/kpresenter/icons/hicolor/22x22/actions/group.png -share/apps/kpresenter/icons/hicolor/22x22/actions/line.png -share/apps/kpresenter/icons/hicolor/22x22/actions/line_arrow_begin.png -share/apps/kpresenter/icons/hicolor/22x22/actions/line_arrow_end.png -share/apps/kpresenter/icons/hicolor/22x22/actions/line_begin.png -share/apps/kpresenter/icons/hicolor/22x22/actions/line_circle_begin.png -share/apps/kpresenter/icons/hicolor/22x22/actions/line_circle_end.png -share/apps/kpresenter/icons/hicolor/22x22/actions/line_end.png -share/apps/kpresenter/icons/hicolor/22x22/actions/line_normal_begin.png -share/apps/kpresenter/icons/hicolor/22x22/actions/line_normal_end.png -share/apps/kpresenter/icons/hicolor/22x22/actions/line_rect_begin.png -share/apps/kpresenter/icons/hicolor/22x22/actions/line_rect_end.png -share/apps/kpresenter/icons/hicolor/22x22/actions/lined1.png -share/apps/kpresenter/icons/hicolor/22x22/actions/lined2.png -share/apps/kpresenter/icons/hicolor/22x22/actions/lineh.png -share/apps/kpresenter/icons/hicolor/22x22/actions/linev.png -share/apps/kpresenter/icons/hicolor/22x22/actions/lower.png -share/apps/kpresenter/icons/hicolor/22x22/actions/mini_autoform.png -share/apps/kpresenter/icons/hicolor/22x22/actions/mini_circle.png -share/apps/kpresenter/icons/hicolor/22x22/actions/mini_clipart.png -share/apps/kpresenter/icons/hicolor/22x22/actions/mini_line.png -share/apps/kpresenter/icons/hicolor/22x22/actions/mini_pie.png -share/apps/kpresenter/icons/hicolor/22x22/actions/mini_rect.png -share/apps/kpresenter/icons/hicolor/22x22/actions/newPoint.png -share/apps/kpresenter/icons/hicolor/22x22/actions/newslide.png -share/apps/kpresenter/icons/hicolor/22x22/actions/normalText.png -share/apps/kpresenter/icons/hicolor/22x22/actions/pen.png -share/apps/kpresenter/icons/hicolor/22x22/actions/pen_style.png -share/apps/kpresenter/icons/hicolor/22x22/actions/pen_style_dash.png -share/apps/kpresenter/icons/hicolor/22x22/actions/pen_style_dot.png -share/apps/kpresenter/icons/hicolor/22x22/actions/pen_style_dotdot.png -share/apps/kpresenter/icons/hicolor/22x22/actions/pen_style_nopen.png -share/apps/kpresenter/icons/hicolor/22x22/actions/pen_style_solid.png -share/apps/kpresenter/icons/hicolor/22x22/actions/pen_width.png -share/apps/kpresenter/icons/hicolor/22x22/actions/pen_width1.png -share/apps/kpresenter/icons/hicolor/22x22/actions/pen_width10.png -share/apps/kpresenter/icons/hicolor/22x22/actions/pen_width4.png -share/apps/kpresenter/icons/hicolor/22x22/actions/pen_width7.png -share/apps/kpresenter/icons/hicolor/22x22/actions/pgnum.png -share/apps/kpresenter/icons/hicolor/22x22/actions/pie.png -share/apps/kpresenter/icons/hicolor/22x22/actions/raise.png -share/apps/kpresenter/icons/hicolor/22x22/actions/rectangle.png -share/apps/kpresenter/icons/hicolor/22x22/actions/rectangle2.png -share/apps/kpresenter/icons/hicolor/22x22/actions/rectangleRound.png -share/apps/kpresenter/icons/hicolor/22x22/actions/screen.png -share/apps/kpresenter/icons/hicolor/22x22/actions/shadow.png -share/apps/kpresenter/icons/hicolor/22x22/actions/shadowB.png -share/apps/kpresenter/icons/hicolor/22x22/actions/shadowL.png -share/apps/kpresenter/icons/hicolor/22x22/actions/shadowLB.png -share/apps/kpresenter/icons/hicolor/22x22/actions/shadowLU.png -share/apps/kpresenter/icons/hicolor/22x22/actions/shadowR.png -share/apps/kpresenter/icons/hicolor/22x22/actions/shadowRB.png -share/apps/kpresenter/icons/hicolor/22x22/actions/shadowRU.png -share/apps/kpresenter/icons/hicolor/22x22/actions/shadowU.png -share/apps/kpresenter/icons/hicolor/22x22/actions/spacing.png -share/apps/kpresenter/icons/hicolor/22x22/actions/style.png -share/apps/kpresenter/icons/hicolor/22x22/actions/text.png -share/apps/kpresenter/icons/hicolor/22x22/actions/ungroup.png -share/apps/kpresenter/icons/hicolor/22x22/actions/unsortedList.png -share/apps/kpresenter/icons/hicolor/22x22/actions/webpres.png -share/apps/kpresenter/kpartplugins/scan-kpresenter.rc -share/apps/kpresenter/kpresenter.rc -share/apps/kpresenter/pics/OneColumnLandscape.png -share/apps/kpresenter/pics/OneColumnPortrait.png -share/apps/kpresenter/pics/TitleLandscape.png -share/apps/kpresenter/pics/TitlePortrait.png -share/apps/kpresenter/pics/TwoColumnLandscape.png -share/apps/kpresenter/pics/TwoColumnPortrait.png -share/apps/kpresenter/pics/emptyLandscape.png -share/apps/kpresenter/pics/emptyPortrait.png -share/apps/kpresenter/pics/kautoformedit.png -share/apps/kpresenter/slideshow/first.bmp -share/apps/kpresenter/slideshow/first.jpeg -share/apps/kpresenter/slideshow/first.png -share/apps/kpresenter/slideshow/home.bmp -share/apps/kpresenter/slideshow/home.jpeg -share/apps/kpresenter/slideshow/home.png -share/apps/kpresenter/slideshow/last.bmp -share/apps/kpresenter/slideshow/last.jpeg -share/apps/kpresenter/slideshow/last.png -share/apps/kpresenter/slideshow/next.bmp -share/apps/kpresenter/slideshow/next.jpeg -share/apps/kpresenter/slideshow/next.png -share/apps/kpresenter/slideshow/prev.bmp -share/apps/kpresenter/slideshow/prev.jpeg -share/apps/kpresenter/slideshow/prev.png -share/apps/kpresenter/templates/A4/.directory -share/apps/kpresenter/templates/A4/.source/OneColumnLandscape.kpt -share/apps/kpresenter/templates/A4/.source/OneColumnPortrait.kpt -share/apps/kpresenter/templates/A4/.source/TitleLandscape.kpt -share/apps/kpresenter/templates/A4/.source/TitlePortrait.kpt -share/apps/kpresenter/templates/A4/.source/TwoColumnLandscape.kpt -share/apps/kpresenter/templates/A4/.source/TwoColumnPortrait.kpt -share/apps/kpresenter/templates/A4/.source/emptyLandscape.kpt -share/apps/kpresenter/templates/A4/.source/emptyPortrait.kpt -share/apps/kpresenter/templates/A4/OneColumnLandscape.desktop -share/apps/kpresenter/templates/A4/OneColumnPortrait.desktop -share/apps/kpresenter/templates/A4/TitleLandscape.desktop -share/apps/kpresenter/templates/A4/TitlePortrait.desktop -share/apps/kpresenter/templates/A4/TwoColumnLandscape.desktop -share/apps/kpresenter/templates/A4/TwoColumnPortrait.desktop -share/apps/kpresenter/templates/A4/emptyLandscape.desktop -share/apps/kpresenter/templates/A4/emptyPortrait.desktop -share/apps/kpresenter/templates/Screen/.directory -share/apps/kpresenter/templates/Screen/.source/OneColumnLandscape.kpt -share/apps/kpresenter/templates/Screen/.source/TitleLandscape.kpt -share/apps/kpresenter/templates/Screen/.source/TwoColumnLandscape.kpt -share/apps/kpresenter/templates/Screen/.source/emptyLandscape.kpt -share/apps/kpresenter/templates/Screen/OneColumnLandscape.desktop -share/apps/kpresenter/templates/Screen/TitleLandscape.desktop -share/apps/kpresenter/templates/Screen/TwoColumnLandscape.desktop -share/apps/kpresenter/templates/Screen/emptyLandscape.desktop -share/apps/kpresenter/templates/Screenpresentations/.directory -share/apps/kpresenter/templates/Screenpresentations/.icon/BlueBreezeDouble.png -share/apps/kpresenter/templates/Screenpresentations/.icon/BlueBreezePicture.png -share/apps/kpresenter/templates/Screenpresentations/.icon/BlueBreezeSingle.png -share/apps/kpresenter/templates/Screenpresentations/.icon/Gradient-Blue-Red.png -share/apps/kpresenter/templates/Screenpresentations/.icon/Plain.png -share/apps/kpresenter/templates/Screenpresentations/.icon/SnowyMountains.png -share/apps/kpresenter/templates/Screenpresentations/.icon/TotallyNewProduct.png -share/apps/kpresenter/templates/Screenpresentations/.icon/kde.png -share/apps/kpresenter/templates/Screenpresentations/.icon/kde2.png -share/apps/kpresenter/templates/Screenpresentations/.source/BlueBreezeDouble.kpt -share/apps/kpresenter/templates/Screenpresentations/.source/BlueBreezePicture.kpt -share/apps/kpresenter/templates/Screenpresentations/.source/BlueBreezeSingle.kpt -share/apps/kpresenter/templates/Screenpresentations/.source/Gradient-Blue-Red.kpt -share/apps/kpresenter/templates/Screenpresentations/.source/Plain.kpt -share/apps/kpresenter/templates/Screenpresentations/.source/SnowyMountains.kpt -share/apps/kpresenter/templates/Screenpresentations/.source/TotallyNewProduct.kpt -share/apps/kpresenter/templates/Screenpresentations/.source/kde.kpt -share/apps/kpresenter/templates/Screenpresentations/.source/kde2.kpt -share/apps/kpresenter/templates/Screenpresentations/BlueBreezeDouble.desktop -share/apps/kpresenter/templates/Screenpresentations/BlueBreezePicture.desktop -share/apps/kpresenter/templates/Screenpresentations/BlueBreezeSingle.desktop -share/apps/kpresenter/templates/Screenpresentations/Gradient-Blue-Red.desktop -share/apps/kpresenter/templates/Screenpresentations/Plain.desktop -share/apps/kpresenter/templates/Screenpresentations/SnowyMountains.desktop -share/apps/kpresenter/templates/Screenpresentations/TotallyNewProduct.desktop -share/apps/kpresenter/templates/Screenpresentations/kde.desktop -share/apps/kpresenter/templates/Screenpresentations/kde2.desktop -share/apps/kpresenter/templates/legal/.directory -share/apps/kpresenter/templates/legal/.source/OneColumnLandscape.kpt -share/apps/kpresenter/templates/legal/.source/OneColumnPortrait.kpt -share/apps/kpresenter/templates/legal/.source/TitleLandscape.kpt -share/apps/kpresenter/templates/legal/.source/TitlePortrait.kpt -share/apps/kpresenter/templates/legal/.source/TwoColumnLandscape.kpt -share/apps/kpresenter/templates/legal/.source/TwoColumnPortrait.kpt -share/apps/kpresenter/templates/legal/.source/emptyLandscape.kpt -share/apps/kpresenter/templates/legal/.source/emptyPortrait.kpt -share/apps/kpresenter/templates/legal/OneColumnLandscape.desktop -share/apps/kpresenter/templates/legal/OneColumnPortrait.desktop -share/apps/kpresenter/templates/legal/TitleLandscape.desktop -share/apps/kpresenter/templates/legal/TitlePortrait.desktop -share/apps/kpresenter/templates/legal/TwoColumnLandscape.desktop -share/apps/kpresenter/templates/legal/TwoColumnPortrait.desktop -share/apps/kpresenter/templates/legal/emptyLandscape.desktop -share/apps/kpresenter/templates/legal/emptyPortrait.desktop -share/apps/kpresenter/templates/letter/.directory -share/apps/kpresenter/templates/letter/.source/OneColumnLandscape.kpt -share/apps/kpresenter/templates/letter/.source/OneColumnPortrait.kpt -share/apps/kpresenter/templates/letter/.source/TitleLandscape.kpt -share/apps/kpresenter/templates/letter/.source/TitlePortrait.kpt -share/apps/kpresenter/templates/letter/.source/TwoColumnLandscape.kpt -share/apps/kpresenter/templates/letter/.source/TwoColumnPortrait.kpt -share/apps/kpresenter/templates/letter/.source/emptyLandscape.kpt -share/apps/kpresenter/templates/letter/.source/emptyPortrait.kpt -share/apps/kpresenter/templates/letter/OneColumnLandscape.desktop -share/apps/kpresenter/templates/letter/OneColumnPortrait.desktop -share/apps/kpresenter/templates/letter/TitleLandscape.desktop -share/apps/kpresenter/templates/letter/TitlePortrait.desktop -share/apps/kpresenter/templates/letter/TwoColumnLandscape.desktop -share/apps/kpresenter/templates/letter/TwoColumnPortrait.desktop -share/apps/kpresenter/templates/letter/emptyLandscape.desktop -share/apps/kpresenter/templates/letter/emptyPortrait.desktop -share/apps/krayon/kpartplugins/scan-krayon.rc -share/apps/kspread/dtd/kspread.dtd -share/apps/kspread/extensions/builtin.xml -share/apps/kspread/extensions/math.ks -share/apps/kspread/icons/hicolor/16x16/actions/adjustcol.png -share/apps/kspread/icons/hicolor/16x16/actions/adjustrow.png -share/apps/kspread/icons/hicolor/16x16/actions/black_sum.png -share/apps/kspread/icons/hicolor/16x16/actions/border_all.png -share/apps/kspread/icons/hicolor/16x16/actions/border_bottom.png -share/apps/kspread/icons/hicolor/16x16/actions/border_fall.png -share/apps/kspread/icons/hicolor/16x16/actions/border_horizontal.png -share/apps/kspread/icons/hicolor/16x16/actions/border_inside.png -share/apps/kspread/icons/hicolor/16x16/actions/border_left.png -share/apps/kspread/icons/hicolor/16x16/actions/border_outline.png -share/apps/kspread/icons/hicolor/16x16/actions/border_remove.png -share/apps/kspread/icons/hicolor/16x16/actions/border_right.png -share/apps/kspread/icons/hicolor/16x16/actions/border_top.png -share/apps/kspread/icons/hicolor/16x16/actions/border_up.png -share/apps/kspread/icons/hicolor/16x16/actions/border_vertical.png -share/apps/kspread/icons/hicolor/16x16/actions/cell_edit.png -share/apps/kspread/icons/hicolor/16x16/actions/cell_layout.png -share/apps/kspread/icons/hicolor/16x16/actions/chart.png -share/apps/kspread/icons/hicolor/16x16/actions/color_fill.png -share/apps/kspread/icons/hicolor/16x16/actions/color_line.png -share/apps/kspread/icons/hicolor/16x16/actions/comment.png -share/apps/kspread/icons/hicolor/16x16/actions/delete_table.png -share/apps/kspread/icons/hicolor/16x16/actions/deletecell.png -share/apps/kspread/icons/hicolor/16x16/actions/dissociatecell.png -share/apps/kspread/icons/hicolor/16x16/actions/first_letter_upper.png -share/apps/kspread/icons/hicolor/16x16/actions/fontsizedown.png -share/apps/kspread/icons/hicolor/16x16/actions/fontsizeup.png -share/apps/kspread/icons/hicolor/16x16/actions/funct.png -share/apps/kspread/icons/hicolor/16x16/actions/hide_table_column.png -share/apps/kspread/icons/hicolor/16x16/actions/hide_table_row.png -share/apps/kspread/icons/hicolor/16x16/actions/insertcell.png -share/apps/kspread/icons/hicolor/16x16/actions/insertcellcopy.png -share/apps/kspread/icons/hicolor/16x16/actions/inserttable.png -share/apps/kspread/icons/hicolor/16x16/actions/lower.png -share/apps/kspread/icons/hicolor/16x16/actions/mergecell.png -share/apps/kspread/icons/hicolor/16x16/actions/middle.png -share/apps/kspread/icons/hicolor/16x16/actions/money.png -share/apps/kspread/icons/hicolor/16x16/actions/multirow.png -share/apps/kspread/icons/hicolor/16x16/actions/oscilloscope.png -share/apps/kspread/icons/hicolor/16x16/actions/percent.png -share/apps/kspread/icons/hicolor/16x16/actions/precminus.png -share/apps/kspread/icons/hicolor/16x16/actions/precplus.png -share/apps/kspread/icons/hicolor/16x16/actions/removecell.png -share/apps/kspread/icons/hicolor/16x16/actions/removecomment.png -share/apps/kspread/icons/hicolor/16x16/actions/resizecol.png -share/apps/kspread/icons/hicolor/16x16/actions/resizerow.png -share/apps/kspread/icons/hicolor/16x16/actions/series.png -share/apps/kspread/icons/hicolor/16x16/actions/show_table_column.png -share/apps/kspread/icons/hicolor/16x16/actions/show_table_row.png -share/apps/kspread/icons/hicolor/16x16/actions/sort_decrease.png -share/apps/kspread/icons/hicolor/16x16/actions/sort_incr.png -share/apps/kspread/icons/hicolor/16x16/actions/special_paste.png -share/apps/kspread/icons/hicolor/16x16/actions/text_bottom.png -share/apps/kspread/icons/hicolor/16x16/actions/text_top.png -share/apps/kspread/icons/hicolor/16x16/actions/upper.png -share/apps/kspread/icons/hicolor/16x16/actions/vertical_text.png -share/apps/kspread/icons/hicolor/22x22/actions/abort.png -share/apps/kspread/icons/hicolor/22x22/actions/adjustcol.png -share/apps/kspread/icons/hicolor/22x22/actions/adjustrow.png -share/apps/kspread/icons/hicolor/22x22/actions/black_sum.png -share/apps/kspread/icons/hicolor/22x22/actions/border_all.png -share/apps/kspread/icons/hicolor/22x22/actions/border_bottom.png -share/apps/kspread/icons/hicolor/22x22/actions/border_fall.png -share/apps/kspread/icons/hicolor/22x22/actions/border_horizontal.png -share/apps/kspread/icons/hicolor/22x22/actions/border_inside.png -share/apps/kspread/icons/hicolor/22x22/actions/border_left.png -share/apps/kspread/icons/hicolor/22x22/actions/border_outline.png -share/apps/kspread/icons/hicolor/22x22/actions/border_remove.png -share/apps/kspread/icons/hicolor/22x22/actions/border_right.png -share/apps/kspread/icons/hicolor/22x22/actions/border_top.png -share/apps/kspread/icons/hicolor/22x22/actions/border_up.png -share/apps/kspread/icons/hicolor/22x22/actions/border_vertical.png -share/apps/kspread/icons/hicolor/22x22/actions/cell_layout.png -share/apps/kspread/icons/hicolor/22x22/actions/color_fill.png -share/apps/kspread/icons/hicolor/22x22/actions/color_line.png -share/apps/kspread/icons/hicolor/22x22/actions/colout.png -share/apps/kspread/icons/hicolor/22x22/actions/comment.png -share/apps/kspread/icons/hicolor/22x22/actions/delete_table.png -share/apps/kspread/icons/hicolor/22x22/actions/deletecell.png -share/apps/kspread/icons/hicolor/22x22/actions/dissociatecell.png -share/apps/kspread/icons/hicolor/22x22/actions/done.png -share/apps/kspread/icons/hicolor/22x22/actions/first_letter_upper.png -share/apps/kspread/icons/hicolor/22x22/actions/fontsizedown.png -share/apps/kspread/icons/hicolor/22x22/actions/fontsizeup.png -share/apps/kspread/icons/hicolor/22x22/actions/funct.png -share/apps/kspread/icons/hicolor/22x22/actions/hide_table_column.png -share/apps/kspread/icons/hicolor/22x22/actions/hide_table_row.png -share/apps/kspread/icons/hicolor/22x22/actions/insertcell.png -share/apps/kspread/icons/hicolor/22x22/actions/insertcellcopy.png -share/apps/kspread/icons/hicolor/22x22/actions/inserttable.png -share/apps/kspread/icons/hicolor/22x22/actions/lower.png -share/apps/kspread/icons/hicolor/22x22/actions/mergecell.png -share/apps/kspread/icons/hicolor/22x22/actions/middle.png -share/apps/kspread/icons/hicolor/22x22/actions/money.png -share/apps/kspread/icons/hicolor/22x22/actions/multirow.png -share/apps/kspread/icons/hicolor/22x22/actions/neonpen.png -share/apps/kspread/icons/hicolor/22x22/actions/oscilloscope.png -share/apps/kspread/icons/hicolor/22x22/actions/percent.png -share/apps/kspread/icons/hicolor/22x22/actions/prec_minus.png -share/apps/kspread/icons/hicolor/22x22/actions/prec_plus.png -share/apps/kspread/icons/hicolor/22x22/actions/removecell.png -share/apps/kspread/icons/hicolor/22x22/actions/removecomment.png -share/apps/kspread/icons/hicolor/22x22/actions/resizecol.png -share/apps/kspread/icons/hicolor/22x22/actions/resizerow.png -share/apps/kspread/icons/hicolor/22x22/actions/rowout.png -share/apps/kspread/icons/hicolor/22x22/actions/show_table_column.png -share/apps/kspread/icons/hicolor/22x22/actions/show_table_row.png -share/apps/kspread/icons/hicolor/22x22/actions/sort_decrease.png -share/apps/kspread/icons/hicolor/22x22/actions/sort_incr.png -share/apps/kspread/icons/hicolor/22x22/actions/special_paste.png -share/apps/kspread/icons/hicolor/22x22/actions/text_bottom.png -share/apps/kspread/icons/hicolor/22x22/actions/text_top.png -share/apps/kspread/icons/hicolor/22x22/actions/upper.png -share/apps/kspread/icons/hicolor/22x22/actions/vertical_text.png -share/apps/kspread/icons/hicolor/32x32/actions/border_all.png -share/apps/kspread/icons/hicolor/32x32/actions/border_bottom.png -share/apps/kspread/icons/hicolor/32x32/actions/border_fall.png -share/apps/kspread/icons/hicolor/32x32/actions/border_horizontal.png -share/apps/kspread/icons/hicolor/32x32/actions/border_inside.png -share/apps/kspread/icons/hicolor/32x32/actions/border_left.png -share/apps/kspread/icons/hicolor/32x32/actions/border_outline.png -share/apps/kspread/icons/hicolor/32x32/actions/border_remove.png -share/apps/kspread/icons/hicolor/32x32/actions/border_right.png -share/apps/kspread/icons/hicolor/32x32/actions/border_top.png -share/apps/kspread/icons/hicolor/32x32/actions/border_up.png -share/apps/kspread/icons/hicolor/32x32/actions/border_vertical.png -share/apps/kspread/icons/hicolor/32x32/actions/funct.png -share/apps/kspread/icons/hicolor/32x32/actions/percent.png -share/apps/kspread/icons/hicolor/32x32/actions/prec_minus.png -share/apps/kspread/icons/hicolor/32x32/actions/prec_plus.png -share/apps/kspread/kpartplugins/kspreadcalc.rc -share/apps/kspread/kspread.rc -share/apps/kspread/tablestyles/standard1.ksts -share/apps/kspread/tablestyles/standard1.png -share/apps/kspread/tablestyles/standard1.xml -share/apps/kspread/tablestyles/standard2.ksts -share/apps/kspread/tablestyles/standard2.png -share/apps/kspread/tablestyles/standard2.xml -share/apps/kugar/dtd/kugartemplate.dtd -share/apps/kugar/kugarpart.rc -share/apps/kugar/kugarui.rc -share/apps/kugar/templates/sample1.kut -share/apps/kugar/templates/sample2.kut -share/apps/kword/dtd/kword.dtd -share/apps/kword/expression/expression.xml -share/apps/kword/icons/hicolor/16x16/actions/color_fill.png -share/apps/kword/icons/hicolor/16x16/actions/color_line.png -share/apps/kword/icons/hicolor/22x22/actions/borderbottom.png -share/apps/kword/icons/hicolor/22x22/actions/borderleft.png -share/apps/kword/icons/hicolor/22x22/actions/borderoutline.png -share/apps/kword/icons/hicolor/22x22/actions/borderright.png -share/apps/kword/icons/hicolor/22x22/actions/bordertop.png -share/apps/kword/icons/hicolor/22x22/actions/char.png -share/apps/kword/icons/hicolor/22x22/actions/color_fill.png -share/apps/kword/icons/hicolor/22x22/actions/color_line.png -share/apps/kword/icons/hicolor/22x22/actions/edittool.png -share/apps/kword/icons/hicolor/22x22/actions/enumList.png -share/apps/kword/icons/hicolor/22x22/actions/kwsearch.png -share/apps/kword/icons/hicolor/22x22/actions/return.png -share/apps/kword/icons/hicolor/22x22/actions/run_bounding.png -share/apps/kword/icons/hicolor/22x22/actions/run_not.png -share/apps/kword/icons/hicolor/22x22/actions/run_skip.png -share/apps/kword/icons/hicolor/22x22/actions/sl_addentry.png -share/apps/kword/icons/hicolor/22x22/actions/sl_addrecord.png -share/apps/kword/icons/hicolor/22x22/actions/sl_delentry.png -share/apps/kword/icons/hicolor/22x22/actions/sl_delrecord.png -share/apps/kword/icons/hicolor/22x22/actions/sub.png -share/apps/kword/icons/hicolor/22x22/actions/super.png -share/apps/kword/icons/hicolor/22x22/actions/tree_arrange.png -share/apps/kword/icons/hicolor/22x22/actions/unsortedList.png -share/apps/kword/kpartplugins/scan-kword.rc -share/apps/kword/kword.rc -share/apps/kword/templates/Normal/.directory -share/apps/kword/templates/Normal/.icon/A4.png -share/apps/kword/templates/Normal/.icon/Letter.png -share/apps/kword/templates/Normal/.icon/PlainText.png -share/apps/kword/templates/Normal/.icon/TwoColumns.png -share/apps/kword/templates/Normal/.source/A4.kwt -share/apps/kword/templates/Normal/.source/Letter.kwt -share/apps/kword/templates/Normal/.source/PlainText.kwt -share/apps/kword/templates/Normal/.source/TwoColumns.kwt -share/apps/kword/templates/Normal/A4.desktop -share/apps/kword/templates/Normal/Letter.desktop -share/apps/kword/templates/Normal/PlainText.desktop -share/apps/kword/templates/Normal/TwoColumns.desktop -share/apps/kword/templates/Publishing/.directory -share/apps/kword/templates/Publishing/.icon/SimpleLayout.png -share/apps/kword/templates/Publishing/.source/SimpleLayout.kwt -share/apps/kword/templates/Publishing/SimpleLayout.desktop -share/doc/HTML/en/koffice/README.documentation -share/doc/HTML/en/koffice/common -share/doc/HTML/en/koffice/index.cache.bz2 -share/doc/HTML/en/koffice/index.docbook -share/doc/HTML/en/kontour/align.png -share/doc/HTML/en/kontour/align2.png -share/doc/HTML/en/kontour/bezier.png -share/doc/HTML/en/kontour/blend_dialog.png -share/doc/HTML/en/kontour/colour.png -share/doc/HTML/en/kontour/common -share/doc/HTML/en/kontour/ellipse.png -share/doc/HTML/en/kontour/export.png -share/doc/HTML/en/kontour/freehand.png -share/doc/HTML/en/kontour/index.cache.bz2 -share/doc/HTML/en/kontour/index.docbook -share/doc/HTML/en/kontour/line.png -share/doc/HTML/en/kontour/logo.png -share/doc/HTML/en/kontour/movepoint.png -share/doc/HTML/en/kontour/newpoint.png -share/doc/HTML/en/kontour/open_dialog.png -share/doc/HTML/en/kontour/pfeil.png -share/doc/HTML/en/kontour/point.png -share/doc/HTML/en/kontour/polygon-setup.png -share/doc/HTML/en/kontour/polygon.png -share/doc/HTML/en/kontour/rect.png -share/doc/HTML/en/kontour/rmpoint.png -share/doc/HTML/en/kontour/save_dialog.png -share/doc/HTML/en/kontour/schichten.png -share/doc/HTML/en/kontour/text.png -share/doc/HTML/en/kontour/verteilen.png -share/doc/HTML/en/kontour/zoom.png -share/doc/HTML/en/koshell/common -share/doc/HTML/en/koshell/index.cache.bz2 -share/doc/HTML/en/koshell/index.docbook -share/doc/HTML/en/kpresenter/barmenus.png -share/doc/HTML/en/kpresenter/barstyle1.png -share/doc/HTML/en/kpresenter/barstyle2.png -share/doc/HTML/en/kpresenter/barstyle3.png -share/doc/HTML/en/kpresenter/barstyle4.png -share/doc/HTML/en/kpresenter/barstyle5.png -share/doc/HTML/en/kpresenter/barstyle6.png -share/doc/HTML/en/kpresenter/barstyle7.png -share/doc/HTML/en/kpresenter/common -share/doc/HTML/en/kpresenter/faq.docbook -share/doc/HTML/en/kpresenter/guides.docbook -share/doc/HTML/en/kpresenter/index.cache.bz2 -share/doc/HTML/en/kpresenter/index.docbook -share/doc/HTML/en/kpresenter/menuedit.png -share/doc/HTML/en/kpresenter/menuextra.png -share/doc/HTML/en/kpresenter/menufile.png -share/doc/HTML/en/kpresenter/menuhelp.png -share/doc/HTML/en/kpresenter/menuinsert.png -share/doc/HTML/en/kpresenter/menus.docbook -share/doc/HTML/en/kpresenter/menuscreen.png -share/doc/HTML/en/kpresenter/menutext.png -share/doc/HTML/en/kpresenter/menutools.png -share/doc/HTML/en/kpresenter/menuview.png -share/doc/HTML/en/kpresenter/options.docbook -share/doc/HTML/en/kpresenter/screen.docbook -share/doc/HTML/en/kpresenter/tut01.png -share/doc/HTML/en/kpresenter/tut02.png -share/doc/HTML/en/kpresenter/tut03.png -share/doc/HTML/en/kpresenter/tut04.png -share/doc/HTML/en/kpresenter/tut05.png -share/doc/HTML/en/kpresenter/tut06.png -share/doc/HTML/en/kpresenter/tut07.png -share/doc/HTML/en/kpresenter/tut08.png -share/doc/HTML/en/kpresenter/tut09.png -share/doc/HTML/en/kpresenter/tut10.png -share/doc/HTML/en/kpresenter/tut11.png -share/doc/HTML/en/kpresenter/tut12.png -share/doc/HTML/en/kpresenter/tut13.png -share/doc/HTML/en/kpresenter/tut14.png -share/doc/HTML/en/kpresenter/tut15.png -share/doc/HTML/en/kpresenter/tut16.png -share/doc/HTML/en/kpresenter/tut17.png -share/doc/HTML/en/kpresenter/tut18.png -share/doc/HTML/en/kpresenter/tut19.png -share/doc/HTML/en/kpresenter/tut20.png -share/doc/HTML/en/kpresenter/tut21.png -share/doc/HTML/en/kpresenter/tut22.png -share/doc/HTML/en/kpresenter/tut23.png -share/doc/HTML/en/kpresenter/tutorial.docbook -share/doc/HTML/en/krayon/airbrush.png -share/doc/HTML/en/krayon/colorpicker.png -share/doc/HTML/en/krayon/common -share/doc/HTML/en/krayon/documentinfo.png -share/doc/HTML/en/krayon/editcopy.png -share/doc/HTML/en/krayon/editcut.png -share/doc/HTML/en/krayon/editpaste.png -share/doc/HTML/en/krayon/eraser.png -share/doc/HTML/en/krayon/exit.png -share/doc/HTML/en/krayon/fileclose.png -share/doc/HTML/en/krayon/filenew.png -share/doc/HTML/en/krayon/fileopen.png -share/doc/HTML/en/krayon/fileprint.png -share/doc/HTML/en/krayon/filesave.png -share/doc/HTML/en/krayon/fill.png -share/doc/HTML/en/krayon/generictool.png -share/doc/HTML/en/krayon/gradient.png -share/doc/HTML/en/krayon/index.cache.bz2 -share/doc/HTML/en/krayon/index.docbook -share/doc/HTML/en/krayon/krayon-commands.docbook -share/doc/HTML/en/krayon/krayon-faq.docbook -share/doc/HTML/en/krayon/krayon-using.docbook -share/doc/HTML/en/krayon/move.png -share/doc/HTML/en/krayon/paintbrush.png -share/doc/HTML/en/krayon/pencil.png -share/doc/HTML/en/krayon/redo.png -share/doc/HTML/en/krayon/undo.png -share/doc/HTML/en/krayon/unfinished.png -share/doc/HTML/en/krayon/viewmag+.png -share/doc/HTML/en/krayon/viewmag-.png -share/doc/HTML/en/krayon/viewmag.png -share/doc/HTML/en/krayon/wizard.png -share/doc/HTML/en/kspread/common -share/doc/HTML/en/kspread/index.cache.bz2 -share/doc/HTML/en/kspread/index.docbook -share/doc/HTML/en/kugar/common -share/doc/HTML/en/kugar/datadtd.docbook -share/doc/HTML/en/kugar/dataref.docbok -share/doc/HTML/en/kugar/dataref.docbook -share/doc/HTML/en/kugar/index.cache.bz2 -share/doc/HTML/en/kugar/index.docbook -share/doc/HTML/en/kugar/index.html -share/doc/HTML/en/kugar/kugar.png -share/doc/HTML/en/kugar/template-elements.docbook -share/doc/HTML/en/kugar/template.docbook -share/doc/HTML/en/kugar/templatedtd.docbook -share/doc/HTML/en/kword/ChooseTempDia.png -share/doc/HTML/en/kword/Tut1.png -share/doc/HTML/en/kword/Tut10.png -share/doc/HTML/en/kword/Tut11a.png -share/doc/HTML/en/kword/Tut11b.png -share/doc/HTML/en/kword/Tut12.png -share/doc/HTML/en/kword/Tut13.png -share/doc/HTML/en/kword/Tut14.png -share/doc/HTML/en/kword/Tut14a.png -share/doc/HTML/en/kword/Tut15.png -share/doc/HTML/en/kword/Tut15a.png -share/doc/HTML/en/kword/Tut16.png -share/doc/HTML/en/kword/Tut17.png -share/doc/HTML/en/kword/Tut18.png -share/doc/HTML/en/kword/Tut19.png -share/doc/HTML/en/kword/Tut2.png -share/doc/HTML/en/kword/Tut20.png -share/doc/HTML/en/kword/Tut21.png -share/doc/HTML/en/kword/Tut22.png -share/doc/HTML/en/kword/Tut3.png -share/doc/HTML/en/kword/Tut4.png -share/doc/HTML/en/kword/Tut6.png -share/doc/HTML/en/kword/Tut7.png -share/doc/HTML/en/kword/Tut8.png -share/doc/HTML/en/kword/Tut9.png -share/doc/HTML/en/kword/alignBlock.png -share/doc/HTML/en/kword/alignCenter.png -share/doc/HTML/en/kword/alignLeft.png -share/doc/HTML/en/kword/alignRight.png -share/doc/HTML/en/kword/auto1.png -share/doc/HTML/en/kword/auto2.png -share/doc/HTML/en/kword/auto3.png -share/doc/HTML/en/kword/basic.png -share/doc/HTML/en/kword/bbord.png -share/doc/HTML/en/kword/bdcolorbut.png -share/doc/HTML/en/kword/bdselbut.png -share/doc/HTML/en/kword/bdsizebut.png -share/doc/HTML/en/kword/bkgdcolorbut.png -share/doc/HTML/en/kword/bold.png -share/doc/HTML/en/kword/borbutB.png -share/doc/HTML/en/kword/borbutL.png -share/doc/HTML/en/kword/borbutR.png -share/doc/HTML/en/kword/borbutT.png -share/doc/HTML/en/kword/bord.png -share/doc/HTML/en/kword/bordtb.png -share/doc/HTML/en/kword/bultxtbut.png -share/doc/HTML/en/kword/cancel.png -share/doc/HTML/en/kword/cftb.png -share/doc/HTML/en/kword/chcolorbut.png -share/doc/HTML/en/kword/chfontbut.png -share/doc/HTML/en/kword/chsizebut.png -share/doc/HTML/en/kword/chstylebut.png -share/doc/HTML/en/kword/clipart-from-file.png -share/doc/HTML/en/kword/clipart.png -share/doc/HTML/en/kword/close.png -share/doc/HTML/en/kword/colin.png -share/doc/HTML/en/kword/colout.png -share/doc/HTML/en/kword/common -share/doc/HTML/en/kword/ctab.png -share/doc/HTML/en/kword/ctab2.png -share/doc/HTML/en/kword/decindbut.png -share/doc/HTML/en/kword/delcoldlg.png -share/doc/HTML/en/kword/delete-table-col.png -share/doc/HTML/en/kword/delete-table-row.png -share/doc/HTML/en/kword/delrowdlg.png -share/doc/HTML/en/kword/details.png -share/doc/HTML/en/kword/dtab.png -share/doc/HTML/en/kword/dtab2.png -share/doc/HTML/en/kword/dtpfmtpg1.png -share/doc/HTML/en/kword/dtpfmtpg2.png -share/doc/HTML/en/kword/edit.png -share/doc/HTML/en/kword/editcopy.png -share/doc/HTML/en/kword/editcut.png -share/doc/HTML/en/kword/editpaste.png -share/doc/HTML/en/kword/editspace.png -share/doc/HTML/en/kword/edittb.png -share/doc/HTML/en/kword/exit.png -share/doc/HTML/en/kword/extra.png -share/doc/HTML/en/kword/fchardlg.png -share/doc/HTML/en/kword/fcrtb.png -share/doc/HTML/en/kword/file.png -share/doc/HTML/en/kword/filefloppy.png -share/doc/HTML/en/kword/filenew2.png -share/doc/HTML/en/kword/fileopen.png -share/doc/HTML/en/kword/fileprint.png -share/doc/HTML/en/kword/fileprint2.png -share/doc/HTML/en/kword/filequickprint.png -share/doc/HTML/en/kword/filetb.png -share/doc/HTML/en/kword/find.png -share/doc/HTML/en/kword/finddlg.png -share/doc/HTML/en/kword/formabs.png -share/doc/HTML/en/kword/format.png -share/doc/HTML/en/kword/formbrac.png -share/doc/HTML/en/kword/formcbrac.png -share/doc/HTML/en/kword/formfrac.png -share/doc/HTML/en/kword/formframe1.png -share/doc/HTML/en/kword/formframe2.png -share/doc/HTML/en/kword/formframe3.png -share/doc/HTML/en/kword/formframe4.png -share/doc/HTML/en/kword/forminteg.png -share/doc/HTML/en/kword/formllind.png -share/doc/HTML/en/kword/formlrind.png -share/doc/HTML/en/kword/formmat.png -share/doc/HTML/en/kword/formprod.png -share/doc/HTML/en/kword/formsbrac.png -share/doc/HTML/en/kword/formsqrt.png -share/doc/HTML/en/kword/formsum.png -share/doc/HTML/en/kword/formulind.png -share/doc/HTML/en/kword/formurind.png -share/doc/HTML/en/kword/fpara1.png -share/doc/HTML/en/kword/fpara2.png -share/doc/HTML/en/kword/fpara3.png -share/doc/HTML/en/kword/fpara4.png -share/doc/HTML/en/kword/fpara5.png -share/doc/HTML/en/kword/fpicture.png -share/doc/HTML/en/kword/framemode.png -share/doc/HTML/en/kword/framers.png -share/doc/HTML/en/kword/incindbut.png -share/doc/HTML/en/kword/index.cache.bz2 -share/doc/HTML/en/kword/index.docbook -share/doc/HTML/en/kword/inscoldlg.png -share/doc/HTML/en/kword/insert-table-col.png -share/doc/HTML/en/kword/insert-table-row.png -share/doc/HTML/en/kword/insert.png -share/doc/HTML/en/kword/insrowdlg.png -share/doc/HTML/en/kword/inssc.png -share/doc/HTML/en/kword/instab1.png -share/doc/HTML/en/kword/instab2.png -share/doc/HTML/en/kword/instb.png -share/doc/HTML/en/kword/intro1.png -share/doc/HTML/en/kword/intro2.png -share/doc/HTML/en/kword/intro3.png -share/doc/HTML/en/kword/ital.png -share/doc/HTML/en/kword/italic.png -share/doc/HTML/en/kword/joincell.png -share/doc/HTML/en/kword/kpart.png -share/doc/HTML/en/kword/kwordbasics.docbook -share/doc/HTML/en/kword/kwordfundimentals.docbook -share/doc/HTML/en/kword/kwordguides1.docbook -share/doc/HTML/en/kword/kwordguides2.docbook -share/doc/HTML/en/kword/kwordguides3.docbook -share/doc/HTML/en/kword/kwordguides3b.docbook -share/doc/HTML/en/kword/kwordguides3c.docbook -share/doc/HTML/en/kword/kwordguides4.docbook -share/doc/HTML/en/kword/kwordmbtb.docbook -share/doc/HTML/en/kword/kwordopt.docbook -share/doc/HTML/en/kword/kwordtutorial.docbook -share/doc/HTML/en/kword/landscape.png -share/doc/HTML/en/kword/larrow.png -share/doc/HTML/en/kword/lbord.png -share/doc/HTML/en/kword/lspcbut.png -share/doc/HTML/en/kword/ltab.png -share/doc/HTML/en/kword/ltab2.png -share/doc/HTML/en/kword/neonpen.png -share/doc/HTML/en/kword/newfolder.png -share/doc/HTML/en/kword/nodet.png -share/doc/HTML/en/kword/numtxtbut.png -share/doc/HTML/en/kword/ok.png -share/doc/HTML/en/kword/opendlg.png -share/doc/HTML/en/kword/opt1.png -share/doc/HTML/en/kword/opt2.png -share/doc/HTML/en/kword/optkb.png -share/doc/HTML/en/kword/opttb.png -share/doc/HTML/en/kword/paratb.png -share/doc/HTML/en/kword/part-kchart.png -share/doc/HTML/en/kword/part-kformula.png -share/doc/HTML/en/kword/part-killustrator.png -share/doc/HTML/en/kword/part-kimage.png -share/doc/HTML/en/kword/part-kimageshop.png -share/doc/HTML/en/kword/part-kspread.png -share/doc/HTML/en/kword/part-kword.png -share/doc/HTML/en/kword/part-unspecif.png -share/doc/HTML/en/kword/parts.png -share/doc/HTML/en/kword/picture.png -share/doc/HTML/en/kword/pntdlg.png -share/doc/HTML/en/kword/portrait.png -share/doc/HTML/en/kword/product.png -share/doc/HTML/en/kword/rarrow.png -share/doc/HTML/en/kword/rbord.png -share/doc/HTML/en/kword/redo.png -share/doc/HTML/en/kword/repldlg.png -share/doc/HTML/en/kword/rowin.png -share/doc/HTML/en/kword/rowout.png -share/doc/HTML/en/kword/rtab.png -share/doc/HTML/en/kword/rtab2.png -share/doc/HTML/en/kword/ruler.png -share/doc/HTML/en/kword/saved1.png -share/doc/HTML/en/kword/saved2.png -share/doc/HTML/en/kword/savedlg.png -share/doc/HTML/en/kword/savetmpl1.png -share/doc/HTML/en/kword/savetmpl2.png -share/doc/HTML/en/kword/savetmpl3.png -share/doc/HTML/en/kword/savetmpl4.png -share/doc/HTML/en/kword/screen.png -share/doc/HTML/en/kword/select1.png -share/doc/HTML/en/kword/spell.png -share/doc/HTML/en/kword/spelldlg.png -share/doc/HTML/en/kword/stkout.png -share/doc/HTML/en/kword/styldlg1.png -share/doc/HTML/en/kword/styldlg2.png -share/doc/HTML/en/kword/styldlg3.png -share/doc/HTML/en/kword/styldlg4.png -share/doc/HTML/en/kword/styldlg5.png -share/doc/HTML/en/kword/styldlg6.png -share/doc/HTML/en/kword/styldlg7.png -share/doc/HTML/en/kword/styldlg8.png -share/doc/HTML/en/kword/subscbut.png -share/doc/HTML/en/kword/sum.png -share/doc/HTML/en/kword/supscbut.png -share/doc/HTML/en/kword/table.png -share/doc/HTML/en/kword/tb1.png -share/doc/HTML/en/kword/tb2.png -share/doc/HTML/en/kword/tb3.png -share/doc/HTML/en/kword/tb4.png -share/doc/HTML/en/kword/tbmax.png -share/doc/HTML/en/kword/tbmin.png -share/doc/HTML/en/kword/tbord.png -share/doc/HTML/en/kword/tedittb.png -share/doc/HTML/en/kword/text-bold.png -share/doc/HTML/en/kword/text-italic.png -share/doc/HTML/en/kword/text-underlined.png -share/doc/HTML/en/kword/textmode.png -share/doc/HTML/en/kword/tfcreatebut.png -share/doc/HTML/en/kword/tools.png -share/doc/HTML/en/kword/underl.png -share/doc/HTML/en/kword/undl.png -share/doc/HTML/en/kword/undo.png -share/doc/HTML/en/kword/uplevel.png -share/doc/HTML/en/kword/view.png -share/doc/HTML/en/kword/wpfmtpg1.png -share/doc/HTML/en/kword/wpfmtpg2.png -share/doc/HTML/en/kword/wpfmtpg3.png -share/doc/HTML/en/kword/zoom.png -share/icons/hicolor/16x16/actions/abs.png -share/icons/hicolor/16x16/actions/brace.png -share/icons/hicolor/16x16/actions/brackets.png -share/icons/hicolor/16x16/actions/frac.png -share/icons/hicolor/16x16/actions/int.png -share/icons/hicolor/16x16/actions/lsub.png -share/icons/hicolor/16x16/actions/lsup.png -share/icons/hicolor/16x16/actions/matrix.png -share/icons/hicolor/16x16/actions/onetwomatrix.png -share/icons/hicolor/16x16/actions/paren.png -share/icons/hicolor/16x16/actions/prod.png -share/icons/hicolor/16x16/actions/rsub.png -share/icons/hicolor/16x16/actions/rsup.png -share/icons/hicolor/16x16/actions/sqrt.png -share/icons/hicolor/16x16/actions/sum.png -share/icons/hicolor/16x16/apps/kchart.png -share/icons/hicolor/16x16/apps/kivio.png -share/icons/hicolor/16x16/apps/kontour.png -share/icons/hicolor/16x16/apps/kpresenter.png -share/icons/hicolor/16x16/apps/kspread.png -share/icons/hicolor/16x16/apps/kugar.png -share/icons/hicolor/16x16/apps/kword.png -share/icons/hicolor/16x16/mimetypes/kugardata.png -share/icons/hicolor/22x22/actions/abs.png -share/icons/hicolor/22x22/actions/brace.png -share/icons/hicolor/22x22/actions/brackets.png -share/icons/hicolor/22x22/actions/frac.png -share/icons/hicolor/22x22/actions/int.png -share/icons/hicolor/22x22/actions/lsub.png -share/icons/hicolor/22x22/actions/lsup.png -share/icons/hicolor/22x22/actions/matrix.png -share/icons/hicolor/22x22/actions/onetwomatrix.png -share/icons/hicolor/22x22/actions/paren.png -share/icons/hicolor/22x22/actions/prod.png -share/icons/hicolor/22x22/actions/rsub.png -share/icons/hicolor/22x22/actions/rsup.png -share/icons/hicolor/22x22/actions/sqrt.png -share/icons/hicolor/22x22/actions/sum.png -share/icons/hicolor/22x22/apps/kivio.png -share/icons/hicolor/22x22/apps/kugar.png -share/icons/hicolor/22x22/mimetypes/kugardata.png -share/icons/hicolor/32x32/actions/abs.png -share/icons/hicolor/32x32/actions/brace.png -share/icons/hicolor/32x32/actions/brackets.png -share/icons/hicolor/32x32/actions/frac.png -share/icons/hicolor/32x32/actions/int.png -share/icons/hicolor/32x32/actions/lsub.png -share/icons/hicolor/32x32/actions/lsup.png -share/icons/hicolor/32x32/actions/matrix.png -share/icons/hicolor/32x32/actions/onetwomatrix.png -share/icons/hicolor/32x32/actions/paren.png -share/icons/hicolor/32x32/actions/prod.png -share/icons/hicolor/32x32/actions/rsub.png -share/icons/hicolor/32x32/actions/rsup.png -share/icons/hicolor/32x32/actions/sqrt.png -share/icons/hicolor/32x32/actions/sum.png -share/icons/hicolor/32x32/apps/kchart.png -share/icons/hicolor/32x32/apps/kivio.png -share/icons/hicolor/32x32/apps/kontour.png -share/icons/hicolor/32x32/apps/kpresenter.png -share/icons/hicolor/32x32/apps/kspread.png -share/icons/hicolor/32x32/apps/kugar.png -share/icons/hicolor/32x32/apps/kword.png -share/icons/hicolor/32x32/mimetypes/kugardata.png -share/icons/hicolor/48x48/apps/kchart.png -share/icons/hicolor/48x48/apps/kivio.png -share/icons/hicolor/48x48/apps/kontour.png -share/icons/hicolor/48x48/apps/kpresenter.png -share/icons/hicolor/48x48/apps/kspread.png -share/icons/hicolor/48x48/apps/kugar.png -share/icons/hicolor/48x48/apps/kword.png -share/icons/hicolor/48x48/mimetypes/kugardata.png -share/icons/locolor/16x16/apps/kspreadcalc.png -share/icons/locolor/22x22/apps/kspreadcalc.png -share/icons/locolor/32x32/apps/kspreadcalc.png -share/mimelnk/application/x-abiword.desktop -share/mimelnk/application/x-kchart.desktop -share/mimelnk/application/x-kformula.desktop -share/mimelnk/application/x-killustrator.desktop -share/mimelnk/application/x-kivio.desktop -share/mimelnk/application/x-kontour.desktop -share/mimelnk/application/x-kpresenter.desktop -share/mimelnk/application/x-kspread.desktop -share/mimelnk/application/x-kugar.desktop -share/mimelnk/application/x-kword.desktop -share/mimelnk/application/x-quattropro.desktop -share/mimelnk/image/x-msod.desktop -share/mimelnk/image/x-svg.desktop -share/mimelnk/image/x-wmf.desktop -share/mimelnk/image/x-xfig.desktop -share/mimelnk/text/x-csv.desktop -share/mimelnk/text/x-gnumeric.desktop -share/services/ki_rtf_export.desktop -share/services/killustrator_applixgraphic_import.desktop -share/services/killustrator_msod_import.desktop -share/services/killustrator_svg_export.desktop -share/services/killustrator_svg_import.desktop -share/services/killustrator_wmf_import.desktop -share/services/killustrator_xfig_import.desktop -share/services/kivioconnectortool.desktop -share/services/kivioselecttool.desktop -share/services/kiviotexttool.desktop -share/services/kiviozoomtool.desktop -share/services/kodocinfopropspage.desktop -share/services/kprkword.desktop -share/services/kspelltool.desktop -share/services/kspelltool_kword.desktop -share/services/kspread_applixspread_import.desktop -share/services/kspread_csv_export.desktop -share/services/kspread_csv_import.desktop -share/services/kspread_gnumeric_export.desktop -share/services/kspread_gnumeric_import.desktop -share/services/kspread_html_export.desktop -share/services/kspread_qpro_import.desktop -share/services/kspreadcalc.desktop -share/services/kword_abiword_export.desktop -share/services/kword_abiword_import.desktop -share/services/kword_applixword_import.desktop -share/services/kword_ascii_export.desktop -share/services/kword_ascii_import.desktop -share/services/kword_docbook_export.desktop -share/services/kword_html_export.desktop -share/services/kword_html_import.desktop -share/services/kword_latex_export.desktop -share/services/kword_rtf_export.desktop -share/services/ole_excel97_import.desktop -share/services/ole_powerpoint97_import.desktop -share/services/ole_winword97_import.desktop -share/servicetypes/kochart.desktop -share/servicetypes/kofficepart.desktop -share/servicetypes/kofilter.desktop -share/servicetypes/koplugin.desktop -share/servicetypes/kotool.desktop -share/templates/.source/Illustration.kil -share/templates/.source/Presentation.kpt -share/templates/.source/SpreadSheet.ksp -share/templates/.source/TextDocument.kwt -share/templates/Illustration.desktop -share/templates/Presentation.desktop -share/templates/SpreadSheet.desktop -share/templates/TextDocument.desktop -@dirrm share/doc/HTML/en/kword -@dirrm share/doc/HTML/en/kugar -@dirrm share/doc/HTML/en/kspread -@dirrm share/doc/HTML/en/krayon -@dirrm share/doc/HTML/en/kpresenter -@dirrm share/doc/HTML/en/koshell -@dirrm share/doc/HTML/en/kontour -@dirrm share/doc/HTML/en/koffice -@dirrm share/apps/kword/templates/Publishing/.source -@dirrm share/apps/kword/templates/Publishing/.icon -@dirrm share/apps/kword/templates/Publishing -@dirrm share/apps/kword/templates/Normal/.source -@dirrm share/apps/kword/templates/Normal/.icon -@dirrm share/apps/kword/templates/Normal -@dirrm share/apps/kword/templates -@dirrm share/apps/kword/kpartplugins -@dirrm share/apps/kword/icons/hicolor/22x22/actions -@dirrm share/apps/kword/icons/hicolor/22x22 -@dirrm share/apps/kword/icons/hicolor/16x16/actions -@dirrm share/apps/kword/icons/hicolor/16x16 -@dirrm share/apps/kword/icons/hicolor -@dirrm share/apps/kword/icons -@dirrm share/apps/kword/expression -@dirrm share/apps/kword/dtd -@dirrm share/apps/kword -@dirrm share/apps/kugar/templates -@dirrm share/apps/kugar/dtd -@dirrm share/apps/kugar -@dirrm share/apps/kspread/tablestyles -@dirrm share/apps/kspread/kpartplugins -@dirrm share/apps/kspread/icons/hicolor/32x32/actions -@dirrm share/apps/kspread/icons/hicolor/32x32 -@dirrm share/apps/kspread/icons/hicolor/22x22/actions -@dirrm share/apps/kspread/icons/hicolor/22x22 -@dirrm share/apps/kspread/icons/hicolor/16x16/actions -@dirrm share/apps/kspread/icons/hicolor/16x16 -@dirrm share/apps/kspread/icons/hicolor -@dirrm share/apps/kspread/icons -@dirrm share/apps/kspread/extensions -@dirrm share/apps/kspread/dtd -@dirrm share/apps/kspread -@dirrm share/apps/krayon/kpartplugins -@dirrm share/apps/krayon -@dirrm share/apps/kpresenter/templates/letter/.source -@dirrm share/apps/kpresenter/templates/letter -@dirrm share/apps/kpresenter/templates/legal/.source -@dirrm share/apps/kpresenter/templates/legal -@dirrm share/apps/kpresenter/templates/Screenpresentations/.source -@dirrm share/apps/kpresenter/templates/Screenpresentations/.icon -@dirrm share/apps/kpresenter/templates/Screenpresentations -@dirrm share/apps/kpresenter/templates/Screen/.source -@dirrm share/apps/kpresenter/templates/Screen -@dirrm share/apps/kpresenter/templates/A4/.source -@dirrm share/apps/kpresenter/templates/A4 -@dirrm share/apps/kpresenter/templates -@dirrm share/apps/kpresenter/slideshow -@dirrm share/apps/kpresenter/pics -@dirrm share/apps/kpresenter/kpartplugins -@dirrm share/apps/kpresenter/icons/hicolor/22x22/actions -@dirrm share/apps/kpresenter/icons/hicolor/22x22 -@dirrm share/apps/kpresenter/icons/hicolor -@dirrm share/apps/kpresenter/icons -@dirrm share/apps/kpresenter/dtd -@dirrm share/apps/kpresenter/autoforms/Connections/.source -@dirrm share/apps/kpresenter/autoforms/Connections/.icon -@dirrm share/apps/kpresenter/autoforms/Connections -@dirrm share/apps/kpresenter/autoforms/Arrows/.source -@dirrm share/apps/kpresenter/autoforms/Arrows/.icon -@dirrm share/apps/kpresenter/autoforms/Arrows -@dirrm share/apps/kpresenter/autoforms -@dirrm share/apps/kpresenter -@dirrm share/apps/kontour/templates/Simple/.source -@dirrm share/apps/kontour/templates/Simple/.icon -@dirrm share/apps/kontour/templates/Simple -@dirrm share/apps/kontour/templates -@dirrm share/apps/kontour/kpartplugins -@dirrm share/apps/kontour/icons/hicolor/48x48/apps -@dirrm share/apps/kontour/icons/hicolor/48x48 -@dirrm share/apps/kontour/icons/hicolor/32x32/apps -@dirrm share/apps/kontour/icons/hicolor/32x32 -@dirrm share/apps/kontour/icons/hicolor/16x16/apps -@dirrm share/apps/kontour/icons/hicolor/16x16/actions -@dirrm share/apps/kontour/icons/hicolor/16x16 -@dirrm share/apps/kontour/icons/hicolor -@dirrm share/apps/kontour/icons -@dirrm share/apps/kontour -@dirrm share/apps/koffice/pics -@dirrm share/apps/koffice/icons/hicolor/48x48/apps -@dirrm share/apps/koffice/icons/hicolor/48x48 -@dirrm share/apps/koffice/icons/hicolor/32x32/apps -@dirrm share/apps/koffice/icons/hicolor/32x32/actions -@dirrm share/apps/koffice/icons/hicolor/32x32 -@dirrm share/apps/koffice/icons/hicolor/22x22/actions/part -@dirrm share/apps/koffice/icons/hicolor/22x22/actions -@dirrm share/apps/koffice/icons/hicolor/22x22 -@dirrm share/apps/koffice/icons/hicolor/16x16/apps -@dirrm share/apps/koffice/icons/hicolor/16x16/actions -@dirrm share/apps/koffice/icons/hicolor/16x16 -@dirrm share/apps/koffice/icons/hicolor -@dirrm share/apps/koffice/icons -@dirrm share/apps/koffice -@dirrm share/apps/kivio/stencils/Flowcharting/BasicFlowcharting -@dirrm share/apps/kivio/stencils/Flowcharting -@dirrm share/apps/kivio/stencils -@dirrm share/apps/kivio/pics -@dirrm share/apps/kivio/kpartplugins -@dirrm share/apps/kivio/icons/hicolor/32x32/actions -@dirrm share/apps/kivio/icons/hicolor/32x32 -@dirrm share/apps/kivio/icons/hicolor/22x22/actions -@dirrm share/apps/kivio/icons/hicolor/22x22 -@dirrm share/apps/kivio/icons/hicolor/16x16/actions -@dirrm share/apps/kivio/icons/hicolor/16x16 -@dirrm share/apps/kivio/icons/hicolor -@dirrm share/apps/kivio/icons -@dirrm share/apps/kivio/autoloadStencils -@dirrm share/apps/kivio -@dirrm share/apps/kformula/pics -@dirrm share/apps/kformula -@dirrm share/apps/kchart/pics -@dirrm share/apps/kchart/icons/locolor/16x16/actions -@dirrm share/apps/kchart/icons/locolor/16x16 -@dirrm share/apps/kchart/icons/locolor -@dirrm share/apps/kchart/icons/hicolor/22x22/actions -@dirrm share/apps/kchart/icons/hicolor/22x22 -@dirrm share/apps/kchart/icons/hicolor -@dirrm share/apps/kchart/icons -@dirrm share/apps/kchart -@dirrm share/applnk/Office diff --git a/games/kdegames2/Makefile b/games/kdegames2/Makefile deleted file mode 100644 index 0ef255e..0000000 --- a/games/kdegames2/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# New ports collection makefile for: kdegames2 -# Date created: Sun 14 May 2000 02:47:57 -# Whom: Will Andrews <will@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= kdegames -PORTVERSION= 2.2.2 -CATEGORIES= games kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= Attic/${PORTVERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 - -USE_KDELIBS_VER=2 -USE_BZIP2= yes -GNU_CONFIGURE= yes -USE_GMAKE= yes - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 500029 -_NO_KDE_OBJPRELINK=yes -.endif - -.include "${.CURDIR}/../../x11/kde2/Makefile.kde" - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - cd ${WRKSRC} && env PATH=${WRKSRC}/auto-bin:$$PATH \ - ${GMAKE} -f Makefile.cvs - -.include <bsd.port.post.mk> diff --git a/games/kdegames2/distinfo b/games/kdegames2/distinfo deleted file mode 100644 index cdb4716..0000000 --- a/games/kdegames2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/kdegames-2.2.2.tar.bz2) = 65b1e9885bdda64597e6e3cdf129cee3 diff --git a/games/kdegames2/pkg-comment b/games/kdegames2/pkg-comment deleted file mode 100644 index affc783..0000000 --- a/games/kdegames2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Games for the KDE integrated X11 desktop diff --git a/games/kdegames2/pkg-descr b/games/kdegames2/pkg-descr deleted file mode 100644 index 90ae457..0000000 --- a/games/kdegames2/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -KDE provides an integrated X11 based environment, much like CDE. diff --git a/games/kdegames2/pkg-plist b/games/kdegames2/pkg-plist deleted file mode 100644 index ec246f8..0000000 --- a/games/kdegames2/pkg-plist +++ /dev/null @@ -1,2029 +0,0 @@ -bin/kabalone -bin/kasteroids -bin/katomic -bin/kbackgammon -bin/kbattleship -bin/kblackbox -bin/kfouleggs -bin/kjezz -bin/kjumpingcube -bin/klines -bin/kmahjongg -bin/kmines -bin/konquest -bin/kpat -bin/kpoker -bin/kproc4 -bin/kreversi -bin/ksame -bin/kshisen -bin/ksirtet -bin/ksmiletris -bin/ksnake -bin/ksokoban -bin/kspaceduel -bin/ktron -bin/ktuberling -bin/kwin4 -bin/lskat -bin/lskatproc -include/kcarddialog.h -include/kchat.h -include/kchatbase.h -include/kgamemisc.h -include/khighscore.h -include/kstdgameaction.h -lib/kbackgammon.la -lib/kbackgammon.so -lib/libkdegames.la -lib/libkdegames.so -lib/libkdegames.so.1 -share/applnk/Games/Arcade/kasteroids.desktop -share/applnk/Games/Arcade/kfouleggs.desktop -share/applnk/Games/Arcade/kjezz.desktop -share/applnk/Games/Arcade/ksirtet.desktop -share/applnk/Games/Arcade/ksmiletris.desktop -share/applnk/Games/Arcade/ksnake.desktop -share/applnk/Games/Arcade/kspaceduel.desktop -share/applnk/Games/Arcade/ktron.desktop -share/applnk/Games/Board/kabalone.desktop -share/applnk/Games/Board/kbackgammon.desktop -share/applnk/Games/Board/kbattleship.desktop -share/applnk/Games/Board/kblackbox.desktop -share/applnk/Games/Board/kmahjongg.desktop -share/applnk/Games/Board/kreversi.desktop -share/applnk/Games/Board/kshisen.desktop -share/applnk/Games/Board/kwin4.desktop -share/applnk/Games/Card/kpat.desktop -share/applnk/Games/Card/kpoker.desktop -share/applnk/Games/Card/lskat.desktop -share/applnk/Games/TacticStrategy/katomic.desktop -share/applnk/Games/TacticStrategy/kjumpingcube.desktop -share/applnk/Games/TacticStrategy/klines.desktop -share/applnk/Games/TacticStrategy/kmines.desktop -share/applnk/Games/TacticStrategy/konquest.desktop -share/applnk/Games/TacticStrategy/ksame.desktop -share/applnk/Games/TacticStrategy/ksokoban.desktop -share/applnk/Toys/ktuberling.desktop -share/apps/carddecks/cards-aisleriot/1.png -share/apps/carddecks/cards-aisleriot/10.png -share/apps/carddecks/cards-aisleriot/11.png -share/apps/carddecks/cards-aisleriot/12.png -share/apps/carddecks/cards-aisleriot/13.png -share/apps/carddecks/cards-aisleriot/14.png -share/apps/carddecks/cards-aisleriot/15.png -share/apps/carddecks/cards-aisleriot/16.png -share/apps/carddecks/cards-aisleriot/17.png -share/apps/carddecks/cards-aisleriot/18.png -share/apps/carddecks/cards-aisleriot/19.png -share/apps/carddecks/cards-aisleriot/2.png -share/apps/carddecks/cards-aisleriot/20.png -share/apps/carddecks/cards-aisleriot/21.png -share/apps/carddecks/cards-aisleriot/22.png -share/apps/carddecks/cards-aisleriot/23.png -share/apps/carddecks/cards-aisleriot/24.png -share/apps/carddecks/cards-aisleriot/25.png -share/apps/carddecks/cards-aisleriot/26.png -share/apps/carddecks/cards-aisleriot/27.png -share/apps/carddecks/cards-aisleriot/28.png -share/apps/carddecks/cards-aisleriot/29.png -share/apps/carddecks/cards-aisleriot/3.png -share/apps/carddecks/cards-aisleriot/30.png -share/apps/carddecks/cards-aisleriot/31.png -share/apps/carddecks/cards-aisleriot/32.png -share/apps/carddecks/cards-aisleriot/33.png -share/apps/carddecks/cards-aisleriot/34.png -share/apps/carddecks/cards-aisleriot/35.png -share/apps/carddecks/cards-aisleriot/36.png -share/apps/carddecks/cards-aisleriot/37.png -share/apps/carddecks/cards-aisleriot/38.png -share/apps/carddecks/cards-aisleriot/39.png -share/apps/carddecks/cards-aisleriot/4.png -share/apps/carddecks/cards-aisleriot/40.png -share/apps/carddecks/cards-aisleriot/41.png -share/apps/carddecks/cards-aisleriot/42.png -share/apps/carddecks/cards-aisleriot/43.png -share/apps/carddecks/cards-aisleriot/44.png -share/apps/carddecks/cards-aisleriot/45.png -share/apps/carddecks/cards-aisleriot/46.png -share/apps/carddecks/cards-aisleriot/47.png -share/apps/carddecks/cards-aisleriot/48.png -share/apps/carddecks/cards-aisleriot/49.png -share/apps/carddecks/cards-aisleriot/5.png -share/apps/carddecks/cards-aisleriot/50.png -share/apps/carddecks/cards-aisleriot/51.png -share/apps/carddecks/cards-aisleriot/52.png -share/apps/carddecks/cards-aisleriot/6.png -share/apps/carddecks/cards-aisleriot/7.png -share/apps/carddecks/cards-aisleriot/8.png -share/apps/carddecks/cards-aisleriot/9.png -share/apps/carddecks/cards-aisleriot/COPYRIGHT -share/apps/carddecks/cards-aisleriot/index.desktop -share/apps/carddecks/cards-default/1.png -share/apps/carddecks/cards-default/10.png -share/apps/carddecks/cards-default/11.png -share/apps/carddecks/cards-default/12.png -share/apps/carddecks/cards-default/13.png -share/apps/carddecks/cards-default/14.png -share/apps/carddecks/cards-default/15.png -share/apps/carddecks/cards-default/16.png -share/apps/carddecks/cards-default/17.png -share/apps/carddecks/cards-default/18.png -share/apps/carddecks/cards-default/19.png -share/apps/carddecks/cards-default/2.png -share/apps/carddecks/cards-default/20.png -share/apps/carddecks/cards-default/21.png -share/apps/carddecks/cards-default/22.png -share/apps/carddecks/cards-default/23.png -share/apps/carddecks/cards-default/24.png -share/apps/carddecks/cards-default/25.png -share/apps/carddecks/cards-default/26.png -share/apps/carddecks/cards-default/27.png -share/apps/carddecks/cards-default/28.png -share/apps/carddecks/cards-default/29.png -share/apps/carddecks/cards-default/3.png -share/apps/carddecks/cards-default/30.png -share/apps/carddecks/cards-default/31.png -share/apps/carddecks/cards-default/32.png -share/apps/carddecks/cards-default/33.png -share/apps/carddecks/cards-default/34.png -share/apps/carddecks/cards-default/35.png -share/apps/carddecks/cards-default/36.png -share/apps/carddecks/cards-default/37.png -share/apps/carddecks/cards-default/38.png -share/apps/carddecks/cards-default/39.png -share/apps/carddecks/cards-default/4.png -share/apps/carddecks/cards-default/40.png -share/apps/carddecks/cards-default/41.png -share/apps/carddecks/cards-default/42.png -share/apps/carddecks/cards-default/43.png -share/apps/carddecks/cards-default/44.png -share/apps/carddecks/cards-default/45.png -share/apps/carddecks/cards-default/46.png -share/apps/carddecks/cards-default/47.png -share/apps/carddecks/cards-default/48.png -share/apps/carddecks/cards-default/49.png -share/apps/carddecks/cards-default/5.png -share/apps/carddecks/cards-default/50.png -share/apps/carddecks/cards-default/51.png -share/apps/carddecks/cards-default/52.png -share/apps/carddecks/cards-default/6.png -share/apps/carddecks/cards-default/7.png -share/apps/carddecks/cards-default/8.png -share/apps/carddecks/cards-default/9.png -share/apps/carddecks/cards-default/index.desktop -share/apps/carddecks/cards-dondorf-whist-b/1.png -share/apps/carddecks/cards-dondorf-whist-b/10.png -share/apps/carddecks/cards-dondorf-whist-b/11.png -share/apps/carddecks/cards-dondorf-whist-b/12.png -share/apps/carddecks/cards-dondorf-whist-b/13.png -share/apps/carddecks/cards-dondorf-whist-b/14.png -share/apps/carddecks/cards-dondorf-whist-b/15.png -share/apps/carddecks/cards-dondorf-whist-b/16.png -share/apps/carddecks/cards-dondorf-whist-b/17.png -share/apps/carddecks/cards-dondorf-whist-b/18.png -share/apps/carddecks/cards-dondorf-whist-b/19.png -share/apps/carddecks/cards-dondorf-whist-b/2.png -share/apps/carddecks/cards-dondorf-whist-b/20.png -share/apps/carddecks/cards-dondorf-whist-b/21.png -share/apps/carddecks/cards-dondorf-whist-b/22.png -share/apps/carddecks/cards-dondorf-whist-b/23.png -share/apps/carddecks/cards-dondorf-whist-b/24.png -share/apps/carddecks/cards-dondorf-whist-b/25.png -share/apps/carddecks/cards-dondorf-whist-b/26.png -share/apps/carddecks/cards-dondorf-whist-b/27.png -share/apps/carddecks/cards-dondorf-whist-b/28.png -share/apps/carddecks/cards-dondorf-whist-b/29.png -share/apps/carddecks/cards-dondorf-whist-b/3.png -share/apps/carddecks/cards-dondorf-whist-b/30.png -share/apps/carddecks/cards-dondorf-whist-b/31.png -share/apps/carddecks/cards-dondorf-whist-b/32.png -share/apps/carddecks/cards-dondorf-whist-b/33.png -share/apps/carddecks/cards-dondorf-whist-b/34.png -share/apps/carddecks/cards-dondorf-whist-b/35.png -share/apps/carddecks/cards-dondorf-whist-b/36.png -share/apps/carddecks/cards-dondorf-whist-b/37.png -share/apps/carddecks/cards-dondorf-whist-b/38.png -share/apps/carddecks/cards-dondorf-whist-b/39.png -share/apps/carddecks/cards-dondorf-whist-b/4.png -share/apps/carddecks/cards-dondorf-whist-b/40.png -share/apps/carddecks/cards-dondorf-whist-b/41.png -share/apps/carddecks/cards-dondorf-whist-b/42.png -share/apps/carddecks/cards-dondorf-whist-b/43.png -share/apps/carddecks/cards-dondorf-whist-b/44.png -share/apps/carddecks/cards-dondorf-whist-b/45.png -share/apps/carddecks/cards-dondorf-whist-b/46.png -share/apps/carddecks/cards-dondorf-whist-b/47.png -share/apps/carddecks/cards-dondorf-whist-b/48.png -share/apps/carddecks/cards-dondorf-whist-b/49.png -share/apps/carddecks/cards-dondorf-whist-b/5.png -share/apps/carddecks/cards-dondorf-whist-b/50.png -share/apps/carddecks/cards-dondorf-whist-b/51.png -share/apps/carddecks/cards-dondorf-whist-b/52.png -share/apps/carddecks/cards-dondorf-whist-b/6.png -share/apps/carddecks/cards-dondorf-whist-b/7.png -share/apps/carddecks/cards-dondorf-whist-b/8.png -share/apps/carddecks/cards-dondorf-whist-b/9.png -share/apps/carddecks/cards-dondorf-whist-b/COPYRIGHT -share/apps/carddecks/cards-dondorf-whist-b/index.desktop -share/apps/carddecks/cards-gdkcard-bonded/1.png -share/apps/carddecks/cards-gdkcard-bonded/10.png -share/apps/carddecks/cards-gdkcard-bonded/11.png -share/apps/carddecks/cards-gdkcard-bonded/12.png -share/apps/carddecks/cards-gdkcard-bonded/13.png -share/apps/carddecks/cards-gdkcard-bonded/14.png -share/apps/carddecks/cards-gdkcard-bonded/15.png -share/apps/carddecks/cards-gdkcard-bonded/16.png -share/apps/carddecks/cards-gdkcard-bonded/17.png -share/apps/carddecks/cards-gdkcard-bonded/18.png -share/apps/carddecks/cards-gdkcard-bonded/19.png -share/apps/carddecks/cards-gdkcard-bonded/2.png -share/apps/carddecks/cards-gdkcard-bonded/20.png -share/apps/carddecks/cards-gdkcard-bonded/21.png -share/apps/carddecks/cards-gdkcard-bonded/22.png -share/apps/carddecks/cards-gdkcard-bonded/23.png -share/apps/carddecks/cards-gdkcard-bonded/24.png -share/apps/carddecks/cards-gdkcard-bonded/25.png -share/apps/carddecks/cards-gdkcard-bonded/26.png -share/apps/carddecks/cards-gdkcard-bonded/27.png -share/apps/carddecks/cards-gdkcard-bonded/28.png -share/apps/carddecks/cards-gdkcard-bonded/29.png -share/apps/carddecks/cards-gdkcard-bonded/3.png -share/apps/carddecks/cards-gdkcard-bonded/30.png -share/apps/carddecks/cards-gdkcard-bonded/31.png -share/apps/carddecks/cards-gdkcard-bonded/32.png -share/apps/carddecks/cards-gdkcard-bonded/33.png -share/apps/carddecks/cards-gdkcard-bonded/34.png -share/apps/carddecks/cards-gdkcard-bonded/35.png -share/apps/carddecks/cards-gdkcard-bonded/36.png -share/apps/carddecks/cards-gdkcard-bonded/37.png -share/apps/carddecks/cards-gdkcard-bonded/38.png -share/apps/carddecks/cards-gdkcard-bonded/39.png -share/apps/carddecks/cards-gdkcard-bonded/4.png -share/apps/carddecks/cards-gdkcard-bonded/40.png -share/apps/carddecks/cards-gdkcard-bonded/41.png -share/apps/carddecks/cards-gdkcard-bonded/42.png -share/apps/carddecks/cards-gdkcard-bonded/43.png -share/apps/carddecks/cards-gdkcard-bonded/44.png -share/apps/carddecks/cards-gdkcard-bonded/45.png -share/apps/carddecks/cards-gdkcard-bonded/46.png -share/apps/carddecks/cards-gdkcard-bonded/47.png -share/apps/carddecks/cards-gdkcard-bonded/48.png -share/apps/carddecks/cards-gdkcard-bonded/49.png -share/apps/carddecks/cards-gdkcard-bonded/5.png -share/apps/carddecks/cards-gdkcard-bonded/50.png -share/apps/carddecks/cards-gdkcard-bonded/51.png -share/apps/carddecks/cards-gdkcard-bonded/52.png -share/apps/carddecks/cards-gdkcard-bonded/6.png -share/apps/carddecks/cards-gdkcard-bonded/7.png -share/apps/carddecks/cards-gdkcard-bonded/8.png -share/apps/carddecks/cards-gdkcard-bonded/9.png -share/apps/carddecks/cards-gdkcard-bonded/COPYRIGHT -share/apps/carddecks/cards-gdkcard-bonded/index.desktop -share/apps/carddecks/cards-hard-a-port/1.png -share/apps/carddecks/cards-hard-a-port/10.png -share/apps/carddecks/cards-hard-a-port/11.png -share/apps/carddecks/cards-hard-a-port/12.png -share/apps/carddecks/cards-hard-a-port/13.png -share/apps/carddecks/cards-hard-a-port/14.png -share/apps/carddecks/cards-hard-a-port/15.png -share/apps/carddecks/cards-hard-a-port/16.png -share/apps/carddecks/cards-hard-a-port/17.png -share/apps/carddecks/cards-hard-a-port/18.png -share/apps/carddecks/cards-hard-a-port/19.png -share/apps/carddecks/cards-hard-a-port/2.png -share/apps/carddecks/cards-hard-a-port/20.png -share/apps/carddecks/cards-hard-a-port/21.png -share/apps/carddecks/cards-hard-a-port/22.png -share/apps/carddecks/cards-hard-a-port/23.png -share/apps/carddecks/cards-hard-a-port/24.png -share/apps/carddecks/cards-hard-a-port/25.png -share/apps/carddecks/cards-hard-a-port/26.png -share/apps/carddecks/cards-hard-a-port/27.png -share/apps/carddecks/cards-hard-a-port/28.png -share/apps/carddecks/cards-hard-a-port/29.png -share/apps/carddecks/cards-hard-a-port/3.png -share/apps/carddecks/cards-hard-a-port/30.png -share/apps/carddecks/cards-hard-a-port/31.png -share/apps/carddecks/cards-hard-a-port/32.png -share/apps/carddecks/cards-hard-a-port/33.png -share/apps/carddecks/cards-hard-a-port/34.png -share/apps/carddecks/cards-hard-a-port/35.png -share/apps/carddecks/cards-hard-a-port/36.png -share/apps/carddecks/cards-hard-a-port/37.png -share/apps/carddecks/cards-hard-a-port/38.png -share/apps/carddecks/cards-hard-a-port/39.png -share/apps/carddecks/cards-hard-a-port/4.png -share/apps/carddecks/cards-hard-a-port/40.png -share/apps/carddecks/cards-hard-a-port/41.png -share/apps/carddecks/cards-hard-a-port/42.png -share/apps/carddecks/cards-hard-a-port/43.png -share/apps/carddecks/cards-hard-a-port/44.png -share/apps/carddecks/cards-hard-a-port/45.png -share/apps/carddecks/cards-hard-a-port/46.png -share/apps/carddecks/cards-hard-a-port/47.png -share/apps/carddecks/cards-hard-a-port/48.png -share/apps/carddecks/cards-hard-a-port/49.png -share/apps/carddecks/cards-hard-a-port/5.png -share/apps/carddecks/cards-hard-a-port/50.png -share/apps/carddecks/cards-hard-a-port/51.png -share/apps/carddecks/cards-hard-a-port/52.png -share/apps/carddecks/cards-hard-a-port/6.png -share/apps/carddecks/cards-hard-a-port/7.png -share/apps/carddecks/cards-hard-a-port/8.png -share/apps/carddecks/cards-hard-a-port/9.png -share/apps/carddecks/cards-hard-a-port/COPYRIGHT -share/apps/carddecks/cards-hard-a-port/index.desktop -share/apps/carddecks/cards-konqi-modern/1.png -share/apps/carddecks/cards-konqi-modern/10.png -share/apps/carddecks/cards-konqi-modern/11.png -share/apps/carddecks/cards-konqi-modern/12.png -share/apps/carddecks/cards-konqi-modern/13.png -share/apps/carddecks/cards-konqi-modern/14.png -share/apps/carddecks/cards-konqi-modern/15.png -share/apps/carddecks/cards-konqi-modern/16.png -share/apps/carddecks/cards-konqi-modern/17.png -share/apps/carddecks/cards-konqi-modern/18.png -share/apps/carddecks/cards-konqi-modern/19.png -share/apps/carddecks/cards-konqi-modern/2.png -share/apps/carddecks/cards-konqi-modern/20.png -share/apps/carddecks/cards-konqi-modern/21.png -share/apps/carddecks/cards-konqi-modern/22.png -share/apps/carddecks/cards-konqi-modern/23.png -share/apps/carddecks/cards-konqi-modern/24.png -share/apps/carddecks/cards-konqi-modern/25.png -share/apps/carddecks/cards-konqi-modern/26.png -share/apps/carddecks/cards-konqi-modern/27.png -share/apps/carddecks/cards-konqi-modern/28.png -share/apps/carddecks/cards-konqi-modern/29.png -share/apps/carddecks/cards-konqi-modern/3.png -share/apps/carddecks/cards-konqi-modern/30.png -share/apps/carddecks/cards-konqi-modern/31.png -share/apps/carddecks/cards-konqi-modern/32.png -share/apps/carddecks/cards-konqi-modern/33.png -share/apps/carddecks/cards-konqi-modern/34.png -share/apps/carddecks/cards-konqi-modern/35.png -share/apps/carddecks/cards-konqi-modern/36.png -share/apps/carddecks/cards-konqi-modern/37.png -share/apps/carddecks/cards-konqi-modern/38.png -share/apps/carddecks/cards-konqi-modern/39.png -share/apps/carddecks/cards-konqi-modern/4.png -share/apps/carddecks/cards-konqi-modern/40.png -share/apps/carddecks/cards-konqi-modern/41.png -share/apps/carddecks/cards-konqi-modern/42.png -share/apps/carddecks/cards-konqi-modern/43.png -share/apps/carddecks/cards-konqi-modern/44.png -share/apps/carddecks/cards-konqi-modern/45.png -share/apps/carddecks/cards-konqi-modern/46.png -share/apps/carddecks/cards-konqi-modern/47.png -share/apps/carddecks/cards-konqi-modern/48.png -share/apps/carddecks/cards-konqi-modern/49.png -share/apps/carddecks/cards-konqi-modern/5.png -share/apps/carddecks/cards-konqi-modern/50.png -share/apps/carddecks/cards-konqi-modern/51.png -share/apps/carddecks/cards-konqi-modern/52.png -share/apps/carddecks/cards-konqi-modern/6.png -share/apps/carddecks/cards-konqi-modern/7.png -share/apps/carddecks/cards-konqi-modern/8.png -share/apps/carddecks/cards-konqi-modern/9.png -share/apps/carddecks/cards-konqi-modern/index.desktop -share/apps/carddecks/cards-penguins/1.png -share/apps/carddecks/cards-penguins/10.png -share/apps/carddecks/cards-penguins/11.png -share/apps/carddecks/cards-penguins/12.png -share/apps/carddecks/cards-penguins/13.png -share/apps/carddecks/cards-penguins/14.png -share/apps/carddecks/cards-penguins/15.png -share/apps/carddecks/cards-penguins/16.png -share/apps/carddecks/cards-penguins/17.png -share/apps/carddecks/cards-penguins/18.png -share/apps/carddecks/cards-penguins/19.png -share/apps/carddecks/cards-penguins/2.png -share/apps/carddecks/cards-penguins/20.png -share/apps/carddecks/cards-penguins/21.png -share/apps/carddecks/cards-penguins/22.png -share/apps/carddecks/cards-penguins/23.png -share/apps/carddecks/cards-penguins/24.png -share/apps/carddecks/cards-penguins/25.png -share/apps/carddecks/cards-penguins/26.png -share/apps/carddecks/cards-penguins/27.png -share/apps/carddecks/cards-penguins/28.png -share/apps/carddecks/cards-penguins/29.png -share/apps/carddecks/cards-penguins/3.png -share/apps/carddecks/cards-penguins/30.png -share/apps/carddecks/cards-penguins/31.png -share/apps/carddecks/cards-penguins/32.png -share/apps/carddecks/cards-penguins/33.png -share/apps/carddecks/cards-penguins/34.png -share/apps/carddecks/cards-penguins/35.png -share/apps/carddecks/cards-penguins/36.png -share/apps/carddecks/cards-penguins/37.png -share/apps/carddecks/cards-penguins/38.png -share/apps/carddecks/cards-penguins/39.png -share/apps/carddecks/cards-penguins/4.png -share/apps/carddecks/cards-penguins/40.png -share/apps/carddecks/cards-penguins/41.png -share/apps/carddecks/cards-penguins/42.png -share/apps/carddecks/cards-penguins/43.png -share/apps/carddecks/cards-penguins/44.png -share/apps/carddecks/cards-penguins/45.png -share/apps/carddecks/cards-penguins/46.png -share/apps/carddecks/cards-penguins/47.png -share/apps/carddecks/cards-penguins/48.png -share/apps/carddecks/cards-penguins/49.png -share/apps/carddecks/cards-penguins/5.png -share/apps/carddecks/cards-penguins/50.png -share/apps/carddecks/cards-penguins/51.png -share/apps/carddecks/cards-penguins/52.png -share/apps/carddecks/cards-penguins/6.png -share/apps/carddecks/cards-penguins/7.png -share/apps/carddecks/cards-penguins/8.png -share/apps/carddecks/cards-penguins/9.png -share/apps/carddecks/cards-penguins/COPYRIGHT -share/apps/carddecks/cards-penguins/index.desktop -share/apps/carddecks/cards-spaced/1.png -share/apps/carddecks/cards-spaced/10.png -share/apps/carddecks/cards-spaced/11.png -share/apps/carddecks/cards-spaced/12.png -share/apps/carddecks/cards-spaced/13.png -share/apps/carddecks/cards-spaced/14.png -share/apps/carddecks/cards-spaced/15.png -share/apps/carddecks/cards-spaced/16.png -share/apps/carddecks/cards-spaced/17.png -share/apps/carddecks/cards-spaced/18.png -share/apps/carddecks/cards-spaced/19.png -share/apps/carddecks/cards-spaced/2.png -share/apps/carddecks/cards-spaced/20.png -share/apps/carddecks/cards-spaced/21.png -share/apps/carddecks/cards-spaced/22.png -share/apps/carddecks/cards-spaced/23.png -share/apps/carddecks/cards-spaced/24.png -share/apps/carddecks/cards-spaced/25.png -share/apps/carddecks/cards-spaced/26.png -share/apps/carddecks/cards-spaced/27.png -share/apps/carddecks/cards-spaced/28.png -share/apps/carddecks/cards-spaced/29.png -share/apps/carddecks/cards-spaced/3.png -share/apps/carddecks/cards-spaced/30.png -share/apps/carddecks/cards-spaced/31.png -share/apps/carddecks/cards-spaced/32.png -share/apps/carddecks/cards-spaced/33.png -share/apps/carddecks/cards-spaced/34.png -share/apps/carddecks/cards-spaced/35.png -share/apps/carddecks/cards-spaced/36.png -share/apps/carddecks/cards-spaced/37.png -share/apps/carddecks/cards-spaced/38.png -share/apps/carddecks/cards-spaced/39.png -share/apps/carddecks/cards-spaced/4.png -share/apps/carddecks/cards-spaced/40.png -share/apps/carddecks/cards-spaced/41.png -share/apps/carddecks/cards-spaced/42.png -share/apps/carddecks/cards-spaced/43.png -share/apps/carddecks/cards-spaced/44.png -share/apps/carddecks/cards-spaced/45.png -share/apps/carddecks/cards-spaced/46.png -share/apps/carddecks/cards-spaced/47.png -share/apps/carddecks/cards-spaced/48.png -share/apps/carddecks/cards-spaced/49.png -share/apps/carddecks/cards-spaced/5.png -share/apps/carddecks/cards-spaced/50.png -share/apps/carddecks/cards-spaced/51.png -share/apps/carddecks/cards-spaced/52.png -share/apps/carddecks/cards-spaced/6.png -share/apps/carddecks/cards-spaced/7.png -share/apps/carddecks/cards-spaced/8.png -share/apps/carddecks/cards-spaced/9.png -share/apps/carddecks/cards-spaced/COPYRIGHT -share/apps/carddecks/cards-spaced/index.desktop -share/apps/carddecks/cards-warwick/0.png -share/apps/carddecks/cards-warwick/1.png -share/apps/carddecks/cards-warwick/10.png -share/apps/carddecks/cards-warwick/105.png -share/apps/carddecks/cards-warwick/106.png -share/apps/carddecks/cards-warwick/107.png -share/apps/carddecks/cards-warwick/108.png -share/apps/carddecks/cards-warwick/109.png -share/apps/carddecks/cards-warwick/11.png -share/apps/carddecks/cards-warwick/110.png -share/apps/carddecks/cards-warwick/111.png -share/apps/carddecks/cards-warwick/112.png -share/apps/carddecks/cards-warwick/113.png -share/apps/carddecks/cards-warwick/114.png -share/apps/carddecks/cards-warwick/115.png -share/apps/carddecks/cards-warwick/116.png -share/apps/carddecks/cards-warwick/12.png -share/apps/carddecks/cards-warwick/13.png -share/apps/carddecks/cards-warwick/14.png -share/apps/carddecks/cards-warwick/15.png -share/apps/carddecks/cards-warwick/16.png -share/apps/carddecks/cards-warwick/17.png -share/apps/carddecks/cards-warwick/18.png -share/apps/carddecks/cards-warwick/19.png -share/apps/carddecks/cards-warwick/2.png -share/apps/carddecks/cards-warwick/20.png -share/apps/carddecks/cards-warwick/21.png -share/apps/carddecks/cards-warwick/22.png -share/apps/carddecks/cards-warwick/23.png -share/apps/carddecks/cards-warwick/24.png -share/apps/carddecks/cards-warwick/25.png -share/apps/carddecks/cards-warwick/26.png -share/apps/carddecks/cards-warwick/27.png -share/apps/carddecks/cards-warwick/28.png -share/apps/carddecks/cards-warwick/29.png -share/apps/carddecks/cards-warwick/3.png -share/apps/carddecks/cards-warwick/30.png -share/apps/carddecks/cards-warwick/31.png -share/apps/carddecks/cards-warwick/32.png -share/apps/carddecks/cards-warwick/33.png -share/apps/carddecks/cards-warwick/34.png -share/apps/carddecks/cards-warwick/35.png -share/apps/carddecks/cards-warwick/36.png -share/apps/carddecks/cards-warwick/37.png -share/apps/carddecks/cards-warwick/38.png -share/apps/carddecks/cards-warwick/39.png -share/apps/carddecks/cards-warwick/4.png -share/apps/carddecks/cards-warwick/40.png -share/apps/carddecks/cards-warwick/41.png -share/apps/carddecks/cards-warwick/42.png -share/apps/carddecks/cards-warwick/43.png -share/apps/carddecks/cards-warwick/44.png -share/apps/carddecks/cards-warwick/45.png -share/apps/carddecks/cards-warwick/46.png -share/apps/carddecks/cards-warwick/47.png -share/apps/carddecks/cards-warwick/48.png -share/apps/carddecks/cards-warwick/49.png -share/apps/carddecks/cards-warwick/5.png -share/apps/carddecks/cards-warwick/50.png -share/apps/carddecks/cards-warwick/51.png -share/apps/carddecks/cards-warwick/52.png -share/apps/carddecks/cards-warwick/6.png -share/apps/carddecks/cards-warwick/7.png -share/apps/carddecks/cards-warwick/8.png -share/apps/carddecks/cards-warwick/9.png -share/apps/carddecks/cards-warwick/index.desktop -share/apps/carddecks/cards-xskat-french/1.png -share/apps/carddecks/cards-xskat-french/10.png -share/apps/carddecks/cards-xskat-french/11.png -share/apps/carddecks/cards-xskat-french/12.png -share/apps/carddecks/cards-xskat-french/13.png -share/apps/carddecks/cards-xskat-french/14.png -share/apps/carddecks/cards-xskat-french/15.png -share/apps/carddecks/cards-xskat-french/16.png -share/apps/carddecks/cards-xskat-french/17.png -share/apps/carddecks/cards-xskat-french/18.png -share/apps/carddecks/cards-xskat-french/19.png -share/apps/carddecks/cards-xskat-french/2.png -share/apps/carddecks/cards-xskat-french/20.png -share/apps/carddecks/cards-xskat-french/21.png -share/apps/carddecks/cards-xskat-french/22.png -share/apps/carddecks/cards-xskat-french/23.png -share/apps/carddecks/cards-xskat-french/24.png -share/apps/carddecks/cards-xskat-french/25.png -share/apps/carddecks/cards-xskat-french/26.png -share/apps/carddecks/cards-xskat-french/27.png -share/apps/carddecks/cards-xskat-french/28.png -share/apps/carddecks/cards-xskat-french/29.png -share/apps/carddecks/cards-xskat-french/3.png -share/apps/carddecks/cards-xskat-french/30.png -share/apps/carddecks/cards-xskat-french/31.png -share/apps/carddecks/cards-xskat-french/32.png -share/apps/carddecks/cards-xskat-french/33.png -share/apps/carddecks/cards-xskat-french/34.png -share/apps/carddecks/cards-xskat-french/35.png -share/apps/carddecks/cards-xskat-french/36.png -share/apps/carddecks/cards-xskat-french/37.png -share/apps/carddecks/cards-xskat-french/38.png -share/apps/carddecks/cards-xskat-french/39.png -share/apps/carddecks/cards-xskat-french/4.png -share/apps/carddecks/cards-xskat-french/40.png -share/apps/carddecks/cards-xskat-french/41.png -share/apps/carddecks/cards-xskat-french/42.png -share/apps/carddecks/cards-xskat-french/43.png -share/apps/carddecks/cards-xskat-french/44.png -share/apps/carddecks/cards-xskat-french/45.png -share/apps/carddecks/cards-xskat-french/46.png -share/apps/carddecks/cards-xskat-french/47.png -share/apps/carddecks/cards-xskat-french/48.png -share/apps/carddecks/cards-xskat-french/49.png -share/apps/carddecks/cards-xskat-french/5.png -share/apps/carddecks/cards-xskat-french/50.png -share/apps/carddecks/cards-xskat-french/51.png -share/apps/carddecks/cards-xskat-french/52.png -share/apps/carddecks/cards-xskat-french/6.png -share/apps/carddecks/cards-xskat-french/7.png -share/apps/carddecks/cards-xskat-french/8.png -share/apps/carddecks/cards-xskat-french/9.png -share/apps/carddecks/cards-xskat-french/COPYRIGHT -share/apps/carddecks/cards-xskat-french/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/deck11.desktop -share/apps/carddecks/decks/deck11.png -share/apps/carddecks/decks/deck12.desktop -share/apps/carddecks/decks/deck12.png -share/apps/carddecks/decks/deck13.desktop -share/apps/carddecks/decks/deck13.png -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/deck18.desktop -share/apps/carddecks/decks/deck18.png -share/apps/carddecks/decks/deck19.desktop -share/apps/carddecks/decks/deck19.png -share/apps/carddecks/decks/deck2.desktop -share/apps/carddecks/decks/deck2.png -share/apps/carddecks/decks/deck20.desktop -share/apps/carddecks/decks/deck20.png -share/apps/carddecks/decks/deck21.desktop -share/apps/carddecks/decks/deck21.png -share/apps/carddecks/decks/deck22.desktop -share/apps/carddecks/decks/deck22.png -share/apps/carddecks/decks/deck23.desktop -share/apps/carddecks/decks/deck23.png -share/apps/carddecks/decks/deck24.desktop -share/apps/carddecks/decks/deck24.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/deck9.desktop -share/apps/carddecks/decks/deck9.png -share/apps/kabalone/kabaloneui.rc -share/apps/kabalone/toolbar/edit.xpm -share/apps/kabalone/toolbar/hint.xpm -share/apps/kabalone/toolbar/net.xpm -share/apps/kabalone/toolbar/new.xpm -share/apps/kabalone/toolbar/noball.xpm -share/apps/kabalone/toolbar/ok.xpm -share/apps/kabalone/toolbar/redball.xpm -share/apps/kabalone/toolbar/spy0.xpm -share/apps/kabalone/toolbar/spy1.xpm -share/apps/kabalone/toolbar/spy2.xpm -share/apps/kabalone/toolbar/spy3.xpm -share/apps/kabalone/toolbar/stop.xpm -share/apps/kabalone/toolbar/undo.xpm -share/apps/kabalone/toolbar/warning.xpm -share/apps/kabalone/toolbar/yellowball.xpm -share/apps/kasteroids/kasteroidsui.rc -share/apps/kasteroids/sounds/Explosion.wav -share/apps/kasteroids/sprites/bg.png -share/apps/kasteroids/sprites/bits/bits0000.png -share/apps/kasteroids/sprites/bits/bits0001.png -share/apps/kasteroids/sprites/bits/bits0002.png -share/apps/kasteroids/sprites/bits/bits0003.png -share/apps/kasteroids/sprites/bits/bits0004.png -share/apps/kasteroids/sprites/bits/bits0005.png -share/apps/kasteroids/sprites/bits/bits0006.png -share/apps/kasteroids/sprites/bits/bits0007.png -share/apps/kasteroids/sprites/bits/bits0008.png -share/apps/kasteroids/sprites/bits/bits0009.png -share/apps/kasteroids/sprites/bits/bits0010.png -share/apps/kasteroids/sprites/bits/bits0011.png -share/apps/kasteroids/sprites/bits/bits0012.png -share/apps/kasteroids/sprites/bits/bits0013.png -share/apps/kasteroids/sprites/bits/bits0014.png -share/apps/kasteroids/sprites/bits/bits0015.png -share/apps/kasteroids/sprites/exhaust/exhaust.png -share/apps/kasteroids/sprites/missile/missile.png -share/apps/kasteroids/sprites/powerups/brake.png -share/apps/kasteroids/sprites/powerups/energy.png -share/apps/kasteroids/sprites/powerups/shield.png -share/apps/kasteroids/sprites/powerups/shoot.png -share/apps/kasteroids/sprites/powerups/teleport.png -share/apps/kasteroids/sprites/rock1/rock10000.png -share/apps/kasteroids/sprites/rock1/rock10001.png -share/apps/kasteroids/sprites/rock1/rock10002.png -share/apps/kasteroids/sprites/rock1/rock10003.png -share/apps/kasteroids/sprites/rock1/rock10004.png -share/apps/kasteroids/sprites/rock1/rock10005.png -share/apps/kasteroids/sprites/rock1/rock10006.png -share/apps/kasteroids/sprites/rock1/rock10007.png -share/apps/kasteroids/sprites/rock1/rock10008.png -share/apps/kasteroids/sprites/rock1/rock10009.png -share/apps/kasteroids/sprites/rock1/rock10010.png -share/apps/kasteroids/sprites/rock1/rock10011.png -share/apps/kasteroids/sprites/rock1/rock10012.png -share/apps/kasteroids/sprites/rock1/rock10013.png -share/apps/kasteroids/sprites/rock1/rock10014.png -share/apps/kasteroids/sprites/rock1/rock10015.png -share/apps/kasteroids/sprites/rock1/rock10016.png -share/apps/kasteroids/sprites/rock1/rock10017.png -share/apps/kasteroids/sprites/rock1/rock10018.png -share/apps/kasteroids/sprites/rock1/rock10019.png -share/apps/kasteroids/sprites/rock1/rock10020.png -share/apps/kasteroids/sprites/rock1/rock10021.png -share/apps/kasteroids/sprites/rock1/rock10022.png -share/apps/kasteroids/sprites/rock1/rock10023.png -share/apps/kasteroids/sprites/rock1/rock10024.png -share/apps/kasteroids/sprites/rock1/rock10025.png -share/apps/kasteroids/sprites/rock1/rock10026.png -share/apps/kasteroids/sprites/rock1/rock10027.png -share/apps/kasteroids/sprites/rock1/rock10028.png -share/apps/kasteroids/sprites/rock1/rock10029.png -share/apps/kasteroids/sprites/rock1/rock10030.png -share/apps/kasteroids/sprites/rock1/rock10031.png -share/apps/kasteroids/sprites/rock2/rock20000.png -share/apps/kasteroids/sprites/rock2/rock20001.png -share/apps/kasteroids/sprites/rock2/rock20002.png -share/apps/kasteroids/sprites/rock2/rock20003.png -share/apps/kasteroids/sprites/rock2/rock20004.png -share/apps/kasteroids/sprites/rock2/rock20005.png -share/apps/kasteroids/sprites/rock2/rock20006.png -share/apps/kasteroids/sprites/rock2/rock20007.png -share/apps/kasteroids/sprites/rock2/rock20008.png -share/apps/kasteroids/sprites/rock2/rock20009.png -share/apps/kasteroids/sprites/rock2/rock20010.png -share/apps/kasteroids/sprites/rock2/rock20011.png -share/apps/kasteroids/sprites/rock2/rock20012.png -share/apps/kasteroids/sprites/rock2/rock20013.png -share/apps/kasteroids/sprites/rock2/rock20014.png -share/apps/kasteroids/sprites/rock2/rock20015.png -share/apps/kasteroids/sprites/rock2/rock20016.png -share/apps/kasteroids/sprites/rock2/rock20017.png -share/apps/kasteroids/sprites/rock2/rock20018.png -share/apps/kasteroids/sprites/rock2/rock20019.png -share/apps/kasteroids/sprites/rock2/rock20020.png -share/apps/kasteroids/sprites/rock2/rock20021.png -share/apps/kasteroids/sprites/rock2/rock20022.png -share/apps/kasteroids/sprites/rock2/rock20023.png -share/apps/kasteroids/sprites/rock2/rock20024.png -share/apps/kasteroids/sprites/rock2/rock20025.png -share/apps/kasteroids/sprites/rock2/rock20026.png -share/apps/kasteroids/sprites/rock2/rock20027.png -share/apps/kasteroids/sprites/rock2/rock20028.png -share/apps/kasteroids/sprites/rock2/rock20029.png -share/apps/kasteroids/sprites/rock2/rock20030.png -share/apps/kasteroids/sprites/rock2/rock20031.png -share/apps/kasteroids/sprites/rock3/rock30000.png -share/apps/kasteroids/sprites/rock3/rock30001.png -share/apps/kasteroids/sprites/rock3/rock30002.png -share/apps/kasteroids/sprites/rock3/rock30003.png -share/apps/kasteroids/sprites/rock3/rock30004.png -share/apps/kasteroids/sprites/rock3/rock30005.png -share/apps/kasteroids/sprites/rock3/rock30006.png -share/apps/kasteroids/sprites/rock3/rock30007.png -share/apps/kasteroids/sprites/rock3/rock30008.png -share/apps/kasteroids/sprites/rock3/rock30009.png -share/apps/kasteroids/sprites/rock3/rock30010.png -share/apps/kasteroids/sprites/rock3/rock30011.png -share/apps/kasteroids/sprites/rock3/rock30012.png -share/apps/kasteroids/sprites/rock3/rock30013.png -share/apps/kasteroids/sprites/rock3/rock30014.png -share/apps/kasteroids/sprites/rock3/rock30015.png -share/apps/kasteroids/sprites/rock3/rock30016.png -share/apps/kasteroids/sprites/rock3/rock30017.png -share/apps/kasteroids/sprites/rock3/rock30018.png -share/apps/kasteroids/sprites/rock3/rock30019.png -share/apps/kasteroids/sprites/rock3/rock30020.png -share/apps/kasteroids/sprites/rock3/rock30021.png -share/apps/kasteroids/sprites/rock3/rock30022.png -share/apps/kasteroids/sprites/rock3/rock30023.png -share/apps/kasteroids/sprites/rock3/rock30024.png -share/apps/kasteroids/sprites/rock3/rock30025.png -share/apps/kasteroids/sprites/rock3/rock30026.png -share/apps/kasteroids/sprites/rock3/rock30027.png -share/apps/kasteroids/sprites/rock3/rock30028.png -share/apps/kasteroids/sprites/rock3/rock30029.png -share/apps/kasteroids/sprites/rock3/rock30030.png -share/apps/kasteroids/sprites/rock3/rock30031.png -share/apps/kasteroids/sprites/shield/shield0000.png -share/apps/kasteroids/sprites/shield/shield0001.png -share/apps/kasteroids/sprites/shield/shield0002.png -share/apps/kasteroids/sprites/shield/shield0003.png -share/apps/kasteroids/sprites/shield/shield0004.png -share/apps/kasteroids/sprites/shield/shield0005.png -share/apps/kasteroids/sprites/shield/shield0006.png -share/apps/kasteroids/sprites/ship/ship0000.png -share/apps/kasteroids/sprites/ship/ship0001.png -share/apps/kasteroids/sprites/ship/ship0002.png -share/apps/kasteroids/sprites/ship/ship0003.png -share/apps/kasteroids/sprites/ship/ship0004.png -share/apps/kasteroids/sprites/ship/ship0005.png -share/apps/kasteroids/sprites/ship/ship0006.png -share/apps/kasteroids/sprites/ship/ship0007.png -share/apps/kasteroids/sprites/ship/ship0008.png -share/apps/kasteroids/sprites/ship/ship0009.png -share/apps/kasteroids/sprites/ship/ship0010.png -share/apps/kasteroids/sprites/ship/ship0011.png -share/apps/kasteroids/sprites/ship/ship0012.png -share/apps/kasteroids/sprites/ship/ship0013.png -share/apps/kasteroids/sprites/ship/ship0014.png -share/apps/kasteroids/sprites/ship/ship0015.png -share/apps/kasteroids/sprites/ship/ship0016.png -share/apps/kasteroids/sprites/ship/ship0017.png -share/apps/kasteroids/sprites/ship/ship0018.png -share/apps/kasteroids/sprites/ship/ship0019.png -share/apps/kasteroids/sprites/ship/ship0020.png -share/apps/kasteroids/sprites/ship/ship0021.png -share/apps/kasteroids/sprites/ship/ship0022.png -share/apps/kasteroids/sprites/ship/ship0023.png -share/apps/kasteroids/sprites/ship/ship0024.png -share/apps/kasteroids/sprites/ship/ship0025.png -share/apps/kasteroids/sprites/ship/ship0026.png -share/apps/kasteroids/sprites/ship/ship0027.png -share/apps/kasteroids/sprites/ship/ship0028.png -share/apps/kasteroids/sprites/ship/ship0029.png -share/apps/kasteroids/sprites/ship/ship0030.png -share/apps/kasteroids/sprites/ship/ship0031.png -share/apps/kasteroids/sprites/ship/ship0032.png -share/apps/kasteroids/sprites/ship/ship0033.png -share/apps/kasteroids/sprites/ship/ship0034.png -share/apps/kasteroids/sprites/ship/ship0035.png -share/apps/kasteroids/sprites/ship/ship0036.png -share/apps/kasteroids/sprites/ship/ship0037.png -share/apps/kasteroids/sprites/ship/ship0038.png -share/apps/kasteroids/sprites/ship/ship0039.png -share/apps/kasteroids/sprites/ship/ship0040.png -share/apps/kasteroids/sprites/ship/ship0041.png -share/apps/kasteroids/sprites/ship/ship0042.png -share/apps/kasteroids/sprites/ship/ship0043.png -share/apps/kasteroids/sprites/ship/ship0044.png -share/apps/kasteroids/sprites/ship/ship0045.png -share/apps/kasteroids/sprites/ship/ship0046.png -share/apps/kasteroids/sprites/ship/ship0047.png -share/apps/kasteroids/sprites/ship/ship0048.png -share/apps/kasteroids/sprites/ship/ship0049.png -share/apps/kasteroids/sprites/ship/ship0050.png -share/apps/kasteroids/sprites/ship/ship0051.png -share/apps/kasteroids/sprites/ship/ship0052.png -share/apps/kasteroids/sprites/ship/ship0053.png -share/apps/kasteroids/sprites/ship/ship0054.png -share/apps/kasteroids/sprites/ship/ship0055.png -share/apps/kasteroids/sprites/ship/ship0056.png -share/apps/kasteroids/sprites/ship/ship0057.png -share/apps/kasteroids/sprites/ship/ship0058.png -share/apps/kasteroids/sprites/ship/ship0059.png -share/apps/kasteroids/sprites/ship/ship0060.png -share/apps/kasteroids/sprites/ship/ship0061.png -share/apps/kasteroids/sprites/ship/ship0062.png -share/apps/kasteroids/sprites/ship/ship0063.png -share/apps/katomic/katomicui.rc -share/apps/katomic/levels/.cvsignore -share/apps/katomic/levels/CVS/Entries -share/apps/katomic/levels/CVS/Repository -share/apps/katomic/levels/CVS/Root -share/apps/katomic/levels/CVS/Tag -share/apps/katomic/levels/level_1 -share/apps/katomic/levels/level_10 -share/apps/katomic/levels/level_11 -share/apps/katomic/levels/level_12 -share/apps/katomic/levels/level_13 -share/apps/katomic/levels/level_14 -share/apps/katomic/levels/level_15 -share/apps/katomic/levels/level_16 -share/apps/katomic/levels/level_17 -share/apps/katomic/levels/level_18 -share/apps/katomic/levels/level_19 -share/apps/katomic/levels/level_2 -share/apps/katomic/levels/level_20 -share/apps/katomic/levels/level_21 -share/apps/katomic/levels/level_22 -share/apps/katomic/levels/level_23 -share/apps/katomic/levels/level_24 -share/apps/katomic/levels/level_25 -share/apps/katomic/levels/level_26 -share/apps/katomic/levels/level_27 -share/apps/katomic/levels/level_28 -share/apps/katomic/levels/level_29 -share/apps/katomic/levels/level_3 -share/apps/katomic/levels/level_30 -share/apps/katomic/levels/level_31 -share/apps/katomic/levels/level_32 -share/apps/katomic/levels/level_33 -share/apps/katomic/levels/level_34 -share/apps/katomic/levels/level_35 -share/apps/katomic/levels/level_36 -share/apps/katomic/levels/level_37 -share/apps/katomic/levels/level_38 -share/apps/katomic/levels/level_39 -share/apps/katomic/levels/level_4 -share/apps/katomic/levels/level_40 -share/apps/katomic/levels/level_41 -share/apps/katomic/levels/level_42 -share/apps/katomic/levels/level_43 -share/apps/katomic/levels/level_44 -share/apps/katomic/levels/level_45 -share/apps/katomic/levels/level_46 -share/apps/katomic/levels/level_47 -share/apps/katomic/levels/level_48 -share/apps/katomic/levels/level_49 -share/apps/katomic/levels/level_5 -share/apps/katomic/levels/level_50 -share/apps/katomic/levels/level_51 -share/apps/katomic/levels/level_52 -share/apps/katomic/levels/level_53 -share/apps/katomic/levels/level_54 -share/apps/katomic/levels/level_55 -share/apps/katomic/levels/level_56 -share/apps/katomic/levels/level_57 -share/apps/katomic/levels/level_58 -share/apps/katomic/levels/level_59 -share/apps/katomic/levels/level_6 -share/apps/katomic/levels/level_60 -share/apps/katomic/levels/level_61 -share/apps/katomic/levels/level_62 -share/apps/katomic/levels/level_63 -share/apps/katomic/levels/level_64 -share/apps/katomic/levels/level_65 -share/apps/katomic/levels/level_66 -share/apps/katomic/levels/level_67 -share/apps/katomic/levels/level_68 -share/apps/katomic/levels/level_69 -share/apps/katomic/levels/level_7 -share/apps/katomic/levels/level_70 -share/apps/katomic/levels/level_71 -share/apps/katomic/levels/level_72 -share/apps/katomic/levels/level_73 -share/apps/katomic/levels/level_74 -share/apps/katomic/levels/level_75 -share/apps/katomic/levels/level_76 -share/apps/katomic/levels/level_77 -share/apps/katomic/levels/level_78 -share/apps/katomic/levels/level_79 -share/apps/katomic/levels/level_8 -share/apps/katomic/levels/level_9 -share/apps/katomic/pics/abilder.png -share/apps/katomic/pics/molek.png -share/apps/kbackgammon/eventsrc -share/apps/kbackgammon/kbackgammonui.rc -share/apps/kbackgammon/pics/kbackgammon-chat.png -share/apps/kbackgammon/pics/kbackgammon-double.xpm -share/apps/kbackgammon/pics/kbackgammon-fonts.xpm -share/apps/kbackgammon/pics/kbackgammon-hint.xpm -share/apps/kbackgammon/pics/kbackgammon-redo.xpm -share/apps/kbackgammon/pics/kbackgammon-reload.xpm -share/apps/kbackgammon/pics/kbackgammon-roll.xpm -share/apps/kbackgammon/pics/kbackgammon-send.xpm -share/apps/kbackgammon/pics/kbackgammon-undo.xpm -share/apps/kbackgammon/sounds/kbackgammon-lost.wav -share/apps/kbackgammon/sounds/kbackgammon-move.wav -share/apps/kbackgammon/sounds/kbackgammon-roll.wav -share/apps/kbackgammon/sounds/kbackgammon-won.wav -share/apps/kbattleship/kbattleshipui.rc -share/apps/kbattleship/pictures/death.png -share/apps/kbattleship/pictures/hit.png -share/apps/kbattleship/pictures/sea.png -share/apps/kbattleship/pictures/ship1-1-r.png -share/apps/kbattleship/pictures/ship1-1.png -share/apps/kbattleship/pictures/ship2-1-r.png -share/apps/kbattleship/pictures/ship2-1.png -share/apps/kbattleship/pictures/ship2-2-r.png -share/apps/kbattleship/pictures/ship2-2.png -share/apps/kbattleship/pictures/ship3-1-r.png -share/apps/kbattleship/pictures/ship3-1.png -share/apps/kbattleship/pictures/ship3-2-r.png -share/apps/kbattleship/pictures/ship3-2.png -share/apps/kbattleship/pictures/ship3-3-r.png -share/apps/kbattleship/pictures/ship3-3.png -share/apps/kbattleship/pictures/ship4-1-r.png -share/apps/kbattleship/pictures/ship4-1.png -share/apps/kbattleship/pictures/ship4-2-r.png -share/apps/kbattleship/pictures/ship4-2.png -share/apps/kbattleship/pictures/ship4-3-r.png -share/apps/kbattleship/pictures/ship4-3.png -share/apps/kbattleship/pictures/ship4-4-r.png -share/apps/kbattleship/pictures/ship4-4.png -share/apps/kbattleship/pictures/water.png -share/apps/kbattleship/sounds/ship-player-shoot-water.mp3 -share/apps/kbattleship/sounds/ship-player1-shoot.mp3 -share/apps/kbattleship/sounds/ship-player2-shoot.mp3 -share/apps/kbattleship/sounds/ship-sink.mp3 -share/apps/kblackbox/kblackboxui.rc -share/apps/kblackbox/pics/blue.xpm -share/apps/kblackbox/pics/brown.xpm -share/apps/kblackbox/pics/cyan.xpm -share/apps/kblackbox/pics/done.xpm -share/apps/kblackbox/pics/giveup.xpm -share/apps/kblackbox/pics/gray.xpm -share/apps/kblackbox/pics/green.xpm -share/apps/kblackbox/pics/green2.xpm -share/apps/kblackbox/pics/red.xpm -share/apps/kblackbox/pics/white.xpm -share/apps/kdegames/pics/star.png -share/apps/kfouleggs/kfouleggsui.rc -share/apps/kjezz/kjezzui.rc -share/apps/kjezz/pics/ball0000.png -share/apps/kjezz/pics/ball0001.png -share/apps/kjezz/pics/ball0002.png -share/apps/kjezz/pics/ball0003.png -share/apps/kjezz/pics/ball0004.png -share/apps/kjezz/pics/ball0005.png -share/apps/kjezz/pics/ball0006.png -share/apps/kjezz/pics/ball0007.png -share/apps/kjezz/pics/ball0008.png -share/apps/kjezz/pics/ball0009.png -share/apps/kjezz/pics/ball0010.png -share/apps/kjezz/pics/ball0011.png -share/apps/kjezz/pics/ball0012.png -share/apps/kjezz/pics/ball0013.png -share/apps/kjezz/pics/ball0014.png -share/apps/kjezz/pics/ball0015.png -share/apps/kjezz/pics/ball0016.png -share/apps/kjezz/pics/ball0017.png -share/apps/kjezz/pics/ball0018.png -share/apps/kjezz/pics/ball0019.png -share/apps/kjezz/pics/ball0020.png -share/apps/kjezz/pics/ball0021.png -share/apps/kjezz/pics/ball0022.png -share/apps/kjezz/pics/ball0023.png -share/apps/kjezz/pics/ball0024.png -share/apps/kjezz/pics/tiles.png -share/apps/kjezz/sounds/death.au -share/apps/kjezz/sounds/reflect.au -share/apps/kjezz/sounds/seconds.au -share/apps/kjezz/sounds/timeout.au -share/apps/kjezz/sounds/wallend.au -share/apps/kjezz/sounds/wallstart.au -share/apps/kjumpingcube/kjumpingcubeui.rc -share/apps/klines/balls.jpg -share/apps/klines/field.jpg -share/apps/klines/fire.jpg -share/apps/kmahjongg/pics/cross.layout -share/apps/kmahjongg/pics/default.bgnd -share/apps/kmahjongg/pics/default.layout -share/apps/kmahjongg/pics/default.theme -share/apps/kmahjongg/pics/default.tileset -share/apps/kmahjongg/pics/haze.bgnd -share/apps/kmahjongg/pics/kmahjongg.png -share/apps/kmahjongg/pics/kmahjongg_bgnd.png -share/apps/kmahjongg/pics/pirates.bgnd -share/apps/kmahjongg/pics/pirates.layout -share/apps/kmahjongg/pics/pirates.theme -share/apps/kmahjongg/pics/pirates.tileset -share/apps/kmahjongg/pics/pyramid.layout -share/apps/kmahjongg/pics/slate.bgnd -share/apps/kmahjongg/pics/splash.png -share/apps/kmahjongg/pics/stax.layout -share/apps/kmahjongg/pics/test.layout -share/apps/kmahjongg/pics/test2.layout -share/apps/kmahjongg/pics/tower.layout -share/apps/kmahjongg/pics/traditional.tileset -share/apps/kmahjongg/pics/triangle.layout -share/apps/kmahjongg/pics/wood.bgnd -share/apps/kmahjongg/toolbar/newnum.xpm -share/apps/kmahjongg/toolbar/pause.xpm -share/apps/kmahjongg/toolbar/play.xpm -share/apps/kmines/kminesui.rc -share/apps/konquest/konquestui.rc -share/apps/konquest/pics/konquest-splash.gif -share/apps/konquest/pics/planet1.xpm -share/apps/konquest/pics/planet2.xpm -share/apps/konquest/pics/planet3.xpm -share/apps/konquest/pics/planet4.xpm -share/apps/konquest/pics/planet5.xpm -share/apps/konquest/pics/planet6.xpm -share/apps/konquest/pics/planet7.xpm -share/apps/konquest/pics/planet8.xpm -share/apps/konquest/pics/planet9.xpm -share/apps/konquest/pics/ruler.xpm -share/apps/kpat/kpatui.rc -share/apps/kpoker/kpokerui.rc -share/apps/kpoker/sounds/cardflip.wav -share/apps/kpoker/sounds/hold.wav -share/apps/kpoker/sounds/lose.wav -share/apps/kpoker/sounds/win.wav -share/apps/kreversi/pics/background/Dark_Wood.xpm -share/apps/kreversi/pics/background/Earth.xpm -share/apps/kreversi/pics/background/Granite.xpm -share/apps/kreversi/pics/background/Hexagon.xpm -share/apps/kreversi/pics/background/Light_Wood.xpm -share/apps/kreversi/pics/background/Mystique.xpm -share/apps/kreversi/pics/background/Ocean.xpm -share/apps/kreversi/pics/background/Pipes.xpm -share/apps/kreversi/pics/background/Puzzle.xpm -share/apps/kreversi/pics/background/Stones.xpm -share/apps/kreversi/pics/chips.xpm -share/apps/kreversi/pics/chips_mono.xpm -share/apps/kreversi/pics/help.xpm -share/apps/kreversi/pics/hint.xpm -share/apps/kreversi/pics/logo.xpm -share/apps/kreversi/pics/stop.xpm -share/apps/kreversi/pics/undo.xpm -share/apps/kreversi/pics/zoomin.xpm -share/apps/kreversi/pics/zoomout.xpm -share/apps/kreversi/sounds/reversi-click.wav -share/apps/kreversi/sounds/reversi-lost.wav -share/apps/kreversi/sounds/reversi-won.wav -share/apps/ksame/eventsrc -share/apps/ksame/ksameui.rc -share/apps/ksame/stones.png -share/apps/kshisen/kshisen.xpm -share/apps/kshisen/kshisen_bgnd.xpm -share/apps/kshisen/kshisenui.rc -share/apps/kshisen/mask.xpm -share/apps/kshisen/paused.xpm -share/apps/ksirtet/ksirtetui.rc -share/apps/ksmiletris/data/bg1.bmp -share/apps/ksmiletris/data/bg10.bmp -share/apps/ksmiletris/data/bg11.bmp -share/apps/ksmiletris/data/bg12.bmp -share/apps/ksmiletris/data/bg13.bmp -share/apps/ksmiletris/data/bg14.bmp -share/apps/ksmiletris/data/bg15.bmp -share/apps/ksmiletris/data/bg16.bmp -share/apps/ksmiletris/data/bg2.bmp -share/apps/ksmiletris/data/bg3.bmp -share/apps/ksmiletris/data/bg4.bmp -share/apps/ksmiletris/data/bg5.bmp -share/apps/ksmiletris/data/bg6.bmp -share/apps/ksmiletris/data/bg7.bmp -share/apps/ksmiletris/data/bg8.bmp -share/apps/ksmiletris/data/bg9.bmp -share/apps/ksmiletris/data/block-a1.bmp -share/apps/ksmiletris/data/block-a2.bmp -share/apps/ksmiletris/data/block-a3.bmp -share/apps/ksmiletris/data/block-a4.bmp -share/apps/ksmiletris/data/block-a5.bmp -share/apps/ksmiletris/data/block-a6.bmp -share/apps/ksmiletris/data/block-a7.bmp -share/apps/ksmiletris/data/block-a8.bmp -share/apps/ksmiletris/data/block-b1.bmp -share/apps/ksmiletris/data/block-b2.bmp -share/apps/ksmiletris/data/block-b3.bmp -share/apps/ksmiletris/data/block-b4.bmp -share/apps/ksmiletris/data/block-b5.bmp -share/apps/ksmiletris/data/block-b6.bmp -share/apps/ksmiletris/data/block-b7.bmp -share/apps/ksmiletris/data/block-b8.bmp -share/apps/ksmiletris/data/block-c1.bmp -share/apps/ksmiletris/data/block-c2.bmp -share/apps/ksmiletris/data/block-c3.bmp -share/apps/ksmiletris/data/block-c4.bmp -share/apps/ksmiletris/data/block-c5.bmp -share/apps/ksmiletris/data/block-c6.bmp -share/apps/ksmiletris/data/block-c7.bmp -share/apps/ksmiletris/data/block-c8.bmp -share/apps/ksmiletris/data/broken-mask.bmp -share/apps/ksmiletris/data/broken.bmp -share/apps/ksmiletris/data/cleared-a.bmp -share/apps/ksmiletris/data/cleared-b.bmp -share/apps/ksmiletris/data/cleared-c.bmp -share/apps/ksmiletris/data/pause.bmp -share/apps/ksmiletris/sounds/break.wav -share/apps/ksmiletris/sounds/clear.wav -share/apps/ksnake/backgrounds/Bark.png -share/apps/ksnake/backgrounds/Blue_Carpet.png -share/apps/ksnake/backgrounds/Dark_Wood.png -share/apps/ksnake/backgrounds/Granite.png -share/apps/ksnake/backgrounds/Green_Carpet.png -share/apps/ksnake/backgrounds/Mystique.png -share/apps/ksnake/backgrounds/Rope_Weave.png -share/apps/ksnake/backgrounds/Volcanic.png -share/apps/ksnake/backgrounds/Wood.png -share/apps/ksnake/highScores -share/apps/ksnake/ksnakeui.rc -share/apps/ksnake/levels/room01 -share/apps/ksnake/levels/room02 -share/apps/ksnake/levels/room03 -share/apps/ksnake/levels/room04 -share/apps/ksnake/levels/room05 -share/apps/ksnake/levels/room06 -share/apps/ksnake/levels/room07 -share/apps/ksnake/levels/room08 -share/apps/ksnake/levels/room09 -share/apps/ksnake/levels/room10 -share/apps/ksnake/levels/room11 -share/apps/ksnake/levels/room12 -share/apps/ksnake/levels/room13 -share/apps/ksnake/levels/room14 -share/apps/ksnake/levels/room15 -share/apps/ksnake/levels/room16 -share/apps/ksnake/levels/room17 -share/apps/ksnake/levels/room18 -share/apps/ksnake/levels/room19 -share/apps/ksnake/levels/room20 -share/apps/ksnake/levels/room21 -share/apps/ksnake/levels/room22 -share/apps/ksnake/levels/room23 -share/apps/ksnake/levels/room24 -share/apps/ksnake/levels/room25 -share/apps/ksnake/pics/apples.png -share/apps/ksnake/pics/ball.png -share/apps/ksnake/pics/brick.png -share/apps/ksnake/pics/down.png -share/apps/ksnake/pics/left.png -share/apps/ksnake/pics/right.png -share/apps/ksnake/pics/samy.png -share/apps/ksnake/pics/snake1.png -share/apps/ksnake/pics/snake2.png -share/apps/ksnake/pics/up.png -share/apps/kspaceduel/icons/hicolor/16x16/actions/spnewgame.png -share/apps/kspaceduel/icons/hicolor/16x16/actions/spnewround.png -share/apps/kspaceduel/icons/hicolor/16x16/actions/sppausegame.png -share/apps/kspaceduel/icons/hicolor/22x22/actions/spnewgame.png -share/apps/kspaceduel/icons/hicolor/22x22/actions/spnewround.png -share/apps/kspaceduel/icons/hicolor/22x22/actions/sppausegame.png -share/apps/kspaceduel/icons/hicolor/32x32/actions/spnewgame.png -share/apps/kspaceduel/icons/hicolor/32x32/actions/spnewround.png -share/apps/kspaceduel/icons/hicolor/32x32/actions/sppausegame.png -share/apps/kspaceduel/icons/locolor/16x16/actions/spnewgame.png -share/apps/kspaceduel/icons/locolor/16x16/actions/spnewround.png -share/apps/kspaceduel/icons/locolor/16x16/actions/sppausegame.png -share/apps/kspaceduel/kspaceduelui.rc -share/apps/kspaceduel/sprites/backgr.png -share/apps/kspaceduel/sprites/explosion/explos00.pbm -share/apps/kspaceduel/sprites/explosion/explos00.ppm -share/apps/kspaceduel/sprites/explosion/explos01.pbm -share/apps/kspaceduel/sprites/explosion/explos01.ppm -share/apps/kspaceduel/sprites/explosion/explos02.pbm -share/apps/kspaceduel/sprites/explosion/explos02.ppm -share/apps/kspaceduel/sprites/explosion/explos03.pbm -share/apps/kspaceduel/sprites/explosion/explos03.ppm -share/apps/kspaceduel/sprites/explosion/explos04.pbm -share/apps/kspaceduel/sprites/explosion/explos04.ppm -share/apps/kspaceduel/sprites/explosion/explos05.pbm -share/apps/kspaceduel/sprites/explosion/explos05.ppm -share/apps/kspaceduel/sprites/explosion/explos06.pbm -share/apps/kspaceduel/sprites/explosion/explos06.ppm -share/apps/kspaceduel/sprites/explosion/explos07.pbm -share/apps/kspaceduel/sprites/explosion/explos07.ppm -share/apps/kspaceduel/sprites/explosion/explos08.pbm -share/apps/kspaceduel/sprites/explosion/explos08.ppm -share/apps/kspaceduel/sprites/explosion/explos09.pbm -share/apps/kspaceduel/sprites/explosion/explos09.ppm -share/apps/kspaceduel/sprites/explosion/explos10.pbm -share/apps/kspaceduel/sprites/explosion/explos10.ppm -share/apps/kspaceduel/sprites/explosion/explos11.pbm -share/apps/kspaceduel/sprites/explosion/explos11.ppm -share/apps/kspaceduel/sprites/explosion/explos12.pbm -share/apps/kspaceduel/sprites/explosion/explos12.ppm -share/apps/kspaceduel/sprites/explosion/explos13.pbm -share/apps/kspaceduel/sprites/explosion/explos13.ppm -share/apps/kspaceduel/sprites/explosion/explos14.pbm -share/apps/kspaceduel/sprites/explosion/explos14.ppm -share/apps/kspaceduel/sprites/explosion/explos15.pbm -share/apps/kspaceduel/sprites/explosion/explos15.ppm -share/apps/kspaceduel/sprites/explosion/explos16.pbm -share/apps/kspaceduel/sprites/explosion/explos16.ppm -share/apps/kspaceduel/sprites/explosion/explos17.pbm -share/apps/kspaceduel/sprites/explosion/explos17.ppm -share/apps/kspaceduel/sprites/explosion/explos18.pbm -share/apps/kspaceduel/sprites/explosion/explos18.ppm -share/apps/kspaceduel/sprites/explosion/explos19.pbm -share/apps/kspaceduel/sprites/explosion/explos19.ppm -share/apps/kspaceduel/sprites/explosion/explos20.pbm -share/apps/kspaceduel/sprites/explosion/explos20.ppm -share/apps/kspaceduel/sprites/explosion/explos21.pbm -share/apps/kspaceduel/sprites/explosion/explos21.ppm -share/apps/kspaceduel/sprites/explosion/explos22.pbm -share/apps/kspaceduel/sprites/explosion/explos22.ppm -share/apps/kspaceduel/sprites/explosion/explos23.pbm -share/apps/kspaceduel/sprites/explosion/explos23.ppm -share/apps/kspaceduel/sprites/explosion/explos24.pbm -share/apps/kspaceduel/sprites/explosion/explos24.ppm -share/apps/kspaceduel/sprites/explosion/explos25.pbm -share/apps/kspaceduel/sprites/explosion/explos25.ppm -share/apps/kspaceduel/sprites/explosion/explos26.pbm -share/apps/kspaceduel/sprites/explosion/explos26.ppm -share/apps/kspaceduel/sprites/explosion/explos27.pbm -share/apps/kspaceduel/sprites/explosion/explos27.ppm -share/apps/kspaceduel/sprites/explosion/explos28.pbm -share/apps/kspaceduel/sprites/explosion/explos28.ppm -share/apps/kspaceduel/sprites/explosion/explos29.pbm -share/apps/kspaceduel/sprites/explosion/explos29.ppm -share/apps/kspaceduel/sprites/explosion/explos30.pbm -share/apps/kspaceduel/sprites/explosion/explos30.ppm -share/apps/kspaceduel/sprites/explosion/mineex00.pbm -share/apps/kspaceduel/sprites/explosion/mineex00.ppm -share/apps/kspaceduel/sprites/explosion/mineex01.pbm -share/apps/kspaceduel/sprites/explosion/mineex01.ppm -share/apps/kspaceduel/sprites/explosion/mineex02.pbm -share/apps/kspaceduel/sprites/explosion/mineex02.ppm -share/apps/kspaceduel/sprites/explosion/mineex03.pbm -share/apps/kspaceduel/sprites/explosion/mineex03.ppm -share/apps/kspaceduel/sprites/explosion/mineex04.pbm -share/apps/kspaceduel/sprites/explosion/mineex04.ppm -share/apps/kspaceduel/sprites/explosion/mineex05.pbm -share/apps/kspaceduel/sprites/explosion/mineex05.ppm -share/apps/kspaceduel/sprites/explosion/mineex06.pbm -share/apps/kspaceduel/sprites/explosion/mineex06.ppm -share/apps/kspaceduel/sprites/explosion/mineex07.pbm -share/apps/kspaceduel/sprites/explosion/mineex07.ppm -share/apps/kspaceduel/sprites/explosion/mineex08.pbm -share/apps/kspaceduel/sprites/explosion/mineex08.ppm -share/apps/kspaceduel/sprites/explosion/mineex09.pbm -share/apps/kspaceduel/sprites/explosion/mineex09.ppm -share/apps/kspaceduel/sprites/explosion/mineex10.pbm -share/apps/kspaceduel/sprites/explosion/mineex10.ppm -share/apps/kspaceduel/sprites/explosion/mineex11.pbm -share/apps/kspaceduel/sprites/explosion/mineex11.ppm -share/apps/kspaceduel/sprites/explosion/mineex12.pbm -share/apps/kspaceduel/sprites/explosion/mineex12.ppm -share/apps/kspaceduel/sprites/explosion/mineex13.pbm -share/apps/kspaceduel/sprites/explosion/mineex13.ppm -share/apps/kspaceduel/sprites/explosion/mineex14.pbm -share/apps/kspaceduel/sprites/explosion/mineex14.ppm -share/apps/kspaceduel/sprites/explosion/mineex15.pbm -share/apps/kspaceduel/sprites/explosion/mineex15.ppm -share/apps/kspaceduel/sprites/explosion/mineex16.pbm -share/apps/kspaceduel/sprites/explosion/mineex16.ppm -share/apps/kspaceduel/sprites/explosion/mineex17.pbm -share/apps/kspaceduel/sprites/explosion/mineex17.ppm -share/apps/kspaceduel/sprites/playerinfo/energy.pnm -share/apps/kspaceduel/sprites/playerinfo/mine.pnm -share/apps/kspaceduel/sprites/playerinfo/ship10.pnm -share/apps/kspaceduel/sprites/playerinfo/ship11.pnm -share/apps/kspaceduel/sprites/playerinfo/ship12.pnm -share/apps/kspaceduel/sprites/playerinfo/ship13.pnm -share/apps/kspaceduel/sprites/playerinfo/ship20.pnm -share/apps/kspaceduel/sprites/playerinfo/ship21.pnm -share/apps/kspaceduel/sprites/playerinfo/ship22.pnm -share/apps/kspaceduel/sprites/playerinfo/ship23.pnm -share/apps/kspaceduel/sprites/playerinfo/win.pnm -share/apps/kspaceduel/sprites/powerups/pbullet.pbm -share/apps/kspaceduel/sprites/powerups/pbullet.ppm -share/apps/kspaceduel/sprites/powerups/penergy.pbm -share/apps/kspaceduel/sprites/powerups/penergy.ppm -share/apps/kspaceduel/sprites/powerups/pmine.pbm -share/apps/kspaceduel/sprites/powerups/pmine.ppm -share/apps/kspaceduel/sprites/powerups/pshield.pbm -share/apps/kspaceduel/sprites/powerups/pshield.ppm -share/apps/kspaceduel/sprites/ship1/bullet.pbm -share/apps/kspaceduel/sprites/ship1/bullet.ppm -share/apps/kspaceduel/sprites/ship1/mine0.pbm -share/apps/kspaceduel/sprites/ship1/mine0.ppm -share/apps/kspaceduel/sprites/ship1/mine1.pbm -share/apps/kspaceduel/sprites/ship1/mine1.ppm -share/apps/kspaceduel/sprites/ship1/ship00.pbm -share/apps/kspaceduel/sprites/ship1/ship00.ppm -share/apps/kspaceduel/sprites/ship1/ship01.pbm -share/apps/kspaceduel/sprites/ship1/ship01.ppm -share/apps/kspaceduel/sprites/ship1/ship02.pbm -share/apps/kspaceduel/sprites/ship1/ship02.ppm -share/apps/kspaceduel/sprites/ship1/ship03.pbm -share/apps/kspaceduel/sprites/ship1/ship03.ppm -share/apps/kspaceduel/sprites/ship1/ship04.pbm -share/apps/kspaceduel/sprites/ship1/ship04.ppm -share/apps/kspaceduel/sprites/ship1/ship05.pbm -share/apps/kspaceduel/sprites/ship1/ship05.ppm -share/apps/kspaceduel/sprites/ship1/ship06.pbm -share/apps/kspaceduel/sprites/ship1/ship06.ppm -share/apps/kspaceduel/sprites/ship1/ship07.pbm -share/apps/kspaceduel/sprites/ship1/ship07.ppm -share/apps/kspaceduel/sprites/ship1/ship08.pbm -share/apps/kspaceduel/sprites/ship1/ship08.ppm -share/apps/kspaceduel/sprites/ship1/ship09.pbm -share/apps/kspaceduel/sprites/ship1/ship09.ppm -share/apps/kspaceduel/sprites/ship1/ship10.pbm -share/apps/kspaceduel/sprites/ship1/ship10.ppm -share/apps/kspaceduel/sprites/ship1/ship11.pbm -share/apps/kspaceduel/sprites/ship1/ship11.ppm -share/apps/kspaceduel/sprites/ship1/ship12.pbm -share/apps/kspaceduel/sprites/ship1/ship12.ppm -share/apps/kspaceduel/sprites/ship1/ship13.pbm -share/apps/kspaceduel/sprites/ship1/ship13.ppm -share/apps/kspaceduel/sprites/ship1/ship14.pbm -share/apps/kspaceduel/sprites/ship1/ship14.ppm -share/apps/kspaceduel/sprites/ship1/ship15.pbm -share/apps/kspaceduel/sprites/ship1/ship15.ppm -share/apps/kspaceduel/sprites/ship1/ship16.pbm -share/apps/kspaceduel/sprites/ship1/ship16.ppm -share/apps/kspaceduel/sprites/ship1/ship17.pbm -share/apps/kspaceduel/sprites/ship1/ship17.ppm -share/apps/kspaceduel/sprites/ship1/ship18.pbm -share/apps/kspaceduel/sprites/ship1/ship18.ppm -share/apps/kspaceduel/sprites/ship1/ship19.pbm -share/apps/kspaceduel/sprites/ship1/ship19.ppm -share/apps/kspaceduel/sprites/ship1/ship20.pbm -share/apps/kspaceduel/sprites/ship1/ship20.ppm -share/apps/kspaceduel/sprites/ship1/ship21.pbm -share/apps/kspaceduel/sprites/ship1/ship21.ppm -share/apps/kspaceduel/sprites/ship1/ship22.pbm -share/apps/kspaceduel/sprites/ship1/ship22.ppm -share/apps/kspaceduel/sprites/ship1/ship23.pbm -share/apps/kspaceduel/sprites/ship1/ship23.ppm -share/apps/kspaceduel/sprites/ship1/ship24.pbm -share/apps/kspaceduel/sprites/ship1/ship24.ppm -share/apps/kspaceduel/sprites/ship1/ship25.pbm -share/apps/kspaceduel/sprites/ship1/ship25.ppm -share/apps/kspaceduel/sprites/ship1/ship26.pbm -share/apps/kspaceduel/sprites/ship1/ship26.ppm -share/apps/kspaceduel/sprites/ship1/ship27.pbm -share/apps/kspaceduel/sprites/ship1/ship27.ppm -share/apps/kspaceduel/sprites/ship1/ship28.pbm -share/apps/kspaceduel/sprites/ship1/ship28.ppm -share/apps/kspaceduel/sprites/ship1/ship29.pbm -share/apps/kspaceduel/sprites/ship1/ship29.ppm -share/apps/kspaceduel/sprites/ship1/ship30.pbm -share/apps/kspaceduel/sprites/ship1/ship30.ppm -share/apps/kspaceduel/sprites/ship1/ship31.pbm -share/apps/kspaceduel/sprites/ship1/ship31.ppm -share/apps/kspaceduel/sprites/ship1/ship32.pbm -share/apps/kspaceduel/sprites/ship1/ship32.ppm -share/apps/kspaceduel/sprites/ship1/ship33.pbm -share/apps/kspaceduel/sprites/ship1/ship33.ppm -share/apps/kspaceduel/sprites/ship1/ship34.pbm -share/apps/kspaceduel/sprites/ship1/ship34.ppm -share/apps/kspaceduel/sprites/ship1/ship35.pbm -share/apps/kspaceduel/sprites/ship1/ship35.ppm -share/apps/kspaceduel/sprites/ship1/ship36.pbm -share/apps/kspaceduel/sprites/ship1/ship36.ppm -share/apps/kspaceduel/sprites/ship1/ship37.pbm -share/apps/kspaceduel/sprites/ship1/ship37.ppm -share/apps/kspaceduel/sprites/ship1/ship38.pbm -share/apps/kspaceduel/sprites/ship1/ship38.ppm -share/apps/kspaceduel/sprites/ship1/ship39.pbm -share/apps/kspaceduel/sprites/ship1/ship39.ppm -share/apps/kspaceduel/sprites/ship1/ship40.pbm -share/apps/kspaceduel/sprites/ship1/ship40.ppm -share/apps/kspaceduel/sprites/ship1/ship41.pbm -share/apps/kspaceduel/sprites/ship1/ship41.ppm -share/apps/kspaceduel/sprites/ship1/ship42.pbm -share/apps/kspaceduel/sprites/ship1/ship42.ppm -share/apps/kspaceduel/sprites/ship1/ship43.pbm -share/apps/kspaceduel/sprites/ship1/ship43.ppm -share/apps/kspaceduel/sprites/ship1/ship44.pbm -share/apps/kspaceduel/sprites/ship1/ship44.ppm -share/apps/kspaceduel/sprites/ship1/ship45.pbm -share/apps/kspaceduel/sprites/ship1/ship45.ppm -share/apps/kspaceduel/sprites/ship1/ship46.pbm -share/apps/kspaceduel/sprites/ship1/ship46.ppm -share/apps/kspaceduel/sprites/ship1/ship47.pbm -share/apps/kspaceduel/sprites/ship1/ship47.ppm -share/apps/kspaceduel/sprites/ship1/ship48.pbm -share/apps/kspaceduel/sprites/ship1/ship48.ppm -share/apps/kspaceduel/sprites/ship1/ship49.pbm -share/apps/kspaceduel/sprites/ship1/ship49.ppm -share/apps/kspaceduel/sprites/ship1/ship50.pbm -share/apps/kspaceduel/sprites/ship1/ship50.ppm -share/apps/kspaceduel/sprites/ship1/ship51.pbm -share/apps/kspaceduel/sprites/ship1/ship51.ppm -share/apps/kspaceduel/sprites/ship1/ship52.pbm -share/apps/kspaceduel/sprites/ship1/ship52.ppm -share/apps/kspaceduel/sprites/ship1/ship53.pbm -share/apps/kspaceduel/sprites/ship1/ship53.ppm -share/apps/kspaceduel/sprites/ship1/ship54.pbm -share/apps/kspaceduel/sprites/ship1/ship54.ppm -share/apps/kspaceduel/sprites/ship1/ship55.pbm -share/apps/kspaceduel/sprites/ship1/ship55.ppm -share/apps/kspaceduel/sprites/ship1/ship56.pbm -share/apps/kspaceduel/sprites/ship1/ship56.ppm -share/apps/kspaceduel/sprites/ship1/ship57.pbm -share/apps/kspaceduel/sprites/ship1/ship57.ppm -share/apps/kspaceduel/sprites/ship1/ship58.pbm -share/apps/kspaceduel/sprites/ship1/ship58.ppm -share/apps/kspaceduel/sprites/ship1/ship59.pbm -share/apps/kspaceduel/sprites/ship1/ship59.ppm -share/apps/kspaceduel/sprites/ship1/ship60.pbm -share/apps/kspaceduel/sprites/ship1/ship60.ppm -share/apps/kspaceduel/sprites/ship1/ship61.pbm -share/apps/kspaceduel/sprites/ship1/ship61.ppm -share/apps/kspaceduel/sprites/ship1/ship62.pbm -share/apps/kspaceduel/sprites/ship1/ship62.ppm -share/apps/kspaceduel/sprites/ship1/ship63.pbm -share/apps/kspaceduel/sprites/ship1/ship63.ppm -share/apps/kspaceduel/sprites/ship1/ship64.pbm -share/apps/kspaceduel/sprites/ship1/ship64.ppm -share/apps/kspaceduel/sprites/ship2/bullet.pbm -share/apps/kspaceduel/sprites/ship2/bullet.ppm -share/apps/kspaceduel/sprites/ship2/mine0.pbm -share/apps/kspaceduel/sprites/ship2/mine0.ppm -share/apps/kspaceduel/sprites/ship2/mine1.pbm -share/apps/kspaceduel/sprites/ship2/mine1.ppm -share/apps/kspaceduel/sprites/ship2/ship00.pbm -share/apps/kspaceduel/sprites/ship2/ship00.ppm -share/apps/kspaceduel/sprites/ship2/ship01.pbm -share/apps/kspaceduel/sprites/ship2/ship01.ppm -share/apps/kspaceduel/sprites/ship2/ship02.pbm -share/apps/kspaceduel/sprites/ship2/ship02.ppm -share/apps/kspaceduel/sprites/ship2/ship03.pbm -share/apps/kspaceduel/sprites/ship2/ship03.ppm -share/apps/kspaceduel/sprites/ship2/ship04.pbm -share/apps/kspaceduel/sprites/ship2/ship04.ppm -share/apps/kspaceduel/sprites/ship2/ship05.pbm -share/apps/kspaceduel/sprites/ship2/ship05.ppm -share/apps/kspaceduel/sprites/ship2/ship06.pbm -share/apps/kspaceduel/sprites/ship2/ship06.ppm -share/apps/kspaceduel/sprites/ship2/ship07.pbm -share/apps/kspaceduel/sprites/ship2/ship07.ppm -share/apps/kspaceduel/sprites/ship2/ship08.pbm -share/apps/kspaceduel/sprites/ship2/ship08.ppm -share/apps/kspaceduel/sprites/ship2/ship09.pbm -share/apps/kspaceduel/sprites/ship2/ship09.ppm -share/apps/kspaceduel/sprites/ship2/ship10.pbm -share/apps/kspaceduel/sprites/ship2/ship10.ppm -share/apps/kspaceduel/sprites/ship2/ship11.pbm -share/apps/kspaceduel/sprites/ship2/ship11.ppm -share/apps/kspaceduel/sprites/ship2/ship12.pbm -share/apps/kspaceduel/sprites/ship2/ship12.ppm -share/apps/kspaceduel/sprites/ship2/ship13.pbm -share/apps/kspaceduel/sprites/ship2/ship13.ppm -share/apps/kspaceduel/sprites/ship2/ship14.pbm -share/apps/kspaceduel/sprites/ship2/ship14.ppm -share/apps/kspaceduel/sprites/ship2/ship15.pbm -share/apps/kspaceduel/sprites/ship2/ship15.ppm -share/apps/kspaceduel/sprites/ship2/ship16.pbm -share/apps/kspaceduel/sprites/ship2/ship16.ppm -share/apps/kspaceduel/sprites/ship2/ship17.pbm -share/apps/kspaceduel/sprites/ship2/ship17.ppm -share/apps/kspaceduel/sprites/ship2/ship18.pbm -share/apps/kspaceduel/sprites/ship2/ship18.ppm -share/apps/kspaceduel/sprites/ship2/ship19.pbm -share/apps/kspaceduel/sprites/ship2/ship19.ppm -share/apps/kspaceduel/sprites/ship2/ship20.pbm -share/apps/kspaceduel/sprites/ship2/ship20.ppm -share/apps/kspaceduel/sprites/ship2/ship21.pbm -share/apps/kspaceduel/sprites/ship2/ship21.ppm -share/apps/kspaceduel/sprites/ship2/ship22.pbm -share/apps/kspaceduel/sprites/ship2/ship22.ppm -share/apps/kspaceduel/sprites/ship2/ship23.pbm -share/apps/kspaceduel/sprites/ship2/ship23.ppm -share/apps/kspaceduel/sprites/ship2/ship24.pbm -share/apps/kspaceduel/sprites/ship2/ship24.ppm -share/apps/kspaceduel/sprites/ship2/ship25.pbm -share/apps/kspaceduel/sprites/ship2/ship25.ppm -share/apps/kspaceduel/sprites/ship2/ship26.pbm -share/apps/kspaceduel/sprites/ship2/ship26.ppm -share/apps/kspaceduel/sprites/ship2/ship27.pbm -share/apps/kspaceduel/sprites/ship2/ship27.ppm -share/apps/kspaceduel/sprites/ship2/ship28.pbm -share/apps/kspaceduel/sprites/ship2/ship28.ppm -share/apps/kspaceduel/sprites/ship2/ship29.pbm -share/apps/kspaceduel/sprites/ship2/ship29.ppm -share/apps/kspaceduel/sprites/ship2/ship30.pbm -share/apps/kspaceduel/sprites/ship2/ship30.ppm -share/apps/kspaceduel/sprites/ship2/ship31.pbm -share/apps/kspaceduel/sprites/ship2/ship31.ppm -share/apps/kspaceduel/sprites/ship2/ship32.pbm -share/apps/kspaceduel/sprites/ship2/ship32.ppm -share/apps/kspaceduel/sprites/ship2/ship33.pbm -share/apps/kspaceduel/sprites/ship2/ship33.ppm -share/apps/kspaceduel/sprites/ship2/ship34.pbm -share/apps/kspaceduel/sprites/ship2/ship34.ppm -share/apps/kspaceduel/sprites/ship2/ship35.pbm -share/apps/kspaceduel/sprites/ship2/ship35.ppm -share/apps/kspaceduel/sprites/ship2/ship36.pbm -share/apps/kspaceduel/sprites/ship2/ship36.ppm -share/apps/kspaceduel/sprites/ship2/ship37.pbm -share/apps/kspaceduel/sprites/ship2/ship37.ppm -share/apps/kspaceduel/sprites/ship2/ship38.pbm -share/apps/kspaceduel/sprites/ship2/ship38.ppm -share/apps/kspaceduel/sprites/ship2/ship39.pbm -share/apps/kspaceduel/sprites/ship2/ship39.ppm -share/apps/kspaceduel/sprites/ship2/ship40.pbm -share/apps/kspaceduel/sprites/ship2/ship40.ppm -share/apps/kspaceduel/sprites/ship2/ship41.pbm -share/apps/kspaceduel/sprites/ship2/ship41.ppm -share/apps/kspaceduel/sprites/ship2/ship42.pbm -share/apps/kspaceduel/sprites/ship2/ship42.ppm -share/apps/kspaceduel/sprites/ship2/ship43.pbm -share/apps/kspaceduel/sprites/ship2/ship43.ppm -share/apps/kspaceduel/sprites/ship2/ship44.pbm -share/apps/kspaceduel/sprites/ship2/ship44.ppm -share/apps/kspaceduel/sprites/ship2/ship45.pbm -share/apps/kspaceduel/sprites/ship2/ship45.ppm -share/apps/kspaceduel/sprites/ship2/ship46.pbm -share/apps/kspaceduel/sprites/ship2/ship46.ppm -share/apps/kspaceduel/sprites/ship2/ship47.pbm -share/apps/kspaceduel/sprites/ship2/ship47.ppm -share/apps/kspaceduel/sprites/ship2/ship48.pbm -share/apps/kspaceduel/sprites/ship2/ship48.ppm -share/apps/kspaceduel/sprites/ship2/ship49.pbm -share/apps/kspaceduel/sprites/ship2/ship49.ppm -share/apps/kspaceduel/sprites/ship2/ship50.pbm -share/apps/kspaceduel/sprites/ship2/ship50.ppm -share/apps/kspaceduel/sprites/ship2/ship51.pbm -share/apps/kspaceduel/sprites/ship2/ship51.ppm -share/apps/kspaceduel/sprites/ship2/ship52.pbm -share/apps/kspaceduel/sprites/ship2/ship52.ppm -share/apps/kspaceduel/sprites/ship2/ship53.pbm -share/apps/kspaceduel/sprites/ship2/ship53.ppm -share/apps/kspaceduel/sprites/ship2/ship54.pbm -share/apps/kspaceduel/sprites/ship2/ship54.ppm -share/apps/kspaceduel/sprites/ship2/ship55.pbm -share/apps/kspaceduel/sprites/ship2/ship55.ppm -share/apps/kspaceduel/sprites/ship2/ship56.pbm -share/apps/kspaceduel/sprites/ship2/ship56.ppm -share/apps/kspaceduel/sprites/ship2/ship57.pbm -share/apps/kspaceduel/sprites/ship2/ship57.ppm -share/apps/kspaceduel/sprites/ship2/ship58.pbm -share/apps/kspaceduel/sprites/ship2/ship58.ppm -share/apps/kspaceduel/sprites/ship2/ship59.pbm -share/apps/kspaceduel/sprites/ship2/ship59.ppm -share/apps/kspaceduel/sprites/ship2/ship60.pbm -share/apps/kspaceduel/sprites/ship2/ship60.ppm -share/apps/kspaceduel/sprites/ship2/ship61.pbm -share/apps/kspaceduel/sprites/ship2/ship61.ppm -share/apps/kspaceduel/sprites/ship2/ship62.pbm -share/apps/kspaceduel/sprites/ship2/ship62.ppm -share/apps/kspaceduel/sprites/ship2/ship63.pbm -share/apps/kspaceduel/sprites/ship2/ship63.ppm -share/apps/kspaceduel/sprites/ship2/ship64.pbm -share/apps/kspaceduel/sprites/ship2/ship64.ppm -share/apps/kspaceduel/sprites/sun/sun.pbm -share/apps/kspaceduel/sprites/sun/sun.ppm -share/apps/ktron/ktronui.rc -share/apps/ktuberling/ktuberlingui.rc -share/apps/ktuberling/museum/cool.tuberling -share/apps/ktuberling/museum/dali.tuberling -share/apps/ktuberling/museum/einstein.tuberling -share/apps/ktuberling/museum/fly.tuberling -share/apps/ktuberling/museum/grandpa.tuberling -share/apps/ktuberling/museum/idiot.tuberling -share/apps/ktuberling/museum/miss.tuberling -share/apps/ktuberling/museum/picasso.tuberling -share/apps/ktuberling/museum/serious.tuberling -share/apps/ktuberling/pics/gameboard.xpm -share/apps/ktuberling/pics/layout.txt -share/apps/ktuberling/pics/masks.xpm -share/apps/ktuberling/sounds/en/badge.wav -share/apps/ktuberling/sounds/en/bow.wav -share/apps/ktuberling/sounds/en/cigar.wav -share/apps/ktuberling/sounds/en/ear.wav -share/apps/ktuberling/sounds/en/earring.wav -share/apps/ktuberling/sounds/en/eye.wav -share/apps/ktuberling/sounds/en/eyebrow.wav -share/apps/ktuberling/sounds/en/hat.wav -share/apps/ktuberling/sounds/en/moustache.wav -share/apps/ktuberling/sounds/en/mouth.wav -share/apps/ktuberling/sounds/en/nose.wav -share/apps/ktuberling/sounds/en/spectacles.wav -share/apps/ktuberling/sounds/en/sunglasses.wav -share/apps/ktuberling/sounds/en/tuberling.wav -share/apps/ktuberling/sounds/en/watch.wav -share/apps/kwin4/grafix/aboute.png -share/apps/kwin4/grafix/arrow.png -share/apps/kwin4/grafix/arrow_red.png -share/apps/kwin4/grafix/arrow_yellow.png -share/apps/kwin4/grafix/background.png -share/apps/kwin4/grafix/board.png -share/apps/kwin4/grafix/empty.png -share/apps/kwin4/grafix/hint.png -share/apps/kwin4/grafix/red.png -share/apps/kwin4/grafix/win4about.png -share/apps/kwin4/grafix/yellow.png -share/apps/kwin4/kwin4ui.rc -share/apps/lskat/grafix/400000.png -share/apps/lskat/grafix/400001.png -share/apps/lskat/grafix/400002.png -share/apps/lskat/grafix/400003.png -share/apps/lskat/grafix/400004.png -share/apps/lskat/grafix/400005.png -share/apps/lskat/grafix/400006.png -share/apps/lskat/grafix/400007.png -share/apps/lskat/grafix/400008.png -share/apps/lskat/grafix/400009.png -share/apps/lskat/grafix/400010.png -share/apps/lskat/grafix/400011.png -share/apps/lskat/grafix/400012.png -share/apps/lskat/grafix/400013.png -share/apps/lskat/grafix/400014.png -share/apps/lskat/grafix/400015.png -share/apps/lskat/grafix/400016.png -share/apps/lskat/grafix/400017.png -share/apps/lskat/grafix/400018.png -share/apps/lskat/grafix/400019.png -share/apps/lskat/grafix/400020.png -share/apps/lskat/grafix/400021.png -share/apps/lskat/grafix/400022.png -share/apps/lskat/grafix/400023.png -share/apps/lskat/grafix/400024.png -share/apps/lskat/grafix/background.png -share/apps/lskat/grafix/deck1.png -share/apps/lskat/grafix/deck2.png -share/apps/lskat/grafix/deck3.png -share/apps/lskat/grafix/deck4.png -share/apps/lskat/grafix/t1.png -share/apps/lskat/grafix/t2.png -share/apps/lskat/grafix/t3.png -share/apps/lskat/grafix/t4.png -share/apps/lskat/grafix/t5.png -share/apps/lskat/grafix/tback.png -share/apps/lskat/grafix/type1.png -share/apps/lskat/grafix/type2.png -share/apps/lskat/grafix/type3.png -share/apps/lskat/lskatui.rc -share/doc/HTML/en/kabalone/common -share/doc/HTML/en/kabalone/index.cache.bz2 -share/doc/HTML/en/kabalone/index.docbook -share/doc/HTML/en/kasteroids/common -share/doc/HTML/en/kasteroids/fuel.png -share/doc/HTML/en/kasteroids/index.cache.bz2 -share/doc/HTML/en/kasteroids/index.docbook -share/doc/HTML/en/katomic/common -share/doc/HTML/en/katomic/index.cache.bz2 -share/doc/HTML/en/katomic/index.docbook -share/doc/HTML/en/kbackgammon/board.png -share/doc/HTML/en/kbackgammon/common -share/doc/HTML/en/kbackgammon/index.cache.bz2 -share/doc/HTML/en/kbackgammon/index.docbook -share/doc/HTML/en/kbattleship/common -share/doc/HTML/en/kbattleship/index.cache.bz2 -share/doc/HTML/en/kbattleship/index.docbook -share/doc/HTML/en/kblackbox/common -share/doc/HTML/en/kblackbox/index.cache.bz2 -share/doc/HTML/en/kblackbox/index.docbook -share/doc/HTML/en/kblackbox/kblackboxtbar.png -share/doc/HTML/en/kfouleggs/common -share/doc/HTML/en/kfouleggs/index.cache.bz2 -share/doc/HTML/en/kfouleggs/index.docbook -share/doc/HTML/en/kjezz/common -share/doc/HTML/en/kjezz/index.cache.bz2 -share/doc/HTML/en/kjezz/index.docbook -share/doc/HTML/en/kjumpingcube/common -share/doc/HTML/en/kjumpingcube/index.cache.bz2 -share/doc/HTML/en/kjumpingcube/index.docbook -share/doc/HTML/en/klines/common -share/doc/HTML/en/klines/index.cache.bz2 -share/doc/HTML/en/klines/index.docbook -share/doc/HTML/en/kmines/common -share/doc/HTML/en/kmines/index.cache.bz2 -share/doc/HTML/en/kmines/index.docbook -share/doc/HTML/en/kmines/kmines1.png -share/doc/HTML/en/kmines/kmines2.png -share/doc/HTML/en/konquest/common -share/doc/HTML/en/konquest/index.cache.bz2 -share/doc/HTML/en/konquest/index.docbook -share/doc/HTML/en/kpat/clubs.png -share/doc/HTML/en/kpat/common -share/doc/HTML/en/kpat/diamonds.png -share/doc/HTML/en/kpat/hearts.png -share/doc/HTML/en/kpat/index.cache.bz2 -share/doc/HTML/en/kpat/index.docbook -share/doc/HTML/en/kpat/playfield.png -share/doc/HTML/en/kpat/spades.png -share/doc/HTML/en/kpoker/common -share/doc/HTML/en/kpoker/index.cache.bz2 -share/doc/HTML/en/kpoker/index.docbook -share/doc/HTML/en/kpoker/kpoker1.png -share/doc/HTML/en/kpoker/kpoker2.png -share/doc/HTML/en/kreversi/common -share/doc/HTML/en/kreversi/index.cache.bz2 -share/doc/HTML/en/kreversi/index.docbook -share/doc/HTML/en/kreversi/kreversi1.png -share/doc/HTML/en/ksame/common -share/doc/HTML/en/ksame/index.cache.bz2 -share/doc/HTML/en/ksame/index.docbook -share/doc/HTML/en/kshisen/common -share/doc/HTML/en/kshisen/index.cache.bz2 -share/doc/HTML/en/kshisen/index.docbook -share/doc/HTML/en/ksirtet/common -share/doc/HTML/en/ksirtet/index.cache.bz2 -share/doc/HTML/en/ksirtet/index.docbook -share/doc/HTML/en/ksnake/common -share/doc/HTML/en/ksnake/index.cache.bz2 -share/doc/HTML/en/ksnake/index.docbook -share/doc/HTML/en/ksokoban/common -share/doc/HTML/en/ksokoban/index.cache.bz2 -share/doc/HTML/en/ksokoban/index.docbook -share/doc/HTML/en/kspaceduel/common -share/doc/HTML/en/kspaceduel/index.cache.bz2 -share/doc/HTML/en/kspaceduel/index.docbook -share/doc/HTML/en/kspaceduel/kspaceduel1.png -share/doc/HTML/en/kspaceduel/kspaceduel2.png -share/doc/HTML/en/kspaceduel/kspaceduel3.png -share/doc/HTML/en/ktron/common -share/doc/HTML/en/ktron/index.cache.bz2 -share/doc/HTML/en/ktron/index.docbook -share/doc/HTML/en/ktuberling/button.new.png -share/doc/HTML/en/ktuberling/button.open.png -share/doc/HTML/en/ktuberling/button.print.png -share/doc/HTML/en/ktuberling/button.redo.png -share/doc/HTML/en/ktuberling/button.save.png -share/doc/HTML/en/ktuberling/button.undo.png -share/doc/HTML/en/ktuberling/common -share/doc/HTML/en/ktuberling/gameboard.png -share/doc/HTML/en/ktuberling/index.cache.bz2 -share/doc/HTML/en/ktuberling/index.docbook -share/doc/HTML/en/ktuberling/menu.edit.png -share/doc/HTML/en/ktuberling/menu.file.png -share/doc/HTML/en/ktuberling/menu.help.png -share/doc/HTML/en/ktuberling/menu.option.png -share/doc/HTML/en/ktuberling/menu.raw.png -share/doc/HTML/en/ktuberling/toolbar.png -share/doc/HTML/en/kwin4/common -share/doc/HTML/en/kwin4/index.cache.bz2 -share/doc/HTML/en/kwin4/index.docbook -share/doc/HTML/en/lskat/common -share/doc/HTML/en/lskat/index.cache.bz2 -share/doc/HTML/en/lskat/index.docbook -share/icons/hicolor/16x16/apps/kabalone.png -share/icons/hicolor/16x16/apps/kasteroids.png -share/icons/hicolor/16x16/apps/kbackgammon.png -share/icons/hicolor/16x16/apps/kbackgammon_engine.png -share/icons/hicolor/16x16/apps/kbattleship.png -share/icons/hicolor/16x16/apps/kblackbox.png -share/icons/hicolor/16x16/apps/kjezz.png -share/icons/hicolor/16x16/apps/kjumpingcube.png -share/icons/hicolor/16x16/apps/klines.png -share/icons/hicolor/16x16/apps/kmahjongg.png -share/icons/hicolor/16x16/apps/kmines.png -share/icons/hicolor/16x16/apps/konquest.png -share/icons/hicolor/16x16/apps/kpat.png -share/icons/hicolor/16x16/apps/kpoker.png -share/icons/hicolor/16x16/apps/kreversi.png -share/icons/hicolor/16x16/apps/ksame.png -share/icons/hicolor/16x16/apps/kshisen.png -share/icons/hicolor/16x16/apps/ksirtet.png -share/icons/hicolor/16x16/apps/ksmiletris.png -share/icons/hicolor/16x16/apps/ksnake.png -share/icons/hicolor/16x16/apps/ksokoban.png -share/icons/hicolor/16x16/apps/kspaceduel.png -share/icons/hicolor/16x16/apps/ktron.png -share/icons/hicolor/16x16/apps/kwin4.png -share/icons/hicolor/32x32/apps/kabalone.png -share/icons/hicolor/32x32/apps/kasteroids.png -share/icons/hicolor/32x32/apps/katomic.png -share/icons/hicolor/32x32/apps/kbackgammon.png -share/icons/hicolor/32x32/apps/kbackgammon_engine.png -share/icons/hicolor/32x32/apps/kbattleship.png -share/icons/hicolor/32x32/apps/kblackbox.png -share/icons/hicolor/32x32/apps/kjezz.png -share/icons/hicolor/32x32/apps/kjumpingcube.png -share/icons/hicolor/32x32/apps/klines.png -share/icons/hicolor/32x32/apps/kmahjongg.png -share/icons/hicolor/32x32/apps/kmines.png -share/icons/hicolor/32x32/apps/konquest.png -share/icons/hicolor/32x32/apps/kpat.png -share/icons/hicolor/32x32/apps/kpoker.png -share/icons/hicolor/32x32/apps/kreversi.png -share/icons/hicolor/32x32/apps/ksame.png -share/icons/hicolor/32x32/apps/kshisen.png -share/icons/hicolor/32x32/apps/ksirtet.png -share/icons/hicolor/32x32/apps/ksmiletris.png -share/icons/hicolor/32x32/apps/ksnake.png -share/icons/hicolor/32x32/apps/ksokoban.png -share/icons/hicolor/32x32/apps/kspaceduel.png -share/icons/hicolor/32x32/apps/ktron.png -share/icons/hicolor/32x32/apps/ktuberling.png -share/icons/hicolor/32x32/apps/kwin4.png -share/icons/hicolor/32x32/apps/lskat.png -share/icons/hicolor/48x48/apps/kabalone.png -share/icons/hicolor/48x48/apps/kasteroids.png -share/icons/hicolor/48x48/apps/kbackgammon.png -share/icons/hicolor/48x48/apps/kbackgammon_engine.png -share/icons/hicolor/48x48/apps/kblackbox.png -share/icons/hicolor/48x48/apps/kmahjongg.png -share/icons/hicolor/48x48/apps/kmines.png -share/icons/hicolor/48x48/apps/konquest.png -share/icons/hicolor/48x48/apps/kpat.png -share/icons/hicolor/48x48/apps/kpoker.png -share/icons/hicolor/48x48/apps/kreversi.png -share/icons/hicolor/48x48/apps/ksame.png -share/icons/hicolor/48x48/apps/kshisen.png -share/icons/hicolor/48x48/apps/ksirtet.png -share/icons/hicolor/48x48/apps/ksmiletris.png -share/icons/hicolor/48x48/apps/ksnake.png -share/icons/hicolor/48x48/apps/ksokoban.png -share/icons/hicolor/48x48/apps/kwin4.png -share/icons/hicolor/48x48/apps/lskat.png -share/icons/locolor/16x16/apps/kjezz.png -share/icons/locolor/16x16/apps/kspaceduel.png -share/icons/locolor/16x16/apps/lskat.png -share/icons/locolor/32x32/apps/kjezz.png -share/icons/locolor/32x32/apps/kspaceduel.png -share/icons/locolor/32x32/apps/lskat.png -@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/icons/hicolor/48x48/apps -@dirrm share/icons/hicolor/32x32/apps -@dirrm share/doc/HTML/en/lskat -@dirrm share/doc/HTML/en/kwin4 -@dirrm share/doc/HTML/en/ktuberling -@dirrm share/doc/HTML/en/ktron -@dirrm share/doc/HTML/en/kspaceduel -@dirrm share/doc/HTML/en/ksokoban -@dirrm share/doc/HTML/en/ksnake -@dirrm share/doc/HTML/en/ksirtet -@dirrm share/doc/HTML/en/kshisen -@dirrm share/doc/HTML/en/ksame -@dirrm share/doc/HTML/en/kreversi -@dirrm share/doc/HTML/en/kpoker -@dirrm share/doc/HTML/en/kpat -@dirrm share/doc/HTML/en/konquest -@dirrm share/doc/HTML/en/kmines -@dirrm share/doc/HTML/en/klines -@dirrm share/doc/HTML/en/kjumpingcube -@dirrm share/doc/HTML/en/kjezz -@dirrm share/doc/HTML/en/kfouleggs -@dirrm share/doc/HTML/en/kblackbox -@dirrm share/doc/HTML/en/kbattleship -@dirrm share/doc/HTML/en/kbackgammon -@dirrm share/doc/HTML/en/katomic -@dirrm share/doc/HTML/en/kasteroids -@dirrm share/doc/HTML/en/kabalone -@dirrm share/apps/lskat/grafix -@dirrm share/apps/lskat -@dirrm share/apps/kwin4/grafix -@dirrm share/apps/kwin4 -@dirrm share/apps/ktuberling/sounds/en -@dirrm share/apps/ktuberling/sounds -@dirrm share/apps/ktuberling/pics -@dirrm share/apps/ktuberling/museum -@dirrm share/apps/ktuberling -@dirrm share/apps/ktron -@dirrm share/apps/kspaceduel/sprites/sun -@dirrm share/apps/kspaceduel/sprites/ship2 -@dirrm share/apps/kspaceduel/sprites/ship1 -@dirrm share/apps/kspaceduel/sprites/powerups -@dirrm share/apps/kspaceduel/sprites/playerinfo -@dirrm share/apps/kspaceduel/sprites/explosion -@dirrm share/apps/kspaceduel/sprites -@dirrm share/apps/kspaceduel/icons/locolor/16x16/actions -@dirrm share/apps/kspaceduel/icons/locolor/16x16 -@dirrm share/apps/kspaceduel/icons/locolor -@dirrm share/apps/kspaceduel/icons/hicolor/32x32/actions -@dirrm share/apps/kspaceduel/icons/hicolor/32x32 -@dirrm share/apps/kspaceduel/icons/hicolor/22x22/actions -@dirrm share/apps/kspaceduel/icons/hicolor/22x22 -@dirrm share/apps/kspaceduel/icons/hicolor/16x16/actions -@dirrm share/apps/kspaceduel/icons/hicolor/16x16 -@dirrm share/apps/kspaceduel/icons/hicolor -@dirrm share/apps/kspaceduel/icons -@dirrm share/apps/kspaceduel -@dirrm share/apps/ksnake/pics -@dirrm share/apps/ksnake/levels -@dirrm share/apps/ksnake/backgrounds -@dirrm share/apps/ksnake -@dirrm share/apps/ksmiletris/sounds -@dirrm share/apps/ksmiletris/data -@dirrm share/apps/ksmiletris -@dirrm share/apps/ksirtet -@dirrm share/apps/kshisen -@dirrm share/apps/ksame -@dirrm share/apps/kreversi/sounds -@dirrm share/apps/kreversi/pics/background -@dirrm share/apps/kreversi/pics -@dirrm share/apps/kreversi -@dirrm share/apps/kpoker/sounds -@dirrm share/apps/kpoker -@dirrm share/apps/kpat -@dirrm share/apps/konquest/pics -@dirrm share/apps/konquest -@dirrm share/apps/kmines -@dirrm share/apps/kmahjongg/toolbar -@dirrm share/apps/kmahjongg/pics -@dirrm share/apps/kmahjongg -@dirrm share/apps/klines -@dirrm share/apps/kjumpingcube -@dirrm share/apps/kjezz/sounds -@dirrm share/apps/kjezz/pics -@dirrm share/apps/kjezz -@dirrm share/apps/kfouleggs -@dirrm share/apps/kdegames/pics -@dirrm share/apps/kdegames -@dirrm share/apps/kblackbox/pics -@dirrm share/apps/kblackbox -@dirrm share/apps/kbattleship/sounds -@dirrm share/apps/kbattleship/pictures -@dirrm share/apps/kbattleship -@dirrm share/apps/kbackgammon/sounds -@dirrm share/apps/kbackgammon/pics -@dirrm share/apps/kbackgammon -@dirrm share/apps/katomic/pics -@dirrm share/apps/katomic/levels/CVS -@dirrm share/apps/katomic/levels -@dirrm share/apps/katomic -@dirrm share/apps/kasteroids/sprites/ship -@dirrm share/apps/kasteroids/sprites/shield -@dirrm share/apps/kasteroids/sprites/rock3 -@dirrm share/apps/kasteroids/sprites/rock2 -@dirrm share/apps/kasteroids/sprites/rock1 -@dirrm share/apps/kasteroids/sprites/powerups -@dirrm share/apps/kasteroids/sprites/missile -@dirrm share/apps/kasteroids/sprites/exhaust -@dirrm share/apps/kasteroids/sprites/bits -@dirrm share/apps/kasteroids/sprites -@dirrm share/apps/kasteroids/sounds -@dirrm share/apps/kasteroids -@dirrm share/apps/kabalone/toolbar -@dirrm share/apps/kabalone -@dirrm share/apps/carddecks/decks -@dirrm share/apps/carddecks/cards-xskat-french -@dirrm share/apps/carddecks/cards-warwick -@dirrm share/apps/carddecks/cards-spaced -@dirrm share/apps/carddecks/cards-penguins -@dirrm share/apps/carddecks/cards-konqi-modern -@dirrm share/apps/carddecks/cards-hard-a-port -@dirrm share/apps/carddecks/cards-gdkcard-bonded -@dirrm share/apps/carddecks/cards-dondorf-whist-b -@dirrm share/apps/carddecks/cards-default -@dirrm share/apps/carddecks/cards-aisleriot -@dirrm share/apps/carddecks -@dirrm share/applnk/Toys -@dirrm share/applnk/Games/TacticStrategy -@dirrm share/applnk/Games/Card -@dirrm share/applnk/Games/Board -@dirrm share/applnk/Games/Arcade -@dirrm share/applnk/Games -@dirrm share/applnk diff --git a/graphics/kdegraphics2/Makefile b/graphics/kdegraphics2/Makefile deleted file mode 100644 index 7a4e0c2..0000000 --- a/graphics/kdegraphics2/Makefile +++ /dev/null @@ -1,75 +0,0 @@ -# New ports collection makefile for: KDE2 Graphics -# Date created: Saturday 2 September 2000 -# Whom: Will Andrews <will@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= kdegraphics -PORTVERSION= 2.2.2 -PORTREVISION= 2 -CATEGORIES= graphics kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= Attic/${PORTVERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 -RUN_DEPENDS= gs:${PORTSDIR}/print/ghostscript-gnu - -USE_KDELIBS_VER=2 -USE_BZIP2= yes -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -USE_GMAKE= yes -CONFIGURE_ARGS+=--without-kamera - - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 500029 -_NO_KDE_OBJPRELINK=yes -.endif - -.include "${.CURDIR}/../../x11/kde2/Makefile.kde" - -# temporarily disable kamera, it requires gphoto2 -PLIST_SUB+= KAMERA="@comment " - -SANE_CONFIG= ${LOCALBASE}/bin/sane-config - -.if exists(${SANE_CONFIG}) -WITH_SANE= yes -.endif - -.if defined(WITH_SANE) && ${WITH_SANE} == yes -LIB_DEPENDS+= sane.1:${PORTSDIR}/graphics/sane-backends -PLIST_SUB+= SANE="" -.else -PLIST_SUB+= SANE="@comment " -pre-everything:: - @${ECHO_MSG} - @${ECHO_MSG} "If you want to compile with scanner (SANE) support," - @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_SANE=yes\"" - @${ECHO_MSG} -.endif - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - cd ${WRKSRC} && env PATH=${WRKSRC}/auto-bin:$$PATH \ - ${GMAKE} -f Makefile.cvs - ${PERL} -pi -e "s@libkscan_la_LIBADD =@libkscan_la_LIBADD= -lintl@g" ${WRKSRC}/libkscan/Makefile.in - ${PERL} -pi -e "s@libkcm_kamera_la_LIBADD =@libkcm_kamera_la_LIBADD= -lintl@g" ${WKRSRC}/kamera/kcontrol/Makefile.in - ${PERL} -pi -e "s@name = item@name=(char*)item@g" ${WRKSRC}/kamera/kcontrol/kamera.cpp - find ${WRKSRC} -name Makefile.in | xargs ${PERL} -pi -e \ - "s@GPHOTO2_LIBS =@GPHOTO2_LIBS= -lintl@g" - -.include <bsd.port.post.mk> diff --git a/graphics/kdegraphics2/distinfo b/graphics/kdegraphics2/distinfo deleted file mode 100644 index 2369e2c..0000000 --- a/graphics/kdegraphics2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/kdegraphics-2.2.2.tar.bz2) = b9341505c6b9de8f018dd9d1896356e9 diff --git a/graphics/kdegraphics2/files/patch-font.cpp b/graphics/kdegraphics2/files/patch-font.cpp deleted file mode 100644 index 6c124a4..0000000 --- a/graphics/kdegraphics2/files/patch-font.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- kdvi/font.cpp Fri Nov 9 21:20:17 2001 -+++ kdvi/font.cpp.new Mon Dec 10 22:48:01 2001 -@@ -3,7 +3,6 @@ - - #include <kdebug.h> - #include <klocale.h> --#include <malloc.h> - #include <qapplication.h> - #include <qfile.h> - #include <stdio.h> diff --git a/graphics/kdegraphics2/pkg-comment b/graphics/kdegraphics2/pkg-comment deleted file mode 100644 index 186230f..0000000 --- a/graphics/kdegraphics2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Utilities for the KDE integrated X11 desktop diff --git a/graphics/kdegraphics2/pkg-descr b/graphics/kdegraphics2/pkg-descr deleted file mode 100644 index 90ae457..0000000 --- a/graphics/kdegraphics2/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -KDE provides an integrated X11 based environment, much like CDE. diff --git a/graphics/kdegraphics2/pkg-plist b/graphics/kdegraphics2/pkg-plist deleted file mode 100644 index 13fa5a8..0000000 --- a/graphics/kdegraphics2/pkg-plist +++ /dev/null @@ -1,255 +0,0 @@ -bin/kcolorchooser -bin/kcoloredit -bin/kdvi -bin/kfax -bin/kfract -bin/kghostview -bin/kiconedit -%%SANE%%bin/kooka -bin/kpaint -bin/kruler -bin/ksnapshot -bin/kview -bin/kviewshell -%%SANE%%include/devselector.h -%%SANE%%include/dispgamma.h -%%SANE%%include/gammadialog.h -%%SANE%%include/img_canvas.h -%%SANE%%include/imgscaledialog.h -%%SANE%%include/kgammatable.h -%%SANE%%include/kscandevice.h -%%SANE%%include/kscanoption.h -%%SANE%%include/kscanoptset.h -%%SANE%%include/kscanslider.h -%%SANE%%include/massscandialog.h -%%SANE%%include/previewer.h -%%SANE%%include/scanparams.h -%%SANE%%include/scansourcedialog.h -lib/kcolorchooser.la -lib/kcolorchooser.so -%%KAMERA%%lib/kio_kamera.la -%%KAMERA%%lib/kio_kamera.so -lib/kview.la -lib/kview.so -%%KAMERA%%lib/libkcm_kamera.la -%%KAMERA%%lib/libkcm_kamera.so -lib/libkdvi.la -lib/libkdvi.so -lib/libkfax.la -lib/libkfax.so -lib/libkghostview.la -lib/libkghostview.so -lib/libkghostview.so.1 -lib/libkmultipage.la -lib/libkmultipage.so -lib/libkmultipage.so.0 -lib/libkpagetest.la -lib/libkpagetest.so -%%SANE%%lib/libkscan.la -%%SANE%%lib/libkscan.so -%%SANE%%lib/libkscan.so.1 -lib/libkviewerpart.la -lib/libkviewerpart.so -lib/libkviewpart.la -lib/libkviewpart.so -share/applnk/Graphics/kcolorchooser.desktop -share/applnk/Graphics/kcoloredit.desktop -share/applnk/Graphics/kdvi.desktop -share/applnk/Graphics/kfax.desktop -share/applnk/Graphics/kfract.desktop -share/applnk/Graphics/kghostview.desktop -share/applnk/Graphics/kiconedit.desktop -share/applnk/Graphics/kpaint.desktop -share/applnk/Graphics/kruler.desktop -share/applnk/Graphics/ksnapshot.desktop -share/applnk/Graphics/kview.desktop -%%KAMERA%%share/applnk/Settings/Peripherals/kamera.desktop -%%SANE%%share/applnk/Utilities/kooka.desktop -share/apps/kdvi/kdvi_part.rc -share/apps/kdvi/toolbar/forwpage.xpm -share/apps/kdvi/toolbar/largetext.xpm -share/apps/kdvi/toolbar/smalltext.xpm -share/apps/kfax/kfax_part.rc -share/apps/kfax/pics/kfax.tif -share/apps/kfax/pics/kfaxlogo.xpm -share/apps/kfract/kfract.rc -share/apps/kghostview/kghostviewui.rc -share/apps/kghostview/kgv_part.rc -share/apps/kghostview/pdf_sec.ps -share/apps/kiconedit/pics/compressed.png -share/apps/kiconedit/pics/source.png -share/apps/kiconedit/pics/standard.png -share/apps/kiconedit/toolbar/aim-cursor.xpm -share/apps/kiconedit/toolbar/aim.png -share/apps/kiconedit/toolbar/areaselect.png -share/apps/kiconedit/toolbar/circle.png -share/apps/kiconedit/toolbar/ellipse.png -share/apps/kiconedit/toolbar/eraser-cursor.xpm -share/apps/kiconedit/toolbar/fileclose.png -share/apps/kiconedit/toolbar/filledcircle.png -share/apps/kiconedit/toolbar/filledellipse.png -share/apps/kiconedit/toolbar/filledrectangle.png -share/apps/kiconedit/toolbar/flood-cursor.xpm -share/apps/kiconedit/toolbar/flood.png -share/apps/kiconedit/toolbar/grayscale.png -share/apps/kiconedit/toolbar/grid.png -share/apps/kiconedit/toolbar/kdepalette.png -share/apps/kiconedit/toolbar/line.png -share/apps/kiconedit/toolbar/newwin.png -share/apps/kiconedit/toolbar/paintbrush-cursor.xpm -share/apps/kiconedit/toolbar/paintbrush.png -share/apps/kiconedit/toolbar/pointer.png -share/apps/kiconedit/toolbar/rectangle.png -share/apps/kiconedit/toolbar/selectcircle.png -share/apps/kiconedit/toolbar/selectrect.png -share/apps/kiconedit/toolbar/spraycan-cursor.xpm -share/apps/kiconedit/toolbar/spraycan.png -share/apps/kiconedit/toolbar/transform.png -%%SANE%%share/apps/kooka/kookaui.rc -%%SANE%%share/apps/kooka/pics/mirror-both.png -%%SANE%%share/apps/kooka/pics/mirror-horiz.png -%%SANE%%share/apps/kooka/pics/mirror-vert.png -%%SANE%%share/apps/kooka/pics/newfromselect.png -%%SANE%%share/apps/kooka/pics/ocr-select.png -%%SANE%%share/apps/kooka/pics/ocr.png -%%SANE%%share/apps/kooka/pics/scaleorig.png -%%SANE%%share/apps/kooka/pics/scaletoheight.png -%%SANE%%share/apps/kooka/pics/scaletowidth.png -share/apps/kpaint/kpaint.rc -share/apps/kpaint/toolbar/areaselect.xpm -share/apps/kpaint/toolbar/brush.xpm -share/apps/kpaint/toolbar/circle.xpm -share/apps/kpaint/toolbar/ellipse.xpm -share/apps/kpaint/toolbar/largetext.xpm -share/apps/kpaint/toolbar/line.xpm -share/apps/kpaint/toolbar/pen.xpm -share/apps/kpaint/toolbar/rectangle.xpm -share/apps/kpaint/toolbar/roundangle.xpm -share/apps/kpaint/toolbar/spraycan.xpm -share/apps/kruler/eventsrc -share/apps/kruler/kruler-east.png -share/apps/kruler/kruler-north.png -share/apps/kruler/kruler-south.png -share/apps/kruler/kruler-west.png -share/apps/kruler/move.wav -share/apps/kview/kview_part.rc -share/apps/kview/kview_popup.rc -share/apps/kview/kviewui.rc -share/apps/kview/toolbar/rotate.png -share/apps/kviewerpart/kviewerpart.rc -share/apps/kviewshell/kviewshell.rc -share/apps/kviewshell/paper-formats -share/doc/HTML/en/kdvi/KDVI-features.dvi -share/doc/HTML/en/kdvi/KDVI-features.tex -share/doc/HTML/en/kdvi/aboutkde.ps -share/doc/HTML/en/kdvi/common -share/doc/HTML/en/kdvi/index.cache.bz2 -share/doc/HTML/en/kdvi/index.docbook -share/doc/HTML/en/kdvi/optionrequester1.png -share/doc/HTML/en/kdvi/optionrequester2.png -share/doc/HTML/en/kfract/common -share/doc/HTML/en/kfract/index.cache.bz2 -share/doc/HTML/en/kfract/index.docbook -share/doc/HTML/en/kfract/kfract.png -share/doc/HTML/en/kghostview/common -share/doc/HTML/en/kghostview/index.cache.bz2 -share/doc/HTML/en/kghostview/index.docbook -share/doc/HTML/en/kiconedit/common -share/doc/HTML/en/kiconedit/index.cache.bz2 -share/doc/HTML/en/kiconedit/index.docbook -share/doc/HTML/en/kpaint/common -share/doc/HTML/en/kpaint/index.cache.bz2 -share/doc/HTML/en/kpaint/index.docbook -share/doc/HTML/en/kruler/common -share/doc/HTML/en/kruler/index.cache.bz2 -share/doc/HTML/en/kruler/index.docbook -share/doc/HTML/en/ksnapshot/common -share/doc/HTML/en/ksnapshot/index.cache.bz2 -share/doc/HTML/en/ksnapshot/index.docbook -share/doc/HTML/en/ksnapshot/preview.png -share/doc/HTML/en/ksnapshot/window.png -share/doc/HTML/en/kview/common -share/doc/HTML/en/kview/index.cache.bz2 -share/doc/HTML/en/kview/index.docbook -share/doc/HTML/en/kview/snapshot1.png -share/doc/HTML/en/kview/snapshot2.png -share/doc/HTML/en/kview/snapshot3.png -share/doc/HTML/en/kview/snapshot4.png -share/doc/HTML/en/kview/snapshot5.png -share/doc/HTML/en/kview/snapshot6.png -share/doc/HTML/en/kview/snapshot7.png -share/doc/HTML/en/kview/snapshot8.png -share/doc/HTML/en/kview/snapshot9.png -%%SANE%%share/icons/hicolor/16x16/actions/palette_color.png -%%SANE%%share/icons/hicolor/16x16/actions/palette_gray.png -%%SANE%%share/icons/hicolor/16x16/actions/palette_halftone.png -%%SANE%%share/icons/hicolor/16x16/actions/palette_lineart.png -share/icons/hicolor/16x16/apps/kcoloredit.png -share/icons/hicolor/16x16/apps/kdvi.png -share/icons/hicolor/16x16/apps/kfax.png -share/icons/hicolor/16x16/apps/kfract.png -share/icons/hicolor/16x16/apps/kghostview.png -share/icons/hicolor/16x16/apps/kiconedit.png -share/icons/hicolor/16x16/apps/kpaint.png -share/icons/hicolor/16x16/apps/kruler.png -share/icons/hicolor/16x16/apps/ksnapshot.png -share/icons/hicolor/16x16/apps/kview.png -share/icons/hicolor/32x32/apps/kcoloredit.png -share/icons/hicolor/32x32/apps/kdvi.png -share/icons/hicolor/32x32/apps/kfax.png -share/icons/hicolor/32x32/apps/kfract.png -share/icons/hicolor/32x32/apps/kghostview.png -share/icons/hicolor/32x32/apps/kiconedit.png -share/icons/hicolor/32x32/apps/kpaint.png -share/icons/hicolor/32x32/apps/kruler.png -share/icons/hicolor/32x32/apps/ksnapshot.png -share/icons/hicolor/32x32/apps/kview.png -share/icons/hicolor/48x48/apps/kdvi.png -share/icons/hicolor/48x48/apps/kfax.png -share/icons/hicolor/48x48/apps/kfract.png -share/icons/hicolor/48x48/apps/kghostview.png -share/icons/hicolor/48x48/apps/kiconedit.png -share/icons/hicolor/48x48/apps/kpaint.png -share/icons/hicolor/48x48/apps/kruler.png -share/icons/hicolor/48x48/apps/ksnapshot.png -share/icons/hicolor/48x48/apps/kview.png -share/icons/locolor/16x16/apps/kcoloredit.png -share/icons/locolor/32x32/apps/kcoloredit.png -%%KAMERA%%share/services/kamera.protocol -%%SANE%%share/services/scanservice.desktop -@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/icons/hicolor/48x48/apps -@dirrm share/icons/hicolor/32x32/apps -@dirrm share/doc/HTML/en/kview -@dirrm share/doc/HTML/en/ksnapshot -@dirrm share/doc/HTML/en/kruler -@dirrm share/doc/HTML/en/kpaint -@dirrm share/doc/HTML/en/kiconedit -@dirrm share/doc/HTML/en/kghostview -@dirrm share/doc/HTML/en/kfract -@dirrm share/doc/HTML/en/kdvi -@dirrm share/apps/kviewshell -@dirrm share/apps/kviewerpart -@dirrm share/apps/kview/toolbar -@dirrm share/apps/kview -@dirrm share/apps/kruler -@dirrm share/apps/kpaint/toolbar -@dirrm share/apps/kpaint -%%SANE%%@dirrm share/apps/kooka/pics -%%SANE%%@dirrm share/apps/kooka -@dirrm share/apps/kiconedit/toolbar -@dirrm share/apps/kiconedit/pics -@dirrm share/apps/kiconedit -@dirrm share/apps/kghostview -@dirrm share/apps/kfract -@dirrm share/apps/kfax/pics -@dirrm share/apps/kfax -@dirrm share/apps/kdvi/toolbar -@dirrm share/apps/kdvi -@dirrm share/applnk/Utilities -@dirrm share/applnk/Graphics -@dirrm share/applnk diff --git a/misc/kde2-i18n/Makefile b/misc/kde2-i18n/Makefile deleted file mode 100644 index 2f3743b..0000000 --- a/misc/kde2-i18n/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -# New ports collection makefile for: kde2-i18n -# Date created: 1 March 2001 -# Whom: Dmitry Sivachenko <demon@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= 2.2.2 -PORTREVISION= 4 -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= Attic/${PORTVERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER?= kde@FreeBSD.org - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 -BUILD_DEPENDS+= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=2 -USE_BZIP2= yes -USE_GMAKE= yes - -GNU_CONFIGURE= yes - -PLIST= ${WRKDIR}/PLIST -SCRIPTS_ENV+= PLIST=${PLIST} - -.include <bsd.port.pre.mk> - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - cd ${WRKSRC} && env PATH=${WRKSRC}/auto-bin:$$PATH \ - ${GMAKE} -f Makefile.cvs - @${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/Configure - -.include <bsd.port.post.mk> diff --git a/misc/kde2-i18n/distinfo b/misc/kde2-i18n/distinfo deleted file mode 100644 index b0328cc..0000000 --- a/misc/kde2-i18n/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/kde-i18n-2.2.2.tar.bz2) = 69d54ce59f459c3d428f2946239d1ff2 diff --git a/misc/kde2-i18n/files/patch-zh_CN-messages-ppdtranslations.po b/misc/kde2-i18n/files/patch-zh_CN-messages-ppdtranslations.po deleted file mode 100644 index f321edd..0000000 --- a/misc/kde2-i18n/files/patch-zh_CN-messages-ppdtranslations.po +++ /dev/null @@ -1,27 +0,0 @@ ---- zh_CN.GB2312/messages/ppdtranslations.po.orig Wed Jun 19 16:55:59 2002 -+++ zh_CN.GB2312/messages/ppdtranslations.po Wed Jun 19 16:57:03 2002 -@@ -1318,24 +1318,6 @@ - msgid "0<A1>" - msgstr "" - --msgid "15<A1>" --msgstr "" -- --msgid "30<A1>" --msgstr "" -- --msgid "45<A1>" --msgstr "" -- --msgid "60<A1>" --msgstr "" -- --msgid "75<A1>" --msgstr "" -- --msgid "90<A1>" --msgstr "" -- - msgid "Thin Outline" - msgstr "" - diff --git a/misc/kde2-i18n/files/patch-zh_TW-messages-kdegraphics-kpixmap2bitmap.po b/misc/kde2-i18n/files/patch-zh_TW-messages-kdegraphics-kpixmap2bitmap.po deleted file mode 100644 index 3c4c3e6..0000000 --- a/misc/kde2-i18n/files/patch-zh_TW-messages-kdegraphics-kpixmap2bitmap.po +++ /dev/null @@ -1,17 +0,0 @@ ---- zh_TW.Big5/messages/kdegraphics/kpixmap2bitmap.po.orig Wed Jun 19 16:57:53 2002 -+++ zh_TW.Big5/messages/kdegraphics/kpixmap2bitmap.po Wed Jun 19 16:58:21 2002 -@@ -73,14 +73,6 @@ - msgid "Close Image" - msgstr "關閉影像" - --#: toplevel.cpp:65 --msgid "Zoom In" --msgstr "拉近" -- --#: toplevel.cpp:68 --msgid "Zoom Out" --msgstr "拉遠" -- - #: toplevel.cpp:76 - msgid "Pixmap2Bitmaps (C)D.M. Duley<mosfet@kde.org>" - msgstr "Pixmap2Bitmaps (C)D.M. Duley<mosfet@kde.org>" diff --git a/misc/kde2-i18n/files/pkg-plist.sub b/misc/kde2-i18n/files/pkg-plist.sub deleted file mode 100644 index ef7e298..0000000 --- a/misc/kde2-i18n/files/pkg-plist.sub +++ /dev/null @@ -1,3 +0,0 @@ -@dirrm share/apps/ktuberling/sounds -@dirrm share/apps/ktuberling -@dirrm share/apps/amor diff --git a/misc/kde2-i18n/pkg-comment b/misc/kde2-i18n/pkg-comment deleted file mode 100644 index c24e730..0000000 --- a/misc/kde2-i18n/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Localized messages and documentation for KDE2 diff --git a/misc/kde2-i18n/pkg-descr b/misc/kde2-i18n/pkg-descr deleted file mode 100644 index 608caea..0000000 --- a/misc/kde2-i18n/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE2. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde2-i18n/pkg-plist b/misc/kde2-i18n/pkg-plist deleted file mode 100644 index a27d902..0000000 --- a/misc/kde2-i18n/pkg-plist +++ /dev/null @@ -1,16319 +0,0 @@ -share/apps/amor/tips-fr -share/apps/amor/tips-ro -share/apps/ktuberling/sounds/da/briller.wav -share/apps/ktuberling/sounds/da/cigar.wav -share/apps/ktuberling/sounds/da/hat.wav -share/apps/ktuberling/sounds/da/kartoffelfyr.wav -share/apps/ktuberling/sounds/da/mund.wav -share/apps/ktuberling/sounds/da/naese.wav -share/apps/ktuberling/sounds/da/oeje.wav -share/apps/ktuberling/sounds/da/oejenbryn.wav -share/apps/ktuberling/sounds/da/oere.wav -share/apps/ktuberling/sounds/da/oerering.wav -share/apps/ktuberling/sounds/da/overskaeg.wav -share/apps/ktuberling/sounds/da/politiskilt.wav -share/apps/ktuberling/sounds/da/slips.wav -share/apps/ktuberling/sounds/da/sloejfe.wav -share/apps/ktuberling/sounds/da/solbriller.wav -share/apps/ktuberling/sounds/da/ur.wav -share/apps/ktuberling/sounds/fr/bouche.wav -share/apps/ktuberling/sounds/fr/boucle-d-oreille.wav -share/apps/ktuberling/sounds/fr/chapeau.wav -share/apps/ktuberling/sounds/fr/cigare.wav -share/apps/ktuberling/sounds/fr/lunettes-de-soleil.wav -share/apps/ktuberling/sounds/fr/lunettes.wav -share/apps/ktuberling/sounds/fr/medaille.wav -share/apps/ktuberling/sounds/fr/monsieur-patate.wav -share/apps/ktuberling/sounds/fr/montre.wav -share/apps/ktuberling/sounds/fr/moustache.wav -share/apps/ktuberling/sounds/fr/nez.wav -share/apps/ktuberling/sounds/fr/noeud-papillon.wav -share/apps/ktuberling/sounds/fr/oeil.wav -share/apps/ktuberling/sounds/fr/oreille.wav -share/apps/ktuberling/sounds/fr/sourcil.wav -share/apps/ktuberling/sounds/nl/aardappelmannetje.wav -share/apps/ktuberling/sounds/nl/bril.wav -share/apps/ktuberling/sounds/nl/hoed.wav -share/apps/ktuberling/sounds/nl/horloge.wav -share/apps/ktuberling/sounds/nl/mond.wav -share/apps/ktuberling/sounds/nl/neus.wav -share/apps/ktuberling/sounds/nl/oog.wav -share/apps/ktuberling/sounds/nl/oor.wav -share/apps/ktuberling/sounds/nl/oorbel.wav -share/apps/ktuberling/sounds/nl/sigaar.wav -share/apps/ktuberling/sounds/nl/snor.wav -share/apps/ktuberling/sounds/nl/ster.wav -share/apps/ktuberling/sounds/nl/strik.wav -share/apps/ktuberling/sounds/nl/wenkbrauw.wav -share/apps/ktuberling/sounds/nl/zonnebril.wav -share/apps/ktuberling/sounds/ro/ceas.wav -share/apps/ktuberling/sounds/ro/cercel.wav -share/apps/ktuberling/sounds/ro/gura.wav -share/apps/ktuberling/sounds/ro/insigna.wav -share/apps/ktuberling/sounds/ro/mustata.wav -share/apps/ktuberling/sounds/ro/nas.wav -share/apps/ktuberling/sounds/ro/ochelari.wav -share/apps/ktuberling/sounds/ro/ochelaridesoare.wav -share/apps/ktuberling/sounds/ro/ochi.wav -share/apps/ktuberling/sounds/ro/palarie.wav -share/apps/ktuberling/sounds/ro/papion.wav -share/apps/ktuberling/sounds/ro/sprinceana.wav -share/apps/ktuberling/sounds/ro/tigara.wav -share/apps/ktuberling/sounds/ro/tuberling.wav -share/apps/ktuberling/sounds/ro/ureche.wav -share/apps/ktuberling/sounds/sl/cigara.wav -share/apps/ktuberling/sounds/sl/klobuk.wav -share/apps/ktuberling/sounds/sl/kravata.wav -share/apps/ktuberling/sounds/sl/krompircek.wav -share/apps/ktuberling/sounds/sl/masna.wav -share/apps/ktuberling/sounds/sl/metuljcek.wav -share/apps/ktuberling/sounds/sl/naocniki.wav -share/apps/ktuberling/sounds/sl/nos.wav -share/apps/ktuberling/sounds/sl/obrvi.wav -share/apps/ktuberling/sounds/sl/oci.wav -share/apps/ktuberling/sounds/sl/oko.wav -share/apps/ktuberling/sounds/sl/pentlja.wav -share/apps/ktuberling/sounds/sl/soncna_ocala.wav -share/apps/ktuberling/sounds/sl/tuberling.wav -share/apps/ktuberling/sounds/sl/uhan.wav -share/apps/ktuberling/sounds/sl/uhani.wav -share/apps/ktuberling/sounds/sl/uho.wav -share/apps/ktuberling/sounds/sl/ura.wav -share/apps/ktuberling/sounds/sl/usta.wav -share/apps/ktuberling/sounds/sl/vozel.wav -share/apps/ktuberling/sounds/sl/znacka.wav -share/doc/HTML/af/kicker-applets/kolourpicker.docbook -share/doc/HTML/af/kicker-applets/ktimemon.docbook -share/doc/HTML/cs/common/1.png -share/doc/HTML/cs/common/10.png -share/doc/HTML/cs/common/2.png -share/doc/HTML/cs/common/3.png -share/doc/HTML/cs/common/4.png -share/doc/HTML/cs/common/5.png -share/doc/HTML/cs/common/6.png -share/doc/HTML/cs/common/7.png -share/doc/HTML/cs/common/8.png -share/doc/HTML/cs/common/9.png -share/doc/HTML/cs/common/artistic-license.html -share/doc/HTML/cs/common/bottom1.png -share/doc/HTML/cs/common/bottom2.png -share/doc/HTML/cs/common/bsd-license.html -share/doc/HTML/cs/common/caution.png -share/doc/HTML/cs/common/doctop1.png -share/doc/HTML/cs/common/doctop1a.png -share/doc/HTML/cs/common/doctop1b.png -share/doc/HTML/cs/common/doctop2.png -share/doc/HTML/cs/common/fdl-license -share/doc/HTML/cs/common/fdl-license.html -share/doc/HTML/cs/common/fdl-translated.html -share/doc/HTML/cs/common/gpl-license -share/doc/HTML/cs/common/gpl-license.html -share/doc/HTML/cs/common/gpl-translated.html -share/doc/HTML/cs/common/important.png -share/doc/HTML/cs/common/kde-common.css -share/doc/HTML/cs/common/kde-default.css -share/doc/HTML/cs/common/kde-localised.css -share/doc/HTML/cs/common/kde-localised.css.template -share/doc/HTML/cs/common/lgpl-license -share/doc/HTML/cs/common/lgpl-license.html -share/doc/HTML/cs/common/lgpl-translated.html -share/doc/HTML/cs/common/logotp3-small.png -share/doc/HTML/cs/common/logotp3.png -share/doc/HTML/cs/common/note.png -share/doc/HTML/cs/common/prev.png -share/doc/HTML/cs/common/qpl-license.html -share/doc/HTML/cs/common/shadow.png -share/doc/HTML/cs/common/tip.png -share/doc/HTML/cs/common/toc-blank.png -share/doc/HTML/cs/common/toc-minus.png -share/doc/HTML/cs/common/toc-plus.png -share/doc/HTML/cs/common/up.png -share/doc/HTML/cs/common/warning.png -share/doc/HTML/cs/common/x11-license.html -share/doc/HTML/cs/common/xml.dcl -share/doc/HTML/cs/kcontrol/kcmaccess.docbook -share/doc/HTML/cs/kcontrol/kcmaction.docbook -share/doc/HTML/cs/kcontrol/kcmbackgnd.docbook -share/doc/HTML/cs/kcontrol/kcmbatmon.docbook -share/doc/HTML/cs/kcontrol/kcmbell.docbook -share/doc/HTML/cs/kcontrol/kcmcolor.docbook -share/doc/HTML/cs/kcontrol/kcmcookie.docbook -share/doc/HTML/cs/kcontrol/kcmcrypto.docbook -share/doc/HTML/cs/kcontrol/kcmcss.docbook -share/doc/HTML/cs/kcontrol/kcmdatetime.docbook -share/doc/HTML/cs/kcontrol/kcmdesktop.docbook -share/doc/HTML/cs/kcontrol/kcmdeviceinfo.docbook -share/doc/HTML/cs/kcontrol/kcmdmainfo.docbook -share/doc/HTML/cs/kcontrol/kcmebrowse.docbook -share/doc/HTML/cs/kcontrol/kcmemail.docbook -share/doc/HTML/cs/kcontrol/kcmenergy.docbook -share/doc/HTML/cs/kcontrol/kcmfonts.docbook -share/doc/HTML/cs/kcontrol/kcmhelpindex.docbook -share/doc/HTML/cs/kcontrol/kcmintinfo.docbook -share/doc/HTML/cs/kcontrol/kcmioportinfo.docbook -share/doc/HTML/cs/kcontrol/kcmkblayout.docbook -share/doc/HTML/cs/kcontrol/kcmlowbatcrit.docbook -share/doc/HTML/cs/kcontrol/kcmmemoryinfo.docbook -share/doc/HTML/cs/kcontrol/kcmmidi.docbook -share/doc/HTML/cs/kcontrol/kcmmixer.docbook -share/doc/HTML/cs/kcontrol/kcmnetscapeplugins.docbook -share/doc/HTML/cs/kcontrol/kcmpartitioninfo.docbook -share/doc/HTML/cs/kcontrol/kcmpasswd.docbook -share/doc/HTML/cs/kcontrol/kcmpciinfo.docbook -share/doc/HTML/cs/kcontrol/kcmpcmcia.docbook -share/doc/HTML/cs/kcontrol/kcmprocinfo.docbook -share/doc/HTML/cs/kcontrol/kcmscnsave.docbook -share/doc/HTML/cs/kcontrol/kcmscsiinfo.docbook -share/doc/HTML/cs/kcontrol/kcmsessionman.docbook -share/doc/HTML/cs/kcontrol/kcmsndinfo.docbook -share/doc/HTML/cs/kcontrol/kcmxservinfo.docbook -share/doc/HTML/cs/kcontrol/screenshot.png -share/doc/HTML/cs/khelpcenter/common -share/doc/HTML/cs/khelpcenter/contact.docbook -share/doc/HTML/cs/khelpcenter/index.cache.bz2 -share/doc/HTML/cs/khelpcenter/index.docbook -share/doc/HTML/cs/khelpcenter/links.docbook -share/doc/HTML/cs/khelpcenter/quickstart/common -share/doc/HTML/cs/khelpcenter/quickstart/index.cache.bz2 -share/doc/HTML/cs/khelpcenter/quickstart/index.docbook -share/doc/HTML/cs/khelpcenter/support.docbook -share/doc/HTML/cs/khelpcenter/welcome.docbook -share/doc/HTML/da/amor/common -share/doc/HTML/da/amor/index.cache.bz2 -share/doc/HTML/da/amor/index.docbook -share/doc/HTML/da/common/1.png -share/doc/HTML/da/common/10.png -share/doc/HTML/da/common/2.png -share/doc/HTML/da/common/3.png -share/doc/HTML/da/common/4.png -share/doc/HTML/da/common/5.png -share/doc/HTML/da/common/6.png -share/doc/HTML/da/common/7.png -share/doc/HTML/da/common/8.png -share/doc/HTML/da/common/9.png -share/doc/HTML/da/common/artistic-license.html -share/doc/HTML/da/common/bottom1.png -share/doc/HTML/da/common/bottom2.png -share/doc/HTML/da/common/bsd-license.html -share/doc/HTML/da/common/caution.png -share/doc/HTML/da/common/doctop1.png -share/doc/HTML/da/common/doctop1a.png -share/doc/HTML/da/common/doctop1b.png -share/doc/HTML/da/common/doctop2.png -share/doc/HTML/da/common/fdl-license -share/doc/HTML/da/common/fdl-license.html -share/doc/HTML/da/common/fdl-translated.html -share/doc/HTML/da/common/gpl-license -share/doc/HTML/da/common/gpl-license.html -share/doc/HTML/da/common/gpl-translated.html -share/doc/HTML/da/common/important.png -share/doc/HTML/da/common/kde-common.css -share/doc/HTML/da/common/kde-default.css -share/doc/HTML/da/common/kde-localised.css -share/doc/HTML/da/common/kde-localised.css.template -share/doc/HTML/da/common/lgpl-license -share/doc/HTML/da/common/lgpl-license.html -share/doc/HTML/da/common/lgpl-translated.html -share/doc/HTML/da/common/logotp3-small.png -share/doc/HTML/da/common/logotp3.png -share/doc/HTML/da/common/note.png -share/doc/HTML/da/common/prev.png -share/doc/HTML/da/common/qpl-license.html -share/doc/HTML/da/common/shadow.png -share/doc/HTML/da/common/tip.png -share/doc/HTML/da/common/toc-blank.png -share/doc/HTML/da/common/toc-minus.png -share/doc/HTML/da/common/toc-plus.png -share/doc/HTML/da/common/up.png -share/doc/HTML/da/common/warning.png -share/doc/HTML/da/common/x11-license.html -share/doc/HTML/da/common/xml.dcl -share/doc/HTML/da/kabalone/common -share/doc/HTML/da/kabalone/index.cache.bz2 -share/doc/HTML/da/kabalone/index.docbook -share/doc/HTML/da/kaddressbook/common -share/doc/HTML/da/kaddressbook/index.cache.bz2 -share/doc/HTML/da/kaddressbook/index.docbook -share/doc/HTML/da/kasteroids/common -share/doc/HTML/da/kasteroids/index.cache.bz2 -share/doc/HTML/da/kasteroids/index.docbook -share/doc/HTML/da/kate/common -share/doc/HTML/da/kate/index.cache.bz2 -share/doc/HTML/da/kate/index.docbook -share/doc/HTML/da/katomic/common -share/doc/HTML/da/katomic/index.cache.bz2 -share/doc/HTML/da/katomic/index.docbook -share/doc/HTML/da/kbackgammon/common -share/doc/HTML/da/kbackgammon/index.cache.bz2 -share/doc/HTML/da/kbackgammon/index.docbook -share/doc/HTML/da/kbattleship/common -share/doc/HTML/da/kbattleship/index.cache.bz2 -share/doc/HTML/da/kbattleship/index.docbook -share/doc/HTML/da/kblackbox/common -share/doc/HTML/da/kblackbox/index.cache.bz2 -share/doc/HTML/da/kblackbox/index.docbook -share/doc/HTML/da/kcontrol/common -share/doc/HTML/da/kcontrol/index.cache.bz2 -share/doc/HTML/da/kcontrol/index.docbook -share/doc/HTML/da/kcontrol/kcmaccess.docbook -share/doc/HTML/da/kcontrol/kcmaction.docbook -share/doc/HTML/da/kcontrol/kcmbackgnd.docbook -share/doc/HTML/da/kcontrol/kcmbatmon.docbook -share/doc/HTML/da/kcontrol/kcmbell.docbook -share/doc/HTML/da/kcontrol/kcmblockdev.docbook -share/doc/HTML/da/kcontrol/kcmborders.docbook -share/doc/HTML/da/kcontrol/kcmcolor.docbook -share/doc/HTML/da/kcontrol/kcmcookie.docbook -share/doc/HTML/da/kcontrol/kcmcrypto.docbook -share/doc/HTML/da/kcontrol/kcmcss.docbook -share/doc/HTML/da/kcontrol/kcmdatetime.docbook -share/doc/HTML/da/kcontrol/kcmdesktop.docbook -share/doc/HTML/da/kcontrol/kcmdeviceinfo.docbook -share/doc/HTML/da/kcontrol/kcmdmainfo.docbook -share/doc/HTML/da/kcontrol/kcmdrkonqi.docbook -share/doc/HTML/da/kcontrol/kcmebrowse.docbook -share/doc/HTML/da/kcontrol/kcmemail.docbook -share/doc/HTML/da/kcontrol/kcmenergy.docbook -share/doc/HTML/da/kcontrol/kcmfile.docbook -share/doc/HTML/da/kcontrol/kcmfileman.docbook -share/doc/HTML/da/kcontrol/kcmfonts.docbook -share/doc/HTML/da/kcontrol/kcmhelpindex.docbook -share/doc/HTML/da/kcontrol/kcmicon.docbook -share/doc/HTML/da/kcontrol/kcmintinfo.docbook -share/doc/HTML/da/kcontrol/kcmioportinfo.docbook -share/doc/HTML/da/kcontrol/kcmkbd.docbook -share/doc/HTML/da/kcontrol/kcmkbrowse.docbook -share/doc/HTML/da/kcontrol/kcmkeybind.docbook -share/doc/HTML/da/kcontrol/kcmkonsole.docbook -share/doc/HTML/da/kcontrol/kcmkwintheme.docbook -share/doc/HTML/da/kcontrol/kcmlaunch.docbook -share/doc/HTML/da/kcontrol/kcmlisa.docbook -share/doc/HTML/da/kcontrol/kcmlocate.docbook -share/doc/HTML/da/kcontrol/kcmloginmanage.docbook -share/doc/HTML/da/kcontrol/kcmlowbatcrit.docbook -share/doc/HTML/da/kcontrol/kcmlowbatwarn.docbook -share/doc/HTML/da/kcontrol/kcmmemoryinfo.docbook -share/doc/HTML/da/kcontrol/kcmmidi.docbook -share/doc/HTML/da/kcontrol/kcmmixer.docbook -share/doc/HTML/da/kcontrol/kcmmouse.docbook -share/doc/HTML/da/kcontrol/kcmnetscapeplugins.docbook -share/doc/HTML/da/kcontrol/kcmpanel.docbook -share/doc/HTML/da/kcontrol/kcmpartitioninfo.docbook -share/doc/HTML/da/kcontrol/kcmpasswd.docbook -share/doc/HTML/da/kcontrol/kcmpciinfo.docbook -share/doc/HTML/da/kcontrol/kcmpcmcia.docbook -share/doc/HTML/da/kcontrol/kcmpowerctrl.docbook -share/doc/HTML/da/kcontrol/kcmprocinfo.docbook -share/doc/HTML/da/kcontrol/kcmproxie.docbook -share/doc/HTML/da/kcontrol/kcmscnsave.docbook -share/doc/HTML/da/kcontrol/kcmscsiinfo.docbook -share/doc/HTML/da/kcontrol/kcmsessionman.docbook -share/doc/HTML/da/kcontrol/kcmsmbstat.docbook -share/doc/HTML/da/kcontrol/kcmsndinfo.docbook -share/doc/HTML/da/kcontrol/kcmsndsrv.docbook -share/doc/HTML/da/kcontrol/kcmsocks.docbook -share/doc/HTML/da/kcontrol/kcmspellchecking.docbook -share/doc/HTML/da/kcontrol/kcmstyle.docbook -share/doc/HTML/da/kcontrol/kcmsysnotify.docbook -share/doc/HTML/da/kcontrol/kcmtalk.docbook -share/doc/HTML/da/kcontrol/kcmtaskbar.docbook -share/doc/HTML/da/kcontrol/kcmusb.docbook -share/doc/HTML/da/kcontrol/kcmuseragent.docbook -share/doc/HTML/da/kcontrol/kcmwinshare.docbook -share/doc/HTML/da/kcontrol/kcmxservinfo.docbook -share/doc/HTML/da/kcontrol/kfileman1.png -share/doc/HTML/da/kcontrol/kfileman2.png -share/doc/HTML/da/kcontrol/nettimeouts.docbook -share/doc/HTML/da/kcontrol/printmanager.docbook -share/doc/HTML/da/kcontrol/printsystem.docbook -share/doc/HTML/da/kcontrol/protocols.docbook -share/doc/HTML/da/kcontrol/screenshot.png -share/doc/HTML/da/kcontrol/systemcontrol.docbook -share/doc/HTML/da/kcontrol/thememgr.docbook -share/doc/HTML/da/kdebugdialog/common -share/doc/HTML/da/kdebugdialog/index.cache.bz2 -share/doc/HTML/da/kdebugdialog/index.docbook -share/doc/HTML/da/kdvi/common -share/doc/HTML/da/kdvi/index.cache.bz2 -share/doc/HTML/da/kdvi/index.docbook -share/doc/HTML/da/kdvi/optionrequester1.png -share/doc/HTML/da/kdvi/optionrequester2.png -share/doc/HTML/da/kedit/common -share/doc/HTML/da/kedit/index.cache.bz2 -share/doc/HTML/da/kedit/index.docbook -share/doc/HTML/da/kfouleggs/common -share/doc/HTML/da/kfouleggs/index.cache.bz2 -share/doc/HTML/da/kfouleggs/index.docbook -share/doc/HTML/da/kfract/common -share/doc/HTML/da/kfract/index.cache.bz2 -share/doc/HTML/da/kfract/index.docbook -share/doc/HTML/da/kghostview/common -share/doc/HTML/da/kghostview/index.cache.bz2 -share/doc/HTML/da/kghostview/index.docbook -share/doc/HTML/da/khelpcenter/common -share/doc/HTML/da/khelpcenter/contact.docbook -share/doc/HTML/da/khelpcenter/help.docbook -share/doc/HTML/da/khelpcenter/index.cache.bz2 -share/doc/HTML/da/khelpcenter/index.docbook -share/doc/HTML/da/khelpcenter/links.docbook -share/doc/HTML/da/khelpcenter/support.docbook -share/doc/HTML/da/khelpcenter/welcome.docbook -share/doc/HTML/da/khelpcenter/whatiskde.docbook -share/doc/HTML/da/kiconedit/common -share/doc/HTML/da/kiconedit/index.cache.bz2 -share/doc/HTML/da/kiconedit/index.docbook -share/doc/HTML/da/kioslave/bzip.docbook -share/doc/HTML/da/kioslave/bzip2.docbook -share/doc/HTML/da/kioslave/file.docbook -share/doc/HTML/da/kioslave/finger.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/imaps.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/mailto.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/rlan.docbook -share/doc/HTML/da/kioslave/rlogin.docbook -share/doc/HTML/da/kioslave/smb.docbook -share/doc/HTML/da/kioslave/tar.docbook -share/doc/HTML/da/kioslave/telnet.docbook -share/doc/HTML/da/kjezz/common -share/doc/HTML/da/kjezz/index.cache.bz2 -share/doc/HTML/da/kjezz/index.docbook -share/doc/HTML/da/kjumpingcube/common -share/doc/HTML/da/kjumpingcube/index.cache.bz2 -share/doc/HTML/da/kjumpingcube/index.docbook -share/doc/HTML/da/klines/common -share/doc/HTML/da/klines/index.cache.bz2 -share/doc/HTML/da/klines/index.docbook -share/doc/HTML/da/kmail/common -share/doc/HTML/da/kmail/index.cache.bz2 -share/doc/HTML/da/kmail/index.docbook -share/doc/HTML/da/kmines/common -share/doc/HTML/da/kmines/index.cache.bz2 -share/doc/HTML/da/kmines/index.docbook -share/doc/HTML/da/kmines/kmines1.png -share/doc/HTML/da/kmines/kmines2.png -share/doc/HTML/da/konqueror/cmndline.png -share/doc/HTML/da/konqueror/common -share/doc/HTML/da/konqueror/dirtree.png -share/doc/HTML/da/konqueror/dragdrop.png -share/doc/HTML/da/konqueror/filetype1.png -share/doc/HTML/da/konqueror/filetype3.png -share/doc/HTML/da/konqueror/filetype4.png -share/doc/HTML/da/konqueror/index.cache.bz2 -share/doc/HTML/da/konqueror/index.docbook -share/doc/HTML/da/konqueror/konqorg.png -share/doc/HTML/da/konqueror/parts.png -share/doc/HTML/da/konquest/common -share/doc/HTML/da/konquest/index.cache.bz2 -share/doc/HTML/da/konquest/index.docbook -share/doc/HTML/da/kpaint/common -share/doc/HTML/da/kpaint/index.cache.bz2 -share/doc/HTML/da/kpaint/index.docbook -share/doc/HTML/da/kpat/common -share/doc/HTML/da/kpat/index.cache.bz2 -share/doc/HTML/da/kpat/index.docbook -share/doc/HTML/da/kpm/common -share/doc/HTML/da/kpm/index.cache.bz2 -share/doc/HTML/da/kpm/index.docbook -share/doc/HTML/da/kpm/kpmjobs.png -share/doc/HTML/da/kpm/kpmmemory.png -share/doc/HTML/da/kpm/kpmstart.png -share/doc/HTML/da/kpm/kpmtext.png -share/doc/HTML/da/kpoker/common -share/doc/HTML/da/kpoker/index.cache.bz2 -share/doc/HTML/da/kpoker/index.docbook -share/doc/HTML/da/kpoker/kpoker1.png -share/doc/HTML/da/kpoker/kpoker2.png -share/doc/HTML/da/kreversi/common -share/doc/HTML/da/kreversi/index.cache.bz2 -share/doc/HTML/da/kreversi/index.docbook -share/doc/HTML/da/kreversi/kreversi1.png -share/doc/HTML/da/kruler/common -share/doc/HTML/da/kruler/index.cache.bz2 -share/doc/HTML/da/kruler/index.docbook -share/doc/HTML/da/ksame/common -share/doc/HTML/da/ksame/index.cache.bz2 -share/doc/HTML/da/ksame/index.docbook -share/doc/HTML/da/kshisen/common -share/doc/HTML/da/kshisen/index.cache.bz2 -share/doc/HTML/da/kshisen/index.docbook -share/doc/HTML/da/ksirtet/common -share/doc/HTML/da/ksirtet/index.cache.bz2 -share/doc/HTML/da/ksirtet/index.docbook -share/doc/HTML/da/ksnake/common -share/doc/HTML/da/ksnake/index.cache.bz2 -share/doc/HTML/da/ksnake/index.docbook -share/doc/HTML/da/ksnapshot/common -share/doc/HTML/da/ksnapshot/index.cache.bz2 -share/doc/HTML/da/ksnapshot/index.docbook -share/doc/HTML/da/ksnapshot/preview.png -share/doc/HTML/da/ksnapshot/window.png -share/doc/HTML/da/ksokoban/common -share/doc/HTML/da/ksokoban/index.cache.bz2 -share/doc/HTML/da/ksokoban/index.docbook -share/doc/HTML/da/kspaceduel/common -share/doc/HTML/da/kspaceduel/index.cache.bz2 -share/doc/HTML/da/kspaceduel/index.docbook -share/doc/HTML/da/kspaceduel/kspaceduel1.png -share/doc/HTML/da/kspaceduel/kspaceduel2.png -share/doc/HTML/da/kspaceduel/kspaceduel3.png -share/doc/HTML/da/kspell/common -share/doc/HTML/da/kspell/index.cache.bz2 -share/doc/HTML/da/kspell/index.docbook -share/doc/HTML/da/ktouch/common -share/doc/HTML/da/ktouch/index.cache.bz2 -share/doc/HTML/da/ktouch/index.docbook -share/doc/HTML/da/ktron/common -share/doc/HTML/da/ktron/index.cache.bz2 -share/doc/HTML/da/ktron/index.docbook -share/doc/HTML/da/ktuberling/common -share/doc/HTML/da/ktuberling/index.cache.bz2 -share/doc/HTML/da/ktuberling/index.docbook -share/doc/HTML/da/ktuberling/menu.edit.png -share/doc/HTML/da/ktuberling/menu.file.png -share/doc/HTML/da/ktuberling/menu.help.png -share/doc/HTML/da/ktuberling/menu.option.png -share/doc/HTML/da/ktuberling/menu.raw.png -share/doc/HTML/da/kview/common -share/doc/HTML/da/kview/index.cache.bz2 -share/doc/HTML/da/kview/index.docbook -share/doc/HTML/da/kview/snapshot1.png -share/doc/HTML/da/kview/snapshot2.png -share/doc/HTML/da/kview/snapshot3.png -share/doc/HTML/da/kview/snapshot4.png -share/doc/HTML/da/kview/snapshot5.png -share/doc/HTML/da/kview/snapshot6.png -share/doc/HTML/da/kview/snapshot7.png -share/doc/HTML/da/kview/snapshot8.png -share/doc/HTML/da/kview/snapshot9.png -share/doc/HTML/da/kwin4/common -share/doc/HTML/da/kwin4/index.cache.bz2 -share/doc/HTML/da/kwin4/index.docbook -share/doc/HTML/da/lskat/common -share/doc/HTML/da/lskat/index.cache.bz2 -share/doc/HTML/da/lskat/index.docbook -share/doc/HTML/da/pixie/common -share/doc/HTML/da/pixie/hotlist.png -share/doc/HTML/da/pixie/image-edit.png -share/doc/HTML/da/pixie/image-size.png -share/doc/HTML/da/pixie/ind-color-edit.png -share/doc/HTML/da/pixie/index.cache.bz2 -share/doc/HTML/da/pixie/index.docbook -share/doc/HTML/da/pixie/open.png -share/doc/HTML/da/pixie/options.png -share/doc/HTML/da/pixie/pixie.png -share/doc/HTML/da/pixie/screenshot.png -share/doc/HTML/da/pixie/startup.png -share/doc/HTML/da/pixie/thumbnails.png -share/doc/HTML/de/aktion/aktion.png -share/doc/HTML/de/aktion/aktiontoolbar.png -share/doc/HTML/de/aktion/common -share/doc/HTML/de/aktion/index.cache.bz2 -share/doc/HTML/de/aktion/index.docbook -share/doc/HTML/de/amor/common -share/doc/HTML/de/amor/index.cache.bz2 -share/doc/HTML/de/amor/index.docbook -share/doc/HTML/de/ark/common -share/doc/HTML/de/ark/index.cache.bz2 -share/doc/HTML/de/ark/index.docbook -share/doc/HTML/de/artsbuilder/apis.docbook -share/doc/HTML/de/artsbuilder/artsbuilder.docbook -share/doc/HTML/de/artsbuilder/common -share/doc/HTML/de/artsbuilder/detail.docbook -share/doc/HTML/de/artsbuilder/digitalaudio.docbook -share/doc/HTML/de/artsbuilder/faq.docbook -share/doc/HTML/de/artsbuilder/future.docbook -share/doc/HTML/de/artsbuilder/glossary.docbook -share/doc/HTML/de/artsbuilder/gui.docbook -share/doc/HTML/de/artsbuilder/helping.docbook -share/doc/HTML/de/artsbuilder/index.cache.bz2 -share/doc/HTML/de/artsbuilder/index.docbook -share/doc/HTML/de/artsbuilder/mcop.docbook -share/doc/HTML/de/artsbuilder/midi.docbook -share/doc/HTML/de/artsbuilder/midiintro.docbook -share/doc/HTML/de/artsbuilder/modules.docbook -share/doc/HTML/de/artsbuilder/porting.docbook -share/doc/HTML/de/artsbuilder/references.docbook -share/doc/HTML/de/artsbuilder/tools.docbook -share/doc/HTML/de/caitoo/config.png -share/doc/HTML/de/caitoo/docked.png -share/doc/HTML/de/caitoo/listbox.png -share/doc/HTML/de/caitoo/progress.png -share/doc/HTML/de/caitoo/rmb.png -share/doc/HTML/de/caitoo/toolbar.png -share/doc/HTML/de/common/1.png -share/doc/HTML/de/common/10.png -share/doc/HTML/de/common/2.png -share/doc/HTML/de/common/3.png -share/doc/HTML/de/common/4.png -share/doc/HTML/de/common/5.png -share/doc/HTML/de/common/6.png -share/doc/HTML/de/common/7.png -share/doc/HTML/de/common/8.png -share/doc/HTML/de/common/9.png -share/doc/HTML/de/common/artistic-license.html -share/doc/HTML/de/common/bottom1.png -share/doc/HTML/de/common/bottom2.png -share/doc/HTML/de/common/bsd-license.html -share/doc/HTML/de/common/caution.png -share/doc/HTML/de/common/doctop1.png -share/doc/HTML/de/common/doctop1a.png -share/doc/HTML/de/common/doctop1b.png -share/doc/HTML/de/common/doctop2.png -share/doc/HTML/de/common/fdl-license -share/doc/HTML/de/common/fdl-license.html -share/doc/HTML/de/common/fdl-translated.html -share/doc/HTML/de/common/gpl-license -share/doc/HTML/de/common/gpl-license.html -share/doc/HTML/de/common/gpl-translated.html -share/doc/HTML/de/common/important.png -share/doc/HTML/de/common/kde-common.css -share/doc/HTML/de/common/kde-default.css -share/doc/HTML/de/common/kde-localised.css -share/doc/HTML/de/common/kde-localised.css.template -share/doc/HTML/de/common/lgpl-license -share/doc/HTML/de/common/lgpl-license.html -share/doc/HTML/de/common/lgpl-translated.html -share/doc/HTML/de/common/logotp3-small.png -share/doc/HTML/de/common/logotp3.png -share/doc/HTML/de/common/note.png -share/doc/HTML/de/common/prev.png -share/doc/HTML/de/common/qpl-license.html -share/doc/HTML/de/common/shadow.png -share/doc/HTML/de/common/tip.png -share/doc/HTML/de/common/toc-blank.png -share/doc/HTML/de/common/toc-minus.png -share/doc/HTML/de/common/toc-plus.png -share/doc/HTML/de/common/up.png -share/doc/HTML/de/common/warning.png -share/doc/HTML/de/common/x11-license.html -share/doc/HTML/de/common/xml.dcl -share/doc/HTML/de/kab/common -share/doc/HTML/de/kab/fehler.png -share/doc/HTML/de/kab/index.cache.bz2 -share/doc/HTML/de/kab/index.docbook -share/doc/HTML/de/kab/kab-edit.png -share/doc/HTML/de/kab/kab-using.png -share/doc/HTML/de/kabalone/common -share/doc/HTML/de/kabalone/index.cache.bz2 -share/doc/HTML/de/kabalone/index.docbook -share/doc/HTML/de/kaddressbook/common -share/doc/HTML/de/kaddressbook/index.cache.bz2 -share/doc/HTML/de/kaddressbook/index.docbook -share/doc/HTML/de/karm/common -share/doc/HTML/de/karm/index.cache.bz2 -share/doc/HTML/de/karm/index.docbook -share/doc/HTML/de/karm/karm.png -share/doc/HTML/de/kasteroids/common -share/doc/HTML/de/kasteroids/index.cache.bz2 -share/doc/HTML/de/kasteroids/index.docbook -share/doc/HTML/de/kate-plugins/common -share/doc/HTML/de/kate-plugins/helloworld.docbook -share/doc/HTML/de/kate-plugins/htmltools.docbook -share/doc/HTML/de/kate-plugins/index.cache.bz2 -share/doc/HTML/de/kate-plugins/index.docbook -share/doc/HTML/de/kate-plugins/insertcommand.docbook -share/doc/HTML/de/kate-plugins/openheader.docbook -share/doc/HTML/de/kate-plugins/projectmanager.docbook -share/doc/HTML/de/kate-plugins/textfilter.docbook -share/doc/HTML/de/katomic/common -share/doc/HTML/de/katomic/index.cache.bz2 -share/doc/HTML/de/katomic/index.docbook -share/doc/HTML/de/kbackgammon/common -share/doc/HTML/de/kbackgammon/index.cache.bz2 -share/doc/HTML/de/kbackgammon/index.docbook -share/doc/HTML/de/kbattleship/common -share/doc/HTML/de/kbattleship/index.cache.bz2 -share/doc/HTML/de/kbattleship/index.docbook -share/doc/HTML/de/kblackbox/common -share/doc/HTML/de/kblackbox/index.cache.bz2 -share/doc/HTML/de/kblackbox/index.docbook -share/doc/HTML/de/kcalc/common -share/doc/HTML/de/kcalc/index.cache.bz2 -share/doc/HTML/de/kcalc/index.docbook -share/doc/HTML/de/kcontrol/common -share/doc/HTML/de/kcontrol/index.cache.bz2 -share/doc/HTML/de/kcontrol/index.docbook -share/doc/HTML/de/kcontrol/kcmaccess.docbook -share/doc/HTML/de/kcontrol/kcmaction.docbook -share/doc/HTML/de/kcontrol/kcmbackgnd.docbook -share/doc/HTML/de/kcontrol/kcmbatmon.docbook -share/doc/HTML/de/kcontrol/kcmbell.docbook -share/doc/HTML/de/kcontrol/kcmblockdev.docbook -share/doc/HTML/de/kcontrol/kcmborders.docbook -share/doc/HTML/de/kcontrol/kcmcolor.docbook -share/doc/HTML/de/kcontrol/kcmcookie.docbook -share/doc/HTML/de/kcontrol/kcmcrypto.docbook -share/doc/HTML/de/kcontrol/kcmcss.docbook -share/doc/HTML/de/kcontrol/kcmdatetime.docbook -share/doc/HTML/de/kcontrol/kcmdesktop.docbook -share/doc/HTML/de/kcontrol/kcmdeviceinfo.docbook -share/doc/HTML/de/kcontrol/kcmdmainfo.docbook -share/doc/HTML/de/kcontrol/kcmdrkonqi.docbook -share/doc/HTML/de/kcontrol/kcmebrowse.docbook -share/doc/HTML/de/kcontrol/kcmemail.docbook -share/doc/HTML/de/kcontrol/kcmenergy.docbook -share/doc/HTML/de/kcontrol/kcmfile.docbook -share/doc/HTML/de/kcontrol/kcmfileman.docbook -share/doc/HTML/de/kcontrol/kcmfonts.docbook -share/doc/HTML/de/kcontrol/kcmhelpindex.docbook -share/doc/HTML/de/kcontrol/kcmicon.docbook -share/doc/HTML/de/kcontrol/kcmiconstyle.docbook -share/doc/HTML/de/kcontrol/kcmintinfo.docbook -share/doc/HTML/de/kcontrol/kcmioportinfo.docbook -share/doc/HTML/de/kcontrol/kcmkbd.docbook -share/doc/HTML/de/kcontrol/kcmkblayout.docbook -share/doc/HTML/de/kcontrol/kcmkbrowse.docbook -share/doc/HTML/de/kcontrol/kcmkeybind.docbook -share/doc/HTML/de/kcontrol/kcmkonsole.docbook -share/doc/HTML/de/kcontrol/kcmkwintheme.docbook -share/doc/HTML/de/kcontrol/kcmlaunch.docbook -share/doc/HTML/de/kcontrol/kcmlisa.docbook -share/doc/HTML/de/kcontrol/kcmlocate.docbook -share/doc/HTML/de/kcontrol/kcmloginmanage.docbook -share/doc/HTML/de/kcontrol/kcmlowbatcrit.docbook -share/doc/HTML/de/kcontrol/kcmlowbatwarn.docbook -share/doc/HTML/de/kcontrol/kcmmemoryinfo.docbook -share/doc/HTML/de/kcontrol/kcmmidi.docbook -share/doc/HTML/de/kcontrol/kcmmixer.docbook -share/doc/HTML/de/kcontrol/kcmmouse.docbook -share/doc/HTML/de/kcontrol/kcmmousebeh.docbook -share/doc/HTML/de/kcontrol/kcmnetscapeplugins.docbook -share/doc/HTML/de/kcontrol/kcmnumbername.docbook -share/doc/HTML/de/kcontrol/kcmpanel.docbook -share/doc/HTML/de/kcontrol/kcmpartitioninfo.docbook -share/doc/HTML/de/kcontrol/kcmpasswd.docbook -share/doc/HTML/de/kcontrol/kcmpciinfo.docbook -share/doc/HTML/de/kcontrol/kcmpcmcia.docbook -share/doc/HTML/de/kcontrol/kcmpowerctrl.docbook -share/doc/HTML/de/kcontrol/kcmprocinfo.docbook -share/doc/HTML/de/kcontrol/kcmproxie.docbook -share/doc/HTML/de/kcontrol/kcmscnsave.docbook -share/doc/HTML/de/kcontrol/kcmscsiinfo.docbook -share/doc/HTML/de/kcontrol/kcmsessionman.docbook -share/doc/HTML/de/kcontrol/kcmsmbstat.docbook -share/doc/HTML/de/kcontrol/kcmsndinfo.docbook -share/doc/HTML/de/kcontrol/kcmsndsrv.docbook -share/doc/HTML/de/kcontrol/kcmsocks.docbook -share/doc/HTML/de/kcontrol/kcmspellchecking.docbook -share/doc/HTML/de/kcontrol/kcmstyle.docbook -share/doc/HTML/de/kcontrol/kcmsysnotify.docbook -share/doc/HTML/de/kcontrol/kcmtalk.docbook -share/doc/HTML/de/kcontrol/kcmtaskbar.docbook -share/doc/HTML/de/kcontrol/kcmusb.docbook -share/doc/HTML/de/kcontrol/kcmuseragent.docbook -share/doc/HTML/de/kcontrol/kcmwinshare.docbook -share/doc/HTML/de/kcontrol/kcmxservinfo.docbook -share/doc/HTML/de/kcontrol/kfileman1.png -share/doc/HTML/de/kcontrol/kfileman2.png -share/doc/HTML/de/kcontrol/nettimeouts.docbook -share/doc/HTML/de/kcontrol/printmanager.docbook -share/doc/HTML/de/kcontrol/printsystem.docbook -share/doc/HTML/de/kcontrol/protocols.docbook -share/doc/HTML/de/kcontrol/screenshot.png -share/doc/HTML/de/kcontrol/systemcontrol.docbook -share/doc/HTML/de/kcontrol/thememgr.docbook -share/doc/HTML/de/kcron/common -share/doc/HTML/de/kcron/index.cache.bz2 -share/doc/HTML/de/kcron/index.docbook -share/doc/HTML/de/kcron/kcron.png -share/doc/HTML/de/kcron/kcronstart.png -share/doc/HTML/de/kcron/newtask.png -share/doc/HTML/de/kcron/newvariable.png -share/doc/HTML/de/kcron/print.png -share/doc/HTML/de/kdebugdialog/common -share/doc/HTML/de/kdebugdialog/index.cache.bz2 -share/doc/HTML/de/kdebugdialog/index.docbook -share/doc/HTML/de/kdesu/common -share/doc/HTML/de/kdesu/index.cache.bz2 -share/doc/HTML/de/kdesu/index.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/kdict/applet.png -share/doc/HTML/de/kdict/common -share/doc/HTML/de/kdict/conf.png -share/doc/HTML/de/kdict/index.cache.bz2 -share/doc/HTML/de/kdict/index.docbook -share/doc/HTML/de/kdict/mainwin.png -share/doc/HTML/de/kdict/seteditor.png -share/doc/HTML/de/kdm/common -share/doc/HTML/de/kdm/index.cache.bz2 -share/doc/HTML/de/kdm/index.docbook -share/doc/HTML/de/kdvi/common -share/doc/HTML/de/kdvi/index.cache.bz2 -share/doc/HTML/de/kdvi/index.docbook -share/doc/HTML/de/kdvi/optionrequester1.png -share/doc/HTML/de/kdvi/optionrequester2.png -share/doc/HTML/de/kedit/common -share/doc/HTML/de/kedit/index.cache.bz2 -share/doc/HTML/de/kedit/index.docbook -share/doc/HTML/de/kfind/common -share/doc/HTML/de/kfind/index.cache.bz2 -share/doc/HTML/de/kfind/index.docbook -share/doc/HTML/de/kfloppy/common -share/doc/HTML/de/kfloppy/index.cache.bz2 -share/doc/HTML/de/kfloppy/index.docbook -share/doc/HTML/de/kfouleggs/common -share/doc/HTML/de/kfouleggs/index.cache.bz2 -share/doc/HTML/de/kfouleggs/index.docbook -share/doc/HTML/de/kfract/common -share/doc/HTML/de/kfract/index.cache.bz2 -share/doc/HTML/de/kfract/index.docbook -share/doc/HTML/de/kghostview/common -share/doc/HTML/de/kghostview/index.cache.bz2 -share/doc/HTML/de/kghostview/index.docbook -share/doc/HTML/de/khelpcenter/common -share/doc/HTML/de/khelpcenter/contact.docbook -share/doc/HTML/de/khelpcenter/faq/about.docbook -share/doc/HTML/de/khelpcenter/faq/common -share/doc/HTML/de/khelpcenter/faq/configkde.docbook -share/doc/HTML/de/khelpcenter/faq/contrib.docbook -share/doc/HTML/de/khelpcenter/faq/desktop.docbook -share/doc/HTML/de/khelpcenter/faq/filemng.docbook -share/doc/HTML/de/khelpcenter/faq/getkde.docbook -share/doc/HTML/de/khelpcenter/faq/index.cache.bz2 -share/doc/HTML/de/khelpcenter/faq/index.docbook -share/doc/HTML/de/khelpcenter/faq/install.docbook -share/doc/HTML/de/khelpcenter/faq/intro.docbook -share/doc/HTML/de/khelpcenter/faq/kdeapps.docbook -share/doc/HTML/de/khelpcenter/faq/misc.docbook -share/doc/HTML/de/khelpcenter/faq/moreinfo.docbook -share/doc/HTML/de/khelpcenter/faq/nonkdeapps.docbook -share/doc/HTML/de/khelpcenter/faq/notrelated.docbook -share/doc/HTML/de/khelpcenter/faq/panel.docbook -share/doc/HTML/de/khelpcenter/faq/tips.docbook -share/doc/HTML/de/khelpcenter/faq/winmng.docbook -share/doc/HTML/de/khelpcenter/help.docbook -share/doc/HTML/de/khelpcenter/index.cache.bz2 -share/doc/HTML/de/khelpcenter/index.docbook -share/doc/HTML/de/khelpcenter/links.docbook -share/doc/HTML/de/khelpcenter/main.html -share/doc/HTML/de/khelpcenter/support.docbook -share/doc/HTML/de/khelpcenter/visualdict/common -share/doc/HTML/de/khelpcenter/visualdict/index.cache.bz2 -share/doc/HTML/de/khelpcenter/visualdict/index.docbook -share/doc/HTML/de/khelpcenter/welcome.docbook -share/doc/HTML/de/khelpcenter/whatiskde.docbook -share/doc/HTML/de/khexedit/common -share/doc/HTML/de/khexedit/index.cache.bz2 -share/doc/HTML/de/khexedit/index.docbook -share/doc/HTML/de/khexedit/khexedit1.png -share/doc/HTML/de/kicker/access_config.png -share/doc/HTML/de/kicker/basic_icons.png -share/doc/HTML/de/kicker/config_window.png -share/doc/HTML/de/kicker/drag_applet.png -share/doc/HTML/de/kicker/handles.png -share/doc/HTML/de/kicker/hide_buttons.png -share/doc/HTML/de/kicker/i_adv_editor.png -share/doc/HTML/de/kicker/i_control_center.png -share/doc/HTML/de/kicker/i_desktop.png -share/doc/HTML/de/kicker/i_help.png -share/doc/HTML/de/kicker/i_home_dir.png -share/doc/HTML/de/kicker/i_k_button.png -share/doc/HTML/de/kicker/i_kandalfs_tips.png -share/doc/HTML/de/kicker/i_shell.png -share/doc/HTML/de/kicker/i_window_list.png -share/doc/HTML/de/kicker/kicker_access_size.png -share/doc/HTML/de/kicker/kicker_add_basic.png -share/doc/HTML/de/kicker/kicker_basic_icons.png -share/doc/HTML/de/kicker/kicker_basic_icons_2.png -share/doc/HTML/de/kicker/qb_root.png -share/doc/HTML/de/kicker-applets/common -share/doc/HTML/de/kicker-applets/index.cache.bz2 -share/doc/HTML/de/kicker-applets/index.docbook -share/doc/HTML/de/kicker-applets/kolourpicker.docbook -share/doc/HTML/de/kicker-applets/ktimemon.docbook -share/doc/HTML/de/kiconedit/common -share/doc/HTML/de/kiconedit/index.cache.bz2 -share/doc/HTML/de/kiconedit/index.docbook -share/doc/HTML/de/killustrator/Poly_set.png -share/doc/HTML/de/killustrator/ausrichten.png -share/doc/HTML/de/killustrator/bezier.png -share/doc/HTML/de/killustrator/blend_dialog.png -share/doc/HTML/de/killustrator/color.png -share/doc/HTML/de/killustrator/ellipse.png -share/doc/HTML/de/killustrator/export.png -share/doc/HTML/de/killustrator/freehand.png -share/doc/HTML/de/killustrator/line.png -share/doc/HTML/de/killustrator/logo.png -share/doc/HTML/de/killustrator/movepoint.png -share/doc/HTML/de/killustrator/newpoint.png -share/doc/HTML/de/killustrator/open_dialog.png -share/doc/HTML/de/killustrator/pfeil.png -share/doc/HTML/de/killustrator/point.png -share/doc/HTML/de/killustrator/polygon.png -share/doc/HTML/de/killustrator/rect.png -share/doc/HTML/de/killustrator/rmpoint.png -share/doc/HTML/de/killustrator/save_dialog.png -share/doc/HTML/de/killustrator/schichten.png -share/doc/HTML/de/killustrator/text.png -share/doc/HTML/de/killustrator/verteilen.png -share/doc/HTML/de/killustrator/zoom.png -share/doc/HTML/de/kioslave/audiocd.docbook -share/doc/HTML/de/kioslave/bzip.docbook -share/doc/HTML/de/kioslave/bzip2.docbook -share/doc/HTML/de/kioslave/common -share/doc/HTML/de/kioslave/file.docbook -share/doc/HTML/de/kioslave/finger.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/mailto.docbook -share/doc/HTML/de/kioslave/man.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/smb.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/kit/common -share/doc/HTML/de/kit/index.cache.bz2 -share/doc/HTML/de/kit/index.docbook -share/doc/HTML/de/kjezz/common -share/doc/HTML/de/kjezz/index.cache.bz2 -share/doc/HTML/de/kjezz/index.docbook -share/doc/HTML/de/kjots/common -share/doc/HTML/de/kjots/index.cache.bz2 -share/doc/HTML/de/kjots/index.docbook -share/doc/HTML/de/kjumpingcube/common -share/doc/HTML/de/kjumpingcube/index.cache.bz2 -share/doc/HTML/de/kjumpingcube/index.docbook -share/doc/HTML/de/klines/common -share/doc/HTML/de/klines/index.cache.bz2 -share/doc/HTML/de/klines/index.docbook -share/doc/HTML/de/klipper/common -share/doc/HTML/de/klipper/index.cache.bz2 -share/doc/HTML/de/klipper/index.docbook -share/doc/HTML/de/kljettool/common -share/doc/HTML/de/kljettool/index.cache.bz2 -share/doc/HTML/de/kljettool/index.docbook -share/doc/HTML/de/kljettool/screenshot.png -share/doc/HTML/de/klpq/common -share/doc/HTML/de/klpq/index.cache.bz2 -share/doc/HTML/de/klpq/index.docbook -share/doc/HTML/de/klprfax/common -share/doc/HTML/de/klprfax/index.cache.bz2 -share/doc/HTML/de/klprfax/index.docbook -share/doc/HTML/de/kmail/common -share/doc/HTML/de/kmail/index.cache.bz2 -share/doc/HTML/de/kmail/index.docbook -share/doc/HTML/de/kmid/common -share/doc/HTML/de/kmid/index.cache.bz2 -share/doc/HTML/de/kmid/index.docbook -share/doc/HTML/de/kmidi/common -share/doc/HTML/de/kmidi/index.cache.bz2 -share/doc/HTML/de/kmidi/index.docbook -share/doc/HTML/de/kmines/common -share/doc/HTML/de/kmines/index.cache.bz2 -share/doc/HTML/de/kmines/index.docbook -share/doc/HTML/de/kmix/common -share/doc/HTML/de/kmix/index.cache.bz2 -share/doc/HTML/de/kmix/index.docbook -share/doc/HTML/de/kmoon/common -share/doc/HTML/de/kmoon/index.cache.bz2 -share/doc/HTML/de/kmoon/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-general.png -share/doc/HTML/de/knewsticker/kcmnewsticker-newssources.png -share/doc/HTML/de/knode/common -share/doc/HTML/de/knode/eyes.png -share/doc/HTML/de/knode/greyball.png -share/doc/HTML/de/knode/greyballchk.png -share/doc/HTML/de/knode/index.cache.bz2 -share/doc/HTML/de/knode/index.docbook -share/doc/HTML/de/knode/knode-cleanup.png -share/doc/HTML/de/knode/knode-colors-fonts.png -share/doc/HTML/de/knode/knode-composer-attachments.png -share/doc/HTML/de/knode/knode-composer-settings.png -share/doc/HTML/de/knode/knode-edit-filter.png -share/doc/HTML/de/knode/knode-edit-header1.png -share/doc/HTML/de/knode/knode-edit-header2.png -share/doc/HTML/de/knode/knode-filters.png -share/doc/HTML/de/knode/knode-followup.png -share/doc/HTML/de/knode/knode-header-settings.png -share/doc/HTML/de/knode/knode-identity.png -share/doc/HTML/de/knode/knode-mail-account.png -share/doc/HTML/de/knode/knode-new-article.png -share/doc/HTML/de/knode/knode-news-account.png -share/doc/HTML/de/knode/knode-post-settings.png -share/doc/HTML/de/knode/knode-read-news-appearance-dialog.png -share/doc/HTML/de/knode/knode-read-news-settings.png -share/doc/HTML/de/knode/knode-reply.png -share/doc/HTML/de/knode/knode-search.png -share/doc/HTML/de/knode/knode-start.png -share/doc/HTML/de/knode/knode-subscribe.png -share/doc/HTML/de/knode/knode-views.png -share/doc/HTML/de/knode/newsubs.png -share/doc/HTML/de/knode/redball.png -share/doc/HTML/de/knode/redballchk.png -share/doc/HTML/de/knotes/common -share/doc/HTML/de/knotes/index.cache.bz2 -share/doc/HTML/de/knotes/index.docbook -share/doc/HTML/de/konqueror/cmndline.png -share/doc/HTML/de/konqueror/dirtree.png -share/doc/HTML/de/konqueror/dragdrop.png -share/doc/HTML/de/konqueror/filetype1.png -share/doc/HTML/de/konqueror/filetype3.png -share/doc/HTML/de/konqueror/filetype4.png -share/doc/HTML/de/konqueror/kfind.png -share/doc/HTML/de/konqueror/konqdoc5.png -share/doc/HTML/de/konqueror/konqdoc9.png -share/doc/HTML/de/konqueror/konqorg.png -share/doc/HTML/de/konqueror/parts.png -share/doc/HTML/de/konqueror/samba.png -share/doc/HTML/de/konquest/common -share/doc/HTML/de/konquest/index.cache.bz2 -share/doc/HTML/de/konquest/index.docbook -share/doc/HTML/de/konsole/konsole.png -share/doc/HTML/de/korganizer/common -share/doc/HTML/de/korganizer/datenavigator.png -share/doc/HTML/de/korganizer/index.cache.bz2 -share/doc/HTML/de/korganizer/index.docbook -share/doc/HTML/de/korganizer/kagenda-appointment.png -share/doc/HTML/de/korn/common -share/doc/HTML/de/korn/index.cache.bz2 -share/doc/HTML/de/korn/index.docbook -share/doc/HTML/de/koshell/common -share/doc/HTML/de/koshell/index.cache.bz2 -share/doc/HTML/de/koshell/index.docbook -share/doc/HTML/de/kpackage/common -share/doc/HTML/de/kpackage/index.cache.bz2 -share/doc/HTML/de/kpackage/index.docbook -share/doc/HTML/de/kpager/common -share/doc/HTML/de/kpager/index.cache.bz2 -share/doc/HTML/de/kpager/index.docbook -share/doc/HTML/de/kpaint/common -share/doc/HTML/de/kpaint/index.cache.bz2 -share/doc/HTML/de/kpaint/index.docbook -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/kpm/common -share/doc/HTML/de/kpm/index.cache.bz2 -share/doc/HTML/de/kpm/index.docbook -share/doc/HTML/de/kpm/kpmjobs.png -share/doc/HTML/de/kpm/kpmmemory.png -share/doc/HTML/de/kpm/kpmstart.png -share/doc/HTML/de/kpm/kpmtext.png -share/doc/HTML/de/kpoker/common -share/doc/HTML/de/kpoker/index.cache.bz2 -share/doc/HTML/de/kpoker/index.docbook -share/doc/HTML/de/kppp/accounting.docbook -share/doc/HTML/de/kppp/callback.docbook -share/doc/HTML/de/kppp/chap.docbook -share/doc/HTML/de/kppp/common -share/doc/HTML/de/kppp/dialog-setup.docbook -share/doc/HTML/de/kppp/getting-online.docbook -share/doc/HTML/de/kppp/global-settings.docbook -share/doc/HTML/de/kppp/hayes.docbook -share/doc/HTML/de/kppp/index.cache.bz2 -share/doc/HTML/de/kppp/index.docbook -share/doc/HTML/de/kppp/kppp-faq.docbook -share/doc/HTML/de/kppp/security.docbook -share/doc/HTML/de/kppp/tricks.docbook -share/doc/HTML/de/kppp/wizard.docbook -share/doc/HTML/de/kpresenter/faq.docbook -share/doc/HTML/de/kpresenter/guides.docbook -share/doc/HTML/de/kpresenter/options.docbook -share/doc/HTML/de/kreversi/common -share/doc/HTML/de/kreversi/index.cache.bz2 -share/doc/HTML/de/kreversi/index.docbook -share/doc/HTML/de/kruler/common -share/doc/HTML/de/kruler/index.cache.bz2 -share/doc/HTML/de/kruler/index.docbook -share/doc/HTML/de/ksame/common -share/doc/HTML/de/ksame/index.cache.bz2 -share/doc/HTML/de/ksame/index.docbook -share/doc/HTML/de/kscd/common -share/doc/HTML/de/kscd/index.cache.bz2 -share/doc/HTML/de/kscd/index.docbook -share/doc/HTML/de/kscd/kscd.png -share/doc/HTML/de/kscd/kscd11.png -share/doc/HTML/de/kscd/kscd12.png -share/doc/HTML/de/kscd/kscd13.png -share/doc/HTML/de/kscd/kscd14.png -share/doc/HTML/de/kscd/kscd15.png -share/doc/HTML/de/kscd/kscd16.png -share/doc/HTML/de/kscd/kscd18.png -share/doc/HTML/de/kscd/kscd2.png -share/doc/HTML/de/kscd/kscd2a.png -share/doc/HTML/de/kscd/kscd3.png -share/doc/HTML/de/kscd/kscd4.png -share/doc/HTML/de/kscd/kscd5.png -share/doc/HTML/de/kscd/kscd6.png -share/doc/HTML/de/kscd/kscd7.png -share/doc/HTML/de/kscd/kscd8.png -share/doc/HTML/de/kscd/kscd9.png -share/doc/HTML/de/kshisen/common -share/doc/HTML/de/kshisen/index.cache.bz2 -share/doc/HTML/de/kshisen/index.docbook -share/doc/HTML/de/ksirc/common -share/doc/HTML/de/ksirc/index.cache.bz2 -share/doc/HTML/de/ksirc/index.docbook -share/doc/HTML/de/ksirtet/common -share/doc/HTML/de/ksirtet/index.cache.bz2 -share/doc/HTML/de/ksirtet/index.docbook -share/doc/HTML/de/ksmiletris/ksmiletris.png -share/doc/HTML/de/ksnake/common -share/doc/HTML/de/ksnake/index.cache.bz2 -share/doc/HTML/de/ksnake/index.docbook -share/doc/HTML/de/ksnapshot/common -share/doc/HTML/de/ksnapshot/index.cache.bz2 -share/doc/HTML/de/ksnapshot/index.docbook -share/doc/HTML/de/ksnapshot/preview.png -share/doc/HTML/de/ksnapshot/window.png -share/doc/HTML/de/ksokoban/common -share/doc/HTML/de/ksokoban/index.cache.bz2 -share/doc/HTML/de/ksokoban/index.docbook -share/doc/HTML/de/kspaceduel/common -share/doc/HTML/de/kspaceduel/index.cache.bz2 -share/doc/HTML/de/kspaceduel/index.docbook -share/doc/HTML/de/kspaceduel/kspaceduel1.png -share/doc/HTML/de/kspaceduel/kspaceduel3.png -share/doc/HTML/de/ksysguard/common -share/doc/HTML/de/ksysguard/index.cache.bz2 -share/doc/HTML/de/ksysguard/index.docbook -share/doc/HTML/de/ksysv/common -share/doc/HTML/de/ksysv/index.cache.bz2 -share/doc/HTML/de/ksysv/index.docbook -share/doc/HTML/de/ktalkd/common -share/doc/HTML/de/ktalkd/index.cache.bz2 -share/doc/HTML/de/ktalkd/index.docbook -share/doc/HTML/de/kteatime/common -share/doc/HTML/de/kteatime/index.cache.bz2 -share/doc/HTML/de/kteatime/index.docbook -share/doc/HTML/de/ktron/common -share/doc/HTML/de/ktron/index.cache.bz2 -share/doc/HTML/de/ktron/index.docbook -share/doc/HTML/de/ktuberling/common -share/doc/HTML/de/ktuberling/index.cache.bz2 -share/doc/HTML/de/ktuberling/index.docbook -share/doc/HTML/de/kuser/common -share/doc/HTML/de/kuser/index.cache.bz2 -share/doc/HTML/de/kuser/index.docbook -share/doc/HTML/de/kwin4/common -share/doc/HTML/de/kwin4/index.cache.bz2 -share/doc/HTML/de/kwin4/index.docbook -share/doc/HTML/de/kworldclock/common -share/doc/HTML/de/kworldclock/index.cache.bz2 -share/doc/HTML/de/kworldclock/index.docbook -share/doc/HTML/de/kwrite/common -share/doc/HTML/de/kwrite/index.cache.bz2 -share/doc/HTML/de/kwrite/index.docbook -share/doc/HTML/de/lisa/common -share/doc/HTML/de/lisa/index.cache.bz2 -share/doc/HTML/de/lisa/index.docbook -share/doc/HTML/de/lskat/common -share/doc/HTML/de/lskat/index.cache.bz2 -share/doc/HTML/de/lskat/index.docbook -share/doc/HTML/de/noatun/common -share/doc/HTML/de/noatun/index.cache.bz2 -share/doc/HTML/de/noatun/index.docbook -share/doc/HTML/en_GB/kcontrol/kcmaccess.docbook -share/doc/HTML/en_GB/kcontrol/kcmbackgnd.docbook -share/doc/HTML/en_GB/kcontrol/kcmbatmon.docbook -share/doc/HTML/en_GB/kcontrol/kcmcolor.docbook -share/doc/HTML/en_GB/kcontrol/kcmcss.docbook -share/doc/HTML/en_GB/kspell/common -share/doc/HTML/en_GB/kspell/index.cache.bz2 -share/doc/HTML/en_GB/kspell/index.docbook -share/doc/HTML/es/amor/common -share/doc/HTML/es/amor/index.cache.bz2 -share/doc/HTML/es/amor/index.docbook -share/doc/HTML/es/ark/common -share/doc/HTML/es/ark/index.cache.bz2 -share/doc/HTML/es/ark/index.docbook -share/doc/HTML/es/artsbuilder/digitalaudio.docbook -share/doc/HTML/es/artsbuilder/midiintro.docbook -share/doc/HTML/es/artsbuilder/references.docbook -share/doc/HTML/es/common/1.png -share/doc/HTML/es/common/10.png -share/doc/HTML/es/common/2.png -share/doc/HTML/es/common/3.png -share/doc/HTML/es/common/4.png -share/doc/HTML/es/common/5.png -share/doc/HTML/es/common/6.png -share/doc/HTML/es/common/7.png -share/doc/HTML/es/common/8.png -share/doc/HTML/es/common/9.png -share/doc/HTML/es/common/artistic-license.html -share/doc/HTML/es/common/bottom1.png -share/doc/HTML/es/common/bottom2.png -share/doc/HTML/es/common/bsd-license.html -share/doc/HTML/es/common/caution.png -share/doc/HTML/es/common/doctop1.png -share/doc/HTML/es/common/doctop1a.png -share/doc/HTML/es/common/doctop1b.png -share/doc/HTML/es/common/doctop2.png -share/doc/HTML/es/common/fdl-license -share/doc/HTML/es/common/fdl-license.html -share/doc/HTML/es/common/fdl-translated.html -share/doc/HTML/es/common/gpl-license -share/doc/HTML/es/common/gpl-license.html -share/doc/HTML/es/common/gpl-translated.html -share/doc/HTML/es/common/important.png -share/doc/HTML/es/common/kde-common.css -share/doc/HTML/es/common/kde-default.css -share/doc/HTML/es/common/kde-localised.css -share/doc/HTML/es/common/kde-localised.css.template -share/doc/HTML/es/common/lgpl-license -share/doc/HTML/es/common/lgpl-license.html -share/doc/HTML/es/common/lgpl-translated.html -share/doc/HTML/es/common/logotp3-small.png -share/doc/HTML/es/common/logotp3.png -share/doc/HTML/es/common/note.png -share/doc/HTML/es/common/prev.png -share/doc/HTML/es/common/qpl-license.html -share/doc/HTML/es/common/shadow.png -share/doc/HTML/es/common/tip.png -share/doc/HTML/es/common/toc-blank.png -share/doc/HTML/es/common/toc-minus.png -share/doc/HTML/es/common/toc-plus.png -share/doc/HTML/es/common/up.png -share/doc/HTML/es/common/warning.png -share/doc/HTML/es/common/x11-license.html -share/doc/HTML/es/common/xml.dcl -share/doc/HTML/es/kaddressbook/common -share/doc/HTML/es/kaddressbook/index.cache.bz2 -share/doc/HTML/es/kaddressbook/index.docbook -share/doc/HTML/es/kasteroids/fuel.png -share/doc/HTML/es/kate/common -share/doc/HTML/es/kate/index.cache.bz2 -share/doc/HTML/es/kate/index.docbook -share/doc/HTML/es/kcontrol/common -share/doc/HTML/es/kcontrol/index.cache.bz2 -share/doc/HTML/es/kcontrol/index.docbook -share/doc/HTML/es/kcontrol/instantanea.png -share/doc/HTML/es/kcontrol/kcmaccess.docbook -share/doc/HTML/es/kcontrol/kcmaction.docbook -share/doc/HTML/es/kcontrol/kcmbackgnd.docbook -share/doc/HTML/es/kcontrol/kcmbatmon.docbook -share/doc/HTML/es/kcontrol/kcmbell.docbook -share/doc/HTML/es/kcontrol/kcmblockdev.docbook -share/doc/HTML/es/kcontrol/kcmborders.docbook -share/doc/HTML/es/kcontrol/kcmcolor.docbook -share/doc/HTML/es/kcontrol/kcmcookie.docbook -share/doc/HTML/es/kcontrol/kcmcrypto.docbook -share/doc/HTML/es/kcontrol/kcmcss.docbook -share/doc/HTML/es/kcontrol/kcmdatetime.docbook -share/doc/HTML/es/kcontrol/kcmdesktop.docbook -share/doc/HTML/es/kcontrol/kcmdeviceinfo.docbook -share/doc/HTML/es/kcontrol/kcmdmainfo.docbook -share/doc/HTML/es/kcontrol/kcmdrkonqi.docbook -share/doc/HTML/es/kcontrol/kcmebrowse.docbook -share/doc/HTML/es/kcontrol/kcmemail.docbook -share/doc/HTML/es/kcontrol/kcmenergy.docbook -share/doc/HTML/es/kcontrol/kcmfile.docbook -share/doc/HTML/es/kcontrol/kcmfileman.docbook -share/doc/HTML/es/kcontrol/kcmfonts.docbook -share/doc/HTML/es/kcontrol/kcmhelpindex.docbook -share/doc/HTML/es/kcontrol/kcmicon.docbook -share/doc/HTML/es/kcontrol/kcmiconstyle.docbook -share/doc/HTML/es/kcontrol/kcmintinfo.docbook -share/doc/HTML/es/kcontrol/kcmioportinfo.docbook -share/doc/HTML/es/kcontrol/kcmkbd.docbook -share/doc/HTML/es/kcontrol/kcmkblayout.docbook -share/doc/HTML/es/kcontrol/kcmkbrowse.docbook -share/doc/HTML/es/kcontrol/kcmkeybind.docbook -share/doc/HTML/es/kcontrol/kcmkeys.docbook -share/doc/HTML/es/kcontrol/kcmkonsole.docbook -share/doc/HTML/es/kcontrol/kcmkwintheme.docbook -share/doc/HTML/es/kcontrol/kcmlaunch.docbook -share/doc/HTML/es/kcontrol/kcmlisa.docbook -share/doc/HTML/es/kcontrol/kcmlocate.docbook -share/doc/HTML/es/kcontrol/kcmloginmanage.docbook -share/doc/HTML/es/kcontrol/kcmlowbatcrit.docbook -share/doc/HTML/es/kcontrol/kcmlowbatwarn.docbook -share/doc/HTML/es/kcontrol/kcmmemoryinfo.docbook -share/doc/HTML/es/kcontrol/kcmmidi.docbook -share/doc/HTML/es/kcontrol/kcmmixer.docbook -share/doc/HTML/es/kcontrol/kcmmouse.docbook -share/doc/HTML/es/kcontrol/kcmmousebeh.docbook -share/doc/HTML/es/kcontrol/kcmnetscapeplugins.docbook -share/doc/HTML/es/kcontrol/kcmnumbername.docbook -share/doc/HTML/es/kcontrol/kcmpanel.docbook -share/doc/HTML/es/kcontrol/kcmpartitioninfo.docbook -share/doc/HTML/es/kcontrol/kcmpasswd.docbook -share/doc/HTML/es/kcontrol/kcmpciinfo.docbook -share/doc/HTML/es/kcontrol/kcmpcmcia.docbook -share/doc/HTML/es/kcontrol/kcmpowerctrl.docbook -share/doc/HTML/es/kcontrol/kcmprocinfo.docbook -share/doc/HTML/es/kcontrol/kcmproxie.docbook -share/doc/HTML/es/kcontrol/kcmscnsave.docbook -share/doc/HTML/es/kcontrol/kcmscsiinfo.docbook -share/doc/HTML/es/kcontrol/kcmsessionman.docbook -share/doc/HTML/es/kcontrol/kcmsmbstat.docbook -share/doc/HTML/es/kcontrol/kcmsndinfo.docbook -share/doc/HTML/es/kcontrol/kcmsndsrv.docbook -share/doc/HTML/es/kcontrol/kcmsocks.docbook -share/doc/HTML/es/kcontrol/kcmspellchecking.docbook -share/doc/HTML/es/kcontrol/kcmstyle.docbook -share/doc/HTML/es/kcontrol/kcmsysnotify.docbook -share/doc/HTML/es/kcontrol/kcmtalk.docbook -share/doc/HTML/es/kcontrol/kcmtaskbar.docbook -share/doc/HTML/es/kcontrol/kcmusb.docbook -share/doc/HTML/es/kcontrol/kcmuseragent.docbook -share/doc/HTML/es/kcontrol/kcmwinshare.docbook -share/doc/HTML/es/kcontrol/kcmxservinfo.docbook -share/doc/HTML/es/kcontrol/nettimeouts.docbook -share/doc/HTML/es/kcontrol/printmanager.docbook -share/doc/HTML/es/kcontrol/printsystem.docbook -share/doc/HTML/es/kcontrol/protocols.docbook -share/doc/HTML/es/kcontrol/systemcontrol.docbook -share/doc/HTML/es/kcontrol/thememgr.docbook -share/doc/HTML/es/kcron/common -share/doc/HTML/es/kcron/index.cache.bz2 -share/doc/HTML/es/kcron/index.docbook -share/doc/HTML/es/kdebugdialog/common -share/doc/HTML/es/kdebugdialog/index.cache.bz2 -share/doc/HTML/es/kdebugdialog/index.docbook -share/doc/HTML/es/kdesu/common -share/doc/HTML/es/kdesu/index.cache.bz2 -share/doc/HTML/es/kdesu/index.docbook -share/doc/HTML/es/kdevelop/tip.database -share/doc/HTML/es/kdf/common -share/doc/HTML/es/kdf/index.cache.bz2 -share/doc/HTML/es/kdf/index.docbook -share/doc/HTML/es/kdm/common -share/doc/HTML/es/kdm/index.cache.bz2 -share/doc/HTML/es/kdm/index.docbook -share/doc/HTML/es/khelpcenter/background.png -share/doc/HTML/es/khelpcenter/bgtable.png -share/doc/HTML/es/khelpcenter/common -share/doc/HTML/es/khelpcenter/contact.docbook -share/doc/HTML/es/khelpcenter/faq/about.docbook -share/doc/HTML/es/khelpcenter/faq/common -share/doc/HTML/es/khelpcenter/faq/configkde.docbook -share/doc/HTML/es/khelpcenter/faq/contrib.docbook -share/doc/HTML/es/khelpcenter/faq/desktop.docbook -share/doc/HTML/es/khelpcenter/faq/filemng.docbook -share/doc/HTML/es/khelpcenter/faq/getkde.docbook -share/doc/HTML/es/khelpcenter/faq/index.cache.bz2 -share/doc/HTML/es/khelpcenter/faq/index.docbook -share/doc/HTML/es/khelpcenter/faq/install.docbook -share/doc/HTML/es/khelpcenter/faq/intro.docbook -share/doc/HTML/es/khelpcenter/faq/kdeapps.docbook -share/doc/HTML/es/khelpcenter/faq/misc.docbook -share/doc/HTML/es/khelpcenter/faq/moreinfo.docbook -share/doc/HTML/es/khelpcenter/faq/nonkdeapps.docbook -share/doc/HTML/es/khelpcenter/faq/notrelated.docbook -share/doc/HTML/es/khelpcenter/faq/panel.docbook -share/doc/HTML/es/khelpcenter/faq/tips.docbook -share/doc/HTML/es/khelpcenter/faq/winmng.docbook -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/help.docbook -share/doc/HTML/es/khelpcenter/index.cache.bz2 -share/doc/HTML/es/khelpcenter/index.docbook -share/doc/HTML/es/khelpcenter/khelpcenter.png -share/doc/HTML/es/khelpcenter/konq.css -share/doc/HTML/es/khelpcenter/lines.png -share/doc/HTML/es/khelpcenter/links.docbook -share/doc/HTML/es/khelpcenter/main.html -share/doc/HTML/es/khelpcenter/pointers.png -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/shadow1.png -share/doc/HTML/es/khelpcenter/support.docbook -share/doc/HTML/es/khelpcenter/userguide/common -share/doc/HTML/es/khelpcenter/userguide/index.cache.bz2 -share/doc/HTML/es/khelpcenter/userguide/index.docbook -share/doc/HTML/es/khelpcenter/visualdict/common -share/doc/HTML/es/khelpcenter/visualdict/index.cache.bz2 -share/doc/HTML/es/khelpcenter/visualdict/index.docbook -share/doc/HTML/es/khelpcenter/visualdict/pict1.png -share/doc/HTML/es/khelpcenter/visualdict/pict10.png -share/doc/HTML/es/khelpcenter/visualdict/pict11.png -share/doc/HTML/es/khelpcenter/visualdict/pict12.png -share/doc/HTML/es/khelpcenter/visualdict/pict13.png -share/doc/HTML/es/khelpcenter/visualdict/pict14.png -share/doc/HTML/es/khelpcenter/visualdict/pict15.png -share/doc/HTML/es/khelpcenter/visualdict/pict16.png -share/doc/HTML/es/khelpcenter/visualdict/pict17.png -share/doc/HTML/es/khelpcenter/visualdict/pict18.png -share/doc/HTML/es/khelpcenter/visualdict/pict19.png -share/doc/HTML/es/khelpcenter/visualdict/pict2.png -share/doc/HTML/es/khelpcenter/visualdict/pict20.png -share/doc/HTML/es/khelpcenter/visualdict/pict3.png -share/doc/HTML/es/khelpcenter/visualdict/pict4.png -share/doc/HTML/es/khelpcenter/visualdict/pict5.png -share/doc/HTML/es/khelpcenter/visualdict/pict6.png -share/doc/HTML/es/khelpcenter/visualdict/pict7.png -share/doc/HTML/es/khelpcenter/visualdict/pict8.png -share/doc/HTML/es/khelpcenter/visualdict/pict9.png -share/doc/HTML/es/khelpcenter/welcome.docbook -share/doc/HTML/es/khelpcenter/whatiskde.docbook -share/doc/HTML/es/kicker/bookmarks_icon.png -share/doc/HTML/es/kicker/common -share/doc/HTML/es/kicker/desktop_icon.png -share/doc/HTML/es/kicker/index.cache.bz2 -share/doc/HTML/es/kicker/index.docbook -share/doc/HTML/es/kicker/k_menu_icon.png -share/doc/HTML/es/kicker/recent_docs_icon.png -share/doc/HTML/es/kicker/screenshot_left.png -share/doc/HTML/es/kicker/screenshot_right.png -share/doc/HTML/es/kicker/taskbar_group.png -share/doc/HTML/es/kicker/terminals_icon.png -share/doc/HTML/es/kicker/windowlist_icon.png -share/doc/HTML/es/kioslave/audiocd.docbook -share/doc/HTML/es/kioslave/bzip.docbook -share/doc/HTML/es/kioslave/bzip2.docbook -share/doc/HTML/es/kioslave/common -share/doc/HTML/es/kioslave/file.docbook -share/doc/HTML/es/kioslave/finger.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/mailto.docbook -share/doc/HTML/es/kioslave/man.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/rlan.docbook -share/doc/HTML/es/kioslave/rlogin.docbook -share/doc/HTML/es/kioslave/smb.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/kjezz/common -share/doc/HTML/es/kjezz/index.cache.bz2 -share/doc/HTML/es/kjezz/index.docbook -share/doc/HTML/es/klipper/common -share/doc/HTML/es/klipper/index.cache.bz2 -share/doc/HTML/es/klipper/index.docbook -share/doc/HTML/es/klipper/screenshot.png -share/doc/HTML/es/klprfax/common -share/doc/HTML/es/klprfax/index.cache.bz2 -share/doc/HTML/es/klprfax/index.docbook -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/kmenuedit/common -share/doc/HTML/es/kmenuedit/i_copy.png -share/doc/HTML/es/kmenuedit/i_cut.png -share/doc/HTML/es/kmenuedit/i_delete.png -share/doc/HTML/es/kmenuedit/i_k_button.png -share/doc/HTML/es/kmenuedit/i_new_item.png -share/doc/HTML/es/kmenuedit/i_new_submenu.png -share/doc/HTML/es/kmenuedit/i_paste.png -share/doc/HTML/es/kmenuedit/icon_sets.png -share/doc/HTML/es/kmenuedit/icons.png -share/doc/HTML/es/kmenuedit/index.cache.bz2 -share/doc/HTML/es/kmenuedit/index.docbook -share/doc/HTML/es/kmines/common -share/doc/HTML/es/kmines/index.cache.bz2 -share/doc/HTML/es/kmines/index.docbook -share/doc/HTML/es/kmines/kmines1.png -share/doc/HTML/es/kmines/kmines2.png -share/doc/HTML/es/kmix/common -share/doc/HTML/es/kmix/index.cache.bz2 -share/doc/HTML/es/kmix/index.docbook -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/kodo/common -share/doc/HTML/es/kodo/index.cache.bz2 -share/doc/HTML/es/kodo/index.docbook -share/doc/HTML/es/konqueror/cmndline.png -share/doc/HTML/es/konqueror/common -share/doc/HTML/es/konqueror/dirtree.png -share/doc/HTML/es/konqueror/dragdrop.png -share/doc/HTML/es/konqueror/filetype1.png -share/doc/HTML/es/konqueror/filetype3.png -share/doc/HTML/es/konqueror/filetype4.png -share/doc/HTML/es/konqueror/index.cache.bz2 -share/doc/HTML/es/konqueror/index.docbook -share/doc/HTML/es/konqueror/konqueror.png -share/doc/HTML/es/konqueror/parts.png -share/doc/HTML/es/konsole/common -share/doc/HTML/es/konsole/index.cache.bz2 -share/doc/HTML/es/konsole/index.docbook -share/doc/HTML/es/kpackage/common -share/doc/HTML/es/kpackage/index.cache.bz2 -share/doc/HTML/es/kpackage/index.docbook -share/doc/HTML/es/kpager/common -share/doc/HTML/es/kpager/index.cache.bz2 -share/doc/HTML/es/kpager/index.docbook -share/doc/HTML/es/kpager/screenshot.png -share/doc/HTML/es/kpager/settings.png -share/doc/HTML/es/kpoker/kpoker1.png -share/doc/HTML/es/kpoker/kpoker2.png -share/doc/HTML/es/kscd/common -share/doc/HTML/es/kscd/index.cache.bz2 -share/doc/HTML/es/kscd/index.docbook -share/doc/HTML/es/kscd/kscd.png -share/doc/HTML/es/kscd/kscd1.png -share/doc/HTML/es/kscd/kscd12.png -share/doc/HTML/es/kscd/kscd13.png -share/doc/HTML/es/kscd/kscd14.png -share/doc/HTML/es/kscd/kscd16.png -share/doc/HTML/es/kscore/common -share/doc/HTML/es/kscore/index.cache.bz2 -share/doc/HTML/es/kscore/index.docbook -share/doc/HTML/es/kspell/common -share/doc/HTML/es/kspell/index.cache.bz2 -share/doc/HTML/es/kspell/index.docbook -share/doc/HTML/es/ksysguard/common -share/doc/HTML/es/ksysguard/index.cache.bz2 -share/doc/HTML/es/ksysguard/index.docbook -share/doc/HTML/es/ksysv/common -share/doc/HTML/es/ksysv/index.cache.bz2 -share/doc/HTML/es/ksysv/index.docbook -share/doc/HTML/es/kteatime/common -share/doc/HTML/es/kteatime/index.cache.bz2 -share/doc/HTML/es/kteatime/index.docbook -share/doc/HTML/es/kuser/common -share/doc/HTML/es/kuser/index.cache.bz2 -share/doc/HTML/es/kuser/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/kwuftpd/common -share/doc/HTML/es/kwuftpd/index.cache.bz2 -share/doc/HTML/es/kwuftpd/index.docbook -share/doc/HTML/es/noatun/common -share/doc/HTML/es/noatun/index.cache.bz2 -share/doc/HTML/es/noatun/index.docbook -share/doc/HTML/et/common/1.png -share/doc/HTML/et/common/10.png -share/doc/HTML/et/common/2.png -share/doc/HTML/et/common/3.png -share/doc/HTML/et/common/4.png -share/doc/HTML/et/common/5.png -share/doc/HTML/et/common/6.png -share/doc/HTML/et/common/7.png -share/doc/HTML/et/common/8.png -share/doc/HTML/et/common/9.png -share/doc/HTML/et/common/artistic-license.html -share/doc/HTML/et/common/bottom1.png -share/doc/HTML/et/common/bottom2.png -share/doc/HTML/et/common/bsd-license.html -share/doc/HTML/et/common/caution.png -share/doc/HTML/et/common/doctop1.png -share/doc/HTML/et/common/doctop1a.png -share/doc/HTML/et/common/doctop1b.png -share/doc/HTML/et/common/doctop2.png -share/doc/HTML/et/common/fdl-license -share/doc/HTML/et/common/fdl-license.html -share/doc/HTML/et/common/fdl-translated.html -share/doc/HTML/et/common/gpl-license -share/doc/HTML/et/common/gpl-license.html -share/doc/HTML/et/common/gpl-translated.html -share/doc/HTML/et/common/important.png -share/doc/HTML/et/common/kde-common.css -share/doc/HTML/et/common/kde-default.css -share/doc/HTML/et/common/kde-localised.css -share/doc/HTML/et/common/kde-localised.css.template -share/doc/HTML/et/common/lgpl-license -share/doc/HTML/et/common/lgpl-license.html -share/doc/HTML/et/common/lgpl-translated.html -share/doc/HTML/et/common/logotp3-small.png -share/doc/HTML/et/common/logotp3.png -share/doc/HTML/et/common/note.png -share/doc/HTML/et/common/prev.png -share/doc/HTML/et/common/qpl-license.html -share/doc/HTML/et/common/shadow.png -share/doc/HTML/et/common/tip.png -share/doc/HTML/et/common/toc-blank.png -share/doc/HTML/et/common/toc-minus.png -share/doc/HTML/et/common/toc-plus.png -share/doc/HTML/et/common/up.png -share/doc/HTML/et/common/warning.png -share/doc/HTML/et/common/x11-license.html -share/doc/HTML/et/common/xml.dcl -share/doc/HTML/et/kcontrol/kcmdeviceinfo.docbook -share/doc/HTML/et/kcontrol/kcmdmainfo.docbook -share/doc/HTML/et/kcontrol/kcmfileman.docbook -share/doc/HTML/et/kcontrol/kcmintinfo.docbook -share/doc/HTML/et/kcontrol/kcmioportinfo.docbook -share/doc/HTML/et/kcontrol/kcmkbd.docbook -share/doc/HTML/et/kcontrol/kcmmemoryinfo.docbook -share/doc/HTML/et/kcontrol/kcmmouse.docbook -share/doc/HTML/et/kcontrol/kcmpartitioninfo.docbook -share/doc/HTML/et/kcontrol/kcmpciinfo.docbook -share/doc/HTML/et/kcontrol/kcmprocinfo.docbook -share/doc/HTML/et/kcontrol/kcmscsiinfo.docbook -share/doc/HTML/et/kcontrol/kcmsndinfo.docbook -share/doc/HTML/et/kcontrol/kcmxservinfo.docbook -share/doc/HTML/fi/common/1.png -share/doc/HTML/fi/common/10.png -share/doc/HTML/fi/common/2.png -share/doc/HTML/fi/common/3.png -share/doc/HTML/fi/common/4.png -share/doc/HTML/fi/common/5.png -share/doc/HTML/fi/common/6.png -share/doc/HTML/fi/common/7.png -share/doc/HTML/fi/common/8.png -share/doc/HTML/fi/common/9.png -share/doc/HTML/fi/common/artistic-license.html -share/doc/HTML/fi/common/bottom1.png -share/doc/HTML/fi/common/bottom2.png -share/doc/HTML/fi/common/bsd-license.html -share/doc/HTML/fi/common/caution.png -share/doc/HTML/fi/common/doctop1.png -share/doc/HTML/fi/common/doctop1a.png -share/doc/HTML/fi/common/doctop1b.png -share/doc/HTML/fi/common/doctop2.png -share/doc/HTML/fi/common/fdl-license -share/doc/HTML/fi/common/fdl-license.html -share/doc/HTML/fi/common/fdl-translated.html -share/doc/HTML/fi/common/gpl-license -share/doc/HTML/fi/common/gpl-license.html -share/doc/HTML/fi/common/gpl-translated.html -share/doc/HTML/fi/common/important.png -share/doc/HTML/fi/common/kde-common.css -share/doc/HTML/fi/common/kde-default.css -share/doc/HTML/fi/common/kde-localised.css -share/doc/HTML/fi/common/kde-localised.css.template -share/doc/HTML/fi/common/lgpl-license -share/doc/HTML/fi/common/lgpl-license.html -share/doc/HTML/fi/common/lgpl-translated.html -share/doc/HTML/fi/common/logotp3-small.png -share/doc/HTML/fi/common/logotp3.png -share/doc/HTML/fi/common/note.png -share/doc/HTML/fi/common/prev.png -share/doc/HTML/fi/common/qpl-license.html -share/doc/HTML/fi/common/shadow.png -share/doc/HTML/fi/common/tip.png -share/doc/HTML/fi/common/toc-blank.png -share/doc/HTML/fi/common/toc-minus.png -share/doc/HTML/fi/common/toc-plus.png -share/doc/HTML/fi/common/up.png -share/doc/HTML/fi/common/warning.png -share/doc/HTML/fi/common/x11-license.html -share/doc/HTML/fi/common/xml.dcl -share/doc/HTML/fr/aktion/aktion.png -share/doc/HTML/fr/aktion/aktiontoolbar.png -share/doc/HTML/fr/aktion/common -share/doc/HTML/fr/aktion/index.cache.bz2 -share/doc/HTML/fr/aktion/index.docbook -share/doc/HTML/fr/amor/common -share/doc/HTML/fr/amor/index.cache.bz2 -share/doc/HTML/fr/amor/index.docbook -share/doc/HTML/fr/ark/common -share/doc/HTML/fr/ark/index.cache.bz2 -share/doc/HTML/fr/ark/index.docbook -share/doc/HTML/fr/artsbuilder/arts-structure.png -share/doc/HTML/fr/artsbuilder/artsbuilder.docbook -share/doc/HTML/fr/artsbuilder/digitalaudio.docbook -share/doc/HTML/fr/artsbuilder/faq.docbook -share/doc/HTML/fr/artsbuilder/glossary.docbook -share/doc/HTML/fr/artsbuilder/gui.docbook -share/doc/HTML/fr/artsbuilder/helping.docbook -share/doc/HTML/fr/artsbuilder/images/Doc_MODUL.png -share/doc/HTML/fr/artsbuilder/images/Gui_AUDIO_MANAGER.png -share/doc/HTML/fr/artsbuilder/images/Gui_INSTRUMENT_MAPPER.png -share/doc/HTML/fr/artsbuilder/images/Gui_LABEL.png -share/doc/HTML/fr/artsbuilder/images/Gui_MIXER.png -share/doc/HTML/fr/artsbuilder/images/Gui_PANEL.png -share/doc/HTML/fr/artsbuilder/images/Gui_POTI.png -share/doc/HTML/fr/artsbuilder/images/Gui_SLIDER.png -share/doc/HTML/fr/artsbuilder/images/Gui_SUBPANEL.png -share/doc/HTML/fr/artsbuilder/images/Gui_WINDOW.png -share/doc/HTML/fr/artsbuilder/images/Interface_MIDI_NOTE.png -share/doc/HTML/fr/artsbuilder/images/Synth_ADD.png -share/doc/HTML/fr/artsbuilder/images/Synth_ATAN_SATURATE.png -share/doc/HTML/fr/artsbuilder/images/Synth_BUS_DOWNLINK.png -share/doc/HTML/fr/artsbuilder/images/Synth_BUS_UPLINK.png -share/doc/HTML/fr/artsbuilder/images/Synth_CDELAY.png -share/doc/HTML/fr/artsbuilder/images/Synth_DEBUG.png -share/doc/HTML/fr/artsbuilder/images/Synth_DELAY.png -share/doc/HTML/fr/artsbuilder/images/Synth_ENVELOPE_ADSR.png -share/doc/HTML/fr/artsbuilder/images/Synth_FILEPLAY.png -share/doc/HTML/fr/artsbuilder/images/Synth_FM_SOURCE.png -share/doc/HTML/fr/artsbuilder/images/Synth_FREQUENCY.png -share/doc/HTML/fr/artsbuilder/images/Synth_MIDI_DEBUG.png -share/doc/HTML/fr/artsbuilder/images/Synth_MIDI_ROUTER.png -share/doc/HTML/fr/artsbuilder/images/Synth_MUL.png -share/doc/HTML/fr/artsbuilder/images/Synth_NIL.png -share/doc/HTML/fr/artsbuilder/images/Synth_PLAY.png -share/doc/HTML/fr/artsbuilder/images/Synth_PLAY_AKAI.png -share/doc/HTML/fr/artsbuilder/images/Synth_PLAY_AKAIS.png -share/doc/HTML/fr/artsbuilder/images/Synth_PLAY_WAV.png -share/doc/HTML/fr/artsbuilder/images/Synth_PSCALE.png -share/doc/HTML/fr/artsbuilder/images/Synth_RC.png -share/doc/HTML/fr/artsbuilder/images/Synth_SEQUENCE.png -share/doc/HTML/fr/artsbuilder/images/Synth_SHELVE_CUTOFF.png -share/doc/HTML/fr/artsbuilder/images/Synth_STD_EQUALIZER.png -share/doc/HTML/fr/artsbuilder/images/Synth_STRUCT_KILL.png -share/doc/HTML/fr/artsbuilder/images/Synth_WAVE_SIN.png -share/doc/HTML/fr/artsbuilder/images/Synth_WAVE_SQUARE.png -share/doc/HTML/fr/artsbuilder/images/Synth_WAVE_TRI.png -share/doc/HTML/fr/artsbuilder/images/Synth_XFADE.png -share/doc/HTML/fr/artsbuilder/images/schema1.png -share/doc/HTML/fr/artsbuilder/images/schema2.png -share/doc/HTML/fr/artsbuilder/images/schema3.png -share/doc/HTML/fr/artsbuilder/images/schema4.png -share/doc/HTML/fr/artsbuilder/midi.docbook -share/doc/HTML/fr/artsbuilder/midiintro.docbook -share/doc/HTML/fr/artsbuilder/modules.docbook -share/doc/HTML/fr/artsbuilder/porting.docbook -share/doc/HTML/fr/artsbuilder/references.docbook -share/doc/HTML/fr/artsbuilder/tools.docbook -share/doc/HTML/fr/common/1.png -share/doc/HTML/fr/common/10.png -share/doc/HTML/fr/common/2.png -share/doc/HTML/fr/common/3.png -share/doc/HTML/fr/common/4.png -share/doc/HTML/fr/common/5.png -share/doc/HTML/fr/common/6.png -share/doc/HTML/fr/common/7.png -share/doc/HTML/fr/common/8.png -share/doc/HTML/fr/common/9.png -share/doc/HTML/fr/common/artistic-license.html -share/doc/HTML/fr/common/bottom1.png -share/doc/HTML/fr/common/bottom2.png -share/doc/HTML/fr/common/bsd-license.html -share/doc/HTML/fr/common/caution.png -share/doc/HTML/fr/common/doctop1.png -share/doc/HTML/fr/common/doctop1a.png -share/doc/HTML/fr/common/doctop1b.png -share/doc/HTML/fr/common/doctop2.png -share/doc/HTML/fr/common/fdl-license -share/doc/HTML/fr/common/fdl-license.html -share/doc/HTML/fr/common/fdl-translated.html -share/doc/HTML/fr/common/gpl-license -share/doc/HTML/fr/common/gpl-license.html -share/doc/HTML/fr/common/gpl-translated.html -share/doc/HTML/fr/common/important.png -share/doc/HTML/fr/common/kde-common.css -share/doc/HTML/fr/common/kde-default.css -share/doc/HTML/fr/common/kde-localised.css -share/doc/HTML/fr/common/kde-localised.css.template -share/doc/HTML/fr/common/lgpl-license -share/doc/HTML/fr/common/lgpl-license.html -share/doc/HTML/fr/common/lgpl-translated.html -share/doc/HTML/fr/common/logotp3-small.png -share/doc/HTML/fr/common/logotp3.png -share/doc/HTML/fr/common/note.png -share/doc/HTML/fr/common/prev.png -share/doc/HTML/fr/common/qpl-license.html -share/doc/HTML/fr/common/shadow.png -share/doc/HTML/fr/common/tip.png -share/doc/HTML/fr/common/toc-blank.png -share/doc/HTML/fr/common/toc-minus.png -share/doc/HTML/fr/common/toc-plus.png -share/doc/HTML/fr/common/up.png -share/doc/HTML/fr/common/warning.png -share/doc/HTML/fr/common/x11-license.html -share/doc/HTML/fr/common/xml.dcl -share/doc/HTML/fr/glossary/common -share/doc/HTML/fr/glossary/index.cache.bz2 -share/doc/HTML/fr/glossary/index.docbook -share/doc/HTML/fr/kab/common -share/doc/HTML/fr/kab/index.cache.bz2 -share/doc/HTML/fr/kab/index.docbook -share/doc/HTML/fr/kabalone/common -share/doc/HTML/fr/kabalone/index.cache.bz2 -share/doc/HTML/fr/kabalone/index.docbook -share/doc/HTML/fr/kaddressbook/common -share/doc/HTML/fr/kaddressbook/index.cache.bz2 -share/doc/HTML/fr/kaddressbook/index.docbook -share/doc/HTML/fr/karm/common -share/doc/HTML/fr/karm/index.cache.bz2 -share/doc/HTML/fr/karm/index.docbook -share/doc/HTML/fr/kasteroids/common -share/doc/HTML/fr/kasteroids/index.cache.bz2 -share/doc/HTML/fr/kasteroids/index.docbook -share/doc/HTML/fr/kate/common -share/doc/HTML/fr/kate/index.cache.bz2 -share/doc/HTML/fr/kate/index.docbook -share/doc/HTML/fr/kate-plugins/common -share/doc/HTML/fr/kate-plugins/helloworld.docbook -share/doc/HTML/fr/kate-plugins/htmltools.docbook -share/doc/HTML/fr/kate-plugins/index.cache.bz2 -share/doc/HTML/fr/kate-plugins/index.docbook -share/doc/HTML/fr/kate-plugins/insertcommand.docbook -share/doc/HTML/fr/kate-plugins/openheader.docbook -share/doc/HTML/fr/kate-plugins/projectmanager.docbook -share/doc/HTML/fr/kate-plugins/textfilter.docbook -share/doc/HTML/fr/katomic/common -share/doc/HTML/fr/katomic/index.cache.bz2 -share/doc/HTML/fr/katomic/index.docbook -share/doc/HTML/fr/kbackgammon/common -share/doc/HTML/fr/kbackgammon/index.cache.bz2 -share/doc/HTML/fr/kbackgammon/index.docbook -share/doc/HTML/fr/kbattleship/common -share/doc/HTML/fr/kbattleship/index.cache.bz2 -share/doc/HTML/fr/kbattleship/index.docbook -share/doc/HTML/fr/kblackbox/common -share/doc/HTML/fr/kblackbox/index.cache.bz2 -share/doc/HTML/fr/kblackbox/index.docbook -share/doc/HTML/fr/kcalc/common -share/doc/HTML/fr/kcalc/index.cache.bz2 -share/doc/HTML/fr/kcalc/index.docbook -share/doc/HTML/fr/kcontrol/common -share/doc/HTML/fr/kcontrol/index.cache.bz2 -share/doc/HTML/fr/kcontrol/index.docbook -share/doc/HTML/fr/kcontrol/kcmaccess.docbook -share/doc/HTML/fr/kcontrol/kcmaction.docbook -share/doc/HTML/fr/kcontrol/kcmbackgnd.docbook -share/doc/HTML/fr/kcontrol/kcmbatmon.docbook -share/doc/HTML/fr/kcontrol/kcmbell.docbook -share/doc/HTML/fr/kcontrol/kcmblockdev.docbook -share/doc/HTML/fr/kcontrol/kcmborders.docbook -share/doc/HTML/fr/kcontrol/kcmcolor.docbook -share/doc/HTML/fr/kcontrol/kcmcookie.docbook -share/doc/HTML/fr/kcontrol/kcmcrypto.docbook -share/doc/HTML/fr/kcontrol/kcmcss.docbook -share/doc/HTML/fr/kcontrol/kcmdatetime.docbook -share/doc/HTML/fr/kcontrol/kcmdesktop.docbook -share/doc/HTML/fr/kcontrol/kcmdeviceinfo.docbook -share/doc/HTML/fr/kcontrol/kcmdmainfo.docbook -share/doc/HTML/fr/kcontrol/kcmebrowse.docbook -share/doc/HTML/fr/kcontrol/kcmemail.docbook -share/doc/HTML/fr/kcontrol/kcmenergy.docbook -share/doc/HTML/fr/kcontrol/kcmfile.docbook -share/doc/HTML/fr/kcontrol/kcmfileman.docbook -share/doc/HTML/fr/kcontrol/kcmfonts.docbook -share/doc/HTML/fr/kcontrol/kcmhelpindex.docbook -share/doc/HTML/fr/kcontrol/kcmicon.docbook -share/doc/HTML/fr/kcontrol/kcmiconstyle.docbook -share/doc/HTML/fr/kcontrol/kcminfo.docbook -share/doc/HTML/fr/kcontrol/kcmintinfo.docbook -share/doc/HTML/fr/kcontrol/kcmioportinfo.docbook -share/doc/HTML/fr/kcontrol/kcmkbd.docbook -share/doc/HTML/fr/kcontrol/kcmkblayout.docbook -share/doc/HTML/fr/kcontrol/kcmkbrowse.docbook -share/doc/HTML/fr/kcontrol/kcmkeybind.docbook -share/doc/HTML/fr/kcontrol/kcmkonsole.docbook -share/doc/HTML/fr/kcontrol/kcmkwintheme.docbook -share/doc/HTML/fr/kcontrol/kcmlaunch.docbook -share/doc/HTML/fr/kcontrol/kcmlisa.docbook -share/doc/HTML/fr/kcontrol/kcmlocate.docbook -share/doc/HTML/fr/kcontrol/kcmloginmanage.docbook -share/doc/HTML/fr/kcontrol/kcmlowbatcrit.docbook -share/doc/HTML/fr/kcontrol/kcmlowbatwarn.docbook -share/doc/HTML/fr/kcontrol/kcmmemoryinfo.docbook -share/doc/HTML/fr/kcontrol/kcmmidi.docbook -share/doc/HTML/fr/kcontrol/kcmmixer.docbook -share/doc/HTML/fr/kcontrol/kcmmouse.docbook -share/doc/HTML/fr/kcontrol/kcmmousebeh.docbook -share/doc/HTML/fr/kcontrol/kcmnetscapeplugins.docbook -share/doc/HTML/fr/kcontrol/kcmnumbername.docbook -share/doc/HTML/fr/kcontrol/kcmpanel.docbook -share/doc/HTML/fr/kcontrol/kcmpartitioninfo.docbook -share/doc/HTML/fr/kcontrol/kcmpasswd.docbook -share/doc/HTML/fr/kcontrol/kcmpciinfo.docbook -share/doc/HTML/fr/kcontrol/kcmpcmcia.docbook -share/doc/HTML/fr/kcontrol/kcmpowerctrl.docbook -share/doc/HTML/fr/kcontrol/kcmprocinfo.docbook -share/doc/HTML/fr/kcontrol/kcmproxie.docbook -share/doc/HTML/fr/kcontrol/kcmscnsave.docbook -share/doc/HTML/fr/kcontrol/kcmscsiinfo.docbook -share/doc/HTML/fr/kcontrol/kcmsessionman.docbook -share/doc/HTML/fr/kcontrol/kcmsmbstat.docbook -share/doc/HTML/fr/kcontrol/kcmsndinfo.docbook -share/doc/HTML/fr/kcontrol/kcmsndsrv.docbook -share/doc/HTML/fr/kcontrol/kcmsocks.docbook -share/doc/HTML/fr/kcontrol/kcmspellchecking.docbook -share/doc/HTML/fr/kcontrol/kcmstyle.docbook -share/doc/HTML/fr/kcontrol/kcmsysnotify.docbook -share/doc/HTML/fr/kcontrol/kcmtalk.docbook -share/doc/HTML/fr/kcontrol/kcmtaskbar.docbook -share/doc/HTML/fr/kcontrol/kcmusb.docbook -share/doc/HTML/fr/kcontrol/kcmuseragent.docbook -share/doc/HTML/fr/kcontrol/kcmwinshare.docbook -share/doc/HTML/fr/kcontrol/kcmxservinfo.docbook -share/doc/HTML/fr/kcontrol/kfileman1.png -share/doc/HTML/fr/kcontrol/kfileman2.png -share/doc/HTML/fr/kcontrol/nettimeouts.docbook -share/doc/HTML/fr/kcontrol/printmanager.docbook -share/doc/HTML/fr/kcontrol/printsystem.docbook -share/doc/HTML/fr/kcontrol/protocols.docbook -share/doc/HTML/fr/kcontrol/screenshot.png -share/doc/HTML/fr/kcontrol/systemcontrol.docbook -share/doc/HTML/fr/kcontrol/thememgr.docbook -share/doc/HTML/fr/kcron/common -share/doc/HTML/fr/kcron/index.cache.bz2 -share/doc/HTML/fr/kcron/index.docbook -share/doc/HTML/fr/kcron/kcron.png -share/doc/HTML/fr/kcron/kcronstart.png -share/doc/HTML/fr/kcron/newtask.png -share/doc/HTML/fr/kcron/newvariable.png -share/doc/HTML/fr/kcron/print.png -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/kdesu/common -share/doc/HTML/fr/kdesu/index.cache.bz2 -share/doc/HTML/fr/kdesu/index.docbook -share/doc/HTML/fr/kdevelop/tip.database -share/doc/HTML/fr/kdf/common -share/doc/HTML/fr/kdf/index.cache.bz2 -share/doc/HTML/fr/kdf/index.docbook -share/doc/HTML/fr/kdm/common -share/doc/HTML/fr/kdm/index.cache.bz2 -share/doc/HTML/fr/kdm/index.docbook -share/doc/HTML/fr/kdvi/common -share/doc/HTML/fr/kdvi/index.cache.bz2 -share/doc/HTML/fr/kdvi/index.docbook -share/doc/HTML/fr/kedit/common -share/doc/HTML/fr/kedit/index.cache.bz2 -share/doc/HTML/fr/kedit/index.docbook -share/doc/HTML/fr/kfind/common -share/doc/HTML/fr/kfind/index.cache.bz2 -share/doc/HTML/fr/kfind/index.docbook -share/doc/HTML/fr/kfloppy/common -share/doc/HTML/fr/kfloppy/index.cache.bz2 -share/doc/HTML/fr/kfloppy/index.docbook -share/doc/HTML/fr/kfouleggs/common -share/doc/HTML/fr/kfouleggs/index.cache.bz2 -share/doc/HTML/fr/kfouleggs/index.docbook -share/doc/HTML/fr/kfract/common -share/doc/HTML/fr/kfract/index.cache.bz2 -share/doc/HTML/fr/kfract/index.docbook -share/doc/HTML/fr/kfract/kfract.png -share/doc/HTML/fr/kghostview/common -share/doc/HTML/fr/kghostview/index.cache.bz2 -share/doc/HTML/fr/kghostview/index.docbook -share/doc/HTML/fr/khelpcenter/background.png -share/doc/HTML/fr/khelpcenter/bgtable.png -share/doc/HTML/fr/khelpcenter/common -share/doc/HTML/fr/khelpcenter/contact.docbook -share/doc/HTML/fr/khelpcenter/faq/about.docbook -share/doc/HTML/fr/khelpcenter/faq/configkde.docbook -share/doc/HTML/fr/khelpcenter/faq/filemng.docbook -share/doc/HTML/fr/khelpcenter/faq/notrelated.docbook -share/doc/HTML/fr/khelpcenter/faq/tips.docbook -share/doc/HTML/fr/khelpcenter/help.docbook -share/doc/HTML/fr/khelpcenter/index.cache.bz2 -share/doc/HTML/fr/khelpcenter/index.docbook -share/doc/HTML/fr/khelpcenter/kdelogo2.png -share/doc/HTML/fr/khelpcenter/khelpcenter.png -share/doc/HTML/fr/khelpcenter/konq.css -share/doc/HTML/fr/khelpcenter/lines.png -share/doc/HTML/fr/khelpcenter/lines2.png -share/doc/HTML/fr/khelpcenter/links.docbook -share/doc/HTML/fr/khelpcenter/main.html -share/doc/HTML/fr/khelpcenter/pointers.png -share/doc/HTML/fr/khelpcenter/quickstart/common -share/doc/HTML/fr/khelpcenter/quickstart/index.cache.bz2 -share/doc/HTML/fr/khelpcenter/quickstart/index.docbook -share/doc/HTML/fr/khelpcenter/shadow1.png -share/doc/HTML/fr/khelpcenter/support.docbook -share/doc/HTML/fr/khelpcenter/userguide/common -share/doc/HTML/fr/khelpcenter/userguide/index.cache.bz2 -share/doc/HTML/fr/khelpcenter/userguide/index.docbook -share/doc/HTML/fr/khelpcenter/visualdict/common -share/doc/HTML/fr/khelpcenter/visualdict/index.cache.bz2 -share/doc/HTML/fr/khelpcenter/visualdict/index.docbook -share/doc/HTML/fr/khelpcenter/visualdict/pict1.png -share/doc/HTML/fr/khelpcenter/visualdict/pict10.png -share/doc/HTML/fr/khelpcenter/visualdict/pict11.png -share/doc/HTML/fr/khelpcenter/visualdict/pict12.png -share/doc/HTML/fr/khelpcenter/visualdict/pict13.png -share/doc/HTML/fr/khelpcenter/visualdict/pict14.png -share/doc/HTML/fr/khelpcenter/visualdict/pict15.png -share/doc/HTML/fr/khelpcenter/visualdict/pict16.png -share/doc/HTML/fr/khelpcenter/visualdict/pict17.png -share/doc/HTML/fr/khelpcenter/visualdict/pict18.png -share/doc/HTML/fr/khelpcenter/visualdict/pict19.png -share/doc/HTML/fr/khelpcenter/visualdict/pict2.png -share/doc/HTML/fr/khelpcenter/visualdict/pict20.png -share/doc/HTML/fr/khelpcenter/visualdict/pict3.png -share/doc/HTML/fr/khelpcenter/visualdict/pict4.png -share/doc/HTML/fr/khelpcenter/visualdict/pict5.png -share/doc/HTML/fr/khelpcenter/visualdict/pict6.png -share/doc/HTML/fr/khelpcenter/visualdict/pict7.png -share/doc/HTML/fr/khelpcenter/visualdict/pict8.png -share/doc/HTML/fr/khelpcenter/visualdict/pict9.png -share/doc/HTML/fr/khelpcenter/welcome.docbook -share/doc/HTML/fr/khelpcenter/whatiskde.docbook -share/doc/HTML/fr/khexedit/common -share/doc/HTML/fr/khexedit/index.cache.bz2 -share/doc/HTML/fr/khexedit/index.docbook -share/doc/HTML/fr/khexedit/khexedit.png -share/doc/HTML/fr/kicker/common -share/doc/HTML/fr/kicker/index.cache.bz2 -share/doc/HTML/fr/kicker/index.docbook -share/doc/HTML/fr/kicker/k_menu_icon.png -share/doc/HTML/fr/kicker/screenshot_left.png -share/doc/HTML/fr/kicker/screenshot_right.png -share/doc/HTML/fr/kicker/windowlist_icon.png -share/doc/HTML/fr/kicker-applets/common -share/doc/HTML/fr/kicker-applets/index.cache.bz2 -share/doc/HTML/fr/kicker-applets/index.docbook -share/doc/HTML/fr/kicker-applets/kolourpicker.docbook -share/doc/HTML/fr/kicker-applets/ktimemon.docbook -share/doc/HTML/fr/kioslave/audiocd.docbook -share/doc/HTML/fr/kioslave/bzip.docbook -share/doc/HTML/fr/kioslave/bzip2.docbook -share/doc/HTML/fr/kioslave/file.docbook -share/doc/HTML/fr/kioslave/finger.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/info.docbook -share/doc/HTML/fr/kioslave/lan.docbook -share/doc/HTML/fr/kioslave/ldap.docbook -share/doc/HTML/fr/kioslave/mailto.docbook -share/doc/HTML/fr/kioslave/man.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/rlan.docbook -share/doc/HTML/fr/kioslave/rlogin.docbook -share/doc/HTML/fr/kioslave/smb.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/kit/common -share/doc/HTML/fr/kit/index.cache.bz2 -share/doc/HTML/fr/kit/index.docbook -share/doc/HTML/fr/kjezz/common -share/doc/HTML/fr/kjezz/index.cache.bz2 -share/doc/HTML/fr/kjezz/index.docbook -share/doc/HTML/fr/kjumpingcube/common -share/doc/HTML/fr/kjumpingcube/index.cache.bz2 -share/doc/HTML/fr/kjumpingcube/index.docbook -share/doc/HTML/fr/klines/common -share/doc/HTML/fr/klines/index.cache.bz2 -share/doc/HTML/fr/klines/index.docbook -share/doc/HTML/fr/klipper/common -share/doc/HTML/fr/klipper/index.cache.bz2 -share/doc/HTML/fr/klipper/index.docbook -share/doc/HTML/fr/klipper/screenshot.png -share/doc/HTML/fr/klprfax/common -share/doc/HTML/fr/klprfax/index.cache.bz2 -share/doc/HTML/fr/klprfax/index.docbook -share/doc/HTML/fr/kmenuedit/common -share/doc/HTML/fr/kmenuedit/i_copy.png -share/doc/HTML/fr/kmenuedit/i_cut.png -share/doc/HTML/fr/kmenuedit/i_delete.png -share/doc/HTML/fr/kmenuedit/i_k_button.png -share/doc/HTML/fr/kmenuedit/i_new_item.png -share/doc/HTML/fr/kmenuedit/i_new_submenu.png -share/doc/HTML/fr/kmenuedit/i_paste.png -share/doc/HTML/fr/kmenuedit/icon_sets.png -share/doc/HTML/fr/kmenuedit/icons.png -share/doc/HTML/fr/kmenuedit/index.cache.bz2 -share/doc/HTML/fr/kmenuedit/index.docbook -share/doc/HTML/fr/kmid/common -share/doc/HTML/fr/kmid/index.cache.bz2 -share/doc/HTML/fr/kmid/index.docbook -share/doc/HTML/fr/kmines/common -share/doc/HTML/fr/kmines/index.cache.bz2 -share/doc/HTML/fr/kmines/index.docbook -share/doc/HTML/fr/kmines/kmines1.png -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/kmoon/common -share/doc/HTML/fr/kmoon/index.cache.bz2 -share/doc/HTML/fr/kmoon/index.docbook -share/doc/HTML/fr/knewsticker/common -share/doc/HTML/fr/knewsticker/index.cache.bz2 -share/doc/HTML/fr/knewsticker/index.docbook -share/doc/HTML/fr/knode/common -share/doc/HTML/fr/knode/eyes.png -share/doc/HTML/fr/knode/greyball.png -share/doc/HTML/fr/knode/greyballchk.png -share/doc/HTML/fr/knode/index.cache.bz2 -share/doc/HTML/fr/knode/index.docbook -share/doc/HTML/fr/knode/knode-cleanup.png -share/doc/HTML/fr/knode/knode-colors.png -share/doc/HTML/fr/knode/knode-composer-attachments.png -share/doc/HTML/fr/knode/knode-composer-settings.png -share/doc/HTML/fr/knode/knode-edit-filter.png -share/doc/HTML/fr/knode/knode-edit-header1.png -share/doc/HTML/fr/knode/knode-edit-header2.png -share/doc/HTML/fr/knode/knode-filters.png -share/doc/HTML/fr/knode/knode-followup.png -share/doc/HTML/fr/knode/knode-header-settings.png -share/doc/HTML/fr/knode/knode-identity.png -share/doc/HTML/fr/knode/knode-mail-account.png -share/doc/HTML/fr/knode/knode-new-article.png -share/doc/HTML/fr/knode/knode-post-settings.png -share/doc/HTML/fr/knode/knode-read-news.png -share/doc/HTML/fr/knode/knode-reply.png -share/doc/HTML/fr/knode/knode-search.png -share/doc/HTML/fr/knode/knode-start.png -share/doc/HTML/fr/knode/knode-subscribe.png -share/doc/HTML/fr/knode/knode-views.png -share/doc/HTML/fr/knode/newsubs.png -share/doc/HTML/fr/knode/redball.png -share/doc/HTML/fr/knode/redballchk.png -share/doc/HTML/fr/knotes/common -share/doc/HTML/fr/knotes/index.cache.bz2 -share/doc/HTML/fr/knotes/index.docbook -share/doc/HTML/fr/kodo/common -share/doc/HTML/fr/kodo/index.cache.bz2 -share/doc/HTML/fr/kodo/index.docbook -share/doc/HTML/fr/konqueror/cmndline.png -share/doc/HTML/fr/konqueror/common -share/doc/HTML/fr/konqueror/dirtree.png -share/doc/HTML/fr/konqueror/dragdrop.png -share/doc/HTML/fr/konqueror/filetype1.png -share/doc/HTML/fr/konqueror/filetype3.png -share/doc/HTML/fr/konqueror/filetype4.png -share/doc/HTML/fr/konqueror/index.cache.bz2 -share/doc/HTML/fr/konqueror/index.docbook -share/doc/HTML/fr/konqueror/konqorg.png -share/doc/HTML/fr/konqueror/parts.png -share/doc/HTML/fr/konqueror/samba.png -share/doc/HTML/fr/konquest/common -share/doc/HTML/fr/konquest/index.cache.bz2 -share/doc/HTML/fr/konquest/index.docbook -share/doc/HTML/fr/konsole/common -share/doc/HTML/fr/konsole/index.cache.bz2 -share/doc/HTML/fr/konsole/index.docbook -share/doc/HTML/fr/konsole/konsole.png -share/doc/HTML/fr/kontour/align.png -share/doc/HTML/fr/kontour/align2.png -share/doc/HTML/fr/kontour/bezier.png -share/doc/HTML/fr/kontour/blend_dialog.png -share/doc/HTML/fr/kontour/colour.png -share/doc/HTML/fr/kontour/common -share/doc/HTML/fr/kontour/ellipse.png -share/doc/HTML/fr/kontour/export.png -share/doc/HTML/fr/kontour/freehand.png -share/doc/HTML/fr/kontour/index.cache.bz2 -share/doc/HTML/fr/kontour/index.docbook -share/doc/HTML/fr/kontour/line.png -share/doc/HTML/fr/kontour/logo.png -share/doc/HTML/fr/kontour/movepoint.png -share/doc/HTML/fr/kontour/newpoint.png -share/doc/HTML/fr/kontour/open_dialog.png -share/doc/HTML/fr/kontour/pfeil.png -share/doc/HTML/fr/kontour/point.png -share/doc/HTML/fr/kontour/polygon-setup.png -share/doc/HTML/fr/kontour/polygon.png -share/doc/HTML/fr/kontour/rect.png -share/doc/HTML/fr/kontour/rmpoint.png -share/doc/HTML/fr/kontour/save_dialog.png -share/doc/HTML/fr/kontour/schichten.png -share/doc/HTML/fr/kontour/text.png -share/doc/HTML/fr/kontour/verteilen.png -share/doc/HTML/fr/kontour/zoom.png -share/doc/HTML/fr/korganizer/alarmd-panel.png -share/doc/HTML/fr/korganizer/common -share/doc/HTML/fr/korganizer/datenavigator.png -share/doc/HTML/fr/korganizer/index.cache.bz2 -share/doc/HTML/fr/korganizer/index.docbook -share/doc/HTML/fr/korganizer/kagenda-appointment.png -share/doc/HTML/fr/korn/common -share/doc/HTML/fr/korn/index.cache.bz2 -share/doc/HTML/fr/korn/index.docbook -share/doc/HTML/fr/koshell/common -share/doc/HTML/fr/koshell/index.cache.bz2 -share/doc/HTML/fr/koshell/index.docbook -share/doc/HTML/fr/kpackage/common -share/doc/HTML/fr/kpackage/index.cache.bz2 -share/doc/HTML/fr/kpackage/index.docbook -share/doc/HTML/fr/kpager/common -share/doc/HTML/fr/kpager/index.cache.bz2 -share/doc/HTML/fr/kpager/index.docbook -share/doc/HTML/fr/kpager/screenshot.png -share/doc/HTML/fr/kpager/settings.png -share/doc/HTML/fr/kpat/clubs.png -share/doc/HTML/fr/kpat/common -share/doc/HTML/fr/kpat/diamonds.png -share/doc/HTML/fr/kpat/hearts.png -share/doc/HTML/fr/kpat/index.cache.bz2 -share/doc/HTML/fr/kpat/index.docbook -share/doc/HTML/fr/kpat/playfield.png -share/doc/HTML/fr/kpat/spades.png -share/doc/HTML/fr/kpoker/common -share/doc/HTML/fr/kpoker/index.cache.bz2 -share/doc/HTML/fr/kpoker/index.docbook -share/doc/HTML/fr/kpresenter/common -share/doc/HTML/fr/kpresenter/index.cache.bz2 -share/doc/HTML/fr/kpresenter/index.docbook -share/doc/HTML/fr/kpresenter/pics/barcolors.png -share/doc/HTML/fr/kpresenter/pics/baredit.png -share/doc/HTML/fr/kpresenter/pics/barextra.png -share/doc/HTML/fr/kpresenter/pics/barfile.png -share/doc/HTML/fr/kpresenter/pics/barinsert.png -share/doc/HTML/fr/kpresenter/pics/barmenus.png -share/doc/HTML/fr/kpresenter/pics/barscreen.png -share/doc/HTML/fr/kpresenter/pics/barstyle1.png -share/doc/HTML/fr/kpresenter/pics/barstyle2.png -share/doc/HTML/fr/kpresenter/pics/barstyle3.png -share/doc/HTML/fr/kpresenter/pics/barstyle4.png -share/doc/HTML/fr/kpresenter/pics/barstyle5.png -share/doc/HTML/fr/kpresenter/pics/barstyle6.png -share/doc/HTML/fr/kpresenter/pics/barstyle7.png -share/doc/HTML/fr/kpresenter/pics/bartext.png -share/doc/HTML/fr/kpresenter/pics/bartools.png -share/doc/HTML/fr/kpresenter/pics/menuedit.png -share/doc/HTML/fr/kpresenter/pics/menuextra.png -share/doc/HTML/fr/kpresenter/pics/menufile.png -share/doc/HTML/fr/kpresenter/pics/menuhelp.png -share/doc/HTML/fr/kpresenter/pics/menuinsert.png -share/doc/HTML/fr/kpresenter/pics/menuscreen.png -share/doc/HTML/fr/kpresenter/pics/menutext.png -share/doc/HTML/fr/kpresenter/pics/menutools.png -share/doc/HTML/fr/kpresenter/pics/menuview.png -share/doc/HTML/fr/kpresenter/pics/tut01.png -share/doc/HTML/fr/kpresenter/pics/tut02.png -share/doc/HTML/fr/kpresenter/pics/tut03.png -share/doc/HTML/fr/kpresenter/pics/tut04.png -share/doc/HTML/fr/kpresenter/pics/tut05.png -share/doc/HTML/fr/kpresenter/pics/tut06.png -share/doc/HTML/fr/kpresenter/pics/tut07.png -share/doc/HTML/fr/kpresenter/pics/tut08.png -share/doc/HTML/fr/kpresenter/pics/tut09.png -share/doc/HTML/fr/kpresenter/pics/tut10.png -share/doc/HTML/fr/kpresenter/pics/tut11.png -share/doc/HTML/fr/kpresenter/pics/tut12.png -share/doc/HTML/fr/kpresenter/pics/tut13.png -share/doc/HTML/fr/kpresenter/pics/tut14.png -share/doc/HTML/fr/kpresenter/pics/tut15.png -share/doc/HTML/fr/kpresenter/pics/tut16.png -share/doc/HTML/fr/kpresenter/pics/tut17.png -share/doc/HTML/fr/kpresenter/pics/tut18.png -share/doc/HTML/fr/kpresenter/pics/tut19.png -share/doc/HTML/fr/kpresenter/pics/tut20.png -share/doc/HTML/fr/kpresenter/pics/tut21.png -share/doc/HTML/fr/kpresenter/pics/tut22.png -share/doc/HTML/fr/kpresenter/pics/tut23.png -share/doc/HTML/fr/krayon/common -share/doc/HTML/fr/krayon/index.cache.bz2 -share/doc/HTML/fr/krayon/index.docbook -share/doc/HTML/fr/kreversi/common -share/doc/HTML/fr/kreversi/index.cache.bz2 -share/doc/HTML/fr/kreversi/index.docbook -share/doc/HTML/fr/kreversi/kreversi1.png -share/doc/HTML/fr/kruler/common -share/doc/HTML/fr/kruler/index.cache.bz2 -share/doc/HTML/fr/kruler/index.docbook -share/doc/HTML/fr/ksame/common -share/doc/HTML/fr/ksame/index.cache.bz2 -share/doc/HTML/fr/ksame/index.docbook -share/doc/HTML/fr/kscd/common -share/doc/HTML/fr/kscd/index.cache.bz2 -share/doc/HTML/fr/kscd/index.docbook -share/doc/HTML/fr/kscd/kscd.png -share/doc/HTML/fr/kscd/kscd1.png -share/doc/HTML/fr/kscd/kscd10.png -share/doc/HTML/fr/kscd/kscd11.png -share/doc/HTML/fr/kscd/kscd12.png -share/doc/HTML/fr/kscd/kscd13.png -share/doc/HTML/fr/kscd/kscd14.png -share/doc/HTML/fr/kscd/kscd15.png -share/doc/HTML/fr/kscd/kscd16.png -share/doc/HTML/fr/kscd/kscd18.png -share/doc/HTML/fr/kscd/kscd19.png -share/doc/HTML/fr/kscd/kscd2.png -share/doc/HTML/fr/kscd/kscd2a.png -share/doc/HTML/fr/kscd/kscd3.png -share/doc/HTML/fr/kscd/kscd4.png -share/doc/HTML/fr/kscd/kscd5.png -share/doc/HTML/fr/kscd/kscd6.png -share/doc/HTML/fr/kscd/kscd7.png -share/doc/HTML/fr/kscd/kscd8.png -share/doc/HTML/fr/kscd/kscd9.png -share/doc/HTML/fr/kshisen/common -share/doc/HTML/fr/kshisen/index.cache.bz2 -share/doc/HTML/fr/kshisen/index.docbook -share/doc/HTML/fr/ksirc/common -share/doc/HTML/fr/ksirc/index.cache.bz2 -share/doc/HTML/fr/ksirc/index.docbook -share/doc/HTML/fr/ksirtet/common -share/doc/HTML/fr/ksirtet/index.cache.bz2 -share/doc/HTML/fr/ksirtet/index.docbook -share/doc/HTML/fr/ksnake/common -share/doc/HTML/fr/ksnake/index.cache.bz2 -share/doc/HTML/fr/ksnake/index.docbook -share/doc/HTML/fr/ksnapshot/common -share/doc/HTML/fr/ksnapshot/index.cache.bz2 -share/doc/HTML/fr/ksnapshot/index.docbook -share/doc/HTML/fr/ksnapshot/preview.png -share/doc/HTML/fr/ksnapshot/window.png -share/doc/HTML/fr/ksokoban/common -share/doc/HTML/fr/ksokoban/index.cache.bz2 -share/doc/HTML/fr/ksokoban/index.docbook -share/doc/HTML/fr/kspaceduel/common -share/doc/HTML/fr/kspaceduel/index.cache.bz2 -share/doc/HTML/fr/kspaceduel/index.docbook -share/doc/HTML/fr/kspaceduel/kspaceduel1.png -share/doc/HTML/fr/kspaceduel/kspaceduel2.png -share/doc/HTML/fr/kspaceduel/kspaceduel3.png -share/doc/HTML/fr/kspell/common -share/doc/HTML/fr/kspell/index.cache.bz2 -share/doc/HTML/fr/kspell/index.docbook -share/doc/HTML/fr/ksysguard/common -share/doc/HTML/fr/ksysguard/index.cache.bz2 -share/doc/HTML/fr/ksysguard/index.docbook -share/doc/HTML/fr/ksysv/common -share/doc/HTML/fr/ksysv/index.cache.bz2 -share/doc/HTML/fr/ksysv/index.docbook -share/doc/HTML/fr/ktron/common -share/doc/HTML/fr/ktron/index.cache.bz2 -share/doc/HTML/fr/ktron/index.docbook -share/doc/HTML/fr/ktuberling/common -share/doc/HTML/fr/ktuberling/index.cache.bz2 -share/doc/HTML/fr/ktuberling/index.docbook -share/doc/HTML/fr/kuser/common -share/doc/HTML/fr/kuser/index.cache.bz2 -share/doc/HTML/fr/kuser/index.docbook -share/doc/HTML/fr/kview/common -share/doc/HTML/fr/kview/index.cache.bz2 -share/doc/HTML/fr/kview/index.docbook -share/doc/HTML/fr/kwin4/common -share/doc/HTML/fr/kwin4/index.cache.bz2 -share/doc/HTML/fr/kwin4/index.docbook -share/doc/HTML/fr/kworldclock/common -share/doc/HTML/fr/kworldclock/index.cache.bz2 -share/doc/HTML/fr/kworldclock/index.docbook -share/doc/HTML/fr/kwrite/common -share/doc/HTML/fr/kwrite/index.cache.bz2 -share/doc/HTML/fr/kwrite/index.docbook -share/doc/HTML/fr/kwuftpd/common -share/doc/HTML/fr/kwuftpd/index.cache.bz2 -share/doc/HTML/fr/kwuftpd/index.docbook -share/doc/HTML/fr/lskat/common -share/doc/HTML/fr/lskat/index.cache.bz2 -share/doc/HTML/fr/lskat/index.docbook -share/doc/HTML/fr/noatun/common -share/doc/HTML/fr/noatun/index.cache.bz2 -share/doc/HTML/fr/noatun/index.docbook -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/artistic-license.html -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/caution.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/fdl-license -share/doc/HTML/he/common/fdl-license.html -share/doc/HTML/he/common/fdl-translated.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/important.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/lgpl-license -share/doc/HTML/he/common/lgpl-license.html -share/doc/HTML/he/common/lgpl-translated.html -share/doc/HTML/he/common/logotp3-small.png -share/doc/HTML/he/common/logotp3.png -share/doc/HTML/he/common/note.png -share/doc/HTML/he/common/prev.png -share/doc/HTML/he/common/qpl-license.html -share/doc/HTML/he/common/shadow.png -share/doc/HTML/he/common/tip.png -share/doc/HTML/he/common/toc-blank.png -share/doc/HTML/he/common/toc-minus.png -share/doc/HTML/he/common/toc-plus.png -share/doc/HTML/he/common/up.png -share/doc/HTML/he/common/warning.png -share/doc/HTML/he/common/x11-license.html -share/doc/HTML/he/common/xml.dcl -share/doc/HTML/he/khelpcenter/background.png -share/doc/HTML/he/khelpcenter/bgtable.png -share/doc/HTML/he/khelpcenter/khelpcenter.png -share/doc/HTML/he/khelpcenter/konq.css -share/doc/HTML/he/khelpcenter/lines.png -share/doc/HTML/he/khelpcenter/main.html -share/doc/HTML/he/khelpcenter/pointers.png -share/doc/HTML/he/khelpcenter/shadow1.png -share/doc/HTML/hu/amor/common -share/doc/HTML/hu/amor/index.cache.bz2 -share/doc/HTML/hu/amor/index.docbook -share/doc/HTML/hu/artsbuilder/common -share/doc/HTML/hu/artsbuilder/index.cache.bz2 -share/doc/HTML/hu/artsbuilder/index.docbook -share/doc/HTML/hu/columbo/common -share/doc/HTML/hu/columbo/index.cache.bz2 -share/doc/HTML/hu/columbo/index.docbook -share/doc/HTML/hu/common/1.png -share/doc/HTML/hu/common/10.png -share/doc/HTML/hu/common/2.png -share/doc/HTML/hu/common/3.png -share/doc/HTML/hu/common/4.png -share/doc/HTML/hu/common/5.png -share/doc/HTML/hu/common/6.png -share/doc/HTML/hu/common/7.png -share/doc/HTML/hu/common/8.png -share/doc/HTML/hu/common/9.png -share/doc/HTML/hu/common/artistic-license.html -share/doc/HTML/hu/common/bottom1.png -share/doc/HTML/hu/common/bottom2.png -share/doc/HTML/hu/common/bsd-license.html -share/doc/HTML/hu/common/caution.png -share/doc/HTML/hu/common/doctop1.png -share/doc/HTML/hu/common/doctop1a.png -share/doc/HTML/hu/common/doctop1b.png -share/doc/HTML/hu/common/doctop2.png -share/doc/HTML/hu/common/fdl-license -share/doc/HTML/hu/common/fdl-license.html -share/doc/HTML/hu/common/fdl-translated.html -share/doc/HTML/hu/common/gpl-license -share/doc/HTML/hu/common/gpl-license.html -share/doc/HTML/hu/common/gpl-translated.html -share/doc/HTML/hu/common/important.png -share/doc/HTML/hu/common/kde-common.css -share/doc/HTML/hu/common/kde-default.css -share/doc/HTML/hu/common/kde-localised.css -share/doc/HTML/hu/common/kde-localised.css.template -share/doc/HTML/hu/common/lgpl-license -share/doc/HTML/hu/common/lgpl-license.html -share/doc/HTML/hu/common/lgpl-translated.html -share/doc/HTML/hu/common/logotp3-small.png -share/doc/HTML/hu/common/logotp3.png -share/doc/HTML/hu/common/note.png -share/doc/HTML/hu/common/prev.png -share/doc/HTML/hu/common/qpl-license.html -share/doc/HTML/hu/common/shadow.png -share/doc/HTML/hu/common/tip.png -share/doc/HTML/hu/common/toc-blank.png -share/doc/HTML/hu/common/toc-minus.png -share/doc/HTML/hu/common/toc-plus.png -share/doc/HTML/hu/common/up.png -share/doc/HTML/hu/common/warning.png -share/doc/HTML/hu/common/x11-license.html -share/doc/HTML/hu/common/xml.dcl -share/doc/HTML/hu/kab/common -share/doc/HTML/hu/kab/index.cache.bz2 -share/doc/HTML/hu/kab/index.docbook -share/doc/HTML/hu/kaddressbook/common -share/doc/HTML/hu/kaddressbook/index.cache.bz2 -share/doc/HTML/hu/kaddressbook/index.docbook -share/doc/HTML/hu/kandy/common -share/doc/HTML/hu/kandy/index.cache.bz2 -share/doc/HTML/hu/kandy/index.docbook -share/doc/HTML/hu/karm/common -share/doc/HTML/hu/karm/index.cache.bz2 -share/doc/HTML/hu/karm/index.docbook -share/doc/HTML/hu/kasteroids/common -share/doc/HTML/hu/kasteroids/index.cache.bz2 -share/doc/HTML/hu/kasteroids/index.docbook -share/doc/HTML/hu/kate-plugins/common -share/doc/HTML/hu/kate-plugins/helloworld.docbook -share/doc/HTML/hu/kate-plugins/htmltools.docbook -share/doc/HTML/hu/kate-plugins/index.cache.bz2 -share/doc/HTML/hu/kate-plugins/index.docbook -share/doc/HTML/hu/kate-plugins/insertcommand.docbook -share/doc/HTML/hu/kate-plugins/openheader.docbook -share/doc/HTML/hu/kate-plugins/projectmanager.docbook -share/doc/HTML/hu/kate-plugins/textfilter.docbook -share/doc/HTML/hu/katomic/common -share/doc/HTML/hu/katomic/index.cache.bz2 -share/doc/HTML/hu/katomic/index.docbook -share/doc/HTML/hu/kbattleship/common -share/doc/HTML/hu/kbattleship/index.cache.bz2 -share/doc/HTML/hu/kbattleship/index.docbook -share/doc/HTML/hu/kblackbox/common -share/doc/HTML/hu/kblackbox/index.cache.bz2 -share/doc/HTML/hu/kblackbox/index.docbook -share/doc/HTML/hu/kcalc/common -share/doc/HTML/hu/kcalc/index.cache.bz2 -share/doc/HTML/hu/kcalc/index.docbook -share/doc/HTML/hu/kcoloredit/common -share/doc/HTML/hu/kcoloredit/index.cache.bz2 -share/doc/HTML/hu/kcoloredit/index.docbook -share/doc/HTML/hu/kcontrol/kcmaccess.docbook -share/doc/HTML/hu/kcontrol/kcmaction.docbook -share/doc/HTML/hu/kcontrol/kcmbackgnd.docbook -share/doc/HTML/hu/kcontrol/kcmbatmon.docbook -share/doc/HTML/hu/kcontrol/kcmbell.docbook -share/doc/HTML/hu/kcontrol/kcmblockdev.docbook -share/doc/HTML/hu/kcontrol/kcmborders.docbook -share/doc/HTML/hu/kcontrol/kcmcolor.docbook -share/doc/HTML/hu/kcontrol/kcmcookie.docbook -share/doc/HTML/hu/kcontrol/kcmcrypto.docbook -share/doc/HTML/hu/kcontrol/kcmcss.docbook -share/doc/HTML/hu/kcontrol/kcmdatetime.docbook -share/doc/HTML/hu/kcontrol/kcmdesktop.docbook -share/doc/HTML/hu/kcontrol/kcmdeviceinfo.docbook -share/doc/HTML/hu/kcontrol/kcmdmainfo.docbook -share/doc/HTML/hu/kcontrol/kcmdrkonqi.docbook -share/doc/HTML/hu/kcontrol/kcmebrowse.docbook -share/doc/HTML/hu/kcontrol/kcmemail.docbook -share/doc/HTML/hu/kcontrol/kcmenergy.docbook -share/doc/HTML/hu/kcontrol/kcmfile.docbook -share/doc/HTML/hu/kcontrol/kcmfileman.docbook -share/doc/HTML/hu/kcontrol/kcmfonts.docbook -share/doc/HTML/hu/kcontrol/kcmhelpindex.docbook -share/doc/HTML/hu/kcontrol/kcmicon.docbook -share/doc/HTML/hu/kcontrol/kcmiconstyle.docbook -share/doc/HTML/hu/kcontrol/kcmintinfo.docbook -share/doc/HTML/hu/kcontrol/kcmioportinfo.docbook -share/doc/HTML/hu/kcontrol/kcmkbd.docbook -share/doc/HTML/hu/kcontrol/kcmkblayout.docbook -share/doc/HTML/hu/kcontrol/kcmkbrowse.docbook -share/doc/HTML/hu/kcontrol/kcmkeybind.docbook -share/doc/HTML/hu/kcontrol/kcmkeys.docbook -share/doc/HTML/hu/kcontrol/kcmkonsole.docbook -share/doc/HTML/hu/kcontrol/kcmlaunch.docbook -share/doc/HTML/hu/kcontrol/kcmlisa.docbook -share/doc/HTML/hu/kcontrol/kcmlocate.docbook -share/doc/HTML/hu/kcontrol/kcmloginmanage.docbook -share/doc/HTML/hu/kcontrol/kcmlowbatcrit.docbook -share/doc/HTML/hu/kcontrol/kcmlowbatwarn.docbook -share/doc/HTML/hu/kcontrol/kcmmemoryinfo.docbook -share/doc/HTML/hu/kcontrol/kcmmidi.docbook -share/doc/HTML/hu/kcontrol/kcmmixer.docbook -share/doc/HTML/hu/kcontrol/kcmmouse.docbook -share/doc/HTML/hu/kcontrol/kcmmousebeh.docbook -share/doc/HTML/hu/kcontrol/kcmpanel.docbook -share/doc/HTML/hu/kcontrol/kcmpartitioninfo.docbook -share/doc/HTML/hu/kcontrol/kcmpasswd.docbook -share/doc/HTML/hu/kcontrol/kcmpciinfo.docbook -share/doc/HTML/hu/kcontrol/kcmpcmcia.docbook -share/doc/HTML/hu/kcontrol/kcmpowerctrl.docbook -share/doc/HTML/hu/kcontrol/kcmprocinfo.docbook -share/doc/HTML/hu/kcontrol/kcmproxie.docbook -share/doc/HTML/hu/kcontrol/kcmscnsave.docbook -share/doc/HTML/hu/kcontrol/kcmscsiinfo.docbook -share/doc/HTML/hu/kcontrol/kcmsmbstat.docbook -share/doc/HTML/hu/kcontrol/kcmsndinfo.docbook -share/doc/HTML/hu/kcontrol/kcmsndsrv.docbook -share/doc/HTML/hu/kcontrol/kcmsocks.docbook -share/doc/HTML/hu/kcontrol/kcmstyle.docbook -share/doc/HTML/hu/kcontrol/kcmsysnotify.docbook -share/doc/HTML/hu/kcontrol/kcmtalk.docbook -share/doc/HTML/hu/kcontrol/kcmtaskbar.docbook -share/doc/HTML/hu/kcontrol/kcmusb.docbook -share/doc/HTML/hu/kcontrol/kcmuseragent.docbook -share/doc/HTML/hu/kcontrol/kcmwinshare.docbook -share/doc/HTML/hu/kcontrol/kcmxservinfo.docbook -share/doc/HTML/hu/kdebugdialog/common -share/doc/HTML/hu/kdebugdialog/index.cache.bz2 -share/doc/HTML/hu/kdebugdialog/index.docbook -share/doc/HTML/hu/kdesu/common -share/doc/HTML/hu/kdesu/index.cache.bz2 -share/doc/HTML/hu/kdesu/index.docbook -share/doc/HTML/hu/kdf/common -share/doc/HTML/hu/kdf/index.cache.bz2 -share/doc/HTML/hu/kdf/index.docbook -share/doc/HTML/hu/kdm/common -share/doc/HTML/hu/kdm/index.cache.bz2 -share/doc/HTML/hu/kdm/index.docbook -share/doc/HTML/hu/kdvi/common -share/doc/HTML/hu/kdvi/index.cache.bz2 -share/doc/HTML/hu/kdvi/index.docbook -share/doc/HTML/hu/kedit/common -share/doc/HTML/hu/kedit/index.cache.bz2 -share/doc/HTML/hu/kedit/index.docbook -share/doc/HTML/hu/kfind/common -share/doc/HTML/hu/kfind/index.cache.bz2 -share/doc/HTML/hu/kfind/index.docbook -share/doc/HTML/hu/kfloppy/common -share/doc/HTML/hu/kfloppy/index.cache.bz2 -share/doc/HTML/hu/kfloppy/index.docbook -share/doc/HTML/hu/kfouleggs/common -share/doc/HTML/hu/kfouleggs/index.cache.bz2 -share/doc/HTML/hu/kfouleggs/index.docbook -share/doc/HTML/hu/kfract/common -share/doc/HTML/hu/kfract/index.cache.bz2 -share/doc/HTML/hu/kfract/index.docbook -share/doc/HTML/hu/kghostview/common -share/doc/HTML/hu/kghostview/index.cache.bz2 -share/doc/HTML/hu/kghostview/index.docbook -share/doc/HTML/hu/khelpcenter/common -share/doc/HTML/hu/khelpcenter/contact.docbook -share/doc/HTML/hu/khelpcenter/glossary/common -share/doc/HTML/hu/khelpcenter/glossary/index.cache.bz2 -share/doc/HTML/hu/khelpcenter/glossary/index.docbook -share/doc/HTML/hu/khelpcenter/help.docbook -share/doc/HTML/hu/khelpcenter/index.cache.bz2 -share/doc/HTML/hu/khelpcenter/index.docbook -share/doc/HTML/hu/khelpcenter/links.docbook -share/doc/HTML/hu/khelpcenter/quickstart/common -share/doc/HTML/hu/khelpcenter/quickstart/index.cache.bz2 -share/doc/HTML/hu/khelpcenter/quickstart/index.docbook -share/doc/HTML/hu/khelpcenter/support.docbook -share/doc/HTML/hu/khelpcenter/visualdict/common -share/doc/HTML/hu/khelpcenter/visualdict/index.cache.bz2 -share/doc/HTML/hu/khelpcenter/visualdict/index.docbook -share/doc/HTML/hu/khelpcenter/visualdict/pict1.png -share/doc/HTML/hu/khelpcenter/visualdict/pict10.png -share/doc/HTML/hu/khelpcenter/visualdict/pict11.png -share/doc/HTML/hu/khelpcenter/visualdict/pict12.png -share/doc/HTML/hu/khelpcenter/visualdict/pict13.png -share/doc/HTML/hu/khelpcenter/visualdict/pict14.png -share/doc/HTML/hu/khelpcenter/visualdict/pict15.png -share/doc/HTML/hu/khelpcenter/visualdict/pict16.png -share/doc/HTML/hu/khelpcenter/visualdict/pict17.png -share/doc/HTML/hu/khelpcenter/visualdict/pict18.png -share/doc/HTML/hu/khelpcenter/visualdict/pict19.png -share/doc/HTML/hu/khelpcenter/visualdict/pict2.png -share/doc/HTML/hu/khelpcenter/visualdict/pict20.png -share/doc/HTML/hu/khelpcenter/visualdict/pict3.png -share/doc/HTML/hu/khelpcenter/visualdict/pict4.png -share/doc/HTML/hu/khelpcenter/visualdict/pict5.png -share/doc/HTML/hu/khelpcenter/visualdict/pict6.png -share/doc/HTML/hu/khelpcenter/visualdict/pict7.png -share/doc/HTML/hu/khelpcenter/visualdict/pict8.png -share/doc/HTML/hu/khelpcenter/visualdict/pict9.png -share/doc/HTML/hu/khelpcenter/welcome.docbook -share/doc/HTML/hu/khelpcenter/whatiskde.docbook -share/doc/HTML/hu/khexedit/common -share/doc/HTML/hu/khexedit/index.cache.bz2 -share/doc/HTML/hu/khexedit/index.docbook -share/doc/HTML/hu/kicker/common -share/doc/HTML/hu/kicker/index.cache.bz2 -share/doc/HTML/hu/kicker/index.docbook -share/doc/HTML/hu/kicker-applets/common -share/doc/HTML/hu/kicker-applets/index.cache.bz2 -share/doc/HTML/hu/kicker-applets/index.docbook -share/doc/HTML/hu/kicker-applets/kolourpicker.docbook -share/doc/HTML/hu/kicker-applets/ktimemon.docbook -share/doc/HTML/hu/kioslave/man.docbook -share/doc/HTML/hu/kit/common -share/doc/HTML/hu/kit/index.cache.bz2 -share/doc/HTML/hu/kit/index.docbook -share/doc/HTML/hu/kjezz/common -share/doc/HTML/hu/kjezz/index.cache.bz2 -share/doc/HTML/hu/kjezz/index.docbook -share/doc/HTML/hu/kjots/common -share/doc/HTML/hu/kjots/index.cache.bz2 -share/doc/HTML/hu/kjots/index.docbook -share/doc/HTML/hu/kjumpingcube/common -share/doc/HTML/hu/kjumpingcube/index.cache.bz2 -share/doc/HTML/hu/kjumpingcube/index.docbook -share/doc/HTML/hu/klines/common -share/doc/HTML/hu/klines/index.cache.bz2 -share/doc/HTML/hu/klines/index.docbook -share/doc/HTML/hu/klipper/common -share/doc/HTML/hu/klipper/index.cache.bz2 -share/doc/HTML/hu/klipper/index.docbook -share/doc/HTML/hu/kljettool/common -share/doc/HTML/hu/kljettool/index.cache.bz2 -share/doc/HTML/hu/kljettool/index.docbook -share/doc/HTML/hu/klpq/common -share/doc/HTML/hu/klpq/index.cache.bz2 -share/doc/HTML/hu/klpq/index.docbook -share/doc/HTML/hu/klprfax/common -share/doc/HTML/hu/klprfax/index.cache.bz2 -share/doc/HTML/hu/klprfax/index.docbook -share/doc/HTML/hu/kmenuedit/common -share/doc/HTML/hu/kmenuedit/index.cache.bz2 -share/doc/HTML/hu/kmenuedit/index.docbook -share/doc/HTML/hu/kmix/common -share/doc/HTML/hu/kmix/index.cache.bz2 -share/doc/HTML/hu/kmix/index.docbook -share/doc/HTML/hu/kmoon/common -share/doc/HTML/hu/kmoon/index.cache.bz2 -share/doc/HTML/hu/kmoon/index.docbook -share/doc/HTML/hu/knode/common -share/doc/HTML/hu/knode/index.cache.bz2 -share/doc/HTML/hu/knode/index.docbook -share/doc/HTML/hu/knotes/common -share/doc/HTML/hu/knotes/index.cache.bz2 -share/doc/HTML/hu/knotes/index.docbook -share/doc/HTML/hu/kodo/common -share/doc/HTML/hu/kodo/index.cache.bz2 -share/doc/HTML/hu/kodo/index.docbook -share/doc/HTML/hu/konquest/common -share/doc/HTML/hu/konquest/index.cache.bz2 -share/doc/HTML/hu/konquest/index.docbook -share/doc/HTML/hu/korn/common -share/doc/HTML/hu/korn/index.cache.bz2 -share/doc/HTML/hu/korn/index.docbook -share/doc/HTML/hu/koshell/common -share/doc/HTML/hu/koshell/index.cache.bz2 -share/doc/HTML/hu/koshell/index.docbook -share/doc/HTML/hu/kpager/common -share/doc/HTML/hu/kpager/index.cache.bz2 -share/doc/HTML/hu/kpager/index.docbook -share/doc/HTML/hu/kpaint/common -share/doc/HTML/hu/kpaint/index.cache.bz2 -share/doc/HTML/hu/kpaint/index.docbook -share/doc/HTML/hu/kpat/common -share/doc/HTML/hu/kpat/index.cache.bz2 -share/doc/HTML/hu/kpat/index.docbook -share/doc/HTML/hu/kpm/common -share/doc/HTML/hu/kpm/index.cache.bz2 -share/doc/HTML/hu/kpm/index.docbook -share/doc/HTML/hu/kpoker/common -share/doc/HTML/hu/kpoker/index.cache.bz2 -share/doc/HTML/hu/kpoker/index.docbook -share/doc/HTML/hu/krn/common -share/doc/HTML/hu/krn/index.cache.bz2 -share/doc/HTML/hu/krn/index.docbook -share/doc/HTML/hu/kruler/common -share/doc/HTML/hu/kruler/index.cache.bz2 -share/doc/HTML/hu/kruler/index.docbook -share/doc/HTML/hu/ksame/common -share/doc/HTML/hu/ksame/index.cache.bz2 -share/doc/HTML/hu/ksame/index.docbook -share/doc/HTML/hu/kscore/common -share/doc/HTML/hu/kscore/index.cache.bz2 -share/doc/HTML/hu/kscore/index.docbook -share/doc/HTML/hu/kshisen/common -share/doc/HTML/hu/kshisen/index.cache.bz2 -share/doc/HTML/hu/kshisen/index.docbook -share/doc/HTML/hu/ksirtet/common -share/doc/HTML/hu/ksirtet/index.cache.bz2 -share/doc/HTML/hu/ksirtet/index.docbook -share/doc/HTML/hu/ksnake/common -share/doc/HTML/hu/ksnake/index.cache.bz2 -share/doc/HTML/hu/ksnake/index.docbook -share/doc/HTML/hu/ksnapshot/common -share/doc/HTML/hu/ksnapshot/index.cache.bz2 -share/doc/HTML/hu/ksnapshot/index.docbook -share/doc/HTML/hu/ksokoban/common -share/doc/HTML/hu/ksokoban/index.cache.bz2 -share/doc/HTML/hu/ksokoban/index.docbook -share/doc/HTML/hu/kspell/common -share/doc/HTML/hu/kspell/index.cache.bz2 -share/doc/HTML/hu/kspell/index.docbook -share/doc/HTML/hu/kteatime/common -share/doc/HTML/hu/kteatime/index.cache.bz2 -share/doc/HTML/hu/kteatime/index.docbook -share/doc/HTML/hu/ktron/common -share/doc/HTML/hu/ktron/index.cache.bz2 -share/doc/HTML/hu/ktron/index.docbook -share/doc/HTML/hu/kuser/common -share/doc/HTML/hu/kuser/index.cache.bz2 -share/doc/HTML/hu/kuser/index.docbook -share/doc/HTML/hu/kview/common -share/doc/HTML/hu/kview/index.cache.bz2 -share/doc/HTML/hu/kview/index.docbook -share/doc/HTML/hu/kwin4/common -share/doc/HTML/hu/kwin4/index.cache.bz2 -share/doc/HTML/hu/kwin4/index.docbook -share/doc/HTML/hu/kworldclock/common -share/doc/HTML/hu/kworldclock/index.cache.bz2 -share/doc/HTML/hu/kworldclock/index.docbook -share/doc/HTML/hu/kwrite/common -share/doc/HTML/hu/kwrite/index.cache.bz2 -share/doc/HTML/hu/kwrite/index.docbook -share/doc/HTML/hu/kwuftpd/common -share/doc/HTML/hu/kwuftpd/index.cache.bz2 -share/doc/HTML/hu/kwuftpd/index.docbook -share/doc/HTML/hu/lskat/common -share/doc/HTML/hu/lskat/index.cache.bz2 -share/doc/HTML/hu/lskat/index.docbook -share/doc/HTML/hu/noatun/common -share/doc/HTML/hu/noatun/index.cache.bz2 -share/doc/HTML/hu/noatun/index.docbook -share/doc/HTML/it/common/1.png -share/doc/HTML/it/common/10.png -share/doc/HTML/it/common/2.png -share/doc/HTML/it/common/3.png -share/doc/HTML/it/common/4.png -share/doc/HTML/it/common/5.png -share/doc/HTML/it/common/6.png -share/doc/HTML/it/common/7.png -share/doc/HTML/it/common/8.png -share/doc/HTML/it/common/9.png -share/doc/HTML/it/common/artistic-license.html -share/doc/HTML/it/common/bottom1.png -share/doc/HTML/it/common/bottom2.png -share/doc/HTML/it/common/bsd-license.html -share/doc/HTML/it/common/caution.png -share/doc/HTML/it/common/doctop1.png -share/doc/HTML/it/common/doctop1a.png -share/doc/HTML/it/common/doctop1b.png -share/doc/HTML/it/common/doctop2.png -share/doc/HTML/it/common/fdl-license -share/doc/HTML/it/common/fdl-license.html -share/doc/HTML/it/common/fdl-translated.html -share/doc/HTML/it/common/gpl-license -share/doc/HTML/it/common/gpl-license.html -share/doc/HTML/it/common/gpl-translated.html -share/doc/HTML/it/common/important.png -share/doc/HTML/it/common/kde-common.css -share/doc/HTML/it/common/kde-default.css -share/doc/HTML/it/common/kde-localised.css -share/doc/HTML/it/common/kde-localised.css.template -share/doc/HTML/it/common/lgpl-license -share/doc/HTML/it/common/lgpl-license.html -share/doc/HTML/it/common/lgpl-translated.html -share/doc/HTML/it/common/logotp3-small.png -share/doc/HTML/it/common/logotp3.png -share/doc/HTML/it/common/note.png -share/doc/HTML/it/common/prev.png -share/doc/HTML/it/common/qpl-license.html -share/doc/HTML/it/common/shadow.png -share/doc/HTML/it/common/tip.png -share/doc/HTML/it/common/toc-blank.png -share/doc/HTML/it/common/toc-minus.png -share/doc/HTML/it/common/toc-plus.png -share/doc/HTML/it/common/up.png -share/doc/HTML/it/common/warning.png -share/doc/HTML/it/common/x11-license.html -share/doc/HTML/it/common/xml.dcl -share/doc/HTML/it/kabalone/common -share/doc/HTML/it/kabalone/index.cache.bz2 -share/doc/HTML/it/kabalone/index.docbook -share/doc/HTML/it/khelpcenter/contact.docbook -share/doc/HTML/it/kmenuedit/common -share/doc/HTML/it/kmenuedit/index.cache.bz2 -share/doc/HTML/it/kmenuedit/index.docbook -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/ksokoban/common -share/doc/HTML/it/ksokoban/index.cache.bz2 -share/doc/HTML/it/ksokoban/index.docbook -share/doc/HTML/ja/common/1.png -share/doc/HTML/ja/common/10.png -share/doc/HTML/ja/common/2.png -share/doc/HTML/ja/common/3.png -share/doc/HTML/ja/common/4.png -share/doc/HTML/ja/common/5.png -share/doc/HTML/ja/common/6.png -share/doc/HTML/ja/common/7.png -share/doc/HTML/ja/common/8.png -share/doc/HTML/ja/common/9.png -share/doc/HTML/ja/common/artistic-license.html -share/doc/HTML/ja/common/bottom1.png -share/doc/HTML/ja/common/bottom2.png -share/doc/HTML/ja/common/bsd-license.html -share/doc/HTML/ja/common/caution.png -share/doc/HTML/ja/common/doctop1.png -share/doc/HTML/ja/common/doctop1a.png -share/doc/HTML/ja/common/doctop1b.png -share/doc/HTML/ja/common/doctop2.png -share/doc/HTML/ja/common/fdl-license -share/doc/HTML/ja/common/fdl-license.html -share/doc/HTML/ja/common/fdl-translated.html -share/doc/HTML/ja/common/gpl-license -share/doc/HTML/ja/common/gpl-license.html -share/doc/HTML/ja/common/gpl-translated.html -share/doc/HTML/ja/common/important.png -share/doc/HTML/ja/common/kde-common.css -share/doc/HTML/ja/common/kde-default.css -share/doc/HTML/ja/common/kde-localised.css -share/doc/HTML/ja/common/kde-localised.css.template -share/doc/HTML/ja/common/lgpl-license -share/doc/HTML/ja/common/lgpl-license.html -share/doc/HTML/ja/common/lgpl-translated.html -share/doc/HTML/ja/common/logotp3-small.png -share/doc/HTML/ja/common/logotp3.png -share/doc/HTML/ja/common/note.png -share/doc/HTML/ja/common/prev.png -share/doc/HTML/ja/common/qpl-license.html -share/doc/HTML/ja/common/shadow.png -share/doc/HTML/ja/common/tip.png -share/doc/HTML/ja/common/toc-blank.png -share/doc/HTML/ja/common/toc-minus.png -share/doc/HTML/ja/common/toc-plus.png -share/doc/HTML/ja/common/up.png -share/doc/HTML/ja/common/warning.png -share/doc/HTML/ja/common/x11-license.html -share/doc/HTML/ja/common/xml.dcl -share/doc/HTML/ja/kcontrol/kcmaccess.docbook -share/doc/HTML/ja/kcontrol/kcmaction.docbook -share/doc/HTML/ja/kcontrol/kcmbackgnd.docbook -share/doc/HTML/ja/kcontrol/kcmbatmon.docbook -share/doc/HTML/ja/kcontrol/kcmbell.docbook -share/doc/HTML/ja/kcontrol/kcmblockdev.docbook -share/doc/HTML/ja/kcontrol/kcmborders.docbook -share/doc/HTML/ja/kcontrol/kcmcolor.docbook -share/doc/HTML/ja/kcontrol/kcmcookie.docbook -share/doc/HTML/ja/kcontrol/kcmdatetime.docbook -share/doc/HTML/ja/kcontrol/kcmdesktop.docbook -share/doc/HTML/ja/kcontrol/kcmdeviceinfo.docbook -share/doc/HTML/ja/kcontrol/kcmdmainfo.docbook -share/doc/HTML/ja/kcontrol/kcmebrowse.docbook -share/doc/HTML/ja/kcontrol/kcmemail.docbook -share/doc/HTML/ja/kcontrol/kcmenergy.docbook -share/doc/HTML/ja/kcontrol/kcmfile.docbook -share/doc/HTML/ja/kcontrol/kcmfileman.docbook -share/doc/HTML/ja/kcontrol/kcmfonts.docbook -share/doc/HTML/ja/kcontrol/kcmhelpindex.docbook -share/doc/HTML/ja/kcontrol/kcmicon.docbook -share/doc/HTML/ja/kcontrol/kcmiconstyle.docbook -share/doc/HTML/ja/kcontrol/kcmintinfo.docbook -share/doc/HTML/ja/kcontrol/kcmioportinfo.docbook -share/doc/HTML/ja/kcontrol/kcmkbd.docbook -share/doc/HTML/ja/kcontrol/kcmkblayout.docbook -share/doc/HTML/ja/kcontrol/kcmkbrowse.docbook -share/doc/HTML/ja/kcontrol/kcmkeybind.docbook -share/doc/HTML/ja/kcontrol/kcmlocate.docbook -share/doc/HTML/ja/kcontrol/kcmloginmanage.docbook -share/doc/HTML/ja/kcontrol/kcmlowbatcrit.docbook -share/doc/HTML/ja/kcontrol/kcmlowbatwarn.docbook -share/doc/HTML/ja/kcontrol/kcmmemoryinfo.docbook -share/doc/HTML/ja/kcontrol/kcmmidi.docbook -share/doc/HTML/ja/kcontrol/kcmmixer.docbook -share/doc/HTML/ja/kcontrol/kcmmouse.docbook -share/doc/HTML/ja/kcontrol/kcmmousebeh.docbook -share/doc/HTML/ja/kcontrol/kcmnumbername.docbook -share/doc/HTML/ja/kcontrol/kcmpanel.docbook -share/doc/HTML/ja/kcontrol/kcmpartitioninfo.docbook -share/doc/HTML/ja/kcontrol/kcmpasswd.docbook -share/doc/HTML/ja/kcontrol/kcmpciinfo.docbook -share/doc/HTML/ja/kcontrol/kcmpcmcia.docbook -share/doc/HTML/ja/kcontrol/kcmpowerctrl.docbook -share/doc/HTML/ja/kcontrol/kcmprocinfo.docbook -share/doc/HTML/ja/kcontrol/kcmproxie.docbook -share/doc/HTML/ja/kcontrol/kcmscnsave.docbook -share/doc/HTML/ja/kcontrol/kcmscsiinfo.docbook -share/doc/HTML/ja/kcontrol/kcmsmbstat.docbook -share/doc/HTML/ja/kcontrol/kcmsndinfo.docbook -share/doc/HTML/ja/kcontrol/kcmsndsrv.docbook -share/doc/HTML/ja/kcontrol/kcmstyle.docbook -share/doc/HTML/ja/kcontrol/kcmsysnotify.docbook -share/doc/HTML/ja/kcontrol/kcmtaskbar.docbook -share/doc/HTML/ja/kcontrol/kcmuseragent.docbook -share/doc/HTML/ja/kcontrol/kcmwinshare.docbook -share/doc/HTML/ja/kcontrol/kcmxservinfo.docbook -share/doc/HTML/ja/kdesu/common -share/doc/HTML/ja/kdesu/index.cache.bz2 -share/doc/HTML/ja/kdesu/index.docbook -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/visualdict/common -share/doc/HTML/ja/khelpcenter/visualdict/index.cache.bz2 -share/doc/HTML/ja/khelpcenter/visualdict/index.docbook -share/doc/HTML/ja/khelpcenter/welcome.docbook -share/doc/HTML/ja/khelpcenter/whatiskde.docbook -share/doc/HTML/ja/kmahjongg/common -share/doc/HTML/ja/kmahjongg/index.cache.bz2 -share/doc/HTML/ja/kmahjongg/index.docbook -share/doc/HTML/ja/kspell/common -share/doc/HTML/ja/kspell/index.cache.bz2 -share/doc/HTML/ja/kspell/index.docbook -share/doc/HTML/ja/pws/common -share/doc/HTML/ja/pws/index.cache.bz2 -share/doc/HTML/ja/pws/index.docbook -share/doc/HTML/ko/common/1.png -share/doc/HTML/ko/common/10.png -share/doc/HTML/ko/common/2.png -share/doc/HTML/ko/common/3.png -share/doc/HTML/ko/common/4.png -share/doc/HTML/ko/common/5.png -share/doc/HTML/ko/common/6.png -share/doc/HTML/ko/common/7.png -share/doc/HTML/ko/common/8.png -share/doc/HTML/ko/common/9.png -share/doc/HTML/ko/common/artistic-license.html -share/doc/HTML/ko/common/bottom1.png -share/doc/HTML/ko/common/bottom2.png -share/doc/HTML/ko/common/bsd-license.html -share/doc/HTML/ko/common/caution.png -share/doc/HTML/ko/common/doctop1.png -share/doc/HTML/ko/common/doctop1a.png -share/doc/HTML/ko/common/doctop1b.png -share/doc/HTML/ko/common/doctop2.png -share/doc/HTML/ko/common/fdl-license -share/doc/HTML/ko/common/fdl-license.html -share/doc/HTML/ko/common/fdl-translated.html -share/doc/HTML/ko/common/gpl-license -share/doc/HTML/ko/common/gpl-license.html -share/doc/HTML/ko/common/gpl-translated.html -share/doc/HTML/ko/common/important.png -share/doc/HTML/ko/common/kde-common.css -share/doc/HTML/ko/common/kde-default.css -share/doc/HTML/ko/common/kde-localised.css -share/doc/HTML/ko/common/kde-localised.css.template -share/doc/HTML/ko/common/lgpl-license -share/doc/HTML/ko/common/lgpl-license.html -share/doc/HTML/ko/common/logotp3-small.png -share/doc/HTML/ko/common/logotp3.png -share/doc/HTML/ko/common/note.png -share/doc/HTML/ko/common/prev.png -share/doc/HTML/ko/common/qpl-license.html -share/doc/HTML/ko/common/shadow.png -share/doc/HTML/ko/common/tip.png -share/doc/HTML/ko/common/toc-blank.png -share/doc/HTML/ko/common/toc-minus.png -share/doc/HTML/ko/common/toc-plus.png -share/doc/HTML/ko/common/up.png -share/doc/HTML/ko/common/warning.png -share/doc/HTML/ko/common/x11-license.html -share/doc/HTML/ko/common/xml.dcl -share/doc/HTML/lt/common/1.png -share/doc/HTML/lt/common/10.png -share/doc/HTML/lt/common/2.png -share/doc/HTML/lt/common/3.png -share/doc/HTML/lt/common/4.png -share/doc/HTML/lt/common/5.png -share/doc/HTML/lt/common/6.png -share/doc/HTML/lt/common/7.png -share/doc/HTML/lt/common/8.png -share/doc/HTML/lt/common/9.png -share/doc/HTML/lt/common/artistic-license.html -share/doc/HTML/lt/common/bottom1.png -share/doc/HTML/lt/common/bottom2.png -share/doc/HTML/lt/common/bsd-license.html -share/doc/HTML/lt/common/caution.png -share/doc/HTML/lt/common/doctop1.png -share/doc/HTML/lt/common/doctop1a.png -share/doc/HTML/lt/common/doctop1b.png -share/doc/HTML/lt/common/doctop2.png -share/doc/HTML/lt/common/fdl-license -share/doc/HTML/lt/common/fdl-license.html -share/doc/HTML/lt/common/gpl-license -share/doc/HTML/lt/common/gpl-license.html -share/doc/HTML/lt/common/important.png -share/doc/HTML/lt/common/kde-common.css -share/doc/HTML/lt/common/kde-default.css -share/doc/HTML/lt/common/kde-localised.css -share/doc/HTML/lt/common/kde-localised.css.template -share/doc/HTML/lt/common/lgpl-license -share/doc/HTML/lt/common/lgpl-license.html -share/doc/HTML/lt/common/logotp3-small.png -share/doc/HTML/lt/common/logotp3.png -share/doc/HTML/lt/common/note.png -share/doc/HTML/lt/common/prev.png -share/doc/HTML/lt/common/qpl-license.html -share/doc/HTML/lt/common/shadow.png -share/doc/HTML/lt/common/tip.png -share/doc/HTML/lt/common/toc-blank.png -share/doc/HTML/lt/common/toc-minus.png -share/doc/HTML/lt/common/toc-plus.png -share/doc/HTML/lt/common/up.png -share/doc/HTML/lt/common/warning.png -share/doc/HTML/lt/common/x11-license.html -share/doc/HTML/lt/common/xml.dcl -share/doc/HTML/lt/khelpcenter/common -share/doc/HTML/lt/khelpcenter/contact.docbook -share/doc/HTML/lt/khelpcenter/help.docbook -share/doc/HTML/lt/khelpcenter/index.cache.bz2 -share/doc/HTML/lt/khelpcenter/index.docbook -share/doc/HTML/lt/khelpcenter/links.docbook -share/doc/HTML/lt/khelpcenter/support.docbook -share/doc/HTML/lt/khelpcenter/welcome.docbook -share/doc/HTML/lt/khelpcenter/whatiskde.docbook -share/doc/HTML/nl/common/1.png -share/doc/HTML/nl/common/10.png -share/doc/HTML/nl/common/2.png -share/doc/HTML/nl/common/3.png -share/doc/HTML/nl/common/4.png -share/doc/HTML/nl/common/5.png -share/doc/HTML/nl/common/6.png -share/doc/HTML/nl/common/7.png -share/doc/HTML/nl/common/8.png -share/doc/HTML/nl/common/9.png -share/doc/HTML/nl/common/artistic-license.html -share/doc/HTML/nl/common/bottom1.png -share/doc/HTML/nl/common/bottom2.png -share/doc/HTML/nl/common/bsd-license.html -share/doc/HTML/nl/common/caution.png -share/doc/HTML/nl/common/doctop1.png -share/doc/HTML/nl/common/doctop1a.png -share/doc/HTML/nl/common/doctop1b.png -share/doc/HTML/nl/common/doctop2.png -share/doc/HTML/nl/common/fdl-license -share/doc/HTML/nl/common/fdl-license.html -share/doc/HTML/nl/common/fdl-translated.html -share/doc/HTML/nl/common/gpl-license -share/doc/HTML/nl/common/gpl-license.html -share/doc/HTML/nl/common/gpl-translated.html -share/doc/HTML/nl/common/important.png -share/doc/HTML/nl/common/kde-common.css -share/doc/HTML/nl/common/kde-default.css -share/doc/HTML/nl/common/kde-localised.css -share/doc/HTML/nl/common/kde-localised.css.template -share/doc/HTML/nl/common/lgpl-license -share/doc/HTML/nl/common/lgpl-license.html -share/doc/HTML/nl/common/lgpl-translated.html -share/doc/HTML/nl/common/logotp3-small.png -share/doc/HTML/nl/common/logotp3.png -share/doc/HTML/nl/common/note.png -share/doc/HTML/nl/common/prev.png -share/doc/HTML/nl/common/qpl-license.html -share/doc/HTML/nl/common/shadow.png -share/doc/HTML/nl/common/tip.png -share/doc/HTML/nl/common/toc-blank.png -share/doc/HTML/nl/common/toc-minus.png -share/doc/HTML/nl/common/toc-plus.png -share/doc/HTML/nl/common/up.png -share/doc/HTML/nl/common/warning.png -share/doc/HTML/nl/common/x11-license.html -share/doc/HTML/nl/common/xml.dcl -share/doc/HTML/nl/kaddressbook/common -share/doc/HTML/nl/kaddressbook/index.cache.bz2 -share/doc/HTML/nl/kaddressbook/index.docbook -share/doc/HTML/nl/kcontrol/common -share/doc/HTML/nl/kcontrol/index.cache.bz2 -share/doc/HTML/nl/kcontrol/index.docbook -share/doc/HTML/nl/kcontrol/kcmaccess.docbook -share/doc/HTML/nl/kcontrol/kcmaction.docbook -share/doc/HTML/nl/kcontrol/kcmbackgnd.docbook -share/doc/HTML/nl/kcontrol/kcmbatmon.docbook -share/doc/HTML/nl/kcontrol/kcmbell.docbook -share/doc/HTML/nl/kcontrol/kcmblockdev.docbook -share/doc/HTML/nl/kcontrol/kcmcolor.docbook -share/doc/HTML/nl/kcontrol/kcmcookie.docbook -share/doc/HTML/nl/kcontrol/kcmcrypto.docbook -share/doc/HTML/nl/kcontrol/kcmcss.docbook -share/doc/HTML/nl/kcontrol/kcmdatetime.docbook -share/doc/HTML/nl/kcontrol/kcmdesktop.docbook -share/doc/HTML/nl/kcontrol/kcmdeviceinfo.docbook -share/doc/HTML/nl/kcontrol/kcmdmainfo.docbook -share/doc/HTML/nl/kcontrol/kcmebrowse.docbook -share/doc/HTML/nl/kcontrol/kcmemail.docbook -share/doc/HTML/nl/kcontrol/kcmenergy.docbook -share/doc/HTML/nl/kcontrol/kcmfile.docbook -share/doc/HTML/nl/kcontrol/kcmfileman.docbook -share/doc/HTML/nl/kcontrol/kcmfonts.docbook -share/doc/HTML/nl/kcontrol/kcmhelpindex.docbook -share/doc/HTML/nl/kcontrol/kcmicon.docbook -share/doc/HTML/nl/kcontrol/kcmintinfo.docbook -share/doc/HTML/nl/kcontrol/kcmioportinfo.docbook -share/doc/HTML/nl/kcontrol/kcmkbd.docbook -share/doc/HTML/nl/kcontrol/kcmkbrowse.docbook -share/doc/HTML/nl/kcontrol/kcmkeybind.docbook -share/doc/HTML/nl/kcontrol/kcmkonsole.docbook -share/doc/HTML/nl/kcontrol/kcmkwintheme.docbook -share/doc/HTML/nl/kcontrol/kcmlaunch.docbook -share/doc/HTML/nl/kcontrol/kcmlisa.docbook -share/doc/HTML/nl/kcontrol/kcmlocate.docbook -share/doc/HTML/nl/kcontrol/kcmloginmanage.docbook -share/doc/HTML/nl/kcontrol/kcmlowbatcrit.docbook -share/doc/HTML/nl/kcontrol/kcmlowbatwarn.docbook -share/doc/HTML/nl/kcontrol/kcmmemoryinfo.docbook -share/doc/HTML/nl/kcontrol/kcmmidi.docbook -share/doc/HTML/nl/kcontrol/kcmmixer.docbook -share/doc/HTML/nl/kcontrol/kcmmouse.docbook -share/doc/HTML/nl/kcontrol/kcmnetscapeplugins.docbook -share/doc/HTML/nl/kcontrol/kcmpanel.docbook -share/doc/HTML/nl/kcontrol/kcmpartitioninfo.docbook -share/doc/HTML/nl/kcontrol/kcmpasswd.docbook -share/doc/HTML/nl/kcontrol/kcmpciinfo.docbook -share/doc/HTML/nl/kcontrol/kcmpcmcia.docbook -share/doc/HTML/nl/kcontrol/kcmpowerctrl.docbook -share/doc/HTML/nl/kcontrol/kcmprocinfo.docbook -share/doc/HTML/nl/kcontrol/kcmproxie.docbook -share/doc/HTML/nl/kcontrol/kcmscnsave.docbook -share/doc/HTML/nl/kcontrol/kcmscsiinfo.docbook -share/doc/HTML/nl/kcontrol/kcmsessionman.docbook -share/doc/HTML/nl/kcontrol/kcmsmbstat.docbook -share/doc/HTML/nl/kcontrol/kcmsndinfo.docbook -share/doc/HTML/nl/kcontrol/kcmsndsrv.docbook -share/doc/HTML/nl/kcontrol/kcmsocks.docbook -share/doc/HTML/nl/kcontrol/kcmspellchecking.docbook -share/doc/HTML/nl/kcontrol/kcmstyle.docbook -share/doc/HTML/nl/kcontrol/kcmsysnotify.docbook -share/doc/HTML/nl/kcontrol/kcmtalk.docbook -share/doc/HTML/nl/kcontrol/kcmtaskbar.docbook -share/doc/HTML/nl/kcontrol/kcmusb.docbook -share/doc/HTML/nl/kcontrol/kcmuseragent.docbook -share/doc/HTML/nl/kcontrol/kcmwinshare.docbook -share/doc/HTML/nl/kcontrol/kcmxservinfo.docbook -share/doc/HTML/nl/kcontrol/kfileman1.png -share/doc/HTML/nl/kcontrol/kfileman2.png -share/doc/HTML/nl/kcontrol/nettimeouts.docbook -share/doc/HTML/nl/kcontrol/printmanager.docbook -share/doc/HTML/nl/kcontrol/printsystem.docbook -share/doc/HTML/nl/kcontrol/protocols.docbook -share/doc/HTML/nl/kcontrol/screenshot.png -share/doc/HTML/nl/kcontrol/systemcontrol.docbook -share/doc/HTML/nl/kcontrol/thememgr.docbook -share/doc/HTML/nl/kdebugdialog/common -share/doc/HTML/nl/kdebugdialog/index.cache.bz2 -share/doc/HTML/nl/kdebugdialog/index.docbook -share/doc/HTML/nl/kdesu/common -share/doc/HTML/nl/kdesu/index.cache.bz2 -share/doc/HTML/nl/kdesu/index.docbook -share/doc/HTML/nl/khelpcenter/contact.docbook -share/doc/HTML/nl/khelpcenter/faq/about.docbook -share/doc/HTML/nl/khelpcenter/faq/getkde.docbook -share/doc/HTML/nl/khelpcenter/faq/intro.docbook -share/doc/HTML/nl/khelpcenter/links.docbook -share/doc/HTML/nl/khelpcenter/support.docbook -share/doc/HTML/nl/khelpcenter/visualdict/common -share/doc/HTML/nl/khelpcenter/visualdict/index.cache.bz2 -share/doc/HTML/nl/khelpcenter/visualdict/index.docbook -share/doc/HTML/nl/khelpcenter/visualdict/pict1.png -share/doc/HTML/nl/khelpcenter/visualdict/pict10.png -share/doc/HTML/nl/khelpcenter/visualdict/pict11.png -share/doc/HTML/nl/khelpcenter/visualdict/pict12.png -share/doc/HTML/nl/khelpcenter/visualdict/pict13.png -share/doc/HTML/nl/khelpcenter/visualdict/pict14.png -share/doc/HTML/nl/khelpcenter/visualdict/pict15.png -share/doc/HTML/nl/khelpcenter/visualdict/pict16.png -share/doc/HTML/nl/khelpcenter/visualdict/pict17.png -share/doc/HTML/nl/khelpcenter/visualdict/pict18.png -share/doc/HTML/nl/khelpcenter/visualdict/pict19.png -share/doc/HTML/nl/khelpcenter/visualdict/pict2.png -share/doc/HTML/nl/khelpcenter/visualdict/pict20.png -share/doc/HTML/nl/khelpcenter/visualdict/pict3.png -share/doc/HTML/nl/khelpcenter/visualdict/pict4.png -share/doc/HTML/nl/khelpcenter/visualdict/pict5.png -share/doc/HTML/nl/khelpcenter/visualdict/pict6.png -share/doc/HTML/nl/khelpcenter/visualdict/pict7.png -share/doc/HTML/nl/khelpcenter/visualdict/pict8.png -share/doc/HTML/nl/khelpcenter/visualdict/pict9.png -share/doc/HTML/nl/khelpcenter/welcome.docbook -share/doc/HTML/nl/kioslave/audiocd.docbook -share/doc/HTML/nl/kioslave/bzip.docbook -share/doc/HTML/nl/kioslave/bzip2.docbook -share/doc/HTML/nl/kioslave/common -share/doc/HTML/nl/kioslave/file.docbook -share/doc/HTML/nl/kioslave/finger.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/mailto.docbook -share/doc/HTML/nl/kioslave/man.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/rlan.docbook -share/doc/HTML/nl/kioslave/rlogin.docbook -share/doc/HTML/nl/kioslave/smb.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/konsole/common -share/doc/HTML/nl/konsole/index.cache.bz2 -share/doc/HTML/nl/konsole/index.docbook -share/doc/HTML/nl/konsole/konsole.png -share/doc/HTML/no_NY/kaddressbook/common -share/doc/HTML/no_NY/kaddressbook/index.docbook -share/doc/HTML/pl/kdevelop/tip.database -share/doc/HTML/pt/amor/common -share/doc/HTML/pt/amor/index.cache.bz2 -share/doc/HTML/pt/amor/index.docbook -share/doc/HTML/pt/common/1.png -share/doc/HTML/pt/common/10.png -share/doc/HTML/pt/common/2.png -share/doc/HTML/pt/common/3.png -share/doc/HTML/pt/common/4.png -share/doc/HTML/pt/common/5.png -share/doc/HTML/pt/common/6.png -share/doc/HTML/pt/common/7.png -share/doc/HTML/pt/common/8.png -share/doc/HTML/pt/common/9.png -share/doc/HTML/pt/common/artistic-license.html -share/doc/HTML/pt/common/bottom1.png -share/doc/HTML/pt/common/bottom2.png -share/doc/HTML/pt/common/bsd-license.html -share/doc/HTML/pt/common/caution.png -share/doc/HTML/pt/common/doctop1.png -share/doc/HTML/pt/common/doctop1a.png -share/doc/HTML/pt/common/doctop1b.png -share/doc/HTML/pt/common/doctop2.png -share/doc/HTML/pt/common/fdl-license -share/doc/HTML/pt/common/fdl-license.html -share/doc/HTML/pt/common/fdl-translated.html -share/doc/HTML/pt/common/gpl-license -share/doc/HTML/pt/common/gpl-license.html -share/doc/HTML/pt/common/gpl-translated.html -share/doc/HTML/pt/common/important.png -share/doc/HTML/pt/common/kde-common.css -share/doc/HTML/pt/common/kde-default.css -share/doc/HTML/pt/common/kde-localised.css -share/doc/HTML/pt/common/kde-localised.css.template -share/doc/HTML/pt/common/lgpl-license -share/doc/HTML/pt/common/lgpl-license.html -share/doc/HTML/pt/common/lgpl-translated.html -share/doc/HTML/pt/common/logotp3-small.png -share/doc/HTML/pt/common/logotp3.png -share/doc/HTML/pt/common/note.png -share/doc/HTML/pt/common/prev.png -share/doc/HTML/pt/common/qpl-license.html -share/doc/HTML/pt/common/shadow.png -share/doc/HTML/pt/common/tip.png -share/doc/HTML/pt/common/toc-blank.png -share/doc/HTML/pt/common/toc-minus.png -share/doc/HTML/pt/common/toc-plus.png -share/doc/HTML/pt/common/up.png -share/doc/HTML/pt/common/warning.png -share/doc/HTML/pt/common/x11-license.html -share/doc/HTML/pt/common/xml.dcl -share/doc/HTML/pt/kabalone/common -share/doc/HTML/pt/kabalone/index.cache.bz2 -share/doc/HTML/pt/kabalone/index.docbook -share/doc/HTML/pt/kaddressbook/common -share/doc/HTML/pt/kaddressbook/index.cache.bz2 -share/doc/HTML/pt/kaddressbook/index.docbook -share/doc/HTML/pt/kcontrol/common -share/doc/HTML/pt/kcontrol/index.cache.bz2 -share/doc/HTML/pt/kcontrol/index.docbook -share/doc/HTML/pt/kcontrol/kcmaccess.docbook -share/doc/HTML/pt/kcontrol/kcmaction.docbook -share/doc/HTML/pt/kcontrol/kcmbackgnd.docbook -share/doc/HTML/pt/kcontrol/kcmbatmon.docbook -share/doc/HTML/pt/kcontrol/kcmbell.docbook -share/doc/HTML/pt/kcontrol/kcmblockdev.docbook -share/doc/HTML/pt/kcontrol/kcmcolor.docbook -share/doc/HTML/pt/kcontrol/kcmcookie.docbook -share/doc/HTML/pt/kcontrol/kcmcrypto.docbook -share/doc/HTML/pt/kcontrol/kcmcss.docbook -share/doc/HTML/pt/kcontrol/kcmdatetime.docbook -share/doc/HTML/pt/kcontrol/kcmdesktop.docbook -share/doc/HTML/pt/kcontrol/kcmdeviceinfo.docbook -share/doc/HTML/pt/kcontrol/kcmdmainfo.docbook -share/doc/HTML/pt/kcontrol/kcmebrowse.docbook -share/doc/HTML/pt/kcontrol/kcmemail.docbook -share/doc/HTML/pt/kcontrol/kcmenergy.docbook -share/doc/HTML/pt/kcontrol/kcmfile.docbook -share/doc/HTML/pt/kcontrol/kcmfileman.docbook -share/doc/HTML/pt/kcontrol/kcmfonts.docbook -share/doc/HTML/pt/kcontrol/kcmhelpindex.docbook -share/doc/HTML/pt/kcontrol/kcmicon.docbook -share/doc/HTML/pt/kcontrol/kcmintinfo.docbook -share/doc/HTML/pt/kcontrol/kcmioportinfo.docbook -share/doc/HTML/pt/kcontrol/kcmkbd.docbook -share/doc/HTML/pt/kcontrol/kcmkbrowse.docbook -share/doc/HTML/pt/kcontrol/kcmkeybind.docbook -share/doc/HTML/pt/kcontrol/kcmkeys.docbook -share/doc/HTML/pt/kcontrol/kcmkonsole.docbook -share/doc/HTML/pt/kcontrol/kcmkwintheme.docbook -share/doc/HTML/pt/kcontrol/kcmlaunch.docbook -share/doc/HTML/pt/kcontrol/kcmlisa.docbook -share/doc/HTML/pt/kcontrol/kcmlocate.docbook -share/doc/HTML/pt/kcontrol/kcmloginmanage.docbook -share/doc/HTML/pt/kcontrol/kcmlowbatcrit.docbook -share/doc/HTML/pt/kcontrol/kcmlowbatwarn.docbook -share/doc/HTML/pt/kcontrol/kcmmemoryinfo.docbook -share/doc/HTML/pt/kcontrol/kcmmidi.docbook -share/doc/HTML/pt/kcontrol/kcmmixer.docbook -share/doc/HTML/pt/kcontrol/kcmmouse.docbook -share/doc/HTML/pt/kcontrol/kcmnetscapeplugins.docbook -share/doc/HTML/pt/kcontrol/kcmpanel.docbook -share/doc/HTML/pt/kcontrol/kcmpartitioninfo.docbook -share/doc/HTML/pt/kcontrol/kcmpasswd.docbook -share/doc/HTML/pt/kcontrol/kcmpciinfo.docbook -share/doc/HTML/pt/kcontrol/kcmpcmcia.docbook -share/doc/HTML/pt/kcontrol/kcmpowerctrl.docbook -share/doc/HTML/pt/kcontrol/kcmprocinfo.docbook -share/doc/HTML/pt/kcontrol/kcmproxie.docbook -share/doc/HTML/pt/kcontrol/kcmscnsave.docbook -share/doc/HTML/pt/kcontrol/kcmscsiinfo.docbook -share/doc/HTML/pt/kcontrol/kcmsessionman.docbook -share/doc/HTML/pt/kcontrol/kcmsmbstat.docbook -share/doc/HTML/pt/kcontrol/kcmsndinfo.docbook -share/doc/HTML/pt/kcontrol/kcmsndsrv.docbook -share/doc/HTML/pt/kcontrol/kcmsocks.docbook -share/doc/HTML/pt/kcontrol/kcmspellchecking.docbook -share/doc/HTML/pt/kcontrol/kcmstyle.docbook -share/doc/HTML/pt/kcontrol/kcmsysnotify.docbook -share/doc/HTML/pt/kcontrol/kcmtalk.docbook -share/doc/HTML/pt/kcontrol/kcmtaskbar.docbook -share/doc/HTML/pt/kcontrol/kcmusb.docbook -share/doc/HTML/pt/kcontrol/kcmuseragent.docbook -share/doc/HTML/pt/kcontrol/kcmwinshare.docbook -share/doc/HTML/pt/kcontrol/kcmxservinfo.docbook -share/doc/HTML/pt/kcontrol/kfileman1.png -share/doc/HTML/pt/kcontrol/kfileman2.png -share/doc/HTML/pt/kcontrol/nettimeouts.docbook -share/doc/HTML/pt/kcontrol/printmanager.docbook -share/doc/HTML/pt/kcontrol/printsystem.docbook -share/doc/HTML/pt/kcontrol/protocols.docbook -share/doc/HTML/pt/kcontrol/screenshot.png -share/doc/HTML/pt/kcontrol/systemcontrol.docbook -share/doc/HTML/pt/kcontrol/thememgr.docbook -share/doc/HTML/pt/kcron/common -share/doc/HTML/pt/kcron/index.cache.bz2 -share/doc/HTML/pt/kcron/index.docbook -share/doc/HTML/pt/kcron/kcron.png -share/doc/HTML/pt/kcron/kcronstart.png -share/doc/HTML/pt/kcron/newtask.png -share/doc/HTML/pt/kcron/newvariable.png -share/doc/HTML/pt/kcron/print.png -share/doc/HTML/pt/kdesu/common -share/doc/HTML/pt/kdesu/index.cache.bz2 -share/doc/HTML/pt/kdesu/index.docbook -share/doc/HTML/pt/kdf/common -share/doc/HTML/pt/kdf/index.cache.bz2 -share/doc/HTML/pt/kdf/index.docbook -share/doc/HTML/pt/kfind/common -share/doc/HTML/pt/kfind/index.cache.bz2 -share/doc/HTML/pt/kfind/index.docbook -share/doc/HTML/pt/kfloppy/common -share/doc/HTML/pt/kfloppy/index.cache.bz2 -share/doc/HTML/pt/kfloppy/index.docbook -share/doc/HTML/pt/khelpcenter/common -share/doc/HTML/pt/khelpcenter/contact.docbook -share/doc/HTML/pt/khelpcenter/help.docbook -share/doc/HTML/pt/khelpcenter/index.cache.bz2 -share/doc/HTML/pt/khelpcenter/index.docbook -share/doc/HTML/pt/khelpcenter/links.docbook -share/doc/HTML/pt/khelpcenter/support.docbook -share/doc/HTML/pt/khelpcenter/welcome.docbook -share/doc/HTML/pt/khelpcenter/whatiskde.docbook -share/doc/HTML/pt/kioslave/audiocd.docbook -share/doc/HTML/pt/kioslave/bzip.docbook -share/doc/HTML/pt/kioslave/bzip2.docbook -share/doc/HTML/pt/kioslave/common -share/doc/HTML/pt/kioslave/file.docbook -share/doc/HTML/pt/kioslave/finger.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/mailto.docbook -share/doc/HTML/pt/kioslave/man.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/rlan.docbook -share/doc/HTML/pt/kioslave/rlogin.docbook -share/doc/HTML/pt/kioslave/smb.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/klpq/common -share/doc/HTML/pt/klpq/index.cache.bz2 -share/doc/HTML/pt/klpq/index.docbook -share/doc/HTML/pt/klprfax/common -share/doc/HTML/pt/klprfax/index.cache.bz2 -share/doc/HTML/pt/klprfax/index.docbook -share/doc/HTML/pt/kmoon/common -share/doc/HTML/pt/kmoon/index.cache.bz2 -share/doc/HTML/pt/kmoon/index.docbook -share/doc/HTML/pt/kodo/common -share/doc/HTML/pt/kodo/index.cache.bz2 -share/doc/HTML/pt/kodo/index.docbook -share/doc/HTML/pt/kpackage/common -share/doc/HTML/pt/kpackage/index.cache.bz2 -share/doc/HTML/pt/kpackage/index.docbook -share/doc/HTML/pt/kpager/common -share/doc/HTML/pt/kpager/index.cache.bz2 -share/doc/HTML/pt/kpager/index.docbook -share/doc/HTML/pt/kscore/common -share/doc/HTML/pt/kscore/index.cache.bz2 -share/doc/HTML/pt/kscore/index.docbook -share/doc/HTML/pt/ksnapshot/common -share/doc/HTML/pt/ksnapshot/index.cache.bz2 -share/doc/HTML/pt/ksnapshot/index.docbook -share/doc/HTML/pt/kspell/common -share/doc/HTML/pt/kspell/index.cache.bz2 -share/doc/HTML/pt/kspell/index.docbook -share/doc/HTML/pt/ksysv/common -share/doc/HTML/pt/ksysv/index.cache.bz2 -share/doc/HTML/pt/ksysv/index.docbook -share/doc/HTML/pt/kteatime/common -share/doc/HTML/pt/kteatime/index.cache.bz2 -share/doc/HTML/pt/kteatime/index.docbook -share/doc/HTML/pt/kugar/datadtd.docbook -share/doc/HTML/pt/kugar/templatedtd.docbook -share/doc/HTML/pt/kuser/common -share/doc/HTML/pt/kuser/index.cache.bz2 -share/doc/HTML/pt/kuser/index.docbook -share/doc/HTML/pt/kworldclock/common -share/doc/HTML/pt/kworldclock/index.cache.bz2 -share/doc/HTML/pt/kworldclock/index.docbook -share/doc/HTML/pt/kwuftpd/common -share/doc/HTML/pt/kwuftpd/index.cache.bz2 -share/doc/HTML/pt/kwuftpd/index.docbook -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/artistic-license.html -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/caution.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/fdl-license -share/doc/HTML/ro/common/fdl-license.html -share/doc/HTML/ro/common/fdl-translated.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/important.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/lgpl-license -share/doc/HTML/ro/common/lgpl-license.html -share/doc/HTML/ro/common/lgpl-translated.html -share/doc/HTML/ro/common/logotp3-small.png -share/doc/HTML/ro/common/logotp3.png -share/doc/HTML/ro/common/note.png -share/doc/HTML/ro/common/prev.png -share/doc/HTML/ro/common/qpl-license.html -share/doc/HTML/ro/common/shadow.png -share/doc/HTML/ro/common/tip.png -share/doc/HTML/ro/common/toc-blank.png -share/doc/HTML/ro/common/toc-minus.png -share/doc/HTML/ro/common/toc-plus.png -share/doc/HTML/ro/common/up.png -share/doc/HTML/ro/common/warning.png -share/doc/HTML/ro/common/x11-license.html -share/doc/HTML/ro/common/xml.dcl -share/doc/HTML/ro/khelpcenter/contact.docbook -share/doc/HTML/ro/khelpcenter/help.docbook -share/doc/HTML/ro/khelpcenter/links.docbook -share/doc/HTML/ro/khelpcenter/support.docbook -share/doc/HTML/ro/khelpcenter/welcome.docbook -share/doc/HTML/ro/khelpcenter/whatiskde.docbook -share/doc/HTML/ro/kikbd/advanced.png -share/doc/HTML/ro/kikbd/general.png -share/doc/HTML/ro/kikbd/startup.png -share/doc/HTML/ro/kikbd/style.png -share/doc/HTML/ru/common/1.png -share/doc/HTML/ru/common/10.png -share/doc/HTML/ru/common/2.png -share/doc/HTML/ru/common/3.png -share/doc/HTML/ru/common/4.png -share/doc/HTML/ru/common/5.png -share/doc/HTML/ru/common/6.png -share/doc/HTML/ru/common/7.png -share/doc/HTML/ru/common/8.png -share/doc/HTML/ru/common/9.png -share/doc/HTML/ru/common/artistic-license.html -share/doc/HTML/ru/common/bottom1.png -share/doc/HTML/ru/common/bottom2.png -share/doc/HTML/ru/common/bsd-license.html -share/doc/HTML/ru/common/caution.png -share/doc/HTML/ru/common/doctop1.png -share/doc/HTML/ru/common/doctop1a.png -share/doc/HTML/ru/common/doctop1b.png -share/doc/HTML/ru/common/doctop2.png -share/doc/HTML/ru/common/fdl-license -share/doc/HTML/ru/common/fdl-license.html -share/doc/HTML/ru/common/fdl-translated.html -share/doc/HTML/ru/common/gpl-license -share/doc/HTML/ru/common/gpl-license.html -share/doc/HTML/ru/common/gpl-translated.html -share/doc/HTML/ru/common/important.png -share/doc/HTML/ru/common/kde-common.css -share/doc/HTML/ru/common/kde-default.css -share/doc/HTML/ru/common/kde-localised.css -share/doc/HTML/ru/common/kde-localised.css.template -share/doc/HTML/ru/common/lgpl-license -share/doc/HTML/ru/common/lgpl-license.html -share/doc/HTML/ru/common/logotp3-small.png -share/doc/HTML/ru/common/logotp3.png -share/doc/HTML/ru/common/note.png -share/doc/HTML/ru/common/prev.png -share/doc/HTML/ru/common/qpl-license.html -share/doc/HTML/ru/common/shadow.png -share/doc/HTML/ru/common/tip.png -share/doc/HTML/ru/common/toc-blank.png -share/doc/HTML/ru/common/toc-minus.png -share/doc/HTML/ru/common/toc-plus.png -share/doc/HTML/ru/common/up.png -share/doc/HTML/ru/common/warning.png -share/doc/HTML/ru/common/x11-license.html -share/doc/HTML/ru/common/xml.dcl -share/doc/HTML/ru/kandy/common -share/doc/HTML/ru/kandy/index.cache.bz2 -share/doc/HTML/ru/kandy/index.docbook -share/doc/HTML/ru/kate-plugins/helloworld.docbook -share/doc/HTML/ru/kate-plugins/htmltools.docbook -share/doc/HTML/ru/kate-plugins/insertcommand.docbook -share/doc/HTML/ru/kate-plugins/openheader.docbook -share/doc/HTML/ru/kate-plugins/projectmanager.docbook -share/doc/HTML/ru/kate-plugins/textfilter.docbook -share/doc/HTML/ru/kbattleship/common -share/doc/HTML/ru/kbattleship/index.cache.bz2 -share/doc/HTML/ru/kbattleship/index.docbook -share/doc/HTML/ru/kcontrol/kcmintinfo.docbook -share/doc/HTML/ru/kcontrol/kcmioportinfo.docbook -share/doc/HTML/ru/kcontrol/kcmmemoryinfo.docbook -share/doc/HTML/ru/kcontrol/kcmmixer.docbook -share/doc/HTML/ru/kcontrol/kcmpartitioninfo.docbook -share/doc/HTML/ru/kcontrol/kcmpciinfo.docbook -share/doc/HTML/ru/kcontrol/kcmpcmcia.docbook -share/doc/HTML/ru/kcontrol/kcmprocinfo.docbook -share/doc/HTML/ru/kcontrol/kcmsndinfo.docbook -share/doc/HTML/ru/kcontrol/kcmxservinfo.docbook -share/doc/HTML/ru/khelpcenter/background.png -share/doc/HTML/ru/khelpcenter/bgtable.png -share/doc/HTML/ru/khelpcenter/faq/kdeapps.docbook -share/doc/HTML/ru/khelpcenter/faq/nonkdeapps.docbook -share/doc/HTML/ru/khelpcenter/faq/notrelated.docbook -share/doc/HTML/ru/khelpcenter/faq/tips.docbook -share/doc/HTML/ru/khelpcenter/kdelogo2.png -share/doc/HTML/ru/khelpcenter/konq.css -share/doc/HTML/ru/khelpcenter/lines.png -share/doc/HTML/ru/khelpcenter/lines2.png -share/doc/HTML/ru/khelpcenter/links.docbook -share/doc/HTML/ru/khelpcenter/main.html -share/doc/HTML/ru/khelpcenter/pointers.png -share/doc/HTML/ru/khelpcenter/shadow1.png -share/doc/HTML/ru/khelpcenter/welcome.docbook -share/doc/HTML/ru/khelpcenter/whatiskde.docbook -share/doc/HTML/ru/kicker/common -share/doc/HTML/ru/kicker/index.cache.bz2 -share/doc/HTML/ru/kicker/index.docbook -share/doc/HTML/ru/kicker-applets/common -share/doc/HTML/ru/kicker-applets/index.cache.bz2 -share/doc/HTML/ru/kicker-applets/index.docbook -share/doc/HTML/ru/kicker-applets/kolourpicker.docbook -share/doc/HTML/ru/kicker-applets/ktimemon.docbook -share/doc/HTML/ru/kmix/common -share/doc/HTML/ru/kmix/index.cache.bz2 -share/doc/HTML/ru/kmix/index.docbook -share/doc/HTML/ru/knu/knu-config.png -share/doc/HTML/ru/knu/knu-finger.png -share/doc/HTML/ru/knu/knu-host.png -share/doc/HTML/ru/knu/knu-mtr.png -share/doc/HTML/ru/knu/knu-ping.png -share/doc/HTML/ru/knu/knu-traceroute.png -share/doc/HTML/ru/kodo/common -share/doc/HTML/ru/kodo/index.cache.bz2 -share/doc/HTML/ru/kodo/index.docbook -share/doc/HTML/ru/kpager/common -share/doc/HTML/ru/kpager/index.cache.bz2 -share/doc/HTML/ru/kpager/index.docbook -share/doc/HTML/ru/kppp/accounting.docbook -share/doc/HTML/ru/kppp/callback.docbook -share/doc/HTML/ru/kppp/chap.docbook -share/doc/HTML/ru/kppp/common -share/doc/HTML/ru/kppp/dialog-setup.docbook -share/doc/HTML/ru/kppp/getting-online.docbook -share/doc/HTML/ru/kppp/global-settings.docbook -share/doc/HTML/ru/kppp/hayes.docbook -share/doc/HTML/ru/kppp/index.cache.bz2 -share/doc/HTML/ru/kppp/index.docbook -share/doc/HTML/ru/kppp/kppp-faq.docbook -share/doc/HTML/ru/kppp/security.docbook -share/doc/HTML/ru/kppp/tricks.docbook -share/doc/HTML/ru/kppp/wizard.docbook -share/doc/HTML/ru/kpresenter/faq.docbook -share/doc/HTML/ru/kpresenter/guides.docbook -share/doc/HTML/ru/kpresenter/options.docbook -share/doc/HTML/ru/kpresenter/screen.docbook -share/doc/HTML/ru/kpresenter/tutorial.docbook -share/doc/HTML/ru/kscd/common -share/doc/HTML/ru/kscd/index.cache.bz2 -share/doc/HTML/ru/kscd/index.docbook -share/doc/HTML/ru/ksnapshot/common -share/doc/HTML/ru/ksnapshot/index.cache.bz2 -share/doc/HTML/ru/ksnapshot/index.docbook -share/doc/HTML/ru/ktalkd/common -share/doc/HTML/ru/ktalkd/index.cache.bz2 -share/doc/HTML/ru/ktalkd/index.docbook -share/doc/HTML/ru/kword/kwordbasics.docbook -share/doc/HTML/ru/kworldclock/common -share/doc/HTML/ru/kworldclock/index.cache.bz2 -share/doc/HTML/ru/kworldclock/index.docbook -share/doc/HTML/ru/kwuftpd/common -share/doc/HTML/ru/kwuftpd/index.cache.bz2 -share/doc/HTML/ru/kwuftpd/index.docbook -share/doc/HTML/ru/noatun/common -share/doc/HTML/ru/noatun/index.cache.bz2 -share/doc/HTML/ru/noatun/index.docbook -share/doc/HTML/sk/amor/common -share/doc/HTML/sk/amor/index.cache.bz2 -share/doc/HTML/sk/amor/index.docbook -share/doc/HTML/sk/common/1.png -share/doc/HTML/sk/common/10.png -share/doc/HTML/sk/common/2.png -share/doc/HTML/sk/common/3.png -share/doc/HTML/sk/common/4.png -share/doc/HTML/sk/common/5.png -share/doc/HTML/sk/common/6.png -share/doc/HTML/sk/common/7.png -share/doc/HTML/sk/common/8.png -share/doc/HTML/sk/common/9.png -share/doc/HTML/sk/common/artistic-license.html -share/doc/HTML/sk/common/bottom1.png -share/doc/HTML/sk/common/bottom2.png -share/doc/HTML/sk/common/bsd-license.html -share/doc/HTML/sk/common/caution.png -share/doc/HTML/sk/common/doctop1.png -share/doc/HTML/sk/common/doctop1a.png -share/doc/HTML/sk/common/doctop1b.png -share/doc/HTML/sk/common/doctop2.png -share/doc/HTML/sk/common/fdl-license -share/doc/HTML/sk/common/fdl-license.html -share/doc/HTML/sk/common/gpl-license -share/doc/HTML/sk/common/gpl-license.html -share/doc/HTML/sk/common/gpl-translated.html -share/doc/HTML/sk/common/important.png -share/doc/HTML/sk/common/kde-common.css -share/doc/HTML/sk/common/kde-default.css -share/doc/HTML/sk/common/kde-localised.css.template -share/doc/HTML/sk/common/lgpl-license -share/doc/HTML/sk/common/lgpl-license.html -share/doc/HTML/sk/common/logotp3-small.png -share/doc/HTML/sk/common/logotp3.png -share/doc/HTML/sk/common/note.png -share/doc/HTML/sk/common/prev.png -share/doc/HTML/sk/common/qpl-license.html -share/doc/HTML/sk/common/shadow.png -share/doc/HTML/sk/common/tip.png -share/doc/HTML/sk/common/toc-blank.png -share/doc/HTML/sk/common/toc-minus.png -share/doc/HTML/sk/common/toc-plus.png -share/doc/HTML/sk/common/up.png -share/doc/HTML/sk/common/warning.png -share/doc/HTML/sk/common/x11-license.html -share/doc/HTML/sk/common/xml.dcl -share/doc/HTML/sk/faq/about.docbook -share/doc/HTML/sk/faq/common -share/doc/HTML/sk/faq/configkde.docbook -share/doc/HTML/sk/faq/contrib.docbook -share/doc/HTML/sk/faq/desktop.docbook -share/doc/HTML/sk/faq/filemng.docbook -share/doc/HTML/sk/faq/getkde.docbook -share/doc/HTML/sk/faq/index.cache.bz2 -share/doc/HTML/sk/faq/index.docbook -share/doc/HTML/sk/faq/install.docbook -share/doc/HTML/sk/faq/intro.docbook -share/doc/HTML/sk/faq/kdeapps.docbook -share/doc/HTML/sk/faq/misc.docbook -share/doc/HTML/sk/faq/moreinfo.docbook -share/doc/HTML/sk/faq/nonkdeapps.docbook -share/doc/HTML/sk/faq/notrelated.docbook -share/doc/HTML/sk/faq/panel.docbook -share/doc/HTML/sk/faq/tips.docbook -share/doc/HTML/sk/faq/winmng.docbook -share/doc/HTML/sk/glossary/common -share/doc/HTML/sk/glossary/index.cache.bz2 -share/doc/HTML/sk/glossary/index.docbook -share/doc/HTML/sk/kaddressbook/common -share/doc/HTML/sk/kaddressbook/index.cache.bz2 -share/doc/HTML/sk/kaddressbook/index.docbook -share/doc/HTML/sk/kate/common -share/doc/HTML/sk/kate/index.cache.bz2 -share/doc/HTML/sk/kate/index.docbook -share/doc/HTML/sk/katomic/common -share/doc/HTML/sk/katomic/index.cache.bz2 -share/doc/HTML/sk/katomic/index.docbook -share/doc/HTML/sk/kbattleship/common -share/doc/HTML/sk/kbattleship/index.cache.bz2 -share/doc/HTML/sk/kbattleship/index.docbook -share/doc/HTML/sk/kcontrol/common -share/doc/HTML/sk/kcontrol/index.cache.bz2 -share/doc/HTML/sk/kcontrol/index.docbook -share/doc/HTML/sk/kcontrol/kcmaccess.docbook -share/doc/HTML/sk/kcontrol/kcmaction.docbook -share/doc/HTML/sk/kcontrol/kcmbackgnd.docbook -share/doc/HTML/sk/kcontrol/kcmbatmon.docbook -share/doc/HTML/sk/kcontrol/kcmbell.docbook -share/doc/HTML/sk/kcontrol/kcmblockdev.docbook -share/doc/HTML/sk/kcontrol/kcmcolor.docbook -share/doc/HTML/sk/kcontrol/kcmcookie.docbook -share/doc/HTML/sk/kcontrol/kcmcrypto.docbook -share/doc/HTML/sk/kcontrol/kcmcss.docbook -share/doc/HTML/sk/kcontrol/kcmdatetime.docbook -share/doc/HTML/sk/kcontrol/kcmdesktop.docbook -share/doc/HTML/sk/kcontrol/kcmdeviceinfo.docbook -share/doc/HTML/sk/kcontrol/kcmdmainfo.docbook -share/doc/HTML/sk/kcontrol/kcmebrowse.docbook -share/doc/HTML/sk/kcontrol/kcmemail.docbook -share/doc/HTML/sk/kcontrol/kcmenergy.docbook -share/doc/HTML/sk/kcontrol/kcmfile.docbook -share/doc/HTML/sk/kcontrol/kcmfileman.docbook -share/doc/HTML/sk/kcontrol/kcmfonts.docbook -share/doc/HTML/sk/kcontrol/kcmhelpindex.docbook -share/doc/HTML/sk/kcontrol/kcmicon.docbook -share/doc/HTML/sk/kcontrol/kcmintinfo.docbook -share/doc/HTML/sk/kcontrol/kcmioportinfo.docbook -share/doc/HTML/sk/kcontrol/kcmkbd.docbook -share/doc/HTML/sk/kcontrol/kcmkbrowse.docbook -share/doc/HTML/sk/kcontrol/kcmkeybind.docbook -share/doc/HTML/sk/kcontrol/kcmkonsole.docbook -share/doc/HTML/sk/kcontrol/kcmkwintheme.docbook -share/doc/HTML/sk/kcontrol/kcmlaunch.docbook -share/doc/HTML/sk/kcontrol/kcmlisa.docbook -share/doc/HTML/sk/kcontrol/kcmlocate.docbook -share/doc/HTML/sk/kcontrol/kcmloginmanage.docbook -share/doc/HTML/sk/kcontrol/kcmlowbatcrit.docbook -share/doc/HTML/sk/kcontrol/kcmlowbatwarn.docbook -share/doc/HTML/sk/kcontrol/kcmmemoryinfo.docbook -share/doc/HTML/sk/kcontrol/kcmmidi.docbook -share/doc/HTML/sk/kcontrol/kcmmixer.docbook -share/doc/HTML/sk/kcontrol/kcmmouse.docbook -share/doc/HTML/sk/kcontrol/kcmnetscapeplugins.docbook -share/doc/HTML/sk/kcontrol/kcmpanel.docbook -share/doc/HTML/sk/kcontrol/kcmpartitioninfo.docbook -share/doc/HTML/sk/kcontrol/kcmpasswd.docbook -share/doc/HTML/sk/kcontrol/kcmpciinfo.docbook -share/doc/HTML/sk/kcontrol/kcmpcmcia.docbook -share/doc/HTML/sk/kcontrol/kcmpowerctrl.docbook -share/doc/HTML/sk/kcontrol/kcmprocinfo.docbook -share/doc/HTML/sk/kcontrol/kcmproxie.docbook -share/doc/HTML/sk/kcontrol/kcmscnsave.docbook -share/doc/HTML/sk/kcontrol/kcmscsiinfo.docbook -share/doc/HTML/sk/kcontrol/kcmsessionman.docbook -share/doc/HTML/sk/kcontrol/kcmsmbstat.docbook -share/doc/HTML/sk/kcontrol/kcmsndinfo.docbook -share/doc/HTML/sk/kcontrol/kcmsndsrv.docbook -share/doc/HTML/sk/kcontrol/kcmsocks.docbook -share/doc/HTML/sk/kcontrol/kcmspellchecking.docbook -share/doc/HTML/sk/kcontrol/kcmstyle.docbook -share/doc/HTML/sk/kcontrol/kcmsysnotify.docbook -share/doc/HTML/sk/kcontrol/kcmtalk.docbook -share/doc/HTML/sk/kcontrol/kcmtaskbar.docbook -share/doc/HTML/sk/kcontrol/kcmusb.docbook -share/doc/HTML/sk/kcontrol/kcmuseragent.docbook -share/doc/HTML/sk/kcontrol/kcmwinshare.docbook -share/doc/HTML/sk/kcontrol/kcmxservinfo.docbook -share/doc/HTML/sk/kcontrol/nettimeouts.docbook -share/doc/HTML/sk/kcontrol/printmanager.docbook -share/doc/HTML/sk/kcontrol/printsystem.docbook -share/doc/HTML/sk/kcontrol/protocols.docbook -share/doc/HTML/sk/kcontrol/systemcontrol.docbook -share/doc/HTML/sk/kcontrol/thememgr.docbook -share/doc/HTML/sk/kdebugdialog/common -share/doc/HTML/sk/kdebugdialog/index.cache.bz2 -share/doc/HTML/sk/kdebugdialog/index.docbook -share/doc/HTML/sk/kdesu/common -share/doc/HTML/sk/kdesu/index.cache.bz2 -share/doc/HTML/sk/kdesu/index.docbook -share/doc/HTML/sk/kdf/common -share/doc/HTML/sk/kdf/index.cache.bz2 -share/doc/HTML/sk/kdf/index.docbook -share/doc/HTML/sk/kfind/common -share/doc/HTML/sk/kfind/index.cache.bz2 -share/doc/HTML/sk/kfind/index.docbook -share/doc/HTML/sk/khelpcenter/common -share/doc/HTML/sk/khelpcenter/contact.docbook -share/doc/HTML/sk/khelpcenter/help.docbook -share/doc/HTML/sk/khelpcenter/index.cache.bz2 -share/doc/HTML/sk/khelpcenter/index.docbook -share/doc/HTML/sk/khelpcenter/links.docbook -share/doc/HTML/sk/khelpcenter/quickstart/common -share/doc/HTML/sk/khelpcenter/quickstart/index.cache.bz2 -share/doc/HTML/sk/khelpcenter/quickstart/index.docbook -share/doc/HTML/sk/khelpcenter/support.docbook -share/doc/HTML/sk/khelpcenter/welcome.docbook -share/doc/HTML/sk/khelpcenter/whatiskde.docbook -share/doc/HTML/sk/kicker/common -share/doc/HTML/sk/kicker/index.cache.bz2 -share/doc/HTML/sk/kicker/index.docbook -share/doc/HTML/sk/kioslave/audiocd.docbook -share/doc/HTML/sk/kioslave/bzip.docbook -share/doc/HTML/sk/kioslave/bzip2.docbook -share/doc/HTML/sk/kioslave/common -share/doc/HTML/sk/kioslave/file.docbook -share/doc/HTML/sk/kioslave/finger.docbook -share/doc/HTML/sk/kioslave/floppy.docbook -share/doc/HTML/sk/kioslave/ftp.docbook -share/doc/HTML/sk/kioslave/gopher.docbook -share/doc/HTML/sk/kioslave/gzip.docbook -share/doc/HTML/sk/kioslave/help.docbook -share/doc/HTML/sk/kioslave/http.docbook -share/doc/HTML/sk/kioslave/https.docbook -share/doc/HTML/sk/kioslave/imap.docbook -share/doc/HTML/sk/kioslave/imaps.docbook -share/doc/HTML/sk/kioslave/index.cache.bz2 -share/doc/HTML/sk/kioslave/index.docbook -share/doc/HTML/sk/kioslave/info.docbook -share/doc/HTML/sk/kioslave/lan.docbook -share/doc/HTML/sk/kioslave/ldap.docbook -share/doc/HTML/sk/kioslave/mailto.docbook -share/doc/HTML/sk/kioslave/man.docbook -share/doc/HTML/sk/kioslave/news.docbook -share/doc/HTML/sk/kioslave/nfs.docbook -share/doc/HTML/sk/kioslave/nntp.docbook -share/doc/HTML/sk/kioslave/pop3.docbook -share/doc/HTML/sk/kioslave/pop3s.docbook -share/doc/HTML/sk/kioslave/rlan.docbook -share/doc/HTML/sk/kioslave/rlogin.docbook -share/doc/HTML/sk/kioslave/smb.docbook -share/doc/HTML/sk/kioslave/tar.docbook -share/doc/HTML/sk/kioslave/telnet.docbook -share/doc/HTML/sk/kioslave/thumbnail.docbook -share/doc/HTML/sk/kjezz/common -share/doc/HTML/sk/kjezz/index.cache.bz2 -share/doc/HTML/sk/kjezz/index.docbook -share/doc/HTML/sk/klines/common -share/doc/HTML/sk/klines/index.cache.bz2 -share/doc/HTML/sk/klines/index.docbook -share/doc/HTML/sk/klipper/common -share/doc/HTML/sk/klipper/index.cache.bz2 -share/doc/HTML/sk/klipper/index.docbook -share/doc/HTML/sk/kmenuedit/common -share/doc/HTML/sk/kmenuedit/index.cache.bz2 -share/doc/HTML/sk/kmenuedit/index.docbook -share/doc/HTML/sk/kmoon/common -share/doc/HTML/sk/kmoon/index.cache.bz2 -share/doc/HTML/sk/kmoon/index.docbook -share/doc/HTML/sk/kodo/common -share/doc/HTML/sk/kodo/index.cache.bz2 -share/doc/HTML/sk/kodo/index.docbook -share/doc/HTML/sk/konqueror/cmndline.png -share/doc/HTML/sk/konqueror/common -share/doc/HTML/sk/konqueror/dirtree.png -share/doc/HTML/sk/konqueror/dragdrop.png -share/doc/HTML/sk/konqueror/filetype1.png -share/doc/HTML/sk/konqueror/filetype3.png -share/doc/HTML/sk/konqueror/filetype4.png -share/doc/HTML/sk/konqueror/index.cache.bz2 -share/doc/HTML/sk/konqueror/index.docbook -share/doc/HTML/sk/konqueror/konqorg.png -share/doc/HTML/sk/konqueror/parts.png -share/doc/HTML/sk/konquest/common -share/doc/HTML/sk/konquest/index.cache.bz2 -share/doc/HTML/sk/konquest/index.docbook -share/doc/HTML/sk/konsole/common -share/doc/HTML/sk/konsole/index.cache.bz2 -share/doc/HTML/sk/konsole/index.docbook -share/doc/HTML/sk/koshell/common -share/doc/HTML/sk/koshell/index.cache.bz2 -share/doc/HTML/sk/koshell/index.docbook -share/doc/HTML/sk/kpager/common -share/doc/HTML/sk/kpager/index.cache.bz2 -share/doc/HTML/sk/kpager/index.docbook -share/doc/HTML/sk/kpresenter/common -share/doc/HTML/sk/kpresenter/faq.docbook -share/doc/HTML/sk/kpresenter/guides.docbook -share/doc/HTML/sk/kpresenter/index.cache.bz2 -share/doc/HTML/sk/kpresenter/index.docbook -share/doc/HTML/sk/kpresenter/menus.docbook -share/doc/HTML/sk/kpresenter/options.docbook -share/doc/HTML/sk/kpresenter/screen.docbook -share/doc/HTML/sk/kpresenter/tutorial.docbook -share/doc/HTML/sk/ksame/common -share/doc/HTML/sk/ksame/index.cache.bz2 -share/doc/HTML/sk/ksame/index.docbook -share/doc/HTML/sk/kshisen/common -share/doc/HTML/sk/kshisen/index.cache.bz2 -share/doc/HTML/sk/kshisen/index.docbook -share/doc/HTML/sk/ksirtet/common -share/doc/HTML/sk/ksirtet/index.cache.bz2 -share/doc/HTML/sk/ksirtet/index.docbook -share/doc/HTML/sk/ksnake/common -share/doc/HTML/sk/ksnake/index.cache.bz2 -share/doc/HTML/sk/ksnake/index.docbook -share/doc/HTML/sk/ksokoban/common -share/doc/HTML/sk/ksokoban/index.cache.bz2 -share/doc/HTML/sk/ksokoban/index.docbook -share/doc/HTML/sk/ksysguard/common -share/doc/HTML/sk/ksysguard/index.cache.bz2 -share/doc/HTML/sk/ksysguard/index.docbook -share/doc/HTML/sk/kteatime/common -share/doc/HTML/sk/kteatime/config.png -share/doc/HTML/sk/kteatime/index.cache.bz2 -share/doc/HTML/sk/kteatime/index.docbook -share/doc/HTML/sk/kworldclock/common -share/doc/HTML/sk/kworldclock/index.cache.bz2 -share/doc/HTML/sk/kworldclock/index.docbook -share/doc/HTML/sk/visualdict/common -share/doc/HTML/sk/visualdict/index.cache.bz2 -share/doc/HTML/sk/visualdict/index.docbook -share/doc/HTML/sl/common/1.png -share/doc/HTML/sl/common/10.png -share/doc/HTML/sl/common/2.png -share/doc/HTML/sl/common/3.png -share/doc/HTML/sl/common/4.png -share/doc/HTML/sl/common/5.png -share/doc/HTML/sl/common/6.png -share/doc/HTML/sl/common/7.png -share/doc/HTML/sl/common/8.png -share/doc/HTML/sl/common/9.png -share/doc/HTML/sl/common/artistic-license.html -share/doc/HTML/sl/common/bottom1.png -share/doc/HTML/sl/common/bottom2.png -share/doc/HTML/sl/common/bsd-license.html -share/doc/HTML/sl/common/caution.png -share/doc/HTML/sl/common/doctop1.png -share/doc/HTML/sl/common/doctop1a.png -share/doc/HTML/sl/common/doctop1b.png -share/doc/HTML/sl/common/doctop2.png -share/doc/HTML/sl/common/fdl-license -share/doc/HTML/sl/common/fdl-license.html -share/doc/HTML/sl/common/fdl-translated.html -share/doc/HTML/sl/common/gpl-license -share/doc/HTML/sl/common/gpl-license.html -share/doc/HTML/sl/common/gpl-translated.html -share/doc/HTML/sl/common/important.png -share/doc/HTML/sl/common/kde-common.css -share/doc/HTML/sl/common/kde-default.css -share/doc/HTML/sl/common/kde-localised.css -share/doc/HTML/sl/common/kde-localised.css.template -share/doc/HTML/sl/common/lgpl-license -share/doc/HTML/sl/common/lgpl-license.html -share/doc/HTML/sl/common/lgpl-translated.html -share/doc/HTML/sl/common/logotp3-small.png -share/doc/HTML/sl/common/logotp3.png -share/doc/HTML/sl/common/note.png -share/doc/HTML/sl/common/prev.png -share/doc/HTML/sl/common/qpl-license.html -share/doc/HTML/sl/common/shadow.png -share/doc/HTML/sl/common/tip.png -share/doc/HTML/sl/common/toc-blank.png -share/doc/HTML/sl/common/toc-minus.png -share/doc/HTML/sl/common/toc-plus.png -share/doc/HTML/sl/common/up.png -share/doc/HTML/sl/common/warning.png -share/doc/HTML/sl/common/x11-license.html -share/doc/HTML/sl/common/xml.dcl -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/kate/common -share/doc/HTML/sl/kate/index.cache.bz2 -share/doc/HTML/sl/kate/index.docbook -share/doc/HTML/sl/kcontrol/common -share/doc/HTML/sl/kcontrol/index.cache.bz2 -share/doc/HTML/sl/kcontrol/index.docbook -share/doc/HTML/sl/kcontrol/kcmaccess.docbook -share/doc/HTML/sl/kcontrol/kcmaction.docbook -share/doc/HTML/sl/kcontrol/kcmbackgnd.docbook -share/doc/HTML/sl/kcontrol/kcmbatmon.docbook -share/doc/HTML/sl/kcontrol/kcmbell.docbook -share/doc/HTML/sl/kcontrol/kcmblockdev.docbook -share/doc/HTML/sl/kcontrol/kcmborders.docbook -share/doc/HTML/sl/kcontrol/kcmcolor.docbook -share/doc/HTML/sl/kcontrol/kcmcookie.docbook -share/doc/HTML/sl/kcontrol/kcmcrypto.docbook -share/doc/HTML/sl/kcontrol/kcmcss.docbook -share/doc/HTML/sl/kcontrol/kcmdatetime.docbook -share/doc/HTML/sl/kcontrol/kcmdesktop.docbook -share/doc/HTML/sl/kcontrol/kcmdeviceinfo.docbook -share/doc/HTML/sl/kcontrol/kcmdisplay.docbook -share/doc/HTML/sl/kcontrol/kcmdmainfo.docbook -share/doc/HTML/sl/kcontrol/kcmdrkonqi.docbook -share/doc/HTML/sl/kcontrol/kcmebrowse.docbook -share/doc/HTML/sl/kcontrol/kcmemail.docbook -share/doc/HTML/sl/kcontrol/kcmenergy.docbook -share/doc/HTML/sl/kcontrol/kcmfile.docbook -share/doc/HTML/sl/kcontrol/kcmfileman.docbook -share/doc/HTML/sl/kcontrol/kcmfonts.docbook -share/doc/HTML/sl/kcontrol/kcmhelpindex.docbook -share/doc/HTML/sl/kcontrol/kcmicon.docbook -share/doc/HTML/sl/kcontrol/kcmiconstyle.docbook -share/doc/HTML/sl/kcontrol/kcminfo.docbook -share/doc/HTML/sl/kcontrol/kcmintinfo.docbook -share/doc/HTML/sl/kcontrol/kcmioportinfo.docbook -share/doc/HTML/sl/kcontrol/kcmkbd.docbook -share/doc/HTML/sl/kcontrol/kcmkblayout.docbook -share/doc/HTML/sl/kcontrol/kcmkbrowse.docbook -share/doc/HTML/sl/kcontrol/kcmkeybind.docbook -share/doc/HTML/sl/kcontrol/kcmkeys.docbook -share/doc/HTML/sl/kcontrol/kcmkonsole.docbook -share/doc/HTML/sl/kcontrol/kcmkwintheme.docbook -share/doc/HTML/sl/kcontrol/kcmlaunch.docbook -share/doc/HTML/sl/kcontrol/kcmlisa.docbook -share/doc/HTML/sl/kcontrol/kcmlocale.docbook -share/doc/HTML/sl/kcontrol/kcmlocate.docbook -share/doc/HTML/sl/kcontrol/kcmloginmanage.docbook -share/doc/HTML/sl/kcontrol/kcmlowbatcrit.docbook -share/doc/HTML/sl/kcontrol/kcmlowbatwarn.docbook -share/doc/HTML/sl/kcontrol/kcmmemoryinfo.docbook -share/doc/HTML/sl/kcontrol/kcmmidi.docbook -share/doc/HTML/sl/kcontrol/kcmmixer.docbook -share/doc/HTML/sl/kcontrol/kcmmouse.docbook -share/doc/HTML/sl/kcontrol/kcmmousebeh.docbook -share/doc/HTML/sl/kcontrol/kcmnetscapeplugins.docbook -share/doc/HTML/sl/kcontrol/kcmnumbername.docbook -share/doc/HTML/sl/kcontrol/kcmpanel.docbook -share/doc/HTML/sl/kcontrol/kcmpartitioninfo.docbook -share/doc/HTML/sl/kcontrol/kcmpasswd.docbook -share/doc/HTML/sl/kcontrol/kcmpciinfo.docbook -share/doc/HTML/sl/kcontrol/kcmpcmcia.docbook -share/doc/HTML/sl/kcontrol/kcmpcmia.docbook -share/doc/HTML/sl/kcontrol/kcmpowerctrl.docbook -share/doc/HTML/sl/kcontrol/kcmprocinfo.docbook -share/doc/HTML/sl/kcontrol/kcmproxie.docbook -share/doc/HTML/sl/kcontrol/kcmscnsave.docbook -share/doc/HTML/sl/kcontrol/kcmscsiinfo.docbook -share/doc/HTML/sl/kcontrol/kcmsessionman.docbook -share/doc/HTML/sl/kcontrol/kcmsmbstat.docbook -share/doc/HTML/sl/kcontrol/kcmsndinfo.docbook -share/doc/HTML/sl/kcontrol/kcmsndsrv.docbook -share/doc/HTML/sl/kcontrol/kcmsocks.docbook -share/doc/HTML/sl/kcontrol/kcmspellchecking.docbook -share/doc/HTML/sl/kcontrol/kcmstyle.docbook -share/doc/HTML/sl/kcontrol/kcmsysnotify.docbook -share/doc/HTML/sl/kcontrol/kcmtalk.docbook -share/doc/HTML/sl/kcontrol/kcmtaskbar.docbook -share/doc/HTML/sl/kcontrol/kcmusb.docbook -share/doc/HTML/sl/kcontrol/kcmuseragent.docbook -share/doc/HTML/sl/kcontrol/kcmwinshare.docbook -share/doc/HTML/sl/kcontrol/kcmxservinfo.docbook -share/doc/HTML/sl/kcontrol/nettimeouts.docbook -share/doc/HTML/sl/kcontrol/printmanager.docbook -share/doc/HTML/sl/kcontrol/printsystem.docbook -share/doc/HTML/sl/kcontrol/protocols.docbook -share/doc/HTML/sl/kcontrol/screenshot.png -share/doc/HTML/sl/kcontrol/systemcontrol.docbook -share/doc/HTML/sl/kcontrol/thememgr.docbook -share/doc/HTML/sl/kdebugdialog/common -share/doc/HTML/sl/kdebugdialog/index.cache.bz2 -share/doc/HTML/sl/kdebugdialog/index.docbook -share/doc/HTML/sl/kdesu/common -share/doc/HTML/sl/kdesu/index.cache.bz2 -share/doc/HTML/sl/kdesu/index.docbook -share/doc/HTML/sl/kdm/common -share/doc/HTML/sl/kdm/index.cache.bz2 -share/doc/HTML/sl/kdm/index.docbook -share/doc/HTML/sl/kdvi/common -share/doc/HTML/sl/kdvi/index.cache.bz2 -share/doc/HTML/sl/kdvi/index.docbook -share/doc/HTML/sl/kedit/common -share/doc/HTML/sl/kedit/index.cache.bz2 -share/doc/HTML/sl/kedit/index.docbook -share/doc/HTML/sl/keystone/common -share/doc/HTML/sl/keystone/index.cache.bz2 -share/doc/HTML/sl/keystone/index.docbook -share/doc/HTML/sl/khelpcenter/background.png -share/doc/HTML/sl/khelpcenter/bgtable.png -share/doc/HTML/sl/khelpcenter/common -share/doc/HTML/sl/khelpcenter/contact.docbook -share/doc/HTML/sl/khelpcenter/exec.xpm -share/doc/HTML/sl/khelpcenter/faq/about.docbook -share/doc/HTML/sl/khelpcenter/faq/common -share/doc/HTML/sl/khelpcenter/faq/configkde.docbook -share/doc/HTML/sl/khelpcenter/faq/contrib.docbook -share/doc/HTML/sl/khelpcenter/faq/desktop.docbook -share/doc/HTML/sl/khelpcenter/faq/filemng.docbook -share/doc/HTML/sl/khelpcenter/faq/getkde.docbook -share/doc/HTML/sl/khelpcenter/faq/index.cache.bz2 -share/doc/HTML/sl/khelpcenter/faq/index.docbook -share/doc/HTML/sl/khelpcenter/faq/install.docbook -share/doc/HTML/sl/khelpcenter/faq/intro.docbook -share/doc/HTML/sl/khelpcenter/faq/kdeapps.docbook -share/doc/HTML/sl/khelpcenter/faq/misc.docbook -share/doc/HTML/sl/khelpcenter/faq/moreinfo.docbook -share/doc/HTML/sl/khelpcenter/faq/nonkdeapps.docbook -share/doc/HTML/sl/khelpcenter/faq/notrelated.docbook -share/doc/HTML/sl/khelpcenter/faq/panel.docbook -share/doc/HTML/sl/khelpcenter/faq/tips.docbook -share/doc/HTML/sl/khelpcenter/faq/winmng.docbook -share/doc/HTML/sl/khelpcenter/glossary/common -share/doc/HTML/sl/khelpcenter/glossary/index.cache.bz2 -share/doc/HTML/sl/khelpcenter/glossary/index.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/konq.css -share/doc/HTML/sl/khelpcenter/laptop.png -share/doc/HTML/sl/khelpcenter/lines.png -share/doc/HTML/sl/khelpcenter/links.docbook -share/doc/HTML/sl/khelpcenter/main.html -share/doc/HTML/sl/khelpcenter/pointers.png -share/doc/HTML/sl/khelpcenter/quickstart/common -share/doc/HTML/sl/khelpcenter/quickstart/index.cache.bz2 -share/doc/HTML/sl/khelpcenter/quickstart/index.docbook -share/doc/HTML/sl/khelpcenter/shadow1.png -share/doc/HTML/sl/khelpcenter/support.docbook -share/doc/HTML/sl/khelpcenter/tinylogo.png -share/doc/HTML/sl/khelpcenter/userguide/common -share/doc/HTML/sl/khelpcenter/userguide/index.cache.bz2 -share/doc/HTML/sl/khelpcenter/userguide/index.docbook -share/doc/HTML/sl/khelpcenter/visualdict/common -share/doc/HTML/sl/khelpcenter/visualdict/index.cache.bz2 -share/doc/HTML/sl/khelpcenter/visualdict/index.docbook -share/doc/HTML/sl/khelpcenter/visualdict/pict1.png -share/doc/HTML/sl/khelpcenter/visualdict/pict10.png -share/doc/HTML/sl/khelpcenter/visualdict/pict11.png -share/doc/HTML/sl/khelpcenter/visualdict/pict12.png -share/doc/HTML/sl/khelpcenter/visualdict/pict13.png -share/doc/HTML/sl/khelpcenter/visualdict/pict14.png -share/doc/HTML/sl/khelpcenter/visualdict/pict15.png -share/doc/HTML/sl/khelpcenter/visualdict/pict16.png -share/doc/HTML/sl/khelpcenter/visualdict/pict17.png -share/doc/HTML/sl/khelpcenter/visualdict/pict18.png -share/doc/HTML/sl/khelpcenter/visualdict/pict19.png -share/doc/HTML/sl/khelpcenter/visualdict/pict2.png -share/doc/HTML/sl/khelpcenter/visualdict/pict20.png -share/doc/HTML/sl/khelpcenter/visualdict/pict3.png -share/doc/HTML/sl/khelpcenter/visualdict/pict4.png -share/doc/HTML/sl/khelpcenter/visualdict/pict5.png -share/doc/HTML/sl/khelpcenter/visualdict/pict6.png -share/doc/HTML/sl/khelpcenter/visualdict/pict7.png -share/doc/HTML/sl/khelpcenter/visualdict/pict8.png -share/doc/HTML/sl/khelpcenter/visualdict/pict9.png -share/doc/HTML/sl/khelpcenter/welcome.docbook -share/doc/HTML/sl/khelpcenter/whatiskde.docbook -share/doc/HTML/sl/kicker/common -share/doc/HTML/sl/kicker/index.cache.bz2 -share/doc/HTML/sl/kicker/index.docbook -share/doc/HTML/sl/kioslave/audiocd.docbook -share/doc/HTML/sl/kioslave/bzip.docbook -share/doc/HTML/sl/kioslave/bzip2.docbook -share/doc/HTML/sl/kioslave/common -share/doc/HTML/sl/kioslave/file.docbook -share/doc/HTML/sl/kioslave/finger.docbook -share/doc/HTML/sl/kioslave/floppy.docbook -share/doc/HTML/sl/kioslave/ftp.docbook -share/doc/HTML/sl/kioslave/gopher.docbook -share/doc/HTML/sl/kioslave/gzip.docbook -share/doc/HTML/sl/kioslave/help.docbook -share/doc/HTML/sl/kioslave/http.docbook -share/doc/HTML/sl/kioslave/https.docbook -share/doc/HTML/sl/kioslave/imap.docbook -share/doc/HTML/sl/kioslave/imaps.docbook -share/doc/HTML/sl/kioslave/index.cache.bz2 -share/doc/HTML/sl/kioslave/index.docbook -share/doc/HTML/sl/kioslave/info.docbook -share/doc/HTML/sl/kioslave/lan.docbook -share/doc/HTML/sl/kioslave/ldap.docbook -share/doc/HTML/sl/kioslave/mailto.docbook -share/doc/HTML/sl/kioslave/man.docbook -share/doc/HTML/sl/kioslave/news.docbook -share/doc/HTML/sl/kioslave/nfs.docbook -share/doc/HTML/sl/kioslave/nntp.docbook -share/doc/HTML/sl/kioslave/pop3.docbook -share/doc/HTML/sl/kioslave/pop3s.docbook -share/doc/HTML/sl/kioslave/rlan.docbook -share/doc/HTML/sl/kioslave/rlogin.docbook -share/doc/HTML/sl/kioslave/smb.docbook -share/doc/HTML/sl/kioslave/tar.docbook -share/doc/HTML/sl/kioslave/telnet.docbook -share/doc/HTML/sl/kioslave/thumbnail.docbook -share/doc/HTML/sl/kit/common -share/doc/HTML/sl/kit/index.cache.bz2 -share/doc/HTML/sl/kit/index.docbook -share/doc/HTML/sl/klipper/common -share/doc/HTML/sl/klipper/index.cache.bz2 -share/doc/HTML/sl/klipper/index.docbook -share/doc/HTML/sl/kmenuedit/common -share/doc/HTML/sl/kmenuedit/index.cache.bz2 -share/doc/HTML/sl/kmenuedit/index.docbook -share/doc/HTML/sl/konqueror/cmndline.png -share/doc/HTML/sl/konqueror/common -share/doc/HTML/sl/konqueror/dirtree.png -share/doc/HTML/sl/konqueror/dragdrop.png -share/doc/HTML/sl/konqueror/filetype1.png -share/doc/HTML/sl/konqueror/filetype3.png -share/doc/HTML/sl/konqueror/filetype4.png -share/doc/HTML/sl/konqueror/index.cache.bz2 -share/doc/HTML/sl/konqueror/index.docbook -share/doc/HTML/sl/konqueror/konqdoc5.png -share/doc/HTML/sl/konqueror/konqdoc9.png -share/doc/HTML/sl/konqueror/konqorg.png -share/doc/HTML/sl/konqueror/parts.png -share/doc/HTML/sl/konqueror/samba.png -share/doc/HTML/sl/konsole/common -share/doc/HTML/sl/konsole/index.cache.bz2 -share/doc/HTML/sl/konsole/index.docbook -share/doc/HTML/sl/konsole/konsole.png -share/doc/HTML/sl/koshell/common -share/doc/HTML/sl/koshell/index.cache.bz2 -share/doc/HTML/sl/koshell/index.docbook -share/doc/HTML/sl/kpackage/common -share/doc/HTML/sl/kpackage/index.cache.bz2 -share/doc/HTML/sl/kpackage/index.docbook -share/doc/HTML/sl/kpager/common -share/doc/HTML/sl/kpager/index.cache.bz2 -share/doc/HTML/sl/kpager/index.docbook -share/doc/HTML/sl/kppp/accounting.docbook -share/doc/HTML/sl/kppp/callback.docbook -share/doc/HTML/sl/kppp/chap.docbook -share/doc/HTML/sl/kppp/dialog-setup.docbook -share/doc/HTML/sl/kppp/getting-online.docbook -share/doc/HTML/sl/kppp/global-settings.docbook -share/doc/HTML/sl/kppp/kppp-faq.docbook -share/doc/HTML/sl/kppp/security.docbook -share/doc/HTML/sl/kppp/tricks.docbook -share/doc/HTML/sl/kppp/wizard.docbook -share/doc/HTML/sl/kpresenter/faq.docbook -share/doc/HTML/sl/kpresenter/guides.docbook -share/doc/HTML/sl/kpresenter/options.docbook -share/doc/HTML/sl/kpresenter/screen.docbook -share/doc/HTML/sl/krayon/krayon-faq.docbook -share/doc/HTML/sl/ksnapshot/common -share/doc/HTML/sl/ksnapshot/index.cache.bz2 -share/doc/HTML/sl/ksnapshot/index.docbook -share/doc/HTML/sl/kspell/common -share/doc/HTML/sl/kspell/index.cache.bz2 -share/doc/HTML/sl/kspell/index.docbook -share/doc/HTML/sl/ksysguard/common -share/doc/HTML/sl/ksysguard/index.cache.bz2 -share/doc/HTML/sl/ksysguard/index.docbook -share/doc/HTML/sl/kwrite/common -share/doc/HTML/sl/kwrite/index.cache.bz2 -share/doc/HTML/sl/kwrite/index.docbook -share/doc/HTML/sl/noatun/common -share/doc/HTML/sl/noatun/index.cache.bz2 -share/doc/HTML/sl/noatun/index.docbook -share/doc/HTML/sv/amor/common -share/doc/HTML/sv/amor/index.cache.bz2 -share/doc/HTML/sv/amor/index.docbook -share/doc/HTML/sv/common/1.png -share/doc/HTML/sv/common/10.png -share/doc/HTML/sv/common/2.png -share/doc/HTML/sv/common/3.png -share/doc/HTML/sv/common/4.png -share/doc/HTML/sv/common/5.png -share/doc/HTML/sv/common/6.png -share/doc/HTML/sv/common/7.png -share/doc/HTML/sv/common/8.png -share/doc/HTML/sv/common/9.png -share/doc/HTML/sv/common/artistic-license.html -share/doc/HTML/sv/common/bottom1.png -share/doc/HTML/sv/common/bottom2.png -share/doc/HTML/sv/common/bsd-license.html -share/doc/HTML/sv/common/caution.png -share/doc/HTML/sv/common/doctop1.png -share/doc/HTML/sv/common/doctop1a.png -share/doc/HTML/sv/common/doctop1b.png -share/doc/HTML/sv/common/doctop2.png -share/doc/HTML/sv/common/fdl-license -share/doc/HTML/sv/common/fdl-license.html -share/doc/HTML/sv/common/fdl-translated.html -share/doc/HTML/sv/common/gpl-license -share/doc/HTML/sv/common/gpl-license.html -share/doc/HTML/sv/common/gpl-translated.html -share/doc/HTML/sv/common/important.png -share/doc/HTML/sv/common/kde-common.css -share/doc/HTML/sv/common/kde-default.css -share/doc/HTML/sv/common/kde-localised.css -share/doc/HTML/sv/common/kde-localised.css.template -share/doc/HTML/sv/common/lgpl-license -share/doc/HTML/sv/common/lgpl-license.html -share/doc/HTML/sv/common/lgpl-translated.html -share/doc/HTML/sv/common/logotp3-small.png -share/doc/HTML/sv/common/logotp3.png -share/doc/HTML/sv/common/note.png -share/doc/HTML/sv/common/prev.png -share/doc/HTML/sv/common/qpl-license.html -share/doc/HTML/sv/common/shadow.png -share/doc/HTML/sv/common/tip.png -share/doc/HTML/sv/common/toc-blank.png -share/doc/HTML/sv/common/toc-minus.png -share/doc/HTML/sv/common/toc-plus.png -share/doc/HTML/sv/common/up.png -share/doc/HTML/sv/common/warning.png -share/doc/HTML/sv/common/x11-license.html -share/doc/HTML/sv/common/xml.dcl -share/doc/HTML/sv/kaddressbook/common -share/doc/HTML/sv/kaddressbook/index.cache.bz2 -share/doc/HTML/sv/kaddressbook/index.docbook -share/doc/HTML/sv/kate/common -share/doc/HTML/sv/kate/index.cache.bz2 -share/doc/HTML/sv/kate/index.docbook -share/doc/HTML/sv/kcontrol/common -share/doc/HTML/sv/kcontrol/index.cache.bz2 -share/doc/HTML/sv/kcontrol/index.docbook -share/doc/HTML/sv/kcontrol/kcmaccess.docbook -share/doc/HTML/sv/kcontrol/kcmaction.docbook -share/doc/HTML/sv/kcontrol/kcmbackgnd.docbook -share/doc/HTML/sv/kcontrol/kcmbatmon.docbook -share/doc/HTML/sv/kcontrol/kcmbell.docbook -share/doc/HTML/sv/kcontrol/kcmblockdev.docbook -share/doc/HTML/sv/kcontrol/kcmcolor.docbook -share/doc/HTML/sv/kcontrol/kcmcookie.docbook -share/doc/HTML/sv/kcontrol/kcmcrypto.docbook -share/doc/HTML/sv/kcontrol/kcmcss.docbook -share/doc/HTML/sv/kcontrol/kcmdatetime.docbook -share/doc/HTML/sv/kcontrol/kcmdesktop.docbook -share/doc/HTML/sv/kcontrol/kcmdeviceinfo.docbook -share/doc/HTML/sv/kcontrol/kcmdmainfo.docbook -share/doc/HTML/sv/kcontrol/kcmebrowse.docbook -share/doc/HTML/sv/kcontrol/kcmemail.docbook -share/doc/HTML/sv/kcontrol/kcmenergy.docbook -share/doc/HTML/sv/kcontrol/kcmfile.docbook -share/doc/HTML/sv/kcontrol/kcmfileman.docbook -share/doc/HTML/sv/kcontrol/kcmfonts.docbook -share/doc/HTML/sv/kcontrol/kcmhelpindex.docbook -share/doc/HTML/sv/kcontrol/kcmicon.docbook -share/doc/HTML/sv/kcontrol/kcmintinfo.docbook -share/doc/HTML/sv/kcontrol/kcmioportinfo.docbook -share/doc/HTML/sv/kcontrol/kcmkbd.docbook -share/doc/HTML/sv/kcontrol/kcmkbrowse.docbook -share/doc/HTML/sv/kcontrol/kcmkeybind.docbook -share/doc/HTML/sv/kcontrol/kcmkonsole.docbook -share/doc/HTML/sv/kcontrol/kcmkwintheme.docbook -share/doc/HTML/sv/kcontrol/kcmlaunch.docbook -share/doc/HTML/sv/kcontrol/kcmlisa.docbook -share/doc/HTML/sv/kcontrol/kcmlocate.docbook -share/doc/HTML/sv/kcontrol/kcmloginmanage.docbook -share/doc/HTML/sv/kcontrol/kcmlowbatcrit.docbook -share/doc/HTML/sv/kcontrol/kcmlowbatwarn.docbook -share/doc/HTML/sv/kcontrol/kcmmemoryinfo.docbook -share/doc/HTML/sv/kcontrol/kcmmidi.docbook -share/doc/HTML/sv/kcontrol/kcmmixer.docbook -share/doc/HTML/sv/kcontrol/kcmmouse.docbook -share/doc/HTML/sv/kcontrol/kcmnetscapeplugins.docbook -share/doc/HTML/sv/kcontrol/kcmnumbername.docbook -share/doc/HTML/sv/kcontrol/kcmpanel.docbook -share/doc/HTML/sv/kcontrol/kcmpartitioninfo.docbook -share/doc/HTML/sv/kcontrol/kcmpasswd.docbook -share/doc/HTML/sv/kcontrol/kcmpciinfo.docbook -share/doc/HTML/sv/kcontrol/kcmpcmcia.docbook -share/doc/HTML/sv/kcontrol/kcmpowerctrl.docbook -share/doc/HTML/sv/kcontrol/kcmprocinfo.docbook -share/doc/HTML/sv/kcontrol/kcmproxie.docbook -share/doc/HTML/sv/kcontrol/kcmscnsave.docbook -share/doc/HTML/sv/kcontrol/kcmscsiinfo.docbook -share/doc/HTML/sv/kcontrol/kcmsessionman.docbook -share/doc/HTML/sv/kcontrol/kcmsmbstat.docbook -share/doc/HTML/sv/kcontrol/kcmsndinfo.docbook -share/doc/HTML/sv/kcontrol/kcmsndsrv.docbook -share/doc/HTML/sv/kcontrol/kcmsocks.docbook -share/doc/HTML/sv/kcontrol/kcmspellchecking.docbook -share/doc/HTML/sv/kcontrol/kcmstyle.docbook -share/doc/HTML/sv/kcontrol/kcmsysnotify.docbook -share/doc/HTML/sv/kcontrol/kcmtalk.docbook -share/doc/HTML/sv/kcontrol/kcmtaskbar.docbook -share/doc/HTML/sv/kcontrol/kcmusb.docbook -share/doc/HTML/sv/kcontrol/kcmuseragent.docbook -share/doc/HTML/sv/kcontrol/kcmwinshare.docbook -share/doc/HTML/sv/kcontrol/kcmxservinfo.docbook -share/doc/HTML/sv/kcontrol/nettimeouts.docbook -share/doc/HTML/sv/kcontrol/printmanager.docbook -share/doc/HTML/sv/kcontrol/printsystem.docbook -share/doc/HTML/sv/kcontrol/protocols.docbook -share/doc/HTML/sv/kcontrol/screenshot.png -share/doc/HTML/sv/kcontrol/systemcontrol.docbook -share/doc/HTML/sv/kcontrol/thememgr.docbook -share/doc/HTML/sv/kdebugdialog/common -share/doc/HTML/sv/kdebugdialog/index.cache.bz2 -share/doc/HTML/sv/kdebugdialog/index.docbook -share/doc/HTML/sv/kdesu/common -share/doc/HTML/sv/kdesu/index.cache.bz2 -share/doc/HTML/sv/kdesu/index.docbook -share/doc/HTML/sv/kdevelop/tip.database -share/doc/HTML/sv/kdm/common -share/doc/HTML/sv/kdm/index.cache.bz2 -share/doc/HTML/sv/kdm/index.docbook -share/doc/HTML/sv/khelpcenter/common -share/doc/HTML/sv/khelpcenter/contact.docbook -share/doc/HTML/sv/khelpcenter/faq/about.docbook -share/doc/HTML/sv/khelpcenter/faq/common -share/doc/HTML/sv/khelpcenter/faq/configkde.docbook -share/doc/HTML/sv/khelpcenter/faq/contrib.docbook -share/doc/HTML/sv/khelpcenter/faq/desktop.docbook -share/doc/HTML/sv/khelpcenter/faq/filemng.docbook -share/doc/HTML/sv/khelpcenter/faq/getkde.docbook -share/doc/HTML/sv/khelpcenter/faq/index.cache.bz2 -share/doc/HTML/sv/khelpcenter/faq/index.docbook -share/doc/HTML/sv/khelpcenter/faq/install.docbook -share/doc/HTML/sv/khelpcenter/faq/intro.docbook -share/doc/HTML/sv/khelpcenter/faq/kdeapps.docbook -share/doc/HTML/sv/khelpcenter/faq/misc.docbook -share/doc/HTML/sv/khelpcenter/faq/moreinfo.docbook -share/doc/HTML/sv/khelpcenter/faq/nonkdeapps.docbook -share/doc/HTML/sv/khelpcenter/faq/notrelated.docbook -share/doc/HTML/sv/khelpcenter/faq/panel.docbook -share/doc/HTML/sv/khelpcenter/faq/tips.docbook -share/doc/HTML/sv/khelpcenter/faq/winmng.docbook -share/doc/HTML/sv/khelpcenter/glossary/common -share/doc/HTML/sv/khelpcenter/glossary/index.cache.bz2 -share/doc/HTML/sv/khelpcenter/glossary/index.docbook -share/doc/HTML/sv/khelpcenter/help.docbook -share/doc/HTML/sv/khelpcenter/index.cache.bz2 -share/doc/HTML/sv/khelpcenter/index.docbook -share/doc/HTML/sv/khelpcenter/links.docbook -share/doc/HTML/sv/khelpcenter/quickstart/common -share/doc/HTML/sv/khelpcenter/quickstart/index.cache.bz2 -share/doc/HTML/sv/khelpcenter/quickstart/index.docbook -share/doc/HTML/sv/khelpcenter/support.docbook -share/doc/HTML/sv/khelpcenter/userguide/common -share/doc/HTML/sv/khelpcenter/userguide/index.cache.bz2 -share/doc/HTML/sv/khelpcenter/userguide/index.docbook -share/doc/HTML/sv/khelpcenter/visualdict/common -share/doc/HTML/sv/khelpcenter/visualdict/index.cache.bz2 -share/doc/HTML/sv/khelpcenter/visualdict/index.docbook -share/doc/HTML/sv/khelpcenter/welcome.docbook -share/doc/HTML/sv/khelpcenter/whatiskde.docbook -share/doc/HTML/sv/kicker/common -share/doc/HTML/sv/kicker/index.cache.bz2 -share/doc/HTML/sv/kicker/index.docbook -share/doc/HTML/sv/kicker/screenshot_right.png -share/doc/HTML/sv/kioslave/audiocd.docbook -share/doc/HTML/sv/kioslave/bzip.docbook -share/doc/HTML/sv/kioslave/bzip2.docbook -share/doc/HTML/sv/kioslave/common -share/doc/HTML/sv/kioslave/file.docbook -share/doc/HTML/sv/kioslave/finger.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/mailto.docbook -share/doc/HTML/sv/kioslave/man.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/smb.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/klipper/common -share/doc/HTML/sv/klipper/index.cache.bz2 -share/doc/HTML/sv/klipper/index.docbook -share/doc/HTML/sv/kmenuedit/common -share/doc/HTML/sv/kmenuedit/index.cache.bz2 -share/doc/HTML/sv/kmenuedit/index.docbook -share/doc/HTML/sv/kmix/common -share/doc/HTML/sv/kmix/index.cache.bz2 -share/doc/HTML/sv/kmix/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/kodo/common -share/doc/HTML/sv/kodo/guide.png -share/doc/HTML/sv/kodo/index.cache.bz2 -share/doc/HTML/sv/kodo/index.docbook -share/doc/HTML/sv/konqueror/cmndline.png -share/doc/HTML/sv/konqueror/common -share/doc/HTML/sv/konqueror/dirtree.png -share/doc/HTML/sv/konqueror/dragdrop.png -share/doc/HTML/sv/konqueror/filetype1.png -share/doc/HTML/sv/konqueror/filetype3.png -share/doc/HTML/sv/konqueror/filetype4.png -share/doc/HTML/sv/konqueror/index.cache.bz2 -share/doc/HTML/sv/konqueror/index.docbook -share/doc/HTML/sv/konqueror/konqorg.png -share/doc/HTML/sv/konqueror/parts.png -share/doc/HTML/sv/konsole/common -share/doc/HTML/sv/konsole/index.cache.bz2 -share/doc/HTML/sv/konsole/index.docbook -share/doc/HTML/sv/kpager/common -share/doc/HTML/sv/kpager/index.cache.bz2 -share/doc/HTML/sv/kpager/index.docbook -share/doc/HTML/sv/kscd/common -share/doc/HTML/sv/kscd/index.cache.bz2 -share/doc/HTML/sv/kscd/index.docbook -share/doc/HTML/sv/kscd/kscd.png -share/doc/HTML/sv/kscd/kscd12.png -share/doc/HTML/sv/kscd/kscd13.png -share/doc/HTML/sv/kscd/kscd14.png -share/doc/HTML/sv/kscd/kscd16.png -share/doc/HTML/sv/kscd/kscd19.png -share/doc/HTML/sv/kscd/kscd2.png -share/doc/HTML/sv/kscd/kscd3.png -share/doc/HTML/sv/kscore/common -share/doc/HTML/sv/kscore/index.cache.bz2 -share/doc/HTML/sv/kscore/index.docbook -share/doc/HTML/sv/ksysguard/common -share/doc/HTML/sv/ksysguard/index.cache.bz2 -share/doc/HTML/sv/ksysguard/index.docbook -share/doc/HTML/sv/kteatime/common -share/doc/HTML/sv/kteatime/config.png -share/doc/HTML/sv/kteatime/index.cache.bz2 -share/doc/HTML/sv/kteatime/index.docbook -share/doc/HTML/sv/kworldclock/common -share/doc/HTML/sv/kworldclock/index.cache.bz2 -share/doc/HTML/sv/kworldclock/index.docbook -share/doc/HTML/sv/noatun/common -share/doc/HTML/sv/noatun/index.cache.bz2 -share/doc/HTML/sv/noatun/index.docbook -share/doc/HTML/tr/khelpcenter/links.docbook -share/doc/HTML/tr/khelpcenter/welcome.docbook -share/doc/HTML/uk/common/1.png -share/doc/HTML/uk/common/10.png -share/doc/HTML/uk/common/2.png -share/doc/HTML/uk/common/3.png -share/doc/HTML/uk/common/4.png -share/doc/HTML/uk/common/5.png -share/doc/HTML/uk/common/6.png -share/doc/HTML/uk/common/7.png -share/doc/HTML/uk/common/8.png -share/doc/HTML/uk/common/9.png -share/doc/HTML/uk/common/artistic-license.html -share/doc/HTML/uk/common/bottom1.png -share/doc/HTML/uk/common/bottom2.png -share/doc/HTML/uk/common/bsd-license.html -share/doc/HTML/uk/common/caution.png -share/doc/HTML/uk/common/doctop1.png -share/doc/HTML/uk/common/doctop1a.png -share/doc/HTML/uk/common/doctop1b.png -share/doc/HTML/uk/common/doctop2.png -share/doc/HTML/uk/common/fdl-license -share/doc/HTML/uk/common/fdl-license.html -share/doc/HTML/uk/common/gpl-license -share/doc/HTML/uk/common/gpl-license.html -share/doc/HTML/uk/common/important.png -share/doc/HTML/uk/common/kde-common.css -share/doc/HTML/uk/common/kde-default.css -share/doc/HTML/uk/common/kde-localised.css -share/doc/HTML/uk/common/kde-localised.css.template -share/doc/HTML/uk/common/lgpl-license -share/doc/HTML/uk/common/lgpl-license.html -share/doc/HTML/uk/common/logotp3-small.png -share/doc/HTML/uk/common/logotp3.png -share/doc/HTML/uk/common/note.png -share/doc/HTML/uk/common/prev.png -share/doc/HTML/uk/common/qpl-license.html -share/doc/HTML/uk/common/shadow.png -share/doc/HTML/uk/common/tip.png -share/doc/HTML/uk/common/toc-blank.png -share/doc/HTML/uk/common/toc-minus.png -share/doc/HTML/uk/common/toc-plus.png -share/doc/HTML/uk/common/up.png -share/doc/HTML/uk/common/warning.png -share/doc/HTML/uk/common/x11-license.html -share/doc/HTML/uk/common/xml.dcl -share/doc/HTML/xh/kaddressbook/common -share/doc/HTML/xh/kaddressbook/index.cache.bz2 -share/doc/HTML/xh/kaddressbook/index.docbook -share/doc/HTML/xh/khelpcenter/common -share/doc/HTML/xh/khelpcenter/contact.docbook -share/doc/HTML/xh/khelpcenter/help.docbook -share/doc/HTML/xh/khelpcenter/index.cache.bz2 -share/doc/HTML/xh/khelpcenter/index.docbook -share/doc/HTML/xh/khelpcenter/links.docbook -share/doc/HTML/xh/khelpcenter/support.docbook -share/doc/HTML/xh/khelpcenter/welcome.docbook -share/doc/HTML/xh/khelpcenter/whatiskde.docbook -share/doc/HTML/xh/kmenuedit/common -share/doc/HTML/xh/kmenuedit/index.cache.bz2 -share/doc/HTML/xh/kmenuedit/index.docbook -share/doc/HTML/xh/konqueror/common -share/doc/HTML/xh/konqueror/index.cache.bz2 -share/doc/HTML/xh/konqueror/index.docbook -share/doc/HTML/xh/kspell/common -share/doc/HTML/xh/kspell/index.cache.bz2 -share/doc/HTML/xh/kspell/index.docbook -share/doc/HTML/zh_CN.GB2312/common/1.png -share/doc/HTML/zh_CN.GB2312/common/10.png -share/doc/HTML/zh_CN.GB2312/common/2.png -share/doc/HTML/zh_CN.GB2312/common/3.png -share/doc/HTML/zh_CN.GB2312/common/4.png -share/doc/HTML/zh_CN.GB2312/common/5.png -share/doc/HTML/zh_CN.GB2312/common/6.png -share/doc/HTML/zh_CN.GB2312/common/7.png -share/doc/HTML/zh_CN.GB2312/common/8.png -share/doc/HTML/zh_CN.GB2312/common/9.png -share/doc/HTML/zh_CN.GB2312/common/artistic-license.html -share/doc/HTML/zh_CN.GB2312/common/bottom1.png -share/doc/HTML/zh_CN.GB2312/common/bottom2.png -share/doc/HTML/zh_CN.GB2312/common/bsd-license.html -share/doc/HTML/zh_CN.GB2312/common/caution.png -share/doc/HTML/zh_CN.GB2312/common/doctop1.png -share/doc/HTML/zh_CN.GB2312/common/doctop1a.png -share/doc/HTML/zh_CN.GB2312/common/doctop1b.png -share/doc/HTML/zh_CN.GB2312/common/doctop2.png -share/doc/HTML/zh_CN.GB2312/common/fdl-license -share/doc/HTML/zh_CN.GB2312/common/fdl-license.html -share/doc/HTML/zh_CN.GB2312/common/fdl-translated.html -share/doc/HTML/zh_CN.GB2312/common/gpl-license -share/doc/HTML/zh_CN.GB2312/common/gpl-license.html -share/doc/HTML/zh_CN.GB2312/common/gpl-translated.html -share/doc/HTML/zh_CN.GB2312/common/important.png -share/doc/HTML/zh_CN.GB2312/common/kde-common.css -share/doc/HTML/zh_CN.GB2312/common/kde-default.css -share/doc/HTML/zh_CN.GB2312/common/kde-localised.css -share/doc/HTML/zh_CN.GB2312/common/kde-localised.css.template -share/doc/HTML/zh_CN.GB2312/common/lgpl-license -share/doc/HTML/zh_CN.GB2312/common/lgpl-license.html -share/doc/HTML/zh_CN.GB2312/common/lgpl-translated.html -share/doc/HTML/zh_CN.GB2312/common/logotp3-small.png -share/doc/HTML/zh_CN.GB2312/common/logotp3.png -share/doc/HTML/zh_CN.GB2312/common/note.png -share/doc/HTML/zh_CN.GB2312/common/prev.png -share/doc/HTML/zh_CN.GB2312/common/qpl-license.html -share/doc/HTML/zh_CN.GB2312/common/shadow.png -share/doc/HTML/zh_CN.GB2312/common/tip.png -share/doc/HTML/zh_CN.GB2312/common/toc-blank.png -share/doc/HTML/zh_CN.GB2312/common/toc-minus.png -share/doc/HTML/zh_CN.GB2312/common/toc-plus.png -share/doc/HTML/zh_CN.GB2312/common/up.png -share/doc/HTML/zh_CN.GB2312/common/warning.png -share/doc/HTML/zh_CN.GB2312/common/x11-license.html -share/doc/HTML/zh_CN.GB2312/common/xml.dcl -share/doc/HTML/zh_CN.GB2312/kdevelop/tip.database -share/doc/HTML/zh_TW.Big5/common/1.png -share/doc/HTML/zh_TW.Big5/common/10.png -share/doc/HTML/zh_TW.Big5/common/2.png -share/doc/HTML/zh_TW.Big5/common/3.png -share/doc/HTML/zh_TW.Big5/common/4.png -share/doc/HTML/zh_TW.Big5/common/5.png -share/doc/HTML/zh_TW.Big5/common/6.png -share/doc/HTML/zh_TW.Big5/common/7.png -share/doc/HTML/zh_TW.Big5/common/8.png -share/doc/HTML/zh_TW.Big5/common/9.png -share/doc/HTML/zh_TW.Big5/common/artistic-license.html -share/doc/HTML/zh_TW.Big5/common/bottom1.png -share/doc/HTML/zh_TW.Big5/common/bottom2.png -share/doc/HTML/zh_TW.Big5/common/bsd-license.html -share/doc/HTML/zh_TW.Big5/common/caution.png -share/doc/HTML/zh_TW.Big5/common/doctop1.png -share/doc/HTML/zh_TW.Big5/common/doctop1a.png -share/doc/HTML/zh_TW.Big5/common/doctop1b.png -share/doc/HTML/zh_TW.Big5/common/doctop2.png -share/doc/HTML/zh_TW.Big5/common/fdl-license -share/doc/HTML/zh_TW.Big5/common/fdl-license.html -share/doc/HTML/zh_TW.Big5/common/fdl-translated.html -share/doc/HTML/zh_TW.Big5/common/gpl-license -share/doc/HTML/zh_TW.Big5/common/gpl-license.html -share/doc/HTML/zh_TW.Big5/common/gpl-translated.html -share/doc/HTML/zh_TW.Big5/common/important.png -share/doc/HTML/zh_TW.Big5/common/kde-common.css -share/doc/HTML/zh_TW.Big5/common/kde-default.css -share/doc/HTML/zh_TW.Big5/common/kde-localised.css -share/doc/HTML/zh_TW.Big5/common/kde-localised.css.template -share/doc/HTML/zh_TW.Big5/common/lgpl-license -share/doc/HTML/zh_TW.Big5/common/lgpl-license.html -share/doc/HTML/zh_TW.Big5/common/lgpl-translated.html -share/doc/HTML/zh_TW.Big5/common/logotp3-small.png -share/doc/HTML/zh_TW.Big5/common/logotp3.png -share/doc/HTML/zh_TW.Big5/common/note.png -share/doc/HTML/zh_TW.Big5/common/prev.png -share/doc/HTML/zh_TW.Big5/common/qpl-license.html -share/doc/HTML/zh_TW.Big5/common/shadow.png -share/doc/HTML/zh_TW.Big5/common/tip.png -share/doc/HTML/zh_TW.Big5/common/toc-blank.png -share/doc/HTML/zh_TW.Big5/common/toc-minus.png -share/doc/HTML/zh_TW.Big5/common/toc-plus.png -share/doc/HTML/zh_TW.Big5/common/up.png -share/doc/HTML/zh_TW.Big5/common/warning.png -share/doc/HTML/zh_TW.Big5/common/x11-license.html -share/doc/HTML/zh_TW.Big5/common/xml.dcl -share/doc/HTML/zh_TW.Big5/khelpcenter/contact.docbook -share/doc/HTML/zh_TW.Big5/khelpcenter/help.docbook -share/doc/HTML/zh_TW.Big5/khelpcenter/links.docbook -share/doc/HTML/zh_TW.Big5/khelpcenter/support.docbook -share/doc/HTML/zh_TW.Big5/khelpcenter/welcome.docbook -share/doc/HTML/zh_TW.Big5/khelpcenter/whatiskde.docbook -share/locale/af/LC_MESSAGES/aktion.mo -share/locale/af/LC_MESSAGES/amor.mo -share/locale/af/LC_MESSAGES/appletproxy.mo -share/locale/af/LC_MESSAGES/ark.mo -share/locale/af/LC_MESSAGES/artsbuilder.mo -share/locale/af/LC_MESSAGES/artscontrol.mo -share/locale/af/LC_MESSAGES/caitoo.mo -share/locale/af/LC_MESSAGES/childpanelextension.mo -share/locale/af/LC_MESSAGES/clockapplet.mo -share/locale/af/LC_MESSAGES/colfind.mo -share/locale/af/LC_MESSAGES/columbo.mo -share/locale/af/LC_MESSAGES/cupsdconf.mo -share/locale/af/LC_MESSAGES/desktop.mo -share/locale/af/LC_MESSAGES/devcenter.mo -share/locale/af/LC_MESSAGES/drkonqi.mo -share/locale/af/LC_MESSAGES/empath.mo -share/locale/af/LC_MESSAGES/extensionproxy.mo -share/locale/af/LC_MESSAGES/filetypes.mo -share/locale/af/LC_MESSAGES/gideon.mo -share/locale/af/LC_MESSAGES/gofai.mo -share/locale/af/LC_MESSAGES/htmlsearch.mo -share/locale/af/LC_MESSAGES/kab.mo -share/locale/af/LC_MESSAGES/kabalone.mo -share/locale/af/LC_MESSAGES/kaccess.mo -share/locale/af/LC_MESSAGES/kaddressbook.mo -share/locale/af/LC_MESSAGES/kafka.mo -share/locale/af/LC_MESSAGES/kandy.mo -share/locale/af/LC_MESSAGES/kappfinder.mo -share/locale/af/LC_MESSAGES/karchie.mo -share/locale/af/LC_MESSAGES/karchiver.mo -share/locale/af/LC_MESSAGES/karm.mo -share/locale/af/LC_MESSAGES/kasbarextension.mo -share/locale/af/LC_MESSAGES/kasteroids.mo -share/locale/af/LC_MESSAGES/katalog.mo -share/locale/af/LC_MESSAGES/kate.mo -share/locale/af/LC_MESSAGES/katomic.mo -share/locale/af/LC_MESSAGES/kautorun.mo -share/locale/af/LC_MESSAGES/kbabel.mo -share/locale/af/LC_MESSAGES/kbackgammon.mo -share/locale/af/LC_MESSAGES/kbattleship.mo -share/locale/af/LC_MESSAGES/kbiff.mo -share/locale/af/LC_MESSAGES/kblackbox.mo -share/locale/af/LC_MESSAGES/kcalc.mo -share/locale/af/LC_MESSAGES/kcharselect.mo -share/locale/af/LC_MESSAGES/kcharselectapplet.mo -share/locale/af/LC_MESSAGES/kcmaccess.mo -share/locale/af/LC_MESSAGES/kcmail.mo -share/locale/af/LC_MESSAGES/kcmarts.mo -share/locale/af/LC_MESSAGES/kcmaudiocd.mo -share/locale/af/LC_MESSAGES/kcmbackground.mo -share/locale/af/LC_MESSAGES/kcmbell.mo -share/locale/af/LC_MESSAGES/kcmbind.mo -share/locale/af/LC_MESSAGES/kcmcolors.mo -share/locale/af/LC_MESSAGES/kcmcrypto.mo -share/locale/af/LC_MESSAGES/kcmcss.mo -share/locale/af/LC_MESSAGES/kcmdhcpd.mo -share/locale/af/LC_MESSAGES/kcmdisplay.mo -share/locale/af/LC_MESSAGES/kcmemail.mo -share/locale/af/LC_MESSAGES/kcmenergy.mo -share/locale/af/LC_MESSAGES/kcmfonts.mo -share/locale/af/LC_MESSAGES/kcmgofai.mo -share/locale/af/LC_MESSAGES/kcmhelpcenter.mo -share/locale/af/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/af/LC_MESSAGES/kcmicons.mo -share/locale/af/LC_MESSAGES/kcminfo.mo -share/locale/af/LC_MESSAGES/kcminput.mo -share/locale/af/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/af/LC_MESSAGES/kcmiwatcher.mo -share/locale/af/LC_MESSAGES/kcmkamera.mo -share/locale/af/LC_MESSAGES/kcmkclock.mo -share/locale/af/LC_MESSAGES/kcmkdb.mo -share/locale/af/LC_MESSAGES/kcmkdesu.mo -share/locale/af/LC_MESSAGES/kcmkeys.mo -share/locale/af/LC_MESSAGES/kcmkicker.mo -share/locale/af/LC_MESSAGES/kcmkio.mo -share/locale/af/LC_MESSAGES/kcmkmix.mo -share/locale/af/LC_MESSAGES/kcmkonq.mo -share/locale/af/LC_MESSAGES/kcmkonqhtml.mo -share/locale/af/LC_MESSAGES/kcmkonsole.mo -share/locale/af/LC_MESSAGES/kcmkpanel.mo -share/locale/af/LC_MESSAGES/kcmktalkd.mo -share/locale/af/LC_MESSAGES/kcmkurifilt.mo -share/locale/af/LC_MESSAGES/kcmkwindecoration.mo -share/locale/af/LC_MESSAGES/kcmkwintheme.mo -share/locale/af/LC_MESSAGES/kcmkwm.mo -share/locale/af/LC_MESSAGES/kcmlanbrowser.mo -share/locale/af/LC_MESSAGES/kcmlaptop.mo -share/locale/af/LC_MESSAGES/kcmlaunch.mo -share/locale/af/LC_MESSAGES/kcmlayout.mo -share/locale/af/LC_MESSAGES/kcmlilo.mo -share/locale/af/LC_MESSAGES/kcmlinuz.mo -share/locale/af/LC_MESSAGES/kcmlocale.mo -share/locale/af/LC_MESSAGES/kcmmediacontrol.mo -share/locale/af/LC_MESSAGES/kcmmidi.mo -share/locale/af/LC_MESSAGES/kcmnapster.mo -share/locale/af/LC_MESSAGES/kcmnewsticker.mo -share/locale/af/LC_MESSAGES/kcmnotify.mo -share/locale/af/LC_MESSAGES/kcmodbc.mo -share/locale/af/LC_MESSAGES/kcmsamba.mo -share/locale/af/LC_MESSAGES/kcmsample.mo -share/locale/af/LC_MESSAGES/kcmscreensaver.mo -share/locale/af/LC_MESSAGES/kcmsmserver.mo -share/locale/af/LC_MESSAGES/kcmsocks.mo -share/locale/af/LC_MESSAGES/kcmspellchecking.mo -share/locale/af/LC_MESSAGES/kcmstyle.mo -share/locale/af/LC_MESSAGES/kcmsyssound.mo -share/locale/af/LC_MESSAGES/kcmtaskbar.mo -share/locale/af/LC_MESSAGES/kcmthemes.mo -share/locale/af/LC_MESSAGES/kcmusb.mo -share/locale/af/LC_MESSAGES/kcmuserenv.mo -share/locale/af/LC_MESSAGES/kcoloredit.mo -share/locale/af/LC_MESSAGES/kcontrol.mo -share/locale/af/LC_MESSAGES/kcron.mo -share/locale/af/LC_MESSAGES/kdao.mo -share/locale/af/LC_MESSAGES/kdbbrowser.mo -share/locale/af/LC_MESSAGES/kdcop.mo -share/locale/af/LC_MESSAGES/kdebugdialog.mo -share/locale/af/LC_MESSAGES/kdelibs.mo -share/locale/af/LC_MESSAGES/kdepasswd.mo -share/locale/af/LC_MESSAGES/kdeprintfax.mo -share/locale/af/LC_MESSAGES/kdesktop.mo -share/locale/af/LC_MESSAGES/kdessh.mo -share/locale/af/LC_MESSAGES/kdestdifacedemo.mo -share/locale/af/LC_MESSAGES/kdesu.mo -share/locale/af/LC_MESSAGES/kdesud.mo -share/locale/af/LC_MESSAGES/kdevelop.mo -share/locale/af/LC_MESSAGES/kdevtipofday.mo -share/locale/af/LC_MESSAGES/kdewizard.mo -share/locale/af/LC_MESSAGES/kdf.mo -share/locale/af/LC_MESSAGES/kdict.mo -share/locale/af/LC_MESSAGES/kdictapplet.mo -share/locale/af/LC_MESSAGES/kdiff.mo -share/locale/af/LC_MESSAGES/kdm.mo -share/locale/af/LC_MESSAGES/kdmchooser.mo -share/locale/af/LC_MESSAGES/kdmconfig.mo -share/locale/af/LC_MESSAGES/kdmgreet.mo -share/locale/af/LC_MESSAGES/kdvi.mo -share/locale/af/LC_MESSAGES/kedit.mo -share/locale/af/LC_MESSAGES/keystone.mo -share/locale/af/LC_MESSAGES/kfax.mo -share/locale/af/LC_MESSAGES/kfifteenapplet.mo -share/locale/af/LC_MESSAGES/kfind.mo -share/locale/af/LC_MESSAGES/kfindpart.mo -share/locale/af/LC_MESSAGES/kfinger.mo -share/locale/af/LC_MESSAGES/kfloppy.mo -share/locale/af/LC_MESSAGES/kfmclient.mo -share/locale/af/LC_MESSAGES/kfmexec.mo -share/locale/af/LC_MESSAGES/kfontmanager.mo -share/locale/af/LC_MESSAGES/kformeditor.mo -share/locale/af/LC_MESSAGES/kformviewer.mo -share/locale/af/LC_MESSAGES/kfract.mo -share/locale/af/LC_MESSAGES/kghostview.mo -share/locale/af/LC_MESSAGES/kglchess.mo -share/locale/af/LC_MESSAGES/kgnuplot.mo -share/locale/af/LC_MESSAGES/kgrapher.mo -share/locale/af/LC_MESSAGES/khelpcenter.mo -share/locale/af/LC_MESSAGES/khexedit.mo -share/locale/af/LC_MESSAGES/khotkeys.mo -share/locale/af/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/af/LC_MESSAGES/kicker.mo -share/locale/af/LC_MESSAGES/kiconedit.mo -share/locale/af/LC_MESSAGES/kicq.mo -share/locale/af/LC_MESSAGES/kikbd.mo -share/locale/af/LC_MESSAGES/kim.mo -share/locale/af/LC_MESSAGES/kinfobrowser.mo -share/locale/af/LC_MESSAGES/kio_audiocd.mo -share/locale/af/LC_MESSAGES/kio_finger.mo -share/locale/af/LC_MESSAGES/kio_floppy.mo -share/locale/af/LC_MESSAGES/kio_help.mo -share/locale/af/LC_MESSAGES/kio_imap4.mo -share/locale/af/LC_MESSAGES/kio_lan.mo -share/locale/af/LC_MESSAGES/kio_man.mo -share/locale/af/LC_MESSAGES/kio_nfs.mo -share/locale/af/LC_MESSAGES/kio_nntp.mo -share/locale/af/LC_MESSAGES/kio_pop3.mo -share/locale/af/LC_MESSAGES/kio_smb.mo -share/locale/af/LC_MESSAGES/kio_smbro.mo -share/locale/af/LC_MESSAGES/kit.mo -share/locale/af/LC_MESSAGES/kjezz.mo -share/locale/af/LC_MESSAGES/kjobviewer.mo -share/locale/af/LC_MESSAGES/kjots.mo -share/locale/af/LC_MESSAGES/kjumpingcube.mo -share/locale/af/LC_MESSAGES/klaptopdaemon.mo -share/locale/af/LC_MESSAGES/klegacyimport.mo -share/locale/af/LC_MESSAGES/kless.mo -share/locale/af/LC_MESSAGES/klines.mo -share/locale/af/LC_MESSAGES/klipper.mo -share/locale/af/LC_MESSAGES/kljettool.mo -share/locale/af/LC_MESSAGES/klock.mo -share/locale/af/LC_MESSAGES/klpq.mo -share/locale/af/LC_MESSAGES/klprfax.mo -share/locale/af/LC_MESSAGES/kmahjongg.mo -share/locale/af/LC_MESSAGES/kmail.mo -share/locale/af/LC_MESSAGES/kmailcvt.mo -share/locale/af/LC_MESSAGES/kmake.mo -share/locale/af/LC_MESSAGES/kmanbrowser.mo -share/locale/af/LC_MESSAGES/kmenuedit.mo -share/locale/af/LC_MESSAGES/kmessage.mo -share/locale/af/LC_MESSAGES/kmid.mo -share/locale/af/LC_MESSAGES/kmidi.mo -share/locale/af/LC_MESSAGES/kmines.mo -share/locale/af/LC_MESSAGES/kminipagerapplet.mo -share/locale/af/LC_MESSAGES/kmix.mo -share/locale/af/LC_MESSAGES/kmms.mo -share/locale/af/LC_MESSAGES/kmonop.mo -share/locale/af/LC_MESSAGES/kmoon.mo -share/locale/af/LC_MESSAGES/knewsticker.mo -share/locale/af/LC_MESSAGES/knode.mo -share/locale/af/LC_MESSAGES/knotes.mo -share/locale/af/LC_MESSAGES/knotify.mo -share/locale/af/LC_MESSAGES/knu.mo -share/locale/af/LC_MESSAGES/kodo.mo -share/locale/af/LC_MESSAGES/kolourpicker.mo -share/locale/af/LC_MESSAGES/konq_searcher.mo -share/locale/af/LC_MESSAGES/konqueror.mo -share/locale/af/LC_MESSAGES/konquest.mo -share/locale/af/LC_MESSAGES/konsole.mo -share/locale/af/LC_MESSAGES/konv.mo -share/locale/af/LC_MESSAGES/kooka.mo -share/locale/af/LC_MESSAGES/kopennap.mo -share/locale/af/LC_MESSAGES/korganizer.mo -share/locale/af/LC_MESSAGES/korn.mo -share/locale/af/LC_MESSAGES/kp.mo -share/locale/af/LC_MESSAGES/kpackage.mo -share/locale/af/LC_MESSAGES/kpager.mo -share/locale/af/LC_MESSAGES/kpaint.mo -share/locale/af/LC_MESSAGES/kpanel.mo -share/locale/af/LC_MESSAGES/kpartapp.mo -share/locale/af/LC_MESSAGES/kpartsaver.mo -share/locale/af/LC_MESSAGES/kpat.mo -share/locale/af/LC_MESSAGES/kpersonalizer.mo -share/locale/af/LC_MESSAGES/kphone.mo -share/locale/af/LC_MESSAGES/kpilot.mo -share/locale/af/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/af/LC_MESSAGES/kpm.mo -share/locale/af/LC_MESSAGES/kpoker.mo -share/locale/af/LC_MESSAGES/kpovmodeler.mo -share/locale/af/LC_MESSAGES/kppp.mo -share/locale/af/LC_MESSAGES/kppplogview.mo -share/locale/af/LC_MESSAGES/kreadconfig.mo -share/locale/af/LC_MESSAGES/kreversi.mo -share/locale/af/LC_MESSAGES/krn.mo -share/locale/af/LC_MESSAGES/kruler.mo -share/locale/af/LC_MESSAGES/krunapplet.mo -share/locale/af/LC_MESSAGES/ksame.mo -share/locale/af/LC_MESSAGES/kscd.mo -share/locale/af/LC_MESSAGES/kscoreapplet.mo -share/locale/af/LC_MESSAGES/kshisen.mo -share/locale/af/LC_MESSAGES/ksirc.mo -share/locale/af/LC_MESSAGES/ksirtet.mo -share/locale/af/LC_MESSAGES/ksmiletris.mo -share/locale/af/LC_MESSAGES/ksmserver.mo -share/locale/af/LC_MESSAGES/ksnake.mo -share/locale/af/LC_MESSAGES/ksnapshot.mo -share/locale/af/LC_MESSAGES/ksokoban.mo -share/locale/af/LC_MESSAGES/kspaceduel.mo -share/locale/af/LC_MESSAGES/ksplash.mo -share/locale/af/LC_MESSAGES/kstart.mo -share/locale/af/LC_MESSAGES/kstartperf.mo -share/locale/af/LC_MESSAGES/kstockticker.mo -share/locale/af/LC_MESSAGES/ksysctrl.mo -share/locale/af/LC_MESSAGES/ksysguard.mo -share/locale/af/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/af/LC_MESSAGES/ksystrayproxy.mo -share/locale/af/LC_MESSAGES/ksysv.mo -share/locale/af/LC_MESSAGES/ktables.mo -share/locale/af/LC_MESSAGES/ktalk.mo -share/locale/af/LC_MESSAGES/ktalkd.mo -share/locale/af/LC_MESSAGES/ktaskbarapplet.mo -share/locale/af/LC_MESSAGES/kteatime.mo -share/locale/af/LC_MESSAGES/kthememgr.mo -share/locale/af/LC_MESSAGES/ktimemon.mo -share/locale/af/LC_MESSAGES/ktimer.mo -share/locale/af/LC_MESSAGES/ktip.mo -share/locale/af/LC_MESSAGES/ktouch.mo -share/locale/af/LC_MESSAGES/ktron.mo -share/locale/af/LC_MESSAGES/ktuberling.mo -share/locale/af/LC_MESSAGES/ktux.mo -share/locale/af/LC_MESSAGES/kuser.mo -share/locale/af/LC_MESSAGES/kview.mo -share/locale/af/LC_MESSAGES/kviewshell.mo -share/locale/af/LC_MESSAGES/kwebstat.mo -share/locale/af/LC_MESSAGES/kwelcome.mo -share/locale/af/LC_MESSAGES/kwin.mo -share/locale/af/LC_MESSAGES/kwin4.mo -share/locale/af/LC_MESSAGES/kworldclock.mo -share/locale/af/LC_MESSAGES/kwuftpd.mo -share/locale/af/LC_MESSAGES/kxkb.mo -share/locale/af/LC_MESSAGES/kxmlrpcd.mo -share/locale/af/LC_MESSAGES/kxsconfig.mo -share/locale/af/LC_MESSAGES/libkdegames.mo -share/locale/af/LC_MESSAGES/libkdenetwork.mo -share/locale/af/LC_MESSAGES/libkhc.mo -share/locale/af/LC_MESSAGES/libkonq.mo -share/locale/af/LC_MESSAGES/libkscreensaver.mo -share/locale/af/LC_MESSAGES/libtaskbar.mo -share/locale/af/LC_MESSAGES/libtaskmanager.mo -share/locale/af/LC_MESSAGES/lskat.mo -share/locale/af/LC_MESSAGES/multiplayers.mo -share/locale/af/LC_MESSAGES/naughtyapplet.mo -share/locale/af/LC_MESSAGES/noatun.mo -share/locale/af/LC_MESSAGES/nsplugin.mo -share/locale/af/LC_MESSAGES/odbcconfig.mo -share/locale/af/LC_MESSAGES/passwords.mo -share/locale/af/LC_MESSAGES/ppdtranslations.mo -share/locale/af/LC_MESSAGES/pws.mo -share/locale/af/LC_MESSAGES/quicklauncher.mo -share/locale/af/LC_MESSAGES/secpolicy.mo -share/locale/af/LC_MESSAGES/spy.mo -share/locale/af/LC_MESSAGES/taskbarextension.mo -share/locale/af/LC_MESSAGES/twister.mo -share/locale/af/charset -share/locale/af/entry.desktop -share/locale/af/flag.png -share/locale/az/LC_MESSAGES/aktion.mo -share/locale/az/LC_MESSAGES/amor.mo -share/locale/az/LC_MESSAGES/appletproxy.mo -share/locale/az/LC_MESSAGES/ark.mo -share/locale/az/LC_MESSAGES/artsbuilder.mo -share/locale/az/LC_MESSAGES/artscontrol.mo -share/locale/az/LC_MESSAGES/babelfish.mo -share/locale/az/LC_MESSAGES/caitoo.mo -share/locale/az/LC_MESSAGES/childpanelextension.mo -share/locale/az/LC_MESSAGES/clockapplet.mo -share/locale/az/LC_MESSAGES/colfind.mo -share/locale/az/LC_MESSAGES/columbo.mo -share/locale/az/LC_MESSAGES/cookbook.mo -share/locale/az/LC_MESSAGES/cupsdconf.mo -share/locale/az/LC_MESSAGES/desktop.mo -share/locale/az/LC_MESSAGES/devcenter.mo -share/locale/az/LC_MESSAGES/dirfilterplugin.mo -share/locale/az/LC_MESSAGES/domtreeviewer.mo -share/locale/az/LC_MESSAGES/drkonqi.mo -share/locale/az/LC_MESSAGES/empath.mo -share/locale/az/LC_MESSAGES/extensionproxy.mo -share/locale/az/LC_MESSAGES/filetypes.mo -share/locale/az/LC_MESSAGES/gideon.mo -share/locale/az/LC_MESSAGES/gofai.mo -share/locale/az/LC_MESSAGES/htmlsearch.mo -share/locale/az/LC_MESSAGES/imgalleryplugin.mo -share/locale/az/LC_MESSAGES/kab.mo -share/locale/az/LC_MESSAGES/kabalone.mo -share/locale/az/LC_MESSAGES/kaboodle.mo -share/locale/az/LC_MESSAGES/kaccess.mo -share/locale/az/LC_MESSAGES/kaddressbook.mo -share/locale/az/LC_MESSAGES/kafka.mo -share/locale/az/LC_MESSAGES/kandy.mo -share/locale/az/LC_MESSAGES/kappfinder.mo -share/locale/az/LC_MESSAGES/karchie.mo -share/locale/az/LC_MESSAGES/karchiver.mo -share/locale/az/LC_MESSAGES/karm.mo -share/locale/az/LC_MESSAGES/kasbarextension.mo -share/locale/az/LC_MESSAGES/kasteroids.mo -share/locale/az/LC_MESSAGES/katalog.mo -share/locale/az/LC_MESSAGES/kate.mo -share/locale/az/LC_MESSAGES/kautorun.mo -share/locale/az/LC_MESSAGES/kbabel.mo -share/locale/az/LC_MESSAGES/kbiff.mo -share/locale/az/LC_MESSAGES/kblackbox.mo -share/locale/az/LC_MESSAGES/kbugbuster.mo -share/locale/az/LC_MESSAGES/kcalc.mo -share/locale/az/LC_MESSAGES/kcharselect.mo -share/locale/az/LC_MESSAGES/kcharselectapplet.mo -share/locale/az/LC_MESSAGES/kcm_scsimanager.mo -share/locale/az/LC_MESSAGES/kcmaccess.mo -share/locale/az/LC_MESSAGES/kcmail.mo -share/locale/az/LC_MESSAGES/kcmarts.mo -share/locale/az/LC_MESSAGES/kcmaudiocd.mo -share/locale/az/LC_MESSAGES/kcmbackground.mo -share/locale/az/LC_MESSAGES/kcmbell.mo -share/locale/az/LC_MESSAGES/kcmbind.mo -share/locale/az/LC_MESSAGES/kcmcolors.mo -share/locale/az/LC_MESSAGES/kcmcrypto.mo -share/locale/az/LC_MESSAGES/kcmcss.mo -share/locale/az/LC_MESSAGES/kcmdhcpd.mo -share/locale/az/LC_MESSAGES/kcmemail.mo -share/locale/az/LC_MESSAGES/kcmenergy.mo -share/locale/az/LC_MESSAGES/kcmfonts.mo -share/locale/az/LC_MESSAGES/kcmgofai.mo -share/locale/az/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/az/LC_MESSAGES/kcmicons.mo -share/locale/az/LC_MESSAGES/kcminfo.mo -share/locale/az/LC_MESSAGES/kcminput.mo -share/locale/az/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/az/LC_MESSAGES/kcmiwatcher.mo -share/locale/az/LC_MESSAGES/kcmkamera.mo -share/locale/az/LC_MESSAGES/kcmkclock.mo -share/locale/az/LC_MESSAGES/kcmkdb.mo -share/locale/az/LC_MESSAGES/kcmkeys.mo -share/locale/az/LC_MESSAGES/kcmkicker.mo -share/locale/az/LC_MESSAGES/kcmkio.mo -share/locale/az/LC_MESSAGES/kcmkmix.mo -share/locale/az/LC_MESSAGES/kcmkonq.mo -share/locale/az/LC_MESSAGES/kcmkonqhtml.mo -share/locale/az/LC_MESSAGES/kcmkonsole.mo -share/locale/az/LC_MESSAGES/kcmktalkd.mo -share/locale/az/LC_MESSAGES/kcmkurifilt.mo -share/locale/az/LC_MESSAGES/kcmkwindecoration.mo -share/locale/az/LC_MESSAGES/kcmkwintheme.mo -share/locale/az/LC_MESSAGES/kcmkwm.mo -share/locale/az/LC_MESSAGES/kcmlanbrowser.mo -share/locale/az/LC_MESSAGES/kcmlaptop.mo -share/locale/az/LC_MESSAGES/kcmlaunch.mo -share/locale/az/LC_MESSAGES/kcmlayout.mo -share/locale/az/LC_MESSAGES/kcmlilo.mo -share/locale/az/LC_MESSAGES/kcmlinuz.mo -share/locale/az/LC_MESSAGES/kcmlocale.mo -share/locale/az/LC_MESSAGES/kcmmediacontrol.mo -share/locale/az/LC_MESSAGES/kcmmidi.mo -share/locale/az/LC_MESSAGES/kcmnapster.mo -share/locale/az/LC_MESSAGES/kcmnotify.mo -share/locale/az/LC_MESSAGES/kcmodbc.mo -share/locale/az/LC_MESSAGES/kcmsamba.mo -share/locale/az/LC_MESSAGES/kcmscreensaver.mo -share/locale/az/LC_MESSAGES/kcmsmserver.mo -share/locale/az/LC_MESSAGES/kcmsocks.mo -share/locale/az/LC_MESSAGES/kcmspellchecking.mo -share/locale/az/LC_MESSAGES/kcmstyle.mo -share/locale/az/LC_MESSAGES/kcmtaskbar.mo -share/locale/az/LC_MESSAGES/kcmthemes.mo -share/locale/az/LC_MESSAGES/kcmusb.mo -share/locale/az/LC_MESSAGES/kcmuserenv.mo -share/locale/az/LC_MESSAGES/kcoloredit.mo -share/locale/az/LC_MESSAGES/kcontrol.mo -share/locale/az/LC_MESSAGES/kcron.mo -share/locale/az/LC_MESSAGES/kdao.mo -share/locale/az/LC_MESSAGES/kdbbrowser.mo -share/locale/az/LC_MESSAGES/kdcop.mo -share/locale/az/LC_MESSAGES/kdebugdialog.mo -share/locale/az/LC_MESSAGES/kdelibs.mo -share/locale/az/LC_MESSAGES/kdepasswd.mo -share/locale/az/LC_MESSAGES/kdeprintfax.mo -share/locale/az/LC_MESSAGES/kdesktop.mo -share/locale/az/LC_MESSAGES/kdessh.mo -share/locale/az/LC_MESSAGES/kdestdifacedemo.mo -share/locale/az/LC_MESSAGES/kdesu.mo -share/locale/az/LC_MESSAGES/kdesud.mo -share/locale/az/LC_MESSAGES/kdevelop.mo -share/locale/az/LC_MESSAGES/kdevtipofday.mo -share/locale/az/LC_MESSAGES/kdf.mo -share/locale/az/LC_MESSAGES/kdictapplet.mo -share/locale/az/LC_MESSAGES/kdiff.mo -share/locale/az/LC_MESSAGES/kdmchooser.mo -share/locale/az/LC_MESSAGES/kdmconfig.mo -share/locale/az/LC_MESSAGES/kdmgreet.mo -share/locale/az/LC_MESSAGES/kdvi.mo -share/locale/az/LC_MESSAGES/kedit.mo -share/locale/az/LC_MESSAGES/keystone.mo -share/locale/az/LC_MESSAGES/kfax.mo -share/locale/az/LC_MESSAGES/kfifteenapplet.mo -share/locale/az/LC_MESSAGES/kfind.mo -share/locale/az/LC_MESSAGES/kfindpart.mo -share/locale/az/LC_MESSAGES/kfinger.mo -share/locale/az/LC_MESSAGES/kfloppy.mo -share/locale/az/LC_MESSAGES/kfmclient.mo -share/locale/az/LC_MESSAGES/kfmexec.mo -share/locale/az/LC_MESSAGES/kformeditor.mo -share/locale/az/LC_MESSAGES/kformviewer.mo -share/locale/az/LC_MESSAGES/kfourtune.mo -share/locale/az/LC_MESSAGES/kfract.mo -share/locale/az/LC_MESSAGES/kghostview.mo -share/locale/az/LC_MESSAGES/kglchess.mo -share/locale/az/LC_MESSAGES/kgnuplot.mo -share/locale/az/LC_MESSAGES/kgrapher.mo -share/locale/az/LC_MESSAGES/khelpcenter.mo -share/locale/az/LC_MESSAGES/khexedit.mo -share/locale/az/LC_MESSAGES/khotkeys.mo -share/locale/az/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/az/LC_MESSAGES/kicker.mo -share/locale/az/LC_MESSAGES/kiconedit.mo -share/locale/az/LC_MESSAGES/kicq.mo -share/locale/az/LC_MESSAGES/kikbd.mo -share/locale/az/LC_MESSAGES/kim.mo -share/locale/az/LC_MESSAGES/kio_audiocd.mo -share/locale/az/LC_MESSAGES/kio_finger.mo -share/locale/az/LC_MESSAGES/kio_floppy.mo -share/locale/az/LC_MESSAGES/kio_help.mo -share/locale/az/LC_MESSAGES/kio_imap4.mo -share/locale/az/LC_MESSAGES/kio_lan.mo -share/locale/az/LC_MESSAGES/kio_man.mo -share/locale/az/LC_MESSAGES/kio_nfs.mo -share/locale/az/LC_MESSAGES/kio_nntp.mo -share/locale/az/LC_MESSAGES/kio_pop3.mo -share/locale/az/LC_MESSAGES/kio_smb.mo -share/locale/az/LC_MESSAGES/kio_smbro.mo -share/locale/az/LC_MESSAGES/kit.mo -share/locale/az/LC_MESSAGES/kjezz.mo -share/locale/az/LC_MESSAGES/kjobviewer.mo -share/locale/az/LC_MESSAGES/kjots.mo -share/locale/az/LC_MESSAGES/klaptopdaemon.mo -share/locale/az/LC_MESSAGES/klegacyimport.mo -share/locale/az/LC_MESSAGES/kless.mo -share/locale/az/LC_MESSAGES/klipper.mo -share/locale/az/LC_MESSAGES/kljettool.mo -share/locale/az/LC_MESSAGES/klock.mo -share/locale/az/LC_MESSAGES/klpq.mo -share/locale/az/LC_MESSAGES/klprfax.mo -share/locale/az/LC_MESSAGES/kmail.mo -share/locale/az/LC_MESSAGES/kmake.mo -share/locale/az/LC_MESSAGES/kmenuedit.mo -share/locale/az/LC_MESSAGES/kmessage.mo -share/locale/az/LC_MESSAGES/kmid.mo -share/locale/az/LC_MESSAGES/kmidi.mo -share/locale/az/LC_MESSAGES/kminipagerapplet.mo -share/locale/az/LC_MESSAGES/kmix.mo -share/locale/az/LC_MESSAGES/kmms.mo -share/locale/az/LC_MESSAGES/kmonop.mo -share/locale/az/LC_MESSAGES/kmoon.mo -share/locale/az/LC_MESSAGES/knetmgr.mo -share/locale/az/LC_MESSAGES/knewsticker.mo -share/locale/az/LC_MESSAGES/knode.mo -share/locale/az/LC_MESSAGES/knotes.mo -share/locale/az/LC_MESSAGES/knotify.mo -share/locale/az/LC_MESSAGES/knu.mo -share/locale/az/LC_MESSAGES/kodo.mo -share/locale/az/LC_MESSAGES/kolourpicker.mo -share/locale/az/LC_MESSAGES/konqueror.mo -share/locale/az/LC_MESSAGES/konsole.mo -share/locale/az/LC_MESSAGES/konv.mo -share/locale/az/LC_MESSAGES/kooka.mo -share/locale/az/LC_MESSAGES/kopennap.mo -share/locale/az/LC_MESSAGES/korganizer.mo -share/locale/az/LC_MESSAGES/korn.mo -share/locale/az/LC_MESSAGES/kp.mo -share/locale/az/LC_MESSAGES/kpackage.mo -share/locale/az/LC_MESSAGES/kpager.mo -share/locale/az/LC_MESSAGES/kpaint.mo -share/locale/az/LC_MESSAGES/kpartapp.mo -share/locale/az/LC_MESSAGES/kpartsaver.mo -share/locale/az/LC_MESSAGES/kpat.mo -share/locale/az/LC_MESSAGES/kpersonalizer.mo -share/locale/az/LC_MESSAGES/kphone.mo -share/locale/az/LC_MESSAGES/kpilot.mo -share/locale/az/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/az/LC_MESSAGES/kpm.mo -share/locale/az/LC_MESSAGES/kpovmodeler.mo -share/locale/az/LC_MESSAGES/kppp.mo -share/locale/az/LC_MESSAGES/kppplogview.mo -share/locale/az/LC_MESSAGES/kprinter.mo -share/locale/az/LC_MESSAGES/kreadconfig.mo -share/locale/az/LC_MESSAGES/krn.mo -share/locale/az/LC_MESSAGES/kruler.mo -share/locale/az/LC_MESSAGES/krunapplet.mo -share/locale/az/LC_MESSAGES/ksame.mo -share/locale/az/LC_MESSAGES/kscd.mo -share/locale/az/LC_MESSAGES/kscoreapplet.mo -share/locale/az/LC_MESSAGES/kshisen.mo -share/locale/az/LC_MESSAGES/ksirc.mo -share/locale/az/LC_MESSAGES/ksmiletris.mo -share/locale/az/LC_MESSAGES/ksmserver.mo -share/locale/az/LC_MESSAGES/ksnapshot.mo -share/locale/az/LC_MESSAGES/ksplash.mo -share/locale/az/LC_MESSAGES/kstart.mo -share/locale/az/LC_MESSAGES/kstartperf.mo -share/locale/az/LC_MESSAGES/kstockticker.mo -share/locale/az/LC_MESSAGES/ksysctrl.mo -share/locale/az/LC_MESSAGES/ksysguard.mo -share/locale/az/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/az/LC_MESSAGES/ksystrayproxy.mo -share/locale/az/LC_MESSAGES/ksysv.mo -share/locale/az/LC_MESSAGES/ktables.mo -share/locale/az/LC_MESSAGES/ktalk.mo -share/locale/az/LC_MESSAGES/ktalkd.mo -share/locale/az/LC_MESSAGES/ktaskbarapplet.mo -share/locale/az/LC_MESSAGES/kteatime.mo -share/locale/az/LC_MESSAGES/ktimemon.mo -share/locale/az/LC_MESSAGES/ktimer.mo -share/locale/az/LC_MESSAGES/ktip.mo -share/locale/az/LC_MESSAGES/ktouch.mo -share/locale/az/LC_MESSAGES/ktux.mo -share/locale/az/LC_MESSAGES/kuser.mo -share/locale/az/LC_MESSAGES/kvidmode.mo -share/locale/az/LC_MESSAGES/kview.mo -share/locale/az/LC_MESSAGES/kviewshell.mo -share/locale/az/LC_MESSAGES/kwebstat.mo -share/locale/az/LC_MESSAGES/kwin.mo -share/locale/az/LC_MESSAGES/kworldclock.mo -share/locale/az/LC_MESSAGES/kwuftpd.mo -share/locale/az/LC_MESSAGES/kxkb.mo -share/locale/az/LC_MESSAGES/kxmlrpcd.mo -share/locale/az/LC_MESSAGES/kxsconfig.mo -share/locale/az/LC_MESSAGES/libkdegames.mo -share/locale/az/LC_MESSAGES/libkdenetwork.mo -share/locale/az/LC_MESSAGES/libkonq.mo -share/locale/az/LC_MESSAGES/libkscan.mo -share/locale/az/LC_MESSAGES/libkscreensaver.mo -share/locale/az/LC_MESSAGES/libkwindefault_config.mo -share/locale/az/LC_MESSAGES/libkwinicewm_config.mo -share/locale/az/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/az/LC_MESSAGES/libkwinquartz_config.mo -share/locale/az/LC_MESSAGES/libtaskbar.mo -share/locale/az/LC_MESSAGES/libtaskmanager.mo -share/locale/az/LC_MESSAGES/mediacontrol.mo -share/locale/az/LC_MESSAGES/multiplayers.mo -share/locale/az/LC_MESSAGES/naughtyapplet.mo -share/locale/az/LC_MESSAGES/noatun.mo -share/locale/az/LC_MESSAGES/nsplugin.mo -share/locale/az/LC_MESSAGES/passwords.mo -share/locale/az/LC_MESSAGES/ppdtranslations.mo -share/locale/az/LC_MESSAGES/pws.mo -share/locale/az/LC_MESSAGES/quicklauncher.mo -share/locale/az/LC_MESSAGES/secpolicy.mo -share/locale/az/LC_MESSAGES/spy.mo -share/locale/az/LC_MESSAGES/taskbarextension.mo -share/locale/az/LC_MESSAGES/twister.mo -share/locale/az/LC_MESSAGES/uachangerplugin.mo -share/locale/az/LC_MESSAGES/validatorsplugin.mo -share/locale/az/LC_MESSAGES/webarchiver.mo -share/locale/az/charset -share/locale/az/entry.desktop -share/locale/az/flag.png -share/locale/bg/LC_MESSAGES/abbrowser.mo -share/locale/bg/LC_MESSAGES/amor.mo -share/locale/bg/LC_MESSAGES/appletproxy.mo -share/locale/bg/LC_MESSAGES/ark.mo -share/locale/bg/LC_MESSAGES/childpanelextension.mo -share/locale/bg/LC_MESSAGES/clockapplet.mo -share/locale/bg/LC_MESSAGES/cupsdconf.mo -share/locale/bg/LC_MESSAGES/desktop.mo -share/locale/bg/LC_MESSAGES/drkonqi.mo -share/locale/bg/LC_MESSAGES/extensionproxy.mo -share/locale/bg/LC_MESSAGES/filetypes.mo -share/locale/bg/LC_MESSAGES/htmlsearch.mo -share/locale/bg/LC_MESSAGES/kab.mo -share/locale/bg/LC_MESSAGES/kabalone.mo -share/locale/bg/LC_MESSAGES/kaccess.mo -share/locale/bg/LC_MESSAGES/kaddressbook.mo -share/locale/bg/LC_MESSAGES/kandy.mo -share/locale/bg/LC_MESSAGES/kappfinder.mo -share/locale/bg/LC_MESSAGES/karm.mo -share/locale/bg/LC_MESSAGES/kasbarextension.mo -share/locale/bg/LC_MESSAGES/kasteroids.mo -share/locale/bg/LC_MESSAGES/kate.mo -share/locale/bg/LC_MESSAGES/katomic.mo -share/locale/bg/LC_MESSAGES/kblackbox.mo -share/locale/bg/LC_MESSAGES/kcalc.mo -share/locale/bg/LC_MESSAGES/kcharselect.mo -share/locale/bg/LC_MESSAGES/kcharselectapplet.mo -share/locale/bg/LC_MESSAGES/kcmaccess.mo -share/locale/bg/LC_MESSAGES/kcmarts.mo -share/locale/bg/LC_MESSAGES/kcmaudiocd.mo -share/locale/bg/LC_MESSAGES/kcmbackground.mo -share/locale/bg/LC_MESSAGES/kcmbell.mo -share/locale/bg/LC_MESSAGES/kcmcolors.mo -share/locale/bg/LC_MESSAGES/kcmcrypto.mo -share/locale/bg/LC_MESSAGES/kcmcss.mo -share/locale/bg/LC_MESSAGES/kcmemail.mo -share/locale/bg/LC_MESSAGES/kcmenergy.mo -share/locale/bg/LC_MESSAGES/kcmfonts.mo -share/locale/bg/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/bg/LC_MESSAGES/kcmicons.mo -share/locale/bg/LC_MESSAGES/kcmiconthemes.mo -share/locale/bg/LC_MESSAGES/kcminfo.mo -share/locale/bg/LC_MESSAGES/kcminput.mo -share/locale/bg/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/bg/LC_MESSAGES/kcmkamera.mo -share/locale/bg/LC_MESSAGES/kcmkclock.mo -share/locale/bg/LC_MESSAGES/kcmkdb.mo -share/locale/bg/LC_MESSAGES/kcmkeys.mo -share/locale/bg/LC_MESSAGES/kcmkicker.mo -share/locale/bg/LC_MESSAGES/kcmkio.mo -share/locale/bg/LC_MESSAGES/kcmkonq.mo -share/locale/bg/LC_MESSAGES/kcmkonqhtml.mo -share/locale/bg/LC_MESSAGES/kcmkonsole.mo -share/locale/bg/LC_MESSAGES/kcmktalkd.mo -share/locale/bg/LC_MESSAGES/kcmkurifilt.mo -share/locale/bg/LC_MESSAGES/kcmkwindecoration.mo -share/locale/bg/LC_MESSAGES/kcmkwintheme.mo -share/locale/bg/LC_MESSAGES/kcmkwm.mo -share/locale/bg/LC_MESSAGES/kcmlanbrowser.mo -share/locale/bg/LC_MESSAGES/kcmlaptop.mo -share/locale/bg/LC_MESSAGES/kcmlaunch.mo -share/locale/bg/LC_MESSAGES/kcmlayout.mo -share/locale/bg/LC_MESSAGES/kcmlilo.mo -share/locale/bg/LC_MESSAGES/kcmlinuz.mo -share/locale/bg/LC_MESSAGES/kcmlocale.mo -share/locale/bg/LC_MESSAGES/kcmmidi.mo -share/locale/bg/LC_MESSAGES/kcmnewsticker.mo -share/locale/bg/LC_MESSAGES/kcmnotify.mo -share/locale/bg/LC_MESSAGES/kcmodbc.mo -share/locale/bg/LC_MESSAGES/kcmsamba.mo -share/locale/bg/LC_MESSAGES/kcmscreensaver.mo -share/locale/bg/LC_MESSAGES/kcmsmserver.mo -share/locale/bg/LC_MESSAGES/kcmsocks.mo -share/locale/bg/LC_MESSAGES/kcmspellchecking.mo -share/locale/bg/LC_MESSAGES/kcmstyle.mo -share/locale/bg/LC_MESSAGES/kcmtaskbar.mo -share/locale/bg/LC_MESSAGES/kcmthemes.mo -share/locale/bg/LC_MESSAGES/kcmusb.mo -share/locale/bg/LC_MESSAGES/kcmvirtualdesktops.mo -share/locale/bg/LC_MESSAGES/kcoloredit.mo -share/locale/bg/LC_MESSAGES/kcontrol.mo -share/locale/bg/LC_MESSAGES/kcron.mo -share/locale/bg/LC_MESSAGES/kdat.mo -share/locale/bg/LC_MESSAGES/kdcop.mo -share/locale/bg/LC_MESSAGES/kdebugdialog.mo -share/locale/bg/LC_MESSAGES/kdelibs.mo -share/locale/bg/LC_MESSAGES/kdepasswd.mo -share/locale/bg/LC_MESSAGES/kdeprintfax.mo -share/locale/bg/LC_MESSAGES/kdesktop.mo -share/locale/bg/LC_MESSAGES/kdessh.mo -share/locale/bg/LC_MESSAGES/kdesu.mo -share/locale/bg/LC_MESSAGES/kdesud.mo -share/locale/bg/LC_MESSAGES/kdewizard.mo -share/locale/bg/LC_MESSAGES/kdf.mo -share/locale/bg/LC_MESSAGES/kdict.mo -share/locale/bg/LC_MESSAGES/kdmchooser.mo -share/locale/bg/LC_MESSAGES/kdmconfig.mo -share/locale/bg/LC_MESSAGES/kdmgreet.mo -share/locale/bg/LC_MESSAGES/kdvi.mo -share/locale/bg/LC_MESSAGES/kedit.mo -share/locale/bg/LC_MESSAGES/keystone.mo -share/locale/bg/LC_MESSAGES/kfax.mo -share/locale/bg/LC_MESSAGES/kfifteenapplet.mo -share/locale/bg/LC_MESSAGES/kfind.mo -share/locale/bg/LC_MESSAGES/kfindpart.mo -share/locale/bg/LC_MESSAGES/kfloppy.mo -share/locale/bg/LC_MESSAGES/kfmclient.mo -share/locale/bg/LC_MESSAGES/kfmexec.mo -share/locale/bg/LC_MESSAGES/kfract.mo -share/locale/bg/LC_MESSAGES/kghostview.mo -share/locale/bg/LC_MESSAGES/khelpcenter.mo -share/locale/bg/LC_MESSAGES/khexedit.mo -share/locale/bg/LC_MESSAGES/khotkeys.mo -share/locale/bg/LC_MESSAGES/kicker.mo -share/locale/bg/LC_MESSAGES/kiconedit.mo -share/locale/bg/LC_MESSAGES/kio_audiocd.mo -share/locale/bg/LC_MESSAGES/kio_finger.mo -share/locale/bg/LC_MESSAGES/kio_floppy.mo -share/locale/bg/LC_MESSAGES/kio_help.mo -share/locale/bg/LC_MESSAGES/kio_imap4.mo -share/locale/bg/LC_MESSAGES/kio_lan.mo -share/locale/bg/LC_MESSAGES/kio_man.mo -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_smb.mo -share/locale/bg/LC_MESSAGES/kio_smbro.mo -share/locale/bg/LC_MESSAGES/kit.mo -share/locale/bg/LC_MESSAGES/kjezz.mo -share/locale/bg/LC_MESSAGES/kjobviewer.mo -share/locale/bg/LC_MESSAGES/kjots.mo -share/locale/bg/LC_MESSAGES/kjumpingcube.mo -share/locale/bg/LC_MESSAGES/klegacyimport.mo -share/locale/bg/LC_MESSAGES/klines.mo -share/locale/bg/LC_MESSAGES/klipper.mo -share/locale/bg/LC_MESSAGES/kljettool.mo -share/locale/bg/LC_MESSAGES/klock.mo -share/locale/bg/LC_MESSAGES/klpq.mo -share/locale/bg/LC_MESSAGES/kmahjongg.mo -share/locale/bg/LC_MESSAGES/kmail.mo -share/locale/bg/LC_MESSAGES/kmenuedit.mo -share/locale/bg/LC_MESSAGES/kmines.mo -share/locale/bg/LC_MESSAGES/kminipagerapplet.mo -share/locale/bg/LC_MESSAGES/kmoon.mo -share/locale/bg/LC_MESSAGES/knewsticker.mo -share/locale/bg/LC_MESSAGES/knode.mo -share/locale/bg/LC_MESSAGES/knotes.mo -share/locale/bg/LC_MESSAGES/knotify.mo -share/locale/bg/LC_MESSAGES/kodo.mo -share/locale/bg/LC_MESSAGES/konqueror.mo -share/locale/bg/LC_MESSAGES/konquest.mo -share/locale/bg/LC_MESSAGES/konsole.mo -share/locale/bg/LC_MESSAGES/kooka.mo -share/locale/bg/LC_MESSAGES/korganizer.mo -share/locale/bg/LC_MESSAGES/korn.mo -share/locale/bg/LC_MESSAGES/kpackage.mo -share/locale/bg/LC_MESSAGES/kpager.mo -share/locale/bg/LC_MESSAGES/kpaint.mo -share/locale/bg/LC_MESSAGES/kpartapp.mo -share/locale/bg/LC_MESSAGES/kpartsaver.mo -share/locale/bg/LC_MESSAGES/kpat.mo -share/locale/bg/LC_MESSAGES/kpersonalizer.mo -share/locale/bg/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/bg/LC_MESSAGES/kpm.mo -share/locale/bg/LC_MESSAGES/kpoker.mo -share/locale/bg/LC_MESSAGES/kppp.mo -share/locale/bg/LC_MESSAGES/kppplogview.mo -share/locale/bg/LC_MESSAGES/kreadconfig.mo -share/locale/bg/LC_MESSAGES/kreversi.mo -share/locale/bg/LC_MESSAGES/kruler.mo -share/locale/bg/LC_MESSAGES/krunapplet.mo -share/locale/bg/LC_MESSAGES/ksame.mo -share/locale/bg/LC_MESSAGES/kshisen.mo -share/locale/bg/LC_MESSAGES/ksirc.mo -share/locale/bg/LC_MESSAGES/ksirtet.mo -share/locale/bg/LC_MESSAGES/ksmiletris.mo -share/locale/bg/LC_MESSAGES/ksmserver.mo -share/locale/bg/LC_MESSAGES/ksnake.mo -share/locale/bg/LC_MESSAGES/ksnapshot.mo -share/locale/bg/LC_MESSAGES/ksokoban.mo -share/locale/bg/LC_MESSAGES/kspaceduel.mo -share/locale/bg/LC_MESSAGES/ksplash.mo -share/locale/bg/LC_MESSAGES/kstart.mo -share/locale/bg/LC_MESSAGES/ksysctrl.mo -share/locale/bg/LC_MESSAGES/ksysguard.mo -share/locale/bg/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/bg/LC_MESSAGES/ksysv.mo -share/locale/bg/LC_MESSAGES/ktaskbarapplet.mo -share/locale/bg/LC_MESSAGES/kteatime.mo -share/locale/bg/LC_MESSAGES/ktimemon.mo -share/locale/bg/LC_MESSAGES/ktimer.mo -share/locale/bg/LC_MESSAGES/ktip.mo -share/locale/bg/LC_MESSAGES/ktron.mo -share/locale/bg/LC_MESSAGES/ktuberling.mo -share/locale/bg/LC_MESSAGES/ktux.mo -share/locale/bg/LC_MESSAGES/kuser.mo -share/locale/bg/LC_MESSAGES/kview.mo -share/locale/bg/LC_MESSAGES/kviewshell.mo -share/locale/bg/LC_MESSAGES/kwin.mo -share/locale/bg/LC_MESSAGES/kwin4.mo -share/locale/bg/LC_MESSAGES/kworldclock.mo -share/locale/bg/LC_MESSAGES/kwuftpd.mo -share/locale/bg/LC_MESSAGES/kxkb.mo -share/locale/bg/LC_MESSAGES/kxmlrpcd.mo -share/locale/bg/LC_MESSAGES/kxsconfig.mo -share/locale/bg/LC_MESSAGES/libkdegames.mo -share/locale/bg/LC_MESSAGES/libkonq.mo -share/locale/bg/LC_MESSAGES/libkscreensaver.mo -share/locale/bg/LC_MESSAGES/libtaskbar.mo -share/locale/bg/LC_MESSAGES/libtaskmanager.mo -share/locale/bg/LC_MESSAGES/naughtyapplet.mo -share/locale/bg/LC_MESSAGES/nsplugin.mo -share/locale/bg/LC_MESSAGES/passwords.mo -share/locale/bg/LC_MESSAGES/ppdtranslations.mo -share/locale/bg/LC_MESSAGES/quicklauncher.mo -share/locale/bg/LC_MESSAGES/taskbarextension.mo -share/locale/bg/charset -share/locale/bg/entry.desktop -share/locale/bg/flag.png -share/locale/cs/LC_MESSAGES/aktion.mo -share/locale/cs/LC_MESSAGES/amor.mo -share/locale/cs/LC_MESSAGES/appletproxy.mo -share/locale/cs/LC_MESSAGES/ark.mo -share/locale/cs/LC_MESSAGES/artsbuilder.mo -share/locale/cs/LC_MESSAGES/artscontrol.mo -share/locale/cs/LC_MESSAGES/babelfish.mo -share/locale/cs/LC_MESSAGES/caitoo.mo -share/locale/cs/LC_MESSAGES/childpanelextension.mo -share/locale/cs/LC_MESSAGES/clockapplet.mo -share/locale/cs/LC_MESSAGES/colfind.mo -share/locale/cs/LC_MESSAGES/columbo.mo -share/locale/cs/LC_MESSAGES/cupsdconf.mo -share/locale/cs/LC_MESSAGES/desktop.mo -share/locale/cs/LC_MESSAGES/dirfilterplugin.mo -share/locale/cs/LC_MESSAGES/domtreeviewer.mo -share/locale/cs/LC_MESSAGES/drkonqi.mo -share/locale/cs/LC_MESSAGES/extensionproxy.mo -share/locale/cs/LC_MESSAGES/filetypes.mo -share/locale/cs/LC_MESSAGES/gofai.mo -share/locale/cs/LC_MESSAGES/htmlsearch.mo -share/locale/cs/LC_MESSAGES/imgalleryplugin.mo -share/locale/cs/LC_MESSAGES/kab.mo -share/locale/cs/LC_MESSAGES/kabalone.mo -share/locale/cs/LC_MESSAGES/kaccess.mo -share/locale/cs/LC_MESSAGES/kaddressbook.mo -share/locale/cs/LC_MESSAGES/kafka.mo -share/locale/cs/LC_MESSAGES/kappfinder.mo -share/locale/cs/LC_MESSAGES/karchie.mo -share/locale/cs/LC_MESSAGES/karm.mo -share/locale/cs/LC_MESSAGES/kasbarextension.mo -share/locale/cs/LC_MESSAGES/kasteroids.mo -share/locale/cs/LC_MESSAGES/katalog.mo -share/locale/cs/LC_MESSAGES/kate.mo -share/locale/cs/LC_MESSAGES/katomic.mo -share/locale/cs/LC_MESSAGES/kautorun.mo -share/locale/cs/LC_MESSAGES/kbabel.mo -share/locale/cs/LC_MESSAGES/kbiff.mo -share/locale/cs/LC_MESSAGES/kblackbox.mo -share/locale/cs/LC_MESSAGES/kcalc.mo -share/locale/cs/LC_MESSAGES/kcharselect.mo -share/locale/cs/LC_MESSAGES/kcharselectapplet.mo -share/locale/cs/LC_MESSAGES/kcmaccess.mo -share/locale/cs/LC_MESSAGES/kcmail.mo -share/locale/cs/LC_MESSAGES/kcmarts.mo -share/locale/cs/LC_MESSAGES/kcmaudiocd.mo -share/locale/cs/LC_MESSAGES/kcmbackground.mo -share/locale/cs/LC_MESSAGES/kcmbell.mo -share/locale/cs/LC_MESSAGES/kcmbind.mo -share/locale/cs/LC_MESSAGES/kcmcolors.mo -share/locale/cs/LC_MESSAGES/kcmcrypto.mo -share/locale/cs/LC_MESSAGES/kcmcss.mo -share/locale/cs/LC_MESSAGES/kcmdhcpd.mo -share/locale/cs/LC_MESSAGES/kcmemail.mo -share/locale/cs/LC_MESSAGES/kcmenergy.mo -share/locale/cs/LC_MESSAGES/kcmfonts.mo -share/locale/cs/LC_MESSAGES/kcmgofai.mo -share/locale/cs/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/cs/LC_MESSAGES/kcmicons.mo -share/locale/cs/LC_MESSAGES/kcminfo.mo -share/locale/cs/LC_MESSAGES/kcminput.mo -share/locale/cs/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/cs/LC_MESSAGES/kcmiwatcher.mo -share/locale/cs/LC_MESSAGES/kcmkamera.mo -share/locale/cs/LC_MESSAGES/kcmkclock.mo -share/locale/cs/LC_MESSAGES/kcmkdb.mo -share/locale/cs/LC_MESSAGES/kcmkeys.mo -share/locale/cs/LC_MESSAGES/kcmkicker.mo -share/locale/cs/LC_MESSAGES/kcmkio.mo -share/locale/cs/LC_MESSAGES/kcmkmix.mo -share/locale/cs/LC_MESSAGES/kcmkonq.mo -share/locale/cs/LC_MESSAGES/kcmkonqhtml.mo -share/locale/cs/LC_MESSAGES/kcmkonsole.mo -share/locale/cs/LC_MESSAGES/kcmktalkd.mo -share/locale/cs/LC_MESSAGES/kcmkurifilt.mo -share/locale/cs/LC_MESSAGES/kcmkwindecoration.mo -share/locale/cs/LC_MESSAGES/kcmkwintheme.mo -share/locale/cs/LC_MESSAGES/kcmkwm.mo -share/locale/cs/LC_MESSAGES/kcmlanbrowser.mo -share/locale/cs/LC_MESSAGES/kcmlaptop.mo -share/locale/cs/LC_MESSAGES/kcmlaunch.mo -share/locale/cs/LC_MESSAGES/kcmlayout.mo -share/locale/cs/LC_MESSAGES/kcmlilo.mo -share/locale/cs/LC_MESSAGES/kcmlocale.mo -share/locale/cs/LC_MESSAGES/kcmmidi.mo -share/locale/cs/LC_MESSAGES/kcmnewsticker.mo -share/locale/cs/LC_MESSAGES/kcmnotify.mo -share/locale/cs/LC_MESSAGES/kcmodbc.mo -share/locale/cs/LC_MESSAGES/kcmsamba.mo -share/locale/cs/LC_MESSAGES/kcmscreensaver.mo -share/locale/cs/LC_MESSAGES/kcmsmserver.mo -share/locale/cs/LC_MESSAGES/kcmsocks.mo -share/locale/cs/LC_MESSAGES/kcmspellchecking.mo -share/locale/cs/LC_MESSAGES/kcmstyle.mo -share/locale/cs/LC_MESSAGES/kcmtaskbar.mo -share/locale/cs/LC_MESSAGES/kcmthemes.mo -share/locale/cs/LC_MESSAGES/kcmusb.mo -share/locale/cs/LC_MESSAGES/kcoloredit.mo -share/locale/cs/LC_MESSAGES/kcontrol.mo -share/locale/cs/LC_MESSAGES/kcron.mo -share/locale/cs/LC_MESSAGES/kdao.mo -share/locale/cs/LC_MESSAGES/kdcop.mo -share/locale/cs/LC_MESSAGES/kdebugdialog.mo -share/locale/cs/LC_MESSAGES/kdelibs.mo -share/locale/cs/LC_MESSAGES/kdepasswd.mo -share/locale/cs/LC_MESSAGES/kdeprintfax.mo -share/locale/cs/LC_MESSAGES/kdesktop.mo -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/kdict.mo -share/locale/cs/LC_MESSAGES/kdictapplet.mo -share/locale/cs/LC_MESSAGES/kdmchooser.mo -share/locale/cs/LC_MESSAGES/kdmconfig.mo -share/locale/cs/LC_MESSAGES/kdmgreet.mo -share/locale/cs/LC_MESSAGES/kdvi.mo -share/locale/cs/LC_MESSAGES/kedit.mo -share/locale/cs/LC_MESSAGES/keystone.mo -share/locale/cs/LC_MESSAGES/kfax.mo -share/locale/cs/LC_MESSAGES/kfifteenapplet.mo -share/locale/cs/LC_MESSAGES/kfind.mo -share/locale/cs/LC_MESSAGES/kfindpart.mo -share/locale/cs/LC_MESSAGES/kfinger.mo -share/locale/cs/LC_MESSAGES/kfloppy.mo -share/locale/cs/LC_MESSAGES/kfmclient.mo -share/locale/cs/LC_MESSAGES/kfmexec.mo -share/locale/cs/LC_MESSAGES/kfract.mo -share/locale/cs/LC_MESSAGES/kghostview.mo -share/locale/cs/LC_MESSAGES/kglchess.mo -share/locale/cs/LC_MESSAGES/kgrapher.mo -share/locale/cs/LC_MESSAGES/khelpcenter.mo -share/locale/cs/LC_MESSAGES/khexedit.mo -share/locale/cs/LC_MESSAGES/khotkeys.mo -share/locale/cs/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/cs/LC_MESSAGES/kicker.mo -share/locale/cs/LC_MESSAGES/kiconedit.mo -share/locale/cs/LC_MESSAGES/kikbd.mo -share/locale/cs/LC_MESSAGES/kim.mo -share/locale/cs/LC_MESSAGES/kio_audiocd.mo -share/locale/cs/LC_MESSAGES/kio_finger.mo -share/locale/cs/LC_MESSAGES/kio_floppy.mo -share/locale/cs/LC_MESSAGES/kio_help.mo -share/locale/cs/LC_MESSAGES/kio_imap4.mo -share/locale/cs/LC_MESSAGES/kio_lan.mo -share/locale/cs/LC_MESSAGES/kio_man.mo -share/locale/cs/LC_MESSAGES/kio_nfs.mo -share/locale/cs/LC_MESSAGES/kio_nntp.mo -share/locale/cs/LC_MESSAGES/kio_pop3.mo -share/locale/cs/LC_MESSAGES/kio_smb.mo -share/locale/cs/LC_MESSAGES/kio_smbro.mo -share/locale/cs/LC_MESSAGES/kit.mo -share/locale/cs/LC_MESSAGES/kjezz.mo -share/locale/cs/LC_MESSAGES/kjobviewer.mo -share/locale/cs/LC_MESSAGES/kjots.mo -share/locale/cs/LC_MESSAGES/kjumpingcube.mo -share/locale/cs/LC_MESSAGES/klaptopdaemon.mo -share/locale/cs/LC_MESSAGES/klegacyimport.mo -share/locale/cs/LC_MESSAGES/kless.mo -share/locale/cs/LC_MESSAGES/klipper.mo -share/locale/cs/LC_MESSAGES/kljettool.mo -share/locale/cs/LC_MESSAGES/klock.mo -share/locale/cs/LC_MESSAGES/klpq.mo -share/locale/cs/LC_MESSAGES/klprfax.mo -share/locale/cs/LC_MESSAGES/kmahjongg.mo -share/locale/cs/LC_MESSAGES/kmail.mo -share/locale/cs/LC_MESSAGES/kmailcvt.mo -share/locale/cs/LC_MESSAGES/kmenuedit.mo -share/locale/cs/LC_MESSAGES/kmessage.mo -share/locale/cs/LC_MESSAGES/kmid.mo -share/locale/cs/LC_MESSAGES/kmidi.mo -share/locale/cs/LC_MESSAGES/kmines.mo -share/locale/cs/LC_MESSAGES/kminipagerapplet.mo -share/locale/cs/LC_MESSAGES/kmix.mo -share/locale/cs/LC_MESSAGES/kmms.mo -share/locale/cs/LC_MESSAGES/kmoon.mo -share/locale/cs/LC_MESSAGES/knewsticker.mo -share/locale/cs/LC_MESSAGES/knode.mo -share/locale/cs/LC_MESSAGES/knotes.mo -share/locale/cs/LC_MESSAGES/knotify.mo -share/locale/cs/LC_MESSAGES/knu.mo -share/locale/cs/LC_MESSAGES/kodo.mo -share/locale/cs/LC_MESSAGES/kolourpicker.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/konv.mo -share/locale/cs/LC_MESSAGES/kooka.mo -share/locale/cs/LC_MESSAGES/korganizer.mo -share/locale/cs/LC_MESSAGES/korn.mo -share/locale/cs/LC_MESSAGES/kp.mo -share/locale/cs/LC_MESSAGES/kpackage.mo -share/locale/cs/LC_MESSAGES/kpager.mo -share/locale/cs/LC_MESSAGES/kpaint.mo -share/locale/cs/LC_MESSAGES/kpartapp.mo -share/locale/cs/LC_MESSAGES/kpartsaver.mo -share/locale/cs/LC_MESSAGES/kpat.mo -share/locale/cs/LC_MESSAGES/kpersonalizer.mo -share/locale/cs/LC_MESSAGES/kphone.mo -share/locale/cs/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/cs/LC_MESSAGES/kpm.mo -share/locale/cs/LC_MESSAGES/kpoker.mo -share/locale/cs/LC_MESSAGES/kppp.mo -share/locale/cs/LC_MESSAGES/kppplogview.mo -share/locale/cs/LC_MESSAGES/kprinter.mo -share/locale/cs/LC_MESSAGES/kreadconfig.mo -share/locale/cs/LC_MESSAGES/kreversi.mo -share/locale/cs/LC_MESSAGES/krn.mo -share/locale/cs/LC_MESSAGES/kruler.mo -share/locale/cs/LC_MESSAGES/krunapplet.mo -share/locale/cs/LC_MESSAGES/ksame.mo -share/locale/cs/LC_MESSAGES/kscd.mo -share/locale/cs/LC_MESSAGES/kscoreapplet.mo -share/locale/cs/LC_MESSAGES/kshisen.mo -share/locale/cs/LC_MESSAGES/ksirc.mo -share/locale/cs/LC_MESSAGES/ksirtet.mo -share/locale/cs/LC_MESSAGES/ksmiletris.mo -share/locale/cs/LC_MESSAGES/ksmserver.mo -share/locale/cs/LC_MESSAGES/ksnake.mo -share/locale/cs/LC_MESSAGES/ksnapshot.mo -share/locale/cs/LC_MESSAGES/ksokoban.mo -share/locale/cs/LC_MESSAGES/kspaceduel.mo -share/locale/cs/LC_MESSAGES/ksplash.mo -share/locale/cs/LC_MESSAGES/kstart.mo -share/locale/cs/LC_MESSAGES/kstartperf.mo -share/locale/cs/LC_MESSAGES/ksysctrl.mo -share/locale/cs/LC_MESSAGES/ksysguard.mo -share/locale/cs/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/cs/LC_MESSAGES/ksysv.mo -share/locale/cs/LC_MESSAGES/ktalkd.mo -share/locale/cs/LC_MESSAGES/ktaskbarapplet.mo -share/locale/cs/LC_MESSAGES/kteatime.mo -share/locale/cs/LC_MESSAGES/ktimemon.mo -share/locale/cs/LC_MESSAGES/ktimer.mo -share/locale/cs/LC_MESSAGES/ktip.mo -share/locale/cs/LC_MESSAGES/ktron.mo -share/locale/cs/LC_MESSAGES/ktuberling.mo -share/locale/cs/LC_MESSAGES/ktux.mo -share/locale/cs/LC_MESSAGES/kuser.mo -share/locale/cs/LC_MESSAGES/kview.mo -share/locale/cs/LC_MESSAGES/kviewshell.mo -share/locale/cs/LC_MESSAGES/kwin.mo -share/locale/cs/LC_MESSAGES/kwin4.mo -share/locale/cs/LC_MESSAGES/kworldclock.mo -share/locale/cs/LC_MESSAGES/kwuftpd.mo -share/locale/cs/LC_MESSAGES/kxkb.mo -share/locale/cs/LC_MESSAGES/kxmlrpcd.mo -share/locale/cs/LC_MESSAGES/kxsconfig.mo -share/locale/cs/LC_MESSAGES/libkdegames.mo -share/locale/cs/LC_MESSAGES/libkdenetwork.mo -share/locale/cs/LC_MESSAGES/libkonq.mo -share/locale/cs/LC_MESSAGES/libkscan.mo -share/locale/cs/LC_MESSAGES/libkscreensaver.mo -share/locale/cs/LC_MESSAGES/libkwindefault_config.mo -share/locale/cs/LC_MESSAGES/libkwinicewm_config.mo -share/locale/cs/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/cs/LC_MESSAGES/libkwinquartz_config.mo -share/locale/cs/LC_MESSAGES/libtaskbar.mo -share/locale/cs/LC_MESSAGES/libtaskmanager.mo -share/locale/cs/LC_MESSAGES/lskat.mo -share/locale/cs/LC_MESSAGES/multiplayers.mo -share/locale/cs/LC_MESSAGES/naughtyapplet.mo -share/locale/cs/LC_MESSAGES/noatun.mo -share/locale/cs/LC_MESSAGES/nsplugin.mo -share/locale/cs/LC_MESSAGES/passwords.mo -share/locale/cs/LC_MESSAGES/quicklauncher.mo -share/locale/cs/LC_MESSAGES/secpolicy.mo -share/locale/cs/LC_MESSAGES/taskbarextension.mo -share/locale/cs/LC_MESSAGES/uachangerplugin.mo -share/locale/cs/LC_MESSAGES/validatorsplugin.mo -share/locale/cs/LC_MESSAGES/webarchiver.mo -share/locale/cs/charset -share/locale/cs/entry.desktop -share/locale/cs/flag.png -share/locale/da/LC_MESSAGES/aktion.mo -share/locale/da/LC_MESSAGES/amor.mo -share/locale/da/LC_MESSAGES/appletproxy.mo -share/locale/da/LC_MESSAGES/ark.mo -share/locale/da/LC_MESSAGES/artsbuilder.mo -share/locale/da/LC_MESSAGES/artscontrol.mo -share/locale/da/LC_MESSAGES/babelfish.mo -share/locale/da/LC_MESSAGES/caitoo.mo -share/locale/da/LC_MESSAGES/childpanelextension.mo -share/locale/da/LC_MESSAGES/clockapplet.mo -share/locale/da/LC_MESSAGES/colfind.mo -share/locale/da/LC_MESSAGES/columbo.mo -share/locale/da/LC_MESSAGES/cookbook.mo -share/locale/da/LC_MESSAGES/cupsdconf.mo -share/locale/da/LC_MESSAGES/desktop.mo -share/locale/da/LC_MESSAGES/devcenter.mo -share/locale/da/LC_MESSAGES/dirfilterplugin.mo -share/locale/da/LC_MESSAGES/domtreeviewer.mo -share/locale/da/LC_MESSAGES/drkonqi.mo -share/locale/da/LC_MESSAGES/empath.mo -share/locale/da/LC_MESSAGES/extensionproxy.mo -share/locale/da/LC_MESSAGES/filetypes.mo -share/locale/da/LC_MESSAGES/gideon.mo -share/locale/da/LC_MESSAGES/gofai.mo -share/locale/da/LC_MESSAGES/htmlsearch.mo -share/locale/da/LC_MESSAGES/imgalleryplugin.mo -share/locale/da/LC_MESSAGES/kab.mo -share/locale/da/LC_MESSAGES/kabalone.mo -share/locale/da/LC_MESSAGES/kaboodle.mo -share/locale/da/LC_MESSAGES/kaccess.mo -share/locale/da/LC_MESSAGES/kaddressbook.mo -share/locale/da/LC_MESSAGES/kafka.mo -share/locale/da/LC_MESSAGES/kandy.mo -share/locale/da/LC_MESSAGES/kappfinder.mo -share/locale/da/LC_MESSAGES/karchie.mo -share/locale/da/LC_MESSAGES/karchiver.mo -share/locale/da/LC_MESSAGES/karm.mo -share/locale/da/LC_MESSAGES/kasbarextension.mo -share/locale/da/LC_MESSAGES/kasteroids.mo -share/locale/da/LC_MESSAGES/katalog.mo -share/locale/da/LC_MESSAGES/kate.mo -share/locale/da/LC_MESSAGES/katehtmltools.mo -share/locale/da/LC_MESSAGES/kateinsertcommand.mo -share/locale/da/LC_MESSAGES/katomic.mo -share/locale/da/LC_MESSAGES/kautorun.mo -share/locale/da/LC_MESSAGES/kbabel.mo -share/locale/da/LC_MESSAGES/kbackgammon.mo -share/locale/da/LC_MESSAGES/kbattleship.mo -share/locale/da/LC_MESSAGES/kbiff.mo -share/locale/da/LC_MESSAGES/kblackbox.mo -share/locale/da/LC_MESSAGES/kbugbuster.mo -share/locale/da/LC_MESSAGES/kcalc.mo -share/locale/da/LC_MESSAGES/kcharselect.mo -share/locale/da/LC_MESSAGES/kcharselectapplet.mo -share/locale/da/LC_MESSAGES/kcm_scsimanager.mo -share/locale/da/LC_MESSAGES/kcmaccess.mo -share/locale/da/LC_MESSAGES/kcmail.mo -share/locale/da/LC_MESSAGES/kcmarts.mo -share/locale/da/LC_MESSAGES/kcmaudiocd.mo -share/locale/da/LC_MESSAGES/kcmbackground.mo -share/locale/da/LC_MESSAGES/kcmbell.mo -share/locale/da/LC_MESSAGES/kcmbind.mo -share/locale/da/LC_MESSAGES/kcmcolors.mo -share/locale/da/LC_MESSAGES/kcmcrypto.mo -share/locale/da/LC_MESSAGES/kcmcss.mo -share/locale/da/LC_MESSAGES/kcmdhcpd.mo -share/locale/da/LC_MESSAGES/kcmemail.mo -share/locale/da/LC_MESSAGES/kcmenergy.mo -share/locale/da/LC_MESSAGES/kcmfonts.mo -share/locale/da/LC_MESSAGES/kcmgofai.mo -share/locale/da/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/da/LC_MESSAGES/kcmicons.mo -share/locale/da/LC_MESSAGES/kcminfo.mo -share/locale/da/LC_MESSAGES/kcminput.mo -share/locale/da/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/da/LC_MESSAGES/kcmiwatcher.mo -share/locale/da/LC_MESSAGES/kcmkamera.mo -share/locale/da/LC_MESSAGES/kcmkclock.mo -share/locale/da/LC_MESSAGES/kcmkdb.mo -share/locale/da/LC_MESSAGES/kcmkeys.mo -share/locale/da/LC_MESSAGES/kcmkicker.mo -share/locale/da/LC_MESSAGES/kcmkio.mo -share/locale/da/LC_MESSAGES/kcmkmix.mo -share/locale/da/LC_MESSAGES/kcmkonq.mo -share/locale/da/LC_MESSAGES/kcmkonqhtml.mo -share/locale/da/LC_MESSAGES/kcmkonsole.mo -share/locale/da/LC_MESSAGES/kcmktalkd.mo -share/locale/da/LC_MESSAGES/kcmkurifilt.mo -share/locale/da/LC_MESSAGES/kcmkwindecoration.mo -share/locale/da/LC_MESSAGES/kcmkwintheme.mo -share/locale/da/LC_MESSAGES/kcmkwm.mo -share/locale/da/LC_MESSAGES/kcmlanbrowser.mo -share/locale/da/LC_MESSAGES/kcmlaptop.mo -share/locale/da/LC_MESSAGES/kcmlaunch.mo -share/locale/da/LC_MESSAGES/kcmlayout.mo -share/locale/da/LC_MESSAGES/kcmlilo.mo -share/locale/da/LC_MESSAGES/kcmlinuz.mo -share/locale/da/LC_MESSAGES/kcmlocale.mo -share/locale/da/LC_MESSAGES/kcmmediacontrol.mo -share/locale/da/LC_MESSAGES/kcmmidi.mo -share/locale/da/LC_MESSAGES/kcmnapster.mo -share/locale/da/LC_MESSAGES/kcmnewsticker.mo -share/locale/da/LC_MESSAGES/kcmnotify.mo -share/locale/da/LC_MESSAGES/kcmodbc.mo -share/locale/da/LC_MESSAGES/kcmsamba.mo -share/locale/da/LC_MESSAGES/kcmscreensaver.mo -share/locale/da/LC_MESSAGES/kcmsmserver.mo -share/locale/da/LC_MESSAGES/kcmsocks.mo -share/locale/da/LC_MESSAGES/kcmspellchecking.mo -share/locale/da/LC_MESSAGES/kcmstyle.mo -share/locale/da/LC_MESSAGES/kcmtaskbar.mo -share/locale/da/LC_MESSAGES/kcmthemes.mo -share/locale/da/LC_MESSAGES/kcmusb.mo -share/locale/da/LC_MESSAGES/kcmuserenv.mo -share/locale/da/LC_MESSAGES/kcoloredit.mo -share/locale/da/LC_MESSAGES/kcontrol.mo -share/locale/da/LC_MESSAGES/kcron.mo -share/locale/da/LC_MESSAGES/kdao.mo -share/locale/da/LC_MESSAGES/kdbbrowser.mo -share/locale/da/LC_MESSAGES/kdcop.mo -share/locale/da/LC_MESSAGES/kdebugdialog.mo -share/locale/da/LC_MESSAGES/kdelibs.mo -share/locale/da/LC_MESSAGES/kdepasswd.mo -share/locale/da/LC_MESSAGES/kdeprintfax.mo -share/locale/da/LC_MESSAGES/kdesktop.mo -share/locale/da/LC_MESSAGES/kdessh.mo -share/locale/da/LC_MESSAGES/kdestdifacedemo.mo -share/locale/da/LC_MESSAGES/kdesu.mo -share/locale/da/LC_MESSAGES/kdesud.mo -share/locale/da/LC_MESSAGES/kdevelop.mo -share/locale/da/LC_MESSAGES/kdevtipofday.mo -share/locale/da/LC_MESSAGES/kdf.mo -share/locale/da/LC_MESSAGES/kdict.mo -share/locale/da/LC_MESSAGES/kdictapplet.mo -share/locale/da/LC_MESSAGES/kdiff.mo -share/locale/da/LC_MESSAGES/kdmchooser.mo -share/locale/da/LC_MESSAGES/kdmconfig.mo -share/locale/da/LC_MESSAGES/kdmgreet.mo -share/locale/da/LC_MESSAGES/kdvi.mo -share/locale/da/LC_MESSAGES/kedit.mo -share/locale/da/LC_MESSAGES/keystone.mo -share/locale/da/LC_MESSAGES/kfax.mo -share/locale/da/LC_MESSAGES/kfifteenapplet.mo -share/locale/da/LC_MESSAGES/kfind.mo -share/locale/da/LC_MESSAGES/kfindpart.mo -share/locale/da/LC_MESSAGES/kfinger.mo -share/locale/da/LC_MESSAGES/kfloppy.mo -share/locale/da/LC_MESSAGES/kfmclient.mo -share/locale/da/LC_MESSAGES/kfmexec.mo -share/locale/da/LC_MESSAGES/kfontinst.mo -share/locale/da/LC_MESSAGES/kformeditor.mo -share/locale/da/LC_MESSAGES/kformviewer.mo -share/locale/da/LC_MESSAGES/kfortune.mo -share/locale/da/LC_MESSAGES/kfourtune.mo -share/locale/da/LC_MESSAGES/kfract.mo -share/locale/da/LC_MESSAGES/kghostview.mo -share/locale/da/LC_MESSAGES/kglchess.mo -share/locale/da/LC_MESSAGES/kgnuplot.mo -share/locale/da/LC_MESSAGES/kgrapher.mo -share/locale/da/LC_MESSAGES/khelpcenter.mo -share/locale/da/LC_MESSAGES/khexedit.mo -share/locale/da/LC_MESSAGES/khotkeys.mo -share/locale/da/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/da/LC_MESSAGES/kicker.mo -share/locale/da/LC_MESSAGES/kiconedit.mo -share/locale/da/LC_MESSAGES/kicq.mo -share/locale/da/LC_MESSAGES/kikbd.mo -share/locale/da/LC_MESSAGES/kim.mo -share/locale/da/LC_MESSAGES/kio_audiocd.mo -share/locale/da/LC_MESSAGES/kio_finger.mo -share/locale/da/LC_MESSAGES/kio_floppy.mo -share/locale/da/LC_MESSAGES/kio_help.mo -share/locale/da/LC_MESSAGES/kio_imap4.mo -share/locale/da/LC_MESSAGES/kio_lan.mo -share/locale/da/LC_MESSAGES/kio_man.mo -share/locale/da/LC_MESSAGES/kio_nfs.mo -share/locale/da/LC_MESSAGES/kio_nntp.mo -share/locale/da/LC_MESSAGES/kio_pop3.mo -share/locale/da/LC_MESSAGES/kio_smb.mo -share/locale/da/LC_MESSAGES/kio_smbro.mo -share/locale/da/LC_MESSAGES/kit.mo -share/locale/da/LC_MESSAGES/kjezz.mo -share/locale/da/LC_MESSAGES/kjobviewer.mo -share/locale/da/LC_MESSAGES/kjots.mo -share/locale/da/LC_MESSAGES/kjumpingcube.mo -share/locale/da/LC_MESSAGES/klaptopdaemon.mo -share/locale/da/LC_MESSAGES/klegacyimport.mo -share/locale/da/LC_MESSAGES/kless.mo -share/locale/da/LC_MESSAGES/klines.mo -share/locale/da/LC_MESSAGES/klipper.mo -share/locale/da/LC_MESSAGES/kljettool.mo -share/locale/da/LC_MESSAGES/klock.mo -share/locale/da/LC_MESSAGES/klpq.mo -share/locale/da/LC_MESSAGES/klprfax.mo -share/locale/da/LC_MESSAGES/kmahjongg.mo -share/locale/da/LC_MESSAGES/kmail.mo -share/locale/da/LC_MESSAGES/kmailcvt.mo -share/locale/da/LC_MESSAGES/kmake.mo -share/locale/da/LC_MESSAGES/kmenuedit.mo -share/locale/da/LC_MESSAGES/kmessage.mo -share/locale/da/LC_MESSAGES/kmid.mo -share/locale/da/LC_MESSAGES/kmidi.mo -share/locale/da/LC_MESSAGES/kmines.mo -share/locale/da/LC_MESSAGES/kminipagerapplet.mo -share/locale/da/LC_MESSAGES/kmix.mo -share/locale/da/LC_MESSAGES/kmms.mo -share/locale/da/LC_MESSAGES/kmonop.mo -share/locale/da/LC_MESSAGES/kmoon.mo -share/locale/da/LC_MESSAGES/knetmgr.mo -share/locale/da/LC_MESSAGES/knewsticker.mo -share/locale/da/LC_MESSAGES/knode.mo -share/locale/da/LC_MESSAGES/knotes.mo -share/locale/da/LC_MESSAGES/knotify.mo -share/locale/da/LC_MESSAGES/knu.mo -share/locale/da/LC_MESSAGES/kodo.mo -share/locale/da/LC_MESSAGES/kolourpicker.mo -share/locale/da/LC_MESSAGES/konqueror.mo -share/locale/da/LC_MESSAGES/konquest.mo -share/locale/da/LC_MESSAGES/konsole.mo -share/locale/da/LC_MESSAGES/konv.mo -share/locale/da/LC_MESSAGES/kooka.mo -share/locale/da/LC_MESSAGES/kopennap.mo -share/locale/da/LC_MESSAGES/korganizer.mo -share/locale/da/LC_MESSAGES/korn.mo -share/locale/da/LC_MESSAGES/kp.mo -share/locale/da/LC_MESSAGES/kpackage.mo -share/locale/da/LC_MESSAGES/kpager.mo -share/locale/da/LC_MESSAGES/kpaint.mo -share/locale/da/LC_MESSAGES/kpartapp.mo -share/locale/da/LC_MESSAGES/kpartsaver.mo -share/locale/da/LC_MESSAGES/kpat.mo -share/locale/da/LC_MESSAGES/kpersonalizer.mo -share/locale/da/LC_MESSAGES/kphone.mo -share/locale/da/LC_MESSAGES/kpilot.mo -share/locale/da/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/da/LC_MESSAGES/kpm.mo -share/locale/da/LC_MESSAGES/kpoker.mo -share/locale/da/LC_MESSAGES/kpovmodeler.mo -share/locale/da/LC_MESSAGES/kppp.mo -share/locale/da/LC_MESSAGES/kppplogview.mo -share/locale/da/LC_MESSAGES/kprinter.mo -share/locale/da/LC_MESSAGES/kreadconfig.mo -share/locale/da/LC_MESSAGES/kreversi.mo -share/locale/da/LC_MESSAGES/krn.mo -share/locale/da/LC_MESSAGES/kruler.mo -share/locale/da/LC_MESSAGES/krunapplet.mo -share/locale/da/LC_MESSAGES/ksame.mo -share/locale/da/LC_MESSAGES/kscd.mo -share/locale/da/LC_MESSAGES/kscoreapplet.mo -share/locale/da/LC_MESSAGES/kshisen.mo -share/locale/da/LC_MESSAGES/ksirc.mo -share/locale/da/LC_MESSAGES/ksirtet.mo -share/locale/da/LC_MESSAGES/ksmiletris.mo -share/locale/da/LC_MESSAGES/ksmserver.mo -share/locale/da/LC_MESSAGES/ksnake.mo -share/locale/da/LC_MESSAGES/ksnapshot.mo -share/locale/da/LC_MESSAGES/ksokoban.mo -share/locale/da/LC_MESSAGES/kspaceduel.mo -share/locale/da/LC_MESSAGES/ksplash.mo -share/locale/da/LC_MESSAGES/kstart.mo -share/locale/da/LC_MESSAGES/kstartperf.mo -share/locale/da/LC_MESSAGES/kstockticker.mo -share/locale/da/LC_MESSAGES/ksysctrl.mo -share/locale/da/LC_MESSAGES/ksysguard.mo -share/locale/da/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/da/LC_MESSAGES/ksystrayproxy.mo -share/locale/da/LC_MESSAGES/ksysv.mo -share/locale/da/LC_MESSAGES/ktables.mo -share/locale/da/LC_MESSAGES/ktalk.mo -share/locale/da/LC_MESSAGES/ktalkd.mo -share/locale/da/LC_MESSAGES/ktaskbarapplet.mo -share/locale/da/LC_MESSAGES/kteatime.mo -share/locale/da/LC_MESSAGES/ktimemon.mo -share/locale/da/LC_MESSAGES/ktimer.mo -share/locale/da/LC_MESSAGES/ktip.mo -share/locale/da/LC_MESSAGES/ktouch.mo -share/locale/da/LC_MESSAGES/ktron.mo -share/locale/da/LC_MESSAGES/ktuberling.mo -share/locale/da/LC_MESSAGES/ktux.mo -share/locale/da/LC_MESSAGES/kuser.mo -share/locale/da/LC_MESSAGES/kvidmode.mo -share/locale/da/LC_MESSAGES/kview.mo -share/locale/da/LC_MESSAGES/kviewshell.mo -share/locale/da/LC_MESSAGES/kwebstat.mo -share/locale/da/LC_MESSAGES/kwin.mo -share/locale/da/LC_MESSAGES/kwin4.mo -share/locale/da/LC_MESSAGES/kwiz.mo -share/locale/da/LC_MESSAGES/kworldclock.mo -share/locale/da/LC_MESSAGES/kwuftpd.mo -share/locale/da/LC_MESSAGES/kxkb.mo -share/locale/da/LC_MESSAGES/kxmlrpcd.mo -share/locale/da/LC_MESSAGES/kxsconfig.mo -share/locale/da/LC_MESSAGES/libkdegames.mo -share/locale/da/LC_MESSAGES/libkdenetwork.mo -share/locale/da/LC_MESSAGES/libkonq.mo -share/locale/da/LC_MESSAGES/libkscan.mo -share/locale/da/LC_MESSAGES/libkscreensaver.mo -share/locale/da/LC_MESSAGES/libkwindefault_config.mo -share/locale/da/LC_MESSAGES/libkwinicewm_config.mo -share/locale/da/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/da/LC_MESSAGES/libkwinquartz_config.mo -share/locale/da/LC_MESSAGES/libtaskbar.mo -share/locale/da/LC_MESSAGES/libtaskmanager.mo -share/locale/da/LC_MESSAGES/lskat.mo -share/locale/da/LC_MESSAGES/mediacontrol.mo -share/locale/da/LC_MESSAGES/multiplayers.mo -share/locale/da/LC_MESSAGES/naughtyapplet.mo -share/locale/da/LC_MESSAGES/noatun.mo -share/locale/da/LC_MESSAGES/nsplugin.mo -share/locale/da/LC_MESSAGES/passwords.mo -share/locale/da/LC_MESSAGES/ppdtranslations.mo -share/locale/da/LC_MESSAGES/pws.mo -share/locale/da/LC_MESSAGES/quicklauncher.mo -share/locale/da/LC_MESSAGES/secpolicy.mo -share/locale/da/LC_MESSAGES/spy.mo -share/locale/da/LC_MESSAGES/taskbarextension.mo -share/locale/da/LC_MESSAGES/twister.mo -share/locale/da/LC_MESSAGES/uachangerplugin.mo -share/locale/da/LC_MESSAGES/validatorsplugin.mo -share/locale/da/LC_MESSAGES/webarchiver.mo -share/locale/da/charset -share/locale/da/entry.desktop -share/locale/da/flag.png -share/locale/de/LC_MESSAGES/aktion.mo -share/locale/de/LC_MESSAGES/amor.mo -share/locale/de/LC_MESSAGES/appletproxy.mo -share/locale/de/LC_MESSAGES/ark.mo -share/locale/de/LC_MESSAGES/artsbuilder.mo -share/locale/de/LC_MESSAGES/artscontrol.mo -share/locale/de/LC_MESSAGES/babelfish.mo -share/locale/de/LC_MESSAGES/caitoo.mo -share/locale/de/LC_MESSAGES/childpanelextension.mo -share/locale/de/LC_MESSAGES/clockapplet.mo -share/locale/de/LC_MESSAGES/colfind.mo -share/locale/de/LC_MESSAGES/columbo.mo -share/locale/de/LC_MESSAGES/cookbook.mo -share/locale/de/LC_MESSAGES/cupsdconf.mo -share/locale/de/LC_MESSAGES/desktop.mo -share/locale/de/LC_MESSAGES/dirfilterplugin.mo -share/locale/de/LC_MESSAGES/domtreeviewer.mo -share/locale/de/LC_MESSAGES/drkonqi.mo -share/locale/de/LC_MESSAGES/empath.mo -share/locale/de/LC_MESSAGES/extensionproxy.mo -share/locale/de/LC_MESSAGES/filetypes.mo -share/locale/de/LC_MESSAGES/gideon.mo -share/locale/de/LC_MESSAGES/htmlsearch.mo -share/locale/de/LC_MESSAGES/imgalleryplugin.mo -share/locale/de/LC_MESSAGES/kab.mo -share/locale/de/LC_MESSAGES/kabalone.mo -share/locale/de/LC_MESSAGES/kaccess.mo -share/locale/de/LC_MESSAGES/kaddressbook.mo -share/locale/de/LC_MESSAGES/kandy.mo -share/locale/de/LC_MESSAGES/kappfinder.mo -share/locale/de/LC_MESSAGES/karchie.mo -share/locale/de/LC_MESSAGES/karchiver.mo -share/locale/de/LC_MESSAGES/karm.mo -share/locale/de/LC_MESSAGES/kasbarextension.mo -share/locale/de/LC_MESSAGES/kasteroids.mo -share/locale/de/LC_MESSAGES/katalog.mo -share/locale/de/LC_MESSAGES/kate.mo -share/locale/de/LC_MESSAGES/katehtmltools.mo -share/locale/de/LC_MESSAGES/kateinsertcommand.mo -share/locale/de/LC_MESSAGES/katomic.mo -share/locale/de/LC_MESSAGES/kautorun.mo -share/locale/de/LC_MESSAGES/kbabel.mo -share/locale/de/LC_MESSAGES/kbackgammon.mo -share/locale/de/LC_MESSAGES/kbattleship.mo -share/locale/de/LC_MESSAGES/kbiff.mo -share/locale/de/LC_MESSAGES/kblackbox.mo -share/locale/de/LC_MESSAGES/kcalc.mo -share/locale/de/LC_MESSAGES/kcharselect.mo -share/locale/de/LC_MESSAGES/kcharselectapplet.mo -share/locale/de/LC_MESSAGES/kcmaccess.mo -share/locale/de/LC_MESSAGES/kcmail.mo -share/locale/de/LC_MESSAGES/kcmarts.mo -share/locale/de/LC_MESSAGES/kcmaudiocd.mo -share/locale/de/LC_MESSAGES/kcmbackground.mo -share/locale/de/LC_MESSAGES/kcmbell.mo -share/locale/de/LC_MESSAGES/kcmbind.mo -share/locale/de/LC_MESSAGES/kcmcolors.mo -share/locale/de/LC_MESSAGES/kcmcrypto.mo -share/locale/de/LC_MESSAGES/kcmcss.mo -share/locale/de/LC_MESSAGES/kcmemail.mo -share/locale/de/LC_MESSAGES/kcmenergy.mo -share/locale/de/LC_MESSAGES/kcmfonts.mo -share/locale/de/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/de/LC_MESSAGES/kcmicons.mo -share/locale/de/LC_MESSAGES/kcminfo.mo -share/locale/de/LC_MESSAGES/kcminput.mo -share/locale/de/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/de/LC_MESSAGES/kcmkamera.mo -share/locale/de/LC_MESSAGES/kcmkclock.mo -share/locale/de/LC_MESSAGES/kcmkdb.mo -share/locale/de/LC_MESSAGES/kcmkeys.mo -share/locale/de/LC_MESSAGES/kcmkicker.mo -share/locale/de/LC_MESSAGES/kcmkio.mo -share/locale/de/LC_MESSAGES/kcmkmix.mo -share/locale/de/LC_MESSAGES/kcmkonq.mo -share/locale/de/LC_MESSAGES/kcmkonqhtml.mo -share/locale/de/LC_MESSAGES/kcmkonsole.mo -share/locale/de/LC_MESSAGES/kcmktalkd.mo -share/locale/de/LC_MESSAGES/kcmkurifilt.mo -share/locale/de/LC_MESSAGES/kcmkwindecoration.mo -share/locale/de/LC_MESSAGES/kcmkwintheme.mo -share/locale/de/LC_MESSAGES/kcmkwm.mo -share/locale/de/LC_MESSAGES/kcmlanbrowser.mo -share/locale/de/LC_MESSAGES/kcmlaptop.mo -share/locale/de/LC_MESSAGES/kcmlaunch.mo -share/locale/de/LC_MESSAGES/kcmlayout.mo -share/locale/de/LC_MESSAGES/kcmlilo.mo -share/locale/de/LC_MESSAGES/kcmlinuz.mo -share/locale/de/LC_MESSAGES/kcmlocale.mo -share/locale/de/LC_MESSAGES/kcmmidi.mo -share/locale/de/LC_MESSAGES/kcmnewsticker.mo -share/locale/de/LC_MESSAGES/kcmnotify.mo -share/locale/de/LC_MESSAGES/kcmsamba.mo -share/locale/de/LC_MESSAGES/kcmscreensaver.mo -share/locale/de/LC_MESSAGES/kcmsmserver.mo -share/locale/de/LC_MESSAGES/kcmsocks.mo -share/locale/de/LC_MESSAGES/kcmspellchecking.mo -share/locale/de/LC_MESSAGES/kcmstyle.mo -share/locale/de/LC_MESSAGES/kcmtaskbar.mo -share/locale/de/LC_MESSAGES/kcmthemes.mo -share/locale/de/LC_MESSAGES/kcmusb.mo -share/locale/de/LC_MESSAGES/kcoloredit.mo -share/locale/de/LC_MESSAGES/kcontrol.mo -share/locale/de/LC_MESSAGES/kcron.mo -share/locale/de/LC_MESSAGES/kdcop.mo -share/locale/de/LC_MESSAGES/kdebugdialog.mo -share/locale/de/LC_MESSAGES/kdelibs.mo -share/locale/de/LC_MESSAGES/kdepasswd.mo -share/locale/de/LC_MESSAGES/kdeprintfax.mo -share/locale/de/LC_MESSAGES/kdesktop.mo -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/kdevelop.mo -share/locale/de/LC_MESSAGES/kdevtipofday.mo -share/locale/de/LC_MESSAGES/kdf.mo -share/locale/de/LC_MESSAGES/kdict.mo -share/locale/de/LC_MESSAGES/kdictapplet.mo -share/locale/de/LC_MESSAGES/kdiff.mo -share/locale/de/LC_MESSAGES/kdmchooser.mo -share/locale/de/LC_MESSAGES/kdmconfig.mo -share/locale/de/LC_MESSAGES/kdmgreet.mo -share/locale/de/LC_MESSAGES/kdvi.mo -share/locale/de/LC_MESSAGES/kedit.mo -share/locale/de/LC_MESSAGES/keystone.mo -share/locale/de/LC_MESSAGES/kfax.mo -share/locale/de/LC_MESSAGES/kfifteenapplet.mo -share/locale/de/LC_MESSAGES/kfind.mo -share/locale/de/LC_MESSAGES/kfindpart.mo -share/locale/de/LC_MESSAGES/kfinger.mo -share/locale/de/LC_MESSAGES/kfloppy.mo -share/locale/de/LC_MESSAGES/kfmclient.mo -share/locale/de/LC_MESSAGES/kfmexec.mo -share/locale/de/LC_MESSAGES/kfontinst.mo -share/locale/de/LC_MESSAGES/kformeditor.mo -share/locale/de/LC_MESSAGES/kformviewer.mo -share/locale/de/LC_MESSAGES/kfract.mo -share/locale/de/LC_MESSAGES/kghostview.mo -share/locale/de/LC_MESSAGES/kglchess.mo -share/locale/de/LC_MESSAGES/kgrapher.mo -share/locale/de/LC_MESSAGES/khelpcenter.mo -share/locale/de/LC_MESSAGES/khexedit.mo -share/locale/de/LC_MESSAGES/khotkeys.mo -share/locale/de/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/de/LC_MESSAGES/kicker.mo -share/locale/de/LC_MESSAGES/kiconedit.mo -share/locale/de/LC_MESSAGES/kikbd.mo -share/locale/de/LC_MESSAGES/kim.mo -share/locale/de/LC_MESSAGES/kio_audiocd.mo -share/locale/de/LC_MESSAGES/kio_finger.mo -share/locale/de/LC_MESSAGES/kio_floppy.mo -share/locale/de/LC_MESSAGES/kio_help.mo -share/locale/de/LC_MESSAGES/kio_imap4.mo -share/locale/de/LC_MESSAGES/kio_lan.mo -share/locale/de/LC_MESSAGES/kio_man.mo -share/locale/de/LC_MESSAGES/kio_nfs.mo -share/locale/de/LC_MESSAGES/kio_nntp.mo -share/locale/de/LC_MESSAGES/kio_pop3.mo -share/locale/de/LC_MESSAGES/kio_smb.mo -share/locale/de/LC_MESSAGES/kio_smbro.mo -share/locale/de/LC_MESSAGES/kit.mo -share/locale/de/LC_MESSAGES/kjezz.mo -share/locale/de/LC_MESSAGES/kjobviewer.mo -share/locale/de/LC_MESSAGES/kjots.mo -share/locale/de/LC_MESSAGES/kjumpingcube.mo -share/locale/de/LC_MESSAGES/klaptopdaemon.mo -share/locale/de/LC_MESSAGES/klegacyimport.mo -share/locale/de/LC_MESSAGES/kless.mo -share/locale/de/LC_MESSAGES/klines.mo -share/locale/de/LC_MESSAGES/klipper.mo -share/locale/de/LC_MESSAGES/kljettool.mo -share/locale/de/LC_MESSAGES/klock.mo -share/locale/de/LC_MESSAGES/klpq.mo -share/locale/de/LC_MESSAGES/klprfax.mo -share/locale/de/LC_MESSAGES/kmahjongg.mo -share/locale/de/LC_MESSAGES/kmail.mo -share/locale/de/LC_MESSAGES/kmailcvt.mo -share/locale/de/LC_MESSAGES/kmenuedit.mo -share/locale/de/LC_MESSAGES/kmid.mo -share/locale/de/LC_MESSAGES/kmidi.mo -share/locale/de/LC_MESSAGES/kmines.mo -share/locale/de/LC_MESSAGES/kminipagerapplet.mo -share/locale/de/LC_MESSAGES/kmix.mo -share/locale/de/LC_MESSAGES/kmoon.mo -share/locale/de/LC_MESSAGES/knewsticker.mo -share/locale/de/LC_MESSAGES/knode.mo -share/locale/de/LC_MESSAGES/knotes.mo -share/locale/de/LC_MESSAGES/knotify.mo -share/locale/de/LC_MESSAGES/knu.mo -share/locale/de/LC_MESSAGES/kodo.mo -share/locale/de/LC_MESSAGES/kolourpicker.mo -share/locale/de/LC_MESSAGES/konqueror.mo -share/locale/de/LC_MESSAGES/konquest.mo -share/locale/de/LC_MESSAGES/konsole.mo -share/locale/de/LC_MESSAGES/kooka.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/kpager.mo -share/locale/de/LC_MESSAGES/kpaint.mo -share/locale/de/LC_MESSAGES/kpartapp.mo -share/locale/de/LC_MESSAGES/kpartsaver.mo -share/locale/de/LC_MESSAGES/kpat.mo -share/locale/de/LC_MESSAGES/kpersonalizer.mo -share/locale/de/LC_MESSAGES/kpilot.mo -share/locale/de/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/de/LC_MESSAGES/kpm.mo -share/locale/de/LC_MESSAGES/kpoker.mo -share/locale/de/LC_MESSAGES/kppp.mo -share/locale/de/LC_MESSAGES/kppplogview.mo -share/locale/de/LC_MESSAGES/kprinter.mo -share/locale/de/LC_MESSAGES/kreadconfig.mo -share/locale/de/LC_MESSAGES/kreversi.mo -share/locale/de/LC_MESSAGES/krn.mo -share/locale/de/LC_MESSAGES/kruler.mo -share/locale/de/LC_MESSAGES/krunapplet.mo -share/locale/de/LC_MESSAGES/ksame.mo -share/locale/de/LC_MESSAGES/kscd.mo -share/locale/de/LC_MESSAGES/kscoreapplet.mo -share/locale/de/LC_MESSAGES/kshisen.mo -share/locale/de/LC_MESSAGES/ksirc.mo -share/locale/de/LC_MESSAGES/ksirtet.mo -share/locale/de/LC_MESSAGES/ksmiletris.mo -share/locale/de/LC_MESSAGES/ksmserver.mo -share/locale/de/LC_MESSAGES/ksnake.mo -share/locale/de/LC_MESSAGES/ksnapshot.mo -share/locale/de/LC_MESSAGES/ksokoban.mo -share/locale/de/LC_MESSAGES/kspaceduel.mo -share/locale/de/LC_MESSAGES/ksplash.mo -share/locale/de/LC_MESSAGES/kstart.mo -share/locale/de/LC_MESSAGES/kstartperf.mo -share/locale/de/LC_MESSAGES/ksysctrl.mo -share/locale/de/LC_MESSAGES/ksysguard.mo -share/locale/de/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/de/LC_MESSAGES/ksysv.mo -share/locale/de/LC_MESSAGES/ktables.mo -share/locale/de/LC_MESSAGES/ktalk.mo -share/locale/de/LC_MESSAGES/ktalkd.mo -share/locale/de/LC_MESSAGES/ktaskbarapplet.mo -share/locale/de/LC_MESSAGES/kteatime.mo -share/locale/de/LC_MESSAGES/ktimemon.mo -share/locale/de/LC_MESSAGES/ktimer.mo -share/locale/de/LC_MESSAGES/ktip.mo -share/locale/de/LC_MESSAGES/ktouch.mo -share/locale/de/LC_MESSAGES/ktron.mo -share/locale/de/LC_MESSAGES/ktuberling.mo -share/locale/de/LC_MESSAGES/ktux.mo -share/locale/de/LC_MESSAGES/kuser.mo -share/locale/de/LC_MESSAGES/kvidmode.mo -share/locale/de/LC_MESSAGES/kview.mo -share/locale/de/LC_MESSAGES/kviewshell.mo -share/locale/de/LC_MESSAGES/kwin.mo -share/locale/de/LC_MESSAGES/kwin4.mo -share/locale/de/LC_MESSAGES/kworldclock.mo -share/locale/de/LC_MESSAGES/kwuftpd.mo -share/locale/de/LC_MESSAGES/kxkb.mo -share/locale/de/LC_MESSAGES/kxmlrpcd.mo -share/locale/de/LC_MESSAGES/kxsconfig.mo -share/locale/de/LC_MESSAGES/libkdegames.mo -share/locale/de/LC_MESSAGES/libkdenetwork.mo -share/locale/de/LC_MESSAGES/libkonq.mo -share/locale/de/LC_MESSAGES/libkscan.mo -share/locale/de/LC_MESSAGES/libkscreensaver.mo -share/locale/de/LC_MESSAGES/libkwindefault_config.mo -share/locale/de/LC_MESSAGES/libkwinicewm_config.mo -share/locale/de/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/de/LC_MESSAGES/libkwinquartz_config.mo -share/locale/de/LC_MESSAGES/libtaskbar.mo -share/locale/de/LC_MESSAGES/libtaskmanager.mo -share/locale/de/LC_MESSAGES/lskat.mo -share/locale/de/LC_MESSAGES/multiplayers.mo -share/locale/de/LC_MESSAGES/naughtyapplet.mo -share/locale/de/LC_MESSAGES/noatun.mo -share/locale/de/LC_MESSAGES/nsplugin.mo -share/locale/de/LC_MESSAGES/passwords.mo -share/locale/de/LC_MESSAGES/ppdtranslations.mo -share/locale/de/LC_MESSAGES/quicklauncher.mo -share/locale/de/LC_MESSAGES/secpolicy.mo -share/locale/de/LC_MESSAGES/spy.mo -share/locale/de/LC_MESSAGES/taskbarextension.mo -share/locale/de/LC_MESSAGES/twister.mo -share/locale/de/LC_MESSAGES/uachangerplugin.mo -share/locale/de/LC_MESSAGES/validatorsplugin.mo -share/locale/de/LC_MESSAGES/webarchiver.mo -share/locale/de/charset -share/locale/de/entry.desktop -share/locale/de/flag.png -share/locale/el/LC_MESSAGES/appletproxy.mo -share/locale/el/LC_MESSAGES/ark.mo -share/locale/el/LC_MESSAGES/childpanelextension.mo -share/locale/el/LC_MESSAGES/clockapplet.mo -share/locale/el/LC_MESSAGES/cupsdconf.mo -share/locale/el/LC_MESSAGES/desktop.mo -share/locale/el/LC_MESSAGES/drkonqi.mo -share/locale/el/LC_MESSAGES/filetypes.mo -share/locale/el/LC_MESSAGES/htmlsearch.mo -share/locale/el/LC_MESSAGES/kab.mo -share/locale/el/LC_MESSAGES/kaccess.mo -share/locale/el/LC_MESSAGES/kaddressbook.mo -share/locale/el/LC_MESSAGES/kappfinder.mo -share/locale/el/LC_MESSAGES/karm.mo -share/locale/el/LC_MESSAGES/kate.mo -share/locale/el/LC_MESSAGES/kcalc.mo -share/locale/el/LC_MESSAGES/kcmaccess.mo -share/locale/el/LC_MESSAGES/kcmarts.mo -share/locale/el/LC_MESSAGES/kcmaudiocd.mo -share/locale/el/LC_MESSAGES/kcmbackground.mo -share/locale/el/LC_MESSAGES/kcmbell.mo -share/locale/el/LC_MESSAGES/kcmcolors.mo -share/locale/el/LC_MESSAGES/kcmcrypto.mo -share/locale/el/LC_MESSAGES/kcmemail.mo -share/locale/el/LC_MESSAGES/kcmenergy.mo -share/locale/el/LC_MESSAGES/kcmfonts.mo -share/locale/el/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/el/LC_MESSAGES/kcmicons.mo -share/locale/el/LC_MESSAGES/kcminfo.mo -share/locale/el/LC_MESSAGES/kcminput.mo -share/locale/el/LC_MESSAGES/kcmkclock.mo -share/locale/el/LC_MESSAGES/kcmkeys.mo -share/locale/el/LC_MESSAGES/kcmkicker.mo -share/locale/el/LC_MESSAGES/kcmkio.mo -share/locale/el/LC_MESSAGES/kcmkonq.mo -share/locale/el/LC_MESSAGES/kcmkonqhtml.mo -share/locale/el/LC_MESSAGES/kcmkonsole.mo -share/locale/el/LC_MESSAGES/kcmkurifilt.mo -share/locale/el/LC_MESSAGES/kcmkwm.mo -share/locale/el/LC_MESSAGES/kcmlaunch.mo -share/locale/el/LC_MESSAGES/kcmlayout.mo -share/locale/el/LC_MESSAGES/kcmlocale.mo -share/locale/el/LC_MESSAGES/kcmmidi.mo -share/locale/el/LC_MESSAGES/kcmnotify.mo -share/locale/el/LC_MESSAGES/kcmsamba.mo -share/locale/el/LC_MESSAGES/kcmscreensaver.mo -share/locale/el/LC_MESSAGES/kcmsmserver.mo -share/locale/el/LC_MESSAGES/kcmsocks.mo -share/locale/el/LC_MESSAGES/kcmstyle.mo -share/locale/el/LC_MESSAGES/kcmtaskbar.mo -share/locale/el/LC_MESSAGES/kcmthemes.mo -share/locale/el/LC_MESSAGES/kcmusb.mo -share/locale/el/LC_MESSAGES/kcontrol.mo -share/locale/el/LC_MESSAGES/kdat.mo -share/locale/el/LC_MESSAGES/kdcop.mo -share/locale/el/LC_MESSAGES/kdebugdialog.mo -share/locale/el/LC_MESSAGES/kdelibs.mo -share/locale/el/LC_MESSAGES/kdesktop.mo -share/locale/el/LC_MESSAGES/kdesu.mo -share/locale/el/LC_MESSAGES/kdict.mo -share/locale/el/LC_MESSAGES/kdmconfig.mo -share/locale/el/LC_MESSAGES/kdmgreet.mo -share/locale/el/LC_MESSAGES/kdvi.mo -share/locale/el/LC_MESSAGES/kedit.mo -share/locale/el/LC_MESSAGES/kfax.mo -share/locale/el/LC_MESSAGES/kfind.mo -share/locale/el/LC_MESSAGES/kfloppy.mo -share/locale/el/LC_MESSAGES/kfmclient.mo -share/locale/el/LC_MESSAGES/kfmexec.mo -share/locale/el/LC_MESSAGES/kghostview.mo -share/locale/el/LC_MESSAGES/khelpcenter.mo -share/locale/el/LC_MESSAGES/khotkeys.mo -share/locale/el/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/el/LC_MESSAGES/kicker.mo -share/locale/el/LC_MESSAGES/kio_audiocd.mo -share/locale/el/LC_MESSAGES/kio_finger.mo -share/locale/el/LC_MESSAGES/kio_floppy.mo -share/locale/el/LC_MESSAGES/kio_help.mo -share/locale/el/LC_MESSAGES/kio_man.mo -share/locale/el/LC_MESSAGES/kio_nfs.mo -share/locale/el/LC_MESSAGES/kio_nntp.mo -share/locale/el/LC_MESSAGES/kio_pop3.mo -share/locale/el/LC_MESSAGES/kio_smb.mo -share/locale/el/LC_MESSAGES/kio_smbro.mo -share/locale/el/LC_MESSAGES/klipper.mo -share/locale/el/LC_MESSAGES/klock.mo -share/locale/el/LC_MESSAGES/kmahjongg.mo -share/locale/el/LC_MESSAGES/kmail.mo -share/locale/el/LC_MESSAGES/kmedia.mo -share/locale/el/LC_MESSAGES/kmenuedit.mo -share/locale/el/LC_MESSAGES/kminipagerapplet.mo -share/locale/el/LC_MESSAGES/kmix.mo -share/locale/el/LC_MESSAGES/knode.mo -share/locale/el/LC_MESSAGES/knotes.mo -share/locale/el/LC_MESSAGES/knotify.mo -share/locale/el/LC_MESSAGES/kolourpicker.mo -share/locale/el/LC_MESSAGES/konqueror.mo -share/locale/el/LC_MESSAGES/konsole.mo -share/locale/el/LC_MESSAGES/korn.mo -share/locale/el/LC_MESSAGES/kpackage.mo -share/locale/el/LC_MESSAGES/kpager.mo -share/locale/el/LC_MESSAGES/kpaint.mo -share/locale/el/LC_MESSAGES/kpersonalizer.mo -share/locale/el/LC_MESSAGES/kppp.mo -share/locale/el/LC_MESSAGES/kppplogview.mo -share/locale/el/LC_MESSAGES/krdb.mo -share/locale/el/LC_MESSAGES/kreversi.mo -share/locale/el/LC_MESSAGES/krunapplet.mo -share/locale/el/LC_MESSAGES/kscd.mo -share/locale/el/LC_MESSAGES/ksirc.mo -share/locale/el/LC_MESSAGES/ksmserver.mo -share/locale/el/LC_MESSAGES/ksnake.mo -share/locale/el/LC_MESSAGES/ksnapshot.mo -share/locale/el/LC_MESSAGES/ksplash.mo -share/locale/el/LC_MESSAGES/kstart.mo -share/locale/el/LC_MESSAGES/ksysguard.mo -share/locale/el/LC_MESSAGES/ktimemon.mo -share/locale/el/LC_MESSAGES/ktip.mo -share/locale/el/LC_MESSAGES/kwin.mo -share/locale/el/LC_MESSAGES/kxkb.mo -share/locale/el/LC_MESSAGES/kxmlrpcd.mo -share/locale/el/LC_MESSAGES/kxsconfig.mo -share/locale/el/LC_MESSAGES/libkdenetwork.mo -share/locale/el/LC_MESSAGES/libkonq.mo -share/locale/el/LC_MESSAGES/naughtyapplet.mo -share/locale/el/LC_MESSAGES/nsplugin.mo -share/locale/el/LC_MESSAGES/passwords.mo -share/locale/el/LC_MESSAGES/quicklauncher.mo -share/locale/el/charset -share/locale/el/entry.desktop -share/locale/el/flag.png -share/locale/en_GB/LC_MESSAGES/aktion.mo -share/locale/en_GB/LC_MESSAGES/amor.mo -share/locale/en_GB/LC_MESSAGES/appletproxy.mo -share/locale/en_GB/LC_MESSAGES/ark.mo -share/locale/en_GB/LC_MESSAGES/artsbuilder.mo -share/locale/en_GB/LC_MESSAGES/artscontrol.mo -share/locale/en_GB/LC_MESSAGES/babelfish.mo -share/locale/en_GB/LC_MESSAGES/caitoo.mo -share/locale/en_GB/LC_MESSAGES/childpanelextension.mo -share/locale/en_GB/LC_MESSAGES/clockapplet.mo -share/locale/en_GB/LC_MESSAGES/colfind.mo -share/locale/en_GB/LC_MESSAGES/columbo.mo -share/locale/en_GB/LC_MESSAGES/cookbook.mo -share/locale/en_GB/LC_MESSAGES/cupsdconf.mo -share/locale/en_GB/LC_MESSAGES/desktop.mo -share/locale/en_GB/LC_MESSAGES/devcenter.mo -share/locale/en_GB/LC_MESSAGES/dirfilterplugin.mo -share/locale/en_GB/LC_MESSAGES/domtreeviewer.mo -share/locale/en_GB/LC_MESSAGES/drkonqi.mo -share/locale/en_GB/LC_MESSAGES/empath.mo -share/locale/en_GB/LC_MESSAGES/extensionproxy.mo -share/locale/en_GB/LC_MESSAGES/filetypes.mo -share/locale/en_GB/LC_MESSAGES/gideon.mo -share/locale/en_GB/LC_MESSAGES/gofai.mo -share/locale/en_GB/LC_MESSAGES/htmlsearch.mo -share/locale/en_GB/LC_MESSAGES/imgalleryplugin.mo -share/locale/en_GB/LC_MESSAGES/kab.mo -share/locale/en_GB/LC_MESSAGES/kabalone.mo -share/locale/en_GB/LC_MESSAGES/kaboodle.mo -share/locale/en_GB/LC_MESSAGES/kaccess.mo -share/locale/en_GB/LC_MESSAGES/kaddressbook.mo -share/locale/en_GB/LC_MESSAGES/kafka.mo -share/locale/en_GB/LC_MESSAGES/kandy.mo -share/locale/en_GB/LC_MESSAGES/kappfinder.mo -share/locale/en_GB/LC_MESSAGES/karchie.mo -share/locale/en_GB/LC_MESSAGES/karchiver.mo -share/locale/en_GB/LC_MESSAGES/karm.mo -share/locale/en_GB/LC_MESSAGES/kasbarextension.mo -share/locale/en_GB/LC_MESSAGES/kasteroids.mo -share/locale/en_GB/LC_MESSAGES/katalog.mo -share/locale/en_GB/LC_MESSAGES/kate.mo -share/locale/en_GB/LC_MESSAGES/katehtmltools.mo -share/locale/en_GB/LC_MESSAGES/kateinsertcommand.mo -share/locale/en_GB/LC_MESSAGES/katomic.mo -share/locale/en_GB/LC_MESSAGES/kautorun.mo -share/locale/en_GB/LC_MESSAGES/kbabel.mo -share/locale/en_GB/LC_MESSAGES/kbackgammon.mo -share/locale/en_GB/LC_MESSAGES/kbattleship.mo -share/locale/en_GB/LC_MESSAGES/kbiff.mo -share/locale/en_GB/LC_MESSAGES/kblackbox.mo -share/locale/en_GB/LC_MESSAGES/kbugbuster.mo -share/locale/en_GB/LC_MESSAGES/kcalc.mo -share/locale/en_GB/LC_MESSAGES/kcharselect.mo -share/locale/en_GB/LC_MESSAGES/kcharselectapplet.mo -share/locale/en_GB/LC_MESSAGES/kcm_scsimanager.mo -share/locale/en_GB/LC_MESSAGES/kcmaccess.mo -share/locale/en_GB/LC_MESSAGES/kcmail.mo -share/locale/en_GB/LC_MESSAGES/kcmarts.mo -share/locale/en_GB/LC_MESSAGES/kcmaudiocd.mo -share/locale/en_GB/LC_MESSAGES/kcmbackground.mo -share/locale/en_GB/LC_MESSAGES/kcmbell.mo -share/locale/en_GB/LC_MESSAGES/kcmbind.mo -share/locale/en_GB/LC_MESSAGES/kcmcolors.mo -share/locale/en_GB/LC_MESSAGES/kcmcrypto.mo -share/locale/en_GB/LC_MESSAGES/kcmcss.mo -share/locale/en_GB/LC_MESSAGES/kcmdhcpd.mo -share/locale/en_GB/LC_MESSAGES/kcmemail.mo -share/locale/en_GB/LC_MESSAGES/kcmenergy.mo -share/locale/en_GB/LC_MESSAGES/kcmfonts.mo -share/locale/en_GB/LC_MESSAGES/kcmgofai.mo -share/locale/en_GB/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/en_GB/LC_MESSAGES/kcmicons.mo -share/locale/en_GB/LC_MESSAGES/kcminfo.mo -share/locale/en_GB/LC_MESSAGES/kcminput.mo -share/locale/en_GB/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/en_GB/LC_MESSAGES/kcmiwatcher.mo -share/locale/en_GB/LC_MESSAGES/kcmkamera.mo -share/locale/en_GB/LC_MESSAGES/kcmkclock.mo -share/locale/en_GB/LC_MESSAGES/kcmkdb.mo -share/locale/en_GB/LC_MESSAGES/kcmkeys.mo -share/locale/en_GB/LC_MESSAGES/kcmkicker.mo -share/locale/en_GB/LC_MESSAGES/kcmkio.mo -share/locale/en_GB/LC_MESSAGES/kcmkmix.mo -share/locale/en_GB/LC_MESSAGES/kcmkonq.mo -share/locale/en_GB/LC_MESSAGES/kcmkonqhtml.mo -share/locale/en_GB/LC_MESSAGES/kcmkonsole.mo -share/locale/en_GB/LC_MESSAGES/kcmktalkd.mo -share/locale/en_GB/LC_MESSAGES/kcmkurifilt.mo -share/locale/en_GB/LC_MESSAGES/kcmkwindecoration.mo -share/locale/en_GB/LC_MESSAGES/kcmkwintheme.mo -share/locale/en_GB/LC_MESSAGES/kcmkwm.mo -share/locale/en_GB/LC_MESSAGES/kcmlanbrowser.mo -share/locale/en_GB/LC_MESSAGES/kcmlaptop.mo -share/locale/en_GB/LC_MESSAGES/kcmlaunch.mo -share/locale/en_GB/LC_MESSAGES/kcmlayout.mo -share/locale/en_GB/LC_MESSAGES/kcmlilo.mo -share/locale/en_GB/LC_MESSAGES/kcmlinuz.mo -share/locale/en_GB/LC_MESSAGES/kcmlocale.mo -share/locale/en_GB/LC_MESSAGES/kcmmediacontrol.mo -share/locale/en_GB/LC_MESSAGES/kcmmidi.mo -share/locale/en_GB/LC_MESSAGES/kcmnapster.mo -share/locale/en_GB/LC_MESSAGES/kcmnewsticker.mo -share/locale/en_GB/LC_MESSAGES/kcmnotify.mo -share/locale/en_GB/LC_MESSAGES/kcmodbc.mo -share/locale/en_GB/LC_MESSAGES/kcmsamba.mo -share/locale/en_GB/LC_MESSAGES/kcmscreensaver.mo -share/locale/en_GB/LC_MESSAGES/kcmsmserver.mo -share/locale/en_GB/LC_MESSAGES/kcmsocks.mo -share/locale/en_GB/LC_MESSAGES/kcmspellchecking.mo -share/locale/en_GB/LC_MESSAGES/kcmstyle.mo -share/locale/en_GB/LC_MESSAGES/kcmtaskbar.mo -share/locale/en_GB/LC_MESSAGES/kcmthemes.mo -share/locale/en_GB/LC_MESSAGES/kcmusb.mo -share/locale/en_GB/LC_MESSAGES/kcmuserenv.mo -share/locale/en_GB/LC_MESSAGES/kcoloredit.mo -share/locale/en_GB/LC_MESSAGES/kcontrol.mo -share/locale/en_GB/LC_MESSAGES/kcron.mo -share/locale/en_GB/LC_MESSAGES/kdao.mo -share/locale/en_GB/LC_MESSAGES/kdbbrowser.mo -share/locale/en_GB/LC_MESSAGES/kdcop.mo -share/locale/en_GB/LC_MESSAGES/kdebugdialog.mo -share/locale/en_GB/LC_MESSAGES/kdelibs.mo -share/locale/en_GB/LC_MESSAGES/kdepasswd.mo -share/locale/en_GB/LC_MESSAGES/kdeprintfax.mo -share/locale/en_GB/LC_MESSAGES/kdesktop.mo -share/locale/en_GB/LC_MESSAGES/kdessh.mo -share/locale/en_GB/LC_MESSAGES/kdestdifacedemo.mo -share/locale/en_GB/LC_MESSAGES/kdesu.mo -share/locale/en_GB/LC_MESSAGES/kdesud.mo -share/locale/en_GB/LC_MESSAGES/kdevelop.mo -share/locale/en_GB/LC_MESSAGES/kdevtipofday.mo -share/locale/en_GB/LC_MESSAGES/kdf.mo -share/locale/en_GB/LC_MESSAGES/kdict.mo -share/locale/en_GB/LC_MESSAGES/kdictapplet.mo -share/locale/en_GB/LC_MESSAGES/kdiff.mo -share/locale/en_GB/LC_MESSAGES/kdmchooser.mo -share/locale/en_GB/LC_MESSAGES/kdmconfig.mo -share/locale/en_GB/LC_MESSAGES/kdmgreet.mo -share/locale/en_GB/LC_MESSAGES/kdvi.mo -share/locale/en_GB/LC_MESSAGES/kedit.mo -share/locale/en_GB/LC_MESSAGES/keystone.mo -share/locale/en_GB/LC_MESSAGES/kfax.mo -share/locale/en_GB/LC_MESSAGES/kfifteenapplet.mo -share/locale/en_GB/LC_MESSAGES/kfind.mo -share/locale/en_GB/LC_MESSAGES/kfindpart.mo -share/locale/en_GB/LC_MESSAGES/kfinger.mo -share/locale/en_GB/LC_MESSAGES/kfloppy.mo -share/locale/en_GB/LC_MESSAGES/kfmclient.mo -share/locale/en_GB/LC_MESSAGES/kfmexec.mo -share/locale/en_GB/LC_MESSAGES/kfontinst.mo -share/locale/en_GB/LC_MESSAGES/kformeditor.mo -share/locale/en_GB/LC_MESSAGES/kformviewer.mo -share/locale/en_GB/LC_MESSAGES/kfortune.mo -share/locale/en_GB/LC_MESSAGES/kfourtune.mo -share/locale/en_GB/LC_MESSAGES/kfract.mo -share/locale/en_GB/LC_MESSAGES/kghostview.mo -share/locale/en_GB/LC_MESSAGES/kglchess.mo -share/locale/en_GB/LC_MESSAGES/kgnuplot.mo -share/locale/en_GB/LC_MESSAGES/kgrapher.mo -share/locale/en_GB/LC_MESSAGES/khelpcenter.mo -share/locale/en_GB/LC_MESSAGES/khexedit.mo -share/locale/en_GB/LC_MESSAGES/khotkeys.mo -share/locale/en_GB/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/en_GB/LC_MESSAGES/kicker.mo -share/locale/en_GB/LC_MESSAGES/kiconedit.mo -share/locale/en_GB/LC_MESSAGES/kicq.mo -share/locale/en_GB/LC_MESSAGES/kikbd.mo -share/locale/en_GB/LC_MESSAGES/kim.mo -share/locale/en_GB/LC_MESSAGES/kio_audiocd.mo -share/locale/en_GB/LC_MESSAGES/kio_finger.mo -share/locale/en_GB/LC_MESSAGES/kio_floppy.mo -share/locale/en_GB/LC_MESSAGES/kio_help.mo -share/locale/en_GB/LC_MESSAGES/kio_imap4.mo -share/locale/en_GB/LC_MESSAGES/kio_lan.mo -share/locale/en_GB/LC_MESSAGES/kio_man.mo -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_smb.mo -share/locale/en_GB/LC_MESSAGES/kio_smbro.mo -share/locale/en_GB/LC_MESSAGES/kit.mo -share/locale/en_GB/LC_MESSAGES/kjezz.mo -share/locale/en_GB/LC_MESSAGES/kjobviewer.mo -share/locale/en_GB/LC_MESSAGES/kjots.mo -share/locale/en_GB/LC_MESSAGES/kjumpingcube.mo -share/locale/en_GB/LC_MESSAGES/klaptopdaemon.mo -share/locale/en_GB/LC_MESSAGES/klegacyimport.mo -share/locale/en_GB/LC_MESSAGES/kless.mo -share/locale/en_GB/LC_MESSAGES/klines.mo -share/locale/en_GB/LC_MESSAGES/klipper.mo -share/locale/en_GB/LC_MESSAGES/kljettool.mo -share/locale/en_GB/LC_MESSAGES/klock.mo -share/locale/en_GB/LC_MESSAGES/klpq.mo -share/locale/en_GB/LC_MESSAGES/klprfax.mo -share/locale/en_GB/LC_MESSAGES/kmahjongg.mo -share/locale/en_GB/LC_MESSAGES/kmail.mo -share/locale/en_GB/LC_MESSAGES/kmailcvt.mo -share/locale/en_GB/LC_MESSAGES/kmake.mo -share/locale/en_GB/LC_MESSAGES/kmenuedit.mo -share/locale/en_GB/LC_MESSAGES/kmessage.mo -share/locale/en_GB/LC_MESSAGES/kmid.mo -share/locale/en_GB/LC_MESSAGES/kmidi.mo -share/locale/en_GB/LC_MESSAGES/kmines.mo -share/locale/en_GB/LC_MESSAGES/kminipagerapplet.mo -share/locale/en_GB/LC_MESSAGES/kmix.mo -share/locale/en_GB/LC_MESSAGES/kmms.mo -share/locale/en_GB/LC_MESSAGES/kmonop.mo -share/locale/en_GB/LC_MESSAGES/kmoon.mo -share/locale/en_GB/LC_MESSAGES/knetmgr.mo -share/locale/en_GB/LC_MESSAGES/knewsticker.mo -share/locale/en_GB/LC_MESSAGES/knode.mo -share/locale/en_GB/LC_MESSAGES/knotes.mo -share/locale/en_GB/LC_MESSAGES/knotify.mo -share/locale/en_GB/LC_MESSAGES/knu.mo -share/locale/en_GB/LC_MESSAGES/kodo.mo -share/locale/en_GB/LC_MESSAGES/kolourpicker.mo -share/locale/en_GB/LC_MESSAGES/konqueror.mo -share/locale/en_GB/LC_MESSAGES/konquest.mo -share/locale/en_GB/LC_MESSAGES/konsole.mo -share/locale/en_GB/LC_MESSAGES/konv.mo -share/locale/en_GB/LC_MESSAGES/kooka.mo -share/locale/en_GB/LC_MESSAGES/kopennap.mo -share/locale/en_GB/LC_MESSAGES/korganizer.mo -share/locale/en_GB/LC_MESSAGES/korn.mo -share/locale/en_GB/LC_MESSAGES/kp.mo -share/locale/en_GB/LC_MESSAGES/kpackage.mo -share/locale/en_GB/LC_MESSAGES/kpager.mo -share/locale/en_GB/LC_MESSAGES/kpaint.mo -share/locale/en_GB/LC_MESSAGES/kpartapp.mo -share/locale/en_GB/LC_MESSAGES/kpartsaver.mo -share/locale/en_GB/LC_MESSAGES/kpat.mo -share/locale/en_GB/LC_MESSAGES/kpersonalizer.mo -share/locale/en_GB/LC_MESSAGES/kphone.mo -share/locale/en_GB/LC_MESSAGES/kpilot.mo -share/locale/en_GB/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/en_GB/LC_MESSAGES/kpm.mo -share/locale/en_GB/LC_MESSAGES/kpoker.mo -share/locale/en_GB/LC_MESSAGES/kpovmodeler.mo -share/locale/en_GB/LC_MESSAGES/kppp.mo -share/locale/en_GB/LC_MESSAGES/kppplogview.mo -share/locale/en_GB/LC_MESSAGES/kprinter.mo -share/locale/en_GB/LC_MESSAGES/kreadconfig.mo -share/locale/en_GB/LC_MESSAGES/kreversi.mo -share/locale/en_GB/LC_MESSAGES/krn.mo -share/locale/en_GB/LC_MESSAGES/kruler.mo -share/locale/en_GB/LC_MESSAGES/krunapplet.mo -share/locale/en_GB/LC_MESSAGES/ksame.mo -share/locale/en_GB/LC_MESSAGES/kscd.mo -share/locale/en_GB/LC_MESSAGES/kscoreapplet.mo -share/locale/en_GB/LC_MESSAGES/kshisen.mo -share/locale/en_GB/LC_MESSAGES/ksirc.mo -share/locale/en_GB/LC_MESSAGES/ksirtet.mo -share/locale/en_GB/LC_MESSAGES/ksmiletris.mo -share/locale/en_GB/LC_MESSAGES/ksmserver.mo -share/locale/en_GB/LC_MESSAGES/ksnake.mo -share/locale/en_GB/LC_MESSAGES/ksnapshot.mo -share/locale/en_GB/LC_MESSAGES/ksokoban.mo -share/locale/en_GB/LC_MESSAGES/kspaceduel.mo -share/locale/en_GB/LC_MESSAGES/ksplash.mo -share/locale/en_GB/LC_MESSAGES/kstart.mo -share/locale/en_GB/LC_MESSAGES/kstartperf.mo -share/locale/en_GB/LC_MESSAGES/kstockticker.mo -share/locale/en_GB/LC_MESSAGES/ksysctrl.mo -share/locale/en_GB/LC_MESSAGES/ksysguard.mo -share/locale/en_GB/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/en_GB/LC_MESSAGES/ksystrayproxy.mo -share/locale/en_GB/LC_MESSAGES/ksysv.mo -share/locale/en_GB/LC_MESSAGES/ktables.mo -share/locale/en_GB/LC_MESSAGES/ktalk.mo -share/locale/en_GB/LC_MESSAGES/ktalkd.mo -share/locale/en_GB/LC_MESSAGES/ktaskbarapplet.mo -share/locale/en_GB/LC_MESSAGES/kteatime.mo -share/locale/en_GB/LC_MESSAGES/ktimemon.mo -share/locale/en_GB/LC_MESSAGES/ktimer.mo -share/locale/en_GB/LC_MESSAGES/ktip.mo -share/locale/en_GB/LC_MESSAGES/ktouch.mo -share/locale/en_GB/LC_MESSAGES/ktron.mo -share/locale/en_GB/LC_MESSAGES/ktuberling.mo -share/locale/en_GB/LC_MESSAGES/ktux.mo -share/locale/en_GB/LC_MESSAGES/kuser.mo -share/locale/en_GB/LC_MESSAGES/kvidmode.mo -share/locale/en_GB/LC_MESSAGES/kview.mo -share/locale/en_GB/LC_MESSAGES/kviewshell.mo -share/locale/en_GB/LC_MESSAGES/kwebstat.mo -share/locale/en_GB/LC_MESSAGES/kwin.mo -share/locale/en_GB/LC_MESSAGES/kwin4.mo -share/locale/en_GB/LC_MESSAGES/kwintv.mo -share/locale/en_GB/LC_MESSAGES/kwiz.mo -share/locale/en_GB/LC_MESSAGES/kworldclock.mo -share/locale/en_GB/LC_MESSAGES/kwuftpd.mo -share/locale/en_GB/LC_MESSAGES/kxkb.mo -share/locale/en_GB/LC_MESSAGES/kxmlrpcd.mo -share/locale/en_GB/LC_MESSAGES/kxsconfig.mo -share/locale/en_GB/LC_MESSAGES/libkdegames.mo -share/locale/en_GB/LC_MESSAGES/libkdenetwork.mo -share/locale/en_GB/LC_MESSAGES/libkonq.mo -share/locale/en_GB/LC_MESSAGES/libkscan.mo -share/locale/en_GB/LC_MESSAGES/libkscreensaver.mo -share/locale/en_GB/LC_MESSAGES/libkwindefault_config.mo -share/locale/en_GB/LC_MESSAGES/libkwinicewm_config.mo -share/locale/en_GB/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/en_GB/LC_MESSAGES/libkwinquartz_config.mo -share/locale/en_GB/LC_MESSAGES/libtaskbar.mo -share/locale/en_GB/LC_MESSAGES/libtaskmanager.mo -share/locale/en_GB/LC_MESSAGES/lskat.mo -share/locale/en_GB/LC_MESSAGES/mediacontrol.mo -share/locale/en_GB/LC_MESSAGES/multiplayers.mo -share/locale/en_GB/LC_MESSAGES/naughtyapplet.mo -share/locale/en_GB/LC_MESSAGES/noatun.mo -share/locale/en_GB/LC_MESSAGES/nsplugin.mo -share/locale/en_GB/LC_MESSAGES/passwords.mo -share/locale/en_GB/LC_MESSAGES/ppdtranslations.mo -share/locale/en_GB/LC_MESSAGES/pws.mo -share/locale/en_GB/LC_MESSAGES/quicklauncher.mo -share/locale/en_GB/LC_MESSAGES/secpolicy.mo -share/locale/en_GB/LC_MESSAGES/spy.mo -share/locale/en_GB/LC_MESSAGES/taskbarextension.mo -share/locale/en_GB/LC_MESSAGES/twister.mo -share/locale/en_GB/LC_MESSAGES/uachangerplugin.mo -share/locale/en_GB/LC_MESSAGES/validatorsplugin.mo -share/locale/en_GB/LC_MESSAGES/webarchiver.mo -share/locale/en_GB/charset -share/locale/en_GB/entry.desktop -share/locale/en_GB/flag.png -share/locale/eo/LC_MESSAGES/aktion.mo -share/locale/eo/LC_MESSAGES/amor.mo -share/locale/eo/LC_MESSAGES/appletproxy.mo -share/locale/eo/LC_MESSAGES/ark.mo -share/locale/eo/LC_MESSAGES/artsbuilder.mo -share/locale/eo/LC_MESSAGES/artscontrol.mo -share/locale/eo/LC_MESSAGES/babelfish.mo -share/locale/eo/LC_MESSAGES/childpanelextension.mo -share/locale/eo/LC_MESSAGES/clockapplet.mo -share/locale/eo/LC_MESSAGES/cupsdconf.mo -share/locale/eo/LC_MESSAGES/desktop.mo -share/locale/eo/LC_MESSAGES/dirfilterplugin.mo -share/locale/eo/LC_MESSAGES/domtreeviewer.mo -share/locale/eo/LC_MESSAGES/drkonqi.mo -share/locale/eo/LC_MESSAGES/extensionproxy.mo -share/locale/eo/LC_MESSAGES/filetypes.mo -share/locale/eo/LC_MESSAGES/htmlsearch.mo -share/locale/eo/LC_MESSAGES/imgalleryplugin.mo -share/locale/eo/LC_MESSAGES/kab.mo -share/locale/eo/LC_MESSAGES/kabalone.mo -share/locale/eo/LC_MESSAGES/kaccess.mo -share/locale/eo/LC_MESSAGES/kaddressbook.mo -share/locale/eo/LC_MESSAGES/kappfinder.mo -share/locale/eo/LC_MESSAGES/karm.mo -share/locale/eo/LC_MESSAGES/kasbarextension.mo -share/locale/eo/LC_MESSAGES/kasteroids.mo -share/locale/eo/LC_MESSAGES/kate.mo -share/locale/eo/LC_MESSAGES/katomic.mo -share/locale/eo/LC_MESSAGES/kbackgammon.mo -share/locale/eo/LC_MESSAGES/kbattleship.mo -share/locale/eo/LC_MESSAGES/kblackbox.mo -share/locale/eo/LC_MESSAGES/kcalc.mo -share/locale/eo/LC_MESSAGES/kcharselect.mo -share/locale/eo/LC_MESSAGES/kcharselectapplet.mo -share/locale/eo/LC_MESSAGES/kcmaccess.mo -share/locale/eo/LC_MESSAGES/kcmarts.mo -share/locale/eo/LC_MESSAGES/kcmaudiocd.mo -share/locale/eo/LC_MESSAGES/kcmbackground.mo -share/locale/eo/LC_MESSAGES/kcmbell.mo -share/locale/eo/LC_MESSAGES/kcmcolors.mo -share/locale/eo/LC_MESSAGES/kcmcrypto.mo -share/locale/eo/LC_MESSAGES/kcmcss.mo -share/locale/eo/LC_MESSAGES/kcmemail.mo -share/locale/eo/LC_MESSAGES/kcmenergy.mo -share/locale/eo/LC_MESSAGES/kcmfonts.mo -share/locale/eo/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/eo/LC_MESSAGES/kcmicons.mo -share/locale/eo/LC_MESSAGES/kcminfo.mo -share/locale/eo/LC_MESSAGES/kcminput.mo -share/locale/eo/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/eo/LC_MESSAGES/kcmkamera.mo -share/locale/eo/LC_MESSAGES/kcmkclock.mo -share/locale/eo/LC_MESSAGES/kcmkdb.mo -share/locale/eo/LC_MESSAGES/kcmkeys.mo -share/locale/eo/LC_MESSAGES/kcmkicker.mo -share/locale/eo/LC_MESSAGES/kcmkio.mo -share/locale/eo/LC_MESSAGES/kcmkmix.mo -share/locale/eo/LC_MESSAGES/kcmkonq.mo -share/locale/eo/LC_MESSAGES/kcmkonqhtml.mo -share/locale/eo/LC_MESSAGES/kcmkonsole.mo -share/locale/eo/LC_MESSAGES/kcmktalkd.mo -share/locale/eo/LC_MESSAGES/kcmkurifilt.mo -share/locale/eo/LC_MESSAGES/kcmkwindecoration.mo -share/locale/eo/LC_MESSAGES/kcmkwintheme.mo -share/locale/eo/LC_MESSAGES/kcmkwm.mo -share/locale/eo/LC_MESSAGES/kcmlanbrowser.mo -share/locale/eo/LC_MESSAGES/kcmlaptop.mo -share/locale/eo/LC_MESSAGES/kcmlaunch.mo -share/locale/eo/LC_MESSAGES/kcmlayout.mo -share/locale/eo/LC_MESSAGES/kcmlilo.mo -share/locale/eo/LC_MESSAGES/kcmlinuz.mo -share/locale/eo/LC_MESSAGES/kcmlocale.mo -share/locale/eo/LC_MESSAGES/kcmmidi.mo -share/locale/eo/LC_MESSAGES/kcmnewsticker.mo -share/locale/eo/LC_MESSAGES/kcmnotify.mo -share/locale/eo/LC_MESSAGES/kcmsamba.mo -share/locale/eo/LC_MESSAGES/kcmscreensaver.mo -share/locale/eo/LC_MESSAGES/kcmsmserver.mo -share/locale/eo/LC_MESSAGES/kcmsocks.mo -share/locale/eo/LC_MESSAGES/kcmspellchecking.mo -share/locale/eo/LC_MESSAGES/kcmstyle.mo -share/locale/eo/LC_MESSAGES/kcmtaskbar.mo -share/locale/eo/LC_MESSAGES/kcmthemes.mo -share/locale/eo/LC_MESSAGES/kcmusb.mo -share/locale/eo/LC_MESSAGES/kcoloredit.mo -share/locale/eo/LC_MESSAGES/kcontrol.mo -share/locale/eo/LC_MESSAGES/kcron.mo -share/locale/eo/LC_MESSAGES/kdcop.mo -share/locale/eo/LC_MESSAGES/kdebugdialog.mo -share/locale/eo/LC_MESSAGES/kdelibs.mo -share/locale/eo/LC_MESSAGES/kdepasswd.mo -share/locale/eo/LC_MESSAGES/kdeprintfax.mo -share/locale/eo/LC_MESSAGES/kdesktop.mo -share/locale/eo/LC_MESSAGES/kdessh.mo -share/locale/eo/LC_MESSAGES/kdesu.mo -share/locale/eo/LC_MESSAGES/kdesud.mo -share/locale/eo/LC_MESSAGES/kdf.mo -share/locale/eo/LC_MESSAGES/kdict.mo -share/locale/eo/LC_MESSAGES/kdictapplet.mo -share/locale/eo/LC_MESSAGES/kdmchooser.mo -share/locale/eo/LC_MESSAGES/kdmconfig.mo -share/locale/eo/LC_MESSAGES/kdmgreet.mo -share/locale/eo/LC_MESSAGES/kdvi.mo -share/locale/eo/LC_MESSAGES/kedit.mo -share/locale/eo/LC_MESSAGES/kfax.mo -share/locale/eo/LC_MESSAGES/kfifteenapplet.mo -share/locale/eo/LC_MESSAGES/kfind.mo -share/locale/eo/LC_MESSAGES/kfindpart.mo -share/locale/eo/LC_MESSAGES/kfloppy.mo -share/locale/eo/LC_MESSAGES/kfmclient.mo -share/locale/eo/LC_MESSAGES/kfmexec.mo -share/locale/eo/LC_MESSAGES/kfract.mo -share/locale/eo/LC_MESSAGES/kghostview.mo -share/locale/eo/LC_MESSAGES/khelpcenter.mo -share/locale/eo/LC_MESSAGES/khexedit.mo -share/locale/eo/LC_MESSAGES/khotkeys.mo -share/locale/eo/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/eo/LC_MESSAGES/kicker.mo -share/locale/eo/LC_MESSAGES/kiconedit.mo -share/locale/eo/LC_MESSAGES/kio_audiocd.mo -share/locale/eo/LC_MESSAGES/kio_finger.mo -share/locale/eo/LC_MESSAGES/kio_floppy.mo -share/locale/eo/LC_MESSAGES/kio_help.mo -share/locale/eo/LC_MESSAGES/kio_imap4.mo -share/locale/eo/LC_MESSAGES/kio_lan.mo -share/locale/eo/LC_MESSAGES/kio_man.mo -share/locale/eo/LC_MESSAGES/kio_nfs.mo -share/locale/eo/LC_MESSAGES/kio_nntp.mo -share/locale/eo/LC_MESSAGES/kio_pop3.mo -share/locale/eo/LC_MESSAGES/kio_smb.mo -share/locale/eo/LC_MESSAGES/kio_smbro.mo -share/locale/eo/LC_MESSAGES/kit.mo -share/locale/eo/LC_MESSAGES/kjezz.mo -share/locale/eo/LC_MESSAGES/kjobviewer.mo -share/locale/eo/LC_MESSAGES/kjots.mo -share/locale/eo/LC_MESSAGES/kjumpingcube.mo -share/locale/eo/LC_MESSAGES/klaptopdaemon.mo -share/locale/eo/LC_MESSAGES/klegacyimport.mo -share/locale/eo/LC_MESSAGES/klines.mo -share/locale/eo/LC_MESSAGES/klipper.mo -share/locale/eo/LC_MESSAGES/kljettool.mo -share/locale/eo/LC_MESSAGES/klock.mo -share/locale/eo/LC_MESSAGES/klpq.mo -share/locale/eo/LC_MESSAGES/klprfax.mo -share/locale/eo/LC_MESSAGES/kmahjongg.mo -share/locale/eo/LC_MESSAGES/kmail.mo -share/locale/eo/LC_MESSAGES/kmailcvt.mo -share/locale/eo/LC_MESSAGES/kmenuedit.mo -share/locale/eo/LC_MESSAGES/kmid.mo -share/locale/eo/LC_MESSAGES/kmidi.mo -share/locale/eo/LC_MESSAGES/kmines.mo -share/locale/eo/LC_MESSAGES/kminipagerapplet.mo -share/locale/eo/LC_MESSAGES/kmix.mo -share/locale/eo/LC_MESSAGES/kmoon.mo -share/locale/eo/LC_MESSAGES/knewsticker.mo -share/locale/eo/LC_MESSAGES/knode.mo -share/locale/eo/LC_MESSAGES/knotes.mo -share/locale/eo/LC_MESSAGES/knotify.mo -share/locale/eo/LC_MESSAGES/kodo.mo -share/locale/eo/LC_MESSAGES/kolourpicker.mo -share/locale/eo/LC_MESSAGES/konqueror.mo -share/locale/eo/LC_MESSAGES/konquest.mo -share/locale/eo/LC_MESSAGES/konsole.mo -share/locale/eo/LC_MESSAGES/kooka.mo -share/locale/eo/LC_MESSAGES/korn.mo -share/locale/eo/LC_MESSAGES/kpackage.mo -share/locale/eo/LC_MESSAGES/kpager.mo -share/locale/eo/LC_MESSAGES/kpaint.mo -share/locale/eo/LC_MESSAGES/kpartapp.mo -share/locale/eo/LC_MESSAGES/kpartsaver.mo -share/locale/eo/LC_MESSAGES/kpat.mo -share/locale/eo/LC_MESSAGES/kpersonalizer.mo -share/locale/eo/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/eo/LC_MESSAGES/kpm.mo -share/locale/eo/LC_MESSAGES/kpoker.mo -share/locale/eo/LC_MESSAGES/kppp.mo -share/locale/eo/LC_MESSAGES/kppplogview.mo -share/locale/eo/LC_MESSAGES/kprinter.mo -share/locale/eo/LC_MESSAGES/kreadconfig.mo -share/locale/eo/LC_MESSAGES/kreversi.mo -share/locale/eo/LC_MESSAGES/kruler.mo -share/locale/eo/LC_MESSAGES/krunapplet.mo -share/locale/eo/LC_MESSAGES/ksame.mo -share/locale/eo/LC_MESSAGES/kscd.mo -share/locale/eo/LC_MESSAGES/kscoreapplet.mo -share/locale/eo/LC_MESSAGES/kshisen.mo -share/locale/eo/LC_MESSAGES/ksirc.mo -share/locale/eo/LC_MESSAGES/ksirtet.mo -share/locale/eo/LC_MESSAGES/ksmiletris.mo -share/locale/eo/LC_MESSAGES/ksmserver.mo -share/locale/eo/LC_MESSAGES/ksnake.mo -share/locale/eo/LC_MESSAGES/ksnapshot.mo -share/locale/eo/LC_MESSAGES/ksokoban.mo -share/locale/eo/LC_MESSAGES/kspaceduel.mo -share/locale/eo/LC_MESSAGES/ksplash.mo -share/locale/eo/LC_MESSAGES/kstart.mo -share/locale/eo/LC_MESSAGES/ksysctrl.mo -share/locale/eo/LC_MESSAGES/ksysguard.mo -share/locale/eo/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/eo/LC_MESSAGES/ksysv.mo -share/locale/eo/LC_MESSAGES/ktalkd.mo -share/locale/eo/LC_MESSAGES/ktaskbarapplet.mo -share/locale/eo/LC_MESSAGES/kteatime.mo -share/locale/eo/LC_MESSAGES/ktimemon.mo -share/locale/eo/LC_MESSAGES/ktimer.mo -share/locale/eo/LC_MESSAGES/ktip.mo -share/locale/eo/LC_MESSAGES/ktron.mo -share/locale/eo/LC_MESSAGES/ktuberling.mo -share/locale/eo/LC_MESSAGES/ktux.mo -share/locale/eo/LC_MESSAGES/kuser.mo -share/locale/eo/LC_MESSAGES/kview.mo -share/locale/eo/LC_MESSAGES/kviewshell.mo -share/locale/eo/LC_MESSAGES/kwin.mo -share/locale/eo/LC_MESSAGES/kwin4.mo -share/locale/eo/LC_MESSAGES/kworldclock.mo -share/locale/eo/LC_MESSAGES/kwuftpd.mo -share/locale/eo/LC_MESSAGES/kxkb.mo -share/locale/eo/LC_MESSAGES/kxmlrpcd.mo -share/locale/eo/LC_MESSAGES/kxsconfig.mo -share/locale/eo/LC_MESSAGES/libkdegames.mo -share/locale/eo/LC_MESSAGES/libkdenetwork.mo -share/locale/eo/LC_MESSAGES/libkonq.mo -share/locale/eo/LC_MESSAGES/libkscan.mo -share/locale/eo/LC_MESSAGES/libkscreensaver.mo -share/locale/eo/LC_MESSAGES/libkwindefault_config.mo -share/locale/eo/LC_MESSAGES/libkwinicewm_config.mo -share/locale/eo/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/eo/LC_MESSAGES/libkwinquartz_config.mo -share/locale/eo/LC_MESSAGES/libtaskbar.mo -share/locale/eo/LC_MESSAGES/libtaskmanager.mo -share/locale/eo/LC_MESSAGES/lskat.mo -share/locale/eo/LC_MESSAGES/multiplayers.mo -share/locale/eo/LC_MESSAGES/naughtyapplet.mo -share/locale/eo/LC_MESSAGES/noatun.mo -share/locale/eo/LC_MESSAGES/nsplugin.mo -share/locale/eo/LC_MESSAGES/passwords.mo -share/locale/eo/LC_MESSAGES/ppdtranslations.mo -share/locale/eo/LC_MESSAGES/quicklauncher.mo -share/locale/eo/LC_MESSAGES/secpolicy.mo -share/locale/eo/LC_MESSAGES/taskbarextension.mo -share/locale/eo/LC_MESSAGES/uachangerplugin.mo -share/locale/eo/LC_MESSAGES/validatorsplugin.mo -share/locale/eo/LC_MESSAGES/webarchiver.mo -share/locale/eo/charset -share/locale/eo/entry.desktop -share/locale/eo/flag.png -share/locale/es/LC_MESSAGES/aktion.mo -share/locale/es/LC_MESSAGES/amor.mo -share/locale/es/LC_MESSAGES/appletproxy.mo -share/locale/es/LC_MESSAGES/ark.mo -share/locale/es/LC_MESSAGES/artsbuilder.mo -share/locale/es/LC_MESSAGES/artscontrol.mo -share/locale/es/LC_MESSAGES/babelfish.mo -share/locale/es/LC_MESSAGES/caitoo.mo -share/locale/es/LC_MESSAGES/childpanelextension.mo -share/locale/es/LC_MESSAGES/clockapplet.mo -share/locale/es/LC_MESSAGES/colfind.mo -share/locale/es/LC_MESSAGES/columbo.mo -share/locale/es/LC_MESSAGES/cookbook.mo -share/locale/es/LC_MESSAGES/cupsdconf.mo -share/locale/es/LC_MESSAGES/desktop.mo -share/locale/es/LC_MESSAGES/devcenter.mo -share/locale/es/LC_MESSAGES/dirfilterplugin.mo -share/locale/es/LC_MESSAGES/domtreeviewer.mo -share/locale/es/LC_MESSAGES/drkonqi.mo -share/locale/es/LC_MESSAGES/empath.mo -share/locale/es/LC_MESSAGES/extensionproxy.mo -share/locale/es/LC_MESSAGES/filetypes.mo -share/locale/es/LC_MESSAGES/gideon.mo -share/locale/es/LC_MESSAGES/gofai.mo -share/locale/es/LC_MESSAGES/htmlsearch.mo -share/locale/es/LC_MESSAGES/imgalleryplugin.mo -share/locale/es/LC_MESSAGES/kab.mo -share/locale/es/LC_MESSAGES/kabalone.mo -share/locale/es/LC_MESSAGES/kaboodle.mo -share/locale/es/LC_MESSAGES/kaccess.mo -share/locale/es/LC_MESSAGES/kaddressbook.mo -share/locale/es/LC_MESSAGES/kafka.mo -share/locale/es/LC_MESSAGES/kandy.mo -share/locale/es/LC_MESSAGES/kappfinder.mo -share/locale/es/LC_MESSAGES/karchie.mo -share/locale/es/LC_MESSAGES/karchiver.mo -share/locale/es/LC_MESSAGES/karm.mo -share/locale/es/LC_MESSAGES/kasbarextension.mo -share/locale/es/LC_MESSAGES/kasteroids.mo -share/locale/es/LC_MESSAGES/katalog.mo -share/locale/es/LC_MESSAGES/kate.mo -share/locale/es/LC_MESSAGES/katehtmltools.mo -share/locale/es/LC_MESSAGES/kateinsertcommand.mo -share/locale/es/LC_MESSAGES/katomic.mo -share/locale/es/LC_MESSAGES/kautorun.mo -share/locale/es/LC_MESSAGES/kbabel.mo -share/locale/es/LC_MESSAGES/kbackgammon.mo -share/locale/es/LC_MESSAGES/kbattleship.mo -share/locale/es/LC_MESSAGES/kbiff.mo -share/locale/es/LC_MESSAGES/kblackbox.mo -share/locale/es/LC_MESSAGES/kbugbuster.mo -share/locale/es/LC_MESSAGES/kcalc.mo -share/locale/es/LC_MESSAGES/kcharselect.mo -share/locale/es/LC_MESSAGES/kcharselectapplet.mo -share/locale/es/LC_MESSAGES/kcm_scsimanager.mo -share/locale/es/LC_MESSAGES/kcmaccess.mo -share/locale/es/LC_MESSAGES/kcmail.mo -share/locale/es/LC_MESSAGES/kcmarts.mo -share/locale/es/LC_MESSAGES/kcmaudiocd.mo -share/locale/es/LC_MESSAGES/kcmbackground.mo -share/locale/es/LC_MESSAGES/kcmbell.mo -share/locale/es/LC_MESSAGES/kcmbind.mo -share/locale/es/LC_MESSAGES/kcmcolors.mo -share/locale/es/LC_MESSAGES/kcmcrypto.mo -share/locale/es/LC_MESSAGES/kcmcss.mo -share/locale/es/LC_MESSAGES/kcmdhcpd.mo -share/locale/es/LC_MESSAGES/kcmemail.mo -share/locale/es/LC_MESSAGES/kcmenergy.mo -share/locale/es/LC_MESSAGES/kcmfonts.mo -share/locale/es/LC_MESSAGES/kcmgofai.mo -share/locale/es/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/es/LC_MESSAGES/kcmicons.mo -share/locale/es/LC_MESSAGES/kcminfo.mo -share/locale/es/LC_MESSAGES/kcminput.mo -share/locale/es/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/es/LC_MESSAGES/kcmiwatcher.mo -share/locale/es/LC_MESSAGES/kcmkamera.mo -share/locale/es/LC_MESSAGES/kcmkclock.mo -share/locale/es/LC_MESSAGES/kcmkdb.mo -share/locale/es/LC_MESSAGES/kcmkeys.mo -share/locale/es/LC_MESSAGES/kcmkicker.mo -share/locale/es/LC_MESSAGES/kcmkio.mo -share/locale/es/LC_MESSAGES/kcmkmix.mo -share/locale/es/LC_MESSAGES/kcmkonq.mo -share/locale/es/LC_MESSAGES/kcmkonqhtml.mo -share/locale/es/LC_MESSAGES/kcmkonsole.mo -share/locale/es/LC_MESSAGES/kcmktalkd.mo -share/locale/es/LC_MESSAGES/kcmkurifilt.mo -share/locale/es/LC_MESSAGES/kcmkwindecoration.mo -share/locale/es/LC_MESSAGES/kcmkwintheme.mo -share/locale/es/LC_MESSAGES/kcmkwm.mo -share/locale/es/LC_MESSAGES/kcmlanbrowser.mo -share/locale/es/LC_MESSAGES/kcmlaptop.mo -share/locale/es/LC_MESSAGES/kcmlaunch.mo -share/locale/es/LC_MESSAGES/kcmlayout.mo -share/locale/es/LC_MESSAGES/kcmlilo.mo -share/locale/es/LC_MESSAGES/kcmlinuz.mo -share/locale/es/LC_MESSAGES/kcmlocale.mo -share/locale/es/LC_MESSAGES/kcmmediacontrol.mo -share/locale/es/LC_MESSAGES/kcmmidi.mo -share/locale/es/LC_MESSAGES/kcmnapster.mo -share/locale/es/LC_MESSAGES/kcmnewsticker.mo -share/locale/es/LC_MESSAGES/kcmnotify.mo -share/locale/es/LC_MESSAGES/kcmodbc.mo -share/locale/es/LC_MESSAGES/kcmsamba.mo -share/locale/es/LC_MESSAGES/kcmscreensaver.mo -share/locale/es/LC_MESSAGES/kcmsmserver.mo -share/locale/es/LC_MESSAGES/kcmsocks.mo -share/locale/es/LC_MESSAGES/kcmspellchecking.mo -share/locale/es/LC_MESSAGES/kcmstyle.mo -share/locale/es/LC_MESSAGES/kcmtaskbar.mo -share/locale/es/LC_MESSAGES/kcmthemes.mo -share/locale/es/LC_MESSAGES/kcmusb.mo -share/locale/es/LC_MESSAGES/kcmuserenv.mo -share/locale/es/LC_MESSAGES/kcoloredit.mo -share/locale/es/LC_MESSAGES/kcontrol.mo -share/locale/es/LC_MESSAGES/kcron.mo -share/locale/es/LC_MESSAGES/kdao.mo -share/locale/es/LC_MESSAGES/kdbbrowser.mo -share/locale/es/LC_MESSAGES/kdcop.mo -share/locale/es/LC_MESSAGES/kdebugdialog.mo -share/locale/es/LC_MESSAGES/kdelibs.mo -share/locale/es/LC_MESSAGES/kdepasswd.mo -share/locale/es/LC_MESSAGES/kdeprintfax.mo -share/locale/es/LC_MESSAGES/kdesktop.mo -share/locale/es/LC_MESSAGES/kdessh.mo -share/locale/es/LC_MESSAGES/kdestdifacedemo.mo -share/locale/es/LC_MESSAGES/kdesu.mo -share/locale/es/LC_MESSAGES/kdesud.mo -share/locale/es/LC_MESSAGES/kdevelop.mo -share/locale/es/LC_MESSAGES/kdevtipofday.mo -share/locale/es/LC_MESSAGES/kdf.mo -share/locale/es/LC_MESSAGES/kdict.mo -share/locale/es/LC_MESSAGES/kdictapplet.mo -share/locale/es/LC_MESSAGES/kdiff.mo -share/locale/es/LC_MESSAGES/kdmchooser.mo -share/locale/es/LC_MESSAGES/kdmconfig.mo -share/locale/es/LC_MESSAGES/kdmgreet.mo -share/locale/es/LC_MESSAGES/kdvi.mo -share/locale/es/LC_MESSAGES/kedit.mo -share/locale/es/LC_MESSAGES/keystone.mo -share/locale/es/LC_MESSAGES/kfax.mo -share/locale/es/LC_MESSAGES/kfifteenapplet.mo -share/locale/es/LC_MESSAGES/kfind.mo -share/locale/es/LC_MESSAGES/kfindpart.mo -share/locale/es/LC_MESSAGES/kfinger.mo -share/locale/es/LC_MESSAGES/kfloppy.mo -share/locale/es/LC_MESSAGES/kfmclient.mo -share/locale/es/LC_MESSAGES/kfmexec.mo -share/locale/es/LC_MESSAGES/kformeditor.mo -share/locale/es/LC_MESSAGES/kformviewer.mo -share/locale/es/LC_MESSAGES/kfourtune.mo -share/locale/es/LC_MESSAGES/kfract.mo -share/locale/es/LC_MESSAGES/kghostview.mo -share/locale/es/LC_MESSAGES/kglchess.mo -share/locale/es/LC_MESSAGES/kgnuplot.mo -share/locale/es/LC_MESSAGES/kgrapher.mo -share/locale/es/LC_MESSAGES/khelpcenter.mo -share/locale/es/LC_MESSAGES/khexedit.mo -share/locale/es/LC_MESSAGES/khotkeys.mo -share/locale/es/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/es/LC_MESSAGES/kicker.mo -share/locale/es/LC_MESSAGES/kiconedit.mo -share/locale/es/LC_MESSAGES/kicq.mo -share/locale/es/LC_MESSAGES/kikbd.mo -share/locale/es/LC_MESSAGES/kim.mo -share/locale/es/LC_MESSAGES/kio_audiocd.mo -share/locale/es/LC_MESSAGES/kio_finger.mo -share/locale/es/LC_MESSAGES/kio_floppy.mo -share/locale/es/LC_MESSAGES/kio_help.mo -share/locale/es/LC_MESSAGES/kio_imap4.mo -share/locale/es/LC_MESSAGES/kio_lan.mo -share/locale/es/LC_MESSAGES/kio_man.mo -share/locale/es/LC_MESSAGES/kio_nfs.mo -share/locale/es/LC_MESSAGES/kio_nntp.mo -share/locale/es/LC_MESSAGES/kio_pop3.mo -share/locale/es/LC_MESSAGES/kio_smb.mo -share/locale/es/LC_MESSAGES/kio_smbro.mo -share/locale/es/LC_MESSAGES/kit.mo -share/locale/es/LC_MESSAGES/kjezz.mo -share/locale/es/LC_MESSAGES/kjobviewer.mo -share/locale/es/LC_MESSAGES/kjots.mo -share/locale/es/LC_MESSAGES/kjumpingcube.mo -share/locale/es/LC_MESSAGES/klaptopdaemon.mo -share/locale/es/LC_MESSAGES/klegacyimport.mo -share/locale/es/LC_MESSAGES/kless.mo -share/locale/es/LC_MESSAGES/klines.mo -share/locale/es/LC_MESSAGES/klipper.mo -share/locale/es/LC_MESSAGES/kljettool.mo -share/locale/es/LC_MESSAGES/klock.mo -share/locale/es/LC_MESSAGES/klpq.mo -share/locale/es/LC_MESSAGES/klprfax.mo -share/locale/es/LC_MESSAGES/kmahjongg.mo -share/locale/es/LC_MESSAGES/kmail.mo -share/locale/es/LC_MESSAGES/kmailcvt.mo -share/locale/es/LC_MESSAGES/kmake.mo -share/locale/es/LC_MESSAGES/kmenuedit.mo -share/locale/es/LC_MESSAGES/kmessage.mo -share/locale/es/LC_MESSAGES/kmid.mo -share/locale/es/LC_MESSAGES/kmidi.mo -share/locale/es/LC_MESSAGES/kmines.mo -share/locale/es/LC_MESSAGES/kminipagerapplet.mo -share/locale/es/LC_MESSAGES/kmix.mo -share/locale/es/LC_MESSAGES/kmms.mo -share/locale/es/LC_MESSAGES/kmonop.mo -share/locale/es/LC_MESSAGES/kmoon.mo -share/locale/es/LC_MESSAGES/knetmgr.mo -share/locale/es/LC_MESSAGES/knewsticker.mo -share/locale/es/LC_MESSAGES/knode.mo -share/locale/es/LC_MESSAGES/knotes.mo -share/locale/es/LC_MESSAGES/knotify.mo -share/locale/es/LC_MESSAGES/knu.mo -share/locale/es/LC_MESSAGES/kodo.mo -share/locale/es/LC_MESSAGES/kolourpicker.mo -share/locale/es/LC_MESSAGES/konqueror.mo -share/locale/es/LC_MESSAGES/konquest.mo -share/locale/es/LC_MESSAGES/konsole.mo -share/locale/es/LC_MESSAGES/konv.mo -share/locale/es/LC_MESSAGES/kooka.mo -share/locale/es/LC_MESSAGES/kopennap.mo -share/locale/es/LC_MESSAGES/korganizer.mo -share/locale/es/LC_MESSAGES/korn.mo -share/locale/es/LC_MESSAGES/kp.mo -share/locale/es/LC_MESSAGES/kpackage.mo -share/locale/es/LC_MESSAGES/kpager.mo -share/locale/es/LC_MESSAGES/kpaint.mo -share/locale/es/LC_MESSAGES/kpartapp.mo -share/locale/es/LC_MESSAGES/kpartsaver.mo -share/locale/es/LC_MESSAGES/kpat.mo -share/locale/es/LC_MESSAGES/kpersonalizer.mo -share/locale/es/LC_MESSAGES/kphone.mo -share/locale/es/LC_MESSAGES/kpilot.mo -share/locale/es/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/es/LC_MESSAGES/kpm.mo -share/locale/es/LC_MESSAGES/kpoker.mo -share/locale/es/LC_MESSAGES/kpovmodeler.mo -share/locale/es/LC_MESSAGES/kppp.mo -share/locale/es/LC_MESSAGES/kppplogview.mo -share/locale/es/LC_MESSAGES/kprinter.mo -share/locale/es/LC_MESSAGES/kreadconfig.mo -share/locale/es/LC_MESSAGES/kreversi.mo -share/locale/es/LC_MESSAGES/krn.mo -share/locale/es/LC_MESSAGES/kruler.mo -share/locale/es/LC_MESSAGES/krunapplet.mo -share/locale/es/LC_MESSAGES/ksame.mo -share/locale/es/LC_MESSAGES/kscd.mo -share/locale/es/LC_MESSAGES/kscoreapplet.mo -share/locale/es/LC_MESSAGES/kshisen.mo -share/locale/es/LC_MESSAGES/ksirc.mo -share/locale/es/LC_MESSAGES/ksirtet.mo -share/locale/es/LC_MESSAGES/ksmiletris.mo -share/locale/es/LC_MESSAGES/ksmserver.mo -share/locale/es/LC_MESSAGES/ksnake.mo -share/locale/es/LC_MESSAGES/ksnapshot.mo -share/locale/es/LC_MESSAGES/ksokoban.mo -share/locale/es/LC_MESSAGES/kspaceduel.mo -share/locale/es/LC_MESSAGES/ksplash.mo -share/locale/es/LC_MESSAGES/kstart.mo -share/locale/es/LC_MESSAGES/kstartperf.mo -share/locale/es/LC_MESSAGES/kstockticker.mo -share/locale/es/LC_MESSAGES/ksysctrl.mo -share/locale/es/LC_MESSAGES/ksysguard.mo -share/locale/es/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/es/LC_MESSAGES/ksystrayproxy.mo -share/locale/es/LC_MESSAGES/ksysv.mo -share/locale/es/LC_MESSAGES/ktables.mo -share/locale/es/LC_MESSAGES/ktalk.mo -share/locale/es/LC_MESSAGES/ktalkd.mo -share/locale/es/LC_MESSAGES/ktaskbarapplet.mo -share/locale/es/LC_MESSAGES/kteatime.mo -share/locale/es/LC_MESSAGES/ktimemon.mo -share/locale/es/LC_MESSAGES/ktimer.mo -share/locale/es/LC_MESSAGES/ktip.mo -share/locale/es/LC_MESSAGES/ktouch.mo -share/locale/es/LC_MESSAGES/ktron.mo -share/locale/es/LC_MESSAGES/ktuberling.mo -share/locale/es/LC_MESSAGES/ktux.mo -share/locale/es/LC_MESSAGES/kuser.mo -share/locale/es/LC_MESSAGES/kvidmode.mo -share/locale/es/LC_MESSAGES/kview.mo -share/locale/es/LC_MESSAGES/kviewshell.mo -share/locale/es/LC_MESSAGES/kwebstat.mo -share/locale/es/LC_MESSAGES/kwin.mo -share/locale/es/LC_MESSAGES/kwin4.mo -share/locale/es/LC_MESSAGES/kworldclock.mo -share/locale/es/LC_MESSAGES/kwuftpd.mo -share/locale/es/LC_MESSAGES/kxkb.mo -share/locale/es/LC_MESSAGES/kxmlrpcd.mo -share/locale/es/LC_MESSAGES/kxsconfig.mo -share/locale/es/LC_MESSAGES/libkdegames.mo -share/locale/es/LC_MESSAGES/libkdenetwork.mo -share/locale/es/LC_MESSAGES/libkonq.mo -share/locale/es/LC_MESSAGES/libkscan.mo -share/locale/es/LC_MESSAGES/libkscreensaver.mo -share/locale/es/LC_MESSAGES/libkwindefault_config.mo -share/locale/es/LC_MESSAGES/libkwinicewm_config.mo -share/locale/es/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/es/LC_MESSAGES/libkwinquartz_config.mo -share/locale/es/LC_MESSAGES/libtaskbar.mo -share/locale/es/LC_MESSAGES/libtaskmanager.mo -share/locale/es/LC_MESSAGES/lskat.mo -share/locale/es/LC_MESSAGES/mediacontrol.mo -share/locale/es/LC_MESSAGES/multiplayers.mo -share/locale/es/LC_MESSAGES/naughtyapplet.mo -share/locale/es/LC_MESSAGES/noatun.mo -share/locale/es/LC_MESSAGES/nsplugin.mo -share/locale/es/LC_MESSAGES/passwords.mo -share/locale/es/LC_MESSAGES/ppdtranslations.mo -share/locale/es/LC_MESSAGES/pws.mo -share/locale/es/LC_MESSAGES/quicklauncher.mo -share/locale/es/LC_MESSAGES/secpolicy.mo -share/locale/es/LC_MESSAGES/spy.mo -share/locale/es/LC_MESSAGES/taskbarextension.mo -share/locale/es/LC_MESSAGES/twister.mo -share/locale/es/LC_MESSAGES/uachangerplugin.mo -share/locale/es/LC_MESSAGES/validatorsplugin.mo -share/locale/es/LC_MESSAGES/webarchiver.mo -share/locale/es/charset -share/locale/es/entry.desktop -share/locale/es/flag.png -share/locale/et/LC_MESSAGES/aktion.mo -share/locale/et/LC_MESSAGES/amor.mo -share/locale/et/LC_MESSAGES/appletproxy.mo -share/locale/et/LC_MESSAGES/ark.mo -share/locale/et/LC_MESSAGES/artsbuilder.mo -share/locale/et/LC_MESSAGES/artscontrol.mo -share/locale/et/LC_MESSAGES/babelfish.mo -share/locale/et/LC_MESSAGES/caitoo.mo -share/locale/et/LC_MESSAGES/childpanelextension.mo -share/locale/et/LC_MESSAGES/clockapplet.mo -share/locale/et/LC_MESSAGES/colfind.mo -share/locale/et/LC_MESSAGES/columbo.mo -share/locale/et/LC_MESSAGES/cupsdconf.mo -share/locale/et/LC_MESSAGES/desktop.mo -share/locale/et/LC_MESSAGES/dirfilterplugin.mo -share/locale/et/LC_MESSAGES/domtreeviewer.mo -share/locale/et/LC_MESSAGES/drkonqi.mo -share/locale/et/LC_MESSAGES/empath.mo -share/locale/et/LC_MESSAGES/extensionproxy.mo -share/locale/et/LC_MESSAGES/filetypes.mo -share/locale/et/LC_MESSAGES/htmlsearch.mo -share/locale/et/LC_MESSAGES/imgalleryplugin.mo -share/locale/et/LC_MESSAGES/kab.mo -share/locale/et/LC_MESSAGES/kabalone.mo -share/locale/et/LC_MESSAGES/kaccess.mo -share/locale/et/LC_MESSAGES/kaddressbook.mo -share/locale/et/LC_MESSAGES/kappfinder.mo -share/locale/et/LC_MESSAGES/karm.mo -share/locale/et/LC_MESSAGES/kasbarextension.mo -share/locale/et/LC_MESSAGES/kasteroids.mo -share/locale/et/LC_MESSAGES/katalog.mo -share/locale/et/LC_MESSAGES/kate.mo -share/locale/et/LC_MESSAGES/katehtmltools.mo -share/locale/et/LC_MESSAGES/kateinsertcommand.mo -share/locale/et/LC_MESSAGES/katomic.mo -share/locale/et/LC_MESSAGES/kautorun.mo -share/locale/et/LC_MESSAGES/kbabel.mo -share/locale/et/LC_MESSAGES/kbackgammon.mo -share/locale/et/LC_MESSAGES/kbattleship.mo -share/locale/et/LC_MESSAGES/kbiff.mo -share/locale/et/LC_MESSAGES/kblackbox.mo -share/locale/et/LC_MESSAGES/kcalc.mo -share/locale/et/LC_MESSAGES/kcharselect.mo -share/locale/et/LC_MESSAGES/kcharselectapplet.mo -share/locale/et/LC_MESSAGES/kcmaccess.mo -share/locale/et/LC_MESSAGES/kcmarts.mo -share/locale/et/LC_MESSAGES/kcmaudiocd.mo -share/locale/et/LC_MESSAGES/kcmbackground.mo -share/locale/et/LC_MESSAGES/kcmbell.mo -share/locale/et/LC_MESSAGES/kcmcolors.mo -share/locale/et/LC_MESSAGES/kcmcrypto.mo -share/locale/et/LC_MESSAGES/kcmcss.mo -share/locale/et/LC_MESSAGES/kcmemail.mo -share/locale/et/LC_MESSAGES/kcmenergy.mo -share/locale/et/LC_MESSAGES/kcmfonts.mo -share/locale/et/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/et/LC_MESSAGES/kcmicons.mo -share/locale/et/LC_MESSAGES/kcminfo.mo -share/locale/et/LC_MESSAGES/kcminput.mo -share/locale/et/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/et/LC_MESSAGES/kcmkamera.mo -share/locale/et/LC_MESSAGES/kcmkclock.mo -share/locale/et/LC_MESSAGES/kcmkdb.mo -share/locale/et/LC_MESSAGES/kcmkeys.mo -share/locale/et/LC_MESSAGES/kcmkicker.mo -share/locale/et/LC_MESSAGES/kcmkio.mo -share/locale/et/LC_MESSAGES/kcmkmix.mo -share/locale/et/LC_MESSAGES/kcmkonq.mo -share/locale/et/LC_MESSAGES/kcmkonqhtml.mo -share/locale/et/LC_MESSAGES/kcmkonsole.mo -share/locale/et/LC_MESSAGES/kcmktalkd.mo -share/locale/et/LC_MESSAGES/kcmkurifilt.mo -share/locale/et/LC_MESSAGES/kcmkwindecoration.mo -share/locale/et/LC_MESSAGES/kcmkwintheme.mo -share/locale/et/LC_MESSAGES/kcmkwm.mo -share/locale/et/LC_MESSAGES/kcmlanbrowser.mo -share/locale/et/LC_MESSAGES/kcmlaptop.mo -share/locale/et/LC_MESSAGES/kcmlaunch.mo -share/locale/et/LC_MESSAGES/kcmlayout.mo -share/locale/et/LC_MESSAGES/kcmlilo.mo -share/locale/et/LC_MESSAGES/kcmlinuz.mo -share/locale/et/LC_MESSAGES/kcmlocale.mo -share/locale/et/LC_MESSAGES/kcmmidi.mo -share/locale/et/LC_MESSAGES/kcmnewsticker.mo -share/locale/et/LC_MESSAGES/kcmnotify.mo -share/locale/et/LC_MESSAGES/kcmsamba.mo -share/locale/et/LC_MESSAGES/kcmscreensaver.mo -share/locale/et/LC_MESSAGES/kcmsmserver.mo -share/locale/et/LC_MESSAGES/kcmsocks.mo -share/locale/et/LC_MESSAGES/kcmspellchecking.mo -share/locale/et/LC_MESSAGES/kcmstyle.mo -share/locale/et/LC_MESSAGES/kcmtaskbar.mo -share/locale/et/LC_MESSAGES/kcmthemes.mo -share/locale/et/LC_MESSAGES/kcmusb.mo -share/locale/et/LC_MESSAGES/kcoloredit.mo -share/locale/et/LC_MESSAGES/kcontrol.mo -share/locale/et/LC_MESSAGES/kcron.mo -share/locale/et/LC_MESSAGES/kdcop.mo -share/locale/et/LC_MESSAGES/kdebugdialog.mo -share/locale/et/LC_MESSAGES/kdelibs.mo -share/locale/et/LC_MESSAGES/kdepasswd.mo -share/locale/et/LC_MESSAGES/kdeprintfax.mo -share/locale/et/LC_MESSAGES/kdesktop.mo -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/kdevelop.mo -share/locale/et/LC_MESSAGES/kdf.mo -share/locale/et/LC_MESSAGES/kdict.mo -share/locale/et/LC_MESSAGES/kdictapplet.mo -share/locale/et/LC_MESSAGES/kdmchooser.mo -share/locale/et/LC_MESSAGES/kdmconfig.mo -share/locale/et/LC_MESSAGES/kdmgreet.mo -share/locale/et/LC_MESSAGES/kdvi.mo -share/locale/et/LC_MESSAGES/kedit.mo -share/locale/et/LC_MESSAGES/keystone.mo -share/locale/et/LC_MESSAGES/kfax.mo -share/locale/et/LC_MESSAGES/kfifteenapplet.mo -share/locale/et/LC_MESSAGES/kfind.mo -share/locale/et/LC_MESSAGES/kfindpart.mo -share/locale/et/LC_MESSAGES/kfloppy.mo -share/locale/et/LC_MESSAGES/kfmclient.mo -share/locale/et/LC_MESSAGES/kfmexec.mo -share/locale/et/LC_MESSAGES/kfract.mo -share/locale/et/LC_MESSAGES/kghostview.mo -share/locale/et/LC_MESSAGES/khelpcenter.mo -share/locale/et/LC_MESSAGES/khexedit.mo -share/locale/et/LC_MESSAGES/khotkeys.mo -share/locale/et/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/et/LC_MESSAGES/kicker.mo -share/locale/et/LC_MESSAGES/kiconedit.mo -share/locale/et/LC_MESSAGES/kikbd.mo -share/locale/et/LC_MESSAGES/kio_audiocd.mo -share/locale/et/LC_MESSAGES/kio_finger.mo -share/locale/et/LC_MESSAGES/kio_floppy.mo -share/locale/et/LC_MESSAGES/kio_help.mo -share/locale/et/LC_MESSAGES/kio_imap4.mo -share/locale/et/LC_MESSAGES/kio_lan.mo -share/locale/et/LC_MESSAGES/kio_man.mo -share/locale/et/LC_MESSAGES/kio_nfs.mo -share/locale/et/LC_MESSAGES/kio_nntp.mo -share/locale/et/LC_MESSAGES/kio_pop3.mo -share/locale/et/LC_MESSAGES/kio_smb.mo -share/locale/et/LC_MESSAGES/kio_smbro.mo -share/locale/et/LC_MESSAGES/kit.mo -share/locale/et/LC_MESSAGES/kjezz.mo -share/locale/et/LC_MESSAGES/kjobviewer.mo -share/locale/et/LC_MESSAGES/kjots.mo -share/locale/et/LC_MESSAGES/kjumpingcube.mo -share/locale/et/LC_MESSAGES/klaptopdaemon.mo -share/locale/et/LC_MESSAGES/klegacyimport.mo -share/locale/et/LC_MESSAGES/klines.mo -share/locale/et/LC_MESSAGES/klipper.mo -share/locale/et/LC_MESSAGES/kljettool.mo -share/locale/et/LC_MESSAGES/klock.mo -share/locale/et/LC_MESSAGES/klpq.mo -share/locale/et/LC_MESSAGES/klprfax.mo -share/locale/et/LC_MESSAGES/kmahjongg.mo -share/locale/et/LC_MESSAGES/kmail.mo -share/locale/et/LC_MESSAGES/kmailcvt.mo -share/locale/et/LC_MESSAGES/kmenuedit.mo -share/locale/et/LC_MESSAGES/kmid.mo -share/locale/et/LC_MESSAGES/kmidi.mo -share/locale/et/LC_MESSAGES/kmines.mo -share/locale/et/LC_MESSAGES/kminipagerapplet.mo -share/locale/et/LC_MESSAGES/kmix.mo -share/locale/et/LC_MESSAGES/kmoon.mo -share/locale/et/LC_MESSAGES/knewsticker.mo -share/locale/et/LC_MESSAGES/knode.mo -share/locale/et/LC_MESSAGES/knotes.mo -share/locale/et/LC_MESSAGES/knotify.mo -share/locale/et/LC_MESSAGES/knu.mo -share/locale/et/LC_MESSAGES/kodo.mo -share/locale/et/LC_MESSAGES/kolourpicker.mo -share/locale/et/LC_MESSAGES/konqueror.mo -share/locale/et/LC_MESSAGES/konquest.mo -share/locale/et/LC_MESSAGES/konsole.mo -share/locale/et/LC_MESSAGES/kooka.mo -share/locale/et/LC_MESSAGES/korganizer.mo -share/locale/et/LC_MESSAGES/korn.mo -share/locale/et/LC_MESSAGES/kpackage.mo -share/locale/et/LC_MESSAGES/kpager.mo -share/locale/et/LC_MESSAGES/kpaint.mo -share/locale/et/LC_MESSAGES/kpartapp.mo -share/locale/et/LC_MESSAGES/kpartsaver.mo -share/locale/et/LC_MESSAGES/kpat.mo -share/locale/et/LC_MESSAGES/kpersonalizer.mo -share/locale/et/LC_MESSAGES/kpilot.mo -share/locale/et/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/et/LC_MESSAGES/kpm.mo -share/locale/et/LC_MESSAGES/kpoker.mo -share/locale/et/LC_MESSAGES/kppp.mo -share/locale/et/LC_MESSAGES/kppplogview.mo -share/locale/et/LC_MESSAGES/kprinter.mo -share/locale/et/LC_MESSAGES/kreadconfig.mo -share/locale/et/LC_MESSAGES/kreversi.mo -share/locale/et/LC_MESSAGES/kruler.mo -share/locale/et/LC_MESSAGES/krunapplet.mo -share/locale/et/LC_MESSAGES/ksame.mo -share/locale/et/LC_MESSAGES/kscd.mo -share/locale/et/LC_MESSAGES/kscoreapplet.mo -share/locale/et/LC_MESSAGES/kshisen.mo -share/locale/et/LC_MESSAGES/ksirc.mo -share/locale/et/LC_MESSAGES/ksirtet.mo -share/locale/et/LC_MESSAGES/ksmiletris.mo -share/locale/et/LC_MESSAGES/ksmserver.mo -share/locale/et/LC_MESSAGES/ksnake.mo -share/locale/et/LC_MESSAGES/ksnapshot.mo -share/locale/et/LC_MESSAGES/ksokoban.mo -share/locale/et/LC_MESSAGES/kspaceduel.mo -share/locale/et/LC_MESSAGES/ksplash.mo -share/locale/et/LC_MESSAGES/kstart.mo -share/locale/et/LC_MESSAGES/ksysctrl.mo -share/locale/et/LC_MESSAGES/ksysguard.mo -share/locale/et/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/et/LC_MESSAGES/ksysv.mo -share/locale/et/LC_MESSAGES/ktalkd.mo -share/locale/et/LC_MESSAGES/ktaskbarapplet.mo -share/locale/et/LC_MESSAGES/kteatime.mo -share/locale/et/LC_MESSAGES/ktimemon.mo -share/locale/et/LC_MESSAGES/ktimer.mo -share/locale/et/LC_MESSAGES/ktip.mo -share/locale/et/LC_MESSAGES/ktron.mo -share/locale/et/LC_MESSAGES/ktuberling.mo -share/locale/et/LC_MESSAGES/ktux.mo -share/locale/et/LC_MESSAGES/kuser.mo -share/locale/et/LC_MESSAGES/kview.mo -share/locale/et/LC_MESSAGES/kviewshell.mo -share/locale/et/LC_MESSAGES/kwin.mo -share/locale/et/LC_MESSAGES/kwin4.mo -share/locale/et/LC_MESSAGES/kworldclock.mo -share/locale/et/LC_MESSAGES/kwuftpd.mo -share/locale/et/LC_MESSAGES/kxkb.mo -share/locale/et/LC_MESSAGES/kxmlrpcd.mo -share/locale/et/LC_MESSAGES/kxsconfig.mo -share/locale/et/LC_MESSAGES/libkdegames.mo -share/locale/et/LC_MESSAGES/libkdenetwork.mo -share/locale/et/LC_MESSAGES/libkonq.mo -share/locale/et/LC_MESSAGES/libkscan.mo -share/locale/et/LC_MESSAGES/libkscreensaver.mo -share/locale/et/LC_MESSAGES/libkwindefault_config.mo -share/locale/et/LC_MESSAGES/libkwinicewm_config.mo -share/locale/et/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/et/LC_MESSAGES/libkwinquartz_config.mo -share/locale/et/LC_MESSAGES/libtaskbar.mo -share/locale/et/LC_MESSAGES/libtaskmanager.mo -share/locale/et/LC_MESSAGES/lskat.mo -share/locale/et/LC_MESSAGES/multiplayers.mo -share/locale/et/LC_MESSAGES/naughtyapplet.mo -share/locale/et/LC_MESSAGES/noatun.mo -share/locale/et/LC_MESSAGES/nsplugin.mo -share/locale/et/LC_MESSAGES/passwords.mo -share/locale/et/LC_MESSAGES/ppdtranslations.mo -share/locale/et/LC_MESSAGES/quicklauncher.mo -share/locale/et/LC_MESSAGES/secpolicy.mo -share/locale/et/LC_MESSAGES/taskbarextension.mo -share/locale/et/LC_MESSAGES/uachangerplugin.mo -share/locale/et/LC_MESSAGES/validatorsplugin.mo -share/locale/et/LC_MESSAGES/webarchiver.mo -share/locale/et/charset -share/locale/et/entry.desktop -share/locale/et/flag.png -share/locale/fi/LC_MESSAGES/aktion.mo -share/locale/fi/LC_MESSAGES/amor.mo -share/locale/fi/LC_MESSAGES/appletproxy.mo -share/locale/fi/LC_MESSAGES/ark.mo -share/locale/fi/LC_MESSAGES/artsbuilder.mo -share/locale/fi/LC_MESSAGES/artscontrol.mo -share/locale/fi/LC_MESSAGES/babelfish.mo -share/locale/fi/LC_MESSAGES/childpanelextension.mo -share/locale/fi/LC_MESSAGES/clockapplet.mo -share/locale/fi/LC_MESSAGES/cupsdconf.mo -share/locale/fi/LC_MESSAGES/desktop.mo -share/locale/fi/LC_MESSAGES/dirfilterplugin.mo -share/locale/fi/LC_MESSAGES/domtreeviewer.mo -share/locale/fi/LC_MESSAGES/drkonqi.mo -share/locale/fi/LC_MESSAGES/empath.mo -share/locale/fi/LC_MESSAGES/extensionproxy.mo -share/locale/fi/LC_MESSAGES/filetypes.mo -share/locale/fi/LC_MESSAGES/htmlsearch.mo -share/locale/fi/LC_MESSAGES/imgalleryplugin.mo -share/locale/fi/LC_MESSAGES/kab.mo -share/locale/fi/LC_MESSAGES/kabalone.mo -share/locale/fi/LC_MESSAGES/kaccess.mo -share/locale/fi/LC_MESSAGES/kaddressbook.mo -share/locale/fi/LC_MESSAGES/kandy.mo -share/locale/fi/LC_MESSAGES/kappfinder.mo -share/locale/fi/LC_MESSAGES/karm.mo -share/locale/fi/LC_MESSAGES/kasbarextension.mo -share/locale/fi/LC_MESSAGES/kasteroids.mo -share/locale/fi/LC_MESSAGES/kate.mo -share/locale/fi/LC_MESSAGES/katehtmltools.mo -share/locale/fi/LC_MESSAGES/kateinsertcommand.mo -share/locale/fi/LC_MESSAGES/katomic.mo -share/locale/fi/LC_MESSAGES/kbabel.mo -share/locale/fi/LC_MESSAGES/kbackgammon.mo -share/locale/fi/LC_MESSAGES/kbattleship.mo -share/locale/fi/LC_MESSAGES/kblackbox.mo -share/locale/fi/LC_MESSAGES/kcalc.mo -share/locale/fi/LC_MESSAGES/kcharselect.mo -share/locale/fi/LC_MESSAGES/kcharselectapplet.mo -share/locale/fi/LC_MESSAGES/kcmaccess.mo -share/locale/fi/LC_MESSAGES/kcmarts.mo -share/locale/fi/LC_MESSAGES/kcmaudiocd.mo -share/locale/fi/LC_MESSAGES/kcmbackground.mo -share/locale/fi/LC_MESSAGES/kcmbell.mo -share/locale/fi/LC_MESSAGES/kcmcolors.mo -share/locale/fi/LC_MESSAGES/kcmcrypto.mo -share/locale/fi/LC_MESSAGES/kcmcss.mo -share/locale/fi/LC_MESSAGES/kcmemail.mo -share/locale/fi/LC_MESSAGES/kcmenergy.mo -share/locale/fi/LC_MESSAGES/kcmfonts.mo -share/locale/fi/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/fi/LC_MESSAGES/kcmicons.mo -share/locale/fi/LC_MESSAGES/kcminfo.mo -share/locale/fi/LC_MESSAGES/kcminput.mo -share/locale/fi/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/fi/LC_MESSAGES/kcmkamera.mo -share/locale/fi/LC_MESSAGES/kcmkclock.mo -share/locale/fi/LC_MESSAGES/kcmkdb.mo -share/locale/fi/LC_MESSAGES/kcmkeys.mo -share/locale/fi/LC_MESSAGES/kcmkicker.mo -share/locale/fi/LC_MESSAGES/kcmkio.mo -share/locale/fi/LC_MESSAGES/kcmkmix.mo -share/locale/fi/LC_MESSAGES/kcmkonq.mo -share/locale/fi/LC_MESSAGES/kcmkonqhtml.mo -share/locale/fi/LC_MESSAGES/kcmkonsole.mo -share/locale/fi/LC_MESSAGES/kcmktalkd.mo -share/locale/fi/LC_MESSAGES/kcmkurifilt.mo -share/locale/fi/LC_MESSAGES/kcmkwindecoration.mo -share/locale/fi/LC_MESSAGES/kcmkwintheme.mo -share/locale/fi/LC_MESSAGES/kcmkwm.mo -share/locale/fi/LC_MESSAGES/kcmlanbrowser.mo -share/locale/fi/LC_MESSAGES/kcmlaptop.mo -share/locale/fi/LC_MESSAGES/kcmlaunch.mo -share/locale/fi/LC_MESSAGES/kcmlayout.mo -share/locale/fi/LC_MESSAGES/kcmlilo.mo -share/locale/fi/LC_MESSAGES/kcmlinuz.mo -share/locale/fi/LC_MESSAGES/kcmlocale.mo -share/locale/fi/LC_MESSAGES/kcmmidi.mo -share/locale/fi/LC_MESSAGES/kcmnotify.mo -share/locale/fi/LC_MESSAGES/kcmsamba.mo -share/locale/fi/LC_MESSAGES/kcmscreensaver.mo -share/locale/fi/LC_MESSAGES/kcmsmserver.mo -share/locale/fi/LC_MESSAGES/kcmsocks.mo -share/locale/fi/LC_MESSAGES/kcmspellchecking.mo -share/locale/fi/LC_MESSAGES/kcmstyle.mo -share/locale/fi/LC_MESSAGES/kcmtaskbar.mo -share/locale/fi/LC_MESSAGES/kcmthemes.mo -share/locale/fi/LC_MESSAGES/kcmusb.mo -share/locale/fi/LC_MESSAGES/kcoloredit.mo -share/locale/fi/LC_MESSAGES/kcontrol.mo -share/locale/fi/LC_MESSAGES/kcron.mo -share/locale/fi/LC_MESSAGES/kdat.mo -share/locale/fi/LC_MESSAGES/kdcop.mo -share/locale/fi/LC_MESSAGES/kdebugdialog.mo -share/locale/fi/LC_MESSAGES/kdelibs.mo -share/locale/fi/LC_MESSAGES/kdepasswd.mo -share/locale/fi/LC_MESSAGES/kdeprintfax.mo -share/locale/fi/LC_MESSAGES/kdesktop.mo -share/locale/fi/LC_MESSAGES/kdessh.mo -share/locale/fi/LC_MESSAGES/kdesu.mo -share/locale/fi/LC_MESSAGES/kdesud.mo -share/locale/fi/LC_MESSAGES/kdevelop.mo -share/locale/fi/LC_MESSAGES/kdf.mo -share/locale/fi/LC_MESSAGES/kdict.mo -share/locale/fi/LC_MESSAGES/kdictapplet.mo -share/locale/fi/LC_MESSAGES/kdmchooser.mo -share/locale/fi/LC_MESSAGES/kdmconfig.mo -share/locale/fi/LC_MESSAGES/kdmgreet.mo -share/locale/fi/LC_MESSAGES/kdvi.mo -share/locale/fi/LC_MESSAGES/kedit.mo -share/locale/fi/LC_MESSAGES/keystone.mo -share/locale/fi/LC_MESSAGES/kfax.mo -share/locale/fi/LC_MESSAGES/kfifteenapplet.mo -share/locale/fi/LC_MESSAGES/kfind.mo -share/locale/fi/LC_MESSAGES/kfindpart.mo -share/locale/fi/LC_MESSAGES/kfloppy.mo -share/locale/fi/LC_MESSAGES/kfmclient.mo -share/locale/fi/LC_MESSAGES/kfmexec.mo -share/locale/fi/LC_MESSAGES/kfract.mo -share/locale/fi/LC_MESSAGES/kghostview.mo -share/locale/fi/LC_MESSAGES/khelpcenter.mo -share/locale/fi/LC_MESSAGES/khexedit.mo -share/locale/fi/LC_MESSAGES/khotkeys.mo -share/locale/fi/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/fi/LC_MESSAGES/kicker.mo -share/locale/fi/LC_MESSAGES/kiconedit.mo -share/locale/fi/LC_MESSAGES/kio_audiocd.mo -share/locale/fi/LC_MESSAGES/kio_finger.mo -share/locale/fi/LC_MESSAGES/kio_floppy.mo -share/locale/fi/LC_MESSAGES/kio_help.mo -share/locale/fi/LC_MESSAGES/kio_imap4.mo -share/locale/fi/LC_MESSAGES/kio_lan.mo -share/locale/fi/LC_MESSAGES/kio_man.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_smb.mo -share/locale/fi/LC_MESSAGES/kio_smbro.mo -share/locale/fi/LC_MESSAGES/kit.mo -share/locale/fi/LC_MESSAGES/kjezz.mo -share/locale/fi/LC_MESSAGES/kjobviewer.mo -share/locale/fi/LC_MESSAGES/kjots.mo -share/locale/fi/LC_MESSAGES/kjumpingcube.mo -share/locale/fi/LC_MESSAGES/klaptopdaemon.mo -share/locale/fi/LC_MESSAGES/klegacyimport.mo -share/locale/fi/LC_MESSAGES/kless.mo -share/locale/fi/LC_MESSAGES/klines.mo -share/locale/fi/LC_MESSAGES/klipper.mo -share/locale/fi/LC_MESSAGES/kljettool.mo -share/locale/fi/LC_MESSAGES/klock.mo -share/locale/fi/LC_MESSAGES/klpq.mo -share/locale/fi/LC_MESSAGES/klprfax.mo -share/locale/fi/LC_MESSAGES/kmahjongg.mo -share/locale/fi/LC_MESSAGES/kmail.mo -share/locale/fi/LC_MESSAGES/kmenuedit.mo -share/locale/fi/LC_MESSAGES/kmid.mo -share/locale/fi/LC_MESSAGES/kmidi.mo -share/locale/fi/LC_MESSAGES/kmines.mo -share/locale/fi/LC_MESSAGES/kminipagerapplet.mo -share/locale/fi/LC_MESSAGES/kmix.mo -share/locale/fi/LC_MESSAGES/kmoon.mo -share/locale/fi/LC_MESSAGES/knode.mo -share/locale/fi/LC_MESSAGES/knotes.mo -share/locale/fi/LC_MESSAGES/knotify.mo -share/locale/fi/LC_MESSAGES/kodo.mo -share/locale/fi/LC_MESSAGES/kolourpicker.mo -share/locale/fi/LC_MESSAGES/konqueror.mo -share/locale/fi/LC_MESSAGES/konquest.mo -share/locale/fi/LC_MESSAGES/konsole.mo -share/locale/fi/LC_MESSAGES/kooka.mo -share/locale/fi/LC_MESSAGES/korganizer.mo -share/locale/fi/LC_MESSAGES/korn.mo -share/locale/fi/LC_MESSAGES/kpackage.mo -share/locale/fi/LC_MESSAGES/kpager.mo -share/locale/fi/LC_MESSAGES/kpaint.mo -share/locale/fi/LC_MESSAGES/kpartapp.mo -share/locale/fi/LC_MESSAGES/kpartsaver.mo -share/locale/fi/LC_MESSAGES/kpat.mo -share/locale/fi/LC_MESSAGES/kpersonalizer.mo -share/locale/fi/LC_MESSAGES/kpilot.mo -share/locale/fi/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/fi/LC_MESSAGES/kpm.mo -share/locale/fi/LC_MESSAGES/kpoker.mo -share/locale/fi/LC_MESSAGES/kppp.mo -share/locale/fi/LC_MESSAGES/kppplogview.mo -share/locale/fi/LC_MESSAGES/kprinter.mo -share/locale/fi/LC_MESSAGES/kreadconfig.mo -share/locale/fi/LC_MESSAGES/kreversi.mo -share/locale/fi/LC_MESSAGES/kruler.mo -share/locale/fi/LC_MESSAGES/krunapplet.mo -share/locale/fi/LC_MESSAGES/ksame.mo -share/locale/fi/LC_MESSAGES/kscd.mo -share/locale/fi/LC_MESSAGES/kscoreapplet.mo -share/locale/fi/LC_MESSAGES/kshisen.mo -share/locale/fi/LC_MESSAGES/ksirc.mo -share/locale/fi/LC_MESSAGES/ksirtet.mo -share/locale/fi/LC_MESSAGES/ksmiletris.mo -share/locale/fi/LC_MESSAGES/ksmserver.mo -share/locale/fi/LC_MESSAGES/ksnake.mo -share/locale/fi/LC_MESSAGES/ksnapshot.mo -share/locale/fi/LC_MESSAGES/ksokoban.mo -share/locale/fi/LC_MESSAGES/kspaceduel.mo -share/locale/fi/LC_MESSAGES/ksplash.mo -share/locale/fi/LC_MESSAGES/kstart.mo -share/locale/fi/LC_MESSAGES/kstartperf.mo -share/locale/fi/LC_MESSAGES/ksysctrl.mo -share/locale/fi/LC_MESSAGES/ksysguard.mo -share/locale/fi/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/fi/LC_MESSAGES/ksysv.mo -share/locale/fi/LC_MESSAGES/ktalkd.mo -share/locale/fi/LC_MESSAGES/ktaskbarapplet.mo -share/locale/fi/LC_MESSAGES/kteatime.mo -share/locale/fi/LC_MESSAGES/ktimemon.mo -share/locale/fi/LC_MESSAGES/ktimer.mo -share/locale/fi/LC_MESSAGES/ktip.mo -share/locale/fi/LC_MESSAGES/ktron.mo -share/locale/fi/LC_MESSAGES/ktuberling.mo -share/locale/fi/LC_MESSAGES/ktux.mo -share/locale/fi/LC_MESSAGES/kuser.mo -share/locale/fi/LC_MESSAGES/kview.mo -share/locale/fi/LC_MESSAGES/kviewshell.mo -share/locale/fi/LC_MESSAGES/kwin.mo -share/locale/fi/LC_MESSAGES/kwin4.mo -share/locale/fi/LC_MESSAGES/kworldclock.mo -share/locale/fi/LC_MESSAGES/kwuftpd.mo -share/locale/fi/LC_MESSAGES/kxkb.mo -share/locale/fi/LC_MESSAGES/kxmlrpcd.mo -share/locale/fi/LC_MESSAGES/kxsconfig.mo -share/locale/fi/LC_MESSAGES/libkdegames.mo -share/locale/fi/LC_MESSAGES/libkdenetwork.mo -share/locale/fi/LC_MESSAGES/libkonq.mo -share/locale/fi/LC_MESSAGES/libkscan.mo -share/locale/fi/LC_MESSAGES/libkscreensaver.mo -share/locale/fi/LC_MESSAGES/libkwindefault_config.mo -share/locale/fi/LC_MESSAGES/libkwinicewm_config.mo -share/locale/fi/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/fi/LC_MESSAGES/libkwinquartz_config.mo -share/locale/fi/LC_MESSAGES/libtaskbar.mo -share/locale/fi/LC_MESSAGES/libtaskmanager.mo -share/locale/fi/LC_MESSAGES/lskat.mo -share/locale/fi/LC_MESSAGES/multiplayers.mo -share/locale/fi/LC_MESSAGES/naughtyapplet.mo -share/locale/fi/LC_MESSAGES/noatun.mo -share/locale/fi/LC_MESSAGES/nsplugin.mo -share/locale/fi/LC_MESSAGES/passwords.mo -share/locale/fi/LC_MESSAGES/ppdtranslations.mo -share/locale/fi/LC_MESSAGES/quicklauncher.mo -share/locale/fi/LC_MESSAGES/secpolicy.mo -share/locale/fi/LC_MESSAGES/spy.mo -share/locale/fi/LC_MESSAGES/taskbarextension.mo -share/locale/fi/LC_MESSAGES/twister.mo -share/locale/fi/LC_MESSAGES/uachangerplugin.mo -share/locale/fi/LC_MESSAGES/validatorsplugin.mo -share/locale/fi/LC_MESSAGES/webarchiver.mo -share/locale/fi/charset -share/locale/fi/entry.desktop -share/locale/fi/flag.png -share/locale/fr/LC_MESSAGES/aktion.mo -share/locale/fr/LC_MESSAGES/amor.mo -share/locale/fr/LC_MESSAGES/appletproxy.mo -share/locale/fr/LC_MESSAGES/ark.mo -share/locale/fr/LC_MESSAGES/artsbuilder.mo -share/locale/fr/LC_MESSAGES/artscontrol.mo -share/locale/fr/LC_MESSAGES/babelfish.mo -share/locale/fr/LC_MESSAGES/caitoo.mo -share/locale/fr/LC_MESSAGES/childpanelextension.mo -share/locale/fr/LC_MESSAGES/clockapplet.mo -share/locale/fr/LC_MESSAGES/colfind.mo -share/locale/fr/LC_MESSAGES/columbo.mo -share/locale/fr/LC_MESSAGES/cookbook.mo -share/locale/fr/LC_MESSAGES/cupsdconf.mo -share/locale/fr/LC_MESSAGES/desktop.mo -share/locale/fr/LC_MESSAGES/devcenter.mo -share/locale/fr/LC_MESSAGES/dirfilterplugin.mo -share/locale/fr/LC_MESSAGES/domtreeviewer.mo -share/locale/fr/LC_MESSAGES/drkonqi.mo -share/locale/fr/LC_MESSAGES/empath.mo -share/locale/fr/LC_MESSAGES/extensionproxy.mo -share/locale/fr/LC_MESSAGES/filetypes.mo -share/locale/fr/LC_MESSAGES/gideon.mo -share/locale/fr/LC_MESSAGES/gofai.mo -share/locale/fr/LC_MESSAGES/htmlsearch.mo -share/locale/fr/LC_MESSAGES/imgalleryplugin.mo -share/locale/fr/LC_MESSAGES/kab.mo -share/locale/fr/LC_MESSAGES/kabalone.mo -share/locale/fr/LC_MESSAGES/kaboodle.mo -share/locale/fr/LC_MESSAGES/kaccess.mo -share/locale/fr/LC_MESSAGES/kaddressbook.mo -share/locale/fr/LC_MESSAGES/kafka.mo -share/locale/fr/LC_MESSAGES/kandy.mo -share/locale/fr/LC_MESSAGES/kappfinder.mo -share/locale/fr/LC_MESSAGES/karchie.mo -share/locale/fr/LC_MESSAGES/karchiver.mo -share/locale/fr/LC_MESSAGES/karm.mo -share/locale/fr/LC_MESSAGES/kasbarextension.mo -share/locale/fr/LC_MESSAGES/kasteroids.mo -share/locale/fr/LC_MESSAGES/katalog.mo -share/locale/fr/LC_MESSAGES/kate.mo -share/locale/fr/LC_MESSAGES/katehtmltools.mo -share/locale/fr/LC_MESSAGES/kateinsertcommand.mo -share/locale/fr/LC_MESSAGES/katomic.mo -share/locale/fr/LC_MESSAGES/kautorun.mo -share/locale/fr/LC_MESSAGES/kbabel.mo -share/locale/fr/LC_MESSAGES/kbackgammon.mo -share/locale/fr/LC_MESSAGES/kbattleship.mo -share/locale/fr/LC_MESSAGES/kbiff.mo -share/locale/fr/LC_MESSAGES/kblackbox.mo -share/locale/fr/LC_MESSAGES/kbugbuster.mo -share/locale/fr/LC_MESSAGES/kcalc.mo -share/locale/fr/LC_MESSAGES/kcharselect.mo -share/locale/fr/LC_MESSAGES/kcharselectapplet.mo -share/locale/fr/LC_MESSAGES/kcm_scsimanager.mo -share/locale/fr/LC_MESSAGES/kcmaccess.mo -share/locale/fr/LC_MESSAGES/kcmail.mo -share/locale/fr/LC_MESSAGES/kcmarts.mo -share/locale/fr/LC_MESSAGES/kcmaudiocd.mo -share/locale/fr/LC_MESSAGES/kcmbackground.mo -share/locale/fr/LC_MESSAGES/kcmbell.mo -share/locale/fr/LC_MESSAGES/kcmbind.mo -share/locale/fr/LC_MESSAGES/kcmcolors.mo -share/locale/fr/LC_MESSAGES/kcmcrypto.mo -share/locale/fr/LC_MESSAGES/kcmcss.mo -share/locale/fr/LC_MESSAGES/kcmdhcpd.mo -share/locale/fr/LC_MESSAGES/kcmemail.mo -share/locale/fr/LC_MESSAGES/kcmenergy.mo -share/locale/fr/LC_MESSAGES/kcmfonts.mo -share/locale/fr/LC_MESSAGES/kcmgofai.mo -share/locale/fr/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/fr/LC_MESSAGES/kcmicons.mo -share/locale/fr/LC_MESSAGES/kcminfo.mo -share/locale/fr/LC_MESSAGES/kcminput.mo -share/locale/fr/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/fr/LC_MESSAGES/kcmiwatcher.mo -share/locale/fr/LC_MESSAGES/kcmkamera.mo -share/locale/fr/LC_MESSAGES/kcmkclock.mo -share/locale/fr/LC_MESSAGES/kcmkdb.mo -share/locale/fr/LC_MESSAGES/kcmkeys.mo -share/locale/fr/LC_MESSAGES/kcmkicker.mo -share/locale/fr/LC_MESSAGES/kcmkio.mo -share/locale/fr/LC_MESSAGES/kcmkmix.mo -share/locale/fr/LC_MESSAGES/kcmkonq.mo -share/locale/fr/LC_MESSAGES/kcmkonqhtml.mo -share/locale/fr/LC_MESSAGES/kcmkonsole.mo -share/locale/fr/LC_MESSAGES/kcmktalkd.mo -share/locale/fr/LC_MESSAGES/kcmkurifilt.mo -share/locale/fr/LC_MESSAGES/kcmkwindecoration.mo -share/locale/fr/LC_MESSAGES/kcmkwintheme.mo -share/locale/fr/LC_MESSAGES/kcmkwm.mo -share/locale/fr/LC_MESSAGES/kcmlanbrowser.mo -share/locale/fr/LC_MESSAGES/kcmlaptop.mo -share/locale/fr/LC_MESSAGES/kcmlaunch.mo -share/locale/fr/LC_MESSAGES/kcmlayout.mo -share/locale/fr/LC_MESSAGES/kcmlilo.mo -share/locale/fr/LC_MESSAGES/kcmlinuz.mo -share/locale/fr/LC_MESSAGES/kcmlocale.mo -share/locale/fr/LC_MESSAGES/kcmmediacontrol.mo -share/locale/fr/LC_MESSAGES/kcmmidi.mo -share/locale/fr/LC_MESSAGES/kcmnapster.mo -share/locale/fr/LC_MESSAGES/kcmnewsticker.mo -share/locale/fr/LC_MESSAGES/kcmnotify.mo -share/locale/fr/LC_MESSAGES/kcmodbc.mo -share/locale/fr/LC_MESSAGES/kcmsamba.mo -share/locale/fr/LC_MESSAGES/kcmscreensaver.mo -share/locale/fr/LC_MESSAGES/kcmsmserver.mo -share/locale/fr/LC_MESSAGES/kcmsocks.mo -share/locale/fr/LC_MESSAGES/kcmspellchecking.mo -share/locale/fr/LC_MESSAGES/kcmstyle.mo -share/locale/fr/LC_MESSAGES/kcmtaskbar.mo -share/locale/fr/LC_MESSAGES/kcmthemes.mo -share/locale/fr/LC_MESSAGES/kcmusb.mo -share/locale/fr/LC_MESSAGES/kcmuserenv.mo -share/locale/fr/LC_MESSAGES/kcoloredit.mo -share/locale/fr/LC_MESSAGES/kcontrol.mo -share/locale/fr/LC_MESSAGES/kcron.mo -share/locale/fr/LC_MESSAGES/kdao.mo -share/locale/fr/LC_MESSAGES/kdbbrowser.mo -share/locale/fr/LC_MESSAGES/kdcop.mo -share/locale/fr/LC_MESSAGES/kdebugdialog.mo -share/locale/fr/LC_MESSAGES/kdelibs.mo -share/locale/fr/LC_MESSAGES/kdepasswd.mo -share/locale/fr/LC_MESSAGES/kdeprintfax.mo -share/locale/fr/LC_MESSAGES/kdesktop.mo -share/locale/fr/LC_MESSAGES/kdessh.mo -share/locale/fr/LC_MESSAGES/kdestdifacedemo.mo -share/locale/fr/LC_MESSAGES/kdesu.mo -share/locale/fr/LC_MESSAGES/kdesud.mo -share/locale/fr/LC_MESSAGES/kdevelop.mo -share/locale/fr/LC_MESSAGES/kdevtipofday.mo -share/locale/fr/LC_MESSAGES/kdf.mo -share/locale/fr/LC_MESSAGES/kdict.mo -share/locale/fr/LC_MESSAGES/kdictapplet.mo -share/locale/fr/LC_MESSAGES/kdiff.mo -share/locale/fr/LC_MESSAGES/kdmchooser.mo -share/locale/fr/LC_MESSAGES/kdmconfig.mo -share/locale/fr/LC_MESSAGES/kdmgreet.mo -share/locale/fr/LC_MESSAGES/kdvi.mo -share/locale/fr/LC_MESSAGES/kedit.mo -share/locale/fr/LC_MESSAGES/keystone.mo -share/locale/fr/LC_MESSAGES/kfax.mo -share/locale/fr/LC_MESSAGES/kfifteenapplet.mo -share/locale/fr/LC_MESSAGES/kfind.mo -share/locale/fr/LC_MESSAGES/kfindpart.mo -share/locale/fr/LC_MESSAGES/kfinger.mo -share/locale/fr/LC_MESSAGES/kfloppy.mo -share/locale/fr/LC_MESSAGES/kfmclient.mo -share/locale/fr/LC_MESSAGES/kfmexec.mo -share/locale/fr/LC_MESSAGES/kfontinst.mo -share/locale/fr/LC_MESSAGES/kformeditor.mo -share/locale/fr/LC_MESSAGES/kformviewer.mo -share/locale/fr/LC_MESSAGES/kfortune.mo -share/locale/fr/LC_MESSAGES/kfract.mo -share/locale/fr/LC_MESSAGES/kghostview.mo -share/locale/fr/LC_MESSAGES/kglchess.mo -share/locale/fr/LC_MESSAGES/kgnuplot.mo -share/locale/fr/LC_MESSAGES/kgrapher.mo -share/locale/fr/LC_MESSAGES/khelpcenter.mo -share/locale/fr/LC_MESSAGES/khexedit.mo -share/locale/fr/LC_MESSAGES/khotkeys.mo -share/locale/fr/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/fr/LC_MESSAGES/kicker.mo -share/locale/fr/LC_MESSAGES/kiconedit.mo -share/locale/fr/LC_MESSAGES/kicq.mo -share/locale/fr/LC_MESSAGES/kikbd.mo -share/locale/fr/LC_MESSAGES/kim.mo -share/locale/fr/LC_MESSAGES/kio_audiocd.mo -share/locale/fr/LC_MESSAGES/kio_finger.mo -share/locale/fr/LC_MESSAGES/kio_floppy.mo -share/locale/fr/LC_MESSAGES/kio_help.mo -share/locale/fr/LC_MESSAGES/kio_imap4.mo -share/locale/fr/LC_MESSAGES/kio_lan.mo -share/locale/fr/LC_MESSAGES/kio_man.mo -share/locale/fr/LC_MESSAGES/kio_nfs.mo -share/locale/fr/LC_MESSAGES/kio_nntp.mo -share/locale/fr/LC_MESSAGES/kio_pop3.mo -share/locale/fr/LC_MESSAGES/kio_smb.mo -share/locale/fr/LC_MESSAGES/kio_smbro.mo -share/locale/fr/LC_MESSAGES/kit.mo -share/locale/fr/LC_MESSAGES/kjezz.mo -share/locale/fr/LC_MESSAGES/kjobviewer.mo -share/locale/fr/LC_MESSAGES/kjots.mo -share/locale/fr/LC_MESSAGES/kjumpingcube.mo -share/locale/fr/LC_MESSAGES/klaptopdaemon.mo -share/locale/fr/LC_MESSAGES/klegacyimport.mo -share/locale/fr/LC_MESSAGES/kless.mo -share/locale/fr/LC_MESSAGES/klines.mo -share/locale/fr/LC_MESSAGES/klipper.mo -share/locale/fr/LC_MESSAGES/kljettool.mo -share/locale/fr/LC_MESSAGES/klock.mo -share/locale/fr/LC_MESSAGES/klpq.mo -share/locale/fr/LC_MESSAGES/klprfax.mo -share/locale/fr/LC_MESSAGES/kmahjongg.mo -share/locale/fr/LC_MESSAGES/kmail.mo -share/locale/fr/LC_MESSAGES/kmailcvt.mo -share/locale/fr/LC_MESSAGES/kmake.mo -share/locale/fr/LC_MESSAGES/kmenuedit.mo -share/locale/fr/LC_MESSAGES/kmessage.mo -share/locale/fr/LC_MESSAGES/kmid.mo -share/locale/fr/LC_MESSAGES/kmidi.mo -share/locale/fr/LC_MESSAGES/kmines.mo -share/locale/fr/LC_MESSAGES/kminipagerapplet.mo -share/locale/fr/LC_MESSAGES/kmix.mo -share/locale/fr/LC_MESSAGES/kmms.mo -share/locale/fr/LC_MESSAGES/kmonop.mo -share/locale/fr/LC_MESSAGES/kmoon.mo -share/locale/fr/LC_MESSAGES/knetmgr.mo -share/locale/fr/LC_MESSAGES/knewsticker.mo -share/locale/fr/LC_MESSAGES/knode.mo -share/locale/fr/LC_MESSAGES/knotes.mo -share/locale/fr/LC_MESSAGES/knotify.mo -share/locale/fr/LC_MESSAGES/knu.mo -share/locale/fr/LC_MESSAGES/kodo.mo -share/locale/fr/LC_MESSAGES/kolourpicker.mo -share/locale/fr/LC_MESSAGES/konqueror.mo -share/locale/fr/LC_MESSAGES/konquest.mo -share/locale/fr/LC_MESSAGES/konsole.mo -share/locale/fr/LC_MESSAGES/konv.mo -share/locale/fr/LC_MESSAGES/kooka.mo -share/locale/fr/LC_MESSAGES/kopennap.mo -share/locale/fr/LC_MESSAGES/korganizer.mo -share/locale/fr/LC_MESSAGES/korn.mo -share/locale/fr/LC_MESSAGES/kp.mo -share/locale/fr/LC_MESSAGES/kpackage.mo -share/locale/fr/LC_MESSAGES/kpager.mo -share/locale/fr/LC_MESSAGES/kpaint.mo -share/locale/fr/LC_MESSAGES/kpartapp.mo -share/locale/fr/LC_MESSAGES/kpartsaver.mo -share/locale/fr/LC_MESSAGES/kpat.mo -share/locale/fr/LC_MESSAGES/kpersonalizer.mo -share/locale/fr/LC_MESSAGES/kphone.mo -share/locale/fr/LC_MESSAGES/kpilot.mo -share/locale/fr/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/fr/LC_MESSAGES/kpm.mo -share/locale/fr/LC_MESSAGES/kpoker.mo -share/locale/fr/LC_MESSAGES/kpovmodeler.mo -share/locale/fr/LC_MESSAGES/kppp.mo -share/locale/fr/LC_MESSAGES/kppplogview.mo -share/locale/fr/LC_MESSAGES/kprinter.mo -share/locale/fr/LC_MESSAGES/kreadconfig.mo -share/locale/fr/LC_MESSAGES/kreversi.mo -share/locale/fr/LC_MESSAGES/krn.mo -share/locale/fr/LC_MESSAGES/kruler.mo -share/locale/fr/LC_MESSAGES/krunapplet.mo -share/locale/fr/LC_MESSAGES/ksame.mo -share/locale/fr/LC_MESSAGES/kscd.mo -share/locale/fr/LC_MESSAGES/kscoreapplet.mo -share/locale/fr/LC_MESSAGES/kshisen.mo -share/locale/fr/LC_MESSAGES/ksirc.mo -share/locale/fr/LC_MESSAGES/ksirtet.mo -share/locale/fr/LC_MESSAGES/ksmiletris.mo -share/locale/fr/LC_MESSAGES/ksmserver.mo -share/locale/fr/LC_MESSAGES/ksnake.mo -share/locale/fr/LC_MESSAGES/ksnapshot.mo -share/locale/fr/LC_MESSAGES/ksokoban.mo -share/locale/fr/LC_MESSAGES/kspaceduel.mo -share/locale/fr/LC_MESSAGES/ksplash.mo -share/locale/fr/LC_MESSAGES/kstart.mo -share/locale/fr/LC_MESSAGES/kstartperf.mo -share/locale/fr/LC_MESSAGES/kstockticker.mo -share/locale/fr/LC_MESSAGES/ksysctrl.mo -share/locale/fr/LC_MESSAGES/ksysguard.mo -share/locale/fr/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/fr/LC_MESSAGES/ksystrayproxy.mo -share/locale/fr/LC_MESSAGES/ksysv.mo -share/locale/fr/LC_MESSAGES/ktables.mo -share/locale/fr/LC_MESSAGES/ktalk.mo -share/locale/fr/LC_MESSAGES/ktalkd.mo -share/locale/fr/LC_MESSAGES/ktaskbarapplet.mo -share/locale/fr/LC_MESSAGES/kteatime.mo -share/locale/fr/LC_MESSAGES/ktimemon.mo -share/locale/fr/LC_MESSAGES/ktimer.mo -share/locale/fr/LC_MESSAGES/ktip.mo -share/locale/fr/LC_MESSAGES/ktouch.mo -share/locale/fr/LC_MESSAGES/ktron.mo -share/locale/fr/LC_MESSAGES/ktuberling.mo -share/locale/fr/LC_MESSAGES/ktux.mo -share/locale/fr/LC_MESSAGES/kuser.mo -share/locale/fr/LC_MESSAGES/kvidmode.mo -share/locale/fr/LC_MESSAGES/kview.mo -share/locale/fr/LC_MESSAGES/kviewshell.mo -share/locale/fr/LC_MESSAGES/kwebstat.mo -share/locale/fr/LC_MESSAGES/kwin.mo -share/locale/fr/LC_MESSAGES/kwin4.mo -share/locale/fr/LC_MESSAGES/kworldclock.mo -share/locale/fr/LC_MESSAGES/kwuftpd.mo -share/locale/fr/LC_MESSAGES/kxkb.mo -share/locale/fr/LC_MESSAGES/kxmlrpcd.mo -share/locale/fr/LC_MESSAGES/kxsconfig.mo -share/locale/fr/LC_MESSAGES/libkdegames.mo -share/locale/fr/LC_MESSAGES/libkdenetwork.mo -share/locale/fr/LC_MESSAGES/libkonq.mo -share/locale/fr/LC_MESSAGES/libkscan.mo -share/locale/fr/LC_MESSAGES/libkscreensaver.mo -share/locale/fr/LC_MESSAGES/libkwindefault_config.mo -share/locale/fr/LC_MESSAGES/libkwinicewm_config.mo -share/locale/fr/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/fr/LC_MESSAGES/libkwinquartz_config.mo -share/locale/fr/LC_MESSAGES/libtaskbar.mo -share/locale/fr/LC_MESSAGES/libtaskmanager.mo -share/locale/fr/LC_MESSAGES/lskat.mo -share/locale/fr/LC_MESSAGES/mediacontrol.mo -share/locale/fr/LC_MESSAGES/multiplayers.mo -share/locale/fr/LC_MESSAGES/naughtyapplet.mo -share/locale/fr/LC_MESSAGES/noatun.mo -share/locale/fr/LC_MESSAGES/nsplugin.mo -share/locale/fr/LC_MESSAGES/passwords.mo -share/locale/fr/LC_MESSAGES/ppdtranslations.mo -share/locale/fr/LC_MESSAGES/pws.mo -share/locale/fr/LC_MESSAGES/quicklauncher.mo -share/locale/fr/LC_MESSAGES/secpolicy.mo -share/locale/fr/LC_MESSAGES/spy.mo -share/locale/fr/LC_MESSAGES/taskbarextension.mo -share/locale/fr/LC_MESSAGES/twister.mo -share/locale/fr/LC_MESSAGES/uachangerplugin.mo -share/locale/fr/LC_MESSAGES/validatorsplugin.mo -share/locale/fr/LC_MESSAGES/webarchiver.mo -share/locale/fr/charset -share/locale/fr/entry.desktop -share/locale/fr/flag.png -share/locale/he/LC_MESSAGES/aktion.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/artsbuilder.mo -share/locale/he/LC_MESSAGES/artscontrol.mo -share/locale/he/LC_MESSAGES/caitoo.mo -share/locale/he/LC_MESSAGES/childpanelextension.mo -share/locale/he/LC_MESSAGES/clockapplet.mo -share/locale/he/LC_MESSAGES/colfind.mo -share/locale/he/LC_MESSAGES/columbo.mo -share/locale/he/LC_MESSAGES/desktop.mo -share/locale/he/LC_MESSAGES/drkonqi.mo -share/locale/he/LC_MESSAGES/extensionproxy.mo -share/locale/he/LC_MESSAGES/filetypes.mo -share/locale/he/LC_MESSAGES/htmlsearch.mo -share/locale/he/LC_MESSAGES/kab.mo -share/locale/he/LC_MESSAGES/kabalone.mo -share/locale/he/LC_MESSAGES/kaccess.mo -share/locale/he/LC_MESSAGES/kaddressbook.mo -share/locale/he/LC_MESSAGES/kappfinder.mo -share/locale/he/LC_MESSAGES/karchie.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/katalog.mo -share/locale/he/LC_MESSAGES/kate.mo -share/locale/he/LC_MESSAGES/katomic.mo -share/locale/he/LC_MESSAGES/kautorun.mo -share/locale/he/LC_MESSAGES/kbiff.mo -share/locale/he/LC_MESSAGES/kblackbox.mo -share/locale/he/LC_MESSAGES/kcalc.mo -share/locale/he/LC_MESSAGES/kcharselect.mo -share/locale/he/LC_MESSAGES/kcharselectapplet.mo -share/locale/he/LC_MESSAGES/kcmaccess.mo -share/locale/he/LC_MESSAGES/kcmail.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 -share/locale/he/LC_MESSAGES/kcmcolors.mo -share/locale/he/LC_MESSAGES/kcmcrypto.mo -share/locale/he/LC_MESSAGES/kcmcss.mo -share/locale/he/LC_MESSAGES/kcmemail.mo -share/locale/he/LC_MESSAGES/kcmenergy.mo -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/kcminput.mo -share/locale/he/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/he/LC_MESSAGES/kcmkamera.mo -share/locale/he/LC_MESSAGES/kcmkclock.mo -share/locale/he/LC_MESSAGES/kcmkdb.mo -share/locale/he/LC_MESSAGES/kcmkeys.mo -share/locale/he/LC_MESSAGES/kcmkicker.mo -share/locale/he/LC_MESSAGES/kcmkio.mo -share/locale/he/LC_MESSAGES/kcmkmix.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/kcmktalkd.mo -share/locale/he/LC_MESSAGES/kcmkurifilt.mo -share/locale/he/LC_MESSAGES/kcmkwindecoration.mo -share/locale/he/LC_MESSAGES/kcmkwintheme.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/kcmlocale.mo -share/locale/he/LC_MESSAGES/kcmmidi.mo -share/locale/he/LC_MESSAGES/kcmnewsticker.mo -share/locale/he/LC_MESSAGES/kcmnotify.mo -share/locale/he/LC_MESSAGES/kcmsamba.mo -share/locale/he/LC_MESSAGES/kcmscreensaver.mo -share/locale/he/LC_MESSAGES/kcmsmserver.mo -share/locale/he/LC_MESSAGES/kcmsocks.mo -share/locale/he/LC_MESSAGES/kcmspellchecking.mo -share/locale/he/LC_MESSAGES/kcmstyle.mo -share/locale/he/LC_MESSAGES/kcmtaskbar.mo -share/locale/he/LC_MESSAGES/kcmthemes.mo -share/locale/he/LC_MESSAGES/kcmusb.mo -share/locale/he/LC_MESSAGES/kcontrol.mo -share/locale/he/LC_MESSAGES/kcron.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/kdepasswd.mo -share/locale/he/LC_MESSAGES/kdeprintfax.mo -share/locale/he/LC_MESSAGES/kdesktop.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/kdmchooser.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/keystone.mo -share/locale/he/LC_MESSAGES/kfax.mo -share/locale/he/LC_MESSAGES/kfifteenapplet.mo -share/locale/he/LC_MESSAGES/kfind.mo -share/locale/he/LC_MESSAGES/kfindpart.mo -share/locale/he/LC_MESSAGES/kfinger.mo -share/locale/he/LC_MESSAGES/kfloppy.mo -share/locale/he/LC_MESSAGES/kfmclient.mo -share/locale/he/LC_MESSAGES/kfmexec.mo -share/locale/he/LC_MESSAGES/kformeditor.mo -share/locale/he/LC_MESSAGES/kformviewer.mo -share/locale/he/LC_MESSAGES/kfract.mo -share/locale/he/LC_MESSAGES/kghostview.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/kicker.mo -share/locale/he/LC_MESSAGES/kiconedit.mo -share/locale/he/LC_MESSAGES/kikbd.mo -share/locale/he/LC_MESSAGES/kio_audiocd.mo -share/locale/he/LC_MESSAGES/kio_finger.mo -share/locale/he/LC_MESSAGES/kio_floppy.mo -share/locale/he/LC_MESSAGES/kio_help.mo -share/locale/he/LC_MESSAGES/kio_imap4.mo -share/locale/he/LC_MESSAGES/kio_lan.mo -share/locale/he/LC_MESSAGES/kio_man.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_smb.mo -share/locale/he/LC_MESSAGES/kio_smbro.mo -share/locale/he/LC_MESSAGES/kit.mo -share/locale/he/LC_MESSAGES/kjezz.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/klegacyimport.mo -share/locale/he/LC_MESSAGES/kless.mo -share/locale/he/LC_MESSAGES/klipper.mo -share/locale/he/LC_MESSAGES/kljettool.mo -share/locale/he/LC_MESSAGES/klock.mo -share/locale/he/LC_MESSAGES/klpq.mo -share/locale/he/LC_MESSAGES/kmahjongg.mo -share/locale/he/LC_MESSAGES/kmail.mo -share/locale/he/LC_MESSAGES/kmailcvt.mo -share/locale/he/LC_MESSAGES/kmenuedit.mo -share/locale/he/LC_MESSAGES/kmid.mo -share/locale/he/LC_MESSAGES/kmidi.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/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/knu.mo -share/locale/he/LC_MESSAGES/kodo.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/konv.mo -share/locale/he/LC_MESSAGES/korganizer.mo -share/locale/he/LC_MESSAGES/korn.mo -share/locale/he/LC_MESSAGES/kp.mo -share/locale/he/LC_MESSAGES/kpackage.mo -share/locale/he/LC_MESSAGES/kpager.mo -share/locale/he/LC_MESSAGES/kpaint.mo -share/locale/he/LC_MESSAGES/kpartapp.mo -share/locale/he/LC_MESSAGES/kpartsaver.mo -share/locale/he/LC_MESSAGES/kpat.mo -share/locale/he/LC_MESSAGES/kpersonalizer.mo -share/locale/he/LC_MESSAGES/kphone.mo -share/locale/he/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/he/LC_MESSAGES/kpm.mo -share/locale/he/LC_MESSAGES/kpoker.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/kreadconfig.mo -share/locale/he/LC_MESSAGES/kreversi.mo -share/locale/he/LC_MESSAGES/krn.mo -share/locale/he/LC_MESSAGES/kruler.mo -share/locale/he/LC_MESSAGES/krunapplet.mo -share/locale/he/LC_MESSAGES/ksame.mo -share/locale/he/LC_MESSAGES/kscd.mo -share/locale/he/LC_MESSAGES/kscoreapplet.mo -share/locale/he/LC_MESSAGES/kshisen.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/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/kstart.mo -share/locale/he/LC_MESSAGES/kstartperf.mo -share/locale/he/LC_MESSAGES/kstockticker.mo -share/locale/he/LC_MESSAGES/ksysctrl.mo -share/locale/he/LC_MESSAGES/ksysguard.mo -share/locale/he/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/he/LC_MESSAGES/ksysv.mo -share/locale/he/LC_MESSAGES/ktables.mo -share/locale/he/LC_MESSAGES/ktalkd.mo -share/locale/he/LC_MESSAGES/ktaskbarapplet.mo -share/locale/he/LC_MESSAGES/kteatime.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/ktron.mo -share/locale/he/LC_MESSAGES/ktuberling.mo -share/locale/he/LC_MESSAGES/ktux.mo -share/locale/he/LC_MESSAGES/kuser.mo -share/locale/he/LC_MESSAGES/kview.mo -share/locale/he/LC_MESSAGES/kviewshell.mo -share/locale/he/LC_MESSAGES/kwin.mo -share/locale/he/LC_MESSAGES/kworldclock.mo -share/locale/he/LC_MESSAGES/kwuftpd.mo -share/locale/he/LC_MESSAGES/kxkb.mo -share/locale/he/LC_MESSAGES/kxmlrpcd.mo -share/locale/he/LC_MESSAGES/kxsconfig.mo -share/locale/he/LC_MESSAGES/libkdegames.mo -share/locale/he/LC_MESSAGES/libkdenetwork.mo -share/locale/he/LC_MESSAGES/libkonq.mo -share/locale/he/LC_MESSAGES/libkscreensaver.mo -share/locale/he/LC_MESSAGES/libkwindefault_config.mo -share/locale/he/LC_MESSAGES/libkwinicewm_config.mo -share/locale/he/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/he/LC_MESSAGES/libkwinquartz_config.mo -share/locale/he/LC_MESSAGES/libtaskbar.mo -share/locale/he/LC_MESSAGES/libtaskmanager.mo -share/locale/he/LC_MESSAGES/lskat.mo -share/locale/he/LC_MESSAGES/multiplayers.mo -share/locale/he/LC_MESSAGES/naughtyapplet.mo -share/locale/he/LC_MESSAGES/noatun.mo -share/locale/he/LC_MESSAGES/nsplugin.mo -share/locale/he/LC_MESSAGES/passwords.mo -share/locale/he/LC_MESSAGES/quicklauncher.mo -share/locale/he/LC_MESSAGES/secpolicy.mo -share/locale/he/LC_MESSAGES/taskbarextension.mo -share/locale/he/LC_MESSAGES/twister.mo -share/locale/he/charset -share/locale/he/entry.desktop -share/locale/he/flag.png -share/locale/hu/LC_MESSAGES/aktion.mo -share/locale/hu/LC_MESSAGES/amor.mo -share/locale/hu/LC_MESSAGES/appletproxy.mo -share/locale/hu/LC_MESSAGES/ark.mo -share/locale/hu/LC_MESSAGES/artsbuilder.mo -share/locale/hu/LC_MESSAGES/artscontrol.mo -share/locale/hu/LC_MESSAGES/babelfish.mo -share/locale/hu/LC_MESSAGES/caitoo.mo -share/locale/hu/LC_MESSAGES/childpanelextension.mo -share/locale/hu/LC_MESSAGES/clockapplet.mo -share/locale/hu/LC_MESSAGES/colfind.mo -share/locale/hu/LC_MESSAGES/columbo.mo -share/locale/hu/LC_MESSAGES/cookbook.mo -share/locale/hu/LC_MESSAGES/cupsdconf.mo -share/locale/hu/LC_MESSAGES/desktop.mo -share/locale/hu/LC_MESSAGES/devcenter.mo -share/locale/hu/LC_MESSAGES/dirfilterplugin.mo -share/locale/hu/LC_MESSAGES/domtreeviewer.mo -share/locale/hu/LC_MESSAGES/drkonqi.mo -share/locale/hu/LC_MESSAGES/empath.mo -share/locale/hu/LC_MESSAGES/extensionproxy.mo -share/locale/hu/LC_MESSAGES/filetypes.mo -share/locale/hu/LC_MESSAGES/gideon.mo -share/locale/hu/LC_MESSAGES/gofai.mo -share/locale/hu/LC_MESSAGES/htmlsearch.mo -share/locale/hu/LC_MESSAGES/imgalleryplugin.mo -share/locale/hu/LC_MESSAGES/kab.mo -share/locale/hu/LC_MESSAGES/kabalone.mo -share/locale/hu/LC_MESSAGES/kaboodle.mo -share/locale/hu/LC_MESSAGES/kaccess.mo -share/locale/hu/LC_MESSAGES/kaddressbook.mo -share/locale/hu/LC_MESSAGES/kafka.mo -share/locale/hu/LC_MESSAGES/kandy.mo -share/locale/hu/LC_MESSAGES/kappfinder.mo -share/locale/hu/LC_MESSAGES/karchie.mo -share/locale/hu/LC_MESSAGES/karchiver.mo -share/locale/hu/LC_MESSAGES/karm.mo -share/locale/hu/LC_MESSAGES/kasbarextension.mo -share/locale/hu/LC_MESSAGES/kasteroids.mo -share/locale/hu/LC_MESSAGES/katalog.mo -share/locale/hu/LC_MESSAGES/kate.mo -share/locale/hu/LC_MESSAGES/katehtmltools.mo -share/locale/hu/LC_MESSAGES/kateinsertcommand.mo -share/locale/hu/LC_MESSAGES/katomic.mo -share/locale/hu/LC_MESSAGES/kautorun.mo -share/locale/hu/LC_MESSAGES/kbabel.mo -share/locale/hu/LC_MESSAGES/kbackgammon.mo -share/locale/hu/LC_MESSAGES/kbattleship.mo -share/locale/hu/LC_MESSAGES/kbiff.mo -share/locale/hu/LC_MESSAGES/kblackbox.mo -share/locale/hu/LC_MESSAGES/kbugbuster.mo -share/locale/hu/LC_MESSAGES/kcalc.mo -share/locale/hu/LC_MESSAGES/kcharselect.mo -share/locale/hu/LC_MESSAGES/kcharselectapplet.mo -share/locale/hu/LC_MESSAGES/kcm_scsimanager.mo -share/locale/hu/LC_MESSAGES/kcmaccess.mo -share/locale/hu/LC_MESSAGES/kcmail.mo -share/locale/hu/LC_MESSAGES/kcmarts.mo -share/locale/hu/LC_MESSAGES/kcmaudiocd.mo -share/locale/hu/LC_MESSAGES/kcmbackground.mo -share/locale/hu/LC_MESSAGES/kcmbell.mo -share/locale/hu/LC_MESSAGES/kcmbind.mo -share/locale/hu/LC_MESSAGES/kcmcolors.mo -share/locale/hu/LC_MESSAGES/kcmcrypto.mo -share/locale/hu/LC_MESSAGES/kcmcss.mo -share/locale/hu/LC_MESSAGES/kcmdhcpd.mo -share/locale/hu/LC_MESSAGES/kcmemail.mo -share/locale/hu/LC_MESSAGES/kcmenergy.mo -share/locale/hu/LC_MESSAGES/kcmfonts.mo -share/locale/hu/LC_MESSAGES/kcmgofai.mo -share/locale/hu/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/hu/LC_MESSAGES/kcmicons.mo -share/locale/hu/LC_MESSAGES/kcminfo.mo -share/locale/hu/LC_MESSAGES/kcminput.mo -share/locale/hu/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/hu/LC_MESSAGES/kcmiwatcher.mo -share/locale/hu/LC_MESSAGES/kcmkamera.mo -share/locale/hu/LC_MESSAGES/kcmkclock.mo -share/locale/hu/LC_MESSAGES/kcmkdb.mo -share/locale/hu/LC_MESSAGES/kcmkeys.mo -share/locale/hu/LC_MESSAGES/kcmkicker.mo -share/locale/hu/LC_MESSAGES/kcmkio.mo -share/locale/hu/LC_MESSAGES/kcmkmix.mo -share/locale/hu/LC_MESSAGES/kcmkonq.mo -share/locale/hu/LC_MESSAGES/kcmkonqhtml.mo -share/locale/hu/LC_MESSAGES/kcmkonsole.mo -share/locale/hu/LC_MESSAGES/kcmktalkd.mo -share/locale/hu/LC_MESSAGES/kcmkurifilt.mo -share/locale/hu/LC_MESSAGES/kcmkwindecoration.mo -share/locale/hu/LC_MESSAGES/kcmkwintheme.mo -share/locale/hu/LC_MESSAGES/kcmkwm.mo -share/locale/hu/LC_MESSAGES/kcmlanbrowser.mo -share/locale/hu/LC_MESSAGES/kcmlaptop.mo -share/locale/hu/LC_MESSAGES/kcmlaunch.mo -share/locale/hu/LC_MESSAGES/kcmlayout.mo -share/locale/hu/LC_MESSAGES/kcmlilo.mo -share/locale/hu/LC_MESSAGES/kcmlinuz.mo -share/locale/hu/LC_MESSAGES/kcmlocale.mo -share/locale/hu/LC_MESSAGES/kcmmediacontrol.mo -share/locale/hu/LC_MESSAGES/kcmmidi.mo -share/locale/hu/LC_MESSAGES/kcmnapster.mo -share/locale/hu/LC_MESSAGES/kcmnewsticker.mo -share/locale/hu/LC_MESSAGES/kcmnotify.mo -share/locale/hu/LC_MESSAGES/kcmodbc.mo -share/locale/hu/LC_MESSAGES/kcmsamba.mo -share/locale/hu/LC_MESSAGES/kcmscreensaver.mo -share/locale/hu/LC_MESSAGES/kcmsmserver.mo -share/locale/hu/LC_MESSAGES/kcmsocks.mo -share/locale/hu/LC_MESSAGES/kcmspellchecking.mo -share/locale/hu/LC_MESSAGES/kcmstyle.mo -share/locale/hu/LC_MESSAGES/kcmtaskbar.mo -share/locale/hu/LC_MESSAGES/kcmthemes.mo -share/locale/hu/LC_MESSAGES/kcmusb.mo -share/locale/hu/LC_MESSAGES/kcmuserenv.mo -share/locale/hu/LC_MESSAGES/kcoloredit.mo -share/locale/hu/LC_MESSAGES/kcontrol.mo -share/locale/hu/LC_MESSAGES/kcron.mo -share/locale/hu/LC_MESSAGES/kdao.mo -share/locale/hu/LC_MESSAGES/kdbbrowser.mo -share/locale/hu/LC_MESSAGES/kdcop.mo -share/locale/hu/LC_MESSAGES/kdebugdialog.mo -share/locale/hu/LC_MESSAGES/kdelibs.mo -share/locale/hu/LC_MESSAGES/kdepasswd.mo -share/locale/hu/LC_MESSAGES/kdeprintfax.mo -share/locale/hu/LC_MESSAGES/kdesktop.mo -share/locale/hu/LC_MESSAGES/kdessh.mo -share/locale/hu/LC_MESSAGES/kdestdifacedemo.mo -share/locale/hu/LC_MESSAGES/kdesu.mo -share/locale/hu/LC_MESSAGES/kdesud.mo -share/locale/hu/LC_MESSAGES/kdevelop.mo -share/locale/hu/LC_MESSAGES/kdevtipofday.mo -share/locale/hu/LC_MESSAGES/kdf.mo -share/locale/hu/LC_MESSAGES/kdict.mo -share/locale/hu/LC_MESSAGES/kdictapplet.mo -share/locale/hu/LC_MESSAGES/kdiff.mo -share/locale/hu/LC_MESSAGES/kdmchooser.mo -share/locale/hu/LC_MESSAGES/kdmconfig.mo -share/locale/hu/LC_MESSAGES/kdmgreet.mo -share/locale/hu/LC_MESSAGES/kdvi.mo -share/locale/hu/LC_MESSAGES/kedit.mo -share/locale/hu/LC_MESSAGES/keystone.mo -share/locale/hu/LC_MESSAGES/kfax.mo -share/locale/hu/LC_MESSAGES/kfifteenapplet.mo -share/locale/hu/LC_MESSAGES/kfind.mo -share/locale/hu/LC_MESSAGES/kfindpart.mo -share/locale/hu/LC_MESSAGES/kfinger.mo -share/locale/hu/LC_MESSAGES/kfloppy.mo -share/locale/hu/LC_MESSAGES/kfmclient.mo -share/locale/hu/LC_MESSAGES/kfmexec.mo -share/locale/hu/LC_MESSAGES/kfontinst.mo -share/locale/hu/LC_MESSAGES/kformeditor.mo -share/locale/hu/LC_MESSAGES/kformviewer.mo -share/locale/hu/LC_MESSAGES/kfourtune.mo -share/locale/hu/LC_MESSAGES/kfract.mo -share/locale/hu/LC_MESSAGES/kghostview.mo -share/locale/hu/LC_MESSAGES/kglchess.mo -share/locale/hu/LC_MESSAGES/kgnuplot.mo -share/locale/hu/LC_MESSAGES/kgrapher.mo -share/locale/hu/LC_MESSAGES/khelpcenter.mo -share/locale/hu/LC_MESSAGES/khexedit.mo -share/locale/hu/LC_MESSAGES/khotkeys.mo -share/locale/hu/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/hu/LC_MESSAGES/kicker.mo -share/locale/hu/LC_MESSAGES/kiconedit.mo -share/locale/hu/LC_MESSAGES/kicq.mo -share/locale/hu/LC_MESSAGES/kikbd.mo -share/locale/hu/LC_MESSAGES/kim.mo -share/locale/hu/LC_MESSAGES/kio_audiocd.mo -share/locale/hu/LC_MESSAGES/kio_finger.mo -share/locale/hu/LC_MESSAGES/kio_floppy.mo -share/locale/hu/LC_MESSAGES/kio_help.mo -share/locale/hu/LC_MESSAGES/kio_imap4.mo -share/locale/hu/LC_MESSAGES/kio_lan.mo -share/locale/hu/LC_MESSAGES/kio_man.mo -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_smb.mo -share/locale/hu/LC_MESSAGES/kio_smbro.mo -share/locale/hu/LC_MESSAGES/kit.mo -share/locale/hu/LC_MESSAGES/kjezz.mo -share/locale/hu/LC_MESSAGES/kjobviewer.mo -share/locale/hu/LC_MESSAGES/kjots.mo -share/locale/hu/LC_MESSAGES/kjumpingcube.mo -share/locale/hu/LC_MESSAGES/klaptopdaemon.mo -share/locale/hu/LC_MESSAGES/klegacyimport.mo -share/locale/hu/LC_MESSAGES/kless.mo -share/locale/hu/LC_MESSAGES/klines.mo -share/locale/hu/LC_MESSAGES/klipper.mo -share/locale/hu/LC_MESSAGES/kljettool.mo -share/locale/hu/LC_MESSAGES/klock.mo -share/locale/hu/LC_MESSAGES/klpq.mo -share/locale/hu/LC_MESSAGES/klprfax.mo -share/locale/hu/LC_MESSAGES/kmahjongg.mo -share/locale/hu/LC_MESSAGES/kmail.mo -share/locale/hu/LC_MESSAGES/kmailcvt.mo -share/locale/hu/LC_MESSAGES/kmake.mo -share/locale/hu/LC_MESSAGES/kmenuedit.mo -share/locale/hu/LC_MESSAGES/kmessage.mo -share/locale/hu/LC_MESSAGES/kmid.mo -share/locale/hu/LC_MESSAGES/kmidi.mo -share/locale/hu/LC_MESSAGES/kmines.mo -share/locale/hu/LC_MESSAGES/kminipagerapplet.mo -share/locale/hu/LC_MESSAGES/kmix.mo -share/locale/hu/LC_MESSAGES/kmms.mo -share/locale/hu/LC_MESSAGES/kmonop.mo -share/locale/hu/LC_MESSAGES/kmoon.mo -share/locale/hu/LC_MESSAGES/knetmgr.mo -share/locale/hu/LC_MESSAGES/knewsticker.mo -share/locale/hu/LC_MESSAGES/knode.mo -share/locale/hu/LC_MESSAGES/knotes.mo -share/locale/hu/LC_MESSAGES/knotify.mo -share/locale/hu/LC_MESSAGES/knu.mo -share/locale/hu/LC_MESSAGES/kodo.mo -share/locale/hu/LC_MESSAGES/kolourpicker.mo -share/locale/hu/LC_MESSAGES/konqueror.mo -share/locale/hu/LC_MESSAGES/konquest.mo -share/locale/hu/LC_MESSAGES/konsole.mo -share/locale/hu/LC_MESSAGES/konv.mo -share/locale/hu/LC_MESSAGES/kooka.mo -share/locale/hu/LC_MESSAGES/kopennap.mo -share/locale/hu/LC_MESSAGES/korganizer.mo -share/locale/hu/LC_MESSAGES/korn.mo -share/locale/hu/LC_MESSAGES/kp.mo -share/locale/hu/LC_MESSAGES/kpackage.mo -share/locale/hu/LC_MESSAGES/kpager.mo -share/locale/hu/LC_MESSAGES/kpaint.mo -share/locale/hu/LC_MESSAGES/kpartapp.mo -share/locale/hu/LC_MESSAGES/kpartsaver.mo -share/locale/hu/LC_MESSAGES/kpat.mo -share/locale/hu/LC_MESSAGES/kpersonalizer.mo -share/locale/hu/LC_MESSAGES/kphone.mo -share/locale/hu/LC_MESSAGES/kpilot.mo -share/locale/hu/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/hu/LC_MESSAGES/kpm.mo -share/locale/hu/LC_MESSAGES/kpoker.mo -share/locale/hu/LC_MESSAGES/kpovmodeler.mo -share/locale/hu/LC_MESSAGES/kppp.mo -share/locale/hu/LC_MESSAGES/kppplogview.mo -share/locale/hu/LC_MESSAGES/kprinter.mo -share/locale/hu/LC_MESSAGES/kreadconfig.mo -share/locale/hu/LC_MESSAGES/kreversi.mo -share/locale/hu/LC_MESSAGES/krn.mo -share/locale/hu/LC_MESSAGES/kruler.mo -share/locale/hu/LC_MESSAGES/krunapplet.mo -share/locale/hu/LC_MESSAGES/ksame.mo -share/locale/hu/LC_MESSAGES/kscd.mo -share/locale/hu/LC_MESSAGES/kscoreapplet.mo -share/locale/hu/LC_MESSAGES/kshisen.mo -share/locale/hu/LC_MESSAGES/ksirc.mo -share/locale/hu/LC_MESSAGES/ksirtet.mo -share/locale/hu/LC_MESSAGES/ksmiletris.mo -share/locale/hu/LC_MESSAGES/ksmserver.mo -share/locale/hu/LC_MESSAGES/ksnake.mo -share/locale/hu/LC_MESSAGES/ksnapshot.mo -share/locale/hu/LC_MESSAGES/ksokoban.mo -share/locale/hu/LC_MESSAGES/kspaceduel.mo -share/locale/hu/LC_MESSAGES/ksplash.mo -share/locale/hu/LC_MESSAGES/kstart.mo -share/locale/hu/LC_MESSAGES/kstartperf.mo -share/locale/hu/LC_MESSAGES/kstockticker.mo -share/locale/hu/LC_MESSAGES/ksysctrl.mo -share/locale/hu/LC_MESSAGES/ksysguard.mo -share/locale/hu/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/hu/LC_MESSAGES/ksystrayproxy.mo -share/locale/hu/LC_MESSAGES/ksysv.mo -share/locale/hu/LC_MESSAGES/ktables.mo -share/locale/hu/LC_MESSAGES/ktalk.mo -share/locale/hu/LC_MESSAGES/ktalkd.mo -share/locale/hu/LC_MESSAGES/ktaskbarapplet.mo -share/locale/hu/LC_MESSAGES/kteatime.mo -share/locale/hu/LC_MESSAGES/ktimemon.mo -share/locale/hu/LC_MESSAGES/ktimer.mo -share/locale/hu/LC_MESSAGES/ktip.mo -share/locale/hu/LC_MESSAGES/ktouch.mo -share/locale/hu/LC_MESSAGES/ktron.mo -share/locale/hu/LC_MESSAGES/ktuberling.mo -share/locale/hu/LC_MESSAGES/ktux.mo -share/locale/hu/LC_MESSAGES/kuser.mo -share/locale/hu/LC_MESSAGES/kvidmode.mo -share/locale/hu/LC_MESSAGES/kview.mo -share/locale/hu/LC_MESSAGES/kviewshell.mo -share/locale/hu/LC_MESSAGES/kwebstat.mo -share/locale/hu/LC_MESSAGES/kwin.mo -share/locale/hu/LC_MESSAGES/kwin4.mo -share/locale/hu/LC_MESSAGES/kworldclock.mo -share/locale/hu/LC_MESSAGES/kwuftpd.mo -share/locale/hu/LC_MESSAGES/kxkb.mo -share/locale/hu/LC_MESSAGES/kxmlrpcd.mo -share/locale/hu/LC_MESSAGES/kxsconfig.mo -share/locale/hu/LC_MESSAGES/libkdegames.mo -share/locale/hu/LC_MESSAGES/libkdenetwork.mo -share/locale/hu/LC_MESSAGES/libkonq.mo -share/locale/hu/LC_MESSAGES/libkscan.mo -share/locale/hu/LC_MESSAGES/libkscreensaver.mo -share/locale/hu/LC_MESSAGES/libkwindefault_config.mo -share/locale/hu/LC_MESSAGES/libkwinicewm_config.mo -share/locale/hu/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/hu/LC_MESSAGES/libkwinquartz_config.mo -share/locale/hu/LC_MESSAGES/libtaskbar.mo -share/locale/hu/LC_MESSAGES/libtaskmanager.mo -share/locale/hu/LC_MESSAGES/lskat.mo -share/locale/hu/LC_MESSAGES/mediacontrol.mo -share/locale/hu/LC_MESSAGES/multiplayers.mo -share/locale/hu/LC_MESSAGES/naughtyapplet.mo -share/locale/hu/LC_MESSAGES/noatun.mo -share/locale/hu/LC_MESSAGES/nsplugin.mo -share/locale/hu/LC_MESSAGES/passwords.mo -share/locale/hu/LC_MESSAGES/ppdtranslations.mo -share/locale/hu/LC_MESSAGES/pws.mo -share/locale/hu/LC_MESSAGES/quicklauncher.mo -share/locale/hu/LC_MESSAGES/secpolicy.mo -share/locale/hu/LC_MESSAGES/spy.mo -share/locale/hu/LC_MESSAGES/taskbarextension.mo -share/locale/hu/LC_MESSAGES/twister.mo -share/locale/hu/LC_MESSAGES/uachangerplugin.mo -share/locale/hu/LC_MESSAGES/validatorsplugin.mo -share/locale/hu/LC_MESSAGES/webarchiver.mo -share/locale/hu/charset -share/locale/hu/entry.desktop -share/locale/hu/flag.png -share/locale/is/LC_MESSAGES/aktion.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/artsbuilder.mo -share/locale/is/LC_MESSAGES/artscontrol.mo -share/locale/is/LC_MESSAGES/childpanelextension.mo -share/locale/is/LC_MESSAGES/clockapplet.mo -share/locale/is/LC_MESSAGES/cupsdconf.mo -share/locale/is/LC_MESSAGES/desktop.mo -share/locale/is/LC_MESSAGES/drkonqi.mo -share/locale/is/LC_MESSAGES/empath.mo -share/locale/is/LC_MESSAGES/extensionproxy.mo -share/locale/is/LC_MESSAGES/filetypes.mo -share/locale/is/LC_MESSAGES/htmlsearch.mo -share/locale/is/LC_MESSAGES/kab.mo -share/locale/is/LC_MESSAGES/kabalone.mo -share/locale/is/LC_MESSAGES/kaccess.mo -share/locale/is/LC_MESSAGES/kaddressbook.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/katomic.mo -share/locale/is/LC_MESSAGES/kbackgammon.mo -share/locale/is/LC_MESSAGES/kbattleship.mo -share/locale/is/LC_MESSAGES/kblackbox.mo -share/locale/is/LC_MESSAGES/kcalc.mo -share/locale/is/LC_MESSAGES/kcharselect.mo -share/locale/is/LC_MESSAGES/kcharselectapplet.mo -share/locale/is/LC_MESSAGES/kcmaccess.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 -share/locale/is/LC_MESSAGES/kcmcolors.mo -share/locale/is/LC_MESSAGES/kcmcrypto.mo -share/locale/is/LC_MESSAGES/kcmcss.mo -share/locale/is/LC_MESSAGES/kcmemail.mo -share/locale/is/LC_MESSAGES/kcmenergy.mo -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/kcminput.mo -share/locale/is/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/is/LC_MESSAGES/kcmkamera.mo -share/locale/is/LC_MESSAGES/kcmkclock.mo -share/locale/is/LC_MESSAGES/kcmkdb.mo -share/locale/is/LC_MESSAGES/kcmkeys.mo -share/locale/is/LC_MESSAGES/kcmkicker.mo -share/locale/is/LC_MESSAGES/kcmkio.mo -share/locale/is/LC_MESSAGES/kcmkmix.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/kcmktalkd.mo -share/locale/is/LC_MESSAGES/kcmkurifilt.mo -share/locale/is/LC_MESSAGES/kcmkwindecoration.mo -share/locale/is/LC_MESSAGES/kcmkwintheme.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/kcmlinuz.mo -share/locale/is/LC_MESSAGES/kcmlocale.mo -share/locale/is/LC_MESSAGES/kcmmidi.mo -share/locale/is/LC_MESSAGES/kcmnotify.mo -share/locale/is/LC_MESSAGES/kcmodbc.mo -share/locale/is/LC_MESSAGES/kcmsamba.mo -share/locale/is/LC_MESSAGES/kcmscreensaver.mo -share/locale/is/LC_MESSAGES/kcmsmserver.mo -share/locale/is/LC_MESSAGES/kcmsocks.mo -share/locale/is/LC_MESSAGES/kcmspellchecking.mo -share/locale/is/LC_MESSAGES/kcmstyle.mo -share/locale/is/LC_MESSAGES/kcmtaskbar.mo -share/locale/is/LC_MESSAGES/kcmthemes.mo -share/locale/is/LC_MESSAGES/kcmusb.mo -share/locale/is/LC_MESSAGES/kcontrol.mo -share/locale/is/LC_MESSAGES/kcron.mo -share/locale/is/LC_MESSAGES/kdcop.mo -share/locale/is/LC_MESSAGES/kdebugdialog.mo -share/locale/is/LC_MESSAGES/kdelibs.mo -share/locale/is/LC_MESSAGES/kdepasswd.mo -share/locale/is/LC_MESSAGES/kdeprintfax.mo -share/locale/is/LC_MESSAGES/kdesktop.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/kdf.mo -share/locale/is/LC_MESSAGES/kdmchooser.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/keystone.mo -share/locale/is/LC_MESSAGES/kfax.mo -share/locale/is/LC_MESSAGES/kfifteenapplet.mo -share/locale/is/LC_MESSAGES/kfind.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/kfmexec.mo -share/locale/is/LC_MESSAGES/kfract.mo -share/locale/is/LC_MESSAGES/kghostview.mo -share/locale/is/LC_MESSAGES/khelpcenter.mo -share/locale/is/LC_MESSAGES/khotkeys.mo -share/locale/is/LC_MESSAGES/kicker.mo -share/locale/is/LC_MESSAGES/kio_audiocd.mo -share/locale/is/LC_MESSAGES/kio_finger.mo -share/locale/is/LC_MESSAGES/kio_floppy.mo -share/locale/is/LC_MESSAGES/kio_help.mo -share/locale/is/LC_MESSAGES/kio_imap4.mo -share/locale/is/LC_MESSAGES/kio_lan.mo -share/locale/is/LC_MESSAGES/kio_man.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_smb.mo -share/locale/is/LC_MESSAGES/kio_smbro.mo -share/locale/is/LC_MESSAGES/kit.mo -share/locale/is/LC_MESSAGES/kjezz.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/klegacyimport.mo -share/locale/is/LC_MESSAGES/kless.mo -share/locale/is/LC_MESSAGES/klines.mo -share/locale/is/LC_MESSAGES/klipper.mo -share/locale/is/LC_MESSAGES/kljettool.mo -share/locale/is/LC_MESSAGES/klock.mo -share/locale/is/LC_MESSAGES/klpq.mo -share/locale/is/LC_MESSAGES/kmahjongg.mo -share/locale/is/LC_MESSAGES/kmail.mo -share/locale/is/LC_MESSAGES/kmailcvt.mo -share/locale/is/LC_MESSAGES/kmenuedit.mo -share/locale/is/LC_MESSAGES/kmid.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/kmoon.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/konqueror.mo -share/locale/is/LC_MESSAGES/konquest.mo -share/locale/is/LC_MESSAGES/konsole.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/kpaint.mo -share/locale/is/LC_MESSAGES/kpartapp.mo -share/locale/is/LC_MESSAGES/kpartsaver.mo -share/locale/is/LC_MESSAGES/kpat.mo -share/locale/is/LC_MESSAGES/kpersonalizer.mo -share/locale/is/LC_MESSAGES/kpilot.mo -share/locale/is/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/is/LC_MESSAGES/kpm.mo -share/locale/is/LC_MESSAGES/kpoker.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/kreadconfig.mo -share/locale/is/LC_MESSAGES/kreversi.mo -share/locale/is/LC_MESSAGES/kruler.mo -share/locale/is/LC_MESSAGES/krunapplet.mo -share/locale/is/LC_MESSAGES/ksame.mo -share/locale/is/LC_MESSAGES/kscd.mo -share/locale/is/LC_MESSAGES/kscoreapplet.mo -share/locale/is/LC_MESSAGES/kshisen.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/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/kstart.mo -share/locale/is/LC_MESSAGES/kstartperf.mo -share/locale/is/LC_MESSAGES/ksysctrl.mo -share/locale/is/LC_MESSAGES/ksysguard.mo -share/locale/is/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/is/LC_MESSAGES/ksysv.mo -share/locale/is/LC_MESSAGES/ktalkd.mo -share/locale/is/LC_MESSAGES/ktaskbarapplet.mo -share/locale/is/LC_MESSAGES/kteatime.mo -share/locale/is/LC_MESSAGES/ktimemon.mo -share/locale/is/LC_MESSAGES/ktip.mo -share/locale/is/LC_MESSAGES/ktron.mo -share/locale/is/LC_MESSAGES/ktuberling.mo -share/locale/is/LC_MESSAGES/ktux.mo -share/locale/is/LC_MESSAGES/kuser.mo -share/locale/is/LC_MESSAGES/kview.mo -share/locale/is/LC_MESSAGES/kviewshell.mo -share/locale/is/LC_MESSAGES/kwin.mo -share/locale/is/LC_MESSAGES/kwin4.mo -share/locale/is/LC_MESSAGES/kworldclock.mo -share/locale/is/LC_MESSAGES/kwuftpd.mo -share/locale/is/LC_MESSAGES/kxkb.mo -share/locale/is/LC_MESSAGES/kxmlrpcd.mo -share/locale/is/LC_MESSAGES/kxsconfig.mo -share/locale/is/LC_MESSAGES/libkdegames.mo -share/locale/is/LC_MESSAGES/libkdenetwork.mo -share/locale/is/LC_MESSAGES/libkonq.mo -share/locale/is/LC_MESSAGES/libkscreensaver.mo -share/locale/is/LC_MESSAGES/libkwindefault_config.mo -share/locale/is/LC_MESSAGES/libkwinicewm_config.mo -share/locale/is/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/is/LC_MESSAGES/libkwinquartz_config.mo -share/locale/is/LC_MESSAGES/libtaskbar.mo -share/locale/is/LC_MESSAGES/libtaskmanager.mo -share/locale/is/LC_MESSAGES/lskat.mo -share/locale/is/LC_MESSAGES/multiplayers.mo -share/locale/is/LC_MESSAGES/naughtyapplet.mo -share/locale/is/LC_MESSAGES/noatun.mo -share/locale/is/LC_MESSAGES/nsplugin.mo -share/locale/is/LC_MESSAGES/passwords.mo -share/locale/is/LC_MESSAGES/ppdtranslations.mo -share/locale/is/LC_MESSAGES/quicklauncher.mo -share/locale/is/LC_MESSAGES/secpolicy.mo -share/locale/is/LC_MESSAGES/spy.mo -share/locale/is/LC_MESSAGES/taskbarextension.mo -share/locale/is/LC_MESSAGES/twister.mo -share/locale/is/charset -share/locale/is/entry.desktop -share/locale/is/flag.png -share/locale/it/LC_MESSAGES/aktion.mo -share/locale/it/LC_MESSAGES/amor.mo -share/locale/it/LC_MESSAGES/appletproxy.mo -share/locale/it/LC_MESSAGES/ark.mo -share/locale/it/LC_MESSAGES/artsbuilder.mo -share/locale/it/LC_MESSAGES/artscontrol.mo -share/locale/it/LC_MESSAGES/babelfish.mo -share/locale/it/LC_MESSAGES/bad_kdevelop.mo -share/locale/it/LC_MESSAGES/caitoo.mo -share/locale/it/LC_MESSAGES/childpanelextension.mo -share/locale/it/LC_MESSAGES/clockapplet.mo -share/locale/it/LC_MESSAGES/colfind.mo -share/locale/it/LC_MESSAGES/columbo.mo -share/locale/it/LC_MESSAGES/cupsdconf.mo -share/locale/it/LC_MESSAGES/desktop.mo -share/locale/it/LC_MESSAGES/dirfilterplugin.mo -share/locale/it/LC_MESSAGES/domtreeviewer.mo -share/locale/it/LC_MESSAGES/drkonqi.mo -share/locale/it/LC_MESSAGES/empath.mo -share/locale/it/LC_MESSAGES/extensionproxy.mo -share/locale/it/LC_MESSAGES/filetypes.mo -share/locale/it/LC_MESSAGES/gofai.mo -share/locale/it/LC_MESSAGES/htmlsearch.mo -share/locale/it/LC_MESSAGES/imgalleryplugin.mo -share/locale/it/LC_MESSAGES/kab.mo -share/locale/it/LC_MESSAGES/kabalone.mo -share/locale/it/LC_MESSAGES/kaccess.mo -share/locale/it/LC_MESSAGES/kaddressbook.mo -share/locale/it/LC_MESSAGES/kaiman.mo -share/locale/it/LC_MESSAGES/kandy.mo -share/locale/it/LC_MESSAGES/kappfinder.mo -share/locale/it/LC_MESSAGES/karchie.mo -share/locale/it/LC_MESSAGES/karm.mo -share/locale/it/LC_MESSAGES/kasbarextension.mo -share/locale/it/LC_MESSAGES/kasteroids.mo -share/locale/it/LC_MESSAGES/kate.mo -share/locale/it/LC_MESSAGES/katehtmltools.mo -share/locale/it/LC_MESSAGES/kateinsertcommand.mo -share/locale/it/LC_MESSAGES/katomic.mo -share/locale/it/LC_MESSAGES/kbackgammon.mo -share/locale/it/LC_MESSAGES/kbattleship.mo -share/locale/it/LC_MESSAGES/kbiff.mo -share/locale/it/LC_MESSAGES/kblackbox.mo -share/locale/it/LC_MESSAGES/kcalc.mo -share/locale/it/LC_MESSAGES/kcharselect.mo -share/locale/it/LC_MESSAGES/kcharselectapplet.mo -share/locale/it/LC_MESSAGES/kclock.mo -share/locale/it/LC_MESSAGES/kcmaccess.mo -share/locale/it/LC_MESSAGES/kcmail.mo -share/locale/it/LC_MESSAGES/kcmarts.mo -share/locale/it/LC_MESSAGES/kcmaudiocd.mo -share/locale/it/LC_MESSAGES/kcmbackground.mo -share/locale/it/LC_MESSAGES/kcmbell.mo -share/locale/it/LC_MESSAGES/kcmcolors.mo -share/locale/it/LC_MESSAGES/kcmcrypto.mo -share/locale/it/LC_MESSAGES/kcmcss.mo -share/locale/it/LC_MESSAGES/kcmemail.mo -share/locale/it/LC_MESSAGES/kcmenergy.mo -share/locale/it/LC_MESSAGES/kcmfonts.mo -share/locale/it/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/it/LC_MESSAGES/kcmicons.mo -share/locale/it/LC_MESSAGES/kcmiconthemes.mo -share/locale/it/LC_MESSAGES/kcminfo.mo -share/locale/it/LC_MESSAGES/kcminput.mo -share/locale/it/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/it/LC_MESSAGES/kcmkamera.mo -share/locale/it/LC_MESSAGES/kcmkclock.mo -share/locale/it/LC_MESSAGES/kcmkdb.mo -share/locale/it/LC_MESSAGES/kcmkeys.mo -share/locale/it/LC_MESSAGES/kcmkicker.mo -share/locale/it/LC_MESSAGES/kcmkio.mo -share/locale/it/LC_MESSAGES/kcmkisdn.mo -share/locale/it/LC_MESSAGES/kcmkmix.mo -share/locale/it/LC_MESSAGES/kcmkonq.mo -share/locale/it/LC_MESSAGES/kcmkonqhtml.mo -share/locale/it/LC_MESSAGES/kcmkonsole.mo -share/locale/it/LC_MESSAGES/kcmktalkd.mo -share/locale/it/LC_MESSAGES/kcmkurifilt.mo -share/locale/it/LC_MESSAGES/kcmkwindecoration.mo -share/locale/it/LC_MESSAGES/kcmkwintheme.mo -share/locale/it/LC_MESSAGES/kcmkwm.mo -share/locale/it/LC_MESSAGES/kcmlanbrowser.mo -share/locale/it/LC_MESSAGES/kcmlaptop.mo -share/locale/it/LC_MESSAGES/kcmlaunch.mo -share/locale/it/LC_MESSAGES/kcmlayout.mo -share/locale/it/LC_MESSAGES/kcmlilo.mo -share/locale/it/LC_MESSAGES/kcmlinuz.mo -share/locale/it/LC_MESSAGES/kcmlocale.mo -share/locale/it/LC_MESSAGES/kcmmidi.mo -share/locale/it/LC_MESSAGES/kcmnewsticker.mo -share/locale/it/LC_MESSAGES/kcmnotify.mo -share/locale/it/LC_MESSAGES/kcmodbc.mo -share/locale/it/LC_MESSAGES/kcmsamba.mo -share/locale/it/LC_MESSAGES/kcmsample.mo -share/locale/it/LC_MESSAGES/kcmscreensaver.mo -share/locale/it/LC_MESSAGES/kcmsmserver.mo -share/locale/it/LC_MESSAGES/kcmsocks.mo -share/locale/it/LC_MESSAGES/kcmspellchecking.mo -share/locale/it/LC_MESSAGES/kcmstyle.mo -share/locale/it/LC_MESSAGES/kcmtaskbar.mo -share/locale/it/LC_MESSAGES/kcmthemes.mo -share/locale/it/LC_MESSAGES/kcmusb.mo -share/locale/it/LC_MESSAGES/kcmvirtualdesktops.mo -share/locale/it/LC_MESSAGES/kcoloredit.mo -share/locale/it/LC_MESSAGES/kcontrol.mo -share/locale/it/LC_MESSAGES/kcron.mo -share/locale/it/LC_MESSAGES/kdcop.mo -share/locale/it/LC_MESSAGES/kdebugdialog.mo -share/locale/it/LC_MESSAGES/kdelibs.mo -share/locale/it/LC_MESSAGES/kdepasswd.mo -share/locale/it/LC_MESSAGES/kdeprintfax.mo -share/locale/it/LC_MESSAGES/kdesktop.mo -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/kdevelop.mo -share/locale/it/LC_MESSAGES/kdevtipofday.mo -share/locale/it/LC_MESSAGES/kdewizard.mo -share/locale/it/LC_MESSAGES/kdf.mo -share/locale/it/LC_MESSAGES/kdict.mo -share/locale/it/LC_MESSAGES/kdictapplet.mo -share/locale/it/LC_MESSAGES/kdm.mo -share/locale/it/LC_MESSAGES/kdmchooser.mo -share/locale/it/LC_MESSAGES/kdmconfig.mo -share/locale/it/LC_MESSAGES/kdmgreet.mo -share/locale/it/LC_MESSAGES/kdvi.mo -share/locale/it/LC_MESSAGES/kedit.mo -share/locale/it/LC_MESSAGES/keystone.mo -share/locale/it/LC_MESSAGES/kfax.mo -share/locale/it/LC_MESSAGES/kfifteenapplet.mo -share/locale/it/LC_MESSAGES/kfind.mo -share/locale/it/LC_MESSAGES/kfindpart.mo -share/locale/it/LC_MESSAGES/kfinger.mo -share/locale/it/LC_MESSAGES/kfloppy.mo -share/locale/it/LC_MESSAGES/kfmclient.mo -share/locale/it/LC_MESSAGES/kfmexec.mo -share/locale/it/LC_MESSAGES/kfortune.mo -share/locale/it/LC_MESSAGES/kfract.mo -share/locale/it/LC_MESSAGES/kghostview.mo -share/locale/it/LC_MESSAGES/khelpcenter.mo -share/locale/it/LC_MESSAGES/khexedit.mo -share/locale/it/LC_MESSAGES/khotkeys.mo -share/locale/it/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/it/LC_MESSAGES/kicker.mo -share/locale/it/LC_MESSAGES/kiconedit.mo -share/locale/it/LC_MESSAGES/kio_audiocd.mo -share/locale/it/LC_MESSAGES/kio_finger.mo -share/locale/it/LC_MESSAGES/kio_floppy.mo -share/locale/it/LC_MESSAGES/kio_help.mo -share/locale/it/LC_MESSAGES/kio_imap4.mo -share/locale/it/LC_MESSAGES/kio_lan.mo -share/locale/it/LC_MESSAGES/kio_man.mo -share/locale/it/LC_MESSAGES/kio_nfs.mo -share/locale/it/LC_MESSAGES/kio_nntp.mo -share/locale/it/LC_MESSAGES/kio_pop3.mo -share/locale/it/LC_MESSAGES/kio_smb.mo -share/locale/it/LC_MESSAGES/kio_smbro.mo -share/locale/it/LC_MESSAGES/kisdn.mo -share/locale/it/LC_MESSAGES/kit.mo -share/locale/it/LC_MESSAGES/kjezz.mo -share/locale/it/LC_MESSAGES/kjobviewer.mo -share/locale/it/LC_MESSAGES/kjots.mo -share/locale/it/LC_MESSAGES/kjoy.mo -share/locale/it/LC_MESSAGES/kjumpingcube.mo -share/locale/it/LC_MESSAGES/klaptopdaemon.mo -share/locale/it/LC_MESSAGES/klegacyimport.mo -share/locale/it/LC_MESSAGES/kless.mo -share/locale/it/LC_MESSAGES/klines.mo -share/locale/it/LC_MESSAGES/klipper.mo -share/locale/it/LC_MESSAGES/kljettool.mo -share/locale/it/LC_MESSAGES/klock.mo -share/locale/it/LC_MESSAGES/klpq.mo -share/locale/it/LC_MESSAGES/klprfax.mo -share/locale/it/LC_MESSAGES/kmahjongg.mo -share/locale/it/LC_MESSAGES/kmail.mo -share/locale/it/LC_MESSAGES/kmailcvt.mo -share/locale/it/LC_MESSAGES/kmaster.mo -share/locale/it/LC_MESSAGES/kmenuedit.mo -share/locale/it/LC_MESSAGES/kmid.mo -share/locale/it/LC_MESSAGES/kmidi.mo -share/locale/it/LC_MESSAGES/kmines.mo -share/locale/it/LC_MESSAGES/kminipagerapplet.mo -share/locale/it/LC_MESSAGES/kmix.mo -share/locale/it/LC_MESSAGES/kmoon.mo -share/locale/it/LC_MESSAGES/knetmon.mo -share/locale/it/LC_MESSAGES/knewsticker.mo -share/locale/it/LC_MESSAGES/knode.mo -share/locale/it/LC_MESSAGES/knotes.mo -share/locale/it/LC_MESSAGES/knotify.mo -share/locale/it/LC_MESSAGES/knu.mo -share/locale/it/LC_MESSAGES/kodo.mo -share/locale/it/LC_MESSAGES/kolourpicker.mo -share/locale/it/LC_MESSAGES/konqueror.mo -share/locale/it/LC_MESSAGES/konquest.mo -share/locale/it/LC_MESSAGES/konsole.mo -share/locale/it/LC_MESSAGES/konv.mo -share/locale/it/LC_MESSAGES/kooka.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/kpager.mo -share/locale/it/LC_MESSAGES/kpaint.mo -share/locale/it/LC_MESSAGES/kpartapp.mo -share/locale/it/LC_MESSAGES/kpartsaver.mo -share/locale/it/LC_MESSAGES/kpat.mo -share/locale/it/LC_MESSAGES/kpersonalizer.mo -share/locale/it/LC_MESSAGES/kpilot.mo -share/locale/it/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/it/LC_MESSAGES/kpm.mo -share/locale/it/LC_MESSAGES/kpoker.mo -share/locale/it/LC_MESSAGES/kppp.mo -share/locale/it/LC_MESSAGES/kppplogview.mo -share/locale/it/LC_MESSAGES/kprinter.mo -share/locale/it/LC_MESSAGES/kray.mo -share/locale/it/LC_MESSAGES/krdb.mo -share/locale/it/LC_MESSAGES/kreadconfig.mo -share/locale/it/LC_MESSAGES/kreversi.mo -share/locale/it/LC_MESSAGES/krubik.mo -share/locale/it/LC_MESSAGES/kruler.mo -share/locale/it/LC_MESSAGES/krunapplet.mo -share/locale/it/LC_MESSAGES/ksame.mo -share/locale/it/LC_MESSAGES/kscd.mo -share/locale/it/LC_MESSAGES/kscoreapplet.mo -share/locale/it/LC_MESSAGES/kshisen.mo -share/locale/it/LC_MESSAGES/ksirc.mo -share/locale/it/LC_MESSAGES/ksirtet.mo -share/locale/it/LC_MESSAGES/ksmiletris.mo -share/locale/it/LC_MESSAGES/ksmserver.mo -share/locale/it/LC_MESSAGES/ksnake.mo -share/locale/it/LC_MESSAGES/ksnapshot.mo -share/locale/it/LC_MESSAGES/ksokoban.mo -share/locale/it/LC_MESSAGES/kspaceduel.mo -share/locale/it/LC_MESSAGES/ksplash.mo -share/locale/it/LC_MESSAGES/kstart.mo -share/locale/it/LC_MESSAGES/kstartperf.mo -share/locale/it/LC_MESSAGES/ksysctrl.mo -share/locale/it/LC_MESSAGES/ksysguard.mo -share/locale/it/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/it/LC_MESSAGES/ksysv.mo -share/locale/it/LC_MESSAGES/ktalkd.mo -share/locale/it/LC_MESSAGES/ktaskbarapplet.mo -share/locale/it/LC_MESSAGES/kteatime.mo -share/locale/it/LC_MESSAGES/kticker.mo -share/locale/it/LC_MESSAGES/ktimemon.mo -share/locale/it/LC_MESSAGES/ktimer.mo -share/locale/it/LC_MESSAGES/ktip.mo -share/locale/it/LC_MESSAGES/ktranslator.mo -share/locale/it/LC_MESSAGES/ktron.mo -share/locale/it/LC_MESSAGES/ktuberling.mo -share/locale/it/LC_MESSAGES/ktux.mo -share/locale/it/LC_MESSAGES/kuser.mo -share/locale/it/LC_MESSAGES/kview.mo -share/locale/it/LC_MESSAGES/kviewshell.mo -share/locale/it/LC_MESSAGES/kwin.mo -share/locale/it/LC_MESSAGES/kwin4.mo -share/locale/it/LC_MESSAGES/kworldclock.mo -share/locale/it/LC_MESSAGES/kwuftpd.mo -share/locale/it/LC_MESSAGES/kxkb.mo -share/locale/it/LC_MESSAGES/kxmlrpcd.mo -share/locale/it/LC_MESSAGES/kxsconfig.mo -share/locale/it/LC_MESSAGES/libkdegames.mo -share/locale/it/LC_MESSAGES/libkdenetwork.mo -share/locale/it/LC_MESSAGES/libkonq.mo -share/locale/it/LC_MESSAGES/libkscan.mo -share/locale/it/LC_MESSAGES/libkscreensaver.mo -share/locale/it/LC_MESSAGES/libkwindefault_config.mo -share/locale/it/LC_MESSAGES/libkwinicewm_config.mo -share/locale/it/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/it/LC_MESSAGES/libkwinquartz_config.mo -share/locale/it/LC_MESSAGES/libtaskbar.mo -share/locale/it/LC_MESSAGES/libtaskmanager.mo -share/locale/it/LC_MESSAGES/lskat.mo -share/locale/it/LC_MESSAGES/multiplayers.mo -share/locale/it/LC_MESSAGES/naughtyapplet.mo -share/locale/it/LC_MESSAGES/noatun.mo -share/locale/it/LC_MESSAGES/nsplugin.mo -share/locale/it/LC_MESSAGES/passwords.mo -share/locale/it/LC_MESSAGES/ppdtranslations.mo -share/locale/it/LC_MESSAGES/quicklauncher.mo -share/locale/it/LC_MESSAGES/secpolicy.mo -share/locale/it/LC_MESSAGES/spy.mo -share/locale/it/LC_MESSAGES/taskbarextension.mo -share/locale/it/LC_MESSAGES/twister.mo -share/locale/it/LC_MESSAGES/uachangerplugin.mo -share/locale/it/LC_MESSAGES/validatorsplugin.mo -share/locale/it/LC_MESSAGES/webarchiver.mo -share/locale/it/charset -share/locale/it/entry.desktop -share/locale/it/flag.png -share/locale/ja/LC_MESSAGES/aktion.mo -share/locale/ja/LC_MESSAGES/amor.mo -share/locale/ja/LC_MESSAGES/appletproxy.mo -share/locale/ja/LC_MESSAGES/ark.mo -share/locale/ja/LC_MESSAGES/artsbuilder.mo -share/locale/ja/LC_MESSAGES/artscontrol.mo -share/locale/ja/LC_MESSAGES/childpanelextension.mo -share/locale/ja/LC_MESSAGES/clockapplet.mo -share/locale/ja/LC_MESSAGES/cupsdconf.mo -share/locale/ja/LC_MESSAGES/desktop.mo -share/locale/ja/LC_MESSAGES/drkonqi.mo -share/locale/ja/LC_MESSAGES/empath.mo -share/locale/ja/LC_MESSAGES/extensionproxy.mo -share/locale/ja/LC_MESSAGES/filetypes.mo -share/locale/ja/LC_MESSAGES/gideon.mo -share/locale/ja/LC_MESSAGES/htmlsearch.mo -share/locale/ja/LC_MESSAGES/kab.mo -share/locale/ja/LC_MESSAGES/kabalone.mo -share/locale/ja/LC_MESSAGES/kaccess.mo -share/locale/ja/LC_MESSAGES/kaddressbook.mo -share/locale/ja/LC_MESSAGES/kaiman.mo -share/locale/ja/LC_MESSAGES/kandy.mo -share/locale/ja/LC_MESSAGES/kappfinder.mo -share/locale/ja/LC_MESSAGES/karm.mo -share/locale/ja/LC_MESSAGES/kasbarextension.mo -share/locale/ja/LC_MESSAGES/kasteroids.mo -share/locale/ja/LC_MESSAGES/kate.mo -share/locale/ja/LC_MESSAGES/katomic.mo -share/locale/ja/LC_MESSAGES/kbabel.mo -share/locale/ja/LC_MESSAGES/kbabeldict.mo -share/locale/ja/LC_MESSAGES/kbackgammon.mo -share/locale/ja/LC_MESSAGES/kbattleship.mo -share/locale/ja/LC_MESSAGES/kblackbox.mo -share/locale/ja/LC_MESSAGES/kcalc.mo -share/locale/ja/LC_MESSAGES/kcharselect.mo -share/locale/ja/LC_MESSAGES/kcharselectapplet.mo -share/locale/ja/LC_MESSAGES/kcmaccess.mo -share/locale/ja/LC_MESSAGES/kcmarts.mo -share/locale/ja/LC_MESSAGES/kcmaudiocd.mo -share/locale/ja/LC_MESSAGES/kcmbackground.mo -share/locale/ja/LC_MESSAGES/kcmbell.mo -share/locale/ja/LC_MESSAGES/kcmcolors.mo -share/locale/ja/LC_MESSAGES/kcmcrypto.mo -share/locale/ja/LC_MESSAGES/kcmcss.mo -share/locale/ja/LC_MESSAGES/kcmemail.mo -share/locale/ja/LC_MESSAGES/kcmenergy.mo -share/locale/ja/LC_MESSAGES/kcmfontmanager.mo -share/locale/ja/LC_MESSAGES/kcmfonts.mo -share/locale/ja/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/ja/LC_MESSAGES/kcmicons.mo -share/locale/ja/LC_MESSAGES/kcmiconthemes.mo -share/locale/ja/LC_MESSAGES/kcminfo.mo -share/locale/ja/LC_MESSAGES/kcminput.mo -share/locale/ja/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/ja/LC_MESSAGES/kcmkamera.mo -share/locale/ja/LC_MESSAGES/kcmkclock.mo -share/locale/ja/LC_MESSAGES/kcmkdb.mo -share/locale/ja/LC_MESSAGES/kcmkeys.mo -share/locale/ja/LC_MESSAGES/kcmkicker.mo -share/locale/ja/LC_MESSAGES/kcmkio.mo -share/locale/ja/LC_MESSAGES/kcmkmix.mo -share/locale/ja/LC_MESSAGES/kcmkonq.mo -share/locale/ja/LC_MESSAGES/kcmkonqhtml.mo -share/locale/ja/LC_MESSAGES/kcmkonsole.mo -share/locale/ja/LC_MESSAGES/kcmktalkd.mo -share/locale/ja/LC_MESSAGES/kcmkurifilt.mo -share/locale/ja/LC_MESSAGES/kcmkwindecoration.mo -share/locale/ja/LC_MESSAGES/kcmkwintheme.mo -share/locale/ja/LC_MESSAGES/kcmkwm.mo -share/locale/ja/LC_MESSAGES/kcmlanbrowser.mo -share/locale/ja/LC_MESSAGES/kcmlaptop.mo -share/locale/ja/LC_MESSAGES/kcmlaunch.mo -share/locale/ja/LC_MESSAGES/kcmlayout.mo -share/locale/ja/LC_MESSAGES/kcmlilo.mo -share/locale/ja/LC_MESSAGES/kcmlinuz.mo -share/locale/ja/LC_MESSAGES/kcmlocale.mo -share/locale/ja/LC_MESSAGES/kcmmidi.mo -share/locale/ja/LC_MESSAGES/kcmnewsticker.mo -share/locale/ja/LC_MESSAGES/kcmnotify.mo -share/locale/ja/LC_MESSAGES/kcmodbc.mo -share/locale/ja/LC_MESSAGES/kcmsamba.mo -share/locale/ja/LC_MESSAGES/kcmsample.mo -share/locale/ja/LC_MESSAGES/kcmscreensaver.mo -share/locale/ja/LC_MESSAGES/kcmsmserver.mo -share/locale/ja/LC_MESSAGES/kcmsocks.mo -share/locale/ja/LC_MESSAGES/kcmspellchecking.mo -share/locale/ja/LC_MESSAGES/kcmstyle.mo -share/locale/ja/LC_MESSAGES/kcmtaskbar.mo -share/locale/ja/LC_MESSAGES/kcmthemes.mo -share/locale/ja/LC_MESSAGES/kcmusb.mo -share/locale/ja/LC_MESSAGES/kcmvirtualdesktops.mo -share/locale/ja/LC_MESSAGES/kcoloredit.mo -share/locale/ja/LC_MESSAGES/kcontrol.mo -share/locale/ja/LC_MESSAGES/kcron.mo -share/locale/ja/LC_MESSAGES/kdat.mo -share/locale/ja/LC_MESSAGES/kdcop.mo -share/locale/ja/LC_MESSAGES/kdebugdialog.mo -share/locale/ja/LC_MESSAGES/kdelibs.mo -share/locale/ja/LC_MESSAGES/kdepasswd.mo -share/locale/ja/LC_MESSAGES/kdeprintfax.mo -share/locale/ja/LC_MESSAGES/kdesktop.mo -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/kdevelop.mo -share/locale/ja/LC_MESSAGES/kdevtipofday.mo -share/locale/ja/LC_MESSAGES/kdewizard.mo -share/locale/ja/LC_MESSAGES/kdf.mo -share/locale/ja/LC_MESSAGES/kdict.mo -share/locale/ja/LC_MESSAGES/kdictapplet.mo -share/locale/ja/LC_MESSAGES/kdm.mo -share/locale/ja/LC_MESSAGES/kdmchooser.mo -share/locale/ja/LC_MESSAGES/kdmconfig.mo -share/locale/ja/LC_MESSAGES/kdmgreet.mo -share/locale/ja/LC_MESSAGES/kdvi.mo -share/locale/ja/LC_MESSAGES/kedit.mo -share/locale/ja/LC_MESSAGES/keystone.mo -share/locale/ja/LC_MESSAGES/kfax.mo -share/locale/ja/LC_MESSAGES/kfifteenapplet.mo -share/locale/ja/LC_MESSAGES/kfind.mo -share/locale/ja/LC_MESSAGES/kfindpart.mo -share/locale/ja/LC_MESSAGES/kfloppy.mo -share/locale/ja/LC_MESSAGES/kfmclient.mo -share/locale/ja/LC_MESSAGES/kfmexec.mo -share/locale/ja/LC_MESSAGES/kfract.mo -share/locale/ja/LC_MESSAGES/kghostview.mo -share/locale/ja/LC_MESSAGES/khelpcenter.mo -share/locale/ja/LC_MESSAGES/khexedit.mo -share/locale/ja/LC_MESSAGES/khotkeys.mo -share/locale/ja/LC_MESSAGES/kicker.mo -share/locale/ja/LC_MESSAGES/kiconedit.mo -share/locale/ja/LC_MESSAGES/kio_audiocd.mo -share/locale/ja/LC_MESSAGES/kio_finger.mo -share/locale/ja/LC_MESSAGES/kio_floppy.mo -share/locale/ja/LC_MESSAGES/kio_help.mo -share/locale/ja/LC_MESSAGES/kio_imap4.mo -share/locale/ja/LC_MESSAGES/kio_lan.mo -share/locale/ja/LC_MESSAGES/kio_man.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_smb.mo -share/locale/ja/LC_MESSAGES/kio_smbro.mo -share/locale/ja/LC_MESSAGES/kit.mo -share/locale/ja/LC_MESSAGES/kjezz.mo -share/locale/ja/LC_MESSAGES/kjobviewer.mo -share/locale/ja/LC_MESSAGES/kjots.mo -share/locale/ja/LC_MESSAGES/kjumpingcube.mo -share/locale/ja/LC_MESSAGES/klaptopdaemon.mo -share/locale/ja/LC_MESSAGES/klegacyimport.mo -share/locale/ja/LC_MESSAGES/kless.mo -share/locale/ja/LC_MESSAGES/klines.mo -share/locale/ja/LC_MESSAGES/klipper.mo -share/locale/ja/LC_MESSAGES/kljettool.mo -share/locale/ja/LC_MESSAGES/klock.mo -share/locale/ja/LC_MESSAGES/klpq.mo -share/locale/ja/LC_MESSAGES/klprfax.mo -share/locale/ja/LC_MESSAGES/kmahjongg.mo -share/locale/ja/LC_MESSAGES/kmail.mo -share/locale/ja/LC_MESSAGES/kmailcvt.mo -share/locale/ja/LC_MESSAGES/kmenuedit.mo -share/locale/ja/LC_MESSAGES/kmid.mo -share/locale/ja/LC_MESSAGES/kmidi.mo -share/locale/ja/LC_MESSAGES/kmines.mo -share/locale/ja/LC_MESSAGES/kminipagerapplet.mo -share/locale/ja/LC_MESSAGES/kmix.mo -share/locale/ja/LC_MESSAGES/kmoon.mo -share/locale/ja/LC_MESSAGES/knewsticker.mo -share/locale/ja/LC_MESSAGES/knode.mo -share/locale/ja/LC_MESSAGES/knotes.mo -share/locale/ja/LC_MESSAGES/knotify.mo -share/locale/ja/LC_MESSAGES/kodo.mo -share/locale/ja/LC_MESSAGES/konqueror.mo -share/locale/ja/LC_MESSAGES/konquest.mo -share/locale/ja/LC_MESSAGES/konsole.mo -share/locale/ja/LC_MESSAGES/kooka.mo -share/locale/ja/LC_MESSAGES/korganizer.mo -share/locale/ja/LC_MESSAGES/korn.mo -share/locale/ja/LC_MESSAGES/kpackage.mo -share/locale/ja/LC_MESSAGES/kpager.mo -share/locale/ja/LC_MESSAGES/kpaint.mo -share/locale/ja/LC_MESSAGES/kpartapp.mo -share/locale/ja/LC_MESSAGES/kpartsaver.mo -share/locale/ja/LC_MESSAGES/kpat.mo -share/locale/ja/LC_MESSAGES/kpersonalizer.mo -share/locale/ja/LC_MESSAGES/kpilot.mo -share/locale/ja/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/ja/LC_MESSAGES/kpm.mo -share/locale/ja/LC_MESSAGES/kpoker.mo -share/locale/ja/LC_MESSAGES/kppp.mo -share/locale/ja/LC_MESSAGES/kppplogview.mo -share/locale/ja/LC_MESSAGES/kprinter.mo -share/locale/ja/LC_MESSAGES/krdb.mo -share/locale/ja/LC_MESSAGES/kreadconfig.mo -share/locale/ja/LC_MESSAGES/kreversi.mo -share/locale/ja/LC_MESSAGES/kruler.mo -share/locale/ja/LC_MESSAGES/krunapplet.mo -share/locale/ja/LC_MESSAGES/ksame.mo -share/locale/ja/LC_MESSAGES/kscd.mo -share/locale/ja/LC_MESSAGES/kscoreapplet.mo -share/locale/ja/LC_MESSAGES/kshisen.mo -share/locale/ja/LC_MESSAGES/ksirc.mo -share/locale/ja/LC_MESSAGES/ksirtet.mo -share/locale/ja/LC_MESSAGES/ksmiletris.mo -share/locale/ja/LC_MESSAGES/ksmserver.mo -share/locale/ja/LC_MESSAGES/ksnake.mo -share/locale/ja/LC_MESSAGES/ksnapshot.mo -share/locale/ja/LC_MESSAGES/ksokoban.mo -share/locale/ja/LC_MESSAGES/kspaceduel.mo -share/locale/ja/LC_MESSAGES/ksplash.mo -share/locale/ja/LC_MESSAGES/kstart.mo -share/locale/ja/LC_MESSAGES/kstartperf.mo -share/locale/ja/LC_MESSAGES/ksysctrl.mo -share/locale/ja/LC_MESSAGES/ksysguard.mo -share/locale/ja/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/ja/LC_MESSAGES/ksysv.mo -share/locale/ja/LC_MESSAGES/ktalkd.mo -share/locale/ja/LC_MESSAGES/ktaskbarapplet.mo -share/locale/ja/LC_MESSAGES/kteatime.mo -share/locale/ja/LC_MESSAGES/ktimemon.mo -share/locale/ja/LC_MESSAGES/ktimer.mo -share/locale/ja/LC_MESSAGES/ktip.mo -share/locale/ja/LC_MESSAGES/ktron.mo -share/locale/ja/LC_MESSAGES/ktuberling.mo -share/locale/ja/LC_MESSAGES/ktux.mo -share/locale/ja/LC_MESSAGES/kuser.mo -share/locale/ja/LC_MESSAGES/kview.mo -share/locale/ja/LC_MESSAGES/kviewshell.mo -share/locale/ja/LC_MESSAGES/kwin.mo -share/locale/ja/LC_MESSAGES/kwin4.mo -share/locale/ja/LC_MESSAGES/kworldclock.mo -share/locale/ja/LC_MESSAGES/kwuftpd.mo -share/locale/ja/LC_MESSAGES/kxkb.mo -share/locale/ja/LC_MESSAGES/kxmlrpcd.mo -share/locale/ja/LC_MESSAGES/kxsconfig.mo -share/locale/ja/LC_MESSAGES/libkdegames.mo -share/locale/ja/LC_MESSAGES/libkdenetwork.mo -share/locale/ja/LC_MESSAGES/libkonq.mo -share/locale/ja/LC_MESSAGES/libkscan.mo -share/locale/ja/LC_MESSAGES/libkscreensaver.mo -share/locale/ja/LC_MESSAGES/libkwindefault_config.mo -share/locale/ja/LC_MESSAGES/libkwinicewm_config.mo -share/locale/ja/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/ja/LC_MESSAGES/libkwinquartz_config.mo -share/locale/ja/LC_MESSAGES/libnoatunexcellent.mo -share/locale/ja/LC_MESSAGES/libnoatunsystray.mo -share/locale/ja/LC_MESSAGES/libnoatuntron.mo -share/locale/ja/LC_MESSAGES/libtaskbar.mo -share/locale/ja/LC_MESSAGES/libtaskmanager.mo -share/locale/ja/LC_MESSAGES/lskat.mo -share/locale/ja/LC_MESSAGES/multiplayers.mo -share/locale/ja/LC_MESSAGES/naughtyapplet.mo -share/locale/ja/LC_MESSAGES/noatun.mo -share/locale/ja/LC_MESSAGES/nsplugin.mo -share/locale/ja/LC_MESSAGES/passwords.mo -share/locale/ja/LC_MESSAGES/quicklauncher.mo -share/locale/ja/LC_MESSAGES/secpolicy.mo -share/locale/ja/LC_MESSAGES/spy.mo -share/locale/ja/LC_MESSAGES/taskbarextension.mo -share/locale/ja/LC_MESSAGES/twister.mo -share/locale/ja/charset -share/locale/ja/entry.desktop -share/locale/ja/flag.png -share/locale/ko/LC_MESSAGES/aktion.mo -share/locale/ko/LC_MESSAGES/amor.mo -share/locale/ko/LC_MESSAGES/appletproxy.mo -share/locale/ko/LC_MESSAGES/ark.mo -share/locale/ko/LC_MESSAGES/artsbuilder.mo -share/locale/ko/LC_MESSAGES/artscontrol.mo -share/locale/ko/LC_MESSAGES/babelfish.mo -share/locale/ko/LC_MESSAGES/childpanelextension.mo -share/locale/ko/LC_MESSAGES/clockapplet.mo -share/locale/ko/LC_MESSAGES/cupsdconf.mo -share/locale/ko/LC_MESSAGES/desktop.mo -share/locale/ko/LC_MESSAGES/dirfilterplugin.mo -share/locale/ko/LC_MESSAGES/domtreeviewer.mo -share/locale/ko/LC_MESSAGES/drkonqi.mo -share/locale/ko/LC_MESSAGES/extensionproxy.mo -share/locale/ko/LC_MESSAGES/filetypes.mo -share/locale/ko/LC_MESSAGES/htmlsearch.mo -share/locale/ko/LC_MESSAGES/imgalleryplugin.mo -share/locale/ko/LC_MESSAGES/kab.mo -share/locale/ko/LC_MESSAGES/kabalone.mo -share/locale/ko/LC_MESSAGES/kaccess.mo -share/locale/ko/LC_MESSAGES/kaddressbook.mo -share/locale/ko/LC_MESSAGES/kappfinder.mo -share/locale/ko/LC_MESSAGES/karm.mo -share/locale/ko/LC_MESSAGES/kasbarextension.mo -share/locale/ko/LC_MESSAGES/kasteroids.mo -share/locale/ko/LC_MESSAGES/kate.mo -share/locale/ko/LC_MESSAGES/katehtmltools.mo -share/locale/ko/LC_MESSAGES/kateinsertcommand.mo -share/locale/ko/LC_MESSAGES/kbabel.mo -share/locale/ko/LC_MESSAGES/kcalc.mo -share/locale/ko/LC_MESSAGES/kcharselect.mo -share/locale/ko/LC_MESSAGES/kcmaccess.mo -share/locale/ko/LC_MESSAGES/kcmarts.mo -share/locale/ko/LC_MESSAGES/kcmaudiocd.mo -share/locale/ko/LC_MESSAGES/kcmbackground.mo -share/locale/ko/LC_MESSAGES/kcmbell.mo -share/locale/ko/LC_MESSAGES/kcmcolors.mo -share/locale/ko/LC_MESSAGES/kcmcrypto.mo -share/locale/ko/LC_MESSAGES/kcmcss.mo -share/locale/ko/LC_MESSAGES/kcmemail.mo -share/locale/ko/LC_MESSAGES/kcmenergy.mo -share/locale/ko/LC_MESSAGES/kcmfonts.mo -share/locale/ko/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/ko/LC_MESSAGES/kcmicons.mo -share/locale/ko/LC_MESSAGES/kcminfo.mo -share/locale/ko/LC_MESSAGES/kcminput.mo -share/locale/ko/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/ko/LC_MESSAGES/kcmkamera.mo -share/locale/ko/LC_MESSAGES/kcmkclock.mo -share/locale/ko/LC_MESSAGES/kcmkdb.mo -share/locale/ko/LC_MESSAGES/kcmkeys.mo -share/locale/ko/LC_MESSAGES/kcmkicker.mo -share/locale/ko/LC_MESSAGES/kcmkio.mo -share/locale/ko/LC_MESSAGES/kcmkmix.mo -share/locale/ko/LC_MESSAGES/kcmkonq.mo -share/locale/ko/LC_MESSAGES/kcmkonqhtml.mo -share/locale/ko/LC_MESSAGES/kcmktalkd.mo -share/locale/ko/LC_MESSAGES/kcmkurifilt.mo -share/locale/ko/LC_MESSAGES/kcmkwindecoration.mo -share/locale/ko/LC_MESSAGES/kcmkwintheme.mo -share/locale/ko/LC_MESSAGES/kcmkwm.mo -share/locale/ko/LC_MESSAGES/kcmlaptop.mo -share/locale/ko/LC_MESSAGES/kcmlaunch.mo -share/locale/ko/LC_MESSAGES/kcmlayout.mo -share/locale/ko/LC_MESSAGES/kcmlilo.mo -share/locale/ko/LC_MESSAGES/kcmlocale.mo -share/locale/ko/LC_MESSAGES/kcmmidi.mo -share/locale/ko/LC_MESSAGES/kcmnotify.mo -share/locale/ko/LC_MESSAGES/kcmsamba.mo -share/locale/ko/LC_MESSAGES/kcmscreensaver.mo -share/locale/ko/LC_MESSAGES/kcmsmserver.mo -share/locale/ko/LC_MESSAGES/kcmstyle.mo -share/locale/ko/LC_MESSAGES/kcmtaskbar.mo -share/locale/ko/LC_MESSAGES/kcmthemes.mo -share/locale/ko/LC_MESSAGES/kcontrol.mo -share/locale/ko/LC_MESSAGES/kcron.mo -share/locale/ko/LC_MESSAGES/kdat.mo -share/locale/ko/LC_MESSAGES/kdcop.mo -share/locale/ko/LC_MESSAGES/kdebugdialog.mo -share/locale/ko/LC_MESSAGES/kdelibs.mo -share/locale/ko/LC_MESSAGES/kdepasswd.mo -share/locale/ko/LC_MESSAGES/kdesktop.mo -share/locale/ko/LC_MESSAGES/kdessh.mo -share/locale/ko/LC_MESSAGES/kdesu.mo -share/locale/ko/LC_MESSAGES/kdesud.mo -share/locale/ko/LC_MESSAGES/kdf.mo -share/locale/ko/LC_MESSAGES/kdict.mo -share/locale/ko/LC_MESSAGES/kdmchooser.mo -share/locale/ko/LC_MESSAGES/kdmconfig.mo -share/locale/ko/LC_MESSAGES/kdmgreet.mo -share/locale/ko/LC_MESSAGES/kdvi.mo -share/locale/ko/LC_MESSAGES/kedit.mo -share/locale/ko/LC_MESSAGES/kfax.mo -share/locale/ko/LC_MESSAGES/kfind.mo -share/locale/ko/LC_MESSAGES/kfindpart.mo -share/locale/ko/LC_MESSAGES/kfloppy.mo -share/locale/ko/LC_MESSAGES/kfmclient.mo -share/locale/ko/LC_MESSAGES/kfmexec.mo -share/locale/ko/LC_MESSAGES/kfract.mo -share/locale/ko/LC_MESSAGES/kghostview.mo -share/locale/ko/LC_MESSAGES/khelpcenter.mo -share/locale/ko/LC_MESSAGES/khexedit.mo -share/locale/ko/LC_MESSAGES/khotkeys.mo -share/locale/ko/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/ko/LC_MESSAGES/kicker.mo -share/locale/ko/LC_MESSAGES/kiconedit.mo -share/locale/ko/LC_MESSAGES/kio_audiocd.mo -share/locale/ko/LC_MESSAGES/kio_finger.mo -share/locale/ko/LC_MESSAGES/kio_help.mo -share/locale/ko/LC_MESSAGES/kio_lan.mo -share/locale/ko/LC_MESSAGES/kio_man.mo -share/locale/ko/LC_MESSAGES/kjots.mo -share/locale/ko/LC_MESSAGES/klaptopdaemon.mo -share/locale/ko/LC_MESSAGES/klegacyimport.mo -share/locale/ko/LC_MESSAGES/klipper.mo -share/locale/ko/LC_MESSAGES/kljettool.mo -share/locale/ko/LC_MESSAGES/klock.mo -share/locale/ko/LC_MESSAGES/klpq.mo -share/locale/ko/LC_MESSAGES/kmahjongg.mo -share/locale/ko/LC_MESSAGES/kmail.mo -share/locale/ko/LC_MESSAGES/kmailcvt.mo -share/locale/ko/LC_MESSAGES/kmenuedit.mo -share/locale/ko/LC_MESSAGES/kmid.mo -share/locale/ko/LC_MESSAGES/kmines.mo -share/locale/ko/LC_MESSAGES/kminipagerapplet.mo -share/locale/ko/LC_MESSAGES/kmix.mo -share/locale/ko/LC_MESSAGES/kmoon.mo -share/locale/ko/LC_MESSAGES/knewsticker.mo -share/locale/ko/LC_MESSAGES/knode.mo -share/locale/ko/LC_MESSAGES/knotes.mo -share/locale/ko/LC_MESSAGES/knotify.mo -share/locale/ko/LC_MESSAGES/kolourpicker.mo -share/locale/ko/LC_MESSAGES/konqueror.mo -share/locale/ko/LC_MESSAGES/konsole.mo -share/locale/ko/LC_MESSAGES/kpackage.mo -share/locale/ko/LC_MESSAGES/kpager.mo -share/locale/ko/LC_MESSAGES/kpaint.mo -share/locale/ko/LC_MESSAGES/kpartapp.mo -share/locale/ko/LC_MESSAGES/kpartsaver.mo -share/locale/ko/LC_MESSAGES/kpat.mo -share/locale/ko/LC_MESSAGES/kpersonalizer.mo -share/locale/ko/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/ko/LC_MESSAGES/kpm.mo -share/locale/ko/LC_MESSAGES/kpoker.mo -share/locale/ko/LC_MESSAGES/kppp.mo -share/locale/ko/LC_MESSAGES/kppplogview.mo -share/locale/ko/LC_MESSAGES/kreadconfig.mo -share/locale/ko/LC_MESSAGES/kreversi.mo -share/locale/ko/LC_MESSAGES/kruler.mo -share/locale/ko/LC_MESSAGES/krunapplet.mo -share/locale/ko/LC_MESSAGES/ksame.mo -share/locale/ko/LC_MESSAGES/kscd.mo -share/locale/ko/LC_MESSAGES/kshisen.mo -share/locale/ko/LC_MESSAGES/ksirtet.mo -share/locale/ko/LC_MESSAGES/ksmserver.mo -share/locale/ko/LC_MESSAGES/ksnake.mo -share/locale/ko/LC_MESSAGES/ksnapshot.mo -share/locale/ko/LC_MESSAGES/ksplash.mo -share/locale/ko/LC_MESSAGES/kstart.mo -share/locale/ko/LC_MESSAGES/ksysctrl.mo -share/locale/ko/LC_MESSAGES/ksysguard.mo -share/locale/ko/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/ko/LC_MESSAGES/ksysv.mo -share/locale/ko/LC_MESSAGES/ktalkd.mo -share/locale/ko/LC_MESSAGES/ktaskbarapplet.mo -share/locale/ko/LC_MESSAGES/ktimemon.mo -share/locale/ko/LC_MESSAGES/ktip.mo -share/locale/ko/LC_MESSAGES/kuser.mo -share/locale/ko/LC_MESSAGES/kview.mo -share/locale/ko/LC_MESSAGES/kviewshell.mo -share/locale/ko/LC_MESSAGES/kwin.mo -share/locale/ko/LC_MESSAGES/kworldclock.mo -share/locale/ko/LC_MESSAGES/kwuftpd.mo -share/locale/ko/LC_MESSAGES/kxkb.mo -share/locale/ko/LC_MESSAGES/kxmlrpcd.mo -share/locale/ko/LC_MESSAGES/kxsconfig.mo -share/locale/ko/LC_MESSAGES/libkonq.mo -share/locale/ko/LC_MESSAGES/libkscreensaver.mo -share/locale/ko/LC_MESSAGES/libkwindefault_config.mo -share/locale/ko/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/ko/LC_MESSAGES/libkwinquartz_config.mo -share/locale/ko/LC_MESSAGES/libtaskbar.mo -share/locale/ko/LC_MESSAGES/libtaskmanager.mo -share/locale/ko/LC_MESSAGES/naughtyapplet.mo -share/locale/ko/LC_MESSAGES/noatun.mo -share/locale/ko/LC_MESSAGES/nsplugin.mo -share/locale/ko/LC_MESSAGES/passwords.mo -share/locale/ko/LC_MESSAGES/ppdtranslations.mo -share/locale/ko/LC_MESSAGES/quicklauncher.mo -share/locale/ko/LC_MESSAGES/secpolicy.mo -share/locale/ko/LC_MESSAGES/taskbarextension.mo -share/locale/ko/LC_MESSAGES/uachangerplugin.mo -share/locale/ko/LC_MESSAGES/validatorsplugin.mo -share/locale/ko/LC_MESSAGES/webarchiver.mo -share/locale/ko/charset -share/locale/ko/entry.desktop -share/locale/ko/flag.png -share/locale/lt/LC_MESSAGES/aktion.mo -share/locale/lt/LC_MESSAGES/appletproxy.mo -share/locale/lt/LC_MESSAGES/ark.mo -share/locale/lt/LC_MESSAGES/artsbuilder.mo -share/locale/lt/LC_MESSAGES/artscontrol.mo -share/locale/lt/LC_MESSAGES/childpanelextension.mo -share/locale/lt/LC_MESSAGES/clockapplet.mo -share/locale/lt/LC_MESSAGES/desktop.mo -share/locale/lt/LC_MESSAGES/drkonqi.mo -share/locale/lt/LC_MESSAGES/extensionproxy.mo -share/locale/lt/LC_MESSAGES/filetypes.mo -share/locale/lt/LC_MESSAGES/htmlsearch.mo -share/locale/lt/LC_MESSAGES/kaccess.mo -share/locale/lt/LC_MESSAGES/kaddressbook.mo -share/locale/lt/LC_MESSAGES/kappfinder.mo -share/locale/lt/LC_MESSAGES/kasbarextension.mo -share/locale/lt/LC_MESSAGES/kate.mo -share/locale/lt/LC_MESSAGES/kbabel.mo -share/locale/lt/LC_MESSAGES/kcmaccess.mo -share/locale/lt/LC_MESSAGES/kcmarts.mo -share/locale/lt/LC_MESSAGES/kcmbackground.mo -share/locale/lt/LC_MESSAGES/kcmbell.mo -share/locale/lt/LC_MESSAGES/kcmcolors.mo -share/locale/lt/LC_MESSAGES/kcmcrypto.mo -share/locale/lt/LC_MESSAGES/kcmcss.mo -share/locale/lt/LC_MESSAGES/kcmemail.mo -share/locale/lt/LC_MESSAGES/kcmenergy.mo -share/locale/lt/LC_MESSAGES/kcmfonts.mo -share/locale/lt/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/lt/LC_MESSAGES/kcmicons.mo -share/locale/lt/LC_MESSAGES/kcminfo.mo -share/locale/lt/LC_MESSAGES/kcminput.mo -share/locale/lt/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/lt/LC_MESSAGES/kcmkclock.mo -share/locale/lt/LC_MESSAGES/kcmkdb.mo -share/locale/lt/LC_MESSAGES/kcmkeys.mo -share/locale/lt/LC_MESSAGES/kcmkicker.mo -share/locale/lt/LC_MESSAGES/kcmkio.mo -share/locale/lt/LC_MESSAGES/kcmkmix.mo -share/locale/lt/LC_MESSAGES/kcmkonq.mo -share/locale/lt/LC_MESSAGES/kcmkonqhtml.mo -share/locale/lt/LC_MESSAGES/kcmkonsole.mo -share/locale/lt/LC_MESSAGES/kcmkurifilt.mo -share/locale/lt/LC_MESSAGES/kcmkwindecoration.mo -share/locale/lt/LC_MESSAGES/kcmkwintheme.mo -share/locale/lt/LC_MESSAGES/kcmkwm.mo -share/locale/lt/LC_MESSAGES/kcmlaunch.mo -share/locale/lt/LC_MESSAGES/kcmlayout.mo -share/locale/lt/LC_MESSAGES/kcmlocale.mo -share/locale/lt/LC_MESSAGES/kcmmidi.mo -share/locale/lt/LC_MESSAGES/kcmnotify.mo -share/locale/lt/LC_MESSAGES/kcmodbc.mo -share/locale/lt/LC_MESSAGES/kcmsamba.mo -share/locale/lt/LC_MESSAGES/kcmscreensaver.mo -share/locale/lt/LC_MESSAGES/kcmsmserver.mo -share/locale/lt/LC_MESSAGES/kcmspellchecking.mo -share/locale/lt/LC_MESSAGES/kcmstyle.mo -share/locale/lt/LC_MESSAGES/kcmtaskbar.mo -share/locale/lt/LC_MESSAGES/kcmthemes.mo -share/locale/lt/LC_MESSAGES/kcontrol.mo -share/locale/lt/LC_MESSAGES/kdcop.mo -share/locale/lt/LC_MESSAGES/kdebugdialog.mo -share/locale/lt/LC_MESSAGES/kdelibs.mo -share/locale/lt/LC_MESSAGES/kdesktop.mo -share/locale/lt/LC_MESSAGES/kdesu.mo -share/locale/lt/LC_MESSAGES/kdesud.mo -share/locale/lt/LC_MESSAGES/kdm.mo -share/locale/lt/LC_MESSAGES/kdmchooser.mo -share/locale/lt/LC_MESSAGES/kdmconfig.mo -share/locale/lt/LC_MESSAGES/kdmgreet.mo -share/locale/lt/LC_MESSAGES/kedit.mo -share/locale/lt/LC_MESSAGES/kfindpart.mo -share/locale/lt/LC_MESSAGES/kfmclient.mo -share/locale/lt/LC_MESSAGES/kfmexec.mo -share/locale/lt/LC_MESSAGES/khelpcenter.mo -share/locale/lt/LC_MESSAGES/khotkeys.mo -share/locale/lt/LC_MESSAGES/kicker.mo -share/locale/lt/LC_MESSAGES/kio_audiocd.mo -share/locale/lt/LC_MESSAGES/kio_finger.mo -share/locale/lt/LC_MESSAGES/kio_floppy.mo -share/locale/lt/LC_MESSAGES/kio_help.mo -share/locale/lt/LC_MESSAGES/kio_imap4.mo -share/locale/lt/LC_MESSAGES/kio_man.mo -share/locale/lt/LC_MESSAGES/kio_nfs.mo -share/locale/lt/LC_MESSAGES/kio_nntp.mo -share/locale/lt/LC_MESSAGES/kio_pop3.mo -share/locale/lt/LC_MESSAGES/kio_smb.mo -share/locale/lt/LC_MESSAGES/kio_smbro.mo -share/locale/lt/LC_MESSAGES/kjobviewer.mo -share/locale/lt/LC_MESSAGES/klegacyimport.mo -share/locale/lt/LC_MESSAGES/klipper.mo -share/locale/lt/LC_MESSAGES/klock.mo -share/locale/lt/LC_MESSAGES/kmail.mo -share/locale/lt/LC_MESSAGES/kmenuedit.mo -share/locale/lt/LC_MESSAGES/kminipagerapplet.mo -share/locale/lt/LC_MESSAGES/kmix.mo -share/locale/lt/LC_MESSAGES/knode.mo -share/locale/lt/LC_MESSAGES/knotes.mo -share/locale/lt/LC_MESSAGES/knotify.mo -share/locale/lt/LC_MESSAGES/konqueror.mo -share/locale/lt/LC_MESSAGES/konsole.mo -share/locale/lt/LC_MESSAGES/kpager.mo -share/locale/lt/LC_MESSAGES/kpartapp.mo -share/locale/lt/LC_MESSAGES/kpersonalizer.mo -share/locale/lt/LC_MESSAGES/kreadconfig.mo -share/locale/lt/LC_MESSAGES/krunapplet.mo -share/locale/lt/LC_MESSAGES/ksmserver.mo -share/locale/lt/LC_MESSAGES/ksplash.mo -share/locale/lt/LC_MESSAGES/kstart.mo -share/locale/lt/LC_MESSAGES/ksysguard.mo -share/locale/lt/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/lt/LC_MESSAGES/ktaskbarapplet.mo -share/locale/lt/LC_MESSAGES/ktip.mo -share/locale/lt/LC_MESSAGES/kwin.mo -share/locale/lt/LC_MESSAGES/kxkb.mo -share/locale/lt/LC_MESSAGES/kxmlrpcd.mo -share/locale/lt/LC_MESSAGES/kxsconfig.mo -share/locale/lt/LC_MESSAGES/libkonq.mo -share/locale/lt/LC_MESSAGES/libkwindefault_config.mo -share/locale/lt/LC_MESSAGES/libkwinicewm_config.mo -share/locale/lt/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/lt/LC_MESSAGES/libkwinquartz_config.mo -share/locale/lt/LC_MESSAGES/libtaskbar.mo -share/locale/lt/LC_MESSAGES/libtaskmanager.mo -share/locale/lt/LC_MESSAGES/naughtyapplet.mo -share/locale/lt/LC_MESSAGES/nsplugin.mo -share/locale/lt/LC_MESSAGES/passwords.mo -share/locale/lt/LC_MESSAGES/quicklauncher.mo -share/locale/lt/LC_MESSAGES/taskbarextension.mo -share/locale/lt/charset -share/locale/lt/entry.desktop -share/locale/lt/flag.png -share/locale/lv/LC_MESSAGES/aktion.mo -share/locale/lv/LC_MESSAGES/appletproxy.mo -share/locale/lv/LC_MESSAGES/ark.mo -share/locale/lv/LC_MESSAGES/artsbuilder.mo -share/locale/lv/LC_MESSAGES/artscontrol.mo -share/locale/lv/LC_MESSAGES/babelfish.mo -share/locale/lv/LC_MESSAGES/childpanelextension.mo -share/locale/lv/LC_MESSAGES/clockapplet.mo -share/locale/lv/LC_MESSAGES/cupsdconf.mo -share/locale/lv/LC_MESSAGES/desktop.mo -share/locale/lv/LC_MESSAGES/dirfilterplugin.mo -share/locale/lv/LC_MESSAGES/domtreeviewer.mo -share/locale/lv/LC_MESSAGES/drkonqi.mo -share/locale/lv/LC_MESSAGES/empath.mo -share/locale/lv/LC_MESSAGES/extensionproxy.mo -share/locale/lv/LC_MESSAGES/filetypes.mo -share/locale/lv/LC_MESSAGES/gideon.mo -share/locale/lv/LC_MESSAGES/htmlsearch.mo -share/locale/lv/LC_MESSAGES/imgalleryplugin.mo -share/locale/lv/LC_MESSAGES/kab.mo -share/locale/lv/LC_MESSAGES/kabalone.mo -share/locale/lv/LC_MESSAGES/kaccess.mo -share/locale/lv/LC_MESSAGES/kaddressbook.mo -share/locale/lv/LC_MESSAGES/kandy.mo -share/locale/lv/LC_MESSAGES/kappfinder.mo -share/locale/lv/LC_MESSAGES/karm.mo -share/locale/lv/LC_MESSAGES/kasbarextension.mo -share/locale/lv/LC_MESSAGES/kasteroids.mo -share/locale/lv/LC_MESSAGES/kate.mo -share/locale/lv/LC_MESSAGES/katehtmltools.mo -share/locale/lv/LC_MESSAGES/kateinsertcommand.mo -share/locale/lv/LC_MESSAGES/katomic.mo -share/locale/lv/LC_MESSAGES/kbabel.mo -share/locale/lv/LC_MESSAGES/kbackgammon.mo -share/locale/lv/LC_MESSAGES/kbattleship.mo -share/locale/lv/LC_MESSAGES/kblackbox.mo -share/locale/lv/LC_MESSAGES/kcalc.mo -share/locale/lv/LC_MESSAGES/kcharselect.mo -share/locale/lv/LC_MESSAGES/kcharselectapplet.mo -share/locale/lv/LC_MESSAGES/kcmaccess.mo -share/locale/lv/LC_MESSAGES/kcmarts.mo -share/locale/lv/LC_MESSAGES/kcmaudiocd.mo -share/locale/lv/LC_MESSAGES/kcmbackground.mo -share/locale/lv/LC_MESSAGES/kcmbell.mo -share/locale/lv/LC_MESSAGES/kcmcolors.mo -share/locale/lv/LC_MESSAGES/kcmcrypto.mo -share/locale/lv/LC_MESSAGES/kcmcss.mo -share/locale/lv/LC_MESSAGES/kcmemail.mo -share/locale/lv/LC_MESSAGES/kcmenergy.mo -share/locale/lv/LC_MESSAGES/kcmfonts.mo -share/locale/lv/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/lv/LC_MESSAGES/kcmicons.mo -share/locale/lv/LC_MESSAGES/kcminfo.mo -share/locale/lv/LC_MESSAGES/kcminput.mo -share/locale/lv/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/lv/LC_MESSAGES/kcmkamera.mo -share/locale/lv/LC_MESSAGES/kcmkclock.mo -share/locale/lv/LC_MESSAGES/kcmkdb.mo -share/locale/lv/LC_MESSAGES/kcmkeys.mo -share/locale/lv/LC_MESSAGES/kcmkicker.mo -share/locale/lv/LC_MESSAGES/kcmkio.mo -share/locale/lv/LC_MESSAGES/kcmkmix.mo -share/locale/lv/LC_MESSAGES/kcmkonq.mo -share/locale/lv/LC_MESSAGES/kcmkonqhtml.mo -share/locale/lv/LC_MESSAGES/kcmkonsole.mo -share/locale/lv/LC_MESSAGES/kcmktalkd.mo -share/locale/lv/LC_MESSAGES/kcmkurifilt.mo -share/locale/lv/LC_MESSAGES/kcmkwindecoration.mo -share/locale/lv/LC_MESSAGES/kcmkwintheme.mo -share/locale/lv/LC_MESSAGES/kcmkwm.mo -share/locale/lv/LC_MESSAGES/kcmlanbrowser.mo -share/locale/lv/LC_MESSAGES/kcmlaptop.mo -share/locale/lv/LC_MESSAGES/kcmlaunch.mo -share/locale/lv/LC_MESSAGES/kcmlayout.mo -share/locale/lv/LC_MESSAGES/kcmlilo.mo -share/locale/lv/LC_MESSAGES/kcmlinuz.mo -share/locale/lv/LC_MESSAGES/kcmlocale.mo -share/locale/lv/LC_MESSAGES/kcmmidi.mo -share/locale/lv/LC_MESSAGES/kcmnewsticker.mo -share/locale/lv/LC_MESSAGES/kcmnotify.mo -share/locale/lv/LC_MESSAGES/kcmsamba.mo -share/locale/lv/LC_MESSAGES/kcmscreensaver.mo -share/locale/lv/LC_MESSAGES/kcmsmserver.mo -share/locale/lv/LC_MESSAGES/kcmsocks.mo -share/locale/lv/LC_MESSAGES/kcmspellchecking.mo -share/locale/lv/LC_MESSAGES/kcmstyle.mo -share/locale/lv/LC_MESSAGES/kcmtaskbar.mo -share/locale/lv/LC_MESSAGES/kcmthemes.mo -share/locale/lv/LC_MESSAGES/kcmusb.mo -share/locale/lv/LC_MESSAGES/kcoloredit.mo -share/locale/lv/LC_MESSAGES/kcontrol.mo -share/locale/lv/LC_MESSAGES/kcron.mo -share/locale/lv/LC_MESSAGES/kdcop.mo -share/locale/lv/LC_MESSAGES/kdebugdialog.mo -share/locale/lv/LC_MESSAGES/kdelibs.mo -share/locale/lv/LC_MESSAGES/kdepasswd.mo -share/locale/lv/LC_MESSAGES/kdeprintfax.mo -share/locale/lv/LC_MESSAGES/kdesktop.mo -share/locale/lv/LC_MESSAGES/kdessh.mo -share/locale/lv/LC_MESSAGES/kdesu.mo -share/locale/lv/LC_MESSAGES/kdesud.mo -share/locale/lv/LC_MESSAGES/kdevelop.mo -share/locale/lv/LC_MESSAGES/kdevtipofday.mo -share/locale/lv/LC_MESSAGES/kdf.mo -share/locale/lv/LC_MESSAGES/kdict.mo -share/locale/lv/LC_MESSAGES/kdictapplet.mo -share/locale/lv/LC_MESSAGES/kdmchooser.mo -share/locale/lv/LC_MESSAGES/kdmconfig.mo -share/locale/lv/LC_MESSAGES/kdmgreet.mo -share/locale/lv/LC_MESSAGES/kdvi.mo -share/locale/lv/LC_MESSAGES/kedit.mo -share/locale/lv/LC_MESSAGES/keystone.mo -share/locale/lv/LC_MESSAGES/kfax.mo -share/locale/lv/LC_MESSAGES/kfind.mo -share/locale/lv/LC_MESSAGES/kfindpart.mo -share/locale/lv/LC_MESSAGES/kfloppy.mo -share/locale/lv/LC_MESSAGES/kfmclient.mo -share/locale/lv/LC_MESSAGES/kfmexec.mo -share/locale/lv/LC_MESSAGES/kfract.mo -share/locale/lv/LC_MESSAGES/kghostview.mo -share/locale/lv/LC_MESSAGES/khelpcenter.mo -share/locale/lv/LC_MESSAGES/khexedit.mo -share/locale/lv/LC_MESSAGES/khotkeys.mo -share/locale/lv/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/lv/LC_MESSAGES/kicker.mo -share/locale/lv/LC_MESSAGES/kiconedit.mo -share/locale/lv/LC_MESSAGES/kio_audiocd.mo -share/locale/lv/LC_MESSAGES/kio_finger.mo -share/locale/lv/LC_MESSAGES/kio_floppy.mo -share/locale/lv/LC_MESSAGES/kio_help.mo -share/locale/lv/LC_MESSAGES/kio_imap4.mo -share/locale/lv/LC_MESSAGES/kio_lan.mo -share/locale/lv/LC_MESSAGES/kio_man.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_smb.mo -share/locale/lv/LC_MESSAGES/kio_smbro.mo -share/locale/lv/LC_MESSAGES/kit.mo -share/locale/lv/LC_MESSAGES/kjezz.mo -share/locale/lv/LC_MESSAGES/kjobviewer.mo -share/locale/lv/LC_MESSAGES/kjots.mo -share/locale/lv/LC_MESSAGES/kjumpingcube.mo -share/locale/lv/LC_MESSAGES/klaptopdaemon.mo -share/locale/lv/LC_MESSAGES/klegacyimport.mo -share/locale/lv/LC_MESSAGES/kless.mo -share/locale/lv/LC_MESSAGES/klines.mo -share/locale/lv/LC_MESSAGES/klipper.mo -share/locale/lv/LC_MESSAGES/kljettool.mo -share/locale/lv/LC_MESSAGES/klock.mo -share/locale/lv/LC_MESSAGES/klpq.mo -share/locale/lv/LC_MESSAGES/klprfax.mo -share/locale/lv/LC_MESSAGES/kmahjongg.mo -share/locale/lv/LC_MESSAGES/kmail.mo -share/locale/lv/LC_MESSAGES/kmailcvt.mo -share/locale/lv/LC_MESSAGES/kmcop.mo -share/locale/lv/LC_MESSAGES/kmenuedit.mo -share/locale/lv/LC_MESSAGES/kmid.mo -share/locale/lv/LC_MESSAGES/kmidi.mo -share/locale/lv/LC_MESSAGES/kmines.mo -share/locale/lv/LC_MESSAGES/kminipagerapplet.mo -share/locale/lv/LC_MESSAGES/kmix.mo -share/locale/lv/LC_MESSAGES/knewsticker.mo -share/locale/lv/LC_MESSAGES/knode.mo -share/locale/lv/LC_MESSAGES/knotes.mo -share/locale/lv/LC_MESSAGES/knotify.mo -share/locale/lv/LC_MESSAGES/kolourpicker.mo -share/locale/lv/LC_MESSAGES/konqueror.mo -share/locale/lv/LC_MESSAGES/konquest.mo -share/locale/lv/LC_MESSAGES/konsole.mo -share/locale/lv/LC_MESSAGES/kooka.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/kpager.mo -share/locale/lv/LC_MESSAGES/kpaint.mo -share/locale/lv/LC_MESSAGES/kpartapp.mo -share/locale/lv/LC_MESSAGES/kpartsaver.mo -share/locale/lv/LC_MESSAGES/kpat.mo -share/locale/lv/LC_MESSAGES/kpersonalizer.mo -share/locale/lv/LC_MESSAGES/kpilot.mo -share/locale/lv/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/lv/LC_MESSAGES/kpm.mo -share/locale/lv/LC_MESSAGES/kpoker.mo -share/locale/lv/LC_MESSAGES/kppp.mo -share/locale/lv/LC_MESSAGES/kppplogview.mo -share/locale/lv/LC_MESSAGES/kprinter.mo -share/locale/lv/LC_MESSAGES/kreadconfig.mo -share/locale/lv/LC_MESSAGES/kreversi.mo -share/locale/lv/LC_MESSAGES/kruler.mo -share/locale/lv/LC_MESSAGES/krunapplet.mo -share/locale/lv/LC_MESSAGES/ksame.mo -share/locale/lv/LC_MESSAGES/kscd.mo -share/locale/lv/LC_MESSAGES/kshisen.mo -share/locale/lv/LC_MESSAGES/ksirc.mo -share/locale/lv/LC_MESSAGES/ksirtet.mo -share/locale/lv/LC_MESSAGES/ksmiletris.mo -share/locale/lv/LC_MESSAGES/ksmserver.mo -share/locale/lv/LC_MESSAGES/ksnake.mo -share/locale/lv/LC_MESSAGES/ksnapshot.mo -share/locale/lv/LC_MESSAGES/ksokoban.mo -share/locale/lv/LC_MESSAGES/kspaceduel.mo -share/locale/lv/LC_MESSAGES/ksplash.mo -share/locale/lv/LC_MESSAGES/kstart.mo -share/locale/lv/LC_MESSAGES/kstartperf.mo -share/locale/lv/LC_MESSAGES/ksysctrl.mo -share/locale/lv/LC_MESSAGES/ksysguard.mo -share/locale/lv/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/lv/LC_MESSAGES/ksysv.mo -share/locale/lv/LC_MESSAGES/ktalkd.mo -share/locale/lv/LC_MESSAGES/ktaskbarapplet.mo -share/locale/lv/LC_MESSAGES/ktimemon.mo -share/locale/lv/LC_MESSAGES/ktimer.mo -share/locale/lv/LC_MESSAGES/ktip.mo -share/locale/lv/LC_MESSAGES/ktron.mo -share/locale/lv/LC_MESSAGES/ktuberling.mo -share/locale/lv/LC_MESSAGES/kuser.mo -share/locale/lv/LC_MESSAGES/kview.mo -share/locale/lv/LC_MESSAGES/kviewshell.mo -share/locale/lv/LC_MESSAGES/kwin.mo -share/locale/lv/LC_MESSAGES/kwin4.mo -share/locale/lv/LC_MESSAGES/kwuftpd.mo -share/locale/lv/LC_MESSAGES/kxkb.mo -share/locale/lv/LC_MESSAGES/kxmlrpcd.mo -share/locale/lv/LC_MESSAGES/kxsconfig.mo -share/locale/lv/LC_MESSAGES/libkdegames.mo -share/locale/lv/LC_MESSAGES/libkdenetwork.mo -share/locale/lv/LC_MESSAGES/libkonq.mo -share/locale/lv/LC_MESSAGES/libkscan.mo -share/locale/lv/LC_MESSAGES/libkscreensaver.mo -share/locale/lv/LC_MESSAGES/libkwindefault_config.mo -share/locale/lv/LC_MESSAGES/libkwinicewm_config.mo -share/locale/lv/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/lv/LC_MESSAGES/libkwinquartz_config.mo -share/locale/lv/LC_MESSAGES/libtaskbar.mo -share/locale/lv/LC_MESSAGES/libtaskmanager.mo -share/locale/lv/LC_MESSAGES/lskat.mo -share/locale/lv/LC_MESSAGES/multiplayers.mo -share/locale/lv/LC_MESSAGES/naughtyapplet.mo -share/locale/lv/LC_MESSAGES/noatun.mo -share/locale/lv/LC_MESSAGES/nsplugin.mo -share/locale/lv/LC_MESSAGES/passwords.mo -share/locale/lv/LC_MESSAGES/ppdtranslations.mo -share/locale/lv/LC_MESSAGES/quicklauncher.mo -share/locale/lv/LC_MESSAGES/secpolicy.mo -share/locale/lv/LC_MESSAGES/spy.mo -share/locale/lv/LC_MESSAGES/taskbarextension.mo -share/locale/lv/LC_MESSAGES/twister.mo -share/locale/lv/LC_MESSAGES/uachangerplugin.mo -share/locale/lv/LC_MESSAGES/validatorsplugin.mo -share/locale/lv/LC_MESSAGES/webarchiver.mo -share/locale/lv/charset -share/locale/lv/entry.desktop -share/locale/lv/flag.png -share/locale/mt/LC_MESSAGES/amor.mo -share/locale/mt/LC_MESSAGES/appletproxy.mo -share/locale/mt/LC_MESSAGES/ark.mo -share/locale/mt/LC_MESSAGES/babelfish.mo -share/locale/mt/LC_MESSAGES/childpanelextension.mo -share/locale/mt/LC_MESSAGES/clockapplet.mo -share/locale/mt/LC_MESSAGES/cupsdconf.mo -share/locale/mt/LC_MESSAGES/desktop.mo -share/locale/mt/LC_MESSAGES/dirfilterplugin.mo -share/locale/mt/LC_MESSAGES/domtreeviewer.mo -share/locale/mt/LC_MESSAGES/drkonqi.mo -share/locale/mt/LC_MESSAGES/extensionproxy.mo -share/locale/mt/LC_MESSAGES/filetypes.mo -share/locale/mt/LC_MESSAGES/htmlsearch.mo -share/locale/mt/LC_MESSAGES/imgalleryplugin.mo -share/locale/mt/LC_MESSAGES/kab.mo -share/locale/mt/LC_MESSAGES/kaccess.mo -share/locale/mt/LC_MESSAGES/kaddressbook.mo -share/locale/mt/LC_MESSAGES/kappfinder.mo -share/locale/mt/LC_MESSAGES/karm.mo -share/locale/mt/LC_MESSAGES/kasbarextension.mo -share/locale/mt/LC_MESSAGES/kate.mo -share/locale/mt/LC_MESSAGES/kautorun.mo -share/locale/mt/LC_MESSAGES/kbabel.mo -share/locale/mt/LC_MESSAGES/kbiff.mo -share/locale/mt/LC_MESSAGES/kcalc.mo -share/locale/mt/LC_MESSAGES/kcharselect.mo -share/locale/mt/LC_MESSAGES/kcharselectapplet.mo -share/locale/mt/LC_MESSAGES/kcmaccess.mo -share/locale/mt/LC_MESSAGES/kcmail.mo -share/locale/mt/LC_MESSAGES/kcmarts.mo -share/locale/mt/LC_MESSAGES/kcmaudiocd.mo -share/locale/mt/LC_MESSAGES/kcmbackground.mo -share/locale/mt/LC_MESSAGES/kcmbell.mo -share/locale/mt/LC_MESSAGES/kcmcolors.mo -share/locale/mt/LC_MESSAGES/kcmcrypto.mo -share/locale/mt/LC_MESSAGES/kcmcss.mo -share/locale/mt/LC_MESSAGES/kcmemail.mo -share/locale/mt/LC_MESSAGES/kcmenergy.mo -share/locale/mt/LC_MESSAGES/kcmfonts.mo -share/locale/mt/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/mt/LC_MESSAGES/kcmicons.mo -share/locale/mt/LC_MESSAGES/kcminfo.mo -share/locale/mt/LC_MESSAGES/kcminput.mo -share/locale/mt/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/mt/LC_MESSAGES/kcmkamera.mo -share/locale/mt/LC_MESSAGES/kcmkclock.mo -share/locale/mt/LC_MESSAGES/kcmkdb.mo -share/locale/mt/LC_MESSAGES/kcmkeys.mo -share/locale/mt/LC_MESSAGES/kcmkicker.mo -share/locale/mt/LC_MESSAGES/kcmkio.mo -share/locale/mt/LC_MESSAGES/kcmkmix.mo -share/locale/mt/LC_MESSAGES/kcmkonq.mo -share/locale/mt/LC_MESSAGES/kcmkonqhtml.mo -share/locale/mt/LC_MESSAGES/kcmkonsole.mo -share/locale/mt/LC_MESSAGES/kcmktalkd.mo -share/locale/mt/LC_MESSAGES/kcmkurifilt.mo -share/locale/mt/LC_MESSAGES/kcmkwindecoration.mo -share/locale/mt/LC_MESSAGES/kcmkwintheme.mo -share/locale/mt/LC_MESSAGES/kcmkwm.mo -share/locale/mt/LC_MESSAGES/kcmlaptop.mo -share/locale/mt/LC_MESSAGES/kcmlaunch.mo -share/locale/mt/LC_MESSAGES/kcmlayout.mo -share/locale/mt/LC_MESSAGES/kcmlinuz.mo -share/locale/mt/LC_MESSAGES/kcmlocale.mo -share/locale/mt/LC_MESSAGES/kcmmidi.mo -share/locale/mt/LC_MESSAGES/kcmnapster.mo -share/locale/mt/LC_MESSAGES/kcmnotify.mo -share/locale/mt/LC_MESSAGES/kcmsamba.mo -share/locale/mt/LC_MESSAGES/kcmscreensaver.mo -share/locale/mt/LC_MESSAGES/kcmsmserver.mo -share/locale/mt/LC_MESSAGES/kcmsocks.mo -share/locale/mt/LC_MESSAGES/kcmspellchecking.mo -share/locale/mt/LC_MESSAGES/kcmstyle.mo -share/locale/mt/LC_MESSAGES/kcmtaskbar.mo -share/locale/mt/LC_MESSAGES/kcmthemes.mo -share/locale/mt/LC_MESSAGES/kcmusb.mo -share/locale/mt/LC_MESSAGES/kcoloredit.mo -share/locale/mt/LC_MESSAGES/kcontrol.mo -share/locale/mt/LC_MESSAGES/kcron.mo -share/locale/mt/LC_MESSAGES/kdcop.mo -share/locale/mt/LC_MESSAGES/kdebugdialog.mo -share/locale/mt/LC_MESSAGES/kdelibs.mo -share/locale/mt/LC_MESSAGES/kdepasswd.mo -share/locale/mt/LC_MESSAGES/kdeprintfax.mo -share/locale/mt/LC_MESSAGES/kdesktop.mo -share/locale/mt/LC_MESSAGES/kdessh.mo -share/locale/mt/LC_MESSAGES/kdesu.mo -share/locale/mt/LC_MESSAGES/kdesud.mo -share/locale/mt/LC_MESSAGES/kdf.mo -share/locale/mt/LC_MESSAGES/kdict.mo -share/locale/mt/LC_MESSAGES/kdictapplet.mo -share/locale/mt/LC_MESSAGES/kdmchooser.mo -share/locale/mt/LC_MESSAGES/kdmconfig.mo -share/locale/mt/LC_MESSAGES/kdmgreet.mo -share/locale/mt/LC_MESSAGES/kedit.mo -share/locale/mt/LC_MESSAGES/kfifteenapplet.mo -share/locale/mt/LC_MESSAGES/kfind.mo -share/locale/mt/LC_MESSAGES/kfindpart.mo -share/locale/mt/LC_MESSAGES/kfloppy.mo -share/locale/mt/LC_MESSAGES/kfmclient.mo -share/locale/mt/LC_MESSAGES/kfmexec.mo -share/locale/mt/LC_MESSAGES/kformviewer.mo -share/locale/mt/LC_MESSAGES/kfract.mo -share/locale/mt/LC_MESSAGES/kghostview.mo -share/locale/mt/LC_MESSAGES/khelpcenter.mo -share/locale/mt/LC_MESSAGES/khotkeys.mo -share/locale/mt/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/mt/LC_MESSAGES/kicker.mo -share/locale/mt/LC_MESSAGES/kiconedit.mo -share/locale/mt/LC_MESSAGES/kio_audiocd.mo -share/locale/mt/LC_MESSAGES/kio_finger.mo -share/locale/mt/LC_MESSAGES/kio_floppy.mo -share/locale/mt/LC_MESSAGES/kio_help.mo -share/locale/mt/LC_MESSAGES/kio_imap4.mo -share/locale/mt/LC_MESSAGES/kio_lan.mo -share/locale/mt/LC_MESSAGES/kio_man.mo -share/locale/mt/LC_MESSAGES/kio_nfs.mo -share/locale/mt/LC_MESSAGES/kio_nntp.mo -share/locale/mt/LC_MESSAGES/kio_pop3.mo -share/locale/mt/LC_MESSAGES/kio_smb.mo -share/locale/mt/LC_MESSAGES/kio_smbro.mo -share/locale/mt/LC_MESSAGES/kit.mo -share/locale/mt/LC_MESSAGES/kjobviewer.mo -share/locale/mt/LC_MESSAGES/kjots.mo -share/locale/mt/LC_MESSAGES/klaptopdaemon.mo -share/locale/mt/LC_MESSAGES/klegacyimport.mo -share/locale/mt/LC_MESSAGES/klipper.mo -share/locale/mt/LC_MESSAGES/klock.mo -share/locale/mt/LC_MESSAGES/klpq.mo -share/locale/mt/LC_MESSAGES/kmail.mo -share/locale/mt/LC_MESSAGES/kmake.mo -share/locale/mt/LC_MESSAGES/kmenuedit.mo -share/locale/mt/LC_MESSAGES/kminipagerapplet.mo -share/locale/mt/LC_MESSAGES/kmms.mo -share/locale/mt/LC_MESSAGES/kmonop.mo -share/locale/mt/LC_MESSAGES/kmoon.mo -share/locale/mt/LC_MESSAGES/knotes.mo -share/locale/mt/LC_MESSAGES/knotify.mo -share/locale/mt/LC_MESSAGES/kodo.mo -share/locale/mt/LC_MESSAGES/kolourpicker.mo -share/locale/mt/LC_MESSAGES/konqueror.mo -share/locale/mt/LC_MESSAGES/konsole.mo -share/locale/mt/LC_MESSAGES/konv.mo -share/locale/mt/LC_MESSAGES/kooka.mo -share/locale/mt/LC_MESSAGES/korganizer.mo -share/locale/mt/LC_MESSAGES/kpackage.mo -share/locale/mt/LC_MESSAGES/kpager.mo -share/locale/mt/LC_MESSAGES/kpaint.mo -share/locale/mt/LC_MESSAGES/kpartapp.mo -share/locale/mt/LC_MESSAGES/kpartsaver.mo -share/locale/mt/LC_MESSAGES/kpersonalizer.mo -share/locale/mt/LC_MESSAGES/kpm.mo -share/locale/mt/LC_MESSAGES/kppp.mo -share/locale/mt/LC_MESSAGES/kprinter.mo -share/locale/mt/LC_MESSAGES/kreadconfig.mo -share/locale/mt/LC_MESSAGES/kruler.mo -share/locale/mt/LC_MESSAGES/krunapplet.mo -share/locale/mt/LC_MESSAGES/kscd.mo -share/locale/mt/LC_MESSAGES/kscoreapplet.mo -share/locale/mt/LC_MESSAGES/ksmserver.mo -share/locale/mt/LC_MESSAGES/ksnapshot.mo -share/locale/mt/LC_MESSAGES/ksplash.mo -share/locale/mt/LC_MESSAGES/kstart.mo -share/locale/mt/LC_MESSAGES/ksysctrl.mo -share/locale/mt/LC_MESSAGES/ksysguard.mo -share/locale/mt/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/mt/LC_MESSAGES/ktaskbarapplet.mo -share/locale/mt/LC_MESSAGES/kteatime.mo -share/locale/mt/LC_MESSAGES/ktimemon.mo -share/locale/mt/LC_MESSAGES/ktimer.mo -share/locale/mt/LC_MESSAGES/ktip.mo -share/locale/mt/LC_MESSAGES/ktux.mo -share/locale/mt/LC_MESSAGES/kuser.mo -share/locale/mt/LC_MESSAGES/kview.mo -share/locale/mt/LC_MESSAGES/kviewshell.mo -share/locale/mt/LC_MESSAGES/kwin.mo -share/locale/mt/LC_MESSAGES/kworldclock.mo -share/locale/mt/LC_MESSAGES/kxkb.mo -share/locale/mt/LC_MESSAGES/kxmlrpcd.mo -share/locale/mt/LC_MESSAGES/kxsconfig.mo -share/locale/mt/LC_MESSAGES/libkdegames.mo -share/locale/mt/LC_MESSAGES/libkdenetwork.mo -share/locale/mt/LC_MESSAGES/libkonq.mo -share/locale/mt/LC_MESSAGES/libkscan.mo -share/locale/mt/LC_MESSAGES/libkscreensaver.mo -share/locale/mt/LC_MESSAGES/libkwindefault_config.mo -share/locale/mt/LC_MESSAGES/libkwinicewm_config.mo -share/locale/mt/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/mt/LC_MESSAGES/libkwinquartz_config.mo -share/locale/mt/LC_MESSAGES/libtaskbar.mo -share/locale/mt/LC_MESSAGES/libtaskmanager.mo -share/locale/mt/LC_MESSAGES/naughtyapplet.mo -share/locale/mt/LC_MESSAGES/noatun.mo -share/locale/mt/LC_MESSAGES/nsplugin.mo -share/locale/mt/LC_MESSAGES/passwords.mo -share/locale/mt/LC_MESSAGES/ppdtranslations.mo -share/locale/mt/LC_MESSAGES/quicklauncher.mo -share/locale/mt/LC_MESSAGES/secpolicy.mo -share/locale/mt/LC_MESSAGES/taskbarextension.mo -share/locale/mt/LC_MESSAGES/twister.mo -share/locale/mt/LC_MESSAGES/uachangerplugin.mo -share/locale/mt/LC_MESSAGES/validatorsplugin.mo -share/locale/mt/LC_MESSAGES/webarchiver.mo -share/locale/mt/charset -share/locale/mt/entry.desktop -share/locale/mt/flag.png -share/locale/nl/LC_MESSAGES/aktion.mo -share/locale/nl/LC_MESSAGES/amor.mo -share/locale/nl/LC_MESSAGES/appletproxy.mo -share/locale/nl/LC_MESSAGES/ark.mo -share/locale/nl/LC_MESSAGES/artsbuilder.mo -share/locale/nl/LC_MESSAGES/artscontrol.mo -share/locale/nl/LC_MESSAGES/babelfish.mo -share/locale/nl/LC_MESSAGES/caitoo.mo -share/locale/nl/LC_MESSAGES/childpanelextension.mo -share/locale/nl/LC_MESSAGES/clockapplet.mo -share/locale/nl/LC_MESSAGES/colfind.mo -share/locale/nl/LC_MESSAGES/columbo.mo -share/locale/nl/LC_MESSAGES/cookbook.mo -share/locale/nl/LC_MESSAGES/cupsdconf.mo -share/locale/nl/LC_MESSAGES/desktop.mo -share/locale/nl/LC_MESSAGES/devcenter.mo -share/locale/nl/LC_MESSAGES/dirfilterplugin.mo -share/locale/nl/LC_MESSAGES/domtreeviewer.mo -share/locale/nl/LC_MESSAGES/drkonqi.mo -share/locale/nl/LC_MESSAGES/empath.mo -share/locale/nl/LC_MESSAGES/extensionproxy.mo -share/locale/nl/LC_MESSAGES/filetypes.mo -share/locale/nl/LC_MESSAGES/fontinst.mo -share/locale/nl/LC_MESSAGES/gideon.mo -share/locale/nl/LC_MESSAGES/gofai.mo -share/locale/nl/LC_MESSAGES/htmlsearch.mo -share/locale/nl/LC_MESSAGES/imgalleryplugin.mo -share/locale/nl/LC_MESSAGES/kab.mo -share/locale/nl/LC_MESSAGES/kabalone.mo -share/locale/nl/LC_MESSAGES/kaboodle.mo -share/locale/nl/LC_MESSAGES/kaccess.mo -share/locale/nl/LC_MESSAGES/kaddressbook.mo -share/locale/nl/LC_MESSAGES/kafka.mo -share/locale/nl/LC_MESSAGES/kandy.mo -share/locale/nl/LC_MESSAGES/kappfinder.mo -share/locale/nl/LC_MESSAGES/karchie.mo -share/locale/nl/LC_MESSAGES/karchiver.mo -share/locale/nl/LC_MESSAGES/karm.mo -share/locale/nl/LC_MESSAGES/kasbarextension.mo -share/locale/nl/LC_MESSAGES/kasteroids.mo -share/locale/nl/LC_MESSAGES/katalog.mo -share/locale/nl/LC_MESSAGES/kate.mo -share/locale/nl/LC_MESSAGES/katehtmltools.mo -share/locale/nl/LC_MESSAGES/kateinsertcommand.mo -share/locale/nl/LC_MESSAGES/kateopenheader.mo -share/locale/nl/LC_MESSAGES/kateprojectmanager.mo -share/locale/nl/LC_MESSAGES/katetextfilter.mo -share/locale/nl/LC_MESSAGES/katomic.mo -share/locale/nl/LC_MESSAGES/kautorun.mo -share/locale/nl/LC_MESSAGES/kbabel.mo -share/locale/nl/LC_MESSAGES/kbackgammon.mo -share/locale/nl/LC_MESSAGES/kbattleship.mo -share/locale/nl/LC_MESSAGES/kbiff.mo -share/locale/nl/LC_MESSAGES/kblackbox.mo -share/locale/nl/LC_MESSAGES/kbugbuster.mo -share/locale/nl/LC_MESSAGES/kcalc.mo -share/locale/nl/LC_MESSAGES/kcharselect.mo -share/locale/nl/LC_MESSAGES/kcharselectapplet.mo -share/locale/nl/LC_MESSAGES/kcm_scsimanager.mo -share/locale/nl/LC_MESSAGES/kcmaccess.mo -share/locale/nl/LC_MESSAGES/kcmail.mo -share/locale/nl/LC_MESSAGES/kcmarts.mo -share/locale/nl/LC_MESSAGES/kcmaudiocd.mo -share/locale/nl/LC_MESSAGES/kcmbackground.mo -share/locale/nl/LC_MESSAGES/kcmbell.mo -share/locale/nl/LC_MESSAGES/kcmbind.mo -share/locale/nl/LC_MESSAGES/kcmcolors.mo -share/locale/nl/LC_MESSAGES/kcmcrypto.mo -share/locale/nl/LC_MESSAGES/kcmcss.mo -share/locale/nl/LC_MESSAGES/kcmdhcpd.mo -share/locale/nl/LC_MESSAGES/kcmemail.mo -share/locale/nl/LC_MESSAGES/kcmenergy.mo -share/locale/nl/LC_MESSAGES/kcmfonts.mo -share/locale/nl/LC_MESSAGES/kcmgofai.mo -share/locale/nl/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/nl/LC_MESSAGES/kcmicons.mo -share/locale/nl/LC_MESSAGES/kcminfo.mo -share/locale/nl/LC_MESSAGES/kcminput.mo -share/locale/nl/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/nl/LC_MESSAGES/kcmiwatcher.mo -share/locale/nl/LC_MESSAGES/kcmkamera.mo -share/locale/nl/LC_MESSAGES/kcmkclock.mo -share/locale/nl/LC_MESSAGES/kcmkdb.mo -share/locale/nl/LC_MESSAGES/kcmkeys.mo -share/locale/nl/LC_MESSAGES/kcmkicker.mo -share/locale/nl/LC_MESSAGES/kcmkio.mo -share/locale/nl/LC_MESSAGES/kcmkmix.mo -share/locale/nl/LC_MESSAGES/kcmkonq.mo -share/locale/nl/LC_MESSAGES/kcmkonqhtml.mo -share/locale/nl/LC_MESSAGES/kcmkonsole.mo -share/locale/nl/LC_MESSAGES/kcmktalkd.mo -share/locale/nl/LC_MESSAGES/kcmkurifilt.mo -share/locale/nl/LC_MESSAGES/kcmkwindecoration.mo -share/locale/nl/LC_MESSAGES/kcmkwintheme.mo -share/locale/nl/LC_MESSAGES/kcmkwm.mo -share/locale/nl/LC_MESSAGES/kcmlanbrowser.mo -share/locale/nl/LC_MESSAGES/kcmlaptop.mo -share/locale/nl/LC_MESSAGES/kcmlaunch.mo -share/locale/nl/LC_MESSAGES/kcmlayout.mo -share/locale/nl/LC_MESSAGES/kcmlilo.mo -share/locale/nl/LC_MESSAGES/kcmlinuz.mo -share/locale/nl/LC_MESSAGES/kcmlocale.mo -share/locale/nl/LC_MESSAGES/kcmmediacontrol.mo -share/locale/nl/LC_MESSAGES/kcmmidi.mo -share/locale/nl/LC_MESSAGES/kcmnapster.mo -share/locale/nl/LC_MESSAGES/kcmnewsticker.mo -share/locale/nl/LC_MESSAGES/kcmnotify.mo -share/locale/nl/LC_MESSAGES/kcmodbc.mo -share/locale/nl/LC_MESSAGES/kcmsamba.mo -share/locale/nl/LC_MESSAGES/kcmscreensaver.mo -share/locale/nl/LC_MESSAGES/kcmsmserver.mo -share/locale/nl/LC_MESSAGES/kcmsocks.mo -share/locale/nl/LC_MESSAGES/kcmspellchecking.mo -share/locale/nl/LC_MESSAGES/kcmstyle.mo -share/locale/nl/LC_MESSAGES/kcmtaskbar.mo -share/locale/nl/LC_MESSAGES/kcmthemes.mo -share/locale/nl/LC_MESSAGES/kcmusb.mo -share/locale/nl/LC_MESSAGES/kcmuserenv.mo -share/locale/nl/LC_MESSAGES/kcoloredit.mo -share/locale/nl/LC_MESSAGES/kcontrol.mo -share/locale/nl/LC_MESSAGES/kcron.mo -share/locale/nl/LC_MESSAGES/kdao.mo -share/locale/nl/LC_MESSAGES/kdbbrowser.mo -share/locale/nl/LC_MESSAGES/kdcop.mo -share/locale/nl/LC_MESSAGES/kdebugdialog.mo -share/locale/nl/LC_MESSAGES/kdelibs.mo -share/locale/nl/LC_MESSAGES/kdepasswd.mo -share/locale/nl/LC_MESSAGES/kdeprintfax.mo -share/locale/nl/LC_MESSAGES/kdesktop.mo -share/locale/nl/LC_MESSAGES/kdessh.mo -share/locale/nl/LC_MESSAGES/kdestdifacedemo.mo -share/locale/nl/LC_MESSAGES/kdesu.mo -share/locale/nl/LC_MESSAGES/kdesud.mo -share/locale/nl/LC_MESSAGES/kdevelop.mo -share/locale/nl/LC_MESSAGES/kdevtipofday.mo -share/locale/nl/LC_MESSAGES/kdf.mo -share/locale/nl/LC_MESSAGES/kdict.mo -share/locale/nl/LC_MESSAGES/kdictapplet.mo -share/locale/nl/LC_MESSAGES/kdiff.mo -share/locale/nl/LC_MESSAGES/kdmchooser.mo -share/locale/nl/LC_MESSAGES/kdmconfig.mo -share/locale/nl/LC_MESSAGES/kdmgreet.mo -share/locale/nl/LC_MESSAGES/kdvi.mo -share/locale/nl/LC_MESSAGES/kedit.mo -share/locale/nl/LC_MESSAGES/keystone.mo -share/locale/nl/LC_MESSAGES/kfax.mo -share/locale/nl/LC_MESSAGES/kfifteenapplet.mo -share/locale/nl/LC_MESSAGES/kfind.mo -share/locale/nl/LC_MESSAGES/kfindpart.mo -share/locale/nl/LC_MESSAGES/kfinger.mo -share/locale/nl/LC_MESSAGES/kfloppy.mo -share/locale/nl/LC_MESSAGES/kfmclient.mo -share/locale/nl/LC_MESSAGES/kfmexec.mo -share/locale/nl/LC_MESSAGES/kfontinst.mo -share/locale/nl/LC_MESSAGES/kformeditor.mo -share/locale/nl/LC_MESSAGES/kformviewer.mo -share/locale/nl/LC_MESSAGES/kfourtune.mo -share/locale/nl/LC_MESSAGES/kfract.mo -share/locale/nl/LC_MESSAGES/kghostview.mo -share/locale/nl/LC_MESSAGES/kglchess.mo -share/locale/nl/LC_MESSAGES/kgnuplot.mo -share/locale/nl/LC_MESSAGES/kgrapher.mo -share/locale/nl/LC_MESSAGES/khelpcenter.mo -share/locale/nl/LC_MESSAGES/khexedit.mo -share/locale/nl/LC_MESSAGES/khotkeys.mo -share/locale/nl/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/nl/LC_MESSAGES/kicker.mo -share/locale/nl/LC_MESSAGES/kiconedit.mo -share/locale/nl/LC_MESSAGES/kicq.mo -share/locale/nl/LC_MESSAGES/kikbd.mo -share/locale/nl/LC_MESSAGES/kim.mo -share/locale/nl/LC_MESSAGES/kio_audiocd.mo -share/locale/nl/LC_MESSAGES/kio_finger.mo -share/locale/nl/LC_MESSAGES/kio_floppy.mo -share/locale/nl/LC_MESSAGES/kio_help.mo -share/locale/nl/LC_MESSAGES/kio_imap4.mo -share/locale/nl/LC_MESSAGES/kio_lan.mo -share/locale/nl/LC_MESSAGES/kio_man.mo -share/locale/nl/LC_MESSAGES/kio_nfs.mo -share/locale/nl/LC_MESSAGES/kio_nntp.mo -share/locale/nl/LC_MESSAGES/kio_pop3.mo -share/locale/nl/LC_MESSAGES/kio_smb.mo -share/locale/nl/LC_MESSAGES/kio_smbro.mo -share/locale/nl/LC_MESSAGES/kit.mo -share/locale/nl/LC_MESSAGES/kjezz.mo -share/locale/nl/LC_MESSAGES/kjobviewer.mo -share/locale/nl/LC_MESSAGES/kjots.mo -share/locale/nl/LC_MESSAGES/kjumpingcube.mo -share/locale/nl/LC_MESSAGES/klaptopdaemon.mo -share/locale/nl/LC_MESSAGES/klegacyimport.mo -share/locale/nl/LC_MESSAGES/kless.mo -share/locale/nl/LC_MESSAGES/klines.mo -share/locale/nl/LC_MESSAGES/klipper.mo -share/locale/nl/LC_MESSAGES/kljettool.mo -share/locale/nl/LC_MESSAGES/klock.mo -share/locale/nl/LC_MESSAGES/klpq.mo -share/locale/nl/LC_MESSAGES/klprfax.mo -share/locale/nl/LC_MESSAGES/kmahjongg.mo -share/locale/nl/LC_MESSAGES/kmail.mo -share/locale/nl/LC_MESSAGES/kmailcvt.mo -share/locale/nl/LC_MESSAGES/kmake.mo -share/locale/nl/LC_MESSAGES/kmenuedit.mo -share/locale/nl/LC_MESSAGES/kmessage.mo -share/locale/nl/LC_MESSAGES/kmid.mo -share/locale/nl/LC_MESSAGES/kmidi.mo -share/locale/nl/LC_MESSAGES/kmines.mo -share/locale/nl/LC_MESSAGES/kminipagerapplet.mo -share/locale/nl/LC_MESSAGES/kmix.mo -share/locale/nl/LC_MESSAGES/kmms.mo -share/locale/nl/LC_MESSAGES/kmonop.mo -share/locale/nl/LC_MESSAGES/kmoon.mo -share/locale/nl/LC_MESSAGES/knetmgr.mo -share/locale/nl/LC_MESSAGES/knewsticker.mo -share/locale/nl/LC_MESSAGES/knode.mo -share/locale/nl/LC_MESSAGES/knotes.mo -share/locale/nl/LC_MESSAGES/knotify.mo -share/locale/nl/LC_MESSAGES/knu.mo -share/locale/nl/LC_MESSAGES/kodo.mo -share/locale/nl/LC_MESSAGES/kolourpicker.mo -share/locale/nl/LC_MESSAGES/konqueror.mo -share/locale/nl/LC_MESSAGES/konquest.mo -share/locale/nl/LC_MESSAGES/konsole.mo -share/locale/nl/LC_MESSAGES/konv.mo -share/locale/nl/LC_MESSAGES/kooka.mo -share/locale/nl/LC_MESSAGES/kopennap.mo -share/locale/nl/LC_MESSAGES/korganizer.mo -share/locale/nl/LC_MESSAGES/korn.mo -share/locale/nl/LC_MESSAGES/kp.mo -share/locale/nl/LC_MESSAGES/kpackage.mo -share/locale/nl/LC_MESSAGES/kpager.mo -share/locale/nl/LC_MESSAGES/kpaint.mo -share/locale/nl/LC_MESSAGES/kpartapp.mo -share/locale/nl/LC_MESSAGES/kpartsaver.mo -share/locale/nl/LC_MESSAGES/kpat.mo -share/locale/nl/LC_MESSAGES/kpersonalizer.mo -share/locale/nl/LC_MESSAGES/kphone.mo -share/locale/nl/LC_MESSAGES/kpilot.mo -share/locale/nl/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/nl/LC_MESSAGES/kpm.mo -share/locale/nl/LC_MESSAGES/kpoker.mo -share/locale/nl/LC_MESSAGES/kpovmodeler.mo -share/locale/nl/LC_MESSAGES/kppp.mo -share/locale/nl/LC_MESSAGES/kppplogview.mo -share/locale/nl/LC_MESSAGES/kprinter.mo -share/locale/nl/LC_MESSAGES/kreadconfig.mo -share/locale/nl/LC_MESSAGES/kreversi.mo -share/locale/nl/LC_MESSAGES/krn.mo -share/locale/nl/LC_MESSAGES/kruler.mo -share/locale/nl/LC_MESSAGES/krunapplet.mo -share/locale/nl/LC_MESSAGES/ksame.mo -share/locale/nl/LC_MESSAGES/kscd.mo -share/locale/nl/LC_MESSAGES/kscoreapplet.mo -share/locale/nl/LC_MESSAGES/kshisen.mo -share/locale/nl/LC_MESSAGES/ksirc.mo -share/locale/nl/LC_MESSAGES/ksirtet.mo -share/locale/nl/LC_MESSAGES/ksmiletris.mo -share/locale/nl/LC_MESSAGES/ksmserver.mo -share/locale/nl/LC_MESSAGES/ksnake.mo -share/locale/nl/LC_MESSAGES/ksnapshot.mo -share/locale/nl/LC_MESSAGES/ksokoban.mo -share/locale/nl/LC_MESSAGES/kspaceduel.mo -share/locale/nl/LC_MESSAGES/ksplash.mo -share/locale/nl/LC_MESSAGES/kstart.mo -share/locale/nl/LC_MESSAGES/kstartperf.mo -share/locale/nl/LC_MESSAGES/kstockticker.mo -share/locale/nl/LC_MESSAGES/ksysctrl.mo -share/locale/nl/LC_MESSAGES/ksysguard.mo -share/locale/nl/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/nl/LC_MESSAGES/ksystrayproxy.mo -share/locale/nl/LC_MESSAGES/ksysv.mo -share/locale/nl/LC_MESSAGES/ktables.mo -share/locale/nl/LC_MESSAGES/ktalk.mo -share/locale/nl/LC_MESSAGES/ktalkd.mo -share/locale/nl/LC_MESSAGES/ktaskbarapplet.mo -share/locale/nl/LC_MESSAGES/kteatime.mo -share/locale/nl/LC_MESSAGES/ktimemon.mo -share/locale/nl/LC_MESSAGES/ktimer.mo -share/locale/nl/LC_MESSAGES/ktip.mo -share/locale/nl/LC_MESSAGES/ktouch.mo -share/locale/nl/LC_MESSAGES/ktron.mo -share/locale/nl/LC_MESSAGES/ktuberling.mo -share/locale/nl/LC_MESSAGES/ktux.mo -share/locale/nl/LC_MESSAGES/kuser.mo -share/locale/nl/LC_MESSAGES/kvidmode.mo -share/locale/nl/LC_MESSAGES/kview.mo -share/locale/nl/LC_MESSAGES/kviewshell.mo -share/locale/nl/LC_MESSAGES/kwebstat.mo -share/locale/nl/LC_MESSAGES/kwin.mo -share/locale/nl/LC_MESSAGES/kwin4.mo -share/locale/nl/LC_MESSAGES/kworldclock.mo -share/locale/nl/LC_MESSAGES/kwuftpd.mo -share/locale/nl/LC_MESSAGES/kxkb.mo -share/locale/nl/LC_MESSAGES/kxmlrpcd.mo -share/locale/nl/LC_MESSAGES/kxsconfig.mo -share/locale/nl/LC_MESSAGES/libkdegames.mo -share/locale/nl/LC_MESSAGES/libkdenetwork.mo -share/locale/nl/LC_MESSAGES/libkonq.mo -share/locale/nl/LC_MESSAGES/libkscan.mo -share/locale/nl/LC_MESSAGES/libkscreensaver.mo -share/locale/nl/LC_MESSAGES/libkwindefault_config.mo -share/locale/nl/LC_MESSAGES/libkwinicewm_config.mo -share/locale/nl/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/nl/LC_MESSAGES/libkwinquartz_config.mo -share/locale/nl/LC_MESSAGES/libtaskbar.mo -share/locale/nl/LC_MESSAGES/libtaskmanager.mo -share/locale/nl/LC_MESSAGES/lskat.mo -share/locale/nl/LC_MESSAGES/mediacontrol.mo -share/locale/nl/LC_MESSAGES/multiplayers.mo -share/locale/nl/LC_MESSAGES/naughtyapplet.mo -share/locale/nl/LC_MESSAGES/noatun.mo -share/locale/nl/LC_MESSAGES/nsplugin.mo -share/locale/nl/LC_MESSAGES/passwords.mo -share/locale/nl/LC_MESSAGES/ppdtranslations.mo -share/locale/nl/LC_MESSAGES/pws.mo -share/locale/nl/LC_MESSAGES/quicklauncher.mo -share/locale/nl/LC_MESSAGES/secpolicy.mo -share/locale/nl/LC_MESSAGES/spy.mo -share/locale/nl/LC_MESSAGES/taskbarextension.mo -share/locale/nl/LC_MESSAGES/twister.mo -share/locale/nl/LC_MESSAGES/uachangerplugin.mo -share/locale/nl/LC_MESSAGES/validatorsplugin.mo -share/locale/nl/LC_MESSAGES/webarchiver.mo -share/locale/nl/charset -share/locale/nl/entry.desktop -share/locale/nl/flag.png -share/locale/no/LC_MESSAGES/abbrowser.mo -share/locale/no/LC_MESSAGES/aktion.mo -share/locale/no/LC_MESSAGES/amor.mo -share/locale/no/LC_MESSAGES/appletproxy.mo -share/locale/no/LC_MESSAGES/ark.mo -share/locale/no/LC_MESSAGES/artsbuilder.mo -share/locale/no/LC_MESSAGES/artscontrol.mo -share/locale/no/LC_MESSAGES/babelfish.mo -share/locale/no/LC_MESSAGES/caitoo.mo -share/locale/no/LC_MESSAGES/childpanelextension.mo -share/locale/no/LC_MESSAGES/clockapplet.mo -share/locale/no/LC_MESSAGES/colfind.mo -share/locale/no/LC_MESSAGES/columbo.mo -share/locale/no/LC_MESSAGES/cookbook.mo -share/locale/no/LC_MESSAGES/cupsdconf.mo -share/locale/no/LC_MESSAGES/desktop.mo -share/locale/no/LC_MESSAGES/devcenter.mo -share/locale/no/LC_MESSAGES/dirfilterplugin.mo -share/locale/no/LC_MESSAGES/domtreeviewer.mo -share/locale/no/LC_MESSAGES/drkonqi.mo -share/locale/no/LC_MESSAGES/empath.mo -share/locale/no/LC_MESSAGES/extensionproxy.mo -share/locale/no/LC_MESSAGES/filetypes.mo -share/locale/no/LC_MESSAGES/gideon.mo -share/locale/no/LC_MESSAGES/gofai.mo -share/locale/no/LC_MESSAGES/htmlsearch.mo -share/locale/no/LC_MESSAGES/imgalleryplugin.mo -share/locale/no/LC_MESSAGES/kab.mo -share/locale/no/LC_MESSAGES/kabalone.mo -share/locale/no/LC_MESSAGES/kaboodle.mo -share/locale/no/LC_MESSAGES/kaccess.mo -share/locale/no/LC_MESSAGES/kaddressbook.mo -share/locale/no/LC_MESSAGES/kafka.mo -share/locale/no/LC_MESSAGES/kandy.mo -share/locale/no/LC_MESSAGES/kappfinder.mo -share/locale/no/LC_MESSAGES/karchie.mo -share/locale/no/LC_MESSAGES/karchiver.mo -share/locale/no/LC_MESSAGES/karm.mo -share/locale/no/LC_MESSAGES/kasbarextension.mo -share/locale/no/LC_MESSAGES/kasteroids.mo -share/locale/no/LC_MESSAGES/katalog.mo -share/locale/no/LC_MESSAGES/kate.mo -share/locale/no/LC_MESSAGES/katehtmltools.mo -share/locale/no/LC_MESSAGES/kateinsertcommand.mo -share/locale/no/LC_MESSAGES/katomic.mo -share/locale/no/LC_MESSAGES/kautorun.mo -share/locale/no/LC_MESSAGES/kbabel.mo -share/locale/no/LC_MESSAGES/kbackgammon.mo -share/locale/no/LC_MESSAGES/kbattleship.mo -share/locale/no/LC_MESSAGES/kbiff.mo -share/locale/no/LC_MESSAGES/kblackbox.mo -share/locale/no/LC_MESSAGES/kbugbuster.mo -share/locale/no/LC_MESSAGES/kcalc.mo -share/locale/no/LC_MESSAGES/kcharselect.mo -share/locale/no/LC_MESSAGES/kcharselectapplet.mo -share/locale/no/LC_MESSAGES/kcm_scsimanager.mo -share/locale/no/LC_MESSAGES/kcmaccess.mo -share/locale/no/LC_MESSAGES/kcmail.mo -share/locale/no/LC_MESSAGES/kcmarts.mo -share/locale/no/LC_MESSAGES/kcmaudiocd.mo -share/locale/no/LC_MESSAGES/kcmbackground.mo -share/locale/no/LC_MESSAGES/kcmbell.mo -share/locale/no/LC_MESSAGES/kcmbind.mo -share/locale/no/LC_MESSAGES/kcmcolors.mo -share/locale/no/LC_MESSAGES/kcmcrypto.mo -share/locale/no/LC_MESSAGES/kcmcss.mo -share/locale/no/LC_MESSAGES/kcmdhcpd.mo -share/locale/no/LC_MESSAGES/kcmemail.mo -share/locale/no/LC_MESSAGES/kcmenergy.mo -share/locale/no/LC_MESSAGES/kcmfonts.mo -share/locale/no/LC_MESSAGES/kcmgofai.mo -share/locale/no/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/no/LC_MESSAGES/kcmicons.mo -share/locale/no/LC_MESSAGES/kcminfo.mo -share/locale/no/LC_MESSAGES/kcminput.mo -share/locale/no/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/no/LC_MESSAGES/kcmiwatcher.mo -share/locale/no/LC_MESSAGES/kcmkamera.mo -share/locale/no/LC_MESSAGES/kcmkclock.mo -share/locale/no/LC_MESSAGES/kcmkdb.mo -share/locale/no/LC_MESSAGES/kcmkeys.mo -share/locale/no/LC_MESSAGES/kcmkicker.mo -share/locale/no/LC_MESSAGES/kcmkio.mo -share/locale/no/LC_MESSAGES/kcmkmix.mo -share/locale/no/LC_MESSAGES/kcmkonq.mo -share/locale/no/LC_MESSAGES/kcmkonqhtml.mo -share/locale/no/LC_MESSAGES/kcmkonsole.mo -share/locale/no/LC_MESSAGES/kcmktalkd.mo -share/locale/no/LC_MESSAGES/kcmkurifilt.mo -share/locale/no/LC_MESSAGES/kcmkwindecoration.mo -share/locale/no/LC_MESSAGES/kcmkwintheme.mo -share/locale/no/LC_MESSAGES/kcmkwm.mo -share/locale/no/LC_MESSAGES/kcmlanbrowser.mo -share/locale/no/LC_MESSAGES/kcmlaptop.mo -share/locale/no/LC_MESSAGES/kcmlaunch.mo -share/locale/no/LC_MESSAGES/kcmlayout.mo -share/locale/no/LC_MESSAGES/kcmlilo.mo -share/locale/no/LC_MESSAGES/kcmlinuz.mo -share/locale/no/LC_MESSAGES/kcmlocale.mo -share/locale/no/LC_MESSAGES/kcmmediacontrol.mo -share/locale/no/LC_MESSAGES/kcmmidi.mo -share/locale/no/LC_MESSAGES/kcmnapster.mo -share/locale/no/LC_MESSAGES/kcmnewsticker.mo -share/locale/no/LC_MESSAGES/kcmnotify.mo -share/locale/no/LC_MESSAGES/kcmodbc.mo -share/locale/no/LC_MESSAGES/kcmsamba.mo -share/locale/no/LC_MESSAGES/kcmscreensaver.mo -share/locale/no/LC_MESSAGES/kcmsmserver.mo -share/locale/no/LC_MESSAGES/kcmsocks.mo -share/locale/no/LC_MESSAGES/kcmspellchecking.mo -share/locale/no/LC_MESSAGES/kcmstyle.mo -share/locale/no/LC_MESSAGES/kcmtaskbar.mo -share/locale/no/LC_MESSAGES/kcmthemes.mo -share/locale/no/LC_MESSAGES/kcmusb.mo -share/locale/no/LC_MESSAGES/kcmuserenv.mo -share/locale/no/LC_MESSAGES/kcoloredit.mo -share/locale/no/LC_MESSAGES/kcontrol.mo -share/locale/no/LC_MESSAGES/kcron.mo -share/locale/no/LC_MESSAGES/kdao.mo -share/locale/no/LC_MESSAGES/kdat.mo -share/locale/no/LC_MESSAGES/kdbbrowser.mo -share/locale/no/LC_MESSAGES/kdcop.mo -share/locale/no/LC_MESSAGES/kdebugdialog.mo -share/locale/no/LC_MESSAGES/kdelibs.mo -share/locale/no/LC_MESSAGES/kdepasswd.mo -share/locale/no/LC_MESSAGES/kdeprintfax.mo -share/locale/no/LC_MESSAGES/kdesktop.mo -share/locale/no/LC_MESSAGES/kdessh.mo -share/locale/no/LC_MESSAGES/kdestdifacedemo.mo -share/locale/no/LC_MESSAGES/kdesu.mo -share/locale/no/LC_MESSAGES/kdesud.mo -share/locale/no/LC_MESSAGES/kdevelop.mo -share/locale/no/LC_MESSAGES/kdevtipofday.mo -share/locale/no/LC_MESSAGES/kdf.mo -share/locale/no/LC_MESSAGES/kdict.mo -share/locale/no/LC_MESSAGES/kdictapplet.mo -share/locale/no/LC_MESSAGES/kdiff.mo -share/locale/no/LC_MESSAGES/kdmchooser.mo -share/locale/no/LC_MESSAGES/kdmconfig.mo -share/locale/no/LC_MESSAGES/kdmgreet.mo -share/locale/no/LC_MESSAGES/kdvi.mo -share/locale/no/LC_MESSAGES/kedit.mo -share/locale/no/LC_MESSAGES/keystone.mo -share/locale/no/LC_MESSAGES/kfax.mo -share/locale/no/LC_MESSAGES/kfifteenapplet.mo -share/locale/no/LC_MESSAGES/kfind.mo -share/locale/no/LC_MESSAGES/kfindpart.mo -share/locale/no/LC_MESSAGES/kfinger.mo -share/locale/no/LC_MESSAGES/kfloppy.mo -share/locale/no/LC_MESSAGES/kfmclient.mo -share/locale/no/LC_MESSAGES/kfmexec.mo -share/locale/no/LC_MESSAGES/kfontinst.mo -share/locale/no/LC_MESSAGES/kformeditor.mo -share/locale/no/LC_MESSAGES/kformviewer.mo -share/locale/no/LC_MESSAGES/kfortune.mo -share/locale/no/LC_MESSAGES/kfourtune.mo -share/locale/no/LC_MESSAGES/kfract.mo -share/locale/no/LC_MESSAGES/kghostview.mo -share/locale/no/LC_MESSAGES/kglchess.mo -share/locale/no/LC_MESSAGES/kgnuplot.mo -share/locale/no/LC_MESSAGES/kgrapher.mo -share/locale/no/LC_MESSAGES/khelpcenter.mo -share/locale/no/LC_MESSAGES/khexedit.mo -share/locale/no/LC_MESSAGES/khotkeys.mo -share/locale/no/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/no/LC_MESSAGES/kicker.mo -share/locale/no/LC_MESSAGES/kiconedit.mo -share/locale/no/LC_MESSAGES/kicq.mo -share/locale/no/LC_MESSAGES/kikbd.mo -share/locale/no/LC_MESSAGES/kim.mo -share/locale/no/LC_MESSAGES/kio_audiocd.mo -share/locale/no/LC_MESSAGES/kio_finger.mo -share/locale/no/LC_MESSAGES/kio_floppy.mo -share/locale/no/LC_MESSAGES/kio_help.mo -share/locale/no/LC_MESSAGES/kio_imap4.mo -share/locale/no/LC_MESSAGES/kio_lan.mo -share/locale/no/LC_MESSAGES/kio_man.mo -share/locale/no/LC_MESSAGES/kio_nfs.mo -share/locale/no/LC_MESSAGES/kio_nntp.mo -share/locale/no/LC_MESSAGES/kio_pop3.mo -share/locale/no/LC_MESSAGES/kio_smb.mo -share/locale/no/LC_MESSAGES/kio_smbro.mo -share/locale/no/LC_MESSAGES/kit.mo -share/locale/no/LC_MESSAGES/kjezz.mo -share/locale/no/LC_MESSAGES/kjobviewer.mo -share/locale/no/LC_MESSAGES/kjots.mo -share/locale/no/LC_MESSAGES/kjumpingcube.mo -share/locale/no/LC_MESSAGES/klaptopdaemon.mo -share/locale/no/LC_MESSAGES/klegacyimport.mo -share/locale/no/LC_MESSAGES/kless.mo -share/locale/no/LC_MESSAGES/klines.mo -share/locale/no/LC_MESSAGES/klipper.mo -share/locale/no/LC_MESSAGES/kljettool.mo -share/locale/no/LC_MESSAGES/klock.mo -share/locale/no/LC_MESSAGES/klpq.mo -share/locale/no/LC_MESSAGES/klprfax.mo -share/locale/no/LC_MESSAGES/kmahjongg.mo -share/locale/no/LC_MESSAGES/kmail.mo -share/locale/no/LC_MESSAGES/kmailcvt.mo -share/locale/no/LC_MESSAGES/kmake.mo -share/locale/no/LC_MESSAGES/kmenuedit.mo -share/locale/no/LC_MESSAGES/kmessage.mo -share/locale/no/LC_MESSAGES/kmid.mo -share/locale/no/LC_MESSAGES/kmidi.mo -share/locale/no/LC_MESSAGES/kmines.mo -share/locale/no/LC_MESSAGES/kminipagerapplet.mo -share/locale/no/LC_MESSAGES/kmix.mo -share/locale/no/LC_MESSAGES/kmms.mo -share/locale/no/LC_MESSAGES/kmonop.mo -share/locale/no/LC_MESSAGES/kmoon.mo -share/locale/no/LC_MESSAGES/knetmgr.mo -share/locale/no/LC_MESSAGES/knewsticker.mo -share/locale/no/LC_MESSAGES/knode.mo -share/locale/no/LC_MESSAGES/knotes.mo -share/locale/no/LC_MESSAGES/knotify.mo -share/locale/no/LC_MESSAGES/knu.mo -share/locale/no/LC_MESSAGES/kodo.mo -share/locale/no/LC_MESSAGES/kolourpicker.mo -share/locale/no/LC_MESSAGES/konqueror.mo -share/locale/no/LC_MESSAGES/konquest.mo -share/locale/no/LC_MESSAGES/konsole.mo -share/locale/no/LC_MESSAGES/konv.mo -share/locale/no/LC_MESSAGES/kooka.mo -share/locale/no/LC_MESSAGES/kopennap.mo -share/locale/no/LC_MESSAGES/korganizer.mo -share/locale/no/LC_MESSAGES/korn.mo -share/locale/no/LC_MESSAGES/kp.mo -share/locale/no/LC_MESSAGES/kpackage.mo -share/locale/no/LC_MESSAGES/kpager.mo -share/locale/no/LC_MESSAGES/kpaint.mo -share/locale/no/LC_MESSAGES/kpartapp.mo -share/locale/no/LC_MESSAGES/kpartsaver.mo -share/locale/no/LC_MESSAGES/kpat.mo -share/locale/no/LC_MESSAGES/kpersonalizer.mo -share/locale/no/LC_MESSAGES/kphone.mo -share/locale/no/LC_MESSAGES/kpilot.mo -share/locale/no/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/no/LC_MESSAGES/kpm.mo -share/locale/no/LC_MESSAGES/kpoker.mo -share/locale/no/LC_MESSAGES/kpovmodeler.mo -share/locale/no/LC_MESSAGES/kppp.mo -share/locale/no/LC_MESSAGES/kppplogview.mo -share/locale/no/LC_MESSAGES/kprinter.mo -share/locale/no/LC_MESSAGES/kreadconfig.mo -share/locale/no/LC_MESSAGES/kreversi.mo -share/locale/no/LC_MESSAGES/krn.mo -share/locale/no/LC_MESSAGES/kruler.mo -share/locale/no/LC_MESSAGES/krunapplet.mo -share/locale/no/LC_MESSAGES/ksame.mo -share/locale/no/LC_MESSAGES/kscd.mo -share/locale/no/LC_MESSAGES/kscoreapplet.mo -share/locale/no/LC_MESSAGES/kshisen.mo -share/locale/no/LC_MESSAGES/ksirc.mo -share/locale/no/LC_MESSAGES/ksirtet.mo -share/locale/no/LC_MESSAGES/ksmiletris.mo -share/locale/no/LC_MESSAGES/ksmserver.mo -share/locale/no/LC_MESSAGES/ksnake.mo -share/locale/no/LC_MESSAGES/ksnapshot.mo -share/locale/no/LC_MESSAGES/ksokoban.mo -share/locale/no/LC_MESSAGES/kspaceduel.mo -share/locale/no/LC_MESSAGES/ksplash.mo -share/locale/no/LC_MESSAGES/kstart.mo -share/locale/no/LC_MESSAGES/kstartperf.mo -share/locale/no/LC_MESSAGES/kstockticker.mo -share/locale/no/LC_MESSAGES/ksysctrl.mo -share/locale/no/LC_MESSAGES/ksysguard.mo -share/locale/no/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/no/LC_MESSAGES/ksystrayproxy.mo -share/locale/no/LC_MESSAGES/ksysv.mo -share/locale/no/LC_MESSAGES/ktables.mo -share/locale/no/LC_MESSAGES/ktalk.mo -share/locale/no/LC_MESSAGES/ktalkd.mo -share/locale/no/LC_MESSAGES/ktaskbarapplet.mo -share/locale/no/LC_MESSAGES/kteatime.mo -share/locale/no/LC_MESSAGES/ktimemon.mo -share/locale/no/LC_MESSAGES/ktimer.mo -share/locale/no/LC_MESSAGES/ktip.mo -share/locale/no/LC_MESSAGES/ktouch.mo -share/locale/no/LC_MESSAGES/ktron.mo -share/locale/no/LC_MESSAGES/ktuberling.mo -share/locale/no/LC_MESSAGES/ktux.mo -share/locale/no/LC_MESSAGES/kuser.mo -share/locale/no/LC_MESSAGES/kvidmode.mo -share/locale/no/LC_MESSAGES/kview.mo -share/locale/no/LC_MESSAGES/kviewshell.mo -share/locale/no/LC_MESSAGES/kwebstat.mo -share/locale/no/LC_MESSAGES/kwin.mo -share/locale/no/LC_MESSAGES/kwin4.mo -share/locale/no/LC_MESSAGES/kwintv.mo -share/locale/no/LC_MESSAGES/kwiz.mo -share/locale/no/LC_MESSAGES/kworldclock.mo -share/locale/no/LC_MESSAGES/kwuftpd.mo -share/locale/no/LC_MESSAGES/kxkb.mo -share/locale/no/LC_MESSAGES/kxmlrpcd.mo -share/locale/no/LC_MESSAGES/kxsconfig.mo -share/locale/no/LC_MESSAGES/libkdegames.mo -share/locale/no/LC_MESSAGES/libkdenetwork.mo -share/locale/no/LC_MESSAGES/libkonq.mo -share/locale/no/LC_MESSAGES/libkscan.mo -share/locale/no/LC_MESSAGES/libkscreensaver.mo -share/locale/no/LC_MESSAGES/libkwindefault_config.mo -share/locale/no/LC_MESSAGES/libkwinicewm_config.mo -share/locale/no/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/no/LC_MESSAGES/libkwinquartz_config.mo -share/locale/no/LC_MESSAGES/libtaskbar.mo -share/locale/no/LC_MESSAGES/libtaskmanager.mo -share/locale/no/LC_MESSAGES/lskat.mo -share/locale/no/LC_MESSAGES/mediacontrol.mo -share/locale/no/LC_MESSAGES/multiplayers.mo -share/locale/no/LC_MESSAGES/naughtyapplet.mo -share/locale/no/LC_MESSAGES/noatun.mo -share/locale/no/LC_MESSAGES/nsplugin.mo -share/locale/no/LC_MESSAGES/passwords.mo -share/locale/no/LC_MESSAGES/ppdtranslations.mo -share/locale/no/LC_MESSAGES/pws.mo -share/locale/no/LC_MESSAGES/quicklauncher.mo -share/locale/no/LC_MESSAGES/secpolicy.mo -share/locale/no/LC_MESSAGES/spy.mo -share/locale/no/LC_MESSAGES/taskbarextension.mo -share/locale/no/LC_MESSAGES/twister.mo -share/locale/no/LC_MESSAGES/uachangerplugin.mo -share/locale/no/LC_MESSAGES/validatorsplugin.mo -share/locale/no/LC_MESSAGES/webarchiver.mo -share/locale/no/README -share/locale/no/charset -share/locale/no/entry.desktop -share/locale/no/flag.png -share/locale/no_NY/LC_MESSAGES/aktion.mo -share/locale/no_NY/LC_MESSAGES/amor.mo -share/locale/no_NY/LC_MESSAGES/appletproxy.mo -share/locale/no_NY/LC_MESSAGES/ark.mo -share/locale/no_NY/LC_MESSAGES/artsbuilder.mo -share/locale/no_NY/LC_MESSAGES/artscontrol.mo -share/locale/no_NY/LC_MESSAGES/babelfish.mo -share/locale/no_NY/LC_MESSAGES/caitoo.mo -share/locale/no_NY/LC_MESSAGES/childpanelextension.mo -share/locale/no_NY/LC_MESSAGES/clockapplet.mo -share/locale/no_NY/LC_MESSAGES/colfind.mo -share/locale/no_NY/LC_MESSAGES/columbo.mo -share/locale/no_NY/LC_MESSAGES/cupsdconf.mo -share/locale/no_NY/LC_MESSAGES/desktop.mo -share/locale/no_NY/LC_MESSAGES/dirfilterplugin.mo -share/locale/no_NY/LC_MESSAGES/domtreeviewer.mo -share/locale/no_NY/LC_MESSAGES/drkonqi.mo -share/locale/no_NY/LC_MESSAGES/empath.mo -share/locale/no_NY/LC_MESSAGES/extensionproxy.mo -share/locale/no_NY/LC_MESSAGES/filetypes.mo -share/locale/no_NY/LC_MESSAGES/gofai.mo -share/locale/no_NY/LC_MESSAGES/htmlsearch.mo -share/locale/no_NY/LC_MESSAGES/imgalleryplugin.mo -share/locale/no_NY/LC_MESSAGES/kab.mo -share/locale/no_NY/LC_MESSAGES/kabalone.mo -share/locale/no_NY/LC_MESSAGES/kaccess.mo -share/locale/no_NY/LC_MESSAGES/kaddressbook.mo -share/locale/no_NY/LC_MESSAGES/kandy.mo -share/locale/no_NY/LC_MESSAGES/kappfinder.mo -share/locale/no_NY/LC_MESSAGES/karchie.mo -share/locale/no_NY/LC_MESSAGES/karm.mo -share/locale/no_NY/LC_MESSAGES/kasbarextension.mo -share/locale/no_NY/LC_MESSAGES/kasteroids.mo -share/locale/no_NY/LC_MESSAGES/katalog.mo -share/locale/no_NY/LC_MESSAGES/kate.mo -share/locale/no_NY/LC_MESSAGES/katehtmltools.mo -share/locale/no_NY/LC_MESSAGES/kateinsertcommand.mo -share/locale/no_NY/LC_MESSAGES/katomic.mo -share/locale/no_NY/LC_MESSAGES/kautorun.mo -share/locale/no_NY/LC_MESSAGES/kbabel.mo -share/locale/no_NY/LC_MESSAGES/kbackgammon.mo -share/locale/no_NY/LC_MESSAGES/kbattleship.mo -share/locale/no_NY/LC_MESSAGES/kbiff.mo -share/locale/no_NY/LC_MESSAGES/kblackbox.mo -share/locale/no_NY/LC_MESSAGES/kcalc.mo -share/locale/no_NY/LC_MESSAGES/kcharselect.mo -share/locale/no_NY/LC_MESSAGES/kcharselectapplet.mo -share/locale/no_NY/LC_MESSAGES/kcmaccess.mo -share/locale/no_NY/LC_MESSAGES/kcmail.mo -share/locale/no_NY/LC_MESSAGES/kcmarts.mo -share/locale/no_NY/LC_MESSAGES/kcmaudiocd.mo -share/locale/no_NY/LC_MESSAGES/kcmbackground.mo -share/locale/no_NY/LC_MESSAGES/kcmbell.mo -share/locale/no_NY/LC_MESSAGES/kcmcolors.mo -share/locale/no_NY/LC_MESSAGES/kcmcrypto.mo -share/locale/no_NY/LC_MESSAGES/kcmcss.mo -share/locale/no_NY/LC_MESSAGES/kcmemail.mo -share/locale/no_NY/LC_MESSAGES/kcmenergy.mo -share/locale/no_NY/LC_MESSAGES/kcmfonts.mo -share/locale/no_NY/LC_MESSAGES/kcmgofai.mo -share/locale/no_NY/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/no_NY/LC_MESSAGES/kcmicons.mo -share/locale/no_NY/LC_MESSAGES/kcminfo.mo -share/locale/no_NY/LC_MESSAGES/kcminput.mo -share/locale/no_NY/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/no_NY/LC_MESSAGES/kcmkamera.mo -share/locale/no_NY/LC_MESSAGES/kcmkclock.mo -share/locale/no_NY/LC_MESSAGES/kcmkdb.mo -share/locale/no_NY/LC_MESSAGES/kcmkeys.mo -share/locale/no_NY/LC_MESSAGES/kcmkicker.mo -share/locale/no_NY/LC_MESSAGES/kcmkio.mo -share/locale/no_NY/LC_MESSAGES/kcmkmix.mo -share/locale/no_NY/LC_MESSAGES/kcmkonq.mo -share/locale/no_NY/LC_MESSAGES/kcmkonqhtml.mo -share/locale/no_NY/LC_MESSAGES/kcmkonsole.mo -share/locale/no_NY/LC_MESSAGES/kcmktalkd.mo -share/locale/no_NY/LC_MESSAGES/kcmkurifilt.mo -share/locale/no_NY/LC_MESSAGES/kcmkwindecoration.mo -share/locale/no_NY/LC_MESSAGES/kcmkwintheme.mo -share/locale/no_NY/LC_MESSAGES/kcmkwm.mo -share/locale/no_NY/LC_MESSAGES/kcmlanbrowser.mo -share/locale/no_NY/LC_MESSAGES/kcmlaptop.mo -share/locale/no_NY/LC_MESSAGES/kcmlaunch.mo -share/locale/no_NY/LC_MESSAGES/kcmlayout.mo -share/locale/no_NY/LC_MESSAGES/kcmlilo.mo -share/locale/no_NY/LC_MESSAGES/kcmlinuz.mo -share/locale/no_NY/LC_MESSAGES/kcmlocale.mo -share/locale/no_NY/LC_MESSAGES/kcmmidi.mo -share/locale/no_NY/LC_MESSAGES/kcmnewsticker.mo -share/locale/no_NY/LC_MESSAGES/kcmnotify.mo -share/locale/no_NY/LC_MESSAGES/kcmsamba.mo -share/locale/no_NY/LC_MESSAGES/kcmscreensaver.mo -share/locale/no_NY/LC_MESSAGES/kcmsmserver.mo -share/locale/no_NY/LC_MESSAGES/kcmsocks.mo -share/locale/no_NY/LC_MESSAGES/kcmspellchecking.mo -share/locale/no_NY/LC_MESSAGES/kcmstyle.mo -share/locale/no_NY/LC_MESSAGES/kcmtaskbar.mo -share/locale/no_NY/LC_MESSAGES/kcmthemes.mo -share/locale/no_NY/LC_MESSAGES/kcmusb.mo -share/locale/no_NY/LC_MESSAGES/kcoloredit.mo -share/locale/no_NY/LC_MESSAGES/kcontrol.mo -share/locale/no_NY/LC_MESSAGES/kcron.mo -share/locale/no_NY/LC_MESSAGES/kdcop.mo -share/locale/no_NY/LC_MESSAGES/kdebugdialog.mo -share/locale/no_NY/LC_MESSAGES/kdelibs.mo -share/locale/no_NY/LC_MESSAGES/kdepasswd.mo -share/locale/no_NY/LC_MESSAGES/kdeprintfax.mo -share/locale/no_NY/LC_MESSAGES/kdesktop.mo -share/locale/no_NY/LC_MESSAGES/kdessh.mo -share/locale/no_NY/LC_MESSAGES/kdesu.mo -share/locale/no_NY/LC_MESSAGES/kdesud.mo -share/locale/no_NY/LC_MESSAGES/kdevelop.mo -share/locale/no_NY/LC_MESSAGES/kdevtipofday.mo -share/locale/no_NY/LC_MESSAGES/kdf.mo -share/locale/no_NY/LC_MESSAGES/kdict.mo -share/locale/no_NY/LC_MESSAGES/kdictapplet.mo -share/locale/no_NY/LC_MESSAGES/kdmchooser.mo -share/locale/no_NY/LC_MESSAGES/kdmconfig.mo -share/locale/no_NY/LC_MESSAGES/kdmgreet.mo -share/locale/no_NY/LC_MESSAGES/kdvi.mo -share/locale/no_NY/LC_MESSAGES/kedit.mo -share/locale/no_NY/LC_MESSAGES/keystone.mo -share/locale/no_NY/LC_MESSAGES/kfax.mo -share/locale/no_NY/LC_MESSAGES/kfifteenapplet.mo -share/locale/no_NY/LC_MESSAGES/kfind.mo -share/locale/no_NY/LC_MESSAGES/kfindpart.mo -share/locale/no_NY/LC_MESSAGES/kfinger.mo -share/locale/no_NY/LC_MESSAGES/kfloppy.mo -share/locale/no_NY/LC_MESSAGES/kfmclient.mo -share/locale/no_NY/LC_MESSAGES/kfmexec.mo -share/locale/no_NY/LC_MESSAGES/kformeditor.mo -share/locale/no_NY/LC_MESSAGES/kformviewer.mo -share/locale/no_NY/LC_MESSAGES/kfract.mo -share/locale/no_NY/LC_MESSAGES/kghostview.mo -share/locale/no_NY/LC_MESSAGES/kglchess.mo -share/locale/no_NY/LC_MESSAGES/kgrapher.mo -share/locale/no_NY/LC_MESSAGES/khelpcenter.mo -share/locale/no_NY/LC_MESSAGES/khexedit.mo -share/locale/no_NY/LC_MESSAGES/khotkeys.mo -share/locale/no_NY/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/no_NY/LC_MESSAGES/kicker.mo -share/locale/no_NY/LC_MESSAGES/kiconedit.mo -share/locale/no_NY/LC_MESSAGES/kikbd.mo -share/locale/no_NY/LC_MESSAGES/kio_audiocd.mo -share/locale/no_NY/LC_MESSAGES/kio_finger.mo -share/locale/no_NY/LC_MESSAGES/kio_floppy.mo -share/locale/no_NY/LC_MESSAGES/kio_help.mo -share/locale/no_NY/LC_MESSAGES/kio_imap4.mo -share/locale/no_NY/LC_MESSAGES/kio_lan.mo -share/locale/no_NY/LC_MESSAGES/kio_man.mo -share/locale/no_NY/LC_MESSAGES/kio_nfs.mo -share/locale/no_NY/LC_MESSAGES/kio_nntp.mo -share/locale/no_NY/LC_MESSAGES/kio_pop3.mo -share/locale/no_NY/LC_MESSAGES/kio_smb.mo -share/locale/no_NY/LC_MESSAGES/kio_smbro.mo -share/locale/no_NY/LC_MESSAGES/kit.mo -share/locale/no_NY/LC_MESSAGES/kjezz.mo -share/locale/no_NY/LC_MESSAGES/kjobviewer.mo -share/locale/no_NY/LC_MESSAGES/kjots.mo -share/locale/no_NY/LC_MESSAGES/kjumpingcube.mo -share/locale/no_NY/LC_MESSAGES/klaptopdaemon.mo -share/locale/no_NY/LC_MESSAGES/klegacyimport.mo -share/locale/no_NY/LC_MESSAGES/kless.mo -share/locale/no_NY/LC_MESSAGES/klines.mo -share/locale/no_NY/LC_MESSAGES/klipper.mo -share/locale/no_NY/LC_MESSAGES/kljettool.mo -share/locale/no_NY/LC_MESSAGES/klock.mo -share/locale/no_NY/LC_MESSAGES/klpq.mo -share/locale/no_NY/LC_MESSAGES/klprfax.mo -share/locale/no_NY/LC_MESSAGES/kmahjongg.mo -share/locale/no_NY/LC_MESSAGES/kmail.mo -share/locale/no_NY/LC_MESSAGES/kmailcvt.mo -share/locale/no_NY/LC_MESSAGES/kmenuedit.mo -share/locale/no_NY/LC_MESSAGES/kmid.mo -share/locale/no_NY/LC_MESSAGES/kmidi.mo -share/locale/no_NY/LC_MESSAGES/kmines.mo -share/locale/no_NY/LC_MESSAGES/kminipagerapplet.mo -share/locale/no_NY/LC_MESSAGES/kmix.mo -share/locale/no_NY/LC_MESSAGES/kmoon.mo -share/locale/no_NY/LC_MESSAGES/knewsticker.mo -share/locale/no_NY/LC_MESSAGES/knode.mo -share/locale/no_NY/LC_MESSAGES/knotes.mo -share/locale/no_NY/LC_MESSAGES/knotify.mo -share/locale/no_NY/LC_MESSAGES/knu.mo -share/locale/no_NY/LC_MESSAGES/kodo.mo -share/locale/no_NY/LC_MESSAGES/kolourpicker.mo -share/locale/no_NY/LC_MESSAGES/konqueror.mo -share/locale/no_NY/LC_MESSAGES/konquest.mo -share/locale/no_NY/LC_MESSAGES/konsole.mo -share/locale/no_NY/LC_MESSAGES/konv.mo -share/locale/no_NY/LC_MESSAGES/kooka.mo -share/locale/no_NY/LC_MESSAGES/korganizer.mo -share/locale/no_NY/LC_MESSAGES/korn.mo -share/locale/no_NY/LC_MESSAGES/kpackage.mo -share/locale/no_NY/LC_MESSAGES/kpager.mo -share/locale/no_NY/LC_MESSAGES/kpaint.mo -share/locale/no_NY/LC_MESSAGES/kpartapp.mo -share/locale/no_NY/LC_MESSAGES/kpartsaver.mo -share/locale/no_NY/LC_MESSAGES/kpat.mo -share/locale/no_NY/LC_MESSAGES/kpersonalizer.mo -share/locale/no_NY/LC_MESSAGES/kphone.mo -share/locale/no_NY/LC_MESSAGES/kpilot.mo -share/locale/no_NY/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/no_NY/LC_MESSAGES/kpm.mo -share/locale/no_NY/LC_MESSAGES/kpoker.mo -share/locale/no_NY/LC_MESSAGES/kppp.mo -share/locale/no_NY/LC_MESSAGES/kppplogview.mo -share/locale/no_NY/LC_MESSAGES/kprinter.mo -share/locale/no_NY/LC_MESSAGES/kreadconfig.mo -share/locale/no_NY/LC_MESSAGES/kreversi.mo -share/locale/no_NY/LC_MESSAGES/kruler.mo -share/locale/no_NY/LC_MESSAGES/krunapplet.mo -share/locale/no_NY/LC_MESSAGES/ksame.mo -share/locale/no_NY/LC_MESSAGES/kscd.mo -share/locale/no_NY/LC_MESSAGES/kscoreapplet.mo -share/locale/no_NY/LC_MESSAGES/kshisen.mo -share/locale/no_NY/LC_MESSAGES/ksirc.mo -share/locale/no_NY/LC_MESSAGES/ksirtet.mo -share/locale/no_NY/LC_MESSAGES/ksmiletris.mo -share/locale/no_NY/LC_MESSAGES/ksmserver.mo -share/locale/no_NY/LC_MESSAGES/ksnake.mo -share/locale/no_NY/LC_MESSAGES/ksnapshot.mo -share/locale/no_NY/LC_MESSAGES/ksokoban.mo -share/locale/no_NY/LC_MESSAGES/kspaceduel.mo -share/locale/no_NY/LC_MESSAGES/ksplash.mo -share/locale/no_NY/LC_MESSAGES/kstart.mo -share/locale/no_NY/LC_MESSAGES/kstartperf.mo -share/locale/no_NY/LC_MESSAGES/ksysctrl.mo -share/locale/no_NY/LC_MESSAGES/ksysguard.mo -share/locale/no_NY/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/no_NY/LC_MESSAGES/ksysv.mo -share/locale/no_NY/LC_MESSAGES/ktables.mo -share/locale/no_NY/LC_MESSAGES/ktalkd.mo -share/locale/no_NY/LC_MESSAGES/ktaskbarapplet.mo -share/locale/no_NY/LC_MESSAGES/kteatime.mo -share/locale/no_NY/LC_MESSAGES/ktimemon.mo -share/locale/no_NY/LC_MESSAGES/ktimer.mo -share/locale/no_NY/LC_MESSAGES/ktip.mo -share/locale/no_NY/LC_MESSAGES/ktouch.mo -share/locale/no_NY/LC_MESSAGES/ktron.mo -share/locale/no_NY/LC_MESSAGES/ktuberling.mo -share/locale/no_NY/LC_MESSAGES/ktux.mo -share/locale/no_NY/LC_MESSAGES/kuser.mo -share/locale/no_NY/LC_MESSAGES/kview.mo -share/locale/no_NY/LC_MESSAGES/kviewshell.mo -share/locale/no_NY/LC_MESSAGES/kwin.mo -share/locale/no_NY/LC_MESSAGES/kwin4.mo -share/locale/no_NY/LC_MESSAGES/kworldclock.mo -share/locale/no_NY/LC_MESSAGES/kwuftpd.mo -share/locale/no_NY/LC_MESSAGES/kxkb.mo -share/locale/no_NY/LC_MESSAGES/kxmlrpcd.mo -share/locale/no_NY/LC_MESSAGES/kxsconfig.mo -share/locale/no_NY/LC_MESSAGES/libkdegames.mo -share/locale/no_NY/LC_MESSAGES/libkdenetwork.mo -share/locale/no_NY/LC_MESSAGES/libkonq.mo -share/locale/no_NY/LC_MESSAGES/libkscan.mo -share/locale/no_NY/LC_MESSAGES/libkscreensaver.mo -share/locale/no_NY/LC_MESSAGES/libkwindefault_config.mo -share/locale/no_NY/LC_MESSAGES/libkwinicewm_config.mo -share/locale/no_NY/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/no_NY/LC_MESSAGES/libkwinquartz_config.mo -share/locale/no_NY/LC_MESSAGES/libtaskbar.mo -share/locale/no_NY/LC_MESSAGES/libtaskmanager.mo -share/locale/no_NY/LC_MESSAGES/lskat.mo -share/locale/no_NY/LC_MESSAGES/multiplayers.mo -share/locale/no_NY/LC_MESSAGES/naughtyapplet.mo -share/locale/no_NY/LC_MESSAGES/noatun.mo -share/locale/no_NY/LC_MESSAGES/nsplugin.mo -share/locale/no_NY/LC_MESSAGES/passwords.mo -share/locale/no_NY/LC_MESSAGES/ppdtranslations.mo -share/locale/no_NY/LC_MESSAGES/quicklauncher.mo -share/locale/no_NY/LC_MESSAGES/secpolicy.mo -share/locale/no_NY/LC_MESSAGES/spy.mo -share/locale/no_NY/LC_MESSAGES/taskbarextension.mo -share/locale/no_NY/LC_MESSAGES/twister.mo -share/locale/no_NY/LC_MESSAGES/uachangerplugin.mo -share/locale/no_NY/LC_MESSAGES/validatorsplugin.mo -share/locale/no_NY/LC_MESSAGES/webarchiver.mo -share/locale/no_NY/charset -share/locale/no_NY/entry.desktop -share/locale/no_NY/flag.png -share/locale/pl/LC_MESSAGES/abbrowser.mo -share/locale/pl/LC_MESSAGES/aktion.mo -share/locale/pl/LC_MESSAGES/amor.mo -share/locale/pl/LC_MESSAGES/appletproxy.mo -share/locale/pl/LC_MESSAGES/ark.mo -share/locale/pl/LC_MESSAGES/artsbuilder.mo -share/locale/pl/LC_MESSAGES/artscontrol.mo -share/locale/pl/LC_MESSAGES/babelfish.mo -share/locale/pl/LC_MESSAGES/childpanelextension.mo -share/locale/pl/LC_MESSAGES/clockapplet.mo -share/locale/pl/LC_MESSAGES/cupsdconf.mo -share/locale/pl/LC_MESSAGES/desktop.mo -share/locale/pl/LC_MESSAGES/dirfilterplugin.mo -share/locale/pl/LC_MESSAGES/domtreeviewer.mo -share/locale/pl/LC_MESSAGES/drkonqi.mo -share/locale/pl/LC_MESSAGES/empath.mo -share/locale/pl/LC_MESSAGES/extensionproxy.mo -share/locale/pl/LC_MESSAGES/filetypes.mo -share/locale/pl/LC_MESSAGES/htmlsearch.mo -share/locale/pl/LC_MESSAGES/imgalleryplugin.mo -share/locale/pl/LC_MESSAGES/kab.mo -share/locale/pl/LC_MESSAGES/kabalone.mo -share/locale/pl/LC_MESSAGES/kaccess.mo -share/locale/pl/LC_MESSAGES/kaddressbook.mo -share/locale/pl/LC_MESSAGES/kaiman.mo -share/locale/pl/LC_MESSAGES/kappfinder.mo -share/locale/pl/LC_MESSAGES/karchie.mo -share/locale/pl/LC_MESSAGES/karm.mo -share/locale/pl/LC_MESSAGES/kasbarextension.mo -share/locale/pl/LC_MESSAGES/kasteroids.mo -share/locale/pl/LC_MESSAGES/katalog.mo -share/locale/pl/LC_MESSAGES/kate.mo -share/locale/pl/LC_MESSAGES/katomic.mo -share/locale/pl/LC_MESSAGES/kautorun.mo -share/locale/pl/LC_MESSAGES/kbabel.mo -share/locale/pl/LC_MESSAGES/kbabeldict.mo -share/locale/pl/LC_MESSAGES/kbiff.mo -share/locale/pl/LC_MESSAGES/kblackbox.mo -share/locale/pl/LC_MESSAGES/kcalc.mo -share/locale/pl/LC_MESSAGES/kcharselect.mo -share/locale/pl/LC_MESSAGES/kcharselectapplet.mo -share/locale/pl/LC_MESSAGES/kcmaccess.mo -share/locale/pl/LC_MESSAGES/kcmarts.mo -share/locale/pl/LC_MESSAGES/kcmaudiocd.mo -share/locale/pl/LC_MESSAGES/kcmbackground.mo -share/locale/pl/LC_MESSAGES/kcmbell.mo -share/locale/pl/LC_MESSAGES/kcmcolors.mo -share/locale/pl/LC_MESSAGES/kcmcrypto.mo -share/locale/pl/LC_MESSAGES/kcmcss.mo -share/locale/pl/LC_MESSAGES/kcmdisplay.mo -share/locale/pl/LC_MESSAGES/kcmemail.mo -share/locale/pl/LC_MESSAGES/kcmenergy.mo -share/locale/pl/LC_MESSAGES/kcmfonts.mo -share/locale/pl/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/pl/LC_MESSAGES/kcmicons.mo -share/locale/pl/LC_MESSAGES/kcmiconthemes.mo -share/locale/pl/LC_MESSAGES/kcminfo.mo -share/locale/pl/LC_MESSAGES/kcminput.mo -share/locale/pl/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/pl/LC_MESSAGES/kcmkclock.mo -share/locale/pl/LC_MESSAGES/kcmkdb.mo -share/locale/pl/LC_MESSAGES/kcmkeys.mo -share/locale/pl/LC_MESSAGES/kcmkicker.mo -share/locale/pl/LC_MESSAGES/kcmkio.mo -share/locale/pl/LC_MESSAGES/kcmkmix.mo -share/locale/pl/LC_MESSAGES/kcmkonq.mo -share/locale/pl/LC_MESSAGES/kcmkonqhtml.mo -share/locale/pl/LC_MESSAGES/kcmkonsole.mo -share/locale/pl/LC_MESSAGES/kcmkpanel.mo -share/locale/pl/LC_MESSAGES/kcmktalkd.mo -share/locale/pl/LC_MESSAGES/kcmkurifilt.mo -share/locale/pl/LC_MESSAGES/kcmkwindecoration.mo -share/locale/pl/LC_MESSAGES/kcmkwintheme.mo -share/locale/pl/LC_MESSAGES/kcmkwm.mo -share/locale/pl/LC_MESSAGES/kcmlanbrowser.mo -share/locale/pl/LC_MESSAGES/kcmlaptop.mo -share/locale/pl/LC_MESSAGES/kcmlaunch.mo -share/locale/pl/LC_MESSAGES/kcmlayout.mo -share/locale/pl/LC_MESSAGES/kcmlinuz.mo -share/locale/pl/LC_MESSAGES/kcmlocale.mo -share/locale/pl/LC_MESSAGES/kcmmidi.mo -share/locale/pl/LC_MESSAGES/kcmnewsticker.mo -share/locale/pl/LC_MESSAGES/kcmnotify.mo -share/locale/pl/LC_MESSAGES/kcmodbc.mo -share/locale/pl/LC_MESSAGES/kcmsamba.mo -share/locale/pl/LC_MESSAGES/kcmsample.mo -share/locale/pl/LC_MESSAGES/kcmscreensaver.mo -share/locale/pl/LC_MESSAGES/kcmshell.mo -share/locale/pl/LC_MESSAGES/kcmsmserver.mo -share/locale/pl/LC_MESSAGES/kcmsocks.mo -share/locale/pl/LC_MESSAGES/kcmspellchecking.mo -share/locale/pl/LC_MESSAGES/kcmstyle.mo -share/locale/pl/LC_MESSAGES/kcmtaskbar.mo -share/locale/pl/LC_MESSAGES/kcmthemes.mo -share/locale/pl/LC_MESSAGES/kcmusb.mo -share/locale/pl/LC_MESSAGES/kcontrol.mo -share/locale/pl/LC_MESSAGES/kcron.mo -share/locale/pl/LC_MESSAGES/kdat.mo -share/locale/pl/LC_MESSAGES/kdateapplet.mo -share/locale/pl/LC_MESSAGES/kdcop.mo -share/locale/pl/LC_MESSAGES/kdebugdialog.mo -share/locale/pl/LC_MESSAGES/kdehelp.mo -share/locale/pl/LC_MESSAGES/kdelibs.mo -share/locale/pl/LC_MESSAGES/kdepasswd.mo -share/locale/pl/LC_MESSAGES/kdeprintfax.mo -share/locale/pl/LC_MESSAGES/kdesktop.mo -share/locale/pl/LC_MESSAGES/kdessh.mo -share/locale/pl/LC_MESSAGES/kdesu.mo -share/locale/pl/LC_MESSAGES/kdesud.mo -share/locale/pl/LC_MESSAGES/kdevelop.mo -share/locale/pl/LC_MESSAGES/kdevtipofday.mo -share/locale/pl/LC_MESSAGES/kdewizard.mo -share/locale/pl/LC_MESSAGES/kdf.mo -share/locale/pl/LC_MESSAGES/kdict.mo -share/locale/pl/LC_MESSAGES/kdictapplet.mo -share/locale/pl/LC_MESSAGES/kdm.mo -share/locale/pl/LC_MESSAGES/kdmchooser.mo -share/locale/pl/LC_MESSAGES/kdmconfig.mo -share/locale/pl/LC_MESSAGES/kdmgreet.mo -share/locale/pl/LC_MESSAGES/kdvi.mo -share/locale/pl/LC_MESSAGES/kedit.mo -share/locale/pl/LC_MESSAGES/keystone.mo -share/locale/pl/LC_MESSAGES/kfax.mo -share/locale/pl/LC_MESSAGES/kfifteenapplet.mo -share/locale/pl/LC_MESSAGES/kfind.mo -share/locale/pl/LC_MESSAGES/kfinger.mo -share/locale/pl/LC_MESSAGES/kfloppy.mo -share/locale/pl/LC_MESSAGES/kfmclient.mo -share/locale/pl/LC_MESSAGES/kfmexec.mo -share/locale/pl/LC_MESSAGES/kfontmanager.mo -share/locale/pl/LC_MESSAGES/kfract.mo -share/locale/pl/LC_MESSAGES/kghostview.mo -share/locale/pl/LC_MESSAGES/khelpcenter.mo -share/locale/pl/LC_MESSAGES/khexedit.mo -share/locale/pl/LC_MESSAGES/khotkeys.mo -share/locale/pl/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/pl/LC_MESSAGES/kicker.mo -share/locale/pl/LC_MESSAGES/kiconedit.mo -share/locale/pl/LC_MESSAGES/kikbd.mo -share/locale/pl/LC_MESSAGES/kio_audiocd.mo -share/locale/pl/LC_MESSAGES/kio_finger.mo -share/locale/pl/LC_MESSAGES/kio_floppy.mo -share/locale/pl/LC_MESSAGES/kio_help.mo -share/locale/pl/LC_MESSAGES/kio_imap4.mo -share/locale/pl/LC_MESSAGES/kio_lan.mo -share/locale/pl/LC_MESSAGES/kio_man.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_smb.mo -share/locale/pl/LC_MESSAGES/kio_smbro.mo -share/locale/pl/LC_MESSAGES/kjezz.mo -share/locale/pl/LC_MESSAGES/kjobviewer.mo -share/locale/pl/LC_MESSAGES/kjots.mo -share/locale/pl/LC_MESSAGES/kjumpingcube.mo -share/locale/pl/LC_MESSAGES/klaptopdaemon.mo -share/locale/pl/LC_MESSAGES/klegacyimport.mo -share/locale/pl/LC_MESSAGES/kless.mo -share/locale/pl/LC_MESSAGES/klines.mo -share/locale/pl/LC_MESSAGES/klipper.mo -share/locale/pl/LC_MESSAGES/kljettool.mo -share/locale/pl/LC_MESSAGES/klock.mo -share/locale/pl/LC_MESSAGES/klpq.mo -share/locale/pl/LC_MESSAGES/kmahjongg.mo -share/locale/pl/LC_MESSAGES/kmail.mo -share/locale/pl/LC_MESSAGES/kmailcvt.mo -share/locale/pl/LC_MESSAGES/kmedia.mo -share/locale/pl/LC_MESSAGES/kmenuedit.mo -share/locale/pl/LC_MESSAGES/kmid.mo -share/locale/pl/LC_MESSAGES/kmidi.mo -share/locale/pl/LC_MESSAGES/kmines.mo -share/locale/pl/LC_MESSAGES/kminipagerapplet.mo -share/locale/pl/LC_MESSAGES/kmix.mo -share/locale/pl/LC_MESSAGES/kmoon.mo -share/locale/pl/LC_MESSAGES/knewsticker.mo -share/locale/pl/LC_MESSAGES/knode.mo -share/locale/pl/LC_MESSAGES/knotes.mo -share/locale/pl/LC_MESSAGES/knotify.mo -share/locale/pl/LC_MESSAGES/knu.mo -share/locale/pl/LC_MESSAGES/kolourpicker.mo -share/locale/pl/LC_MESSAGES/konq_searcher.mo -share/locale/pl/LC_MESSAGES/konqueror.mo -share/locale/pl/LC_MESSAGES/konquest.mo -share/locale/pl/LC_MESSAGES/konsole.mo -share/locale/pl/LC_MESSAGES/korganizer.mo -share/locale/pl/LC_MESSAGES/korn.mo -share/locale/pl/LC_MESSAGES/kpackage.mo -share/locale/pl/LC_MESSAGES/kpager.mo -share/locale/pl/LC_MESSAGES/kpagerapplet.mo -share/locale/pl/LC_MESSAGES/kpaint.mo -share/locale/pl/LC_MESSAGES/kpanel.mo -share/locale/pl/LC_MESSAGES/kpartapp.mo -share/locale/pl/LC_MESSAGES/kpartsaver.mo -share/locale/pl/LC_MESSAGES/kpat.mo -share/locale/pl/LC_MESSAGES/kpersonalizer.mo -share/locale/pl/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/pl/LC_MESSAGES/kpm.mo -share/locale/pl/LC_MESSAGES/kpoker.mo -share/locale/pl/LC_MESSAGES/kppp.mo -share/locale/pl/LC_MESSAGES/kppplogview.mo -share/locale/pl/LC_MESSAGES/kprinter.mo -share/locale/pl/LC_MESSAGES/krdb.mo -share/locale/pl/LC_MESSAGES/kreadconfig.mo -share/locale/pl/LC_MESSAGES/kreversi.mo -share/locale/pl/LC_MESSAGES/krn.mo -share/locale/pl/LC_MESSAGES/krootwm.mo -share/locale/pl/LC_MESSAGES/kruler.mo -share/locale/pl/LC_MESSAGES/krunapplet.mo -share/locale/pl/LC_MESSAGES/ksame.mo -share/locale/pl/LC_MESSAGES/kscd.mo -share/locale/pl/LC_MESSAGES/kshisen.mo -share/locale/pl/LC_MESSAGES/ksirc.mo -share/locale/pl/LC_MESSAGES/ksirtet.mo -share/locale/pl/LC_MESSAGES/ksmiletris.mo -share/locale/pl/LC_MESSAGES/ksmserver.mo -share/locale/pl/LC_MESSAGES/ksnake.mo -share/locale/pl/LC_MESSAGES/ksnapshot.mo -share/locale/pl/LC_MESSAGES/ksokoban.mo -share/locale/pl/LC_MESSAGES/ksplash.mo -share/locale/pl/LC_MESSAGES/kstart.mo -share/locale/pl/LC_MESSAGES/kstartperf.mo -share/locale/pl/LC_MESSAGES/ksysctrl.mo -share/locale/pl/LC_MESSAGES/ksysguard.mo -share/locale/pl/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/pl/LC_MESSAGES/ksysv.mo -share/locale/pl/LC_MESSAGES/ktalkd.mo -share/locale/pl/LC_MESSAGES/ktaskbarapplet.mo -share/locale/pl/LC_MESSAGES/kteatime.mo -share/locale/pl/LC_MESSAGES/kthememgr.mo -share/locale/pl/LC_MESSAGES/ktimemon.mo -share/locale/pl/LC_MESSAGES/ktimer.mo -share/locale/pl/LC_MESSAGES/ktip.mo -share/locale/pl/LC_MESSAGES/ktron.mo -share/locale/pl/LC_MESSAGES/ktux.mo -share/locale/pl/LC_MESSAGES/kuser.mo -share/locale/pl/LC_MESSAGES/kview.mo -share/locale/pl/LC_MESSAGES/kviewshell.mo -share/locale/pl/LC_MESSAGES/kwelcome.mo -share/locale/pl/LC_MESSAGES/kwin.mo -share/locale/pl/LC_MESSAGES/kwm.mo -share/locale/pl/LC_MESSAGES/kworldclock.mo -share/locale/pl/LC_MESSAGES/kxkb.mo -share/locale/pl/LC_MESSAGES/kxmlrpcd.mo -share/locale/pl/LC_MESSAGES/kxsconfig.mo -share/locale/pl/LC_MESSAGES/libkdenetwork.mo -share/locale/pl/LC_MESSAGES/libkonq.mo -share/locale/pl/LC_MESSAGES/libkscreensaver.mo -share/locale/pl/LC_MESSAGES/libkwindefault_config.mo -share/locale/pl/LC_MESSAGES/libkwinicewm_config.mo -share/locale/pl/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/pl/LC_MESSAGES/libkwinquartz_config.mo -share/locale/pl/LC_MESSAGES/libtaskbar.mo -share/locale/pl/LC_MESSAGES/libtaskmanager.mo -share/locale/pl/LC_MESSAGES/naughtyapplet.mo -share/locale/pl/LC_MESSAGES/noatun.mo -share/locale/pl/LC_MESSAGES/nsplugin.mo -share/locale/pl/LC_MESSAGES/passwords.mo -share/locale/pl/LC_MESSAGES/quicklauncher.mo -share/locale/pl/LC_MESSAGES/secpolicy.mo -share/locale/pl/LC_MESSAGES/taskbarextension.mo -share/locale/pl/LC_MESSAGES/twister.mo -share/locale/pl/LC_MESSAGES/uachangerplugin.mo -share/locale/pl/LC_MESSAGES/validatorsplugin.mo -share/locale/pl/LC_MESSAGES/webarchiver.mo -share/locale/pl/charset -share/locale/pl/entry.desktop -share/locale/pl/flag.png -share/locale/pt/LC_MESSAGES/aktion.mo -share/locale/pt/LC_MESSAGES/amor.mo -share/locale/pt/LC_MESSAGES/appletproxy.mo -share/locale/pt/LC_MESSAGES/ark.mo -share/locale/pt/LC_MESSAGES/artsbuilder.mo -share/locale/pt/LC_MESSAGES/artscontrol.mo -share/locale/pt/LC_MESSAGES/babelfish.mo -share/locale/pt/LC_MESSAGES/caitoo.mo -share/locale/pt/LC_MESSAGES/childpanelextension.mo -share/locale/pt/LC_MESSAGES/clockapplet.mo -share/locale/pt/LC_MESSAGES/colfind.mo -share/locale/pt/LC_MESSAGES/columbo.mo -share/locale/pt/LC_MESSAGES/cookbook.mo -share/locale/pt/LC_MESSAGES/cupsdconf.mo -share/locale/pt/LC_MESSAGES/desktop.mo -share/locale/pt/LC_MESSAGES/devcenter.mo -share/locale/pt/LC_MESSAGES/dirfilterplugin.mo -share/locale/pt/LC_MESSAGES/domtreeviewer.mo -share/locale/pt/LC_MESSAGES/drkonqi.mo -share/locale/pt/LC_MESSAGES/empath.mo -share/locale/pt/LC_MESSAGES/extensionproxy.mo -share/locale/pt/LC_MESSAGES/filetypes.mo -share/locale/pt/LC_MESSAGES/gideon.mo -share/locale/pt/LC_MESSAGES/gofai.mo -share/locale/pt/LC_MESSAGES/htmlsearch.mo -share/locale/pt/LC_MESSAGES/imgalleryplugin.mo -share/locale/pt/LC_MESSAGES/kab.mo -share/locale/pt/LC_MESSAGES/kabalone.mo -share/locale/pt/LC_MESSAGES/kaccess.mo -share/locale/pt/LC_MESSAGES/kaddressbook.mo -share/locale/pt/LC_MESSAGES/kafka.mo -share/locale/pt/LC_MESSAGES/kandy.mo -share/locale/pt/LC_MESSAGES/kappfinder.mo -share/locale/pt/LC_MESSAGES/karchie.mo -share/locale/pt/LC_MESSAGES/karchiver.mo -share/locale/pt/LC_MESSAGES/karm.mo -share/locale/pt/LC_MESSAGES/kasbarextension.mo -share/locale/pt/LC_MESSAGES/kasteroids.mo -share/locale/pt/LC_MESSAGES/katalog.mo -share/locale/pt/LC_MESSAGES/kate.mo -share/locale/pt/LC_MESSAGES/katehtmltools.mo -share/locale/pt/LC_MESSAGES/kateinsertcommand.mo -share/locale/pt/LC_MESSAGES/katomic.mo -share/locale/pt/LC_MESSAGES/kautorun.mo -share/locale/pt/LC_MESSAGES/kbabel.mo -share/locale/pt/LC_MESSAGES/kbackgammon.mo -share/locale/pt/LC_MESSAGES/kbattleship.mo -share/locale/pt/LC_MESSAGES/kbiff.mo -share/locale/pt/LC_MESSAGES/kblackbox.mo -share/locale/pt/LC_MESSAGES/kbugbuster.mo -share/locale/pt/LC_MESSAGES/kcalc.mo -share/locale/pt/LC_MESSAGES/kcharselect.mo -share/locale/pt/LC_MESSAGES/kcharselectapplet.mo -share/locale/pt/LC_MESSAGES/kcm_scsimanager.mo -share/locale/pt/LC_MESSAGES/kcmaccess.mo -share/locale/pt/LC_MESSAGES/kcmail.mo -share/locale/pt/LC_MESSAGES/kcmarts.mo -share/locale/pt/LC_MESSAGES/kcmaudiocd.mo -share/locale/pt/LC_MESSAGES/kcmbackground.mo -share/locale/pt/LC_MESSAGES/kcmbell.mo -share/locale/pt/LC_MESSAGES/kcmbind.mo -share/locale/pt/LC_MESSAGES/kcmcolors.mo -share/locale/pt/LC_MESSAGES/kcmcrypto.mo -share/locale/pt/LC_MESSAGES/kcmcss.mo -share/locale/pt/LC_MESSAGES/kcmdhcpd.mo -share/locale/pt/LC_MESSAGES/kcmemail.mo -share/locale/pt/LC_MESSAGES/kcmenergy.mo -share/locale/pt/LC_MESSAGES/kcmfonts.mo -share/locale/pt/LC_MESSAGES/kcmgofai.mo -share/locale/pt/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/pt/LC_MESSAGES/kcmicons.mo -share/locale/pt/LC_MESSAGES/kcminfo.mo -share/locale/pt/LC_MESSAGES/kcminput.mo -share/locale/pt/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/pt/LC_MESSAGES/kcmiwatcher.mo -share/locale/pt/LC_MESSAGES/kcmkamera.mo -share/locale/pt/LC_MESSAGES/kcmkclock.mo -share/locale/pt/LC_MESSAGES/kcmkdb.mo -share/locale/pt/LC_MESSAGES/kcmkeys.mo -share/locale/pt/LC_MESSAGES/kcmkicker.mo -share/locale/pt/LC_MESSAGES/kcmkio.mo -share/locale/pt/LC_MESSAGES/kcmkmix.mo -share/locale/pt/LC_MESSAGES/kcmkonq.mo -share/locale/pt/LC_MESSAGES/kcmkonqhtml.mo -share/locale/pt/LC_MESSAGES/kcmkonsole.mo -share/locale/pt/LC_MESSAGES/kcmktalkd.mo -share/locale/pt/LC_MESSAGES/kcmkurifilt.mo -share/locale/pt/LC_MESSAGES/kcmkwindecoration.mo -share/locale/pt/LC_MESSAGES/kcmkwintheme.mo -share/locale/pt/LC_MESSAGES/kcmkwm.mo -share/locale/pt/LC_MESSAGES/kcmlanbrowser.mo -share/locale/pt/LC_MESSAGES/kcmlaptop.mo -share/locale/pt/LC_MESSAGES/kcmlaunch.mo -share/locale/pt/LC_MESSAGES/kcmlayout.mo -share/locale/pt/LC_MESSAGES/kcmlilo.mo -share/locale/pt/LC_MESSAGES/kcmlinuz.mo -share/locale/pt/LC_MESSAGES/kcmlocale.mo -share/locale/pt/LC_MESSAGES/kcmmediacontrol.mo -share/locale/pt/LC_MESSAGES/kcmmidi.mo -share/locale/pt/LC_MESSAGES/kcmnapster.mo -share/locale/pt/LC_MESSAGES/kcmnewsticker.mo -share/locale/pt/LC_MESSAGES/kcmnotify.mo -share/locale/pt/LC_MESSAGES/kcmodbc.mo -share/locale/pt/LC_MESSAGES/kcmsamba.mo -share/locale/pt/LC_MESSAGES/kcmscreensaver.mo -share/locale/pt/LC_MESSAGES/kcmsmserver.mo -share/locale/pt/LC_MESSAGES/kcmsocks.mo -share/locale/pt/LC_MESSAGES/kcmspellchecking.mo -share/locale/pt/LC_MESSAGES/kcmstyle.mo -share/locale/pt/LC_MESSAGES/kcmtaskbar.mo -share/locale/pt/LC_MESSAGES/kcmthemes.mo -share/locale/pt/LC_MESSAGES/kcmusb.mo -share/locale/pt/LC_MESSAGES/kcmuserenv.mo -share/locale/pt/LC_MESSAGES/kcoloredit.mo -share/locale/pt/LC_MESSAGES/kcontrol.mo -share/locale/pt/LC_MESSAGES/kcron.mo -share/locale/pt/LC_MESSAGES/kdao.mo -share/locale/pt/LC_MESSAGES/kdbbrowser.mo -share/locale/pt/LC_MESSAGES/kdcop.mo -share/locale/pt/LC_MESSAGES/kdebugdialog.mo -share/locale/pt/LC_MESSAGES/kdelibs.mo -share/locale/pt/LC_MESSAGES/kdepasswd.mo -share/locale/pt/LC_MESSAGES/kdeprintfax.mo -share/locale/pt/LC_MESSAGES/kdesktop.mo -share/locale/pt/LC_MESSAGES/kdessh.mo -share/locale/pt/LC_MESSAGES/kdestdifacedemo.mo -share/locale/pt/LC_MESSAGES/kdesu.mo -share/locale/pt/LC_MESSAGES/kdesud.mo -share/locale/pt/LC_MESSAGES/kdevtipofday.mo -share/locale/pt/LC_MESSAGES/kdf.mo -share/locale/pt/LC_MESSAGES/kdict.mo -share/locale/pt/LC_MESSAGES/kdictapplet.mo -share/locale/pt/LC_MESSAGES/kdmchooser.mo -share/locale/pt/LC_MESSAGES/kdmconfig.mo -share/locale/pt/LC_MESSAGES/kdmgreet.mo -share/locale/pt/LC_MESSAGES/kdvi.mo -share/locale/pt/LC_MESSAGES/kedit.mo -share/locale/pt/LC_MESSAGES/keystone.mo -share/locale/pt/LC_MESSAGES/kfax.mo -share/locale/pt/LC_MESSAGES/kfifteenapplet.mo -share/locale/pt/LC_MESSAGES/kfind.mo -share/locale/pt/LC_MESSAGES/kfindpart.mo -share/locale/pt/LC_MESSAGES/kfinger.mo -share/locale/pt/LC_MESSAGES/kfloppy.mo -share/locale/pt/LC_MESSAGES/kfmclient.mo -share/locale/pt/LC_MESSAGES/kfmexec.mo -share/locale/pt/LC_MESSAGES/kformeditor.mo -share/locale/pt/LC_MESSAGES/kformviewer.mo -share/locale/pt/LC_MESSAGES/kfourtune.mo -share/locale/pt/LC_MESSAGES/kfract.mo -share/locale/pt/LC_MESSAGES/kghostview.mo -share/locale/pt/LC_MESSAGES/kglchess.mo -share/locale/pt/LC_MESSAGES/kgnuplot.mo -share/locale/pt/LC_MESSAGES/kgrapher.mo -share/locale/pt/LC_MESSAGES/khelpcenter.mo -share/locale/pt/LC_MESSAGES/khexedit.mo -share/locale/pt/LC_MESSAGES/khotkeys.mo -share/locale/pt/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/pt/LC_MESSAGES/kicker.mo -share/locale/pt/LC_MESSAGES/kiconedit.mo -share/locale/pt/LC_MESSAGES/kicq.mo -share/locale/pt/LC_MESSAGES/kikbd.mo -share/locale/pt/LC_MESSAGES/kim.mo -share/locale/pt/LC_MESSAGES/kio_audiocd.mo -share/locale/pt/LC_MESSAGES/kio_finger.mo -share/locale/pt/LC_MESSAGES/kio_floppy.mo -share/locale/pt/LC_MESSAGES/kio_help.mo -share/locale/pt/LC_MESSAGES/kio_imap4.mo -share/locale/pt/LC_MESSAGES/kio_lan.mo -share/locale/pt/LC_MESSAGES/kio_man.mo -share/locale/pt/LC_MESSAGES/kio_nfs.mo -share/locale/pt/LC_MESSAGES/kio_nntp.mo -share/locale/pt/LC_MESSAGES/kio_pop3.mo -share/locale/pt/LC_MESSAGES/kio_smb.mo -share/locale/pt/LC_MESSAGES/kio_smbro.mo -share/locale/pt/LC_MESSAGES/kit.mo -share/locale/pt/LC_MESSAGES/kjezz.mo -share/locale/pt/LC_MESSAGES/kjobviewer.mo -share/locale/pt/LC_MESSAGES/kjots.mo -share/locale/pt/LC_MESSAGES/kjumpingcube.mo -share/locale/pt/LC_MESSAGES/klaptopdaemon.mo -share/locale/pt/LC_MESSAGES/klegacyimport.mo -share/locale/pt/LC_MESSAGES/kless.mo -share/locale/pt/LC_MESSAGES/klines.mo -share/locale/pt/LC_MESSAGES/klipper.mo -share/locale/pt/LC_MESSAGES/kljettool.mo -share/locale/pt/LC_MESSAGES/klock.mo -share/locale/pt/LC_MESSAGES/klpq.mo -share/locale/pt/LC_MESSAGES/klprfax.mo -share/locale/pt/LC_MESSAGES/kmahjongg.mo -share/locale/pt/LC_MESSAGES/kmail.mo -share/locale/pt/LC_MESSAGES/kmailcvt.mo -share/locale/pt/LC_MESSAGES/kmake.mo -share/locale/pt/LC_MESSAGES/kmenuedit.mo -share/locale/pt/LC_MESSAGES/kmessage.mo -share/locale/pt/LC_MESSAGES/kmid.mo -share/locale/pt/LC_MESSAGES/kmidi.mo -share/locale/pt/LC_MESSAGES/kmines.mo -share/locale/pt/LC_MESSAGES/kminipagerapplet.mo -share/locale/pt/LC_MESSAGES/kmix.mo -share/locale/pt/LC_MESSAGES/kmms.mo -share/locale/pt/LC_MESSAGES/kmonop.mo -share/locale/pt/LC_MESSAGES/kmoon.mo -share/locale/pt/LC_MESSAGES/knetmgr.mo -share/locale/pt/LC_MESSAGES/knewsticker.mo -share/locale/pt/LC_MESSAGES/knode.mo -share/locale/pt/LC_MESSAGES/knotes.mo -share/locale/pt/LC_MESSAGES/knotify.mo -share/locale/pt/LC_MESSAGES/knu.mo -share/locale/pt/LC_MESSAGES/kodo.mo -share/locale/pt/LC_MESSAGES/kolourpicker.mo -share/locale/pt/LC_MESSAGES/konqueror.mo -share/locale/pt/LC_MESSAGES/konquest.mo -share/locale/pt/LC_MESSAGES/konsole.mo -share/locale/pt/LC_MESSAGES/konv.mo -share/locale/pt/LC_MESSAGES/kooka.mo -share/locale/pt/LC_MESSAGES/kopennap.mo -share/locale/pt/LC_MESSAGES/korganizer.mo -share/locale/pt/LC_MESSAGES/korn.mo -share/locale/pt/LC_MESSAGES/kp.mo -share/locale/pt/LC_MESSAGES/kpackage.mo -share/locale/pt/LC_MESSAGES/kpager.mo -share/locale/pt/LC_MESSAGES/kpaint.mo -share/locale/pt/LC_MESSAGES/kpartapp.mo -share/locale/pt/LC_MESSAGES/kpartsaver.mo -share/locale/pt/LC_MESSAGES/kpat.mo -share/locale/pt/LC_MESSAGES/kpersonalizer.mo -share/locale/pt/LC_MESSAGES/kphone.mo -share/locale/pt/LC_MESSAGES/kpilot.mo -share/locale/pt/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/pt/LC_MESSAGES/kpm.mo -share/locale/pt/LC_MESSAGES/kpoker.mo -share/locale/pt/LC_MESSAGES/kpovmodeler.mo -share/locale/pt/LC_MESSAGES/kppp.mo -share/locale/pt/LC_MESSAGES/kppplogview.mo -share/locale/pt/LC_MESSAGES/kprinter.mo -share/locale/pt/LC_MESSAGES/kreadconfig.mo -share/locale/pt/LC_MESSAGES/kreversi.mo -share/locale/pt/LC_MESSAGES/krn.mo -share/locale/pt/LC_MESSAGES/kruler.mo -share/locale/pt/LC_MESSAGES/krunapplet.mo -share/locale/pt/LC_MESSAGES/ksame.mo -share/locale/pt/LC_MESSAGES/kscd.mo -share/locale/pt/LC_MESSAGES/kscoreapplet.mo -share/locale/pt/LC_MESSAGES/kshisen.mo -share/locale/pt/LC_MESSAGES/ksirc.mo -share/locale/pt/LC_MESSAGES/ksirtet.mo -share/locale/pt/LC_MESSAGES/ksmiletris.mo -share/locale/pt/LC_MESSAGES/ksmserver.mo -share/locale/pt/LC_MESSAGES/ksnake.mo -share/locale/pt/LC_MESSAGES/ksnapshot.mo -share/locale/pt/LC_MESSAGES/ksokoban.mo -share/locale/pt/LC_MESSAGES/kspaceduel.mo -share/locale/pt/LC_MESSAGES/ksplash.mo -share/locale/pt/LC_MESSAGES/kstart.mo -share/locale/pt/LC_MESSAGES/kstartperf.mo -share/locale/pt/LC_MESSAGES/kstockticker.mo -share/locale/pt/LC_MESSAGES/ksysctrl.mo -share/locale/pt/LC_MESSAGES/ksysguard.mo -share/locale/pt/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/pt/LC_MESSAGES/ksystrayproxy.mo -share/locale/pt/LC_MESSAGES/ksysv.mo -share/locale/pt/LC_MESSAGES/ktables.mo -share/locale/pt/LC_MESSAGES/ktalk.mo -share/locale/pt/LC_MESSAGES/ktalkd.mo -share/locale/pt/LC_MESSAGES/ktaskbarapplet.mo -share/locale/pt/LC_MESSAGES/kteatime.mo -share/locale/pt/LC_MESSAGES/ktimemon.mo -share/locale/pt/LC_MESSAGES/ktimer.mo -share/locale/pt/LC_MESSAGES/ktip.mo -share/locale/pt/LC_MESSAGES/ktouch.mo -share/locale/pt/LC_MESSAGES/ktron.mo -share/locale/pt/LC_MESSAGES/ktuberling.mo -share/locale/pt/LC_MESSAGES/ktux.mo -share/locale/pt/LC_MESSAGES/kuser.mo -share/locale/pt/LC_MESSAGES/kvidmode.mo -share/locale/pt/LC_MESSAGES/kview.mo -share/locale/pt/LC_MESSAGES/kviewshell.mo -share/locale/pt/LC_MESSAGES/kwebstat.mo -share/locale/pt/LC_MESSAGES/kwin.mo -share/locale/pt/LC_MESSAGES/kwin4.mo -share/locale/pt/LC_MESSAGES/kwintv.mo -share/locale/pt/LC_MESSAGES/kworldclock.mo -share/locale/pt/LC_MESSAGES/kwuftpd.mo -share/locale/pt/LC_MESSAGES/kxkb.mo -share/locale/pt/LC_MESSAGES/kxmlrpcd.mo -share/locale/pt/LC_MESSAGES/kxsconfig.mo -share/locale/pt/LC_MESSAGES/libkdegames.mo -share/locale/pt/LC_MESSAGES/libkdenetwork.mo -share/locale/pt/LC_MESSAGES/libkonq.mo -share/locale/pt/LC_MESSAGES/libkscan.mo -share/locale/pt/LC_MESSAGES/libkscreensaver.mo -share/locale/pt/LC_MESSAGES/libkwindefault_config.mo -share/locale/pt/LC_MESSAGES/libkwinicewm_config.mo -share/locale/pt/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/pt/LC_MESSAGES/libkwinquartz_config.mo -share/locale/pt/LC_MESSAGES/libtaskbar.mo -share/locale/pt/LC_MESSAGES/libtaskmanager.mo -share/locale/pt/LC_MESSAGES/lskat.mo -share/locale/pt/LC_MESSAGES/mediacontrol.mo -share/locale/pt/LC_MESSAGES/multiplayers.mo -share/locale/pt/LC_MESSAGES/naughtyapplet.mo -share/locale/pt/LC_MESSAGES/noatun.mo -share/locale/pt/LC_MESSAGES/nsplugin.mo -share/locale/pt/LC_MESSAGES/passwords.mo -share/locale/pt/LC_MESSAGES/ppdtranslations.mo -share/locale/pt/LC_MESSAGES/pws.mo -share/locale/pt/LC_MESSAGES/quicklauncher.mo -share/locale/pt/LC_MESSAGES/secpolicy.mo -share/locale/pt/LC_MESSAGES/spy.mo -share/locale/pt/LC_MESSAGES/taskbarextension.mo -share/locale/pt/LC_MESSAGES/twister.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/charset -share/locale/pt/entry.desktop -share/locale/pt/flag.png -share/locale/pt_BR/LC_MESSAGES/abbrowser.mo -share/locale/pt_BR/LC_MESSAGES/aktion.mo -share/locale/pt_BR/LC_MESSAGES/amor.mo -share/locale/pt_BR/LC_MESSAGES/appletproxy.mo -share/locale/pt_BR/LC_MESSAGES/ark.mo -share/locale/pt_BR/LC_MESSAGES/artsbuilder.mo -share/locale/pt_BR/LC_MESSAGES/artscontrol.mo -share/locale/pt_BR/LC_MESSAGES/babelfish.mo -share/locale/pt_BR/LC_MESSAGES/childpanelextension.mo -share/locale/pt_BR/LC_MESSAGES/clockapplet.mo -share/locale/pt_BR/LC_MESSAGES/cupsdconf.mo -share/locale/pt_BR/LC_MESSAGES/desktop.mo -share/locale/pt_BR/LC_MESSAGES/devcenter.mo -share/locale/pt_BR/LC_MESSAGES/dirfilterplugin.mo -share/locale/pt_BR/LC_MESSAGES/domtreeviewer.mo -share/locale/pt_BR/LC_MESSAGES/drkonqi.mo -share/locale/pt_BR/LC_MESSAGES/empath.mo -share/locale/pt_BR/LC_MESSAGES/extensionproxy.mo -share/locale/pt_BR/LC_MESSAGES/filetypes.mo -share/locale/pt_BR/LC_MESSAGES/htmlsearch.mo -share/locale/pt_BR/LC_MESSAGES/imgalleryplugin.mo -share/locale/pt_BR/LC_MESSAGES/kab.mo -share/locale/pt_BR/LC_MESSAGES/kabalone.mo -share/locale/pt_BR/LC_MESSAGES/kaccess.mo -share/locale/pt_BR/LC_MESSAGES/kaddressbook.mo -share/locale/pt_BR/LC_MESSAGES/kaiman.mo -share/locale/pt_BR/LC_MESSAGES/kappfinder.mo -share/locale/pt_BR/LC_MESSAGES/karchiver.mo -share/locale/pt_BR/LC_MESSAGES/karm.mo -share/locale/pt_BR/LC_MESSAGES/kasbarextension.mo -share/locale/pt_BR/LC_MESSAGES/kasteroids.mo -share/locale/pt_BR/LC_MESSAGES/kate.mo -share/locale/pt_BR/LC_MESSAGES/katehtmltools.mo -share/locale/pt_BR/LC_MESSAGES/kateinsertcommand.mo -share/locale/pt_BR/LC_MESSAGES/katomic.mo -share/locale/pt_BR/LC_MESSAGES/kbabel.mo -share/locale/pt_BR/LC_MESSAGES/kbabelcommon.mo -share/locale/pt_BR/LC_MESSAGES/kbabeldict.mo -share/locale/pt_BR/LC_MESSAGES/kbackgammon.mo -share/locale/pt_BR/LC_MESSAGES/kbgndwm.mo -share/locale/pt_BR/LC_MESSAGES/kblackbox.mo -share/locale/pt_BR/LC_MESSAGES/kbugbuster.mo -share/locale/pt_BR/LC_MESSAGES/kcalc.mo -share/locale/pt_BR/LC_MESSAGES/kcharselect.mo -share/locale/pt_BR/LC_MESSAGES/kcharselectapplet.mo -share/locale/pt_BR/LC_MESSAGES/kcm_scsimanager.mo -share/locale/pt_BR/LC_MESSAGES/kcmaccess.mo -share/locale/pt_BR/LC_MESSAGES/kcmarts.mo -share/locale/pt_BR/LC_MESSAGES/kcmaudiocd.mo -share/locale/pt_BR/LC_MESSAGES/kcmbackground.mo -share/locale/pt_BR/LC_MESSAGES/kcmbell.mo -share/locale/pt_BR/LC_MESSAGES/kcmcolors.mo -share/locale/pt_BR/LC_MESSAGES/kcmcrypto.mo -share/locale/pt_BR/LC_MESSAGES/kcmcss.mo -share/locale/pt_BR/LC_MESSAGES/kcmdisplay.mo -share/locale/pt_BR/LC_MESSAGES/kcmemail.mo -share/locale/pt_BR/LC_MESSAGES/kcmenergy.mo -share/locale/pt_BR/LC_MESSAGES/kcmfonts.mo -share/locale/pt_BR/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/pt_BR/LC_MESSAGES/kcmicons.mo -share/locale/pt_BR/LC_MESSAGES/kcmiconthemes.mo -share/locale/pt_BR/LC_MESSAGES/kcminfo.mo -share/locale/pt_BR/LC_MESSAGES/kcminput.mo -share/locale/pt_BR/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/pt_BR/LC_MESSAGES/kcmkamera.mo -share/locale/pt_BR/LC_MESSAGES/kcmkclock.mo -share/locale/pt_BR/LC_MESSAGES/kcmkdb.mo -share/locale/pt_BR/LC_MESSAGES/kcmkeys.mo -share/locale/pt_BR/LC_MESSAGES/kcmkfm.mo -share/locale/pt_BR/LC_MESSAGES/kcmkicker.mo -share/locale/pt_BR/LC_MESSAGES/kcmkio.mo -share/locale/pt_BR/LC_MESSAGES/kcmkmix.mo -share/locale/pt_BR/LC_MESSAGES/kcmkonq.mo -share/locale/pt_BR/LC_MESSAGES/kcmkonqhtml.mo -share/locale/pt_BR/LC_MESSAGES/kcmkonsole.mo -share/locale/pt_BR/LC_MESSAGES/kcmkpanel.mo -share/locale/pt_BR/LC_MESSAGES/kcmktalkd.mo -share/locale/pt_BR/LC_MESSAGES/kcmkurifilt.mo -share/locale/pt_BR/LC_MESSAGES/kcmkwindecoration.mo -share/locale/pt_BR/LC_MESSAGES/kcmkwintheme.mo -share/locale/pt_BR/LC_MESSAGES/kcmkwm.mo -share/locale/pt_BR/LC_MESSAGES/kcmlanbrowser.mo -share/locale/pt_BR/LC_MESSAGES/kcmlaptop.mo -share/locale/pt_BR/LC_MESSAGES/kcmlaunch.mo -share/locale/pt_BR/LC_MESSAGES/kcmlayout.mo -share/locale/pt_BR/LC_MESSAGES/kcmlilo.mo -share/locale/pt_BR/LC_MESSAGES/kcmlocale.mo -share/locale/pt_BR/LC_MESSAGES/kcmmediacontrol.mo -share/locale/pt_BR/LC_MESSAGES/kcmmidi.mo -share/locale/pt_BR/LC_MESSAGES/kcmnapster.mo -share/locale/pt_BR/LC_MESSAGES/kcmnewsticker.mo -share/locale/pt_BR/LC_MESSAGES/kcmnotify.mo -share/locale/pt_BR/LC_MESSAGES/kcmnumberandnames.mo -share/locale/pt_BR/LC_MESSAGES/kcmodbc.mo -share/locale/pt_BR/LC_MESSAGES/kcmsamba.mo -share/locale/pt_BR/LC_MESSAGES/kcmsample.mo -share/locale/pt_BR/LC_MESSAGES/kcmscreensaver.mo -share/locale/pt_BR/LC_MESSAGES/kcmshell.mo -share/locale/pt_BR/LC_MESSAGES/kcmsmserver.mo -share/locale/pt_BR/LC_MESSAGES/kcmsocks.mo -share/locale/pt_BR/LC_MESSAGES/kcmspellchecking.mo -share/locale/pt_BR/LC_MESSAGES/kcmstyle.mo -share/locale/pt_BR/LC_MESSAGES/kcmsyssound.mo -share/locale/pt_BR/LC_MESSAGES/kcmtalkd.mo -share/locale/pt_BR/LC_MESSAGES/kcmtaskbar.mo -share/locale/pt_BR/LC_MESSAGES/kcmthemes.mo -share/locale/pt_BR/LC_MESSAGES/kcmusb.mo -share/locale/pt_BR/LC_MESSAGES/kcmuserenv.mo -share/locale/pt_BR/LC_MESSAGES/kcmvirtualdesktops.mo -share/locale/pt_BR/LC_MESSAGES/kcoloredit.mo -share/locale/pt_BR/LC_MESSAGES/kcontrol.mo -share/locale/pt_BR/LC_MESSAGES/kcron.mo -share/locale/pt_BR/LC_MESSAGES/kcrontab.mo -share/locale/pt_BR/LC_MESSAGES/kdao.mo -share/locale/pt_BR/LC_MESSAGES/kdat.mo -share/locale/pt_BR/LC_MESSAGES/kdateapplet.mo -share/locale/pt_BR/LC_MESSAGES/kdcop.mo -share/locale/pt_BR/LC_MESSAGES/kdebugdialog.mo -share/locale/pt_BR/LC_MESSAGES/kdehelp.mo -share/locale/pt_BR/LC_MESSAGES/kdelibs.mo -share/locale/pt_BR/LC_MESSAGES/kdepasswd.mo -share/locale/pt_BR/LC_MESSAGES/kdeprintfax.mo -share/locale/pt_BR/LC_MESSAGES/kdesktop.mo -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/kdevelop.mo -share/locale/pt_BR/LC_MESSAGES/kdevtipofday.mo -share/locale/pt_BR/LC_MESSAGES/kdewizard.mo -share/locale/pt_BR/LC_MESSAGES/kdf.mo -share/locale/pt_BR/LC_MESSAGES/kdict.mo -share/locale/pt_BR/LC_MESSAGES/kdm.mo -share/locale/pt_BR/LC_MESSAGES/kdmchooser.mo -share/locale/pt_BR/LC_MESSAGES/kdmconfig.mo -share/locale/pt_BR/LC_MESSAGES/kdmgreet.mo -share/locale/pt_BR/LC_MESSAGES/kdvi.mo -share/locale/pt_BR/LC_MESSAGES/kedit.mo -share/locale/pt_BR/LC_MESSAGES/keystone.mo -share/locale/pt_BR/LC_MESSAGES/kfax.mo -share/locale/pt_BR/LC_MESSAGES/kfifteenapplet.mo -share/locale/pt_BR/LC_MESSAGES/kfind.mo -share/locale/pt_BR/LC_MESSAGES/kfindpart.mo -share/locale/pt_BR/LC_MESSAGES/kfloppy.mo -share/locale/pt_BR/LC_MESSAGES/kfm.mo -share/locale/pt_BR/LC_MESSAGES/kfmclient.mo -share/locale/pt_BR/LC_MESSAGES/kfmexec.mo -share/locale/pt_BR/LC_MESSAGES/kfontinst.mo -share/locale/pt_BR/LC_MESSAGES/kfontmanager.mo -share/locale/pt_BR/LC_MESSAGES/kfract.mo -share/locale/pt_BR/LC_MESSAGES/kghostview.mo -share/locale/pt_BR/LC_MESSAGES/khelpcenter.mo -share/locale/pt_BR/LC_MESSAGES/khexedit.mo -share/locale/pt_BR/LC_MESSAGES/khotkeys.mo -share/locale/pt_BR/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/pt_BR/LC_MESSAGES/kicker.mo -share/locale/pt_BR/LC_MESSAGES/kiconedit.mo -share/locale/pt_BR/LC_MESSAGES/kicq.mo -share/locale/pt_BR/LC_MESSAGES/kio_audiocd.mo -share/locale/pt_BR/LC_MESSAGES/kio_finger.mo -share/locale/pt_BR/LC_MESSAGES/kio_floppy.mo -share/locale/pt_BR/LC_MESSAGES/kio_help.mo -share/locale/pt_BR/LC_MESSAGES/kio_imap4.mo -share/locale/pt_BR/LC_MESSAGES/kio_lan.mo -share/locale/pt_BR/LC_MESSAGES/kio_man.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_pop3.mo -share/locale/pt_BR/LC_MESSAGES/kio_smb.mo -share/locale/pt_BR/LC_MESSAGES/kio_smbro.mo -share/locale/pt_BR/LC_MESSAGES/kit.mo -share/locale/pt_BR/LC_MESSAGES/kjezz.mo -share/locale/pt_BR/LC_MESSAGES/kjobviewer.mo -share/locale/pt_BR/LC_MESSAGES/kjots.mo -share/locale/pt_BR/LC_MESSAGES/kjumpingCube.mo -share/locale/pt_BR/LC_MESSAGES/kjumpingcube.mo -share/locale/pt_BR/LC_MESSAGES/klaptopdaemon.mo -share/locale/pt_BR/LC_MESSAGES/klegacyimport.mo -share/locale/pt_BR/LC_MESSAGES/kless.mo -share/locale/pt_BR/LC_MESSAGES/klipper.mo -share/locale/pt_BR/LC_MESSAGES/kljettool.mo -share/locale/pt_BR/LC_MESSAGES/klock.mo -share/locale/pt_BR/LC_MESSAGES/klpq.mo -share/locale/pt_BR/LC_MESSAGES/klprfax.mo -share/locale/pt_BR/LC_MESSAGES/kmahjongg.mo -share/locale/pt_BR/LC_MESSAGES/kmail.mo -share/locale/pt_BR/LC_MESSAGES/kmailcvt.mo -share/locale/pt_BR/LC_MESSAGES/kmedia.mo -share/locale/pt_BR/LC_MESSAGES/kmenuedit.mo -share/locale/pt_BR/LC_MESSAGES/kmid.mo -share/locale/pt_BR/LC_MESSAGES/kmidi.mo -share/locale/pt_BR/LC_MESSAGES/kmines.mo -share/locale/pt_BR/LC_MESSAGES/kminipagerapplet.mo -share/locale/pt_BR/LC_MESSAGES/kmix.mo -share/locale/pt_BR/LC_MESSAGES/kmoon.mo -share/locale/pt_BR/LC_MESSAGES/knewsticker.mo -share/locale/pt_BR/LC_MESSAGES/knode.mo -share/locale/pt_BR/LC_MESSAGES/knotes.mo -share/locale/pt_BR/LC_MESSAGES/knotify.mo -share/locale/pt_BR/LC_MESSAGES/kodo.mo -share/locale/pt_BR/LC_MESSAGES/kolourpicker.mo -share/locale/pt_BR/LC_MESSAGES/konq_searcher.mo -share/locale/pt_BR/LC_MESSAGES/konqueror.mo -share/locale/pt_BR/LC_MESSAGES/konquest.mo -share/locale/pt_BR/LC_MESSAGES/konsole.mo -share/locale/pt_BR/LC_MESSAGES/koolclockapplet.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/kpager.mo -share/locale/pt_BR/LC_MESSAGES/kpagerapplet.mo -share/locale/pt_BR/LC_MESSAGES/kpaint.mo -share/locale/pt_BR/LC_MESSAGES/kpanel.mo -share/locale/pt_BR/LC_MESSAGES/kpartapp.mo -share/locale/pt_BR/LC_MESSAGES/kpartsaver.mo -share/locale/pt_BR/LC_MESSAGES/kpat.mo -share/locale/pt_BR/LC_MESSAGES/kpersonalizer.mo -share/locale/pt_BR/LC_MESSAGES/kpilot.mo -share/locale/pt_BR/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/pt_BR/LC_MESSAGES/kpm.mo -share/locale/pt_BR/LC_MESSAGES/kpoker.mo -share/locale/pt_BR/LC_MESSAGES/kppp.mo -share/locale/pt_BR/LC_MESSAGES/kppplogview.mo -share/locale/pt_BR/LC_MESSAGES/kprinter.mo -share/locale/pt_BR/LC_MESSAGES/krdb.mo -share/locale/pt_BR/LC_MESSAGES/kreadconfig.mo -share/locale/pt_BR/LC_MESSAGES/kreversi.mo -share/locale/pt_BR/LC_MESSAGES/krootwm.mo -share/locale/pt_BR/LC_MESSAGES/kruler.mo -share/locale/pt_BR/LC_MESSAGES/krunapplet.mo -share/locale/pt_BR/LC_MESSAGES/ksame.mo -share/locale/pt_BR/LC_MESSAGES/kscd.mo -share/locale/pt_BR/LC_MESSAGES/kscoreapplet.mo -share/locale/pt_BR/LC_MESSAGES/kshisen.mo -share/locale/pt_BR/LC_MESSAGES/ksirc.mo -share/locale/pt_BR/LC_MESSAGES/ksirtet.mo -share/locale/pt_BR/LC_MESSAGES/ksmiletris.mo -share/locale/pt_BR/LC_MESSAGES/ksmserver.mo -share/locale/pt_BR/LC_MESSAGES/ksnake.mo -share/locale/pt_BR/LC_MESSAGES/ksnapshot.mo -share/locale/pt_BR/LC_MESSAGES/ksokoban.mo -share/locale/pt_BR/LC_MESSAGES/kspaceduel.mo -share/locale/pt_BR/LC_MESSAGES/ksplash.mo -share/locale/pt_BR/LC_MESSAGES/kstart.mo -share/locale/pt_BR/LC_MESSAGES/kstartperf.mo -share/locale/pt_BR/LC_MESSAGES/ksysctrl.mo -share/locale/pt_BR/LC_MESSAGES/ksysguard.mo -share/locale/pt_BR/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/pt_BR/LC_MESSAGES/ksysv.mo -share/locale/pt_BR/LC_MESSAGES/ktalkd.mo -share/locale/pt_BR/LC_MESSAGES/ktaskbarapplet.mo -share/locale/pt_BR/LC_MESSAGES/kteatime.mo -share/locale/pt_BR/LC_MESSAGES/ktimemon.mo -share/locale/pt_BR/LC_MESSAGES/ktimer.mo -share/locale/pt_BR/LC_MESSAGES/ktip.mo -share/locale/pt_BR/LC_MESSAGES/ktop.mo -share/locale/pt_BR/LC_MESSAGES/ktron.mo -share/locale/pt_BR/LC_MESSAGES/ktuberling.mo -share/locale/pt_BR/LC_MESSAGES/ktux.mo -share/locale/pt_BR/LC_MESSAGES/kuser.mo -share/locale/pt_BR/LC_MESSAGES/kview.mo -share/locale/pt_BR/LC_MESSAGES/kviewshell.mo -share/locale/pt_BR/LC_MESSAGES/kwelcome.mo -share/locale/pt_BR/LC_MESSAGES/kwin.mo -share/locale/pt_BR/LC_MESSAGES/kwin4.mo -share/locale/pt_BR/LC_MESSAGES/kwm.mo -share/locale/pt_BR/LC_MESSAGES/kworldclock.mo -share/locale/pt_BR/LC_MESSAGES/kxkb.mo -share/locale/pt_BR/LC_MESSAGES/kxmlrpcd.mo -share/locale/pt_BR/LC_MESSAGES/kxsconfig.mo -share/locale/pt_BR/LC_MESSAGES/libkdegames.mo -share/locale/pt_BR/LC_MESSAGES/libkdenetwork.mo -share/locale/pt_BR/LC_MESSAGES/libkonq.mo -share/locale/pt_BR/LC_MESSAGES/libkscreensaver.mo -share/locale/pt_BR/LC_MESSAGES/libkwindefault_config.mo -share/locale/pt_BR/LC_MESSAGES/libkwinicewm_config.mo -share/locale/pt_BR/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/pt_BR/LC_MESSAGES/libkwinquartz_config.mo -share/locale/pt_BR/LC_MESSAGES/libnoatunexcellent.mo -share/locale/pt_BR/LC_MESSAGES/libnoatunsystray.mo -share/locale/pt_BR/LC_MESSAGES/libnoatuntron.mo -share/locale/pt_BR/LC_MESSAGES/libnoatunui.mo -share/locale/pt_BR/LC_MESSAGES/libtaskbar.mo -share/locale/pt_BR/LC_MESSAGES/libtaskmanager.mo -share/locale/pt_BR/LC_MESSAGES/lskat.mo -share/locale/pt_BR/LC_MESSAGES/multiplayers.mo -share/locale/pt_BR/LC_MESSAGES/naughtyapplet.mo -share/locale/pt_BR/LC_MESSAGES/noatun.mo -share/locale/pt_BR/LC_MESSAGES/noatunmodules.mo -share/locale/pt_BR/LC_MESSAGES/nsplugin.mo -share/locale/pt_BR/LC_MESSAGES/passwords.mo -share/locale/pt_BR/LC_MESSAGES/ppdtranslations.mo -share/locale/pt_BR/LC_MESSAGES/quicklauncher.mo -share/locale/pt_BR/LC_MESSAGES/secpolicy.mo -share/locale/pt_BR/LC_MESSAGES/spy.mo -share/locale/pt_BR/LC_MESSAGES/taskbarextension.mo -share/locale/pt_BR/LC_MESSAGES/twister.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/pt_BR/charset -share/locale/pt_BR/entry.desktop -share/locale/pt_BR/flag.png -share/locale/ro/LC_MESSAGES/abbrowser.mo -share/locale/ro/LC_MESSAGES/aktion.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/caitoo.mo -share/locale/ro/LC_MESSAGES/childpanelextension.mo -share/locale/ro/LC_MESSAGES/clockapplet.mo -share/locale/ro/LC_MESSAGES/colfind.mo -share/locale/ro/LC_MESSAGES/columbo.mo -share/locale/ro/LC_MESSAGES/cupsdconf.mo -share/locale/ro/LC_MESSAGES/desktop.mo -share/locale/ro/LC_MESSAGES/devcenter.mo -share/locale/ro/LC_MESSAGES/drkonqi.mo -share/locale/ro/LC_MESSAGES/empath.mo -share/locale/ro/LC_MESSAGES/extensionproxy.mo -share/locale/ro/LC_MESSAGES/filetypes.mo -share/locale/ro/LC_MESSAGES/gideon.mo -share/locale/ro/LC_MESSAGES/gofai.mo -share/locale/ro/LC_MESSAGES/htmlsearch.mo -share/locale/ro/LC_MESSAGES/kab.mo -share/locale/ro/LC_MESSAGES/kabalone.mo -share/locale/ro/LC_MESSAGES/kaccess.mo -share/locale/ro/LC_MESSAGES/kafka.mo -share/locale/ro/LC_MESSAGES/kandy.mo -share/locale/ro/LC_MESSAGES/kappfinder.mo -share/locale/ro/LC_MESSAGES/karchie.mo -share/locale/ro/LC_MESSAGES/karchiver.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/katalog.mo -share/locale/ro/LC_MESSAGES/kate.mo -share/locale/ro/LC_MESSAGES/katomic.mo -share/locale/ro/LC_MESSAGES/kautorun.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/kbiff.mo -share/locale/ro/LC_MESSAGES/kblackbox.mo -share/locale/ro/LC_MESSAGES/kcalc.mo -share/locale/ro/LC_MESSAGES/kcharselect.mo -share/locale/ro/LC_MESSAGES/kcharselectapplet.mo -share/locale/ro/LC_MESSAGES/kcmaccess.mo -share/locale/ro/LC_MESSAGES/kcmail.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 -share/locale/ro/LC_MESSAGES/kcmbind.mo -share/locale/ro/LC_MESSAGES/kcmcolors.mo -share/locale/ro/LC_MESSAGES/kcmcrypto.mo -share/locale/ro/LC_MESSAGES/kcmcss.mo -share/locale/ro/LC_MESSAGES/kcmdhcpd.mo -share/locale/ro/LC_MESSAGES/kcmemail.mo -share/locale/ro/LC_MESSAGES/kcmenergy.mo -share/locale/ro/LC_MESSAGES/kcmfonts.mo -share/locale/ro/LC_MESSAGES/kcmgofai.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/kcminput.mo -share/locale/ro/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/ro/LC_MESSAGES/kcmiwatcher.mo -share/locale/ro/LC_MESSAGES/kcmkamera.mo -share/locale/ro/LC_MESSAGES/kcmkclock.mo -share/locale/ro/LC_MESSAGES/kcmkdb.mo -share/locale/ro/LC_MESSAGES/kcmkeys.mo -share/locale/ro/LC_MESSAGES/kcmkicker.mo -share/locale/ro/LC_MESSAGES/kcmkio.mo -share/locale/ro/LC_MESSAGES/kcmkmix.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/kcmktalkd.mo -share/locale/ro/LC_MESSAGES/kcmkurifilt.mo -share/locale/ro/LC_MESSAGES/kcmkwindecoration.mo -share/locale/ro/LC_MESSAGES/kcmkwintheme.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/kcmlinuz.mo -share/locale/ro/LC_MESSAGES/kcmlocale.mo -share/locale/ro/LC_MESSAGES/kcmmidi.mo -share/locale/ro/LC_MESSAGES/kcmnapster.mo -share/locale/ro/LC_MESSAGES/kcmnewsticker.mo -share/locale/ro/LC_MESSAGES/kcmnotify.mo -share/locale/ro/LC_MESSAGES/kcmodbc.mo -share/locale/ro/LC_MESSAGES/kcmsamba.mo -share/locale/ro/LC_MESSAGES/kcmscreensaver.mo -share/locale/ro/LC_MESSAGES/kcmsmserver.mo -share/locale/ro/LC_MESSAGES/kcmsocks.mo -share/locale/ro/LC_MESSAGES/kcmspellchecking.mo -share/locale/ro/LC_MESSAGES/kcmstyle.mo -share/locale/ro/LC_MESSAGES/kcmtaskbar.mo -share/locale/ro/LC_MESSAGES/kcmthemes.mo -share/locale/ro/LC_MESSAGES/kcmusb.mo -share/locale/ro/LC_MESSAGES/kcoloredit.mo -share/locale/ro/LC_MESSAGES/kcontrol.mo -share/locale/ro/LC_MESSAGES/kcron.mo -share/locale/ro/LC_MESSAGES/kdao.mo -share/locale/ro/LC_MESSAGES/kdat.mo -share/locale/ro/LC_MESSAGES/kdbbrowser.mo -share/locale/ro/LC_MESSAGES/kdcop.mo -share/locale/ro/LC_MESSAGES/kdebugdialog.mo -share/locale/ro/LC_MESSAGES/kdelibs.mo -share/locale/ro/LC_MESSAGES/kdepasswd.mo -share/locale/ro/LC_MESSAGES/kdeprintfax.mo -share/locale/ro/LC_MESSAGES/kdesktop.mo -share/locale/ro/LC_MESSAGES/kdessh.mo -share/locale/ro/LC_MESSAGES/kdestdifacedemo.mo -share/locale/ro/LC_MESSAGES/kdesu.mo -share/locale/ro/LC_MESSAGES/kdesud.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/kdict.mo -share/locale/ro/LC_MESSAGES/kdictapplet.mo -share/locale/ro/LC_MESSAGES/kdiff.mo -share/locale/ro/LC_MESSAGES/kdmchooser.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/keystone.mo -share/locale/ro/LC_MESSAGES/kfax.mo -share/locale/ro/LC_MESSAGES/kfifteenapplet.mo -share/locale/ro/LC_MESSAGES/kfind.mo -share/locale/ro/LC_MESSAGES/kfindpart.mo -share/locale/ro/LC_MESSAGES/kfinger.mo -share/locale/ro/LC_MESSAGES/kfloppy.mo -share/locale/ro/LC_MESSAGES/kfmclient.mo -share/locale/ro/LC_MESSAGES/kfmexec.mo -share/locale/ro/LC_MESSAGES/kformeditor.mo -share/locale/ro/LC_MESSAGES/kformviewer.mo -share/locale/ro/LC_MESSAGES/kfract.mo -share/locale/ro/LC_MESSAGES/kghostview.mo -share/locale/ro/LC_MESSAGES/kglchess.mo -share/locale/ro/LC_MESSAGES/kgrapher.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/khtmlsettingsplugin.mo -share/locale/ro/LC_MESSAGES/kicker.mo -share/locale/ro/LC_MESSAGES/kiconedit.mo -share/locale/ro/LC_MESSAGES/kicq.mo -share/locale/ro/LC_MESSAGES/kikbd.mo -share/locale/ro/LC_MESSAGES/kim.mo -share/locale/ro/LC_MESSAGES/kio_audiocd.mo -share/locale/ro/LC_MESSAGES/kio_floppy.mo -share/locale/ro/LC_MESSAGES/kio_help.mo -share/locale/ro/LC_MESSAGES/kio_imap4.mo -share/locale/ro/LC_MESSAGES/kio_lan.mo -share/locale/ro/LC_MESSAGES/kio_man.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_smbro.mo -share/locale/ro/LC_MESSAGES/kit.mo -share/locale/ro/LC_MESSAGES/kjezz.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/klegacyimport.mo -share/locale/ro/LC_MESSAGES/kless.mo -share/locale/ro/LC_MESSAGES/klipper.mo -share/locale/ro/LC_MESSAGES/kljettool.mo -share/locale/ro/LC_MESSAGES/klock.mo -share/locale/ro/LC_MESSAGES/klpq.mo -share/locale/ro/LC_MESSAGES/kmahjongg.mo -share/locale/ro/LC_MESSAGES/kmail.mo -share/locale/ro/LC_MESSAGES/kmailcvt.mo -share/locale/ro/LC_MESSAGES/kmenuedit.mo -share/locale/ro/LC_MESSAGES/kmessage.mo -share/locale/ro/LC_MESSAGES/kmid.mo -share/locale/ro/LC_MESSAGES/kmidi.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/kmms.mo -share/locale/ro/LC_MESSAGES/kmoon.mo -share/locale/ro/LC_MESSAGES/knewsticker.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/knu.mo -share/locale/ro/LC_MESSAGES/kodo.mo -share/locale/ro/LC_MESSAGES/kolourpicker.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/konv.mo -share/locale/ro/LC_MESSAGES/kooka.mo -share/locale/ro/LC_MESSAGES/kopennap.mo -share/locale/ro/LC_MESSAGES/korganizer.mo -share/locale/ro/LC_MESSAGES/korn.mo -share/locale/ro/LC_MESSAGES/kp.mo -share/locale/ro/LC_MESSAGES/kpackage.mo -share/locale/ro/LC_MESSAGES/kpager.mo -share/locale/ro/LC_MESSAGES/kpaint.mo -share/locale/ro/LC_MESSAGES/kpartapp.mo -share/locale/ro/LC_MESSAGES/kpartsaver.mo -share/locale/ro/LC_MESSAGES/kpat.mo -share/locale/ro/LC_MESSAGES/kpersonalizer.mo -share/locale/ro/LC_MESSAGES/kphone.mo -share/locale/ro/LC_MESSAGES/kpilot.mo -share/locale/ro/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/ro/LC_MESSAGES/kpm.mo -share/locale/ro/LC_MESSAGES/kpoker.mo -share/locale/ro/LC_MESSAGES/kppp.mo -share/locale/ro/LC_MESSAGES/kppplogview.mo -share/locale/ro/LC_MESSAGES/kreadconfig.mo -share/locale/ro/LC_MESSAGES/kreversi.mo -share/locale/ro/LC_MESSAGES/krn.mo -share/locale/ro/LC_MESSAGES/kruler.mo -share/locale/ro/LC_MESSAGES/krunapplet.mo -share/locale/ro/LC_MESSAGES/ksame.mo -share/locale/ro/LC_MESSAGES/kscd.mo -share/locale/ro/LC_MESSAGES/kscoreapplet.mo -share/locale/ro/LC_MESSAGES/kshisen.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/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/kstart.mo -share/locale/ro/LC_MESSAGES/kstartperf.mo -share/locale/ro/LC_MESSAGES/kstockticker.mo -share/locale/ro/LC_MESSAGES/ksysctrl.mo -share/locale/ro/LC_MESSAGES/ksysguard.mo -share/locale/ro/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/ro/LC_MESSAGES/ksysv.mo -share/locale/ro/LC_MESSAGES/ktables.mo -share/locale/ro/LC_MESSAGES/ktalk.mo -share/locale/ro/LC_MESSAGES/ktalkd.mo -share/locale/ro/LC_MESSAGES/ktaskbarapplet.mo -share/locale/ro/LC_MESSAGES/kteatime.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/ktron.mo -share/locale/ro/LC_MESSAGES/ktuberling.mo -share/locale/ro/LC_MESSAGES/ktux.mo -share/locale/ro/LC_MESSAGES/kuser.mo -share/locale/ro/LC_MESSAGES/kview.mo -share/locale/ro/LC_MESSAGES/kviewshell.mo -share/locale/ro/LC_MESSAGES/kwebstat.mo -share/locale/ro/LC_MESSAGES/kwin.mo -share/locale/ro/LC_MESSAGES/kwin4.mo -share/locale/ro/LC_MESSAGES/kworldclock.mo -share/locale/ro/LC_MESSAGES/kwuftpd.mo -share/locale/ro/LC_MESSAGES/kxkb.mo -share/locale/ro/LC_MESSAGES/kxmlrpcd.mo -share/locale/ro/LC_MESSAGES/kxsconfig.mo -share/locale/ro/LC_MESSAGES/libkdegames.mo -share/locale/ro/LC_MESSAGES/libkdenetwork.mo -share/locale/ro/LC_MESSAGES/libkonq.mo -share/locale/ro/LC_MESSAGES/libkscreensaver.mo -share/locale/ro/LC_MESSAGES/libtaskbar.mo -share/locale/ro/LC_MESSAGES/libtaskmanager.mo -share/locale/ro/LC_MESSAGES/lskat.mo -share/locale/ro/LC_MESSAGES/multiplayers.mo -share/locale/ro/LC_MESSAGES/naughtyapplet.mo -share/locale/ro/LC_MESSAGES/noatun.mo -share/locale/ro/LC_MESSAGES/nsplugin.mo -share/locale/ro/LC_MESSAGES/passwords.mo -share/locale/ro/LC_MESSAGES/ppdtranslations.mo -share/locale/ro/LC_MESSAGES/pws.mo -share/locale/ro/LC_MESSAGES/quicklauncher.mo -share/locale/ro/LC_MESSAGES/secpolicy.mo -share/locale/ro/LC_MESSAGES/spy.mo -share/locale/ro/LC_MESSAGES/taskbarextension.mo -share/locale/ro/LC_MESSAGES/twister.mo -share/locale/ro/charset -share/locale/ro/entry.desktop -share/locale/ro/flag.png -share/locale/ru/LC_MESSAGES/aktion.mo -share/locale/ru/LC_MESSAGES/amor.mo -share/locale/ru/LC_MESSAGES/appletproxy.mo -share/locale/ru/LC_MESSAGES/ark.mo -share/locale/ru/LC_MESSAGES/artsbuilder.mo -share/locale/ru/LC_MESSAGES/artscontrol.mo -share/locale/ru/LC_MESSAGES/babelfish.mo -share/locale/ru/LC_MESSAGES/childpanelextension.mo -share/locale/ru/LC_MESSAGES/clockapplet.mo -share/locale/ru/LC_MESSAGES/cupsdconf.mo -share/locale/ru/LC_MESSAGES/desktop.mo -share/locale/ru/LC_MESSAGES/dirfilterplugin.mo -share/locale/ru/LC_MESSAGES/domtreeviewer.mo -share/locale/ru/LC_MESSAGES/drkonqi.mo -share/locale/ru/LC_MESSAGES/empath.mo -share/locale/ru/LC_MESSAGES/extensionproxy.mo -share/locale/ru/LC_MESSAGES/filetypes.mo -share/locale/ru/LC_MESSAGES/htmlsearch.mo -share/locale/ru/LC_MESSAGES/imgalleryplugin.mo -share/locale/ru/LC_MESSAGES/kab.mo -share/locale/ru/LC_MESSAGES/kabalone.mo -share/locale/ru/LC_MESSAGES/kaccess.mo -share/locale/ru/LC_MESSAGES/kaddressbook.mo -share/locale/ru/LC_MESSAGES/kandy.mo -share/locale/ru/LC_MESSAGES/kappfinder.mo -share/locale/ru/LC_MESSAGES/karm.mo -share/locale/ru/LC_MESSAGES/kasbarextension.mo -share/locale/ru/LC_MESSAGES/kasteroids.mo -share/locale/ru/LC_MESSAGES/kate.mo -share/locale/ru/LC_MESSAGES/katehtmltools.mo -share/locale/ru/LC_MESSAGES/kateinsertcommand.mo -share/locale/ru/LC_MESSAGES/katomic.mo -share/locale/ru/LC_MESSAGES/kbackgammon.mo -share/locale/ru/LC_MESSAGES/kbattleship.mo -share/locale/ru/LC_MESSAGES/kbiff.mo -share/locale/ru/LC_MESSAGES/kblackbox.mo -share/locale/ru/LC_MESSAGES/kcalc.mo -share/locale/ru/LC_MESSAGES/kcharselect.mo -share/locale/ru/LC_MESSAGES/kcharselectapplet.mo -share/locale/ru/LC_MESSAGES/kcmaccess.mo -share/locale/ru/LC_MESSAGES/kcmail.mo -share/locale/ru/LC_MESSAGES/kcmarts.mo -share/locale/ru/LC_MESSAGES/kcmaudiocd.mo -share/locale/ru/LC_MESSAGES/kcmbackground.mo -share/locale/ru/LC_MESSAGES/kcmbell.mo -share/locale/ru/LC_MESSAGES/kcmcolors.mo -share/locale/ru/LC_MESSAGES/kcmcrypto.mo -share/locale/ru/LC_MESSAGES/kcmcss.mo -share/locale/ru/LC_MESSAGES/kcmemail.mo -share/locale/ru/LC_MESSAGES/kcmenergy.mo -share/locale/ru/LC_MESSAGES/kcmfonts.mo -share/locale/ru/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/ru/LC_MESSAGES/kcmicons.mo -share/locale/ru/LC_MESSAGES/kcminfo.mo -share/locale/ru/LC_MESSAGES/kcminput.mo -share/locale/ru/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/ru/LC_MESSAGES/kcmkamera.mo -share/locale/ru/LC_MESSAGES/kcmkclock.mo -share/locale/ru/LC_MESSAGES/kcmkdb.mo -share/locale/ru/LC_MESSAGES/kcmkeys.mo -share/locale/ru/LC_MESSAGES/kcmkicker.mo -share/locale/ru/LC_MESSAGES/kcmkio.mo -share/locale/ru/LC_MESSAGES/kcmkmix.mo -share/locale/ru/LC_MESSAGES/kcmkonq.mo -share/locale/ru/LC_MESSAGES/kcmkonqhtml.mo -share/locale/ru/LC_MESSAGES/kcmkonsole.mo -share/locale/ru/LC_MESSAGES/kcmktalkd.mo -share/locale/ru/LC_MESSAGES/kcmkurifilt.mo -share/locale/ru/LC_MESSAGES/kcmkwindecoration.mo -share/locale/ru/LC_MESSAGES/kcmkwintheme.mo -share/locale/ru/LC_MESSAGES/kcmkwm.mo -share/locale/ru/LC_MESSAGES/kcmlanbrowser.mo -share/locale/ru/LC_MESSAGES/kcmlaptop.mo -share/locale/ru/LC_MESSAGES/kcmlaunch.mo -share/locale/ru/LC_MESSAGES/kcmlayout.mo -share/locale/ru/LC_MESSAGES/kcmlilo.mo -share/locale/ru/LC_MESSAGES/kcmlinuz.mo -share/locale/ru/LC_MESSAGES/kcmlocale.mo -share/locale/ru/LC_MESSAGES/kcmmidi.mo -share/locale/ru/LC_MESSAGES/kcmnewsticker.mo -share/locale/ru/LC_MESSAGES/kcmnotify.mo -share/locale/ru/LC_MESSAGES/kcmsamba.mo -share/locale/ru/LC_MESSAGES/kcmscreensaver.mo -share/locale/ru/LC_MESSAGES/kcmsmserver.mo -share/locale/ru/LC_MESSAGES/kcmsocks.mo -share/locale/ru/LC_MESSAGES/kcmspellchecking.mo -share/locale/ru/LC_MESSAGES/kcmstyle.mo -share/locale/ru/LC_MESSAGES/kcmtaskbar.mo -share/locale/ru/LC_MESSAGES/kcmthemes.mo -share/locale/ru/LC_MESSAGES/kcmusb.mo -share/locale/ru/LC_MESSAGES/kcoloredit.mo -share/locale/ru/LC_MESSAGES/kcontrol.mo -share/locale/ru/LC_MESSAGES/kcron.mo -share/locale/ru/LC_MESSAGES/kdcop.mo -share/locale/ru/LC_MESSAGES/kdebugdialog.mo -share/locale/ru/LC_MESSAGES/kdelibs.mo -share/locale/ru/LC_MESSAGES/kdepasswd.mo -share/locale/ru/LC_MESSAGES/kdeprintfax.mo -share/locale/ru/LC_MESSAGES/kdesktop.mo -share/locale/ru/LC_MESSAGES/kdessh.mo -share/locale/ru/LC_MESSAGES/kdesu.mo -share/locale/ru/LC_MESSAGES/kdesud.mo -share/locale/ru/LC_MESSAGES/kdf.mo -share/locale/ru/LC_MESSAGES/kdict.mo -share/locale/ru/LC_MESSAGES/kdictapplet.mo -share/locale/ru/LC_MESSAGES/kdmchooser.mo -share/locale/ru/LC_MESSAGES/kdmconfig.mo -share/locale/ru/LC_MESSAGES/kdmgreet.mo -share/locale/ru/LC_MESSAGES/kdvi.mo -share/locale/ru/LC_MESSAGES/kedit.mo -share/locale/ru/LC_MESSAGES/kfax.mo -share/locale/ru/LC_MESSAGES/kfifteenapplet.mo -share/locale/ru/LC_MESSAGES/kfind.mo -share/locale/ru/LC_MESSAGES/kfindpart.mo -share/locale/ru/LC_MESSAGES/kfinger.mo -share/locale/ru/LC_MESSAGES/kfloppy.mo -share/locale/ru/LC_MESSAGES/kfmclient.mo -share/locale/ru/LC_MESSAGES/kfmexec.mo -share/locale/ru/LC_MESSAGES/kfortune.mo -share/locale/ru/LC_MESSAGES/kfract.mo -share/locale/ru/LC_MESSAGES/kghostview.mo -share/locale/ru/LC_MESSAGES/khelpcenter.mo -share/locale/ru/LC_MESSAGES/khexedit.mo -share/locale/ru/LC_MESSAGES/khotkeys.mo -share/locale/ru/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/ru/LC_MESSAGES/kicker.mo -share/locale/ru/LC_MESSAGES/kiconedit.mo -share/locale/ru/LC_MESSAGES/kio_audiocd.mo -share/locale/ru/LC_MESSAGES/kio_finger.mo -share/locale/ru/LC_MESSAGES/kio_floppy.mo -share/locale/ru/LC_MESSAGES/kio_help.mo -share/locale/ru/LC_MESSAGES/kio_imap4.mo -share/locale/ru/LC_MESSAGES/kio_lan.mo -share/locale/ru/LC_MESSAGES/kio_man.mo -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_smb.mo -share/locale/ru/LC_MESSAGES/kio_smbro.mo -share/locale/ru/LC_MESSAGES/kit.mo -share/locale/ru/LC_MESSAGES/kjezz.mo -share/locale/ru/LC_MESSAGES/kjobviewer.mo -share/locale/ru/LC_MESSAGES/kjots.mo -share/locale/ru/LC_MESSAGES/kjumpingcube.mo -share/locale/ru/LC_MESSAGES/klaptopdaemon.mo -share/locale/ru/LC_MESSAGES/klegacyimport.mo -share/locale/ru/LC_MESSAGES/kless.mo -share/locale/ru/LC_MESSAGES/klines.mo -share/locale/ru/LC_MESSAGES/klipper.mo -share/locale/ru/LC_MESSAGES/kljettool.mo -share/locale/ru/LC_MESSAGES/klock.mo -share/locale/ru/LC_MESSAGES/klpq.mo -share/locale/ru/LC_MESSAGES/klprfax.mo -share/locale/ru/LC_MESSAGES/kmahjongg.mo -share/locale/ru/LC_MESSAGES/kmail.mo -share/locale/ru/LC_MESSAGES/kmailcvt.mo -share/locale/ru/LC_MESSAGES/kmenuedit.mo -share/locale/ru/LC_MESSAGES/kmid.mo -share/locale/ru/LC_MESSAGES/kmidi.mo -share/locale/ru/LC_MESSAGES/kmines.mo -share/locale/ru/LC_MESSAGES/kminipagerapplet.mo -share/locale/ru/LC_MESSAGES/kmix.mo -share/locale/ru/LC_MESSAGES/kmoon.mo -share/locale/ru/LC_MESSAGES/knetmgr.mo -share/locale/ru/LC_MESSAGES/knewsticker.mo -share/locale/ru/LC_MESSAGES/knode.mo -share/locale/ru/LC_MESSAGES/knotes.mo -share/locale/ru/LC_MESSAGES/knotify.mo -share/locale/ru/LC_MESSAGES/kodo.mo -share/locale/ru/LC_MESSAGES/kolourpicker.mo -share/locale/ru/LC_MESSAGES/konqueror.mo -share/locale/ru/LC_MESSAGES/konquest.mo -share/locale/ru/LC_MESSAGES/konsole.mo -share/locale/ru/LC_MESSAGES/kooka.mo -share/locale/ru/LC_MESSAGES/korganizer.mo -share/locale/ru/LC_MESSAGES/korn.mo -share/locale/ru/LC_MESSAGES/kpackage.mo -share/locale/ru/LC_MESSAGES/kpager.mo -share/locale/ru/LC_MESSAGES/kpaint.mo -share/locale/ru/LC_MESSAGES/kpartapp.mo -share/locale/ru/LC_MESSAGES/kpartsaver.mo -share/locale/ru/LC_MESSAGES/kpat.mo -share/locale/ru/LC_MESSAGES/kpersonalizer.mo -share/locale/ru/LC_MESSAGES/kphone.mo -share/locale/ru/LC_MESSAGES/kpilot.mo -share/locale/ru/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/ru/LC_MESSAGES/kpm.mo -share/locale/ru/LC_MESSAGES/kpoker.mo -share/locale/ru/LC_MESSAGES/kppp.mo -share/locale/ru/LC_MESSAGES/kppplogview.mo -share/locale/ru/LC_MESSAGES/kprinter.mo -share/locale/ru/LC_MESSAGES/kreadconfig.mo -share/locale/ru/LC_MESSAGES/kreversi.mo -share/locale/ru/LC_MESSAGES/kruler.mo -share/locale/ru/LC_MESSAGES/krunapplet.mo -share/locale/ru/LC_MESSAGES/ksame.mo -share/locale/ru/LC_MESSAGES/kscd.mo -share/locale/ru/LC_MESSAGES/kscoreapplet.mo -share/locale/ru/LC_MESSAGES/kshisen.mo -share/locale/ru/LC_MESSAGES/ksirc.mo -share/locale/ru/LC_MESSAGES/ksirtet.mo -share/locale/ru/LC_MESSAGES/ksmiletris.mo -share/locale/ru/LC_MESSAGES/ksmserver.mo -share/locale/ru/LC_MESSAGES/ksnake.mo -share/locale/ru/LC_MESSAGES/ksnapshot.mo -share/locale/ru/LC_MESSAGES/ksokoban.mo -share/locale/ru/LC_MESSAGES/kspaceduel.mo -share/locale/ru/LC_MESSAGES/ksplash.mo -share/locale/ru/LC_MESSAGES/kstart.mo -share/locale/ru/LC_MESSAGES/kstartperf.mo -share/locale/ru/LC_MESSAGES/ksysctrl.mo -share/locale/ru/LC_MESSAGES/ksysguard.mo -share/locale/ru/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/ru/LC_MESSAGES/ksysv.mo -share/locale/ru/LC_MESSAGES/ktalkd.mo -share/locale/ru/LC_MESSAGES/ktaskbarapplet.mo -share/locale/ru/LC_MESSAGES/kteatime.mo -share/locale/ru/LC_MESSAGES/ktimemon.mo -share/locale/ru/LC_MESSAGES/ktimer.mo -share/locale/ru/LC_MESSAGES/ktip.mo -share/locale/ru/LC_MESSAGES/ktron.mo -share/locale/ru/LC_MESSAGES/ktuberling.mo -share/locale/ru/LC_MESSAGES/ktux.mo -share/locale/ru/LC_MESSAGES/kuser.mo -share/locale/ru/LC_MESSAGES/kview.mo -share/locale/ru/LC_MESSAGES/kviewshell.mo -share/locale/ru/LC_MESSAGES/kwin.mo -share/locale/ru/LC_MESSAGES/kwin4.mo -share/locale/ru/LC_MESSAGES/kworldclock.mo -share/locale/ru/LC_MESSAGES/kwuftpd.mo -share/locale/ru/LC_MESSAGES/kxkb.mo -share/locale/ru/LC_MESSAGES/kxmlrpcd.mo -share/locale/ru/LC_MESSAGES/kxsconfig.mo -share/locale/ru/LC_MESSAGES/libkdegames.mo -share/locale/ru/LC_MESSAGES/libkdenetwork.mo -share/locale/ru/LC_MESSAGES/libkonq.mo -share/locale/ru/LC_MESSAGES/libkscan.mo -share/locale/ru/LC_MESSAGES/libkscreensaver.mo -share/locale/ru/LC_MESSAGES/libkwindefault_config.mo -share/locale/ru/LC_MESSAGES/libkwinicewm_config.mo -share/locale/ru/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/ru/LC_MESSAGES/libkwinquartz_config.mo -share/locale/ru/LC_MESSAGES/libtaskbar.mo -share/locale/ru/LC_MESSAGES/libtaskmanager.mo -share/locale/ru/LC_MESSAGES/lskat.mo -share/locale/ru/LC_MESSAGES/multiplayers.mo -share/locale/ru/LC_MESSAGES/naughtyapplet.mo -share/locale/ru/LC_MESSAGES/noatun.mo -share/locale/ru/LC_MESSAGES/nsplugin.mo -share/locale/ru/LC_MESSAGES/passwords.mo -share/locale/ru/LC_MESSAGES/ppdtranslations.mo -share/locale/ru/LC_MESSAGES/quicklauncher.mo -share/locale/ru/LC_MESSAGES/secpolicy.mo -share/locale/ru/LC_MESSAGES/spy.mo -share/locale/ru/LC_MESSAGES/taskbarextension.mo -share/locale/ru/LC_MESSAGES/twister.mo -share/locale/ru/LC_MESSAGES/uachangerplugin.mo -share/locale/ru/LC_MESSAGES/validatorsplugin.mo -share/locale/ru/LC_MESSAGES/webarchiver.mo -share/locale/ru/charset -share/locale/ru/entry.desktop -share/locale/ru/flag.png -share/locale/sk/LC_MESSAGES/aktion.mo -share/locale/sk/LC_MESSAGES/amor.mo -share/locale/sk/LC_MESSAGES/appletproxy.mo -share/locale/sk/LC_MESSAGES/ark.mo -share/locale/sk/LC_MESSAGES/artsbuilder.mo -share/locale/sk/LC_MESSAGES/artscontrol.mo -share/locale/sk/LC_MESSAGES/babelfish.mo -share/locale/sk/LC_MESSAGES/caitoo.mo -share/locale/sk/LC_MESSAGES/childpanelextension.mo -share/locale/sk/LC_MESSAGES/clockapplet.mo -share/locale/sk/LC_MESSAGES/cupsdconf.mo -share/locale/sk/LC_MESSAGES/desktop.mo -share/locale/sk/LC_MESSAGES/dirfilterplugin.mo -share/locale/sk/LC_MESSAGES/domtreeviewer.mo -share/locale/sk/LC_MESSAGES/drkonqi.mo -share/locale/sk/LC_MESSAGES/empath.mo -share/locale/sk/LC_MESSAGES/extensionproxy.mo -share/locale/sk/LC_MESSAGES/filetypes.mo -share/locale/sk/LC_MESSAGES/gideon.mo -share/locale/sk/LC_MESSAGES/htmlsearch.mo -share/locale/sk/LC_MESSAGES/imgalleryplugin.mo -share/locale/sk/LC_MESSAGES/kab.mo -share/locale/sk/LC_MESSAGES/kabalone.mo -share/locale/sk/LC_MESSAGES/kaccess.mo -share/locale/sk/LC_MESSAGES/kaddressbook.mo -share/locale/sk/LC_MESSAGES/kandy.mo -share/locale/sk/LC_MESSAGES/kappfinder.mo -share/locale/sk/LC_MESSAGES/karchie.mo -share/locale/sk/LC_MESSAGES/karm.mo -share/locale/sk/LC_MESSAGES/kasbarextension.mo -share/locale/sk/LC_MESSAGES/kasteroids.mo -share/locale/sk/LC_MESSAGES/katalog.mo -share/locale/sk/LC_MESSAGES/kate.mo -share/locale/sk/LC_MESSAGES/katehtmltools.mo -share/locale/sk/LC_MESSAGES/kateinsertcommand.mo -share/locale/sk/LC_MESSAGES/katomic.mo -share/locale/sk/LC_MESSAGES/kautorun.mo -share/locale/sk/LC_MESSAGES/kbabel.mo -share/locale/sk/LC_MESSAGES/kbackgammon.mo -share/locale/sk/LC_MESSAGES/kbattleship.mo -share/locale/sk/LC_MESSAGES/kbiff.mo -share/locale/sk/LC_MESSAGES/kblackbox.mo -share/locale/sk/LC_MESSAGES/kcalc.mo -share/locale/sk/LC_MESSAGES/kcharselect.mo -share/locale/sk/LC_MESSAGES/kcharselectapplet.mo -share/locale/sk/LC_MESSAGES/kcmaccess.mo -share/locale/sk/LC_MESSAGES/kcmarts.mo -share/locale/sk/LC_MESSAGES/kcmaudiocd.mo -share/locale/sk/LC_MESSAGES/kcmbackground.mo -share/locale/sk/LC_MESSAGES/kcmbell.mo -share/locale/sk/LC_MESSAGES/kcmcolors.mo -share/locale/sk/LC_MESSAGES/kcmcrypto.mo -share/locale/sk/LC_MESSAGES/kcmcss.mo -share/locale/sk/LC_MESSAGES/kcmemail.mo -share/locale/sk/LC_MESSAGES/kcmenergy.mo -share/locale/sk/LC_MESSAGES/kcmfonts.mo -share/locale/sk/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/sk/LC_MESSAGES/kcmicons.mo -share/locale/sk/LC_MESSAGES/kcminfo.mo -share/locale/sk/LC_MESSAGES/kcminput.mo -share/locale/sk/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/sk/LC_MESSAGES/kcmkamera.mo -share/locale/sk/LC_MESSAGES/kcmkclock.mo -share/locale/sk/LC_MESSAGES/kcmkdb.mo -share/locale/sk/LC_MESSAGES/kcmkeys.mo -share/locale/sk/LC_MESSAGES/kcmkicker.mo -share/locale/sk/LC_MESSAGES/kcmkio.mo -share/locale/sk/LC_MESSAGES/kcmkmix.mo -share/locale/sk/LC_MESSAGES/kcmkonq.mo -share/locale/sk/LC_MESSAGES/kcmkonqhtml.mo -share/locale/sk/LC_MESSAGES/kcmkonsole.mo -share/locale/sk/LC_MESSAGES/kcmktalkd.mo -share/locale/sk/LC_MESSAGES/kcmkurifilt.mo -share/locale/sk/LC_MESSAGES/kcmkwindecoration.mo -share/locale/sk/LC_MESSAGES/kcmkwintheme.mo -share/locale/sk/LC_MESSAGES/kcmkwm.mo -share/locale/sk/LC_MESSAGES/kcmlanbrowser.mo -share/locale/sk/LC_MESSAGES/kcmlaptop.mo -share/locale/sk/LC_MESSAGES/kcmlaunch.mo -share/locale/sk/LC_MESSAGES/kcmlayout.mo -share/locale/sk/LC_MESSAGES/kcmlilo.mo -share/locale/sk/LC_MESSAGES/kcmlinuz.mo -share/locale/sk/LC_MESSAGES/kcmlocale.mo -share/locale/sk/LC_MESSAGES/kcmmidi.mo -share/locale/sk/LC_MESSAGES/kcmnewsticker.mo -share/locale/sk/LC_MESSAGES/kcmnotify.mo -share/locale/sk/LC_MESSAGES/kcmsamba.mo -share/locale/sk/LC_MESSAGES/kcmscreensaver.mo -share/locale/sk/LC_MESSAGES/kcmsmserver.mo -share/locale/sk/LC_MESSAGES/kcmsocks.mo -share/locale/sk/LC_MESSAGES/kcmspellchecking.mo -share/locale/sk/LC_MESSAGES/kcmstyle.mo -share/locale/sk/LC_MESSAGES/kcmtaskbar.mo -share/locale/sk/LC_MESSAGES/kcmthemes.mo -share/locale/sk/LC_MESSAGES/kcmusb.mo -share/locale/sk/LC_MESSAGES/kcoloredit.mo -share/locale/sk/LC_MESSAGES/kcontrol.mo -share/locale/sk/LC_MESSAGES/kcron.mo -share/locale/sk/LC_MESSAGES/kdcop.mo -share/locale/sk/LC_MESSAGES/kdebugdialog.mo -share/locale/sk/LC_MESSAGES/kdelibs.mo -share/locale/sk/LC_MESSAGES/kdepasswd.mo -share/locale/sk/LC_MESSAGES/kdeprintfax.mo -share/locale/sk/LC_MESSAGES/kdesktop.mo -share/locale/sk/LC_MESSAGES/kdessh.mo -share/locale/sk/LC_MESSAGES/kdesu.mo -share/locale/sk/LC_MESSAGES/kdesud.mo -share/locale/sk/LC_MESSAGES/kdevelop.mo -share/locale/sk/LC_MESSAGES/kdevtipofday.mo -share/locale/sk/LC_MESSAGES/kdf.mo -share/locale/sk/LC_MESSAGES/kdict.mo -share/locale/sk/LC_MESSAGES/kdictapplet.mo -share/locale/sk/LC_MESSAGES/kdmchooser.mo -share/locale/sk/LC_MESSAGES/kdmconfig.mo -share/locale/sk/LC_MESSAGES/kdmgreet.mo -share/locale/sk/LC_MESSAGES/kdvi.mo -share/locale/sk/LC_MESSAGES/kedit.mo -share/locale/sk/LC_MESSAGES/kfax.mo -share/locale/sk/LC_MESSAGES/kfifteenapplet.mo -share/locale/sk/LC_MESSAGES/kfind.mo -share/locale/sk/LC_MESSAGES/kfindpart.mo -share/locale/sk/LC_MESSAGES/kfinger.mo -share/locale/sk/LC_MESSAGES/kfloppy.mo -share/locale/sk/LC_MESSAGES/kfmclient.mo -share/locale/sk/LC_MESSAGES/kfmexec.mo -share/locale/sk/LC_MESSAGES/kfract.mo -share/locale/sk/LC_MESSAGES/kghostview.mo -share/locale/sk/LC_MESSAGES/khelpcenter.mo -share/locale/sk/LC_MESSAGES/khexedit.mo -share/locale/sk/LC_MESSAGES/khotkeys.mo -share/locale/sk/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/sk/LC_MESSAGES/kicker.mo -share/locale/sk/LC_MESSAGES/kiconedit.mo -share/locale/sk/LC_MESSAGES/kikbd.mo -share/locale/sk/LC_MESSAGES/kio_audiocd.mo -share/locale/sk/LC_MESSAGES/kio_finger.mo -share/locale/sk/LC_MESSAGES/kio_floppy.mo -share/locale/sk/LC_MESSAGES/kio_help.mo -share/locale/sk/LC_MESSAGES/kio_imap4.mo -share/locale/sk/LC_MESSAGES/kio_lan.mo -share/locale/sk/LC_MESSAGES/kio_man.mo -share/locale/sk/LC_MESSAGES/kio_nfs.mo -share/locale/sk/LC_MESSAGES/kio_nntp.mo -share/locale/sk/LC_MESSAGES/kio_pop3.mo -share/locale/sk/LC_MESSAGES/kio_smb.mo -share/locale/sk/LC_MESSAGES/kio_smbro.mo -share/locale/sk/LC_MESSAGES/kit.mo -share/locale/sk/LC_MESSAGES/kjezz.mo -share/locale/sk/LC_MESSAGES/kjobviewer.mo -share/locale/sk/LC_MESSAGES/kjots.mo -share/locale/sk/LC_MESSAGES/kjumpingcube.mo -share/locale/sk/LC_MESSAGES/klaptopdaemon.mo -share/locale/sk/LC_MESSAGES/klegacyimport.mo -share/locale/sk/LC_MESSAGES/kless.mo -share/locale/sk/LC_MESSAGES/klines.mo -share/locale/sk/LC_MESSAGES/klipper.mo -share/locale/sk/LC_MESSAGES/kljettool.mo -share/locale/sk/LC_MESSAGES/klock.mo -share/locale/sk/LC_MESSAGES/klpq.mo -share/locale/sk/LC_MESSAGES/klprfax.mo -share/locale/sk/LC_MESSAGES/kmahjongg.mo -share/locale/sk/LC_MESSAGES/kmail.mo -share/locale/sk/LC_MESSAGES/kmailcvt.mo -share/locale/sk/LC_MESSAGES/kmenuedit.mo -share/locale/sk/LC_MESSAGES/kmid.mo -share/locale/sk/LC_MESSAGES/kmidi.mo -share/locale/sk/LC_MESSAGES/kmines.mo -share/locale/sk/LC_MESSAGES/kminipagerapplet.mo -share/locale/sk/LC_MESSAGES/kmix.mo -share/locale/sk/LC_MESSAGES/kmoon.mo -share/locale/sk/LC_MESSAGES/knewsticker.mo -share/locale/sk/LC_MESSAGES/knode.mo -share/locale/sk/LC_MESSAGES/knotes.mo -share/locale/sk/LC_MESSAGES/knotify.mo -share/locale/sk/LC_MESSAGES/knu.mo -share/locale/sk/LC_MESSAGES/kodo.mo -share/locale/sk/LC_MESSAGES/kolourpicker.mo -share/locale/sk/LC_MESSAGES/konqueror.mo -share/locale/sk/LC_MESSAGES/konquest.mo -share/locale/sk/LC_MESSAGES/konsole.mo -share/locale/sk/LC_MESSAGES/kooka.mo -share/locale/sk/LC_MESSAGES/korganizer.mo -share/locale/sk/LC_MESSAGES/korn.mo -share/locale/sk/LC_MESSAGES/kpackage.mo -share/locale/sk/LC_MESSAGES/kpager.mo -share/locale/sk/LC_MESSAGES/kpaint.mo -share/locale/sk/LC_MESSAGES/kpartapp.mo -share/locale/sk/LC_MESSAGES/kpartsaver.mo -share/locale/sk/LC_MESSAGES/kpat.mo -share/locale/sk/LC_MESSAGES/kpersonalizer.mo -share/locale/sk/LC_MESSAGES/kpilot.mo -share/locale/sk/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/sk/LC_MESSAGES/kpm.mo -share/locale/sk/LC_MESSAGES/kpoker.mo -share/locale/sk/LC_MESSAGES/kppp.mo -share/locale/sk/LC_MESSAGES/kppplogview.mo -share/locale/sk/LC_MESSAGES/kprinter.mo -share/locale/sk/LC_MESSAGES/kreadconfig.mo -share/locale/sk/LC_MESSAGES/kreversi.mo -share/locale/sk/LC_MESSAGES/kruler.mo -share/locale/sk/LC_MESSAGES/krunapplet.mo -share/locale/sk/LC_MESSAGES/ksame.mo -share/locale/sk/LC_MESSAGES/kscd.mo -share/locale/sk/LC_MESSAGES/kscoreapplet.mo -share/locale/sk/LC_MESSAGES/kshisen.mo -share/locale/sk/LC_MESSAGES/ksirc.mo -share/locale/sk/LC_MESSAGES/ksirtet.mo -share/locale/sk/LC_MESSAGES/ksmiletris.mo -share/locale/sk/LC_MESSAGES/ksmserver.mo -share/locale/sk/LC_MESSAGES/ksnake.mo -share/locale/sk/LC_MESSAGES/ksnapshot.mo -share/locale/sk/LC_MESSAGES/ksokoban.mo -share/locale/sk/LC_MESSAGES/kspaceduel.mo -share/locale/sk/LC_MESSAGES/ksplash.mo -share/locale/sk/LC_MESSAGES/kstart.mo -share/locale/sk/LC_MESSAGES/kstartperf.mo -share/locale/sk/LC_MESSAGES/ksysctrl.mo -share/locale/sk/LC_MESSAGES/ksysguard.mo -share/locale/sk/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/sk/LC_MESSAGES/ksysv.mo -share/locale/sk/LC_MESSAGES/ktalk.mo -share/locale/sk/LC_MESSAGES/ktalkd.mo -share/locale/sk/LC_MESSAGES/ktaskbarapplet.mo -share/locale/sk/LC_MESSAGES/kteatime.mo -share/locale/sk/LC_MESSAGES/ktimemon.mo -share/locale/sk/LC_MESSAGES/ktimer.mo -share/locale/sk/LC_MESSAGES/ktip.mo -share/locale/sk/LC_MESSAGES/ktron.mo -share/locale/sk/LC_MESSAGES/ktuberling.mo -share/locale/sk/LC_MESSAGES/ktux.mo -share/locale/sk/LC_MESSAGES/kuser.mo -share/locale/sk/LC_MESSAGES/kview.mo -share/locale/sk/LC_MESSAGES/kviewshell.mo -share/locale/sk/LC_MESSAGES/kwin.mo -share/locale/sk/LC_MESSAGES/kwin4.mo -share/locale/sk/LC_MESSAGES/kworldclock.mo -share/locale/sk/LC_MESSAGES/kwuftpd.mo -share/locale/sk/LC_MESSAGES/kxkb.mo -share/locale/sk/LC_MESSAGES/kxmlrpcd.mo -share/locale/sk/LC_MESSAGES/kxsconfig.mo -share/locale/sk/LC_MESSAGES/libkdegames.mo -share/locale/sk/LC_MESSAGES/libkdenetwork.mo -share/locale/sk/LC_MESSAGES/libkonq.mo -share/locale/sk/LC_MESSAGES/libkscan.mo -share/locale/sk/LC_MESSAGES/libkscreensaver.mo -share/locale/sk/LC_MESSAGES/libkwindefault_config.mo -share/locale/sk/LC_MESSAGES/libkwinicewm_config.mo -share/locale/sk/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/sk/LC_MESSAGES/libkwinquartz_config.mo -share/locale/sk/LC_MESSAGES/libtaskbar.mo -share/locale/sk/LC_MESSAGES/libtaskmanager.mo -share/locale/sk/LC_MESSAGES/lskat.mo -share/locale/sk/LC_MESSAGES/multiplayers.mo -share/locale/sk/LC_MESSAGES/naughtyapplet.mo -share/locale/sk/LC_MESSAGES/noatun.mo -share/locale/sk/LC_MESSAGES/nsplugin.mo -share/locale/sk/LC_MESSAGES/passwords.mo -share/locale/sk/LC_MESSAGES/ppdtranslations.mo -share/locale/sk/LC_MESSAGES/quicklauncher.mo -share/locale/sk/LC_MESSAGES/secpolicy.mo -share/locale/sk/LC_MESSAGES/spy.mo -share/locale/sk/LC_MESSAGES/taskbarextension.mo -share/locale/sk/LC_MESSAGES/twister.mo -share/locale/sk/LC_MESSAGES/uachangerplugin.mo -share/locale/sk/LC_MESSAGES/validatorsplugin.mo -share/locale/sk/LC_MESSAGES/webarchiver.mo -share/locale/sk/charset -share/locale/sk/entry.desktop -share/locale/sk/flag.png -share/locale/sl/LC_MESSAGES/aktion.mo -share/locale/sl/LC_MESSAGES/amor.mo -share/locale/sl/LC_MESSAGES/appletproxy.mo -share/locale/sl/LC_MESSAGES/ark.mo -share/locale/sl/LC_MESSAGES/artsbuilder.mo -share/locale/sl/LC_MESSAGES/artscontrol.mo -share/locale/sl/LC_MESSAGES/babelfish.mo -share/locale/sl/LC_MESSAGES/caitoo.mo -share/locale/sl/LC_MESSAGES/childpanelextension.mo -share/locale/sl/LC_MESSAGES/clockapplet.mo -share/locale/sl/LC_MESSAGES/colfind.mo -share/locale/sl/LC_MESSAGES/columbo.mo -share/locale/sl/LC_MESSAGES/cupsdconf.mo -share/locale/sl/LC_MESSAGES/desktop.mo -share/locale/sl/LC_MESSAGES/devcenter.mo -share/locale/sl/LC_MESSAGES/dirfilterplugin.mo -share/locale/sl/LC_MESSAGES/domtreeviewer.mo -share/locale/sl/LC_MESSAGES/drkonqi.mo -share/locale/sl/LC_MESSAGES/empath.mo -share/locale/sl/LC_MESSAGES/extensionproxy.mo -share/locale/sl/LC_MESSAGES/filetypes.mo -share/locale/sl/LC_MESSAGES/gideon.mo -share/locale/sl/LC_MESSAGES/gofai.mo -share/locale/sl/LC_MESSAGES/htmlsearch.mo -share/locale/sl/LC_MESSAGES/imgalleryplugin.mo -share/locale/sl/LC_MESSAGES/kab.mo -share/locale/sl/LC_MESSAGES/kabalone.mo -share/locale/sl/LC_MESSAGES/kaccess.mo -share/locale/sl/LC_MESSAGES/kaddressbook.mo -share/locale/sl/LC_MESSAGES/kafka.mo -share/locale/sl/LC_MESSAGES/kandy.mo -share/locale/sl/LC_MESSAGES/kappfinder.mo -share/locale/sl/LC_MESSAGES/karchie.mo -share/locale/sl/LC_MESSAGES/karm.mo -share/locale/sl/LC_MESSAGES/kasbarextension.mo -share/locale/sl/LC_MESSAGES/kasteroids.mo -share/locale/sl/LC_MESSAGES/katalog.mo -share/locale/sl/LC_MESSAGES/kate.mo -share/locale/sl/LC_MESSAGES/katomic.mo -share/locale/sl/LC_MESSAGES/kautorun.mo -share/locale/sl/LC_MESSAGES/kbabel.mo -share/locale/sl/LC_MESSAGES/kbackgammon.mo -share/locale/sl/LC_MESSAGES/kbattleship.mo -share/locale/sl/LC_MESSAGES/kbiff.mo -share/locale/sl/LC_MESSAGES/kblackbox.mo -share/locale/sl/LC_MESSAGES/kcalc.mo -share/locale/sl/LC_MESSAGES/kcharselect.mo -share/locale/sl/LC_MESSAGES/kcharselectapplet.mo -share/locale/sl/LC_MESSAGES/kcmaccess.mo -share/locale/sl/LC_MESSAGES/kcmail.mo -share/locale/sl/LC_MESSAGES/kcmarts.mo -share/locale/sl/LC_MESSAGES/kcmaudiocd.mo -share/locale/sl/LC_MESSAGES/kcmbackground.mo -share/locale/sl/LC_MESSAGES/kcmbell.mo -share/locale/sl/LC_MESSAGES/kcmbind.mo -share/locale/sl/LC_MESSAGES/kcmcolors.mo -share/locale/sl/LC_MESSAGES/kcmcrypto.mo -share/locale/sl/LC_MESSAGES/kcmcss.mo -share/locale/sl/LC_MESSAGES/kcmdhcpd.mo -share/locale/sl/LC_MESSAGES/kcmemail.mo -share/locale/sl/LC_MESSAGES/kcmenergy.mo -share/locale/sl/LC_MESSAGES/kcmfonts.mo -share/locale/sl/LC_MESSAGES/kcmgofai.mo -share/locale/sl/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/sl/LC_MESSAGES/kcmicons.mo -share/locale/sl/LC_MESSAGES/kcminfo.mo -share/locale/sl/LC_MESSAGES/kcminput.mo -share/locale/sl/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/sl/LC_MESSAGES/kcmiwatcher.mo -share/locale/sl/LC_MESSAGES/kcmkamera.mo -share/locale/sl/LC_MESSAGES/kcmkclock.mo -share/locale/sl/LC_MESSAGES/kcmkdb.mo -share/locale/sl/LC_MESSAGES/kcmkeys.mo -share/locale/sl/LC_MESSAGES/kcmkicker.mo -share/locale/sl/LC_MESSAGES/kcmkio.mo -share/locale/sl/LC_MESSAGES/kcmkmix.mo -share/locale/sl/LC_MESSAGES/kcmkonq.mo -share/locale/sl/LC_MESSAGES/kcmkonqhtml.mo -share/locale/sl/LC_MESSAGES/kcmkonsole.mo -share/locale/sl/LC_MESSAGES/kcmktalkd.mo -share/locale/sl/LC_MESSAGES/kcmkurifilt.mo -share/locale/sl/LC_MESSAGES/kcmkwindecoration.mo -share/locale/sl/LC_MESSAGES/kcmkwintheme.mo -share/locale/sl/LC_MESSAGES/kcmkwm.mo -share/locale/sl/LC_MESSAGES/kcmlanbrowser.mo -share/locale/sl/LC_MESSAGES/kcmlaptop.mo -share/locale/sl/LC_MESSAGES/kcmlaunch.mo -share/locale/sl/LC_MESSAGES/kcmlayout.mo -share/locale/sl/LC_MESSAGES/kcmlilo.mo -share/locale/sl/LC_MESSAGES/kcmlinuz.mo -share/locale/sl/LC_MESSAGES/kcmlocale.mo -share/locale/sl/LC_MESSAGES/kcmmidi.mo -share/locale/sl/LC_MESSAGES/kcmnewsticker.mo -share/locale/sl/LC_MESSAGES/kcmnotify.mo -share/locale/sl/LC_MESSAGES/kcmodbc.mo -share/locale/sl/LC_MESSAGES/kcmsamba.mo -share/locale/sl/LC_MESSAGES/kcmscreensaver.mo -share/locale/sl/LC_MESSAGES/kcmsmserver.mo -share/locale/sl/LC_MESSAGES/kcmsocks.mo -share/locale/sl/LC_MESSAGES/kcmspellchecking.mo -share/locale/sl/LC_MESSAGES/kcmstyle.mo -share/locale/sl/LC_MESSAGES/kcmtaskbar.mo -share/locale/sl/LC_MESSAGES/kcmthemes.mo -share/locale/sl/LC_MESSAGES/kcmusb.mo -share/locale/sl/LC_MESSAGES/kcoloredit.mo -share/locale/sl/LC_MESSAGES/kcontrol.mo -share/locale/sl/LC_MESSAGES/kcron.mo -share/locale/sl/LC_MESSAGES/kdao.mo -share/locale/sl/LC_MESSAGES/kdcop.mo -share/locale/sl/LC_MESSAGES/kdebugdialog.mo -share/locale/sl/LC_MESSAGES/kdelibs.mo -share/locale/sl/LC_MESSAGES/kdepasswd.mo -share/locale/sl/LC_MESSAGES/kdeprintfax.mo -share/locale/sl/LC_MESSAGES/kdesktop.mo -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/kdevelop.mo -share/locale/sl/LC_MESSAGES/kdevtipofday.mo -share/locale/sl/LC_MESSAGES/kdf.mo -share/locale/sl/LC_MESSAGES/kdict.mo -share/locale/sl/LC_MESSAGES/kdictapplet.mo -share/locale/sl/LC_MESSAGES/kdmchooser.mo -share/locale/sl/LC_MESSAGES/kdmconfig.mo -share/locale/sl/LC_MESSAGES/kdmgreet.mo -share/locale/sl/LC_MESSAGES/kdvi.mo -share/locale/sl/LC_MESSAGES/kedit.mo -share/locale/sl/LC_MESSAGES/keystone.mo -share/locale/sl/LC_MESSAGES/kfax.mo -share/locale/sl/LC_MESSAGES/kfifteenapplet.mo -share/locale/sl/LC_MESSAGES/kfind.mo -share/locale/sl/LC_MESSAGES/kfindpart.mo -share/locale/sl/LC_MESSAGES/kfinger.mo -share/locale/sl/LC_MESSAGES/kfloppy.mo -share/locale/sl/LC_MESSAGES/kfmclient.mo -share/locale/sl/LC_MESSAGES/kfmexec.mo -share/locale/sl/LC_MESSAGES/kformeditor.mo -share/locale/sl/LC_MESSAGES/kformviewer.mo -share/locale/sl/LC_MESSAGES/kfract.mo -share/locale/sl/LC_MESSAGES/kghostview.mo -share/locale/sl/LC_MESSAGES/kglchess.mo -share/locale/sl/LC_MESSAGES/kgrapher.mo -share/locale/sl/LC_MESSAGES/khelpcenter.mo -share/locale/sl/LC_MESSAGES/khexedit.mo -share/locale/sl/LC_MESSAGES/khotkeys.mo -share/locale/sl/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/sl/LC_MESSAGES/kicker.mo -share/locale/sl/LC_MESSAGES/kiconedit.mo -share/locale/sl/LC_MESSAGES/kikbd.mo -share/locale/sl/LC_MESSAGES/kio_audiocd.mo -share/locale/sl/LC_MESSAGES/kio_finger.mo -share/locale/sl/LC_MESSAGES/kio_floppy.mo -share/locale/sl/LC_MESSAGES/kio_help.mo -share/locale/sl/LC_MESSAGES/kio_imap4.mo -share/locale/sl/LC_MESSAGES/kio_lan.mo -share/locale/sl/LC_MESSAGES/kio_man.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_smb.mo -share/locale/sl/LC_MESSAGES/kio_smbro.mo -share/locale/sl/LC_MESSAGES/kit.mo -share/locale/sl/LC_MESSAGES/kjezz.mo -share/locale/sl/LC_MESSAGES/kjobviewer.mo -share/locale/sl/LC_MESSAGES/kjots.mo -share/locale/sl/LC_MESSAGES/kjumpingcube.mo -share/locale/sl/LC_MESSAGES/klaptopdaemon.mo -share/locale/sl/LC_MESSAGES/klegacyimport.mo -share/locale/sl/LC_MESSAGES/kless.mo -share/locale/sl/LC_MESSAGES/klines.mo -share/locale/sl/LC_MESSAGES/klipper.mo -share/locale/sl/LC_MESSAGES/kljettool.mo -share/locale/sl/LC_MESSAGES/klock.mo -share/locale/sl/LC_MESSAGES/klpq.mo -share/locale/sl/LC_MESSAGES/klprfax.mo -share/locale/sl/LC_MESSAGES/kmahjongg.mo -share/locale/sl/LC_MESSAGES/kmail.mo -share/locale/sl/LC_MESSAGES/kmailcvt.mo -share/locale/sl/LC_MESSAGES/kmenuedit.mo -share/locale/sl/LC_MESSAGES/kmessage.mo -share/locale/sl/LC_MESSAGES/kmid.mo -share/locale/sl/LC_MESSAGES/kmidi.mo -share/locale/sl/LC_MESSAGES/kmines.mo -share/locale/sl/LC_MESSAGES/kminipagerapplet.mo -share/locale/sl/LC_MESSAGES/kmix.mo -share/locale/sl/LC_MESSAGES/kmoon.mo -share/locale/sl/LC_MESSAGES/knewsticker.mo -share/locale/sl/LC_MESSAGES/knode.mo -share/locale/sl/LC_MESSAGES/knotes.mo -share/locale/sl/LC_MESSAGES/knotify.mo -share/locale/sl/LC_MESSAGES/knu.mo -share/locale/sl/LC_MESSAGES/kodo.mo -share/locale/sl/LC_MESSAGES/kolourpicker.mo -share/locale/sl/LC_MESSAGES/konqueror.mo -share/locale/sl/LC_MESSAGES/konquest.mo -share/locale/sl/LC_MESSAGES/konsole.mo -share/locale/sl/LC_MESSAGES/kooka.mo -share/locale/sl/LC_MESSAGES/korganizer.mo -share/locale/sl/LC_MESSAGES/korn.mo -share/locale/sl/LC_MESSAGES/kp.mo -share/locale/sl/LC_MESSAGES/kpackage.mo -share/locale/sl/LC_MESSAGES/kpager.mo -share/locale/sl/LC_MESSAGES/kpaint.mo -share/locale/sl/LC_MESSAGES/kpartapp.mo -share/locale/sl/LC_MESSAGES/kpartsaver.mo -share/locale/sl/LC_MESSAGES/kpat.mo -share/locale/sl/LC_MESSAGES/kpersonalizer.mo -share/locale/sl/LC_MESSAGES/kphone.mo -share/locale/sl/LC_MESSAGES/kpilot.mo -share/locale/sl/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/sl/LC_MESSAGES/kpm.mo -share/locale/sl/LC_MESSAGES/kpoker.mo -share/locale/sl/LC_MESSAGES/kppp.mo -share/locale/sl/LC_MESSAGES/kppplogview.mo -share/locale/sl/LC_MESSAGES/kprinter.mo -share/locale/sl/LC_MESSAGES/kreadconfig.mo -share/locale/sl/LC_MESSAGES/kreversi.mo -share/locale/sl/LC_MESSAGES/krn.mo -share/locale/sl/LC_MESSAGES/kruler.mo -share/locale/sl/LC_MESSAGES/krunapplet.mo -share/locale/sl/LC_MESSAGES/ksame.mo -share/locale/sl/LC_MESSAGES/kscd.mo -share/locale/sl/LC_MESSAGES/kscoreapplet.mo -share/locale/sl/LC_MESSAGES/kshisen.mo -share/locale/sl/LC_MESSAGES/ksirc.mo -share/locale/sl/LC_MESSAGES/ksirtet.mo -share/locale/sl/LC_MESSAGES/ksmiletris.mo -share/locale/sl/LC_MESSAGES/ksmserver.mo -share/locale/sl/LC_MESSAGES/ksnake.mo -share/locale/sl/LC_MESSAGES/ksnapshot.mo -share/locale/sl/LC_MESSAGES/ksokoban.mo -share/locale/sl/LC_MESSAGES/kspaceduel.mo -share/locale/sl/LC_MESSAGES/ksplash.mo -share/locale/sl/LC_MESSAGES/kstart.mo -share/locale/sl/LC_MESSAGES/kstartperf.mo -share/locale/sl/LC_MESSAGES/kstockticker.mo -share/locale/sl/LC_MESSAGES/ksysctrl.mo -share/locale/sl/LC_MESSAGES/ksysguard.mo -share/locale/sl/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/sl/LC_MESSAGES/ksysv.mo -share/locale/sl/LC_MESSAGES/ktables.mo -share/locale/sl/LC_MESSAGES/ktalk.mo -share/locale/sl/LC_MESSAGES/ktalkd.mo -share/locale/sl/LC_MESSAGES/ktaskbarapplet.mo -share/locale/sl/LC_MESSAGES/kteatime.mo -share/locale/sl/LC_MESSAGES/ktimemon.mo -share/locale/sl/LC_MESSAGES/ktimer.mo -share/locale/sl/LC_MESSAGES/ktip.mo -share/locale/sl/LC_MESSAGES/ktron.mo -share/locale/sl/LC_MESSAGES/ktuberling.mo -share/locale/sl/LC_MESSAGES/ktux.mo -share/locale/sl/LC_MESSAGES/kuser.mo -share/locale/sl/LC_MESSAGES/kview.mo -share/locale/sl/LC_MESSAGES/kviewshell.mo -share/locale/sl/LC_MESSAGES/kwin.mo -share/locale/sl/LC_MESSAGES/kwin4.mo -share/locale/sl/LC_MESSAGES/kworldclock.mo -share/locale/sl/LC_MESSAGES/kwuftpd.mo -share/locale/sl/LC_MESSAGES/kxkb.mo -share/locale/sl/LC_MESSAGES/kxmlrpcd.mo -share/locale/sl/LC_MESSAGES/kxsconfig.mo -share/locale/sl/LC_MESSAGES/libkdegames.mo -share/locale/sl/LC_MESSAGES/libkdenetwork.mo -share/locale/sl/LC_MESSAGES/libkonq.mo -share/locale/sl/LC_MESSAGES/libkscan.mo -share/locale/sl/LC_MESSAGES/libkscreensaver.mo -share/locale/sl/LC_MESSAGES/libkwindefault_config.mo -share/locale/sl/LC_MESSAGES/libkwinicewm_config.mo -share/locale/sl/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/sl/LC_MESSAGES/libkwinquartz_config.mo -share/locale/sl/LC_MESSAGES/libtaskbar.mo -share/locale/sl/LC_MESSAGES/libtaskmanager.mo -share/locale/sl/LC_MESSAGES/lskat.mo -share/locale/sl/LC_MESSAGES/multiplayers.mo -share/locale/sl/LC_MESSAGES/naughtyapplet.mo -share/locale/sl/LC_MESSAGES/noatun.mo -share/locale/sl/LC_MESSAGES/nsplugin.mo -share/locale/sl/LC_MESSAGES/passwords.mo -share/locale/sl/LC_MESSAGES/ppdtranslations.mo -share/locale/sl/LC_MESSAGES/quicklauncher.mo -share/locale/sl/LC_MESSAGES/secpolicy.mo -share/locale/sl/LC_MESSAGES/spy.mo -share/locale/sl/LC_MESSAGES/taskbarextension.mo -share/locale/sl/LC_MESSAGES/twister.mo -share/locale/sl/LC_MESSAGES/uachangerplugin.mo -share/locale/sl/LC_MESSAGES/validatorsplugin.mo -share/locale/sl/LC_MESSAGES/webarchiver.mo -share/locale/sl/charset -share/locale/sl/entry.desktop -share/locale/sl/flag.png -share/locale/sr/LC_MESSAGES/aktion.mo -share/locale/sr/LC_MESSAGES/amor.mo -share/locale/sr/LC_MESSAGES/appletproxy.mo -share/locale/sr/LC_MESSAGES/ark.mo -share/locale/sr/LC_MESSAGES/artsbuilder.mo -share/locale/sr/LC_MESSAGES/artscontrol.mo -share/locale/sr/LC_MESSAGES/childpanelextension.mo -share/locale/sr/LC_MESSAGES/clockapplet.mo -share/locale/sr/LC_MESSAGES/desktop.mo -share/locale/sr/LC_MESSAGES/drkonqi.mo -share/locale/sr/LC_MESSAGES/empath.mo -share/locale/sr/LC_MESSAGES/extensionproxy.mo -share/locale/sr/LC_MESSAGES/filetypes.mo -share/locale/sr/LC_MESSAGES/htmlsearch.mo -share/locale/sr/LC_MESSAGES/kab.mo -share/locale/sr/LC_MESSAGES/kabalone.mo -share/locale/sr/LC_MESSAGES/kaccess.mo -share/locale/sr/LC_MESSAGES/kaddressbook.mo -share/locale/sr/LC_MESSAGES/kappfinder.mo -share/locale/sr/LC_MESSAGES/karm.mo -share/locale/sr/LC_MESSAGES/kasbarextension.mo -share/locale/sr/LC_MESSAGES/kasteroids.mo -share/locale/sr/LC_MESSAGES/kate.mo -share/locale/sr/LC_MESSAGES/katomic.mo -share/locale/sr/LC_MESSAGES/kbabel.mo -share/locale/sr/LC_MESSAGES/kbackgammon.mo -share/locale/sr/LC_MESSAGES/kblackbox.mo -share/locale/sr/LC_MESSAGES/kcalc.mo -share/locale/sr/LC_MESSAGES/kcharselect.mo -share/locale/sr/LC_MESSAGES/kcharselectapplet.mo -share/locale/sr/LC_MESSAGES/kcmaccess.mo -share/locale/sr/LC_MESSAGES/kcmail.mo -share/locale/sr/LC_MESSAGES/kcmarts.mo -share/locale/sr/LC_MESSAGES/kcmaudiocd.mo -share/locale/sr/LC_MESSAGES/kcmbackground.mo -share/locale/sr/LC_MESSAGES/kcmbell.mo -share/locale/sr/LC_MESSAGES/kcmcolors.mo -share/locale/sr/LC_MESSAGES/kcmcrypto.mo -share/locale/sr/LC_MESSAGES/kcmcss.mo -share/locale/sr/LC_MESSAGES/kcmemail.mo -share/locale/sr/LC_MESSAGES/kcmenergy.mo -share/locale/sr/LC_MESSAGES/kcmfonts.mo -share/locale/sr/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/sr/LC_MESSAGES/kcmicons.mo -share/locale/sr/LC_MESSAGES/kcminfo.mo -share/locale/sr/LC_MESSAGES/kcminput.mo -share/locale/sr/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/sr/LC_MESSAGES/kcmkamera.mo -share/locale/sr/LC_MESSAGES/kcmkclock.mo -share/locale/sr/LC_MESSAGES/kcmkdb.mo -share/locale/sr/LC_MESSAGES/kcmkeys.mo -share/locale/sr/LC_MESSAGES/kcmkicker.mo -share/locale/sr/LC_MESSAGES/kcmkio.mo -share/locale/sr/LC_MESSAGES/kcmkmix.mo -share/locale/sr/LC_MESSAGES/kcmkonq.mo -share/locale/sr/LC_MESSAGES/kcmkonqhtml.mo -share/locale/sr/LC_MESSAGES/kcmkonsole.mo -share/locale/sr/LC_MESSAGES/kcmktalkd.mo -share/locale/sr/LC_MESSAGES/kcmkurifilt.mo -share/locale/sr/LC_MESSAGES/kcmkwindecoration.mo -share/locale/sr/LC_MESSAGES/kcmkwintheme.mo -share/locale/sr/LC_MESSAGES/kcmkwm.mo -share/locale/sr/LC_MESSAGES/kcmlanbrowser.mo -share/locale/sr/LC_MESSAGES/kcmlaptop.mo -share/locale/sr/LC_MESSAGES/kcmlaunch.mo -share/locale/sr/LC_MESSAGES/kcmlayout.mo -share/locale/sr/LC_MESSAGES/kcmlilo.mo -share/locale/sr/LC_MESSAGES/kcmlinuz.mo -share/locale/sr/LC_MESSAGES/kcmlocale.mo -share/locale/sr/LC_MESSAGES/kcmmidi.mo -share/locale/sr/LC_MESSAGES/kcmnotify.mo -share/locale/sr/LC_MESSAGES/kcmsamba.mo -share/locale/sr/LC_MESSAGES/kcmscreensaver.mo -share/locale/sr/LC_MESSAGES/kcmsmserver.mo -share/locale/sr/LC_MESSAGES/kcmsocks.mo -share/locale/sr/LC_MESSAGES/kcmspellchecking.mo -share/locale/sr/LC_MESSAGES/kcmstyle.mo -share/locale/sr/LC_MESSAGES/kcmtaskbar.mo -share/locale/sr/LC_MESSAGES/kcmthemes.mo -share/locale/sr/LC_MESSAGES/kcmusb.mo -share/locale/sr/LC_MESSAGES/kcontrol.mo -share/locale/sr/LC_MESSAGES/kcron.mo -share/locale/sr/LC_MESSAGES/kdcop.mo -share/locale/sr/LC_MESSAGES/kdebugdialog.mo -share/locale/sr/LC_MESSAGES/kdelibs.mo -share/locale/sr/LC_MESSAGES/kdepasswd.mo -share/locale/sr/LC_MESSAGES/kdesktop.mo -share/locale/sr/LC_MESSAGES/kdessh.mo -share/locale/sr/LC_MESSAGES/kdesu.mo -share/locale/sr/LC_MESSAGES/kdesud.mo -share/locale/sr/LC_MESSAGES/kdf.mo -share/locale/sr/LC_MESSAGES/kdmchooser.mo -share/locale/sr/LC_MESSAGES/kdmconfig.mo -share/locale/sr/LC_MESSAGES/kdmgreet.mo -share/locale/sr/LC_MESSAGES/kdvi.mo -share/locale/sr/LC_MESSAGES/kedit.mo -share/locale/sr/LC_MESSAGES/kfax.mo -share/locale/sr/LC_MESSAGES/kfifteenapplet.mo -share/locale/sr/LC_MESSAGES/kfind.mo -share/locale/sr/LC_MESSAGES/kfindpart.mo -share/locale/sr/LC_MESSAGES/kfloppy.mo -share/locale/sr/LC_MESSAGES/kfmclient.mo -share/locale/sr/LC_MESSAGES/kfmexec.mo -share/locale/sr/LC_MESSAGES/kfract.mo -share/locale/sr/LC_MESSAGES/kghostview.mo -share/locale/sr/LC_MESSAGES/khelpcenter.mo -share/locale/sr/LC_MESSAGES/khexedit.mo -share/locale/sr/LC_MESSAGES/khotkeys.mo -share/locale/sr/LC_MESSAGES/kicker.mo -share/locale/sr/LC_MESSAGES/kiconedit.mo -share/locale/sr/LC_MESSAGES/kio_audiocd.mo -share/locale/sr/LC_MESSAGES/kio_finger.mo -share/locale/sr/LC_MESSAGES/kio_floppy.mo -share/locale/sr/LC_MESSAGES/kio_help.mo -share/locale/sr/LC_MESSAGES/kio_imap4.mo -share/locale/sr/LC_MESSAGES/kio_lan.mo -share/locale/sr/LC_MESSAGES/kio_man.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_smb.mo -share/locale/sr/LC_MESSAGES/kio_smbro.mo -share/locale/sr/LC_MESSAGES/kjezz.mo -share/locale/sr/LC_MESSAGES/kjots.mo -share/locale/sr/LC_MESSAGES/kjumpingcube.mo -share/locale/sr/LC_MESSAGES/klaptopdaemon.mo -share/locale/sr/LC_MESSAGES/klegacyimport.mo -share/locale/sr/LC_MESSAGES/kless.mo -share/locale/sr/LC_MESSAGES/klines.mo -share/locale/sr/LC_MESSAGES/klipper.mo -share/locale/sr/LC_MESSAGES/kljettool.mo -share/locale/sr/LC_MESSAGES/klock.mo -share/locale/sr/LC_MESSAGES/klpq.mo -share/locale/sr/LC_MESSAGES/kmahjongg.mo -share/locale/sr/LC_MESSAGES/kmail.mo -share/locale/sr/LC_MESSAGES/kmenuedit.mo -share/locale/sr/LC_MESSAGES/kmid.mo -share/locale/sr/LC_MESSAGES/kmidi.mo -share/locale/sr/LC_MESSAGES/kmines.mo -share/locale/sr/LC_MESSAGES/kminipagerapplet.mo -share/locale/sr/LC_MESSAGES/kmix.mo -share/locale/sr/LC_MESSAGES/kmoon.mo -share/locale/sr/LC_MESSAGES/knotes.mo -share/locale/sr/LC_MESSAGES/knotify.mo -share/locale/sr/LC_MESSAGES/kodo.mo -share/locale/sr/LC_MESSAGES/konqueror.mo -share/locale/sr/LC_MESSAGES/konquest.mo -share/locale/sr/LC_MESSAGES/konsole.mo -share/locale/sr/LC_MESSAGES/korganizer.mo -share/locale/sr/LC_MESSAGES/korn.mo -share/locale/sr/LC_MESSAGES/kpackage.mo -share/locale/sr/LC_MESSAGES/kpager.mo -share/locale/sr/LC_MESSAGES/kpaint.mo -share/locale/sr/LC_MESSAGES/kpartapp.mo -share/locale/sr/LC_MESSAGES/kpartsaver.mo -share/locale/sr/LC_MESSAGES/kpat.mo -share/locale/sr/LC_MESSAGES/kpersonalizer.mo -share/locale/sr/LC_MESSAGES/kpilot.mo -share/locale/sr/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/sr/LC_MESSAGES/kpm.mo -share/locale/sr/LC_MESSAGES/kpoker.mo -share/locale/sr/LC_MESSAGES/kppp.mo -share/locale/sr/LC_MESSAGES/kppplogview.mo -share/locale/sr/LC_MESSAGES/kreadconfig.mo -share/locale/sr/LC_MESSAGES/kreversi.mo -share/locale/sr/LC_MESSAGES/kruler.mo -share/locale/sr/LC_MESSAGES/krunapplet.mo -share/locale/sr/LC_MESSAGES/ksame.mo -share/locale/sr/LC_MESSAGES/kscd.mo -share/locale/sr/LC_MESSAGES/kscoreapplet.mo -share/locale/sr/LC_MESSAGES/kshisen.mo -share/locale/sr/LC_MESSAGES/ksirc.mo -share/locale/sr/LC_MESSAGES/ksirtet.mo -share/locale/sr/LC_MESSAGES/ksmiletris.mo -share/locale/sr/LC_MESSAGES/ksmserver.mo -share/locale/sr/LC_MESSAGES/ksnake.mo -share/locale/sr/LC_MESSAGES/ksnapshot.mo -share/locale/sr/LC_MESSAGES/ksokoban.mo -share/locale/sr/LC_MESSAGES/kspaceduel.mo -share/locale/sr/LC_MESSAGES/ksplash.mo -share/locale/sr/LC_MESSAGES/kstart.mo -share/locale/sr/LC_MESSAGES/kstartperf.mo -share/locale/sr/LC_MESSAGES/kstockticker.mo -share/locale/sr/LC_MESSAGES/ksysctrl.mo -share/locale/sr/LC_MESSAGES/ksysguard.mo -share/locale/sr/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/sr/LC_MESSAGES/ksysv.mo -share/locale/sr/LC_MESSAGES/ktalkd.mo -share/locale/sr/LC_MESSAGES/ktaskbarapplet.mo -share/locale/sr/LC_MESSAGES/kteatime.mo -share/locale/sr/LC_MESSAGES/ktimer.mo -share/locale/sr/LC_MESSAGES/ktip.mo -share/locale/sr/LC_MESSAGES/ktron.mo -share/locale/sr/LC_MESSAGES/ktuberling.mo -share/locale/sr/LC_MESSAGES/ktux.mo -share/locale/sr/LC_MESSAGES/kuser.mo -share/locale/sr/LC_MESSAGES/kview.mo -share/locale/sr/LC_MESSAGES/kviewshell.mo -share/locale/sr/LC_MESSAGES/kwebstat.mo -share/locale/sr/LC_MESSAGES/kwin.mo -share/locale/sr/LC_MESSAGES/kwin4.mo -share/locale/sr/LC_MESSAGES/kworldclock.mo -share/locale/sr/LC_MESSAGES/kwuftpd.mo -share/locale/sr/LC_MESSAGES/kxkb.mo -share/locale/sr/LC_MESSAGES/kxmlrpcd.mo -share/locale/sr/LC_MESSAGES/kxsconfig.mo -share/locale/sr/LC_MESSAGES/libkdegames.mo -share/locale/sr/LC_MESSAGES/libkdenetwork.mo -share/locale/sr/LC_MESSAGES/libkonq.mo -share/locale/sr/LC_MESSAGES/libkscreensaver.mo -share/locale/sr/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/sr/LC_MESSAGES/libkwinquartz_config.mo -share/locale/sr/LC_MESSAGES/libtaskbar.mo -share/locale/sr/LC_MESSAGES/libtaskmanager.mo -share/locale/sr/LC_MESSAGES/lskat.mo -share/locale/sr/LC_MESSAGES/multiplayers.mo -share/locale/sr/LC_MESSAGES/naughtyapplet.mo -share/locale/sr/LC_MESSAGES/noatun.mo -share/locale/sr/LC_MESSAGES/nsplugin.mo -share/locale/sr/LC_MESSAGES/passwords.mo -share/locale/sr/LC_MESSAGES/quicklauncher.mo -share/locale/sr/LC_MESSAGES/secpolicy.mo -share/locale/sr/LC_MESSAGES/spy.mo -share/locale/sr/LC_MESSAGES/taskbarextension.mo -share/locale/sr/LC_MESSAGES/twister.mo -share/locale/sr/charset -share/locale/sr/entry.desktop -share/locale/sr/flag.png -share/locale/sv/LC_MESSAGES/aktion.mo -share/locale/sv/LC_MESSAGES/amor.mo -share/locale/sv/LC_MESSAGES/appletproxy.mo -share/locale/sv/LC_MESSAGES/ark.mo -share/locale/sv/LC_MESSAGES/artsbuilder.mo -share/locale/sv/LC_MESSAGES/artscontrol.mo -share/locale/sv/LC_MESSAGES/babelfish.mo -share/locale/sv/LC_MESSAGES/caitoo.mo -share/locale/sv/LC_MESSAGES/childpanelextension.mo -share/locale/sv/LC_MESSAGES/clockapplet.mo -share/locale/sv/LC_MESSAGES/colfind.mo -share/locale/sv/LC_MESSAGES/columbo.mo -share/locale/sv/LC_MESSAGES/cookbook.mo -share/locale/sv/LC_MESSAGES/cupsdconf.mo -share/locale/sv/LC_MESSAGES/desktop.mo -share/locale/sv/LC_MESSAGES/devcenter.mo -share/locale/sv/LC_MESSAGES/dirfilterplugin.mo -share/locale/sv/LC_MESSAGES/domtreeviewer.mo -share/locale/sv/LC_MESSAGES/drkonqi.mo -share/locale/sv/LC_MESSAGES/empath.mo -share/locale/sv/LC_MESSAGES/extensionproxy.mo -share/locale/sv/LC_MESSAGES/filetypes.mo -share/locale/sv/LC_MESSAGES/gideon.mo -share/locale/sv/LC_MESSAGES/gofai.mo -share/locale/sv/LC_MESSAGES/htmlsearch.mo -share/locale/sv/LC_MESSAGES/imgalleryplugin.mo -share/locale/sv/LC_MESSAGES/kab.mo -share/locale/sv/LC_MESSAGES/kabalone.mo -share/locale/sv/LC_MESSAGES/kaboodle.mo -share/locale/sv/LC_MESSAGES/kaccess.mo -share/locale/sv/LC_MESSAGES/kaddressbook.mo -share/locale/sv/LC_MESSAGES/kafka.mo -share/locale/sv/LC_MESSAGES/kandy.mo -share/locale/sv/LC_MESSAGES/kappfinder.mo -share/locale/sv/LC_MESSAGES/karchie.mo -share/locale/sv/LC_MESSAGES/karchiver.mo -share/locale/sv/LC_MESSAGES/karm.mo -share/locale/sv/LC_MESSAGES/kasbarextension.mo -share/locale/sv/LC_MESSAGES/kasteroids.mo -share/locale/sv/LC_MESSAGES/katalog.mo -share/locale/sv/LC_MESSAGES/kate.mo -share/locale/sv/LC_MESSAGES/katehtmltools.mo -share/locale/sv/LC_MESSAGES/kateinsertcommand.mo -share/locale/sv/LC_MESSAGES/katomic.mo -share/locale/sv/LC_MESSAGES/kautorun.mo -share/locale/sv/LC_MESSAGES/kbabel.mo -share/locale/sv/LC_MESSAGES/kbackgammon.mo -share/locale/sv/LC_MESSAGES/kbattleship.mo -share/locale/sv/LC_MESSAGES/kbiff.mo -share/locale/sv/LC_MESSAGES/kblackbox.mo -share/locale/sv/LC_MESSAGES/kbugbuster.mo -share/locale/sv/LC_MESSAGES/kcalc.mo -share/locale/sv/LC_MESSAGES/kcharselect.mo -share/locale/sv/LC_MESSAGES/kcharselectapplet.mo -share/locale/sv/LC_MESSAGES/kcm_scsimanager.mo -share/locale/sv/LC_MESSAGES/kcmaccess.mo -share/locale/sv/LC_MESSAGES/kcmail.mo -share/locale/sv/LC_MESSAGES/kcmarts.mo -share/locale/sv/LC_MESSAGES/kcmaudiocd.mo -share/locale/sv/LC_MESSAGES/kcmbackground.mo -share/locale/sv/LC_MESSAGES/kcmbell.mo -share/locale/sv/LC_MESSAGES/kcmbind.mo -share/locale/sv/LC_MESSAGES/kcmcolors.mo -share/locale/sv/LC_MESSAGES/kcmcrypto.mo -share/locale/sv/LC_MESSAGES/kcmcss.mo -share/locale/sv/LC_MESSAGES/kcmdhcpd.mo -share/locale/sv/LC_MESSAGES/kcmemail.mo -share/locale/sv/LC_MESSAGES/kcmenergy.mo -share/locale/sv/LC_MESSAGES/kcmfonts.mo -share/locale/sv/LC_MESSAGES/kcmgofai.mo -share/locale/sv/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/sv/LC_MESSAGES/kcmicons.mo -share/locale/sv/LC_MESSAGES/kcminfo.mo -share/locale/sv/LC_MESSAGES/kcminput.mo -share/locale/sv/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/sv/LC_MESSAGES/kcmiwatcher.mo -share/locale/sv/LC_MESSAGES/kcmkamera.mo -share/locale/sv/LC_MESSAGES/kcmkclock.mo -share/locale/sv/LC_MESSAGES/kcmkdb.mo -share/locale/sv/LC_MESSAGES/kcmkeys.mo -share/locale/sv/LC_MESSAGES/kcmkicker.mo -share/locale/sv/LC_MESSAGES/kcmkio.mo -share/locale/sv/LC_MESSAGES/kcmkmix.mo -share/locale/sv/LC_MESSAGES/kcmkonq.mo -share/locale/sv/LC_MESSAGES/kcmkonqhtml.mo -share/locale/sv/LC_MESSAGES/kcmkonsole.mo -share/locale/sv/LC_MESSAGES/kcmktalkd.mo -share/locale/sv/LC_MESSAGES/kcmkurifilt.mo -share/locale/sv/LC_MESSAGES/kcmkwindecoration.mo -share/locale/sv/LC_MESSAGES/kcmkwintheme.mo -share/locale/sv/LC_MESSAGES/kcmkwm.mo -share/locale/sv/LC_MESSAGES/kcmlanbrowser.mo -share/locale/sv/LC_MESSAGES/kcmlaptop.mo -share/locale/sv/LC_MESSAGES/kcmlaunch.mo -share/locale/sv/LC_MESSAGES/kcmlayout.mo -share/locale/sv/LC_MESSAGES/kcmlilo.mo -share/locale/sv/LC_MESSAGES/kcmlinuz.mo -share/locale/sv/LC_MESSAGES/kcmlocale.mo -share/locale/sv/LC_MESSAGES/kcmmediacontrol.mo -share/locale/sv/LC_MESSAGES/kcmmidi.mo -share/locale/sv/LC_MESSAGES/kcmnapster.mo -share/locale/sv/LC_MESSAGES/kcmnewsticker.mo -share/locale/sv/LC_MESSAGES/kcmnotify.mo -share/locale/sv/LC_MESSAGES/kcmodbc.mo -share/locale/sv/LC_MESSAGES/kcmsamba.mo -share/locale/sv/LC_MESSAGES/kcmscreensaver.mo -share/locale/sv/LC_MESSAGES/kcmsmserver.mo -share/locale/sv/LC_MESSAGES/kcmsocks.mo -share/locale/sv/LC_MESSAGES/kcmspellchecking.mo -share/locale/sv/LC_MESSAGES/kcmstyle.mo -share/locale/sv/LC_MESSAGES/kcmtaskbar.mo -share/locale/sv/LC_MESSAGES/kcmthemes.mo -share/locale/sv/LC_MESSAGES/kcmusb.mo -share/locale/sv/LC_MESSAGES/kcmuserenv.mo -share/locale/sv/LC_MESSAGES/kcoloredit.mo -share/locale/sv/LC_MESSAGES/kcontrol.mo -share/locale/sv/LC_MESSAGES/kcron.mo -share/locale/sv/LC_MESSAGES/kdao.mo -share/locale/sv/LC_MESSAGES/kdbbrowser.mo -share/locale/sv/LC_MESSAGES/kdcop.mo -share/locale/sv/LC_MESSAGES/kdebugdialog.mo -share/locale/sv/LC_MESSAGES/kdelibs.mo -share/locale/sv/LC_MESSAGES/kdepasswd.mo -share/locale/sv/LC_MESSAGES/kdeprintfax.mo -share/locale/sv/LC_MESSAGES/kdesktop.mo -share/locale/sv/LC_MESSAGES/kdessh.mo -share/locale/sv/LC_MESSAGES/kdestdifacedemo.mo -share/locale/sv/LC_MESSAGES/kdesu.mo -share/locale/sv/LC_MESSAGES/kdesud.mo -share/locale/sv/LC_MESSAGES/kdevelop.mo -share/locale/sv/LC_MESSAGES/kdevtipofday.mo -share/locale/sv/LC_MESSAGES/kdf.mo -share/locale/sv/LC_MESSAGES/kdict.mo -share/locale/sv/LC_MESSAGES/kdictapplet.mo -share/locale/sv/LC_MESSAGES/kdiff.mo -share/locale/sv/LC_MESSAGES/kdmchooser.mo -share/locale/sv/LC_MESSAGES/kdmconfig.mo -share/locale/sv/LC_MESSAGES/kdmgreet.mo -share/locale/sv/LC_MESSAGES/kdvi.mo -share/locale/sv/LC_MESSAGES/kedit.mo -share/locale/sv/LC_MESSAGES/keystone.mo -share/locale/sv/LC_MESSAGES/kfax.mo -share/locale/sv/LC_MESSAGES/kfifteenapplet.mo -share/locale/sv/LC_MESSAGES/kfind.mo -share/locale/sv/LC_MESSAGES/kfindpart.mo -share/locale/sv/LC_MESSAGES/kfinger.mo -share/locale/sv/LC_MESSAGES/kfloppy.mo -share/locale/sv/LC_MESSAGES/kfmclient.mo -share/locale/sv/LC_MESSAGES/kfmexec.mo -share/locale/sv/LC_MESSAGES/kfontinst.mo -share/locale/sv/LC_MESSAGES/kformeditor.mo -share/locale/sv/LC_MESSAGES/kformviewer.mo -share/locale/sv/LC_MESSAGES/kfract.mo -share/locale/sv/LC_MESSAGES/kghostview.mo -share/locale/sv/LC_MESSAGES/kglchess.mo -share/locale/sv/LC_MESSAGES/kgnuplot.mo -share/locale/sv/LC_MESSAGES/kgrapher.mo -share/locale/sv/LC_MESSAGES/khelpcenter.mo -share/locale/sv/LC_MESSAGES/khexedit.mo -share/locale/sv/LC_MESSAGES/khotkeys.mo -share/locale/sv/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/sv/LC_MESSAGES/kicker.mo -share/locale/sv/LC_MESSAGES/kiconedit.mo -share/locale/sv/LC_MESSAGES/kicq.mo -share/locale/sv/LC_MESSAGES/kikbd.mo -share/locale/sv/LC_MESSAGES/kim.mo -share/locale/sv/LC_MESSAGES/kio_audiocd.mo -share/locale/sv/LC_MESSAGES/kio_finger.mo -share/locale/sv/LC_MESSAGES/kio_floppy.mo -share/locale/sv/LC_MESSAGES/kio_help.mo -share/locale/sv/LC_MESSAGES/kio_imap4.mo -share/locale/sv/LC_MESSAGES/kio_lan.mo -share/locale/sv/LC_MESSAGES/kio_man.mo -share/locale/sv/LC_MESSAGES/kio_nfs.mo -share/locale/sv/LC_MESSAGES/kio_nntp.mo -share/locale/sv/LC_MESSAGES/kio_pop3.mo -share/locale/sv/LC_MESSAGES/kio_smb.mo -share/locale/sv/LC_MESSAGES/kio_smbro.mo -share/locale/sv/LC_MESSAGES/kit.mo -share/locale/sv/LC_MESSAGES/kjezz.mo -share/locale/sv/LC_MESSAGES/kjobviewer.mo -share/locale/sv/LC_MESSAGES/kjots.mo -share/locale/sv/LC_MESSAGES/kjumpingcube.mo -share/locale/sv/LC_MESSAGES/klaptopdaemon.mo -share/locale/sv/LC_MESSAGES/klegacyimport.mo -share/locale/sv/LC_MESSAGES/kless.mo -share/locale/sv/LC_MESSAGES/klines.mo -share/locale/sv/LC_MESSAGES/klipper.mo -share/locale/sv/LC_MESSAGES/kljettool.mo -share/locale/sv/LC_MESSAGES/klock.mo -share/locale/sv/LC_MESSAGES/klpq.mo -share/locale/sv/LC_MESSAGES/klprfax.mo -share/locale/sv/LC_MESSAGES/kmahjongg.mo -share/locale/sv/LC_MESSAGES/kmail.mo -share/locale/sv/LC_MESSAGES/kmailcvt.mo -share/locale/sv/LC_MESSAGES/kmake.mo -share/locale/sv/LC_MESSAGES/kmenuedit.mo -share/locale/sv/LC_MESSAGES/kmessage.mo -share/locale/sv/LC_MESSAGES/kmid.mo -share/locale/sv/LC_MESSAGES/kmidi.mo -share/locale/sv/LC_MESSAGES/kmines.mo -share/locale/sv/LC_MESSAGES/kminipagerapplet.mo -share/locale/sv/LC_MESSAGES/kmix.mo -share/locale/sv/LC_MESSAGES/kmms.mo -share/locale/sv/LC_MESSAGES/kmonop.mo -share/locale/sv/LC_MESSAGES/kmoon.mo -share/locale/sv/LC_MESSAGES/knetmgr.mo -share/locale/sv/LC_MESSAGES/knewsticker.mo -share/locale/sv/LC_MESSAGES/knode.mo -share/locale/sv/LC_MESSAGES/knotes.mo -share/locale/sv/LC_MESSAGES/knotify.mo -share/locale/sv/LC_MESSAGES/knu.mo -share/locale/sv/LC_MESSAGES/kodo.mo -share/locale/sv/LC_MESSAGES/kolourpicker.mo -share/locale/sv/LC_MESSAGES/konqueror.mo -share/locale/sv/LC_MESSAGES/konquest.mo -share/locale/sv/LC_MESSAGES/konsole.mo -share/locale/sv/LC_MESSAGES/konv.mo -share/locale/sv/LC_MESSAGES/kooka.mo -share/locale/sv/LC_MESSAGES/kopennap.mo -share/locale/sv/LC_MESSAGES/korganizer.mo -share/locale/sv/LC_MESSAGES/korn.mo -share/locale/sv/LC_MESSAGES/kp.mo -share/locale/sv/LC_MESSAGES/kpackage.mo -share/locale/sv/LC_MESSAGES/kpager.mo -share/locale/sv/LC_MESSAGES/kpaint.mo -share/locale/sv/LC_MESSAGES/kpartapp.mo -share/locale/sv/LC_MESSAGES/kpartsaver.mo -share/locale/sv/LC_MESSAGES/kpat.mo -share/locale/sv/LC_MESSAGES/kpersonalizer.mo -share/locale/sv/LC_MESSAGES/kphone.mo -share/locale/sv/LC_MESSAGES/kpilot.mo -share/locale/sv/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/sv/LC_MESSAGES/kpm.mo -share/locale/sv/LC_MESSAGES/kpoker.mo -share/locale/sv/LC_MESSAGES/kpovmodeler.mo -share/locale/sv/LC_MESSAGES/kppp.mo -share/locale/sv/LC_MESSAGES/kppplogview.mo -share/locale/sv/LC_MESSAGES/kprinter.mo -share/locale/sv/LC_MESSAGES/kreadconfig.mo -share/locale/sv/LC_MESSAGES/kreversi.mo -share/locale/sv/LC_MESSAGES/krn.mo -share/locale/sv/LC_MESSAGES/kruler.mo -share/locale/sv/LC_MESSAGES/krunapplet.mo -share/locale/sv/LC_MESSAGES/ksame.mo -share/locale/sv/LC_MESSAGES/kscd.mo -share/locale/sv/LC_MESSAGES/kscoreapplet.mo -share/locale/sv/LC_MESSAGES/kshisen.mo -share/locale/sv/LC_MESSAGES/ksirc.mo -share/locale/sv/LC_MESSAGES/ksirtet.mo -share/locale/sv/LC_MESSAGES/ksmiletris.mo -share/locale/sv/LC_MESSAGES/ksmserver.mo -share/locale/sv/LC_MESSAGES/ksnake.mo -share/locale/sv/LC_MESSAGES/ksnapshot.mo -share/locale/sv/LC_MESSAGES/ksokoban.mo -share/locale/sv/LC_MESSAGES/kspaceduel.mo -share/locale/sv/LC_MESSAGES/ksplash.mo -share/locale/sv/LC_MESSAGES/kstart.mo -share/locale/sv/LC_MESSAGES/kstartperf.mo -share/locale/sv/LC_MESSAGES/kstockticker.mo -share/locale/sv/LC_MESSAGES/ksysctrl.mo -share/locale/sv/LC_MESSAGES/ksysguard.mo -share/locale/sv/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/sv/LC_MESSAGES/ksystrayproxy.mo -share/locale/sv/LC_MESSAGES/ksysv.mo -share/locale/sv/LC_MESSAGES/ktables.mo -share/locale/sv/LC_MESSAGES/ktalk.mo -share/locale/sv/LC_MESSAGES/ktalkd.mo -share/locale/sv/LC_MESSAGES/ktaskbarapplet.mo -share/locale/sv/LC_MESSAGES/kteatime.mo -share/locale/sv/LC_MESSAGES/ktimemon.mo -share/locale/sv/LC_MESSAGES/ktimer.mo -share/locale/sv/LC_MESSAGES/ktip.mo -share/locale/sv/LC_MESSAGES/ktouch.mo -share/locale/sv/LC_MESSAGES/ktron.mo -share/locale/sv/LC_MESSAGES/ktuberling.mo -share/locale/sv/LC_MESSAGES/ktux.mo -share/locale/sv/LC_MESSAGES/kuser.mo -share/locale/sv/LC_MESSAGES/kvidmode.mo -share/locale/sv/LC_MESSAGES/kview.mo -share/locale/sv/LC_MESSAGES/kviewshell.mo -share/locale/sv/LC_MESSAGES/kwebstat.mo -share/locale/sv/LC_MESSAGES/kwin.mo -share/locale/sv/LC_MESSAGES/kwin4.mo -share/locale/sv/LC_MESSAGES/kworldclock.mo -share/locale/sv/LC_MESSAGES/kworldwatch.mo -share/locale/sv/LC_MESSAGES/kwuftpd.mo -share/locale/sv/LC_MESSAGES/kxkb.mo -share/locale/sv/LC_MESSAGES/kxmlrpcd.mo -share/locale/sv/LC_MESSAGES/kxsconfig.mo -share/locale/sv/LC_MESSAGES/libkdegames.mo -share/locale/sv/LC_MESSAGES/libkdenetwork.mo -share/locale/sv/LC_MESSAGES/libkonq.mo -share/locale/sv/LC_MESSAGES/libkscan.mo -share/locale/sv/LC_MESSAGES/libkscreensaver.mo -share/locale/sv/LC_MESSAGES/libkwindefault_config.mo -share/locale/sv/LC_MESSAGES/libkwinicewm_config.mo -share/locale/sv/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/sv/LC_MESSAGES/libkwinquartz_config.mo -share/locale/sv/LC_MESSAGES/libtaskbar.mo -share/locale/sv/LC_MESSAGES/libtaskmanager.mo -share/locale/sv/LC_MESSAGES/lskat.mo -share/locale/sv/LC_MESSAGES/mediacontrol.mo -share/locale/sv/LC_MESSAGES/multiplayers.mo -share/locale/sv/LC_MESSAGES/naughtyapplet.mo -share/locale/sv/LC_MESSAGES/noatun.mo -share/locale/sv/LC_MESSAGES/nsplugin.mo -share/locale/sv/LC_MESSAGES/passwords.mo -share/locale/sv/LC_MESSAGES/ppdtranslations.mo -share/locale/sv/LC_MESSAGES/pws.mo -share/locale/sv/LC_MESSAGES/quicklauncher.mo -share/locale/sv/LC_MESSAGES/secpolicy.mo -share/locale/sv/LC_MESSAGES/spy.mo -share/locale/sv/LC_MESSAGES/taskbarextension.mo -share/locale/sv/LC_MESSAGES/twister.mo -share/locale/sv/LC_MESSAGES/uachangerplugin.mo -share/locale/sv/LC_MESSAGES/validatorsplugin.mo -share/locale/sv/LC_MESSAGES/webarchiver.mo -share/locale/sv/charset -share/locale/sv/entry.desktop -share/locale/sv/flag.png -share/locale/ta/LC_MESSAGES/appletproxy.mo -share/locale/ta/LC_MESSAGES/ark.mo -share/locale/ta/LC_MESSAGES/childpanelextension.mo -share/locale/ta/LC_MESSAGES/clockapplet.mo -share/locale/ta/LC_MESSAGES/cupsdconf.mo -share/locale/ta/LC_MESSAGES/desktop.mo -share/locale/ta/LC_MESSAGES/drkonqi.mo -share/locale/ta/LC_MESSAGES/extensionproxy.mo -share/locale/ta/LC_MESSAGES/filetypes.mo -share/locale/ta/LC_MESSAGES/htmlsearch.mo -share/locale/ta/LC_MESSAGES/kab.mo -share/locale/ta/LC_MESSAGES/kaccess.mo -share/locale/ta/LC_MESSAGES/kaddressbook.mo -share/locale/ta/LC_MESSAGES/kappfinder.mo -share/locale/ta/LC_MESSAGES/karm.mo -share/locale/ta/LC_MESSAGES/kasbarextension.mo -share/locale/ta/LC_MESSAGES/katalog.mo -share/locale/ta/LC_MESSAGES/kate.mo -share/locale/ta/LC_MESSAGES/kcalc.mo -share/locale/ta/LC_MESSAGES/kcharselect.mo -share/locale/ta/LC_MESSAGES/kcmaccess.mo -share/locale/ta/LC_MESSAGES/kcmarts.mo -share/locale/ta/LC_MESSAGES/kcmaudiocd.mo -share/locale/ta/LC_MESSAGES/kcmbackground.mo -share/locale/ta/LC_MESSAGES/kcmbell.mo -share/locale/ta/LC_MESSAGES/kcmcolors.mo -share/locale/ta/LC_MESSAGES/kcmcrypto.mo -share/locale/ta/LC_MESSAGES/kcmcss.mo -share/locale/ta/LC_MESSAGES/kcmemail.mo -share/locale/ta/LC_MESSAGES/kcmenergy.mo -share/locale/ta/LC_MESSAGES/kcmfonts.mo -share/locale/ta/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/ta/LC_MESSAGES/kcmicons.mo -share/locale/ta/LC_MESSAGES/kcminfo.mo -share/locale/ta/LC_MESSAGES/kcminput.mo -share/locale/ta/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/ta/LC_MESSAGES/kcmkclock.mo -share/locale/ta/LC_MESSAGES/kcmkdb.mo -share/locale/ta/LC_MESSAGES/kcmkeys.mo -share/locale/ta/LC_MESSAGES/kcmkicker.mo -share/locale/ta/LC_MESSAGES/kcmkio.mo -share/locale/ta/LC_MESSAGES/kcmkonq.mo -share/locale/ta/LC_MESSAGES/kcmkonqhtml.mo -share/locale/ta/LC_MESSAGES/kcmkonsole.mo -share/locale/ta/LC_MESSAGES/kcmkurifilt.mo -share/locale/ta/LC_MESSAGES/kcmkwindecoration.mo -share/locale/ta/LC_MESSAGES/kcmkwintheme.mo -share/locale/ta/LC_MESSAGES/kcmkwm.mo -share/locale/ta/LC_MESSAGES/kcmlaptop.mo -share/locale/ta/LC_MESSAGES/kcmlaunch.mo -share/locale/ta/LC_MESSAGES/kcmlayout.mo -share/locale/ta/LC_MESSAGES/kcmlocale.mo -share/locale/ta/LC_MESSAGES/kcmmidi.mo -share/locale/ta/LC_MESSAGES/kcmnotify.mo -share/locale/ta/LC_MESSAGES/kcmsamba.mo -share/locale/ta/LC_MESSAGES/kcmscreensaver.mo -share/locale/ta/LC_MESSAGES/kcmsmserver.mo -share/locale/ta/LC_MESSAGES/kcmsocks.mo -share/locale/ta/LC_MESSAGES/kcmspellchecking.mo -share/locale/ta/LC_MESSAGES/kcmstyle.mo -share/locale/ta/LC_MESSAGES/kcmtaskbar.mo -share/locale/ta/LC_MESSAGES/kcmthemes.mo -share/locale/ta/LC_MESSAGES/kcmusb.mo -share/locale/ta/LC_MESSAGES/kcontrol.mo -share/locale/ta/LC_MESSAGES/kcron.mo -share/locale/ta/LC_MESSAGES/kdat.mo -share/locale/ta/LC_MESSAGES/kdcop.mo -share/locale/ta/LC_MESSAGES/kdebugdialog.mo -share/locale/ta/LC_MESSAGES/kdelibs.mo -share/locale/ta/LC_MESSAGES/kdepasswd.mo -share/locale/ta/LC_MESSAGES/kdeprintfax.mo -share/locale/ta/LC_MESSAGES/kdesktop.mo -share/locale/ta/LC_MESSAGES/kdessh.mo -share/locale/ta/LC_MESSAGES/kdesu.mo -share/locale/ta/LC_MESSAGES/kdesud.mo -share/locale/ta/LC_MESSAGES/kdf.mo -share/locale/ta/LC_MESSAGES/kdmchooser.mo -share/locale/ta/LC_MESSAGES/kdmconfig.mo -share/locale/ta/LC_MESSAGES/kdvi.mo -share/locale/ta/LC_MESSAGES/kedit.mo -share/locale/ta/LC_MESSAGES/kfax.mo -share/locale/ta/LC_MESSAGES/kfind.mo -share/locale/ta/LC_MESSAGES/kfindpart.mo -share/locale/ta/LC_MESSAGES/kfloppy.mo -share/locale/ta/LC_MESSAGES/kfmclient.mo -share/locale/ta/LC_MESSAGES/kfmexec.mo -share/locale/ta/LC_MESSAGES/kfract.mo -share/locale/ta/LC_MESSAGES/kghostview.mo -share/locale/ta/LC_MESSAGES/khelpcenter.mo -share/locale/ta/LC_MESSAGES/khexedit.mo -share/locale/ta/LC_MESSAGES/khotkeys.mo -share/locale/ta/LC_MESSAGES/kicker.mo -share/locale/ta/LC_MESSAGES/kiconedit.mo -share/locale/ta/LC_MESSAGES/kio_audiocd.mo -share/locale/ta/LC_MESSAGES/kio_finger.mo -share/locale/ta/LC_MESSAGES/kio_floppy.mo -share/locale/ta/LC_MESSAGES/kio_help.mo -share/locale/ta/LC_MESSAGES/kio_imap4.mo -share/locale/ta/LC_MESSAGES/kio_man.mo -share/locale/ta/LC_MESSAGES/kio_nfs.mo -share/locale/ta/LC_MESSAGES/kio_nntp.mo -share/locale/ta/LC_MESSAGES/kio_pop3.mo -share/locale/ta/LC_MESSAGES/kio_smb.mo -share/locale/ta/LC_MESSAGES/kio_smbro.mo -share/locale/ta/LC_MESSAGES/kjobviewer.mo -share/locale/ta/LC_MESSAGES/kjots.mo -share/locale/ta/LC_MESSAGES/klaptopdaemon.mo -share/locale/ta/LC_MESSAGES/klegacyimport.mo -share/locale/ta/LC_MESSAGES/klipper.mo -share/locale/ta/LC_MESSAGES/kljettool.mo -share/locale/ta/LC_MESSAGES/klock.mo -share/locale/ta/LC_MESSAGES/klpq.mo -share/locale/ta/LC_MESSAGES/kmail.mo -share/locale/ta/LC_MESSAGES/kmenuedit.mo -share/locale/ta/LC_MESSAGES/kminipagerapplet.mo -share/locale/ta/LC_MESSAGES/knotes.mo -share/locale/ta/LC_MESSAGES/knotify.mo -share/locale/ta/LC_MESSAGES/konqueror.mo -share/locale/ta/LC_MESSAGES/konsole.mo -share/locale/ta/LC_MESSAGES/kpackage.mo -share/locale/ta/LC_MESSAGES/kpager.mo -share/locale/ta/LC_MESSAGES/kpaint.mo -share/locale/ta/LC_MESSAGES/kpartapp.mo -share/locale/ta/LC_MESSAGES/kpartsaver.mo -share/locale/ta/LC_MESSAGES/kpersonalizer.mo -share/locale/ta/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/ta/LC_MESSAGES/kpm.mo -share/locale/ta/LC_MESSAGES/kppp.mo -share/locale/ta/LC_MESSAGES/kprinter.mo -share/locale/ta/LC_MESSAGES/kreadconfig.mo -share/locale/ta/LC_MESSAGES/krunapplet.mo -share/locale/ta/LC_MESSAGES/ksmserver.mo -share/locale/ta/LC_MESSAGES/ksnapshot.mo -share/locale/ta/LC_MESSAGES/ksplash.mo -share/locale/ta/LC_MESSAGES/kstart.mo -share/locale/ta/LC_MESSAGES/ksysctrl.mo -share/locale/ta/LC_MESSAGES/ksysguard.mo -share/locale/ta/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/ta/LC_MESSAGES/ksysv.mo -share/locale/ta/LC_MESSAGES/ktaskbarapplet.mo -share/locale/ta/LC_MESSAGES/ktimemon.mo -share/locale/ta/LC_MESSAGES/ktip.mo -share/locale/ta/LC_MESSAGES/kuser.mo -share/locale/ta/LC_MESSAGES/kview.mo -share/locale/ta/LC_MESSAGES/kviewshell.mo -share/locale/ta/LC_MESSAGES/kwin.mo -share/locale/ta/LC_MESSAGES/kwuftpd.mo -share/locale/ta/LC_MESSAGES/kxkb.mo -share/locale/ta/LC_MESSAGES/kxmlrpcd.mo -share/locale/ta/LC_MESSAGES/kxsconfig.mo -share/locale/ta/LC_MESSAGES/libkonq.mo -share/locale/ta/LC_MESSAGES/libkscreensaver.mo -share/locale/ta/LC_MESSAGES/libkwindefault_config.mo -share/locale/ta/LC_MESSAGES/libkwinicewm_config.mo -share/locale/ta/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/ta/LC_MESSAGES/libkwinquartz_config.mo -share/locale/ta/LC_MESSAGES/libtaskbar.mo -share/locale/ta/LC_MESSAGES/libtaskmanager.mo -share/locale/ta/LC_MESSAGES/naughtyapplet.mo -share/locale/ta/LC_MESSAGES/nsplugin.mo -share/locale/ta/LC_MESSAGES/passwords.mo -share/locale/ta/LC_MESSAGES/ppdtranslations.mo -share/locale/ta/LC_MESSAGES/quicklauncher.mo -share/locale/ta/LC_MESSAGES/secpolicy.mo -share/locale/ta/LC_MESSAGES/taskbarextension.mo -share/locale/ta/charset -share/locale/ta/entry.desktop -share/locale/ta/flag.png -share/locale/th/LC_MESSAGES/amor.mo -share/locale/th/LC_MESSAGES/appletproxy.mo -share/locale/th/LC_MESSAGES/ark.mo -share/locale/th/LC_MESSAGES/babelfish.mo -share/locale/th/LC_MESSAGES/childpanelextension.mo -share/locale/th/LC_MESSAGES/clockapplet.mo -share/locale/th/LC_MESSAGES/cupsdconf.mo -share/locale/th/LC_MESSAGES/desktop.mo -share/locale/th/LC_MESSAGES/dirfilterplugin.mo -share/locale/th/LC_MESSAGES/domtreeviewer.mo -share/locale/th/LC_MESSAGES/drkonqi.mo -share/locale/th/LC_MESSAGES/extensionproxy.mo -share/locale/th/LC_MESSAGES/filetypes.mo -share/locale/th/LC_MESSAGES/htmlsearch.mo -share/locale/th/LC_MESSAGES/imgalleryplugin.mo -share/locale/th/LC_MESSAGES/kab.mo -share/locale/th/LC_MESSAGES/kaccess.mo -share/locale/th/LC_MESSAGES/kaddressbook.mo -share/locale/th/LC_MESSAGES/kappfinder.mo -share/locale/th/LC_MESSAGES/karm.mo -share/locale/th/LC_MESSAGES/kasbarextension.mo -share/locale/th/LC_MESSAGES/kate.mo -share/locale/th/LC_MESSAGES/kbgndwm.mo -share/locale/th/LC_MESSAGES/kcalc.mo -share/locale/th/LC_MESSAGES/kcharselect.mo -share/locale/th/LC_MESSAGES/kcharselectapplet.mo -share/locale/th/LC_MESSAGES/kcmaccess.mo -share/locale/th/LC_MESSAGES/kcmarts.mo -share/locale/th/LC_MESSAGES/kcmaudiocd.mo -share/locale/th/LC_MESSAGES/kcmbackground.mo -share/locale/th/LC_MESSAGES/kcmbell.mo -share/locale/th/LC_MESSAGES/kcmcolors.mo -share/locale/th/LC_MESSAGES/kcmcrypto.mo -share/locale/th/LC_MESSAGES/kcmcss.mo -share/locale/th/LC_MESSAGES/kcmdisplay.mo -share/locale/th/LC_MESSAGES/kcmemail.mo -share/locale/th/LC_MESSAGES/kcmenergy.mo -share/locale/th/LC_MESSAGES/kcmfonts.mo -share/locale/th/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/th/LC_MESSAGES/kcmicons.mo -share/locale/th/LC_MESSAGES/kcminfo.mo -share/locale/th/LC_MESSAGES/kcminput.mo -share/locale/th/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/th/LC_MESSAGES/kcmkclock.mo -share/locale/th/LC_MESSAGES/kcmkdb.mo -share/locale/th/LC_MESSAGES/kcmkeys.mo -share/locale/th/LC_MESSAGES/kcmkfm.mo -share/locale/th/LC_MESSAGES/kcmkicker.mo -share/locale/th/LC_MESSAGES/kcmkio.mo -share/locale/th/LC_MESSAGES/kcmkonq.mo -share/locale/th/LC_MESSAGES/kcmkonqhtml.mo -share/locale/th/LC_MESSAGES/kcmkonsole.mo -share/locale/th/LC_MESSAGES/kcmkpanel.mo -share/locale/th/LC_MESSAGES/kcmkurifilt.mo -share/locale/th/LC_MESSAGES/kcmkwindecoration.mo -share/locale/th/LC_MESSAGES/kcmkwintheme.mo -share/locale/th/LC_MESSAGES/kcmkwm.mo -share/locale/th/LC_MESSAGES/kcmlaptop.mo -share/locale/th/LC_MESSAGES/kcmlaunch.mo -share/locale/th/LC_MESSAGES/kcmlayout.mo -share/locale/th/LC_MESSAGES/kcmlilo.mo -share/locale/th/LC_MESSAGES/kcmlinuz.mo -share/locale/th/LC_MESSAGES/kcmlocale.mo -share/locale/th/LC_MESSAGES/kcmmidi.mo -share/locale/th/LC_MESSAGES/kcmnotify.mo -share/locale/th/LC_MESSAGES/kcmsamba.mo -share/locale/th/LC_MESSAGES/kcmscreensaver.mo -share/locale/th/LC_MESSAGES/kcmsmserver.mo -share/locale/th/LC_MESSAGES/kcmsocks.mo -share/locale/th/LC_MESSAGES/kcmspellchecking.mo -share/locale/th/LC_MESSAGES/kcmstyle.mo -share/locale/th/LC_MESSAGES/kcmsyssound.mo -share/locale/th/LC_MESSAGES/kcmtaskbar.mo -share/locale/th/LC_MESSAGES/kcmthemes.mo -share/locale/th/LC_MESSAGES/kcmusb.mo -share/locale/th/LC_MESSAGES/kcontrol.mo -share/locale/th/LC_MESSAGES/kcron.mo -share/locale/th/LC_MESSAGES/kdat.mo -share/locale/th/LC_MESSAGES/kdcop.mo -share/locale/th/LC_MESSAGES/kdebugdialog.mo -share/locale/th/LC_MESSAGES/kdehelp.mo -share/locale/th/LC_MESSAGES/kdelibs.mo -share/locale/th/LC_MESSAGES/kdepasswd.mo -share/locale/th/LC_MESSAGES/kdeprintfax.mo -share/locale/th/LC_MESSAGES/kdesktop.mo -share/locale/th/LC_MESSAGES/kdessh.mo -share/locale/th/LC_MESSAGES/kdesu.mo -share/locale/th/LC_MESSAGES/kdesud.mo -share/locale/th/LC_MESSAGES/kdf.mo -share/locale/th/LC_MESSAGES/kdm.mo -share/locale/th/LC_MESSAGES/kdmchooser.mo -share/locale/th/LC_MESSAGES/kdmconfig.mo -share/locale/th/LC_MESSAGES/kdmgreet.mo -share/locale/th/LC_MESSAGES/kedit.mo -share/locale/th/LC_MESSAGES/kfifteenapplet.mo -share/locale/th/LC_MESSAGES/kfind.mo -share/locale/th/LC_MESSAGES/kfindpart.mo -share/locale/th/LC_MESSAGES/kfloppy.mo -share/locale/th/LC_MESSAGES/kfmclient.mo -share/locale/th/LC_MESSAGES/kfmexec.mo -share/locale/th/LC_MESSAGES/khelpcenter.mo -share/locale/th/LC_MESSAGES/khexedit.mo -share/locale/th/LC_MESSAGES/khotkeys.mo -share/locale/th/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/th/LC_MESSAGES/kicker.mo -share/locale/th/LC_MESSAGES/kio_audiocd.mo -share/locale/th/LC_MESSAGES/kio_finger.mo -share/locale/th/LC_MESSAGES/kio_floppy.mo -share/locale/th/LC_MESSAGES/kio_help.mo -share/locale/th/LC_MESSAGES/kio_imap4.mo -share/locale/th/LC_MESSAGES/kio_man.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_smb.mo -share/locale/th/LC_MESSAGES/kio_smbro.mo -share/locale/th/LC_MESSAGES/kjobviewer.mo -share/locale/th/LC_MESSAGES/kjots.mo -share/locale/th/LC_MESSAGES/klaptopdaemon.mo -share/locale/th/LC_MESSAGES/klegacyimport.mo -share/locale/th/LC_MESSAGES/klipper.mo -share/locale/th/LC_MESSAGES/kljettool.mo -share/locale/th/LC_MESSAGES/klock.mo -share/locale/th/LC_MESSAGES/klpq.mo -share/locale/th/LC_MESSAGES/klprfax.mo -share/locale/th/LC_MESSAGES/kmenuedit.mo -share/locale/th/LC_MESSAGES/kminipagerapplet.mo -share/locale/th/LC_MESSAGES/kmoon.mo -share/locale/th/LC_MESSAGES/knotes.mo -share/locale/th/LC_MESSAGES/knotify.mo -share/locale/th/LC_MESSAGES/kodo.mo -share/locale/th/LC_MESSAGES/kolourpicker.mo -share/locale/th/LC_MESSAGES/konqueror.mo -share/locale/th/LC_MESSAGES/konsole.mo -share/locale/th/LC_MESSAGES/kpackage.mo -share/locale/th/LC_MESSAGES/kpager.mo -share/locale/th/LC_MESSAGES/kpartapp.mo -share/locale/th/LC_MESSAGES/kpartsaver.mo -share/locale/th/LC_MESSAGES/kpersonalizer.mo -share/locale/th/LC_MESSAGES/kpm.mo -share/locale/th/LC_MESSAGES/kprinter.mo -share/locale/th/LC_MESSAGES/kreadconfig.mo -share/locale/th/LC_MESSAGES/krunapplet.mo -share/locale/th/LC_MESSAGES/kscoreapplet.mo -share/locale/th/LC_MESSAGES/ksmserver.mo -share/locale/th/LC_MESSAGES/ksplash.mo -share/locale/th/LC_MESSAGES/kstart.mo -share/locale/th/LC_MESSAGES/ksysctrl.mo -share/locale/th/LC_MESSAGES/ksysguard.mo -share/locale/th/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/th/LC_MESSAGES/ksysv.mo -share/locale/th/LC_MESSAGES/ktaskbarapplet.mo -share/locale/th/LC_MESSAGES/kteatime.mo -share/locale/th/LC_MESSAGES/ktimemon.mo -share/locale/th/LC_MESSAGES/ktimer.mo -share/locale/th/LC_MESSAGES/ktip.mo -share/locale/th/LC_MESSAGES/ktux.mo -share/locale/th/LC_MESSAGES/kuser.mo -share/locale/th/LC_MESSAGES/kwin.mo -share/locale/th/LC_MESSAGES/kworldclock.mo -share/locale/th/LC_MESSAGES/kwrite.mo -share/locale/th/LC_MESSAGES/kwuftpd.mo -share/locale/th/LC_MESSAGES/kxkb.mo -share/locale/th/LC_MESSAGES/kxmlrpcd.mo -share/locale/th/LC_MESSAGES/kxsconfig.mo -share/locale/th/LC_MESSAGES/libkonq.mo -share/locale/th/LC_MESSAGES/libkscreensaver.mo -share/locale/th/LC_MESSAGES/libkwindefault_config.mo -share/locale/th/LC_MESSAGES/libkwinicewm_config.mo -share/locale/th/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/th/LC_MESSAGES/libkwinquartz_config.mo -share/locale/th/LC_MESSAGES/libtaskbar.mo -share/locale/th/LC_MESSAGES/libtaskmanager.mo -share/locale/th/LC_MESSAGES/naughtyapplet.mo -share/locale/th/LC_MESSAGES/nsplugin.mo -share/locale/th/LC_MESSAGES/passwords.mo -share/locale/th/LC_MESSAGES/ppdtranslations.mo -share/locale/th/LC_MESSAGES/quicklauncher.mo -share/locale/th/LC_MESSAGES/secpolicy.mo -share/locale/th/LC_MESSAGES/taskbarextension.mo -share/locale/th/LC_MESSAGES/uachangerplugin.mo -share/locale/th/LC_MESSAGES/validatorsplugin.mo -share/locale/th/LC_MESSAGES/webarchiver.mo -share/locale/th/charset -share/locale/th/entry.desktop -share/locale/th/flag.png -share/locale/tr/LC_MESSAGES/abbrowser.mo -share/locale/tr/LC_MESSAGES/aktion.mo -share/locale/tr/LC_MESSAGES/amor.mo -share/locale/tr/LC_MESSAGES/appletproxy.mo -share/locale/tr/LC_MESSAGES/ark.mo -share/locale/tr/LC_MESSAGES/artsbuilder.mo -share/locale/tr/LC_MESSAGES/artscontrol.mo -share/locale/tr/LC_MESSAGES/babelfish.mo -share/locale/tr/LC_MESSAGES/caitoo.mo -share/locale/tr/LC_MESSAGES/childpanelextension.mo -share/locale/tr/LC_MESSAGES/clockapplet.mo -share/locale/tr/LC_MESSAGES/colfind.mo -share/locale/tr/LC_MESSAGES/colftp.mo -share/locale/tr/LC_MESSAGES/colnews.mo -share/locale/tr/LC_MESSAGES/columbo.mo -share/locale/tr/LC_MESSAGES/colweb.mo -share/locale/tr/LC_MESSAGES/colwhois.mo -share/locale/tr/LC_MESSAGES/cupsdconf.mo -share/locale/tr/LC_MESSAGES/desktop.mo -share/locale/tr/LC_MESSAGES/dirfilterplugin.mo -share/locale/tr/LC_MESSAGES/domtreeviewer.mo -share/locale/tr/LC_MESSAGES/drkonqi.mo -share/locale/tr/LC_MESSAGES/empath.mo -share/locale/tr/LC_MESSAGES/extensionproxy.mo -share/locale/tr/LC_MESSAGES/filetypes.mo -share/locale/tr/LC_MESSAGES/gideon.mo -share/locale/tr/LC_MESSAGES/htmlsearch.mo -share/locale/tr/LC_MESSAGES/iconpackager.mo -share/locale/tr/LC_MESSAGES/imgalleryplugin.mo -share/locale/tr/LC_MESSAGES/kab.mo -share/locale/tr/LC_MESSAGES/kabalone.mo -share/locale/tr/LC_MESSAGES/kaccess.mo -share/locale/tr/LC_MESSAGES/kaddressbook.mo -share/locale/tr/LC_MESSAGES/kaiman.mo -share/locale/tr/LC_MESSAGES/kandy.mo -share/locale/tr/LC_MESSAGES/kappfinder.mo -share/locale/tr/LC_MESSAGES/karchie.mo -share/locale/tr/LC_MESSAGES/karm.mo -share/locale/tr/LC_MESSAGES/kasbarextension.mo -share/locale/tr/LC_MESSAGES/kasteroids.mo -share/locale/tr/LC_MESSAGES/katalog.mo -share/locale/tr/LC_MESSAGES/kate.mo -share/locale/tr/LC_MESSAGES/katomic.mo -share/locale/tr/LC_MESSAGES/kautorun.mo -share/locale/tr/LC_MESSAGES/kbabel.mo -share/locale/tr/LC_MESSAGES/kbackgammon.mo -share/locale/tr/LC_MESSAGES/kbattleship.mo -share/locale/tr/LC_MESSAGES/kbiff.mo -share/locale/tr/LC_MESSAGES/kblackbox.mo -share/locale/tr/LC_MESSAGES/kcalc.mo -share/locale/tr/LC_MESSAGES/kcharselect.mo -share/locale/tr/LC_MESSAGES/kcharselectapplet.mo -share/locale/tr/LC_MESSAGES/kcmaccess.mo -share/locale/tr/LC_MESSAGES/kcmarts.mo -share/locale/tr/LC_MESSAGES/kcmaudiocd.mo -share/locale/tr/LC_MESSAGES/kcmbackground.mo -share/locale/tr/LC_MESSAGES/kcmbell.mo -share/locale/tr/LC_MESSAGES/kcmcolors.mo -share/locale/tr/LC_MESSAGES/kcmcrypto.mo -share/locale/tr/LC_MESSAGES/kcmcss.mo -share/locale/tr/LC_MESSAGES/kcmdisplay.mo -share/locale/tr/LC_MESSAGES/kcmdrkonqi.mo -share/locale/tr/LC_MESSAGES/kcmemail.mo -share/locale/tr/LC_MESSAGES/kcmenergy.mo -share/locale/tr/LC_MESSAGES/kcmfontmanager.mo -share/locale/tr/LC_MESSAGES/kcmfonts.mo -share/locale/tr/LC_MESSAGES/kcmhelpcenter.mo -share/locale/tr/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/tr/LC_MESSAGES/kcmicons.mo -share/locale/tr/LC_MESSAGES/kcmiconthemes.mo -share/locale/tr/LC_MESSAGES/kcminfo.mo -share/locale/tr/LC_MESSAGES/kcminput.mo -share/locale/tr/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/tr/LC_MESSAGES/kcmkamera.mo -share/locale/tr/LC_MESSAGES/kcmkclock.mo -share/locale/tr/LC_MESSAGES/kcmkdb.mo -share/locale/tr/LC_MESSAGES/kcmkdesu.mo -share/locale/tr/LC_MESSAGES/kcmkeys.mo -share/locale/tr/LC_MESSAGES/kcmkicker.mo -share/locale/tr/LC_MESSAGES/kcmkio.mo -share/locale/tr/LC_MESSAGES/kcmkmix.mo -share/locale/tr/LC_MESSAGES/kcmkonq.mo -share/locale/tr/LC_MESSAGES/kcmkonqhtml.mo -share/locale/tr/LC_MESSAGES/kcmkonsole.mo -share/locale/tr/LC_MESSAGES/kcmkpanel.mo -share/locale/tr/LC_MESSAGES/kcmktalkd.mo -share/locale/tr/LC_MESSAGES/kcmkurifilt.mo -share/locale/tr/LC_MESSAGES/kcmkwindecoration.mo -share/locale/tr/LC_MESSAGES/kcmkwintheme.mo -share/locale/tr/LC_MESSAGES/kcmkwm.mo -share/locale/tr/LC_MESSAGES/kcmlanbrowser.mo -share/locale/tr/LC_MESSAGES/kcmlaptop.mo -share/locale/tr/LC_MESSAGES/kcmlaunch.mo -share/locale/tr/LC_MESSAGES/kcmlayout.mo -share/locale/tr/LC_MESSAGES/kcmlilo.mo -share/locale/tr/LC_MESSAGES/kcmlinuz.mo -share/locale/tr/LC_MESSAGES/kcmlocale.mo -share/locale/tr/LC_MESSAGES/kcmmidi.mo -share/locale/tr/LC_MESSAGES/kcmnewsticker.mo -share/locale/tr/LC_MESSAGES/kcmnotify.mo -share/locale/tr/LC_MESSAGES/kcmodbc.mo -share/locale/tr/LC_MESSAGES/kcmsamba.mo -share/locale/tr/LC_MESSAGES/kcmsample.mo -share/locale/tr/LC_MESSAGES/kcmscreensaver.mo -share/locale/tr/LC_MESSAGES/kcmshell.mo -share/locale/tr/LC_MESSAGES/kcmsmserver.mo -share/locale/tr/LC_MESSAGES/kcmsocks.mo -share/locale/tr/LC_MESSAGES/kcmspellchecking.mo -share/locale/tr/LC_MESSAGES/kcmstyle.mo -share/locale/tr/LC_MESSAGES/kcmsyssound.mo -share/locale/tr/LC_MESSAGES/kcmtaskbar.mo -share/locale/tr/LC_MESSAGES/kcmthemes.mo -share/locale/tr/LC_MESSAGES/kcmusb.mo -share/locale/tr/LC_MESSAGES/kcmvirtualdesktops.mo -share/locale/tr/LC_MESSAGES/kcoloredit.mo -share/locale/tr/LC_MESSAGES/kcontrol.mo -share/locale/tr/LC_MESSAGES/kcron.mo -share/locale/tr/LC_MESSAGES/kdateapplet.mo -share/locale/tr/LC_MESSAGES/kdcop.mo -share/locale/tr/LC_MESSAGES/kdebugdialog.mo -share/locale/tr/LC_MESSAGES/kdelibs.mo -share/locale/tr/LC_MESSAGES/kdepasswd.mo -share/locale/tr/LC_MESSAGES/kdeprintfax.mo -share/locale/tr/LC_MESSAGES/kdesktop.mo -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/kdevelop.mo -share/locale/tr/LC_MESSAGES/kdevtipofday.mo -share/locale/tr/LC_MESSAGES/kdewizard.mo -share/locale/tr/LC_MESSAGES/kdf.mo -share/locale/tr/LC_MESSAGES/kdict.mo -share/locale/tr/LC_MESSAGES/kdictapplet.mo -share/locale/tr/LC_MESSAGES/kdm.mo -share/locale/tr/LC_MESSAGES/kdmchooser.mo -share/locale/tr/LC_MESSAGES/kdmconfig.mo -share/locale/tr/LC_MESSAGES/kdmgreet.mo -share/locale/tr/LC_MESSAGES/kdvi.mo -share/locale/tr/LC_MESSAGES/kedit.mo -share/locale/tr/LC_MESSAGES/keystone.mo -share/locale/tr/LC_MESSAGES/kfax.mo -share/locale/tr/LC_MESSAGES/kfifteenapplet.mo -share/locale/tr/LC_MESSAGES/kfind.mo -share/locale/tr/LC_MESSAGES/kfindpart.mo -share/locale/tr/LC_MESSAGES/kfinger.mo -share/locale/tr/LC_MESSAGES/kfloppy.mo -share/locale/tr/LC_MESSAGES/kfmclient.mo -share/locale/tr/LC_MESSAGES/kfmexec.mo -share/locale/tr/LC_MESSAGES/kfontmanager.mo -share/locale/tr/LC_MESSAGES/kfract.mo -share/locale/tr/LC_MESSAGES/kghostview.mo -share/locale/tr/LC_MESSAGES/khelpcenter.mo -share/locale/tr/LC_MESSAGES/khexedit.mo -share/locale/tr/LC_MESSAGES/khotkeys.mo -share/locale/tr/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/tr/LC_MESSAGES/kicker.mo -share/locale/tr/LC_MESSAGES/kiconedit.mo -share/locale/tr/LC_MESSAGES/kikbd.mo -share/locale/tr/LC_MESSAGES/kinfobrowser.mo -share/locale/tr/LC_MESSAGES/kio_audiocd.mo -share/locale/tr/LC_MESSAGES/kio_finger.mo -share/locale/tr/LC_MESSAGES/kio_floppy.mo -share/locale/tr/LC_MESSAGES/kio_help.mo -share/locale/tr/LC_MESSAGES/kio_imap4.mo -share/locale/tr/LC_MESSAGES/kio_lan.mo -share/locale/tr/LC_MESSAGES/kio_man.mo -share/locale/tr/LC_MESSAGES/kio_nfs.mo -share/locale/tr/LC_MESSAGES/kio_nntp.mo -share/locale/tr/LC_MESSAGES/kio_pop3.mo -share/locale/tr/LC_MESSAGES/kio_smb.mo -share/locale/tr/LC_MESSAGES/kio_smbro.mo -share/locale/tr/LC_MESSAGES/kit.mo -share/locale/tr/LC_MESSAGES/kjezz.mo -share/locale/tr/LC_MESSAGES/kjobviewer.mo -share/locale/tr/LC_MESSAGES/kjots.mo -share/locale/tr/LC_MESSAGES/kjumpingcube.mo -share/locale/tr/LC_MESSAGES/klaptopdaemon.mo -share/locale/tr/LC_MESSAGES/klegacyimport.mo -share/locale/tr/LC_MESSAGES/kless.mo -share/locale/tr/LC_MESSAGES/klines.mo -share/locale/tr/LC_MESSAGES/klipper.mo -share/locale/tr/LC_MESSAGES/kljettool.mo -share/locale/tr/LC_MESSAGES/klock.mo -share/locale/tr/LC_MESSAGES/klpq.mo -share/locale/tr/LC_MESSAGES/klprfax.mo -share/locale/tr/LC_MESSAGES/kmahjongg.mo -share/locale/tr/LC_MESSAGES/kmail.mo -share/locale/tr/LC_MESSAGES/kmailcvt.mo -share/locale/tr/LC_MESSAGES/kmanbrowser.mo -share/locale/tr/LC_MESSAGES/kmaster.mo -share/locale/tr/LC_MESSAGES/kmedia.mo -share/locale/tr/LC_MESSAGES/kmenuedit.mo -share/locale/tr/LC_MESSAGES/kmid.mo -share/locale/tr/LC_MESSAGES/kmidi.mo -share/locale/tr/LC_MESSAGES/kmines.mo -share/locale/tr/LC_MESSAGES/kminipagerapplet.mo -share/locale/tr/LC_MESSAGES/kmix.mo -share/locale/tr/LC_MESSAGES/kmoon.mo -share/locale/tr/LC_MESSAGES/knewsticker.mo -share/locale/tr/LC_MESSAGES/knode.mo -share/locale/tr/LC_MESSAGES/knotes.mo -share/locale/tr/LC_MESSAGES/knotify.mo -share/locale/tr/LC_MESSAGES/knu.mo -share/locale/tr/LC_MESSAGES/kodo.mo -share/locale/tr/LC_MESSAGES/kolourpicker.mo -share/locale/tr/LC_MESSAGES/konq_searcher.mo -share/locale/tr/LC_MESSAGES/konqueror.mo -share/locale/tr/LC_MESSAGES/konquest.mo -share/locale/tr/LC_MESSAGES/konsole.mo -share/locale/tr/LC_MESSAGES/kooka.mo -share/locale/tr/LC_MESSAGES/koolclockapplet.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/kpager.mo -share/locale/tr/LC_MESSAGES/kpagerapplet.mo -share/locale/tr/LC_MESSAGES/kpaint.mo -share/locale/tr/LC_MESSAGES/kpartapp.mo -share/locale/tr/LC_MESSAGES/kpartsaver.mo -share/locale/tr/LC_MESSAGES/kpat.mo -share/locale/tr/LC_MESSAGES/kpersonalizer.mo -share/locale/tr/LC_MESSAGES/kpilot.mo -share/locale/tr/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/tr/LC_MESSAGES/kpm.mo -share/locale/tr/LC_MESSAGES/kpoker.mo -share/locale/tr/LC_MESSAGES/kppp.mo -share/locale/tr/LC_MESSAGES/kppplogview.mo -share/locale/tr/LC_MESSAGES/kprinter.mo -share/locale/tr/LC_MESSAGES/krdb.mo -share/locale/tr/LC_MESSAGES/kreadconfig.mo -share/locale/tr/LC_MESSAGES/kreversi.mo -share/locale/tr/LC_MESSAGES/krn.mo -share/locale/tr/LC_MESSAGES/kruler.mo -share/locale/tr/LC_MESSAGES/krunapplet.mo -share/locale/tr/LC_MESSAGES/ksame.mo -share/locale/tr/LC_MESSAGES/kscd.mo -share/locale/tr/LC_MESSAGES/kscoreapplet.mo -share/locale/tr/LC_MESSAGES/kshisen.mo -share/locale/tr/LC_MESSAGES/ksirc.mo -share/locale/tr/LC_MESSAGES/ksirtet.mo -share/locale/tr/LC_MESSAGES/ksmiletris.mo -share/locale/tr/LC_MESSAGES/ksmserver.mo -share/locale/tr/LC_MESSAGES/ksnake.mo -share/locale/tr/LC_MESSAGES/ksnapshot.mo -share/locale/tr/LC_MESSAGES/ksokoban.mo -share/locale/tr/LC_MESSAGES/kspaceduel.mo -share/locale/tr/LC_MESSAGES/ksplash.mo -share/locale/tr/LC_MESSAGES/kstart.mo -share/locale/tr/LC_MESSAGES/kstartperf.mo -share/locale/tr/LC_MESSAGES/ksysctrl.mo -share/locale/tr/LC_MESSAGES/ksysguard.mo -share/locale/tr/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/tr/LC_MESSAGES/ksysv.mo -share/locale/tr/LC_MESSAGES/ktalkd.mo -share/locale/tr/LC_MESSAGES/ktaskbarapplet.mo -share/locale/tr/LC_MESSAGES/kteatime.mo -share/locale/tr/LC_MESSAGES/ktetris.mo -share/locale/tr/LC_MESSAGES/kthememgr.mo -share/locale/tr/LC_MESSAGES/ktimemon.mo -share/locale/tr/LC_MESSAGES/ktimer.mo -share/locale/tr/LC_MESSAGES/ktip.mo -share/locale/tr/LC_MESSAGES/ktop.mo -share/locale/tr/LC_MESSAGES/ktron.mo -share/locale/tr/LC_MESSAGES/ktuberling.mo -share/locale/tr/LC_MESSAGES/ktux.mo -share/locale/tr/LC_MESSAGES/kuser.mo -share/locale/tr/LC_MESSAGES/kview.mo -share/locale/tr/LC_MESSAGES/kviewshell.mo -share/locale/tr/LC_MESSAGES/kwelcome.mo -share/locale/tr/LC_MESSAGES/kwin.mo -share/locale/tr/LC_MESSAGES/kwin4.mo -share/locale/tr/LC_MESSAGES/kworldclock.mo -share/locale/tr/LC_MESSAGES/kwuftpd.mo -share/locale/tr/LC_MESSAGES/kxkb.mo -share/locale/tr/LC_MESSAGES/kxmlrpcd.mo -share/locale/tr/LC_MESSAGES/kxsconfig.mo -share/locale/tr/LC_MESSAGES/libkdegames.mo -share/locale/tr/LC_MESSAGES/libkdenetwork.mo -share/locale/tr/LC_MESSAGES/libkhc.mo -share/locale/tr/LC_MESSAGES/libkonq.mo -share/locale/tr/LC_MESSAGES/libkscan.mo -share/locale/tr/LC_MESSAGES/libkscreensaver.mo -share/locale/tr/LC_MESSAGES/libkwindefault_config.mo -share/locale/tr/LC_MESSAGES/libkwinicewm_config.mo -share/locale/tr/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/tr/LC_MESSAGES/libkwinquartz_config.mo -share/locale/tr/LC_MESSAGES/libtaskbar.mo -share/locale/tr/LC_MESSAGES/libtaskmanager.mo -share/locale/tr/LC_MESSAGES/lskat.mo -share/locale/tr/LC_MESSAGES/multiplayers.mo -share/locale/tr/LC_MESSAGES/naughtyapplet.mo -share/locale/tr/LC_MESSAGES/noatun.mo -share/locale/tr/LC_MESSAGES/nsplugin.mo -share/locale/tr/LC_MESSAGES/passwords.mo -share/locale/tr/LC_MESSAGES/pwd.mo -share/locale/tr/LC_MESSAGES/quicklauncher.mo -share/locale/tr/LC_MESSAGES/secpolicy.mo -share/locale/tr/LC_MESSAGES/spy.mo -share/locale/tr/LC_MESSAGES/taskbarextension.mo -share/locale/tr/LC_MESSAGES/twister.mo -share/locale/tr/LC_MESSAGES/uachangerplugin.mo -share/locale/tr/LC_MESSAGES/validatorsplugin.mo -share/locale/tr/LC_MESSAGES/webarchiver.mo -share/locale/tr/charset -share/locale/tr/entry.desktop -share/locale/tr/flag.png -share/locale/uk/LC_MESSAGES/aktion.mo -share/locale/uk/LC_MESSAGES/amor.mo -share/locale/uk/LC_MESSAGES/appletproxy.mo -share/locale/uk/LC_MESSAGES/ark.mo -share/locale/uk/LC_MESSAGES/artsbuilder.mo -share/locale/uk/LC_MESSAGES/artscontrol.mo -share/locale/uk/LC_MESSAGES/babelfish.mo -share/locale/uk/LC_MESSAGES/caitoo.mo -share/locale/uk/LC_MESSAGES/childpanelextension.mo -share/locale/uk/LC_MESSAGES/clockapplet.mo -share/locale/uk/LC_MESSAGES/colfind.mo -share/locale/uk/LC_MESSAGES/columbo.mo -share/locale/uk/LC_MESSAGES/cupsdconf.mo -share/locale/uk/LC_MESSAGES/desktop.mo -share/locale/uk/LC_MESSAGES/devcenter.mo -share/locale/uk/LC_MESSAGES/dirfilterplugin.mo -share/locale/uk/LC_MESSAGES/domtreeviewer.mo -share/locale/uk/LC_MESSAGES/drkonqi.mo -share/locale/uk/LC_MESSAGES/empath.mo -share/locale/uk/LC_MESSAGES/extensionproxy.mo -share/locale/uk/LC_MESSAGES/filetypes.mo -share/locale/uk/LC_MESSAGES/gofai.mo -share/locale/uk/LC_MESSAGES/htmlsearch.mo -share/locale/uk/LC_MESSAGES/imgalleryplugin.mo -share/locale/uk/LC_MESSAGES/kab.mo -share/locale/uk/LC_MESSAGES/kaccess.mo -share/locale/uk/LC_MESSAGES/kaddressbook.mo -share/locale/uk/LC_MESSAGES/kafka.mo -share/locale/uk/LC_MESSAGES/kandy.mo -share/locale/uk/LC_MESSAGES/kappfinder.mo -share/locale/uk/LC_MESSAGES/karchie.mo -share/locale/uk/LC_MESSAGES/karchiver.mo -share/locale/uk/LC_MESSAGES/karm.mo -share/locale/uk/LC_MESSAGES/kasbarextension.mo -share/locale/uk/LC_MESSAGES/kasteroids.mo -share/locale/uk/LC_MESSAGES/katalog.mo -share/locale/uk/LC_MESSAGES/kate.mo -share/locale/uk/LC_MESSAGES/katehtmltools.mo -share/locale/uk/LC_MESSAGES/kateinsertcommand.mo -share/locale/uk/LC_MESSAGES/kautorun.mo -share/locale/uk/LC_MESSAGES/kbattleship.mo -share/locale/uk/LC_MESSAGES/kbiff.mo -share/locale/uk/LC_MESSAGES/kblackbox.mo -share/locale/uk/LC_MESSAGES/kcalc.mo -share/locale/uk/LC_MESSAGES/kcharselect.mo -share/locale/uk/LC_MESSAGES/kcharselectapplet.mo -share/locale/uk/LC_MESSAGES/kcmaccess.mo -share/locale/uk/LC_MESSAGES/kcmail.mo -share/locale/uk/LC_MESSAGES/kcmarts.mo -share/locale/uk/LC_MESSAGES/kcmaudiocd.mo -share/locale/uk/LC_MESSAGES/kcmbackground.mo -share/locale/uk/LC_MESSAGES/kcmbell.mo -share/locale/uk/LC_MESSAGES/kcmbind.mo -share/locale/uk/LC_MESSAGES/kcmcolors.mo -share/locale/uk/LC_MESSAGES/kcmcrypto.mo -share/locale/uk/LC_MESSAGES/kcmcss.mo -share/locale/uk/LC_MESSAGES/kcmdhcpd.mo -share/locale/uk/LC_MESSAGES/kcmemail.mo -share/locale/uk/LC_MESSAGES/kcmenergy.mo -share/locale/uk/LC_MESSAGES/kcmfonts.mo -share/locale/uk/LC_MESSAGES/kcmgofai.mo -share/locale/uk/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/uk/LC_MESSAGES/kcmicons.mo -share/locale/uk/LC_MESSAGES/kcminfo.mo -share/locale/uk/LC_MESSAGES/kcminput.mo -share/locale/uk/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/uk/LC_MESSAGES/kcmiwatcher.mo -share/locale/uk/LC_MESSAGES/kcmkamera.mo -share/locale/uk/LC_MESSAGES/kcmkclock.mo -share/locale/uk/LC_MESSAGES/kcmkdb.mo -share/locale/uk/LC_MESSAGES/kcmkeys.mo -share/locale/uk/LC_MESSAGES/kcmkicker.mo -share/locale/uk/LC_MESSAGES/kcmkio.mo -share/locale/uk/LC_MESSAGES/kcmkmix.mo -share/locale/uk/LC_MESSAGES/kcmkonq.mo -share/locale/uk/LC_MESSAGES/kcmkonqhtml.mo -share/locale/uk/LC_MESSAGES/kcmkonsole.mo -share/locale/uk/LC_MESSAGES/kcmktalkd.mo -share/locale/uk/LC_MESSAGES/kcmkurifilt.mo -share/locale/uk/LC_MESSAGES/kcmkwindecoration.mo -share/locale/uk/LC_MESSAGES/kcmkwintheme.mo -share/locale/uk/LC_MESSAGES/kcmkwm.mo -share/locale/uk/LC_MESSAGES/kcmlanbrowser.mo -share/locale/uk/LC_MESSAGES/kcmlaptop.mo -share/locale/uk/LC_MESSAGES/kcmlaunch.mo -share/locale/uk/LC_MESSAGES/kcmlayout.mo -share/locale/uk/LC_MESSAGES/kcmlilo.mo -share/locale/uk/LC_MESSAGES/kcmlinuz.mo -share/locale/uk/LC_MESSAGES/kcmlocale.mo -share/locale/uk/LC_MESSAGES/kcmmidi.mo -share/locale/uk/LC_MESSAGES/kcmnapster.mo -share/locale/uk/LC_MESSAGES/kcmnewsticker.mo -share/locale/uk/LC_MESSAGES/kcmnotify.mo -share/locale/uk/LC_MESSAGES/kcmodbc.mo -share/locale/uk/LC_MESSAGES/kcmsamba.mo -share/locale/uk/LC_MESSAGES/kcmscreensaver.mo -share/locale/uk/LC_MESSAGES/kcmsmserver.mo -share/locale/uk/LC_MESSAGES/kcmsocks.mo -share/locale/uk/LC_MESSAGES/kcmspellchecking.mo -share/locale/uk/LC_MESSAGES/kcmstyle.mo -share/locale/uk/LC_MESSAGES/kcmtaskbar.mo -share/locale/uk/LC_MESSAGES/kcmthemes.mo -share/locale/uk/LC_MESSAGES/kcmusb.mo -share/locale/uk/LC_MESSAGES/kcoloredit.mo -share/locale/uk/LC_MESSAGES/kcontrol.mo -share/locale/uk/LC_MESSAGES/kcron.mo -share/locale/uk/LC_MESSAGES/kdao.mo -share/locale/uk/LC_MESSAGES/kdcop.mo -share/locale/uk/LC_MESSAGES/kdebugdialog.mo -share/locale/uk/LC_MESSAGES/kdelibs.mo -share/locale/uk/LC_MESSAGES/kdepasswd.mo -share/locale/uk/LC_MESSAGES/kdeprintfax.mo -share/locale/uk/LC_MESSAGES/kdesktop.mo -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/kdict.mo -share/locale/uk/LC_MESSAGES/kdictapplet.mo -share/locale/uk/LC_MESSAGES/kdmchooser.mo -share/locale/uk/LC_MESSAGES/kdmconfig.mo -share/locale/uk/LC_MESSAGES/kdmgreet.mo -share/locale/uk/LC_MESSAGES/kdvi.mo -share/locale/uk/LC_MESSAGES/kedit.mo -share/locale/uk/LC_MESSAGES/keystone.mo -share/locale/uk/LC_MESSAGES/kfax.mo -share/locale/uk/LC_MESSAGES/kfifteenapplet.mo -share/locale/uk/LC_MESSAGES/kfind.mo -share/locale/uk/LC_MESSAGES/kfindpart.mo -share/locale/uk/LC_MESSAGES/kfinger.mo -share/locale/uk/LC_MESSAGES/kfloppy.mo -share/locale/uk/LC_MESSAGES/kfmclient.mo -share/locale/uk/LC_MESSAGES/kfmexec.mo -share/locale/uk/LC_MESSAGES/kformeditor.mo -share/locale/uk/LC_MESSAGES/kformviewer.mo -share/locale/uk/LC_MESSAGES/kfract.mo -share/locale/uk/LC_MESSAGES/kghostview.mo -share/locale/uk/LC_MESSAGES/kglchess.mo -share/locale/uk/LC_MESSAGES/kgrapher.mo -share/locale/uk/LC_MESSAGES/khelpcenter.mo -share/locale/uk/LC_MESSAGES/khexedit.mo -share/locale/uk/LC_MESSAGES/khotkeys.mo -share/locale/uk/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/uk/LC_MESSAGES/kicker.mo -share/locale/uk/LC_MESSAGES/kiconedit.mo -share/locale/uk/LC_MESSAGES/kikbd.mo -share/locale/uk/LC_MESSAGES/kio_audiocd.mo -share/locale/uk/LC_MESSAGES/kio_finger.mo -share/locale/uk/LC_MESSAGES/kio_floppy.mo -share/locale/uk/LC_MESSAGES/kio_help.mo -share/locale/uk/LC_MESSAGES/kio_imap4.mo -share/locale/uk/LC_MESSAGES/kio_lan.mo -share/locale/uk/LC_MESSAGES/kio_man.mo -share/locale/uk/LC_MESSAGES/kio_nfs.mo -share/locale/uk/LC_MESSAGES/kio_nntp.mo -share/locale/uk/LC_MESSAGES/kio_pop3.mo -share/locale/uk/LC_MESSAGES/kio_smb.mo -share/locale/uk/LC_MESSAGES/kio_smbro.mo -share/locale/uk/LC_MESSAGES/kit.mo -share/locale/uk/LC_MESSAGES/kjezz.mo -share/locale/uk/LC_MESSAGES/kjobviewer.mo -share/locale/uk/LC_MESSAGES/kjots.mo -share/locale/uk/LC_MESSAGES/kjumpingcube.mo -share/locale/uk/LC_MESSAGES/klaptopdaemon.mo -share/locale/uk/LC_MESSAGES/klegacyimport.mo -share/locale/uk/LC_MESSAGES/klines.mo -share/locale/uk/LC_MESSAGES/klipper.mo -share/locale/uk/LC_MESSAGES/kljettool.mo -share/locale/uk/LC_MESSAGES/klock.mo -share/locale/uk/LC_MESSAGES/klpq.mo -share/locale/uk/LC_MESSAGES/klprfax.mo -share/locale/uk/LC_MESSAGES/kmail.mo -share/locale/uk/LC_MESSAGES/kmailcvt.mo -share/locale/uk/LC_MESSAGES/kmenuedit.mo -share/locale/uk/LC_MESSAGES/kmid.mo -share/locale/uk/LC_MESSAGES/kmidi.mo -share/locale/uk/LC_MESSAGES/kmines.mo -share/locale/uk/LC_MESSAGES/kminipagerapplet.mo -share/locale/uk/LC_MESSAGES/kmix.mo -share/locale/uk/LC_MESSAGES/kmoon.mo -share/locale/uk/LC_MESSAGES/knetmgr.mo -share/locale/uk/LC_MESSAGES/knewsticker.mo -share/locale/uk/LC_MESSAGES/knode.mo -share/locale/uk/LC_MESSAGES/knotes.mo -share/locale/uk/LC_MESSAGES/knotify.mo -share/locale/uk/LC_MESSAGES/knu.mo -share/locale/uk/LC_MESSAGES/kodo.mo -share/locale/uk/LC_MESSAGES/kolourpicker.mo -share/locale/uk/LC_MESSAGES/konqueror.mo -share/locale/uk/LC_MESSAGES/konquest.mo -share/locale/uk/LC_MESSAGES/konsole.mo -share/locale/uk/LC_MESSAGES/kooka.mo -share/locale/uk/LC_MESSAGES/korganizer.mo -share/locale/uk/LC_MESSAGES/korn.mo -share/locale/uk/LC_MESSAGES/kp.mo -share/locale/uk/LC_MESSAGES/kpackage.mo -share/locale/uk/LC_MESSAGES/kpager.mo -share/locale/uk/LC_MESSAGES/kpaint.mo -share/locale/uk/LC_MESSAGES/kpartapp.mo -share/locale/uk/LC_MESSAGES/kpartsaver.mo -share/locale/uk/LC_MESSAGES/kpersonalizer.mo -share/locale/uk/LC_MESSAGES/kphone.mo -share/locale/uk/LC_MESSAGES/kpilot.mo -share/locale/uk/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/uk/LC_MESSAGES/kpm.mo -share/locale/uk/LC_MESSAGES/kppp.mo -share/locale/uk/LC_MESSAGES/kppplogview.mo -share/locale/uk/LC_MESSAGES/kprinter.mo -share/locale/uk/LC_MESSAGES/kreadconfig.mo -share/locale/uk/LC_MESSAGES/kreversi.mo -share/locale/uk/LC_MESSAGES/kruler.mo -share/locale/uk/LC_MESSAGES/krunapplet.mo -share/locale/uk/LC_MESSAGES/ksame.mo -share/locale/uk/LC_MESSAGES/kscd.mo -share/locale/uk/LC_MESSAGES/kscoreapplet.mo -share/locale/uk/LC_MESSAGES/ksirc.mo -share/locale/uk/LC_MESSAGES/ksirtet.mo -share/locale/uk/LC_MESSAGES/ksmiletris.mo -share/locale/uk/LC_MESSAGES/ksmserver.mo -share/locale/uk/LC_MESSAGES/ksnake.mo -share/locale/uk/LC_MESSAGES/ksnapshot.mo -share/locale/uk/LC_MESSAGES/ksokoban.mo -share/locale/uk/LC_MESSAGES/kspaceduel.mo -share/locale/uk/LC_MESSAGES/ksplash.mo -share/locale/uk/LC_MESSAGES/kstart.mo -share/locale/uk/LC_MESSAGES/kstockticker.mo -share/locale/uk/LC_MESSAGES/ksysctrl.mo -share/locale/uk/LC_MESSAGES/ksysguard.mo -share/locale/uk/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/uk/LC_MESSAGES/ksysv.mo -share/locale/uk/LC_MESSAGES/ktables.mo -share/locale/uk/LC_MESSAGES/ktalk.mo -share/locale/uk/LC_MESSAGES/ktalkd.mo -share/locale/uk/LC_MESSAGES/ktaskbarapplet.mo -share/locale/uk/LC_MESSAGES/kteatime.mo -share/locale/uk/LC_MESSAGES/ktimemon.mo -share/locale/uk/LC_MESSAGES/ktimer.mo -share/locale/uk/LC_MESSAGES/ktip.mo -share/locale/uk/LC_MESSAGES/ktron.mo -share/locale/uk/LC_MESSAGES/ktuberling.mo -share/locale/uk/LC_MESSAGES/ktux.mo -share/locale/uk/LC_MESSAGES/kuser.mo -share/locale/uk/LC_MESSAGES/kview.mo -share/locale/uk/LC_MESSAGES/kviewshell.mo -share/locale/uk/LC_MESSAGES/kwin.mo -share/locale/uk/LC_MESSAGES/kworldclock.mo -share/locale/uk/LC_MESSAGES/kwuftpd.mo -share/locale/uk/LC_MESSAGES/kxkb.mo -share/locale/uk/LC_MESSAGES/kxmlrpcd.mo -share/locale/uk/LC_MESSAGES/kxsconfig.mo -share/locale/uk/LC_MESSAGES/libkdegames.mo -share/locale/uk/LC_MESSAGES/libkdenetwork.mo -share/locale/uk/LC_MESSAGES/libkonq.mo -share/locale/uk/LC_MESSAGES/libkscan.mo -share/locale/uk/LC_MESSAGES/libkscreensaver.mo -share/locale/uk/LC_MESSAGES/libkwindefault_config.mo -share/locale/uk/LC_MESSAGES/libkwinicewm_config.mo -share/locale/uk/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/uk/LC_MESSAGES/libkwinquartz_config.mo -share/locale/uk/LC_MESSAGES/libtaskbar.mo -share/locale/uk/LC_MESSAGES/libtaskmanager.mo -share/locale/uk/LC_MESSAGES/multiplayers.mo -share/locale/uk/LC_MESSAGES/naughtyapplet.mo -share/locale/uk/LC_MESSAGES/noatun.mo -share/locale/uk/LC_MESSAGES/nsplugin.mo -share/locale/uk/LC_MESSAGES/passwords.mo -share/locale/uk/LC_MESSAGES/ppdtranslations.mo -share/locale/uk/LC_MESSAGES/quicklauncher.mo -share/locale/uk/LC_MESSAGES/secpolicy.mo -share/locale/uk/LC_MESSAGES/taskbarextension.mo -share/locale/uk/LC_MESSAGES/twister.mo -share/locale/uk/LC_MESSAGES/uachangerplugin.mo -share/locale/uk/LC_MESSAGES/validatorsplugin.mo -share/locale/uk/LC_MESSAGES/webarchiver.mo -share/locale/uk/charset -share/locale/uk/entry.desktop -share/locale/uk/flag.png -share/locale/xh/LC_MESSAGES/aktion.mo -share/locale/xh/LC_MESSAGES/amor.mo -share/locale/xh/LC_MESSAGES/appletproxy.mo -share/locale/xh/LC_MESSAGES/babelfish.mo -share/locale/xh/LC_MESSAGES/caitoo.mo -share/locale/xh/LC_MESSAGES/childpanelextension.mo -share/locale/xh/LC_MESSAGES/clockapplet.mo -share/locale/xh/LC_MESSAGES/cupsdconf.mo -share/locale/xh/LC_MESSAGES/desktop.mo -share/locale/xh/LC_MESSAGES/dirfilterplugin.mo -share/locale/xh/LC_MESSAGES/domtreeviewer.mo -share/locale/xh/LC_MESSAGES/drkonqi.mo -share/locale/xh/LC_MESSAGES/empath.mo -share/locale/xh/LC_MESSAGES/extensionproxy.mo -share/locale/xh/LC_MESSAGES/filetypes.mo -share/locale/xh/LC_MESSAGES/gideon.mo -share/locale/xh/LC_MESSAGES/htmlsearch.mo -share/locale/xh/LC_MESSAGES/imgalleryplugin.mo -share/locale/xh/LC_MESSAGES/kabalone.mo -share/locale/xh/LC_MESSAGES/kaccess.mo -share/locale/xh/LC_MESSAGES/kaddressbook.mo -share/locale/xh/LC_MESSAGES/kandy.mo -share/locale/xh/LC_MESSAGES/kappfinder.mo -share/locale/xh/LC_MESSAGES/kasbarextension.mo -share/locale/xh/LC_MESSAGES/kasteroids.mo -share/locale/xh/LC_MESSAGES/kate.mo -share/locale/xh/LC_MESSAGES/katehtmltools.mo -share/locale/xh/LC_MESSAGES/kateinsertcommand.mo -share/locale/xh/LC_MESSAGES/katomic.mo -share/locale/xh/LC_MESSAGES/kbabel.mo -share/locale/xh/LC_MESSAGES/kbackgammon.mo -share/locale/xh/LC_MESSAGES/kbattleship.mo -share/locale/xh/LC_MESSAGES/kblackbox.mo -share/locale/xh/LC_MESSAGES/kcalc.mo -share/locale/xh/LC_MESSAGES/kcmaccess.mo -share/locale/xh/LC_MESSAGES/kcmarts.mo -share/locale/xh/LC_MESSAGES/kcmaudiocd.mo -share/locale/xh/LC_MESSAGES/kcmbackground.mo -share/locale/xh/LC_MESSAGES/kcmbell.mo -share/locale/xh/LC_MESSAGES/kcmcolors.mo -share/locale/xh/LC_MESSAGES/kcmcrypto.mo -share/locale/xh/LC_MESSAGES/kcmcss.mo -share/locale/xh/LC_MESSAGES/kcmemail.mo -share/locale/xh/LC_MESSAGES/kcmenergy.mo -share/locale/xh/LC_MESSAGES/kcmfonts.mo -share/locale/xh/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/xh/LC_MESSAGES/kcmicons.mo -share/locale/xh/LC_MESSAGES/kcminfo.mo -share/locale/xh/LC_MESSAGES/kcminput.mo -share/locale/xh/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/xh/LC_MESSAGES/kcmkamera.mo -share/locale/xh/LC_MESSAGES/kcmkclock.mo -share/locale/xh/LC_MESSAGES/kcmkdb.mo -share/locale/xh/LC_MESSAGES/kcmkeys.mo -share/locale/xh/LC_MESSAGES/kcmkicker.mo -share/locale/xh/LC_MESSAGES/kcmkio.mo -share/locale/xh/LC_MESSAGES/kcmkonq.mo -share/locale/xh/LC_MESSAGES/kcmkonqhtml.mo -share/locale/xh/LC_MESSAGES/kcmkonsole.mo -share/locale/xh/LC_MESSAGES/kcmktalkd.mo -share/locale/xh/LC_MESSAGES/kcmkurifilt.mo -share/locale/xh/LC_MESSAGES/kcmkwindecoration.mo -share/locale/xh/LC_MESSAGES/kcmkwintheme.mo -share/locale/xh/LC_MESSAGES/kcmkwm.mo -share/locale/xh/LC_MESSAGES/kcmlanbrowser.mo -share/locale/xh/LC_MESSAGES/kcmlaunch.mo -share/locale/xh/LC_MESSAGES/kcmlayout.mo -share/locale/xh/LC_MESSAGES/kcmlocale.mo -share/locale/xh/LC_MESSAGES/kcmmidi.mo -share/locale/xh/LC_MESSAGES/kcmnewsticker.mo -share/locale/xh/LC_MESSAGES/kcmnotify.mo -share/locale/xh/LC_MESSAGES/kcmsamba.mo -share/locale/xh/LC_MESSAGES/kcmscreensaver.mo -share/locale/xh/LC_MESSAGES/kcmsmserver.mo -share/locale/xh/LC_MESSAGES/kcmsocks.mo -share/locale/xh/LC_MESSAGES/kcmspellchecking.mo -share/locale/xh/LC_MESSAGES/kcmstyle.mo -share/locale/xh/LC_MESSAGES/kcmtaskbar.mo -share/locale/xh/LC_MESSAGES/kcmthemes.mo -share/locale/xh/LC_MESSAGES/kcmusb.mo -share/locale/xh/LC_MESSAGES/kcoloredit.mo -share/locale/xh/LC_MESSAGES/kcontrol.mo -share/locale/xh/LC_MESSAGES/kdcop.mo -share/locale/xh/LC_MESSAGES/kdebugdialog.mo -share/locale/xh/LC_MESSAGES/kdelibs.mo -share/locale/xh/LC_MESSAGES/kdeprintfax.mo -share/locale/xh/LC_MESSAGES/kdesktop.mo -share/locale/xh/LC_MESSAGES/kdesu.mo -share/locale/xh/LC_MESSAGES/kdesud.mo -share/locale/xh/LC_MESSAGES/kdevelop.mo -share/locale/xh/LC_MESSAGES/kdevtipofday.mo -share/locale/xh/LC_MESSAGES/kdict.mo -share/locale/xh/LC_MESSAGES/kdictapplet.mo -share/locale/xh/LC_MESSAGES/kdmchooser.mo -share/locale/xh/LC_MESSAGES/kdmconfig.mo -share/locale/xh/LC_MESSAGES/kdmgreet.mo -share/locale/xh/LC_MESSAGES/kdvi.mo -share/locale/xh/LC_MESSAGES/kfax.mo -share/locale/xh/LC_MESSAGES/kfifteenapplet.mo -share/locale/xh/LC_MESSAGES/kfindpart.mo -share/locale/xh/LC_MESSAGES/kfloppy.mo -share/locale/xh/LC_MESSAGES/kfmclient.mo -share/locale/xh/LC_MESSAGES/kfmexec.mo -share/locale/xh/LC_MESSAGES/kfract.mo -share/locale/xh/LC_MESSAGES/kghostview.mo -share/locale/xh/LC_MESSAGES/khelpcenter.mo -share/locale/xh/LC_MESSAGES/khotkeys.mo -share/locale/xh/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/xh/LC_MESSAGES/kicker.mo -share/locale/xh/LC_MESSAGES/kiconedit.mo -share/locale/xh/LC_MESSAGES/kio_audiocd.mo -share/locale/xh/LC_MESSAGES/kio_finger.mo -share/locale/xh/LC_MESSAGES/kio_floppy.mo -share/locale/xh/LC_MESSAGES/kio_help.mo -share/locale/xh/LC_MESSAGES/kio_imap4.mo -share/locale/xh/LC_MESSAGES/kio_lan.mo -share/locale/xh/LC_MESSAGES/kio_man.mo -share/locale/xh/LC_MESSAGES/kio_nfs.mo -share/locale/xh/LC_MESSAGES/kio_nntp.mo -share/locale/xh/LC_MESSAGES/kio_pop3.mo -share/locale/xh/LC_MESSAGES/kio_smb.mo -share/locale/xh/LC_MESSAGES/kio_smbro.mo -share/locale/xh/LC_MESSAGES/kit.mo -share/locale/xh/LC_MESSAGES/kjezz.mo -share/locale/xh/LC_MESSAGES/kjobviewer.mo -share/locale/xh/LC_MESSAGES/kjumpingcube.mo -share/locale/xh/LC_MESSAGES/klegacyimport.mo -share/locale/xh/LC_MESSAGES/kless.mo -share/locale/xh/LC_MESSAGES/klines.mo -share/locale/xh/LC_MESSAGES/klipper.mo -share/locale/xh/LC_MESSAGES/klock.mo -share/locale/xh/LC_MESSAGES/kmahjongg.mo -share/locale/xh/LC_MESSAGES/kmail.mo -share/locale/xh/LC_MESSAGES/kmailcvt.mo -share/locale/xh/LC_MESSAGES/kmenuedit.mo -share/locale/xh/LC_MESSAGES/kmines.mo -share/locale/xh/LC_MESSAGES/kminipagerapplet.mo -share/locale/xh/LC_MESSAGES/kmoon.mo -share/locale/xh/LC_MESSAGES/knewsticker.mo -share/locale/xh/LC_MESSAGES/knode.mo -share/locale/xh/LC_MESSAGES/knotify.mo -share/locale/xh/LC_MESSAGES/kodo.mo -share/locale/xh/LC_MESSAGES/kolourpicker.mo -share/locale/xh/LC_MESSAGES/konqueror.mo -share/locale/xh/LC_MESSAGES/konquest.mo -share/locale/xh/LC_MESSAGES/konsole.mo -share/locale/xh/LC_MESSAGES/kooka.mo -share/locale/xh/LC_MESSAGES/korganizer.mo -share/locale/xh/LC_MESSAGES/korn.mo -share/locale/xh/LC_MESSAGES/kpackage.mo -share/locale/xh/LC_MESSAGES/kpager.mo -share/locale/xh/LC_MESSAGES/kpaint.mo -share/locale/xh/LC_MESSAGES/kpartapp.mo -share/locale/xh/LC_MESSAGES/kpartsaver.mo -share/locale/xh/LC_MESSAGES/kpat.mo -share/locale/xh/LC_MESSAGES/kpersonalizer.mo -share/locale/xh/LC_MESSAGES/kpilot.mo -share/locale/xh/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/xh/LC_MESSAGES/kpoker.mo -share/locale/xh/LC_MESSAGES/kppp.mo -share/locale/xh/LC_MESSAGES/kppplogview.mo -share/locale/xh/LC_MESSAGES/kprinter.mo -share/locale/xh/LC_MESSAGES/kreadconfig.mo -share/locale/xh/LC_MESSAGES/kreversi.mo -share/locale/xh/LC_MESSAGES/kruler.mo -share/locale/xh/LC_MESSAGES/krunapplet.mo -share/locale/xh/LC_MESSAGES/ksame.mo -share/locale/xh/LC_MESSAGES/kscoreapplet.mo -share/locale/xh/LC_MESSAGES/kshisen.mo -share/locale/xh/LC_MESSAGES/ksirc.mo -share/locale/xh/LC_MESSAGES/ksirtet.mo -share/locale/xh/LC_MESSAGES/ksmserver.mo -share/locale/xh/LC_MESSAGES/ksnapshot.mo -share/locale/xh/LC_MESSAGES/ksplash.mo -share/locale/xh/LC_MESSAGES/kstart.mo -share/locale/xh/LC_MESSAGES/kstartperf.mo -share/locale/xh/LC_MESSAGES/ksysguard.mo -share/locale/xh/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/xh/LC_MESSAGES/ktalkd.mo -share/locale/xh/LC_MESSAGES/ktaskbarapplet.mo -share/locale/xh/LC_MESSAGES/kteatime.mo -share/locale/xh/LC_MESSAGES/ktimemon.mo -share/locale/xh/LC_MESSAGES/ktip.mo -share/locale/xh/LC_MESSAGES/ktux.mo -share/locale/xh/LC_MESSAGES/kview.mo -share/locale/xh/LC_MESSAGES/kviewshell.mo -share/locale/xh/LC_MESSAGES/kwin.mo -share/locale/xh/LC_MESSAGES/kworldclock.mo -share/locale/xh/LC_MESSAGES/kxkb.mo -share/locale/xh/LC_MESSAGES/kxmlrpcd.mo -share/locale/xh/LC_MESSAGES/kxsconfig.mo -share/locale/xh/LC_MESSAGES/libkdenetwork.mo -share/locale/xh/LC_MESSAGES/libkonq.mo -share/locale/xh/LC_MESSAGES/libkscan.mo -share/locale/xh/LC_MESSAGES/libkscreensaver.mo -share/locale/xh/LC_MESSAGES/libkwindefault_config.mo -share/locale/xh/LC_MESSAGES/libkwinicewm_config.mo -share/locale/xh/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/xh/LC_MESSAGES/libkwinquartz_config.mo -share/locale/xh/LC_MESSAGES/libtaskbar.mo -share/locale/xh/LC_MESSAGES/libtaskmanager.mo -share/locale/xh/LC_MESSAGES/naughtyapplet.mo -share/locale/xh/LC_MESSAGES/noatun.mo -share/locale/xh/LC_MESSAGES/nsplugin.mo -share/locale/xh/LC_MESSAGES/passwords.mo -share/locale/xh/LC_MESSAGES/ppdtranslations.mo -share/locale/xh/LC_MESSAGES/quicklauncher.mo -share/locale/xh/LC_MESSAGES/spy.mo -share/locale/xh/LC_MESSAGES/taskbarextension.mo -share/locale/xh/LC_MESSAGES/twister.mo -share/locale/xh/LC_MESSAGES/uachangerplugin.mo -share/locale/xh/LC_MESSAGES/validatorsplugin.mo -share/locale/xh/LC_MESSAGES/webarchiver.mo -share/locale/xh/charset -share/locale/xh/entry.desktop -share/locale/xh/flag.png -share/locale/zh_CN.GB2312/LC_MESSAGES/abbrowser.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/aktion.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/appletproxy.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ark.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/artsbuilder.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/artscontrol.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/caitoo.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/childpanelextension.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/clockapplet.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/colfind.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/columbo.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/cupsdconf.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/desktop.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/devcenter.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/drkonqi.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/empath.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/extensionproxy.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/filetypes.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/gideon.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/htmlsearch.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kab.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kabalone.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kaccess.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kaddressbook.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kaiman.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kappfinder.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/karm.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kasbarextension.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kasteroids.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/katalog.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kate.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/katomic.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kbabel.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kblackbox.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcalc.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcharselect.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmaccess.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmarts.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmbackground.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmbell.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmcolors.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmcrypto.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmemail.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmenergy.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmfonts.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmicons.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcminfo.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcminput.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmkclock.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmkdb.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmkeys.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmkicker.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmkio.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmkmix.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmkonq.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmkonqhtml.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmktalkd.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmkurifilt.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmkwintheme.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmkwm.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmlanbrowser.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmlaptop.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmlayout.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmlilo.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmlinuz.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmlocale.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmmidi.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmnewsticker.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmnotify.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmodbc.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmsamba.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmscreensaver.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmsmserver.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmsocks.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmspellchecking.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmstyle.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmtaskbar.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmthemes.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmusb.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcontrol.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcron.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kdat.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kdcop.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kdebugdialog.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kdelibs.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kdepasswd.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kdeprintfax.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kdesktop.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kdessh.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kdesu.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kdesud.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kdevelop.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kdf.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kdmchooser.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kdmconfig.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kdmgreet.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kdvi.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kedit.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/keystone.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kfax.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kfind.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kfindpart.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kfinger.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kfloppy.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kfmclient.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kfmexec.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kfract.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kghostview.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/khelpcenter.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/khexedit.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/khotkeys.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kicker.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kiconedit.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kio_audiocd.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kio_finger.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kio_floppy.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kio_help.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kio_imap4.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kio_man.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kio_nfs.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kio_nntp.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kio_pop3.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kio_smb.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kio_smbro.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kit.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kjezz.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kjobviewer.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kjots.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kjumpingcube.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/klaptopdaemon.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/klegacyimport.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kless.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/klipper.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kljettool.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/klock.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/klpq.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kmahjongg.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kmail.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kmailcvt.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kmedia.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kmenuedit.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kmid.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kmidi.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kmines.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kminipagerapplet.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kmix.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kmoon.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/knewsticker.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/knode.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/knotes.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/knotify.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/knu.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/konqueror.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/konquest.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/konsole.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/korganizer.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/korn.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kpackage.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kpager.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kpartsaver.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kpat.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kpm.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kpoker.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kppp.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kppplogview.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kprinter.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kreadconfig.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kreversi.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/krn.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/krunapplet.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ksame.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kscd.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kshisen.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ksirc.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ksirtet.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ksmiletris.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ksmserver.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ksnake.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ksnapshot.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ksokoban.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kspaceduel.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ksplash.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kstart.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ksysctrl.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ksysguard.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ksysv.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ktalk.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ktalkd.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ktaskbarapplet.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ktimemon.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ktip.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ktop.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ktron.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ktuberling.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kuser.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kview.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kwebstat.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kwin.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kworldclock.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kwuftpd.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kxkb.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kxmlrpcd.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kxsconfig.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/libkdenetwork.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/libkonq.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/libkscreensaver.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/libkwindefault_config.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/libkwinicewm_config.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/libkwinquartz_config.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/libtaskbar.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/libtaskmanager.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/multiplayers.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/naughtyapplet.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/nsplugin.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/passwords.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/ppdtranslations.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/quicklauncher.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/secpolicy.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/taskbarextension.mo -share/locale/zh_CN.GB2312/charset -share/locale/zh_CN.GB2312/entry.desktop -share/locale/zh_CN.GB2312/flag.png -share/locale/zh_TW.Big5/LC_MESSAGES/aktion.mo -share/locale/zh_TW.Big5/LC_MESSAGES/amor.mo -share/locale/zh_TW.Big5/LC_MESSAGES/appletproxy.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ark.mo -share/locale/zh_TW.Big5/LC_MESSAGES/artsbuilder.mo -share/locale/zh_TW.Big5/LC_MESSAGES/artscontrol.mo -share/locale/zh_TW.Big5/LC_MESSAGES/babelfish.mo -share/locale/zh_TW.Big5/LC_MESSAGES/caitoo.mo -share/locale/zh_TW.Big5/LC_MESSAGES/childpanelextension.mo -share/locale/zh_TW.Big5/LC_MESSAGES/clockapplet.mo -share/locale/zh_TW.Big5/LC_MESSAGES/colfind.mo -share/locale/zh_TW.Big5/LC_MESSAGES/columbo.mo -share/locale/zh_TW.Big5/LC_MESSAGES/cookbook.mo -share/locale/zh_TW.Big5/LC_MESSAGES/cupsdconf.mo -share/locale/zh_TW.Big5/LC_MESSAGES/desktop.mo -share/locale/zh_TW.Big5/LC_MESSAGES/devcenter.mo -share/locale/zh_TW.Big5/LC_MESSAGES/dirfilterplugin.mo -share/locale/zh_TW.Big5/LC_MESSAGES/domtreeviewer.mo -share/locale/zh_TW.Big5/LC_MESSAGES/drkonqi.mo -share/locale/zh_TW.Big5/LC_MESSAGES/empath.mo -share/locale/zh_TW.Big5/LC_MESSAGES/extensionproxy.mo -share/locale/zh_TW.Big5/LC_MESSAGES/filetypes.mo -share/locale/zh_TW.Big5/LC_MESSAGES/gideon.mo -share/locale/zh_TW.Big5/LC_MESSAGES/gofai.mo -share/locale/zh_TW.Big5/LC_MESSAGES/htmlsearch.mo -share/locale/zh_TW.Big5/LC_MESSAGES/imgalleryplugin.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kab.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kabalone.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kaboodle.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kaccess.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kaddressbook.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kafka.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kandy.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kappfinder.mo -share/locale/zh_TW.Big5/LC_MESSAGES/karchie.mo -share/locale/zh_TW.Big5/LC_MESSAGES/karchiver.mo -share/locale/zh_TW.Big5/LC_MESSAGES/karm.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kasteroids.mo -share/locale/zh_TW.Big5/LC_MESSAGES/katalog.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kate.mo -share/locale/zh_TW.Big5/LC_MESSAGES/katehtmltools.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kateinsertcommand.mo -share/locale/zh_TW.Big5/LC_MESSAGES/katomic.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kautorun.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kbabel.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kbattleship.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kbiff.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kblackbox.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kbugbuster.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcalc.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcharselect.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcharselectapplet.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcm_scsimanager.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmaccess.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmail.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmarts.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmaudiocd.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmbackground.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmbell.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmbind.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmcolors.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmcrypto.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmcss.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmdhcpd.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmemail.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmenergy.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmfonts.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmgofai.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmicons.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcminfo.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcminput.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmiwatcher.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmkamera.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmkclock.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmkdb.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmkeys.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmkicker.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmkio.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmkmix.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmkonq.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmkonqhtml.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmkonsole.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmktalkd.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmkurifilt.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmkwindecoration.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmkwintheme.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmkwm.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmlanbrowser.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmlaptop.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmlaunch.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmlayout.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmlilo.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmlinuz.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmlocale.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmmediacontrol.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmmidi.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmnapster.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmnewsticker.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmnotify.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmodbc.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmsamba.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmscreensaver.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmsmserver.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmsocks.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmspellchecking.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmstyle.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmtaskbar.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmthemes.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmusb.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcoloredit.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcontrol.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcron.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdbbrowser.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdcop.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdebugdialog.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdelibs.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdepasswd.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdeprintfax.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdesktop.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdessh.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdesu.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdesud.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdevelop.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdevtipofday.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdf.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdict.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdictapplet.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdiff.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdmchooser.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdmconfig.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdmgreet.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdvi.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kedit.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kfax.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kfind.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kfindpart.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kfinger.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kfloppy.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kfmclient.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kfmexec.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kfontinst.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kformeditor.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kformviewer.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kfortune.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kfourtune.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kfract.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kghostview.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kglchess.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kgnuplot.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kgrapher.mo -share/locale/zh_TW.Big5/LC_MESSAGES/khelpcenter.mo -share/locale/zh_TW.Big5/LC_MESSAGES/khexedit.mo -share/locale/zh_TW.Big5/LC_MESSAGES/khotkeys.mo -share/locale/zh_TW.Big5/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kicker.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kiconedit.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kicq.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kikbd.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kim.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kio_audiocd.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kio_finger.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kio_floppy.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kio_help.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kio_imap4.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kio_lan.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kio_man.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kio_nfs.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kio_nntp.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kio_pop3.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kio_smb.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kio_smbro.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kit.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kjezz.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kjobviewer.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kjots.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kjumpingcube.mo -share/locale/zh_TW.Big5/LC_MESSAGES/klaptopdaemon.mo -share/locale/zh_TW.Big5/LC_MESSAGES/klegacyimport.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kless.mo -share/locale/zh_TW.Big5/LC_MESSAGES/klines.mo -share/locale/zh_TW.Big5/LC_MESSAGES/klipper.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kljettool.mo -share/locale/zh_TW.Big5/LC_MESSAGES/klock.mo -share/locale/zh_TW.Big5/LC_MESSAGES/klpq.mo -share/locale/zh_TW.Big5/LC_MESSAGES/klprfax.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kmahjongg.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kmail.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kmailcvt.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kmake.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kmenuedit.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kmessage.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kmid.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kmidi.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kmines.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kminipagerapplet.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kmix.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kmms.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kmoon.mo -share/locale/zh_TW.Big5/LC_MESSAGES/knetmgr.mo -share/locale/zh_TW.Big5/LC_MESSAGES/knode.mo -share/locale/zh_TW.Big5/LC_MESSAGES/knotes.mo -share/locale/zh_TW.Big5/LC_MESSAGES/knotify.mo -share/locale/zh_TW.Big5/LC_MESSAGES/knu.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kodo.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kolourpicker.mo -share/locale/zh_TW.Big5/LC_MESSAGES/konqueror.mo -share/locale/zh_TW.Big5/LC_MESSAGES/konquest.mo -share/locale/zh_TW.Big5/LC_MESSAGES/konsole.mo -share/locale/zh_TW.Big5/LC_MESSAGES/konv.mo -share/locale/zh_TW.Big5/LC_MESSAGES/korganizer.mo -share/locale/zh_TW.Big5/LC_MESSAGES/korn.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kp.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kpackage.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kpager.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kpaint.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kpartapp.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kpartsaver.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kpat.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kpersonalizer.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kphone.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kpilot.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kpm.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kpoker.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kppp.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kppplogview.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kprinter.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kreadconfig.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kreversi.mo -share/locale/zh_TW.Big5/LC_MESSAGES/krn.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kruler.mo -share/locale/zh_TW.Big5/LC_MESSAGES/krunapplet.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ksame.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kscd.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kscoreapplet.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kshisen.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ksirc.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ksirtet.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ksmiletris.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ksmserver.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ksnake.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ksnapshot.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ksokoban.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kspaceduel.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ksplash.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kstart.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kstartperf.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kstockticker.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ksysctrl.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ksysguard.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ksystrayproxy.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ksysv.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ktables.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ktalk.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ktalkd.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ktaskbarapplet.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kteatime.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ktimer.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ktip.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ktouch.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ktuberling.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ktux.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kuser.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kview.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kwebstat.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kwin.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kwin4.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kworldclock.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kwuftpd.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kxkb.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kxmlrpcd.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kxsconfig.mo -share/locale/zh_TW.Big5/LC_MESSAGES/libkdegames.mo -share/locale/zh_TW.Big5/LC_MESSAGES/libkdenetwork.mo -share/locale/zh_TW.Big5/LC_MESSAGES/libkonq.mo -share/locale/zh_TW.Big5/LC_MESSAGES/libkscan.mo -share/locale/zh_TW.Big5/LC_MESSAGES/libkscreensaver.mo -share/locale/zh_TW.Big5/LC_MESSAGES/libkwindefault_config.mo -share/locale/zh_TW.Big5/LC_MESSAGES/libkwinicewm_config.mo -share/locale/zh_TW.Big5/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/zh_TW.Big5/LC_MESSAGES/libkwinquartz_config.mo -share/locale/zh_TW.Big5/LC_MESSAGES/libtaskbar.mo -share/locale/zh_TW.Big5/LC_MESSAGES/libtaskmanager.mo -share/locale/zh_TW.Big5/LC_MESSAGES/mediacontrol.mo -share/locale/zh_TW.Big5/LC_MESSAGES/multiplayers.mo -share/locale/zh_TW.Big5/LC_MESSAGES/naughtyapplet.mo -share/locale/zh_TW.Big5/LC_MESSAGES/noatun.mo -share/locale/zh_TW.Big5/LC_MESSAGES/nsplugin.mo -share/locale/zh_TW.Big5/LC_MESSAGES/passwords.mo -share/locale/zh_TW.Big5/LC_MESSAGES/ppdtranslations.mo -share/locale/zh_TW.Big5/LC_MESSAGES/pws.mo -share/locale/zh_TW.Big5/LC_MESSAGES/quicklauncher.mo -share/locale/zh_TW.Big5/LC_MESSAGES/secpolicy.mo -share/locale/zh_TW.Big5/LC_MESSAGES/spy.mo -share/locale/zh_TW.Big5/LC_MESSAGES/taskbarextension.mo -share/locale/zh_TW.Big5/LC_MESSAGES/twister.mo -share/locale/zh_TW.Big5/LC_MESSAGES/uachangerplugin.mo -share/locale/zh_TW.Big5/LC_MESSAGES/validatorsplugin.mo -share/locale/zh_TW.Big5/LC_MESSAGES/webarchiver.mo -share/locale/zh_TW.Big5/charset -share/locale/zh_TW.Big5/entry.desktop -share/locale/zh_TW.Big5/flag.png -@dirrm share/locale/zh_TW.Big5/LC_MESSAGES -@dirrm share/locale/zh_TW.Big5 -@dirrm share/locale/zh_CN.GB2312/LC_MESSAGES -@dirrm share/locale/zh_CN.GB2312 -@dirrm share/locale/xh/LC_MESSAGES -@dirrm share/locale/xh -@dirrm share/locale/uk/LC_MESSAGES -@dirrm share/locale/uk -@dirrm share/locale/tr/LC_MESSAGES -@dirrm share/locale/tr -@dirrm share/locale/th/LC_MESSAGES -@dirrm share/locale/th -@dirrm share/locale/ta/LC_MESSAGES -@dirrm share/locale/ta -@dirrm share/locale/sv/LC_MESSAGES -@dirrm share/locale/sv -@dirrm share/locale/sr/LC_MESSAGES -@dirrm share/locale/sr -@dirrm share/locale/sl/LC_MESSAGES -@dirrm share/locale/sl -@dirrm share/locale/sk/LC_MESSAGES -@dirrm share/locale/sk -@dirrm share/locale/ru/LC_MESSAGES -@dirrm share/locale/ru -@dirrm share/locale/ro/LC_MESSAGES -@dirrm share/locale/ro -@dirrm share/locale/pt_BR/LC_MESSAGES -@dirrm share/locale/pt_BR -@dirrm share/locale/pt/LC_MESSAGES -@dirrm share/locale/pt -@dirrm share/locale/pl/LC_MESSAGES -@dirrm share/locale/pl -@dirrm share/locale/no_NY/LC_MESSAGES -@dirrm share/locale/no_NY -@dirrm share/locale/no/LC_MESSAGES -@dirrm share/locale/no -@dirrm share/locale/nl/LC_MESSAGES -@dirrm share/locale/nl -@dirrm share/locale/mt/LC_MESSAGES -@dirrm share/locale/mt -@dirrm share/locale/lv/LC_MESSAGES -@dirrm share/locale/lv -@dirrm share/locale/lt/LC_MESSAGES -@dirrm share/locale/lt -@dirrm share/locale/ko/LC_MESSAGES -@dirrm share/locale/ko -@dirrm share/locale/ja/LC_MESSAGES -@dirrm share/locale/ja -@dirrm share/locale/it/LC_MESSAGES -@dirrm share/locale/it -@dirrm share/locale/is/LC_MESSAGES -@dirrm share/locale/is -@dirrm share/locale/hu/LC_MESSAGES -@dirrm share/locale/hu -@dirrm share/locale/he/LC_MESSAGES -@dirrm share/locale/he -@dirrm share/locale/fr/LC_MESSAGES -@dirrm share/locale/fr -@dirrm share/locale/fi/LC_MESSAGES -@dirrm share/locale/fi -@dirrm share/locale/et/LC_MESSAGES -@dirrm share/locale/et -@dirrm share/locale/es/LC_MESSAGES -@dirrm share/locale/es -@dirrm share/locale/eo/LC_MESSAGES -@dirrm share/locale/eo -@dirrm share/locale/en_GB/LC_MESSAGES -@dirrm share/locale/en_GB -@dirrm share/locale/el/LC_MESSAGES -@dirrm share/locale/el -@dirrm share/locale/de/LC_MESSAGES -@dirrm share/locale/de -@dirrm share/locale/da/LC_MESSAGES -@dirrm share/locale/da -@dirrm share/locale/cs/LC_MESSAGES -@dirrm share/locale/cs -@dirrm share/locale/bg/LC_MESSAGES -@dirrm share/locale/bg -@dirrm share/locale/az/LC_MESSAGES -@dirrm share/locale/az -@dirrm share/locale/af/LC_MESSAGES -@dirrm share/locale/af -@dirrm share/doc/HTML/zh_TW.Big5/khelpcenter -@dirrm share/doc/HTML/zh_TW.Big5/common -@dirrm share/doc/HTML/zh_TW.Big5 -@dirrm share/doc/HTML/zh_CN.GB2312/kdevelop -@dirrm share/doc/HTML/zh_CN.GB2312/common -@dirrm share/doc/HTML/zh_CN.GB2312 -@dirrm share/doc/HTML/xh/kspell -@dirrm share/doc/HTML/xh/konqueror -@dirrm share/doc/HTML/xh/kmenuedit -@dirrm share/doc/HTML/xh/khelpcenter -@dirrm share/doc/HTML/xh/kaddressbook -@dirrm share/doc/HTML/xh -@dirrm share/doc/HTML/uk/common -@dirrm share/doc/HTML/uk -@dirrm share/doc/HTML/tr/khelpcenter -@dirrm share/doc/HTML/tr -@dirrm share/doc/HTML/sv/noatun -@dirrm share/doc/HTML/sv/kworldclock -@dirrm share/doc/HTML/sv/kteatime -@dirrm share/doc/HTML/sv/ksysguard -@dirrm share/doc/HTML/sv/kscore -@dirrm share/doc/HTML/sv/kscd -@dirrm share/doc/HTML/sv/kpager -@dirrm share/doc/HTML/sv/konsole -@dirrm share/doc/HTML/sv/konqueror -@dirrm share/doc/HTML/sv/kodo -@dirrm share/doc/HTML/sv/kmoon -@dirrm share/doc/HTML/sv/kmix -@dirrm share/doc/HTML/sv/kmenuedit -@dirrm share/doc/HTML/sv/klipper -@dirrm share/doc/HTML/sv/kioslave -@dirrm share/doc/HTML/sv/kicker -@dirrm share/doc/HTML/sv/khelpcenter/visualdict -@dirrm share/doc/HTML/sv/khelpcenter/userguide -@dirrm share/doc/HTML/sv/khelpcenter/quickstart -@dirrm share/doc/HTML/sv/khelpcenter/glossary -@dirrm share/doc/HTML/sv/khelpcenter/faq -@dirrm share/doc/HTML/sv/khelpcenter -@dirrm share/doc/HTML/sv/kdm -@dirrm share/doc/HTML/sv/kdevelop -@dirrm share/doc/HTML/sv/kdesu -@dirrm share/doc/HTML/sv/kdebugdialog -@dirrm share/doc/HTML/sv/kcontrol -@dirrm share/doc/HTML/sv/kate -@dirrm share/doc/HTML/sv/kaddressbook -@dirrm share/doc/HTML/sv/common -@dirrm share/doc/HTML/sv/amor -@dirrm share/doc/HTML/sv -@dirrm share/doc/HTML/sl/noatun -@dirrm share/doc/HTML/sl/kwrite -@dirrm share/doc/HTML/sl/ksysguard -@dirrm share/doc/HTML/sl/kspell -@dirrm share/doc/HTML/sl/ksnapshot -@dirrm share/doc/HTML/sl/krayon -@dirrm share/doc/HTML/sl/kpresenter -@dirrm share/doc/HTML/sl/kppp -@dirrm share/doc/HTML/sl/kpager -@dirrm share/doc/HTML/sl/kpackage -@dirrm share/doc/HTML/sl/koshell -@dirrm share/doc/HTML/sl/konsole -@dirrm share/doc/HTML/sl/konqueror -@dirrm share/doc/HTML/sl/kmenuedit -@dirrm share/doc/HTML/sl/klipper -@dirrm share/doc/HTML/sl/kit -@dirrm share/doc/HTML/sl/kioslave -@dirrm share/doc/HTML/sl/kicker -@dirrm share/doc/HTML/sl/khelpcenter/visualdict -@dirrm share/doc/HTML/sl/khelpcenter/userguide -@dirrm share/doc/HTML/sl/khelpcenter/quickstart -@dirrm share/doc/HTML/sl/khelpcenter/glossary -@dirrm share/doc/HTML/sl/khelpcenter/faq -@dirrm share/doc/HTML/sl/khelpcenter -@dirrm share/doc/HTML/sl/keystone -@dirrm share/doc/HTML/sl/kedit -@dirrm share/doc/HTML/sl/kdvi -@dirrm share/doc/HTML/sl/kdm -@dirrm share/doc/HTML/sl/kdesu -@dirrm share/doc/HTML/sl/kdebugdialog -@dirrm share/doc/HTML/sl/kcontrol -@dirrm share/doc/HTML/sl/kate -@dirrm share/doc/HTML/sl/kaddressbook -@dirrm share/doc/HTML/sl/common -@dirrm share/doc/HTML/sl -@dirrm share/doc/HTML/sk/visualdict -@dirrm share/doc/HTML/sk/kworldclock -@dirrm share/doc/HTML/sk/kteatime -@dirrm share/doc/HTML/sk/ksysguard -@dirrm share/doc/HTML/sk/ksokoban -@dirrm share/doc/HTML/sk/ksnake -@dirrm share/doc/HTML/sk/ksirtet -@dirrm share/doc/HTML/sk/kshisen -@dirrm share/doc/HTML/sk/ksame -@dirrm share/doc/HTML/sk/kpresenter -@dirrm share/doc/HTML/sk/kpager -@dirrm share/doc/HTML/sk/koshell -@dirrm share/doc/HTML/sk/konsole -@dirrm share/doc/HTML/sk/konquest -@dirrm share/doc/HTML/sk/konqueror -@dirrm share/doc/HTML/sk/kodo -@dirrm share/doc/HTML/sk/kmoon -@dirrm share/doc/HTML/sk/kmenuedit -@dirrm share/doc/HTML/sk/klipper -@dirrm share/doc/HTML/sk/klines -@dirrm share/doc/HTML/sk/kjezz -@dirrm share/doc/HTML/sk/kioslave -@dirrm share/doc/HTML/sk/kicker -@dirrm share/doc/HTML/sk/khelpcenter/quickstart -@dirrm share/doc/HTML/sk/khelpcenter -@dirrm share/doc/HTML/sk/kfind -@dirrm share/doc/HTML/sk/kdf -@dirrm share/doc/HTML/sk/kdesu -@dirrm share/doc/HTML/sk/kdebugdialog -@dirrm share/doc/HTML/sk/kcontrol -@dirrm share/doc/HTML/sk/kbattleship -@dirrm share/doc/HTML/sk/katomic -@dirrm share/doc/HTML/sk/kate -@dirrm share/doc/HTML/sk/kaddressbook -@dirrm share/doc/HTML/sk/glossary -@dirrm share/doc/HTML/sk/faq -@dirrm share/doc/HTML/sk/common -@dirrm share/doc/HTML/sk/amor -@dirrm share/doc/HTML/sk -@dirrm share/doc/HTML/ru/noatun -@dirrm share/doc/HTML/ru/kwuftpd -@dirrm share/doc/HTML/ru/kworldclock -@dirrm share/doc/HTML/ru/kword -@dirrm share/doc/HTML/ru/ktalkd -@dirrm share/doc/HTML/ru/ksnapshot -@dirrm share/doc/HTML/ru/kscd -@dirrm share/doc/HTML/ru/kpresenter -@dirrm share/doc/HTML/ru/kppp -@dirrm share/doc/HTML/ru/kpager -@dirrm share/doc/HTML/ru/kodo -@dirrm share/doc/HTML/ru/knu -@dirrm share/doc/HTML/ru/kmix -@dirrm share/doc/HTML/ru/kicker-applets -@dirrm share/doc/HTML/ru/kicker -@dirrm share/doc/HTML/ru/khelpcenter/faq -@dirrm share/doc/HTML/ru/khelpcenter -@dirrm share/doc/HTML/ru/kcontrol -@dirrm share/doc/HTML/ru/kbattleship -@dirrm share/doc/HTML/ru/kate-plugins -@dirrm share/doc/HTML/ru/kandy -@dirrm share/doc/HTML/ru/common -@dirrm share/doc/HTML/ru -@dirrm share/doc/HTML/ro/kikbd -@dirrm share/doc/HTML/ro/khelpcenter -@dirrm share/doc/HTML/ro/common -@dirrm share/doc/HTML/ro -@dirrm share/doc/HTML/pt/kwuftpd -@dirrm share/doc/HTML/pt/kworldclock -@dirrm share/doc/HTML/pt/kuser -@dirrm share/doc/HTML/pt/kugar -@dirrm share/doc/HTML/pt/kteatime -@dirrm share/doc/HTML/pt/ksysv -@dirrm share/doc/HTML/pt/kspell -@dirrm share/doc/HTML/pt/ksnapshot -@dirrm share/doc/HTML/pt/kscore -@dirrm share/doc/HTML/pt/kpager -@dirrm share/doc/HTML/pt/kpackage -@dirrm share/doc/HTML/pt/kodo -@dirrm share/doc/HTML/pt/kmoon -@dirrm share/doc/HTML/pt/klprfax -@dirrm share/doc/HTML/pt/klpq -@dirrm share/doc/HTML/pt/kioslave -@dirrm share/doc/HTML/pt/khelpcenter -@dirrm share/doc/HTML/pt/kfloppy -@dirrm share/doc/HTML/pt/kfind -@dirrm share/doc/HTML/pt/kdf -@dirrm share/doc/HTML/pt/kdesu -@dirrm share/doc/HTML/pt/kcron -@dirrm share/doc/HTML/pt/kcontrol -@dirrm share/doc/HTML/pt/kaddressbook -@dirrm share/doc/HTML/pt/kabalone -@dirrm share/doc/HTML/pt/common -@dirrm share/doc/HTML/pt/amor -@dirrm share/doc/HTML/pt -@dirrm share/doc/HTML/pl/kdevelop -@dirrm share/doc/HTML/pl -@dirrm share/doc/HTML/no_NY/kaddressbook -@dirrm share/doc/HTML/no_NY -@dirrm share/doc/HTML/nl/konsole -@dirrm share/doc/HTML/nl/kioslave -@dirrm share/doc/HTML/nl/khelpcenter/visualdict -@dirrm share/doc/HTML/nl/khelpcenter/faq -@dirrm share/doc/HTML/nl/khelpcenter -@dirrm share/doc/HTML/nl/kdesu -@dirrm share/doc/HTML/nl/kdebugdialog -@dirrm share/doc/HTML/nl/kcontrol -@dirrm share/doc/HTML/nl/kaddressbook -@dirrm share/doc/HTML/nl/common -@dirrm share/doc/HTML/nl -@dirrm share/doc/HTML/lt/khelpcenter -@dirrm share/doc/HTML/lt/common -@dirrm share/doc/HTML/lt -@dirrm share/doc/HTML/ko/common -@dirrm share/doc/HTML/ko -@dirrm share/doc/HTML/ja/pws -@dirrm share/doc/HTML/ja/kspell -@dirrm share/doc/HTML/ja/kmahjongg -@dirrm share/doc/HTML/ja/khelpcenter/visualdict -@dirrm share/doc/HTML/ja/khelpcenter -@dirrm share/doc/HTML/ja/kdesu -@dirrm share/doc/HTML/ja/kcontrol -@dirrm share/doc/HTML/ja/common -@dirrm share/doc/HTML/ja -@dirrm share/doc/HTML/it/ksokoban -@dirrm share/doc/HTML/it/kpat -@dirrm share/doc/HTML/it/kmenuedit -@dirrm share/doc/HTML/it/khelpcenter -@dirrm share/doc/HTML/it/kabalone -@dirrm share/doc/HTML/it/common -@dirrm share/doc/HTML/it -@dirrm share/doc/HTML/hu/noatun -@dirrm share/doc/HTML/hu/lskat -@dirrm share/doc/HTML/hu/kwuftpd -@dirrm share/doc/HTML/hu/kwrite -@dirrm share/doc/HTML/hu/kworldclock -@dirrm share/doc/HTML/hu/kwin4 -@dirrm share/doc/HTML/hu/kview -@dirrm share/doc/HTML/hu/kuser -@dirrm share/doc/HTML/hu/ktron -@dirrm share/doc/HTML/hu/kteatime -@dirrm share/doc/HTML/hu/kspell -@dirrm share/doc/HTML/hu/ksokoban -@dirrm share/doc/HTML/hu/ksnapshot -@dirrm share/doc/HTML/hu/ksnake -@dirrm share/doc/HTML/hu/ksirtet -@dirrm share/doc/HTML/hu/kshisen -@dirrm share/doc/HTML/hu/kscore -@dirrm share/doc/HTML/hu/ksame -@dirrm share/doc/HTML/hu/kruler -@dirrm share/doc/HTML/hu/krn -@dirrm share/doc/HTML/hu/kpoker -@dirrm share/doc/HTML/hu/kpm -@dirrm share/doc/HTML/hu/kpat -@dirrm share/doc/HTML/hu/kpaint -@dirrm share/doc/HTML/hu/kpager -@dirrm share/doc/HTML/hu/koshell -@dirrm share/doc/HTML/hu/korn -@dirrm share/doc/HTML/hu/konquest -@dirrm share/doc/HTML/hu/kodo -@dirrm share/doc/HTML/hu/knotes -@dirrm share/doc/HTML/hu/knode -@dirrm share/doc/HTML/hu/kmoon -@dirrm share/doc/HTML/hu/kmix -@dirrm share/doc/HTML/hu/kmenuedit -@dirrm share/doc/HTML/hu/klprfax -@dirrm share/doc/HTML/hu/klpq -@dirrm share/doc/HTML/hu/kljettool -@dirrm share/doc/HTML/hu/klipper -@dirrm share/doc/HTML/hu/klines -@dirrm share/doc/HTML/hu/kjumpingcube -@dirrm share/doc/HTML/hu/kjots -@dirrm share/doc/HTML/hu/kjezz -@dirrm share/doc/HTML/hu/kit -@dirrm share/doc/HTML/hu/kioslave -@dirrm share/doc/HTML/hu/kicker-applets -@dirrm share/doc/HTML/hu/kicker -@dirrm share/doc/HTML/hu/khexedit -@dirrm share/doc/HTML/hu/khelpcenter/visualdict -@dirrm share/doc/HTML/hu/khelpcenter/quickstart -@dirrm share/doc/HTML/hu/khelpcenter/glossary -@dirrm share/doc/HTML/hu/khelpcenter -@dirrm share/doc/HTML/hu/kghostview -@dirrm share/doc/HTML/hu/kfract -@dirrm share/doc/HTML/hu/kfouleggs -@dirrm share/doc/HTML/hu/kfloppy -@dirrm share/doc/HTML/hu/kfind -@dirrm share/doc/HTML/hu/kedit -@dirrm share/doc/HTML/hu/kdvi -@dirrm share/doc/HTML/hu/kdm -@dirrm share/doc/HTML/hu/kdf -@dirrm share/doc/HTML/hu/kdesu -@dirrm share/doc/HTML/hu/kdebugdialog -@dirrm share/doc/HTML/hu/kcontrol -@dirrm share/doc/HTML/hu/kcoloredit -@dirrm share/doc/HTML/hu/kcalc -@dirrm share/doc/HTML/hu/kblackbox -@dirrm share/doc/HTML/hu/kbattleship -@dirrm share/doc/HTML/hu/katomic -@dirrm share/doc/HTML/hu/kate-plugins -@dirrm share/doc/HTML/hu/kasteroids -@dirrm share/doc/HTML/hu/karm -@dirrm share/doc/HTML/hu/kandy -@dirrm share/doc/HTML/hu/kaddressbook -@dirrm share/doc/HTML/hu/kab -@dirrm share/doc/HTML/hu/common -@dirrm share/doc/HTML/hu/columbo -@dirrm share/doc/HTML/hu/artsbuilder -@dirrm share/doc/HTML/hu/amor -@dirrm share/doc/HTML/hu -@dirrm share/doc/HTML/he/khelpcenter -@dirrm share/doc/HTML/he/common -@dirrm share/doc/HTML/he -@dirrm share/doc/HTML/fr/noatun -@dirrm share/doc/HTML/fr/lskat -@dirrm share/doc/HTML/fr/kwuftpd -@dirrm share/doc/HTML/fr/kwrite -@dirrm share/doc/HTML/fr/kworldclock -@dirrm share/doc/HTML/fr/kwin4 -@dirrm share/doc/HTML/fr/kview -@dirrm share/doc/HTML/fr/kuser -@dirrm share/doc/HTML/fr/ktuberling -@dirrm share/doc/HTML/fr/ktron -@dirrm share/doc/HTML/fr/ksysv -@dirrm share/doc/HTML/fr/ksysguard -@dirrm share/doc/HTML/fr/kspell -@dirrm share/doc/HTML/fr/kspaceduel -@dirrm share/doc/HTML/fr/ksokoban -@dirrm share/doc/HTML/fr/ksnapshot -@dirrm share/doc/HTML/fr/ksnake -@dirrm share/doc/HTML/fr/ksirtet -@dirrm share/doc/HTML/fr/ksirc -@dirrm share/doc/HTML/fr/kshisen -@dirrm share/doc/HTML/fr/kscd -@dirrm share/doc/HTML/fr/ksame -@dirrm share/doc/HTML/fr/kruler -@dirrm share/doc/HTML/fr/kreversi -@dirrm share/doc/HTML/fr/krayon -@dirrm share/doc/HTML/fr/kpresenter/pics -@dirrm share/doc/HTML/fr/kpresenter -@dirrm share/doc/HTML/fr/kpoker -@dirrm share/doc/HTML/fr/kpat -@dirrm share/doc/HTML/fr/kpager -@dirrm share/doc/HTML/fr/kpackage -@dirrm share/doc/HTML/fr/koshell -@dirrm share/doc/HTML/fr/korn -@dirrm share/doc/HTML/fr/korganizer -@dirrm share/doc/HTML/fr/kontour -@dirrm share/doc/HTML/fr/konsole -@dirrm share/doc/HTML/fr/konquest -@dirrm share/doc/HTML/fr/konqueror -@dirrm share/doc/HTML/fr/kodo -@dirrm share/doc/HTML/fr/knotes -@dirrm share/doc/HTML/fr/knode -@dirrm share/doc/HTML/fr/knewsticker -@dirrm share/doc/HTML/fr/kmoon -@dirrm share/doc/HTML/fr/kmix -@dirrm share/doc/HTML/fr/kmines -@dirrm share/doc/HTML/fr/kmid -@dirrm share/doc/HTML/fr/kmenuedit -@dirrm share/doc/HTML/fr/klprfax -@dirrm share/doc/HTML/fr/klipper -@dirrm share/doc/HTML/fr/klines -@dirrm share/doc/HTML/fr/kjumpingcube -@dirrm share/doc/HTML/fr/kjezz -@dirrm share/doc/HTML/fr/kit -@dirrm share/doc/HTML/fr/kioslave -@dirrm share/doc/HTML/fr/kicker-applets -@dirrm share/doc/HTML/fr/kicker -@dirrm share/doc/HTML/fr/khexedit -@dirrm share/doc/HTML/fr/khelpcenter/visualdict -@dirrm share/doc/HTML/fr/khelpcenter/userguide -@dirrm share/doc/HTML/fr/khelpcenter/quickstart -@dirrm share/doc/HTML/fr/khelpcenter/faq -@dirrm share/doc/HTML/fr/khelpcenter -@dirrm share/doc/HTML/fr/kghostview -@dirrm share/doc/HTML/fr/kfract -@dirrm share/doc/HTML/fr/kfouleggs -@dirrm share/doc/HTML/fr/kfloppy -@dirrm share/doc/HTML/fr/kfind -@dirrm share/doc/HTML/fr/kedit -@dirrm share/doc/HTML/fr/kdvi -@dirrm share/doc/HTML/fr/kdm -@dirrm share/doc/HTML/fr/kdf -@dirrm share/doc/HTML/fr/kdevelop -@dirrm share/doc/HTML/fr/kdesu -@dirrm share/doc/HTML/fr/kdebugdialog -@dirrm share/doc/HTML/fr/kcron -@dirrm share/doc/HTML/fr/kcontrol -@dirrm share/doc/HTML/fr/kcalc -@dirrm share/doc/HTML/fr/kblackbox -@dirrm share/doc/HTML/fr/kbattleship -@dirrm share/doc/HTML/fr/kbackgammon -@dirrm share/doc/HTML/fr/katomic -@dirrm share/doc/HTML/fr/kate-plugins -@dirrm share/doc/HTML/fr/kate -@dirrm share/doc/HTML/fr/kasteroids -@dirrm share/doc/HTML/fr/karm -@dirrm share/doc/HTML/fr/kaddressbook -@dirrm share/doc/HTML/fr/kabalone -@dirrm share/doc/HTML/fr/kab -@dirrm share/doc/HTML/fr/glossary -@dirrm share/doc/HTML/fr/common -@dirrm share/doc/HTML/fr/artsbuilder/images -@dirrm share/doc/HTML/fr/artsbuilder -@dirrm share/doc/HTML/fr/ark -@dirrm share/doc/HTML/fr/amor -@dirrm share/doc/HTML/fr/aktion -@dirrm share/doc/HTML/fr -@dirrm share/doc/HTML/fi/common -@dirrm share/doc/HTML/fi -@dirrm share/doc/HTML/et/kcontrol -@dirrm share/doc/HTML/et/common -@dirrm share/doc/HTML/et -@dirrm share/doc/HTML/es/noatun -@dirrm share/doc/HTML/es/kwuftpd -@dirrm share/doc/HTML/es/kworldclock -@dirrm share/doc/HTML/es/kuser -@dirrm share/doc/HTML/es/kteatime -@dirrm share/doc/HTML/es/ksysv -@dirrm share/doc/HTML/es/ksysguard -@dirrm share/doc/HTML/es/kspell -@dirrm share/doc/HTML/es/kscore -@dirrm share/doc/HTML/es/kscd -@dirrm share/doc/HTML/es/kpoker -@dirrm share/doc/HTML/es/kpager -@dirrm share/doc/HTML/es/kpackage -@dirrm share/doc/HTML/es/konsole -@dirrm share/doc/HTML/es/konqueror -@dirrm share/doc/HTML/es/kodo -@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/kmahjongg -@dirrm share/doc/HTML/es/klprfax -@dirrm share/doc/HTML/es/klipper -@dirrm share/doc/HTML/es/kjezz -@dirrm share/doc/HTML/es/kioslave -@dirrm share/doc/HTML/es/kicker -@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 -@dirrm share/doc/HTML/es/kdm -@dirrm share/doc/HTML/es/kdf -@dirrm share/doc/HTML/es/kdevelop -@dirrm share/doc/HTML/es/kdesu -@dirrm share/doc/HTML/es/kdebugdialog -@dirrm share/doc/HTML/es/kcron -@dirrm share/doc/HTML/es/kcontrol -@dirrm share/doc/HTML/es/kate -@dirrm share/doc/HTML/es/kasteroids -@dirrm share/doc/HTML/es/kaddressbook -@dirrm share/doc/HTML/es/common -@dirrm share/doc/HTML/es/artsbuilder -@dirrm share/doc/HTML/es/ark -@dirrm share/doc/HTML/es/amor -@dirrm share/doc/HTML/es -@dirrm share/doc/HTML/en_GB/kspell -@dirrm share/doc/HTML/en_GB/kcontrol -@dirrm share/doc/HTML/en_GB -@dirrm share/doc/HTML/de/noatun -@dirrm share/doc/HTML/de/lskat -@dirrm share/doc/HTML/de/lisa -@dirrm share/doc/HTML/de/kwrite -@dirrm share/doc/HTML/de/kworldclock -@dirrm share/doc/HTML/de/kwin4 -@dirrm share/doc/HTML/de/kuser -@dirrm share/doc/HTML/de/ktuberling -@dirrm share/doc/HTML/de/ktron -@dirrm share/doc/HTML/de/kteatime -@dirrm share/doc/HTML/de/ktalkd -@dirrm share/doc/HTML/de/ksysv -@dirrm share/doc/HTML/de/ksysguard -@dirrm share/doc/HTML/de/kspaceduel -@dirrm share/doc/HTML/de/ksokoban -@dirrm share/doc/HTML/de/ksnapshot -@dirrm share/doc/HTML/de/ksnake -@dirrm share/doc/HTML/de/ksmiletris -@dirrm share/doc/HTML/de/ksirtet -@dirrm share/doc/HTML/de/ksirc -@dirrm share/doc/HTML/de/kshisen -@dirrm share/doc/HTML/de/kscd -@dirrm share/doc/HTML/de/ksame -@dirrm share/doc/HTML/de/kruler -@dirrm share/doc/HTML/de/kreversi -@dirrm share/doc/HTML/de/kpresenter -@dirrm share/doc/HTML/de/kppp -@dirrm share/doc/HTML/de/kpoker -@dirrm share/doc/HTML/de/kpm -@dirrm share/doc/HTML/de/kpat -@dirrm share/doc/HTML/de/kpaint -@dirrm share/doc/HTML/de/kpager -@dirrm share/doc/HTML/de/kpackage -@dirrm share/doc/HTML/de/koshell -@dirrm share/doc/HTML/de/korn -@dirrm share/doc/HTML/de/korganizer -@dirrm share/doc/HTML/de/konsole -@dirrm share/doc/HTML/de/konquest -@dirrm share/doc/HTML/de/konqueror -@dirrm share/doc/HTML/de/knotes -@dirrm share/doc/HTML/de/knode -@dirrm share/doc/HTML/de/knewsticker -@dirrm share/doc/HTML/de/kmoon -@dirrm share/doc/HTML/de/kmix -@dirrm share/doc/HTML/de/kmines -@dirrm share/doc/HTML/de/kmidi -@dirrm share/doc/HTML/de/kmid -@dirrm share/doc/HTML/de/kmail -@dirrm share/doc/HTML/de/klprfax -@dirrm share/doc/HTML/de/klpq -@dirrm share/doc/HTML/de/kljettool -@dirrm share/doc/HTML/de/klipper -@dirrm share/doc/HTML/de/klines -@dirrm share/doc/HTML/de/kjumpingcube -@dirrm share/doc/HTML/de/kjots -@dirrm share/doc/HTML/de/kjezz -@dirrm share/doc/HTML/de/kit -@dirrm share/doc/HTML/de/kioslave -@dirrm share/doc/HTML/de/killustrator -@dirrm share/doc/HTML/de/kiconedit -@dirrm share/doc/HTML/de/kicker-applets -@dirrm share/doc/HTML/de/kicker -@dirrm share/doc/HTML/de/khexedit -@dirrm share/doc/HTML/de/khelpcenter/visualdict -@dirrm share/doc/HTML/de/khelpcenter/faq -@dirrm share/doc/HTML/de/khelpcenter -@dirrm share/doc/HTML/de/kghostview -@dirrm share/doc/HTML/de/kfract -@dirrm share/doc/HTML/de/kfouleggs -@dirrm share/doc/HTML/de/kfloppy -@dirrm share/doc/HTML/de/kfind -@dirrm share/doc/HTML/de/kedit -@dirrm share/doc/HTML/de/kdvi -@dirrm share/doc/HTML/de/kdm -@dirrm share/doc/HTML/de/kdict -@dirrm share/doc/HTML/de/kdf -@dirrm share/doc/HTML/de/kdesu -@dirrm share/doc/HTML/de/kdebugdialog -@dirrm share/doc/HTML/de/kcron -@dirrm share/doc/HTML/de/kcontrol -@dirrm share/doc/HTML/de/kcalc -@dirrm share/doc/HTML/de/kblackbox -@dirrm share/doc/HTML/de/kbattleship -@dirrm share/doc/HTML/de/kbackgammon -@dirrm share/doc/HTML/de/katomic -@dirrm share/doc/HTML/de/kate-plugins -@dirrm share/doc/HTML/de/kasteroids -@dirrm share/doc/HTML/de/karm -@dirrm share/doc/HTML/de/kaddressbook -@dirrm share/doc/HTML/de/kabalone -@dirrm share/doc/HTML/de/kab -@dirrm share/doc/HTML/de/common -@dirrm share/doc/HTML/de/caitoo -@dirrm share/doc/HTML/de/artsbuilder -@dirrm share/doc/HTML/de/ark -@dirrm share/doc/HTML/de/amor -@dirrm share/doc/HTML/de/aktion -@dirrm share/doc/HTML/de -@dirrm share/doc/HTML/da/pixie -@dirrm share/doc/HTML/da/lskat -@dirrm share/doc/HTML/da/kwin4 -@dirrm share/doc/HTML/da/kview -@dirrm share/doc/HTML/da/ktuberling -@dirrm share/doc/HTML/da/ktron -@dirrm share/doc/HTML/da/ktouch -@dirrm share/doc/HTML/da/kspell -@dirrm share/doc/HTML/da/kspaceduel -@dirrm share/doc/HTML/da/ksokoban -@dirrm share/doc/HTML/da/ksnapshot -@dirrm share/doc/HTML/da/ksnake -@dirrm share/doc/HTML/da/ksirtet -@dirrm share/doc/HTML/da/kshisen -@dirrm share/doc/HTML/da/ksame -@dirrm share/doc/HTML/da/kruler -@dirrm share/doc/HTML/da/kreversi -@dirrm share/doc/HTML/da/kpoker -@dirrm share/doc/HTML/da/kpm -@dirrm share/doc/HTML/da/kpat -@dirrm share/doc/HTML/da/kpaint -@dirrm share/doc/HTML/da/konquest -@dirrm share/doc/HTML/da/konqueror -@dirrm share/doc/HTML/da/kmines -@dirrm share/doc/HTML/da/kmail -@dirrm share/doc/HTML/da/klines -@dirrm share/doc/HTML/da/kjumpingcube -@dirrm share/doc/HTML/da/kjezz -@dirrm share/doc/HTML/da/kioslave -@dirrm share/doc/HTML/da/kiconedit -@dirrm share/doc/HTML/da/khelpcenter -@dirrm share/doc/HTML/da/kghostview -@dirrm share/doc/HTML/da/kfract -@dirrm share/doc/HTML/da/kfouleggs -@dirrm share/doc/HTML/da/kedit -@dirrm share/doc/HTML/da/kdvi -@dirrm share/doc/HTML/da/kdebugdialog -@dirrm share/doc/HTML/da/kcontrol -@dirrm share/doc/HTML/da/kblackbox -@dirrm share/doc/HTML/da/kbattleship -@dirrm share/doc/HTML/da/kbackgammon -@dirrm share/doc/HTML/da/katomic -@dirrm share/doc/HTML/da/kate -@dirrm share/doc/HTML/da/kasteroids -@dirrm share/doc/HTML/da/kaddressbook -@dirrm share/doc/HTML/da/kabalone -@dirrm share/doc/HTML/da/common -@dirrm share/doc/HTML/da/amor -@dirrm share/doc/HTML/da -@dirrm share/doc/HTML/cs/khelpcenter/quickstart -@dirrm share/doc/HTML/cs/khelpcenter -@dirrm share/doc/HTML/cs/kcontrol -@dirrm share/doc/HTML/cs/common -@dirrm share/doc/HTML/cs -@dirrm share/doc/HTML/af/kicker-applets -@dirrm share/doc/HTML/af -@dirrm share/apps/ktuberling/sounds/sl -@dirrm share/apps/ktuberling/sounds/ro -@dirrm share/apps/ktuberling/sounds/nl -@dirrm share/apps/ktuberling/sounds/fr -@dirrm share/apps/ktuberling/sounds/da diff --git a/misc/kde2-i18n/scripts/Configure b/misc/kde2-i18n/scripts/Configure deleted file mode 100644 index a5fb316..0000000 --- a/misc/kde2-i18n/scripts/Configure +++ /dev/null @@ -1,92 +0,0 @@ -#! /bin/sh -# $FreeBSD$ - -/bin/rm -f ${PLIST} ${PLIST}.dirs - -if [ "${LINGUAS}" ]; then - set `echo $LINGUAS` -else -if [ "${BATCH}" ]; then - set \"af\" \"az\" \"bg\" \"cs\" \"da\" \"el\" \"en_GB\" \"eo\" \"es\" \"et\" \"fi\" \"he\" \"hu\" \"is\" \"it\" \"lt\" \"lv\" \"mt\" \"nl\" \"no\" \"no_NY\" \"pl\" \"pt\" \"pt_BR\" \"ro\" \"sk\" \"sl\" \"sr\" \"sv\" \"ta\" \"th\" \"tr\" \"xh\" \"zh_TW.Big5\" -else - /usr/bin/dialog --title "Select languages" --clear \ - --checklist "\n\ -Please select desired languages:" -1 -1 16 \ -af "Afrikaans" OFF \ -az "Azerbaijani Turkish" OFF \ -bg "Bulgarisch" OFF \ -cs "Czech" OFF \ -da "Danish" OFF \ -nl "Dutch" OFF \ -eo "Esperanto" OFF \ -et "Estonian" OFF \ -fi "Finnish" ON \ -fr "French" ON \ -de "German" ON \ -el "Greek" OFF \ -he "Hebrew" OFF \ -hu "Hungarian" OFF \ -is "Icelandic" OFF \ -it "Italian" OFF \ -ja "Japanese" ON \ -ko "Korean" ON \ -lt "Lithuanian" ON \ -lv "Latvian" ON \ -mt "Maltese" ON \ -no "Norwegian" OFF \ -no_NY "Norwegian (Nynorsk)" OFF \ -pl "Polish" OFF \ -pt "Portuguese" OFF \ -pt_BR "Portuguese (Brazil)" OFF \ -ro "Romanian" OFF \ -ru "Russian" ON \ -sr "Serbian" OFF \ -zh_CN.GB2312 "Simplified Chinese" ON \ -sk "Slovak" OFF \ -sl "Slovenian" OFF \ -es "Spanish" OFF \ -sv "Swedish" OFF \ -ta "Tamil" OFF \ -th "Thai" OFF \ -zh_TW.Big5 "Traditional Chinese" ON \ -tr "Turkish" OFF \ -en_GB "UK English" OFF \ -uk "Ukrainian" ON \ -xh "Xhosa" OFF \ -2> /tmp/chklist.tmp.$$ - - retval=$? - - if [ -s /tmp/chklist.tmp.$$ ]; then - set `cat /tmp/chklist.tmp.$$` - fi - rm -f /tmp/chklist.tmp.$$ - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi -fi - -/bin/rm -f ${WRKSRC}/subdirs -#/usr/bin/grep "^[^@].*/en/.*" ${CURDIR}/pkg-plist > ${PLIST} -#/usr/bin/grep "^@.*/en/.*" ${CURDIR}/pkg-plist > ${PLIST}.dirs - -while [ "$1" ]; do - a=`echo -n $1 | /usr/bin/sed -e 's#\"##g'` - echo $a >> ${WRKSRC}/subdirs - /usr/bin/grep "^[^@].*/$a/.*" ${CURDIR}/pkg-plist >> ${PLIST} - /usr/bin/grep "^[^@].*-$a\$" ${CURDIR}/pkg-plist >> ${PLIST} - /usr/bin/grep "^@.*/$a/.*" ${CURDIR}/pkg-plist >> ${PLIST}.dirs - /usr/bin/grep "^@.*/$a$" ${CURDIR}/pkg-plist >> ${PLIST}.dirs - shift -done - -/bin/cat ${PLIST}.dirs >> ${PLIST} -/bin/cat ${FILESDIR}/pkg-plist.sub >> ${PLIST} diff --git a/misc/kdeaddons/Makefile b/misc/kdeaddons/Makefile deleted file mode 100644 index 62ff4c3..0000000 --- a/misc/kdeaddons/Makefile +++ /dev/null @@ -1,52 +0,0 @@ -# New ports collection makefile for: addons for kde -# Date created: 7 August 2001 -# Whom: will -# -# $FreeBSD$ -# - -PORTNAME= kdeaddons -PORTVERSION= 2.2.2 -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= Attic/${PORTVERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER?= ports@FreeBSD.org - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 -LIB_DEPENDS+= noatun.0:${PORTSDIR}/audio/kdemultimedia2 \ - SDL-1.1.4:${PORTSDIR}/devel/sdl12 - -USE_REINPLACE= yes -WITH_SDL= yes -USE_KDEBASE_VER=2 -USE_BZIP2= yes -GNU_CONFIGURE= yes -USE_GMAKE= yes -PLIST_SUB+= RM=${RM} -CONFIGURE_ENV+= SDL_CONFIG="${LOCALBASE}/bin/sdl11-config" - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 500029 -_NO_KDE_OBJPRELINK=yes -.endif - -.include "${.CURDIR}/../../x11/kde2/Makefile.kde" - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - cd ${WRKSRC} && env PATH=${WRKSRC}/auto-bin:$$PATH \ - ${GMAKE} -f Makefile.cvs - ${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \ - "s@sdl-config@${LOCALBASE}/bin/sdl11-config@g" - -.include <bsd.port.post.mk> diff --git a/misc/kdeaddons/distinfo b/misc/kdeaddons/distinfo deleted file mode 100644 index 40c40c3..0000000 --- a/misc/kdeaddons/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/kdeaddons-2.2.2.tar.bz2) = 9392da0992f4aede5f6a86840e47fef6 diff --git a/misc/kdeaddons/files/patch-noatun-plugins::blurscope::Makefile.in b/misc/kdeaddons/files/patch-noatun-plugins::blurscope::Makefile.in deleted file mode 100644 index d7a2b36..0000000 --- a/misc/kdeaddons/files/patch-noatun-plugins::blurscope::Makefile.in +++ /dev/null @@ -1,16 +0,0 @@ ---- noatun-plugins/blurscope/Makefile.in.orig Sat Sep 8 09:52:51 2001 -+++ noatun-plugins/blurscope/Makefile.in Wed Oct 24 23:03:09 2001 -@@ -215,11 +215,11 @@ - x_includes = @x_includes@ - x_libraries = @x_libraries@ - --INCLUDES = -I$(kde_includes)/noatun `sdl-config --cflags` $(all_includes) -+INCLUDES = -I$(kde_includes)/noatun `$(SDL_CONFIG) --cflags` $(all_includes) - - lib_LTLIBRARIES = libnoatunblurscope.la - libnoatunblurscope_la_SOURCES = sdlscope.cpp scopedisplayer.cpp --libnoatunblurscope_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined `sdl-config --libs` -+libnoatunblurscope_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined `$(SDL_CONFIG) --libs` - libnoatunblurscope_la_LIBADD = $(LIB_KFILE) -lnoatun -lm - #>- libnoatunblurscope_la_METASOURCES = AUTO - diff --git a/misc/kdeaddons/files/patch-noatun-plugins::noatunmadness::Makefile.in b/misc/kdeaddons/files/patch-noatun-plugins::noatunmadness::Makefile.in deleted file mode 100644 index e32afb4..0000000 --- a/misc/kdeaddons/files/patch-noatun-plugins::noatunmadness::Makefile.in +++ /dev/null @@ -1,16 +0,0 @@ ---- noatun-plugins/noatunmadness/Makefile.in.orig Sat Sep 8 09:52:51 2001 -+++ noatun-plugins/noatunmadness/Makefile.in Wed Oct 24 23:06:44 2001 -@@ -215,11 +215,11 @@ - x_includes = @x_includes@ - x_libraries = @x_libraries@ - --INCLUDES = -I$(kde_includes)/noatun `sdl-config --cflags` $(all_includes) -+INCLUDES = -I$(kde_includes)/noatun `$(SDL_CONFIG) --cflags` $(all_includes) - - lib_LTLIBRARIES = libnoatunmadness.la - libnoatunmadness_la_SOURCES = madness.cpp --libnoatunmadness_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined `sdl-config --libs` -+libnoatunmadness_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined `$(SDL_CONFIG) --libs` - libnoatunmadness_la_LIBADD = $(LIB_KFILE) -lnoatun -lm - #>- libnoatunmadness_la_METASOURCES = AUTO - diff --git a/misc/kdeaddons/pkg-comment b/misc/kdeaddons/pkg-comment deleted file mode 100644 index 1cf8754..0000000 --- a/misc/kdeaddons/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Additional plugins and scripts for some KDE applications diff --git a/misc/kdeaddons/pkg-descr b/misc/kdeaddons/pkg-descr deleted file mode 100644 index efcb40d..0000000 --- a/misc/kdeaddons/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -kdeaddons contains additional plugins and scripts for some KDE applications. -These include plugins for kate, kicker, konqueror and noatun, in addition to -scripts for knewsticker. diff --git a/misc/kdeaddons/pkg-plist b/misc/kdeaddons/pkg-plist deleted file mode 100644 index de49b3f..0000000 --- a/misc/kdeaddons/pkg-plist +++ /dev/null @@ -1,133 +0,0 @@ -bin/dcop_kate -bin/noatunsynaescope.bin -bin/noatuntippecanoe.bin -bin/noatuntyler.bin -bin/testor -lib/kde2/libbabelfishplugin.la -lib/kde2/libbabelfishplugin.so -lib/kde2/libdirfilterplugin.la -lib/kde2/libdirfilterplugin.so -lib/kde2/libdomtreeviewerplugin.la -lib/kde2/libdomtreeviewerplugin.so -lib/kde2/libkatehtmltoolsplugin.la -lib/kde2/libkatehtmltoolsplugin.so -lib/kde2/libkateinsertcommandplugin.la -lib/kde2/libkateinsertcommandplugin.so -lib/kde2/libkateopenheaderplugin.la -lib/kde2/libkateopenheaderplugin.so -lib/kde2/libkateprojectmanagerplugin.la -lib/kde2/libkateprojectmanagerplugin.so -lib/kde2/libkatetextfilterplugin.la -lib/kde2/libkatetextfilterplugin.so -lib/kde2/libkhtmlsettingsplugin.la -lib/kde2/libkhtmlsettingsplugin.so -lib/kde2/libkimgallery.la -lib/kde2/libkimgallery.so -lib/kde2/libuachangerplugin.la -lib/kde2/libuachangerplugin.so -lib/kde2/libvalidatorsplugin.la -lib/kde2/libvalidatorsplugin.so -lib/kde2/libwebarchiverplugin.la -lib/kde2/libwebarchiverplugin.so -lib/kde2/webarchivethumbnail.la -lib/kde2/webarchivethumbnail.so -lib/libkolourpicker.la -lib/libkolourpicker.so -lib/libkolourpicker.so.1 -lib/libktimemon.la -lib/libktimemon.so -lib/libktimemon.so.1 -lib/libnoatunblurscope.la -lib/libnoatunblurscope.so -lib/libnoatunluckytag.la -lib/libnoatunluckytag.so -lib/libnoatunmadness.la -lib/libnoatunmadness.so -lib/libnoatunsynaescope.la -lib/libnoatunsynaescope.so -lib/libnoatuntippecanoe.la -lib/libnoatuntippecanoe.so -lib/libnoatuntyler.la -lib/libnoatuntyler.so -lib/libnoatunwakeup.la -lib/libnoatunwakeup.so -share/apps/kate/plugins/katehtmltools.desktop -share/apps/kate/plugins/katehtmltools/ui.rc -share/apps/kate/plugins/kateinsertcommand.desktop -share/apps/kate/plugins/kateinsertcommand/ui.rc -share/apps/kate/plugins/kateopenheader.desktop -share/apps/kate/plugins/kateopenheader/ui.rc -share/apps/kate/plugins/kateprojectmanager.desktop -share/apps/kate/plugins/kateprojectmanager/ui.rc -share/apps/kate/plugins/katetextfilter.desktop -share/apps/kate/plugins/katetextfilter/ui.rc -share/apps/khtml/kpartplugins/khtmlsettingsplugin.rc -share/apps/khtml/kpartplugins/plugin_babelfish.rc -share/apps/khtml/kpartplugins/plugin_domtreeviewer.rc -share/apps/khtml/kpartplugins/plugin_validators.rc -share/apps/khtml/kpartplugins/plugin_webarchiver.rc -share/apps/khtml/kpartplugins/uachangerplugin.rc -share/apps/kicker/applets/kolourpicker.desktop -share/apps/kicker/applets/ktimemon.desktop -share/apps/knewsticker/scripts/Generic.Newsticker.Error -share/apps/knewsticker/scripts/Readme.ErrorHandling -share/apps/knewsticker/scripts/Readme.newsrss -share/apps/knewsticker/scripts/Readme.stock -share/apps/knewsticker/scripts/fyensget.py -share/apps/knewsticker/scripts/newsrss.pl -share/apps/knewsticker/scripts/stock.pl -share/apps/konqiconview/kpartplugins/dirfilterplugin.rc -share/apps/konqiconview/kpartplugins/kimgalleryplugin.rc -share/apps/konqlistview/kpartplugins/dirfilterplugin.rc -share/apps/konqlistview/kpartplugins/kimgalleryplugin.rc -share/apps/noatun/blurscope.plugin -share/apps/noatun/luckytag.plugin -share/apps/noatun/madness.plugin -share/apps/noatun/synaescope.plugin -share/apps/noatun/tippecanoe.plugin -share/apps/noatun/tyler.plugin -share/apps/noatun/tylerstates -share/apps/noatun/wakeup.plugin -share/doc/HTML/en/kate-plugins/common -share/doc/HTML/en/kate-plugins/helloworld.docbook -share/doc/HTML/en/kate-plugins/htmltools.docbook -share/doc/HTML/en/kate-plugins/index.cache.bz2 -share/doc/HTML/en/kate-plugins/index.docbook -share/doc/HTML/en/kate-plugins/insertcommand.docbook -share/doc/HTML/en/kate-plugins/openheader.docbook -share/doc/HTML/en/kate-plugins/projectmanager.docbook -share/doc/HTML/en/kate-plugins/textfilter.docbook -share/doc/HTML/en/kicker-applets/common -share/doc/HTML/en/kicker-applets/index.cache.bz2 -share/doc/HTML/en/kicker-applets/index.docbook -share/doc/HTML/en/kicker-applets/kolourpicker.docbook -share/doc/HTML/en/kicker-applets/ktimemon.docbook -share/icons/hicolor/16x16/actions/babelfish.png -share/icons/hicolor/16x16/actions/cssvalidator.png -share/icons/hicolor/16x16/actions/domtreeviewer.png -share/icons/hicolor/16x16/actions/htmlvalidator.png -share/icons/hicolor/16x16/actions/imagegallery.png -share/icons/hicolor/16x16/actions/validators.png -share/icons/hicolor/16x16/actions/webarchiver.png -share/icons/hicolor/22x22/actions/babelfish.png -share/icons/hicolor/22x22/actions/cssvalidator.png -share/icons/hicolor/22x22/actions/domtreeviewer.png -share/icons/hicolor/22x22/actions/htmlvalidator.png -share/icons/hicolor/22x22/actions/imagegallery.png -share/icons/hicolor/22x22/actions/validators.png -share/icons/hicolor/22x22/actions/webarchiver.png -share/icons/locolor/16x16/apps/ktimemon.png -share/icons/locolor/32x32/apps/ktimemon.png -share/mimelnk/application/x-webarchive.desktop -share/services/webarchivethumbnail.desktop -@dirrm share/doc/HTML/en/kicker-applets -@dirrm share/doc/HTML/en/kate-plugins -@dirrm share/apps/knewsticker/scripts -@dirrm share/apps/knewsticker -@dirrm share/apps/khtml/kpartplugins -@dirrm share/apps/kate/plugins/katetextfilter -@dirrm share/apps/kate/plugins/kateprojectmanager -@dirrm share/apps/kate/plugins/kateopenheader -@dirrm share/apps/kate/plugins/kateinsertcommand -@dirrm share/apps/kate/plugins/katehtmltools -@dirrm share/apps/kate/plugins diff --git a/misc/kdeutils2/Makefile b/misc/kdeutils2/Makefile deleted file mode 100644 index 5ae8cbf..0000000 --- a/misc/kdeutils2/Makefile +++ /dev/null @@ -1,46 +0,0 @@ -# New ports collection makefile for: kdeutils2 -# Date created: Sun 14 May 2000 02:52:20 -# Whom: Will Andrews <will@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= kdeutils -PORTVERSION= 2.2.2 -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= Attic/${PORTVERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER?= kde@FreeBSD.org - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 - -USE_KDELIBS_VER=2 -USE_BZIP2= yes -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -USE_GMAKE= yes -MAN1= efax.1 efix.1 fax.1 - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 500029 -_NO_KDE_OBJPRELINK=yes -.endif - -.include "${.CURDIR}/../../x11/kde2/Makefile.kde" - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - cd ${WRKSRC} && env PATH=${WRKSRC}/auto-bin:$$PATH \ - ${GMAKE} -f Makefile.cvs - -.include <bsd.port.post.mk> diff --git a/misc/kdeutils2/distinfo b/misc/kdeutils2/distinfo deleted file mode 100644 index 2a396fa..0000000 --- a/misc/kdeutils2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/kdeutils-2.2.2.tar.bz2) = 68c3c86d97c3a95079f81b2c7f4bf35a diff --git a/misc/kdeutils2/files/patch-portable.cpp b/misc/kdeutils2/files/patch-portable.cpp deleted file mode 100644 index d6746dc..0000000 --- a/misc/kdeutils2/files/patch-portable.cpp +++ /dev/null @@ -1,20 +0,0 @@ ---- klaptopdaemon/portable.cpp- Thu Jun 28 00:08:02 2001 -+++ klaptopdaemon/portable.cpp Thu Jun 28 00:08:22 2001 -@@ -453,7 +453,7 @@ - if (ret == -1) - return 0; - -- return (info.ai_batt_time != 0xffff); -+ return (info.ai_batt_time != -1); - } - - // -@@ -638,7 +638,7 @@ - - p.powered = info.ai_acline; - p.percentage = (info.ai_batt_life==255 ? 100 : info.ai_batt_life); -- p.time = (info.ai_batt_time != 0xffff ? info.ai_batt_time/60 : -1); -+ p.time = (info.ai_batt_time != -1 ? info.ai_batt_time/60 : -1); - return(p); - - bad: diff --git a/misc/kdeutils2/pkg-comment b/misc/kdeutils2/pkg-comment deleted file mode 100644 index 186230f..0000000 --- a/misc/kdeutils2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Utilities for the KDE integrated X11 desktop diff --git a/misc/kdeutils2/pkg-descr b/misc/kdeutils2/pkg-descr deleted file mode 100644 index 90ae457..0000000 --- a/misc/kdeutils2/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -KDE provides an integrated X11 based environment, much like CDE. diff --git a/misc/kdeutils2/pkg-plist b/misc/kdeutils2/pkg-plist deleted file mode 100644 index a26fa72..0000000 --- a/misc/kdeutils2/pkg-plist +++ /dev/null @@ -1,316 +0,0 @@ -bin/ark -bin/efax -bin/efix -bin/fax -bin/kab -bin/karm -bin/kcalc -bin/kcharselect -bin/kdepasswd -bin/kdessh -bin/kdf -bin/kedit -bin/kfind -bin/kfloppy -bin/khexedit -bin/kjots -bin/klaptopdaemon -bin/kljettool -bin/klpq -bin/klprfax -bin/klprfax_filter -bin/klprfax_lpd -bin/knotes -bin/ktimer -bin/kwikdisk -include/KNotesIface.h -lib/kcalc.la -lib/kcalc.so -lib/kde2/kedit.la -lib/kde2/kedit.so -lib/kfind.la -lib/kfind.so -lib/libark.la -lib/libark.so -lib/libark.so.1 -lib/libkcharselectapplet.la -lib/libkcharselectapplet.so -lib/libkcharselectapplet.so.1 -lib/libkcm_kdf.la -lib/libkcm_kdf.so -lib/libkcm_laptop.la -lib/libkcm_laptop.so -share/applnk/Editors/KEdit.desktop -share/applnk/Kfind.desktop -share/applnk/Settings/Information/kcmdf.desktop -share/applnk/Settings/Information/pcmcia.desktop -share/applnk/Settings/PowerControl/battery.desktop -share/applnk/Settings/PowerControl/bwarning.desktop -share/applnk/Settings/PowerControl/cwarning.desktop -share/applnk/Settings/PowerControl/power.desktop -share/applnk/System/kdf.desktop -share/applnk/System/kwikdisk.desktop -share/applnk/Utilities/KCharSelect.desktop -share/applnk/Utilities/KFloppy.desktop -share/applnk/Utilities/KLJetTool.desktop -share/applnk/Utilities/KLpq.desktop -share/applnk/Utilities/Kjots.desktop -share/applnk/Utilities/ark.desktop -share/applnk/Utilities/kab.desktop -share/applnk/Utilities/karm.desktop -share/applnk/Utilities/kcalc.desktop -share/applnk/Utilities/kdepasswd.desktop -share/applnk/Utilities/khexedit.desktop -share/applnk/Utilities/klprfax.desktop -share/applnk/Utilities/knotes.desktop -share/applnk/Utilities/ktimer.desktop -share/apps/ark/ark_part.rc -share/apps/ark/arkui.rc -share/apps/ark/icons/hicolor/22x22/actions/ark_adddir.png -share/apps/ark/icons/hicolor/22x22/actions/ark_addfile.png -share/apps/ark/icons/hicolor/22x22/actions/ark_delete.png -share/apps/ark/icons/hicolor/22x22/actions/ark_extract.png -share/apps/ark/icons/hicolor/22x22/actions/ark_help.png -share/apps/ark/icons/hicolor/22x22/actions/ark_new.png -share/apps/ark/icons/hicolor/22x22/actions/ark_open.png -share/apps/ark/icons/hicolor/22x22/actions/ark_options.png -share/apps/ark/icons/hicolor/22x22/actions/ark_selectall.png -share/apps/ark/icons/hicolor/22x22/actions/ark_view.png -share/apps/kab/htmlexport/templates/index.html -share/apps/kab/htmlexport/templates/kab_address.html -share/apps/kab/htmlexport/templates/kab_background.gif -share/apps/kab/htmlexport/templates/kab_entrylist.html -share/apps/kab/htmlexport/templates/kab_person.html -share/apps/kab/pics/addressbook_logo.png -share/apps/karm/karmui.rc -share/apps/karm/pics/clock.xpm -share/apps/karm/pics/clockedit.xpm -share/apps/karm/pics/empty-watch.xpm -share/apps/karm/pics/filedel.xpm -share/apps/karm/pics/watch-0.xpm -share/apps/karm/pics/watch-1.xpm -share/apps/karm/pics/watch-2.xpm -share/apps/karm/pics/watch-3.xpm -share/apps/karm/pics/watch-4.xpm -share/apps/karm/pics/watch-5.xpm -share/apps/karm/pics/watch-6.xpm -share/apps/karm/pics/watch-7.xpm -share/apps/kcalc/pics/kcalclogo.png -share/apps/kdf/pics/delete.png -share/apps/kdf/pics/tick.png -share/apps/kedit/keditui.rc -share/apps/kfind/icons/locolor/22x22/actions/archive.png -share/apps/kfind/icons/locolor/22x22/actions/delete.png -share/apps/kfind/icons/locolor/22x22/actions/idea.png -share/apps/kfind/icons/locolor/22x22/actions/info.png -share/apps/kfind/icons/locolor/22x22/actions/openfile.png -share/apps/kfind/icons/locolor/22x22/actions/save.png -share/apps/kfind/icons/locolor/22x22/actions/search.png -share/apps/kfloppy/pics/kfloppylogo.png -share/apps/khexedit/toolbar/hexdrag.png -share/apps/khexedit/toolbar/hexmask.png -share/apps/khexedit/toolbar/hexwrite.png -share/apps/kicker/applets/kcharselectapplet.desktop -share/apps/kjots/pics/filedel.png -share/apps/klaptopdaemon/icons/hicolor/16x16/actions/laptop_charge.png -share/apps/klaptopdaemon/icons/hicolor/16x16/actions/laptop_nobattery.png -share/apps/klaptopdaemon/icons/hicolor/16x16/actions/laptop_nocharge.png -share/apps/klaptopdaemon/icons/hicolor/16x16/actions/power.png -share/apps/klaptopdaemon/icons/hicolor/32x32/actions/power.png -share/apps/kljettool/pics/kljetlogo.png -share/apps/knotes/knotesui.rc -share/apps/knotes/pics/knotesclose.png -share/apps/knotes/pics/knotesdelete.png -share/apps/knotes/pics/knoteslogo.png -share/apps/konqueror/servicemenus/arkservicemenu.desktop -share/config/knotesrc -share/doc/HTML/en/ark/common -share/doc/HTML/en/ark/index.cache.bz2 -share/doc/HTML/en/ark/index.docbook -share/doc/HTML/en/kab/common -share/doc/HTML/en/kab/index.cache.bz2 -share/doc/HTML/en/kab/index.docbook -share/doc/HTML/en/kab/kab-edit.png -share/doc/HTML/en/kab/kab-using.png -share/doc/HTML/en/karm/common -share/doc/HTML/en/karm/index.cache.bz2 -share/doc/HTML/en/karm/index.docbook -share/doc/HTML/en/karm/karm.png -share/doc/HTML/en/kcalc/common -share/doc/HTML/en/kcalc/index.cache.bz2 -share/doc/HTML/en/kcalc/index.docbook -share/doc/HTML/en/kcalc/kcalc_on_Aix.txt -share/doc/HTML/en/kcalc/kcalc_on_OSF.txt -share/doc/HTML/en/kdf/common -share/doc/HTML/en/kdf/index.cache.bz2 -share/doc/HTML/en/kdf/index.docbook -share/doc/HTML/en/kdf/kdf.png -share/doc/HTML/en/kdf/kdf_config.png -share/doc/HTML/en/kedit/common -share/doc/HTML/en/kedit/index.cache.bz2 -share/doc/HTML/en/kedit/index.docbook -share/doc/HTML/en/kfind/common -share/doc/HTML/en/kfind/index.cache.bz2 -share/doc/HTML/en/kfind/index.docbook -share/doc/HTML/en/kfloppy/common -share/doc/HTML/en/kfloppy/index.cache.bz2 -share/doc/HTML/en/kfloppy/index.docbook -share/doc/HTML/en/khexedit/common -share/doc/HTML/en/khexedit/index.cache.bz2 -share/doc/HTML/en/khexedit/index.docbook -share/doc/HTML/en/khexedit/khexedit1.png -share/doc/HTML/en/kjots/common -share/doc/HTML/en/kjots/index.cache.bz2 -share/doc/HTML/en/kjots/index.docbook -share/doc/HTML/en/kljettool/README -share/doc/HTML/en/kljettool/common -share/doc/HTML/en/kljettool/djcdoscommands.txt -share/doc/HTML/en/kljettool/filter -share/doc/HTML/en/kljettool/hp690c.zip -share/doc/HTML/en/kljettool/index.cache.bz2 -share/doc/HTML/en/kljettool/index.docbook -share/doc/HTML/en/kljettool/magic -share/doc/HTML/en/kljettool/screenshot.png -share/doc/HTML/en/klpq/common -share/doc/HTML/en/klpq/index.cache.bz2 -share/doc/HTML/en/klpq/index.docbook -share/doc/HTML/en/klprfax/common -share/doc/HTML/en/klprfax/index.cache.bz2 -share/doc/HTML/en/klprfax/index.docbook -share/doc/HTML/en/knotes/common -share/doc/HTML/en/knotes/index.cache.bz2 -share/doc/HTML/en/knotes/index.docbook -share/doc/HTML/en/kpm/common -share/doc/HTML/en/kpm/index.cache.bz2 -share/doc/HTML/en/kpm/index.docbook -share/doc/HTML/en/kpm/kpmjobs.png -share/doc/HTML/en/kpm/kpmmemory.png -share/doc/HTML/en/kpm/kpmstart.png -share/doc/HTML/en/kpm/kpmtext.png -share/doc/HTML/en/kpm/qps.1 -share/icons/hicolor/16x16/apps/ark.png -share/icons/hicolor/16x16/apps/kab.png -share/icons/hicolor/16x16/apps/karm.png -share/icons/hicolor/16x16/apps/kcalc.png -share/icons/hicolor/16x16/apps/kcharselect.png -share/icons/hicolor/16x16/apps/kcmdf.png -share/icons/hicolor/16x16/apps/kdf.png -share/icons/hicolor/16x16/apps/kedit.png -share/icons/hicolor/16x16/apps/kfind.png -share/icons/hicolor/16x16/apps/kfloppy.png -share/icons/hicolor/16x16/apps/khexedit.png -share/icons/hicolor/16x16/apps/kjots.png -share/icons/hicolor/16x16/apps/klaptopdaemon.png -share/icons/hicolor/16x16/apps/kljettool.png -share/icons/hicolor/16x16/apps/klpq.png -share/icons/hicolor/16x16/apps/klprfax.png -share/icons/hicolor/16x16/apps/knotes.png -share/icons/hicolor/16x16/apps/kwikdisk.png -share/icons/hicolor/16x16/apps/laptop_battery.png -share/icons/hicolor/16x16/apps/laptop_pcmcia.png -share/icons/hicolor/32x32/apps/ark.png -share/icons/hicolor/32x32/apps/kab.png -share/icons/hicolor/32x32/apps/karm.png -share/icons/hicolor/32x32/apps/kcalc.png -share/icons/hicolor/32x32/apps/kcmdf.png -share/icons/hicolor/32x32/apps/kdf.png -share/icons/hicolor/32x32/apps/kedit.png -share/icons/hicolor/32x32/apps/kfind.png -share/icons/hicolor/32x32/apps/kfloppy.png -share/icons/hicolor/32x32/apps/khexedit.png -share/icons/hicolor/32x32/apps/kjots.png -share/icons/hicolor/32x32/apps/kljettool.png -share/icons/hicolor/32x32/apps/klpq.png -share/icons/hicolor/32x32/apps/klprfax.png -share/icons/hicolor/32x32/apps/knotes.png -share/icons/hicolor/32x32/apps/kwikdisk.png -share/icons/hicolor/32x32/apps/laptop_battery.png -share/icons/hicolor/32x32/apps/laptop_pcmcia.png -share/icons/hicolor/48x48/apps/ark.png -share/icons/hicolor/48x48/apps/kab.png -share/icons/hicolor/48x48/apps/karm.png -share/icons/hicolor/48x48/apps/kcalc.png -share/icons/hicolor/48x48/apps/kcharselect.png -share/icons/hicolor/48x48/apps/kedit.png -share/icons/hicolor/48x48/apps/kfind.png -share/icons/hicolor/48x48/apps/kfloppy.png -share/icons/hicolor/48x48/apps/khexedit.png -share/icons/hicolor/48x48/apps/kjots.png -share/icons/hicolor/48x48/apps/kljettool.png -share/icons/hicolor/48x48/apps/klpq.png -share/icons/hicolor/48x48/apps/knotes.png -share/icons/hicolor/48x48/apps/laptop_battery.png -share/icons/hicolor/48x48/apps/laptop_pcmcia.png -share/icons/locolor/16x16/apps/klprfax.png -share/icons/locolor/32x32/apps/klprfax.png -share/services/arkpart.desktop -@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/icons/hicolor/48x48/apps -@dirrm share/icons/hicolor/32x32/apps -@dirrm share/doc/HTML/en/kpm -@dirrm share/doc/HTML/en/knotes -@dirrm share/doc/HTML/en/klprfax -@dirrm share/doc/HTML/en/klpq -@dirrm share/doc/HTML/en/kljettool -@dirrm share/doc/HTML/en/kjots -@dirrm share/doc/HTML/en/khexedit -@dirrm share/doc/HTML/en/kfloppy -@dirrm share/doc/HTML/en/kfind -@dirrm share/doc/HTML/en/kedit -@dirrm share/doc/HTML/en/kdf -@dirrm share/doc/HTML/en/kcalc -@dirrm share/doc/HTML/en/karm -@dirrm share/doc/HTML/en/kab -@dirrm share/doc/HTML/en/ark -@dirrm share/apps/konqueror/servicemenus -@dirrm share/apps/konqueror -@dirrm share/apps/knotes/pics -@dirrm share/apps/knotes -@dirrm share/apps/kljettool/pics -@dirrm share/apps/kljettool -@dirrm share/apps/klaptopdaemon/icons/hicolor/32x32/actions -@dirrm share/apps/klaptopdaemon/icons/hicolor/32x32 -@dirrm share/apps/klaptopdaemon/icons/hicolor/16x16/actions -@dirrm share/apps/klaptopdaemon/icons/hicolor/16x16 -@dirrm share/apps/klaptopdaemon/icons/hicolor -@dirrm share/apps/klaptopdaemon/icons -@dirrm share/apps/klaptopdaemon -@dirrm share/apps/kjots/pics -@dirrm share/apps/kjots -@dirrm share/apps/kicker/applets -@dirrm share/apps/kicker -@dirrm share/apps/khexedit/toolbar -@dirrm share/apps/khexedit -@dirrm share/apps/kfloppy/pics -@dirrm share/apps/kfloppy -@dirrm share/apps/kfind/icons/locolor/22x22/actions -@dirrm share/apps/kfind/icons/locolor/22x22 -@dirrm share/apps/kfind/icons/locolor -@dirrm share/apps/kfind/icons -@dirrm share/apps/kfind -@dirrm share/apps/kedit -@dirrm share/apps/kdf/pics -@dirrm share/apps/kdf -@dirrm share/apps/kcalc/pics -@dirrm share/apps/kcalc -@dirrm share/apps/karm/pics -@dirrm share/apps/karm -@dirrm share/apps/kab/pics -@dirrm share/apps/kab/htmlexport/templates -@dirrm share/apps/kab/htmlexport -@dirrm share/apps/ark/icons/hicolor/22x22/actions -@dirrm share/apps/ark/icons/hicolor/22x22 -@dirrm share/apps/ark/icons/hicolor -@dirrm share/apps/ark/icons -@dirrm share/apps/ark -@dirrm share/applnk/Utilities -@dirrm share/applnk/System -@dirrm share/applnk/Settings/PowerControl -@dirrm share/applnk/Settings/Information -@dirrm share/applnk/Settings -@dirrm share/applnk/Editors -@dirrm share/applnk diff --git a/misc/koffice-i18n/Makefile b/misc/koffice-i18n/Makefile deleted file mode 100644 index 7927481..0000000 --- a/misc/koffice-i18n/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -# New ports collection makefile for: koffice-i18n -# Date created: 15 December 2001 -# Whom: SASAKI Katuhiro <sahiro@crest.ocn.ne.jp> -# -# $FreeBSD$ -# - -PORTNAME= koffice-i18n -PORTVERSION= 1.1.1 -PORTREVISION= 1 -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/koffice-${PORTVERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER?= sahiro@crest.ocn.ne.jp - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 -LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext -RUN_DEPENDS= koshell:${PORTSDIR}/editors/koffice - -USE_KDELIBS_VER=2 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes - -PLIST= ${WRKDIR}/PLIST -SCRIPTS_ENV+= PLIST=${PLIST} - -.include <bsd.port.pre.mk> - -post-extract: - @${RM} -fr ${WRKSRC}/nb ${WRKSRC}/nn - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - cd ${WRKSRC} && env PATH=${WRKSRC}/auto-bin:$$PATH \ - ${GMAKE} -f Makefile.cvs - @${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/Configure - -.include <bsd.port.post.mk> diff --git a/misc/koffice-i18n/distinfo b/misc/koffice-i18n/distinfo deleted file mode 100644 index 3d78fdf..0000000 --- a/misc/koffice-i18n/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/koffice-i18n-1.1.1.tar.bz2) = 3233e3f38f7dbc8d45a83add7bc2327a diff --git a/misc/koffice-i18n/pkg-comment b/misc/koffice-i18n/pkg-comment deleted file mode 100644 index 28de0ab..0000000 --- a/misc/koffice-i18n/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Localized messages for KOffice diff --git a/misc/koffice-i18n/pkg-descr b/misc/koffice-i18n/pkg-descr deleted file mode 100644 index 5a4554d..0000000 --- a/misc/koffice-i18n/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -Localized messages for KOffice. diff --git a/misc/koffice-i18n/pkg-plist b/misc/koffice-i18n/pkg-plist deleted file mode 100644 index 8bb0d7f..0000000 --- a/misc/koffice-i18n/pkg-plist +++ /dev/null @@ -1,567 +0,0 @@ -share/locale/az/LC_MESSAGES/csvfilter.mo -share/locale/az/LC_MESSAGES/example.mo -share/locale/az/LC_MESSAGES/graphite.mo -share/locale/az/LC_MESSAGES/kchart.mo -share/locale/az/LC_MESSAGES/kformula.mo -share/locale/az/LC_MESSAGES/kivio.mo -share/locale/az/LC_MESSAGES/koffice.mo -share/locale/az/LC_MESSAGES/kontour.mo -share/locale/az/LC_MESSAGES/koshell.mo -share/locale/az/LC_MESSAGES/kpresenter.mo -share/locale/az/LC_MESSAGES/krayon.mo -share/locale/az/LC_MESSAGES/kscan_plugin.mo -share/locale/az/LC_MESSAGES/kspread.mo -share/locale/az/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/az/LC_MESSAGES/kugar.mo -share/locale/az/LC_MESSAGES/kword.mo -share/locale/bg/LC_MESSAGES/example.mo -share/locale/bg/LC_MESSAGES/graphite.mo -share/locale/bg/LC_MESSAGES/kchart.mo -share/locale/bg/LC_MESSAGES/kformula.mo -share/locale/bg/LC_MESSAGES/kivio.mo -share/locale/bg/LC_MESSAGES/koffice.mo -share/locale/bg/LC_MESSAGES/kontour.mo -share/locale/bg/LC_MESSAGES/koshell.mo -share/locale/bg/LC_MESSAGES/kpresenter.mo -share/locale/bg/LC_MESSAGES/krayon.mo -share/locale/bg/LC_MESSAGES/kspread.mo -share/locale/bg/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/bg/LC_MESSAGES/kugar.mo -share/locale/bg/LC_MESSAGES/kword.mo -share/locale/cs/LC_MESSAGES/csvfilter.mo -share/locale/cs/LC_MESSAGES/kchart.mo -share/locale/cs/LC_MESSAGES/kivio.mo -share/locale/cs/LC_MESSAGES/koffice.mo -share/locale/cs/LC_MESSAGES/kontour.mo -share/locale/cs/LC_MESSAGES/koshell.mo -share/locale/cs/LC_MESSAGES/kpresenter.mo -share/locale/cs/LC_MESSAGES/krayon.mo -share/locale/cs/LC_MESSAGES/kscan_plugin.mo -share/locale/cs/LC_MESSAGES/kspread.mo -share/locale/cs/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/cs/LC_MESSAGES/kugar.mo -share/locale/cs/LC_MESSAGES/kword.mo -share/locale/da/LC_MESSAGES/csvfilter.mo -share/locale/da/LC_MESSAGES/example.mo -share/locale/da/LC_MESSAGES/graphite.mo -share/locale/da/LC_MESSAGES/kchart.mo -share/locale/da/LC_MESSAGES/kformula.mo -share/locale/da/LC_MESSAGES/kivio.mo -share/locale/da/LC_MESSAGES/kocryptfilter.mo -share/locale/da/LC_MESSAGES/koffice.mo -share/locale/da/LC_MESSAGES/kontour.mo -share/locale/da/LC_MESSAGES/koshell.mo -share/locale/da/LC_MESSAGES/kpresenter.mo -share/locale/da/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/da/LC_MESSAGES/krayon.mo -share/locale/da/LC_MESSAGES/kscan_plugin.mo -share/locale/da/LC_MESSAGES/kspread.mo -share/locale/da/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/da/LC_MESSAGES/kspreadqprofilter.mo -share/locale/da/LC_MESSAGES/kugar.mo -share/locale/da/LC_MESSAGES/kword.mo -share/locale/da/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/da/LC_MESSAGES/kwordlatexfilter.mo -share/locale/da/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/de/LC_MESSAGES/csvfilter.mo -share/locale/de/LC_MESSAGES/example.mo -share/locale/de/LC_MESSAGES/graphite.mo -share/locale/de/LC_MESSAGES/kchart.mo -share/locale/de/LC_MESSAGES/kformula.mo -share/locale/de/LC_MESSAGES/kivio.mo -share/locale/de/LC_MESSAGES/kocryptfilter.mo -share/locale/de/LC_MESSAGES/koffice.mo -share/locale/de/LC_MESSAGES/kontour.mo -share/locale/de/LC_MESSAGES/koshell.mo -share/locale/de/LC_MESSAGES/kpresenter.mo -share/locale/de/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/de/LC_MESSAGES/krayon.mo -share/locale/de/LC_MESSAGES/kscan_plugin.mo -share/locale/de/LC_MESSAGES/kspread.mo -share/locale/de/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/de/LC_MESSAGES/kspreadqprofilter.mo -share/locale/de/LC_MESSAGES/kugar.mo -share/locale/de/LC_MESSAGES/kword.mo -share/locale/de/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/de/LC_MESSAGES/kwordlatexfilter.mo -share/locale/de/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/en_GB/LC_MESSAGES/csvfilter.mo -share/locale/en_GB/LC_MESSAGES/example.mo -share/locale/en_GB/LC_MESSAGES/graphite.mo -share/locale/en_GB/LC_MESSAGES/kchart.mo -share/locale/en_GB/LC_MESSAGES/kformula.mo -share/locale/en_GB/LC_MESSAGES/kivio.mo -share/locale/en_GB/LC_MESSAGES/kocryptfilter.mo -share/locale/en_GB/LC_MESSAGES/koffice.mo -share/locale/en_GB/LC_MESSAGES/kontour.mo -share/locale/en_GB/LC_MESSAGES/koshell.mo -share/locale/en_GB/LC_MESSAGES/kpresenter.mo -share/locale/en_GB/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/en_GB/LC_MESSAGES/krayon.mo -share/locale/en_GB/LC_MESSAGES/kscan_plugin.mo -share/locale/en_GB/LC_MESSAGES/kspread.mo -share/locale/en_GB/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/en_GB/LC_MESSAGES/kspreadqprofilter.mo -share/locale/en_GB/LC_MESSAGES/kugar.mo -share/locale/en_GB/LC_MESSAGES/kword.mo -share/locale/en_GB/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/en_GB/LC_MESSAGES/kwordlatexfilter.mo -share/locale/en_GB/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/eo/LC_MESSAGES/csvfilter.mo -share/locale/eo/LC_MESSAGES/example.mo -share/locale/eo/LC_MESSAGES/graphite.mo -share/locale/eo/LC_MESSAGES/kchart.mo -share/locale/eo/LC_MESSAGES/kformula.mo -share/locale/eo/LC_MESSAGES/kivio.mo -share/locale/eo/LC_MESSAGES/koffice.mo -share/locale/eo/LC_MESSAGES/kontour.mo -share/locale/eo/LC_MESSAGES/koshell.mo -share/locale/eo/LC_MESSAGES/kpresenter.mo -share/locale/eo/LC_MESSAGES/krayon.mo -share/locale/eo/LC_MESSAGES/kscan_plugin.mo -share/locale/eo/LC_MESSAGES/kspread.mo -share/locale/eo/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/eo/LC_MESSAGES/kugar.mo -share/locale/eo/LC_MESSAGES/kword.mo -share/locale/es/LC_MESSAGES/csvfilter.mo -share/locale/es/LC_MESSAGES/example.mo -share/locale/es/LC_MESSAGES/graphite.mo -share/locale/es/LC_MESSAGES/kchart.mo -share/locale/es/LC_MESSAGES/kformula.mo -share/locale/es/LC_MESSAGES/kivio.mo -share/locale/es/LC_MESSAGES/koffice.mo -share/locale/es/LC_MESSAGES/kontour.mo -share/locale/es/LC_MESSAGES/koshell.mo -share/locale/es/LC_MESSAGES/kpresenter.mo -share/locale/es/LC_MESSAGES/krayon.mo -share/locale/es/LC_MESSAGES/kscan_plugin.mo -share/locale/es/LC_MESSAGES/kspread.mo -share/locale/es/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/es/LC_MESSAGES/kugar.mo -share/locale/es/LC_MESSAGES/kword.mo -share/locale/et/LC_MESSAGES/csvfilter.mo -share/locale/et/LC_MESSAGES/example.mo -share/locale/et/LC_MESSAGES/graphite.mo -share/locale/et/LC_MESSAGES/kchart.mo -share/locale/et/LC_MESSAGES/kformula.mo -share/locale/et/LC_MESSAGES/kivio.mo -share/locale/et/LC_MESSAGES/kocryptfilter.mo -share/locale/et/LC_MESSAGES/koffice.mo -share/locale/et/LC_MESSAGES/kontour.mo -share/locale/et/LC_MESSAGES/koshell.mo -share/locale/et/LC_MESSAGES/kpresenter.mo -share/locale/et/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/et/LC_MESSAGES/krayon.mo -share/locale/et/LC_MESSAGES/kscan_plugin.mo -share/locale/et/LC_MESSAGES/kspread.mo -share/locale/et/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/et/LC_MESSAGES/kspreadqprofilter.mo -share/locale/et/LC_MESSAGES/kugar.mo -share/locale/et/LC_MESSAGES/kword.mo -share/locale/et/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/et/LC_MESSAGES/kwordlatexfilter.mo -share/locale/et/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/fr/LC_MESSAGES/csvfilter.mo -share/locale/fr/LC_MESSAGES/example.mo -share/locale/fr/LC_MESSAGES/graphite.mo -share/locale/fr/LC_MESSAGES/kchart.mo -share/locale/fr/LC_MESSAGES/kformula.mo -share/locale/fr/LC_MESSAGES/kivio.mo -share/locale/fr/LC_MESSAGES/koffice.mo -share/locale/fr/LC_MESSAGES/kontour.mo -share/locale/fr/LC_MESSAGES/koshell.mo -share/locale/fr/LC_MESSAGES/kpresenter.mo -share/locale/fr/LC_MESSAGES/krayon.mo -share/locale/fr/LC_MESSAGES/kscan_plugin.mo -share/locale/fr/LC_MESSAGES/kspread.mo -share/locale/fr/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/fr/LC_MESSAGES/kugar.mo -share/locale/fr/LC_MESSAGES/kword.mo -share/locale/hu/LC_MESSAGES/csvfilter.mo -share/locale/hu/LC_MESSAGES/example.mo -share/locale/hu/LC_MESSAGES/graphite.mo -share/locale/hu/LC_MESSAGES/kchart.mo -share/locale/hu/LC_MESSAGES/kformula.mo -share/locale/hu/LC_MESSAGES/kivio.mo -share/locale/hu/LC_MESSAGES/kocryptfilter.mo -share/locale/hu/LC_MESSAGES/koffice.mo -share/locale/hu/LC_MESSAGES/kontour.mo -share/locale/hu/LC_MESSAGES/koshell.mo -share/locale/hu/LC_MESSAGES/kpresenter.mo -share/locale/hu/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/hu/LC_MESSAGES/krayon.mo -share/locale/hu/LC_MESSAGES/kscan_plugin.mo -share/locale/hu/LC_MESSAGES/kspread.mo -share/locale/hu/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/hu/LC_MESSAGES/kspreadqprofilter.mo -share/locale/hu/LC_MESSAGES/kugar.mo -share/locale/hu/LC_MESSAGES/kword.mo -share/locale/hu/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/hu/LC_MESSAGES/kwordlatexfilter.mo -share/locale/hu/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/it/LC_MESSAGES/csvfilter.mo -share/locale/it/LC_MESSAGES/example.mo -share/locale/it/LC_MESSAGES/graphite.mo -share/locale/it/LC_MESSAGES/kchart.mo -share/locale/it/LC_MESSAGES/kformula.mo -share/locale/it/LC_MESSAGES/kformviewer.mo -share/locale/it/LC_MESSAGES/kivio.mo -share/locale/it/LC_MESSAGES/kocryptfilter.mo -share/locale/it/LC_MESSAGES/koffice.mo -share/locale/it/LC_MESSAGES/kontour.mo -share/locale/it/LC_MESSAGES/koshell.mo -share/locale/it/LC_MESSAGES/kpresenter.mo -share/locale/it/LC_MESSAGES/krayon.mo -share/locale/it/LC_MESSAGES/kscan_plugin.mo -share/locale/it/LC_MESSAGES/kspread.mo -share/locale/it/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/it/LC_MESSAGES/kugar.mo -share/locale/it/LC_MESSAGES/kword.mo -share/locale/it/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/it/LC_MESSAGES/kwordlatexfilter.mo -share/locale/it/LC_MESSAGES/spell_tool.mo -share/locale/ja/LC_MESSAGES/csvfilter.mo -share/locale/ja/LC_MESSAGES/example.mo -share/locale/ja/LC_MESSAGES/graphite.mo -share/locale/ja/LC_MESSAGES/kchart.mo -share/locale/ja/LC_MESSAGES/kformula.mo -share/locale/ja/LC_MESSAGES/kivio.mo -share/locale/ja/LC_MESSAGES/koffice.mo -share/locale/ja/LC_MESSAGES/kontour.mo -share/locale/ja/LC_MESSAGES/koshell.mo -share/locale/ja/LC_MESSAGES/kpresenter.mo -share/locale/ja/LC_MESSAGES/krayon.mo -share/locale/ja/LC_MESSAGES/kscan_plugin.mo -share/locale/ja/LC_MESSAGES/kspread.mo -share/locale/ja/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/ja/LC_MESSAGES/kugar.mo -share/locale/ja/LC_MESSAGES/kword.mo -share/locale/lt/LC_MESSAGES/csvfilter.mo -share/locale/lt/LC_MESSAGES/example.mo -share/locale/lt/LC_MESSAGES/graphite.mo -share/locale/lt/LC_MESSAGES/kchart.mo -share/locale/lt/LC_MESSAGES/kformula.mo -share/locale/lt/LC_MESSAGES/kimageshop.mo -share/locale/lt/LC_MESSAGES/kivio.mo -share/locale/lt/LC_MESSAGES/koffice.mo -share/locale/lt/LC_MESSAGES/kontour.mo -share/locale/lt/LC_MESSAGES/koshell.mo -share/locale/lt/LC_MESSAGES/kpresenter.mo -share/locale/lt/LC_MESSAGES/krayon.mo -share/locale/lt/LC_MESSAGES/kscan_plugin.mo -share/locale/lt/LC_MESSAGES/kspread.mo -share/locale/lt/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/lt/LC_MESSAGES/kugar.mo -share/locale/lt/LC_MESSAGES/kword.mo -share/locale/mt/LC_MESSAGES/csvfilter.mo -share/locale/mt/LC_MESSAGES/example.mo -share/locale/mt/LC_MESSAGES/graphite.mo -share/locale/mt/LC_MESSAGES/kchart.mo -share/locale/mt/LC_MESSAGES/kformula.mo -share/locale/mt/LC_MESSAGES/kivio.mo -share/locale/mt/LC_MESSAGES/koffice.mo -share/locale/mt/LC_MESSAGES/kontour.mo -share/locale/mt/LC_MESSAGES/koshell.mo -share/locale/mt/LC_MESSAGES/kpresenter.mo -share/locale/mt/LC_MESSAGES/krayon.mo -share/locale/mt/LC_MESSAGES/kscan_plugin.mo -share/locale/mt/LC_MESSAGES/kspread.mo -share/locale/mt/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/mt/LC_MESSAGES/kugar.mo -share/locale/mt/LC_MESSAGES/kword.mo -share/locale/nl/LC_MESSAGES/csvfilter.mo -share/locale/nl/LC_MESSAGES/example.mo -share/locale/nl/LC_MESSAGES/graphite.mo -share/locale/nl/LC_MESSAGES/kchart.mo -share/locale/nl/LC_MESSAGES/kformula.mo -share/locale/nl/LC_MESSAGES/kivio.mo -share/locale/nl/LC_MESSAGES/koffice.mo -share/locale/nl/LC_MESSAGES/kontour.mo -share/locale/nl/LC_MESSAGES/koshell.mo -share/locale/nl/LC_MESSAGES/kpresenter.mo -share/locale/nl/LC_MESSAGES/krayon.mo -share/locale/nl/LC_MESSAGES/kscan_plugin.mo -share/locale/nl/LC_MESSAGES/kspread.mo -share/locale/nl/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/nl/LC_MESSAGES/kugar.mo -share/locale/nl/LC_MESSAGES/kword.mo -share/locale/no/LC_MESSAGES/csvfilter.mo -share/locale/no/LC_MESSAGES/example.mo -share/locale/no/LC_MESSAGES/graphite.mo -share/locale/no/LC_MESSAGES/kchart.mo -share/locale/no/LC_MESSAGES/kformula.mo -share/locale/no/LC_MESSAGES/kivio.mo -share/locale/no/LC_MESSAGES/kocryptfilter.mo -share/locale/no/LC_MESSAGES/koffice.mo -share/locale/no/LC_MESSAGES/kontour.mo -share/locale/no/LC_MESSAGES/koshell.mo -share/locale/no/LC_MESSAGES/kpresenter.mo -share/locale/no/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/no/LC_MESSAGES/krayon.mo -share/locale/no/LC_MESSAGES/kscan_plugin.mo -share/locale/no/LC_MESSAGES/kspread.mo -share/locale/no/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/no/LC_MESSAGES/kspreadqprofilter.mo -share/locale/no/LC_MESSAGES/kugar.mo -share/locale/no/LC_MESSAGES/kword.mo -share/locale/no/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/no/LC_MESSAGES/kwordlatexfilter.mo -share/locale/no/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/no_NY/LC_MESSAGES/csvfilter.mo -share/locale/no_NY/LC_MESSAGES/example.mo -share/locale/no_NY/LC_MESSAGES/graphite.mo -share/locale/no_NY/LC_MESSAGES/kchart.mo -share/locale/no_NY/LC_MESSAGES/kformula.mo -share/locale/no_NY/LC_MESSAGES/kivio.mo -share/locale/no_NY/LC_MESSAGES/kocryptfilter.mo -share/locale/no_NY/LC_MESSAGES/koffice.mo -share/locale/no_NY/LC_MESSAGES/kontour.mo -share/locale/no_NY/LC_MESSAGES/koshell.mo -share/locale/no_NY/LC_MESSAGES/kpresenter.mo -share/locale/no_NY/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/no_NY/LC_MESSAGES/krayon.mo -share/locale/no_NY/LC_MESSAGES/kscan_plugin.mo -share/locale/no_NY/LC_MESSAGES/kspread.mo -share/locale/no_NY/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/no_NY/LC_MESSAGES/kspreadqprofilter.mo -share/locale/no_NY/LC_MESSAGES/kugar.mo -share/locale/no_NY/LC_MESSAGES/kword.mo -share/locale/no_NY/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/no_NY/LC_MESSAGES/kwordlatexfilter.mo -share/locale/no_NY/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/pl/LC_MESSAGES/csvfilter.mo -share/locale/pl/LC_MESSAGES/example.mo -share/locale/pl/LC_MESSAGES/graphite.mo -share/locale/pl/LC_MESSAGES/kchart.mo -share/locale/pl/LC_MESSAGES/kformula.mo -share/locale/pl/LC_MESSAGES/kivio.mo -share/locale/pl/LC_MESSAGES/koffice.mo -share/locale/pl/LC_MESSAGES/kontour.mo -share/locale/pl/LC_MESSAGES/koshell.mo -share/locale/pl/LC_MESSAGES/kpresenter.mo -share/locale/pl/LC_MESSAGES/krayon.mo -share/locale/pl/LC_MESSAGES/kscan_plugin.mo -share/locale/pl/LC_MESSAGES/kspread.mo -share/locale/pl/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/pl/LC_MESSAGES/kugar.mo -share/locale/pl/LC_MESSAGES/kword.mo -share/locale/pt/LC_MESSAGES/csvfilter.mo -share/locale/pt/LC_MESSAGES/example.mo -share/locale/pt/LC_MESSAGES/graphite.mo -share/locale/pt/LC_MESSAGES/kchart.mo -share/locale/pt/LC_MESSAGES/kformula.mo -share/locale/pt/LC_MESSAGES/kivio.mo -share/locale/pt/LC_MESSAGES/kocryptfilter.mo -share/locale/pt/LC_MESSAGES/koffice.mo -share/locale/pt/LC_MESSAGES/kontour.mo -share/locale/pt/LC_MESSAGES/koshell.mo -share/locale/pt/LC_MESSAGES/kpresenter.mo -share/locale/pt/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/pt/LC_MESSAGES/krayon.mo -share/locale/pt/LC_MESSAGES/kscan_plugin.mo -share/locale/pt/LC_MESSAGES/kspread.mo -share/locale/pt/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/pt/LC_MESSAGES/kspreadqprofilter.mo -share/locale/pt/LC_MESSAGES/kugar.mo -share/locale/pt/LC_MESSAGES/kword.mo -share/locale/pt/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/pt/LC_MESSAGES/kwordlatexfilter.mo -share/locale/pt/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/pt_BR/LC_MESSAGES/example.mo -share/locale/pt_BR/LC_MESSAGES/graphite.mo -share/locale/pt_BR/LC_MESSAGES/kchart.mo -share/locale/pt_BR/LC_MESSAGES/kdiagramm.mo -share/locale/pt_BR/LC_MESSAGES/kformula.mo -share/locale/pt_BR/LC_MESSAGES/kimage.mo -share/locale/pt_BR/LC_MESSAGES/kimageshop.mo -share/locale/pt_BR/LC_MESSAGES/kivio.mo -share/locale/pt_BR/LC_MESSAGES/koffice.mo -share/locale/pt_BR/LC_MESSAGES/kohtml.mo -share/locale/pt_BR/LC_MESSAGES/kontour.mo -share/locale/pt_BR/LC_MESSAGES/koshell.mo -share/locale/pt_BR/LC_MESSAGES/kpresenter.mo -share/locale/pt_BR/LC_MESSAGES/krayon.mo -share/locale/pt_BR/LC_MESSAGES/kspread.mo -share/locale/pt_BR/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/pt_BR/LC_MESSAGES/kugar.mo -share/locale/pt_BR/LC_MESSAGES/kword.mo -share/locale/pt_BR/LC_MESSAGES/spell_tool.mo -share/locale/ro/LC_MESSAGES/example.mo -share/locale/ro/LC_MESSAGES/graphite.mo -share/locale/ro/LC_MESSAGES/kchart.mo -share/locale/ro/LC_MESSAGES/kformula.mo -share/locale/ro/LC_MESSAGES/kivio.mo -share/locale/ro/LC_MESSAGES/koffice.mo -share/locale/ro/LC_MESSAGES/kontour.mo -share/locale/ro/LC_MESSAGES/koshell.mo -share/locale/ro/LC_MESSAGES/kpresenter.mo -share/locale/ro/LC_MESSAGES/krayon.mo -share/locale/ro/LC_MESSAGES/kspread.mo -share/locale/ro/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/ro/LC_MESSAGES/kugar.mo -share/locale/ro/LC_MESSAGES/kword.mo -share/locale/ru/LC_MESSAGES/csvfilter.mo -share/locale/ru/LC_MESSAGES/example.mo -share/locale/ru/LC_MESSAGES/graphite.mo -share/locale/ru/LC_MESSAGES/kchart.mo -share/locale/ru/LC_MESSAGES/kformula.mo -share/locale/ru/LC_MESSAGES/kivio.mo -share/locale/ru/LC_MESSAGES/kocryptfilter.mo -share/locale/ru/LC_MESSAGES/koffice.mo -share/locale/ru/LC_MESSAGES/kontour.mo -share/locale/ru/LC_MESSAGES/koshell.mo -share/locale/ru/LC_MESSAGES/kpresenter.mo -share/locale/ru/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/ru/LC_MESSAGES/krayon.mo -share/locale/ru/LC_MESSAGES/kscan_plugin.mo -share/locale/ru/LC_MESSAGES/kspread.mo -share/locale/ru/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/ru/LC_MESSAGES/kspreadqprofilter.mo -share/locale/ru/LC_MESSAGES/kugar.mo -share/locale/ru/LC_MESSAGES/kword.mo -share/locale/ru/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/ru/LC_MESSAGES/kwordlatexfilter.mo -share/locale/ru/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/sk/LC_MESSAGES/csvfilter.mo -share/locale/sk/LC_MESSAGES/example.mo -share/locale/sk/LC_MESSAGES/graphite.mo -share/locale/sk/LC_MESSAGES/kchart.mo -share/locale/sk/LC_MESSAGES/kformula.mo -share/locale/sk/LC_MESSAGES/kivio.mo -share/locale/sk/LC_MESSAGES/koffice.mo -share/locale/sk/LC_MESSAGES/kontour.mo -share/locale/sk/LC_MESSAGES/koshell.mo -share/locale/sk/LC_MESSAGES/kpresenter.mo -share/locale/sk/LC_MESSAGES/krayon.mo -share/locale/sk/LC_MESSAGES/kscan_plugin.mo -share/locale/sk/LC_MESSAGES/kspread.mo -share/locale/sk/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/sk/LC_MESSAGES/kugar.mo -share/locale/sk/LC_MESSAGES/kword.mo -share/locale/sl/LC_MESSAGES/csvfilter.mo -share/locale/sl/LC_MESSAGES/example.mo -share/locale/sl/LC_MESSAGES/graphite.mo -share/locale/sl/LC_MESSAGES/kchart.mo -share/locale/sl/LC_MESSAGES/kformula.mo -share/locale/sl/LC_MESSAGES/kivio.mo -share/locale/sl/LC_MESSAGES/kocryptfilter.mo -share/locale/sl/LC_MESSAGES/koffice.mo -share/locale/sl/LC_MESSAGES/kontour.mo -share/locale/sl/LC_MESSAGES/koshell.mo -share/locale/sl/LC_MESSAGES/kpresenter.mo -share/locale/sl/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/sl/LC_MESSAGES/krayon.mo -share/locale/sl/LC_MESSAGES/kscan_plugin.mo -share/locale/sl/LC_MESSAGES/kspread.mo -share/locale/sl/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/sl/LC_MESSAGES/kspreadqprofilter.mo -share/locale/sl/LC_MESSAGES/kugar.mo -share/locale/sl/LC_MESSAGES/kword.mo -share/locale/sl/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/sl/LC_MESSAGES/kwordlatexfilter.mo -share/locale/sl/LC_MESSAGES/olefilterswinword97filter.mo -share/locale/sv/LC_MESSAGES/csvfilter.mo -share/locale/sv/LC_MESSAGES/example.mo -share/locale/sv/LC_MESSAGES/graphite.mo -share/locale/sv/LC_MESSAGES/kchart.mo -share/locale/sv/LC_MESSAGES/kformula.mo -share/locale/sv/LC_MESSAGES/kivio.mo -share/locale/sv/LC_MESSAGES/koffice.mo -share/locale/sv/LC_MESSAGES/kontour.mo -share/locale/sv/LC_MESSAGES/koshell.mo -share/locale/sv/LC_MESSAGES/kpresenter.mo -share/locale/sv/LC_MESSAGES/krayon.mo -share/locale/sv/LC_MESSAGES/kscan_plugin.mo -share/locale/sv/LC_MESSAGES/kspread.mo -share/locale/sv/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/sv/LC_MESSAGES/kugar.mo -share/locale/sv/LC_MESSAGES/kword.mo -share/locale/ta/LC_MESSAGES/csvfilter.mo -share/locale/ta/LC_MESSAGES/example.mo -share/locale/ta/LC_MESSAGES/graphite.mo -share/locale/ta/LC_MESSAGES/kchart.mo -share/locale/ta/LC_MESSAGES/kformula.mo -share/locale/ta/LC_MESSAGES/kivio.mo -share/locale/ta/LC_MESSAGES/koffice.mo -share/locale/ta/LC_MESSAGES/kontour.mo -share/locale/ta/LC_MESSAGES/koshell.mo -share/locale/ta/LC_MESSAGES/kpresenter.mo -share/locale/ta/LC_MESSAGES/krayon.mo -share/locale/ta/LC_MESSAGES/kscan_plugin.mo -share/locale/ta/LC_MESSAGES/kspread.mo -share/locale/ta/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/ta/LC_MESSAGES/kugar.mo -share/locale/ta/LC_MESSAGES/kword.mo -share/locale/tr/LC_MESSAGES/csvfilter.mo -share/locale/tr/LC_MESSAGES/example.mo -share/locale/tr/LC_MESSAGES/graphite.mo -share/locale/tr/LC_MESSAGES/kchart.mo -share/locale/tr/LC_MESSAGES/kformula.mo -share/locale/tr/LC_MESSAGES/kimage.mo -share/locale/tr/LC_MESSAGES/kivio.mo -share/locale/tr/LC_MESSAGES/koffice.mo -share/locale/tr/LC_MESSAGES/kontour.mo -share/locale/tr/LC_MESSAGES/koshell.mo -share/locale/tr/LC_MESSAGES/kpresenter.mo -share/locale/tr/LC_MESSAGES/krayon.mo -share/locale/tr/LC_MESSAGES/kscan_plugin.mo -share/locale/tr/LC_MESSAGES/kspread.mo -share/locale/tr/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/tr/LC_MESSAGES/kugar.mo -share/locale/tr/LC_MESSAGES/kword.mo -@unexec rmdir %D/share/locale/tr/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/tr 2>/dev/null || true -@unexec rmdir %D/share/locale/ta/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ta 2>/dev/null || true -@unexec rmdir %D/share/locale/sv/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/sv 2>/dev/null || true -@unexec rmdir %D/share/locale/sl/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/sl 2>/dev/null || true -@unexec rmdir %D/share/locale/sk/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/sk 2>/dev/null || true -@unexec rmdir %D/share/locale/ru/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ru 2>/dev/null || true -@unexec rmdir %D/share/locale/ro/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ro 2>/dev/null || true -@unexec rmdir %D/share/locale/pt_BR/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/pt_BR 2>/dev/null || true -@unexec rmdir %D/share/locale/pt/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/pt 2>/dev/null || true -@unexec rmdir %D/share/locale/pl/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/pl 2>/dev/null || true -@unexec rmdir %D/share/locale/no_NY/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/no_NY 2>/dev/null || true -@unexec rmdir %D/share/locale/no/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/no 2>/dev/null || true -@unexec rmdir %D/share/locale/nl/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/nl 2>/dev/null || true -@unexec rmdir %D/share/locale/mt/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/mt 2>/dev/null || true -@unexec rmdir %D/share/locale/lt/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/lt 2>/dev/null || true -@unexec rmdir %D/share/locale/ja/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ja 2>/dev/null || true -@unexec rmdir %D/share/locale/it/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/it 2>/dev/null || true -@unexec rmdir %D/share/locale/hu/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/hu 2>/dev/null || true -@unexec rmdir %D/share/locale/fr/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/fr 2>/dev/null || true -@unexec rmdir %D/share/locale/et/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/et 2>/dev/null || true -@unexec rmdir %D/share/locale/es/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/es 2>/dev/null || true -@unexec rmdir %D/share/locale/eo/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/eo 2>/dev/null || true -@unexec rmdir %D/share/locale/en_GB/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/en_GB 2>/dev/null || true -@unexec rmdir %D/share/locale/de/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/de 2>/dev/null || true -@unexec rmdir %D/share/locale/da/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/da 2>/dev/null || true -@unexec rmdir %D/share/locale/cs/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/cs 2>/dev/null || true -@unexec rmdir %D/share/locale/bg/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/bg 2>/dev/null || true -@unexec rmdir %D/share/locale/az/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/az 2>/dev/null || true diff --git a/misc/koffice-i18n/scripts/Configure b/misc/koffice-i18n/scripts/Configure deleted file mode 100644 index 3f56118..0000000 --- a/misc/koffice-i18n/scripts/Configure +++ /dev/null @@ -1,76 +0,0 @@ -#! /bin/sh -# $FreeBSD$ - -/bin/rm -f ${PLIST} ${PLIST}.dirs - -if [ "${LINGUAS}" ]; then - set `echo $LINGUAS` -else -if [ "${BATCH}" ]; then - set \"az\" \"bg\" \"cs\" \"da\" \"en_GB\" \"eo\" \"es\" \"et\" \"hu\" \"it\" \"lt\" \"mt\" \"nl\" \"no\" \"no_NY\" \"pl\" \"pt\" \"pt_BR\" \"ro\" \"sk\" \"sl\" \"sv\" \"ta\" \"tr\" -else - /usr/bin/dialog --title "Select languages" --clear \ - --checklist "\n\ -Please select desired languages:" -1 -1 16 \ -az "Afrikaans" OFF \ -bg "Bulgarisch" OFF \ -cs "Czech" OFF \ -da "Danish" OFF \ -de "German" ON \ -en_GB "UK English" OFF \ -eo "Esperanto" OFF \ -es "Spanish" OFF \ -et "Estonian" OFF \ -fr "French" ON \ -hu "Hungarian" OFF \ -it "Italian" OFF \ -ja "Japanese" ON \ -lt "Lithuanian" OFF \ -mt "Maltese" OFF \ -nl "Dutch" OFF \ -no "Norwegian" OFF \ -no_NY "Norwegian (Nynorsk)" OFF \ -pl "Polish" OFF \ -pt "Portuguese" OFF \ -pt_BR "Portuguese (Brazil)" OFF \ -ro "Romanian" OFF \ -ru "Russian" ON \ -sk "Slovak" OFF \ -sl "Slovenian" OFF \ -sv "Swedish" OFF \ -ta "Tamil" OFF \ -tr "Turkish" OFF \ -2> /tmp/chklist.tmp.$$ - - retval=$? - - if [ -s /tmp/chklist.tmp.$$ ]; then - set `cat /tmp/chklist.tmp.$$` - fi - rm -f /tmp/chklist.tmp.$$ - - case $retval in - 0) if [ -z "$*" ]; then - echo "Nothing selected" - fi - ;; - 1) echo "Cancel pressed." - exit 1 - ;; - esac -fi -fi - -/bin/rm -f ${WRKSRC}/subdirs - -while [ "$1" ]; do - a=`echo -n $1 | /usr/bin/sed -e 's#\"##g'` - echo $a >> ${WRKSRC}/subdirs - /usr/bin/grep "^[^@].*/$a/.*" ${CURDIR}/pkg-plist >> ${PLIST} - /usr/bin/grep "^[^@].*-$a\$" ${CURDIR}/pkg-plist >> ${PLIST} - /usr/bin/grep "^@.*/$a/.*" ${CURDIR}/pkg-plist >> ${PLIST}.dirs - /usr/bin/grep "^@.*/$a$" ${CURDIR}/pkg-plist >> ${PLIST}.dirs - shift -done - -/bin/cat ${PLIST}.dirs >> ${PLIST} diff --git a/net/kdenetwork2/Makefile b/net/kdenetwork2/Makefile deleted file mode 100644 index 0622a63..0000000 --- a/net/kdenetwork2/Makefile +++ /dev/null @@ -1,51 +0,0 @@ -# New ports collection makefile for: kdenetwork2 -# Date created: Sun May 14 00:55:45 -# Whom: Will Andrews <will@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= kdenetwork -PORTVERSION= 2.2.2 -PORTREVISION?= 1 -CATEGORIES?= net news kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= Attic/${PORTVERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER?= kde@FreeBSD.org - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 - -USE_KDELIBS_VER=2 -USE_BZIP2= yes -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -USE_GMAKE= yes -CONFIGURE_ENV+= PATH=${WRKSRC}/auto-bin:$$PATH -MAKE_ENV= ${CONFIGURE_ENV} - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 500029 -_NO_KDE_OBJPRELINK=yes -.endif - -.include "${.CURDIR}/../../x11/kde2/Makefile.kde" - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - cd ${WRKSRC} ; env PATH=${WRKSRC}/auto-bin:$$PATH \ - ${GMAKE} -f Makefile.cvs - ${PERL} -pi -e "s:-lpthread:${PTHREAD_LIBS}:g" ${WRKSRC}/knode/Makefile.in - ${PERL} -pi -e "s@all_includes=\"@all_includes=\"-I/usr/include @g" ${WRKSRC}/acinclude.m4 ${WRKSRC}/aclocal.m4 - ${PERL} -pi -e "s@^AC_CHECK_UTMP_FILE@# AC_CHECK_UTMP_FILE@g" ${WRKSRC}/configure.in - -.include <bsd.port.post.mk> diff --git a/net/kdenetwork2/distinfo b/net/kdenetwork2/distinfo deleted file mode 100644 index 7556641..0000000 --- a/net/kdenetwork2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/kdenetwork-2.2.2.tar.bz2) = ef664b35f9d8ab083855ac5118b9c7b2 diff --git a/net/kdenetwork2/files/patch-admin::acinclude.m4.in b/net/kdenetwork2/files/patch-admin::acinclude.m4.in deleted file mode 100644 index d1c6cfb..0000000 --- a/net/kdenetwork2/files/patch-admin::acinclude.m4.in +++ /dev/null @@ -1,13 +0,0 @@ -$FreeBSD$ - ---- admin/acinclude.m4.in.~2.131.2.8.~ Mon Nov 5 21:34:18 2001 -+++ admin/acinclude.m4.in Sat Dec 8 20:11:17 2001 -@@ -3754,7 +3754,7 @@ - - AC_CACHE_VAL(kde_cv_utmp_file, - [ -- kde_cv_utmp_file=no -+ kde_cv_utmp_file=/var/run/utmp - - for ac_file in \ - \ diff --git a/net/kdenetwork2/files/patch-controller.cpp b/net/kdenetwork2/files/patch-controller.cpp deleted file mode 100644 index e59b20f..0000000 --- a/net/kdenetwork2/files/patch-controller.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- ksirc/puke/controller.cpp.orig Sat Nov 17 09:54:46 2001 -+++ ksirc/puke/controller.cpp Sat Nov 17 09:55:03 2001 -@@ -81,7 +81,7 @@ - unix_addr.sun_family = AF_UNIX; - strcpy(unix_addr.sun_path, qsPukeSocket); - len = sizeof(unix_addr.sun_family) + qsPukeSocket.length(); -- if( bind(iListenFd, (struct sockaddr *) &unix_addr, len) < 0){ -+ if( bind(iListenFd, (struct sockaddr *) &unix_addr, len + 1) < 0){ - perror("PUKE: Could not bind to Unix Domain Socket"); - return; - } diff --git a/net/kdenetwork2/pkg-comment b/net/kdenetwork2/pkg-comment deleted file mode 100644 index bf5dcda..0000000 --- a/net/kdenetwork2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Network modules for KDE2 diff --git a/net/kdenetwork2/pkg-descr b/net/kdenetwork2/pkg-descr deleted file mode 100644 index f7425da..0000000 --- a/net/kdenetwork2/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -KDE provides an integrated X11 based environment, much like CDE. -This particular port installs the networking components of KDE, -which includes applications for Internet things like email, web, -irc, and so forth. Note that this is for KDE2, not KDE 1.x. - -WWW: http://www.kde.org/ diff --git a/net/kdenetwork2/pkg-plist b/net/kdenetwork2/pkg-plist deleted file mode 100644 index 6dc267a..0000000 --- a/net/kdenetwork2/pkg-plist +++ /dev/null @@ -1,883 +0,0 @@ -bin/dsirc -bin/kdict -bin/kit -bin/kmail -bin/kmailcvt -bin/knewstickerstub -bin/knode -bin/korn -bin/kotalkd -bin/kppp -bin/kppplogview -bin/ksirc -bin/ksticker -bin/ktalkd -bin/ktalkdlg -bin/lisa -bin/mail.local -bin/reslisa -include/kmailIface.h -include/mimelib/address.h -include/mimelib/addrlist.h -include/mimelib/binhex.h -include/mimelib/body.h -include/mimelib/bodypart.h -include/mimelib/boyermor.h -include/mimelib/config.h -include/mimelib/datetime.h -include/mimelib/debug.h -include/mimelib/disptype.h -include/mimelib/entity.h -include/mimelib/enum.h -include/mimelib/field.h -include/mimelib/fieldbdy.h -include/mimelib/group.h -include/mimelib/headers.h -include/mimelib/mailbox.h -include/mimelib/mboxlist.h -include/mimelib/mechansm.h -include/mimelib/mediatyp.h -include/mimelib/message.h -include/mimelib/mimepp.h -include/mimelib/msgcmp.h -include/mimelib/msgid.h -include/mimelib/nntp.h -include/mimelib/param.h -include/mimelib/pop.h -include/mimelib/protocol.h -include/mimelib/smtp.h -include/mimelib/string.h -include/mimelib/text.h -include/mimelib/token.h -include/mimelib/utility.h -include/mimelib/uuencode.h -lib/kde2/libkcm_ktalkd.la -lib/kde2/libkcm_ktalkd.so -lib/kio_lan.la -lib/kio_lan.so -lib/ksirc.la -lib/ksirc.so -lib/libkcm_lanbrowser.la -lib/libkcm_lanbrowser.so -lib/libkcm_newsticker.la -lib/libkcm_newsticker.so -lib/libkdenetwork.la -lib/libkdenetwork.so -lib/libkdenetwork.so.1 -lib/libkdictapplet.la -lib/libkdictapplet.so -lib/libkdictapplet.so.1 -lib/libknewstickerapplet.la -lib/libknewstickerapplet.so -lib/libkntsrcfilepropsdlg.la -lib/libkntsrcfilepropsdlg.so -lib/libmimelib.la -lib/libmimelib.so -lib/libmimelib.so.1 -share/applnk/.hidden/knewstickerstub.desktop -share/applnk/Internet/KMail.desktop -share/applnk/Internet/KNode.desktop -share/applnk/Internet/KOrn.desktop -share/applnk/Internet/Kppp.desktop -share/applnk/Internet/kit.desktop -share/applnk/Internet/kppplogview.desktop -share/applnk/Internet/ksirc.desktop -share/applnk/Settings/Network/kcmktalkd.desktop -share/applnk/Settings/Network/kcmnewsticker.desktop -share/applnk/Settings/Network/lanbrowser.desktop -share/applnk/Settings/Personalization/kcmnewsticker.desktop -share/applnk/Utilities/kdict.desktop -share/applnk/Utilities/kmailcvt.desktop -share/apps/kconf_update/knewsticker.upd -share/apps/kconf_update/knt-0.1-0.2.pl -share/apps/kdict/icons/hicolor/16x16/actions/define_clip.png -share/apps/kdict/icons/hicolor/16x16/actions/query_erase.png -share/apps/kdict/icons/hicolor/22x22/actions/define_clip.png -share/apps/kdict/icons/hicolor/32x32/actions/define_clip.png -share/apps/kdict/kdictui.rc -share/apps/kicker/applets/kdictapplet.desktop -share/apps/kicker/applets/knewsticker.desktop -share/apps/kit/eventsrc -share/apps/kit/icons/hicolor/16x16/actions/kit_anonwarning.png -share/apps/kit/icons/hicolor/16x16/actions/kit_away.png -share/apps/kit/icons/hicolor/16x16/actions/kit_bold.png -share/apps/kit/icons/hicolor/16x16/actions/kit_group.png -share/apps/kit/icons/hicolor/16x16/actions/kit_info.png -share/apps/kit/icons/hicolor/16x16/actions/kit_logging.png -share/apps/kit/icons/hicolor/16x16/actions/kit_offline.png -share/apps/kit/icons/hicolor/16x16/actions/kit_online.png -share/apps/kit/icons/hicolor/16x16/actions/kit_sound.png -share/apps/kit/icons/hicolor/16x16/actions/kit_status.png -share/apps/kit/icons/hicolor/16x16/actions/kit_timestamping.png -share/apps/kit/icons/hicolor/16x16/actions/kit_warning.png -share/apps/kmail/about/background.png -share/apps/kmail/about/bgtable.png -share/apps/kmail/about/kdelogo2.png -share/apps/kmail/about/kmail.png -share/apps/kmail/about/konq.css -share/apps/kmail/about/lines.png -share/apps/kmail/about/lines2.png -share/apps/kmail/about/main.html -share/apps/kmail/about/pointers.png -share/apps/kmail/about/shadow1.png -share/apps/kmail/kmcomposerui.rc -share/apps/kmail/kmmainwin.rc -share/apps/kmail/pics/abdown.png -share/apps/kmail/pics/abup.png -share/apps/kmail/pics/closed.png -share/apps/kmail/pics/feather_white.png -share/apps/kmail/pics/green-bullet.png -share/apps/kmail/pics/kdelogo.xpm -share/apps/kmail/pics/kmfldin.png -share/apps/kmail/pics/kmfldout.png -share/apps/kmail/pics/kmfldsent.png -share/apps/kmail/pics/kmfolder.png -share/apps/kmail/pics/kmfolderfull.png -share/apps/kmail/pics/kminsorgmsg.png -share/apps/kmail/pics/kmmsgdel.png -share/apps/kmail/pics/kmmsgflag.png -share/apps/kmail/pics/kmmsgforwarded.png -share/apps/kmail/pics/kmmsgnew.png -share/apps/kmail/pics/kmmsgold.png -share/apps/kmail/pics/kmmsgqueued.png -share/apps/kmail/pics/kmmsgreplied.png -share/apps/kmail/pics/kmmsgsent.png -share/apps/kmail/pics/kmmsgunseen.png -share/apps/kmail/pics/kmtrash.png -share/apps/kmail/pics/pgp-keys.png -share/apps/kmail/pics/pub_key_red.png -share/apps/kmail/pics/red-bullet.png -share/apps/kmail/pics/stopwatch.xbm -share/apps/kmail/pics/stopwatchMask.xbm -share/apps/knewsticker/eventsrc -share/apps/knode/filters/1.fltr -share/apps/knode/filters/2.fltr -share/apps/knode/filters/3.fltr -share/apps/knode/filters/4.fltr -share/apps/knode/filters/5.fltr -share/apps/knode/filters/6.fltr -share/apps/knode/filters/7.fltr -share/apps/knode/filters/8.fltr -share/apps/knode/filters/filters.rc -share/apps/knode/headers.rc -share/apps/knode/icons/hicolor/16x16/actions/message_reply.png -share/apps/knode/icons/hicolor/22x22/actions/message_reply.png -share/apps/knode/icons/hicolor/32x32/actions/message_reply.png -share/apps/knode/kncomposerui.rc -share/apps/knode/knodeui.rc -share/apps/knode/knreaderui.rc -share/apps/knode/pics/ctlart.png -share/apps/knode/pics/eyes.png -share/apps/knode/pics/greyball.png -share/apps/knode/pics/greyballchk.png -share/apps/knode/pics/group.png -share/apps/knode/pics/group_big.png -share/apps/knode/pics/ignore.png -share/apps/knode/pics/mail.png -share/apps/knode/pics/newsubs.png -share/apps/knode/pics/pgp-keys.png -share/apps/knode/pics/posting.png -share/apps/knode/pics/server.png -share/apps/knode/pics/server_big.png -share/apps/knode/pics/snderr.png -share/apps/knode/pics/stat_cncl.png -share/apps/knode/pics/stat_edit.png -share/apps/knode/pics/stat_saved.png -share/apps/knode/pics/stat_sent.png -share/apps/konqueror/dirtree/remote/lan.desktop -share/apps/kppp/Provider/Austria/.directory -share/apps/kppp/Provider/Austria/Simon%032Media -share/apps/kppp/Provider/Czech_Republic/.directory -share/apps/kppp/Provider/Czech_Republic/AICOM -share/apps/kppp/Provider/Czech_Republic/ARsystem -share/apps/kppp/Provider/Czech_Republic/ASYS -share/apps/kppp/Provider/Czech_Republic/ApexNet -share/apps/kppp/Provider/Czech_Republic/BohemiaNet -share/apps/kppp/Provider/Czech_Republic/Brailcom -share/apps/kppp/Provider/Czech_Republic/CITYNET -share/apps/kppp/Provider/Czech_Republic/Contactel -share/apps/kppp/Provider/Czech_Republic/ES-servis -share/apps/kppp/Provider/Czech_Republic/Econnect -share/apps/kppp/Provider/Czech_Republic/Falco_computer -share/apps/kppp/Provider/Czech_Republic/Fortech -share/apps/kppp/Provider/Czech_Republic/HP-NET -share/apps/kppp/Provider/Czech_Republic/INTERNET_OnLine -share/apps/kppp/Provider/Czech_Republic/INTERNEXT -share/apps/kppp/Provider/Czech_Republic/IQNET -share/apps/kppp/Provider/Czech_Republic/KPNQuest -share/apps/kppp/Provider/Czech_Republic/M-soft -share/apps/kppp/Provider/Czech_Republic/Nextra -share/apps/kppp/Provider/Czech_Republic/ProfiNet -share/apps/kppp/Provider/Czech_Republic/SeverNET -share/apps/kppp/Provider/Czech_Republic/Video_OnLine -share/apps/kppp/Provider/Czech_Republic/Volny -share/apps/kppp/Provider/Denmark/.directory -share/apps/kppp/Provider/Denmark/Get2Net -share/apps/kppp/Provider/Germany/.directory -share/apps/kppp/Provider/Germany/CityWeb -share/apps/kppp/Provider/Germany/FH%032Rhein%032Sieg%032%040Informatik%041 -share/apps/kppp/Provider/Germany/MUC%046DE -share/apps/kppp/Provider/Germany/Netsurf -share/apps/kppp/Provider/Netherlands/.directory -share/apps/kppp/Provider/Netherlands/12Move -share/apps/kppp/Provider/Netherlands/Cistron -share/apps/kppp/Provider/Netherlands/Concepts%032ICT -share/apps/kppp/Provider/Netherlands/Cybercomm -share/apps/kppp/Provider/Netherlands/Dataweb -share/apps/kppp/Provider/Netherlands/Daxis%032Internet -share/apps/kppp/Provider/Netherlands/Freeler -share/apps/kppp/Provider/Netherlands/HetNet -share/apps/kppp/Provider/Netherlands/IAE -share/apps/kppp/Provider/Netherlands/InterNLnet%032met%0323-cijferig%032kengetal -share/apps/kppp/Provider/Netherlands/InterNLnet%032met%0324-cijferig%032kengetal -share/apps/kppp/Provider/Netherlands/Internet%032Acces%032Facilities -share/apps/kppp/Provider/Netherlands/Interstroom -share/apps/kppp/Provider/Netherlands/IntroWeb%032Hengelo%032e.o. -share/apps/kppp/Provider/Netherlands/IntroWeb%032met%0323-cijferig%032kengetal -share/apps/kppp/Provider/Netherlands/IntroWeb%032met%0324-cijferig%032kengetal -share/apps/kppp/Provider/Netherlands/Kabelfoon -share/apps/kppp/Provider/Netherlands/Popin -share/apps/kppp/Provider/Netherlands/Solcon -share/apps/kppp/Provider/Netherlands/Sonera%032Plaza -share/apps/kppp/Provider/Netherlands/TIP -share/apps/kppp/Provider/Netherlands/Trefpunt%032Acces -share/apps/kppp/Provider/Netherlands/Wish -share/apps/kppp/Provider/Netherlands/Zonnet -share/apps/kppp/Provider/NewZealand/.directory -share/apps/kppp/Provider/NewZealand/OrconInternet -share/apps/kppp/Provider/NewZealand/Paradise -share/apps/kppp/Provider/NewZealand/Voyager -share/apps/kppp/Provider/NewZealand/XTRA -share/apps/kppp/Provider/NewZealand/ihug -share/apps/kppp/Provider/Norway/.directory -share/apps/kppp/Provider/Norway/BGNett -share/apps/kppp/Provider/Norway/Institutt%032for%032informatikk -share/apps/kppp/Provider/Portugal/.directory -share/apps/kppp/Provider/Portugal/Clix -share/apps/kppp/Provider/Portugal/Netc -share/apps/kppp/Provider/Portugal/OniNet -share/apps/kppp/Provider/Sweden/.directory -share/apps/kppp/Provider/Sweden/Tiscali -share/apps/kppp/Provider/Sweden/Utfors -share/apps/kppp/Provider/Taiwan/.directory -share/apps/kppp/Provider/Taiwan/EraNet -share/apps/kppp/Provider/Taiwan/HiNet -share/apps/kppp/Provider/Taiwan/SeedNet -share/apps/kppp/Provider/United_Kingdom/.directory -share/apps/kppp/Provider/United_Kingdom/Demon%032Green%0322120666 -share/apps/kppp/Provider/United_Kingdom/Demon%032Purple%0322121666 -share/apps/kppp/Provider/United_Kingdom/Demon%032Red%0320798666 -share/apps/kppp/Provider/United_Kingdom/FreeServe -share/apps/kppp/Provider/Yugoslavia/041Net -share/apps/kppp/Provider/Yugoslavia/041Net.rst -share/apps/kppp/Provider/Yugoslavia/9819 -share/apps/kppp/Provider/Yugoslavia/9819.rst -share/apps/kppp/Provider/Yugoslavia/BeoTelNet -share/apps/kppp/Provider/Yugoslavia/CG.Bar.yu -share/apps/kppp/Provider/Yugoslavia/CG.Berane.yu -share/apps/kppp/Provider/Yugoslavia/CG.BijeloPolje.CG.yu -share/apps/kppp/Provider/Yugoslavia/CG.Budva.yu -share/apps/kppp/Provider/Yugoslavia/CG.Cetinje.yu -share/apps/kppp/Provider/Yugoslavia/CG.HercegNovi.yu -share/apps/kppp/Provider/Yugoslavia/CG.Kotor.yu -share/apps/kppp/Provider/Yugoslavia/CG.Niksic.yu -share/apps/kppp/Provider/Yugoslavia/CG.Pljevlja.yu -share/apps/kppp/Provider/Yugoslavia/CG.Podgorica.yu -share/apps/kppp/Provider/Yugoslavia/CG.Tivat.yu -share/apps/kppp/Provider/Yugoslavia/CG.Ulcinj.yu -share/apps/kppp/Provider/Yugoslavia/CG.yu -share/apps/kppp/Provider/Yugoslavia/DrenikNet -share/apps/kppp/Provider/Yugoslavia/EUnet@Full -share/apps/kppp/Provider/Yugoslavia/EUnet@Lite -share/apps/kppp/Provider/Yugoslavia/EUnetBeograd -share/apps/kppp/Provider/Yugoslavia/EUnetCacak -share/apps/kppp/Provider/Yugoslavia/EUnetKragujevac -share/apps/kppp/Provider/Yugoslavia/EUnetNis -share/apps/kppp/Provider/Yugoslavia/EUnetNoviSad -share/apps/kppp/Provider/Yugoslavia/EUnetPristina -share/apps/kppp/Provider/Yugoslavia/EUnetSombor -share/apps/kppp/Provider/Yugoslavia/EUnetSubotica -share/apps/kppp/Provider/Yugoslavia/InfoSKY -share/apps/kppp/Provider/Yugoslavia/PTT -share/apps/kppp/Provider/Yugoslavia/SCnet -share/apps/kppp/Provider/Yugoslavia/Sezampro -share/apps/kppp/Provider/Yugoslavia/TelefonZona1.rst -share/apps/kppp/Provider/Yugoslavia/TelefonZona2.rst -share/apps/kppp/Provider/Yugoslavia/TelefonZona3.rst -share/apps/kppp/Provider/Yugoslavia/VeratNet -share/apps/kppp/Provider/Yugoslavia/YUBCnet -share/apps/kppp/Rules/Argentina/Argentina_0610.rst -share/apps/kppp/Rules/Argentina/Argentina_Local.rst -share/apps/kppp/Rules/Australia/Local.rst -share/apps/kppp/Rules/Australia/Optus_Residential.rst -share/apps/kppp/Rules/Australia/STD_Zone_1_-_25-50_kms.rst -share/apps/kppp/Rules/Australia/STD_Zone_2_-_50-85_kms.rst -share/apps/kppp/Rules/Australia/STD_Zone_3_-_85-165_kms.rst -share/apps/kppp/Rules/Australia/STD_Zone_4_-_165+_kms.rst -share/apps/kppp/Rules/Austria/Business_1/Local.rst -share/apps/kppp/Rules/Austria/Business_1/Long_Distance.rst -share/apps/kppp/Rules/Austria/Business_1/Online.rst -share/apps/kppp/Rules/Austria/Business_2/Local.rst -share/apps/kppp/Rules/Austria/Business_2/Long_Distance.rst -share/apps/kppp/Rules/Austria/Business_2/Online.rst -share/apps/kppp/Rules/Austria/Minimum/Local.rst -share/apps/kppp/Rules/Austria/Minimum/Long_Distance.rst -share/apps/kppp/Rules/Austria/Minimum/Online.rst -share/apps/kppp/Rules/Austria/Standard/Local.rst -share/apps/kppp/Rules/Austria/Standard/Long_Distance.rst -share/apps/kppp/Rules/Austria/Standard/Online.rst -share/apps/kppp/Rules/Austria/Standard/UTA_easyinternet.rst -share/apps/kppp/Rules/Bangladesh/ATT00007.rst -share/apps/kppp/Rules/Bangladesh/ATT00010.rst -share/apps/kppp/Rules/Belgium/Belgium_internet_euro.rst -share/apps/kppp/Rules/Belgium/Belgium_internet_frank.rst -share/apps/kppp/Rules/Belgium/Belgium_interzonal.rst -share/apps/kppp/Rules/Belgium/Belgium_zonal.rst -share/apps/kppp/Rules/Brasil/Brasil.rst -share/apps/kppp/Rules/Brasil/SaoPaulo.rst -share/apps/kppp/Rules/Croatia/CARNet_lokalni_poziv.rst -share/apps/kppp/Rules/Croatia/CARNet_medjugradski_poziv.rst -share/apps/kppp/Rules/Croatia/hinet_anonimni_ulaz.rst -share/apps/kppp/Rules/Croatia/hinet_hpt.rst -share/apps/kppp/Rules/Croatia/ibm_net.rst -share/apps/kppp/Rules/Croatia/iskon_lokalni_poziv.rst -share/apps/kppp/Rules/Croatia/iskon_medjugradski_poziv.rst -share/apps/kppp/Rules/Croatia/iskon_optimal.rst -share/apps/kppp/Rules/Croatia/iskon_zagrebacka_zupanija.rst -share/apps/kppp/Rules/Czechia/Czech_Telecom_City.rst -share/apps/kppp/Rules/Czechia/Czech_Telecom_Internet.rst -share/apps/kppp/Rules/Denmark/12Move_Analog.rst -share/apps/kppp/Rules/Denmark/12Move_ISDN.rst -share/apps/kppp/Rules/Denmark/Cybercity_Friabonnement.rst -share/apps/kppp/Rules/Denmark/Get2net_Betaling.rst -share/apps/kppp/Rules/Denmark/Get2net_Gratis.rst -share/apps/kppp/Rules/Denmark/Mobilix_Wanadoo.rst -share/apps/kppp/Rules/Denmark/Teledanmark_Basis.rst -share/apps/kppp/Rules/Denmark/Teledanmark_Favoritinternet.rst -share/apps/kppp/Rules/Denmark/Worldonline-Analog.rst -share/apps/kppp/Rules/Denmark/Worldonline-ISDN.rst -share/apps/kppp/Rules/Estonia/Eesti_Telefon.rst -share/apps/kppp/Rules/Finland/Vaasan_LP.rst -share/apps/kppp/Rules/France/France_Telecom_Local.rst -share/apps/kppp/Rules/France/France_Telecom_Local_Area.rst -share/apps/kppp/Rules/France/France_Telecom_Local_Primaliste_Internet.rst -share/apps/kppp/Rules/France/France_Telecom_National.rst -share/apps/kppp/Rules/Germany/2.5min.rst -share/apps/kppp/Rules/Germany/2.5s.rst -share/apps/kppp/Rules/Germany/AddCom_by_Call.rst -share/apps/kppp/Rules/Germany/Addcom.rst -share/apps/kppp/Rules/Germany/CallOkaynet.rst -share/apps/kppp/Rules/Germany/Callino_Surf_Basic.rst -share/apps/kppp/Rules/Germany/Callino_Surf_Plus.rst -share/apps/kppp/Rules/Germany/Callisa_City.rst -share/apps/kppp/Rules/Germany/City_Activ_Plus_Option.rst -share/apps/kppp/Rules/Germany/Cityweb.rst -share/apps/kppp/Rules/Germany/Freenet_Enterprise.rst -share/apps/kppp/Rules/Germany/Freenet_special_call_by_call.rst -share/apps/kppp/Rules/Germany/MSN.rst -share/apps/kppp/Rules/Germany/Mobilcom_Freenet.rst -share/apps/kppp/Rules/Germany/NGI_Call_By_Call.rst -share/apps/kppp/Rules/Germany/Netcom_Kassel.rst -share/apps/kppp/Rules/Germany/Nikoma.rst -share/apps/kppp/Rules/Germany/Nikoma_Internet_by_Call.rst -share/apps/kppp/Rules/Germany/Nikoma_Study_and_Surf.rst -share/apps/kppp/Rules/Germany/Planet-Interkom_Internet_by_call.rst -share/apps/kppp/Rules/Germany/Telekom_City.rst -share/apps/kppp/Rules/Germany/Telekom_City_Select_5_30.rst -share/apps/kppp/Rules/Germany/expressnet.rst -share/apps/kppp/Rules/Germany/knUUt-by-Call.rst -share/apps/kppp/Rules/Germany/talkline_by_call.rst -share/apps/kppp/Rules/Germany/vossnet_fun.rst -share/apps/kppp/Rules/Germany/vossnet_fun_light.rst -share/apps/kppp/Rules/Germany/vossnet_kompl.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_Zone1_in_drs.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_Zone1_in_euro.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_Zone2_in_drs.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_Zone2_in_euro.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_local_in_drs.rst -share/apps/kppp/Rules/Greece/Hellas_EPAK_local_in_euro.rst -share/apps/kppp/Rules/Greece/Hellas_analog_local_in_drs.rst -share/apps/kppp/Rules/Greece/Hellas_analog_local_in_euro.rst -share/apps/kppp/Rules/Greece/Hellas_digital_local_in_drs.rst -share/apps/kppp/Rules/Greece/Hellas_digital_local_in_euro.rst -share/apps/kppp/Rules/Hong_Kong/Hong_Kong_Telecom.rst -share/apps/kppp/Rules/Hungary/Local.rst -share/apps/kppp/Rules/Hungary/LocalTop_MATAV.rst -share/apps/kppp/Rules/Hungary/Local_MATAV.rst -share/apps/kppp/Rules/Iceland/Iceland_general.rst -share/apps/kppp/Rules/India/BSNL_Local.rst -share/apps/kppp/Rules/India/BSNL_Long_101_To_200.rst -share/apps/kppp/Rules/India/BSNL_Medium_51_To_100.rst -share/apps/kppp/Rules/India/Vsnl_local.rst -share/apps/kppp/Rules/Indonesia/Lokal_1_Metropolitan.rst -share/apps/kppp/Rules/Indonesia/Lokal_2_Metropolitan.rst -share/apps/kppp/Rules/Indonesia/Lokal_non_metropolitan.rst -share/apps/kppp/Rules/Ireland/Eircom_Internet.rst -share/apps/kppp/Rules/Ireland/Eircom_Local.rst -share/apps/kppp/Rules/Ireland/Eircom_National.rst -share/apps/kppp/Rules/Ireland/Eircom_Special.rst -share/apps/kppp/Rules/Israel/Bezeq_Interurban.rst -share/apps/kppp/Rules/Israel/Bezeq_Local.rst -share/apps/kppp/Rules/Italy/Infostrada_Libero@Sogno.rst -share/apps/kppp/Rules/Italy/Infostrada_Libero@Sogno_Prima_del_24.10.2000.rst -share/apps/kppp/Rules/Italy/Infostrada_Locali.rst -share/apps/kppp/Rules/Italy/Infostrada_Nazionali.rst -share/apps/kppp/Rules/Italy/Infostrada_Regionali.rst -share/apps/kppp/Rules/Italy/Infostrada_SpazioZero.rst -share/apps/kppp/Rules/Italy/Infostrada_SpazioZero_Ridotta.rst -share/apps/kppp/Rules/Italy/TAT_Distrettuale.rst -share/apps/kppp/Rules/Italy/TAT_Formula_Urbana.rst -share/apps/kppp/Rules/Italy/TAT_Interdistrettuale_0-15.rst -share/apps/kppp/Rules/Italy/TAT_Interdistrettuale_15-30.rst -share/apps/kppp/Rules/Italy/TAT_Interdistrettuale_30+.rst -share/apps/kppp/Rules/Italy/TAT_Urbana.rst -share/apps/kppp/Rules/Italy/Tele2_Urbana.rst -share/apps/kppp/Rules/Italy/Teleconomy_24.rst -share/apps/kppp/Rules/Italy/Teleconomy_24_Ridotta.rst -share/apps/kppp/Rules/Italy/Teleconomy_No_Stop.rst -share/apps/kppp/Rules/Italy/Wind_Internet_Light_1088.rst -share/apps/kppp/Rules/Italy/Wind_Internet_Light_1088_24ore.rst -share/apps/kppp/Rules/Italy/Wind_Regionale_1088_Light.rst -share/apps/kppp/Rules/Italy/Wind_Urbana.rst -share/apps/kppp/Rules/Italy/Wind_Urbana_1088_Light.rst -share/apps/kppp/Rules/Jamaica/CWJ_InterParish.rst -share/apps/kppp/Rules/Jamaica/CWJ_Local.rst -share/apps/kppp/Rules/Japan/NTT_Local.rst -share/apps/kppp/Rules/Kazakhstan/Akparat_Sprint.rst -share/apps/kppp/Rules/Luxembourg/Local.rst -share/apps/kppp/Rules/Macedonia/Macedonia_GenericISP_interurban.rst -share/apps/kppp/Rules/Macedonia/Macedonia_GenericISP_local.rst -share/apps/kppp/Rules/Macedonia/Macedonia_MTnet.rst -share/apps/kppp/Rules/Malaysia/TMNet_Jaring.rst -share/apps/kppp/Rules/Malaysia/malaysia.rst -share/apps/kppp/Rules/Netherlands/BelBasis_Buiten_Regio.rst -share/apps/kppp/Rules/Netherlands/BelBasis_Buiten_Regio_Nummervoordeel.rst -share/apps/kppp/Rules/Netherlands/BelBasis_Lokaal.rst -share/apps/kppp/Rules/Netherlands/BelBasis_Regio_Nummervoordeel.rst -share/apps/kppp/Rules/Netherlands/BelBudget_Buiten_Regio.rst -share/apps/kppp/Rules/Netherlands/BelBudget_Regio.rst -share/apps/kppp/Rules/Netherlands/BelPlus_Buiten_Regio.rst -share/apps/kppp/Rules/Netherlands/BelPlus_Regio.rst -share/apps/kppp/Rules/Netherlands/BelPlus_Regio_Nummervoordeel.rst -share/apps/kppp/Rules/Netherlands/NedpointBasis_Lokaal.rst -share/apps/kppp/Rules/Netherlands/NedpointBelBespaar_Lokaal.rst -share/apps/kppp/Rules/Norway/Local_Area.rst -share/apps/kppp/Rules/Norway/Long_Distance.rst -share/apps/kppp/Rules/Poland/Dialog_Atut.rst -share/apps/kppp/Rules/Poland/Dialog_Atut_020.rst -share/apps/kppp/Rules/Poland/Dialog_Efekt.rst -share/apps/kppp/Rules/Poland/Dialog_Profit.rst -share/apps/kppp/Rules/Poland/Internetia.rst -share/apps/kppp/Rules/Poland/Netia_100km_Niebieska.rst -share/apps/kppp/Rules/Poland/Netia_100km_Zielona.rst -share/apps/kppp/Rules/Poland/Netia_Lokalne_Niebieska.rst -share/apps/kppp/Rules/Poland/Netia_Lokalne_Zielona.rst -share/apps/kppp/Rules/Poland/Netia_Niebieska.rst -share/apps/kppp/Rules/Poland/Netia_Zielona.rst -share/apps/kppp/Rules/Poland/TPSA.rst -share/apps/kppp/Rules/Poland/TP_100km.rst -share/apps/kppp/Rules/Poland/TP_Lokalne.rst -share/apps/kppp/Rules/Portugal/PT_Local.rst -share/apps/kppp/Rules/Portugal/PT_Local_Ilhas.rst -share/apps/kppp/Rules/Portugal/PT_Regional.rst -share/apps/kppp/Rules/Portugal/PT_Regional_Ilhas.rst -share/apps/kppp/Rules/Portugal/PT_YesNET.rst -share/apps/kppp/Rules/Portugal/PT_YesNET_Ilhas.rst -share/apps/kppp/Rules/Romania/Telecom_GSM.rst -share/apps/kppp/Rules/Romania/Telecom_Interurban.rst -share/apps/kppp/Rules/Romania/Telecom_Local.rst -share/apps/kppp/Rules/Russia/TEMPLATE.ru -share/apps/kppp/Rules/Russia/Yamalelectroliaison.rst -share/apps/kppp/Rules/Russia/mtu-intel_standart.rst -share/apps/kppp/Rules/Singapore/SingTel_Local.rst -share/apps/kppp/Rules/Slovakia/Internetovy_tarif_019XY.rst -share/apps/kppp/Rules/Slovakia/ST_medzimesto.rst -share/apps/kppp/Rules/Slovakia/ST_mesto.rst -share/apps/kppp/Rules/Slovakia/Slovenske_Telekomunikacie_Internet.rst -share/apps/kppp/Rules/South_Afrika/South_Afrika.rst -share/apps/kppp/Rules/Spain/Infovia.rst -share/apps/kppp/Rules/Spain/Infovia_IVA.rst -share/apps/kppp/Rules/Spain/Telefonica_Interprovincial.rst -share/apps/kppp/Rules/Spain/Telefonica_Interprovincial_IVA.rst -share/apps/kppp/Rules/Spain/Telefonica_Local.rst -share/apps/kppp/Rules/Spain/Telefonica_Metropolitana.rst -share/apps/kppp/Rules/Spain/Telefonica_Metropolitana_IVA.rst -share/apps/kppp/Rules/Spain/Telefonica_Nacional.rst -share/apps/kppp/Rules/Spain/Telefonica_Provincial.rst -share/apps/kppp/Rules/Spain/Telefonica_Provincial_IVA.rst -share/apps/kppp/Rules/Sweden/ACN.rst -share/apps/kppp/Rules/Sweden/Abonnera_com.rst -share/apps/kppp/Rules/Sweden/CNEAB-Route66.rst -share/apps/kppp/Rules/Sweden/Crossnet-Affinity.rst -share/apps/kppp/Rules/Sweden/Glocalnet.rst -share/apps/kppp/Rules/Sweden/Gts.rst -share/apps/kppp/Rules/Sweden/Home_se.rst -share/apps/kppp/Rules/Sweden/Nemtel.rst -share/apps/kppp/Rules/Sweden/Plusenergi.rst -share/apps/kppp/Rules/Sweden/RSLCom.rst -share/apps/kppp/Rules/Sweden/Rix_Telecom.rst -share/apps/kppp/Rules/Sweden/Supertel.rst -share/apps/kppp/Rules/Sweden/Svensk_Telekom.rst -share/apps/kppp/Rules/Sweden/Tele1_Europe.rst -share/apps/kppp/Rules/Sweden/Tele2.rst -share/apps/kppp/Rules/Sweden/Tele8.rst -share/apps/kppp/Rules/Sweden/Teleman.rst -share/apps/kppp/Rules/Sweden/Telenordia.rst -share/apps/kppp/Rules/Sweden/Telerian.rst -share/apps/kppp/Rules/Sweden/Telia.rst -share/apps/kppp/Rules/Sweden/Telia_Telebonus1.rst -share/apps/kppp/Rules/Sweden/Telia_Telebonus2.rst -share/apps/kppp/Rules/Sweden/Telitel.rst -share/apps/kppp/Rules/Sweden/Tiscali.rst -share/apps/kppp/Rules/Sweden/Transnet.rst -share/apps/kppp/Rules/Sweden/Universal_Telecom.rst -share/apps/kppp/Rules/Sweden/Utfors.rst -share/apps/kppp/Rules/Sweden/Vattenfall.rst -share/apps/kppp/Rules/Switzerland/Sunrise_Freetime.rst -share/apps/kppp/Rules/Switzerland/Sunrise_Local.rst -share/apps/kppp/Rules/Switzerland/Sunrise_Select_Internet.rst -share/apps/kppp/Rules/Switzerland/Swisscom_Local.rst -share/apps/kppp/Rules/Switzerland/Swisscom_Remote.rst -share/apps/kppp/Rules/Switzerland/Swisscom_Surf.rst -share/apps/kppp/Rules/TEMPLATE -share/apps/kppp/Rules/Turkey/Turk_Telekom_Internet.rst -share/apps/kppp/Rules/United_Kingdom/BirminghamCable_Local.rst -share/apps/kppp/Rules/United_Kingdom/BirminghamCable_National.rst -share/apps/kppp/Rules/United_Kingdom/BirminghamCable_SameTelco.rst -share/apps/kppp/Rules/United_Kingdom/BritishTelecom_Local.rst -share/apps/kppp/Rules/United_Kingdom/BritishTelecom_National.rst -share/apps/kppp/Rules/United_Kingdom/BritishTelecom_Regional.rst -share/apps/kppp/Rules/United_Kingdom/British_OneTel.rst -share/apps/kppp/Rules/United_Kingdom/Connaught_Telecom.rst -share/apps/kppp/Rules/Uruguay/Adinet_cIVA.rst -share/apps/kppp/Rules/checkrules -share/apps/kppp/pics/dock_both.png -share/apps/kppp/pics/dock_left.png -share/apps/kppp/pics/dock_none.png -share/apps/kppp/pics/dock_right.png -share/apps/kppp/pics/folder.png -share/apps/kppp/pics/modemboth.png -share/apps/kppp/pics/modemleft.png -share/apps/kppp/pics/modemnone.png -share/apps/kppp/pics/modemright.png -share/apps/kppp/pics/phone.png -share/apps/ksirc/commands-handler.pl -share/apps/ksirc/commands-perl.pl -share/apps/ksirc/convert_commands.pl -share/apps/ksirc/dcc_progress.pm -share/apps/ksirc/dcc_status.pm -share/apps/ksirc/filters.pl -share/apps/ksirc/ksirc.pl -share/apps/ksirc/ksirclistbox.pm -share/apps/ksirc/load_all.pm -share/apps/ksirc/palistbox.pm -share/apps/ksirc/pbase.pm -share/apps/ksirc/pboxlayout.pm -share/apps/ksirc/pbutton.pm -share/apps/ksirc/pframe.pm -share/apps/ksirc/pics/arrow.png -share/apps/ksirc/pics/blueball.png -share/apps/ksirc/pics/bluepin.png -share/apps/ksirc/pics/channel.xpm -share/apps/ksirc/pics/channels.xpm -share/apps/ksirc/pics/greenpin.png -share/apps/ksirc/pics/info.png -share/apps/ksirc/pics/info1.png -share/apps/ksirc/pics/ksirc.png -share/apps/ksirc/pics/ksirc_a.xpm -share/apps/ksirc/pics/ksirc_b.xpm -share/apps/ksirc/pics/ksirc_dock.xpm -share/apps/ksirc/pics/madsmiley.png -share/apps/ksirc/pics/mini-run.png -share/apps/ksirc/pics/server.xpm -share/apps/ksirc/pics/smiley.png -share/apps/ksirc/pics/star.png -share/apps/ksirc/pkfiledialog.pm -share/apps/ksirc/plabel.pm -share/apps/ksirc/plined.pm -share/apps/ksirc/plistbox.pm -share/apps/ksirc/pmenudta.pm -share/apps/ksirc/pobjfinder.pm -share/apps/ksirc/ppopmenu.pm -share/apps/ksirc/pprogress.pm -share/apps/ksirc/ppushbt.pm -share/apps/ksirc/ptabdialog.pm -share/apps/ksirc/ptablevw.pm -share/apps/ksirc/puke.pl -share/apps/ksirc/pwidget.pm -share/apps/ksirc/relnotes -share/apps/ksirc/servers.ini -share/apps/ksirc/servers.txt -share/apps/ksirc/sirc.help.gz -share/apps/ksirc/small.pl -share/apps/ksirc/test.pl -share/apps/ksirc/tester.pl -share/apps/lisa/README -share/config/ksircrc -share/config/ktalkdrc -share/doc/HTML/en/kdict/applet.png -share/doc/HTML/en/kdict/common -share/doc/HTML/en/kdict/conf.png -share/doc/HTML/en/kdict/index.cache.bz2 -share/doc/HTML/en/kdict/index.docbook -share/doc/HTML/en/kdict/mainwin.png -share/doc/HTML/en/kdict/seteditor.png -share/doc/HTML/en/kit/common -share/doc/HTML/en/kit/index.cache.bz2 -share/doc/HTML/en/kit/index.docbook -share/doc/HTML/en/kmail/common -share/doc/HTML/en/kmail/index.cache.bz2 -share/doc/HTML/en/kmail/index.docbook -share/doc/HTML/en/knewsticker/TODO -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/downarrow-icon.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-general.png -share/doc/HTML/en/knewsticker/kcmnewsticker-newssources.png -share/doc/HTML/en/knewsticker/kcontrol-icon.png -share/doc/HTML/en/knewsticker/knewsticker-childpanel.png -share/doc/HTML/en/knewsticker/knewsticker-kicker.png -share/doc/HTML/en/knewsticker/newarticle-icon.png -share/doc/HTML/en/knewsticker/newssite-icon.png -share/doc/HTML/en/knewsticker/noarticles-icon.png -share/doc/HTML/en/knewsticker/oldarticle-icon.png -share/doc/HTML/en/knewsticker/preferences-icon.png -share/doc/HTML/en/knewsticker/uparrow-icon.png -share/doc/HTML/en/knode/common -share/doc/HTML/en/knode/eyes.png -share/doc/HTML/en/knode/german_original.docbook -share/doc/HTML/en/knode/greyball.png -share/doc/HTML/en/knode/greyballchk.png -share/doc/HTML/en/knode/index.cache.bz2 -share/doc/HTML/en/knode/index.docbook -share/doc/HTML/en/knode/knode-cleanup.png -share/doc/HTML/en/knode/knode-colors-fonts.png -share/doc/HTML/en/knode/knode-composer-attachments.png -share/doc/HTML/en/knode/knode-composer-settings.png -share/doc/HTML/en/knode/knode-edit-filter.png -share/doc/HTML/en/knode/knode-edit-header1.png -share/doc/HTML/en/knode/knode-edit-header2.png -share/doc/HTML/en/knode/knode-filters.png -share/doc/HTML/en/knode/knode-followup.png -share/doc/HTML/en/knode/knode-header-settings.png -share/doc/HTML/en/knode/knode-identity.png -share/doc/HTML/en/knode/knode-mail-account.png -share/doc/HTML/en/knode/knode-new-article.png -share/doc/HTML/en/knode/knode-news-account.png -share/doc/HTML/en/knode/knode-post-settings.png -share/doc/HTML/en/knode/knode-read-news-appearance-dialog.png -share/doc/HTML/en/knode/knode-read-news-settings.png -share/doc/HTML/en/knode/knode-reply.png -share/doc/HTML/en/knode/knode-search.png -share/doc/HTML/en/knode/knode-start.png -share/doc/HTML/en/knode/knode-subscribe.png -share/doc/HTML/en/knode/knode-views.png -share/doc/HTML/en/knode/newsubs.png -share/doc/HTML/en/knode/redball.png -share/doc/HTML/en/knode/redballchk.png -share/doc/HTML/en/knode/translation.po -share/doc/HTML/en/korn/common -share/doc/HTML/en/korn/index.cache.bz2 -share/doc/HTML/en/korn/index.docbook -share/doc/HTML/en/kppp/accounting.docbook -share/doc/HTML/en/kppp/callback.docbook -share/doc/HTML/en/kppp/chap.docbook -share/doc/HTML/en/kppp/common -share/doc/HTML/en/kppp/costsgraphs.fig -share/doc/HTML/en/kppp/costsgraphs.png -share/doc/HTML/en/kppp/dialog-setup.docbook -share/doc/HTML/en/kppp/getting-online.docbook -share/doc/HTML/en/kppp/global-settings.docbook -share/doc/HTML/en/kppp/hayes.docbook -share/doc/HTML/en/kppp/index.cache.bz2 -share/doc/HTML/en/kppp/index.docbook -share/doc/HTML/en/kppp/kppp-account-accounting-tab.png -share/doc/HTML/en/kppp/kppp-account-dial-tab.png -share/doc/HTML/en/kppp/kppp-account-dns-tab.png -share/doc/HTML/en/kppp/kppp-account-execute-tab.png -share/doc/HTML/en/kppp/kppp-account-gateway-tab.png -share/doc/HTML/en/kppp/kppp-account-ip-tab.png -share/doc/HTML/en/kppp/kppp-account-login-script-tab.png -share/doc/HTML/en/kppp/kppp-config.png -share/doc/HTML/en/kppp/kppp-device-tab.png -share/doc/HTML/en/kppp/kppp-dialler-tab.png -share/doc/HTML/en/kppp/kppp-faq.docbook -share/doc/HTML/en/kppp/kppp-graph-tab.png -share/doc/HTML/en/kppp/kppp-misc-tab.png -share/doc/HTML/en/kppp/kppp-modem-tab.png -share/doc/HTML/en/kppp/kppp-wizard.png -share/doc/HTML/en/kppp/kppp.faq.question -share/doc/HTML/en/kppp/security.docbook -share/doc/HTML/en/kppp/tricks.docbook -share/doc/HTML/en/kppp/ttyS-cua.txt -share/doc/HTML/en/kppp/wizard.docbook -share/doc/HTML/en/ksirc/common -share/doc/HTML/en/ksirc/index.cache.bz2 -share/doc/HTML/en/ksirc/index.docbook -share/doc/HTML/en/ktalkd/common -share/doc/HTML/en/ktalkd/index.cache.bz2 -share/doc/HTML/en/ktalkd/index.docbook -share/doc/HTML/en/lisa/common -share/doc/HTML/en/lisa/index.cache.bz2 -share/doc/HTML/en/lisa/index.docbook -share/icons/hicolor/16x16/apps/kdict.png -share/icons/hicolor/16x16/apps/kit.png -share/icons/hicolor/16x16/apps/kmail.png -share/icons/hicolor/16x16/apps/kmailcvt.png -share/icons/hicolor/16x16/apps/knewsticker.png -share/icons/hicolor/16x16/apps/knode.png -share/icons/hicolor/16x16/apps/korn.png -share/icons/hicolor/16x16/apps/kppp.png -share/icons/hicolor/16x16/apps/ksirc.png -share/icons/hicolor/16x16/apps/ktalkd.png -share/icons/hicolor/32x32/apps/kdict.png -share/icons/hicolor/32x32/apps/kit.png -share/icons/hicolor/32x32/apps/kmail.png -share/icons/hicolor/32x32/apps/kmailcvt.png -share/icons/hicolor/32x32/apps/knewsticker.png -share/icons/hicolor/32x32/apps/knode.png -share/icons/hicolor/32x32/apps/korn.png -share/icons/hicolor/32x32/apps/kppp.png -share/icons/hicolor/32x32/apps/ksirc.png -share/icons/hicolor/32x32/apps/ktalkd.png -share/icons/hicolor/48x48/apps/kdict.png -share/icons/hicolor/48x48/apps/kit.png -share/icons/hicolor/48x48/apps/kmail.png -share/icons/hicolor/48x48/apps/kmailcvt.png -share/icons/hicolor/48x48/apps/knewsticker.png -share/icons/hicolor/48x48/apps/knode.png -share/icons/hicolor/48x48/apps/korn.png -share/icons/hicolor/48x48/apps/kppp.png -share/icons/hicolor/48x48/apps/ksirc.png -share/icons/hicolor/48x48/apps/ktalkd.png -share/services/knewsservice.protocol -share/services/kntsrcfilepropsdlg.desktop -share/services/lan.protocol -share/services/rlan.protocol -share/sounds/ktalkd.wav -@dirrm share/sounds -@dirrm share/icons/hicolor/48x48/apps -@dirrm share/icons/hicolor/32x32/apps -@dirrm share/doc/HTML/en/lisa -@dirrm share/doc/HTML/en/ktalkd -@dirrm share/doc/HTML/en/ksirc -@dirrm share/doc/HTML/en/kppp -@dirrm share/doc/HTML/en/korn -@dirrm share/doc/HTML/en/knode -@dirrm share/doc/HTML/en/knewsticker -@dirrm share/doc/HTML/en/kmail -@dirrm share/doc/HTML/en/kit -@dirrm share/doc/HTML/en/kdict -@dirrm share/apps/lisa -@dirrm share/apps/ksirc/pics -@dirrm share/apps/ksirc -@dirrm share/apps/kppp/pics -@dirrm share/apps/kppp/Rules/Uruguay -@dirrm share/apps/kppp/Rules/United_Kingdom -@dirrm share/apps/kppp/Rules/Turkey -@dirrm share/apps/kppp/Rules/Switzerland -@dirrm share/apps/kppp/Rules/Sweden -@dirrm share/apps/kppp/Rules/Spain -@dirrm share/apps/kppp/Rules/South_Afrika -@dirrm share/apps/kppp/Rules/Slovakia -@dirrm share/apps/kppp/Rules/Singapore -@dirrm share/apps/kppp/Rules/Russia -@dirrm share/apps/kppp/Rules/Romania -@dirrm share/apps/kppp/Rules/Portugal -@dirrm share/apps/kppp/Rules/Poland -@dirrm share/apps/kppp/Rules/Norway -@dirrm share/apps/kppp/Rules/Netherlands -@dirrm share/apps/kppp/Rules/Malaysia -@dirrm share/apps/kppp/Rules/Macedonia -@dirrm share/apps/kppp/Rules/Luxembourg -@dirrm share/apps/kppp/Rules/Kazakhstan -@dirrm share/apps/kppp/Rules/Japan -@dirrm share/apps/kppp/Rules/Jamaica -@dirrm share/apps/kppp/Rules/Italy -@dirrm share/apps/kppp/Rules/Israel -@dirrm share/apps/kppp/Rules/Ireland -@dirrm share/apps/kppp/Rules/Indonesia -@dirrm share/apps/kppp/Rules/India -@dirrm share/apps/kppp/Rules/Iceland -@dirrm share/apps/kppp/Rules/Hungary -@dirrm share/apps/kppp/Rules/Hong_Kong -@dirrm share/apps/kppp/Rules/Greece -@dirrm share/apps/kppp/Rules/Germany -@dirrm share/apps/kppp/Rules/France -@dirrm share/apps/kppp/Rules/Finland -@dirrm share/apps/kppp/Rules/Estonia -@dirrm share/apps/kppp/Rules/Denmark -@dirrm share/apps/kppp/Rules/Czechia -@dirrm share/apps/kppp/Rules/Croatia -@dirrm share/apps/kppp/Rules/Brasil -@dirrm share/apps/kppp/Rules/Belgium -@dirrm share/apps/kppp/Rules/Bangladesh -@dirrm share/apps/kppp/Rules/Austria/Standard -@dirrm share/apps/kppp/Rules/Austria/Minimum -@dirrm share/apps/kppp/Rules/Austria/Business_2 -@dirrm share/apps/kppp/Rules/Austria/Business_1 -@dirrm share/apps/kppp/Rules/Austria -@dirrm share/apps/kppp/Rules/Australia -@dirrm share/apps/kppp/Rules/Argentina -@dirrm share/apps/kppp/Rules -@dirrm share/apps/kppp/Provider/Yugoslavia -@dirrm share/apps/kppp/Provider/United_Kingdom -@dirrm share/apps/kppp/Provider/Taiwan -@dirrm share/apps/kppp/Provider/Sweden -@dirrm share/apps/kppp/Provider/Portugal -@dirrm share/apps/kppp/Provider/Norway -@dirrm share/apps/kppp/Provider/NewZealand -@dirrm share/apps/kppp/Provider/Netherlands -@dirrm share/apps/kppp/Provider/Germany -@dirrm share/apps/kppp/Provider/Denmark -@dirrm share/apps/kppp/Provider/Czech_Republic -@dirrm share/apps/kppp/Provider/Austria -@dirrm share/apps/kppp/Provider -@dirrm share/apps/kppp -@dirrm share/apps/konqueror/dirtree/remote -@dirrm share/apps/konqueror/dirtree -@dirrm share/apps/konqueror -@dirrm share/apps/knode/pics -@dirrm share/apps/knode/icons/hicolor/32x32/actions -@dirrm share/apps/knode/icons/hicolor/32x32 -@dirrm share/apps/knode/icons/hicolor/22x22/actions -@dirrm share/apps/knode/icons/hicolor/22x22 -@dirrm share/apps/knode/icons/hicolor/16x16/actions -@dirrm share/apps/knode/icons/hicolor/16x16 -@dirrm share/apps/knode/icons/hicolor -@dirrm share/apps/knode/icons -@dirrm share/apps/knode/filters -@dirrm share/apps/knode -@dirrm share/apps/knewsticker -@dirrm share/apps/kmail/pics -@dirrm share/apps/kmail/about -@dirrm share/apps/kmail -@dirrm share/apps/kit/icons/hicolor/16x16/actions -@dirrm share/apps/kit/icons/hicolor/16x16 -@dirrm share/apps/kit/icons/hicolor -@dirrm share/apps/kit/icons -@dirrm share/apps/kit -@dirrm share/apps/kicker/applets -@dirrm share/apps/kicker -@dirrm share/apps/kdict/icons/hicolor/32x32/actions -@dirrm share/apps/kdict/icons/hicolor/32x32 -@dirrm share/apps/kdict/icons/hicolor/22x22/actions -@dirrm share/apps/kdict/icons/hicolor/22x22 -@dirrm share/apps/kdict/icons/hicolor/16x16/actions -@dirrm share/apps/kdict/icons/hicolor/16x16 -@dirrm share/apps/kdict/icons/hicolor -@dirrm share/apps/kdict/icons -@dirrm share/apps/kdict -@dirrm share/applnk/Utilities -@dirrm share/applnk/Settings/Personalization -@dirrm share/applnk/Settings/Network -@dirrm share/applnk/Settings -@dirrm share/applnk/Internet -@dirrm share/applnk/.hidden -@dirrm share/applnk -@dirrm include/mimelib diff --git a/russian/calligra-l10n/Makefile b/russian/calligra-l10n/Makefile deleted file mode 100644 index 779fc78..0000000 --- a/russian/calligra-l10n/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# New ports collection makefile for: ru-koffice-i18n -# Date created: 22 December 2001 -# Whom: Dmitry Sivachenko <demon@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= koffice-i18n -PORTVERSION= 1.1.1 -PORTREVISION= 1 -CATEGORIES= russian kde misc -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/koffice-${PORTVERSION}/src -DISTNAME= ${PORTNAME}-${PKGNAMEPREFIX}${PORTVERSION} -DIST_SUBDIR= KDE - -MAINTAINER= demon@FreeBSD.org - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 -LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext -RUN_DEPENDS= koshell:${PORTSDIR}/editors/koffice - -USE_KDELIBS_VER=2 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -WRKSRC= ${WRKDIR}/${PORTNAME}-ru - -.include <bsd.port.pre.mk> - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - -.include <bsd.port.post.mk> diff --git a/russian/calligra-l10n/distinfo b/russian/calligra-l10n/distinfo deleted file mode 100644 index b76d53e..0000000 --- a/russian/calligra-l10n/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/koffice-i18n-ru-1.1.1.tar.bz2) = 8ce10b28c1f6a756f2aedccda11af825 diff --git a/russian/calligra-l10n/pkg-comment b/russian/calligra-l10n/pkg-comment deleted file mode 100644 index 48caa77..0000000 --- a/russian/calligra-l10n/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Localized messages for KOffice (Russian language) diff --git a/russian/calligra-l10n/pkg-descr b/russian/calligra-l10n/pkg-descr deleted file mode 100644 index 3d872dc..0000000 --- a/russian/calligra-l10n/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -Localized messages for KOffice (Russian language). diff --git a/russian/calligra-l10n/pkg-plist b/russian/calligra-l10n/pkg-plist deleted file mode 100644 index 3940428..0000000 --- a/russian/calligra-l10n/pkg-plist +++ /dev/null @@ -1,22 +0,0 @@ -share/locale/ru/LC_MESSAGES/csvfilter.mo -share/locale/ru/LC_MESSAGES/example.mo -share/locale/ru/LC_MESSAGES/graphite.mo -share/locale/ru/LC_MESSAGES/kchart.mo -share/locale/ru/LC_MESSAGES/kformula.mo -share/locale/ru/LC_MESSAGES/kivio.mo -share/locale/ru/LC_MESSAGES/kocryptfilter.mo -share/locale/ru/LC_MESSAGES/koffice.mo -share/locale/ru/LC_MESSAGES/kontour.mo -share/locale/ru/LC_MESSAGES/koshell.mo -share/locale/ru/LC_MESSAGES/kpresenter.mo -share/locale/ru/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/ru/LC_MESSAGES/krayon.mo -share/locale/ru/LC_MESSAGES/kscan_plugin.mo -share/locale/ru/LC_MESSAGES/kspread.mo -share/locale/ru/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/ru/LC_MESSAGES/kspreadqprofilter.mo -share/locale/ru/LC_MESSAGES/kugar.mo -share/locale/ru/LC_MESSAGES/kword.mo -share/locale/ru/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/ru/LC_MESSAGES/kwordlatexfilter.mo -share/locale/ru/LC_MESSAGES/olefilterswinword97filter.mo diff --git a/russian/kde2-i18n/Makefile b/russian/kde2-i18n/Makefile deleted file mode 100644 index e614b70..0000000 --- a/russian/kde2-i18n/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# New ports collection makefile for: ru-kde2-i18n -# Date created: 10 April 2001 -# Whom: Dmitry Sivachenko <demon@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= 2.2.2 -PORTREVISION= 3 -CATEGORIES= russian kde misc -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= Attic/${PORTVERSION}/src -DISTNAME= ${PORTNAME}-${PKGNAMEPREFIX}${PORTVERSION} -DIST_SUBDIR= KDE - -MAINTAINER= demon@FreeBSD.org - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 -BUILD_DEPENDS+= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=2 -USE_BZIP2= yes -USE_GMAKE= yes -WRKSRC= ${WRKDIR}/${PORTNAME}-ru - -GNU_CONFIGURE= yes - -.include <bsd.port.pre.mk> - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - -.include <bsd.port.post.mk> diff --git a/russian/kde2-i18n/distinfo b/russian/kde2-i18n/distinfo deleted file mode 100644 index 24307f8..0000000 --- a/russian/kde2-i18n/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/kde-i18n-ru-2.2.2.tar.bz2) = 4fa44bb4e7c507778d153a959a12cbec diff --git a/russian/kde2-i18n/pkg-comment b/russian/kde2-i18n/pkg-comment deleted file mode 100644 index 3cc097e..0000000 --- a/russian/kde2-i18n/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Messages and documentation for KDE2 in Russian language diff --git a/russian/kde2-i18n/pkg-descr b/russian/kde2-i18n/pkg-descr deleted file mode 100644 index 4c67073..0000000 --- a/russian/kde2-i18n/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Messages and documentation for KDE2 in Russian language. - -WWW: http://i18n.kde.org/stats/doc/index.php?team=ru diff --git a/russian/kde2-i18n/pkg-plist b/russian/kde2-i18n/pkg-plist deleted file mode 100644 index f1b73c2..0000000 --- a/russian/kde2-i18n/pkg-plist +++ /dev/null @@ -1,416 +0,0 @@ -share/doc/HTML/ru/common/1.png -share/doc/HTML/ru/common/10.png -share/doc/HTML/ru/common/2.png -share/doc/HTML/ru/common/3.png -share/doc/HTML/ru/common/4.png -share/doc/HTML/ru/common/5.png -share/doc/HTML/ru/common/6.png -share/doc/HTML/ru/common/7.png -share/doc/HTML/ru/common/8.png -share/doc/HTML/ru/common/9.png -share/doc/HTML/ru/common/artistic-license.html -share/doc/HTML/ru/common/bottom1.png -share/doc/HTML/ru/common/bottom2.png -share/doc/HTML/ru/common/bsd-license.html -share/doc/HTML/ru/common/caution.png -share/doc/HTML/ru/common/doctop1.png -share/doc/HTML/ru/common/doctop1a.png -share/doc/HTML/ru/common/doctop1b.png -share/doc/HTML/ru/common/doctop2.png -share/doc/HTML/ru/common/fdl-license -share/doc/HTML/ru/common/fdl-license.html -share/doc/HTML/ru/common/fdl-translated.html -share/doc/HTML/ru/common/gpl-license -share/doc/HTML/ru/common/gpl-license.html -share/doc/HTML/ru/common/gpl-translated.html -share/doc/HTML/ru/common/important.png -share/doc/HTML/ru/common/kde-common.css -share/doc/HTML/ru/common/kde-default.css -share/doc/HTML/ru/common/kde-localised.css -share/doc/HTML/ru/common/kde-localised.css.template -share/doc/HTML/ru/common/lgpl-license -share/doc/HTML/ru/common/lgpl-license.html -share/doc/HTML/ru/common/logotp3-small.png -share/doc/HTML/ru/common/logotp3.png -share/doc/HTML/ru/common/note.png -share/doc/HTML/ru/common/prev.png -share/doc/HTML/ru/common/qpl-license.html -share/doc/HTML/ru/common/shadow.png -share/doc/HTML/ru/common/tip.png -share/doc/HTML/ru/common/toc-blank.png -share/doc/HTML/ru/common/toc-minus.png -share/doc/HTML/ru/common/toc-plus.png -share/doc/HTML/ru/common/up.png -share/doc/HTML/ru/common/warning.png -share/doc/HTML/ru/common/x11-license.html -share/doc/HTML/ru/common/xml.dcl -share/doc/HTML/ru/kandy/common -share/doc/HTML/ru/kandy/index.docbook -share/doc/HTML/ru/kate-plugins/helloworld.docbook -share/doc/HTML/ru/kate-plugins/htmltools.docbook -share/doc/HTML/ru/kate-plugins/insertcommand.docbook -share/doc/HTML/ru/kate-plugins/openheader.docbook -share/doc/HTML/ru/kate-plugins/projectmanager.docbook -share/doc/HTML/ru/kate-plugins/textfilter.docbook -share/doc/HTML/ru/kbattleship/common -share/doc/HTML/ru/kbattleship/index.docbook -share/doc/HTML/ru/kcontrol/kcmintinfo.docbook -share/doc/HTML/ru/kcontrol/kcmioportinfo.docbook -share/doc/HTML/ru/kcontrol/kcmmemoryinfo.docbook -share/doc/HTML/ru/kcontrol/kcmmixer.docbook -share/doc/HTML/ru/kcontrol/kcmpartitioninfo.docbook -share/doc/HTML/ru/kcontrol/kcmpciinfo.docbook -share/doc/HTML/ru/kcontrol/kcmpcmcia.docbook -share/doc/HTML/ru/kcontrol/kcmprocinfo.docbook -share/doc/HTML/ru/kcontrol/kcmsndinfo.docbook -share/doc/HTML/ru/kcontrol/kcmxservinfo.docbook -share/doc/HTML/ru/khelpcenter/background.png -share/doc/HTML/ru/khelpcenter/bgtable.png -share/doc/HTML/ru/khelpcenter/faq/kdeapps.docbook -share/doc/HTML/ru/khelpcenter/faq/nonkdeapps.docbook -share/doc/HTML/ru/khelpcenter/faq/notrelated.docbook -share/doc/HTML/ru/khelpcenter/faq/tips.docbook -share/doc/HTML/ru/khelpcenter/kdelogo2.png -share/doc/HTML/ru/khelpcenter/konq.css -share/doc/HTML/ru/khelpcenter/lines.png -share/doc/HTML/ru/khelpcenter/lines2.png -share/doc/HTML/ru/khelpcenter/links.docbook -share/doc/HTML/ru/khelpcenter/main.html -share/doc/HTML/ru/khelpcenter/pointers.png -share/doc/HTML/ru/khelpcenter/shadow1.png -share/doc/HTML/ru/khelpcenter/welcome.docbook -share/doc/HTML/ru/khelpcenter/whatiskde.docbook -share/doc/HTML/ru/kicker-applets/common -share/doc/HTML/ru/kicker-applets/index.docbook -share/doc/HTML/ru/kicker-applets/kolourpicker.docbook -share/doc/HTML/ru/kicker-applets/ktimemon.docbook -share/doc/HTML/ru/kicker/common -share/doc/HTML/ru/kicker/index.docbook -share/doc/HTML/ru/kmix/common -share/doc/HTML/ru/kmix/index.docbook -share/doc/HTML/ru/knu/knu-config.png -share/doc/HTML/ru/knu/knu-finger.png -share/doc/HTML/ru/knu/knu-host.png -share/doc/HTML/ru/knu/knu-mtr.png -share/doc/HTML/ru/knu/knu-ping.png -share/doc/HTML/ru/knu/knu-traceroute.png -share/doc/HTML/ru/kodo/common -share/doc/HTML/ru/kodo/index.docbook -share/doc/HTML/ru/kpager/common -share/doc/HTML/ru/kpager/index.docbook -share/doc/HTML/ru/kppp/accounting.docbook -share/doc/HTML/ru/kppp/callback.docbook -share/doc/HTML/ru/kppp/chap.docbook -share/doc/HTML/ru/kppp/common -share/doc/HTML/ru/kppp/dialog-setup.docbook -share/doc/HTML/ru/kppp/getting-online.docbook -share/doc/HTML/ru/kppp/global-settings.docbook -share/doc/HTML/ru/kppp/hayes.docbook -share/doc/HTML/ru/kppp/index.docbook -share/doc/HTML/ru/kppp/kppp-faq.docbook -share/doc/HTML/ru/kppp/security.docbook -share/doc/HTML/ru/kppp/tricks.docbook -share/doc/HTML/ru/kppp/wizard.docbook -share/doc/HTML/ru/kpresenter/faq.docbook -share/doc/HTML/ru/kpresenter/guides.docbook -share/doc/HTML/ru/kpresenter/options.docbook -share/doc/HTML/ru/kpresenter/screen.docbook -share/doc/HTML/ru/kpresenter/tutorial.docbook -share/doc/HTML/ru/kscd/common -share/doc/HTML/ru/kscd/index.docbook -share/doc/HTML/ru/ksnapshot/common -share/doc/HTML/ru/ksnapshot/index.docbook -share/doc/HTML/ru/ktalkd/common -share/doc/HTML/ru/ktalkd/index.docbook -share/doc/HTML/ru/kword/kwordbasics.docbook -share/doc/HTML/ru/kworldclock/common -share/doc/HTML/ru/kworldclock/index.docbook -share/doc/HTML/ru/kwuftpd/common -share/doc/HTML/ru/kwuftpd/index.docbook -share/doc/HTML/ru/noatun/common -share/doc/HTML/ru/noatun/index.docbook -share/locale/ru/LC_MESSAGES/aktion.mo -share/locale/ru/LC_MESSAGES/amor.mo -share/locale/ru/LC_MESSAGES/appletproxy.mo -share/locale/ru/LC_MESSAGES/ark.mo -share/locale/ru/LC_MESSAGES/artsbuilder.mo -share/locale/ru/LC_MESSAGES/artscontrol.mo -share/locale/ru/LC_MESSAGES/babelfish.mo -share/locale/ru/LC_MESSAGES/childpanelextension.mo -share/locale/ru/LC_MESSAGES/clockapplet.mo -share/locale/ru/LC_MESSAGES/cupsdconf.mo -share/locale/ru/LC_MESSAGES/desktop.mo -share/locale/ru/LC_MESSAGES/dirfilterplugin.mo -share/locale/ru/LC_MESSAGES/domtreeviewer.mo -share/locale/ru/LC_MESSAGES/drkonqi.mo -share/locale/ru/LC_MESSAGES/empath.mo -share/locale/ru/LC_MESSAGES/extensionproxy.mo -share/locale/ru/LC_MESSAGES/filetypes.mo -share/locale/ru/LC_MESSAGES/htmlsearch.mo -share/locale/ru/LC_MESSAGES/imgalleryplugin.mo -share/locale/ru/LC_MESSAGES/kab.mo -share/locale/ru/LC_MESSAGES/kabalone.mo -share/locale/ru/LC_MESSAGES/kaccess.mo -share/locale/ru/LC_MESSAGES/kaddressbook.mo -share/locale/ru/LC_MESSAGES/kandy.mo -share/locale/ru/LC_MESSAGES/kappfinder.mo -share/locale/ru/LC_MESSAGES/karm.mo -share/locale/ru/LC_MESSAGES/kasbarextension.mo -share/locale/ru/LC_MESSAGES/kasteroids.mo -share/locale/ru/LC_MESSAGES/kate.mo -share/locale/ru/LC_MESSAGES/katehtmltools.mo -share/locale/ru/LC_MESSAGES/kateinsertcommand.mo -share/locale/ru/LC_MESSAGES/katomic.mo -share/locale/ru/LC_MESSAGES/kbackgammon.mo -share/locale/ru/LC_MESSAGES/kbattleship.mo -share/locale/ru/LC_MESSAGES/kbiff.mo -share/locale/ru/LC_MESSAGES/kblackbox.mo -share/locale/ru/LC_MESSAGES/kcalc.mo -share/locale/ru/LC_MESSAGES/kcharselect.mo -share/locale/ru/LC_MESSAGES/kcharselectapplet.mo -share/locale/ru/LC_MESSAGES/kcmaccess.mo -share/locale/ru/LC_MESSAGES/kcmail.mo -share/locale/ru/LC_MESSAGES/kcmarts.mo -share/locale/ru/LC_MESSAGES/kcmaudiocd.mo -share/locale/ru/LC_MESSAGES/kcmbackground.mo -share/locale/ru/LC_MESSAGES/kcmbell.mo -share/locale/ru/LC_MESSAGES/kcmcolors.mo -share/locale/ru/LC_MESSAGES/kcmcrypto.mo -share/locale/ru/LC_MESSAGES/kcmcss.mo -share/locale/ru/LC_MESSAGES/kcmemail.mo -share/locale/ru/LC_MESSAGES/kcmenergy.mo -share/locale/ru/LC_MESSAGES/kcmfonts.mo -share/locale/ru/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/ru/LC_MESSAGES/kcmicons.mo -share/locale/ru/LC_MESSAGES/kcminfo.mo -share/locale/ru/LC_MESSAGES/kcminput.mo -share/locale/ru/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/ru/LC_MESSAGES/kcmkamera.mo -share/locale/ru/LC_MESSAGES/kcmkclock.mo -share/locale/ru/LC_MESSAGES/kcmkdb.mo -share/locale/ru/LC_MESSAGES/kcmkeys.mo -share/locale/ru/LC_MESSAGES/kcmkicker.mo -share/locale/ru/LC_MESSAGES/kcmkio.mo -share/locale/ru/LC_MESSAGES/kcmkmix.mo -share/locale/ru/LC_MESSAGES/kcmkonq.mo -share/locale/ru/LC_MESSAGES/kcmkonqhtml.mo -share/locale/ru/LC_MESSAGES/kcmkonsole.mo -share/locale/ru/LC_MESSAGES/kcmktalkd.mo -share/locale/ru/LC_MESSAGES/kcmkurifilt.mo -share/locale/ru/LC_MESSAGES/kcmkwindecoration.mo -share/locale/ru/LC_MESSAGES/kcmkwintheme.mo -share/locale/ru/LC_MESSAGES/kcmkwm.mo -share/locale/ru/LC_MESSAGES/kcmlanbrowser.mo -share/locale/ru/LC_MESSAGES/kcmlaptop.mo -share/locale/ru/LC_MESSAGES/kcmlaunch.mo -share/locale/ru/LC_MESSAGES/kcmlayout.mo -share/locale/ru/LC_MESSAGES/kcmlilo.mo -share/locale/ru/LC_MESSAGES/kcmlinuz.mo -share/locale/ru/LC_MESSAGES/kcmlocale.mo -share/locale/ru/LC_MESSAGES/kcmmidi.mo -share/locale/ru/LC_MESSAGES/kcmnewsticker.mo -share/locale/ru/LC_MESSAGES/kcmnotify.mo -share/locale/ru/LC_MESSAGES/kcmsamba.mo -share/locale/ru/LC_MESSAGES/kcmscreensaver.mo -share/locale/ru/LC_MESSAGES/kcmsmserver.mo -share/locale/ru/LC_MESSAGES/kcmsocks.mo -share/locale/ru/LC_MESSAGES/kcmspellchecking.mo -share/locale/ru/LC_MESSAGES/kcmstyle.mo -share/locale/ru/LC_MESSAGES/kcmtaskbar.mo -share/locale/ru/LC_MESSAGES/kcmthemes.mo -share/locale/ru/LC_MESSAGES/kcmusb.mo -share/locale/ru/LC_MESSAGES/kcoloredit.mo -share/locale/ru/LC_MESSAGES/kcontrol.mo -share/locale/ru/LC_MESSAGES/kcron.mo -share/locale/ru/LC_MESSAGES/kdcop.mo -share/locale/ru/LC_MESSAGES/kdebugdialog.mo -share/locale/ru/LC_MESSAGES/kdelibs.mo -share/locale/ru/LC_MESSAGES/kdepasswd.mo -share/locale/ru/LC_MESSAGES/kdeprintfax.mo -share/locale/ru/LC_MESSAGES/kdesktop.mo -share/locale/ru/LC_MESSAGES/kdessh.mo -share/locale/ru/LC_MESSAGES/kdesu.mo -share/locale/ru/LC_MESSAGES/kdesud.mo -share/locale/ru/LC_MESSAGES/kdf.mo -share/locale/ru/LC_MESSAGES/kdict.mo -share/locale/ru/LC_MESSAGES/kdictapplet.mo -share/locale/ru/LC_MESSAGES/kdmchooser.mo -share/locale/ru/LC_MESSAGES/kdmconfig.mo -share/locale/ru/LC_MESSAGES/kdmgreet.mo -share/locale/ru/LC_MESSAGES/kdvi.mo -share/locale/ru/LC_MESSAGES/kedit.mo -share/locale/ru/LC_MESSAGES/kfax.mo -share/locale/ru/LC_MESSAGES/kfifteenapplet.mo -share/locale/ru/LC_MESSAGES/kfind.mo -share/locale/ru/LC_MESSAGES/kfindpart.mo -share/locale/ru/LC_MESSAGES/kfinger.mo -share/locale/ru/LC_MESSAGES/kfloppy.mo -share/locale/ru/LC_MESSAGES/kfmclient.mo -share/locale/ru/LC_MESSAGES/kfmexec.mo -share/locale/ru/LC_MESSAGES/kfortune.mo -share/locale/ru/LC_MESSAGES/kfract.mo -share/locale/ru/LC_MESSAGES/kghostview.mo -share/locale/ru/LC_MESSAGES/khelpcenter.mo -share/locale/ru/LC_MESSAGES/khexedit.mo -share/locale/ru/LC_MESSAGES/khotkeys.mo -share/locale/ru/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/ru/LC_MESSAGES/kicker.mo -share/locale/ru/LC_MESSAGES/kiconedit.mo -share/locale/ru/LC_MESSAGES/kio_audiocd.mo -share/locale/ru/LC_MESSAGES/kio_finger.mo -share/locale/ru/LC_MESSAGES/kio_floppy.mo -share/locale/ru/LC_MESSAGES/kio_help.mo -share/locale/ru/LC_MESSAGES/kio_imap4.mo -share/locale/ru/LC_MESSAGES/kio_lan.mo -share/locale/ru/LC_MESSAGES/kio_man.mo -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_smb.mo -share/locale/ru/LC_MESSAGES/kio_smbro.mo -share/locale/ru/LC_MESSAGES/kit.mo -share/locale/ru/LC_MESSAGES/kjezz.mo -share/locale/ru/LC_MESSAGES/kjobviewer.mo -share/locale/ru/LC_MESSAGES/kjots.mo -share/locale/ru/LC_MESSAGES/kjumpingcube.mo -share/locale/ru/LC_MESSAGES/klaptopdaemon.mo -share/locale/ru/LC_MESSAGES/klegacyimport.mo -share/locale/ru/LC_MESSAGES/kless.mo -share/locale/ru/LC_MESSAGES/klines.mo -share/locale/ru/LC_MESSAGES/klipper.mo -share/locale/ru/LC_MESSAGES/kljettool.mo -share/locale/ru/LC_MESSAGES/klock.mo -share/locale/ru/LC_MESSAGES/klpq.mo -share/locale/ru/LC_MESSAGES/klprfax.mo -share/locale/ru/LC_MESSAGES/kmahjongg.mo -share/locale/ru/LC_MESSAGES/kmail.mo -share/locale/ru/LC_MESSAGES/kmailcvt.mo -share/locale/ru/LC_MESSAGES/kmenuedit.mo -share/locale/ru/LC_MESSAGES/kmid.mo -share/locale/ru/LC_MESSAGES/kmidi.mo -share/locale/ru/LC_MESSAGES/kmines.mo -share/locale/ru/LC_MESSAGES/kminipagerapplet.mo -share/locale/ru/LC_MESSAGES/kmix.mo -share/locale/ru/LC_MESSAGES/kmoon.mo -share/locale/ru/LC_MESSAGES/knetmgr.mo -share/locale/ru/LC_MESSAGES/knewsticker.mo -share/locale/ru/LC_MESSAGES/knode.mo -share/locale/ru/LC_MESSAGES/knotes.mo -share/locale/ru/LC_MESSAGES/knotify.mo -share/locale/ru/LC_MESSAGES/kodo.mo -share/locale/ru/LC_MESSAGES/kolourpicker.mo -share/locale/ru/LC_MESSAGES/konqueror.mo -share/locale/ru/LC_MESSAGES/konquest.mo -share/locale/ru/LC_MESSAGES/konsole.mo -share/locale/ru/LC_MESSAGES/kooka.mo -share/locale/ru/LC_MESSAGES/korganizer.mo -share/locale/ru/LC_MESSAGES/korn.mo -share/locale/ru/LC_MESSAGES/kpackage.mo -share/locale/ru/LC_MESSAGES/kpager.mo -share/locale/ru/LC_MESSAGES/kpaint.mo -share/locale/ru/LC_MESSAGES/kpartapp.mo -share/locale/ru/LC_MESSAGES/kpartsaver.mo -share/locale/ru/LC_MESSAGES/kpat.mo -share/locale/ru/LC_MESSAGES/kpersonalizer.mo -share/locale/ru/LC_MESSAGES/kphone.mo -share/locale/ru/LC_MESSAGES/kpilot.mo -share/locale/ru/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/ru/LC_MESSAGES/kpm.mo -share/locale/ru/LC_MESSAGES/kpoker.mo -share/locale/ru/LC_MESSAGES/kppp.mo -share/locale/ru/LC_MESSAGES/kppplogview.mo -share/locale/ru/LC_MESSAGES/kprinter.mo -share/locale/ru/LC_MESSAGES/kreadconfig.mo -share/locale/ru/LC_MESSAGES/kreversi.mo -share/locale/ru/LC_MESSAGES/kruler.mo -share/locale/ru/LC_MESSAGES/krunapplet.mo -share/locale/ru/LC_MESSAGES/ksame.mo -share/locale/ru/LC_MESSAGES/kscd.mo -share/locale/ru/LC_MESSAGES/kscoreapplet.mo -share/locale/ru/LC_MESSAGES/kshisen.mo -share/locale/ru/LC_MESSAGES/ksirc.mo -share/locale/ru/LC_MESSAGES/ksirtet.mo -share/locale/ru/LC_MESSAGES/ksmiletris.mo -share/locale/ru/LC_MESSAGES/ksmserver.mo -share/locale/ru/LC_MESSAGES/ksnake.mo -share/locale/ru/LC_MESSAGES/ksnapshot.mo -share/locale/ru/LC_MESSAGES/ksokoban.mo -share/locale/ru/LC_MESSAGES/kspaceduel.mo -share/locale/ru/LC_MESSAGES/ksplash.mo -share/locale/ru/LC_MESSAGES/kstart.mo -share/locale/ru/LC_MESSAGES/kstartperf.mo -share/locale/ru/LC_MESSAGES/ksysctrl.mo -share/locale/ru/LC_MESSAGES/ksysguard.mo -share/locale/ru/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/ru/LC_MESSAGES/ksysv.mo -share/locale/ru/LC_MESSAGES/ktalkd.mo -share/locale/ru/LC_MESSAGES/ktaskbarapplet.mo -share/locale/ru/LC_MESSAGES/kteatime.mo -share/locale/ru/LC_MESSAGES/ktimemon.mo -share/locale/ru/LC_MESSAGES/ktimer.mo -share/locale/ru/LC_MESSAGES/ktip.mo -share/locale/ru/LC_MESSAGES/ktron.mo -share/locale/ru/LC_MESSAGES/ktuberling.mo -share/locale/ru/LC_MESSAGES/ktux.mo -share/locale/ru/LC_MESSAGES/kuser.mo -share/locale/ru/LC_MESSAGES/kview.mo -share/locale/ru/LC_MESSAGES/kviewshell.mo -share/locale/ru/LC_MESSAGES/kwin.mo -share/locale/ru/LC_MESSAGES/kwin4.mo -share/locale/ru/LC_MESSAGES/kworldclock.mo -share/locale/ru/LC_MESSAGES/kwuftpd.mo -share/locale/ru/LC_MESSAGES/kxkb.mo -share/locale/ru/LC_MESSAGES/kxmlrpcd.mo -share/locale/ru/LC_MESSAGES/kxsconfig.mo -share/locale/ru/LC_MESSAGES/libkdegames.mo -share/locale/ru/LC_MESSAGES/libkdenetwork.mo -share/locale/ru/LC_MESSAGES/libkonq.mo -share/locale/ru/LC_MESSAGES/libkscan.mo -share/locale/ru/LC_MESSAGES/libkscreensaver.mo -share/locale/ru/LC_MESSAGES/libkwindefault_config.mo -share/locale/ru/LC_MESSAGES/libkwinicewm_config.mo -share/locale/ru/LC_MESSAGES/libkwinmodernsys_config.mo -share/locale/ru/LC_MESSAGES/libkwinquartz_config.mo -share/locale/ru/LC_MESSAGES/libtaskbar.mo -share/locale/ru/LC_MESSAGES/libtaskmanager.mo -share/locale/ru/LC_MESSAGES/lskat.mo -share/locale/ru/LC_MESSAGES/multiplayers.mo -share/locale/ru/LC_MESSAGES/naughtyapplet.mo -share/locale/ru/LC_MESSAGES/noatun.mo -share/locale/ru/LC_MESSAGES/nsplugin.mo -share/locale/ru/LC_MESSAGES/passwords.mo -share/locale/ru/LC_MESSAGES/ppdtranslations.mo -share/locale/ru/LC_MESSAGES/quicklauncher.mo -share/locale/ru/LC_MESSAGES/secpolicy.mo -share/locale/ru/LC_MESSAGES/spy.mo -share/locale/ru/LC_MESSAGES/taskbarextension.mo -share/locale/ru/LC_MESSAGES/twister.mo -share/locale/ru/LC_MESSAGES/uachangerplugin.mo -share/locale/ru/LC_MESSAGES/validatorsplugin.mo -share/locale/ru/LC_MESSAGES/webarchiver.mo -share/locale/ru/charset -share/locale/ru/entry.desktop -share/locale/ru/flag.png -@dirrm share/doc/HTML/ru/noatun -@dirrm share/doc/HTML/ru/kwuftpd -@dirrm share/doc/HTML/ru/kworldclock -@dirrm share/doc/HTML/ru/kword -@dirrm share/doc/HTML/ru/ktalkd -@dirrm share/doc/HTML/ru/ksnapshot -@dirrm share/doc/HTML/ru/kscd -@dirrm share/doc/HTML/ru/kpresenter -@dirrm share/doc/HTML/ru/kppp -@dirrm share/doc/HTML/ru/kpager -@dirrm share/doc/HTML/ru/kodo -@dirrm share/doc/HTML/ru/knu -@dirrm share/doc/HTML/ru/kmix -@dirrm share/doc/HTML/ru/kicker-applets -@dirrm share/doc/HTML/ru/kicker -@dirrm share/doc/HTML/ru/khelpcenter/faq -@dirrm share/doc/HTML/ru/khelpcenter -@dirrm share/doc/HTML/ru/kcontrol -@dirrm share/doc/HTML/ru/kbattleship -@dirrm share/doc/HTML/ru/kate-plugins -@dirrm share/doc/HTML/ru/kandy -@dirrm share/doc/HTML/ru/common -@dirrm share/doc/HTML/ru diff --git a/russian/koffice-i18n/Makefile b/russian/koffice-i18n/Makefile deleted file mode 100644 index 779fc78..0000000 --- a/russian/koffice-i18n/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# New ports collection makefile for: ru-koffice-i18n -# Date created: 22 December 2001 -# Whom: Dmitry Sivachenko <demon@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= koffice-i18n -PORTVERSION= 1.1.1 -PORTREVISION= 1 -CATEGORIES= russian kde misc -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/koffice-${PORTVERSION}/src -DISTNAME= ${PORTNAME}-${PKGNAMEPREFIX}${PORTVERSION} -DIST_SUBDIR= KDE - -MAINTAINER= demon@FreeBSD.org - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 -LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext -RUN_DEPENDS= koshell:${PORTSDIR}/editors/koffice - -USE_KDELIBS_VER=2 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -WRKSRC= ${WRKDIR}/${PORTNAME}-ru - -.include <bsd.port.pre.mk> - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - -.include <bsd.port.post.mk> diff --git a/russian/koffice-i18n/distinfo b/russian/koffice-i18n/distinfo deleted file mode 100644 index b76d53e..0000000 --- a/russian/koffice-i18n/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/koffice-i18n-ru-1.1.1.tar.bz2) = 8ce10b28c1f6a756f2aedccda11af825 diff --git a/russian/koffice-i18n/pkg-comment b/russian/koffice-i18n/pkg-comment deleted file mode 100644 index 48caa77..0000000 --- a/russian/koffice-i18n/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Localized messages for KOffice (Russian language) diff --git a/russian/koffice-i18n/pkg-descr b/russian/koffice-i18n/pkg-descr deleted file mode 100644 index 3d872dc..0000000 --- a/russian/koffice-i18n/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -Localized messages for KOffice (Russian language). diff --git a/russian/koffice-i18n/pkg-plist b/russian/koffice-i18n/pkg-plist deleted file mode 100644 index 3940428..0000000 --- a/russian/koffice-i18n/pkg-plist +++ /dev/null @@ -1,22 +0,0 @@ -share/locale/ru/LC_MESSAGES/csvfilter.mo -share/locale/ru/LC_MESSAGES/example.mo -share/locale/ru/LC_MESSAGES/graphite.mo -share/locale/ru/LC_MESSAGES/kchart.mo -share/locale/ru/LC_MESSAGES/kformula.mo -share/locale/ru/LC_MESSAGES/kivio.mo -share/locale/ru/LC_MESSAGES/kocryptfilter.mo -share/locale/ru/LC_MESSAGES/koffice.mo -share/locale/ru/LC_MESSAGES/kontour.mo -share/locale/ru/LC_MESSAGES/koshell.mo -share/locale/ru/LC_MESSAGES/kpresenter.mo -share/locale/ru/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/ru/LC_MESSAGES/krayon.mo -share/locale/ru/LC_MESSAGES/kscan_plugin.mo -share/locale/ru/LC_MESSAGES/kspread.mo -share/locale/ru/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/ru/LC_MESSAGES/kspreadqprofilter.mo -share/locale/ru/LC_MESSAGES/kugar.mo -share/locale/ru/LC_MESSAGES/kword.mo -share/locale/ru/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/ru/LC_MESSAGES/kwordlatexfilter.mo -share/locale/ru/LC_MESSAGES/olefilterswinword97filter.mo diff --git a/russian/koffice-kde4-l10n/Makefile b/russian/koffice-kde4-l10n/Makefile deleted file mode 100644 index 779fc78..0000000 --- a/russian/koffice-kde4-l10n/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# New ports collection makefile for: ru-koffice-i18n -# Date created: 22 December 2001 -# Whom: Dmitry Sivachenko <demon@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= koffice-i18n -PORTVERSION= 1.1.1 -PORTREVISION= 1 -CATEGORIES= russian kde misc -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/koffice-${PORTVERSION}/src -DISTNAME= ${PORTNAME}-${PKGNAMEPREFIX}${PORTVERSION} -DIST_SUBDIR= KDE - -MAINTAINER= demon@FreeBSD.org - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 -LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext -RUN_DEPENDS= koshell:${PORTSDIR}/editors/koffice - -USE_KDELIBS_VER=2 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -WRKSRC= ${WRKDIR}/${PORTNAME}-ru - -.include <bsd.port.pre.mk> - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - -.include <bsd.port.post.mk> diff --git a/russian/koffice-kde4-l10n/distinfo b/russian/koffice-kde4-l10n/distinfo deleted file mode 100644 index b76d53e..0000000 --- a/russian/koffice-kde4-l10n/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/koffice-i18n-ru-1.1.1.tar.bz2) = 8ce10b28c1f6a756f2aedccda11af825 diff --git a/russian/koffice-kde4-l10n/pkg-comment b/russian/koffice-kde4-l10n/pkg-comment deleted file mode 100644 index 48caa77..0000000 --- a/russian/koffice-kde4-l10n/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Localized messages for KOffice (Russian language) diff --git a/russian/koffice-kde4-l10n/pkg-descr b/russian/koffice-kde4-l10n/pkg-descr deleted file mode 100644 index 3d872dc..0000000 --- a/russian/koffice-kde4-l10n/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -Localized messages for KOffice (Russian language). diff --git a/russian/koffice-kde4-l10n/pkg-plist b/russian/koffice-kde4-l10n/pkg-plist deleted file mode 100644 index 3940428..0000000 --- a/russian/koffice-kde4-l10n/pkg-plist +++ /dev/null @@ -1,22 +0,0 @@ -share/locale/ru/LC_MESSAGES/csvfilter.mo -share/locale/ru/LC_MESSAGES/example.mo -share/locale/ru/LC_MESSAGES/graphite.mo -share/locale/ru/LC_MESSAGES/kchart.mo -share/locale/ru/LC_MESSAGES/kformula.mo -share/locale/ru/LC_MESSAGES/kivio.mo -share/locale/ru/LC_MESSAGES/kocryptfilter.mo -share/locale/ru/LC_MESSAGES/koffice.mo -share/locale/ru/LC_MESSAGES/kontour.mo -share/locale/ru/LC_MESSAGES/koshell.mo -share/locale/ru/LC_MESSAGES/kpresenter.mo -share/locale/ru/LC_MESSAGES/kpresenterkwordfilter.mo -share/locale/ru/LC_MESSAGES/krayon.mo -share/locale/ru/LC_MESSAGES/kscan_plugin.mo -share/locale/ru/LC_MESSAGES/kspread.mo -share/locale/ru/LC_MESSAGES/kspreadcalc_calc.mo -share/locale/ru/LC_MESSAGES/kspreadqprofilter.mo -share/locale/ru/LC_MESSAGES/kugar.mo -share/locale/ru/LC_MESSAGES/kword.mo -share/locale/ru/LC_MESSAGES/kwordhtmlfilter.mo -share/locale/ru/LC_MESSAGES/kwordlatexfilter.mo -share/locale/ru/LC_MESSAGES/olefilterswinword97filter.mo diff --git a/sysutils/kdeadmin/Makefile b/sysutils/kdeadmin/Makefile deleted file mode 100644 index 8afc8fd..0000000 --- a/sysutils/kdeadmin/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -# New ports collection makefile for: kdeadmin -# Date created: 5 March 2001 -# Whom: Dmitry Sivachenko <demon@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= kdeadmin -PORTVERSION= 2.2.2 -CATEGORIES= sysutils kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= Attic/${PORTVERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 - -USE_KDELIBS_VER=2 -USE_BZIP2= yes -USE_GMAKE= yes -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 500029 -_NO_KDE_OBJPRELINK=yes -.endif - -.include "${.CURDIR}/../../x11/kde2/Makefile.kde" - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - cd ${WRKSRC} && env PATH=${WRKSRC}/auto-bin:$$PATH \ - ${GMAKE} -f Makefile.cvs - ${PERL} -pi -e "s@DO_NOT_COMPILE qt@DO_NOT_COMPILE kuser qt@g" ${WRKSRC}/configure - find ${WRKSRC}/kpackage -name "*.cpp" -or -name "*.c" -or -name "*.h" \ - | xargs ${PERL} -pi -e "s#typedef __off64_t off64_t;##g" - -.include <bsd.port.post.mk> diff --git a/sysutils/kdeadmin/distinfo b/sysutils/kdeadmin/distinfo deleted file mode 100644 index a452345..0000000 --- a/sysutils/kdeadmin/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/kdeadmin-2.2.2.tar.bz2) = 5f97fe83d9a2efe3bfb679a679693a45 diff --git a/sysutils/kdeadmin/pkg-comment b/sysutils/kdeadmin/pkg-comment deleted file mode 100644 index b0b81b5..0000000 --- a/sysutils/kdeadmin/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -KDE applications related to system administration diff --git a/sysutils/kdeadmin/pkg-descr b/sysutils/kdeadmin/pkg-descr deleted file mode 100644 index 135da90..0000000 --- a/sysutils/kdeadmin/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -A collection of applications related to system administration, -such as crontab editor, master.passwd editor, package manager, etc. diff --git a/sysutils/kdeadmin/pkg-plist b/sysutils/kdeadmin/pkg-plist deleted file mode 100644 index f8499b3..0000000 --- a/sysutils/kdeadmin/pkg-plist +++ /dev/null @@ -1,77 +0,0 @@ -bin/kcron -bin/kpackage -bin/kwuftpd -bin/secpolicy -share/applnk/System/kcron.desktop -share/applnk/System/kpackage.desktop -share/applnk/System/kwuftpd.desktop -share/apps/kpackage/kpackageui.rc -share/apps/kpackage/pics/bnew.png -share/apps/kpackage/pics/bsd.png -share/apps/kpackage/pics/bupdated.png -share/apps/kpackage/pics/cross.png -share/apps/kpackage/pics/dbad.png -share/apps/kpackage/pics/deb.png -share/apps/kpackage/pics/dnew.png -share/apps/kpackage/pics/dupdated.png -share/apps/kpackage/pics/kiss.png -share/apps/kpackage/pics/knew.png -share/apps/kpackage/pics/kupdated.png -share/apps/kpackage/pics/noball.png -share/apps/kpackage/pics/ptick.png -share/apps/kpackage/pics/question.png -share/apps/kpackage/pics/rnew.png -share/apps/kpackage/pics/rpm.png -share/apps/kpackage/pics/rupdated.png -share/apps/kpackage/pics/slack.png -share/apps/kpackage/pics/snew.png -share/apps/kpackage/pics/supdated.png -share/apps/kpackage/pics/tick.png -share/apps/kpackage/toolbar/ftin.xpm -share/apps/kpackage/toolbar/ftout.xpm -share/doc/HTML/en/kcron/common -share/doc/HTML/en/kcron/index.cache.bz2 -share/doc/HTML/en/kcron/index.docbook -share/doc/HTML/en/kcron/kcron.png -share/doc/HTML/en/kcron/kcronstart.png -share/doc/HTML/en/kcron/newtask.png -share/doc/HTML/en/kcron/newvariable.png -share/doc/HTML/en/kcron/print.png -share/doc/HTML/en/kpackage/common -share/doc/HTML/en/kpackage/index.cache.bz2 -share/doc/HTML/en/kpackage/index.docbook -share/doc/HTML/en/ksysv/common -share/doc/HTML/en/ksysv/index.cache.bz2 -share/doc/HTML/en/ksysv/index.docbook -share/doc/HTML/en/kuser/common -share/doc/HTML/en/kuser/index.cache.bz2 -share/doc/HTML/en/kuser/index.docbook -share/doc/HTML/en/kwuftpd/common -share/doc/HTML/en/kwuftpd/directories.png -share/doc/HTML/en/kwuftpd/index.cache.bz2 -share/doc/HTML/en/kwuftpd/index.docbook -share/doc/HTML/en/kwuftpd/logging.png -share/doc/HTML/en/kwuftpd/messages.png -share/doc/HTML/en/kwuftpd/ratios.png -share/doc/HTML/en/kwuftpd/security.png -share/doc/HTML/en/kwuftpd/uploads.png -share/doc/HTML/en/kwuftpd/user_classes.png -share/doc/HTML/en/kwuftpd/virtual.png -share/icons/hicolor/16x16/apps/kcron.png -share/icons/hicolor/16x16/apps/kpackage.png -share/icons/hicolor/32x32/apps/kcron.png -share/icons/hicolor/32x32/apps/kpackage.png -share/icons/hicolor/48x48/apps/kpackage.png -share/mimelnk/application/x-debian-package.desktop -@dirrm share/icons/hicolor/48x48/apps -@dirrm share/icons/hicolor/32x32/apps -@dirrm share/doc/HTML/en/kwuftpd -@dirrm share/doc/HTML/en/kuser -@dirrm share/doc/HTML/en/ksysv -@dirrm share/doc/HTML/en/kpackage -@dirrm share/doc/HTML/en/kcron -@dirrm share/apps/kpackage/toolbar -@dirrm share/apps/kpackage/pics -@dirrm share/apps/kpackage -@dirrm share/applnk/System -@dirrm share/applnk diff --git a/x11-clocks/kdetoys2/Makefile b/x11-clocks/kdetoys2/Makefile deleted file mode 100644 index d397577..0000000 --- a/x11-clocks/kdetoys2/Makefile +++ /dev/null @@ -1,46 +0,0 @@ -# New ports collection makefile for: kdetoys2 -# Date created: 14 May 2000 02:45:53 -# Whom: Will Andrews <will@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= kdetoys -PORTVERSION= 2.2.2 -CATEGORIES= x11-clocks kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= Attic/${PORTVERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 - -USE_KDELIBS_VER=2 -MOC?= ${X11BASE}/bin/moc2 -USE_BZIP2= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--with-qt-dir=${X11BASE} -USE_GMAKE= yes - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 500029 -_NO_KDE_OBJPRELINK=yes -.endif - -.include "${.CURDIR}/../../x11/kde2/Makefile.kde" - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - cd ${WRKSRC} && env PATH=${WRKSRC}/auto-bin:$$PATH \ - ${GMAKE} -f Makefile.cvs - -.include <bsd.port.post.mk> diff --git a/x11-clocks/kdetoys2/distinfo b/x11-clocks/kdetoys2/distinfo deleted file mode 100644 index 71fb19e..0000000 --- a/x11-clocks/kdetoys2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/kdetoys-2.2.2.tar.bz2) = 67a90e965301997dc909229f643de22d diff --git a/x11-clocks/kdetoys2/pkg-comment b/x11-clocks/kdetoys2/pkg-comment deleted file mode 100644 index a28f517..0000000 --- a/x11-clocks/kdetoys2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Small applications for KDE2 diff --git a/x11-clocks/kdetoys2/pkg-descr b/x11-clocks/kdetoys2/pkg-descr deleted file mode 100644 index 516be6a..0000000 --- a/x11-clocks/kdetoys2/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -This port contains a set of KDE2-based applications for -miscellaneous use, like clocks. - -WWW: http://www.kde.org/ - ---Will <andrews@technologist.com> diff --git a/x11-clocks/kdetoys2/pkg-plist b/x11-clocks/kdetoys2/pkg-plist deleted file mode 100644 index 0be24e9..0000000 --- a/x11-clocks/kdetoys2/pkg-plist +++ /dev/null @@ -1,566 +0,0 @@ -bin/amor -bin/kmoon -bin/kodo -bin/kscore_excite.pl -bin/kteatime -bin/ktux -bin/kworldclock -include/AmorIface.h -lib/libkeyesapplet.la -lib/libkeyesapplet.so -lib/libkeyesapplet.so.1 -lib/libkfifteenapplet.la -lib/libkfifteenapplet.so -lib/libkfifteenapplet.so.1 -lib/libkscoreapplet.la -lib/libkscoreapplet.so -lib/libkscoreapplet.so.1 -lib/libkwwapplet.la -lib/libkwwapplet.so -lib/libkwwapplet.so.1 -share/applnk/System/ScreenSavers/ktux.desktop -share/applnk/Toys/amor.desktop -share/applnk/Toys/kmoon.desktop -share/applnk/Toys/kodo.desktop -share/applnk/Toys/kteatime.desktop -share/applnk/Toys/kworldclock.desktop -share/apps/amor/b/b-f.xpm -share/apps/amor/b/b-f2.xpm -share/apps/amor/b/b1-r.xpm -share/apps/amor/b/b1.xpm -share/apps/amor/b/b2-r.xpm -share/apps/amor/b/b2.xpm -share/apps/amor/b/b3-r.xpm -share/apps/amor/b/b3.xpm -share/apps/amor/b/b4-r.xpm -share/apps/amor/b/b4.xpm -share/apps/amor/b/bcol1.xpm -share/apps/amor/b/bcol2.xpm -share/apps/amor/b/bdrib1.xpm -share/apps/amor/b/bdrib2.xpm -share/apps/amor/b/bdrib3.xpm -share/apps/amor/b/bdrib4.xpm -share/apps/amor/b/bdrib5.xpm -share/apps/amor/b/bdrib6.xpm -share/apps/amor/b/bdrib7.xpm -share/apps/amor/b/bdrop.xpm -share/apps/amor/b/bgo1.xpm -share/apps/amor/b/bgo2.xpm -share/apps/amor/b/bgo3.xpm -share/apps/amor/b/bgo4.xpm -share/apps/amor/b/bgo5.xpm -share/apps/amor/b/bgo6.xpm -share/apps/amor/b/bgo7.xpm -share/apps/amor/b/bh1.xpm -share/apps/amor/b/bpof1.xpm -share/apps/amor/b/bpof2.xpm -share/apps/amor/b/bpof3.xpm -share/apps/amor/b/bpof4.xpm -share/apps/amor/b/bpof5.xpm -share/apps/amor/b/bpof6.xpm -share/apps/amor/b/sa1.xpm -share/apps/amor/b/sa2.xpm -share/apps/amor/b/sa2a.xpm -share/apps/amor/b/sa2b.xpm -share/apps/amor/b/sa2c.xpm -share/apps/amor/b/salut.xpm -share/apps/amor/b/salut1.xpm -share/apps/amor/billyrc -share/apps/amor/blob/blob.xpm -share/apps/amor/blob/blob_BeamDown1.xpm -share/apps/amor/blob/blob_BeamDown2.xpm -share/apps/amor/blob/blob_BeamDown3.xpm -share/apps/amor/blob/blob_BeamDown4.xpm -share/apps/amor/blob/blob_BeamDown5.xpm -share/apps/amor/blob/blob_BeamDown6.xpm -share/apps/amor/blob/blob_BeamDown7.xpm -share/apps/amor/blob/blob_BeamDown8.xpm -share/apps/amor/blob/blob_BeamDown9.xpm -share/apps/amor/blob/blob_BeamUp1.xpm -share/apps/amor/blob/blob_BeamUp10.xpm -share/apps/amor/blob/blob_BeamUp2.xpm -share/apps/amor/blob/blob_BeamUp3.xpm -share/apps/amor/blob/blob_BeamUp4.xpm -share/apps/amor/blob/blob_BeamUp5.xpm -share/apps/amor/blob/blob_BeamUp6.xpm -share/apps/amor/blob/blob_BeamUp7.xpm -share/apps/amor/blob/blob_BeamUp8.xpm -share/apps/amor/blob/blob_BeamUp9.xpm -share/apps/amor/blob/blob_b1.xpm -share/apps/amor/blob/blob_b2.xpm -share/apps/amor/blob/blob_e1.xpm -share/apps/amor/blob/blob_ex1.xpm -share/apps/amor/blob/blob_f1.xpm -share/apps/amor/blob/blob_f2.xpm -share/apps/amor/blob/blob_f3.xpm -share/apps/amor/blob/blob_fire10.xpm -share/apps/amor/blob/blob_fire11.xpm -share/apps/amor/blob/blob_fire2.xpm -share/apps/amor/blob/blob_fire3.xpm -share/apps/amor/blob/blob_fire4.xpm -share/apps/amor/blob/blob_fire5.xpm -share/apps/amor/blob/blob_fire6.xpm -share/apps/amor/blob/blob_fire7.xpm -share/apps/amor/blob/blob_fire8.xpm -share/apps/amor/blob/blob_fire9.xpm -share/apps/amor/blob/blob_g1.xpm -share/apps/amor/blob/blob_g2.xpm -share/apps/amor/blob/blob_gl1.xpm -share/apps/amor/blob/blob_gl2.xpm -share/apps/amor/blob/blob_gl3.xpm -share/apps/amor/blob/blob_h1.xpm -share/apps/amor/blob/blob_h2.xpm -share/apps/amor/blob/blob_h3.xpm -share/apps/amor/blob/blob_jet1.xpm -share/apps/amor/blob/blob_jet2.xpm -share/apps/amor/blob/blob_jet3.xpm -share/apps/amor/blob/blob_jet4.xpm -share/apps/amor/blob/blob_l_jet1.xpm -share/apps/amor/blob/blob_l_jet2.xpm -share/apps/amor/blob/blob_l_jet3.xpm -share/apps/amor/blob/blob_l_jet4.xpm -share/apps/amor/blob/blob_l_turn1.xpm -share/apps/amor/blob/blob_l_turn2.xpm -share/apps/amor/blob/blob_l_turn3.xpm -share/apps/amor/blob/blob_l_turn4.xpm -share/apps/amor/blob/blob_r135.xpm -share/apps/amor/blob/blob_r180.xpm -share/apps/amor/blob/blob_r225.xpm -share/apps/amor/blob/blob_r270.xpm -share/apps/amor/blob/blob_r315.xpm -share/apps/amor/blob/blob_r45.xpm -share/apps/amor/blob/blob_r90.xpm -share/apps/amor/blob/blob_r_turn1.xpm -share/apps/amor/blob/blob_r_turn2.xpm -share/apps/amor/blob/blob_r_turn3.xpm -share/apps/amor/blob/blob_r_turn4.xpm -share/apps/amor/blob/blob_s1.xpm -share/apps/amor/blob/blob_s2.xpm -share/apps/amor/blob/blob_s3.xpm -share/apps/amor/blob/blob_sl1.xpm -share/apps/amor/blob/blob_sl2.xpm -share/apps/amor/blob/blob_sl3.xpm -share/apps/amor/blob/blob_sl4.xpm -share/apps/amor/blob/blob_z1.xpm -share/apps/amor/blob/blob_z2.xpm -share/apps/amor/blob/blob_z3.xpm -share/apps/amor/blobrc -share/apps/amor/brc -share/apps/amor/bsdrc -share/apps/amor/eyes/eye_1.xpm -share/apps/amor/eyes/eye_2.xpm -share/apps/amor/eyes/eye_b.xpm -share/apps/amor/eyes/eye_d.xpm -share/apps/amor/eyes/eye_e.xpm -share/apps/amor/eyes/eye_h1.xpm -share/apps/amor/eyes/eye_h2.xpm -share/apps/amor/eyes/eye_h3.xpm -share/apps/amor/eyes/eye_h4.xpm -share/apps/amor/eyes/eye_l.xpm -share/apps/amor/eyes/eye_m1.xpm -share/apps/amor/eyes/eye_m2.xpm -share/apps/amor/eyes/eye_m3.xpm -share/apps/amor/eyes/eye_m4.xpm -share/apps/amor/eyes/eye_m5.xpm -share/apps/amor/eyes/eye_m6.xpm -share/apps/amor/eyes/eye_m7.xpm -share/apps/amor/eyes/eye_s1.xpm -share/apps/amor/eyes/eye_s2.xpm -share/apps/amor/eyes/eye_s3.xpm -share/apps/amor/eyes/eye_s4.xpm -share/apps/amor/eyes/eye_u.xpm -share/apps/amor/eyes/eye_z1.xpm -share/apps/amor/eyes/eye_z2.xpm -share/apps/amor/eyes/eye_z3.xpm -share/apps/amor/eyes/eye_z4.xpm -share/apps/amor/eyes/eye_z5.xpm -share/apps/amor/eyesrc -share/apps/amor/ghost/ghost_1.xpm -share/apps/amor/ghost/ghost_2.xpm -share/apps/amor/ghost/ghost_e.xpm -share/apps/amor/ghost/ghost_m1.xpm -share/apps/amor/ghost/ghost_m2.xpm -share/apps/amor/ghost/ghost_m3.xpm -share/apps/amor/ghost/ghost_m4.xpm -share/apps/amor/ghost/ghost_m5.xpm -share/apps/amor/ghost/ghost_m6.xpm -share/apps/amor/ghost/ghost_m7.xpm -share/apps/amor/ghost/ghost_z1.xpm -share/apps/amor/ghost/ghost_z2.xpm -share/apps/amor/ghost/ghost_z3.xpm -share/apps/amor/ghost/ghost_z4.xpm -share/apps/amor/ghost/ghost_z5.xpm -share/apps/amor/ghostrc -share/apps/amor/neko/claw1.xpm -share/apps/amor/neko/claw2.xpm -share/apps/amor/neko/jump1.xpm -share/apps/amor/neko/jump2.xpm -share/apps/amor/neko/jump3.xpm -share/apps/amor/neko/jump4.xpm -share/apps/amor/neko/jumpl1.xpm -share/apps/amor/neko/jumpl2.xpm -share/apps/amor/neko/jumpl3.xpm -share/apps/amor/neko/jumpl4.xpm -share/apps/amor/neko/lick.xpm -share/apps/amor/neko/lick2.xpm -share/apps/amor/neko/run1.xpm -share/apps/amor/neko/run2.xpm -share/apps/amor/neko/run3.xpm -share/apps/amor/neko/run4.xpm -share/apps/amor/neko/scratch1.xpm -share/apps/amor/neko/scratch2.xpm -share/apps/amor/neko/scratch3.xpm -share/apps/amor/neko/scratch4.xpm -share/apps/amor/neko/sit.xpm -share/apps/amor/neko/sitleft.xpm -share/apps/amor/neko/sleep1.xpm -share/apps/amor/neko/sleep2.xpm -share/apps/amor/neko/surprise.xpm -share/apps/amor/neko/tail.xpm -share/apps/amor/neko/yawn.xpm -share/apps/amor/nekorc -share/apps/amor/pingu/bash_l1.xpm -share/apps/amor/pingu/bash_l10.xpm -share/apps/amor/pingu/bash_l11.xpm -share/apps/amor/pingu/bash_l12.xpm -share/apps/amor/pingu/bash_l2.xpm -share/apps/amor/pingu/bash_l3.xpm -share/apps/amor/pingu/bash_l4.xpm -share/apps/amor/pingu/bash_l5.xpm -share/apps/amor/pingu/bash_l6.xpm -share/apps/amor/pingu/bash_l7.xpm -share/apps/amor/pingu/bash_l8.xpm -share/apps/amor/pingu/bash_l9.xpm -share/apps/amor/pingu/bash_r1.xpm -share/apps/amor/pingu/bash_r10.xpm -share/apps/amor/pingu/bash_r11.xpm -share/apps/amor/pingu/bash_r12.xpm -share/apps/amor/pingu/bash_r2.xpm -share/apps/amor/pingu/bash_r3.xpm -share/apps/amor/pingu/bash_r4.xpm -share/apps/amor/pingu/bash_r5.xpm -share/apps/amor/pingu/bash_r6.xpm -share/apps/amor/pingu/bash_r7.xpm -share/apps/amor/pingu/bash_r8.xpm -share/apps/amor/pingu/bash_r9.xpm -share/apps/amor/pingu/blocker1.xpm -share/apps/amor/pingu/blocker2.xpm -share/apps/amor/pingu/blocker3.xpm -share/apps/amor/pingu/blocker4.xpm -share/apps/amor/pingu/blocker5.xpm -share/apps/amor/pingu/blocker6.xpm -share/apps/amor/pingu/bomber1.xpm -share/apps/amor/pingu/bomber10.xpm -share/apps/amor/pingu/bomber11.xpm -share/apps/amor/pingu/bomber12.xpm -share/apps/amor/pingu/bomber13.xpm -share/apps/amor/pingu/bomber14.xpm -share/apps/amor/pingu/bomber15.xpm -share/apps/amor/pingu/bomber16.xpm -share/apps/amor/pingu/bomber2.xpm -share/apps/amor/pingu/bomber3.xpm -share/apps/amor/pingu/bomber4.xpm -share/apps/amor/pingu/bomber5.xpm -share/apps/amor/pingu/bomber6.xpm -share/apps/amor/pingu/bomber7.xpm -share/apps/amor/pingu/bomber8.xpm -share/apps/amor/pingu/bomber9.xpm -share/apps/amor/pingu/digger1.xpm -share/apps/amor/pingu/digger10.xpm -share/apps/amor/pingu/digger11.xpm -share/apps/amor/pingu/digger12.xpm -share/apps/amor/pingu/digger13.xpm -share/apps/amor/pingu/digger14.xpm -share/apps/amor/pingu/digger2.xpm -share/apps/amor/pingu/digger3.xpm -share/apps/amor/pingu/digger4.xpm -share/apps/amor/pingu/digger5.xpm -share/apps/amor/pingu/digger6.xpm -share/apps/amor/pingu/digger7.xpm -share/apps/amor/pingu/digger8.xpm -share/apps/amor/pingu/digger9.xpm -share/apps/amor/pingu/faller1.xpm -share/apps/amor/pingu/faller2.xpm -share/apps/amor/pingu/faller3.xpm -share/apps/amor/pingu/faller4.xpm -share/apps/amor/pingu/faller5.xpm -share/apps/amor/pingu/faller6.xpm -share/apps/amor/pingu/faller7.xpm -share/apps/amor/pingu/faller8.xpm -share/apps/amor/pingu/floater1.xpm -share/apps/amor/pingu/floater2.xpm -share/apps/amor/pingu/floater3.xpm -share/apps/amor/pingu/floater4.xpm -share/apps/amor/pingu/floater5.xpm -share/apps/amor/pingu/floater6.xpm -share/apps/amor/pingu/floater7.xpm -share/apps/amor/pingu/floater8.xpm -share/apps/amor/pingu/pinguin.xpm -share/apps/amor/pingu/tumble1.xpm -share/apps/amor/pingu/tumble2.xpm -share/apps/amor/pingu/tumble3.xpm -share/apps/amor/pingu/tumble4.xpm -share/apps/amor/pingu/tumble5.xpm -share/apps/amor/pingu/tumble6.xpm -share/apps/amor/pingu/tumble7.xpm -share/apps/amor/pingu/tumble8.xpm -share/apps/amor/pingu/walk_l1.xpm -share/apps/amor/pingu/walk_l2.xpm -share/apps/amor/pingu/walk_l3.xpm -share/apps/amor/pingu/walk_l4.xpm -share/apps/amor/pingu/walk_l5.xpm -share/apps/amor/pingu/walk_l6.xpm -share/apps/amor/pingu/walk_l7.xpm -share/apps/amor/pingu/walk_l8.xpm -share/apps/amor/pingu/walk_r1.xpm -share/apps/amor/pingu/walk_r2.xpm -share/apps/amor/pingu/walk_r3.xpm -share/apps/amor/pingu/walk_r4.xpm -share/apps/amor/pingu/walk_r5.xpm -share/apps/amor/pingu/walk_r6.xpm -share/apps/amor/pingu/walk_r7.xpm -share/apps/amor/pingu/walk_r8.xpm -share/apps/amor/pingurc -share/apps/amor/static/billy.png -share/apps/amor/static/bsd.png -share/apps/amor/static/tux.png -share/apps/amor/tao/yy-1.xpm -share/apps/amor/tao/yy-2.xpm -share/apps/amor/tao/yy-3.xpm -share/apps/amor/tao/yy-4.xpm -share/apps/amor/tao/yy-5.xpm -share/apps/amor/tao/yy-6.xpm -share/apps/amor/tao/yy-7.xpm -share/apps/amor/tao/yy-8.xpm -share/apps/amor/tao/yy-9.xpm -share/apps/amor/tao/yy.xpm -share/apps/amor/tao/yy105.xpm -share/apps/amor/tao/yy120.xpm -share/apps/amor/tao/yy135.xpm -share/apps/amor/tao/yy15.xpm -share/apps/amor/tao/yy150.xpm -share/apps/amor/tao/yy165.xpm -share/apps/amor/tao/yy180.xpm -share/apps/amor/tao/yy195.xpm -share/apps/amor/tao/yy210.xpm -share/apps/amor/tao/yy225.xpm -share/apps/amor/tao/yy240.xpm -share/apps/amor/tao/yy255.xpm -share/apps/amor/tao/yy270.xpm -share/apps/amor/tao/yy285.xpm -share/apps/amor/tao/yy30.xpm -share/apps/amor/tao/yy300.xpm -share/apps/amor/tao/yy315.xpm -share/apps/amor/tao/yy330.xpm -share/apps/amor/tao/yy345.xpm -share/apps/amor/tao/yy45.xpm -share/apps/amor/tao/yy60.xpm -share/apps/amor/tao/yy75.xpm -share/apps/amor/tao/yy90.xpm -share/apps/amor/tao/yyx10.xpm -share/apps/amor/tao/yyx12.xpm -share/apps/amor/tao/yyx14.xpm -share/apps/amor/tao/yyx16.xpm -share/apps/amor/tao/yyx18.xpm -share/apps/amor/tao/yyx20.xpm -share/apps/amor/tao/yyx22.xpm -share/apps/amor/tao/yyx24.xpm -share/apps/amor/tao/yyx26.xpm -share/apps/amor/tao/yyx28.xpm -share/apps/amor/tao/yyx30.xpm -share/apps/amor/tao/yyx6.xpm -share/apps/amor/tao/yyx8.xpm -share/apps/amor/taorc -share/apps/amor/tips -share/apps/amor/tips-en -share/apps/amor/tuxrc -share/apps/amor/worm/w-a1.xpm -share/apps/amor/worm/w-a2.xpm -share/apps/amor/worm/w-b1.xpm -share/apps/amor/worm/w-b2.xpm -share/apps/amor/worm/w-be1.xpm -share/apps/amor/worm/w-be2.xpm -share/apps/amor/worm/w-be3.xpm -share/apps/amor/worm/w-be4.xpm -share/apps/amor/worm/w-d1.xpm -share/apps/amor/worm/w-d2.xpm -share/apps/amor/worm/w-d3.xpm -share/apps/amor/worm/w-d4.xpm -share/apps/amor/worm/w-d5.xpm -share/apps/amor/worm/w-dr1.xpm -share/apps/amor/worm/w-e1.xpm -share/apps/amor/worm/w-l1.xpm -share/apps/amor/worm/w-l2.xpm -share/apps/amor/worm/w-l3.xpm -share/apps/amor/worm/w-ml0.xpm -share/apps/amor/worm/w-ml1.xpm -share/apps/amor/worm/w-ml2.xpm -share/apps/amor/worm/w-ml3.xpm -share/apps/amor/worm/w-mr0.xpm -share/apps/amor/worm/w-mr1.xpm -share/apps/amor/worm/w-mr2.xpm -share/apps/amor/worm/w-mr3.xpm -share/apps/amor/worm/w-s1.xpm -share/apps/amor/worm/w-s2.xpm -share/apps/amor/worm/w-s3.xpm -share/apps/amor/worm/w-u1.xpm -share/apps/amor/worm/w-u2.xpm -share/apps/amor/worm/w-u3.xpm -share/apps/amor/worm/w-wl1.xpm -share/apps/amor/worm/w-wl2.xpm -share/apps/amor/worm/w-wr1.xpm -share/apps/amor/worm/w-wr2.xpm -share/apps/amor/wormrc -share/apps/kdesktop/programs/kdeworld.desktop -share/apps/kicker/applets/eyesapplet.desktop -share/apps/kicker/applets/kfifteenapplet.desktop -share/apps/kicker/applets/kscoreapplet.desktop -share/apps/kicker/applets/kwwapplet.desktop -share/apps/kmoon/pics/moon1.png -share/apps/kmoon/pics/moon10.png -share/apps/kmoon/pics/moon11.png -share/apps/kmoon/pics/moon12.png -share/apps/kmoon/pics/moon13.png -share/apps/kmoon/pics/moon14.png -share/apps/kmoon/pics/moon15.png -share/apps/kmoon/pics/moon16.png -share/apps/kmoon/pics/moon17.png -share/apps/kmoon/pics/moon18.png -share/apps/kmoon/pics/moon19.png -share/apps/kmoon/pics/moon2.png -share/apps/kmoon/pics/moon20.png -share/apps/kmoon/pics/moon21.png -share/apps/kmoon/pics/moon22.png -share/apps/kmoon/pics/moon23.png -share/apps/kmoon/pics/moon24.png -share/apps/kmoon/pics/moon25.png -share/apps/kmoon/pics/moon26.png -share/apps/kmoon/pics/moon27.png -share/apps/kmoon/pics/moon28.png -share/apps/kmoon/pics/moon29.png -share/apps/kmoon/pics/moon3.png -share/apps/kmoon/pics/moon4.png -share/apps/kmoon/pics/moon5.png -share/apps/kmoon/pics/moon6.png -share/apps/kmoon/pics/moon7.png -share/apps/kmoon/pics/moon8.png -share/apps/kmoon/pics/moon9.png -share/apps/kodo/numbers.png -share/apps/ktux/sprites/anim0001.png -share/apps/ktux/sprites/anim0002.png -share/apps/ktux/sprites/anim0003.png -share/apps/ktux/sprites/anim0004.png -share/apps/ktux/sprites/anim0005.png -share/apps/ktux/sprites/anim0006.png -share/apps/ktux/sprites/anim0007.png -share/apps/ktux/sprites/anim0008.png -share/apps/ktux/sprites/anim0009.png -share/apps/ktux/sprites/anim0010.png -share/apps/ktux/sprites/bg.png -share/apps/ktux/sprites/flare0001.png -share/apps/ktux/sprites/flare0002.png -share/apps/ktux/sprites/spriterc -share/apps/ktux/sprites/star0001.png -share/apps/ktux/sprites/star0002.png -share/apps/kworldclock/maps/depths/400.jpg -share/apps/kworldclock/maps/depths/800.jpg -share/apps/kworldclock/maps/depths/depths.desktop -share/apps/kworldclock/pics/flag-blue.png -share/apps/kworldclock/pics/flag-green.png -share/apps/kworldclock/pics/flag-mask.xpm -share/apps/kworldclock/pics/flag-red.png -share/apps/kworldclock/pics/flag.png -share/apps/kworldclock/zone.tab -share/doc/HTML/en/amor/billy.png -share/doc/HTML/en/amor/bonhomme.png -share/doc/HTML/en/amor/bsd.png -share/doc/HTML/en/amor/common -share/doc/HTML/en/amor/eyes.png -share/doc/HTML/en/amor/ghost.png -share/doc/HTML/en/amor/index.cache.bz2 -share/doc/HTML/en/amor/index.docbook -share/doc/HTML/en/amor/neko.png -share/doc/HTML/en/amor/pingus.png -share/doc/HTML/en/amor/spot.png -share/doc/HTML/en/amor/tao.png -share/doc/HTML/en/amor/tux.png -share/doc/HTML/en/amor/worm.png -share/doc/HTML/en/kmoon/carlosmail -share/doc/HTML/en/kmoon/common -share/doc/HTML/en/kmoon/index.cache.bz2 -share/doc/HTML/en/kmoon/index.docbook -share/doc/HTML/en/kodo/common -share/doc/HTML/en/kodo/guide.png -share/doc/HTML/en/kodo/index.cache.bz2 -share/doc/HTML/en/kodo/index.docbook -share/doc/HTML/en/kscore/close.png -share/doc/HTML/en/kscore/common -share/doc/HTML/en/kscore/dl_fail.png -share/doc/HTML/en/kscore/index.cache.bz2 -share/doc/HTML/en/kscore/index.docbook -share/doc/HTML/en/kscore/ncaaf.png -share/doc/HTML/en/kscore/nhl.png -share/doc/HTML/en/kscore/no_score.png -share/doc/HTML/en/kscore/premr.png -share/doc/HTML/en/kscore/settings.png -share/doc/HTML/en/kteatime/common -share/doc/HTML/en/kteatime/config.png -share/doc/HTML/en/kteatime/index.cache.bz2 -share/doc/HTML/en/kteatime/index.docbook -share/doc/HTML/en/kworldclock/common -share/doc/HTML/en/kworldclock/index.cache.bz2 -share/doc/HTML/en/kworldclock/index.docbook -share/icons/hicolor/16x16/apps/amor.png -share/icons/hicolor/16x16/apps/kmoon.png -share/icons/hicolor/16x16/apps/kodo.png -share/icons/hicolor/16x16/apps/kworldclock.png -share/icons/hicolor/32x32/apps/amor.png -share/icons/hicolor/32x32/apps/kmoon.png -share/icons/hicolor/32x32/apps/kodo.png -share/icons/hicolor/32x32/apps/kworldclock.png -share/icons/hicolor/48x48/apps/kmoon.png -share/icons/hicolor/48x48/apps/kodo.png -share/icons/hicolor/48x48/apps/kworldclock.png -share/icons/locolor/16x16/apps/kteatime.png -share/icons/locolor/16x16/apps/ktux.png -share/icons/locolor/32x32/apps/ktux.png -@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/icons/hicolor/48x48/apps -@dirrm share/icons/hicolor/32x32/apps -@dirrm share/doc/HTML/en/kworldclock -@dirrm share/doc/HTML/en/kteatime -@dirrm share/doc/HTML/en/kscore -@dirrm share/doc/HTML/en/kodo -@dirrm share/doc/HTML/en/kmoon -@dirrm share/doc/HTML/en/amor -@dirrm share/apps/kworldclock/pics -@dirrm share/apps/kworldclock/maps/depths -@dirrm share/apps/kworldclock/maps -@dirrm share/apps/kworldclock -@dirrm share/apps/ktux/sprites -@dirrm share/apps/ktux -@dirrm share/apps/kodo -@dirrm share/apps/kmoon/pics -@dirrm share/apps/kmoon -@dirrm share/apps/kicker/applets -@dirrm share/apps/kicker -@dirrm share/apps/kdesktop/programs -@dirrm share/apps/kdesktop -@dirrm share/apps/amor/worm -@dirrm share/apps/amor/tao -@dirrm share/apps/amor/static -@dirrm share/apps/amor/pingu -@dirrm share/apps/amor/neko -@dirrm share/apps/amor/ghost -@dirrm share/apps/amor/eyes -@dirrm share/apps/amor/blob -@dirrm share/apps/amor/b -@dirrm share/apps/amor -@dirrm share/applnk/Toys -@dirrm share/applnk/System/ScreenSavers -@dirrm share/applnk/System -@dirrm share/applnk diff --git a/x11-wm/kdeartwork/Makefile b/x11-wm/kdeartwork/Makefile deleted file mode 100644 index 94aefb5..0000000 --- a/x11-wm/kdeartwork/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -# New ports collection makefile for: KDE artwork -# Date created: 20 August 2001 -# Whom: Dmitry Sivachenko <demon@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= kdeartwork -PORTVERSION= 2.2.2 -CATEGORIES= x11-wm kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= Attic/${PORTVERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 - -USE_KDELIBS_VER=2 -USE_BZIP2= yes -GNU_CONFIGURE= yes -USE_GMAKE= yes -INSTALLS_SHLIB= yes - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 500029 -_NO_KDE_OBJPRELINK=yes -.endif - -.include "${.CURDIR}/../../x11/kde2/Makefile.kde" - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - cd ${WRKSRC} && env PATH=${WRKSRC}/auto-bin:$$PATH \ - ${GMAKE} -f Makefile.cvs - -.include <bsd.port.post.mk> diff --git a/x11-wm/kdeartwork/distinfo b/x11-wm/kdeartwork/distinfo deleted file mode 100644 index 67c7c33..0000000 --- a/x11-wm/kdeartwork/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/kdeartwork-2.2.2.tar.bz2) = afaa475ba7d353453a5fa83d59b9f5e9 diff --git a/x11-wm/kdeartwork/pkg-comment b/x11-wm/kdeartwork/pkg-comment deleted file mode 100644 index 3fec02a..0000000 --- a/x11-wm/kdeartwork/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Additional themes, sounds, wallpapers and window styles for KDE diff --git a/x11-wm/kdeartwork/pkg-descr b/x11-wm/kdeartwork/pkg-descr deleted file mode 100644 index 103922b..0000000 --- a/x11-wm/kdeartwork/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -This package contains additional themes, sounds, wallpapers and -window styles for KDE. diff --git a/x11-wm/kdeartwork/pkg-plist b/x11-wm/kdeartwork/pkg-plist deleted file mode 100644 index 8914a9c..0000000 --- a/x11-wm/kdeartwork/pkg-plist +++ /dev/null @@ -1,88 +0,0 @@ -lib/b3style.la -lib/b3style.so -lib/ksgistyle.la -lib/ksgistyle.so -lib/kstephighcolor.la -lib/kstephighcolor.so -share/apps/kstyle/themes/b3.themerc -share/apps/kstyle/themes/ksgistyle.themerc -share/apps/kstyle/themes/kstep-highcolor.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/sounds/KDE_Logout_new.wav -share/sounds/KDE_Startup_new.wav -@dirrm share/sounds -@dirrm share/apps/kwin/icewm-themes/Model -@dirrm share/apps/kwin/icewm-themes/MenschMaschine -@dirrm share/apps/kwin/icewm-themes -@dirrm share/apps/kwin diff --git a/x11/kde2/Makefile b/x11/kde2/Makefile deleted file mode 100644 index c3a9cc5..0000000 --- a/x11/kde2/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# New ports collection makefile for: KDE2 -# Date created: Sun May 14 2000 00:50:02 -# Whom: Will Andrews <will@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= kde -PORTVERSION= 2.2.2 -CATEGORIES= x11 kde -MASTER_SITES= # empty -DISTFILES= # none -EXTRACT_ONLY= # empty - -MAINTAINER= kde@FreeBSD.org - -RUN_DEPENDS= kjumpingcube:${PORTSDIR}/games/kdegames2 \ - kdessh:${PORTSDIR}/misc/kdeutils2 \ - kword:${PORTSDIR}/editors/koffice \ - kppp:${PORTSDIR}/net/kdenetwork2 \ - kview:${PORTSDIR}/graphics/kdegraphics2 \ - kmidi:${PORTSDIR}/audio/kdemultimedia2 - -USE_KDEBASE_VER=2 -NO_BUILD= yes -LATEST_LINK= kde2 - -do-install: # empty - -.include <bsd.port.mk> diff --git a/x11/kde2/Makefile.kde b/x11/kde2/Makefile.kde deleted file mode 100644 index 28a580a..0000000 --- a/x11/kde2/Makefile.kde +++ /dev/null @@ -1,37 +0,0 @@ -# This is a simple set of Makefile macros which allow the core kde ports to -# bring these in automatically since it's tiring to modify all of them to -# add more of these. These don't belong in bsd.kde.mk because they aren't -# very likely to apply outside of KDE core modules. Nonetheless, also -# provide variables to remove one or more of these. -# -# $FreeBSD$ - -CONFIGURE_ARGS?= - -.if !defined(_NO_KDE_OBJPRELINK) -.if ${MACHINE_ARCH} == "i386" && !defined(NO_KDE_OBJPRELINK) -BUILD_DEPENDS+= objprelink:${PORTSDIR}/devel/objprelink -CONFIGURE_ARGS+=--enable-objprelink -.endif -.endif - -.if !defined(_NO_KDE_FINAL) -.if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL) -CONFIGURE_ARGS+=--enable-final -.endif -.endif - -.if !defined(_NO_KDE_NDEBUG) -.if defined(PARALLEL_PACKAGE_BUILD) || !defined(WANT_KDE_DEBUG) -CONFIGURE_ARGS+=--disable-debug -.else -CONFIGURE_ARGS+=--enable-debug -STRIP='' -.endif -.endif - -.if !defined(_NO_KDE_NON_I386_OPTS) -.if ${MACHINE_ARCH} == "alpha" -CFLAGS= -O0 ${KDE_CFLAGS} -.endif -.endif diff --git a/x11/kde2/pkg-comment b/x11/kde2/pkg-comment deleted file mode 100644 index 4d7b170..0000000 --- a/x11/kde2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -The "meta-port" for KDE 2 diff --git a/x11/kde2/pkg-descr b/x11/kde2/pkg-descr deleted file mode 100644 index 3fc0b78..0000000 --- a/x11/kde2/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -KDE provides an integrated X11 based environment, much like CDE. - -This package does not contain anything by itself -- it is a -"meta-port" that depends on other KDE packages. Its sole purpose is -to require dependencies so users can install this package only and -have all the KDE stuff pulled in by the port/package dependency -mechanism. This meta-port installs KDE version 2. - -WWW: http://www.kde.org/ diff --git a/x11/kde2/pkg-plist b/x11/kde2/pkg-plist deleted file mode 100644 index 549a621..0000000 --- a/x11/kde2/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -@comment this plist intentionally left empty diff --git a/x11/kdebase2/Makefile b/x11/kdebase2/Makefile deleted file mode 100644 index c86c510..0000000 --- a/x11/kdebase2/Makefile +++ /dev/null @@ -1,98 +0,0 @@ -# New ports collection makefile for: kdebase2 -# Date created: Fri Apr 14 2000 15:05:00 EDT -# Whom: will -# -# $FreeBSD$ -# - -PORTNAME= kdebase -PORTVERSION= 2.2.2 -PORTREVISION= 5 -CATEGORIES?= x11 kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= Attic/${PORTVERSION}/src -DIST_SUBDIR= KDE - -MAINTAINER?= kde@FreeBSD.org - -BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 -LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=2 -SOMAJOR= 4 -SOMINOR= 0 -USE_XPM= yes -USE_BZIP2= yes -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV+= RUN_KAPPFINDER=no -CONFIGURE_ARGS+=--with-xdmdir=${X11BASE}/lib/X11/xdm \ - --with-qt-dir=${X11BASE} \ - --without-ldap --disable-closure -USE_GMAKE= yes - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 500029 -_NO_KDE_OBJPRELINK=yes -.endif - -.include "${.CURDIR}/../../x11/kde2/Makefile.kde" - -.if exists(${X11BASE}/include/Xm/Xm.h) -WITH_MOTIF= yes -.endif - -.if defined(WITH_MOTIF) && ${WITH_MOTIF} == yes -USE_MOTIF= yes -PLIST_SUB+= MOTIF="" -.else -PLIST_SUB+= MOTIF="@comment " -pre-everything:: - @${ECHO_MSG} - @${ECHO_MSG} "If you want to compile with Motif support," - @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_MOTIF=yes\"" - @${ECHO_MSG} - @${ECHO_MSG} "Motif is used for Netscape plugin compatibility." - @${ECHO_MSG} -.endif - -post-extract: - @${ECHO_CMD} "#!/bin/sh" > ${WRKSRC}/mkpamserv - @${ECHO_CMD} "exit 0" >> ${WRKSRC}/mkpamserv - -post-patch: -.if !defined(WITH_MOTIF) - @${PERL} -pi -e 's/nsplugin//' \ - ${WRKSRC}/konqueror/konqueror_config.desktop -.endif - -pre-configure: - ${MKDIR} ${WRKSRC}/auto-bin -.for AC in autoconf autoheader - ${LN} -sf ${LOCALBASE}/bin/${AC}213 ${WRKSRC}/auto-bin/${AC} -.endfor -.for AM in automake aclocal - ${LN} -sf ${LOCALBASE}/bin/${AM}14 ${WRKSRC}/auto-bin/${AM} -.endfor - cd ${WRKSRC} ; env PATH=${WRKSRC}/auto-bin:$$PATH \ - ${GMAKE} -f Makefile.cvs - ${PERL} -pi -e "s@version-info 3:0@version-info ${SOMAJOR}:${SOMINOR}@g" ${WRKSRC}/libkonq/Makefile.in - ${PERL} -pi -e "s@version-info 1:0:0@version-info ${SOMAJOR}:${SOMINOR}@g" ${WRKSRC}/khelpcenter/Makefile.in - ${PERL} -pi -e "s@version-info 1:1:0@version-info ${SOMAJOR}:${SOMINOR}@g" ${WRKSRC}/nsplugins/Makefile.in - ${PERL} -pi -e "s@TIME_WITH_SYS_TIME@INVALID_FOO@g" ${WRKSRC}/kioslave/ldap/kldap.h - -post-configure: - ${PERL} -pi -e "s@444@644@g" ${WRKSRC}/kdesktop/init/Templates/Makefile - -post-install: - ${CHMOD} u+s ${PREFIX}/bin/kcheckpass -.for file in kdmrc -.if !exists(${PREFIX}/share/config/kdm/${file}) - @${CP} ${PREFIX}/share/config/kdm/${file}.dist \ - ${PREFIX}/share/config/kdm/${file} -.endif -.endfor - -.include <bsd.port.post.mk> diff --git a/x11/kdebase2/distinfo b/x11/kdebase2/distinfo deleted file mode 100644 index 251c4af..0000000 --- a/x11/kdebase2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (KDE/kdebase-2.2.2.tar.bz2) = 39635e42056ab2afb8e6f2ff761eea38 diff --git a/x11/kdebase2/files/patch-apm.c b/x11/kdebase2/files/patch-apm.c deleted file mode 100644 index 08925da..0000000 --- a/x11/kdebase2/files/patch-apm.c +++ /dev/null @@ -1,101 +0,0 @@ ---- /dev/null Mon Nov 19 17:14:17 2001 -+++ ksysguard/ksysguardd/FreeBSD/apm.c Mon Nov 19 17:06:33 2001 -@@ -0,0 +1,98 @@ -+/* -+ KSysGuard, the KDE System Guard -+ -+ Copyright (c) 2001 Tobias Koenig <tokoe82@yahoo.de> -+ -+ This program is free software; you can redistribute it and/or -+ modify it under the terms of version 2 of the GNU General Public -+ License as published by the Free Software Foundation. -+ -+ This program is distributed in the hope that it will be useful, -+ but WITHOUT ANY WARRANTY; without even the implied warranty of -+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+ GNU General Public License for more details. -+ -+ You should have received a copy of the GNU General Public License -+ along with this program; if not, write to the Free Software -+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ -+ $Id: apm.c,v 1.2 2001/09/18 14:03:53 tokoe Exp $ -+*/ -+ -+#include <fcntl.h> -+#include <machine/apm_bios.h> -+#include <stdio.h> -+ -+#include "Command.h" -+#include "apm.h" -+#include "ksysguardd.h" -+ -+static int ApmFD, BattFill, BattTime; -+ -+#define APMDEV "/dev/apm" -+ -+/* -+================================ public part ================================= -+*/ -+ -+void -+initApm(void) -+{ -+ if ((ApmFD = open(APMDEV, O_RDONLY)) < 0) -+ return; -+ -+ if (updateApm() < 0) -+ return; -+ -+ registerMonitor("apm/batterycharge", "integer", printApmBatFill, -+ printApmBatFillInfo); -+ registerMonitor("apm/remainingtime", "integer", printApmBatTime, -+ printApmBatTimeInfo); -+} -+ -+void -+exitApm(void) -+{ -+ removeMonitor("apm/batterycharge"); -+ removeMonitor("apm/remainingtime"); -+ -+ close(ApmFD); -+} -+ -+int -+updateApm(void) -+{ -+ struct apm_info info; -+ int retval; -+ -+ retval = ioctl(ApmFD, APMIO_GETINFO, &info); -+ -+ BattFill = info.ai_batt_life; -+ BattTime = info.ai_batt_time; -+ -+ return retval; -+} -+ -+void -+printApmBatFill(const char* c) -+{ -+ fprintf(CurrentClient, "%d\n", BattFill); -+} -+ -+void -+printApmBatFillInfo(const char* c) -+{ -+ fprintf(CurrentClient, "Battery charge\t0\t100\t%%\n"); -+} -+ -+void -+printApmBatTime(const char* c) -+{ -+ fprintf(CurrentClient, "%d\n", BattTime); -+} -+ -+void -+printApmBatTimeInfo(const char* c) -+{ -+ fprintf(CurrentClient, "Remaining battery time\t0\t0\tmin\n"); -+} diff --git a/x11/kdebase2/files/patch-apm.h b/x11/kdebase2/files/patch-apm.h deleted file mode 100644 index 73e509b..0000000 --- a/x11/kdebase2/files/patch-apm.h +++ /dev/null @@ -1,37 +0,0 @@ ---- /dev/null Mon Nov 19 17:14:17 2001 -+++ ksysguard/ksysguardd/FreeBSD/apm.h Mon Nov 19 17:06:33 2001 -@@ -0,0 +1,34 @@ -+/* -+ KSysGuard, the KDE System Guard -+ -+ Copyright (c) 2001 Tobias Koenig <tokoe82@yahoo.de> -+ -+ This program is free software; you can redistribute it and/or -+ modify it under the terms of version 2 of the GNU General Public -+ License as published by the Free Software Foundation. -+ -+ This program is distributed in the hope that it will be useful, -+ but WITHOUT ANY WARRANTY; without even the implied warranty of -+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+ GNU General Public License for more details. -+ -+ You should have received a copy of the GNU General Public License -+ along with this program; if not, write to the Free Software -+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ -+ $Id: apm.h,v 1.2 2001/09/18 14:03:53 tokoe Exp $ -+*/ -+ -+#ifndef _apm_h_ -+#define _apm_h_ -+ -+void initApm(void); -+void exitApm(void); -+int updateApm(void); -+ -+void printApmBatFill(const char*); -+void printApmBatFillInfo(const char*); -+void printApmBatTime(const char*); -+void printApmBatTimeInfo(const char*); -+ -+#endif diff --git a/x11/kdebase2/files/patch-conf.c b/x11/kdebase2/files/patch-conf.c deleted file mode 100644 index a4de973..0000000 --- a/x11/kdebase2/files/patch-conf.c +++ /dev/null @@ -1,136 +0,0 @@ ---- /dev/null Mon Nov 19 17:14:17 2001 -+++ ksysguard/ksysguardd/FreeBSD/conf.c Mon Nov 19 17:06:50 2001 -@@ -0,0 +1,133 @@ -+/* -+ KSysGuard, the KDE System Guard -+ -+ Copyright (c) 2001 Tobias Koenig <tokoe82@yahoo.de> -+ -+ This program is free software; you can redistribute it and/or -+ modify it under the terms of version 2 of the GNU General Public -+ License as published by the Free Software Foundation. -+ -+ This program is distributed in the hope that it will be useful, -+ but WITHOUT ANY WARRANTY; without even the implied warranty of -+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+ GNU General Public License for more details. -+ -+ You should have received a copy of the GNU General Public License -+ along with this program; if not, write to the Free Software -+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ -+ $Id: conf.c,v 1.3 2001/11/05 23:24:19 tokoe Exp $ -+*/ -+ -+#include <stdio.h> -+#include <stdlib.h> -+#include <string.h> -+ -+#include "Command.h" -+#include "ccont.h" -+#include "conf.h" -+ -+CONTAINER LogFileList = 0; -+CONTAINER SensorList = 0; -+ -+void parseConfigFile(const char *filename) -+{ -+ FILE* config; -+ char line[2048]; -+ char *begin, *token, *tmp, *confSensor; -+ ConfigLogFile *confLog; -+ -+ -+ if (LogFileList) -+ destr_ctnr(LogFileList, free); -+ -+ if (SensorList) -+ destr_ctnr(SensorList, free); -+ -+ LogFileList = new_ctnr(CT_DLL); -+ SensorList = new_ctnr(CT_DLL); -+ -+ if ((config = fopen(filename, "r")) == NULL) { -+ log_error("can't open config file '%s'", filename); -+ -+ /* if we can't open a config file we have to add the -+ available sensors manually -+ */ -+ -+ confSensor = strdup("ProcessList"); -+ push_ctnr(SensorList, confSensor); -+ confSensor = strdup("Memory"); -+ push_ctnr(SensorList, confSensor); -+ confSensor = strdup("Stat"); -+ push_ctnr(SensorList, confSensor); -+ confSensor = strdup("NetDev"); -+ push_ctnr(SensorList, confSensor); -+ confSensor = strdup("NetStat"); -+ push_ctnr(SensorList, confSensor); -+ confSensor = strdup("CpuInfo"); -+ push_ctnr(SensorList, confSensor); -+ confSensor = strdup("LoadAvg"); -+ push_ctnr(SensorList, confSensor); -+ confSensor = strdup("DiskStat"); -+ push_ctnr(SensorList, confSensor); -+ confSensor = strdup("LogFile"); -+ push_ctnr(SensorList, confSensor); -+ -+ return; -+ } -+ -+ while (fgets(line, sizeof(line), config) != NULL) { -+ if ((line[0] == '#') || (strlen(line) == 0)) { -+ continue; -+ } -+ -+ if (strchr(line, '#')) -+ *(strchr(line, '#')) = '\0'; -+ -+ if (line[strlen(line) - 1] == '\n') -+ line[strlen(line) - 1] = '\0'; -+ -+ if (!strncmp(line, "LogFiles", 8)) { -+ begin = strchr(line, '='); -+ begin++; -+ -+ for (token = strtok(begin, ","); token; token = strtok(NULL, ",")) { -+ if ((confLog = (ConfigLogFile *)malloc(sizeof(ConfigLogFile))) == NULL) { -+ log_error("malloc() no free memory avail"); -+ continue; -+ } -+ confLog->name = strdup(token); -+ tmp = strchr(confLog->name, ':'); -+ *tmp = '\0'; -+ confLog->path = tmp; -+ confLog->path++; -+ -+ push_ctnr(LogFileList, confLog); -+ } -+ } -+ if (!strncmp(line, "Sensors", 7)) { -+ begin = strchr(line, '='); -+ begin++; -+ -+ for (token = strtok(begin, ","); token; token = strtok(NULL, ",")) { -+ confSensor = strdup(token); -+ push_ctnr(SensorList, confSensor); -+ } -+ } -+ } -+ -+ fclose(config); -+} -+ -+int sensorAvailable(const char *sensor) -+{ -+ int i; -+ -+ for (i = 0; i < level_ctnr(SensorList); i++) { -+ char* name = get_ctnr(SensorList, i); -+ if (!strcmp(name, sensor)) -+ return 1; -+ } -+ -+ return 0; -+} diff --git a/x11/kdebase2/files/patch-conf.h b/x11/kdebase2/files/patch-conf.h deleted file mode 100644 index 8aba2e5..0000000 --- a/x11/kdebase2/files/patch-conf.h +++ /dev/null @@ -1,37 +0,0 @@ ---- /dev/null Mon Nov 19 17:14:17 2001 -+++ ksysguard/ksysguardd/FreeBSD/conf.h Mon Nov 19 17:06:50 2001 -@@ -0,0 +1,34 @@ -+/* -+ KSysGuard, the KDE System Guard -+ -+ Copyright (c) 2001 Tobias Koenig <tokoe82@yahoo.de> -+ -+ This program is free software; you can redistribute it and/or -+ modify it under the terms of version 2 of the GNU General Public -+ License as published by the Free Software Foundation. -+ -+ This program is distributed in the hope that it will be useful, -+ but WITHOUT ANY WARRANTY; without even the implied warranty of -+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+ GNU General Public License for more details. -+ -+ You should have received a copy of the GNU General Public License -+ along with this program; if not, write to the Free Software -+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ -+ $Id: conf.h,v 1.2 2001/09/18 14:03:53 tokoe Exp $ -+*/ -+ -+#ifndef _conf_h_ -+#define _conf_h_ -+ -+typedef struct { -+ char *name; -+ char *path; -+} ConfigLogFile; -+ -+void parseConfigFile(const char *filename); -+ -+int sensorAvailable(const char* sensor); -+ -+#endif diff --git a/x11/kdebase2/files/patch-diskstat.c b/x11/kdebase2/files/patch-diskstat.c deleted file mode 100644 index 5535e58..0000000 --- a/x11/kdebase2/files/patch-diskstat.c +++ /dev/null @@ -1,260 +0,0 @@ ---- /dev/null Mon Nov 19 17:14:17 2001 -+++ ksysguard/ksysguardd/FreeBSD/diskstat.c Mon Nov 19 17:07:01 2001 -@@ -0,0 +1,257 @@ -+/* -+ KSysGuard, the KDE System Guard -+ -+ Copyright (c) 2001 Tobias Koenig <tokoe82@yahoo.de> -+ -+ This program is free software; you can redistribute it and/or -+ modify it under the terms of version 2 of the GNU General Public -+ License as published by the Free Software Foundation. -+ -+ This program is distributed in the hope that it will be useful, -+ but WITHOUT ANY WARRANTY; without even the implied warranty of -+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+ GNU General Public License for more details. -+ -+ You should have received a copy of the GNU General Public License -+ along with this program; if not, write to the Free Software -+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ -+ $Id: diskstat.c,v 1.2 2001/09/18 14:03:53 tokoe Exp $ -+*/ -+ -+#include <stdio.h> -+#include <stdlib.h> -+#include <string.h> -+#include <sys/param.h> -+#include <sys/stat.h> -+#include <sys/ucred.h> -+#include <sys/mount.h> -+#include <time.h> -+#include <unistd.h> -+ -+#include "Command.h" -+#include "ccont.h" -+#include "diskstat.h" -+#include "ksysguardd.h" -+ -+typedef struct { -+ char device[256]; -+ char mntpnt[256]; -+ long blocks; -+ long bfree; -+ long bused; -+ int bused_percent; -+} DiskInfo; -+ -+static CONTAINER DiskStatList = 0; -+ -+char *getMntPnt(const char *cmd) -+{ -+ static char device[1024]; -+ char *ptr; -+ -+ memset(device, 0, sizeof(device)); -+ sscanf(cmd, "partitions%1024s", device); -+ -+ ptr = (char *)rindex(device, '/'); -+ *ptr = '\0'; -+ -+ return (char *)device; -+} -+ -+int numMntPnt(void) -+{ -+ struct statfs *fs_info; -+ int i, n, counter = 0; -+ -+ n = getmntinfo(&fs_info, MNT_WAIT); -+ for (i = 0; i < n; i++) -+ if (strcmp(fs_info[i].f_fstypename, "procfs") && strcmp(fs_info[i].f_fstypename, "swap") && strcmp(fs_info[i].f_fstypename, "devfs")) -+ counter++; -+ -+ return counter; -+} -+ -+/* ------------------------------ public part --------------------------- */ -+ -+void initDiskStat(void) -+{ -+ char monitor[1024]; -+ int i; -+ -+ DiskStatList = new_ctnr(CT_DLL); -+ -+ updateDiskStat(); -+ -+ registerMonitor("partitions/list", "listview", printDiskStat, printDiskStatInfo); -+ -+ for (i = 0; i < level_ctnr(DiskStatList); i++) { -+ DiskInfo* disk_info = get_ctnr(DiskStatList, i); -+ snprintf(monitor, sizeof(monitor), "partitions%s/usedspace", disk_info->mntpnt); -+ registerMonitor(monitor, "integer", printDiskStatUsed, printDiskStatUsedInfo); -+ snprintf(monitor, sizeof(monitor), "partitions%s/freespace", disk_info->mntpnt); -+ registerMonitor(monitor, "integer", printDiskStatFree, printDiskStatFreeInfo); -+ snprintf(monitor, sizeof(monitor), "partitions%s/filllevel", disk_info->mntpnt); -+ registerMonitor(monitor, "integer", printDiskStatPercent, printDiskStatPercentInfo); -+ } -+} -+ -+void checkDiskStat(void) -+{ -+ if (numMntPnt() != level_ctnr(DiskStatList)) { -+ /* a filesystem was mounted or unmounted -+ so we do a reset */ -+ exitDiskStat(); -+ initDiskStat(); -+ } -+} -+ -+void exitDiskStat(void) -+{ -+ DiskInfo *disk_info; -+ char monitor[1024]; -+ int i; -+ -+ removeMonitor("partitions/list"); -+ -+ for (i = 0; i < level_ctnr(DiskStatList); i++) { -+ disk_info = remove_ctnr(DiskStatList, i--); -+ -+ snprintf(monitor, sizeof(monitor), "partitions%s/usedspace", disk_info->mntpnt); -+ removeMonitor(monitor); -+ snprintf(monitor, sizeof(monitor), "partitions%s/freespace", disk_info->mntpnt); -+ removeMonitor(monitor); -+ snprintf(monitor, sizeof(monitor), "partitions%s/filllevel", disk_info->mntpnt); -+ removeMonitor(monitor); -+ -+ free(disk_info); -+ } -+ -+ if (DiskStatList) -+ destr_ctnr(DiskStatList, free); -+} -+ -+int updateDiskStat(void) -+{ -+ struct statfs *fs_info; -+ struct statfs fs; -+ float percent; -+ int i, mntcount; -+ DiskInfo *disk_info; -+ -+ /* let's hope there is no difference between the DiskStatList and -+ the number of mounted filesystems */ -+ for (i = 0; i < level_ctnr(DiskStatList); i++) -+ free(remove_ctnr(DiskStatList, i--)); -+ -+ mntcount = getmntinfo(&fs_info, MNT_WAIT); -+ -+ for (i = 0; i < mntcount; i++) { -+ fs = fs_info[i]; -+ if (strcmp(fs.f_fstypename, "procfs") && strcmp(fs.f_fstypename, "devfs") && strcmp(fs.f_fstypename, "devfs")) { -+ percent = (((float)fs.f_blocks - (float)fs.f_bfree)/(float)fs.f_blocks); -+ percent = percent * 100; -+ if ((disk_info = (DiskInfo *)malloc(sizeof(DiskInfo))) == NULL) { -+ continue; -+ } -+ memset(disk_info, 0, sizeof(DiskInfo)); -+ strncpy(disk_info->device, fs.f_mntfromname, 255); -+ if (!strcmp(fs.f_mntonname, "/")) { -+ strncpy(disk_info->mntpnt, "/root", 6); -+ } else { -+ strncpy(disk_info->mntpnt, fs.f_mntonname, 255); -+ } -+ disk_info->blocks = fs.f_blocks; -+ disk_info->bfree = fs.f_bfree; -+ disk_info->bused = (fs.f_blocks - fs.f_bfree); -+ disk_info->bused_percent = (int)percent; -+ -+ push_ctnr(DiskStatList, disk_info); -+ } -+ } -+ -+ return 0; -+} -+ -+void printDiskStat(const char* cmd) -+{ -+ int i; -+ -+ for (i = 0; i < level_ctnr(DiskStatList); i++) { -+ DiskInfo* disk_info = get_ctnr(DiskStatList, i); -+ fprintf(CurrentClient, "%s\t%ld\t%ld\t%ld\t%d\t%s\n", -+ disk_info->device, -+ disk_info->blocks, -+ disk_info->bused, -+ disk_info->bfree, -+ disk_info->bused_percent, -+ disk_info->mntpnt); -+ } -+ -+ fprintf(CurrentClient, "\n"); -+} -+ -+void printDiskStatInfo(const char* cmd) -+{ -+ fprintf(CurrentClient, "Device\tBlocks\tUsed\tAvailable\tUsed %%\tMountPoint\n"); -+} -+ -+void printDiskStatUsed(const char* cmd) -+{ -+ int i; -+ char *mntpnt = (char *)getMntPnt(cmd); -+ -+ for (i = 0; i < level_ctnr(DiskStatList); i++) { -+ DiskInfo* disk_info = get_ctnr(DiskStatList, i); -+ if (!strcmp(mntpnt, disk_info->mntpnt)) { -+ fprintf(CurrentClient, "%ld\n", disk_info->bused); -+ } -+ } -+ -+ fprintf(CurrentClient, "\n"); -+} -+ -+void printDiskStatUsedInfo(const char* cmd) -+{ -+ fprintf(CurrentClient, "Used Blocks\t0\t-\tBlocks\n"); -+} -+ -+void printDiskStatFree(const char* cmd) -+{ -+ int i; -+ char *mntpnt = (char *)getMntPnt(cmd); -+ -+ for (i = 0; i < level_ctnr(DiskStatList); i++) { -+ DiskInfo* disk_info = get_ctnr(DiskStatList, i); -+ if (!strcmp(mntpnt, disk_info->mntpnt)) { -+ fprintf(CurrentClient, "%ld\n", disk_info->bfree); -+ } -+ } -+ -+ fprintf(CurrentClient, "\n"); -+} -+ -+void printDiskStatFreeInfo(const char* cmd) -+{ -+ fprintf(CurrentClient, "Free Blocks\t0\t-\tBlocks\n"); -+} -+ -+void printDiskStatPercent(const char* cmd) -+{ -+ int i; -+ char *mntpnt = (char *)getMntPnt(cmd); -+ -+ for (i = 0; i < level_ctnr(DiskStatList); i++) { -+ DiskInfo* disk_info = get_ctnr(DiskStatList, i); -+ if (!strcmp(mntpnt, disk_info->mntpnt)) { -+ fprintf(CurrentClient, "%d\n", disk_info->bused_percent); -+ } -+ } -+ -+ fprintf(CurrentClient, "\n"); -+} -+ -+void printDiskStatPercentInfo(const char* cmd) -+{ -+ fprintf(CurrentClient, "Used Blocks\t0\t100\t%%\n"); -+} diff --git a/x11/kdebase2/files/patch-diskstat.h b/x11/kdebase2/files/patch-diskstat.h deleted file mode 100644 index 3b5bf11..0000000 --- a/x11/kdebase2/files/patch-diskstat.h +++ /dev/null @@ -1,44 +0,0 @@ ---- /dev/null Mon Nov 19 17:14:17 2001 -+++ ksysguard/ksysguardd/FreeBSD/diskstat.h Mon Nov 19 17:07:01 2001 -@@ -0,0 +1,41 @@ -+/* -+ KSysGuard, the KDE System Guard -+ -+ Copyright (c) 2001 Tobias Koenig <tokoe82@yahoo.de> -+ -+ This program is free software; you can redistribute it and/or -+ modify it under the terms of version 2 of the GNU General Public -+ License as published by the Free Software Foundation. -+ -+ This program is distributed in the hope that it will be useful, -+ but WITHOUT ANY WARRANTY; without even the implied warranty of -+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+ GNU General Public License for more details. -+ -+ You should have received a copy of the GNU General Public License -+ along with this program; if not, write to the Free Software -+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ -+ $Id: diskstat.h,v 1.2 2001/09/18 14:03:53 tokoe Exp $ -+*/ -+ -+#ifndef _diskstat_h_ -+#define _diskstat_h_ -+ -+void initDiskStat(void); -+void exitDiskStat(void); -+ -+int updateDiskStat(void); -+void checkDiskStat(void); -+ -+void printDiskStat(const char* cmd); -+void printDiskStatInfo(const char* cmd); -+ -+void printDiskStatUsed(const char* cmd); -+void printDiskStatUsedInfo(const char* cmd); -+void printDiskStatFree(const char* cmd); -+void printDiskStatFreeInfo(const char* cmd); -+void printDiskStatPercent(const char* cmd); -+void printDiskStatPercentInfo(const char* cmd); -+ -+#endif diff --git a/x11/kdebase2/files/patch-kdm::kfrontend::Makefile.am b/x11/kdebase2/files/patch-kdm::kfrontend::Makefile.am deleted file mode 100644 index c5274c1..0000000 --- a/x11/kdebase2/files/patch-kdm::kfrontend::Makefile.am +++ /dev/null @@ -1,15 +0,0 @@ ---- kdm/kfrontend/Makefile.am.~1.21.~ Sun Jul 29 00:56:28 2001 -+++ kdm/kfrontend/Makefile.am Mon Dec 10 01:08:15 2001 -@@ -25,10 +25,8 @@ - genkdmconf_LDADD = $(LIB_X11) - - install-data-local: -- @if test ! -d $(DESTDIR)$(kde_confdir)/kdm; then \ -- $(mkinstalldirs) $(DESTDIR)$(kde_confdir)/kdm; \ -- ./genkdmconf --in $(DESTDIR)$(kde_confdir)/kdm; \ -- fi -+ -$(mkinstalldirs) $(DESTDIR)$(kde_confdir)/kdm -+ ./genkdmconf --no-old --in $(DESTDIR)$(kde_confdir)/kdm - - messages: - $(XGETTEXT) $(kdm_greet_SOURCES) -o $(podir)/kdmgreet.pot diff --git a/x11/kdebase2/files/patch-kdm::kfrontend::genkdmconf.c b/x11/kdebase2/files/patch-kdm::kfrontend::genkdmconf.c deleted file mode 100644 index 2c852c3..0000000 --- a/x11/kdebase2/files/patch-kdm::kfrontend::genkdmconf.c +++ /dev/null @@ -1,52 +0,0 @@ ---- kdm/kfrontend/genkdmconf.c.orig Mon Nov 5 21:40:03 2001 -+++ kdm/kfrontend/genkdmconf.c Fri Feb 22 19:34:28 2002 -@@ -212,7 +212,7 @@ - */ - - #ifndef HALT_CMD --# ifdef BSD -+# if defined(BSD) || defined(__FreeBSD__) - # define HALT_CMD "/sbin/shutdown -h now" - # define REBOOT_CMD "/sbin/shutdown -r now" - # elif defined(__SVR4) -@@ -1605,8 +1605,8 @@ - "chown $USER /dev/console\n" - #endif - "\n" --"#exec sessreg -a -l $DISPLAY " --#ifdef BSD -+"exec sessreg -a -l $DISPLAY " -+#if defined(BSD) || defined(__FreeBSD__) - "-x " KDMCONF "/Xservers " - #endif - "$USER\n" -@@ -1627,8 +1627,8 @@ - "chmod 622 /dev/console\n" - #endif - "\n" --"#exec sessreg -d -l $DISPLAY " --#ifdef BSD -+"exec sessreg -d -l $DISPLAY " -+#if defined(BSD) || defined(__FreeBSD__) - "-x " KDMCONF "/Xservers " - #endif - "$USER\n" -@@ -1658,7 +1658,8 @@ - " exec xterm -geometry 80x24-0-0 $*\n" - " ;;\n" - " \"\"|default)\n" --" exec $HOME/.xsession $*\n" -+" test -x $HOME/.xsession && exec $HOME/.xsession $*\n" -+" sess=kde\n" - " ;;\n" - "esac\n" - "\n" -@@ -1781,7 +1782,7 @@ - } - addKdePath ("UserPath", DEF_USER_PATH); - addKdePath ("SystemPath", DEF_SYSTEM_PATH); -- ASPrintf (&newkdmrc, "%s/kdmrc", newdir); -+ ASPrintf (&newkdmrc, "%s/kdmrc.dist", newdir); - f = Create (newkdmrc, kdmrcmode); - wrconf (f); - fclose (f); diff --git a/x11/kdebase2/files/patch-ksysguardd.c b/x11/kdebase2/files/patch-ksysguardd.c deleted file mode 100644 index e7a3761..0000000 --- a/x11/kdebase2/files/patch-ksysguardd.c +++ /dev/null @@ -1,11 +0,0 @@ ---- ksysguard/ksysguardd/FreeBSD/ksysguardd.c.orig Sat Nov 10 00:17:04 2001 -+++ ksysguard/ksysguardd/FreeBSD/ksysguardd.c Sun Dec 9 22:26:48 2001 -@@ -37,6 +37,8 @@ - #include <sys/wait.h> - #include <unistd.h> - -+#include "config.h" -+ - #include "CPU.h" - #include "Command.h" - #include "Memory.h" diff --git a/x11/kdebase2/files/patch-ksysguardd.h b/x11/kdebase2/files/patch-ksysguardd.h deleted file mode 100644 index 1545b83..0000000 --- a/x11/kdebase2/files/patch-ksysguardd.h +++ /dev/null @@ -1,37 +0,0 @@ ---- /dev/null Mon Nov 19 17:14:17 2001 -+++ ksysguard/ksysguardd/FreeBSD/ksysguardd.h Mon Nov 19 17:07:38 2001 -@@ -0,0 +1,34 @@ -+/* -+ KSysGuard, the KDE System Guard -+ -+ Copyright (c) 1999-2001 Chris Schlaeger <cs@kde.org> -+ -+ This program is free software; you can redistribute it and/or -+ modify it under the terms of version 2 of the GNU General Public -+ License as published by the Free Software Foundation. -+ -+ This program is distributed in the hope that it will be useful, -+ but WITHOUT ANY WARRANTY; without even the implied warranty of -+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+ GNU General Public License for more details. -+ -+ You should have received a copy of the GNU General Public License -+ along with this program; if not, write to the Free Software -+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ -+ $Id: ksysguardd.h,v 1.2 2001/11/08 10:52:55 tokoe Exp $ -+*/ -+ -+#ifndef _ksysguardd_h_ -+#define _ksysguardd_h_ -+ -+#include <stdio.h> -+ -+extern int QuitApp; -+extern int RunAsDaemon; -+extern FILE* CurrentClient; -+ -+void updateModules(void); -+void checkModules(void); -+ -+#endif diff --git a/x11/kdebase2/files/patch-loadavg.c b/x11/kdebase2/files/patch-loadavg.c deleted file mode 100644 index ced78fa..0000000 --- a/x11/kdebase2/files/patch-loadavg.c +++ /dev/null @@ -1,100 +0,0 @@ ---- /dev/null Mon Nov 19 17:14:17 2001 -+++ ksysguard/ksysguardd/FreeBSD/loadavg.c Mon Nov 19 17:07:47 2001 -@@ -0,0 +1,97 @@ -+/* -+ KSysGuard, the KDE System Guard -+ -+ Copyright (c) 2001 Tobias Koenig <tokoe82@yahoo.de> -+ -+ This program is free software; you can redistribute it and/or -+ modify it under the terms of version 2 of the GNU General Public -+ License as published by the Free Software Foundation. -+ -+ This program is distributed in the hope that it will be useful, -+ but WITHOUT ANY WARRANTY; without even the implied warranty of -+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+ GNU General Public License for more details. -+ -+ You should have received a copy of the GNU General Public License -+ along with this program; if not, write to the Free Software -+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ -+ $Id: loadavg.c,v 1.2 2001/09/18 14:03:53 tokoe Exp $ -+*/ -+ -+#include <stdio.h> -+#include <stdlib.h> -+ -+#include "Command.h" -+#include "ksysguardd.h" -+#include "loadavg.h" -+ -+static double LoadAvg[3]; -+ -+/* -+================================ public part ================================= -+*/ -+ -+void -+initLoadAvg(void) -+{ -+ if (updateLoadAvg() < 0) -+ return; -+ -+ registerMonitor("cpu/loadavg1", "float", printLoadAvg1, -+ printLoadAvg1Info); -+ registerMonitor("cpu/loadavg5", "float", printLoadAvg5, -+ printLoadAvg5Info); -+ registerMonitor("cpu/loadavg15", "float", printLoadAvg15, -+ printLoadAvg15Info); -+} -+ -+void -+exitLoadAvg(void) -+{ -+ removeMonitor("cpu/loadavg1"); -+ removeMonitor("cpu/loadavg5"); -+ removeMonitor("cpu/loadavg15"); -+} -+ -+int -+updateLoadAvg(void) -+{ -+ return getloadavg(LoadAvg, 3); -+} -+ -+void -+printLoadAvg1(const char* c) -+{ -+ fprintf(CurrentClient, "%f\n", LoadAvg[0]); -+} -+ -+void -+printLoadAvg1Info(const char* c) -+{ -+ fprintf(CurrentClient, "Load average 1 min\t0\t0\t\n"); -+} -+ -+void -+printLoadAvg5(const char* c) -+{ -+ fprintf(CurrentClient, "%f\n", LoadAvg[1]); -+} -+ -+void -+printLoadAvg5Info(const char* c) -+{ -+ fprintf(CurrentClient, "Load average 5 min\t0\t0\t\n"); -+} -+ -+void -+printLoadAvg15(const char* c) -+{ -+ fprintf(CurrentClient, "%f\n", LoadAvg[2]); -+} -+ -+void -+printLoadAvg15Info(const char* c) -+{ -+ fprintf(CurrentClient, "Load average 15 min\t0\t0\t\n"); -+} diff --git a/x11/kdebase2/files/patch-loadavg.h b/x11/kdebase2/files/patch-loadavg.h deleted file mode 100644 index cdc680c..0000000 --- a/x11/kdebase2/files/patch-loadavg.h +++ /dev/null @@ -1,39 +0,0 @@ ---- /dev/null Mon Nov 19 17:14:17 2001 -+++ ksysguard/ksysguardd/FreeBSD/loadavg.h Mon Nov 19 17:07:47 2001 -@@ -0,0 +1,36 @@ -+/* -+ KSysGuard, the KDE System Guard -+ -+ Copyright (c) 2001 Tobias Koenig <tokoe82@yahoo.de> -+ -+ This program is free software; you can redistribute it and/or -+ modify it under the terms of version 2 of the GNU General Public -+ License as published by the Free Software Foundation. -+ -+ This program is distributed in the hope that it will be useful, -+ but WITHOUT ANY WARRANTY; without even the implied warranty of -+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+ GNU General Public License for more details. -+ -+ You should have received a copy of the GNU General Public License -+ along with this program; if not, write to the Free Software -+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ -+ $Id: loadavg.h,v 1.2 2001/09/18 14:03:53 tokoe Exp $ -+*/ -+ -+#ifndef _loadavg_h_ -+#define _loadavg_h_ -+ -+void initLoadAvg(void); -+void exitLoadAvg(void); -+int updateLoadAvg(void); -+ -+void printLoadAvg1(const char*); -+void printLoadAvg1Info(const char*); -+void printLoadAvg5(const char*); -+void printLoadAvg5Info(const char*); -+void printLoadAvg15(const char*); -+void printLoadAvg15Info(const char*); -+ -+#endif diff --git a/x11/kdebase2/files/patch-logfile.c b/x11/kdebase2/files/patch-logfile.c deleted file mode 100644 index 5fd3def..0000000 --- a/x11/kdebase2/files/patch-logfile.c +++ /dev/null @@ -1,184 +0,0 @@ ---- /dev/null Mon Nov 19 17:14:17 2001 -+++ ksysguard/ksysguardd/FreeBSD/logfile.c Mon Nov 19 17:07:55 2001 -@@ -0,0 +1,181 @@ -+/* -+ KSysGuard, the KDE System Guard -+ -+ Copyright (c) 2001 Tobias Koenig <tokoe82@yahoo.de> -+ -+ This program is free software; you can redistribute it and/or -+ modify it under the terms of version 2 of the GNU General Public -+ License as published by the Free Software Foundation. -+ -+ This program is distributed in the hope that it will be useful, -+ but WITHOUT ANY WARRANTY; without even the implied warranty of -+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+ GNU General Public License for more details. -+ -+ You should have received a copy of the GNU General Public License -+ along with this program; if not, write to the Free Software -+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ -+ $Id: logfile.c,v 1.2 2001/09/18 14:03:53 tokoe Exp $ -+*/ -+ -+#include <stdio.h> -+#include <stdlib.h> -+#include <string.h> -+ -+#include "Command.h" -+#include "ccont.h" -+#include "conf.h" -+#include "ksysguardd.h" -+#include "logfile.h" -+ -+static CONTAINER LogFiles = 0; -+static unsigned long counter = 1; -+ -+typedef struct { -+ char name[256]; -+ FILE* fh; -+ unsigned long id; -+} LogFileEntry; -+ -+extern CONTAINER LogFileList; -+ -+/* -+================================ public part ================================= -+*/ -+ -+void initLogFile(void) -+{ -+ int i; -+ char monitor[1024]; -+ -+ registerCommand("logfile_register", registerLogFile); -+ registerCommand("logfile_unregister", unregisterLogFile); -+ registerCommand("logfile_registered", printRegistered); -+ -+ for (i = 0; i < level_ctnr(LogFileList); i++) -+ { -+ FILE* fp; -+ ConfigLogFile *entry = get_ctnr(LogFileList, i); -+ /* register the log file if we can actually read the file. */ -+ if ((fp = fopen(entry->path, "r")) != NULL) -+ { -+ fclose(fp); -+ snprintf(monitor, 1024, "logfiles/%s", entry->name); -+ registerMonitor(monitor, "logfile", printLogFile, -+ printLogFileInfo); -+ } -+ } -+ -+ LogFiles = new_ctnr(CT_DLL); -+} -+ -+void exitLogFile(void) -+{ -+ if (LogFiles) -+ destr_ctnr(LogFiles, free); -+} -+ -+void printLogFile(const char* cmd) -+{ -+ char line[1024]; -+ unsigned long id; -+ int i; -+ char ch; -+ -+ sscanf(cmd, "%*s %lu", &id); -+ -+ for (i = 0; i < level_ctnr(LogFiles); i++) { -+ LogFileEntry *entry = get_ctnr(LogFiles, i); -+ -+ if (entry->id == id) { -+ while (fgets(line, sizeof(line), entry->fh) != NULL) { -+ fprintf(CurrentClient, "%s", line); -+ } -+ clearerr(entry->fh); -+ } -+ } -+ -+ fprintf(CurrentClient, "\n"); -+} -+ -+void printLogFileInfo(const char* cmd) -+{ -+ fprintf(CurrentClient, "LogFile\n"); -+} -+ -+void registerLogFile(const char* cmd) -+{ -+ char name[256]; -+ FILE* file; -+ LogFileEntry *entry; -+ int i; -+ -+ memset(name, 0, sizeof(name)); -+ sscanf(cmd, "%*s %256s", name); -+ -+ for (i = 0; i < level_ctnr(LogFileList); i++) { -+ ConfigLogFile *conf = get_ctnr(LogFileList, i); -+ if (!strcmp(conf->name, name)) { -+ if ((file = fopen(conf->path, "r")) == NULL) { -+ print_error("fopen()"); -+ fprintf(CurrentClient, "0\n"); -+ return; -+ } -+ -+ fseek(file, 0, SEEK_END); -+ -+ if ((entry = (LogFileEntry *)malloc(sizeof(LogFileEntry))) == NULL) { -+ print_error("malloc()"); -+ fprintf(CurrentClient, "0\n"); -+ return; -+ } -+ -+ entry->fh = file; -+ strncpy(entry->name, conf->name, 256); -+ entry->id = counter; -+ -+ push_ctnr(LogFiles, entry); -+ -+ fprintf(CurrentClient, "%lu\n", counter); -+ counter++; -+ -+ return; -+ } -+ } -+ -+ fprintf(CurrentClient, "0\n"); -+} -+ -+void unregisterLogFile(const char* cmd) -+{ -+ unsigned long id; -+ int i; -+ -+ sscanf(cmd, "%*s %lu", &id); -+ -+ for (i = 0; i < level_ctnr(LogFiles); i++) { -+ LogFileEntry *entry = get_ctnr(LogFiles, i); -+ -+ if (entry->id == id) { -+ fclose(entry->fh); -+ free(remove_ctnr(LogFiles, i)); -+ fprintf(CurrentClient, "\n"); -+ return; -+ } -+ } -+ -+ fprintf(CurrentClient, "\n"); -+} -+ -+void printRegistered(const char* cmd) -+{ -+ int i; -+ -+ for (i = 0; i < level_ctnr(LogFiles); i++) { -+ LogFileEntry *entry = get_ctnr(LogFiles, i); -+ fprintf(CurrentClient, "%s:%lu\n", entry->name, entry->id); -+ } -+ -+ fprintf(CurrentClient, "\n"); -+} diff --git a/x11/kdebase2/files/patch-logfile.h b/x11/kdebase2/files/patch-logfile.h deleted file mode 100644 index 69b8d6e..0000000 --- a/x11/kdebase2/files/patch-logfile.h +++ /dev/null @@ -1,40 +0,0 @@ ---- /dev/null Mon Nov 19 17:14:17 2001 -+++ ksysguard/ksysguardd/FreeBSD/logfile.h Mon Nov 19 17:07:55 2001 -@@ -0,0 +1,37 @@ -+/* -+ KSysGuard, the KDE System Guard -+ -+ Copyright (c) 2001 Tobias Koenig <tokoe82@yahoo.de> -+ -+ This program is free software; you can redistribute it and/or -+ modify it under the terms of version 2 of the GNU General Public -+ License as published by the Free Software Foundation. -+ -+ This program is distributed in the hope that it will be useful, -+ but WITHOUT ANY WARRANTY; without even the implied warranty of -+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+ GNU General Public License for more details. -+ -+ You should have received a copy of the GNU General Public License -+ along with this program; if not, write to the Free Software -+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ -+ $Id: logfile.h,v 1.2 2001/09/18 14:03:53 tokoe Exp $ -+*/ -+ -+#ifndef _logfile_h_ -+#define _logfile_h_ -+ -+void initLogFile(void); -+void exitLogFile(void); -+ -+void printLogFile(const char* cmd); -+void printLogFileInfo(const char* cmd); -+ -+void registerLogFile(const char* cmd); -+void unregisterLogFile(const char* cmd); -+ -+/* debug command */ -+void printRegistered(const char* cmd); -+ -+#endif diff --git a/x11/kdebase2/files/patch-netdev.c b/x11/kdebase2/files/patch-netdev.c deleted file mode 100644 index 2c0f473..0000000 --- a/x11/kdebase2/files/patch-netdev.c +++ /dev/null @@ -1,322 +0,0 @@ ---- /dev/null Mon Nov 19 17:14:17 2001 -+++ ksysguard/ksysguardd/FreeBSD/netdev.c Mon Nov 19 17:08:04 2001 -@@ -0,0 +1,319 @@ -+/* -+ KSysGuard, the KDE System Guard -+ -+ Copyright (c) 2001 Tobias Koenig <tokoe82@yahoo.de> -+ -+ This program is free software; you can redistribute it and/or -+ modify it under the terms of version 2 of the GNU General Public -+ License as published by the Free Software Foundation. -+ -+ This program is distributed in the hope that it will be useful, -+ but WITHOUT ANY WARRANTY; without even the implied warranty of -+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+ GNU General Public License for more details. -+ -+ You should have received a copy of the GNU General Public License -+ along with this program; if not, write to the Free Software -+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ -+ $Id: netdev.c,v 1.2 2001/09/18 14:03:53 tokoe Exp $ -+*/ -+ -+#include <fcntl.h> -+#include <sys/socket.h> -+#include <net/if.h> -+#include <net/if_mib.h> -+#include <stdio.h> -+#include <string.h> -+#include <sys/sysctl.h> -+#include <sys/time.h> -+#include <sys/types.h> -+#include <unistd.h> -+ -+ -+#include "Command.h" -+#include "ksysguardd.h" -+#include "netdev.h" -+ -+ -+typedef struct { -+ char name[32]; -+ u_long recBytes; -+ u_long recPacks; -+ u_long recErrs; -+ u_long recDrop; -+ u_long recMulticast; -+ u_long sentBytes; -+ u_long sentPacks; -+ u_long sentErrs; -+ u_long sentMulticast; -+ u_long sentColls; -+} NetDevInfo; -+ -+#define MAXNETDEVS 64 -+static NetDevInfo NetDevs[MAXNETDEVS]; -+static int NetDevCnt = 0; -+ -+char **parseCommand(const char *cmd) -+{ -+ char tmp_cmd[1024]; -+ char *begin; -+ static char sensor[100]; -+ static char interface[100]; -+ static char* retval[2]; -+ -+ strncpy(tmp_cmd, cmd, 1024); -+ -+ begin = rindex(tmp_cmd, '/'); -+ *begin = '\0'; -+ begin++; -+ strcpy(sensor, begin); -+ retval[1] = sensor; -+ -+ begin = rindex(tmp_cmd, '/'); -+ *begin = '\0'; -+ begin = rindex(tmp_cmd, '/'); -+ begin++; -+ strcpy(interface, begin); -+ retval[0] = interface; -+ -+ return retval; -+} -+ -+int numActivIfaces(void) -+{ -+ int counter = 0; -+ int name[6]; -+ int num_iface, i; -+ size_t len; -+ struct ifmibdata ifmd; -+ -+ len = sizeof(num_iface); -+ sysctlbyname("net.link.generic.system.ifcount", &num_iface, &len, NULL, 0); -+ -+ for (i = 1; i < num_iface + 1; i++) { -+ name[0] = CTL_NET; -+ name[1] = PF_LINK; -+ name[2] = NETLINK_GENERIC; -+ name[3] = IFMIB_IFDATA; -+ name[4] = i; -+ name[5] = IFDATA_GENERAL; -+ -+ len = sizeof(ifmd); -+ sysctl(name, 6, &ifmd, &len, NULL, 0); -+ if (ifmd.ifmd_flags & IFF_UP) -+ counter++; -+ } -+ -+ return counter; -+} -+ -+/* ------------------------------ public part --------------------------- */ -+ -+void initNetDev(void) -+{ -+ int i; -+ char monitor[1024]; -+ -+ updateNetDev(); -+ -+ for (i = 0; i < NetDevCnt; i++) { -+ snprintf(monitor, sizeof(monitor), "network/interfaces/%s/receiver/data", NetDevs[i].name); -+ registerMonitor(monitor, "integer", printNetDevRecBytes, printNetDevRecBytesInfo); -+ snprintf(monitor, sizeof(monitor), "network/interfaces/%s/receiver/packets", NetDevs[i].name); -+ registerMonitor(monitor, "integer", printNetDevRecBytes, printNetDevRecBytesInfo); -+ snprintf(monitor, sizeof(monitor), "network/interfaces/%s/receiver/errors", NetDevs[i].name); -+ registerMonitor(monitor, "integer", printNetDevRecBytes, printNetDevRecBytesInfo); -+ snprintf(monitor, sizeof(monitor), "network/interfaces/%s/receiver/drops", NetDevs[i].name); -+ registerMonitor(monitor, "integer", printNetDevRecBytes, printNetDevRecBytesInfo); -+ snprintf(monitor, sizeof(monitor), "network/interfaces/%s/receiver/multicast", NetDevs[i].name); -+ registerMonitor(monitor, "integer", printNetDevRecBytes, printNetDevRecBytesInfo); -+ -+ snprintf(monitor, sizeof(monitor), "network/interfaces/%s/transmitter/data", NetDevs[i].name); -+ registerMonitor(monitor, "integer", printNetDevSentBytes, printNetDevSentBytesInfo); -+ snprintf(monitor, sizeof(monitor), "network/interfaces/%s/transmitter/packets", NetDevs[i].name); -+ registerMonitor(monitor, "integer", printNetDevSentBytes, printNetDevSentBytesInfo); -+ snprintf(monitor, sizeof(monitor), "network/interfaces/%s/transmitter/errors", NetDevs[i].name); -+ registerMonitor(monitor, "integer", printNetDevSentBytes, printNetDevSentBytesInfo); -+ snprintf(monitor, sizeof(monitor), "network/interfaces/%s/transmitter/multicast", NetDevs[i].name); -+ registerMonitor(monitor, "integer", printNetDevSentBytes, printNetDevSentBytesInfo); -+ snprintf(monitor, sizeof(monitor), "network/interfaces/%s/transmitter/collisions", NetDevs[i].name); -+ registerMonitor(monitor, "integer", printNetDevSentBytes, printNetDevSentBytesInfo); -+ } -+} -+ -+void exitNetDev(void) -+{ -+ int i; -+ char monitor[1024]; -+ -+ for (i = 0; i < NetDevCnt; i++) { -+ snprintf(monitor, sizeof(monitor), "network/interfaces/%s/receiver/data", NetDevs[i].name); -+ removeMonitor(monitor); -+ snprintf(monitor, sizeof(monitor), "network/interfaces/%s/receiver/packets", NetDevs[i].name); -+ removeMonitor(monitor); -+ snprintf(monitor, sizeof(monitor), "network/interfaces/%s/receiver/errors", NetDevs[i].name); -+ removeMonitor(monitor); -+ snprintf(monitor, sizeof(monitor), "network/interfaces/%s/receiver/drops", NetDevs[i].name); -+ removeMonitor(monitor); -+ snprintf(monitor, sizeof(monitor), "network/interfaces/%s/receiver/multicast", NetDevs[i].name); -+ removeMonitor(monitor); -+ -+ snprintf(monitor, sizeof(monitor), "network/interfaces/%s/transmitter/data", NetDevs[i].name); -+ removeMonitor(monitor); -+ snprintf(monitor, sizeof(monitor), "network/interfaces/%s/transmitter/packets", NetDevs[i].name); -+ removeMonitor(monitor); -+ snprintf(monitor, sizeof(monitor), "network/interfaces/%s/transmitter/errors", NetDevs[i].name); -+ removeMonitor(monitor); -+ snprintf(monitor, sizeof(monitor), "network/interfaces/%s/transmitter/multicast", NetDevs[i].name); -+ removeMonitor(monitor); -+ snprintf(monitor, sizeof(monitor), "network/interfaces/%s/transmitter/collisions", NetDevs[i].name); -+ removeMonitor(monitor); -+ } -+} -+ -+void updateNetDev(void) -+{ -+ int name[6]; -+ int num_iface, i; -+ size_t len; -+ struct ifmibdata ifmd; -+ -+ len = sizeof(num_iface); -+ sysctlbyname("net.link.generic.system.ifcount", &num_iface, &len, NULL, 0); -+ -+ NetDevCnt = 0; -+ for (i = 1; i < num_iface + 1; i++) { -+ name[0] = CTL_NET; -+ name[1] = PF_LINK; -+ name[2] = NETLINK_GENERIC; -+ name[3] = IFMIB_IFDATA; -+ name[4] = i; -+ name[5] = IFDATA_GENERAL; -+ -+ len = sizeof(ifmd); -+ sysctl(name, 6, &ifmd, &len, NULL, 0); -+ if (ifmd.ifmd_flags & IFF_UP) { -+ strncpy(NetDevs[NetDevCnt].name, ifmd.ifmd_name, 32); -+ NetDevs[NetDevCnt].recBytes = ifmd.ifmd_data.ifi_ibytes - NetDevs[NetDevCnt].recBytes; -+ NetDevs[NetDevCnt].recPacks = ifmd.ifmd_data.ifi_ipackets - NetDevs[NetDevCnt].recPacks; -+ NetDevs[NetDevCnt].recErrs = ifmd.ifmd_data.ifi_ierrors - NetDevs[NetDevCnt].recErrs; -+ NetDevs[NetDevCnt].recDrop = ifmd.ifmd_data.ifi_iqdrops - NetDevs[NetDevCnt].recDrop; -+ NetDevs[NetDevCnt].recMulticast = ifmd.ifmd_data.ifi_imcasts - NetDevs[NetDevCnt].recMulticast; -+ NetDevs[NetDevCnt].sentBytes = ifmd.ifmd_data.ifi_obytes - NetDevs[NetDevCnt].sentBytes; -+ NetDevs[NetDevCnt].sentPacks = ifmd.ifmd_data.ifi_opackets - NetDevs[NetDevCnt].sentPacks; -+ NetDevs[NetDevCnt].sentErrs = ifmd.ifmd_data.ifi_oerrors - NetDevs[NetDevCnt].sentErrs; -+ NetDevs[NetDevCnt].sentMulticast = ifmd.ifmd_data.ifi_omcasts - NetDevs[NetDevCnt].sentMulticast; -+ NetDevs[NetDevCnt].sentColls = ifmd.ifmd_data.ifi_collisions - NetDevs[NetDevCnt].sentColls; -+ NetDevCnt++; -+ } -+ } -+} -+ -+void checkNetDev(void) -+{ -+ if (numActivIfaces() != NetDevCnt) { -+ /* interface has been added or removed -+ so we do a reset */ -+ exitNetDev(); -+ initNetDev(); -+ } -+} -+ -+void printNetDevRecBytes(const char *cmd) -+{ -+ int i; -+ char **retval; -+ -+ retval = parseCommand(cmd); -+ -+ if (retval[0] == NULL || retval[1] == NULL) -+ return; -+ -+ for (i = 0; i < NetDevCnt; i++) { -+ if (!strcmp(NetDevs[i].name, retval[0])) { -+ if (!strncmp(retval[1], "data", 4)) -+ fprintf(CurrentClient, "%lu", NetDevs[i].recBytes); -+ if (!strncmp(retval[1], "packets", 7)) -+ fprintf(CurrentClient, "%lu", NetDevs[i].recPacks); -+ if (!strncmp(retval[1], "errors", 6)) -+ fprintf(CurrentClient, "%lu", NetDevs[i].recErrs); -+ if (!strncmp(retval[1], "drops", 5)) -+ fprintf(CurrentClient, "%lu", NetDevs[i].recDrop); -+ if (!strncmp(retval[1], "multicast", 9)) -+ fprintf(CurrentClient, "%lu", NetDevs[i].recMulticast); -+ } -+ } -+ -+ fprintf(CurrentClient, "\n"); -+} -+ -+void printNetDevRecBytesInfo(const char *cmd) -+{ -+ char **retval; -+ -+ retval = parseCommand(cmd); -+ -+ if (retval[1] == NULL) -+ return; -+ -+ if (!strncmp(retval[1], "data", 4)) -+ fprintf(CurrentClient, "Received Data\t0\t0\tkBytes/s\n"); -+ if (!strncmp(retval[1], "packets", 7)) -+ fprintf(CurrentClient, "Received Packets\t0\t0\t1/s\n"); -+ if (!strncmp(retval[1], "errors", 6)) -+ fprintf(CurrentClient, "Receiver Errors\t0\t0\t1/s\n"); -+ if (!strncmp(retval[1], "drops", 5)) -+ fprintf(CurrentClient, "Receiver Drops\t0\t0\t1/s\n"); -+ if (!strncmp(retval[1], "multicast", 9)) -+ fprintf(CurrentClient, "Received Multicast Packets\t0\t0\t1/s\n"); -+} -+ -+void printNetDevSentBytes(const char *cmd) -+{ -+ int i; -+ char **retval; -+ -+ retval = parseCommand(cmd); -+ -+ if (retval[0] == NULL || retval[1] == NULL) -+ return; -+ -+ for (i = 0; i < NetDevCnt; i++) { -+ if (!strcmp(NetDevs[i].name, retval[0])) { -+ if (!strncmp(retval[1], "data", 4)) -+ fprintf(CurrentClient, "%lu", NetDevs[i].sentBytes); -+ if (!strncmp(retval[1], "packets", 7)) -+ fprintf(CurrentClient, "%lu", NetDevs[i].sentPacks); -+ if (!strncmp(retval[1], "errors", 6)) -+ fprintf(CurrentClient, "%lu", NetDevs[i].sentErrs); -+ if (!strncmp(retval[1], "multicast", 9)) -+ fprintf(CurrentClient, "%lu", NetDevs[i].sentMulticast); -+ if (!strncmp(retval[1], "collisions", 10)) -+ fprintf(CurrentClient, "%lu", NetDevs[i].sentColls); -+ } -+ } -+ -+ fprintf(CurrentClient, "\n"); -+} -+ -+void printNetDevSentBytesInfo(const char *cmd) -+{ -+ char **retval; -+ -+ retval = parseCommand(cmd); -+ -+ if (retval[1] == NULL) -+ return; -+ -+ if (!strncmp(retval[1], "data", 4)) -+ fprintf(CurrentClient, "Sent Data\t0\t0\tkBytes/s\n"); -+ if (!strncmp(retval[1], "packets", 7)) -+ fprintf(CurrentClient, "Sent Packets\t0\t0\t1/s\n"); -+ if (!strncmp(retval[1], "errors", 6)) -+ fprintf(CurrentClient, "Transmitter Errors\t0\t0\t1/s\n"); -+ if (!strncmp(retval[1], "multicast", 9)) -+ fprintf(CurrentClient, "Sent Multicast Packets\t0\t0\t1/s\n"); -+ if (!strncmp(retval[1], "collisions", 10)) -+ fprintf(CurrentClient, "Transmitter Collisions\t0\t0\t1/s\n"); -+} diff --git a/x11/kdebase2/files/patch-netdev.h b/x11/kdebase2/files/patch-netdev.h deleted file mode 100644 index 3c291f8..0000000 --- a/x11/kdebase2/files/patch-netdev.h +++ /dev/null @@ -1,39 +0,0 @@ ---- /dev/null Mon Nov 19 17:14:17 2001 -+++ ksysguard/ksysguardd/FreeBSD/netdev.h Mon Nov 19 17:08:04 2001 -@@ -0,0 +1,36 @@ -+/* -+ KSysGuard, the KDE System Guard -+ -+ Copyright (c) 2001 Tobias Koenig <tokoe82@yahoo.de> -+ -+ This program is free software; you can redistribute it and/or -+ modify it under the terms of version 2 of the GNU General Public -+ License as published by the Free Software Foundation. -+ -+ This program is distributed in the hope that it will be useful, -+ but WITHOUT ANY WARRANTY; without even the implied warranty of -+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+ GNU General Public License for more details. -+ -+ You should have received a copy of the GNU General Public License -+ along with this program; if not, write to the Free Software -+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ -+ $Id: netdev.h,v 1.2 2001/09/18 14:03:53 tokoe Exp $ -+*/ -+ -+#ifndef _netdev_h_ -+#define _netdev_h_ -+ -+void initNetDev(void); -+void exitNetDev(void); -+ -+void updateNetDev(void); -+void checkNetDev(void); -+ -+void printNetDevRecBytes(const char* cmd); -+void printNetDevRecBytesInfo(const char* cmd); -+void printNetDevSentBytes(const char* cmd); -+void printNetDevSentBytesInfo(const char* cmd); -+ -+#endif diff --git a/x11/kdebase2/pkg-comment b/x11/kdebase2/pkg-comment deleted file mode 100644 index ab700e2..0000000 --- a/x11/kdebase2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Base modules for the KDE integrated X11 desktop diff --git a/x11/kdebase2/pkg-descr b/x11/kdebase2/pkg-descr deleted file mode 100644 index 90ae457..0000000 --- a/x11/kdebase2/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -KDE provides an integrated X11 based environment, much like CDE. diff --git a/x11/kdebase2/pkg-plist b/x11/kdebase2/pkg-plist deleted file mode 100644 index 9e32ca5..0000000 --- a/x11/kdebase2/pkg-plist +++ /dev/null @@ -1,2746 +0,0 @@ -bin/appletproxy -bin/chooser -bin/conttest -bin/drkonqi -bin/extensionproxy -bin/kaccess -bin/kaddressbook -bin/kappfinder -bin/kate -bin/kbanner.kss -bin/kblankscrn.kss -bin/kblob.kss -bin/kbouboule.kss -bin/kcheckpass -bin/kcminit -bin/kcmshell -bin/kcontrol -bin/kdcop -bin/kdebugdialog -bin/kdeeject -bin/kdeprintfax -bin/kdesktop -bin/kdesu -bin/kdesud -bin/kdm -bin/kdm_config -bin/kdm_greet -bin/kdmdesktop -bin/keditbookmarks -bin/keditfiletype -bin/kfmclient -bin/kfmexec -bin/khelpcenter -bin/khotkeys -bin/kicker -bin/kjobviewer -bin/klegacyimport -bin/klines.kss -bin/klipper -bin/klorenz.kss -bin/kmatrix.kss -bin/kmenuedit -bin/konqueror -bin/konsole -bin/konsole_grantpty -bin/kpager -bin/kpartsaver.kss -bin/kpersonalizer -bin/kpolygon.kss -bin/kprinter -bin/kpyro.kss -bin/krandom.kss -bin/krdb -bin/kreadconfig -bin/krock.kss -bin/kscience.kss -bin/kslidescreen.kss -bin/kslideshow.kss -bin/ksmserver -bin/ksplash -bin/kstart -bin/kswarm.kss -bin/ksysguard -bin/ksysguardd -bin/ktip -bin/kvm.kss -bin/kwebdesktop -bin/kwin -bin/kwmtheme -bin/kwrite -bin/kwrited -bin/kxkb -bin/kxmlrpcd -bin/kxsconfig -bin/kxsrun -%%MOTIF%%bin/nspluginscan -%%MOTIF%%bin/nspluginviewer -bin/startkde -etc/ksysguarddrc -include/KBackgroundIface.h -include/KDesktopIface.h -include/KScreensaverIface.h -include/KWinInterface.h -include/KonquerorIface.h -include/ccont.h -include/kate/application.h -include/kate/docmanager.h -include/kate/document.h -include/kate/mainwindow.h -include/kate/plugin.h -include/kate/view.h -include/kate/viewmanager.h -include/kbookmark.h -include/kbookmarkbar.h -include/kbookmarkdrag.h -include/kbookmarkexporter.h -include/kbookmarkimporter.h -include/kbookmarkmanager.h -include/kbookmarkmenu.h -include/kfileivi.h -include/knewmenu.h -include/konq_bgnddlg.h -include/konq_defaults.h -include/konq_dirlister.h -include/konq_dirpart.h -include/konq_drag.h -include/konq_events.h -include/konq_faviconmgr.h -include/konq_fileitem.h -include/konq_historycomm.h -include/konq_historymgr.h -include/konq_iconviewwidget.h -include/konq_imagepreviewjob.h -include/konq_mimetyperesolver.h -include/konq_operations.h -include/konq_pixmapprovider.h -include/konq_popupmenu.h -include/konq_propsview.h -include/konq_settings.h -include/konq_undo.h -include/kwin/client.h -include/kwin/kwinbutton.h -include/kwin/options.h -include/kwin/workspace.h -include/thumbcreator.h -lib/appletproxy.la -lib/appletproxy.so -lib/extensionproxy.la -lib/extensionproxy.so -lib/kate.la -lib/kate.so -lib/kde2/gsthumbnail.la -lib/kde2/gsthumbnail.so -lib/kde2/htmlthumbnail.la -lib/kde2/htmlthumbnail.so -lib/kde2/imagethumbnail.la -lib/kde2/imagethumbnail.so -lib/kde2/kaccess.la -lib/kde2/kaccess.so -lib/kde2/kcminit.la -lib/kde2/kcminit.so -lib/kde2/kcmshell.la -lib/kde2/kcmshell.so -lib/kde2/kcontrol.la -lib/kde2/kcontrol.so -lib/kde2/khelpcenter.la -lib/kde2/khelpcenter.so -lib/kde2/kio_filter.la -lib/kde2/kio_filter.so -lib/kde2/kio_finger.la -lib/kde2/kio_finger.so -lib/kde2/kio_floppy.la -lib/kde2/kio_floppy.so -lib/kde2/kio_gopher.la -lib/kde2/kio_gopher.so -lib/kde2/kio_imap4.la -lib/kde2/kio_imap4.so -lib/kde2/kio_info.la -lib/kde2/kio_info.so -lib/kde2/kio_man.la -lib/kde2/kio_man.so -lib/kde2/kio_nfs.la -lib/kde2/kio_nfs.so -lib/kde2/kio_nntp.la -lib/kde2/kio_nntp.so -lib/kde2/kio_pop3.la -lib/kde2/kio_pop3.so -lib/kde2/kio_smb.la -lib/kde2/kio_smb.so -lib/kde2/kio_tar.la -lib/kde2/kio_tar.so -lib/kde2/kio_thumbnail.la -lib/kde2/kio_thumbnail.so -lib/kde2/libkcm_access.la -lib/kde2/libkcm_access.so -lib/kde2/libkcm_arts.la -lib/kde2/libkcm_arts.so -lib/kde2/libkcm_background.la -lib/kde2/libkcm_background.so -lib/kde2/libkcm_bell.la -lib/kde2/libkcm_bell.so -lib/kde2/libkcm_clock.la -lib/kde2/libkcm_clock.so -lib/kde2/libkcm_colors.la -lib/kde2/libkcm_colors.so -lib/kde2/libkcm_crypto.la -lib/kde2/libkcm_crypto.so -lib/kde2/libkcm_css.la -lib/kde2/libkcm_css.so -lib/kde2/libkcm_email.la -lib/kde2/libkcm_email.so -lib/kde2/libkcm_energy.la -lib/kde2/libkcm_energy.so -lib/kde2/libkcm_filetypes.la -lib/kde2/libkcm_filetypes.so -lib/kde2/libkcm_fonts.la -lib/kde2/libkcm_fonts.so -lib/kde2/libkcm_icons.la -lib/kde2/libkcm_icons.so -lib/kde2/libkcm_info.la -lib/kde2/libkcm_info.so -lib/kde2/libkcm_input.la -lib/kde2/libkcm_input.so -lib/kde2/libkcm_ioslaveinfo.la -lib/kde2/libkcm_ioslaveinfo.so -lib/kde2/libkcm_kdm.la -lib/kde2/libkcm_kdm.so -lib/kde2/libkcm_keys.la -lib/kde2/libkcm_keys.so -lib/kde2/libkcm_khotkeys.la -lib/kde2/libkcm_khotkeys.so -lib/kde2/libkcm_kicker.la -lib/kde2/libkcm_kicker.so -lib/kde2/libkcm_kio.la -lib/kde2/libkcm_kio.so -lib/kde2/libkcm_knotify.la -lib/kde2/libkcm_knotify.so -lib/kde2/libkcm_konq.la -lib/kde2/libkcm_konq.so -lib/kde2/libkcm_konqhtml.la -lib/kde2/libkcm_konqhtml.so -lib/kde2/libkcm_konsole.la -lib/kde2/libkcm_konsole.so -lib/kde2/libkcm_kurifilt.la -lib/kde2/libkcm_kurifilt.so -lib/kde2/libkcm_kwindecoration.la -lib/kde2/libkcm_kwindecoration.so -lib/kde2/libkcm_kwinoptions.la -lib/kde2/libkcm_kwinoptions.so -lib/kde2/libkcm_launch.la -lib/kde2/libkcm_launch.so -lib/kde2/libkcm_locale.la -lib/kde2/libkcm_locale.so -lib/kde2/libkcm_midi.la -lib/kde2/libkcm_midi.so -lib/kde2/libkcm_passwords.la -lib/kde2/libkcm_passwords.so -lib/kde2/libkcm_printmgr.la -lib/kde2/libkcm_printmgr.so -lib/kde2/libkcm_samba.la -lib/kde2/libkcm_samba.so -lib/kde2/libkcm_screensaver.la -lib/kde2/libkcm_screensaver.so -lib/kde2/libkcm_smserver.la -lib/kde2/libkcm_smserver.so -lib/kde2/libkcm_socks.la -lib/kde2/libkcm_socks.so -lib/kde2/libkcm_spellchecking.la -lib/kde2/libkcm_spellchecking.so -lib/kde2/libkcm_style.la -lib/kde2/libkcm_style.so -lib/kde2/libkcm_taskbar.la -lib/kde2/libkcm_taskbar.so -lib/kde2/libkcm_themes.la -lib/kde2/libkcm_themes.so -lib/kde2/libkcm_usb.la -lib/kde2/libkcm_usb.so -lib/kde2/libkded_favicons.la -lib/kde2/libkded_favicons.so -lib/kde2/libkfindpart.la -lib/kde2/libkfindpart.so -lib/kde2/libkhelpcenterpart.la -lib/kde2/libkhelpcenterpart.so -lib/kde2/libkonqiconview.la -lib/kde2/libkonqiconview.so -lib/kde2/libkonqlistview.la -lib/kde2/libkonqlistview.so -lib/kde2/libkonqsidebar_classic_wrap.la -lib/kde2/libkonqsidebar_classic_wrap.so -lib/kde2/libkonqsidebar_tree.la -lib/kde2/libkonqsidebar_tree.so -lib/kde2/libkonqsidebartree_bookmarks.la -lib/kde2/libkonqsidebartree_bookmarks.so -lib/kde2/libkonqsidebartree_bookmarks.so.0 -lib/kde2/libkonqsidebartree_dirtree.la -lib/kde2/libkonqsidebartree_dirtree.so -lib/kde2/libkonqsidebartree_history.la -lib/kde2/libkonqsidebartree_history.so -lib/kde2/libkonqsound.la -lib/kde2/libkonqsound.so -lib/kde2/libkonqtree.la -lib/kde2/libkonqtree.so -lib/kde2/libkshellcmdplugin.la -lib/kde2/libkshellcmdplugin.so -lib/kde2/libkshorturifilter.la -lib/kde2/libkshorturifilter.so -lib/kde2/libkuriikwsfilter.la -lib/kde2/libkuriikwsfilter.so -lib/kde2/libkurisearchfilter.la -lib/kde2/libkurisearchfilter.so -lib/kde2/libkwinb2.la -lib/kde2/libkwinb2.so -lib/kde2/libkwindefault.la -lib/kde2/libkwindefault.so -lib/kde2/libkwindefault_config.la -lib/kde2/libkwindefault_config.so -lib/kde2/libkwinicewm.la -lib/kde2/libkwinicewm.so -lib/kde2/libkwinicewm_config.la -lib/kde2/libkwinicewm_config.so -lib/kde2/libkwinkde1.la -lib/kde2/libkwinkde1.so -lib/kde2/libkwinkstep.la -lib/kde2/libkwinkstep.so -lib/kde2/libkwinkwmtheme.la -lib/kde2/libkwinkwmtheme.so -lib/kde2/libkwinlaptop.la -lib/kde2/libkwinlaptop.so -lib/kde2/libkwinmodernsys.la -lib/kde2/libkwinmodernsys.so -lib/kde2/libkwinmodernsys_config.la -lib/kde2/libkwinmodernsys_config.so -lib/kde2/libkwinmwm.la -lib/kde2/libkwinmwm.so -lib/kde2/libkwinquartz.la -lib/kde2/libkwinquartz.so -lib/kde2/libkwinquartz_config.la -lib/kde2/libkwinquartz_config.so -lib/kde2/libkwinredmond.la -lib/kde2/libkwinredmond.so -lib/kde2/libkwinriscos.la -lib/kde2/libkwinriscos.so -lib/kde2/libkwinsystem.la -lib/kde2/libkwinsystem.so -lib/kde2/libkwinweb.la -lib/kde2/libkwinweb.so -lib/kde2/textthumbnail.la -lib/kde2/textthumbnail.so -lib/kdesktop.la -lib/kdesktop.so -lib/keditbookmarks.la -lib/keditbookmarks.so -lib/kfmclient.la -lib/kfmclient.so -lib/khotkeys.la -lib/khotkeys.so -lib/kicker.la -lib/kicker.so -lib/kjobviewer.la -lib/kjobviewer.so -lib/klegacyimport.la -lib/klegacyimport.so -lib/klipper.la -lib/klipper.so -lib/kmenuedit.la -lib/kmenuedit.so -lib/konqueror.la -lib/konqueror.so -lib/konsole.la -lib/konsole.so -lib/kwin.la -lib/kwin.so -lib/kwrite.la -lib/kwrite.so -lib/kwrited.la -lib/kwrited.so -lib/kxkb.la -lib/kxkb.so -lib/kxmlrpcd.la -lib/kxmlrpcd.so -lib/libccont.a -lib/libchildpanelextension.la -lib/libchildpanelextension.so -lib/libchildpanelextension.so.1 -lib/libclockapplet.la -lib/libclockapplet.so -lib/libclockapplet.so.1 -lib/libdockbarextension.la -lib/libdockbarextension.so -lib/libdockbarextension.so.1 -lib/libkasbarextension.la -lib/libkasbarextension.so -lib/libkasbarextension.so.1 -lib/libkatecore.la -lib/libkatecore.so -lib/libkateinterfaces.la -lib/libkateinterfaces.so -lib/libkcm_keyboard.la -lib/libkcm_keyboard.so -%%MOTIF%%lib/libkcm_nsplugin.la -%%MOTIF%%lib/libkcm_nsplugin.so -lib/libkcm_xmlrpcd.la -lib/libkcm_xmlrpcd.so -lib/libkminipagerapplet.la -lib/libkminipagerapplet.so -lib/libkminipagerapplet.so.1 -lib/libkonq.la -lib/libkonq.so -lib/libkonq.so.4 -lib/libkonqaboutpage.la -lib/libkonqaboutpage.so -lib/libkonqsidebar.la -lib/libkonqsidebar.so -lib/libkonqsidebarplugin.la -lib/libkonqsidebarplugin.so -lib/libkonsolepart.la -lib/libkonsolepart.so -lib/libkrunapplet.la -lib/libkrunapplet.so -lib/libkrunapplet.so.1 -lib/libksysguardapplet.la -lib/libksysguardapplet.so -lib/libksysguardapplet.so.1 -lib/libksystemtrayapplet.la -lib/libksystemtrayapplet.so -lib/libksystemtrayapplet.so.1 -lib/libnaughtyapplet.la -lib/libnaughtyapplet.so -lib/libnaughtyapplet.so.1 -%%MOTIF%%lib/libnsplugin.la -%%MOTIF%%lib/libnsplugin.so -%%MOTIF%%lib/libnsplugin.so.4 -lib/libquicklauncher.la -lib/libquicklauncher.so -lib/libquicklauncher.so.1 -lib/libtaskbar.la -lib/libtaskbar.so -lib/libtaskbar.so.1 -lib/libtaskbarapplet.la -lib/libtaskbarapplet.so -lib/libtaskbarapplet.so.1 -lib/libtaskbarextension.la -lib/libtaskbarextension.so -lib/libtaskbarextension.so.1 -lib/libtaskmanager.la -lib/libtaskmanager.so -lib/libtaskmanager.so.1 -share/applnk/.directory -share/applnk/.hidden/konqfilemgr.desktop -share/applnk/Applications/.directory -share/applnk/Development/.directory -share/applnk/Editors/.directory -share/applnk/Editors/kate.desktop -share/applnk/Editors/kwrite.desktop -share/applnk/Games/.directory -share/applnk/Games/Arcade/.directory -share/applnk/Games/Board/.directory -share/applnk/Games/Card/.directory -share/applnk/Games/TacticStrategy/.directory -share/applnk/Graphics/.directory -share/applnk/Help.desktop -share/applnk/Home.desktop -share/applnk/Internet/.directory -share/applnk/Internet/Terminal/.directory -share/applnk/Internet/keditbookmarks.desktop -share/applnk/Internet/konqbrowser.desktop -share/applnk/KControl.desktop -share/applnk/Multimedia/.directory -share/applnk/Office/.directory -share/applnk/Settings/.directory -share/applnk/Settings/Databases/.directory -share/applnk/Settings/FileBrowsing/.directory -share/applnk/Settings/FileBrowsing/filetypes.desktop -share/applnk/Settings/FileBrowsing/kcmkonq.desktop -share/applnk/Settings/Help/.directory -share/applnk/Settings/Information/.directory -share/applnk/Settings/Information/devices.desktop -share/applnk/Settings/Information/dma.desktop -share/applnk/Settings/Information/interrupts.desktop -share/applnk/Settings/Information/ioports.desktop -share/applnk/Settings/Information/ioslaveinfo.desktop -share/applnk/Settings/Information/kcmusb.desktop -share/applnk/Settings/Information/memory.desktop -share/applnk/Settings/Information/partitions.desktop -share/applnk/Settings/Information/pci.desktop -share/applnk/Settings/Information/processor.desktop -share/applnk/Settings/Information/scsi.desktop -share/applnk/Settings/Information/smbstatus.desktop -share/applnk/Settings/Information/sound.desktop -share/applnk/Settings/Information/xserver.desktop -share/applnk/Settings/LookNFeel/.directory -share/applnk/Settings/LookNFeel/Desktop/background.desktop -share/applnk/Settings/LookNFeel/Desktop/borders.desktop -share/applnk/Settings/LookNFeel/Desktop/desktop.desktop -share/applnk/Settings/LookNFeel/Desktop/virtualdesktops.desktop -share/applnk/Settings/LookNFeel/Themes/iconthemes.desktop -share/applnk/Settings/LookNFeel/Themes/style.desktop -share/applnk/Settings/LookNFeel/Windows/actions.desktop -share/applnk/Settings/LookNFeel/Windows/kwinmouse.desktop -share/applnk/Settings/LookNFeel/Windows/mouse.desktop -share/applnk/Settings/LookNFeel/background.desktop -share/applnk/Settings/LookNFeel/colors.desktop -share/applnk/Settings/LookNFeel/desktop.desktop -share/applnk/Settings/LookNFeel/fonts.desktop -share/applnk/Settings/LookNFeel/icons.desktop -share/applnk/Settings/LookNFeel/kcmlaunch.desktop -share/applnk/Settings/LookNFeel/kcmtaskbar.desktop -share/applnk/Settings/LookNFeel/keys.desktop -share/applnk/Settings/LookNFeel/kthememgr.desktop -share/applnk/Settings/LookNFeel/kwindecoration.desktop -share/applnk/Settings/LookNFeel/kwinoptions.desktop -share/applnk/Settings/LookNFeel/panel.desktop -share/applnk/Settings/LookNFeel/screensaver.desktop -share/applnk/Settings/LookNFeel/style.desktop -share/applnk/Settings/LookNFeel/virtualdesktops.desktop -share/applnk/Settings/Network/.directory -share/applnk/Settings/Network/email.desktop -share/applnk/Settings/Network/ioslaveinfo.desktop -share/applnk/Settings/Network/netpref.desktop -share/applnk/Settings/Network/smb.desktop -share/applnk/Settings/Network/socks.desktop -share/applnk/Settings/Peripherals/.directory -share/applnk/Settings/Peripherals/keyboard.desktop -share/applnk/Settings/Peripherals/mouse.desktop -share/applnk/Settings/Personalization/.directory -share/applnk/Settings/Personalization/crypto.desktop -share/applnk/Settings/Personalization/kcmaccess.desktop -share/applnk/Settings/Personalization/kcmlayout.desktop -share/applnk/Settings/Personalization/language.desktop -share/applnk/Settings/Personalization/passwords.desktop -share/applnk/Settings/Personalization/spellchecking.desktop -share/applnk/Settings/PowerControl/.directory -share/applnk/Settings/PowerControl/energy.desktop -share/applnk/Settings/Sound/.directory -share/applnk/Settings/Sound/arts.desktop -share/applnk/Settings/Sound/bell.desktop -share/applnk/Settings/Sound/kcmnotify.desktop -share/applnk/Settings/Sound/midi.desktop -share/applnk/Settings/System/.directory -share/applnk/Settings/System/clock.desktop -share/applnk/Settings/System/kcmkonsole.desktop -share/applnk/Settings/System/kcmsmserver.desktop -share/applnk/Settings/System/kdm.desktop -share/applnk/Settings/System/printmgr.desktop -share/applnk/Settings/WebBrowsing/.directory -share/applnk/Settings/WebBrowsing/cookies.desktop -share/applnk/Settings/WebBrowsing/ebrowsing.desktop -share/applnk/Settings/WebBrowsing/kcmcss.desktop -share/applnk/Settings/WebBrowsing/konqhtml.desktop -%%MOTIF%%share/applnk/Settings/WebBrowsing/nsplugin.desktop -share/applnk/Settings/WebBrowsing/proxy.desktop -share/applnk/Settings/WebBrowsing/smb.desktop -share/applnk/Settings/WebBrowsing/useragent.desktop -share/applnk/System/.directory -share/applnk/System/ScreenSavers/.directory -share/applnk/System/ScreenSavers/KBanner.desktop -share/applnk/System/ScreenSavers/KBlankscreen.desktop -share/applnk/System/ScreenSavers/KBlob.desktop -share/applnk/System/ScreenSavers/KBouboule.desktop -share/applnk/System/ScreenSavers/KLines.desktop -share/applnk/System/ScreenSavers/KLorenz.desktop -share/applnk/System/ScreenSavers/KMatrix.desktop -share/applnk/System/ScreenSavers/KMorph3D.desktop -share/applnk/System/ScreenSavers/KPipes.desktop -share/applnk/System/ScreenSavers/KPolygon.desktop -share/applnk/System/ScreenSavers/KPyro.desktop -share/applnk/System/ScreenSavers/KRandom.desktop -share/applnk/System/ScreenSavers/KRock.desktop -share/applnk/System/ScreenSavers/KScience.desktop -share/applnk/System/ScreenSavers/KSlidescreen.desktop -share/applnk/System/ScreenSavers/KSlideshow.desktop -share/applnk/System/ScreenSavers/KSpace.desktop -share/applnk/System/ScreenSavers/KSwarm.desktop -share/applnk/System/ScreenSavers/KVm.desktop -share/applnk/System/ScreenSavers/kpartsaver.desktop -share/applnk/System/Terminal/.directory -share/applnk/System/kappfinder.desktop -share/applnk/System/kfmclient.desktop -share/applnk/System/kfmclient_dir.desktop -share/applnk/System/kfmclient_html.desktop -share/applnk/System/klegacyimport.desktop -share/applnk/System/kmenuedit.desktop -share/applnk/System/konquerorsu.desktop -share/applnk/System/konsole.desktop -share/applnk/System/konsolesu.desktop -share/applnk/System/kpersonalizer.desktop -share/applnk/System/ksysguard.desktop -share/applnk/Toys/.directory -share/applnk/Toys/ktip.desktop -share/applnk/Utilities/.directory -share/applnk/Utilities/kaddressbook.desktop -share/applnk/Utilities/kdeprintfax.desktop -share/applnk/Utilities/kjobviewer.desktop -share/applnk/Utilities/klipper.desktop -share/applnk/Utilities/kpager.desktop -share/applnk/WordProcessing/.directory -share/applnk/ksysguard/eventsrc -share/apps/clockapplet/pics/lcd.png -share/apps/drkonqi/debuggers/gdbrc -share/apps/drkonqi/pics/konqi.png -share/apps/drkonqi/presets/developerrc -share/apps/drkonqi/presets/enduserrc -share/apps/kaddressbook/kaddressbookui.rc -share/apps/kaddressbook/pics/abentry.xpm -share/apps/kaddressbook/pics/delete.xpm -share/apps/kaddressbook/pics/down.xpm -share/apps/kaddressbook/pics/filemail.xpm -share/apps/kaddressbook/pics/find.xpm -share/apps/kaddressbook/pics/group.xpm -share/apps/kaddressbook/pics/page.xpm -share/apps/kaddressbook/pics/up.xpm -share/apps/kappfinder/apps/Development/ddd.desktop -share/apps/kappfinder/apps/Development/designer.desktop -share/apps/kappfinder/apps/Development/dlgedit.desktop -share/apps/kappfinder/apps/Development/linguist.desktop -share/apps/kappfinder/apps/Editors/emacs.desktop -share/apps/kappfinder/apps/Editors/gvim.desktop -share/apps/kappfinder/apps/Editors/lemacs.desktop -share/apps/kappfinder/apps/Editors/nedit.desktop -share/apps/kappfinder/apps/Editors/xedit.desktop -share/apps/kappfinder/apps/Editors/xemacs.desktop -share/apps/kappfinder/apps/Games/Board/xboard.desktop -share/apps/kappfinder/apps/Games/Card/PySol.desktop -share/apps/kappfinder/apps/Games/Clanbomber.desktop -share/apps/kappfinder/apps/Games/Emulators/qmamecat.desktop -share/apps/kappfinder/apps/Games/TacticStrategy/freeciv.desktop -share/apps/kappfinder/apps/Games/defendguin.desktop -share/apps/kappfinder/apps/Games/penguin-command.desktop -share/apps/kappfinder/apps/Games/xshipwars.desktop -share/apps/kappfinder/apps/Graphics/gimp.desktop -share/apps/kappfinder/apps/Graphics/xfig.desktop -share/apps/kappfinder/apps/Graphics/xpaint.desktop -share/apps/kappfinder/apps/Graphics/xv.desktop -share/apps/kappfinder/apps/Internet/Terminal/lftp.desktop -share/apps/kappfinder/apps/Internet/Terminal/mutt.desktop -share/apps/kappfinder/apps/Internet/Terminal/ncftp.desktop -share/apps/kappfinder/apps/Internet/Terminal/pine.desktop -share/apps/kappfinder/apps/Internet/arena.desktop -share/apps/kappfinder/apps/Internet/coolmail.desktop -share/apps/kappfinder/apps/Internet/ethereal.desktop -share/apps/kappfinder/apps/Internet/licq.desktop -share/apps/kappfinder/apps/Internet/mozilla.desktop -share/apps/kappfinder/apps/Internet/netscape.desktop -share/apps/kappfinder/apps/Internet/xbiff.desktop -share/apps/kappfinder/apps/Internet/xchat.desktop -share/apps/kappfinder/apps/Internet/xfmail.desktop -share/apps/kappfinder/apps/Internet/xftp.desktop -share/apps/kappfinder/apps/Multimedia/alevt.desktop -share/apps/kappfinder/apps/Multimedia/aviplay.desktop -share/apps/kappfinder/apps/Multimedia/gtv.desktop -share/apps/kappfinder/apps/Multimedia/mtv.desktop -share/apps/kappfinder/apps/Multimedia/realplayer.desktop -share/apps/kappfinder/apps/Multimedia/xawtv.desktop -share/apps/kappfinder/apps/Multimedia/xmms-enqueue.desktop -share/apps/kappfinder/apps/Multimedia/xmms.desktop -share/apps/kappfinder/apps/Office/Applix.desktop -share/apps/kappfinder/apps/Office/XAcc.desktop -share/apps/kappfinder/apps/Office/XsLite.desktop -share/apps/kappfinder/apps/Office/plan.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Ant.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Atlantis.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Attraction.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Bouboule.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Braid.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Bubble3d.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Bubbles.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Cage.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Compass.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Coral.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Crystal.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Cynosure.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Demon.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Drift.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Fadeplot.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Flag.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Flame.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Flow.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Forest.desktop -share/apps/kappfinder/apps/System/ScreenSavers/GLPlanet.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Galaxy.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Gears.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Goop.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Grav.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Hopalong.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Hypercube.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Ifs.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Imsmap.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Interference.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Julia.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Kaleidescope.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Kumppa.desktop -share/apps/kappfinder/apps/System/ScreenSavers/LMorph.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Lament.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Laser.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Lightning.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Lissie.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Moenius.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Penrose.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Phosphor.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Pulsar.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Rubik.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Slip.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Sonar.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Sproingies.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Stairs.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Starfish.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Strange.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Superquadrics.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Swirl.desktop -share/apps/kappfinder/apps/System/ScreenSavers/T3d.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Triangle.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Vines.desktop -share/apps/kappfinder/apps/System/ScreenSavers/Worm.desktop -share/apps/kappfinder/apps/System/ScreenSavers/XFlame.desktop -share/apps/kappfinder/apps/System/ScreenSavers/XJack.desktop -share/apps/kappfinder/apps/System/ScreenSavers/XMatrix.desktop -share/apps/kappfinder/apps/System/ScreenSavers/XPipes.desktop -share/apps/kappfinder/apps/System/Terminal/procinfo.desktop -share/apps/kappfinder/apps/System/Terminal/vmstat.desktop -share/apps/kappfinder/apps/System/sam.desktop -share/apps/kappfinder/apps/System/xosview.desktop -share/apps/kappfinder/apps/Toys/xeyes.desktop -share/apps/kappfinder/apps/Toys/xpinguin.desktop -share/apps/kappfinder/apps/Utilities/XUtilities/xcalc.desktop -share/apps/kappfinder/apps/Utilities/XUtilities/xclipboard.desktop -share/apps/kappfinder/apps/Utilities/XUtilities/xclock.desktop -share/apps/kappfinder/apps/Utilities/XUtilities/xconsole.desktop -share/apps/kappfinder/apps/Utilities/XUtilities/xload.desktop -share/apps/kappfinder/apps/Utilities/XUtilities/xmag.desktop -share/apps/kappfinder/apps/Utilities/XUtilities/xterm.desktop -share/apps/kappfinder/apps/WordProcessing/WordPerfect.desktop -share/apps/kappfinder/apps/WordProcessing/WordPerfect2000.desktop -share/apps/kappfinder/apps/WordProcessing/acroread.desktop -share/apps/kappfinder/apps/WordProcessing/ghostview.desktop -share/apps/kappfinder/apps/WordProcessing/gv.desktop -share/apps/kappfinder/apps/WordProcessing/lyx.desktop -share/apps/kappfinder/apps/WordProcessing/pybliographic.desktop -share/apps/kappfinder/apps/WordProcessing/xdvi.desktop -share/apps/kappfinder/apps/WordProcessing/xpdf.desktop -share/apps/kate/icons/hicolor/16x16/actions/curfiledir.png -share/apps/kate/icons/hicolor/16x16/actions/highlighting.png -share/apps/kate/icons/hicolor/16x16/actions/modified.png -share/apps/kate/icons/hicolor/16x16/actions/null.png -share/apps/kate/icons/hicolor/16x16/actions/save_all.png -share/apps/kate/icons/hicolor/22x22/actions/save_all.png -share/apps/kate/icons/hicolor/32x32/actions/highlighting.png -share/apps/kate/icons/hicolor/32x32/actions/indent.png -share/apps/kate/icons/hicolor/32x32/actions/unindent.png -share/apps/kate/icons/hicolor/48x48/actions/indent.png -share/apps/kate/icons/hicolor/48x48/actions/unindent.png -share/apps/kate/icons/locolor/16x16/actions/curfiledir.png -share/apps/kate/icons/locolor/16x16/actions/indent.png -share/apps/kate/icons/locolor/16x16/actions/modified.png -share/apps/kate/icons/locolor/16x16/actions/null.png -share/apps/kate/icons/locolor/16x16/actions/save_all.png -share/apps/kate/icons/locolor/16x16/actions/unindent.png -share/apps/kate/icons/locolor/22x22/actions/indent.png -share/apps/kate/icons/locolor/22x22/actions/save_all.png -share/apps/kate/icons/locolor/22x22/actions/unindent.png -share/apps/kate/katepartbrowserui.rc -share/apps/kate/katepartui.rc -share/apps/kate/kateui.rc -share/apps/kate/pics/fileselector.png -share/apps/kate/pics/indicator_empty.png -share/apps/kate/pics/indicator_viewactive.png -share/apps/kate/pics/openfiles.png -share/apps/kate/syntax/ada.xml -share/apps/kate/syntax/bash.xml -share/apps/kate/syntax/c.xml -share/apps/kate/syntax/changelog.xml -share/apps/kate/syntax/cpp.xml -share/apps/kate/syntax/css.xml -share/apps/kate/syntax/desktop.xml -share/apps/kate/syntax/diff.xml -share/apps/kate/syntax/html.xml -share/apps/kate/syntax/java.xml -share/apps/kate/syntax/kbasic.xml -share/apps/kate/syntax/language.dtd -share/apps/kate/syntax/latex.xml -share/apps/kate/syntax/objectivec.xml -share/apps/kate/syntax/perl.xml -share/apps/kate/syntax/php.xml -share/apps/kate/syntax/postscript.xml -share/apps/kate/syntax/rpmspec.xml -share/apps/kate/syntax/ruby.xml -share/apps/kate/syntax/sql.xml -share/apps/kate/syntax/syntax.template -share/apps/kate/syntax/vhdl.xml -share/apps/kate/syntax/xml.xml -share/apps/kbookmark/directory_bookmarkbar.desktop -share/apps/kcmcss/template.css -share/apps/kcminput/cursor_large.pcf.gz -share/apps/kcminput/pics/mouse_lh.png -share/apps/kcminput/pics/mouse_rh.png -share/apps/kcmkeys/global/global-kde3.kksrc -share/apps/kcmkeys/global/global-kde4.kksrc -share/apps/kcmkeys/global/global-mac3.kksrc -share/apps/kcmkeys/global/global-unix3.kksrc -share/apps/kcmkeys/global/global-win3.kksrc -share/apps/kcmkeys/global/global-win4.kksrc -share/apps/kcmkeys/standard/app-kde3.kksrc -share/apps/kcmkeys/standard/app-kde4.kksrc -share/apps/kcmkeys/standard/app-mac3.kksrc -share/apps/kcmkeys/standard/app-unix3.kksrc -share/apps/kcmkeys/standard/app-win3.kksrc -share/apps/kcmlocale/pics/background.png -share/apps/kcmusb/usb.ids -share/apps/kconf_update/klipper-1-2.pl -share/apps/kconf_update/klipperrc.upd -share/apps/kconf_update/konsole.upd -share/apps/kcontrol/kcontrolui.rc -share/apps/kcontrol/pics/energybig.png -share/apps/kcontrol/pics/lo-energy.png -share/apps/kcontrol/pics/logo.png -share/apps/kcontrol/pics/mini-world.png -share/apps/kcontrol/pics/monitor.png -share/apps/kcontrol/pics/onlyone.png -share/apps/kcontrol/pics/overlapping.png -share/apps/kcontrol/pics/part1.png -share/apps/kcontrol/pics/part2.png -share/apps/kcontrol/pics/part3.png -share/apps/kcontrol/pics/play.png -share/apps/kdcop/kdcopui.rc -share/apps/kdeprintfax/anytops -share/apps/kdeprintfax/faxfilters -share/apps/kdeprintfax/icons/hicolor/16x16/actions/abentry.png -share/apps/kdeprintfax/kdeprintfaxui.rc -share/apps/kdesktop/DesktopLinks/Home.desktop -share/apps/kdesktop/directory.autostart -share/apps/kdesktop/directory.desktop -share/apps/kdesktop/directory.templates -share/apps/kdesktop/directory.trash -share/apps/kdesktop/patterns/fish.desktop -share/apps/kdesktop/patterns/fish.png -share/apps/kdesktop/patterns/flowers.desktop -share/apps/kdesktop/patterns/flowers.png -share/apps/kdesktop/patterns/night-rock.desktop -share/apps/kdesktop/patterns/night-rock.jpg -share/apps/kdesktop/patterns/pavement.desktop -share/apps/kdesktop/patterns/pavement.png -share/apps/kdesktop/patterns/rattan.desktop -share/apps/kdesktop/patterns/rattan.png -share/apps/kdesktop/patterns/stonewall2.desktop -share/apps/kdesktop/patterns/stonewall2.png -share/apps/kdesktop/patterns/triangles.desktop -share/apps/kdesktop/patterns/triangles.png -share/apps/kdesktop/pics/kde2.xbm -share/apps/kdesktop/pics/ksslogo.png -share/apps/kdesktop/pics/splash.png -share/apps/kdesktop/pics/splash2.png -share/apps/kdesktop/programs/kwebdesktop.desktop -share/apps/kdesktop/programs/xearth.desktop -share/apps/kdesktop/programs/xglobe.desktop -share/apps/kdesktop/programs/xplanet.desktop -share/apps/kdewizard/pics/wizard_small.png -share/apps/kdewizard/tips -share/apps/kdisplay/app-defaults/AAAAAAGeneral.ad -share/apps/kdisplay/app-defaults/AAAMotif.ad -share/apps/kdisplay/app-defaults/AAATk.ad -share/apps/kdisplay/app-defaults/AAAXaw.ad -share/apps/kdisplay/app-defaults/AcroRead.ad -share/apps/kdisplay/app-defaults/Editres.ad -share/apps/kdisplay/app-defaults/Emacs.ad -share/apps/kdisplay/app-defaults/GV.ad -share/apps/kdisplay/app-defaults/ML.ad -share/apps/kdisplay/app-defaults/Nedit.ad -share/apps/kdisplay/app-defaults/Netscape.ad -share/apps/kdisplay/app-defaults/RVPlayer.ad -share/apps/kdisplay/app-defaults/WPerfect.ad -share/apps/kdisplay/app-defaults/XCalc.ad -share/apps/kdisplay/app-defaults/XOsview.ad -share/apps/kdisplay/app-defaults/XTerm.ad -share/apps/kdisplay/app-defaults/XV.ad -share/apps/kdisplay/app-defaults/Xawtv.ad -share/apps/kdisplay/app-defaults/Xdvi.ad -share/apps/kdisplay/app-defaults/Xpdf.ad -share/apps/kdisplay/color-schemes/AtlasGreen.kcsrc -share/apps/kdisplay/color-schemes/BeOS.kcsrc -share/apps/kdisplay/color-schemes/BlueSlate.kcsrc -share/apps/kdisplay/color-schemes/CDE.kcsrc -share/apps/kdisplay/color-schemes/DarkBlue.kcsrc -share/apps/kdisplay/color-schemes/DesertRed.kcsrc -share/apps/kdisplay/color-schemes/DigitalCDE.kcsrc -share/apps/kdisplay/color-schemes/EveX.kcsrc -share/apps/kdisplay/color-schemes/KDEOne.kcsrc -share/apps/kdisplay/color-schemes/MediaPeach.kcsrc -share/apps/kdisplay/color-schemes/Next.kcsrc -share/apps/kdisplay/color-schemes/PaleGray.kcsrc -share/apps/kdisplay/color-schemes/PointReyesGreen.kcsrc -share/apps/kdisplay/color-schemes/Pumpkin.kcsrc -share/apps/kdisplay/color-schemes/SolarisCDE.kcsrc -share/apps/kdisplay/color-schemes/Storm.kcsrc -share/apps/kdisplay/color-schemes/System.kcsrc -share/apps/kdisplay/color-schemes/Windows2000.kcsrc -share/apps/kdisplay/color-schemes/Windows95.kcsrc -share/apps/kdm/pics/kdeflower.png -share/apps/kdm/pics/kdelogo.png -share/apps/kdm/pics/users/default.png -share/apps/kdm/pics/users/default2.png -share/apps/kdm/pics/users/root.png -share/apps/kdm/pics/users/root2.png -share/apps/keditbookmarks/keditbookmarksui.rc -share/apps/kfind/icons/locolor/22x22/actions/archive.png -share/apps/kfind/icons/locolor/22x22/actions/delete.png -share/apps/kfind/icons/locolor/22x22/actions/idea.png -share/apps/kfind/icons/locolor/22x22/actions/info.png -share/apps/kfind/icons/locolor/22x22/actions/openfile.png -share/apps/kfind/icons/locolor/22x22/actions/save.png -share/apps/kfind/icons/locolor/22x22/actions/search.png -share/apps/khelpcenter/glossary.html.in -share/apps/khelpcenter/intro.html.in -share/apps/khelpcenter/khelpcenterui.rc -share/apps/khelpcenter/plugins/Tutorials/.directory -share/apps/khelpcenter/plugins/Tutorials/quickstart.desktop -share/apps/khelpcenter/plugins/Tutorials/visualdict.desktop -share/apps/kicker/applets/clockapplet.desktop -share/apps/kicker/applets/kminipagerapplet.desktop -share/apps/kicker/applets/krunapplet.desktop -share/apps/kicker/applets/ksysguardapplet.desktop -share/apps/kicker/applets/ksystemtrayapplet.desktop -share/apps/kicker/applets/ktaskbarapplet.desktop -share/apps/kicker/applets/naughtyapplet.desktop -share/apps/kicker/applets/quicklauncher.desktop -share/apps/kicker/default-apps -share/apps/kicker/extensions/childpanelextension.desktop -share/apps/kicker/extensions/dockbarextension.desktop -share/apps/kicker/extensions/kasbarextension.desktop -share/apps/kicker/extensions/taskbarextension.desktop -share/apps/kicker/icons/hicolor/16x16/actions/modified.png -share/apps/kicker/icons/locolor/16x16/actions/modified.png -share/apps/kicker/pics/disk1.png -share/apps/kicker/pics/disk2.png -share/apps/kicker/pics/disk3.png -share/apps/kicker/pics/disk4.png -share/apps/kicker/pics/disk5.png -share/apps/kicker/pics/disk6.png -share/apps/kicker/pics/disk7.png -share/apps/kicker/pics/disk8.png -share/apps/kicker/tiles/blue_wood_large_down.png -share/apps/kicker/tiles/blue_wood_large_up.png -share/apps/kicker/tiles/blue_wood_normal_down.png -share/apps/kicker/tiles/blue_wood_normal_up.png -share/apps/kicker/tiles/blue_wood_tiny_down.png -share/apps/kicker/tiles/blue_wood_tiny_up.png -share/apps/kicker/tiles/green_wood_large_down.png -share/apps/kicker/tiles/green_wood_large_up.png -share/apps/kicker/tiles/green_wood_normal_down.png -share/apps/kicker/tiles/green_wood_normal_up.png -share/apps/kicker/tiles/green_wood_tiny_down.png -share/apps/kicker/tiles/green_wood_tiny_up.png -share/apps/kicker/tiles/kde2_button_large_down.png -share/apps/kicker/tiles/kde2_button_large_up.png -share/apps/kicker/tiles/kde2_button_normal_down.png -share/apps/kicker/tiles/kde2_button_normal_up.png -share/apps/kicker/tiles/kde2_button_tiny_down.png -share/apps/kicker/tiles/kde2_button_tiny_up.png -share/apps/kicker/tiles/light_green_large_down.png -share/apps/kicker/tiles/light_green_large_up.png -share/apps/kicker/tiles/light_green_normal_down.png -share/apps/kicker/tiles/light_green_normal_up.png -share/apps/kicker/tiles/light_green_tiny_down.png -share/apps/kicker/tiles/light_green_tiny_up.png -share/apps/kicker/tiles/light_grey_large_down.png -share/apps/kicker/tiles/light_grey_large_up.png -share/apps/kicker/tiles/light_grey_normal_up.png -share/apps/kicker/tiles/light_grey_tiny_down.png -share/apps/kicker/tiles/light_grey_tiny_up.png -share/apps/kicker/tiles/light_pastel_large_down.png -share/apps/kicker/tiles/light_pastel_large_up.png -share/apps/kicker/tiles/light_pastel_normal_up.png -share/apps/kicker/tiles/light_pastel_tiny_down.png -share/apps/kicker/tiles/light_pastel_tiny_up.png -share/apps/kicker/tiles/light_purple_large_down.png -share/apps/kicker/tiles/light_purple_large_up.png -share/apps/kicker/tiles/light_purple_normal_down.png -share/apps/kicker/tiles/light_purple_normal_up.png -share/apps/kicker/tiles/light_purple_tiny_down.png -share/apps/kicker/tiles/light_purple_tiny_up.png -share/apps/kicker/tiles/nuts_andBolts_large_down.png -share/apps/kicker/tiles/nuts_andBolts_large_up.png -share/apps/kicker/tiles/nuts_andBolts_normal_down.png -share/apps/kicker/tiles/nuts_andBolts_normal_up.png -share/apps/kicker/tiles/nuts_andBolts_tiny_down.png -share/apps/kicker/tiles/nuts_andBolts_tiny_up.png -share/apps/kicker/tiles/red_wood_large_down.png -share/apps/kicker/tiles/red_wood_large_up.png -share/apps/kicker/tiles/red_wood_normal_down.png -share/apps/kicker/tiles/red_wood_normal_up.png -share/apps/kicker/tiles/red_wood_tiny_down.png -share/apps/kicker/tiles/red_wood_tiny_up.png -share/apps/kicker/tiles/solid_blue_large_down.png -share/apps/kicker/tiles/solid_blue_large_up.png -share/apps/kicker/tiles/solid_blue_normal_down.png -share/apps/kicker/tiles/solid_blue_normal_up.png -share/apps/kicker/tiles/solid_blue_tiny_down.png -share/apps/kicker/tiles/solid_blue_tiny_up.png -share/apps/kicker/tiles/solid_gray_large_down.png -share/apps/kicker/tiles/solid_gray_large_up.png -share/apps/kicker/tiles/solid_gray_normal_down.png -share/apps/kicker/tiles/solid_gray_normal_up.png -share/apps/kicker/tiles/solid_gray_tiny_down.png -share/apps/kicker/tiles/solid_gray_tiny_up.png -share/apps/kicker/tiles/solid_green_large_down.png -share/apps/kicker/tiles/solid_green_large_up.png -share/apps/kicker/tiles/solid_green_normal_down.png -share/apps/kicker/tiles/solid_green_normal_up.png -share/apps/kicker/tiles/solid_green_tiny_down.png -share/apps/kicker/tiles/solid_green_tiny_up.png -share/apps/kicker/tiles/solid_orange_large_down.png -share/apps/kicker/tiles/solid_orange_large_up.png -share/apps/kicker/tiles/solid_orange_normal_down.png -share/apps/kicker/tiles/solid_orange_normal_up.png -share/apps/kicker/tiles/solid_orange_tiny_down.png -share/apps/kicker/tiles/solid_orange_tiny_up.png -share/apps/kicker/tiles/solid_pastel_large_down.png -share/apps/kicker/tiles/solid_pastel_large_up.png -share/apps/kicker/tiles/solid_pastel_normal_down.png -share/apps/kicker/tiles/solid_pastel_normal_up.png -share/apps/kicker/tiles/solid_pastel_tiny_down.png -share/apps/kicker/tiles/solid_pastel_tiny_up.png -share/apps/kicker/tiles/solid_purple_large_down.png -share/apps/kicker/tiles/solid_purple_large_up.png -share/apps/kicker/tiles/solid_purple_normal_down.png -share/apps/kicker/tiles/solid_purple_normal_up.png -share/apps/kicker/tiles/solid_purple_tiny_down.png -share/apps/kicker/tiles/solid_purple_tiny_up.png -share/apps/kicker/tiles/solid_red_large_down.png -share/apps/kicker/tiles/solid_red_large_up.png -share/apps/kicker/tiles/solid_red_normal_down.png -share/apps/kicker/tiles/solid_red_normal_up.png -share/apps/kicker/tiles/solid_red_tiny_down.png -share/apps/kicker/tiles/solid_red_tiny_up.png -share/apps/kicker/tiles/solid_tgri_large_down.png -share/apps/kicker/tiles/solid_tgri_large_up.png -share/apps/kicker/tiles/solid_tgri_normal_down.png -share/apps/kicker/tiles/solid_tgri_normal_up.png -share/apps/kicker/tiles/solid_tgri_tiny_down.png -share/apps/kicker/tiles/solid_tgri_tiny_up.png -share/apps/kicker/wallpapers/deck_plate.png -share/apps/kicker/wallpapers/green_line.png -share/apps/kicker/wallpapers/rail.png -share/apps/kio_finger/kio_finger.css -share/apps/kio_finger/kio_finger.pl -share/apps/kio_info/kde-info2html -share/apps/kio_info/kde-info2html.conf -share/apps/kioslave/smb.html -share/apps/kjobviewer/kjobviewerui.rc -share/apps/kmenuedit/icons/hicolor/22x22/actions/menu_new.png -share/apps/kmenuedit/icons/hicolor/32x32/actions/menu_new.png -share/apps/kmenuedit/icons/locolor/16x16/actions/menu_new.png -share/apps/kmenuedit/kmenueditui.rc -share/apps/konqiconview/konq_iconview.rc -share/apps/konqiconview/konq_multicolumnview.rc -share/apps/konqiconview/kpartplugins/kshellcmdplugin.rc -share/apps/konqlistview/konq_detailedlistview.rc -share/apps/konqlistview/konq_textview.rc -share/apps/konqlistview/konq_treeview.rc -share/apps/konqlistview/kpartplugins/kshellcmdplugin.rc -share/apps/konqsidebartng/add/sidebar_classic_add.desktop -share/apps/konqsidebartng/add/virtualfolderadd.desktop -share/apps/konqsidebartng/dirtree/bookmarks_module.desktop -share/apps/konqsidebartng/dirtree/dirtree_module.desktop -share/apps/konqsidebartng/dirtree/history_module.desktop -share/apps/konqsidebartng/entries/.version -share/apps/konqsidebartng/entries/bookmarks.desktop -share/apps/konqsidebartng/entries/history.desktop -share/apps/konqsidebartng/entries/home.desktop -share/apps/konqsidebartng/entries/remote.desktop -share/apps/konqsidebartng/entries/root.desktop -share/apps/konqsidebartng/entries/services.desktop -share/apps/konqsidebartng/entries/sidebar_classic.desktop -share/apps/konqsidebartng/virtual_folders/remote/.directory -share/apps/konqsidebartng/virtual_folders/remote/ftp/.directory -share/apps/konqsidebartng/virtual_folders/remote/ftp/kde_ftp.desktop -share/apps/konqsidebartng/virtual_folders/remote/web/.directory -share/apps/konqsidebartng/virtual_folders/remote/web/apps_web.desktop -share/apps/konqsidebartng/virtual_folders/remote/web/dot_web.desktop -share/apps/konqsidebartng/virtual_folders/remote/web/kde_web.desktop -share/apps/konqsidebartng/virtual_folders/services/.directory -share/apps/konqsidebartng/virtual_folders/services/audiocd.desktop -share/apps/konqueror/about/back.png -share/apps/konqueror/about/background.png -share/apps/konqueror/about/bgtable.png -share/apps/konqueror/about/gohome.png -share/apps/konqueror/about/history.png -share/apps/konqueror/about/intro.html -share/apps/konqueror/about/kdelogo2.png -share/apps/konqueror/about/konq.css -share/apps/konqueror/about/konqueror.png -share/apps/konqueror/about/lightning.png -share/apps/konqueror/about/lines.png -share/apps/konqueror/about/lines2.png -share/apps/konqueror/about/locationbar_erase.png -share/apps/konqueror/about/more.png -share/apps/konqueror/about/openterm.png -share/apps/konqueror/about/pointers.gif -share/apps/konqueror/about/shadow1.png -share/apps/konqueror/about/specs.html -share/apps/konqueror/about/tips.html -share/apps/konqueror/about/view_left_right.png -share/apps/konqueror/about/viewmag.png -share/apps/konqueror/about/window_fullscreen.png -share/apps/konqueror/dirtree/bookmarks.desktop -share/apps/konqueror/dirtree/history.desktop -share/apps/konqueror/dirtree/home.desktop -share/apps/konqueror/dirtree/remote/.directory -share/apps/konqueror/dirtree/remote/ftp/.directory -share/apps/konqueror/dirtree/remote/ftp/kde_ftp.desktop -share/apps/konqueror/dirtree/remote/web/.directory -share/apps/konqueror/dirtree/remote/web/apps_web.desktop -share/apps/konqueror/dirtree/remote/web/dot_web.desktop -share/apps/konqueror/dirtree/remote/web/kde_web.desktop -share/apps/konqueror/dirtree/root.desktop -share/apps/konqueror/dirtree/services/.directory -share/apps/konqueror/dirtree/services/audiocd.desktop -share/apps/konqueror/icons/hicolor/16x16/actions/history_clear.png -share/apps/konqueror/icons/hicolor/16x16/actions/kde1.png -share/apps/konqueror/icons/hicolor/16x16/actions/kde2.png -share/apps/konqueror/icons/hicolor/16x16/actions/kde3.png -share/apps/konqueror/icons/hicolor/16x16/actions/kde4.png -share/apps/konqueror/icons/hicolor/16x16/actions/kde5.png -share/apps/konqueror/icons/hicolor/16x16/actions/kde6.png -share/apps/konqueror/konqueror.rc -share/apps/konqueror/pics/indicator_anchor.png -share/apps/konqueror/pics/indicator_connect.png -share/apps/konqueror/pics/indicator_empty.png -share/apps/konqueror/pics/indicator_noconnect.png -share/apps/konqueror/pics/indicator_viewactive.png -share/apps/konqueror/pics/thumbnailfont_7x4.png -share/apps/konqueror/profiles/filemanagement -share/apps/konqueror/profiles/filepreview -share/apps/konqueror/profiles/midnightcommander -share/apps/konqueror/profiles/webbrowsing -share/apps/konqueror/tiles/bluemorning.png -share/apps/konqueror/tiles/canvas.png -share/apps/konqueror/tiles/checker.png -share/apps/konqueror/tiles/cubic.png -share/apps/konqueror/tiles/kde4ever.png -share/apps/konqueror/tiles/kenwimer.png -share/apps/konqueror/tiles/noise.png -share/apps/konqueror/tiles/paper_flieder.png -share/apps/konqueror/tiles/punika_attack.png -share/apps/konqueror/tiles/redfiber.png -share/apps/konsole/BlackOnLightYellow.schema -share/apps/konsole/BlackOnWhite.schema -share/apps/konsole/DarkPicture.schema -share/apps/konsole/Example.Schema -share/apps/konsole/GreenOnBlack.schema -share/apps/konsole/GreenTint.schema -share/apps/konsole/GreenTint_MC.schema -share/apps/konsole/LightPicture.schema -share/apps/konsole/Linux.schema -share/apps/konsole/README.KeyTab -share/apps/konsole/README.Schema -share/apps/konsole/Transparent.schema -share/apps/konsole/Transparent_MC.schema -share/apps/konsole/Transparent_darkbg.schema -share/apps/konsole/Transparent_lightbg.schema -share/apps/konsole/WhiteOnBlack.schema -share/apps/konsole/XTerm.schema -share/apps/konsole/default.Keytab -share/apps/konsole/default.Schema -share/apps/konsole/konsole_part.rc -share/apps/konsole/linux.desktop -share/apps/konsole/linux.keytab -share/apps/konsole/mc.desktop -share/apps/konsole/shell.desktop -share/apps/konsole/su.desktop -share/apps/konsole/sumc.desktop -share/apps/konsole/syscolor.schema -share/apps/konsole/vim.schema -share/apps/konsole/vt100.keytab -share/apps/konsole/vt420pc.keytab -share/apps/konsole/x11r5.keytab -share/apps/kpersonalizer/pics/step1.png -share/apps/kpersonalizer/pics/step2.png -share/apps/kpersonalizer/pics/step3.png -share/apps/kpersonalizer/pics/step4.png -share/apps/kpersonalizer/pics/step5.png -share/apps/kscreensaver/kscience.png -share/apps/ksplash/pics/locolor/splash_active_bar.png -share/apps/ksplash/pics/locolor/splash_bottom.png -share/apps/ksplash/pics/locolor/splash_inactive_bar.png -share/apps/ksplash/pics/locolor/splash_top.png -share/apps/ksplash/pics/splash_active_bar.png -share/apps/ksplash/pics/splash_bottom.png -share/apps/ksplash/pics/splash_inactive_bar.png -share/apps/ksplash/pics/splash_top.png -share/apps/ksysguard/KSysGuardApplet.xml -share/apps/ksysguard/ProcessTable.sgrd -share/apps/ksysguard/SystemLoad.sgrd -share/apps/ksysguard/ksysguardui.rc -share/apps/ksysguard/pics/X.png -share/apps/ksysguard/pics/computer.png -share/apps/ksysguard/pics/daemon.png -share/apps/ksysguard/pics/kdeapp.png -share/apps/ksysguard/pics/kernel.png -share/apps/ksysguard/pics/ksysguardd.png -share/apps/ksysguard/pics/running.png -share/apps/ksysguard/pics/shell.png -share/apps/ksysguard/pics/tools.png -share/apps/ksysguard/pics/unknownapp.png -share/apps/ksysguard/pics/waiting.png -share/apps/kthememgr/Themes/Default.ktheme -share/apps/kthememgr/Themes/MGBreizh.ktheme -share/apps/kthememgr/Themes/Nostalgy.ktheme -share/apps/kthememgr/Themes/Template.themerc -share/apps/kthememgr/Themes/Wood.ktheme -share/apps/kthememgr/theme.mappings -share/apps/kwin/b2.desktop -share/apps/kwin/eventsrc -share/apps/kwin/icewm-themes/closeA.xpm -share/apps/kwin/icewm-themes/closeI.xpm -share/apps/kwin/icewm-themes/default.theme -share/apps/kwin/icewm-themes/depthA.xpm -share/apps/kwin/icewm-themes/depthI.xpm -share/apps/kwin/icewm-themes/maximizeA.xpm -share/apps/kwin/icewm-themes/maximizeI.xpm -share/apps/kwin/icewm-themes/menuButtonA.xpm -share/apps/kwin/icewm-themes/menuButtonI.xpm -share/apps/kwin/icewm-themes/minimizeA.xpm -share/apps/kwin/icewm-themes/minimizeI.xpm -share/apps/kwin/icewm-themes/restoreA.xpm -share/apps/kwin/icewm-themes/restoreI.xpm -share/apps/kwin/icewm-themes/rolldownA.xpm -share/apps/kwin/icewm-themes/rolldownI.xpm -share/apps/kwin/icewm-themes/rollupA.xpm -share/apps/kwin/icewm-themes/rollupI.xpm -share/apps/kwin/icewm-themes/titleAB.xpm -share/apps/kwin/icewm-themes/titleAJ.xpm -share/apps/kwin/icewm-themes/titleAM.xpm -share/apps/kwin/icewm-themes/titleAP.xpm -share/apps/kwin/icewm-themes/titleAQ.xpm -share/apps/kwin/icewm-themes/titleAR.xpm -share/apps/kwin/icewm-themes/titleAS.xpm -share/apps/kwin/icewm-themes/titleAT.xpm -share/apps/kwin/icewm-themes/titleIB.xpm -share/apps/kwin/icewm-themes/titleIJ.xpm -share/apps/kwin/icewm-themes/titleIM.xpm -share/apps/kwin/icewm-themes/titleIP.xpm -share/apps/kwin/icewm-themes/titleIQ.xpm -share/apps/kwin/icewm-themes/titleIR.xpm -share/apps/kwin/icewm-themes/titleIS.xpm -share/apps/kwin/icewm-themes/titleIT.xpm -share/apps/kwin/icewm.desktop -share/apps/kwin/kde1.desktop -share/apps/kwin/kstep.desktop -share/apps/kwin/laptop.desktop -share/apps/kwin/modernsystem.desktop -share/apps/kwin/mwm.desktop -share/apps/kwin/pics/bluesun.png -share/apps/kwin/pics/close.png -share/apps/kwin/pics/fog-grey.png -share/apps/kwin/pics/fog.png -share/apps/kwin/pics/greenie.dim.png -share/apps/kwin/pics/greenie.light.png -share/apps/kwin/pics/iconify.png -share/apps/kwin/pics/maximize.png -share/apps/kwin/pics/maximizedown.png -share/apps/kwin/pics/menu.png -share/apps/kwin/pics/pindown.png -share/apps/kwin/pics/pinup.png -share/apps/kwin/pics/unknown.png -share/apps/kwin/quartz.desktop -share/apps/kwin/redmond.desktop -share/apps/kwin/riscos.desktop -share/apps/kwin/system.desktop -share/apps/kwin/web.desktop -share/apps/kwrite/kwriteui.rc -share/apps/naughtyapplet/pics/naughty-happy.png -share/apps/naughtyapplet/pics/naughty-sad.png -share/autostart/kdesktop.desktop -share/autostart/khotkeys.desktop -share/autostart/klipper.desktop -share/autostart/kpersonalizer.desktop -share/autostart/ktip.desktop -share/autostart/kwrited.desktop -share/autostart/panel.desktop -share/config/antrc -share/config/attractionrc -share/config/bouboulerc -share/config/bubblesrc -share/config/coralrc -share/config/crystalrc -share/config/decayscreenrc -share/config/deluxerc -share/config/demonrc -share/config/driftrc -share/config/epicyclerc -share/config/fadeplotrc -share/config/flamerc -share/config/flowrc -share/config/forestrc -share/config/gearsrc -share/config/gooprc -share/config/gravrc -share/config/halorc -share/config/imsmaprc -share/config/interferencerc -share/config/kdesktop_custom_menu1 -share/config/kdesktop_custom_menu2 -share/config/kdm/Xaccess -share/config/kdm/Xreset -share/config/kdm/Xservers -share/config/kdm/Xsession -share/config/kdm/Xsetup -share/config/kdm/Xstartup -share/config/kdm/Xwilling -@unexec if test ! -f %D/share/config/kdm/kdmrc || cmp -s %D/share/config/kdm/kdmrc.dist %D/share/config/kdm/kdmrc; then rm -f %D/share/config/kdm/kdmrc; fi -share/config/kdm/kdmrc.dist -@exec if test ! -f %D/share/config/kdm/kdmrc; then rm -f %D/share/config/kdm/kdmrc; cp -p %D/share/config/kdm/kdmrc.dist %D/share/config/kdm/kdmrc; fi -share/config/klipperrc -share/config/konqsidebartng.rc -share/config/konsolerc -share/config/kshorturifilterrc -share/config/kumpparc -share/config/kuriikwsfilterrc -share/config/laserrc -share/config/lissierc -share/config/penroserc -share/config/rocksrc -share/config/sliprc -share/doc/HTML/en/kaddressbook/common -share/doc/HTML/en/kaddressbook/index.cache.bz2 -share/doc/HTML/en/kaddressbook/index.docbook -share/doc/HTML/en/kate/common -share/doc/HTML/en/kate/index.cache.bz2 -share/doc/HTML/en/kate/index.docbook -share/doc/HTML/en/kcontrol/common -share/doc/HTML/en/kcontrol/index.cache.bz2 -share/doc/HTML/en/kcontrol/index.docbook -share/doc/HTML/en/kcontrol/kcmaccess.docbook -share/doc/HTML/en/kcontrol/kcmaction.docbook -share/doc/HTML/en/kcontrol/kcmbackgnd.docbook -share/doc/HTML/en/kcontrol/kcmbatmon.docbook -share/doc/HTML/en/kcontrol/kcmbell.docbook -share/doc/HTML/en/kcontrol/kcmblockdev.docbook -share/doc/HTML/en/kcontrol/kcmcolor.docbook -share/doc/HTML/en/kcontrol/kcmcookie.docbook -share/doc/HTML/en/kcontrol/kcmcrypto.docbook -share/doc/HTML/en/kcontrol/kcmcss.docbook -share/doc/HTML/en/kcontrol/kcmdatetime.docbook -share/doc/HTML/en/kcontrol/kcmdesktop.docbook -share/doc/HTML/en/kcontrol/kcmdeviceinfo.docbook -share/doc/HTML/en/kcontrol/kcmdmainfo.docbook -share/doc/HTML/en/kcontrol/kcmebrowse.docbook -share/doc/HTML/en/kcontrol/kcmemail.docbook -share/doc/HTML/en/kcontrol/kcmenergy.docbook -share/doc/HTML/en/kcontrol/kcmfile.docbook -share/doc/HTML/en/kcontrol/kcmfileman.docbook -share/doc/HTML/en/kcontrol/kcmfonts.docbook -share/doc/HTML/en/kcontrol/kcmhelpindex.docbook -share/doc/HTML/en/kcontrol/kcmicon.docbook -share/doc/HTML/en/kcontrol/kcmintinfo.docbook -share/doc/HTML/en/kcontrol/kcmioportinfo.docbook -share/doc/HTML/en/kcontrol/kcmkbd.docbook -share/doc/HTML/en/kcontrol/kcmkbrowse.docbook -share/doc/HTML/en/kcontrol/kcmkeybind.docbook -share/doc/HTML/en/kcontrol/kcmkonsole.docbook -share/doc/HTML/en/kcontrol/kcmkwintheme.docbook -share/doc/HTML/en/kcontrol/kcmlaunch.docbook -share/doc/HTML/en/kcontrol/kcmlisa.docbook -share/doc/HTML/en/kcontrol/kcmlocate.docbook -share/doc/HTML/en/kcontrol/kcmloginmanage.docbook -share/doc/HTML/en/kcontrol/kcmlowbatcrit.docbook -share/doc/HTML/en/kcontrol/kcmlowbatwarn.docbook -share/doc/HTML/en/kcontrol/kcmmemoryinfo.docbook -share/doc/HTML/en/kcontrol/kcmmidi.docbook -share/doc/HTML/en/kcontrol/kcmmixer.docbook -share/doc/HTML/en/kcontrol/kcmmouse.docbook -share/doc/HTML/en/kcontrol/kcmnetscapeplugins.docbook -share/doc/HTML/en/kcontrol/kcmpanel.docbook -share/doc/HTML/en/kcontrol/kcmpartitioninfo.docbook -share/doc/HTML/en/kcontrol/kcmpasswd.docbook -share/doc/HTML/en/kcontrol/kcmpciinfo.docbook -share/doc/HTML/en/kcontrol/kcmpcmcia.docbook -share/doc/HTML/en/kcontrol/kcmpowerctrl.docbook -share/doc/HTML/en/kcontrol/kcmprocinfo.docbook -share/doc/HTML/en/kcontrol/kcmproxie.docbook -share/doc/HTML/en/kcontrol/kcmscnsave.docbook -share/doc/HTML/en/kcontrol/kcmscsiinfo.docbook -share/doc/HTML/en/kcontrol/kcmsessionman.docbook -share/doc/HTML/en/kcontrol/kcmsmbstat.docbook -share/doc/HTML/en/kcontrol/kcmsndinfo.docbook -share/doc/HTML/en/kcontrol/kcmsndsrv.docbook -share/doc/HTML/en/kcontrol/kcmsocks.docbook -share/doc/HTML/en/kcontrol/kcmspellchecking.docbook -share/doc/HTML/en/kcontrol/kcmstyle.docbook -share/doc/HTML/en/kcontrol/kcmsysnotify.docbook -share/doc/HTML/en/kcontrol/kcmtalk.docbook -share/doc/HTML/en/kcontrol/kcmtaskbar.docbook -share/doc/HTML/en/kcontrol/kcmusb.docbook -share/doc/HTML/en/kcontrol/kcmuseragent.docbook -share/doc/HTML/en/kcontrol/kcmwinshare.docbook -share/doc/HTML/en/kcontrol/kcmxservinfo.docbook -share/doc/HTML/en/kcontrol/kfileman1.png -share/doc/HTML/en/kcontrol/kfileman2.png -share/doc/HTML/en/kcontrol/nettimeouts.docbook -share/doc/HTML/en/kcontrol/printmanager.docbook -share/doc/HTML/en/kcontrol/printsystem.docbook -share/doc/HTML/en/kcontrol/protocols.docbook -share/doc/HTML/en/kcontrol/screenshot.png -share/doc/HTML/en/kcontrol/systemcontrol.docbook -share/doc/HTML/en/kcontrol/thememgr.docbook -share/doc/HTML/en/kdebugdialog/common -share/doc/HTML/en/kdebugdialog/index.cache.bz2 -share/doc/HTML/en/kdebugdialog/index.docbook -share/doc/HTML/en/kdeprint/KDE-printingmanager-im-controlcenter-2.png -share/doc/HTML/en/kdeprint/KDE-printingmanager-im-controlcenter.png -share/doc/HTML/en/kdeprint/PPD-options-for-HP8100mopier.png -share/doc/HTML/en/kdeprint/PPD-options-for-infotecP450.png -share/doc/HTML/en/kdeprint/PrintQueue-KJobViewer.png -share/doc/HTML/en/kdeprint/add-printer-wizard-confirmation-1.png -share/doc/HTML/en/kdeprint/big-ppd-esppp-gui.png -share/doc/HTML/en/kdeprint/common -share/doc/HTML/en/kdeprint/cups-filterarchitecture-kivio-50Percent-scaled.png -share/doc/HTML/en/kdeprint/cups-filterarchitecture-kivio-70Percent-scaled.png -share/doc/HTML/en/kdeprint/cups-filterarchitecture-kivio.png -share/doc/HTML/en/kdeprint/cups-server-configuration-2.png -share/doc/HTML/en/kdeprint/cups-server-configuration-3.png -share/doc/HTML/en/kdeprint/cups-server-configuration-4.png -share/doc/HTML/en/kdeprint/cups-server-configuration.png -share/doc/HTML/en/kdeprint/cupsaddpostscriptprinter_fromcommandline.png -share/doc/HTML/en/kdeprint/cupsaddprinterwizard1.png -share/doc/HTML/en/kdeprint/cupsaddprinterwizard2_backendselection.png -share/doc/HTML/en/kdeprint/cupsaddprinterwizard3_networkscan.png -share/doc/HTML/en/kdeprint/cupsaddprinterwizard3_networkscan_results.png -share/doc/HTML/en/kdeprint/cupsaddprinterwizard4_networkscan_config.png -share/doc/HTML/en/kdeprint/cupsaddprinterwizard5_networkscan_SMBresults.png -share/doc/HTML/en/kdeprint/cupsserverconfig_broadcastaddress_add_button.png -share/doc/HTML/en/kdeprint/cupsserverconfig_browse_relay_add_button.png -share/doc/HTML/en/kdeprint/cupsserverconfig_browserelay_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_browsetimeouts_browseinterval_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_browsetimeouts_browsetimeout_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_browsingconnection_browseaddress_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_browsingconnection_browsepoll_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_browsingconnection_browseport_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_browsinggeneral_browseshortnames_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_browsinggeneral_browsingonoff_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_browsinggeneral_implicitclasses_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_browsingmasks_add_button.png -share/doc/HTML/en/kdeprint/cupsserverconfig_browsingmasks_browseallowdeny_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_browsingmasks_browseorder_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_networkclients_keepalive_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_networkclients_keepalivetimeout_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_networkclients_maxclients_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_networkgeneral_hostnamelookups_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_networkgeneral_maxrequestsize_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_networkgeneral_portsaddresses_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_networkgeneral_timeout_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_securityconfig_accesspermissions_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_securityconfig_allowfrom_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_securityconfig_authclass_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_securityconfig_authgroupname_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_securityconfig_authtype_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_securityconfig_denyfrom_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_securityconfig_encryption_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_securityconfig_order_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_securityconfig_systemgroup_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_serverdirectories_data_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_serverdirectories_defaultcharset_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_serverdirectories_defaultlanguage.png -share/doc/HTML/en/kdeprint/cupsserverconfig_serverdirectories_documenttroot_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_serverdirectories_executables_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_serverdirectories_fontpath_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_serverdirectories_requestroot_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_serverdirectories_serverroot_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_serverdirectories_temdir_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_serverdirectories_tempdir_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_serverencryptionconfig_servercertificate_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_serverencryptionconfig_serverkey_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_servergeneral_group_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_servergeneral_remoteroot_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_servergeneral_serveradmin_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_servergeneral_servername_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_servergeneral_user_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_serverhttpconfig_defaultcharset_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_serverhttpconfig_defaultlanguage.png -share/doc/HTML/en/kdeprint/cupsserverconfig_serverhttpconfig_documenttroot_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_serverlogging_accesslog_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_serverlogging_errorlog_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_serverlogging_loglevel_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_serverlogging_maxlogsize_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_serverlogging_pagelog_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_servermiscellaneous_filterlimit_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_servermiscellaneous_preservehistory_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_servermiscellaneous_preservejobfiles_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_servermiscellaneous_printcap_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfig_servermiscellaneous_ripcache_blurb.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration10_browsinggeneral.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration11_browsingconnections.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration11_browsingmasks.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration12_browsingtimeouts.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration14_browsingrelay.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration15a_resourceallprinters_defineaccess.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration15b_resourceallprinters_defineaccess.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration15c_resourceallprinters_defineaccess.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration1_welcome.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration2_general.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration3_logging.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration4_directories.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration5_HTTP.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration6_encryption.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration7_miscellanious.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration8_networkgeneral.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration9_networkclients.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration_resourceadminaccessmasks.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration_resourceadminaddprinters.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration_resourceadminaddprinters_defineaccess.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration_resourceadminauthorization.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration_securityoverview.png -share/doc/HTML/en/kdeprint/cupsserverconfiguration_securityoverview1.png -share/doc/HTML/en/kdeprint/hi32-action-wizard.png -share/doc/HTML/en/kdeprint/iconview-printerwindow.png -share/doc/HTML/en/kdeprint/index.cache.bz2 -share/doc/HTML/en/kdeprint/index.docbook -share/doc/HTML/en/kdeprint/info-tab.png -share/doc/HTML/en/kdeprint/ipp-scan-result-1.png -share/doc/HTML/en/kdeprint/kcontrol-icon.png -share/doc/HTML/en/kdeprint/kcontrolcenter-printmanager-jobcontrol-2.png -share/doc/HTML/en/kdeprint/kcontrolcenter-printmanager-jobcontrol.png -share/doc/HTML/en/kdeprint/kcontrolcenter-printmanager-spartanicview.png -share/doc/HTML/en/kdeprint/kcontrolcenter-printmanager-toolbarplusinfoview.png -share/doc/HTML/en/kdeprint/kcontrolcenter-printsystem.png -share/doc/HTML/en/kdeprint/kcron_to_be_printed.png -share/doc/HTML/en/kdeprint/kdeprint-jobviewer.png -share/doc/HTML/en/kdeprint/kdeprint_printer.png -share/doc/HTML/en/kdeprint/kdeprint_printer_class.png -share/doc/HTML/en/kdeprint/kdeprint_printer_class_stopped.png -share/doc/HTML/en/kdeprint/kdeprint_printer_remote.png -share/doc/HTML/en/kdeprint/kdeprint_printer_stopped.png -share/doc/HTML/en/kdeprint/kprinter-as-netscape-printcommand.png -share/doc/HTML/en/kdeprint/kprinter-dialog.png -share/doc/HTML/en/kdeprint/kprinter-fonts.png -share/doc/HTML/en/kdeprint/kprinter-kivio.png -share/doc/HTML/en/kdeprint/kprinter.png -share/doc/HTML/en/kdeprint/kprinter_called_from_run_command.png -share/doc/HTML/en/kdeprint/kprinter_with_kcron_developer_special.png -share/doc/HTML/en/kdeprint/kprinter_with_kcron_developer_special_nodeco.png -share/doc/HTML/en/kdeprint/printericons-meanings.png -share/doc/HTML/en/kdeprint/ps-boxes.png -share/doc/HTML/en/kdeprint/selecting-printingsystem.png -share/doc/HTML/en/kdeprint/smb-scan-result-2.png -share/doc/HTML/en/kdeprint/smb-scan-result-3.png -share/doc/HTML/en/kdeprint/steinbruch.png -share/doc/HTML/en/kdeprint/steinbruch_scaled.png -share/doc/HTML/en/kdeprint/taskbar-icons.png -share/doc/HTML/en/kdeprint/test_size_withdecoration.png -share/doc/HTML/en/kdeprint/test_size_without_decoration.png -share/doc/HTML/en/kdeprint/xpp-fonts.png -share/doc/HTML/en/kdesu/common -share/doc/HTML/en/kdesu/index.cache.bz2 -share/doc/HTML/en/kdesu/index.docbook -share/doc/HTML/en/kdm/common -share/doc/HTML/en/kdm/index.cache.bz2 -share/doc/HTML/en/kdm/index.docbook -share/doc/HTML/en/khelpcenter/background.png -share/doc/HTML/en/khelpcenter/bgtable.png -share/doc/HTML/en/khelpcenter/common -share/doc/HTML/en/khelpcenter/contact.docbook -share/doc/HTML/en/khelpcenter/faq/TODO -share/doc/HTML/en/khelpcenter/faq/about.docbook -share/doc/HTML/en/khelpcenter/faq/common -share/doc/HTML/en/khelpcenter/faq/configkde.docbook -share/doc/HTML/en/khelpcenter/faq/contrib.docbook -share/doc/HTML/en/khelpcenter/faq/desktop.docbook -share/doc/HTML/en/khelpcenter/faq/filemng.docbook -share/doc/HTML/en/khelpcenter/faq/getkde.docbook -share/doc/HTML/en/khelpcenter/faq/index.cache.bz2 -share/doc/HTML/en/khelpcenter/faq/index.docbook -share/doc/HTML/en/khelpcenter/faq/index.docbook.old -share/doc/HTML/en/khelpcenter/faq/install.docbook -share/doc/HTML/en/khelpcenter/faq/intro.docbook -share/doc/HTML/en/khelpcenter/faq/kdeapps.docbook -share/doc/HTML/en/khelpcenter/faq/misc.docbook -share/doc/HTML/en/khelpcenter/faq/moreinfo.docbook -share/doc/HTML/en/khelpcenter/faq/nonkdeapps.docbook -share/doc/HTML/en/khelpcenter/faq/notrelated.docbook -share/doc/HTML/en/khelpcenter/faq/panel.docbook -share/doc/HTML/en/khelpcenter/faq/tips.docbook -share/doc/HTML/en/khelpcenter/faq/winmng.docbook -share/doc/HTML/en/khelpcenter/glossary/common -share/doc/HTML/en/khelpcenter/glossary/index.cache.bz2 -share/doc/HTML/en/khelpcenter/glossary/index.docbook -share/doc/HTML/en/khelpcenter/help.docbook -share/doc/HTML/en/khelpcenter/index.cache.bz2 -share/doc/HTML/en/khelpcenter/index.docbook -share/doc/HTML/en/khelpcenter/kdelogo2.png -share/doc/HTML/en/khelpcenter/khelpcenter.png -share/doc/HTML/en/khelpcenter/konq.css -share/doc/HTML/en/khelpcenter/lines.png -share/doc/HTML/en/khelpcenter/lines2.png -share/doc/HTML/en/khelpcenter/links.docbook -share/doc/HTML/en/khelpcenter/pointers.png -share/doc/HTML/en/khelpcenter/quickstart/common -share/doc/HTML/en/khelpcenter/quickstart/index.cache.bz2 -share/doc/HTML/en/khelpcenter/quickstart/index.docbook -share/doc/HTML/en/khelpcenter/shadow1.png -share/doc/HTML/en/khelpcenter/support.docbook -share/doc/HTML/en/khelpcenter/userguide/common -share/doc/HTML/en/khelpcenter/userguide/index.cache.bz2 -share/doc/HTML/en/khelpcenter/userguide/index.docbook -share/doc/HTML/en/khelpcenter/visualdict/common -share/doc/HTML/en/khelpcenter/visualdict/index.cache.bz2 -share/doc/HTML/en/khelpcenter/visualdict/index.docbook -share/doc/HTML/en/khelpcenter/visualdict/pict1.png -share/doc/HTML/en/khelpcenter/visualdict/pict10.png -share/doc/HTML/en/khelpcenter/visualdict/pict11.png -share/doc/HTML/en/khelpcenter/visualdict/pict12.png -share/doc/HTML/en/khelpcenter/visualdict/pict13.png -share/doc/HTML/en/khelpcenter/visualdict/pict14.png -share/doc/HTML/en/khelpcenter/visualdict/pict15.png -share/doc/HTML/en/khelpcenter/visualdict/pict16.png -share/doc/HTML/en/khelpcenter/visualdict/pict17.png -share/doc/HTML/en/khelpcenter/visualdict/pict18.png -share/doc/HTML/en/khelpcenter/visualdict/pict19.png -share/doc/HTML/en/khelpcenter/visualdict/pict2.png -share/doc/HTML/en/khelpcenter/visualdict/pict20.png -share/doc/HTML/en/khelpcenter/visualdict/pict3.png -share/doc/HTML/en/khelpcenter/visualdict/pict4.png -share/doc/HTML/en/khelpcenter/visualdict/pict5.png -share/doc/HTML/en/khelpcenter/visualdict/pict6.png -share/doc/HTML/en/khelpcenter/visualdict/pict7.png -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/kicker/bookmarks_icon.png -share/doc/HTML/en/kicker/common -share/doc/HTML/en/kicker/desktop_icon.png -share/doc/HTML/en/kicker/index.cache.bz2 -share/doc/HTML/en/kicker/index.docbook -share/doc/HTML/en/kicker/k_menu_icon.png -share/doc/HTML/en/kicker/recent_docs_icon.png -share/doc/HTML/en/kicker/screenshot_left.png -share/doc/HTML/en/kicker/screenshot_right.png -share/doc/HTML/en/kicker/taskbar_group.png -share/doc/HTML/en/kicker/terminals_icon.png -share/doc/HTML/en/kicker/windowlist_icon.png -share/doc/HTML/en/kioslave/audiocd.docbook -share/doc/HTML/en/kioslave/bzip.docbook -share/doc/HTML/en/kioslave/bzip2.docbook -share/doc/HTML/en/kioslave/common -share/doc/HTML/en/kioslave/file.docbook -share/doc/HTML/en/kioslave/finger.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/mailto.docbook -share/doc/HTML/en/kioslave/man.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/smb.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/klipper/common -share/doc/HTML/en/klipper/index.cache.bz2 -share/doc/HTML/en/klipper/index.docbook -share/doc/HTML/en/klipper/screenshot.png -share/doc/HTML/en/kmenuedit/common -share/doc/HTML/en/kmenuedit/i_copy.png -share/doc/HTML/en/kmenuedit/i_cut.png -share/doc/HTML/en/kmenuedit/i_delete.png -share/doc/HTML/en/kmenuedit/i_k_button.png -share/doc/HTML/en/kmenuedit/i_new_item.png -share/doc/HTML/en/kmenuedit/i_new_submenu.png -share/doc/HTML/en/kmenuedit/i_paste.png -share/doc/HTML/en/kmenuedit/icon_sets.png -share/doc/HTML/en/kmenuedit/icons.png -share/doc/HTML/en/kmenuedit/index.cache.bz2 -share/doc/HTML/en/kmenuedit/index.docbook -share/doc/HTML/en/konqueror/cmndline.png -share/doc/HTML/en/konqueror/common -share/doc/HTML/en/konqueror/dirtree.png -share/doc/HTML/en/konqueror/dragdrop.png -share/doc/HTML/en/konqueror/filetype1.png -share/doc/HTML/en/konqueror/filetype3.png -share/doc/HTML/en/konqueror/filetype4.png -share/doc/HTML/en/konqueror/index.cache.bz2 -share/doc/HTML/en/konqueror/index.docbook -share/doc/HTML/en/konqueror/konqorg.png -share/doc/HTML/en/konqueror/parts.png -share/doc/HTML/en/konqueror/samba.png -share/doc/HTML/en/konsole/common -share/doc/HTML/en/konsole/index.cache.bz2 -share/doc/HTML/en/konsole/index.docbook -share/doc/HTML/en/konsole/konsole.png -share/doc/HTML/en/konsole/konsole1.gif -share/doc/HTML/en/konsole/konsole2.gif -share/doc/HTML/en/konsole/techref.html -share/doc/HTML/en/konsole/vt100.gif -share/doc/HTML/en/kpager/common -share/doc/HTML/en/kpager/index.cache.bz2 -share/doc/HTML/en/kpager/index.docbook -share/doc/HTML/en/kpager/screenshot.png -share/doc/HTML/en/kpager/settings.png -share/doc/HTML/en/ksysguard/common -share/doc/HTML/en/ksysguard/index.cache.bz2 -share/doc/HTML/en/ksysguard/index.docbook -share/doc/HTML/en/kwrite/common -share/doc/HTML/en/kwrite/index.cache.bz2 -share/doc/HTML/en/kwrite/index.docbook -share/fonts/9x15.pcf.gz -share/fonts/console8x16.pcf.gz -share/fonts/console8x8.pcf.gz -share/icons/hicolor/16x16/actions/view_choose.png -share/icons/hicolor/16x16/actions/view_detailed.png -share/icons/hicolor/16x16/actions/view_icon.png -share/icons/hicolor/16x16/actions/view_multicolumn.png -share/icons/hicolor/16x16/actions/view_text.png -share/icons/hicolor/16x16/actions/view_tree.png -share/icons/hicolor/16x16/apps/access.png -share/icons/hicolor/16x16/apps/acroread.png -share/icons/hicolor/16x16/apps/agent.png -share/icons/hicolor/16x16/apps/alevt.png -share/icons/hicolor/16x16/apps/applixware.png -share/icons/hicolor/16x16/apps/arts.png -share/icons/hicolor/16x16/apps/background.png -share/icons/hicolor/16x16/apps/bell.png -share/icons/hicolor/16x16/apps/blender.png -share/icons/hicolor/16x16/apps/clock.png -share/icons/hicolor/16x16/apps/colors.png -share/icons/hicolor/16x16/apps/cookie.png -share/icons/hicolor/16x16/apps/date.png -share/icons/hicolor/16x16/apps/designer.png -share/icons/hicolor/16x16/apps/dlgedit.png -share/icons/hicolor/16x16/apps/emacs.png -share/icons/hicolor/16x16/apps/email.png -share/icons/hicolor/16x16/apps/energy.png -share/icons/hicolor/16x16/apps/energy_star.png -share/icons/hicolor/16x16/apps/enhanced_browsing.png -share/icons/hicolor/16x16/apps/filetypes.png -share/icons/hicolor/16x16/apps/fonts.png -share/icons/hicolor/16x16/apps/gimp.png -share/icons/hicolor/16x16/apps/go.png -share/icons/hicolor/16x16/apps/gv.png -share/icons/hicolor/16x16/apps/gvim.png -share/icons/hicolor/16x16/apps/help_index.png -share/icons/hicolor/16x16/apps/hwinfo.png -share/icons/hicolor/16x16/apps/icons.png -share/icons/hicolor/16x16/apps/iconthemes.png -share/icons/hicolor/16x16/apps/input_devices_settings.png -share/icons/hicolor/16x16/apps/kaddressbook.png -share/icons/hicolor/16x16/apps/kappfinder.png -share/icons/hicolor/16x16/apps/kate.png -share/icons/hicolor/16x16/apps/kcmdevices.png -share/icons/hicolor/16x16/apps/kcmkicker.png -share/icons/hicolor/16x16/apps/kcmkwm.png -share/icons/hicolor/16x16/apps/kcmmemory.png -share/icons/hicolor/16x16/apps/kcmmidi.png -share/icons/hicolor/16x16/apps/kcmpartitions.png -share/icons/hicolor/16x16/apps/kcmpci.png -share/icons/hicolor/16x16/apps/kcmprocessor.png -share/icons/hicolor/16x16/apps/kcmscsi.png -share/icons/hicolor/16x16/apps/kcmsound.png -share/icons/hicolor/16x16/apps/kcmsystem.png -share/icons/hicolor/16x16/apps/kcmx.png -share/icons/hicolor/16x16/apps/kcontrol.png -share/icons/hicolor/16x16/apps/kdeprintfax.png -share/icons/hicolor/16x16/apps/kdisknav.png -share/icons/hicolor/16x16/apps/kdmconfig.png -share/icons/hicolor/16x16/apps/keditbookmarks.png -share/icons/hicolor/16x16/apps/key_bindings.png -share/icons/hicolor/16x16/apps/keyboard.png -share/icons/hicolor/16x16/apps/keyboard_layout.png -share/icons/hicolor/16x16/apps/kfm.png -share/icons/hicolor/16x16/apps/kfm_home.png -share/icons/hicolor/16x16/apps/khelpcenter.png -share/icons/hicolor/16x16/apps/kicker.png -share/icons/hicolor/16x16/apps/kjobviewer.png -share/icons/hicolor/16x16/apps/klipper.png -share/icons/hicolor/16x16/apps/kmenuedit.png -share/icons/hicolor/16x16/apps/knotify.png -share/icons/hicolor/16x16/apps/konqueror.png -share/icons/hicolor/16x16/apps/konsole.png -share/icons/hicolor/16x16/apps/kpager.png -share/icons/hicolor/16x16/apps/kpersonalizer.png -share/icons/hicolor/16x16/apps/kscreensaver.png -share/icons/hicolor/16x16/apps/ksysguard.png -share/icons/hicolor/16x16/apps/kthememgr.png -share/icons/hicolor/16x16/apps/ktip.png -share/icons/hicolor/16x16/apps/kwin.png -share/icons/hicolor/16x16/apps/kwrite.png -share/icons/hicolor/16x16/apps/licq.png -share/icons/hicolor/16x16/apps/locale.png -share/icons/hicolor/16x16/apps/looknfeel.png -share/icons/hicolor/16x16/apps/lyx.png -share/icons/hicolor/16x16/apps/mathematica.png -share/icons/hicolor/16x16/apps/mouse.png -share/icons/hicolor/16x16/apps/mozilla.png -share/icons/hicolor/16x16/apps/multimedia.png -share/icons/hicolor/16x16/apps/nedit.png -share/icons/hicolor/16x16/apps/netscape.png -share/icons/hicolor/16x16/apps/package_applications.png -share/icons/hicolor/16x16/apps/package_development.png -share/icons/hicolor/16x16/apps/package_editors.png -share/icons/hicolor/16x16/apps/package_favourite.png -share/icons/hicolor/16x16/apps/package_games.png -share/icons/hicolor/16x16/apps/package_games_arcade.png -share/icons/hicolor/16x16/apps/package_games_board.png -share/icons/hicolor/16x16/apps/package_games_card.png -share/icons/hicolor/16x16/apps/package_games_strategy.png -share/icons/hicolor/16x16/apps/package_graphics.png -share/icons/hicolor/16x16/apps/package_multimedia.png -share/icons/hicolor/16x16/apps/package_network.png -share/icons/hicolor/16x16/apps/package_settings.png -share/icons/hicolor/16x16/apps/package_system.png -share/icons/hicolor/16x16/apps/package_toys.png -share/icons/hicolor/16x16/apps/package_utilities.png -share/icons/hicolor/16x16/apps/package_wordprocessing.png -share/icons/hicolor/16x16/apps/panel.png -share/icons/hicolor/16x16/apps/panel_settings.png -share/icons/hicolor/16x16/apps/password.png -share/icons/hicolor/16x16/apps/penguin.png -share/icons/hicolor/16x16/apps/personal.png -share/icons/hicolor/16x16/apps/plan.png -share/icons/hicolor/16x16/apps/printmgr.png -share/icons/hicolor/16x16/apps/proxy.png -share/icons/hicolor/16x16/apps/pybliographic.png -share/icons/hicolor/16x16/apps/realplayer.png -share/icons/hicolor/16x16/apps/remote.png -share/icons/hicolor/16x16/apps/samba.png -share/icons/hicolor/16x16/apps/style.png -share/icons/hicolor/16x16/apps/stylesheet.png -share/icons/hicolor/16x16/apps/terminal.png -share/icons/hicolor/16x16/apps/usb.png -share/icons/hicolor/16x16/apps/wabi.png -share/icons/hicolor/16x16/apps/window_list.png -share/icons/hicolor/16x16/apps/winprops.png -share/icons/hicolor/16x16/apps/wp.png -share/icons/hicolor/16x16/apps/xcalc.png -share/icons/hicolor/16x16/apps/xclipboard.png -share/icons/hicolor/16x16/apps/xclock.png -share/icons/hicolor/16x16/apps/xconsole.png -share/icons/hicolor/16x16/apps/xedit.png -share/icons/hicolor/16x16/apps/xemacs.png -share/icons/hicolor/16x16/apps/xeyes.png -share/icons/hicolor/16x16/apps/xfig.png -share/icons/hicolor/16x16/apps/xfmail.png -share/icons/hicolor/16x16/apps/xload.png -share/icons/hicolor/16x16/apps/xmag.png -share/icons/hicolor/16x16/apps/xmms.png -share/icons/hicolor/16x16/apps/xosview.png -share/icons/hicolor/16x16/apps/xpaint.png -share/icons/hicolor/16x16/apps/xv.png -share/icons/hicolor/16x16/filesystems/file_important.png -share/icons/hicolor/16x16/filesystems/folder_important.png -share/icons/hicolor/22x22/actions/view_choose.png -share/icons/hicolor/22x22/actions/view_detailed.png -share/icons/hicolor/22x22/actions/view_icon.png -share/icons/hicolor/22x22/actions/view_multicolumn.png -share/icons/hicolor/22x22/actions/view_text.png -share/icons/hicolor/22x22/actions/view_tree.png -share/icons/hicolor/32x32/actions/view_choose.png -share/icons/hicolor/32x32/actions/view_detailed.png -share/icons/hicolor/32x32/actions/view_icon.png -share/icons/hicolor/32x32/actions/view_multicolumn.png -share/icons/hicolor/32x32/actions/view_text.png -share/icons/hicolor/32x32/actions/view_tree.png -share/icons/hicolor/32x32/apps/access.png -share/icons/hicolor/32x32/apps/acroread.png -share/icons/hicolor/32x32/apps/agent.png -share/icons/hicolor/32x32/apps/alevt.png -share/icons/hicolor/32x32/apps/applixware.png -share/icons/hicolor/32x32/apps/background.png -share/icons/hicolor/32x32/apps/bell.png -share/icons/hicolor/32x32/apps/blender.png -share/icons/hicolor/32x32/apps/clanbomber.png -share/icons/hicolor/32x32/apps/clock.png -share/icons/hicolor/32x32/apps/colors.png -share/icons/hicolor/32x32/apps/cookie.png -share/icons/hicolor/32x32/apps/date.png -share/icons/hicolor/32x32/apps/designer.png -share/icons/hicolor/32x32/apps/dlgedit.png -share/icons/hicolor/32x32/apps/emacs.png -share/icons/hicolor/32x32/apps/email.png -share/icons/hicolor/32x32/apps/energy.png -share/icons/hicolor/32x32/apps/energy_star.png -share/icons/hicolor/32x32/apps/enhanced_browsing.png -share/icons/hicolor/32x32/apps/error.png -share/icons/hicolor/32x32/apps/filetypes.png -share/icons/hicolor/32x32/apps/fonts.png -share/icons/hicolor/32x32/apps/gimp.png -share/icons/hicolor/32x32/apps/go.png -share/icons/hicolor/32x32/apps/gv.png -share/icons/hicolor/32x32/apps/gvim.png -share/icons/hicolor/32x32/apps/help_index.png -share/icons/hicolor/32x32/apps/hwinfo.png -share/icons/hicolor/32x32/apps/icons.png -share/icons/hicolor/32x32/apps/iconthemes.png -share/icons/hicolor/32x32/apps/input_devices_settings.png -share/icons/hicolor/32x32/apps/kaddressbook.png -share/icons/hicolor/32x32/apps/kappfinder.png -share/icons/hicolor/32x32/apps/kate.png -share/icons/hicolor/32x32/apps/kcmdevices.png -share/icons/hicolor/32x32/apps/kcmdrkonqi.png -share/icons/hicolor/32x32/apps/kcmkicker.png -share/icons/hicolor/32x32/apps/kcmkwm.png -share/icons/hicolor/32x32/apps/kcmmemory.png -share/icons/hicolor/32x32/apps/kcmmidi.png -share/icons/hicolor/32x32/apps/kcmpartitions.png -share/icons/hicolor/32x32/apps/kcmpci.png -share/icons/hicolor/32x32/apps/kcmprocessor.png -share/icons/hicolor/32x32/apps/kcmscsi.png -share/icons/hicolor/32x32/apps/kcmsound.png -share/icons/hicolor/32x32/apps/kcmsystem.png -share/icons/hicolor/32x32/apps/kcmx.png -share/icons/hicolor/32x32/apps/kcontrol.png -share/icons/hicolor/32x32/apps/kdeprintfax.png -share/icons/hicolor/32x32/apps/kdisknav.png -share/icons/hicolor/32x32/apps/kdmconfig.png -share/icons/hicolor/32x32/apps/keditbookmarks.png -share/icons/hicolor/32x32/apps/key_bindings.png -share/icons/hicolor/32x32/apps/keyboard.png -share/icons/hicolor/32x32/apps/keyboard_layout.png -share/icons/hicolor/32x32/apps/kfm.png -share/icons/hicolor/32x32/apps/kfm_home.png -share/icons/hicolor/32x32/apps/khelpcenter.png -share/icons/hicolor/32x32/apps/kjobviewer.png -share/icons/hicolor/32x32/apps/klipper.png -share/icons/hicolor/32x32/apps/kmenuedit.png -share/icons/hicolor/32x32/apps/knotify.png -share/icons/hicolor/32x32/apps/konqueror.png -share/icons/hicolor/32x32/apps/konsole.png -share/icons/hicolor/32x32/apps/kpager.png -share/icons/hicolor/32x32/apps/kpersonalizer.png -share/icons/hicolor/32x32/apps/kscreensaver.png -share/icons/hicolor/32x32/apps/ksysguard.png -share/icons/hicolor/32x32/apps/kthememgr.png -share/icons/hicolor/32x32/apps/ktip.png -share/icons/hicolor/32x32/apps/kwin.png -share/icons/hicolor/32x32/apps/kwrite.png -share/icons/hicolor/32x32/apps/licq.png -share/icons/hicolor/32x32/apps/locale.png -share/icons/hicolor/32x32/apps/looknfeel.png -share/icons/hicolor/32x32/apps/lyx.png -share/icons/hicolor/32x32/apps/mathematica.png -share/icons/hicolor/32x32/apps/mouse.png -share/icons/hicolor/32x32/apps/multimedia.png -share/icons/hicolor/32x32/apps/nedit.png -share/icons/hicolor/32x32/apps/netscape.png -share/icons/hicolor/32x32/apps/package.png -share/icons/hicolor/32x32/apps/package_applications.png -share/icons/hicolor/32x32/apps/package_editors.png -share/icons/hicolor/32x32/apps/package_favourite.png -share/icons/hicolor/32x32/apps/package_games.png -share/icons/hicolor/32x32/apps/package_games_arcade.png -share/icons/hicolor/32x32/apps/package_games_board.png -share/icons/hicolor/32x32/apps/package_games_card.png -share/icons/hicolor/32x32/apps/package_games_strategy.png -share/icons/hicolor/32x32/apps/package_graphics.png -share/icons/hicolor/32x32/apps/package_multimedia.png -share/icons/hicolor/32x32/apps/package_network.png -share/icons/hicolor/32x32/apps/package_settings.png -share/icons/hicolor/32x32/apps/package_system.png -share/icons/hicolor/32x32/apps/package_toys.png -share/icons/hicolor/32x32/apps/package_utilities.png -share/icons/hicolor/32x32/apps/package_wordprocessing.png -share/icons/hicolor/32x32/apps/password.png -share/icons/hicolor/32x32/apps/penguin.png -share/icons/hicolor/32x32/apps/personal.png -share/icons/hicolor/32x32/apps/plan.png -share/icons/hicolor/32x32/apps/printmgr.png -share/icons/hicolor/32x32/apps/proxy.png -share/icons/hicolor/32x32/apps/pybliographic.png -share/icons/hicolor/32x32/apps/pysol.png -share/icons/hicolor/32x32/apps/realplayer.png -share/icons/hicolor/32x32/apps/samba.png -share/icons/hicolor/32x32/apps/style.png -share/icons/hicolor/32x32/apps/stylesheet.png -share/icons/hicolor/32x32/apps/terminal.png -share/icons/hicolor/32x32/apps/usb.png -share/icons/hicolor/32x32/apps/wabi.png -share/icons/hicolor/32x32/apps/window_list.png -share/icons/hicolor/32x32/apps/winprops.png -share/icons/hicolor/32x32/apps/wp.png -share/icons/hicolor/32x32/apps/x.png -share/icons/hicolor/32x32/apps/xapp.png -share/icons/hicolor/32x32/apps/xawtv.png -share/icons/hicolor/32x32/apps/xcalc.png -share/icons/hicolor/32x32/apps/xclipboard.png -share/icons/hicolor/32x32/apps/xclock.png -share/icons/hicolor/32x32/apps/xconsole.png -share/icons/hicolor/32x32/apps/xedit.png -share/icons/hicolor/32x32/apps/xemacs.png -share/icons/hicolor/32x32/apps/xeyes.png -share/icons/hicolor/32x32/apps/xfig.png -share/icons/hicolor/32x32/apps/xfmail.png -share/icons/hicolor/32x32/apps/xload.png -share/icons/hicolor/32x32/apps/xmag.png -share/icons/hicolor/32x32/apps/xmms.png -share/icons/hicolor/32x32/apps/xosview.png -share/icons/hicolor/32x32/apps/xpaint.png -share/icons/hicolor/32x32/apps/xv.png -share/icons/hicolor/32x32/filesystems/file_important.png -share/icons/hicolor/32x32/filesystems/folder_important.png -share/icons/hicolor/48x48/apps/access.png -share/icons/hicolor/48x48/apps/agent.png -share/icons/hicolor/48x48/apps/bell.png -share/icons/hicolor/48x48/apps/blender.png -share/icons/hicolor/48x48/apps/clock.png -share/icons/hicolor/48x48/apps/colors.png -share/icons/hicolor/48x48/apps/cookie.png -share/icons/hicolor/48x48/apps/date.png -share/icons/hicolor/48x48/apps/designer.png -share/icons/hicolor/48x48/apps/emacs.png -share/icons/hicolor/48x48/apps/email.png -share/icons/hicolor/48x48/apps/energy.png -share/icons/hicolor/48x48/apps/energy_star.png -share/icons/hicolor/48x48/apps/enhanced_browsing.png -share/icons/hicolor/48x48/apps/filetypes.png -share/icons/hicolor/48x48/apps/fonts.png -share/icons/hicolor/48x48/apps/gimp.png -share/icons/hicolor/48x48/apps/go.png -share/icons/hicolor/48x48/apps/gvim.png -share/icons/hicolor/48x48/apps/help_index.png -share/icons/hicolor/48x48/apps/hwinfo.png -share/icons/hicolor/48x48/apps/icons.png -share/icons/hicolor/48x48/apps/iconthemes.png -share/icons/hicolor/48x48/apps/input_devices_settings.png -share/icons/hicolor/48x48/apps/kappfinder.png -share/icons/hicolor/48x48/apps/kate.png -share/icons/hicolor/48x48/apps/kcmdevices.png -share/icons/hicolor/48x48/apps/kcmdrkonqi.png -share/icons/hicolor/48x48/apps/kcmkwm.png -share/icons/hicolor/48x48/apps/kcmmemory.png -share/icons/hicolor/48x48/apps/kcmmidi.png -share/icons/hicolor/48x48/apps/kcmpartitions.png -share/icons/hicolor/48x48/apps/kcmpci.png -share/icons/hicolor/48x48/apps/kcmprocessor.png -share/icons/hicolor/48x48/apps/kcmscsi.png -share/icons/hicolor/48x48/apps/kcmsystem.png -share/icons/hicolor/48x48/apps/kcontrol.png -share/icons/hicolor/48x48/apps/kdisknav.png -share/icons/hicolor/48x48/apps/kdmconfig.png -share/icons/hicolor/48x48/apps/key_bindings.png -share/icons/hicolor/48x48/apps/keyboard.png -share/icons/hicolor/48x48/apps/keyboard_layout.png -share/icons/hicolor/48x48/apps/kfm.png -share/icons/hicolor/48x48/apps/kfm_home.png -share/icons/hicolor/48x48/apps/khelpcenter.png -share/icons/hicolor/48x48/apps/klipper.png -share/icons/hicolor/48x48/apps/kmenuedit.png -share/icons/hicolor/48x48/apps/knotify.png -share/icons/hicolor/48x48/apps/konqueror.png -share/icons/hicolor/48x48/apps/konsole.png -share/icons/hicolor/48x48/apps/kpager.png -share/icons/hicolor/48x48/apps/kscreensaver.png -share/icons/hicolor/48x48/apps/ksysguard.png -share/icons/hicolor/48x48/apps/kthememgr.png -share/icons/hicolor/48x48/apps/ktip.png -share/icons/hicolor/48x48/apps/kwin.png -share/icons/hicolor/48x48/apps/kwrite.png -share/icons/hicolor/48x48/apps/licq.png -share/icons/hicolor/48x48/apps/locale.png -share/icons/hicolor/48x48/apps/looknfeel.png -share/icons/hicolor/48x48/apps/mouse.png -share/icons/hicolor/48x48/apps/multimedia.png -share/icons/hicolor/48x48/apps/netscape.png -share/icons/hicolor/48x48/apps/package.png -share/icons/hicolor/48x48/apps/package_applications.png -share/icons/hicolor/48x48/apps/package_editors.png -share/icons/hicolor/48x48/apps/package_favourite.png -share/icons/hicolor/48x48/apps/package_games.png -share/icons/hicolor/48x48/apps/package_games_arcade.png -share/icons/hicolor/48x48/apps/package_games_board.png -share/icons/hicolor/48x48/apps/package_games_card.png -share/icons/hicolor/48x48/apps/package_games_strategy.png -share/icons/hicolor/48x48/apps/package_graphics.png -share/icons/hicolor/48x48/apps/package_multimedia.png -share/icons/hicolor/48x48/apps/package_network.png -share/icons/hicolor/48x48/apps/package_settings.png -share/icons/hicolor/48x48/apps/package_system.png -share/icons/hicolor/48x48/apps/package_toys.png -share/icons/hicolor/48x48/apps/package_utilities.png -share/icons/hicolor/48x48/apps/package_wordprocessing.png -share/icons/hicolor/48x48/apps/password.png -share/icons/hicolor/48x48/apps/personal.png -share/icons/hicolor/48x48/apps/proxy.png -share/icons/hicolor/48x48/apps/remote.png -share/icons/hicolor/48x48/apps/samba.png -share/icons/hicolor/48x48/apps/style.png -share/icons/hicolor/48x48/apps/stylesheet.png -share/icons/hicolor/48x48/apps/terminal.png -share/icons/hicolor/48x48/apps/usb.png -share/icons/hicolor/48x48/apps/window_list.png -share/icons/hicolor/48x48/apps/winprops.png -share/icons/hicolor/48x48/apps/xedit.png -share/icons/hicolor/48x48/apps/xemacs.png -share/icons/hicolor/48x48/apps/xmag.png -share/icons/hicolor/48x48/apps/xv.png -share/icons/hicolor/48x48/filesystems/file_important.png -share/icons/hicolor/48x48/filesystems/folder_important.png -share/icons/locolor/16x16/apps/bell.png -share/icons/locolor/32x32/apps/bell.png -share/locale/C/entry.desktop -share/locale/C/flag.png -share/locale/l10n/C/entry.desktop -share/locale/l10n/C/flag.png -share/locale/l10n/africa.desktop -share/locale/l10n/ag/entry.desktop -share/locale/l10n/ag/flag.png -share/locale/l10n/ar/entry.desktop -share/locale/l10n/ar/flag.png -share/locale/l10n/asia.desktop -share/locale/l10n/at/entry.desktop -share/locale/l10n/at/flag.png -share/locale/l10n/au/entry.desktop -share/locale/l10n/au/flag.png -share/locale/l10n/az/entry.desktop -share/locale/l10n/az/flag.png -share/locale/l10n/bb/entry.desktop -share/locale/l10n/bb/flag.png -share/locale/l10n/be/entry.desktop -share/locale/l10n/be/flag.png -share/locale/l10n/bg/entry.desktop -share/locale/l10n/bg/flag.png -share/locale/l10n/bo/entry.desktop -share/locale/l10n/bo/flag.png -share/locale/l10n/br/entry.desktop -share/locale/l10n/br/flag.png -share/locale/l10n/ca/entry.desktop -share/locale/l10n/ca/flag.png -share/locale/l10n/caribbean.desktop -share/locale/l10n/centraleurope.desktop -share/locale/l10n/ch/entry.desktop -share/locale/l10n/ch/flag.png -share/locale/l10n/cl/entry.desktop -share/locale/l10n/cl/flag.png -share/locale/l10n/cn/entry.desktop -share/locale/l10n/cn/flag.png -share/locale/l10n/co/entry.desktop -share/locale/l10n/co/flag.png -share/locale/l10n/cz/entry.desktop -share/locale/l10n/cz/flag.png -share/locale/l10n/de/entry.desktop -share/locale/l10n/de/flag.png -share/locale/l10n/dk/entry.desktop -share/locale/l10n/dk/flag.png -share/locale/l10n/do/entry.desktop -share/locale/l10n/do/flag.png -share/locale/l10n/easteurope.desktop -share/locale/l10n/ec/entry.desktop -share/locale/l10n/ec/flag.png -share/locale/l10n/ee/entry.desktop -share/locale/l10n/ee/flag.png -share/locale/l10n/es/entry.desktop -share/locale/l10n/es/flag.png -share/locale/l10n/fi/entry.desktop -share/locale/l10n/fi/flag.png -share/locale/l10n/fr/entry.desktop -share/locale/l10n/fr/flag.png -share/locale/l10n/gb/entry.desktop -share/locale/l10n/gb/flag.png -share/locale/l10n/gd/entry.desktop -share/locale/l10n/gd/flag.png -share/locale/l10n/gr/entry.desktop -share/locale/l10n/gr/flag.png -share/locale/l10n/gt/entry.desktop -share/locale/l10n/gt/flag.png -share/locale/l10n/hn/entry.desktop -share/locale/l10n/hn/flag.png -share/locale/l10n/hr/entry.desktop -share/locale/l10n/hr/flag.png -share/locale/l10n/hu/entry.desktop -share/locale/l10n/hu/flag.png -share/locale/l10n/id/entry.desktop -share/locale/l10n/id/flag.png -share/locale/l10n/ie/entry.desktop -share/locale/l10n/ie/flag.png -share/locale/l10n/il/entry.desktop -share/locale/l10n/il/flag.png -share/locale/l10n/is/entry.desktop -share/locale/l10n/is/flag.png -share/locale/l10n/it/entry.desktop -share/locale/l10n/it/flag.png -share/locale/l10n/jm/entry.desktop -share/locale/l10n/jm/flag.png -share/locale/l10n/jp/entry.desktop -share/locale/l10n/jp/flag.png -share/locale/l10n/kn/entry.desktop -share/locale/l10n/kn/flag.png -share/locale/l10n/kp/entry.desktop -share/locale/l10n/kp/flag.png -share/locale/l10n/kr/entry.desktop -share/locale/l10n/kr/flag.png -share/locale/l10n/lc/entry.desktop -share/locale/l10n/lc/flag.png -share/locale/l10n/lt/entry.desktop -share/locale/l10n/lt/flag.png -share/locale/l10n/lu/entry.desktop -share/locale/l10n/lu/flag.png -share/locale/l10n/lv/entry.desktop -share/locale/l10n/lv/flag.png -share/locale/l10n/mk/entry.desktop -share/locale/l10n/mk/flag.png -share/locale/l10n/mt/entry.desktop -share/locale/l10n/mt/flag.png -share/locale/l10n/mx/entry.desktop -share/locale/l10n/mx/flag.png -share/locale/l10n/nl/entry.desktop -share/locale/l10n/nl/flag.png -share/locale/l10n/no/entry.desktop -share/locale/l10n/no/flag.png -share/locale/l10n/northamerica.desktop -share/locale/l10n/northeurope.desktop -share/locale/l10n/nz/entry.desktop -share/locale/l10n/nz/flag.png -share/locale/l10n/pa/entry.desktop -share/locale/l10n/pa/flag.png -share/locale/l10n/pe/entry.desktop -share/locale/l10n/pe/flag.png -share/locale/l10n/pl/entry.desktop -share/locale/l10n/pl/flag.png -share/locale/l10n/pt/entry.desktop -share/locale/l10n/pt/flag.png -share/locale/l10n/py/entry.desktop -share/locale/l10n/py/flag.png -share/locale/l10n/ro/entry.desktop -share/locale/l10n/ro/flag.png -share/locale/l10n/ru/entry.desktop -share/locale/l10n/ru/flag.png -share/locale/l10n/se/entry.desktop -share/locale/l10n/se/flag.png -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/southamerica.desktop -share/locale/l10n/southeurope.desktop -share/locale/l10n/sr/entry.desktop -share/locale/l10n/sr/flag.png -share/locale/l10n/sv/entry.desktop -share/locale/l10n/sv/flag.png -share/locale/l10n/th/entry.desktop -share/locale/l10n/th/flag.png -share/locale/l10n/tr/entry.desktop -share/locale/l10n/tr/flag.png -share/locale/l10n/tt/entry.desktop -share/locale/l10n/tt/flag.png -share/locale/l10n/tw/entry.desktop -share/locale/l10n/tw/flag.png -share/locale/l10n/ua/entry.desktop -share/locale/l10n/ua/flag.png -share/locale/l10n/us/entry.desktop -share/locale/l10n/us/flag.png -share/locale/l10n/uy/entry.desktop -share/locale/l10n/uy/flag.png -share/locale/l10n/vc/entry.desktop -share/locale/l10n/vc/flag.png -share/locale/l10n/ve/entry.desktop -share/locale/l10n/ve/flag.png -share/locale/l10n/westeurope.desktop -share/locale/l10n/za/entry.desktop -share/locale/l10n/za/flag.png -share/mimelnk/application/x-konsole.desktop -share/mimelnk/application/x-ksysguard.desktop -share/mimelnk/application/x-ktheme.desktop -share/services/bzip.protocol -share/services/bzip2.protocol -share/services/finger.protocol -share/services/floppy.protocol -share/services/gopher.protocol -share/services/gsthumbnail.desktop -share/services/gzip.protocol -share/services/htmlthumbnail.desktop -share/services/imagethumbnail.desktop -share/services/imap4.protocol -share/services/imaps.protocol -share/services/info.protocol -share/services/kaccess.desktop -share/services/kate_component.desktop -share/services/kded/favicons.desktop -share/services/kfindpart.desktop -share/services/khelpcenter.desktop -share/services/konq_aboutpage.desktop -share/services/konq_detailedlistview.desktop -share/services/konq_dirtree.desktop -share/services/konq_iconview.desktop -share/services/konq_multicolumnview.desktop -share/services/konq_sidebartng.desktop -share/services/konq_textview.desktop -share/services/konq_treeview.desktop -share/services/konqueror.desktop -share/services/konqueror_config.desktop -share/services/konsolepart.desktop -share/services/kshorturifilter.desktop -share/services/kuriikwsfilter.desktop -share/services/kurisearchfilter.desktop -share/services/kwrite_component.desktop -share/services/kxkb.desktop -share/services/kxmlrpcd.desktop -share/services/man.protocol -share/services/nfs.protocol -share/services/nntp.protocol -share/services/pop3.protocol -share/services/pop3s.protocol -share/services/searchproviders/acronym.desktop -share/services/searchproviders/altavista.desktop -share/services/searchproviders/austronaut.desktop -share/services/searchproviders/bugft.desktop -share/services/searchproviders/bugno.desktop -share/services/searchproviders/deja.desktop -share/services/searchproviders/dmoz.desktop -share/services/searchproviders/excite.desktop -share/services/searchproviders/foldoc.desktop -share/services/searchproviders/freshmeat.desktop -share/services/searchproviders/google.desktop -share/services/searchproviders/hotbot.desktop -share/services/searchproviders/jeeves.desktop -share/services/searchproviders/leo.desktop -share/services/searchproviders/lycos.desktop -share/services/searchproviders/mamma.desktop -share/services/searchproviders/metacrawler.desktop -share/services/searchproviders/realnames.desktop -share/services/searchproviders/rpmfind.desktop -share/services/searchproviders/seek.desktop -share/services/searchproviders/thesaurus.desktop -share/services/searchproviders/vivisimo.desktop -share/services/searchproviders/voila.desktop -share/services/searchproviders/webster.desktop -share/services/searchproviders/whatis.desktop -share/services/smb.protocol -share/services/tar.protocol -share/services/textthumbnail.desktop -share/services/thumbnail.protocol -share/services/useragentstrings/ie401onwinnt4.desktop -share/services/useragentstrings/ie45onwinnt5.desktop -share/services/useragentstrings/ie501onwinnt5.desktop -share/services/useragentstrings/ie50onppc.desktop -share/services/useragentstrings/ie50onwin95.desktop -share/services/useragentstrings/ie55onwin98.desktop -share/services/useragentstrings/ie55onwinnt5.desktop -share/services/useragentstrings/lynxoncurrent.desktop -share/services/useragentstrings/mozm18oncurrent.desktop -share/services/useragentstrings/mozm18onwinnt4.desktop -share/services/useragentstrings/nn301oncurrent.desktop -share/services/useragentstrings/nn475oncurrent.desktop -share/services/useragentstrings/nn475onwin95.desktop -share/services/useragentstrings/nn476onppc.desktop -share/services/useragentstrings/op403onwinnt4.desktop -share/services/useragentstrings/w3moncurrent.desktop -share/services/useragentstrings/wgetoncurrent.desktop -share/servicetypes/findpart.desktop -share/servicetypes/kate_servicetype.desktop -share/servicetypes/konqaboutpage.desktop -share/servicetypes/searchprovider.desktop -share/servicetypes/thumbcreator.desktop -share/servicetypes/uasprovider.desktop -share/sounds/KDE_Beep_Ahem.wav -share/sounds/KDE_Beep_Beep.wav -share/sounds/KDE_Beep_Bottles.wav -share/sounds/KDE_Beep_ClassicBeep.wav -share/sounds/KDE_Beep_ClockChime.wav -share/sounds/KDE_Beep_Connect.wav -share/sounds/KDE_Beep_Door.wav -share/sounds/KDE_Beep_Honk.wav -share/sounds/KDE_Beep_Lightning.wav -share/sounds/KDE_Beep_Pop.wav -share/sounds/KDE_Beep_RimShot.wav -share/sounds/KDE_Beep_RingRing.wav -share/sounds/KDE_Beep_ShortBeep.wav -share/sounds/KDE_Beep_Yo.wav -share/sounds/KDE_Click.wav -share/sounds/KDE_Close_Window.wav -share/sounds/KDE_Critical_Error.wav -share/sounds/KDE_Desktop1.wav -share/sounds/KDE_Desktop2.wav -share/sounds/KDE_Desktop3.wav -share/sounds/KDE_Desktop4.wav -share/sounds/KDE_Desktop5.wav -share/sounds/KDE_Desktop6.wav -share/sounds/KDE_Desktop7.wav -share/sounds/KDE_Desktop8.wav -share/sounds/KDE_Dialog_Appear.wav -share/sounds/KDE_Dialog_Disappear.wav -share/sounds/KDE_Error.wav -share/sounds/KDE_Logout.wav -share/sounds/KDE_Notify.wav -share/sounds/KDE_Startup.wav -share/sounds/KDE_Window_Close.wav -share/sounds/KDE_Window_DeIconify.wav -share/sounds/KDE_Window_Iconify.wav -share/sounds/KDE_Window_Maximize.wav -share/sounds/KDE_Window_Open.wav -share/sounds/KDE_Window_Shade_Down.wav -share/sounds/KDE_Window_Shade_Up.wav -share/sounds/KDE_Window_Sticky.wav -share/sounds/KDE_Window_UnMaximize.wav -share/sounds/KDE_Window_UnSticky.wav -share/sounds/pop.wav -share/templates/.source/CDROM-Device.desktop -share/templates/.source/Floppy.desktop -share/templates/.source/HD.desktop -share/templates/.source/HTMLFile.html -share/templates/.source/Program.desktop -share/templates/.source/TextFile.txt -share/templates/.source/URL.desktop -share/templates/Directory.desktop -share/templates/HTMLFile.desktop -share/templates/TextFile.desktop -share/templates/linkCDROM.desktop -share/templates/linkFloppy.desktop -share/templates/linkHD.desktop -share/templates/linkProgram.desktop -share/templates/linkURL.desktop -share/wallpapers/All-Good-People-1.jpg -share/wallpapers/Ancient_Glyphs.jpg -share/wallpapers/Appropriately-Left-Handed-2.jpg -share/wallpapers/Blkmarble.jpg -share/wallpapers/Chicken-Songs-2.jpg -share/wallpapers/Circuit.jpg -share/wallpapers/Dasding.jpg -share/wallpapers/Foggy1.jpg -share/wallpapers/Marble01.jpg -share/wallpapers/No-Ones-Laughing-3.jpg -share/wallpapers/Paper01.jpg -share/wallpapers/Planning-And-Probing-1.jpg -share/wallpapers/Prpbumps.jpg -share/wallpapers/Superfluous-Organ-1.jpg -share/wallpapers/The-Good-Times-1.jpg -share/wallpapers/Time-For-Lunch-2.jpg -share/wallpapers/Totally-New-Product-1.jpg -share/wallpapers/Water01.jpg -share/wallpapers/Whirling_Spirit.jpg -share/wallpapers/Won-Ton-Soup-3.jpg -share/wallpapers/blue_angle_swirl.jpg -share/wallpapers/bluegreencrisscross.jpg -share/wallpapers/default_blue.jpg -share/wallpapers/gold_crinkle.jpg -share/wallpapers/kdm_bg.jpg -share/wallpapers/northbeach.jpg -share/wallpapers/simple_wallpaper.jpg -share/wallpapers/sunday_brunch.jpg -share/wallpapers/vegetative_fog.jpg -@dirrm share/wallpapers -@dirrm share/templates/.source/emptydir -@dirrm share/templates/.source -@dirrm share/templates -@dirrm share/sounds -@dirrm share/services/useragentstrings -@dirrm share/services/searchproviders -@dirrm share/locale/l10n/za -@dirrm share/locale/l10n/ve -@dirrm share/locale/l10n/vc -@dirrm share/locale/l10n/uy -@dirrm share/locale/l10n/us -@dirrm share/locale/l10n/ua -@dirrm share/locale/l10n/tw -@dirrm share/locale/l10n/tt -@dirrm share/locale/l10n/tr -@dirrm share/locale/l10n/th -@dirrm share/locale/l10n/sv -@dirrm share/locale/l10n/sr -@dirrm share/locale/l10n/sk -@dirrm share/locale/l10n/si -@dirrm share/locale/l10n/se -@dirrm share/locale/l10n/ru -@dirrm share/locale/l10n/ro -@dirrm share/locale/l10n/py -@dirrm share/locale/l10n/pt -@dirrm share/locale/l10n/pl -@dirrm share/locale/l10n/pe -@dirrm share/locale/l10n/pa -@dirrm share/locale/l10n/nz -@dirrm share/locale/l10n/no -@dirrm share/locale/l10n/nl -@dirrm share/locale/l10n/mx -@dirrm share/locale/l10n/mt -@dirrm share/locale/l10n/mk -@dirrm share/locale/l10n/lv -@dirrm share/locale/l10n/lu -@dirrm share/locale/l10n/lt -@dirrm share/locale/l10n/lc -@dirrm share/locale/l10n/kr -@dirrm share/locale/l10n/kp -@dirrm share/locale/l10n/kn -@dirrm share/locale/l10n/jp -@dirrm share/locale/l10n/jm -@dirrm share/locale/l10n/it -@dirrm share/locale/l10n/is -@dirrm share/locale/l10n/il -@dirrm share/locale/l10n/ie -@dirrm share/locale/l10n/id -@dirrm share/locale/l10n/hu -@dirrm share/locale/l10n/hr -@dirrm share/locale/l10n/hn -@dirrm share/locale/l10n/gt -@dirrm share/locale/l10n/gr -@dirrm share/locale/l10n/gd -@dirrm share/locale/l10n/gb -@dirrm share/locale/l10n/fr -@dirrm share/locale/l10n/fi -@dirrm share/locale/l10n/es -@dirrm share/locale/l10n/ee -@dirrm share/locale/l10n/ec -@dirrm share/locale/l10n/do -@dirrm share/locale/l10n/dk -@dirrm share/locale/l10n/de -@dirrm share/locale/l10n/cz -@dirrm share/locale/l10n/co -@dirrm share/locale/l10n/cn -@dirrm share/locale/l10n/cl -@dirrm share/locale/l10n/ch -@dirrm share/locale/l10n/ca -@dirrm share/locale/l10n/br -@dirrm share/locale/l10n/bo -@dirrm share/locale/l10n/bg -@dirrm share/locale/l10n/be -@dirrm share/locale/l10n/bb -@dirrm share/locale/l10n/az -@dirrm share/locale/l10n/au -@dirrm share/locale/l10n/at -@dirrm share/locale/l10n/ar -@dirrm share/locale/l10n/ag -@dirrm share/locale/l10n/C -@dirrm share/locale/l10n -@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/icons/hicolor/48x48/apps -@dirrm share/icons/hicolor/32x32/apps -@dirrm share/fonts/override -@dirrm share/fonts -@dirrm share/doc/HTML/en/kwrite -@dirrm share/doc/HTML/en/ksysguard -@dirrm share/doc/HTML/en/kpager -@dirrm share/doc/HTML/en/konsole -@dirrm share/doc/HTML/en/konqueror -@dirrm share/doc/HTML/en/kmenuedit -@dirrm share/doc/HTML/en/klipper -@dirrm share/doc/HTML/en/kioslave -@dirrm share/doc/HTML/en/kicker -@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/kdm -@dirrm share/doc/HTML/en/kdesu -@dirrm share/doc/HTML/en/kdeprint -@dirrm share/doc/HTML/en/kdebugdialog -@dirrm share/doc/HTML/en/kcontrol -@dirrm share/doc/HTML/en/kate -@dirrm share/doc/HTML/en/kaddressbook -@dirrm share/config/kdm -@dirrm share/autostart -@dirrm share/apps/naughtyapplet/pics -@dirrm share/apps/naughtyapplet -@dirrm share/apps/kwrite -@dirrm share/apps/kwin/pics -@dirrm share/apps/kwin/icewm-themes -@dirrm share/apps/kwin -@dirrm share/apps/kthememgr/Themes -@dirrm share/apps/kthememgr -@dirrm share/apps/ksysguard/pics -@dirrm share/apps/ksysguard -@dirrm share/apps/ksplash/pics/locolor -@dirrm share/apps/ksplash/pics -@dirrm share/apps/ksplash -@dirrm share/apps/kscreensaver -@dirrm share/apps/kpersonalizer/pics -@dirrm share/apps/kpersonalizer -@dirrm share/apps/konsole -@dirrm share/apps/konqueror/tiles -@dirrm share/apps/konqueror/profiles -@dirrm share/apps/konqueror/pics -@dirrm share/apps/konqueror/icons/hicolor/16x16/actions -@dirrm share/apps/konqueror/icons/hicolor/16x16 -@dirrm share/apps/konqueror/icons/hicolor -@dirrm share/apps/konqueror/icons -@dirrm share/apps/konqueror/dirtree/services -@dirrm share/apps/konqueror/dirtree/remote/web -@dirrm share/apps/konqueror/dirtree/remote/ftp -@dirrm share/apps/konqueror/dirtree/remote -@dirrm share/apps/konqueror/dirtree -@dirrm share/apps/konqueror/about -@dirrm share/apps/konqueror -@dirrm share/apps/konqsidebartng/virtual_folders/services -@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/virtual_folders -@dirrm share/apps/konqsidebartng/entries -@dirrm share/apps/konqsidebartng/dirtree -@dirrm share/apps/konqsidebartng/add -@dirrm share/apps/konqsidebartng -@dirrm share/apps/konqlistview/kpartplugins -@dirrm share/apps/konqlistview -@dirrm share/apps/konqiconview/kpartplugins -@dirrm share/apps/konqiconview -@dirrm share/apps/kmenuedit/icons/locolor/16x16/actions -@dirrm share/apps/kmenuedit/icons/locolor/16x16 -@dirrm share/apps/kmenuedit/icons/locolor -@dirrm share/apps/kmenuedit/icons/hicolor/32x32/actions -@dirrm share/apps/kmenuedit/icons/hicolor/32x32 -@dirrm share/apps/kmenuedit/icons/hicolor/22x22/actions -@dirrm share/apps/kmenuedit/icons/hicolor/22x22 -@dirrm share/apps/kmenuedit/icons/hicolor -@dirrm share/apps/kmenuedit/icons -@dirrm share/apps/kmenuedit -@dirrm share/apps/kjobviewer -@dirrm share/apps/kioslave -@dirrm share/apps/kio_info -@dirrm share/apps/kio_finger -@dirrm share/apps/kicker/wallpapers -@dirrm share/apps/kicker/tiles -@dirrm share/apps/kicker/pics -@dirrm share/apps/kicker/icons/locolor/16x16/actions -@dirrm share/apps/kicker/icons/locolor/16x16 -@dirrm share/apps/kicker/icons/locolor -@dirrm share/apps/kicker/icons/hicolor/16x16/actions -@dirrm share/apps/kicker/icons/hicolor/16x16 -@dirrm share/apps/kicker/icons/hicolor -@dirrm share/apps/kicker/icons -@dirrm share/apps/kicker/extensions -@dirrm share/apps/kicker/applets -@dirrm share/apps/kicker -@dirrm share/apps/khelpcenter/plugins/Tutorials -@dirrm share/apps/khelpcenter/plugins -@dirrm share/apps/khelpcenter -@dirrm share/apps/kfind/icons/locolor/22x22/actions -@dirrm share/apps/kfind/icons/locolor/22x22 -@dirrm share/apps/kfind/icons/locolor -@dirrm share/apps/kfind/icons -@dirrm share/apps/kfind -@dirrm share/apps/keditbookmarks -@dirrm share/apps/kdm/pics/users -@dirrm share/apps/kdm/pics -@dirrm share/apps/kdm -@dirrm share/apps/kdisplay/color-schemes -@dirrm share/apps/kdisplay/app-defaults -@dirrm share/apps/kdisplay -@dirrm share/apps/kdewizard/pics -@dirrm share/apps/kdewizard -@dirrm share/apps/kdesktop/programs -@dirrm share/apps/kdesktop/pics -@dirrm share/apps/kdesktop/patterns -@dirrm share/apps/kdesktop/DesktopLinks -@dirrm share/apps/kdesktop -@dirrm share/apps/kdeprintfax/icons/hicolor/16x16/actions -@dirrm share/apps/kdeprintfax/icons/hicolor/16x16 -@dirrm share/apps/kdeprintfax/icons/hicolor -@dirrm share/apps/kdeprintfax/icons -@dirrm share/apps/kdeprintfax -@dirrm share/apps/kdcop -@dirrm share/apps/kcontrol/pics -@dirrm share/apps/kcontrol -@dirrm share/apps/kcmusb -@dirrm share/apps/kcmlocale/pics -@dirrm share/apps/kcmlocale -@dirrm share/apps/kcmkeys/standard -@dirrm share/apps/kcmkeys/global -@dirrm share/apps/kcmkeys -@dirrm share/apps/kcminput/pics -@dirrm share/apps/kcminput -@dirrm share/apps/kcmcss -@dirrm share/apps/kbookmark -@dirrm share/apps/kate/syntax -@dirrm share/apps/kate/pics -@dirrm share/apps/kate/icons/locolor/22x22/actions -@dirrm share/apps/kate/icons/locolor/22x22 -@dirrm share/apps/kate/icons/locolor/16x16/actions -@dirrm share/apps/kate/icons/locolor/16x16 -@dirrm share/apps/kate/icons/locolor -@dirrm share/apps/kate/icons/hicolor/48x48/actions -@dirrm share/apps/kate/icons/hicolor/48x48 -@dirrm share/apps/kate/icons/hicolor/32x32/actions -@dirrm share/apps/kate/icons/hicolor/32x32 -@dirrm share/apps/kate/icons/hicolor/22x22/actions -@dirrm share/apps/kate/icons/hicolor/22x22 -@dirrm share/apps/kate/icons/hicolor/16x16/actions -@dirrm share/apps/kate/icons/hicolor/16x16 -@dirrm share/apps/kate/icons/hicolor -@dirrm share/apps/kate/icons -@dirrm share/apps/kate -@dirrm share/apps/kappfinder/apps/WordProcessing -@dirrm share/apps/kappfinder/apps/Utilities/XUtilities -@dirrm share/apps/kappfinder/apps/Utilities -@dirrm share/apps/kappfinder/apps/Toys -@dirrm share/apps/kappfinder/apps/System/Terminal -@dirrm share/apps/kappfinder/apps/System/ScreenSavers -@dirrm share/apps/kappfinder/apps/System -@dirrm share/apps/kappfinder/apps/Office -@dirrm share/apps/kappfinder/apps/Multimedia -@dirrm share/apps/kappfinder/apps/Internet/Terminal -@dirrm share/apps/kappfinder/apps/Internet -@dirrm share/apps/kappfinder/apps/Graphics -@dirrm share/apps/kappfinder/apps/Games/TacticStrategy -@dirrm share/apps/kappfinder/apps/Games/Emulators -@dirrm share/apps/kappfinder/apps/Games/Card -@dirrm share/apps/kappfinder/apps/Games/Board -@dirrm share/apps/kappfinder/apps/Games/Arcade -@dirrm share/apps/kappfinder/apps/Games -@dirrm share/apps/kappfinder/apps/Editors -@dirrm share/apps/kappfinder/apps/Development -@dirrm share/apps/kappfinder/apps -@dirrm share/apps/kappfinder -@dirrm share/apps/kaddressbook/pics -@dirrm share/apps/kaddressbook -@dirrm share/apps/drkonqi/presets -@dirrm share/apps/drkonqi/pics -@dirrm share/apps/drkonqi/debuggers -@dirrm share/apps/drkonqi -@dirrm share/apps/clockapplet/pics -@dirrm share/apps/clockapplet -@dirrm share/applnk/ksysguard -@dirrm share/applnk/WordProcessing -@dirrm share/applnk/Utilities -@dirrm share/applnk/Toys -@dirrm share/applnk/System/Terminal -@dirrm share/applnk/System/ScreenSavers -@dirrm share/applnk/System -@dirrm share/applnk/Settings/WebBrowsing -@dirrm share/applnk/Settings/System -@dirrm share/applnk/Settings/Sound -@dirrm share/applnk/Settings/PowerControl -@dirrm share/applnk/Settings/Personalization -@dirrm share/applnk/Settings/Peripherals -@dirrm share/applnk/Settings/Network -@dirrm share/applnk/Settings/LookNFeel/Windows -@dirrm share/applnk/Settings/LookNFeel/Themes -@dirrm share/applnk/Settings/LookNFeel/Desktop -@dirrm share/applnk/Settings/LookNFeel -@dirrm share/applnk/Settings/Information -@dirrm share/applnk/Settings/Help -@dirrm share/applnk/Settings/FileBrowsing -@dirrm share/applnk/Settings/Databases -@dirrm share/applnk/Settings -@dirrm share/applnk/Office -@dirrm share/applnk/Multimedia -@dirrm share/applnk/Internet/Terminal -@dirrm share/applnk/Internet -@dirrm share/applnk/Graphics -@dirrm share/applnk/Games/TacticStrategy -@dirrm share/applnk/Games/Card -@dirrm share/applnk/Games/Board -@dirrm share/applnk/Games/Arcade -@dirrm share/applnk/Games -@dirrm share/applnk/Editors -@dirrm share/applnk/Development -@dirrm share/applnk/Applications -@dirrm share/applnk/.hidden -@dirrm share/applnk -@dirrm include/kwin -@dirrm include/kate |