diff options
Diffstat (limited to 'misc')
293 files changed, 5 insertions, 41801 deletions
diff --git a/misc/amanda25-client/Makefile b/misc/amanda25-client/Makefile deleted file mode 100644 index 9de355565384..000000000000 --- a/misc/amanda25-client/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# New ports collection makefile for: amanda -# Date created: 28th Feb 1995 -# Whom: gpalmer -# -# $FreeBSD$ -# - -PORTNAME= ${MASTERPORTNAME:S/-server/-client/g} -PORTREVISION= 0 - -MASTERDIR= ${.CURDIR}/../amanda-server -COMMENT= The Advanced Maryland Automatic Network Disk Archiver (client) -PKGINSTALL= mustnotexist -PLIST= ${PKGDIR}/pkg-plist.client - -CLIENT_ONLY= yes - -.include "${MASTERDIR}/Makefile" diff --git a/misc/amanda25-server/Makefile b/misc/amanda25-server/Makefile deleted file mode 100644 index 4f1c4680d7d0..000000000000 --- a/misc/amanda25-server/Makefile +++ /dev/null @@ -1,213 +0,0 @@ -# New ports collection makefile for: amanda -# Date created: 28th Feb 1995 -# Whom: gpalmer -# -# $FreeBSD$ -# - -PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 2.4.5 -PORTREVISION?= 1 -PORTEPOCH= 1 -CATEGORIES= misc -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= amanda -DISTFILES= amanda-${PORTVERSION}${EXTRACT_SUFX} - -MAINTAINER= ports@FreeBSD.org -COMMENT?= The Advanced Maryland Automatic Network Disk Archiver (server) - -WRKSRC= ${WRKDIR}/amanda-${PORTVERSION} -SLAVEDIRS= misc/amanda-client -MASTERPORTNAME= amanda-server - -NO_LATEST_LINK= yes -USE_AUTOCONF_VER= 259 -USE_GMAKE= yes -PATCH_STRIP= - -.include <bsd.port.pre.mk> - -.if exists(/usr/include/sys/scsiio.h) -.error You have the file /usr/include/sys/scsiio.h on your system. This was removed after FreeBSD 3.5 and will break the build of this port. Please remove it. -.endif - -CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} - -AMANDA_USER?= operator -AMANDA_GROUP?= operator -AMANDA_GNUTAR_LISTDIR?= ${PREFIX}/var/amanda/gnutar-lists - -# amanda-server part -.if !defined(CLIENT_ONLY) - -pre-fetch: - @${ECHO} "" - @${ECHO} "You may use the following build options:" - @${ECHO} "" - @${ECHO} " -DWITH_PLOT to enable ploting, requires X11 libraries" - @${ECHO} " -DWITH_SAMBA to enable the use of smbclient" - @${ECHO} " -DWITH_MTX to enable the use of mtx changer scripts" - @${ECHO} " AMANDA_SERVER=server to specify a server name" - @${ECHO} " The default is `uname -n`" - @${ECHO} " AMANDA_TAPE=tape to specify the default tape device" - @${ECHO} " The default is /dev/nrsa0" - @${ECHO} " AMANDA_CONFIG=config to specify the default configuration" - @${ECHO} " The default is user" - @${ECHO} " AMANDA_USER=user to specify the default user" - @${ECHO} " The default is operator" - @${ECHO} " AMANDA_GROUP=group to specify the default group" - @${ECHO} " The default is operator" - @${ECHO} " AMANDA_PORTRANGE=low,high to restrict Amanda to TCP ports" - @${ECHO} " between low and high when connecting from the server" - @${ECHO} " to the client for data, messages, and indexing." - @${ECHO} " The default is no restriction on TCP ports." - @${ECHO} " AMANDA_UDPPORTRANGE=low,high to restrict Amanda to UDP ports" - @${ECHO} " between low and high when connecting from the client" - @${ECHO} " to the server. Use ports below 1024." - @${ECHO} " The default is no restriction on UDP ports." - @${ECHO} "" - -USE_PERL5= yes - -RUN_DEPENDS= ${LOCALBASE}/sbin/amrecover:${PORTSDIR}/misc/amanda-client -BUILD_DEPENDS= ${LOCALBASE}/sbin/amrecover:${PORTSDIR}/misc/amanda-client - -CONFIGURE_ARGS= --libexecdir=${PREFIX}/libexec/amanda \ - --with-amandahosts --with-fqdn \ - --with-dump-honor-nodump --with-buffered-dump \ - --without-client --disable-libtool --prefix=${PREFIX} \ - --with-user=${AMANDA_USER} --with-group=${AMANDA_GROUP} \ - --with-gnutar-listdir=${AMANDA_GNUTAR_LISTDIR} - -MAN8= amadmin.8 amcheck.8 amcheckdb.8 amcleanup.8 amdd.8 \ - amdump.8 amflush.8 amgetconf.8 amlabel.8 ammt.8 \ - amoverview.8 amreport.8 amrmtape.8 amstatus.8 \ - amtape.8 amtoc.8 amverify.8 amverifyrun.8 amtapetype.8 - -.if defined (WITH_PLOT) -BUILD_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot -RUN_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot -MAN8+= amplot.8 -PLIST_SUB+= PLOT='' -.else -PLIST_SUB+= PLOT='@comment ' -.endif - -.if defined (WITH_SAMBA) -BUILD_DEPENDS+= smbclient:${PORTSDIR}/net/samba -RUN_DEPENDS+= smbclient:${PORTSDIR}/net/samba -CONFIGURE_ARGS+= --with-smbclient=${PREFIX}/bin/smbclient -.endif - -.if defined (WITH_MTX) -BUILD_DEPENDS+= mtx:${PORTSDIR}/misc/mtx -RUN_DEPENDS+= mtx:${PORTSDIR}/misc/mtx -.endif - -.if defined (AMANDA_SERVER) -CONFIGURE_ARGS+= --with-index-server=${AMANDA_SERVER} -CONFIGURE_ARGS+= --with-tape-server=${AMANDA_SERVER} -.endif - -.if defined (AMANDA_TAPE) -CONFIGURE_ARGS+= --with-tape-device=${AMANDA_TAPE} -.endif - -.if defined (AMANDA_CONFIG) -CONFIGURE_ARGS+= --with-config=${AMANDA_CONFIG} -.endif - -.if defined (AMANDA_UDPPORTRANGE) -CONFIGURE_ARGS+= --with-udpportrange=${AMANDA_UDPPORTRANGE} -.endif - -.if defined (AMANDA_PORTRANGE) -CONFIGURE_ARGS+= --with-portrange=${AMANDA_PORTRANGE} -.endif - -# -# Before 4.0, pre-CAM scsiio.h existed -.if ${OSVERSION} < 400000 -PLIST_SUB+= SCSICHG='' -.elif ${OSVERSION} >= 480000 -.if ${MACHINE_ARCH} == "amd64" -PLIST_SUB+= SCSICHG='@comment ' -.elif ${OSVERSION} >= 502000 -PLIST_SUB+= SCSICHG='@comment ' -.else -PLIST_SUB+= SCSICHG='' -.endif -.else -PLIST_SUB+= SCSICHG='@comment ' -.endif - -# amanda-client part -.else - -pre-fetch: - @${ECHO} "" - @${ECHO} "You may use the following build options:" - @${ECHO} "" - @${ECHO} " AMANDA_SERVER=server to specify a server name" - @${ECHO} " The default is `uname -n`" - @${ECHO} " AMANDA_CONFIG=config to specify the default configuation" - @${ECHO} " The default is user" - @${ECHO} " AMANDA_GNUTAR_LISTDIR=dir to specify the directory that" - @${ECHO} " the gnutar index files should live in" - @${ECHO} " The default is /var/amanda/gnutar-lists" - @${ECHO} " AMANDA_USER=user to specify the default user" - @${ECHO} " The default is operator" - @${ECHO} " AMANDA_GROUP=group to specify the default group" - @${ECHO} " The default is operator" - @${ECHO} " AMANDA_PORTRANGE=low,high to restrict Amanda to TCP ports" - @${ECHO} " between low and high when connecting from the server" - @${ECHO} " to the client for data, messages, and indexing." - @${ECHO} " The default is no restriction on TCP ports." - @${ECHO} " AMANDA_UDPPORTRANGE=low,high to restrict Amanda to UDP ports" - @${ECHO} " between low and high when connecting from the client" - @${ECHO} " to the server. Use ports below 1024." - @${ECHO} " The default is no restriction on UDP ports." - @${ECHO} "" - -CONFIGURE_ARGS= --libexecdir=${PREFIX}/libexec/amanda \ - --with-amandahosts --with-fqdn \ - --with-dump-honor-nodump --with-buffered-dump \ - --without-server --disable-libtool --prefix=${PREFIX} \ - --with-user=${AMANDA_USER} --with-group=${AMANDA_GROUP} \ - --with-gnutar-listdir=${AMANDA_GNUTAR_LISTDIR} - -MAN8= amanda.8 amrecover.8 amrestore.8 - -post-install: - ${MKDIR} ${PREFIX}/share/examples/amanda - ${CP} -R ${WRKSRC}/example/amanda.conf \ - ${WRKSRC}/example/chg-multi.conf \ - ${WRKSRC}/example/chg-scsi.conf \ - ${WRKSRC}/example/disklist \ - ${PREFIX}/share/examples/amanda - ${MKDIR} ${AMANDA_GNUTAR_LISTDIR} - ${CHOWN} ${AMANDA_USER}:${AMANDA_GROUP} ${AMANDA_GNUTAR_LISTDIR} - ${TOUCH} /etc/amandates - ${CHOWN} ${AMANDA_USER}:${AMANDA_GROUP} /etc/amandates - -.if defined (AMANDA_SERVER) -CONFIGURE_ARGS+= --with-index-server=${AMANDA_SERVER} -CONFIGURE_ARGS+= --with-tape-server=${AMANDA_SERVER} -.endif - -.if defined (AMANDA_CONFIG) -CONFIGURE_ARGS+= --with-config=${AMANDA_CONFIG} -.endif - -.if defined (AMANDA_UDPPORTRANGE) -CONFIGURE_ARGS+= --with-udpportrange=${AMANDA_UDPPORTRANGE} -.endif - -.if defined (AMANDA_PORTRANGE) -CONFIGURE_ARGS+= --with-portrange=${AMANDA_PORTRANGE} -.endif - -.endif - -.include <bsd.port.post.mk> diff --git a/misc/amanda25-server/distinfo b/misc/amanda25-server/distinfo deleted file mode 100644 index 659ab3d3fc41..000000000000 --- a/misc/amanda25-server/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (amanda-2.4.5.tar.gz) = 1960b7875424e412d042bc92a1548d7f -SIZE (amanda-2.4.5.tar.gz) = 1541761 diff --git a/misc/amanda25-server/files/patch-aa b/misc/amanda25-server/files/patch-aa deleted file mode 100644 index c5029f0fdfde..000000000000 --- a/misc/amanda25-server/files/patch-aa +++ /dev/null @@ -1,20 +0,0 @@ ---- man/Makefile.in.orig Fri Oct 22 09:12:40 2004 -+++ man/Makefile.in Mon Nov 8 06:24:40 2004 -@@ -254,7 +254,7 @@ - target_os = @target_os@ - target_vendor = @target_vendor@ - @WANT_AMPLOT_TRUE@AMPLOT_MAN_PAGES = amplot.8 --COMMON_MAN_PAGES = amanda.8 -+@WANT_CLIENT_TRUE@COMMON_MAN_PAGES = amanda.8 - @WANT_SERVER_TRUE@SERVER_MAN_PAGES = amadmin.8 \ - @WANT_SERVER_TRUE@ amcheck.8 \ - @WANT_SERVER_TRUE@ amcheckdb.8 \ -@@ -276,7 +276,7 @@ - @WANT_SERVER_TRUE@ amverifyrun.8 - - @WANT_RECOVER_TRUE@RECOVER_MAN_PAGES = amrecover.8 --@WANT_RESTORE_TRUE@RESTORE_MAN_PAGES = amrestore.8 -+@WANT_CLIENT_TRUE@RESTORE_MAN_PAGES = amrestore.8 - - # not autoconf-generated: - EXTRA_DIST = amplot.8 amrestore.8 amtape.8 amdd.8 ammt.8 diff --git a/misc/amanda25-server/files/patch-ab b/misc/amanda25-server/files/patch-ab deleted file mode 100644 index 4f6bc0ca5d58..000000000000 --- a/misc/amanda25-server/files/patch-ab +++ /dev/null @@ -1,12 +0,0 @@ ---- common-src/Makefile.in Fri Nov 30 11:33:48 2001 -+++ common-src/Makefile.in.new Fri Nov 30 18:03:29 2001 -@@ -611,7 +611,8 @@ - - install-data-am: - --install-exec-am: install-libLTLIBRARIES -+@WANT_CLIENT_TRUE@install-exec-am: @WANT_CLIENT_TRUE@install-libLTLIBRARIES -+@WANT_SERVER_TRUE@install-exec-am: - - install-info: - diff --git a/misc/amanda25-server/files/patch-ac b/misc/amanda25-server/files/patch-ac deleted file mode 100644 index c2af6273b054..000000000000 --- a/misc/amanda25-server/files/patch-ac +++ /dev/null @@ -1,11 +0,0 @@ ---- tape-src/Makefile.in.orig Fri Oct 22 09:12:42 2004 -+++ tape-src/Makefile.in Mon Nov 8 06:27:54 2004 -@@ -41,7 +41,7 @@ - PRE_UNINSTALL = : - POST_UNINSTALL = : - host_triplet = @host@ --sbin_PROGRAMS = ammt$(EXEEXT) amdd$(EXEEXT) amtapetype$(EXEEXT) -+@WANT_SERVER_TRUE@sbin_PROGRAMS = ammt$(EXEEXT) amdd$(EXEEXT) amtapetype$(EXEEXT) - EXTRA_PROGRAMS = $(am__EXEEXT_1) - subdir = tape-src - DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \ diff --git a/misc/amanda25-server/files/patch-ad b/misc/amanda25-server/files/patch-ad deleted file mode 100644 index 8d41e16eb9cb..000000000000 --- a/misc/amanda25-server/files/patch-ad +++ /dev/null @@ -1,14 +0,0 @@ ---- client-src/calcsize.c.orig Mon Nov 4 20:37:53 2002 -+++ client-src/calcsize.c Thu Oct 23 19:25:07 2003 -@@ -130,7 +130,11 @@ - dump_total += (ST_BLOCKS(finfo) + 1)/2 + 1; - gtar_total += ROUND(4,(ST_BLOCKS(finfo) + 1)); - } -+#ifdef GNUTAR -+ printf(" GNUTAR dump\n"); -+#else - printf(" gtar dump\n"); -+#endif - printf("total %-9lu %-9lu\n",gtar_total,dump_total); - return 0; - #else diff --git a/misc/amanda25-server/files/patch-ae b/misc/amanda25-server/files/patch-ae deleted file mode 100644 index c52b8e445369..000000000000 --- a/misc/amanda25-server/files/patch-ae +++ /dev/null @@ -1,14 +0,0 @@ ---- client-src/sendbackup-gnutar.c.orig Sat Jan 4 12:46:08 2003 -+++ client-src/sendbackup-gnutar.c Thu Oct 23 19:22:31 2003 -@@ -480,7 +480,11 @@ - - start_index(options->createindex, dumpout, mesgf, indexf, indexcmd); - -+#ifdef GNUTAR -+ my_argv[i++] = "GNUTAR"; -+#else - my_argv[i++] = "gtar"; -+#endif - my_argv[i++] = "--create"; - my_argv[i++] = "--file"; - my_argv[i++] = "-"; diff --git a/misc/amanda25-server/files/patch-server-src_infofile.c b/misc/amanda25-server/files/patch-server-src_infofile.c deleted file mode 100644 index e826e411303e..000000000000 --- a/misc/amanda25-server/files/patch-server-src_infofile.c +++ /dev/null @@ -1,11 +0,0 @@ ---- server-src/infofile.c.orig Wed Mar 16 11:15:28 2005 -+++ server-src/infofile.c Thu Jul 7 14:12:54 2005 -@@ -274,7 +274,7 @@ - rc = 0; - - nb_history = 0; -- for(i=0;i<=NB_HISTORY+1;i++) { -+ for(i=0;i<sizeof(info->history)/sizeof(info->history[0]);i++) { - info->history[i].level = -2; - } - for(rc = -2; (line = agets(infof)) != NULL; free(line)) { diff --git a/misc/amanda25-server/pkg-descr b/misc/amanda25-server/pkg-descr deleted file mode 100644 index 054161f6aeb2..000000000000 --- a/misc/amanda25-server/pkg-descr +++ /dev/null @@ -1,22 +0,0 @@ -WHAT IS AMANDA? ---------------- - -This is a release of Amanda, the Advanced Maryland Automatic -Network Disk Archiver. Amanda is a backup system designed to archive many -computers on a network to a single large-capacity tape drive. - -Here are some features of Amanda: - - * written in C, freely distributable. - * built on top of standard backup software: Unix dump/restore, and - later GNU Tar and others. - * will back up multiple machines in parallel to a holding disk, blasting - finished dumps one by one to tape as fast as we can write files to - tape. For example, a ~2 Gb 8mm tape on a ~240K/s interface to a host - with a large holding disk can be filled by Amanda in under 4 hours. - * does simple tape management: will not overwrite the wrong tape. - -WWW: http://sourceforge.net/projects/amanda/ - -- Jim -jeh@FreeBSD.org diff --git a/misc/amanda25-server/pkg-plist b/misc/amanda25-server/pkg-plist deleted file mode 100644 index 52109b8f2c3b..000000000000 --- a/misc/amanda25-server/pkg-plist +++ /dev/null @@ -1,57 +0,0 @@ -lib/libamserver-2.4.5.so -lib/libamserver.so -lib/libamserver.la -lib/libamserver.a -lib/libamtape-2.4.5.so -lib/libamtape.so -lib/libamtape.la -lib/libamtape.a -%%PLOT%%libexec/amanda/amcat.awk -libexec/amanda/amcleanupdisk -libexec/amanda/amindexd -libexec/amanda/amlogroll -%%PLOT%%libexec/amanda/amplot.awk -%%PLOT%%libexec/amanda/amplot.g -%%PLOT%%libexec/amanda/amplot.gp -libexec/amanda/amtrmidx -libexec/amanda/amtrmlog -libexec/amanda/chg-chio -libexec/amanda/chg-chs -libexec/amanda/chg-disk -libexec/amanda/chg-iomega -libexec/amanda/chg-juke -libexec/amanda/chg-manual -libexec/amanda/chg-mcutil -libexec/amanda/chg-mtx -libexec/amanda/chg-multi -libexec/amanda/chg-null -libexec/amanda/chg-rait -libexec/amanda/chg-rth -%%SCSICHG%%libexec/amanda/chg-scsi -libexec/amanda/chg-zd-mtx -libexec/amanda/amidxtaped -libexec/amanda/driver -libexec/amanda/dumper -libexec/amanda/planner -libexec/amanda/taper -sbin/amadmin -sbin/amcheck -sbin/amcheckdb -sbin/amcleanup -sbin/amdd -sbin/amdump -sbin/amflush -sbin/amgetconf -sbin/amlabel -sbin/ammt -sbin/amoverview -%%PLOT%%sbin/amplot -sbin/amreport -sbin/amrestore -sbin/amrmtape -sbin/amstatus -sbin/amtape -sbin/amtapetype -sbin/amtoc -sbin/amverify -sbin/amverifyrun diff --git a/misc/amanda25-server/pkg-plist.client b/misc/amanda25-server/pkg-plist.client deleted file mode 100644 index f121624417af..000000000000 --- a/misc/amanda25-server/pkg-plist.client +++ /dev/null @@ -1,104 +0,0 @@ -lib/libamanda-2.4.5.so -lib/libamanda.so -lib/libamanda.la -lib/libamanda.a -lib/libamclient-2.4.5.so -lib/libamclient.so -lib/libamclient.la -lib/libamclient.a -libexec/amanda/amandad -libexec/amanda/amqde -libexec/amanda/calcsize -libexec/amanda/killpgrp -libexec/amanda/patch-system -libexec/amanda/rundump -libexec/amanda/runtar -libexec/amanda/selfcheck -libexec/amanda/sendbackup -libexec/amanda/sendsize -libexec/amanda/versionsuffix -sbin/amrecover -share/amanda/COPYRIGHT -share/amanda/COPYRIGHT-APACHE -share/amanda/COPYRIGHT-REGEX -share/amanda/amadmin.8.txt -share/amanda/amanda.8.txt -share/amanda/amcheck.8.txt -share/amanda/amcheckdb.8.txt -share/amanda/amcleanup.8.txt -share/amanda/amdd.8.txt -share/amanda/amdump.8.txt -share/amanda/amflush.8.txt -share/amanda/amgetconf.8.txt -share/amanda/amlabel.8.txt -share/amanda/ammt.8.txt -share/amanda/amoverview.8.txt -share/amanda/amplot.8.txt -share/amanda/amrecover.8.txt -share/amanda/amreport.8.txt -share/amanda/amrestore.8.txt -share/amanda/amrmtape.8.txt -share/amanda/amstatus.8.txt -share/amanda/amtape.8.txt -share/amanda/amtapetype.8.txt -share/amanda/amtoc.8.txt -share/amanda/amverify.8.txt -share/amanda/amverifyrun.8.txt -share/amanda/chgscsi.txt -share/amanda/dumperapi.txt -share/amanda/eventapi.txt -share/amanda/exclude.txt -share/amanda/faq.txt -share/amanda/historical.txt -share/amanda/howto-afs.txt -share/amanda/howto-cygwin.txt -share/amanda/howto-filedriver.txt -share/amanda/howtos.txt -share/amanda/index.txt -share/amanda/indexing.txt -share/amanda/install.txt -share/amanda/internals.txt -share/amanda/introduction.txt -share/amanda/ix01.txt -share/amanda/kerberos.txt -share/amanda/labelprinting.txt -share/amanda/links.txt -share/amanda/manpages.txt -share/amanda/multitape.txt -share/amanda/portusage.txt -share/amanda/pr01.txt -share/amanda/pr02.txt -share/amanda/pr03.txt -share/amanda/pr04.txt -share/amanda/rait.txt -share/amanda/references.txt -share/amanda/restore.txt -share/amanda/samba.txt -share/amanda/security-api.txt -share/amanda/security.txt -share/amanda/strategy-api.txt -share/amanda/survey.txt -share/amanda/systemnotes.txt -share/amanda/tapechangers.txt -share/amanda/tapesnchangers.txt -share/amanda/tapetypes.txt -share/amanda/technical.txt -share/amanda/topten.txt -share/amanda/upgrade.txt -share/amanda/using.txt -share/amanda/various.txt -share/amanda/vtape-api.txt -share/amanda/whatwasnew.txt -share/amanda/wishlist.txt -share/amanda/y2k.txt -share/amanda/zftape.txt -share/examples/amanda/amanda.conf -share/examples/amanda/chg-multi.conf -share/examples/amanda/chg-scsi.conf -share/examples/amanda/disklist -@dirrm var/amanda/gnutar-lists -@dirrm var/amanda -@dirrm var -@dirrm share/examples/amanda -@dirrm share/amanda -@dirrm libexec/amanda diff --git a/misc/amanda26-client/Makefile b/misc/amanda26-client/Makefile deleted file mode 100644 index 9de355565384..000000000000 --- a/misc/amanda26-client/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# New ports collection makefile for: amanda -# Date created: 28th Feb 1995 -# Whom: gpalmer -# -# $FreeBSD$ -# - -PORTNAME= ${MASTERPORTNAME:S/-server/-client/g} -PORTREVISION= 0 - -MASTERDIR= ${.CURDIR}/../amanda-server -COMMENT= The Advanced Maryland Automatic Network Disk Archiver (client) -PKGINSTALL= mustnotexist -PLIST= ${PKGDIR}/pkg-plist.client - -CLIENT_ONLY= yes - -.include "${MASTERDIR}/Makefile" diff --git a/misc/amanda26-server/Makefile b/misc/amanda26-server/Makefile deleted file mode 100644 index 4f1c4680d7d0..000000000000 --- a/misc/amanda26-server/Makefile +++ /dev/null @@ -1,213 +0,0 @@ -# New ports collection makefile for: amanda -# Date created: 28th Feb 1995 -# Whom: gpalmer -# -# $FreeBSD$ -# - -PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 2.4.5 -PORTREVISION?= 1 -PORTEPOCH= 1 -CATEGORIES= misc -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= amanda -DISTFILES= amanda-${PORTVERSION}${EXTRACT_SUFX} - -MAINTAINER= ports@FreeBSD.org -COMMENT?= The Advanced Maryland Automatic Network Disk Archiver (server) - -WRKSRC= ${WRKDIR}/amanda-${PORTVERSION} -SLAVEDIRS= misc/amanda-client -MASTERPORTNAME= amanda-server - -NO_LATEST_LINK= yes -USE_AUTOCONF_VER= 259 -USE_GMAKE= yes -PATCH_STRIP= - -.include <bsd.port.pre.mk> - -.if exists(/usr/include/sys/scsiio.h) -.error You have the file /usr/include/sys/scsiio.h on your system. This was removed after FreeBSD 3.5 and will break the build of this port. Please remove it. -.endif - -CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} - -AMANDA_USER?= operator -AMANDA_GROUP?= operator -AMANDA_GNUTAR_LISTDIR?= ${PREFIX}/var/amanda/gnutar-lists - -# amanda-server part -.if !defined(CLIENT_ONLY) - -pre-fetch: - @${ECHO} "" - @${ECHO} "You may use the following build options:" - @${ECHO} "" - @${ECHO} " -DWITH_PLOT to enable ploting, requires X11 libraries" - @${ECHO} " -DWITH_SAMBA to enable the use of smbclient" - @${ECHO} " -DWITH_MTX to enable the use of mtx changer scripts" - @${ECHO} " AMANDA_SERVER=server to specify a server name" - @${ECHO} " The default is `uname -n`" - @${ECHO} " AMANDA_TAPE=tape to specify the default tape device" - @${ECHO} " The default is /dev/nrsa0" - @${ECHO} " AMANDA_CONFIG=config to specify the default configuration" - @${ECHO} " The default is user" - @${ECHO} " AMANDA_USER=user to specify the default user" - @${ECHO} " The default is operator" - @${ECHO} " AMANDA_GROUP=group to specify the default group" - @${ECHO} " The default is operator" - @${ECHO} " AMANDA_PORTRANGE=low,high to restrict Amanda to TCP ports" - @${ECHO} " between low and high when connecting from the server" - @${ECHO} " to the client for data, messages, and indexing." - @${ECHO} " The default is no restriction on TCP ports." - @${ECHO} " AMANDA_UDPPORTRANGE=low,high to restrict Amanda to UDP ports" - @${ECHO} " between low and high when connecting from the client" - @${ECHO} " to the server. Use ports below 1024." - @${ECHO} " The default is no restriction on UDP ports." - @${ECHO} "" - -USE_PERL5= yes - -RUN_DEPENDS= ${LOCALBASE}/sbin/amrecover:${PORTSDIR}/misc/amanda-client -BUILD_DEPENDS= ${LOCALBASE}/sbin/amrecover:${PORTSDIR}/misc/amanda-client - -CONFIGURE_ARGS= --libexecdir=${PREFIX}/libexec/amanda \ - --with-amandahosts --with-fqdn \ - --with-dump-honor-nodump --with-buffered-dump \ - --without-client --disable-libtool --prefix=${PREFIX} \ - --with-user=${AMANDA_USER} --with-group=${AMANDA_GROUP} \ - --with-gnutar-listdir=${AMANDA_GNUTAR_LISTDIR} - -MAN8= amadmin.8 amcheck.8 amcheckdb.8 amcleanup.8 amdd.8 \ - amdump.8 amflush.8 amgetconf.8 amlabel.8 ammt.8 \ - amoverview.8 amreport.8 amrmtape.8 amstatus.8 \ - amtape.8 amtoc.8 amverify.8 amverifyrun.8 amtapetype.8 - -.if defined (WITH_PLOT) -BUILD_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot -RUN_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot -MAN8+= amplot.8 -PLIST_SUB+= PLOT='' -.else -PLIST_SUB+= PLOT='@comment ' -.endif - -.if defined (WITH_SAMBA) -BUILD_DEPENDS+= smbclient:${PORTSDIR}/net/samba -RUN_DEPENDS+= smbclient:${PORTSDIR}/net/samba -CONFIGURE_ARGS+= --with-smbclient=${PREFIX}/bin/smbclient -.endif - -.if defined (WITH_MTX) -BUILD_DEPENDS+= mtx:${PORTSDIR}/misc/mtx -RUN_DEPENDS+= mtx:${PORTSDIR}/misc/mtx -.endif - -.if defined (AMANDA_SERVER) -CONFIGURE_ARGS+= --with-index-server=${AMANDA_SERVER} -CONFIGURE_ARGS+= --with-tape-server=${AMANDA_SERVER} -.endif - -.if defined (AMANDA_TAPE) -CONFIGURE_ARGS+= --with-tape-device=${AMANDA_TAPE} -.endif - -.if defined (AMANDA_CONFIG) -CONFIGURE_ARGS+= --with-config=${AMANDA_CONFIG} -.endif - -.if defined (AMANDA_UDPPORTRANGE) -CONFIGURE_ARGS+= --with-udpportrange=${AMANDA_UDPPORTRANGE} -.endif - -.if defined (AMANDA_PORTRANGE) -CONFIGURE_ARGS+= --with-portrange=${AMANDA_PORTRANGE} -.endif - -# -# Before 4.0, pre-CAM scsiio.h existed -.if ${OSVERSION} < 400000 -PLIST_SUB+= SCSICHG='' -.elif ${OSVERSION} >= 480000 -.if ${MACHINE_ARCH} == "amd64" -PLIST_SUB+= SCSICHG='@comment ' -.elif ${OSVERSION} >= 502000 -PLIST_SUB+= SCSICHG='@comment ' -.else -PLIST_SUB+= SCSICHG='' -.endif -.else -PLIST_SUB+= SCSICHG='@comment ' -.endif - -# amanda-client part -.else - -pre-fetch: - @${ECHO} "" - @${ECHO} "You may use the following build options:" - @${ECHO} "" - @${ECHO} " AMANDA_SERVER=server to specify a server name" - @${ECHO} " The default is `uname -n`" - @${ECHO} " AMANDA_CONFIG=config to specify the default configuation" - @${ECHO} " The default is user" - @${ECHO} " AMANDA_GNUTAR_LISTDIR=dir to specify the directory that" - @${ECHO} " the gnutar index files should live in" - @${ECHO} " The default is /var/amanda/gnutar-lists" - @${ECHO} " AMANDA_USER=user to specify the default user" - @${ECHO} " The default is operator" - @${ECHO} " AMANDA_GROUP=group to specify the default group" - @${ECHO} " The default is operator" - @${ECHO} " AMANDA_PORTRANGE=low,high to restrict Amanda to TCP ports" - @${ECHO} " between low and high when connecting from the server" - @${ECHO} " to the client for data, messages, and indexing." - @${ECHO} " The default is no restriction on TCP ports." - @${ECHO} " AMANDA_UDPPORTRANGE=low,high to restrict Amanda to UDP ports" - @${ECHO} " between low and high when connecting from the client" - @${ECHO} " to the server. Use ports below 1024." - @${ECHO} " The default is no restriction on UDP ports." - @${ECHO} "" - -CONFIGURE_ARGS= --libexecdir=${PREFIX}/libexec/amanda \ - --with-amandahosts --with-fqdn \ - --with-dump-honor-nodump --with-buffered-dump \ - --without-server --disable-libtool --prefix=${PREFIX} \ - --with-user=${AMANDA_USER} --with-group=${AMANDA_GROUP} \ - --with-gnutar-listdir=${AMANDA_GNUTAR_LISTDIR} - -MAN8= amanda.8 amrecover.8 amrestore.8 - -post-install: - ${MKDIR} ${PREFIX}/share/examples/amanda - ${CP} -R ${WRKSRC}/example/amanda.conf \ - ${WRKSRC}/example/chg-multi.conf \ - ${WRKSRC}/example/chg-scsi.conf \ - ${WRKSRC}/example/disklist \ - ${PREFIX}/share/examples/amanda - ${MKDIR} ${AMANDA_GNUTAR_LISTDIR} - ${CHOWN} ${AMANDA_USER}:${AMANDA_GROUP} ${AMANDA_GNUTAR_LISTDIR} - ${TOUCH} /etc/amandates - ${CHOWN} ${AMANDA_USER}:${AMANDA_GROUP} /etc/amandates - -.if defined (AMANDA_SERVER) -CONFIGURE_ARGS+= --with-index-server=${AMANDA_SERVER} -CONFIGURE_ARGS+= --with-tape-server=${AMANDA_SERVER} -.endif - -.if defined (AMANDA_CONFIG) -CONFIGURE_ARGS+= --with-config=${AMANDA_CONFIG} -.endif - -.if defined (AMANDA_UDPPORTRANGE) -CONFIGURE_ARGS+= --with-udpportrange=${AMANDA_UDPPORTRANGE} -.endif - -.if defined (AMANDA_PORTRANGE) -CONFIGURE_ARGS+= --with-portrange=${AMANDA_PORTRANGE} -.endif - -.endif - -.include <bsd.port.post.mk> diff --git a/misc/amanda26-server/distinfo b/misc/amanda26-server/distinfo deleted file mode 100644 index 659ab3d3fc41..000000000000 --- a/misc/amanda26-server/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (amanda-2.4.5.tar.gz) = 1960b7875424e412d042bc92a1548d7f -SIZE (amanda-2.4.5.tar.gz) = 1541761 diff --git a/misc/amanda26-server/files/patch-aa b/misc/amanda26-server/files/patch-aa deleted file mode 100644 index c5029f0fdfde..000000000000 --- a/misc/amanda26-server/files/patch-aa +++ /dev/null @@ -1,20 +0,0 @@ ---- man/Makefile.in.orig Fri Oct 22 09:12:40 2004 -+++ man/Makefile.in Mon Nov 8 06:24:40 2004 -@@ -254,7 +254,7 @@ - target_os = @target_os@ - target_vendor = @target_vendor@ - @WANT_AMPLOT_TRUE@AMPLOT_MAN_PAGES = amplot.8 --COMMON_MAN_PAGES = amanda.8 -+@WANT_CLIENT_TRUE@COMMON_MAN_PAGES = amanda.8 - @WANT_SERVER_TRUE@SERVER_MAN_PAGES = amadmin.8 \ - @WANT_SERVER_TRUE@ amcheck.8 \ - @WANT_SERVER_TRUE@ amcheckdb.8 \ -@@ -276,7 +276,7 @@ - @WANT_SERVER_TRUE@ amverifyrun.8 - - @WANT_RECOVER_TRUE@RECOVER_MAN_PAGES = amrecover.8 --@WANT_RESTORE_TRUE@RESTORE_MAN_PAGES = amrestore.8 -+@WANT_CLIENT_TRUE@RESTORE_MAN_PAGES = amrestore.8 - - # not autoconf-generated: - EXTRA_DIST = amplot.8 amrestore.8 amtape.8 amdd.8 ammt.8 diff --git a/misc/amanda26-server/files/patch-ab b/misc/amanda26-server/files/patch-ab deleted file mode 100644 index 4f6bc0ca5d58..000000000000 --- a/misc/amanda26-server/files/patch-ab +++ /dev/null @@ -1,12 +0,0 @@ ---- common-src/Makefile.in Fri Nov 30 11:33:48 2001 -+++ common-src/Makefile.in.new Fri Nov 30 18:03:29 2001 -@@ -611,7 +611,8 @@ - - install-data-am: - --install-exec-am: install-libLTLIBRARIES -+@WANT_CLIENT_TRUE@install-exec-am: @WANT_CLIENT_TRUE@install-libLTLIBRARIES -+@WANT_SERVER_TRUE@install-exec-am: - - install-info: - diff --git a/misc/amanda26-server/files/patch-ac b/misc/amanda26-server/files/patch-ac deleted file mode 100644 index c2af6273b054..000000000000 --- a/misc/amanda26-server/files/patch-ac +++ /dev/null @@ -1,11 +0,0 @@ ---- tape-src/Makefile.in.orig Fri Oct 22 09:12:42 2004 -+++ tape-src/Makefile.in Mon Nov 8 06:27:54 2004 -@@ -41,7 +41,7 @@ - PRE_UNINSTALL = : - POST_UNINSTALL = : - host_triplet = @host@ --sbin_PROGRAMS = ammt$(EXEEXT) amdd$(EXEEXT) amtapetype$(EXEEXT) -+@WANT_SERVER_TRUE@sbin_PROGRAMS = ammt$(EXEEXT) amdd$(EXEEXT) amtapetype$(EXEEXT) - EXTRA_PROGRAMS = $(am__EXEEXT_1) - subdir = tape-src - DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \ diff --git a/misc/amanda26-server/files/patch-ad b/misc/amanda26-server/files/patch-ad deleted file mode 100644 index 8d41e16eb9cb..000000000000 --- a/misc/amanda26-server/files/patch-ad +++ /dev/null @@ -1,14 +0,0 @@ ---- client-src/calcsize.c.orig Mon Nov 4 20:37:53 2002 -+++ client-src/calcsize.c Thu Oct 23 19:25:07 2003 -@@ -130,7 +130,11 @@ - dump_total += (ST_BLOCKS(finfo) + 1)/2 + 1; - gtar_total += ROUND(4,(ST_BLOCKS(finfo) + 1)); - } -+#ifdef GNUTAR -+ printf(" GNUTAR dump\n"); -+#else - printf(" gtar dump\n"); -+#endif - printf("total %-9lu %-9lu\n",gtar_total,dump_total); - return 0; - #else diff --git a/misc/amanda26-server/files/patch-ae b/misc/amanda26-server/files/patch-ae deleted file mode 100644 index c52b8e445369..000000000000 --- a/misc/amanda26-server/files/patch-ae +++ /dev/null @@ -1,14 +0,0 @@ ---- client-src/sendbackup-gnutar.c.orig Sat Jan 4 12:46:08 2003 -+++ client-src/sendbackup-gnutar.c Thu Oct 23 19:22:31 2003 -@@ -480,7 +480,11 @@ - - start_index(options->createindex, dumpout, mesgf, indexf, indexcmd); - -+#ifdef GNUTAR -+ my_argv[i++] = "GNUTAR"; -+#else - my_argv[i++] = "gtar"; -+#endif - my_argv[i++] = "--create"; - my_argv[i++] = "--file"; - my_argv[i++] = "-"; diff --git a/misc/amanda26-server/files/patch-server-src_infofile.c b/misc/amanda26-server/files/patch-server-src_infofile.c deleted file mode 100644 index e826e411303e..000000000000 --- a/misc/amanda26-server/files/patch-server-src_infofile.c +++ /dev/null @@ -1,11 +0,0 @@ ---- server-src/infofile.c.orig Wed Mar 16 11:15:28 2005 -+++ server-src/infofile.c Thu Jul 7 14:12:54 2005 -@@ -274,7 +274,7 @@ - rc = 0; - - nb_history = 0; -- for(i=0;i<=NB_HISTORY+1;i++) { -+ for(i=0;i<sizeof(info->history)/sizeof(info->history[0]);i++) { - info->history[i].level = -2; - } - for(rc = -2; (line = agets(infof)) != NULL; free(line)) { diff --git a/misc/amanda26-server/pkg-descr b/misc/amanda26-server/pkg-descr deleted file mode 100644 index 054161f6aeb2..000000000000 --- a/misc/amanda26-server/pkg-descr +++ /dev/null @@ -1,22 +0,0 @@ -WHAT IS AMANDA? ---------------- - -This is a release of Amanda, the Advanced Maryland Automatic -Network Disk Archiver. Amanda is a backup system designed to archive many -computers on a network to a single large-capacity tape drive. - -Here are some features of Amanda: - - * written in C, freely distributable. - * built on top of standard backup software: Unix dump/restore, and - later GNU Tar and others. - * will back up multiple machines in parallel to a holding disk, blasting - finished dumps one by one to tape as fast as we can write files to - tape. For example, a ~2 Gb 8mm tape on a ~240K/s interface to a host - with a large holding disk can be filled by Amanda in under 4 hours. - * does simple tape management: will not overwrite the wrong tape. - -WWW: http://sourceforge.net/projects/amanda/ - -- Jim -jeh@FreeBSD.org diff --git a/misc/amanda26-server/pkg-plist b/misc/amanda26-server/pkg-plist deleted file mode 100644 index 52109b8f2c3b..000000000000 --- a/misc/amanda26-server/pkg-plist +++ /dev/null @@ -1,57 +0,0 @@ -lib/libamserver-2.4.5.so -lib/libamserver.so -lib/libamserver.la -lib/libamserver.a -lib/libamtape-2.4.5.so -lib/libamtape.so -lib/libamtape.la -lib/libamtape.a -%%PLOT%%libexec/amanda/amcat.awk -libexec/amanda/amcleanupdisk -libexec/amanda/amindexd -libexec/amanda/amlogroll -%%PLOT%%libexec/amanda/amplot.awk -%%PLOT%%libexec/amanda/amplot.g -%%PLOT%%libexec/amanda/amplot.gp -libexec/amanda/amtrmidx -libexec/amanda/amtrmlog -libexec/amanda/chg-chio -libexec/amanda/chg-chs -libexec/amanda/chg-disk -libexec/amanda/chg-iomega -libexec/amanda/chg-juke -libexec/amanda/chg-manual -libexec/amanda/chg-mcutil -libexec/amanda/chg-mtx -libexec/amanda/chg-multi -libexec/amanda/chg-null -libexec/amanda/chg-rait -libexec/amanda/chg-rth -%%SCSICHG%%libexec/amanda/chg-scsi -libexec/amanda/chg-zd-mtx -libexec/amanda/amidxtaped -libexec/amanda/driver -libexec/amanda/dumper -libexec/amanda/planner -libexec/amanda/taper -sbin/amadmin -sbin/amcheck -sbin/amcheckdb -sbin/amcleanup -sbin/amdd -sbin/amdump -sbin/amflush -sbin/amgetconf -sbin/amlabel -sbin/ammt -sbin/amoverview -%%PLOT%%sbin/amplot -sbin/amreport -sbin/amrestore -sbin/amrmtape -sbin/amstatus -sbin/amtape -sbin/amtapetype -sbin/amtoc -sbin/amverify -sbin/amverifyrun diff --git a/misc/amanda26-server/pkg-plist.client b/misc/amanda26-server/pkg-plist.client deleted file mode 100644 index f121624417af..000000000000 --- a/misc/amanda26-server/pkg-plist.client +++ /dev/null @@ -1,104 +0,0 @@ -lib/libamanda-2.4.5.so -lib/libamanda.so -lib/libamanda.la -lib/libamanda.a -lib/libamclient-2.4.5.so -lib/libamclient.so -lib/libamclient.la -lib/libamclient.a -libexec/amanda/amandad -libexec/amanda/amqde -libexec/amanda/calcsize -libexec/amanda/killpgrp -libexec/amanda/patch-system -libexec/amanda/rundump -libexec/amanda/runtar -libexec/amanda/selfcheck -libexec/amanda/sendbackup -libexec/amanda/sendsize -libexec/amanda/versionsuffix -sbin/amrecover -share/amanda/COPYRIGHT -share/amanda/COPYRIGHT-APACHE -share/amanda/COPYRIGHT-REGEX -share/amanda/amadmin.8.txt -share/amanda/amanda.8.txt -share/amanda/amcheck.8.txt -share/amanda/amcheckdb.8.txt -share/amanda/amcleanup.8.txt -share/amanda/amdd.8.txt -share/amanda/amdump.8.txt -share/amanda/amflush.8.txt -share/amanda/amgetconf.8.txt -share/amanda/amlabel.8.txt -share/amanda/ammt.8.txt -share/amanda/amoverview.8.txt -share/amanda/amplot.8.txt -share/amanda/amrecover.8.txt -share/amanda/amreport.8.txt -share/amanda/amrestore.8.txt -share/amanda/amrmtape.8.txt -share/amanda/amstatus.8.txt -share/amanda/amtape.8.txt -share/amanda/amtapetype.8.txt -share/amanda/amtoc.8.txt -share/amanda/amverify.8.txt -share/amanda/amverifyrun.8.txt -share/amanda/chgscsi.txt -share/amanda/dumperapi.txt -share/amanda/eventapi.txt -share/amanda/exclude.txt -share/amanda/faq.txt -share/amanda/historical.txt -share/amanda/howto-afs.txt -share/amanda/howto-cygwin.txt -share/amanda/howto-filedriver.txt -share/amanda/howtos.txt -share/amanda/index.txt -share/amanda/indexing.txt -share/amanda/install.txt -share/amanda/internals.txt -share/amanda/introduction.txt -share/amanda/ix01.txt -share/amanda/kerberos.txt -share/amanda/labelprinting.txt -share/amanda/links.txt -share/amanda/manpages.txt -share/amanda/multitape.txt -share/amanda/portusage.txt -share/amanda/pr01.txt -share/amanda/pr02.txt -share/amanda/pr03.txt -share/amanda/pr04.txt -share/amanda/rait.txt -share/amanda/references.txt -share/amanda/restore.txt -share/amanda/samba.txt -share/amanda/security-api.txt -share/amanda/security.txt -share/amanda/strategy-api.txt -share/amanda/survey.txt -share/amanda/systemnotes.txt -share/amanda/tapechangers.txt -share/amanda/tapesnchangers.txt -share/amanda/tapetypes.txt -share/amanda/technical.txt -share/amanda/topten.txt -share/amanda/upgrade.txt -share/amanda/using.txt -share/amanda/various.txt -share/amanda/vtape-api.txt -share/amanda/whatwasnew.txt -share/amanda/wishlist.txt -share/amanda/y2k.txt -share/amanda/zftape.txt -share/examples/amanda/amanda.conf -share/examples/amanda/chg-multi.conf -share/examples/amanda/chg-scsi.conf -share/examples/amanda/disklist -@dirrm var/amanda/gnutar-lists -@dirrm var/amanda -@dirrm var -@dirrm share/examples/amanda -@dirrm share/amanda -@dirrm libexec/amanda diff --git a/misc/amanda32-client/Makefile b/misc/amanda32-client/Makefile deleted file mode 100644 index 9de355565384..000000000000 --- a/misc/amanda32-client/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# New ports collection makefile for: amanda -# Date created: 28th Feb 1995 -# Whom: gpalmer -# -# $FreeBSD$ -# - -PORTNAME= ${MASTERPORTNAME:S/-server/-client/g} -PORTREVISION= 0 - -MASTERDIR= ${.CURDIR}/../amanda-server -COMMENT= The Advanced Maryland Automatic Network Disk Archiver (client) -PKGINSTALL= mustnotexist -PLIST= ${PKGDIR}/pkg-plist.client - -CLIENT_ONLY= yes - -.include "${MASTERDIR}/Makefile" diff --git a/misc/amanda32-server/Makefile b/misc/amanda32-server/Makefile deleted file mode 100644 index 4f1c4680d7d0..000000000000 --- a/misc/amanda32-server/Makefile +++ /dev/null @@ -1,213 +0,0 @@ -# New ports collection makefile for: amanda -# Date created: 28th Feb 1995 -# Whom: gpalmer -# -# $FreeBSD$ -# - -PORTNAME?= ${MASTERPORTNAME} -PORTVERSION= 2.4.5 -PORTREVISION?= 1 -PORTEPOCH= 1 -CATEGORIES= misc -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= amanda -DISTFILES= amanda-${PORTVERSION}${EXTRACT_SUFX} - -MAINTAINER= ports@FreeBSD.org -COMMENT?= The Advanced Maryland Automatic Network Disk Archiver (server) - -WRKSRC= ${WRKDIR}/amanda-${PORTVERSION} -SLAVEDIRS= misc/amanda-client -MASTERPORTNAME= amanda-server - -NO_LATEST_LINK= yes -USE_AUTOCONF_VER= 259 -USE_GMAKE= yes -PATCH_STRIP= - -.include <bsd.port.pre.mk> - -.if exists(/usr/include/sys/scsiio.h) -.error You have the file /usr/include/sys/scsiio.h on your system. This was removed after FreeBSD 3.5 and will break the build of this port. Please remove it. -.endif - -CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} - -AMANDA_USER?= operator -AMANDA_GROUP?= operator -AMANDA_GNUTAR_LISTDIR?= ${PREFIX}/var/amanda/gnutar-lists - -# amanda-server part -.if !defined(CLIENT_ONLY) - -pre-fetch: - @${ECHO} "" - @${ECHO} "You may use the following build options:" - @${ECHO} "" - @${ECHO} " -DWITH_PLOT to enable ploting, requires X11 libraries" - @${ECHO} " -DWITH_SAMBA to enable the use of smbclient" - @${ECHO} " -DWITH_MTX to enable the use of mtx changer scripts" - @${ECHO} " AMANDA_SERVER=server to specify a server name" - @${ECHO} " The default is `uname -n`" - @${ECHO} " AMANDA_TAPE=tape to specify the default tape device" - @${ECHO} " The default is /dev/nrsa0" - @${ECHO} " AMANDA_CONFIG=config to specify the default configuration" - @${ECHO} " The default is user" - @${ECHO} " AMANDA_USER=user to specify the default user" - @${ECHO} " The default is operator" - @${ECHO} " AMANDA_GROUP=group to specify the default group" - @${ECHO} " The default is operator" - @${ECHO} " AMANDA_PORTRANGE=low,high to restrict Amanda to TCP ports" - @${ECHO} " between low and high when connecting from the server" - @${ECHO} " to the client for data, messages, and indexing." - @${ECHO} " The default is no restriction on TCP ports." - @${ECHO} " AMANDA_UDPPORTRANGE=low,high to restrict Amanda to UDP ports" - @${ECHO} " between low and high when connecting from the client" - @${ECHO} " to the server. Use ports below 1024." - @${ECHO} " The default is no restriction on UDP ports." - @${ECHO} "" - -USE_PERL5= yes - -RUN_DEPENDS= ${LOCALBASE}/sbin/amrecover:${PORTSDIR}/misc/amanda-client -BUILD_DEPENDS= ${LOCALBASE}/sbin/amrecover:${PORTSDIR}/misc/amanda-client - -CONFIGURE_ARGS= --libexecdir=${PREFIX}/libexec/amanda \ - --with-amandahosts --with-fqdn \ - --with-dump-honor-nodump --with-buffered-dump \ - --without-client --disable-libtool --prefix=${PREFIX} \ - --with-user=${AMANDA_USER} --with-group=${AMANDA_GROUP} \ - --with-gnutar-listdir=${AMANDA_GNUTAR_LISTDIR} - -MAN8= amadmin.8 amcheck.8 amcheckdb.8 amcleanup.8 amdd.8 \ - amdump.8 amflush.8 amgetconf.8 amlabel.8 ammt.8 \ - amoverview.8 amreport.8 amrmtape.8 amstatus.8 \ - amtape.8 amtoc.8 amverify.8 amverifyrun.8 amtapetype.8 - -.if defined (WITH_PLOT) -BUILD_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot -RUN_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot -MAN8+= amplot.8 -PLIST_SUB+= PLOT='' -.else -PLIST_SUB+= PLOT='@comment ' -.endif - -.if defined (WITH_SAMBA) -BUILD_DEPENDS+= smbclient:${PORTSDIR}/net/samba -RUN_DEPENDS+= smbclient:${PORTSDIR}/net/samba -CONFIGURE_ARGS+= --with-smbclient=${PREFIX}/bin/smbclient -.endif - -.if defined (WITH_MTX) -BUILD_DEPENDS+= mtx:${PORTSDIR}/misc/mtx -RUN_DEPENDS+= mtx:${PORTSDIR}/misc/mtx -.endif - -.if defined (AMANDA_SERVER) -CONFIGURE_ARGS+= --with-index-server=${AMANDA_SERVER} -CONFIGURE_ARGS+= --with-tape-server=${AMANDA_SERVER} -.endif - -.if defined (AMANDA_TAPE) -CONFIGURE_ARGS+= --with-tape-device=${AMANDA_TAPE} -.endif - -.if defined (AMANDA_CONFIG) -CONFIGURE_ARGS+= --with-config=${AMANDA_CONFIG} -.endif - -.if defined (AMANDA_UDPPORTRANGE) -CONFIGURE_ARGS+= --with-udpportrange=${AMANDA_UDPPORTRANGE} -.endif - -.if defined (AMANDA_PORTRANGE) -CONFIGURE_ARGS+= --with-portrange=${AMANDA_PORTRANGE} -.endif - -# -# Before 4.0, pre-CAM scsiio.h existed -.if ${OSVERSION} < 400000 -PLIST_SUB+= SCSICHG='' -.elif ${OSVERSION} >= 480000 -.if ${MACHINE_ARCH} == "amd64" -PLIST_SUB+= SCSICHG='@comment ' -.elif ${OSVERSION} >= 502000 -PLIST_SUB+= SCSICHG='@comment ' -.else -PLIST_SUB+= SCSICHG='' -.endif -.else -PLIST_SUB+= SCSICHG='@comment ' -.endif - -# amanda-client part -.else - -pre-fetch: - @${ECHO} "" - @${ECHO} "You may use the following build options:" - @${ECHO} "" - @${ECHO} " AMANDA_SERVER=server to specify a server name" - @${ECHO} " The default is `uname -n`" - @${ECHO} " AMANDA_CONFIG=config to specify the default configuation" - @${ECHO} " The default is user" - @${ECHO} " AMANDA_GNUTAR_LISTDIR=dir to specify the directory that" - @${ECHO} " the gnutar index files should live in" - @${ECHO} " The default is /var/amanda/gnutar-lists" - @${ECHO} " AMANDA_USER=user to specify the default user" - @${ECHO} " The default is operator" - @${ECHO} " AMANDA_GROUP=group to specify the default group" - @${ECHO} " The default is operator" - @${ECHO} " AMANDA_PORTRANGE=low,high to restrict Amanda to TCP ports" - @${ECHO} " between low and high when connecting from the server" - @${ECHO} " to the client for data, messages, and indexing." - @${ECHO} " The default is no restriction on TCP ports." - @${ECHO} " AMANDA_UDPPORTRANGE=low,high to restrict Amanda to UDP ports" - @${ECHO} " between low and high when connecting from the client" - @${ECHO} " to the server. Use ports below 1024." - @${ECHO} " The default is no restriction on UDP ports." - @${ECHO} "" - -CONFIGURE_ARGS= --libexecdir=${PREFIX}/libexec/amanda \ - --with-amandahosts --with-fqdn \ - --with-dump-honor-nodump --with-buffered-dump \ - --without-server --disable-libtool --prefix=${PREFIX} \ - --with-user=${AMANDA_USER} --with-group=${AMANDA_GROUP} \ - --with-gnutar-listdir=${AMANDA_GNUTAR_LISTDIR} - -MAN8= amanda.8 amrecover.8 amrestore.8 - -post-install: - ${MKDIR} ${PREFIX}/share/examples/amanda - ${CP} -R ${WRKSRC}/example/amanda.conf \ - ${WRKSRC}/example/chg-multi.conf \ - ${WRKSRC}/example/chg-scsi.conf \ - ${WRKSRC}/example/disklist \ - ${PREFIX}/share/examples/amanda - ${MKDIR} ${AMANDA_GNUTAR_LISTDIR} - ${CHOWN} ${AMANDA_USER}:${AMANDA_GROUP} ${AMANDA_GNUTAR_LISTDIR} - ${TOUCH} /etc/amandates - ${CHOWN} ${AMANDA_USER}:${AMANDA_GROUP} /etc/amandates - -.if defined (AMANDA_SERVER) -CONFIGURE_ARGS+= --with-index-server=${AMANDA_SERVER} -CONFIGURE_ARGS+= --with-tape-server=${AMANDA_SERVER} -.endif - -.if defined (AMANDA_CONFIG) -CONFIGURE_ARGS+= --with-config=${AMANDA_CONFIG} -.endif - -.if defined (AMANDA_UDPPORTRANGE) -CONFIGURE_ARGS+= --with-udpportrange=${AMANDA_UDPPORTRANGE} -.endif - -.if defined (AMANDA_PORTRANGE) -CONFIGURE_ARGS+= --with-portrange=${AMANDA_PORTRANGE} -.endif - -.endif - -.include <bsd.port.post.mk> diff --git a/misc/amanda32-server/distinfo b/misc/amanda32-server/distinfo deleted file mode 100644 index 659ab3d3fc41..000000000000 --- a/misc/amanda32-server/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (amanda-2.4.5.tar.gz) = 1960b7875424e412d042bc92a1548d7f -SIZE (amanda-2.4.5.tar.gz) = 1541761 diff --git a/misc/amanda32-server/files/patch-aa b/misc/amanda32-server/files/patch-aa deleted file mode 100644 index c5029f0fdfde..000000000000 --- a/misc/amanda32-server/files/patch-aa +++ /dev/null @@ -1,20 +0,0 @@ ---- man/Makefile.in.orig Fri Oct 22 09:12:40 2004 -+++ man/Makefile.in Mon Nov 8 06:24:40 2004 -@@ -254,7 +254,7 @@ - target_os = @target_os@ - target_vendor = @target_vendor@ - @WANT_AMPLOT_TRUE@AMPLOT_MAN_PAGES = amplot.8 --COMMON_MAN_PAGES = amanda.8 -+@WANT_CLIENT_TRUE@COMMON_MAN_PAGES = amanda.8 - @WANT_SERVER_TRUE@SERVER_MAN_PAGES = amadmin.8 \ - @WANT_SERVER_TRUE@ amcheck.8 \ - @WANT_SERVER_TRUE@ amcheckdb.8 \ -@@ -276,7 +276,7 @@ - @WANT_SERVER_TRUE@ amverifyrun.8 - - @WANT_RECOVER_TRUE@RECOVER_MAN_PAGES = amrecover.8 --@WANT_RESTORE_TRUE@RESTORE_MAN_PAGES = amrestore.8 -+@WANT_CLIENT_TRUE@RESTORE_MAN_PAGES = amrestore.8 - - # not autoconf-generated: - EXTRA_DIST = amplot.8 amrestore.8 amtape.8 amdd.8 ammt.8 diff --git a/misc/amanda32-server/files/patch-ab b/misc/amanda32-server/files/patch-ab deleted file mode 100644 index 4f6bc0ca5d58..000000000000 --- a/misc/amanda32-server/files/patch-ab +++ /dev/null @@ -1,12 +0,0 @@ ---- common-src/Makefile.in Fri Nov 30 11:33:48 2001 -+++ common-src/Makefile.in.new Fri Nov 30 18:03:29 2001 -@@ -611,7 +611,8 @@ - - install-data-am: - --install-exec-am: install-libLTLIBRARIES -+@WANT_CLIENT_TRUE@install-exec-am: @WANT_CLIENT_TRUE@install-libLTLIBRARIES -+@WANT_SERVER_TRUE@install-exec-am: - - install-info: - diff --git a/misc/amanda32-server/files/patch-ac b/misc/amanda32-server/files/patch-ac deleted file mode 100644 index c2af6273b054..000000000000 --- a/misc/amanda32-server/files/patch-ac +++ /dev/null @@ -1,11 +0,0 @@ ---- tape-src/Makefile.in.orig Fri Oct 22 09:12:42 2004 -+++ tape-src/Makefile.in Mon Nov 8 06:27:54 2004 -@@ -41,7 +41,7 @@ - PRE_UNINSTALL = : - POST_UNINSTALL = : - host_triplet = @host@ --sbin_PROGRAMS = ammt$(EXEEXT) amdd$(EXEEXT) amtapetype$(EXEEXT) -+@WANT_SERVER_TRUE@sbin_PROGRAMS = ammt$(EXEEXT) amdd$(EXEEXT) amtapetype$(EXEEXT) - EXTRA_PROGRAMS = $(am__EXEEXT_1) - subdir = tape-src - DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \ diff --git a/misc/amanda32-server/files/patch-ad b/misc/amanda32-server/files/patch-ad deleted file mode 100644 index 8d41e16eb9cb..000000000000 --- a/misc/amanda32-server/files/patch-ad +++ /dev/null @@ -1,14 +0,0 @@ ---- client-src/calcsize.c.orig Mon Nov 4 20:37:53 2002 -+++ client-src/calcsize.c Thu Oct 23 19:25:07 2003 -@@ -130,7 +130,11 @@ - dump_total += (ST_BLOCKS(finfo) + 1)/2 + 1; - gtar_total += ROUND(4,(ST_BLOCKS(finfo) + 1)); - } -+#ifdef GNUTAR -+ printf(" GNUTAR dump\n"); -+#else - printf(" gtar dump\n"); -+#endif - printf("total %-9lu %-9lu\n",gtar_total,dump_total); - return 0; - #else diff --git a/misc/amanda32-server/files/patch-ae b/misc/amanda32-server/files/patch-ae deleted file mode 100644 index c52b8e445369..000000000000 --- a/misc/amanda32-server/files/patch-ae +++ /dev/null @@ -1,14 +0,0 @@ ---- client-src/sendbackup-gnutar.c.orig Sat Jan 4 12:46:08 2003 -+++ client-src/sendbackup-gnutar.c Thu Oct 23 19:22:31 2003 -@@ -480,7 +480,11 @@ - - start_index(options->createindex, dumpout, mesgf, indexf, indexcmd); - -+#ifdef GNUTAR -+ my_argv[i++] = "GNUTAR"; -+#else - my_argv[i++] = "gtar"; -+#endif - my_argv[i++] = "--create"; - my_argv[i++] = "--file"; - my_argv[i++] = "-"; diff --git a/misc/amanda32-server/files/patch-server-src_infofile.c b/misc/amanda32-server/files/patch-server-src_infofile.c deleted file mode 100644 index e826e411303e..000000000000 --- a/misc/amanda32-server/files/patch-server-src_infofile.c +++ /dev/null @@ -1,11 +0,0 @@ ---- server-src/infofile.c.orig Wed Mar 16 11:15:28 2005 -+++ server-src/infofile.c Thu Jul 7 14:12:54 2005 -@@ -274,7 +274,7 @@ - rc = 0; - - nb_history = 0; -- for(i=0;i<=NB_HISTORY+1;i++) { -+ for(i=0;i<sizeof(info->history)/sizeof(info->history[0]);i++) { - info->history[i].level = -2; - } - for(rc = -2; (line = agets(infof)) != NULL; free(line)) { diff --git a/misc/amanda32-server/pkg-descr b/misc/amanda32-server/pkg-descr deleted file mode 100644 index 054161f6aeb2..000000000000 --- a/misc/amanda32-server/pkg-descr +++ /dev/null @@ -1,22 +0,0 @@ -WHAT IS AMANDA? ---------------- - -This is a release of Amanda, the Advanced Maryland Automatic -Network Disk Archiver. Amanda is a backup system designed to archive many -computers on a network to a single large-capacity tape drive. - -Here are some features of Amanda: - - * written in C, freely distributable. - * built on top of standard backup software: Unix dump/restore, and - later GNU Tar and others. - * will back up multiple machines in parallel to a holding disk, blasting - finished dumps one by one to tape as fast as we can write files to - tape. For example, a ~2 Gb 8mm tape on a ~240K/s interface to a host - with a large holding disk can be filled by Amanda in under 4 hours. - * does simple tape management: will not overwrite the wrong tape. - -WWW: http://sourceforge.net/projects/amanda/ - -- Jim -jeh@FreeBSD.org diff --git a/misc/amanda32-server/pkg-plist b/misc/amanda32-server/pkg-plist deleted file mode 100644 index 52109b8f2c3b..000000000000 --- a/misc/amanda32-server/pkg-plist +++ /dev/null @@ -1,57 +0,0 @@ -lib/libamserver-2.4.5.so -lib/libamserver.so -lib/libamserver.la -lib/libamserver.a -lib/libamtape-2.4.5.so -lib/libamtape.so -lib/libamtape.la -lib/libamtape.a -%%PLOT%%libexec/amanda/amcat.awk -libexec/amanda/amcleanupdisk -libexec/amanda/amindexd -libexec/amanda/amlogroll -%%PLOT%%libexec/amanda/amplot.awk -%%PLOT%%libexec/amanda/amplot.g -%%PLOT%%libexec/amanda/amplot.gp -libexec/amanda/amtrmidx -libexec/amanda/amtrmlog -libexec/amanda/chg-chio -libexec/amanda/chg-chs -libexec/amanda/chg-disk -libexec/amanda/chg-iomega -libexec/amanda/chg-juke -libexec/amanda/chg-manual -libexec/amanda/chg-mcutil -libexec/amanda/chg-mtx -libexec/amanda/chg-multi -libexec/amanda/chg-null -libexec/amanda/chg-rait -libexec/amanda/chg-rth -%%SCSICHG%%libexec/amanda/chg-scsi -libexec/amanda/chg-zd-mtx -libexec/amanda/amidxtaped -libexec/amanda/driver -libexec/amanda/dumper -libexec/amanda/planner -libexec/amanda/taper -sbin/amadmin -sbin/amcheck -sbin/amcheckdb -sbin/amcleanup -sbin/amdd -sbin/amdump -sbin/amflush -sbin/amgetconf -sbin/amlabel -sbin/ammt -sbin/amoverview -%%PLOT%%sbin/amplot -sbin/amreport -sbin/amrestore -sbin/amrmtape -sbin/amstatus -sbin/amtape -sbin/amtapetype -sbin/amtoc -sbin/amverify -sbin/amverifyrun diff --git a/misc/amanda32-server/pkg-plist.client b/misc/amanda32-server/pkg-plist.client deleted file mode 100644 index f121624417af..000000000000 --- a/misc/amanda32-server/pkg-plist.client +++ /dev/null @@ -1,104 +0,0 @@ -lib/libamanda-2.4.5.so -lib/libamanda.so -lib/libamanda.la -lib/libamanda.a -lib/libamclient-2.4.5.so -lib/libamclient.so -lib/libamclient.la -lib/libamclient.a -libexec/amanda/amandad -libexec/amanda/amqde -libexec/amanda/calcsize -libexec/amanda/killpgrp -libexec/amanda/patch-system -libexec/amanda/rundump -libexec/amanda/runtar -libexec/amanda/selfcheck -libexec/amanda/sendbackup -libexec/amanda/sendsize -libexec/amanda/versionsuffix -sbin/amrecover -share/amanda/COPYRIGHT -share/amanda/COPYRIGHT-APACHE -share/amanda/COPYRIGHT-REGEX -share/amanda/amadmin.8.txt -share/amanda/amanda.8.txt -share/amanda/amcheck.8.txt -share/amanda/amcheckdb.8.txt -share/amanda/amcleanup.8.txt -share/amanda/amdd.8.txt -share/amanda/amdump.8.txt -share/amanda/amflush.8.txt -share/amanda/amgetconf.8.txt -share/amanda/amlabel.8.txt -share/amanda/ammt.8.txt -share/amanda/amoverview.8.txt -share/amanda/amplot.8.txt -share/amanda/amrecover.8.txt -share/amanda/amreport.8.txt -share/amanda/amrestore.8.txt -share/amanda/amrmtape.8.txt -share/amanda/amstatus.8.txt -share/amanda/amtape.8.txt -share/amanda/amtapetype.8.txt -share/amanda/amtoc.8.txt -share/amanda/amverify.8.txt -share/amanda/amverifyrun.8.txt -share/amanda/chgscsi.txt -share/amanda/dumperapi.txt -share/amanda/eventapi.txt -share/amanda/exclude.txt -share/amanda/faq.txt -share/amanda/historical.txt -share/amanda/howto-afs.txt -share/amanda/howto-cygwin.txt -share/amanda/howto-filedriver.txt -share/amanda/howtos.txt -share/amanda/index.txt -share/amanda/indexing.txt -share/amanda/install.txt -share/amanda/internals.txt -share/amanda/introduction.txt -share/amanda/ix01.txt -share/amanda/kerberos.txt -share/amanda/labelprinting.txt -share/amanda/links.txt -share/amanda/manpages.txt -share/amanda/multitape.txt -share/amanda/portusage.txt -share/amanda/pr01.txt -share/amanda/pr02.txt -share/amanda/pr03.txt -share/amanda/pr04.txt -share/amanda/rait.txt -share/amanda/references.txt -share/amanda/restore.txt -share/amanda/samba.txt -share/amanda/security-api.txt -share/amanda/security.txt -share/amanda/strategy-api.txt -share/amanda/survey.txt -share/amanda/systemnotes.txt -share/amanda/tapechangers.txt -share/amanda/tapesnchangers.txt -share/amanda/tapetypes.txt -share/amanda/technical.txt -share/amanda/topten.txt -share/amanda/upgrade.txt -share/amanda/using.txt -share/amanda/various.txt -share/amanda/vtape-api.txt -share/amanda/whatwasnew.txt -share/amanda/wishlist.txt -share/amanda/y2k.txt -share/amanda/zftape.txt -share/examples/amanda/amanda.conf -share/examples/amanda/chg-multi.conf -share/examples/amanda/chg-scsi.conf -share/examples/amanda/disklist -@dirrm var/amanda/gnutar-lists -@dirrm var/amanda -@dirrm var -@dirrm share/examples/amanda -@dirrm share/amanda -@dirrm libexec/amanda diff --git a/misc/bibletime-devel/Makefile b/misc/bibletime-devel/Makefile deleted file mode 100644 index ff21bd05774f..000000000000 --- a/misc/bibletime-devel/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# New ports collection makefile for: bibletime -# Date created: 3 May 2002 -# Whom: Willem van Engen <wvengen@stack.nl> -# -# $FreeBSD$ -# - -PORTNAME= bibletime -PORTVERSION= 1.4.1 -PORTREVISION= 1 -CATEGORIES= misc -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= wvengen@stack.nl -COMMENT= A powerful Bible study application for KDE3 - -LIB_DEPENDS= sword.4:${PORTSDIR}/misc/sword - -BROKEN= Incomplete pkg-plist -DEPRECATED= ${BROKEN} -EXPIRATION_DATE=2005-09-22 - -USE_KDELIBS_VER=3 -GNU_CONFIGURE= yes -USE_GMAKE= yes -USE_BZIP2= yes -USE_REINPLACE= yes - -post-patch: - @${REINPLACE_CMD} -e "s^-lpthread^${PTHREAD_LIBS}^g" ${WRKSRC}/configure - @${REINPLACE_CMD} -e "s^-lpthread^${PTHREAD_LIBS}^g" ${WRKSRC}/bibletime/Makefile.in - -.include <bsd.port.mk> diff --git a/misc/bibletime-devel/distinfo b/misc/bibletime-devel/distinfo deleted file mode 100644 index ab1ff079973b..000000000000 --- a/misc/bibletime-devel/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (bibletime-1.4.1.tar.bz2) = df6ab259b188b8555f9423c629d0b239 -SIZE (bibletime-1.4.1.tar.bz2) = 1647715 diff --git a/misc/bibletime-devel/files/patch-Makefile.am b/misc/bibletime-devel/files/patch-Makefile.am deleted file mode 100644 index be8cfa387ba6..000000000000 --- a/misc/bibletime-devel/files/patch-Makefile.am +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.am.orig Thu Aug 19 21:50:04 2004 -+++ Makefile.am Thu Aug 19 21:50:17 2004 -@@ -56,7 +56,7 @@ - cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common configure.files - - install-data-local: -- chmod 755 $(DESTDIR)$(kde_datadir)/bibletime -R -+ chmod -R 755 $(DESTDIR)$(kde_datadir)/bibletime - $(mkinstalldirs) $(kde_appsdir)/Applications - $(INSTALL_DATA) $(srcdir)/bibletime.desktop $(kde_appsdir)/Applications/bibletime.desktop - diff --git a/misc/bibletime-devel/files/patch-Makefile.in b/misc/bibletime-devel/files/patch-Makefile.in deleted file mode 100644 index cfae67d2cef4..000000000000 --- a/misc/bibletime-devel/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Thu Aug 19 21:50:07 2004 -+++ Makefile.in Thu Aug 19 21:50:29 2004 -@@ -762,7 +762,7 @@ - cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common configure.files - - install-data-local: -- chmod 755 $(DESTDIR)$(kde_datadir)/bibletime -R -+ chmod -R 755 $(DESTDIR)$(kde_datadir)/bibletime - #>- $(mkinstalldirs) $(kde_appsdir)/Applications - #>+ 1 - $(mkinstalldirs) $(DESTDIR)$(kde_appsdir)/Applications diff --git a/misc/bibletime-devel/files/patch-bibletime::backend::cswordbackend.cpp b/misc/bibletime-devel/files/patch-bibletime::backend::cswordbackend.cpp deleted file mode 100644 index fd562d6d8a8c..000000000000 --- a/misc/bibletime-devel/files/patch-bibletime::backend::cswordbackend.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- bibletime/backend/cswordbackend.cpp Thu Jan 29 01:37:40 2004 -+++ bibletime/backend/cswordbackend.cpp Sat Aug 21 15:12:25 2004 -@@ -66,7 +67,7 @@ - } - - CSwordBackend::CSwordBackend(const QString& path) -- : sword::SWMgr((!path.isEmpty() ? path.local8Bit() : 0), false, new sword::EncodingFilterMgr( sword::ENC_UTF8 )) -+ : sword::SWMgr((!path.isEmpty() ? (const char*)path.local8Bit() : 0), false, new sword::EncodingFilterMgr( sword::ENC_UTF8 )) - { - qWarning("backend constructed with a path argument! %s", path.latin1()); - m_displays.entry = 0; diff --git a/misc/bibletime-devel/files/patch-bibletime::frontend::btinstallmgr.cpp b/misc/bibletime-devel/files/patch-bibletime::frontend::btinstallmgr.cpp deleted file mode 100644 index 11d58dff49f9..000000000000 --- a/misc/bibletime-devel/files/patch-bibletime::frontend::btinstallmgr.cpp +++ /dev/null @@ -1,24 +0,0 @@ ---- bibletime/frontend/btinstallmgr.cpp.orig Mon Aug 23 09:45:16 2004 -+++ bibletime/frontend/btinstallmgr.cpp Mon Aug 23 09:44:10 2004 -@@ -104,7 +104,7 @@ - } - else { - // conf["Install"][!setDataPath ? "DataPath" : "AugmentPath"] = t.local8Bit(); -- conf["Install"].insert( std::make_pair(!setDataPath ? "DataPath" : "AugmentPath", t.local8Bit()) ); -+ conf["Install"].insert( std::make_pair((const char*)(!setDataPath ? "DataPath" : "AugmentPath"), t.local8Bit()) ); - - setDataPath = true; - } -@@ -176,10 +176,10 @@ - is->directory--; //make one char shorter - } - -- config["Sources"].insert( std::make_pair("FTPSource", is->getConfEnt()) ); -+ config["Sources"].insert( std::make_pair((const char*)"FTPSource", is->getConfEnt()) ); - } - else if (!strcmp(is->type, "DIR")) { -- config["Sources"].insert( std::make_pair("DIRSource", is->getConfEnt()) ); -+ config["Sources"].insert( std::make_pair((const char*)"DIRSource", is->getConfEnt()) ); - } - config.Save(); - } diff --git a/misc/bibletime-devel/pkg-descr b/misc/bibletime-devel/pkg-descr deleted file mode 100644 index d73877f626e6..000000000000 --- a/misc/bibletime-devel/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -BibleTime is a powerful Bible study application for the K Desktop Environment -running on Unix operating systems. BibleTime is based on the Sword library -which provides access to all the different text modules created by the -Crosswire Bible Society. - -Current features are: toolbar, splitted window with index and MDI interface, -searching in one or more modules supporting regular expressions, graphical -search analysis, bookmarks, drag & drop, WYSIWYG html editing for comments, -printing and an extensive help system. - -WWW: http://www.bibletime.de/ - -- Willem van Engen <wvengen@stack.nl> diff --git a/misc/bibletime-devel/pkg-plist b/misc/bibletime-devel/pkg-plist deleted file mode 100644 index 1897472dd058..000000000000 --- a/misc/bibletime-devel/pkg-plist +++ /dev/null @@ -1,189 +0,0 @@ -bin/bibletime -share/applnk/Applications/bibletime.desktop -share/apps/bibletime/bibletimeui.rc -share/apps/bibletime/pics/startuplogo.png -share/apps/bibletime/tips -share/doc/HTML/en/bibletime/handbook/common -share/doc/HTML/en/bibletime/handbook/configure.png -share/doc/HTML/en/bibletime/handbook/contents.png -share/doc/HTML/en/bibletime/handbook/editdelete.png -share/doc/HTML/en/bibletime/handbook/exit.png -share/doc/HTML/en/bibletime/handbook/fileclose.png -share/doc/HTML/en/bibletime/handbook/fileprint.png -share/doc/HTML/en/bibletime/handbook/find.png -share/doc/HTML/en/bibletime/handbook/go.png -share/doc/HTML/en/bibletime/handbook/hdbk-bars-toolbar-Configtoolbar.png -share/doc/HTML/en/bibletime/handbook/hdbk-conf-optdialog-color.png -share/doc/HTML/en/bibletime/handbook/hdbk-conf-optdialog-fonts.png -share/doc/HTML/en/bibletime/handbook/hdbk-conf-optdialog-start.png -share/doc/HTML/en/bibletime/handbook/hdbk-conf-optdialog-sword.png -share/doc/HTML/en/bibletime/handbook/hdbk-config-toolbar.png -share/doc/HTML/en/bibletime/handbook/hdbk-config.docbook -share/doc/HTML/en/bibletime/handbook/hdbk-inst-sources-installmgr.png -share/doc/HTML/en/bibletime/handbook/hdbk-intro.docbook -share/doc/HTML/en/bibletime/handbook/hdbk-op-change-range.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-crch-dia-choose.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-delete-verse.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-module-select-1.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-module-select-2.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-module-tree-1.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-module-tree-bookmark-bookmarkandfolder.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-pencil.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-search-dialog-modsel.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-search-dialog-options.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-search-dialog-range.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-search-dialog-searchanal.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-search-dialog-searchresult.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-search-dialog-searchtext.png -share/doc/HTML/en/bibletime/handbook/hdbk-operation.docbook -share/doc/HTML/en/bibletime/handbook/hdbk-start-screen-terms.png -share/doc/HTML/en/bibletime/handbook/hdbk-start-sequence-tips.png -share/doc/HTML/en/bibletime/handbook/hdbk-start.docbook -share/doc/HTML/en/bibletime/handbook/hdbk-toolbars.docbook -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_bible.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_bible_add.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_book.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_book_add.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_cascade.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_cascade_auto.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_commentary.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_commentary_add.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_displayconfig.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_lexicon.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_lexicon_add.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_startconfig.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_swordconfig.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_sync.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_tile.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_tile_auto.png -share/doc/HTML/en/bibletime/handbook/hi32-app-bibletime.png -share/doc/HTML/en/bibletime/handbook/index.docbook -share/doc/HTML/en/bibletime/handbook/kcmfontinst.png -share/doc/HTML/en/bibletime/handbook/key_bindings.png -share/doc/HTML/en/bibletime/handbook/ktip.png -share/doc/HTML/en/bibletime/handbook/pencil.png -share/doc/HTML/en/bibletime/handbook/queue.png -share/doc/HTML/en/bibletime/handbook/start.png -share/doc/HTML/en/bibletime/handbook/view_sidetree.png -share/doc/HTML/en/bibletime/handbook/window_fullscreen.png -share/doc/HTML/en/bibletime/howto/common -share/doc/HTML/en/bibletime/howto/how2-basics.docbook -share/doc/HTML/en/bibletime/howto/how2-importance.docbook -share/doc/HTML/en/bibletime/howto/how2-interpretation.docbook -share/doc/HTML/en/bibletime/howto/index.docbook -share/icons/hicolor/16x16/actions/bt_bible.png -share/icons/hicolor/16x16/actions/bt_bible_add.png -share/icons/hicolor/16x16/actions/bt_bible_locked.png -share/icons/hicolor/16x16/actions/bt_book.png -share/icons/hicolor/16x16/actions/bt_book_add.png -share/icons/hicolor/16x16/actions/bt_book_locked.png -share/icons/hicolor/16x16/actions/bt_cascade.png -share/icons/hicolor/16x16/actions/bt_cascade_auto.png -share/icons/hicolor/16x16/actions/bt_commentary.png -share/icons/hicolor/16x16/actions/bt_commentary_add.png -share/icons/hicolor/16x16/actions/bt_commentary_locked.png -share/icons/hicolor/16x16/actions/bt_displayconfig.png -share/icons/hicolor/16x16/actions/bt_displaytranslit.png -share/icons/hicolor/16x16/actions/bt_lexicon.png -share/icons/hicolor/16x16/actions/bt_lexicon_add.png -share/icons/hicolor/16x16/actions/bt_lexicon_locked.png -share/icons/hicolor/16x16/actions/bt_startconfig.png -share/icons/hicolor/16x16/actions/bt_swordconfig.png -share/icons/hicolor/16x16/actions/bt_sync.png -share/icons/hicolor/16x16/actions/bt_tile.png -share/icons/hicolor/16x16/actions/bt_tile_auto.png -share/icons/hicolor/16x16/apps/bibletime.png -share/icons/hicolor/22x22/actions/bt_bible.png -share/icons/hicolor/22x22/actions/bt_bible_add.png -share/icons/hicolor/22x22/actions/bt_bible_locked.png -share/icons/hicolor/22x22/actions/bt_book.png -share/icons/hicolor/22x22/actions/bt_book_add.png -share/icons/hicolor/22x22/actions/bt_book_locked.png -share/icons/hicolor/22x22/actions/bt_cascade.png -share/icons/hicolor/22x22/actions/bt_cascade_auto.png -share/icons/hicolor/22x22/actions/bt_commentary.png -share/icons/hicolor/22x22/actions/bt_commentary_add.png -share/icons/hicolor/22x22/actions/bt_commentary_locked.png -share/icons/hicolor/22x22/actions/bt_displayconfig.png -share/icons/hicolor/22x22/actions/bt_displaytranslit.png -share/icons/hicolor/22x22/actions/bt_lexicon.png -share/icons/hicolor/22x22/actions/bt_lexicon_add.png -share/icons/hicolor/22x22/actions/bt_lexicon_locked.png -share/icons/hicolor/22x22/actions/bt_parallel.png -share/icons/hicolor/22x22/actions/bt_startconfig.png -share/icons/hicolor/22x22/actions/bt_swordconfig.png -share/icons/hicolor/22x22/actions/bt_sync.png -share/icons/hicolor/22x22/actions/bt_tile.png -share/icons/hicolor/22x22/actions/bt_tile_auto.png -share/icons/hicolor/22x22/apps/bibletime.png -share/icons/hicolor/32x32/actions/bt_bible.png -share/icons/hicolor/32x32/actions/bt_bible_add.png -share/icons/hicolor/32x32/actions/bt_bible_locked.png -share/icons/hicolor/32x32/actions/bt_book.png -share/icons/hicolor/32x32/actions/bt_book_add.png -share/icons/hicolor/32x32/actions/bt_book_locked.png -share/icons/hicolor/32x32/actions/bt_cascade.png -share/icons/hicolor/32x32/actions/bt_cascade_auto.png -share/icons/hicolor/32x32/actions/bt_commentary.png -share/icons/hicolor/32x32/actions/bt_commentary_add.png -share/icons/hicolor/32x32/actions/bt_commentary_locked.png -share/icons/hicolor/32x32/actions/bt_displayconfig.png -share/icons/hicolor/32x32/actions/bt_displaytranslit.png -share/icons/hicolor/32x32/actions/bt_lexicon.png -share/icons/hicolor/32x32/actions/bt_lexicon_add.png -share/icons/hicolor/32x32/actions/bt_lexicon_locked.png -share/icons/hicolor/32x32/actions/bt_startconfig.png -share/icons/hicolor/32x32/actions/bt_swordconfig.png -share/icons/hicolor/32x32/actions/bt_sync.png -share/icons/hicolor/32x32/actions/bt_tile.png -share/icons/hicolor/32x32/actions/bt_tile_auto.png -share/icons/hicolor/32x32/apps/bibletime.png -share/icons/hicolor/48x48/actions/bt_bible.png -share/icons/hicolor/48x48/actions/bt_bible_add.png -share/icons/hicolor/48x48/actions/bt_bible_locked.png -share/icons/hicolor/48x48/actions/bt_book.png -share/icons/hicolor/48x48/actions/bt_book_add.png -share/icons/hicolor/48x48/actions/bt_book_locked.png -share/icons/hicolor/48x48/actions/bt_cascade.png -share/icons/hicolor/48x48/actions/bt_cascade_auto.png -share/icons/hicolor/48x48/actions/bt_commentary.png -share/icons/hicolor/48x48/actions/bt_commentary_add.png -share/icons/hicolor/48x48/actions/bt_commentary_locked.png -share/icons/hicolor/48x48/actions/bt_displayconfig.png -share/icons/hicolor/48x48/actions/bt_displaytranslit.png -share/icons/hicolor/48x48/actions/bt_lexicon.png -share/icons/hicolor/48x48/actions/bt_lexicon_add.png -share/icons/hicolor/48x48/actions/bt_lexicon_locked.png -share/icons/hicolor/48x48/actions/bt_startconfig.png -share/icons/hicolor/48x48/actions/bt_swordconfig.png -share/icons/hicolor/48x48/actions/bt_sync.png -share/icons/hicolor/48x48/actions/bt_tile.png -share/icons/hicolor/48x48/actions/bt_tile_auto.png -share/icons/hicolor/48x48/apps/bibletime.png -share/icons/hicolor/64x64/apps/bibletime.png -@unexec rmdir %D/share/icons/hicolor/64x64/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/64x64 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/48x48/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/48x48/actions 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/48x48 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/32x32/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/32x32/actions 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/32x32 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/22x22/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/22x22/actions 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/22x22 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/16x16/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/16x16/actions 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/16x16 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor 2>/dev/null || true -@dirrm share/doc/HTML/en/bibletime/howto -@dirrm share/doc/HTML/en/bibletime/handbook -@dirrm share/doc/HTML/en/bibletime -@unexec rmdir %D/share/doc/HTML/en 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML 2>/dev/null || true -@unexec rmdir %D/share/config 2>/dev/null || true -@unexec rmdir %D/share/apps/bibletime/pics -@unexec rmdir %D/share/apps/bibletime 2>/dev/null || true -@unexec rmdir %D/share/apps 2>/dev/null || true -@unexec rmdir %D/share/applnk/Applications 2>/dev/null || true -@unexec rmdir %D/share/applnk 2>/dev/null || true diff --git a/misc/bibletime-kde3/Makefile b/misc/bibletime-kde3/Makefile deleted file mode 100644 index ff21bd05774f..000000000000 --- a/misc/bibletime-kde3/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# New ports collection makefile for: bibletime -# Date created: 3 May 2002 -# Whom: Willem van Engen <wvengen@stack.nl> -# -# $FreeBSD$ -# - -PORTNAME= bibletime -PORTVERSION= 1.4.1 -PORTREVISION= 1 -CATEGORIES= misc -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= wvengen@stack.nl -COMMENT= A powerful Bible study application for KDE3 - -LIB_DEPENDS= sword.4:${PORTSDIR}/misc/sword - -BROKEN= Incomplete pkg-plist -DEPRECATED= ${BROKEN} -EXPIRATION_DATE=2005-09-22 - -USE_KDELIBS_VER=3 -GNU_CONFIGURE= yes -USE_GMAKE= yes -USE_BZIP2= yes -USE_REINPLACE= yes - -post-patch: - @${REINPLACE_CMD} -e "s^-lpthread^${PTHREAD_LIBS}^g" ${WRKSRC}/configure - @${REINPLACE_CMD} -e "s^-lpthread^${PTHREAD_LIBS}^g" ${WRKSRC}/bibletime/Makefile.in - -.include <bsd.port.mk> diff --git a/misc/bibletime-kde3/distinfo b/misc/bibletime-kde3/distinfo deleted file mode 100644 index ab1ff079973b..000000000000 --- a/misc/bibletime-kde3/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (bibletime-1.4.1.tar.bz2) = df6ab259b188b8555f9423c629d0b239 -SIZE (bibletime-1.4.1.tar.bz2) = 1647715 diff --git a/misc/bibletime-kde3/files/patch-Makefile.am b/misc/bibletime-kde3/files/patch-Makefile.am deleted file mode 100644 index be8cfa387ba6..000000000000 --- a/misc/bibletime-kde3/files/patch-Makefile.am +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.am.orig Thu Aug 19 21:50:04 2004 -+++ Makefile.am Thu Aug 19 21:50:17 2004 -@@ -56,7 +56,7 @@ - cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common configure.files - - install-data-local: -- chmod 755 $(DESTDIR)$(kde_datadir)/bibletime -R -+ chmod -R 755 $(DESTDIR)$(kde_datadir)/bibletime - $(mkinstalldirs) $(kde_appsdir)/Applications - $(INSTALL_DATA) $(srcdir)/bibletime.desktop $(kde_appsdir)/Applications/bibletime.desktop - diff --git a/misc/bibletime-kde3/files/patch-Makefile.in b/misc/bibletime-kde3/files/patch-Makefile.in deleted file mode 100644 index cfae67d2cef4..000000000000 --- a/misc/bibletime-kde3/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Thu Aug 19 21:50:07 2004 -+++ Makefile.in Thu Aug 19 21:50:29 2004 -@@ -762,7 +762,7 @@ - cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common configure.files - - install-data-local: -- chmod 755 $(DESTDIR)$(kde_datadir)/bibletime -R -+ chmod -R 755 $(DESTDIR)$(kde_datadir)/bibletime - #>- $(mkinstalldirs) $(kde_appsdir)/Applications - #>+ 1 - $(mkinstalldirs) $(DESTDIR)$(kde_appsdir)/Applications diff --git a/misc/bibletime-kde3/files/patch-bibletime::backend::cswordbackend.cpp b/misc/bibletime-kde3/files/patch-bibletime::backend::cswordbackend.cpp deleted file mode 100644 index fd562d6d8a8c..000000000000 --- a/misc/bibletime-kde3/files/patch-bibletime::backend::cswordbackend.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- bibletime/backend/cswordbackend.cpp Thu Jan 29 01:37:40 2004 -+++ bibletime/backend/cswordbackend.cpp Sat Aug 21 15:12:25 2004 -@@ -66,7 +67,7 @@ - } - - CSwordBackend::CSwordBackend(const QString& path) -- : sword::SWMgr((!path.isEmpty() ? path.local8Bit() : 0), false, new sword::EncodingFilterMgr( sword::ENC_UTF8 )) -+ : sword::SWMgr((!path.isEmpty() ? (const char*)path.local8Bit() : 0), false, new sword::EncodingFilterMgr( sword::ENC_UTF8 )) - { - qWarning("backend constructed with a path argument! %s", path.latin1()); - m_displays.entry = 0; diff --git a/misc/bibletime-kde3/files/patch-bibletime::frontend::btinstallmgr.cpp b/misc/bibletime-kde3/files/patch-bibletime::frontend::btinstallmgr.cpp deleted file mode 100644 index 11d58dff49f9..000000000000 --- a/misc/bibletime-kde3/files/patch-bibletime::frontend::btinstallmgr.cpp +++ /dev/null @@ -1,24 +0,0 @@ ---- bibletime/frontend/btinstallmgr.cpp.orig Mon Aug 23 09:45:16 2004 -+++ bibletime/frontend/btinstallmgr.cpp Mon Aug 23 09:44:10 2004 -@@ -104,7 +104,7 @@ - } - else { - // conf["Install"][!setDataPath ? "DataPath" : "AugmentPath"] = t.local8Bit(); -- conf["Install"].insert( std::make_pair(!setDataPath ? "DataPath" : "AugmentPath", t.local8Bit()) ); -+ conf["Install"].insert( std::make_pair((const char*)(!setDataPath ? "DataPath" : "AugmentPath"), t.local8Bit()) ); - - setDataPath = true; - } -@@ -176,10 +176,10 @@ - is->directory--; //make one char shorter - } - -- config["Sources"].insert( std::make_pair("FTPSource", is->getConfEnt()) ); -+ config["Sources"].insert( std::make_pair((const char*)"FTPSource", is->getConfEnt()) ); - } - else if (!strcmp(is->type, "DIR")) { -- config["Sources"].insert( std::make_pair("DIRSource", is->getConfEnt()) ); -+ config["Sources"].insert( std::make_pair((const char*)"DIRSource", is->getConfEnt()) ); - } - config.Save(); - } diff --git a/misc/bibletime-kde3/pkg-descr b/misc/bibletime-kde3/pkg-descr deleted file mode 100644 index d73877f626e6..000000000000 --- a/misc/bibletime-kde3/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -BibleTime is a powerful Bible study application for the K Desktop Environment -running on Unix operating systems. BibleTime is based on the Sword library -which provides access to all the different text modules created by the -Crosswire Bible Society. - -Current features are: toolbar, splitted window with index and MDI interface, -searching in one or more modules supporting regular expressions, graphical -search analysis, bookmarks, drag & drop, WYSIWYG html editing for comments, -printing and an extensive help system. - -WWW: http://www.bibletime.de/ - -- Willem van Engen <wvengen@stack.nl> diff --git a/misc/bibletime-kde3/pkg-plist b/misc/bibletime-kde3/pkg-plist deleted file mode 100644 index 1897472dd058..000000000000 --- a/misc/bibletime-kde3/pkg-plist +++ /dev/null @@ -1,189 +0,0 @@ -bin/bibletime -share/applnk/Applications/bibletime.desktop -share/apps/bibletime/bibletimeui.rc -share/apps/bibletime/pics/startuplogo.png -share/apps/bibletime/tips -share/doc/HTML/en/bibletime/handbook/common -share/doc/HTML/en/bibletime/handbook/configure.png -share/doc/HTML/en/bibletime/handbook/contents.png -share/doc/HTML/en/bibletime/handbook/editdelete.png -share/doc/HTML/en/bibletime/handbook/exit.png -share/doc/HTML/en/bibletime/handbook/fileclose.png -share/doc/HTML/en/bibletime/handbook/fileprint.png -share/doc/HTML/en/bibletime/handbook/find.png -share/doc/HTML/en/bibletime/handbook/go.png -share/doc/HTML/en/bibletime/handbook/hdbk-bars-toolbar-Configtoolbar.png -share/doc/HTML/en/bibletime/handbook/hdbk-conf-optdialog-color.png -share/doc/HTML/en/bibletime/handbook/hdbk-conf-optdialog-fonts.png -share/doc/HTML/en/bibletime/handbook/hdbk-conf-optdialog-start.png -share/doc/HTML/en/bibletime/handbook/hdbk-conf-optdialog-sword.png -share/doc/HTML/en/bibletime/handbook/hdbk-config-toolbar.png -share/doc/HTML/en/bibletime/handbook/hdbk-config.docbook -share/doc/HTML/en/bibletime/handbook/hdbk-inst-sources-installmgr.png -share/doc/HTML/en/bibletime/handbook/hdbk-intro.docbook -share/doc/HTML/en/bibletime/handbook/hdbk-op-change-range.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-crch-dia-choose.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-delete-verse.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-module-select-1.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-module-select-2.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-module-tree-1.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-module-tree-bookmark-bookmarkandfolder.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-pencil.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-search-dialog-modsel.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-search-dialog-options.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-search-dialog-range.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-search-dialog-searchanal.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-search-dialog-searchresult.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-search-dialog-searchtext.png -share/doc/HTML/en/bibletime/handbook/hdbk-operation.docbook -share/doc/HTML/en/bibletime/handbook/hdbk-start-screen-terms.png -share/doc/HTML/en/bibletime/handbook/hdbk-start-sequence-tips.png -share/doc/HTML/en/bibletime/handbook/hdbk-start.docbook -share/doc/HTML/en/bibletime/handbook/hdbk-toolbars.docbook -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_bible.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_bible_add.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_book.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_book_add.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_cascade.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_cascade_auto.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_commentary.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_commentary_add.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_displayconfig.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_lexicon.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_lexicon_add.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_startconfig.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_swordconfig.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_sync.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_tile.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_tile_auto.png -share/doc/HTML/en/bibletime/handbook/hi32-app-bibletime.png -share/doc/HTML/en/bibletime/handbook/index.docbook -share/doc/HTML/en/bibletime/handbook/kcmfontinst.png -share/doc/HTML/en/bibletime/handbook/key_bindings.png -share/doc/HTML/en/bibletime/handbook/ktip.png -share/doc/HTML/en/bibletime/handbook/pencil.png -share/doc/HTML/en/bibletime/handbook/queue.png -share/doc/HTML/en/bibletime/handbook/start.png -share/doc/HTML/en/bibletime/handbook/view_sidetree.png -share/doc/HTML/en/bibletime/handbook/window_fullscreen.png -share/doc/HTML/en/bibletime/howto/common -share/doc/HTML/en/bibletime/howto/how2-basics.docbook -share/doc/HTML/en/bibletime/howto/how2-importance.docbook -share/doc/HTML/en/bibletime/howto/how2-interpretation.docbook -share/doc/HTML/en/bibletime/howto/index.docbook -share/icons/hicolor/16x16/actions/bt_bible.png -share/icons/hicolor/16x16/actions/bt_bible_add.png -share/icons/hicolor/16x16/actions/bt_bible_locked.png -share/icons/hicolor/16x16/actions/bt_book.png -share/icons/hicolor/16x16/actions/bt_book_add.png -share/icons/hicolor/16x16/actions/bt_book_locked.png -share/icons/hicolor/16x16/actions/bt_cascade.png -share/icons/hicolor/16x16/actions/bt_cascade_auto.png -share/icons/hicolor/16x16/actions/bt_commentary.png -share/icons/hicolor/16x16/actions/bt_commentary_add.png -share/icons/hicolor/16x16/actions/bt_commentary_locked.png -share/icons/hicolor/16x16/actions/bt_displayconfig.png -share/icons/hicolor/16x16/actions/bt_displaytranslit.png -share/icons/hicolor/16x16/actions/bt_lexicon.png -share/icons/hicolor/16x16/actions/bt_lexicon_add.png -share/icons/hicolor/16x16/actions/bt_lexicon_locked.png -share/icons/hicolor/16x16/actions/bt_startconfig.png -share/icons/hicolor/16x16/actions/bt_swordconfig.png -share/icons/hicolor/16x16/actions/bt_sync.png -share/icons/hicolor/16x16/actions/bt_tile.png -share/icons/hicolor/16x16/actions/bt_tile_auto.png -share/icons/hicolor/16x16/apps/bibletime.png -share/icons/hicolor/22x22/actions/bt_bible.png -share/icons/hicolor/22x22/actions/bt_bible_add.png -share/icons/hicolor/22x22/actions/bt_bible_locked.png -share/icons/hicolor/22x22/actions/bt_book.png -share/icons/hicolor/22x22/actions/bt_book_add.png -share/icons/hicolor/22x22/actions/bt_book_locked.png -share/icons/hicolor/22x22/actions/bt_cascade.png -share/icons/hicolor/22x22/actions/bt_cascade_auto.png -share/icons/hicolor/22x22/actions/bt_commentary.png -share/icons/hicolor/22x22/actions/bt_commentary_add.png -share/icons/hicolor/22x22/actions/bt_commentary_locked.png -share/icons/hicolor/22x22/actions/bt_displayconfig.png -share/icons/hicolor/22x22/actions/bt_displaytranslit.png -share/icons/hicolor/22x22/actions/bt_lexicon.png -share/icons/hicolor/22x22/actions/bt_lexicon_add.png -share/icons/hicolor/22x22/actions/bt_lexicon_locked.png -share/icons/hicolor/22x22/actions/bt_parallel.png -share/icons/hicolor/22x22/actions/bt_startconfig.png -share/icons/hicolor/22x22/actions/bt_swordconfig.png -share/icons/hicolor/22x22/actions/bt_sync.png -share/icons/hicolor/22x22/actions/bt_tile.png -share/icons/hicolor/22x22/actions/bt_tile_auto.png -share/icons/hicolor/22x22/apps/bibletime.png -share/icons/hicolor/32x32/actions/bt_bible.png -share/icons/hicolor/32x32/actions/bt_bible_add.png -share/icons/hicolor/32x32/actions/bt_bible_locked.png -share/icons/hicolor/32x32/actions/bt_book.png -share/icons/hicolor/32x32/actions/bt_book_add.png -share/icons/hicolor/32x32/actions/bt_book_locked.png -share/icons/hicolor/32x32/actions/bt_cascade.png -share/icons/hicolor/32x32/actions/bt_cascade_auto.png -share/icons/hicolor/32x32/actions/bt_commentary.png -share/icons/hicolor/32x32/actions/bt_commentary_add.png -share/icons/hicolor/32x32/actions/bt_commentary_locked.png -share/icons/hicolor/32x32/actions/bt_displayconfig.png -share/icons/hicolor/32x32/actions/bt_displaytranslit.png -share/icons/hicolor/32x32/actions/bt_lexicon.png -share/icons/hicolor/32x32/actions/bt_lexicon_add.png -share/icons/hicolor/32x32/actions/bt_lexicon_locked.png -share/icons/hicolor/32x32/actions/bt_startconfig.png -share/icons/hicolor/32x32/actions/bt_swordconfig.png -share/icons/hicolor/32x32/actions/bt_sync.png -share/icons/hicolor/32x32/actions/bt_tile.png -share/icons/hicolor/32x32/actions/bt_tile_auto.png -share/icons/hicolor/32x32/apps/bibletime.png -share/icons/hicolor/48x48/actions/bt_bible.png -share/icons/hicolor/48x48/actions/bt_bible_add.png -share/icons/hicolor/48x48/actions/bt_bible_locked.png -share/icons/hicolor/48x48/actions/bt_book.png -share/icons/hicolor/48x48/actions/bt_book_add.png -share/icons/hicolor/48x48/actions/bt_book_locked.png -share/icons/hicolor/48x48/actions/bt_cascade.png -share/icons/hicolor/48x48/actions/bt_cascade_auto.png -share/icons/hicolor/48x48/actions/bt_commentary.png -share/icons/hicolor/48x48/actions/bt_commentary_add.png -share/icons/hicolor/48x48/actions/bt_commentary_locked.png -share/icons/hicolor/48x48/actions/bt_displayconfig.png -share/icons/hicolor/48x48/actions/bt_displaytranslit.png -share/icons/hicolor/48x48/actions/bt_lexicon.png -share/icons/hicolor/48x48/actions/bt_lexicon_add.png -share/icons/hicolor/48x48/actions/bt_lexicon_locked.png -share/icons/hicolor/48x48/actions/bt_startconfig.png -share/icons/hicolor/48x48/actions/bt_swordconfig.png -share/icons/hicolor/48x48/actions/bt_sync.png -share/icons/hicolor/48x48/actions/bt_tile.png -share/icons/hicolor/48x48/actions/bt_tile_auto.png -share/icons/hicolor/48x48/apps/bibletime.png -share/icons/hicolor/64x64/apps/bibletime.png -@unexec rmdir %D/share/icons/hicolor/64x64/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/64x64 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/48x48/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/48x48/actions 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/48x48 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/32x32/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/32x32/actions 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/32x32 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/22x22/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/22x22/actions 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/22x22 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/16x16/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/16x16/actions 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/16x16 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor 2>/dev/null || true -@dirrm share/doc/HTML/en/bibletime/howto -@dirrm share/doc/HTML/en/bibletime/handbook -@dirrm share/doc/HTML/en/bibletime -@unexec rmdir %D/share/doc/HTML/en 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML 2>/dev/null || true -@unexec rmdir %D/share/config 2>/dev/null || true -@unexec rmdir %D/share/apps/bibletime/pics -@unexec rmdir %D/share/apps/bibletime 2>/dev/null || true -@unexec rmdir %D/share/apps 2>/dev/null || true -@unexec rmdir %D/share/applnk/Applications 2>/dev/null || true -@unexec rmdir %D/share/applnk 2>/dev/null || true diff --git a/misc/bibletime-kde4/Makefile b/misc/bibletime-kde4/Makefile deleted file mode 100644 index ff21bd05774f..000000000000 --- a/misc/bibletime-kde4/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# New ports collection makefile for: bibletime -# Date created: 3 May 2002 -# Whom: Willem van Engen <wvengen@stack.nl> -# -# $FreeBSD$ -# - -PORTNAME= bibletime -PORTVERSION= 1.4.1 -PORTREVISION= 1 -CATEGORIES= misc -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= wvengen@stack.nl -COMMENT= A powerful Bible study application for KDE3 - -LIB_DEPENDS= sword.4:${PORTSDIR}/misc/sword - -BROKEN= Incomplete pkg-plist -DEPRECATED= ${BROKEN} -EXPIRATION_DATE=2005-09-22 - -USE_KDELIBS_VER=3 -GNU_CONFIGURE= yes -USE_GMAKE= yes -USE_BZIP2= yes -USE_REINPLACE= yes - -post-patch: - @${REINPLACE_CMD} -e "s^-lpthread^${PTHREAD_LIBS}^g" ${WRKSRC}/configure - @${REINPLACE_CMD} -e "s^-lpthread^${PTHREAD_LIBS}^g" ${WRKSRC}/bibletime/Makefile.in - -.include <bsd.port.mk> diff --git a/misc/bibletime-kde4/distinfo b/misc/bibletime-kde4/distinfo deleted file mode 100644 index ab1ff079973b..000000000000 --- a/misc/bibletime-kde4/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (bibletime-1.4.1.tar.bz2) = df6ab259b188b8555f9423c629d0b239 -SIZE (bibletime-1.4.1.tar.bz2) = 1647715 diff --git a/misc/bibletime-kde4/files/patch-Makefile.am b/misc/bibletime-kde4/files/patch-Makefile.am deleted file mode 100644 index be8cfa387ba6..000000000000 --- a/misc/bibletime-kde4/files/patch-Makefile.am +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.am.orig Thu Aug 19 21:50:04 2004 -+++ Makefile.am Thu Aug 19 21:50:17 2004 -@@ -56,7 +56,7 @@ - cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common configure.files - - install-data-local: -- chmod 755 $(DESTDIR)$(kde_datadir)/bibletime -R -+ chmod -R 755 $(DESTDIR)$(kde_datadir)/bibletime - $(mkinstalldirs) $(kde_appsdir)/Applications - $(INSTALL_DATA) $(srcdir)/bibletime.desktop $(kde_appsdir)/Applications/bibletime.desktop - diff --git a/misc/bibletime-kde4/files/patch-Makefile.in b/misc/bibletime-kde4/files/patch-Makefile.in deleted file mode 100644 index cfae67d2cef4..000000000000 --- a/misc/bibletime-kde4/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Thu Aug 19 21:50:07 2004 -+++ Makefile.in Thu Aug 19 21:50:29 2004 -@@ -762,7 +762,7 @@ - cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common configure.files - - install-data-local: -- chmod 755 $(DESTDIR)$(kde_datadir)/bibletime -R -+ chmod -R 755 $(DESTDIR)$(kde_datadir)/bibletime - #>- $(mkinstalldirs) $(kde_appsdir)/Applications - #>+ 1 - $(mkinstalldirs) $(DESTDIR)$(kde_appsdir)/Applications diff --git a/misc/bibletime-kde4/files/patch-bibletime::backend::cswordbackend.cpp b/misc/bibletime-kde4/files/patch-bibletime::backend::cswordbackend.cpp deleted file mode 100644 index fd562d6d8a8c..000000000000 --- a/misc/bibletime-kde4/files/patch-bibletime::backend::cswordbackend.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- bibletime/backend/cswordbackend.cpp Thu Jan 29 01:37:40 2004 -+++ bibletime/backend/cswordbackend.cpp Sat Aug 21 15:12:25 2004 -@@ -66,7 +67,7 @@ - } - - CSwordBackend::CSwordBackend(const QString& path) -- : sword::SWMgr((!path.isEmpty() ? path.local8Bit() : 0), false, new sword::EncodingFilterMgr( sword::ENC_UTF8 )) -+ : sword::SWMgr((!path.isEmpty() ? (const char*)path.local8Bit() : 0), false, new sword::EncodingFilterMgr( sword::ENC_UTF8 )) - { - qWarning("backend constructed with a path argument! %s", path.latin1()); - m_displays.entry = 0; diff --git a/misc/bibletime-kde4/files/patch-bibletime::frontend::btinstallmgr.cpp b/misc/bibletime-kde4/files/patch-bibletime::frontend::btinstallmgr.cpp deleted file mode 100644 index 11d58dff49f9..000000000000 --- a/misc/bibletime-kde4/files/patch-bibletime::frontend::btinstallmgr.cpp +++ /dev/null @@ -1,24 +0,0 @@ ---- bibletime/frontend/btinstallmgr.cpp.orig Mon Aug 23 09:45:16 2004 -+++ bibletime/frontend/btinstallmgr.cpp Mon Aug 23 09:44:10 2004 -@@ -104,7 +104,7 @@ - } - else { - // conf["Install"][!setDataPath ? "DataPath" : "AugmentPath"] = t.local8Bit(); -- conf["Install"].insert( std::make_pair(!setDataPath ? "DataPath" : "AugmentPath", t.local8Bit()) ); -+ conf["Install"].insert( std::make_pair((const char*)(!setDataPath ? "DataPath" : "AugmentPath"), t.local8Bit()) ); - - setDataPath = true; - } -@@ -176,10 +176,10 @@ - is->directory--; //make one char shorter - } - -- config["Sources"].insert( std::make_pair("FTPSource", is->getConfEnt()) ); -+ config["Sources"].insert( std::make_pair((const char*)"FTPSource", is->getConfEnt()) ); - } - else if (!strcmp(is->type, "DIR")) { -- config["Sources"].insert( std::make_pair("DIRSource", is->getConfEnt()) ); -+ config["Sources"].insert( std::make_pair((const char*)"DIRSource", is->getConfEnt()) ); - } - config.Save(); - } diff --git a/misc/bibletime-kde4/pkg-descr b/misc/bibletime-kde4/pkg-descr deleted file mode 100644 index d73877f626e6..000000000000 --- a/misc/bibletime-kde4/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -BibleTime is a powerful Bible study application for the K Desktop Environment -running on Unix operating systems. BibleTime is based on the Sword library -which provides access to all the different text modules created by the -Crosswire Bible Society. - -Current features are: toolbar, splitted window with index and MDI interface, -searching in one or more modules supporting regular expressions, graphical -search analysis, bookmarks, drag & drop, WYSIWYG html editing for comments, -printing and an extensive help system. - -WWW: http://www.bibletime.de/ - -- Willem van Engen <wvengen@stack.nl> diff --git a/misc/bibletime-kde4/pkg-plist b/misc/bibletime-kde4/pkg-plist deleted file mode 100644 index 1897472dd058..000000000000 --- a/misc/bibletime-kde4/pkg-plist +++ /dev/null @@ -1,189 +0,0 @@ -bin/bibletime -share/applnk/Applications/bibletime.desktop -share/apps/bibletime/bibletimeui.rc -share/apps/bibletime/pics/startuplogo.png -share/apps/bibletime/tips -share/doc/HTML/en/bibletime/handbook/common -share/doc/HTML/en/bibletime/handbook/configure.png -share/doc/HTML/en/bibletime/handbook/contents.png -share/doc/HTML/en/bibletime/handbook/editdelete.png -share/doc/HTML/en/bibletime/handbook/exit.png -share/doc/HTML/en/bibletime/handbook/fileclose.png -share/doc/HTML/en/bibletime/handbook/fileprint.png -share/doc/HTML/en/bibletime/handbook/find.png -share/doc/HTML/en/bibletime/handbook/go.png -share/doc/HTML/en/bibletime/handbook/hdbk-bars-toolbar-Configtoolbar.png -share/doc/HTML/en/bibletime/handbook/hdbk-conf-optdialog-color.png -share/doc/HTML/en/bibletime/handbook/hdbk-conf-optdialog-fonts.png -share/doc/HTML/en/bibletime/handbook/hdbk-conf-optdialog-start.png -share/doc/HTML/en/bibletime/handbook/hdbk-conf-optdialog-sword.png -share/doc/HTML/en/bibletime/handbook/hdbk-config-toolbar.png -share/doc/HTML/en/bibletime/handbook/hdbk-config.docbook -share/doc/HTML/en/bibletime/handbook/hdbk-inst-sources-installmgr.png -share/doc/HTML/en/bibletime/handbook/hdbk-intro.docbook -share/doc/HTML/en/bibletime/handbook/hdbk-op-change-range.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-crch-dia-choose.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-delete-verse.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-module-select-1.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-module-select-2.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-module-tree-1.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-module-tree-bookmark-bookmarkandfolder.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-pencil.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-search-dialog-modsel.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-search-dialog-options.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-search-dialog-range.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-search-dialog-searchanal.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-search-dialog-searchresult.png -share/doc/HTML/en/bibletime/handbook/hdbk-op-search-dialog-searchtext.png -share/doc/HTML/en/bibletime/handbook/hdbk-operation.docbook -share/doc/HTML/en/bibletime/handbook/hdbk-start-screen-terms.png -share/doc/HTML/en/bibletime/handbook/hdbk-start-sequence-tips.png -share/doc/HTML/en/bibletime/handbook/hdbk-start.docbook -share/doc/HTML/en/bibletime/handbook/hdbk-toolbars.docbook -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_bible.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_bible_add.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_book.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_book_add.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_cascade.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_cascade_auto.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_commentary.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_commentary_add.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_displayconfig.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_lexicon.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_lexicon_add.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_startconfig.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_swordconfig.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_sync.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_tile.png -share/doc/HTML/en/bibletime/handbook/hi32-action-bt_tile_auto.png -share/doc/HTML/en/bibletime/handbook/hi32-app-bibletime.png -share/doc/HTML/en/bibletime/handbook/index.docbook -share/doc/HTML/en/bibletime/handbook/kcmfontinst.png -share/doc/HTML/en/bibletime/handbook/key_bindings.png -share/doc/HTML/en/bibletime/handbook/ktip.png -share/doc/HTML/en/bibletime/handbook/pencil.png -share/doc/HTML/en/bibletime/handbook/queue.png -share/doc/HTML/en/bibletime/handbook/start.png -share/doc/HTML/en/bibletime/handbook/view_sidetree.png -share/doc/HTML/en/bibletime/handbook/window_fullscreen.png -share/doc/HTML/en/bibletime/howto/common -share/doc/HTML/en/bibletime/howto/how2-basics.docbook -share/doc/HTML/en/bibletime/howto/how2-importance.docbook -share/doc/HTML/en/bibletime/howto/how2-interpretation.docbook -share/doc/HTML/en/bibletime/howto/index.docbook -share/icons/hicolor/16x16/actions/bt_bible.png -share/icons/hicolor/16x16/actions/bt_bible_add.png -share/icons/hicolor/16x16/actions/bt_bible_locked.png -share/icons/hicolor/16x16/actions/bt_book.png -share/icons/hicolor/16x16/actions/bt_book_add.png -share/icons/hicolor/16x16/actions/bt_book_locked.png -share/icons/hicolor/16x16/actions/bt_cascade.png -share/icons/hicolor/16x16/actions/bt_cascade_auto.png -share/icons/hicolor/16x16/actions/bt_commentary.png -share/icons/hicolor/16x16/actions/bt_commentary_add.png -share/icons/hicolor/16x16/actions/bt_commentary_locked.png -share/icons/hicolor/16x16/actions/bt_displayconfig.png -share/icons/hicolor/16x16/actions/bt_displaytranslit.png -share/icons/hicolor/16x16/actions/bt_lexicon.png -share/icons/hicolor/16x16/actions/bt_lexicon_add.png -share/icons/hicolor/16x16/actions/bt_lexicon_locked.png -share/icons/hicolor/16x16/actions/bt_startconfig.png -share/icons/hicolor/16x16/actions/bt_swordconfig.png -share/icons/hicolor/16x16/actions/bt_sync.png -share/icons/hicolor/16x16/actions/bt_tile.png -share/icons/hicolor/16x16/actions/bt_tile_auto.png -share/icons/hicolor/16x16/apps/bibletime.png -share/icons/hicolor/22x22/actions/bt_bible.png -share/icons/hicolor/22x22/actions/bt_bible_add.png -share/icons/hicolor/22x22/actions/bt_bible_locked.png -share/icons/hicolor/22x22/actions/bt_book.png -share/icons/hicolor/22x22/actions/bt_book_add.png -share/icons/hicolor/22x22/actions/bt_book_locked.png -share/icons/hicolor/22x22/actions/bt_cascade.png -share/icons/hicolor/22x22/actions/bt_cascade_auto.png -share/icons/hicolor/22x22/actions/bt_commentary.png -share/icons/hicolor/22x22/actions/bt_commentary_add.png -share/icons/hicolor/22x22/actions/bt_commentary_locked.png -share/icons/hicolor/22x22/actions/bt_displayconfig.png -share/icons/hicolor/22x22/actions/bt_displaytranslit.png -share/icons/hicolor/22x22/actions/bt_lexicon.png -share/icons/hicolor/22x22/actions/bt_lexicon_add.png -share/icons/hicolor/22x22/actions/bt_lexicon_locked.png -share/icons/hicolor/22x22/actions/bt_parallel.png -share/icons/hicolor/22x22/actions/bt_startconfig.png -share/icons/hicolor/22x22/actions/bt_swordconfig.png -share/icons/hicolor/22x22/actions/bt_sync.png -share/icons/hicolor/22x22/actions/bt_tile.png -share/icons/hicolor/22x22/actions/bt_tile_auto.png -share/icons/hicolor/22x22/apps/bibletime.png -share/icons/hicolor/32x32/actions/bt_bible.png -share/icons/hicolor/32x32/actions/bt_bible_add.png -share/icons/hicolor/32x32/actions/bt_bible_locked.png -share/icons/hicolor/32x32/actions/bt_book.png -share/icons/hicolor/32x32/actions/bt_book_add.png -share/icons/hicolor/32x32/actions/bt_book_locked.png -share/icons/hicolor/32x32/actions/bt_cascade.png -share/icons/hicolor/32x32/actions/bt_cascade_auto.png -share/icons/hicolor/32x32/actions/bt_commentary.png -share/icons/hicolor/32x32/actions/bt_commentary_add.png -share/icons/hicolor/32x32/actions/bt_commentary_locked.png -share/icons/hicolor/32x32/actions/bt_displayconfig.png -share/icons/hicolor/32x32/actions/bt_displaytranslit.png -share/icons/hicolor/32x32/actions/bt_lexicon.png -share/icons/hicolor/32x32/actions/bt_lexicon_add.png -share/icons/hicolor/32x32/actions/bt_lexicon_locked.png -share/icons/hicolor/32x32/actions/bt_startconfig.png -share/icons/hicolor/32x32/actions/bt_swordconfig.png -share/icons/hicolor/32x32/actions/bt_sync.png -share/icons/hicolor/32x32/actions/bt_tile.png -share/icons/hicolor/32x32/actions/bt_tile_auto.png -share/icons/hicolor/32x32/apps/bibletime.png -share/icons/hicolor/48x48/actions/bt_bible.png -share/icons/hicolor/48x48/actions/bt_bible_add.png -share/icons/hicolor/48x48/actions/bt_bible_locked.png -share/icons/hicolor/48x48/actions/bt_book.png -share/icons/hicolor/48x48/actions/bt_book_add.png -share/icons/hicolor/48x48/actions/bt_book_locked.png -share/icons/hicolor/48x48/actions/bt_cascade.png -share/icons/hicolor/48x48/actions/bt_cascade_auto.png -share/icons/hicolor/48x48/actions/bt_commentary.png -share/icons/hicolor/48x48/actions/bt_commentary_add.png -share/icons/hicolor/48x48/actions/bt_commentary_locked.png -share/icons/hicolor/48x48/actions/bt_displayconfig.png -share/icons/hicolor/48x48/actions/bt_displaytranslit.png -share/icons/hicolor/48x48/actions/bt_lexicon.png -share/icons/hicolor/48x48/actions/bt_lexicon_add.png -share/icons/hicolor/48x48/actions/bt_lexicon_locked.png -share/icons/hicolor/48x48/actions/bt_startconfig.png -share/icons/hicolor/48x48/actions/bt_swordconfig.png -share/icons/hicolor/48x48/actions/bt_sync.png -share/icons/hicolor/48x48/actions/bt_tile.png -share/icons/hicolor/48x48/actions/bt_tile_auto.png -share/icons/hicolor/48x48/apps/bibletime.png -share/icons/hicolor/64x64/apps/bibletime.png -@unexec rmdir %D/share/icons/hicolor/64x64/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/64x64 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/48x48/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/48x48/actions 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/48x48 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/32x32/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/32x32/actions 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/32x32 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/22x22/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/22x22/actions 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/22x22 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/16x16/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/16x16/actions 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/16x16 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor 2>/dev/null || true -@dirrm share/doc/HTML/en/bibletime/howto -@dirrm share/doc/HTML/en/bibletime/handbook -@dirrm share/doc/HTML/en/bibletime -@unexec rmdir %D/share/doc/HTML/en 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML 2>/dev/null || true -@unexec rmdir %D/share/config 2>/dev/null || true -@unexec rmdir %D/share/apps/bibletime/pics -@unexec rmdir %D/share/apps/bibletime 2>/dev/null || true -@unexec rmdir %D/share/apps 2>/dev/null || true -@unexec rmdir %D/share/applnk/Applications 2>/dev/null || true -@unexec rmdir %D/share/applnk 2>/dev/null || true diff --git a/misc/compat5x/Makefile b/misc/compat5x/Makefile index 775a659da425..99b9c402764b 100644 --- a/misc/compat5x/Makefile +++ b/misc/compat5x/Makefile @@ -7,9 +7,9 @@ PORTNAME= compat5x PORTVERSION= 5.4.0.6 +PORTREVISION= 1 CATEGORIES= misc -MASTER_SITES= ${MASTER_SITE_LOCAL} \ - http://agrajag.ijs.si/tinderbox/stuff/compat5/ +MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR=lesi/compat5x PKGNAMESUFFIX= -${ARCH} DISTNAME= ${PORTNAME}-${ARCH}-${PORTVERSION} @@ -68,6 +68,7 @@ do-build: do-install: ${MKDIR} ${TARGET_DIR} + (cd ${WRKSRC} && ${RM} liblwres.so.3) (cd ${WRKSRC} && ${INSTALL_DATA} *.so.* ${TARGET_DIR}) .if ${ARCH} == amd64 ${MKDIR} ${TARGET32_DIR} diff --git a/misc/compat5x/pkg-plist b/misc/compat5x/pkg-plist index 6f39965b312b..501dc76f3ae4 100644 --- a/misc/compat5x/pkg-plist +++ b/misc/compat5x/pkg-plist @@ -40,7 +40,6 @@ lib/compat/libkrb5.so.7 %%ALPHA%%lib/compat/libkse.so.1 %%SPARC64%%lib/compat/libkse.so.1 lib/compat/libkvm.so.2 -lib/compat/liblwres.so.3 lib/compat/libm.so.3 lib/compat/libmagic.so.1 lib/compat/libmd.so.2 diff --git a/misc/freecode-submit/Makefile b/misc/freecode-submit/Makefile deleted file mode 100644 index add4a5796b8a..000000000000 --- a/misc/freecode-submit/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# New ports collection makefile for: freshmeat-submit -# Date created: 2 Jan 2005 -# Whom: x -# -# $FreeBSD$ -# - -PORTNAME= freshmeat-submit -PORTVERSION= 1.6 -CATEGORIES= misc -MASTER_SITES= http://www.catb.org/~esr/freshmeat-submit/ - -MAINTAINER= ports@FreeBSD.org -COMMENT= Submission of updates to Freshmeat via its XML-RPC - -USE_PYTHON= yes -NO_BUILD= yes - -PLIST_FILES= bin/freshmeat-submit -MAN1= freshmeat-submit.1 - -.include <bsd.port.pre.mk> - -do-install: - ${MKDIR} ${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/freshmeat-submit ${PREFIX}/bin - ${MKDIR} ${MAN1PREFIX}/man/man1 - ${INSTALL_MAN} ${WRKSRC}/freshmeat-submit.1 ${MAN1PREFIX}/man/man1 - -.include <bsd.port.post.mk> diff --git a/misc/freecode-submit/distinfo b/misc/freecode-submit/distinfo deleted file mode 100644 index 59cadd27594d..000000000000 --- a/misc/freecode-submit/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (freshmeat-submit-1.6.tar.gz) = 0c08186b4f0bd6d026c45c3028ed2ccc -SIZE (freshmeat-submit-1.6.tar.gz) = 17296 diff --git a/misc/freecode-submit/pkg-descr b/misc/freecode-submit/pkg-descr deleted file mode 100644 index 8f99979e7a4a..000000000000 --- a/misc/freecode-submit/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -freshmeat-submit is a Python script that supports remote submission of -release updates to Freshmeat via its XML-RPC interface. It is intended -for use in project release scripts. It reads the metadata from an -RFC-2822-like message on standard input, possibly with overrides -by command-line switches. - -WWW: http://www.catb.org/~esr/freshmeat-submit/ diff --git a/misc/gnome-mime-data/Makefile b/misc/gnome-mime-data/Makefile deleted file mode 100644 index 8c1b9bcaba95..000000000000 --- a/misc/gnome-mime-data/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# New ports collection makefile for: gnomemimedata -# Date created: 22 January 2002 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gnomemimedata -PORTVERSION= 2.4.2 -CATEGORIES= misc gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/gnome-mime-data/2.4 -DISTNAME= gnome-mime-data-${PORTVERSION} -DIST_SUBDIR= gnome - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A MIME and Application database for GNOME - -USE_BZIP2= yes -USE_GETTEXT= yes -USE_X_PREFIX= yes -USE_GNOME= gnomehack gnomehier intlhack gnomeprefix gnometarget pkgconfig -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib -lintl" - -.include <bsd.port.mk> diff --git a/misc/gnome-mime-data/distinfo b/misc/gnome-mime-data/distinfo deleted file mode 100644 index 3349b9fc23b0..000000000000 --- a/misc/gnome-mime-data/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (gnome/gnome-mime-data-2.4.2.tar.bz2) = 37242776b08625fa10c73c18b790e552 -SIZE (gnome/gnome-mime-data-2.4.2.tar.bz2) = 849716 diff --git a/misc/gnome-mime-data/files/patch-gnome-vfs.applications b/misc/gnome-mime-data/files/patch-gnome-vfs.applications deleted file mode 100644 index ef57a10cbfc6..000000000000 --- a/misc/gnome-mime-data/files/patch-gnome-vfs.applications +++ /dev/null @@ -1,18 +0,0 @@ ---- gnome-vfs.applications.orig Mon Dec 22 19:56:33 2003 -+++ gnome-vfs.applications Thu Apr 8 19:50:18 2004 -@@ -1,5 +1,5 @@ - abiword -- command=AbiWord-2.0 -+ command=abiword - name=AbiWord - can_open_multiple_files=true - expects_uris=false -@@ -55,7 +55,7 @@ - mime_types=application/x-deb - - electric_eyes -- command=ee -+ command=ElectricEyes - name=Electric Eyes - can_open_multiple_files=true - expects_uris=false diff --git a/misc/gnome-mime-data/pkg-descr b/misc/gnome-mime-data/pkg-descr deleted file mode 100644 index 349bb253a59c..000000000000 --- a/misc/gnome-mime-data/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -The base MIME and Application database for GNOME. It is meant to be accessed -through the MIME functions in GnomeVFS - -WWW: http://www.gnome.org/ diff --git a/misc/gnome-mime-data/pkg-plist b/misc/gnome-mime-data/pkg-plist deleted file mode 100644 index c789c2f1bf90..000000000000 --- a/misc/gnome-mime-data/pkg-plist +++ /dev/null @@ -1,79 +0,0 @@ -etc/gnome-vfs-mime-magic -libdata/pkgconfig/gnome-mime-data-2.0.pc -share/gnome/application-registry/gnome-vfs.applications -share/gnome/mime-info/gnome-vfs.keys -share/gnome/mime-info/gnome-vfs.mime -share/locale/af/LC_MESSAGES/gnome-mime-data.mo -share/locale/am/LC_MESSAGES/gnome-mime-data.mo -share/locale/ar/LC_MESSAGES/gnome-mime-data.mo -share/locale/az/LC_MESSAGES/gnome-mime-data.mo -share/locale/be/LC_MESSAGES/gnome-mime-data.mo -share/locale/bg/LC_MESSAGES/gnome-mime-data.mo -share/locale/bn/LC_MESSAGES/gnome-mime-data.mo -share/locale/bs/LC_MESSAGES/gnome-mime-data.mo -share/locale/ca/LC_MESSAGES/gnome-mime-data.mo -share/locale/cs/LC_MESSAGES/gnome-mime-data.mo -share/locale/cy/LC_MESSAGES/gnome-mime-data.mo -share/locale/da/LC_MESSAGES/gnome-mime-data.mo -share/locale/de/LC_MESSAGES/gnome-mime-data.mo -share/locale/el/LC_MESSAGES/gnome-mime-data.mo -share/locale/en_CA/LC_MESSAGES/gnome-mime-data.mo -share/locale/en_GB/LC_MESSAGES/gnome-mime-data.mo -share/locale/eo/LC_MESSAGES/gnome-mime-data.mo -share/locale/es/LC_MESSAGES/gnome-mime-data.mo -share/locale/et/LC_MESSAGES/gnome-mime-data.mo -share/locale/eu/LC_MESSAGES/gnome-mime-data.mo -share/locale/fa/LC_MESSAGES/gnome-mime-data.mo -share/locale/fi/LC_MESSAGES/gnome-mime-data.mo -share/locale/fr/LC_MESSAGES/gnome-mime-data.mo -share/locale/ga/LC_MESSAGES/gnome-mime-data.mo -share/locale/gl/LC_MESSAGES/gnome-mime-data.mo -share/locale/gu/LC_MESSAGES/gnome-mime-data.mo -share/locale/he/LC_MESSAGES/gnome-mime-data.mo -share/locale/hi/LC_MESSAGES/gnome-mime-data.mo -share/locale/hr/LC_MESSAGES/gnome-mime-data.mo -share/locale/hu/LC_MESSAGES/gnome-mime-data.mo -share/locale/id/LC_MESSAGES/gnome-mime-data.mo -share/locale/is/LC_MESSAGES/gnome-mime-data.mo -share/locale/it/LC_MESSAGES/gnome-mime-data.mo -share/locale/ja/LC_MESSAGES/gnome-mime-data.mo -share/locale/ko/LC_MESSAGES/gnome-mime-data.mo -share/locale/li/LC_MESSAGES/gnome-mime-data.mo -share/locale/lt/LC_MESSAGES/gnome-mime-data.mo -share/locale/lv/LC_MESSAGES/gnome-mime-data.mo -share/locale/mk/LC_MESSAGES/gnome-mime-data.mo -share/locale/ml/LC_MESSAGES/gnome-mime-data.mo -share/locale/mn/LC_MESSAGES/gnome-mime-data.mo -share/locale/ms/LC_MESSAGES/gnome-mime-data.mo -share/locale/nb/LC_MESSAGES/gnome-mime-data.mo -share/locale/ne/LC_MESSAGES/gnome-mime-data.mo -share/locale/nl/LC_MESSAGES/gnome-mime-data.mo -share/locale/nn/LC_MESSAGES/gnome-mime-data.mo -share/locale/no/LC_MESSAGES/gnome-mime-data.mo -share/locale/pa/LC_MESSAGES/gnome-mime-data.mo -share/locale/pl/LC_MESSAGES/gnome-mime-data.mo -share/locale/pt/LC_MESSAGES/gnome-mime-data.mo -share/locale/pt_BR/LC_MESSAGES/gnome-mime-data.mo -share/locale/ro/LC_MESSAGES/gnome-mime-data.mo -share/locale/ru/LC_MESSAGES/gnome-mime-data.mo -share/locale/sk/LC_MESSAGES/gnome-mime-data.mo -share/locale/sl/LC_MESSAGES/gnome-mime-data.mo -share/locale/sq/LC_MESSAGES/gnome-mime-data.mo -share/locale/sr/LC_MESSAGES/gnome-mime-data.mo -share/locale/sr@Latn/LC_MESSAGES/gnome-mime-data.mo -share/locale/sr@ije/LC_MESSAGES/gnome-mime-data.mo -share/locale/sv/LC_MESSAGES/gnome-mime-data.mo -share/locale/ta/LC_MESSAGES/gnome-mime-data.mo -share/locale/th/LC_MESSAGES/gnome-mime-data.mo -share/locale/tk/LC_MESSAGES/gnome-mime-data.mo -share/locale/tr/LC_MESSAGES/gnome-mime-data.mo -share/locale/uk/LC_MESSAGES/gnome-mime-data.mo -share/locale/vi/LC_MESSAGES/gnome-mime-data.mo -share/locale/wa/LC_MESSAGES/gnome-mime-data.mo -share/locale/yi/LC_MESSAGES/gnome-mime-data.mo -share/locale/zh_CN/LC_MESSAGES/gnome-mime-data.mo -share/locale/zh_TW/LC_MESSAGES/gnome-mime-data.mo -@unexec rmdir %D/share/locale/sr@ije/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/sr@ije 2>/dev/null || true -@unexec rmdir %D/share/locale/yi/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/yi 2>/dev/null || true diff --git a/misc/gnome-user-docs/Makefile b/misc/gnome-user-docs/Makefile deleted file mode 100644 index 3c5b69fe62e0..000000000000 --- a/misc/gnome-user-docs/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: gnomeuserdocs2 -# Date created: 07 July 2002 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gnomeuserdocs2 -PORTVERSION= 2.8.1 -CATEGORIES= misc gnome -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/gnome2-user-docs/2.8 -DISTNAME= gnome2-user-docs-${PORTVERSION} -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= GNOME 2 users guide - -BUILD_DEPENDS= scrollkeeper-config:${PORTSDIR}/textproc/scrollkeeper -RUN_DEPENDS= scrollkeeper-config:${PORTSDIR}/textproc/scrollkeeper - -USE_BZIP2= yes -USE_X_PREFIX= yes -INSTALLS_OMF= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -USE_GNOME= gnomeprefix gnomehack gnomehier gnometarget - -.include <bsd.port.mk> diff --git a/misc/gnome-user-docs/distinfo b/misc/gnome-user-docs/distinfo deleted file mode 100644 index 3b818acc6e8e..000000000000 --- a/misc/gnome-user-docs/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (gnome2/gnome2-user-docs-2.8.1.tar.bz2) = 90bdd21ea3e3e794f641dd805216f275 -SIZE (gnome2/gnome2-user-docs-2.8.1.tar.bz2) = 1054681 diff --git a/misc/gnome-user-docs/pkg-descr b/misc/gnome-user-docs/pkg-descr deleted file mode 100644 index 0ed2fb1bc819..000000000000 --- a/misc/gnome-user-docs/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -User documentation for the GNOME 2 desktop. diff --git a/misc/gnome-user-docs/pkg-plist b/misc/gnome-user-docs/pkg-plist deleted file mode 100644 index 434eda5fd682..000000000000 --- a/misc/gnome-user-docs/pkg-plist +++ /dev/null @@ -1,154 +0,0 @@ -share/gnome/help/gnome-access-guide/C/accessintro.xml -share/gnome/help/gnome-access-guide/C/dtconfig.xml -share/gnome/help/gnome-access-guide/C/figures/button.png -share/gnome/help/gnome-access-guide/C/figures/check_box.png -share/gnome/help/gnome-access-guide/C/figures/dropdown_combination_box.png -share/gnome/help/gnome-access-guide/C/figures/dropdown_list_box.png -share/gnome/help/gnome-access-guide/C/figures/move_object_arrows.png -share/gnome/help/gnome-access-guide/C/figures/move_object_before.png -share/gnome/help/gnome-access-guide/C/figures/move_object_jump.png -share/gnome/help/gnome-access-guide/C/figures/move_object_push.png -share/gnome/help/gnome-access-guide/C/figures/naut_iconview_anno_window.png -share/gnome/help/gnome-access-guide/C/figures/paned_window_anno.png -share/gnome/help/gnome-access-guide/C/figures/radio_button.png -share/gnome/help/gnome-access-guide/C/figures/slider.png -share/gnome/help/gnome-access-guide/C/figures/spin_box.png -share/gnome/help/gnome-access-guide/C/figures/tabbed_section.png -share/gnome/help/gnome-access-guide/C/figures/table.png -share/gnome/help/gnome-access-guide/C/figures/text_box.png -share/gnome/help/gnome-access-guide/C/figures/tree.png -share/gnome/help/gnome-access-guide/C/gnome-access-guide.xml -share/gnome/help/gnome-access-guide/C/keynav.xml -share/gnome/help/gnome-access-guide/C/legal.xml -share/gnome/help/gnome-access-guide/C/preface.xml -share/gnome/help/gnome-access-guide/C/themes.xml -share/gnome/help/system-admin-guide/C/appendixa.xml -share/gnome/help/system-admin-guide/C/appendixb.xml -share/gnome/help/system-admin-guide/C/fontconfig.xml -share/gnome/help/system-admin-guide/C/gconf.xml -share/gnome/help/system-admin-guide/C/glossary.xml -share/gnome/help/system-admin-guide/C/help.xml -share/gnome/help/system-admin-guide/C/legal.xml -share/gnome/help/system-admin-guide/C/lockdown.xml -share/gnome/help/system-admin-guide/C/menustructure.xml -share/gnome/help/system-admin-guide/C/mimetypes.xml -share/gnome/help/system-admin-guide/C/performance.xml -share/gnome/help/system-admin-guide/C/screensavers.xml -share/gnome/help/system-admin-guide/C/sessions.xml -share/gnome/help/system-admin-guide/C/system-admin-guide.xml -share/gnome/help/system-admin-guide/C/themes.xml -share/gnome/help/user-guide/C/figures/applet_popup.png -share/gnome/help/user-guide/C/figures/ask_pointer.png -share/gnome/help/user-guide/C/figures/caution.png -share/gnome/help/user-guide/C/figures/column_resize_pointer.png -share/gnome/help/user-guide/C/figures/com_file_manager_menu.png -share/gnome/help/user-guide/C/figures/copy_pointer.png -share/gnome/help/user-guide/C/figures/corner_resize_pointer.png -share/gnome/help/user-guide/C/figures/file_manager_menu.png -share/gnome/help/user-guide/C/figures/footprint_icon.png -share/gnome/help/user-guide/C/figures/force_quit.png -share/gnome/help/user-guide/C/figures/four_hide_button.png -share/gnome/help/user-guide/C/figures/gedit_pref_dialog.png -share/gnome/help/user-guide/C/figures/gedit_window.png -share/gnome/help/user-guide/C/figures/gnome-logo-icon.png -share/gnome/help/user-guide/C/figures/gnome_panel.png -share/gnome/help/user-guide/C/figures/horiz_resize_pointer.png -share/gnome/help/user-guide/C/figures/launcher_popup.png -share/gnome/help/user-guide/C/figures/link_pointer.png -share/gnome/help/user-guide/C/figures/lockscreen_icon.png -share/gnome/help/user-guide/C/figures/logout_icon.png -share/gnome/help/user-guide/C/figures/menu_bar_applet.png -share/gnome/help/user-guide/C/figures/menu_panel.png -share/gnome/help/user-guide/C/figures/move_panel_object_pointer.png -share/gnome/help/user-guide/C/figures/move_pointer.png -share/gnome/help/user-guide/C/figures/naut_audioview_window.png -share/gnome/help/user-guide/C/figures/naut_browser_filesystem.png -share/gnome/help/user-guide/C/figures/naut_browser_window.png -share/gnome/help/user-guide/C/figures/naut_computer_contents.png -share/gnome/help/user-guide/C/figures/naut_computer_launcher.png -share/gnome/help/user-guide/C/figures/naut_home_launcher.png -share/gnome/help/user-guide/C/figures/naut_iconview_anno_window.png -share/gnome/help/user-guide/C/figures/naut_iconview_window.png -share/gnome/help/user-guide/C/figures/naut_link_emblem.png -share/gnome/help/user-guide/C/figures/naut_listview_window.png -share/gnome/help/user-guide/C/figures/naut_noread_emblem.png -share/gnome/help/user-guide/C/figures/naut_normal_size_button.png -share/gnome/help/user-guide/C/figures/naut_nowrite_emblem.png -share/gnome/help/user-guide/C/figures/naut_sampleemblem1_icon.png -share/gnome/help/user-guide/C/figures/naut_sampleemblem2_icon.png -share/gnome/help/user-guide/C/figures/naut_sampleemblem3_icon.png -share/gnome/help/user-guide/C/figures/naut_sampleemblem_icon.png -share/gnome/help/user-guide/C/figures/naut_samplesymlink_icon.png -share/gnome/help/user-guide/C/figures/naut_sort_arrow_icon.png -share/gnome/help/user-guide/C/figures/naut_starthere_launcher.png -share/gnome/help/user-guide/C/figures/naut_trash_launcher.png -share/gnome/help/user-guide/C/figures/naut_tree_tab.png -share/gnome/help/user-guide/C/figures/naut_viewpane_text_window.png -share/gnome/help/user-guide/C/figures/naut_zoom_in_button.png -share/gnome/help/user-guide/C/figures/naut_zoom_out_button.png -share/gnome/help/user-guide/C/figures/normal_pointer.png -share/gnome/help/user-guide/C/figures/not_available_pointer.png -share/gnome/help/user-guide/C/figures/note.png -share/gnome/help/user-guide/C/figures/notification_area_icon.png -share/gnome/help/user-guide/C/figures/open_drawer.png -share/gnome/help/user-guide/C/figures/open_main_menu.png -share/gnome/help/user-guide/C/figures/openwindows_menu.png -share/gnome/help/user-guide/C/figures/panel_object_popup_menu.png -share/gnome/help/user-guide/C/figures/run_button.png -share/gnome/help/user-guide/C/figures/sample_anno_panel.png -share/gnome/help/user-guide/C/figures/sample_applet.png -share/gnome/help/user-guide/C/figures/screenshot_button.png -share/gnome/help/user-guide/C/figures/searchtool_button.png -share/gnome/help/user-guide/C/figures/show_desktop_button.png -share/gnome/help/user-guide/C/figures/tip.png -share/gnome/help/user-guide/C/figures/titlebar_anno_window.png -share/gnome/help/user-guide/C/figures/typical_anno_desktop.png -share/gnome/help/user-guide/C/figures/typical_menu.png -share/gnome/help/user-guide/C/figures/vert_resize_pointer.png -share/gnome/help/user-guide/C/figures/warning.png -share/gnome/help/user-guide/C/figures/window_list_applet.png -share/gnome/help/user-guide/C/figures/window_list_group_applet.png -share/gnome/help/user-guide/C/figures/window_menu.png -share/gnome/help/user-guide/C/figures/workspace_switcher_applet.png -share/gnome/help/user-guide/C/glossary.xml -share/gnome/help/user-guide/C/gosbasic.xml -share/gnome/help/user-guide/C/goscustaccess.xml -share/gnome/help/user-guide/C/goscustdesk-remotedesktop.xml -share/gnome/help/user-guide/C/goscustdesk.xml -share/gnome/help/user-guide/C/goscustlookandfeel.xml -share/gnome/help/user-guide/C/gosdeskback.xml -share/gnome/help/user-guide/C/goseditmainmenu.xml -share/gnome/help/user-guide/C/gosmetacity.xml -share/gnome/help/user-guide/C/gosnautilus.xml -share/gnome/help/user-guide/C/gosoverview.xml -share/gnome/help/user-guide/C/gospanel.xml -share/gnome/help/user-guide/C/gosstartsession.xml -share/gnome/help/user-guide/C/legal.xml -share/gnome/help/user-guide/C/part1.xml -share/gnome/help/user-guide/C/part2.xml -share/gnome/help/user-guide/C/plaingnomestartpreftools.xml -share/gnome/help/user-guide/C/user-guide.xml -share/gnome/help/user-guide/C/wgosbasic.xml -share/gnome/help/user-guide/C/wgoscustaccess.xml -share/gnome/help/user-guide/C/wgoscustdesk.xml -share/gnome/help/user-guide/C/wgoscustlookandfeel.xml -share/gnome/help/user-guide/C/wgosdeskback.xml -share/gnome/help/user-guide/C/wgoseditmainmenu.xml -share/gnome/help/user-guide/C/wgosmetacity.xml -share/gnome/help/user-guide/C/wgosnautilus.xml -share/gnome/help/user-guide/C/wgosoverview.xml -share/gnome/help/user-guide/C/wgospanel.xml -share/gnome/help/user-guide/C/wgosstartsession.xml -share/gnome/omf/gnome2-user-docs/gnome-access-guide-C.omf -share/gnome/omf/gnome2-user-docs/system-admin-guide-C.omf -share/gnome/omf/user-guide/user-guide-C.omf -@dirrm share/gnome/omf/user-guide -@dirrm share/gnome/omf/gnome2-user-docs -@dirrm share/gnome/help/user-guide/C/figures -@dirrm share/gnome/help/user-guide/C -@dirrm share/gnome/help/user-guide -@dirrm share/gnome/help/system-admin-guide/C -@dirrm share/gnome/help/system-admin-guide -@dirrm share/gnome/help/gnome-access-guide/C/figures -@dirrm share/gnome/help/gnome-access-guide/C -@dirrm share/gnome/help/gnome-access-guide diff --git a/misc/gnuit/Makefile b/misc/gnuit/Makefile deleted file mode 100644 index 4fb16ad01894..000000000000 --- a/misc/gnuit/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# New ports collection makefile for: git -# Date created: 12 Jul 1995 -# Whom: torstenb@FreeBSD.org -# -# $FreeBSD$ -# - -PORTNAME= git -PORTVERSION= 4.3.20 -CATEGORIES= misc -MASTER_SITES= ${MASTER_SITE_GNU} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= ports@FreeBSD.org -COMMENT= GNU Interactive Tools - a file system browser for UNIX systems - -GNU_CONFIGURE= YES -MAN1= git.1 gitaction.1 gitkeys.1 gitmount.1 \ - gitrgrep.1 gitunpack.1 -INFO= git - -pre-patch: - ${CP} ${WRKSRC}/term/.gitrc.ansi \ - ${WRKSRC}/term/.gitrc.cons25 - -.include <bsd.port.mk> diff --git a/misc/gnuit/distinfo b/misc/gnuit/distinfo deleted file mode 100644 index 005084aaae29..000000000000 --- a/misc/gnuit/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (git-4.3.20.tar.gz) = 72b01d5f9905951137ac1bb87d7e431c -SIZE (git-4.3.20.tar.gz) = 426648 diff --git a/misc/gnuit/files/patch-ab b/misc/gnuit/files/patch-ab deleted file mode 100644 index 9f762537c32d..000000000000 --- a/misc/gnuit/files/patch-ab +++ /dev/null @@ -1,14 +0,0 @@ ---- term/Makefile.in.orig Mon Jun 28 23:41:13 1999 -+++ term/Makefile.in Mon Nov 15 17:07:01 1999 -@@ -80,9 +80,9 @@ - PRODUCT = @PRODUCT@ - VERSION = @VERSION@ - --EXTRA_DIST = .gitrc.aixterm .gitrc.ansi .gitrc.common.in .gitrc.generic .gitrc.hft .gitrc.hpterm .gitrc.linux .gitrc.mach .gitrc.minix .gitrc.thix .gitrc.vt100 .gitrc.vt102 .gitrc.xterm .gitrc.xterm-color -+EXTRA_DIST = .gitrc.aixterm .gitrc.ansi .gitrc.common.in .gitrc.generic .gitrc.hft .gitrc.hpterm .gitrc.linux .gitrc.mach .gitrc.minix .gitrc.thix .gitrc.vt100 .gitrc.vt102 .gitrc.xterm .gitrc.xterm-color .gitrc.cons25 - --pkgdata_DATA = .gitrc.aixterm .gitrc.ansi .gitrc.common .gitrc.generic .gitrc.hft .gitrc.hpterm .gitrc.linux .gitrc.mach .gitrc.minix .gitrc.thix .gitrc.vt100 .gitrc.vt102 .gitrc.xterm .gitrc.xterm-color -+pkgdata_DATA = .gitrc.aixterm .gitrc.ansi .gitrc.common .gitrc.generic .gitrc.hft .gitrc.hpterm .gitrc.linux .gitrc.mach .gitrc.minix .gitrc.thix .gitrc.vt100 .gitrc.vt102 .gitrc.xterm .gitrc.xterm-color .gitrc.cons25 - - - GIT_GENERICS = .gitrc.sun .gitrc.sun-cmd .gitrc.eterm .gitrc.pc3 diff --git a/misc/gnuit/files/patch-ac b/misc/gnuit/files/patch-ac deleted file mode 100644 index 5363a376f6b0..000000000000 --- a/misc/gnuit/files/patch-ac +++ /dev/null @@ -1,11 +0,0 @@ ---- term/.gitrc.cons25.orig Sat Jun 15 17:00:30 1996 -+++ term/.gitrc.cons25 Sat Jun 15 17:05:28 1996 -@@ -24,7 +24,7 @@ - [Setup] - TempDirectory = /tmp - AnsiColors = ON # empty means OFF --UseLastScreenChar = OFF # use the last character on the screen -+UseLastScreenChar = ON # use the last character on the screen - StartupScrollStep = # empty means half the number of lines - - diff --git a/misc/gnuit/files/patch-ad b/misc/gnuit/files/patch-ad deleted file mode 100644 index 5fe99f426b1c..000000000000 --- a/misc/gnuit/files/patch-ad +++ /dev/null @@ -1,11 +0,0 @@ ---- doc/Makefile.in.orig Mon Nov 15 19:23:15 1999 -+++ doc/Makefile.in Mon Nov 15 19:23:32 1999 -@@ -82,7 +82,7 @@ - - info_TEXINFOS = git.texinfo - man_MANS = git.1 gitaction.1 gitkeys.1 gitmount.1 gitrgrep.1 gitunpack.1 --htmldir = $(prefix)/doc/git-$(VERSION) -+htmldir = $(prefix)/share/git - html_DATA = git.html - EXTRA_DIST = git.1 gitaction.1 gitkeys.1 gitmount.1 gitrgrep.1 gitunpack.1 git.html - diff --git a/misc/gnuit/pkg-descr b/misc/gnuit/pkg-descr deleted file mode 100644 index bb5cef955b4e..000000000000 --- a/misc/gnuit/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -GIT is a file system browser for UNIX systems. -An interactive process viewer/killer, a hex/ascii file viewer, an auto-mount -shell script and a per file type action script are also available. diff --git a/misc/gnuit/pkg-plist b/misc/gnuit/pkg-plist deleted file mode 100644 index 11723b9c6e5b..000000000000 --- a/misc/gnuit/pkg-plist +++ /dev/null @@ -1,52 +0,0 @@ -bin/.gitaction -bin/git -bin/gitaction -bin/gitkeys -bin/gitmkdirs -bin/gitmount -bin/gitps -bin/gitrgrep -bin/gitunpack -bin/gitview -bin/gitwhich -bin/gitwipe -bin/gitxgrep -%%DATADIR%%/.gitrc.aixterm -%%DATADIR%%/.gitrc.ansi -%%DATADIR%%/.gitrc.common -%%DATADIR%%/.gitrc.cons25 -%%DATADIR%%/.gitrc.console -%%DATADIR%%/.gitrc.dtterm -%%DATADIR%%/.gitrc.eterm -%%DATADIR%%/.gitrc.generic -%%DATADIR%%/.gitrc.hft -%%DATADIR%%/.gitrc.hp -%%DATADIR%%/.gitrc.hpterm -%%DATADIR%%/.gitrc.iris-ansi -%%DATADIR%%/.gitrc.iris-ansi-net -%%DATADIR%%/.gitrc.linux -%%DATADIR%%/.gitrc.mach -%%DATADIR%%/.gitrc.minix -%%DATADIR%%/.gitrc.pc3 -%%DATADIR%%/.gitrc.rxvt -%%DATADIR%%/.gitrc.screen -%%DATADIR%%/.gitrc.sun -%%DATADIR%%/.gitrc.sun-cmd -%%DATADIR%%/.gitrc.thix -%%DATADIR%%/.gitrc.vt100 -%%DATADIR%%/.gitrc.vt102 -%%DATADIR%%/.gitrc.vt125 -%%DATADIR%%/.gitrc.vt200 -%%DATADIR%%/.gitrc.vt201 -%%DATADIR%%/.gitrc.vt220 -%%DATADIR%%/.gitrc.vt240 -%%DATADIR%%/.gitrc.vt300 -%%DATADIR%%/.gitrc.vt320 -%%DATADIR%%/.gitrc.vt400 -%%DATADIR%%/.gitrc.vt420 -%%DATADIR%%/.gitrc.xterm -%%DATADIR%%/.gitrc.xterm-color -%%DATADIR%%/.gitrc.xterm-debian -%%DATADIR%%/.gitrc.xterms -%%DATADIR%%/git.html -@dirrm %%DATADIR%% diff --git a/misc/instant-workstation/Makefile b/misc/instant-workstation/Makefile index cf9abb885819..e2cdcd31d7fa 100644 --- a/misc/instant-workstation/Makefile +++ b/misc/instant-workstation/Makefile @@ -14,6 +14,8 @@ MASTER_SITES= ftp://ftp.lemis.com/pub/ MAINTAINER= grog@lemis.com COMMENT= Instant workstation installs a typical set of ports for a workstation +BROKEN= Incomplete pkg-plist + USE_GHOSTSCRIPT_RUN= yes RUN_DEPENDS= acroread:${PORTSDIR}/print/acroread \ diff --git a/misc/kcd-devel/Makefile b/misc/kcd-devel/Makefile deleted file mode 100644 index 06eb2f48bfb5..000000000000 --- a/misc/kcd-devel/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# New ports collection makefile for: kcd -# Date created: 5 May 1999 -# Whom: Andrey Zakhvatov -# -# $FreeBSD$ -# - -PORTNAME= kcd -PORTVERSION= 7.6.1 -CATEGORIES= misc -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= ports@FreeBSD.org -COMMENT= Change directory in full-screen visual mode - -USE_GETTEXT= yes -USE_PERL5= yes -GNU_CONFIGURE= yes -CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib -lintl" - -MAN1= kcd.1 - -do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/kcd-inst ${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/kcdscr ${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/kcdmain ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/kcd.1 ${MANPREFIX}/man/man1 -.for i in en_GB en_GB.UTF-8 en_US.UTF-8 - @${MKDIR} ${PREFIX}/share/locale/${i}/LC_MESSAGES - ${INSTALL_DATA} ${WRKSRC}/po/${i}.gmo \ - ${PREFIX}/share/locale/${i}/LC_MESSAGES/kcd.mo -.endfor -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} - @${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/kcd.csh.init ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/kcd.sh.init ${EXAMPLESDIR} -.endif - -.include <bsd.port.mk> diff --git a/misc/kcd-devel/distinfo b/misc/kcd-devel/distinfo deleted file mode 100644 index 87e62826c6dd..000000000000 --- a/misc/kcd-devel/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (kcd-7.6.1.tar.gz) = 49bf1f3d0be562eec343995755a6c551 -SIZE (kcd-7.6.1.tar.gz) = 387063 diff --git a/misc/kcd-devel/files/patch-cxxlib.cc b/misc/kcd-devel/files/patch-cxxlib.cc deleted file mode 100644 index 3388c062954a..000000000000 --- a/misc/kcd-devel/files/patch-cxxlib.cc +++ /dev/null @@ -1,18 +0,0 @@ ---- cxxlib.cc.orig Sun Nov 3 23:49:03 2002 -+++ cxxlib.cc Wed Nov 6 09:42:38 2002 -@@ -48,6 +48,7 @@ - abort(); - } - -+#ifndef __FreeBSD__ - void *operator new (size_t size) CXX__NEW_THROW - { - #ifdef LARGE_MEMORY_THRES -@@ -101,6 +102,7 @@ - } - - #endif /* CXX__HAVE_ARRAY_NEW */ -+#endif - - #ifndef CXX__NEW_THROW_BAD_ALLOC - void kcd_new_handler() diff --git a/misc/kcd-devel/files/patch-cxxlib.h b/misc/kcd-devel/files/patch-cxxlib.h deleted file mode 100644 index 66512291d73b..000000000000 --- a/misc/kcd-devel/files/patch-cxxlib.h +++ /dev/null @@ -1,17 +0,0 @@ ---- cxxlib.h.orig Sun Nov 3 23:49:03 2002 -+++ cxxlib.h Wed Nov 6 09:41:36 2002 -@@ -33,12 +33,14 @@ - // new/delete operators - // - -+#ifndef __FreeBSD__ - void *operator new (size_t s) CXX__NEW_THROW; - void operator delete (void *p) CXX__DELETE_THROW; - #ifdef CXX__HAVE_ARRAY_NEW - void *operator new[] (size_t s) CXX__NEW_THROW; - void operator delete[] (void *p) CXX__DELETE_THROW; - #endif /* CXX__HAVE_ARRAY_NEW */ -+#endif - - // - // string I/O stream diff --git a/misc/kcd-devel/pkg-descr b/misc/kcd-devel/pkg-descr deleted file mode 100644 index 98a968a03ed4..000000000000 --- a/misc/kcd-devel/pkg-descr +++ /dev/null @@ -1,21 +0,0 @@ -kcd allows user to change directory by using various methods: - - - By using cursor keys to navigate through the directory tree - screen - - By searching in directory tree screen - - By typing part of the directory name directly at the - command line. - - Other features include: - - Can be configured to filter out to some subdirectories, - useful for cdrom and msdos partition mounting points - - Can be configured to scan directory tree starting from some - specified directory inwards, for example, home directory. - - If the number directories that matches to the name given in - the command line exceeds a specified number, kcd displays - the whole list. - - Faster directory rescan if old data file exists. Only - directories with newer modified/changed time are scanned. - - Sorted directory tree listing. - -WWW: http://kcd.sourceforge.net/ diff --git a/misc/kcd-devel/pkg-plist b/misc/kcd-devel/pkg-plist deleted file mode 100644 index af488b09f1c8..000000000000 --- a/misc/kcd-devel/pkg-plist +++ /dev/null @@ -1,15 +0,0 @@ -bin/kcd-inst -bin/kcdmain -bin/kcdscr -share/locale/en_GB/LC_MESSAGES/kcd.mo -share/locale/en_GB.UTF-8/LC_MESSAGES/kcd.mo -share/locale/en_US.UTF-8/LC_MESSAGES/kcd.mo -%%PORTDOCS%%share/doc/kcd/README -%%PORTDOCS%%share/examples/kcd/kcd.csh.init -%%PORTDOCS%%share/examples/kcd/kcd.sh.init -%%PORTDOCS%%@dirrm share/examples/kcd -%%PORTDOCS%%@dirrm share/doc/kcd -@unexec rmdir %D/share/locale/en_GB.UTF-8/LC_MESSAGES 2> /dev/null || true -@unexec rmdir %D/share/locale/en_GB.UTF-8 2> /dev/null || true -@unexec rmdir %D/share/locale/en_US.UTF-8/LC_MESSAGES 2> /dev/null || true -@unexec rmdir %D/share/locale/en_US.UTF-8 2> /dev/null || true diff --git a/misc/kde3-i18n-sr_Latn/Makefile b/misc/kde3-i18n-sr_Latn/Makefile deleted file mode 100644 index 5dd3fdaaa697..000000000000 --- a/misc/kde3-i18n-sr_Latn/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# New ports collection makefile for: kde3-i18n-sr@Latn -# Date created: 01 March 2004 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= sr-Latn- -DISTNAME= ${PORTNAME}-sr@Latn-${PORTVERSION} -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Serbian (latin alphabet) messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde3-i18n-sr_Latn/distinfo b/misc/kde3-i18n-sr_Latn/distinfo deleted file mode 100644 index 66987f75b804..000000000000 --- a/misc/kde3-i18n-sr_Latn/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-sr@Latn-3.4.2.tar.bz2) = 8f95eac7ead01718fc34a092f75932db -SIZE (KDE/kde-i18n/kde-i18n-sr@Latn-3.4.2.tar.bz2) = 2091162 diff --git a/misc/kde3-i18n-sr_Latn/pkg-descr b/misc/kde3-i18n-sr_Latn/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde3-i18n-sr_Latn/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde3-i18n-sr_Latn/pkg-plist b/misc/kde3-i18n-sr_Latn/pkg-plist deleted file mode 100644 index abb0018b891b..000000000000 --- a/misc/kde3-i18n-sr_Latn/pkg-plist +++ /dev/null @@ -1,609 +0,0 @@ -share/apps/katepart/syntax/logohighlightstyle.sr@Latn.xml -share/apps/khangman/data/sr@Latn/animals.kvtml -share/apps/khangman/data/sr@Latn/easy.kvtml -share/apps/khangman/data/sr@Latn/hard.kvtml -share/apps/khangman/data/sr@Latn/medium.kvtml -share/apps/khangman/sr@Latn.txt -share/apps/kturtle/data/logokeywords.sr@Latn.xml -share/apps/kturtle/examples/sr@Latn/curly.logo -share/apps/kturtle/examples/sr@Latn/square.logo -share/apps/kturtle/examples/sr@Latn/triangle.logo -share/locale/sr@Latn/LC_MESSAGES/akregator.mo -share/locale/sr@Latn/LC_MESSAGES/akregator_konqplugin.mo -share/locale/sr@Latn/LC_MESSAGES/alsaplayerui.mo -share/locale/sr@Latn/LC_MESSAGES/amor.mo -share/locale/sr@Latn/LC_MESSAGES/appletproxy.mo -share/locale/sr@Latn/LC_MESSAGES/ark.mo -share/locale/sr@Latn/LC_MESSAGES/ark_plugin.mo -share/locale/sr@Latn/LC_MESSAGES/artsbuilder.mo -share/locale/sr@Latn/LC_MESSAGES/artscontrol.mo -share/locale/sr@Latn/LC_MESSAGES/artsmodules.mo -share/locale/sr@Latn/LC_MESSAGES/atlantik.mo -share/locale/sr@Latn/LC_MESSAGES/atlantikdesigner.mo -share/locale/sr@Latn/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/sr@Latn/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/sr@Latn/LC_MESSAGES/audiorename_plugin.mo -share/locale/sr@Latn/LC_MESSAGES/autorefresh.mo -share/locale/sr@Latn/LC_MESSAGES/babelfish.mo -share/locale/sr@Latn/LC_MESSAGES/cervisia.mo -share/locale/sr@Latn/LC_MESSAGES/charlatanui.mo -share/locale/sr@Latn/LC_MESSAGES/childpanelextension.mo -share/locale/sr@Latn/LC_MESSAGES/clockapplet.mo -share/locale/sr@Latn/LC_MESSAGES/crashesplugin.mo -share/locale/sr@Latn/LC_MESSAGES/cupsdconf.mo -share/locale/sr@Latn/LC_MESSAGES/cvsservice.mo -share/locale/sr@Latn/LC_MESSAGES/dcoprss.mo -share/locale/sr@Latn/LC_MESSAGES/devicesapplet.mo -share/locale/sr@Latn/LC_MESSAGES/dirfilterplugin.mo -share/locale/sr@Latn/LC_MESSAGES/display.mo -share/locale/sr@Latn/LC_MESSAGES/dockbarextension.mo -share/locale/sr@Latn/LC_MESSAGES/domtreeviewer.mo -share/locale/sr@Latn/LC_MESSAGES/drkonqi.mo -share/locale/sr@Latn/LC_MESSAGES/dub.mo -share/locale/sr@Latn/LC_MESSAGES/extensionproxy.mo -share/locale/sr@Latn/LC_MESSAGES/ffrs.mo -share/locale/sr@Latn/LC_MESSAGES/filetypes.mo -share/locale/sr@Latn/LC_MESSAGES/fontinst.mo -share/locale/sr@Latn/LC_MESSAGES/fsview.mo -share/locale/sr@Latn/LC_MESSAGES/htmlsearch.mo -share/locale/sr@Latn/LC_MESSAGES/imagerename_plugin.mo -share/locale/sr@Latn/LC_MESSAGES/imgalleryplugin.mo -share/locale/sr@Latn/LC_MESSAGES/irkick.mo -share/locale/sr@Latn/LC_MESSAGES/jefferson.mo -share/locale/sr@Latn/LC_MESSAGES/joystick.mo -share/locale/sr@Latn/LC_MESSAGES/juk.mo -share/locale/sr@Latn/LC_MESSAGES/kabc2mutt.mo -share/locale/sr@Latn/LC_MESSAGES/kabc_dir.mo -share/locale/sr@Latn/LC_MESSAGES/kabc_file.mo -share/locale/sr@Latn/LC_MESSAGES/kabc_ldap.mo -share/locale/sr@Latn/LC_MESSAGES/kabc_ldapkio.mo -share/locale/sr@Latn/LC_MESSAGES/kabc_net.mo -share/locale/sr@Latn/LC_MESSAGES/kabc_slox.mo -share/locale/sr@Latn/LC_MESSAGES/kabc_sql.mo -share/locale/sr@Latn/LC_MESSAGES/kabcformat_binary.mo -share/locale/sr@Latn/LC_MESSAGES/kaboodle.mo -share/locale/sr@Latn/LC_MESSAGES/kaccess.mo -share/locale/sr@Latn/LC_MESSAGES/kaddressbook.mo -share/locale/sr@Latn/LC_MESSAGES/kalarm.mo -share/locale/sr@Latn/LC_MESSAGES/kalzium.mo -share/locale/sr@Latn/LC_MESSAGES/kandy.mo -share/locale/sr@Latn/LC_MESSAGES/kappfinder.mo -share/locale/sr@Latn/LC_MESSAGES/karm.mo -share/locale/sr@Latn/LC_MESSAGES/kasbarextension.mo -share/locale/sr@Latn/LC_MESSAGES/kasteroids.mo -share/locale/sr@Latn/LC_MESSAGES/kate.mo -share/locale/sr@Latn/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/sr@Latn/LC_MESSAGES/katedefaultproject.mo -share/locale/sr@Latn/LC_MESSAGES/katefiletemplates.mo -share/locale/sr@Latn/LC_MESSAGES/katefll_initplugin.mo -share/locale/sr@Latn/LC_MESSAGES/katefll_plugin.mo -share/locale/sr@Latn/LC_MESSAGES/katehelloworld.mo -share/locale/sr@Latn/LC_MESSAGES/katehtmltools.mo -share/locale/sr@Latn/LC_MESSAGES/kateinsertcommand.mo -share/locale/sr@Latn/LC_MESSAGES/katekjswrapper.mo -share/locale/sr@Latn/LC_MESSAGES/katekttsd.mo -share/locale/sr@Latn/LC_MESSAGES/katemake.mo -share/locale/sr@Latn/LC_MESSAGES/katemodeline.mo -share/locale/sr@Latn/LC_MESSAGES/kateopenheader.mo -share/locale/sr@Latn/LC_MESSAGES/katepart.mo -share/locale/sr@Latn/LC_MESSAGES/katepartkttsd.mo -share/locale/sr@Latn/LC_MESSAGES/kateprojectmanager.mo -share/locale/sr@Latn/LC_MESSAGES/katepybrowse.mo -share/locale/sr@Latn/LC_MESSAGES/katesnippets.mo -share/locale/sr@Latn/LC_MESSAGES/katespell.mo -share/locale/sr@Latn/LC_MESSAGES/katetabbarextension.mo -share/locale/sr@Latn/LC_MESSAGES/katetextfilter.mo -share/locale/sr@Latn/LC_MESSAGES/katexmlcheck.mo -share/locale/sr@Latn/LC_MESSAGES/katexmltools.mo -share/locale/sr@Latn/LC_MESSAGES/katomic.mo -share/locale/sr@Latn/LC_MESSAGES/kaudiocreator.mo -share/locale/sr@Latn/LC_MESSAGES/kbabel.mo -share/locale/sr@Latn/LC_MESSAGES/kbackgammon.mo -share/locale/sr@Latn/LC_MESSAGES/kbattleship.mo -share/locale/sr@Latn/LC_MESSAGES/kbinaryclock.mo -share/locale/sr@Latn/LC_MESSAGES/kblackbox.mo -share/locale/sr@Latn/LC_MESSAGES/kbounce.mo -share/locale/sr@Latn/LC_MESSAGES/kbruch.mo -share/locale/sr@Latn/LC_MESSAGES/kbstateapplet.mo -share/locale/sr@Latn/LC_MESSAGES/kbugbuster.mo -share/locale/sr@Latn/LC_MESSAGES/kcachegrind.mo -share/locale/sr@Latn/LC_MESSAGES/kcalc.mo -share/locale/sr@Latn/LC_MESSAGES/kcharselect.mo -share/locale/sr@Latn/LC_MESSAGES/kcharselectapplet.mo -share/locale/sr@Latn/LC_MESSAGES/kcm_krfb.mo -share/locale/sr@Latn/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/sr@Latn/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/sr@Latn/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/sr@Latn/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/sr@Latn/LC_MESSAGES/kcmaccess.mo -share/locale/sr@Latn/LC_MESSAGES/kcmaccessibility.mo -share/locale/sr@Latn/LC_MESSAGES/kcmarts.mo -share/locale/sr@Latn/LC_MESSAGES/kcmaudiocd.mo -share/locale/sr@Latn/LC_MESSAGES/kcmbackground.mo -share/locale/sr@Latn/LC_MESSAGES/kcmbell.mo -share/locale/sr@Latn/LC_MESSAGES/kcmcddb.mo -share/locale/sr@Latn/LC_MESSAGES/kcmcgi.mo -share/locale/sr@Latn/LC_MESSAGES/kcmcolors.mo -share/locale/sr@Latn/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/sr@Latn/LC_MESSAGES/kcmcrypto.mo -share/locale/sr@Latn/LC_MESSAGES/kcmcss.mo -share/locale/sr@Latn/LC_MESSAGES/kcmemail.mo -share/locale/sr@Latn/LC_MESSAGES/kcmenergy.mo -share/locale/sr@Latn/LC_MESSAGES/kcmfonts.mo -share/locale/sr@Latn/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/sr@Latn/LC_MESSAGES/kcmicons.mo -share/locale/sr@Latn/LC_MESSAGES/kcminfo.mo -share/locale/sr@Latn/LC_MESSAGES/kcminput.mo -share/locale/sr@Latn/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkabconfig.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkamera.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkclock.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkded.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkdnssd.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkeys.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkicker.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkio.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkmix.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkonq.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkonqhtml.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkonsole.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkontactnt.mo -share/locale/sr@Latn/LC_MESSAGES/kcmktalkd.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkttsd.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkuick.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkurifilt.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkvaio.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkwallet.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkwindecoration.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkwinrules.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkwintheme.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkwm.mo -share/locale/sr@Latn/LC_MESSAGES/kcmkxmlrpcd.mo -share/locale/sr@Latn/LC_MESSAGES/kcmlanbrowser.mo -share/locale/sr@Latn/LC_MESSAGES/kcmlaptop.mo -share/locale/sr@Latn/LC_MESSAGES/kcmlaunch.mo -share/locale/sr@Latn/LC_MESSAGES/kcmlayout.mo -share/locale/sr@Latn/LC_MESSAGES/kcmlilo.mo -share/locale/sr@Latn/LC_MESSAGES/kcmlirc.mo -share/locale/sr@Latn/LC_MESSAGES/kcmlocale.mo -share/locale/sr@Latn/LC_MESSAGES/kcmmediacontrol.mo -share/locale/sr@Latn/LC_MESSAGES/kcmmidi.mo -share/locale/sr@Latn/LC_MESSAGES/kcmnic.mo -share/locale/sr@Latn/LC_MESSAGES/kcmnotify.mo -share/locale/sr@Latn/LC_MESSAGES/kcmperformance.mo -share/locale/sr@Latn/LC_MESSAGES/kcmprintmgr.mo -share/locale/sr@Latn/LC_MESSAGES/kcmsamba.mo -share/locale/sr@Latn/LC_MESSAGES/kcmscreensaver.mo -share/locale/sr@Latn/LC_MESSAGES/kcmshell.mo -share/locale/sr@Latn/LC_MESSAGES/kcmsmartcard.mo -share/locale/sr@Latn/LC_MESSAGES/kcmsmserver.mo -share/locale/sr@Latn/LC_MESSAGES/kcmsocks.mo -share/locale/sr@Latn/LC_MESSAGES/kcmspellchecking.mo -share/locale/sr@Latn/LC_MESSAGES/kcmstyle.mo -share/locale/sr@Latn/LC_MESSAGES/kcmtaskbar.mo -share/locale/sr@Latn/LC_MESSAGES/kcmthinkpad.mo -share/locale/sr@Latn/LC_MESSAGES/kcmusb.mo -share/locale/sr@Latn/LC_MESSAGES/kcmview1394.mo -share/locale/sr@Latn/LC_MESSAGES/kcmvim.mo -share/locale/sr@Latn/LC_MESSAGES/kcmwifi.mo -share/locale/sr@Latn/LC_MESSAGES/kcmxinerama.mo -share/locale/sr@Latn/LC_MESSAGES/kcoloredit.mo -share/locale/sr@Latn/LC_MESSAGES/kcontrol.mo -share/locale/sr@Latn/LC_MESSAGES/kcron.mo -share/locale/sr@Latn/LC_MESSAGES/kdat.mo -share/locale/sr@Latn/LC_MESSAGES/kdcop.mo -share/locale/sr@Latn/LC_MESSAGES/kdebugdialog.mo -share/locale/sr@Latn/LC_MESSAGES/kdelibs.mo -share/locale/sr@Latn/LC_MESSAGES/kdelibs_colors.mo -share/locale/sr@Latn/LC_MESSAGES/kdelirc.mo -share/locale/sr@Latn/LC_MESSAGES/kdepasswd.mo -share/locale/sr@Latn/LC_MESSAGES/kdepimresources.mo -share/locale/sr@Latn/LC_MESSAGES/kdepimwizards.mo -share/locale/sr@Latn/LC_MESSAGES/kdeprint.mo -share/locale/sr@Latn/LC_MESSAGES/kdeprint_part.mo -share/locale/sr@Latn/LC_MESSAGES/kdeprintfax.mo -share/locale/sr@Latn/LC_MESSAGES/kdesktop.mo -share/locale/sr@Latn/LC_MESSAGES/kdessh.mo -share/locale/sr@Latn/LC_MESSAGES/kdesu.mo -share/locale/sr@Latn/LC_MESSAGES/kdesud.mo -share/locale/sr@Latn/LC_MESSAGES/kdevdesigner.mo -share/locale/sr@Latn/LC_MESSAGES/kdevelop.mo -share/locale/sr@Latn/LC_MESSAGES/kdevtipofday.mo -share/locale/sr@Latn/LC_MESSAGES/kdf.mo -share/locale/sr@Latn/LC_MESSAGES/kdgantt.mo -share/locale/sr@Latn/LC_MESSAGES/kdialog.mo -share/locale/sr@Latn/LC_MESSAGES/kdict.mo -share/locale/sr@Latn/LC_MESSAGES/kdictapplet.mo -share/locale/sr@Latn/LC_MESSAGES/kdmchooser.mo -share/locale/sr@Latn/LC_MESSAGES/kdmconfig.mo -share/locale/sr@Latn/LC_MESSAGES/kdmgreet.mo -share/locale/sr@Latn/LC_MESSAGES/kdvi.mo -share/locale/sr@Latn/LC_MESSAGES/kedit.mo -share/locale/sr@Latn/LC_MESSAGES/keduca.mo -share/locale/sr@Latn/LC_MESSAGES/kenolaba.mo -share/locale/sr@Latn/LC_MESSAGES/kfax.mo -share/locale/sr@Latn/LC_MESSAGES/kfifteenapplet.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_au.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_avi.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_bmp.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_cert.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_cpp.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_dds.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_deb.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_desktop.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_diff.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_drgeo.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_dvi.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_exr.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_flac.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_folder.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_font.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_gif.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_html.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_ico.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_ics.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_jpeg.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_kig.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_lnk.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_m3u.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_mhtml.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_mp3.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_mpc.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_ogg.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_palm.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_pcx.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_pdf.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_png.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_pnm.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_po.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_ps.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_rfc822.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_rgb.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_rpm.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_sid.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_tga.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_theora.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_tiff.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_torrent.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_ts.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_txt.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_vcf.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_wav.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_xbm.mo -share/locale/sr@Latn/LC_MESSAGES/kfile_xpm.mo -share/locale/sr@Latn/LC_MESSAGES/kfileaudiopreview.mo -share/locale/sr@Latn/LC_MESSAGES/kfilereplace.mo -share/locale/sr@Latn/LC_MESSAGES/kfileshare.mo -share/locale/sr@Latn/LC_MESSAGES/kfindpart.mo -share/locale/sr@Latn/LC_MESSAGES/kfloppy.mo -share/locale/sr@Latn/LC_MESSAGES/kfmclient.mo -share/locale/sr@Latn/LC_MESSAGES/kfontinst.mo -share/locale/sr@Latn/LC_MESSAGES/kfouleggs.mo -share/locale/sr@Latn/LC_MESSAGES/kgamma.mo -share/locale/sr@Latn/LC_MESSAGES/kgantt.mo -share/locale/sr@Latn/LC_MESSAGES/kget.mo -share/locale/sr@Latn/LC_MESSAGES/kghostview.mo -share/locale/sr@Latn/LC_MESSAGES/kgoldrunner.mo -share/locale/sr@Latn/LC_MESSAGES/kgpg.mo -share/locale/sr@Latn/LC_MESSAGES/kgreet_classic.mo -share/locale/sr@Latn/LC_MESSAGES/kgreet_winbind.mo -share/locale/sr@Latn/LC_MESSAGES/khangman.mo -share/locale/sr@Latn/LC_MESSAGES/khelpcenter.mo -share/locale/sr@Latn/LC_MESSAGES/khexedit.mo -share/locale/sr@Latn/LC_MESSAGES/khexedit2part.mo -share/locale/sr@Latn/LC_MESSAGES/khotkeys.mo -share/locale/sr@Latn/LC_MESSAGES/khtmlkttsd.mo -share/locale/sr@Latn/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/sr@Latn/LC_MESSAGES/kicker.mo -share/locale/sr@Latn/LC_MESSAGES/kiconedit.mo -share/locale/sr@Latn/LC_MESSAGES/kig.mo -share/locale/sr@Latn/LC_MESSAGES/kimagemapeditor.mo -share/locale/sr@Latn/LC_MESSAGES/kinetd.mo -share/locale/sr@Latn/LC_MESSAGES/kio.mo -share/locale/sr@Latn/LC_MESSAGES/kio_audiocd.mo -share/locale/sr@Latn/LC_MESSAGES/kio_devices.mo -share/locale/sr@Latn/LC_MESSAGES/kio_finger.mo -share/locale/sr@Latn/LC_MESSAGES/kio_fish.mo -share/locale/sr@Latn/LC_MESSAGES/kio_floppy.mo -share/locale/sr@Latn/LC_MESSAGES/kio_groupwise.mo -share/locale/sr@Latn/LC_MESSAGES/kio_help.mo -share/locale/sr@Latn/LC_MESSAGES/kio_imap4.mo -share/locale/sr@Latn/LC_MESSAGES/kio_lan.mo -share/locale/sr@Latn/LC_MESSAGES/kio_ldap.mo -share/locale/sr@Latn/LC_MESSAGES/kio_mac.mo -share/locale/sr@Latn/LC_MESSAGES/kio_man.mo -share/locale/sr@Latn/LC_MESSAGES/kio_media.mo -share/locale/sr@Latn/LC_MESSAGES/kio_mobile.mo -share/locale/sr@Latn/LC_MESSAGES/kio_newimap4.mo -share/locale/sr@Latn/LC_MESSAGES/kio_nfs.mo -share/locale/sr@Latn/LC_MESSAGES/kio_nntp.mo -share/locale/sr@Latn/LC_MESSAGES/kio_pop3.mo -share/locale/sr@Latn/LC_MESSAGES/kio_print.mo -share/locale/sr@Latn/LC_MESSAGES/kio_remote.mo -share/locale/sr@Latn/LC_MESSAGES/kio_settings.mo -share/locale/sr@Latn/LC_MESSAGES/kio_sftp.mo -share/locale/sr@Latn/LC_MESSAGES/kio_sieve.mo -share/locale/sr@Latn/LC_MESSAGES/kio_smb.mo -share/locale/sr@Latn/LC_MESSAGES/kio_smtp.mo -share/locale/sr@Latn/LC_MESSAGES/kio_svn.mo -share/locale/sr@Latn/LC_MESSAGES/kio_system.mo -share/locale/sr@Latn/LC_MESSAGES/kio_trash.mo -share/locale/sr@Latn/LC_MESSAGES/kio_zeroconf.mo -share/locale/sr@Latn/LC_MESSAGES/kioexec.mo -share/locale/sr@Latn/LC_MESSAGES/kiten.mo -share/locale/sr@Latn/LC_MESSAGES/kjobviewer.mo -share/locale/sr@Latn/LC_MESSAGES/kjots.mo -share/locale/sr@Latn/LC_MESSAGES/kjumpingcube.mo -share/locale/sr@Latn/LC_MESSAGES/klaptopdaemon.mo -share/locale/sr@Latn/LC_MESSAGES/klatin.mo -share/locale/sr@Latn/LC_MESSAGES/klegacyimport.mo -share/locale/sr@Latn/LC_MESSAGES/kleopatra.mo -share/locale/sr@Latn/LC_MESSAGES/klettres.mo -share/locale/sr@Latn/LC_MESSAGES/klickety.mo -share/locale/sr@Latn/LC_MESSAGES/klines.mo -share/locale/sr@Latn/LC_MESSAGES/klinkstatus.mo -share/locale/sr@Latn/LC_MESSAGES/klipper.mo -share/locale/sr@Latn/LC_MESSAGES/klock.mo -share/locale/sr@Latn/LC_MESSAGES/kmag.mo -share/locale/sr@Latn/LC_MESSAGES/kmahjongg.mo -share/locale/sr@Latn/LC_MESSAGES/kmail.mo -share/locale/sr@Latn/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/sr@Latn/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/sr@Latn/LC_MESSAGES/kmailcvt.mo -share/locale/sr@Latn/LC_MESSAGES/kmathapplet.mo -share/locale/sr@Latn/LC_MESSAGES/kmathtool.mo -share/locale/sr@Latn/LC_MESSAGES/kmcop.mo -share/locale/sr@Latn/LC_MESSAGES/kmenuapplet.mo -share/locale/sr@Latn/LC_MESSAGES/kmenuedit.mo -share/locale/sr@Latn/LC_MESSAGES/kmessedwords.mo -share/locale/sr@Latn/LC_MESSAGES/kmid.mo -share/locale/sr@Latn/LC_MESSAGES/kmilo_delli8k.mo -share/locale/sr@Latn/LC_MESSAGES/kmilo_generic.mo -share/locale/sr@Latn/LC_MESSAGES/kmilo_kvaio.mo -share/locale/sr@Latn/LC_MESSAGES/kmilo_powerbook.mo -share/locale/sr@Latn/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/sr@Latn/LC_MESSAGES/kmilod.mo -share/locale/sr@Latn/LC_MESSAGES/kmines.mo -share/locale/sr@Latn/LC_MESSAGES/kminipagerapplet.mo -share/locale/sr@Latn/LC_MESSAGES/kmix.mo -share/locale/sr@Latn/LC_MESSAGES/kmobile.mo -share/locale/sr@Latn/LC_MESSAGES/kmoon.mo -share/locale/sr@Latn/LC_MESSAGES/kmousetool.mo -share/locale/sr@Latn/LC_MESSAGES/kmouth.mo -share/locale/sr@Latn/LC_MESSAGES/kmplot.mo -share/locale/sr@Latn/LC_MESSAGES/kmrml.mo -share/locale/sr@Latn/LC_MESSAGES/knetattach.mo -share/locale/sr@Latn/LC_MESSAGES/knewsticker.mo -share/locale/sr@Latn/LC_MESSAGES/knode.mo -share/locale/sr@Latn/LC_MESSAGES/knotes.mo -share/locale/sr@Latn/LC_MESSAGES/knotify.mo -share/locale/sr@Latn/LC_MESSAGES/kodo.mo -share/locale/sr@Latn/LC_MESSAGES/kolf.mo -share/locale/sr@Latn/LC_MESSAGES/kolourpaint.mo -share/locale/sr@Latn/LC_MESSAGES/kolourpicker.mo -share/locale/sr@Latn/LC_MESSAGES/kommander.mo -share/locale/sr@Latn/LC_MESSAGES/kompare.mo -share/locale/sr@Latn/LC_MESSAGES/konnector_dummy.mo -share/locale/sr@Latn/LC_MESSAGES/konnector_kabc.mo -share/locale/sr@Latn/LC_MESSAGES/konnector_kcal.mo -share/locale/sr@Latn/LC_MESSAGES/konnector_local.mo -share/locale/sr@Latn/LC_MESSAGES/konnector_qtopia.mo -share/locale/sr@Latn/LC_MESSAGES/konnector_remote.mo -share/locale/sr@Latn/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/sr@Latn/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/sr@Latn/LC_MESSAGES/konqsidebar_news.mo -share/locale/sr@Latn/LC_MESSAGES/konqueror.mo -share/locale/sr@Latn/LC_MESSAGES/konquest.mo -share/locale/sr@Latn/LC_MESSAGES/konsole.mo -share/locale/sr@Latn/LC_MESSAGES/konsolekalendar.mo -share/locale/sr@Latn/LC_MESSAGES/kontact.mo -share/locale/sr@Latn/LC_MESSAGES/kooka.mo -share/locale/sr@Latn/LC_MESSAGES/kopete.mo -share/locale/sr@Latn/LC_MESSAGES/korganizer.mo -share/locale/sr@Latn/LC_MESSAGES/korn.mo -share/locale/sr@Latn/LC_MESSAGES/kpackage.mo -share/locale/sr@Latn/LC_MESSAGES/kpager.mo -share/locale/sr@Latn/LC_MESSAGES/kpartapp.mo -share/locale/sr@Latn/LC_MESSAGES/kpartsaver.mo -share/locale/sr@Latn/LC_MESSAGES/kpat.mo -share/locale/sr@Latn/LC_MESSAGES/kpdf.mo -share/locale/sr@Latn/LC_MESSAGES/kpercentage.mo -share/locale/sr@Latn/LC_MESSAGES/kpersonalizer.mo -share/locale/sr@Latn/LC_MESSAGES/kpf.mo -share/locale/sr@Latn/LC_MESSAGES/kpilot.mo -share/locale/sr@Latn/LC_MESSAGES/kpoker.mo -share/locale/sr@Latn/LC_MESSAGES/kpovmodeler.mo -share/locale/sr@Latn/LC_MESSAGES/kppp.mo -share/locale/sr@Latn/LC_MESSAGES/kppplogview.mo -share/locale/sr@Latn/LC_MESSAGES/kprinter.mo -share/locale/sr@Latn/LC_MESSAGES/krandr.mo -share/locale/sr@Latn/LC_MESSAGES/krdb.mo -share/locale/sr@Latn/LC_MESSAGES/krdc.mo -share/locale/sr@Latn/LC_MESSAGES/kreadconfig.mo -share/locale/sr@Latn/LC_MESSAGES/krec.mo -share/locale/sr@Latn/LC_MESSAGES/kregexpeditor.mo -share/locale/sr@Latn/LC_MESSAGES/kres_blogging.mo -share/locale/sr@Latn/LC_MESSAGES/kres_bugzilla.mo -share/locale/sr@Latn/LC_MESSAGES/kres_exchange.mo -share/locale/sr@Latn/LC_MESSAGES/kres_featureplan.mo -share/locale/sr@Latn/LC_MESSAGES/kres_groupwise.mo -share/locale/sr@Latn/LC_MESSAGES/kres_kolab.mo -share/locale/sr@Latn/LC_MESSAGES/kres_opengroupware.mo -share/locale/sr@Latn/LC_MESSAGES/kres_remote.mo -share/locale/sr@Latn/LC_MESSAGES/kres_xmlrpc.mo -share/locale/sr@Latn/LC_MESSAGES/kreversi.mo -share/locale/sr@Latn/LC_MESSAGES/krfb.mo -share/locale/sr@Latn/LC_MESSAGES/kruler.mo -share/locale/sr@Latn/LC_MESSAGES/krunapplet.mo -share/locale/sr@Latn/LC_MESSAGES/ksame.mo -share/locale/sr@Latn/LC_MESSAGES/ksayit.mo -share/locale/sr@Latn/LC_MESSAGES/kscd.mo -share/locale/sr@Latn/LC_MESSAGES/kscreensaver.mo -share/locale/sr@Latn/LC_MESSAGES/kshisen.mo -share/locale/sr@Latn/LC_MESSAGES/ksig.mo -share/locale/sr@Latn/LC_MESSAGES/ksim.mo -share/locale/sr@Latn/LC_MESSAGES/ksirc.mo -share/locale/sr@Latn/LC_MESSAGES/ksirtet.mo -share/locale/sr@Latn/LC_MESSAGES/ksmiletris.mo -share/locale/sr@Latn/LC_MESSAGES/ksmserver.mo -share/locale/sr@Latn/LC_MESSAGES/ksnake.mo -share/locale/sr@Latn/LC_MESSAGES/ksnapshot.mo -share/locale/sr@Latn/LC_MESSAGES/ksokoban.mo -share/locale/sr@Latn/LC_MESSAGES/kspaceduel.mo -share/locale/sr@Latn/LC_MESSAGES/ksplash.mo -share/locale/sr@Latn/LC_MESSAGES/ksplashthemes.mo -share/locale/sr@Latn/LC_MESSAGES/kstars.mo -share/locale/sr@Latn/LC_MESSAGES/kstart.mo -share/locale/sr@Latn/LC_MESSAGES/kstartperf.mo -share/locale/sr@Latn/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/sr@Latn/LC_MESSAGES/kstyle_phase_config.mo -share/locale/sr@Latn/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/sr@Latn/LC_MESSAGES/ksvgplugin.mo -share/locale/sr@Latn/LC_MESSAGES/ksync.mo -share/locale/sr@Latn/LC_MESSAGES/ksysguard.mo -share/locale/sr@Latn/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/sr@Latn/LC_MESSAGES/ksystraycmd.mo -share/locale/sr@Latn/LC_MESSAGES/ksysv.mo -share/locale/sr@Latn/LC_MESSAGES/ktalkd.mo -share/locale/sr@Latn/LC_MESSAGES/ktaskbarapplet.mo -share/locale/sr@Latn/LC_MESSAGES/kteatime.mo -share/locale/sr@Latn/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/sr@Latn/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/sr@Latn/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/sr@Latn/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/sr@Latn/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/sr@Latn/LC_MESSAGES/ktexteditor_kttsd.mo -share/locale/sr@Latn/LC_MESSAGES/kthememanager.mo -share/locale/sr@Latn/LC_MESSAGES/ktimemon.mo -share/locale/sr@Latn/LC_MESSAGES/ktimer.mo -share/locale/sr@Latn/LC_MESSAGES/ktip.mo -share/locale/sr@Latn/LC_MESSAGES/ktnef.mo -share/locale/sr@Latn/LC_MESSAGES/ktouch.mo -share/locale/sr@Latn/LC_MESSAGES/ktron.mo -share/locale/sr@Latn/LC_MESSAGES/kttsd.mo -share/locale/sr@Latn/LC_MESSAGES/kttsd_commandplugin.mo -share/locale/sr@Latn/LC_MESSAGES/kttsd_eposplugin.mo -share/locale/sr@Latn/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/sr@Latn/LC_MESSAGES/kttsd_fliteplugin.mo -share/locale/sr@Latn/LC_MESSAGES/kttsd_freettsplugin.mo -share/locale/sr@Latn/LC_MESSAGES/kttsd_hadifixplugin.mo -share/locale/sr@Latn/LC_MESSAGES/kttsd_sbdplugin.mo -share/locale/sr@Latn/LC_MESSAGES/kttsd_stringreplacerplugin.mo -share/locale/sr@Latn/LC_MESSAGES/kttsd_talkerchooserplugin.mo -share/locale/sr@Latn/LC_MESSAGES/kttsd_xmltransformerplugin.mo -share/locale/sr@Latn/LC_MESSAGES/kttsjobmgr.mo -share/locale/sr@Latn/LC_MESSAGES/kttsmgr.mo -share/locale/sr@Latn/LC_MESSAGES/ktuberling.mo -share/locale/sr@Latn/LC_MESSAGES/kturtle.mo -share/locale/sr@Latn/LC_MESSAGES/ktux.mo -share/locale/sr@Latn/LC_MESSAGES/kuick_plugin.mo -share/locale/sr@Latn/LC_MESSAGES/kuickshow.mo -share/locale/sr@Latn/LC_MESSAGES/kuiviewer.mo -share/locale/sr@Latn/LC_MESSAGES/kuser.mo -share/locale/sr@Latn/LC_MESSAGES/kverbos.mo -share/locale/sr@Latn/LC_MESSAGES/kview.mo -share/locale/sr@Latn/LC_MESSAGES/kview_scale.mo -share/locale/sr@Latn/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/sr@Latn/LC_MESSAGES/kviewcanvas.mo -share/locale/sr@Latn/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/sr@Latn/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/sr@Latn/LC_MESSAGES/kviewscannerplugin.mo -share/locale/sr@Latn/LC_MESSAGES/kviewshell.mo -share/locale/sr@Latn/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/sr@Latn/LC_MESSAGES/kviewviewer.mo -share/locale/sr@Latn/LC_MESSAGES/kvoctrain.mo -share/locale/sr@Latn/LC_MESSAGES/kwalletmanager.mo -share/locale/sr@Latn/LC_MESSAGES/kwatchgnupg.mo -share/locale/sr@Latn/LC_MESSAGES/kweather.mo -share/locale/sr@Latn/LC_MESSAGES/kwifimanager.mo -share/locale/sr@Latn/LC_MESSAGES/kwin.mo -share/locale/sr@Latn/LC_MESSAGES/kwin4.mo -share/locale/sr@Latn/LC_MESSAGES/kwin_art_clients.mo -share/locale/sr@Latn/LC_MESSAGES/kwin_clients.mo -share/locale/sr@Latn/LC_MESSAGES/kwireless.mo -share/locale/sr@Latn/LC_MESSAGES/kwordquiz.mo -share/locale/sr@Latn/LC_MESSAGES/kworldclock.mo -share/locale/sr@Latn/LC_MESSAGES/kwriteconfig.mo -share/locale/sr@Latn/LC_MESSAGES/kxkb.mo -share/locale/sr@Latn/LC_MESSAGES/kxmlrpcd.mo -share/locale/sr@Latn/LC_MESSAGES/kxsconfig.mo -share/locale/sr@Latn/LC_MESSAGES/kxsldbg.mo -share/locale/sr@Latn/LC_MESSAGES/libKTTSD.mo -share/locale/sr@Latn/LC_MESSAGES/libcalendarresources.mo -share/locale/sr@Latn/LC_MESSAGES/libdmctl.mo -share/locale/sr@Latn/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/sr@Latn/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/sr@Latn/LC_MESSAGES/libkcal.mo -share/locale/sr@Latn/LC_MESSAGES/libkcalsystem.mo -share/locale/sr@Latn/LC_MESSAGES/libkcddb.mo -share/locale/sr@Latn/LC_MESSAGES/libkdegames.mo -share/locale/sr@Latn/LC_MESSAGES/libkdehighscores.mo -share/locale/sr@Latn/LC_MESSAGES/libkdenetwork.mo -share/locale/sr@Latn/LC_MESSAGES/libkdepim.mo -share/locale/sr@Latn/LC_MESSAGES/libkholidays.mo -share/locale/sr@Latn/LC_MESSAGES/libkicker.mo -share/locale/sr@Latn/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/sr@Latn/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/sr@Latn/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/sr@Latn/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/sr@Latn/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/sr@Latn/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/sr@Latn/LC_MESSAGES/libkickermenu_tom.mo -share/locale/sr@Latn/LC_MESSAGES/libkleopatra.mo -share/locale/sr@Latn/LC_MESSAGES/libkmime.mo -share/locale/sr@Latn/LC_MESSAGES/libkonq.mo -share/locale/sr@Latn/LC_MESSAGES/libkpgp.mo -share/locale/sr@Latn/LC_MESSAGES/libkpimexchange.mo -share/locale/sr@Latn/LC_MESSAGES/libkscan.mo -share/locale/sr@Latn/LC_MESSAGES/libkscreensaver.mo -share/locale/sr@Latn/LC_MESSAGES/libksieve.mo -share/locale/sr@Latn/LC_MESSAGES/libksirtet.mo -share/locale/sr@Latn/LC_MESSAGES/libksync.mo -share/locale/sr@Latn/LC_MESSAGES/libtaskbar.mo -share/locale/sr@Latn/LC_MESSAGES/libtaskmanager.mo -share/locale/sr@Latn/LC_MESSAGES/lockout.mo -share/locale/sr@Latn/LC_MESSAGES/lskat.mo -share/locale/sr@Latn/LC_MESSAGES/lyrics.mo -share/locale/sr@Latn/LC_MESSAGES/mediaapplet.mo -share/locale/sr@Latn/LC_MESSAGES/mediacontrol.mo -share/locale/sr@Latn/LC_MESSAGES/minitoolsplugin.mo -share/locale/sr@Latn/LC_MESSAGES/multisynk.mo -share/locale/sr@Latn/LC_MESSAGES/naughtyapplet.mo -share/locale/sr@Latn/LC_MESSAGES/nexscope.mo -share/locale/sr@Latn/LC_MESSAGES/noatun.mo -share/locale/sr@Latn/LC_MESSAGES/nsplugin.mo -share/locale/sr@Latn/LC_MESSAGES/passwords.mo -share/locale/sr@Latn/LC_MESSAGES/pitchablespeed.mo -share/locale/sr@Latn/LC_MESSAGES/ppdtranslations.mo -share/locale/sr@Latn/LC_MESSAGES/privacy.mo -share/locale/sr@Latn/LC_MESSAGES/qeditor.mo -share/locale/sr@Latn/LC_MESSAGES/quanta.mo -share/locale/sr@Latn/LC_MESSAGES/quicklauncher.mo -share/locale/sr@Latn/LC_MESSAGES/rellinks.mo -share/locale/sr@Latn/LC_MESSAGES/searchbarplugin.mo -share/locale/sr@Latn/LC_MESSAGES/secpolicy.mo -share/locale/sr@Latn/LC_MESSAGES/spy.mo -share/locale/sr@Latn/LC_MESSAGES/synaescope.mo -share/locale/sr@Latn/LC_MESSAGES/taskbarextension.mo -share/locale/sr@Latn/LC_MESSAGES/timezones.mo -share/locale/sr@Latn/LC_MESSAGES/tippecanoe.mo -share/locale/sr@Latn/LC_MESSAGES/trashapplet.mo -share/locale/sr@Latn/LC_MESSAGES/tyler.mo -share/locale/sr@Latn/LC_MESSAGES/uachangerplugin.mo -share/locale/sr@Latn/LC_MESSAGES/umbrello.mo -share/locale/sr@Latn/LC_MESSAGES/useraccount.mo -share/locale/sr@Latn/LC_MESSAGES/validatorsplugin.mo -share/locale/sr@Latn/LC_MESSAGES/vimpart.mo -share/locale/sr@Latn/LC_MESSAGES/wakeup.mo -share/locale/sr@Latn/LC_MESSAGES/wavecapture.mo -share/locale/sr@Latn/LC_MESSAGES/webarchiver.mo -share/locale/sr@Latn/charset -share/locale/sr@Latn/entry.desktop -share/locale/sr@Latn/flag.png -@dirrm share/apps/kturtle/examples/sr@Latn -@dirrm share/apps/kturtle/examples -@dirrm share/apps/kturtle/data -@dirrm share/apps/kturtle -@dirrm share/apps/khangman/data/sr@Latn -@dirrm share/apps/khangman/data -@dirrm share/apps/khangman diff --git a/misc/kde4-i18n-is/Makefile b/misc/kde4-i18n-is/Makefile deleted file mode 100644 index b9ca8ecb6eb3..000000000000 --- a/misc/kde4-i18n-is/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-is -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= is- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Icelandic messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-i18n-is/distinfo b/misc/kde4-i18n-is/distinfo deleted file mode 100644 index 9afebe07f132..000000000000 --- a/misc/kde4-i18n-is/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-is-3.4.2.tar.bz2) = df6ddbd88f8494ee29a7d10b38acfac8 -SIZE (KDE/kde-i18n/kde-i18n-is-3.4.2.tar.bz2) = 1941184 diff --git a/misc/kde4-i18n-is/pkg-descr b/misc/kde4-i18n-is/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-i18n-is/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-i18n-is/pkg-plist b/misc/kde4-i18n-is/pkg-plist deleted file mode 100644 index 557187dd5e86..000000000000 --- a/misc/kde4-i18n-is/pkg-plist +++ /dev/null @@ -1,592 +0,0 @@ -share/locale/is/LC_MESSAGES/akregator.mo -share/locale/is/LC_MESSAGES/akregator_konqplugin.mo -share/locale/is/LC_MESSAGES/alsaplayerui.mo -share/locale/is/LC_MESSAGES/amor.mo -share/locale/is/LC_MESSAGES/appletproxy.mo -share/locale/is/LC_MESSAGES/ark.mo -share/locale/is/LC_MESSAGES/ark_plugin.mo -share/locale/is/LC_MESSAGES/artsbuilder.mo -share/locale/is/LC_MESSAGES/artscontrol.mo -share/locale/is/LC_MESSAGES/artsmodules.mo -share/locale/is/LC_MESSAGES/atlantik.mo -share/locale/is/LC_MESSAGES/atlantikdesigner.mo -share/locale/is/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/is/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/is/LC_MESSAGES/audiorename_plugin.mo -share/locale/is/LC_MESSAGES/autorefresh.mo -share/locale/is/LC_MESSAGES/babelfish.mo -share/locale/is/LC_MESSAGES/cervisia.mo -share/locale/is/LC_MESSAGES/charlatanui.mo -share/locale/is/LC_MESSAGES/childpanelextension.mo -share/locale/is/LC_MESSAGES/clockapplet.mo -share/locale/is/LC_MESSAGES/crashesplugin.mo -share/locale/is/LC_MESSAGES/cupsdconf.mo -share/locale/is/LC_MESSAGES/cvsservice.mo -share/locale/is/LC_MESSAGES/dcoprss.mo -share/locale/is/LC_MESSAGES/devicesapplet.mo -share/locale/is/LC_MESSAGES/dirfilterplugin.mo -share/locale/is/LC_MESSAGES/display.mo -share/locale/is/LC_MESSAGES/dockbarextension.mo -share/locale/is/LC_MESSAGES/domtreeviewer.mo -share/locale/is/LC_MESSAGES/drkonqi.mo -share/locale/is/LC_MESSAGES/dub.mo -share/locale/is/LC_MESSAGES/extensionproxy.mo -share/locale/is/LC_MESSAGES/ffrs.mo -share/locale/is/LC_MESSAGES/filetypes.mo -share/locale/is/LC_MESSAGES/fontinst.mo -share/locale/is/LC_MESSAGES/fsview.mo -share/locale/is/LC_MESSAGES/htmlsearch.mo -share/locale/is/LC_MESSAGES/imagerename_plugin.mo -share/locale/is/LC_MESSAGES/imgalleryplugin.mo -share/locale/is/LC_MESSAGES/irkick.mo -share/locale/is/LC_MESSAGES/jefferson.mo -share/locale/is/LC_MESSAGES/joystick.mo -share/locale/is/LC_MESSAGES/juk.mo -share/locale/is/LC_MESSAGES/kabc2mutt.mo -share/locale/is/LC_MESSAGES/kabc_dir.mo -share/locale/is/LC_MESSAGES/kabc_file.mo -share/locale/is/LC_MESSAGES/kabc_ldap.mo -share/locale/is/LC_MESSAGES/kabc_ldapkio.mo -share/locale/is/LC_MESSAGES/kabc_net.mo -share/locale/is/LC_MESSAGES/kabc_slox.mo -share/locale/is/LC_MESSAGES/kabc_sql.mo -share/locale/is/LC_MESSAGES/kabcformat_binary.mo -share/locale/is/LC_MESSAGES/kaboodle.mo -share/locale/is/LC_MESSAGES/kaccess.mo -share/locale/is/LC_MESSAGES/kaddressbook.mo -share/locale/is/LC_MESSAGES/kalarm.mo -share/locale/is/LC_MESSAGES/kalzium.mo -share/locale/is/LC_MESSAGES/kandy.mo -share/locale/is/LC_MESSAGES/kappfinder.mo -share/locale/is/LC_MESSAGES/karm.mo -share/locale/is/LC_MESSAGES/kasbarextension.mo -share/locale/is/LC_MESSAGES/kasteroids.mo -share/locale/is/LC_MESSAGES/kate.mo -share/locale/is/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/is/LC_MESSAGES/katedefaultproject.mo -share/locale/is/LC_MESSAGES/katefiletemplates.mo -share/locale/is/LC_MESSAGES/katefll_initplugin.mo -share/locale/is/LC_MESSAGES/katefll_plugin.mo -share/locale/is/LC_MESSAGES/katehelloworld.mo -share/locale/is/LC_MESSAGES/katehtmltools.mo -share/locale/is/LC_MESSAGES/kateinsertcommand.mo -share/locale/is/LC_MESSAGES/katekjswrapper.mo -share/locale/is/LC_MESSAGES/katekttsd.mo -share/locale/is/LC_MESSAGES/katemake.mo -share/locale/is/LC_MESSAGES/katemodeline.mo -share/locale/is/LC_MESSAGES/kateopenheader.mo -share/locale/is/LC_MESSAGES/katepart.mo -share/locale/is/LC_MESSAGES/katepartkttsd.mo -share/locale/is/LC_MESSAGES/kateprojectmanager.mo -share/locale/is/LC_MESSAGES/katepybrowse.mo -share/locale/is/LC_MESSAGES/katesnippets.mo -share/locale/is/LC_MESSAGES/katespell.mo -share/locale/is/LC_MESSAGES/katetabbarextension.mo -share/locale/is/LC_MESSAGES/katetextfilter.mo -share/locale/is/LC_MESSAGES/katexmlcheck.mo -share/locale/is/LC_MESSAGES/katexmltools.mo -share/locale/is/LC_MESSAGES/katomic.mo -share/locale/is/LC_MESSAGES/kaudiocreator.mo -share/locale/is/LC_MESSAGES/kbabel.mo -share/locale/is/LC_MESSAGES/kbackgammon.mo -share/locale/is/LC_MESSAGES/kbattleship.mo -share/locale/is/LC_MESSAGES/kbinaryclock.mo -share/locale/is/LC_MESSAGES/kblackbox.mo -share/locale/is/LC_MESSAGES/kbounce.mo -share/locale/is/LC_MESSAGES/kbruch.mo -share/locale/is/LC_MESSAGES/kbstateapplet.mo -share/locale/is/LC_MESSAGES/kbugbuster.mo -share/locale/is/LC_MESSAGES/kcachegrind.mo -share/locale/is/LC_MESSAGES/kcalc.mo -share/locale/is/LC_MESSAGES/kcharselect.mo -share/locale/is/LC_MESSAGES/kcharselectapplet.mo -share/locale/is/LC_MESSAGES/kcm_krfb.mo -share/locale/is/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/is/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/is/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/is/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/is/LC_MESSAGES/kcmaccess.mo -share/locale/is/LC_MESSAGES/kcmaccessibility.mo -share/locale/is/LC_MESSAGES/kcmarts.mo -share/locale/is/LC_MESSAGES/kcmaudiocd.mo -share/locale/is/LC_MESSAGES/kcmbackground.mo -share/locale/is/LC_MESSAGES/kcmbell.mo -share/locale/is/LC_MESSAGES/kcmcddb.mo -share/locale/is/LC_MESSAGES/kcmcgi.mo -share/locale/is/LC_MESSAGES/kcmcolors.mo -share/locale/is/LC_MESSAGES/kcmcomponentchooser.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/kcmkabconfig.mo -share/locale/is/LC_MESSAGES/kcmkamera.mo -share/locale/is/LC_MESSAGES/kcmkclock.mo -share/locale/is/LC_MESSAGES/kcmkded.mo -share/locale/is/LC_MESSAGES/kcmkdnssd.mo -share/locale/is/LC_MESSAGES/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/kcmkontactnt.mo -share/locale/is/LC_MESSAGES/kcmktalkd.mo -share/locale/is/LC_MESSAGES/kcmkttsd.mo -share/locale/is/LC_MESSAGES/kcmkuick.mo -share/locale/is/LC_MESSAGES/kcmkurifilt.mo -share/locale/is/LC_MESSAGES/kcmkvaio.mo -share/locale/is/LC_MESSAGES/kcmkwallet.mo -share/locale/is/LC_MESSAGES/kcmkwindecoration.mo -share/locale/is/LC_MESSAGES/kcmkwinrules.mo -share/locale/is/LC_MESSAGES/kcmkwintheme.mo -share/locale/is/LC_MESSAGES/kcmkwm.mo -share/locale/is/LC_MESSAGES/kcmkxmlrpcd.mo -share/locale/is/LC_MESSAGES/kcmlanbrowser.mo -share/locale/is/LC_MESSAGES/kcmlaptop.mo -share/locale/is/LC_MESSAGES/kcmlaunch.mo -share/locale/is/LC_MESSAGES/kcmlayout.mo -share/locale/is/LC_MESSAGES/kcmlilo.mo -share/locale/is/LC_MESSAGES/kcmlirc.mo -share/locale/is/LC_MESSAGES/kcmlocale.mo -share/locale/is/LC_MESSAGES/kcmmediacontrol.mo -share/locale/is/LC_MESSAGES/kcmmidi.mo -share/locale/is/LC_MESSAGES/kcmnic.mo -share/locale/is/LC_MESSAGES/kcmnotify.mo -share/locale/is/LC_MESSAGES/kcmperformance.mo -share/locale/is/LC_MESSAGES/kcmprintmgr.mo -share/locale/is/LC_MESSAGES/kcmsamba.mo -share/locale/is/LC_MESSAGES/kcmscreensaver.mo -share/locale/is/LC_MESSAGES/kcmshell.mo -share/locale/is/LC_MESSAGES/kcmsmartcard.mo -share/locale/is/LC_MESSAGES/kcmsmserver.mo -share/locale/is/LC_MESSAGES/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/kcmthinkpad.mo -share/locale/is/LC_MESSAGES/kcmusb.mo -share/locale/is/LC_MESSAGES/kcmview1394.mo -share/locale/is/LC_MESSAGES/kcmvim.mo -share/locale/is/LC_MESSAGES/kcmwifi.mo -share/locale/is/LC_MESSAGES/kcmxinerama.mo -share/locale/is/LC_MESSAGES/kcoloredit.mo -share/locale/is/LC_MESSAGES/kcontrol.mo -share/locale/is/LC_MESSAGES/kcron.mo -share/locale/is/LC_MESSAGES/kdat.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/kdelibs_colors.mo -share/locale/is/LC_MESSAGES/kdelirc.mo -share/locale/is/LC_MESSAGES/kdepasswd.mo -share/locale/is/LC_MESSAGES/kdepimresources.mo -share/locale/is/LC_MESSAGES/kdepimwizards.mo -share/locale/is/LC_MESSAGES/kdeprint.mo -share/locale/is/LC_MESSAGES/kdeprint_part.mo -share/locale/is/LC_MESSAGES/kdeprintfax.mo -share/locale/is/LC_MESSAGES/kdesktop.mo -share/locale/is/LC_MESSAGES/kdessh.mo -share/locale/is/LC_MESSAGES/kdesu.mo -share/locale/is/LC_MESSAGES/kdesud.mo -share/locale/is/LC_MESSAGES/kdevdesigner.mo -share/locale/is/LC_MESSAGES/kdevelop.mo -share/locale/is/LC_MESSAGES/kdevtipofday.mo -share/locale/is/LC_MESSAGES/kdf.mo -share/locale/is/LC_MESSAGES/kdgantt.mo -share/locale/is/LC_MESSAGES/kdialog.mo -share/locale/is/LC_MESSAGES/kdict.mo -share/locale/is/LC_MESSAGES/kdictapplet.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/keduca.mo -share/locale/is/LC_MESSAGES/kenolaba.mo -share/locale/is/LC_MESSAGES/kfax.mo -share/locale/is/LC_MESSAGES/kfifteenapplet.mo -share/locale/is/LC_MESSAGES/kfile_au.mo -share/locale/is/LC_MESSAGES/kfile_avi.mo -share/locale/is/LC_MESSAGES/kfile_bmp.mo -share/locale/is/LC_MESSAGES/kfile_cert.mo -share/locale/is/LC_MESSAGES/kfile_cpp.mo -share/locale/is/LC_MESSAGES/kfile_dds.mo -share/locale/is/LC_MESSAGES/kfile_deb.mo -share/locale/is/LC_MESSAGES/kfile_desktop.mo -share/locale/is/LC_MESSAGES/kfile_diff.mo -share/locale/is/LC_MESSAGES/kfile_drgeo.mo -share/locale/is/LC_MESSAGES/kfile_dvi.mo -share/locale/is/LC_MESSAGES/kfile_exr.mo -share/locale/is/LC_MESSAGES/kfile_flac.mo -share/locale/is/LC_MESSAGES/kfile_folder.mo -share/locale/is/LC_MESSAGES/kfile_font.mo -share/locale/is/LC_MESSAGES/kfile_gif.mo -share/locale/is/LC_MESSAGES/kfile_html.mo -share/locale/is/LC_MESSAGES/kfile_ico.mo -share/locale/is/LC_MESSAGES/kfile_ics.mo -share/locale/is/LC_MESSAGES/kfile_jpeg.mo -share/locale/is/LC_MESSAGES/kfile_kig.mo -share/locale/is/LC_MESSAGES/kfile_lnk.mo -share/locale/is/LC_MESSAGES/kfile_m3u.mo -share/locale/is/LC_MESSAGES/kfile_mhtml.mo -share/locale/is/LC_MESSAGES/kfile_mp3.mo -share/locale/is/LC_MESSAGES/kfile_mpc.mo -share/locale/is/LC_MESSAGES/kfile_ogg.mo -share/locale/is/LC_MESSAGES/kfile_palm.mo -share/locale/is/LC_MESSAGES/kfile_pcx.mo -share/locale/is/LC_MESSAGES/kfile_pdf.mo -share/locale/is/LC_MESSAGES/kfile_png.mo -share/locale/is/LC_MESSAGES/kfile_pnm.mo -share/locale/is/LC_MESSAGES/kfile_po.mo -share/locale/is/LC_MESSAGES/kfile_ps.mo -share/locale/is/LC_MESSAGES/kfile_rfc822.mo -share/locale/is/LC_MESSAGES/kfile_rgb.mo -share/locale/is/LC_MESSAGES/kfile_rpm.mo -share/locale/is/LC_MESSAGES/kfile_sid.mo -share/locale/is/LC_MESSAGES/kfile_tga.mo -share/locale/is/LC_MESSAGES/kfile_theora.mo -share/locale/is/LC_MESSAGES/kfile_tiff.mo -share/locale/is/LC_MESSAGES/kfile_torrent.mo -share/locale/is/LC_MESSAGES/kfile_ts.mo -share/locale/is/LC_MESSAGES/kfile_txt.mo -share/locale/is/LC_MESSAGES/kfile_vcf.mo -share/locale/is/LC_MESSAGES/kfile_wav.mo -share/locale/is/LC_MESSAGES/kfile_xbm.mo -share/locale/is/LC_MESSAGES/kfile_xpm.mo -share/locale/is/LC_MESSAGES/kfileaudiopreview.mo -share/locale/is/LC_MESSAGES/kfilereplace.mo -share/locale/is/LC_MESSAGES/kfileshare.mo -share/locale/is/LC_MESSAGES/kfindpart.mo -share/locale/is/LC_MESSAGES/kfloppy.mo -share/locale/is/LC_MESSAGES/kfmclient.mo -share/locale/is/LC_MESSAGES/kfontinst.mo -share/locale/is/LC_MESSAGES/kfouleggs.mo -share/locale/is/LC_MESSAGES/kgamma.mo -share/locale/is/LC_MESSAGES/kgantt.mo -share/locale/is/LC_MESSAGES/kget.mo -share/locale/is/LC_MESSAGES/kghostview.mo -share/locale/is/LC_MESSAGES/kgoldrunner.mo -share/locale/is/LC_MESSAGES/kgpg.mo -share/locale/is/LC_MESSAGES/kgreet_classic.mo -share/locale/is/LC_MESSAGES/kgreet_winbind.mo -share/locale/is/LC_MESSAGES/khangman.mo -share/locale/is/LC_MESSAGES/khelpcenter.mo -share/locale/is/LC_MESSAGES/khexedit.mo -share/locale/is/LC_MESSAGES/khexedit2part.mo -share/locale/is/LC_MESSAGES/khotkeys.mo -share/locale/is/LC_MESSAGES/khtmlkttsd.mo -share/locale/is/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/is/LC_MESSAGES/kicker.mo -share/locale/is/LC_MESSAGES/kiconedit.mo -share/locale/is/LC_MESSAGES/kig.mo -share/locale/is/LC_MESSAGES/kimagemapeditor.mo -share/locale/is/LC_MESSAGES/kinetd.mo -share/locale/is/LC_MESSAGES/kio.mo -share/locale/is/LC_MESSAGES/kio_audiocd.mo -share/locale/is/LC_MESSAGES/kio_devices.mo -share/locale/is/LC_MESSAGES/kio_finger.mo -share/locale/is/LC_MESSAGES/kio_fish.mo -share/locale/is/LC_MESSAGES/kio_floppy.mo -share/locale/is/LC_MESSAGES/kio_groupwise.mo -share/locale/is/LC_MESSAGES/kio_help.mo -share/locale/is/LC_MESSAGES/kio_imap4.mo -share/locale/is/LC_MESSAGES/kio_lan.mo -share/locale/is/LC_MESSAGES/kio_ldap.mo -share/locale/is/LC_MESSAGES/kio_mac.mo -share/locale/is/LC_MESSAGES/kio_man.mo -share/locale/is/LC_MESSAGES/kio_media.mo -share/locale/is/LC_MESSAGES/kio_mobile.mo -share/locale/is/LC_MESSAGES/kio_newimap4.mo -share/locale/is/LC_MESSAGES/kio_nfs.mo -share/locale/is/LC_MESSAGES/kio_nntp.mo -share/locale/is/LC_MESSAGES/kio_pop3.mo -share/locale/is/LC_MESSAGES/kio_print.mo -share/locale/is/LC_MESSAGES/kio_remote.mo -share/locale/is/LC_MESSAGES/kio_settings.mo -share/locale/is/LC_MESSAGES/kio_sftp.mo -share/locale/is/LC_MESSAGES/kio_sieve.mo -share/locale/is/LC_MESSAGES/kio_smb.mo -share/locale/is/LC_MESSAGES/kio_smtp.mo -share/locale/is/LC_MESSAGES/kio_svn.mo -share/locale/is/LC_MESSAGES/kio_system.mo -share/locale/is/LC_MESSAGES/kio_trash.mo -share/locale/is/LC_MESSAGES/kio_zeroconf.mo -share/locale/is/LC_MESSAGES/kioexec.mo -share/locale/is/LC_MESSAGES/kiten.mo -share/locale/is/LC_MESSAGES/kjobviewer.mo -share/locale/is/LC_MESSAGES/kjots.mo -share/locale/is/LC_MESSAGES/kjumpingcube.mo -share/locale/is/LC_MESSAGES/klaptopdaemon.mo -share/locale/is/LC_MESSAGES/klatin.mo -share/locale/is/LC_MESSAGES/klegacyimport.mo -share/locale/is/LC_MESSAGES/kleopatra.mo -share/locale/is/LC_MESSAGES/klettres.mo -share/locale/is/LC_MESSAGES/klickety.mo -share/locale/is/LC_MESSAGES/klines.mo -share/locale/is/LC_MESSAGES/klinkstatus.mo -share/locale/is/LC_MESSAGES/klipper.mo -share/locale/is/LC_MESSAGES/klock.mo -share/locale/is/LC_MESSAGES/kmag.mo -share/locale/is/LC_MESSAGES/kmahjongg.mo -share/locale/is/LC_MESSAGES/kmail.mo -share/locale/is/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/is/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/is/LC_MESSAGES/kmailcvt.mo -share/locale/is/LC_MESSAGES/kmathapplet.mo -share/locale/is/LC_MESSAGES/kmathtool.mo -share/locale/is/LC_MESSAGES/kmcop.mo -share/locale/is/LC_MESSAGES/kmenuapplet.mo -share/locale/is/LC_MESSAGES/kmenuedit.mo -share/locale/is/LC_MESSAGES/kmessedwords.mo -share/locale/is/LC_MESSAGES/kmid.mo -share/locale/is/LC_MESSAGES/kmilo_delli8k.mo -share/locale/is/LC_MESSAGES/kmilo_generic.mo -share/locale/is/LC_MESSAGES/kmilo_kvaio.mo -share/locale/is/LC_MESSAGES/kmilo_powerbook.mo -share/locale/is/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/is/LC_MESSAGES/kmilod.mo -share/locale/is/LC_MESSAGES/kmines.mo -share/locale/is/LC_MESSAGES/kminipagerapplet.mo -share/locale/is/LC_MESSAGES/kmix.mo -share/locale/is/LC_MESSAGES/kmobile.mo -share/locale/is/LC_MESSAGES/kmoon.mo -share/locale/is/LC_MESSAGES/kmousetool.mo -share/locale/is/LC_MESSAGES/kmouth.mo -share/locale/is/LC_MESSAGES/kmplot.mo -share/locale/is/LC_MESSAGES/kmrml.mo -share/locale/is/LC_MESSAGES/knetattach.mo -share/locale/is/LC_MESSAGES/knewsticker.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/kolf.mo -share/locale/is/LC_MESSAGES/kolourpaint.mo -share/locale/is/LC_MESSAGES/kolourpicker.mo -share/locale/is/LC_MESSAGES/kommander.mo -share/locale/is/LC_MESSAGES/kompare.mo -share/locale/is/LC_MESSAGES/konnector_dummy.mo -share/locale/is/LC_MESSAGES/konnector_kabc.mo -share/locale/is/LC_MESSAGES/konnector_kcal.mo -share/locale/is/LC_MESSAGES/konnector_local.mo -share/locale/is/LC_MESSAGES/konnector_qtopia.mo -share/locale/is/LC_MESSAGES/konnector_remote.mo -share/locale/is/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/is/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/is/LC_MESSAGES/konqsidebar_news.mo -share/locale/is/LC_MESSAGES/konqueror.mo -share/locale/is/LC_MESSAGES/konquest.mo -share/locale/is/LC_MESSAGES/konsole.mo -share/locale/is/LC_MESSAGES/konsolekalendar.mo -share/locale/is/LC_MESSAGES/kontact.mo -share/locale/is/LC_MESSAGES/kooka.mo -share/locale/is/LC_MESSAGES/kopete.mo -share/locale/is/LC_MESSAGES/korganizer.mo -share/locale/is/LC_MESSAGES/korn.mo -share/locale/is/LC_MESSAGES/kpackage.mo -share/locale/is/LC_MESSAGES/kpager.mo -share/locale/is/LC_MESSAGES/kpartapp.mo -share/locale/is/LC_MESSAGES/kpartsaver.mo -share/locale/is/LC_MESSAGES/kpat.mo -share/locale/is/LC_MESSAGES/kpdf.mo -share/locale/is/LC_MESSAGES/kpercentage.mo -share/locale/is/LC_MESSAGES/kpersonalizer.mo -share/locale/is/LC_MESSAGES/kpf.mo -share/locale/is/LC_MESSAGES/kpilot.mo -share/locale/is/LC_MESSAGES/kpoker.mo -share/locale/is/LC_MESSAGES/kpovmodeler.mo -share/locale/is/LC_MESSAGES/kppp.mo -share/locale/is/LC_MESSAGES/kppplogview.mo -share/locale/is/LC_MESSAGES/kprinter.mo -share/locale/is/LC_MESSAGES/krandr.mo -share/locale/is/LC_MESSAGES/krdb.mo -share/locale/is/LC_MESSAGES/krdc.mo -share/locale/is/LC_MESSAGES/kreadconfig.mo -share/locale/is/LC_MESSAGES/krec.mo -share/locale/is/LC_MESSAGES/kregexpeditor.mo -share/locale/is/LC_MESSAGES/kres_blogging.mo -share/locale/is/LC_MESSAGES/kres_bugzilla.mo -share/locale/is/LC_MESSAGES/kres_exchange.mo -share/locale/is/LC_MESSAGES/kres_featureplan.mo -share/locale/is/LC_MESSAGES/kres_groupwise.mo -share/locale/is/LC_MESSAGES/kres_kolab.mo -share/locale/is/LC_MESSAGES/kres_opengroupware.mo -share/locale/is/LC_MESSAGES/kres_remote.mo -share/locale/is/LC_MESSAGES/kres_xmlrpc.mo -share/locale/is/LC_MESSAGES/kreversi.mo -share/locale/is/LC_MESSAGES/krfb.mo -share/locale/is/LC_MESSAGES/kruler.mo -share/locale/is/LC_MESSAGES/krunapplet.mo -share/locale/is/LC_MESSAGES/ksame.mo -share/locale/is/LC_MESSAGES/ksayit.mo -share/locale/is/LC_MESSAGES/kscd.mo -share/locale/is/LC_MESSAGES/kscreensaver.mo -share/locale/is/LC_MESSAGES/kshisen.mo -share/locale/is/LC_MESSAGES/ksig.mo -share/locale/is/LC_MESSAGES/ksim.mo -share/locale/is/LC_MESSAGES/ksirc.mo -share/locale/is/LC_MESSAGES/ksirtet.mo -share/locale/is/LC_MESSAGES/ksmiletris.mo -share/locale/is/LC_MESSAGES/ksmserver.mo -share/locale/is/LC_MESSAGES/ksnake.mo -share/locale/is/LC_MESSAGES/ksnapshot.mo -share/locale/is/LC_MESSAGES/ksokoban.mo -share/locale/is/LC_MESSAGES/kspaceduel.mo -share/locale/is/LC_MESSAGES/ksplash.mo -share/locale/is/LC_MESSAGES/ksplashthemes.mo -share/locale/is/LC_MESSAGES/kstars.mo -share/locale/is/LC_MESSAGES/kstart.mo -share/locale/is/LC_MESSAGES/kstartperf.mo -share/locale/is/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/is/LC_MESSAGES/kstyle_phase_config.mo -share/locale/is/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/is/LC_MESSAGES/ksvgplugin.mo -share/locale/is/LC_MESSAGES/ksync.mo -share/locale/is/LC_MESSAGES/ksysguard.mo -share/locale/is/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/is/LC_MESSAGES/ksystraycmd.mo -share/locale/is/LC_MESSAGES/ksysv.mo -share/locale/is/LC_MESSAGES/ktalkd.mo -share/locale/is/LC_MESSAGES/ktaskbarapplet.mo -share/locale/is/LC_MESSAGES/kteatime.mo -share/locale/is/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/is/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/is/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/is/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/is/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/is/LC_MESSAGES/ktexteditor_kttsd.mo -share/locale/is/LC_MESSAGES/kthememanager.mo -share/locale/is/LC_MESSAGES/ktimemon.mo -share/locale/is/LC_MESSAGES/ktimer.mo -share/locale/is/LC_MESSAGES/ktip.mo -share/locale/is/LC_MESSAGES/ktnef.mo -share/locale/is/LC_MESSAGES/ktouch.mo -share/locale/is/LC_MESSAGES/ktron.mo -share/locale/is/LC_MESSAGES/kttsd.mo -share/locale/is/LC_MESSAGES/kttsd_commandplugin.mo -share/locale/is/LC_MESSAGES/kttsd_eposplugin.mo -share/locale/is/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/is/LC_MESSAGES/kttsd_fliteplugin.mo -share/locale/is/LC_MESSAGES/kttsd_freettsplugin.mo -share/locale/is/LC_MESSAGES/kttsd_hadifixplugin.mo -share/locale/is/LC_MESSAGES/kttsd_sbdplugin.mo -share/locale/is/LC_MESSAGES/kttsd_stringreplacerplugin.mo -share/locale/is/LC_MESSAGES/kttsd_talkerchooserplugin.mo -share/locale/is/LC_MESSAGES/kttsd_xmltransformerplugin.mo -share/locale/is/LC_MESSAGES/kttsjobmgr.mo -share/locale/is/LC_MESSAGES/kttsmgr.mo -share/locale/is/LC_MESSAGES/ktuberling.mo -share/locale/is/LC_MESSAGES/kturtle.mo -share/locale/is/LC_MESSAGES/ktux.mo -share/locale/is/LC_MESSAGES/kuick_plugin.mo -share/locale/is/LC_MESSAGES/kuickshow.mo -share/locale/is/LC_MESSAGES/kuiviewer.mo -share/locale/is/LC_MESSAGES/kuser.mo -share/locale/is/LC_MESSAGES/kverbos.mo -share/locale/is/LC_MESSAGES/kview.mo -share/locale/is/LC_MESSAGES/kview_scale.mo -share/locale/is/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/is/LC_MESSAGES/kviewcanvas.mo -share/locale/is/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/is/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/is/LC_MESSAGES/kviewscannerplugin.mo -share/locale/is/LC_MESSAGES/kviewshell.mo -share/locale/is/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/is/LC_MESSAGES/kviewviewer.mo -share/locale/is/LC_MESSAGES/kvoctrain.mo -share/locale/is/LC_MESSAGES/kwalletmanager.mo -share/locale/is/LC_MESSAGES/kwatchgnupg.mo -share/locale/is/LC_MESSAGES/kweather.mo -share/locale/is/LC_MESSAGES/kwifimanager.mo -share/locale/is/LC_MESSAGES/kwin.mo -share/locale/is/LC_MESSAGES/kwin4.mo -share/locale/is/LC_MESSAGES/kwin_art_clients.mo -share/locale/is/LC_MESSAGES/kwin_clients.mo -share/locale/is/LC_MESSAGES/kwireless.mo -share/locale/is/LC_MESSAGES/kwordquiz.mo -share/locale/is/LC_MESSAGES/kworldclock.mo -share/locale/is/LC_MESSAGES/kwriteconfig.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/kxsldbg.mo -share/locale/is/LC_MESSAGES/libKTTSD.mo -share/locale/is/LC_MESSAGES/libcalendarresources.mo -share/locale/is/LC_MESSAGES/libdmctl.mo -share/locale/is/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/is/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/is/LC_MESSAGES/libkcal.mo -share/locale/is/LC_MESSAGES/libkcalsystem.mo -share/locale/is/LC_MESSAGES/libkcddb.mo -share/locale/is/LC_MESSAGES/libkdegames.mo -share/locale/is/LC_MESSAGES/libkdehighscores.mo -share/locale/is/LC_MESSAGES/libkdenetwork.mo -share/locale/is/LC_MESSAGES/libkdepim.mo -share/locale/is/LC_MESSAGES/libkholidays.mo -share/locale/is/LC_MESSAGES/libkicker.mo -share/locale/is/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/is/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/is/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/is/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/is/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/is/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/is/LC_MESSAGES/libkickermenu_tom.mo -share/locale/is/LC_MESSAGES/libkleopatra.mo -share/locale/is/LC_MESSAGES/libkmime.mo -share/locale/is/LC_MESSAGES/libkonq.mo -share/locale/is/LC_MESSAGES/libkpgp.mo -share/locale/is/LC_MESSAGES/libkpimexchange.mo -share/locale/is/LC_MESSAGES/libkscan.mo -share/locale/is/LC_MESSAGES/libkscreensaver.mo -share/locale/is/LC_MESSAGES/libksieve.mo -share/locale/is/LC_MESSAGES/libksirtet.mo -share/locale/is/LC_MESSAGES/libksync.mo -share/locale/is/LC_MESSAGES/libtaskbar.mo -share/locale/is/LC_MESSAGES/libtaskmanager.mo -share/locale/is/LC_MESSAGES/lockout.mo -share/locale/is/LC_MESSAGES/lskat.mo -share/locale/is/LC_MESSAGES/lyrics.mo -share/locale/is/LC_MESSAGES/mediaapplet.mo -share/locale/is/LC_MESSAGES/mediacontrol.mo -share/locale/is/LC_MESSAGES/minitoolsplugin.mo -share/locale/is/LC_MESSAGES/multisynk.mo -share/locale/is/LC_MESSAGES/naughtyapplet.mo -share/locale/is/LC_MESSAGES/nexscope.mo -share/locale/is/LC_MESSAGES/noatun.mo -share/locale/is/LC_MESSAGES/nsplugin.mo -share/locale/is/LC_MESSAGES/passwords.mo -share/locale/is/LC_MESSAGES/pitchablespeed.mo -share/locale/is/LC_MESSAGES/ppdtranslations.mo -share/locale/is/LC_MESSAGES/privacy.mo -share/locale/is/LC_MESSAGES/qeditor.mo -share/locale/is/LC_MESSAGES/quanta.mo -share/locale/is/LC_MESSAGES/quicklauncher.mo -share/locale/is/LC_MESSAGES/rellinks.mo -share/locale/is/LC_MESSAGES/searchbarplugin.mo -share/locale/is/LC_MESSAGES/secpolicy.mo -share/locale/is/LC_MESSAGES/spy.mo -share/locale/is/LC_MESSAGES/synaescope.mo -share/locale/is/LC_MESSAGES/taskbarextension.mo -share/locale/is/LC_MESSAGES/timezones.mo -share/locale/is/LC_MESSAGES/tippecanoe.mo -share/locale/is/LC_MESSAGES/trashapplet.mo -share/locale/is/LC_MESSAGES/tyler.mo -share/locale/is/LC_MESSAGES/uachangerplugin.mo -share/locale/is/LC_MESSAGES/umbrello.mo -share/locale/is/LC_MESSAGES/useraccount.mo -share/locale/is/LC_MESSAGES/validatorsplugin.mo -share/locale/is/LC_MESSAGES/vimpart.mo -share/locale/is/LC_MESSAGES/wakeup.mo -share/locale/is/LC_MESSAGES/wavecapture.mo -share/locale/is/LC_MESSAGES/webarchiver.mo -share/locale/is/charset -share/locale/is/entry.desktop -share/locale/is/flag.png diff --git a/misc/kde4-l10n-bg/Makefile b/misc/kde4-l10n-bg/Makefile deleted file mode 100644 index 4c3f95343306..000000000000 --- a/misc/kde4-l10n-bg/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-bg -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= bg- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Bulgarian messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-bg/distinfo b/misc/kde4-l10n-bg/distinfo deleted file mode 100644 index cb677cc71a71..000000000000 --- a/misc/kde4-l10n-bg/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-bg-3.4.2.tar.bz2) = 97456e12193b1024612a4195a6a1f9a3 -SIZE (KDE/kde-i18n/kde-i18n-bg-3.4.2.tar.bz2) = 1574664 diff --git a/misc/kde4-l10n-bg/pkg-descr b/misc/kde4-l10n-bg/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-bg/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-bg/pkg-plist b/misc/kde4-l10n-bg/pkg-plist deleted file mode 100644 index 45beb59bb3cf..000000000000 --- a/misc/kde4-l10n-bg/pkg-plist +++ /dev/null @@ -1,581 +0,0 @@ -share/apps/khangman/data/bg/animals.kvtml -share/apps/khangman/data/bg/easy.kvtml -share/apps/khangman/data/bg/hard.kvtml -share/apps/khangman/data/bg/medium.kvtml -share/locale/bg/LC_MESSAGES/akregator.mo -share/locale/bg/LC_MESSAGES/akregator_konqplugin.mo -share/locale/bg/LC_MESSAGES/alsaplayerui.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/ark_plugin.mo -share/locale/bg/LC_MESSAGES/artsbuilder.mo -share/locale/bg/LC_MESSAGES/artscontrol.mo -share/locale/bg/LC_MESSAGES/artsmodules.mo -share/locale/bg/LC_MESSAGES/atlantik.mo -share/locale/bg/LC_MESSAGES/atlantikdesigner.mo -share/locale/bg/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/bg/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/bg/LC_MESSAGES/audiorename_plugin.mo -share/locale/bg/LC_MESSAGES/autorefresh.mo -share/locale/bg/LC_MESSAGES/babelfish.mo -share/locale/bg/LC_MESSAGES/charlatanui.mo -share/locale/bg/LC_MESSAGES/childpanelextension.mo -share/locale/bg/LC_MESSAGES/clockapplet.mo -share/locale/bg/LC_MESSAGES/crashesplugin.mo -share/locale/bg/LC_MESSAGES/cupsdconf.mo -share/locale/bg/LC_MESSAGES/dcoprss.mo -share/locale/bg/LC_MESSAGES/devicesapplet.mo -share/locale/bg/LC_MESSAGES/dirfilterplugin.mo -share/locale/bg/LC_MESSAGES/display.mo -share/locale/bg/LC_MESSAGES/dockbarextension.mo -share/locale/bg/LC_MESSAGES/domtreeviewer.mo -share/locale/bg/LC_MESSAGES/drkonqi.mo -share/locale/bg/LC_MESSAGES/dub.mo -share/locale/bg/LC_MESSAGES/extensionproxy.mo -share/locale/bg/LC_MESSAGES/ffrs.mo -share/locale/bg/LC_MESSAGES/filetypes.mo -share/locale/bg/LC_MESSAGES/fontinst.mo -share/locale/bg/LC_MESSAGES/fsview.mo -share/locale/bg/LC_MESSAGES/htmlsearch.mo -share/locale/bg/LC_MESSAGES/imagerename_plugin.mo -share/locale/bg/LC_MESSAGES/imgalleryplugin.mo -share/locale/bg/LC_MESSAGES/irkick.mo -share/locale/bg/LC_MESSAGES/jefferson.mo -share/locale/bg/LC_MESSAGES/joystick.mo -share/locale/bg/LC_MESSAGES/juk.mo -share/locale/bg/LC_MESSAGES/kabc2mutt.mo -share/locale/bg/LC_MESSAGES/kabc_dir.mo -share/locale/bg/LC_MESSAGES/kabc_file.mo -share/locale/bg/LC_MESSAGES/kabc_ldap.mo -share/locale/bg/LC_MESSAGES/kabc_ldapkio.mo -share/locale/bg/LC_MESSAGES/kabc_net.mo -share/locale/bg/LC_MESSAGES/kabc_slox.mo -share/locale/bg/LC_MESSAGES/kabc_sql.mo -share/locale/bg/LC_MESSAGES/kabcformat_binary.mo -share/locale/bg/LC_MESSAGES/kaboodle.mo -share/locale/bg/LC_MESSAGES/kaccess.mo -share/locale/bg/LC_MESSAGES/kaddressbook.mo -share/locale/bg/LC_MESSAGES/kalarm.mo -share/locale/bg/LC_MESSAGES/kalzium.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/katecppsymbolviewer.mo -share/locale/bg/LC_MESSAGES/katedefaultproject.mo -share/locale/bg/LC_MESSAGES/katefiletemplates.mo -share/locale/bg/LC_MESSAGES/katefll_initplugin.mo -share/locale/bg/LC_MESSAGES/katefll_plugin.mo -share/locale/bg/LC_MESSAGES/katehelloworld.mo -share/locale/bg/LC_MESSAGES/katehtmltools.mo -share/locale/bg/LC_MESSAGES/kateinsertcommand.mo -share/locale/bg/LC_MESSAGES/katekjswrapper.mo -share/locale/bg/LC_MESSAGES/katekttsd.mo -share/locale/bg/LC_MESSAGES/katemake.mo -share/locale/bg/LC_MESSAGES/katemodeline.mo -share/locale/bg/LC_MESSAGES/kateopenheader.mo -share/locale/bg/LC_MESSAGES/katepart.mo -share/locale/bg/LC_MESSAGES/katepartkttsd.mo -share/locale/bg/LC_MESSAGES/kateprojectmanager.mo -share/locale/bg/LC_MESSAGES/katepybrowse.mo -share/locale/bg/LC_MESSAGES/katesnippets.mo -share/locale/bg/LC_MESSAGES/katespell.mo -share/locale/bg/LC_MESSAGES/katetabbarextension.mo -share/locale/bg/LC_MESSAGES/katetextfilter.mo -share/locale/bg/LC_MESSAGES/katexmlcheck.mo -share/locale/bg/LC_MESSAGES/katexmltools.mo -share/locale/bg/LC_MESSAGES/katomic.mo -share/locale/bg/LC_MESSAGES/kaudiocreator.mo -share/locale/bg/LC_MESSAGES/kbackgammon.mo -share/locale/bg/LC_MESSAGES/kbattleship.mo -share/locale/bg/LC_MESSAGES/kbinaryclock.mo -share/locale/bg/LC_MESSAGES/kblackbox.mo -share/locale/bg/LC_MESSAGES/kbounce.mo -share/locale/bg/LC_MESSAGES/kbruch.mo -share/locale/bg/LC_MESSAGES/kbstateapplet.mo -share/locale/bg/LC_MESSAGES/kcalc.mo -share/locale/bg/LC_MESSAGES/kcharselect.mo -share/locale/bg/LC_MESSAGES/kcharselectapplet.mo -share/locale/bg/LC_MESSAGES/kcm_krfb.mo -share/locale/bg/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/bg/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/bg/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/bg/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/bg/LC_MESSAGES/kcmaccess.mo -share/locale/bg/LC_MESSAGES/kcmaccessibility.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/kcmcddb.mo -share/locale/bg/LC_MESSAGES/kcmcgi.mo -share/locale/bg/LC_MESSAGES/kcmcolors.mo -share/locale/bg/LC_MESSAGES/kcmcomponentchooser.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/kcminfo.mo -share/locale/bg/LC_MESSAGES/kcminput.mo -share/locale/bg/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/bg/LC_MESSAGES/kcmkabconfig.mo -share/locale/bg/LC_MESSAGES/kcmkamera.mo -share/locale/bg/LC_MESSAGES/kcmkclock.mo -share/locale/bg/LC_MESSAGES/kcmkded.mo -share/locale/bg/LC_MESSAGES/kcmkdnssd.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/kcmkmix.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/kcmkontactnt.mo -share/locale/bg/LC_MESSAGES/kcmktalkd.mo -share/locale/bg/LC_MESSAGES/kcmkttsd.mo -share/locale/bg/LC_MESSAGES/kcmkuick.mo -share/locale/bg/LC_MESSAGES/kcmkurifilt.mo -share/locale/bg/LC_MESSAGES/kcmkvaio.mo -share/locale/bg/LC_MESSAGES/kcmkwallet.mo -share/locale/bg/LC_MESSAGES/kcmkwindecoration.mo -share/locale/bg/LC_MESSAGES/kcmkwinrules.mo -share/locale/bg/LC_MESSAGES/kcmkwintheme.mo -share/locale/bg/LC_MESSAGES/kcmkwm.mo -share/locale/bg/LC_MESSAGES/kcmkxmlrpcd.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/kcmlirc.mo -share/locale/bg/LC_MESSAGES/kcmlocale.mo -share/locale/bg/LC_MESSAGES/kcmmediacontrol.mo -share/locale/bg/LC_MESSAGES/kcmmidi.mo -share/locale/bg/LC_MESSAGES/kcmnic.mo -share/locale/bg/LC_MESSAGES/kcmnotify.mo -share/locale/bg/LC_MESSAGES/kcmperformance.mo -share/locale/bg/LC_MESSAGES/kcmprintmgr.mo -share/locale/bg/LC_MESSAGES/kcmsamba.mo -share/locale/bg/LC_MESSAGES/kcmscreensaver.mo -share/locale/bg/LC_MESSAGES/kcmshell.mo -share/locale/bg/LC_MESSAGES/kcmsmartcard.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/kcmthinkpad.mo -share/locale/bg/LC_MESSAGES/kcmusb.mo -share/locale/bg/LC_MESSAGES/kcmview1394.mo -share/locale/bg/LC_MESSAGES/kcmvim.mo -share/locale/bg/LC_MESSAGES/kcmwifi.mo -share/locale/bg/LC_MESSAGES/kcmxinerama.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/kdelibs_colors.mo -share/locale/bg/LC_MESSAGES/kdelirc.mo -share/locale/bg/LC_MESSAGES/kdepasswd.mo -share/locale/bg/LC_MESSAGES/kdepimresources.mo -share/locale/bg/LC_MESSAGES/kdepimwizards.mo -share/locale/bg/LC_MESSAGES/kdeprint.mo -share/locale/bg/LC_MESSAGES/kdeprint_part.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/kdf.mo -share/locale/bg/LC_MESSAGES/kdgantt.mo -share/locale/bg/LC_MESSAGES/kdialog.mo -share/locale/bg/LC_MESSAGES/kdict.mo -share/locale/bg/LC_MESSAGES/kdictapplet.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/keduca.mo -share/locale/bg/LC_MESSAGES/kenolaba.mo -share/locale/bg/LC_MESSAGES/kfax.mo -share/locale/bg/LC_MESSAGES/kfifteenapplet.mo -share/locale/bg/LC_MESSAGES/kfile_au.mo -share/locale/bg/LC_MESSAGES/kfile_avi.mo -share/locale/bg/LC_MESSAGES/kfile_bmp.mo -share/locale/bg/LC_MESSAGES/kfile_cert.mo -share/locale/bg/LC_MESSAGES/kfile_cpp.mo -share/locale/bg/LC_MESSAGES/kfile_dds.mo -share/locale/bg/LC_MESSAGES/kfile_deb.mo -share/locale/bg/LC_MESSAGES/kfile_desktop.mo -share/locale/bg/LC_MESSAGES/kfile_diff.mo -share/locale/bg/LC_MESSAGES/kfile_drgeo.mo -share/locale/bg/LC_MESSAGES/kfile_dvi.mo -share/locale/bg/LC_MESSAGES/kfile_exr.mo -share/locale/bg/LC_MESSAGES/kfile_flac.mo -share/locale/bg/LC_MESSAGES/kfile_folder.mo -share/locale/bg/LC_MESSAGES/kfile_font.mo -share/locale/bg/LC_MESSAGES/kfile_gif.mo -share/locale/bg/LC_MESSAGES/kfile_html.mo -share/locale/bg/LC_MESSAGES/kfile_ico.mo -share/locale/bg/LC_MESSAGES/kfile_ics.mo -share/locale/bg/LC_MESSAGES/kfile_jpeg.mo -share/locale/bg/LC_MESSAGES/kfile_kig.mo -share/locale/bg/LC_MESSAGES/kfile_lnk.mo -share/locale/bg/LC_MESSAGES/kfile_m3u.mo -share/locale/bg/LC_MESSAGES/kfile_mhtml.mo -share/locale/bg/LC_MESSAGES/kfile_mp3.mo -share/locale/bg/LC_MESSAGES/kfile_mpc.mo -share/locale/bg/LC_MESSAGES/kfile_ogg.mo -share/locale/bg/LC_MESSAGES/kfile_palm.mo -share/locale/bg/LC_MESSAGES/kfile_pcx.mo -share/locale/bg/LC_MESSAGES/kfile_pdf.mo -share/locale/bg/LC_MESSAGES/kfile_png.mo -share/locale/bg/LC_MESSAGES/kfile_pnm.mo -share/locale/bg/LC_MESSAGES/kfile_po.mo -share/locale/bg/LC_MESSAGES/kfile_ps.mo -share/locale/bg/LC_MESSAGES/kfile_rfc822.mo -share/locale/bg/LC_MESSAGES/kfile_rgb.mo -share/locale/bg/LC_MESSAGES/kfile_rpm.mo -share/locale/bg/LC_MESSAGES/kfile_sid.mo -share/locale/bg/LC_MESSAGES/kfile_tga.mo -share/locale/bg/LC_MESSAGES/kfile_theora.mo -share/locale/bg/LC_MESSAGES/kfile_tiff.mo -share/locale/bg/LC_MESSAGES/kfile_torrent.mo -share/locale/bg/LC_MESSAGES/kfile_ts.mo -share/locale/bg/LC_MESSAGES/kfile_txt.mo -share/locale/bg/LC_MESSAGES/kfile_vcf.mo -share/locale/bg/LC_MESSAGES/kfile_wav.mo -share/locale/bg/LC_MESSAGES/kfile_xbm.mo -share/locale/bg/LC_MESSAGES/kfile_xpm.mo -share/locale/bg/LC_MESSAGES/kfileaudiopreview.mo -share/locale/bg/LC_MESSAGES/kfileshare.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/kfontinst.mo -share/locale/bg/LC_MESSAGES/kfouleggs.mo -share/locale/bg/LC_MESSAGES/kgamma.mo -share/locale/bg/LC_MESSAGES/kgantt.mo -share/locale/bg/LC_MESSAGES/kget.mo -share/locale/bg/LC_MESSAGES/kghostview.mo -share/locale/bg/LC_MESSAGES/kgoldrunner.mo -share/locale/bg/LC_MESSAGES/kgpg.mo -share/locale/bg/LC_MESSAGES/kgreet_classic.mo -share/locale/bg/LC_MESSAGES/khangman.mo -share/locale/bg/LC_MESSAGES/khelpcenter.mo -share/locale/bg/LC_MESSAGES/khexedit.mo -share/locale/bg/LC_MESSAGES/khexedit2part.mo -share/locale/bg/LC_MESSAGES/khotkeys.mo -share/locale/bg/LC_MESSAGES/khtmlkttsd.mo -share/locale/bg/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/bg/LC_MESSAGES/kicker.mo -share/locale/bg/LC_MESSAGES/kiconedit.mo -share/locale/bg/LC_MESSAGES/kig.mo -share/locale/bg/LC_MESSAGES/kinetd.mo -share/locale/bg/LC_MESSAGES/kio.mo -share/locale/bg/LC_MESSAGES/kio_audiocd.mo -share/locale/bg/LC_MESSAGES/kio_devices.mo -share/locale/bg/LC_MESSAGES/kio_finger.mo -share/locale/bg/LC_MESSAGES/kio_fish.mo -share/locale/bg/LC_MESSAGES/kio_floppy.mo -share/locale/bg/LC_MESSAGES/kio_groupwise.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_ldap.mo -share/locale/bg/LC_MESSAGES/kio_mac.mo -share/locale/bg/LC_MESSAGES/kio_man.mo -share/locale/bg/LC_MESSAGES/kio_media.mo -share/locale/bg/LC_MESSAGES/kio_mobile.mo -share/locale/bg/LC_MESSAGES/kio_newimap4.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_print.mo -share/locale/bg/LC_MESSAGES/kio_remote.mo -share/locale/bg/LC_MESSAGES/kio_settings.mo -share/locale/bg/LC_MESSAGES/kio_sftp.mo -share/locale/bg/LC_MESSAGES/kio_sieve.mo -share/locale/bg/LC_MESSAGES/kio_smb.mo -share/locale/bg/LC_MESSAGES/kio_smtp.mo -share/locale/bg/LC_MESSAGES/kio_svn.mo -share/locale/bg/LC_MESSAGES/kio_system.mo -share/locale/bg/LC_MESSAGES/kio_trash.mo -share/locale/bg/LC_MESSAGES/kio_zeroconf.mo -share/locale/bg/LC_MESSAGES/kioexec.mo -share/locale/bg/LC_MESSAGES/kiten.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/klaptopdaemon.mo -share/locale/bg/LC_MESSAGES/klatin.mo -share/locale/bg/LC_MESSAGES/klegacyimport.mo -share/locale/bg/LC_MESSAGES/kleopatra.mo -share/locale/bg/LC_MESSAGES/klettres.mo -share/locale/bg/LC_MESSAGES/klickety.mo -share/locale/bg/LC_MESSAGES/klines.mo -share/locale/bg/LC_MESSAGES/klinkstatus.mo -share/locale/bg/LC_MESSAGES/klipper.mo -share/locale/bg/LC_MESSAGES/klock.mo -share/locale/bg/LC_MESSAGES/kmag.mo -share/locale/bg/LC_MESSAGES/kmahjongg.mo -share/locale/bg/LC_MESSAGES/kmail.mo -share/locale/bg/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/bg/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/bg/LC_MESSAGES/kmailcvt.mo -share/locale/bg/LC_MESSAGES/kmathapplet.mo -share/locale/bg/LC_MESSAGES/kmathtool.mo -share/locale/bg/LC_MESSAGES/kmcop.mo -share/locale/bg/LC_MESSAGES/kmenuapplet.mo -share/locale/bg/LC_MESSAGES/kmenuedit.mo -share/locale/bg/LC_MESSAGES/kmessedwords.mo -share/locale/bg/LC_MESSAGES/kmid.mo -share/locale/bg/LC_MESSAGES/kmilo_delli8k.mo -share/locale/bg/LC_MESSAGES/kmilo_generic.mo -share/locale/bg/LC_MESSAGES/kmilo_kvaio.mo -share/locale/bg/LC_MESSAGES/kmilo_powerbook.mo -share/locale/bg/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/bg/LC_MESSAGES/kmilod.mo -share/locale/bg/LC_MESSAGES/kmines.mo -share/locale/bg/LC_MESSAGES/kminipagerapplet.mo -share/locale/bg/LC_MESSAGES/kmix.mo -share/locale/bg/LC_MESSAGES/kmobile.mo -share/locale/bg/LC_MESSAGES/kmoon.mo -share/locale/bg/LC_MESSAGES/kmousetool.mo -share/locale/bg/LC_MESSAGES/kmouth.mo -share/locale/bg/LC_MESSAGES/kmplot.mo -share/locale/bg/LC_MESSAGES/kmrml.mo -share/locale/bg/LC_MESSAGES/knetattach.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/kolf.mo -share/locale/bg/LC_MESSAGES/kolourpaint.mo -share/locale/bg/LC_MESSAGES/kolourpicker.mo -share/locale/bg/LC_MESSAGES/konnector_dummy.mo -share/locale/bg/LC_MESSAGES/konnector_kabc.mo -share/locale/bg/LC_MESSAGES/konnector_kcal.mo -share/locale/bg/LC_MESSAGES/konnector_local.mo -share/locale/bg/LC_MESSAGES/konnector_qtopia.mo -share/locale/bg/LC_MESSAGES/konnector_remote.mo -share/locale/bg/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/bg/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/bg/LC_MESSAGES/konqsidebar_news.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/konsolekalendar.mo -share/locale/bg/LC_MESSAGES/kontact.mo -share/locale/bg/LC_MESSAGES/kooka.mo -share/locale/bg/LC_MESSAGES/kopete.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/kpartapp.mo -share/locale/bg/LC_MESSAGES/kpartsaver.mo -share/locale/bg/LC_MESSAGES/kpat.mo -share/locale/bg/LC_MESSAGES/kpdf.mo -share/locale/bg/LC_MESSAGES/kpercentage.mo -share/locale/bg/LC_MESSAGES/kpersonalizer.mo -share/locale/bg/LC_MESSAGES/kpf.mo -share/locale/bg/LC_MESSAGES/kpilot.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/kprinter.mo -share/locale/bg/LC_MESSAGES/krandr.mo -share/locale/bg/LC_MESSAGES/krdb.mo -share/locale/bg/LC_MESSAGES/krdc.mo -share/locale/bg/LC_MESSAGES/kreadconfig.mo -share/locale/bg/LC_MESSAGES/krec.mo -share/locale/bg/LC_MESSAGES/kregexpeditor.mo -share/locale/bg/LC_MESSAGES/kres_blogging.mo -share/locale/bg/LC_MESSAGES/kres_bugzilla.mo -share/locale/bg/LC_MESSAGES/kres_exchange.mo -share/locale/bg/LC_MESSAGES/kres_featureplan.mo -share/locale/bg/LC_MESSAGES/kres_groupwise.mo -share/locale/bg/LC_MESSAGES/kres_kolab.mo -share/locale/bg/LC_MESSAGES/kres_opengroupware.mo -share/locale/bg/LC_MESSAGES/kres_remote.mo -share/locale/bg/LC_MESSAGES/kres_xmlrpc.mo -share/locale/bg/LC_MESSAGES/kreversi.mo -share/locale/bg/LC_MESSAGES/krfb.mo -share/locale/bg/LC_MESSAGES/kruler.mo -share/locale/bg/LC_MESSAGES/krunapplet.mo -share/locale/bg/LC_MESSAGES/ksame.mo -share/locale/bg/LC_MESSAGES/ksayit.mo -share/locale/bg/LC_MESSAGES/kscd.mo -share/locale/bg/LC_MESSAGES/kscreensaver.mo -share/locale/bg/LC_MESSAGES/kshisen.mo -share/locale/bg/LC_MESSAGES/ksig.mo -share/locale/bg/LC_MESSAGES/ksim.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/ksplashthemes.mo -share/locale/bg/LC_MESSAGES/kstars.mo -share/locale/bg/LC_MESSAGES/kstart.mo -share/locale/bg/LC_MESSAGES/kstartperf.mo -share/locale/bg/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/bg/LC_MESSAGES/kstyle_phase_config.mo -share/locale/bg/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/bg/LC_MESSAGES/ksvgplugin.mo -share/locale/bg/LC_MESSAGES/ksync.mo -share/locale/bg/LC_MESSAGES/ksysguard.mo -share/locale/bg/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/bg/LC_MESSAGES/ksystraycmd.mo -share/locale/bg/LC_MESSAGES/ksysv.mo -share/locale/bg/LC_MESSAGES/ktalkd.mo -share/locale/bg/LC_MESSAGES/ktaskbarapplet.mo -share/locale/bg/LC_MESSAGES/kteatime.mo -share/locale/bg/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/bg/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/bg/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/bg/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/bg/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/bg/LC_MESSAGES/ktexteditor_kttsd.mo -share/locale/bg/LC_MESSAGES/kthememanager.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/ktnef.mo -share/locale/bg/LC_MESSAGES/ktouch.mo -share/locale/bg/LC_MESSAGES/ktron.mo -share/locale/bg/LC_MESSAGES/kttsd.mo -share/locale/bg/LC_MESSAGES/kttsd_commandplugin.mo -share/locale/bg/LC_MESSAGES/kttsd_eposplugin.mo -share/locale/bg/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/bg/LC_MESSAGES/kttsd_fliteplugin.mo -share/locale/bg/LC_MESSAGES/kttsd_freettsplugin.mo -share/locale/bg/LC_MESSAGES/kttsd_hadifixplugin.mo -share/locale/bg/LC_MESSAGES/kttsd_sbdplugin.mo -share/locale/bg/LC_MESSAGES/kttsd_stringreplacerplugin.mo -share/locale/bg/LC_MESSAGES/kttsd_talkerchooserplugin.mo -share/locale/bg/LC_MESSAGES/kttsd_xmltransformerplugin.mo -share/locale/bg/LC_MESSAGES/kttsjobmgr.mo -share/locale/bg/LC_MESSAGES/kttsmgr.mo -share/locale/bg/LC_MESSAGES/ktuberling.mo -share/locale/bg/LC_MESSAGES/kturtle.mo -share/locale/bg/LC_MESSAGES/ktux.mo -share/locale/bg/LC_MESSAGES/kuick_plugin.mo -share/locale/bg/LC_MESSAGES/kuickshow.mo -share/locale/bg/LC_MESSAGES/kuiviewer.mo -share/locale/bg/LC_MESSAGES/kuser.mo -share/locale/bg/LC_MESSAGES/kverbos.mo -share/locale/bg/LC_MESSAGES/kview.mo -share/locale/bg/LC_MESSAGES/kview_scale.mo -share/locale/bg/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/bg/LC_MESSAGES/kviewcanvas.mo -share/locale/bg/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/bg/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/bg/LC_MESSAGES/kviewscannerplugin.mo -share/locale/bg/LC_MESSAGES/kviewshell.mo -share/locale/bg/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/bg/LC_MESSAGES/kviewviewer.mo -share/locale/bg/LC_MESSAGES/kvoctrain.mo -share/locale/bg/LC_MESSAGES/kwalletmanager.mo -share/locale/bg/LC_MESSAGES/kwatchgnupg.mo -share/locale/bg/LC_MESSAGES/kweather.mo -share/locale/bg/LC_MESSAGES/kwifimanager.mo -share/locale/bg/LC_MESSAGES/kwin.mo -share/locale/bg/LC_MESSAGES/kwin4.mo -share/locale/bg/LC_MESSAGES/kwin_art_clients.mo -share/locale/bg/LC_MESSAGES/kwin_clients.mo -share/locale/bg/LC_MESSAGES/kwireless.mo -share/locale/bg/LC_MESSAGES/kwordquiz.mo -share/locale/bg/LC_MESSAGES/kworldclock.mo -share/locale/bg/LC_MESSAGES/kwriteconfig.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/libKTTSD.mo -share/locale/bg/LC_MESSAGES/libcalendarresources.mo -share/locale/bg/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/bg/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/bg/LC_MESSAGES/libkcal.mo -share/locale/bg/LC_MESSAGES/libkcalsystem.mo -share/locale/bg/LC_MESSAGES/libkcddb.mo -share/locale/bg/LC_MESSAGES/libkdegames.mo -share/locale/bg/LC_MESSAGES/libkdehighscores.mo -share/locale/bg/LC_MESSAGES/libkdenetwork.mo -share/locale/bg/LC_MESSAGES/libkdepim.mo -share/locale/bg/LC_MESSAGES/libkholidays.mo -share/locale/bg/LC_MESSAGES/libkicker.mo -share/locale/bg/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/bg/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/bg/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/bg/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/bg/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/bg/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/bg/LC_MESSAGES/libkickermenu_tom.mo -share/locale/bg/LC_MESSAGES/libkleopatra.mo -share/locale/bg/LC_MESSAGES/libkmime.mo -share/locale/bg/LC_MESSAGES/libkonq.mo -share/locale/bg/LC_MESSAGES/libkpgp.mo -share/locale/bg/LC_MESSAGES/libkpimexchange.mo -share/locale/bg/LC_MESSAGES/libkscan.mo -share/locale/bg/LC_MESSAGES/libkscreensaver.mo -share/locale/bg/LC_MESSAGES/libksieve.mo -share/locale/bg/LC_MESSAGES/libksirtet.mo -share/locale/bg/LC_MESSAGES/libksync.mo -share/locale/bg/LC_MESSAGES/libtaskbar.mo -share/locale/bg/LC_MESSAGES/libtaskmanager.mo -share/locale/bg/LC_MESSAGES/lockout.mo -share/locale/bg/LC_MESSAGES/lskat.mo -share/locale/bg/LC_MESSAGES/lyrics.mo -share/locale/bg/LC_MESSAGES/mediaapplet.mo -share/locale/bg/LC_MESSAGES/mediacontrol.mo -share/locale/bg/LC_MESSAGES/minitoolsplugin.mo -share/locale/bg/LC_MESSAGES/multisynk.mo -share/locale/bg/LC_MESSAGES/naughtyapplet.mo -share/locale/bg/LC_MESSAGES/nexscope.mo -share/locale/bg/LC_MESSAGES/noatun.mo -share/locale/bg/LC_MESSAGES/nsplugin.mo -share/locale/bg/LC_MESSAGES/passwords.mo -share/locale/bg/LC_MESSAGES/pitchablespeed.mo -share/locale/bg/LC_MESSAGES/ppdtranslations.mo -share/locale/bg/LC_MESSAGES/privacy.mo -share/locale/bg/LC_MESSAGES/qeditor.mo -share/locale/bg/LC_MESSAGES/quicklauncher.mo -share/locale/bg/LC_MESSAGES/rellinks.mo -share/locale/bg/LC_MESSAGES/searchbarplugin.mo -share/locale/bg/LC_MESSAGES/secpolicy.mo -share/locale/bg/LC_MESSAGES/spy.mo -share/locale/bg/LC_MESSAGES/synaescope.mo -share/locale/bg/LC_MESSAGES/taskbarextension.mo -share/locale/bg/LC_MESSAGES/timezones.mo -share/locale/bg/LC_MESSAGES/tippecanoe.mo -share/locale/bg/LC_MESSAGES/trashapplet.mo -share/locale/bg/LC_MESSAGES/tyler.mo -share/locale/bg/LC_MESSAGES/uachangerplugin.mo -share/locale/bg/LC_MESSAGES/useraccount.mo -share/locale/bg/LC_MESSAGES/validatorsplugin.mo -share/locale/bg/LC_MESSAGES/vimpart.mo -share/locale/bg/LC_MESSAGES/wakeup.mo -share/locale/bg/LC_MESSAGES/wavecapture.mo -share/locale/bg/LC_MESSAGES/webarchiver.mo -share/locale/bg/charset -share/locale/bg/entry.desktop -share/locale/bg/flag.png -@dirrm share/apps/khangman/data/bg -@dirrm share/apps/khangman/data -@dirrm share/apps/khangman diff --git a/misc/kde4-l10n-ca/Makefile b/misc/kde4-l10n-ca/Makefile deleted file mode 100644 index 36aedc744d1d..000000000000 --- a/misc/kde4-l10n-ca/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-ca -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= ca- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Catalan messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-ca/distinfo b/misc/kde4-l10n-ca/distinfo deleted file mode 100644 index 06a430069d51..000000000000 --- a/misc/kde4-l10n-ca/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-ca-3.4.2.tar.bz2) = f5a3431ccc351571b1646eca32506830 -SIZE (KDE/kde-i18n/kde-i18n-ca-3.4.2.tar.bz2) = 3528097 diff --git a/misc/kde4-l10n-ca/pkg-descr b/misc/kde4-l10n-ca/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-ca/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-ca/pkg-plist b/misc/kde4-l10n-ca/pkg-plist deleted file mode 100644 index bbcf47fdaa83..000000000000 --- a/misc/kde4-l10n-ca/pkg-plist +++ /dev/null @@ -1,1359 +0,0 @@ -share/apps/katepart/syntax/logohighlightstyle.ca.xml -share/apps/khangman/ca.txt -share/apps/khangman/data/ca/animals.kvtml -share/apps/khangman/data/ca/easy.kvtml -share/apps/khangman/data/ca/hard.kvtml -share/apps/khangman/data/ca/medium.kvtml -share/apps/kturtle/data/logokeywords.ca.xml -share/apps/kturtle/examples/ca/aprenquadrats.logo -share/apps/kturtle/examples/ca/colorspaper.logo -share/apps/kturtle/examples/ca/fletxa.logo -share/apps/kturtle/examples/ca/flor.logo -share/apps/kturtle/examples/ca/nomaleatori.logo -share/apps/kturtle/examples/ca/quadrat.logo -share/apps/kturtle/examples/ca/rinxol.logo -share/apps/kturtle/examples/ca/taulamultiplicar.logo -share/apps/kturtle/examples/ca/triangle.logo -share/doc/HTML/ca/common/1.png -share/doc/HTML/ca/common/10.png -share/doc/HTML/ca/common/2.png -share/doc/HTML/ca/common/3.png -share/doc/HTML/ca/common/4.png -share/doc/HTML/ca/common/5.png -share/doc/HTML/ca/common/6.png -share/doc/HTML/ca/common/7.png -share/doc/HTML/ca/common/8.png -share/doc/HTML/ca/common/9.png -share/doc/HTML/ca/common/appheader.html -share/doc/HTML/ca/common/artistic-license.html -share/doc/HTML/ca/common/bottom-left.png -share/doc/HTML/ca/common/bottom-middle.png -share/doc/HTML/ca/common/bottom-right.png -share/doc/HTML/ca/common/bottom1.png -share/doc/HTML/ca/common/bottom2.png -share/doc/HTML/ca/common/bsd-license.html -share/doc/HTML/ca/common/docheadergears.png -share/doc/HTML/ca/common/doctop1.png -share/doc/HTML/ca/common/doctop1a.png -share/doc/HTML/ca/common/doctop1b.png -share/doc/HTML/ca/common/doctop2.png -share/doc/HTML/ca/common/doxygen.css -share/doc/HTML/ca/common/fdl-license -share/doc/HTML/ca/common/fdl-license.html -share/doc/HTML/ca/common/fdl-translated.html -share/doc/HTML/ca/common/footer.html -share/doc/HTML/ca/common/gpl-license -share/doc/HTML/ca/common/gpl-license.html -share/doc/HTML/ca/common/gpl-translated.html -share/doc/HTML/ca/common/grad.png -share/doc/HTML/ca/common/header.html -share/doc/HTML/ca/common/headerbg.png -share/doc/HTML/ca/common/kde-common.css -share/doc/HTML/ca/common/kde-default.css -share/doc/HTML/ca/common/kde-localised.css -share/doc/HTML/ca/common/kde-localised.css.template -share/doc/HTML/ca/common/kde-web.css -share/doc/HTML/ca/common/kde_logo.png -share/doc/HTML/ca/common/kde_logo_bg.png -share/doc/HTML/ca/common/kmenu.png -share/doc/HTML/ca/common/lgpl-license -share/doc/HTML/ca/common/lgpl-license.html -share/doc/HTML/ca/common/lgpl-translated.html -share/doc/HTML/ca/common/logotp3.png -share/doc/HTML/ca/common/mainfooter.html -share/doc/HTML/ca/common/mainheader.html -share/doc/HTML/ca/common/qpl-license.html -share/doc/HTML/ca/common/shadow.png -share/doc/HTML/ca/common/top-left.png -share/doc/HTML/ca/common/top-middle.png -share/doc/HTML/ca/common/top-right-konqueror.png -share/doc/HTML/ca/common/web-docbottom.png -share/doc/HTML/ca/common/web-doctop.png -share/doc/HTML/ca/common/x11-license.html -share/doc/HTML/ca/common/xml.dcl -share/doc/HTML/ca/kappfinder/man-kappfinder.1.docbook -share/doc/HTML/ca/kapptemplate/man-kapptemplate.1.docbook -share/doc/HTML/ca/kate/fundamentals.docbook -share/doc/HTML/ca/kate/plugins.docbook -share/doc/HTML/ca/katomic/common -share/doc/HTML/ca/katomic/index.cache.bz2 -share/doc/HTML/ca/katomic/index.docbook -share/doc/HTML/ca/kbabel/man-catalogmanager.1.docbook -share/doc/HTML/ca/kbruch/common -share/doc/HTML/ca/kbruch/index.cache.bz2 -share/doc/HTML/ca/kbruch/index.docbook -share/doc/HTML/ca/kbugbuster/common -share/doc/HTML/ca/kbugbuster/index.cache.bz2 -share/doc/HTML/ca/kbugbuster/index.docbook -share/doc/HTML/ca/kcharselect/common -share/doc/HTML/ca/kcharselect/index.cache.bz2 -share/doc/HTML/ca/kcharselect/index.docbook -share/doc/HTML/ca/kcontrol/arts/common -share/doc/HTML/ca/kcontrol/arts/index.cache.bz2 -share/doc/HTML/ca/kcontrol/arts/index.docbook -share/doc/HTML/ca/kcontrol/arts/midi.docbook -share/doc/HTML/ca/kcontrol/background/common -share/doc/HTML/ca/kcontrol/background/index.cache.bz2 -share/doc/HTML/ca/kcontrol/background/index.docbook -share/doc/HTML/ca/kcontrol/bell/common -share/doc/HTML/ca/kcontrol/bell/index.cache.bz2 -share/doc/HTML/ca/kcontrol/bell/index.docbook -share/doc/HTML/ca/kcontrol/cache/common -share/doc/HTML/ca/kcontrol/cache/index.cache.bz2 -share/doc/HTML/ca/kcontrol/cache/index.docbook -share/doc/HTML/ca/kcontrol/clock/common -share/doc/HTML/ca/kcontrol/clock/index.cache.bz2 -share/doc/HTML/ca/kcontrol/clock/index.docbook -share/doc/HTML/ca/kcontrol/colors/common -share/doc/HTML/ca/kcontrol/colors/index.cache.bz2 -share/doc/HTML/ca/kcontrol/colors/index.docbook -share/doc/HTML/ca/kcontrol/common -share/doc/HTML/ca/kcontrol/cookies/common -share/doc/HTML/ca/kcontrol/cookies/index.cache.bz2 -share/doc/HTML/ca/kcontrol/cookies/index.docbook -share/doc/HTML/ca/kcontrol/crypto/common -share/doc/HTML/ca/kcontrol/crypto/index.cache.bz2 -share/doc/HTML/ca/kcontrol/crypto/index.docbook -share/doc/HTML/ca/kcontrol/desktop/common -share/doc/HTML/ca/kcontrol/desktop/index.cache.bz2 -share/doc/HTML/ca/kcontrol/desktop/index.docbook -share/doc/HTML/ca/kcontrol/desktopbehavior/common -share/doc/HTML/ca/kcontrol/desktopbehavior/index.cache.bz2 -share/doc/HTML/ca/kcontrol/desktopbehavior/index.docbook -share/doc/HTML/ca/kcontrol/ebrowsing/common -share/doc/HTML/ca/kcontrol/ebrowsing/index.cache.bz2 -share/doc/HTML/ca/kcontrol/ebrowsing/index.docbook -share/doc/HTML/ca/kcontrol/email/common -share/doc/HTML/ca/kcontrol/email/index.cache.bz2 -share/doc/HTML/ca/kcontrol/email/index.docbook -share/doc/HTML/ca/kcontrol/energy/common -share/doc/HTML/ca/kcontrol/energy/index.cache.bz2 -share/doc/HTML/ca/kcontrol/energy/index.docbook -share/doc/HTML/ca/kcontrol/filemanager/common -share/doc/HTML/ca/kcontrol/filemanager/index.cache.bz2 -share/doc/HTML/ca/kcontrol/filemanager/index.docbook -share/doc/HTML/ca/kcontrol/filetypes/common -share/doc/HTML/ca/kcontrol/filetypes/index.cache.bz2 -share/doc/HTML/ca/kcontrol/filetypes/index.docbook -share/doc/HTML/ca/kcontrol/fonts/common -share/doc/HTML/ca/kcontrol/fonts/index.cache.bz2 -share/doc/HTML/ca/kcontrol/fonts/index.docbook -share/doc/HTML/ca/kcontrol/helpindex/common -share/doc/HTML/ca/kcontrol/helpindex/index.cache.bz2 -share/doc/HTML/ca/kcontrol/helpindex/index.docbook -share/doc/HTML/ca/kcontrol/icons/common -share/doc/HTML/ca/kcontrol/icons/index.cache.bz2 -share/doc/HTML/ca/kcontrol/icons/index.docbook -share/doc/HTML/ca/kcontrol/index.cache.bz2 -share/doc/HTML/ca/kcontrol/index.docbook -share/doc/HTML/ca/kcontrol/kalarmd/common -share/doc/HTML/ca/kcontrol/kalarmd/index.cache.bz2 -share/doc/HTML/ca/kcontrol/kalarmd/index.docbook -share/doc/HTML/ca/kcontrol/kcmaccess/common -share/doc/HTML/ca/kcontrol/kcmaccess/index.cache.bz2 -share/doc/HTML/ca/kcontrol/kcmaccess/index.docbook -share/doc/HTML/ca/kcontrol/kcmcss/common -share/doc/HTML/ca/kcontrol/kcmcss/index.cache.bz2 -share/doc/HTML/ca/kcontrol/kcmcss/index.docbook -share/doc/HTML/ca/kcontrol/kcmfontinst/common -share/doc/HTML/ca/kcontrol/kcmfontinst/index.cache.bz2 -share/doc/HTML/ca/kcontrol/kcmfontinst/index.docbook -share/doc/HTML/ca/kcontrol/kcmkonsole/common -share/doc/HTML/ca/kcontrol/kcmkonsole/index.cache.bz2 -share/doc/HTML/ca/kcontrol/kcmkonsole/index.docbook -share/doc/HTML/ca/kcontrol/kcmktalkd/common -share/doc/HTML/ca/kcontrol/kcmktalkd/index.cache.bz2 -share/doc/HTML/ca/kcontrol/kcmktalkd/index.docbook -share/doc/HTML/ca/kcontrol/kcmlaunch/common -share/doc/HTML/ca/kcontrol/kcmlaunch/index.cache.bz2 -share/doc/HTML/ca/kcontrol/kcmlaunch/index.docbook -share/doc/HTML/ca/kcontrol/kcmlowbatcrit/common -share/doc/HTML/ca/kcontrol/kcmlowbatcrit/index.cache.bz2 -share/doc/HTML/ca/kcontrol/kcmlowbatcrit/index.docbook -share/doc/HTML/ca/kcontrol/kcmlowbatwarn/common -share/doc/HTML/ca/kcontrol/kcmlowbatwarn/index.cache.bz2 -share/doc/HTML/ca/kcontrol/kcmlowbatwarn/index.docbook -share/doc/HTML/ca/kcontrol/kcmnotify/common -share/doc/HTML/ca/kcontrol/kcmnotify/index.cache.bz2 -share/doc/HTML/ca/kcontrol/kcmnotify/index.docbook -share/doc/HTML/ca/kcontrol/kcmsmserver/common -share/doc/HTML/ca/kcontrol/kcmsmserver/index.cache.bz2 -share/doc/HTML/ca/kcontrol/kcmsmserver/index.docbook -share/doc/HTML/ca/kcontrol/kcmstyle/common -share/doc/HTML/ca/kcontrol/kcmstyle/index.cache.bz2 -share/doc/HTML/ca/kcontrol/kcmstyle/index.docbook -share/doc/HTML/ca/kcontrol/kcmtaskbar/common -share/doc/HTML/ca/kcontrol/kcmtaskbar/index.cache.bz2 -share/doc/HTML/ca/kcontrol/kcmtaskbar/index.docbook -share/doc/HTML/ca/kcontrol/kdm/common -share/doc/HTML/ca/kcontrol/kdm/index.cache.bz2 -share/doc/HTML/ca/kcontrol/kdm/index.docbook -share/doc/HTML/ca/kcontrol/keyboard/common -share/doc/HTML/ca/kcontrol/keyboard/index.cache.bz2 -share/doc/HTML/ca/kcontrol/keyboard/index.docbook -share/doc/HTML/ca/kcontrol/keys/common -share/doc/HTML/ca/kcontrol/keys/index.cache.bz2 -share/doc/HTML/ca/kcontrol/keys/index.docbook -share/doc/HTML/ca/kcontrol/khtml/common -share/doc/HTML/ca/kcontrol/khtml/index.cache.bz2 -share/doc/HTML/ca/kcontrol/khtml/index.docbook -share/doc/HTML/ca/kcontrol/khtml/nsplugin.docbook -share/doc/HTML/ca/kcontrol/kmixcfg/common -share/doc/HTML/ca/kcontrol/kmixcfg/index.cache.bz2 -share/doc/HTML/ca/kcontrol/kmixcfg/index.docbook -share/doc/HTML/ca/kcontrol/kwindecoration/common -share/doc/HTML/ca/kcontrol/kwindecoration/index.cache.bz2 -share/doc/HTML/ca/kcontrol/kwindecoration/index.docbook -share/doc/HTML/ca/kcontrol/lanbrowser/common -share/doc/HTML/ca/kcontrol/lanbrowser/index.cache.bz2 -share/doc/HTML/ca/kcontrol/lanbrowser/index.docbook -share/doc/HTML/ca/kcontrol/language/common -share/doc/HTML/ca/kcontrol/language/index.cache.bz2 -share/doc/HTML/ca/kcontrol/language/index.docbook -share/doc/HTML/ca/kcontrol/laptop/common -share/doc/HTML/ca/kcontrol/laptop/index.cache.bz2 -share/doc/HTML/ca/kcontrol/laptop/index.docbook -share/doc/HTML/ca/kcontrol/mouse/common -share/doc/HTML/ca/kcontrol/mouse/index.cache.bz2 -share/doc/HTML/ca/kcontrol/mouse/index.docbook -share/doc/HTML/ca/kcontrol/netpref/common -share/doc/HTML/ca/kcontrol/netpref/index.cache.bz2 -share/doc/HTML/ca/kcontrol/netpref/index.docbook -share/doc/HTML/ca/kcontrol/panel/common -share/doc/HTML/ca/kcontrol/panel/index.cache.bz2 -share/doc/HTML/ca/kcontrol/panel/index.docbook -share/doc/HTML/ca/kcontrol/panelappearance/common -share/doc/HTML/ca/kcontrol/panelappearance/index.cache.bz2 -share/doc/HTML/ca/kcontrol/panelappearance/index.docbook -share/doc/HTML/ca/kcontrol/passwords/common -share/doc/HTML/ca/kcontrol/passwords/index.cache.bz2 -share/doc/HTML/ca/kcontrol/passwords/index.docbook -share/doc/HTML/ca/kcontrol/powerctrl/common -share/doc/HTML/ca/kcontrol/powerctrl/index.cache.bz2 -share/doc/HTML/ca/kcontrol/powerctrl/index.docbook -share/doc/HTML/ca/kcontrol/proxy/common -share/doc/HTML/ca/kcontrol/proxy/index.cache.bz2 -share/doc/HTML/ca/kcontrol/proxy/index.docbook -share/doc/HTML/ca/kcontrol/proxy/socks.docbook -share/doc/HTML/ca/kcontrol/screensaver/common -share/doc/HTML/ca/kcontrol/screensaver/index.cache.bz2 -share/doc/HTML/ca/kcontrol/screensaver/index.docbook -share/doc/HTML/ca/kcontrol/smb/common -share/doc/HTML/ca/kcontrol/smb/index.cache.bz2 -share/doc/HTML/ca/kcontrol/smb/index.docbook -share/doc/HTML/ca/kcontrol/spellchecking/common -share/doc/HTML/ca/kcontrol/spellchecking/index.cache.bz2 -share/doc/HTML/ca/kcontrol/spellchecking/index.docbook -share/doc/HTML/ca/kcontrol/useragent/common -share/doc/HTML/ca/kcontrol/useragent/index.cache.bz2 -share/doc/HTML/ca/kcontrol/useragent/index.docbook -share/doc/HTML/ca/kcontrol/windowmanagement/common -share/doc/HTML/ca/kcontrol/windowmanagement/index.cache.bz2 -share/doc/HTML/ca/kcontrol/windowmanagement/index.docbook -share/doc/HTML/ca/kcron/common -share/doc/HTML/ca/kcron/index.cache.bz2 -share/doc/HTML/ca/kcron/index.docbook -share/doc/HTML/ca/kdat/common -share/doc/HTML/ca/kdat/index.cache.bz2 -share/doc/HTML/ca/kdat/index.docbook -share/doc/HTML/ca/kdebugdialog/common -share/doc/HTML/ca/kdebugdialog/index.cache.bz2 -share/doc/HTML/ca/kdebugdialog/index.docbook -share/doc/HTML/ca/kdelibs/man-artsmessage.1.docbook -share/doc/HTML/ca/kdelibs/man-checkXML.1.docbook -share/doc/HTML/ca/kdelibs/man-dcop.1.docbook -share/doc/HTML/ca/kdelibs/man-kdeoptions.7.docbook -share/doc/HTML/ca/kdelibs/man-qtoptions.7.docbook -share/doc/HTML/ca/kdesu/common -share/doc/HTML/ca/kdesu/index.cache.bz2 -share/doc/HTML/ca/kdesu/index.docbook -share/doc/HTML/ca/kdf/common -share/doc/HTML/ca/kdf/index.cache.bz2 -share/doc/HTML/ca/kdf/index.docbook -share/doc/HTML/ca/kdf/kdf_config.png -share/doc/HTML/ca/keduca/common -share/doc/HTML/ca/keduca/index.cache.bz2 -share/doc/HTML/ca/keduca/index.docbook -share/doc/HTML/ca/kfind/common -share/doc/HTML/ca/kfind/index.cache.bz2 -share/doc/HTML/ca/kfind/index.docbook -share/doc/HTML/ca/khangman/common -share/doc/HTML/ca/khangman/index.cache.bz2 -share/doc/HTML/ca/khangman/index.docbook -share/doc/HTML/ca/khelpcenter/common -share/doc/HTML/ca/khelpcenter/contact.docbook -share/doc/HTML/ca/khelpcenter/faq/about.docbook -share/doc/HTML/ca/khelpcenter/faq/common -share/doc/HTML/ca/khelpcenter/faq/configkde.docbook -share/doc/HTML/ca/khelpcenter/faq/contrib.docbook -share/doc/HTML/ca/khelpcenter/faq/desktop.docbook -share/doc/HTML/ca/khelpcenter/faq/filemng.docbook -share/doc/HTML/ca/khelpcenter/faq/getkde.docbook -share/doc/HTML/ca/khelpcenter/faq/index.cache.bz2 -share/doc/HTML/ca/khelpcenter/faq/index.docbook -share/doc/HTML/ca/khelpcenter/faq/install.docbook -share/doc/HTML/ca/khelpcenter/faq/intro.docbook -share/doc/HTML/ca/khelpcenter/faq/kdeapps.docbook -share/doc/HTML/ca/khelpcenter/faq/misc.docbook -share/doc/HTML/ca/khelpcenter/faq/moreinfo.docbook -share/doc/HTML/ca/khelpcenter/faq/nonkdeapps.docbook -share/doc/HTML/ca/khelpcenter/faq/notrelated.docbook -share/doc/HTML/ca/khelpcenter/faq/panel.docbook -share/doc/HTML/ca/khelpcenter/faq/questions.docbook -share/doc/HTML/ca/khelpcenter/faq/sound.docbook -share/doc/HTML/ca/khelpcenter/faq/tips.docbook -share/doc/HTML/ca/khelpcenter/faq/webbrowse.docbook -share/doc/HTML/ca/khelpcenter/faq/winmng.docbook -share/doc/HTML/ca/khelpcenter/glossary/common -share/doc/HTML/ca/khelpcenter/glossary/index.cache.bz2 -share/doc/HTML/ca/khelpcenter/glossary/index.docbook -share/doc/HTML/ca/khelpcenter/glossary/kdeprintingglossary.docbook -share/doc/HTML/ca/khelpcenter/help.docbook -share/doc/HTML/ca/khelpcenter/index.cache.bz2 -share/doc/HTML/ca/khelpcenter/index.docbook -share/doc/HTML/ca/khelpcenter/links.docbook -share/doc/HTML/ca/khelpcenter/quickstart/common -share/doc/HTML/ca/khelpcenter/quickstart/index.cache.bz2 -share/doc/HTML/ca/khelpcenter/quickstart/index.docbook -share/doc/HTML/ca/khelpcenter/support.docbook -share/doc/HTML/ca/khelpcenter/userguide/about-desktop.docbook -share/doc/HTML/ca/khelpcenter/userguide/common -share/doc/HTML/ca/khelpcenter/userguide/first-impressions.docbook -share/doc/HTML/ca/khelpcenter/userguide/getting-started.docbook -share/doc/HTML/ca/khelpcenter/userguide/history.docbook -share/doc/HTML/ca/khelpcenter/userguide/index.cache.bz2 -share/doc/HTML/ca/khelpcenter/userguide/index.docbook -share/doc/HTML/ca/khelpcenter/userguide/installation.docbook -share/doc/HTML/ca/khelpcenter/userguide/intro.docbook -share/doc/HTML/ca/khelpcenter/userguide/more-help.docbook -share/doc/HTML/ca/khelpcenter/userguide/notices-trademarks.docbook -share/doc/HTML/ca/khelpcenter/userguide/shortcuts.docbook -share/doc/HTML/ca/khelpcenter/userguide/staff.docbook -share/doc/HTML/ca/khelpcenter/userguide/ug-faq.docbook -share/doc/HTML/ca/khelpcenter/visualdict/common -share/doc/HTML/ca/khelpcenter/visualdict/index.cache.bz2 -share/doc/HTML/ca/khelpcenter/visualdict/index.docbook -share/doc/HTML/ca/khelpcenter/welcome.docbook -share/doc/HTML/ca/khelpcenter/whatiskde.docbook -share/doc/HTML/ca/kicker/common -share/doc/HTML/ca/kicker/index.cache.bz2 -share/doc/HTML/ca/kicker/index.docbook -share/doc/HTML/ca/kinfocenter/blockdevices/common -share/doc/HTML/ca/kinfocenter/blockdevices/index.cache.bz2 -share/doc/HTML/ca/kinfocenter/blockdevices/index.docbook -share/doc/HTML/ca/kioslave/audiocd.docbook -share/doc/HTML/ca/kioslave/bzip.docbook -share/doc/HTML/ca/kioslave/bzip2.docbook -share/doc/HTML/ca/kioslave/cgi.docbook -share/doc/HTML/ca/kioslave/common -share/doc/HTML/ca/kioslave/data.docbook -share/doc/HTML/ca/kioslave/file.docbook -share/doc/HTML/ca/kioslave/finger.docbook -share/doc/HTML/ca/kioslave/fish.docbook -share/doc/HTML/ca/kioslave/floppy.docbook -share/doc/HTML/ca/kioslave/ftp.docbook -share/doc/HTML/ca/kioslave/gopher.docbook -share/doc/HTML/ca/kioslave/gzip.docbook -share/doc/HTML/ca/kioslave/help.docbook -share/doc/HTML/ca/kioslave/http.docbook -share/doc/HTML/ca/kioslave/https.docbook -share/doc/HTML/ca/kioslave/imap.docbook -share/doc/HTML/ca/kioslave/imaps.docbook -share/doc/HTML/ca/kioslave/index.cache.bz2 -share/doc/HTML/ca/kioslave/index.docbook -share/doc/HTML/ca/kioslave/info.docbook -share/doc/HTML/ca/kioslave/lan.docbook -share/doc/HTML/ca/kioslave/ldap.docbook -share/doc/HTML/ca/kioslave/mac.docbook -share/doc/HTML/ca/kioslave/mailto.docbook -share/doc/HTML/ca/kioslave/man.docbook -share/doc/HTML/ca/kioslave/mrml.docbook -share/doc/HTML/ca/kioslave/news.docbook -share/doc/HTML/ca/kioslave/nfs.docbook -share/doc/HTML/ca/kioslave/nntp.docbook -share/doc/HTML/ca/kioslave/pop3.docbook -share/doc/HTML/ca/kioslave/pop3s.docbook -share/doc/HTML/ca/kioslave/print.docbook -share/doc/HTML/ca/kioslave/rlan.docbook -share/doc/HTML/ca/kioslave/rlogin.docbook -share/doc/HTML/ca/kioslave/sftp.docbook -share/doc/HTML/ca/kioslave/smb.docbook -share/doc/HTML/ca/kioslave/smtp.docbook -share/doc/HTML/ca/kioslave/tar.docbook -share/doc/HTML/ca/kioslave/telnet.docbook -share/doc/HTML/ca/kioslave/thumbnail.docbook -share/doc/HTML/ca/kioslave/webdav.docbook -share/doc/HTML/ca/kioslave/webdavs.docbook -share/doc/HTML/ca/kleopatra/common -share/doc/HTML/ca/kleopatra/index.cache.bz2 -share/doc/HTML/ca/kleopatra/index.docbook -share/doc/HTML/ca/klettres/common -share/doc/HTML/ca/klettres/index.cache.bz2 -share/doc/HTML/ca/klettres/index.docbook -share/doc/HTML/ca/klickety/common -share/doc/HTML/ca/klickety/index.cache.bz2 -share/doc/HTML/ca/klickety/index.docbook -share/doc/HTML/ca/klipper/common -share/doc/HTML/ca/klipper/index.cache.bz2 -share/doc/HTML/ca/klipper/index.docbook -share/doc/HTML/ca/kmail/common -share/doc/HTML/ca/kmail/configure.docbook -share/doc/HTML/ca/kmail/credits-and-licenses.docbook -share/doc/HTML/ca/kmail/faq.docbook -share/doc/HTML/ca/kmail/getting-started.docbook -share/doc/HTML/ca/kmail/importing.docbook -share/doc/HTML/ca/kmail/index.cache.bz2 -share/doc/HTML/ca/kmail/index.docbook -share/doc/HTML/ca/kmail/intro.docbook -share/doc/HTML/ca/kmail/menus.docbook -share/doc/HTML/ca/kmail/using-kmail.docbook -share/doc/HTML/ca/kmenuedit/common -share/doc/HTML/ca/kmenuedit/index.cache.bz2 -share/doc/HTML/ca/kmenuedit/index.docbook -share/doc/HTML/ca/kmessedwords/common -share/doc/HTML/ca/kmessedwords/index.cache.bz2 -share/doc/HTML/ca/kmessedwords/index.docbook -share/doc/HTML/ca/kmoon/common -share/doc/HTML/ca/kmoon/index.cache.bz2 -share/doc/HTML/ca/kmoon/index.docbook -share/doc/HTML/ca/kompare/common -share/doc/HTML/ca/kompare/index.cache.bz2 -share/doc/HTML/ca/kompare/index.docbook -share/doc/HTML/ca/konq-plugins/babel/common -share/doc/HTML/ca/konq-plugins/babel/index.cache.bz2 -share/doc/HTML/ca/konq-plugins/babel/index.docbook -share/doc/HTML/ca/konq-plugins/common -share/doc/HTML/ca/konq-plugins/crashes/common -share/doc/HTML/ca/konq-plugins/crashes/index.cache.bz2 -share/doc/HTML/ca/konq-plugins/crashes/index.docbook -share/doc/HTML/ca/konq-plugins/dirfilter/common -share/doc/HTML/ca/konq-plugins/dirfilter/index.cache.bz2 -share/doc/HTML/ca/konq-plugins/dirfilter/index.docbook -share/doc/HTML/ca/konq-plugins/domtreeviewer/common -share/doc/HTML/ca/konq-plugins/domtreeviewer/index.cache.bz2 -share/doc/HTML/ca/konq-plugins/domtreeviewer/index.docbook -share/doc/HTML/ca/konq-plugins/fsview/common -share/doc/HTML/ca/konq-plugins/fsview/index.cache.bz2 -share/doc/HTML/ca/konq-plugins/fsview/index.docbook -share/doc/HTML/ca/konq-plugins/imgallery/common -share/doc/HTML/ca/konq-plugins/imgallery/index.cache.bz2 -share/doc/HTML/ca/konq-plugins/imgallery/index.docbook -share/doc/HTML/ca/konq-plugins/index.cache.bz2 -share/doc/HTML/ca/konq-plugins/index.docbook -share/doc/HTML/ca/konq-plugins/khtmlsettings/common -share/doc/HTML/ca/konq-plugins/khtmlsettings/index.cache.bz2 -share/doc/HTML/ca/konq-plugins/khtmlsettings/index.docbook -share/doc/HTML/ca/konq-plugins/kuick/common -share/doc/HTML/ca/konq-plugins/kuick/index.cache.bz2 -share/doc/HTML/ca/konq-plugins/kuick/index.docbook -share/doc/HTML/ca/konq-plugins/mediaplayer/common -share/doc/HTML/ca/konq-plugins/mediaplayer/index.cache.bz2 -share/doc/HTML/ca/konq-plugins/mediaplayer/index.docbook -share/doc/HTML/ca/konq-plugins/smbmounter/common -share/doc/HTML/ca/konq-plugins/smbmounter/index.cache.bz2 -share/doc/HTML/ca/konq-plugins/smbmounter/index.docbook -share/doc/HTML/ca/konq-plugins/uachanger/common -share/doc/HTML/ca/konq-plugins/uachanger/index.cache.bz2 -share/doc/HTML/ca/konq-plugins/uachanger/index.docbook -share/doc/HTML/ca/konq-plugins/validators/common -share/doc/HTML/ca/konq-plugins/validators/index.cache.bz2 -share/doc/HTML/ca/konq-plugins/validators/index.docbook -share/doc/HTML/ca/konq-plugins/webarchiver/common -share/doc/HTML/ca/konq-plugins/webarchiver/index.cache.bz2 -share/doc/HTML/ca/konq-plugins/webarchiver/index.docbook -share/doc/HTML/ca/konqueror/basics.docbook -share/doc/HTML/ca/konqueror/bookmarks.docbook -share/doc/HTML/ca/konqueror/browser.docbook -share/doc/HTML/ca/konqueror/commands.docbook -share/doc/HTML/ca/konqueror/common -share/doc/HTML/ca/konqueror/config.docbook -share/doc/HTML/ca/konqueror/credits.docbook -share/doc/HTML/ca/konqueror/faq.docbook -share/doc/HTML/ca/konqueror/filemanager.docbook -share/doc/HTML/ca/konqueror/index.cache.bz2 -share/doc/HTML/ca/konqueror/index.docbook -share/doc/HTML/ca/konqueror/introduction.docbook -share/doc/HTML/ca/konqueror/man-kbookmarkmerger.1.docbook -share/doc/HTML/ca/konqueror/path-complete.docbook -share/doc/HTML/ca/konqueror/plugins.docbook -share/doc/HTML/ca/konqueror/save-settings.docbook -share/doc/HTML/ca/konqueror/sidebar.docbook -share/doc/HTML/ca/kpackage/common -share/doc/HTML/ca/kpackage/index.cache.bz2 -share/doc/HTML/ca/kpackage/index.docbook -share/doc/HTML/ca/kpager/common -share/doc/HTML/ca/kpager/index.cache.bz2 -share/doc/HTML/ca/kpager/index.docbook -share/doc/HTML/ca/kpercentage/commands.docbook -share/doc/HTML/ca/kpercentage/common -share/doc/HTML/ca/kpercentage/credits.docbook -share/doc/HTML/ca/kpercentage/devel.docbook -share/doc/HTML/ca/kpercentage/faq.docbook -share/doc/HTML/ca/kpercentage/index.cache.bz2 -share/doc/HTML/ca/kpercentage/index.docbook -share/doc/HTML/ca/kpercentage/install.docbook -share/doc/HTML/ca/kpercentage/introduction.docbook -share/doc/HTML/ca/kpercentage/using.docbook -share/doc/HTML/ca/kpf/common -share/doc/HTML/ca/kpf/index.cache.bz2 -share/doc/HTML/ca/kpf/index.docbook -share/doc/HTML/ca/kpovmodeler/common -share/doc/HTML/ca/kpovmodeler/index.cache.bz2 -share/doc/HTML/ca/kpovmodeler/index.docbook -share/doc/HTML/ca/krdc/common -share/doc/HTML/ca/krdc/index.cache.bz2 -share/doc/HTML/ca/krdc/index.docbook -share/doc/HTML/ca/krfb/common -share/doc/HTML/ca/krfb/index.cache.bz2 -share/doc/HTML/ca/krfb/index.docbook -share/doc/HTML/ca/ksim/common -share/doc/HTML/ca/ksim/index.cache.bz2 -share/doc/HTML/ca/ksim/index.docbook -share/doc/HTML/ca/kspell/common -share/doc/HTML/ca/kspell/index.cache.bz2 -share/doc/HTML/ca/kspell/index.docbook -share/doc/HTML/ca/ksplashml/common -share/doc/HTML/ca/ksplashml/index.cache.bz2 -share/doc/HTML/ca/ksplashml/index.docbook -share/doc/HTML/ca/kstars/ai-contents.docbook -share/doc/HTML/ca/kstars/altvstime.docbook -share/doc/HTML/ca/kstars/astroinfo.docbook -share/doc/HTML/ca/kstars/blackbody.docbook -share/doc/HTML/ca/kstars/calc-apcoords.docbook -share/doc/HTML/ca/kstars/calc-dayduration.docbook -share/doc/HTML/ca/kstars/calc-eqgal.docbook -share/doc/HTML/ca/kstars/calc-geodetic.docbook -share/doc/HTML/ca/kstars/calc-horizontal.docbook -share/doc/HTML/ca/kstars/calc-julianday.docbook -share/doc/HTML/ca/kstars/calc-precess.docbook -share/doc/HTML/ca/kstars/calc-sidereal.docbook -share/doc/HTML/ca/kstars/calculator.docbook -share/doc/HTML/ca/kstars/cequator.docbook -share/doc/HTML/ca/kstars/colorandtemp.docbook -share/doc/HTML/ca/kstars/commands.docbook -share/doc/HTML/ca/kstars/common -share/doc/HTML/ca/kstars/config.docbook -share/doc/HTML/ca/kstars/cpoles.docbook -share/doc/HTML/ca/kstars/credits.docbook -share/doc/HTML/ca/kstars/csphere.docbook -share/doc/HTML/ca/kstars/darkmatter.docbook -share/doc/HTML/ca/kstars/dcop.docbook -share/doc/HTML/ca/kstars/details.docbook -share/doc/HTML/ca/kstars/dumpmode.docbook -share/doc/HTML/ca/kstars/ecliptic.docbook -share/doc/HTML/ca/kstars/ellipticalgalaxies.docbook -share/doc/HTML/ca/kstars/equinox.docbook -share/doc/HTML/ca/kstars/faq.docbook -share/doc/HTML/ca/kstars/flux.docbook -share/doc/HTML/ca/kstars/geocoords.docbook -share/doc/HTML/ca/kstars/greatcircle.docbook -share/doc/HTML/ca/kstars/horizon.docbook -share/doc/HTML/ca/kstars/hourangle.docbook -share/doc/HTML/ca/kstars/index.cache.bz2 -share/doc/HTML/ca/kstars/index.docbook -share/doc/HTML/ca/kstars/indi.docbook -share/doc/HTML/ca/kstars/install.docbook -share/doc/HTML/ca/kstars/jmoons.docbook -share/doc/HTML/ca/kstars/julianday.docbook -share/doc/HTML/ca/kstars/leapyear.docbook -share/doc/HTML/ca/kstars/lightcurves.docbook -share/doc/HTML/ca/kstars/luminosity.docbook -share/doc/HTML/ca/kstars/magnitude.docbook -share/doc/HTML/ca/kstars/meridian.docbook -share/doc/HTML/ca/kstars/parallax.docbook -share/doc/HTML/ca/kstars/precession.docbook -share/doc/HTML/ca/kstars/quicktour.docbook -share/doc/HTML/ca/kstars/retrograde.docbook -share/doc/HTML/ca/kstars/scriptbuilder.docbook -share/doc/HTML/ca/kstars/sidereal.docbook -share/doc/HTML/ca/kstars/skycoords.docbook -share/doc/HTML/ca/kstars/solarsys.docbook -share/doc/HTML/ca/kstars/spiralgalaxies.docbook -share/doc/HTML/ca/kstars/stars.docbook -share/doc/HTML/ca/kstars/timezones.docbook -share/doc/HTML/ca/kstars/tools.docbook -share/doc/HTML/ca/kstars/utime.docbook -share/doc/HTML/ca/kstars/wut.docbook -share/doc/HTML/ca/kstars/zenith.docbook -share/doc/HTML/ca/ksysguard/common -share/doc/HTML/ca/ksysguard/index.cache.bz2 -share/doc/HTML/ca/ksysguard/index.docbook -share/doc/HTML/ca/ksysv/common -share/doc/HTML/ca/ksysv/index.cache.bz2 -share/doc/HTML/ca/ksysv/index.docbook -share/doc/HTML/ca/ktimer/common -share/doc/HTML/ca/ktimer/index.cache.bz2 -share/doc/HTML/ca/ktimer/index.docbook -share/doc/HTML/ca/ktouch/common -share/doc/HTML/ca/ktouch/index.cache.bz2 -share/doc/HTML/ca/ktouch/index.docbook -share/doc/HTML/ca/kturtle/glossary.docbook -share/doc/HTML/ca/kuser/common -share/doc/HTML/ca/kuser/index.cache.bz2 -share/doc/HTML/ca/kuser/index.docbook -share/doc/HTML/ca/kwallet/common -share/doc/HTML/ca/kwallet/index.cache.bz2 -share/doc/HTML/ca/kwallet/index.docbook -share/doc/HTML/ca/kweather/common -share/doc/HTML/ca/kweather/index.cache.bz2 -share/doc/HTML/ca/kweather/index.docbook -share/doc/HTML/ca/kwordquiz/common -share/doc/HTML/ca/kwordquiz/index.cache.bz2 -share/doc/HTML/ca/kwordquiz/index.docbook -share/doc/HTML/ca/kworldclock/common -share/doc/HTML/ca/kworldclock/index.cache.bz2 -share/doc/HTML/ca/kworldclock/index.docbook -share/doc/HTML/ca/kxkb/common -share/doc/HTML/ca/kxkb/index.cache.bz2 -share/doc/HTML/ca/kxkb/index.docbook -share/doc/HTML/ca/scripts/man-adddebug.1.docbook -share/doc/HTML/ca/scripts/man-cheatmake.1.docbook -share/doc/HTML/ca/scripts/man-create_cvsignore.1.docbook -share/doc/HTML/ca/scripts/man-create_makefile.1.docbook -share/doc/HTML/ca/scripts/man-create_makefiles.1.docbook -share/doc/HTML/ca/scripts/man-cvscheck.1.docbook -share/doc/HTML/ca/scripts/man-cvslastchange.1.docbook -share/doc/HTML/ca/scripts/man-cvslastlog.1.docbook -share/doc/HTML/ca/scripts/man-cvsrevertlast.1.docbook -share/doc/HTML/ca/scripts/man-cxxmetric.1.docbook -share/doc/HTML/ca/scripts/man-demangle.1.docbook -share/doc/HTML/ca/scripts/man-extend_dmalloc.1.docbook -share/doc/HTML/ca/scripts/man-extractrc.1.docbook -share/doc/HTML/ca/scripts/man-fixincludes.1.docbook -share/doc/HTML/ca/scripts/man-po2xml.1.docbook -share/doc/HTML/ca/scripts/man-pruneemptydirs.1.docbook -share/doc/HTML/ca/scripts/man-qtdoc.1.docbook -share/doc/HTML/ca/scripts/man-reportview.1.docbook -share/doc/HTML/ca/scripts/man-split2po.1.docbook -share/doc/HTML/ca/scripts/man-swappo.1.docbook -share/doc/HTML/ca/scripts/man-transxx.1.docbook -share/doc/HTML/ca/scripts/man-xml2pot.1.docbook -share/doc/HTML/ca/scripts/man-zonetab2pot.1.docbook -share/locale/ca/LC_MESSAGES/akregator.mo -share/locale/ca/LC_MESSAGES/akregator_konqplugin.mo -share/locale/ca/LC_MESSAGES/alsaplayerui.mo -share/locale/ca/LC_MESSAGES/amor.mo -share/locale/ca/LC_MESSAGES/appletproxy.mo -share/locale/ca/LC_MESSAGES/ark.mo -share/locale/ca/LC_MESSAGES/ark_plugin.mo -share/locale/ca/LC_MESSAGES/artsbuilder.mo -share/locale/ca/LC_MESSAGES/artscontrol.mo -share/locale/ca/LC_MESSAGES/artsmodules.mo -share/locale/ca/LC_MESSAGES/atlantik.mo -share/locale/ca/LC_MESSAGES/atlantikdesigner.mo -share/locale/ca/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/ca/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/ca/LC_MESSAGES/audiorename_plugin.mo -share/locale/ca/LC_MESSAGES/autorefresh.mo -share/locale/ca/LC_MESSAGES/babelfish.mo -share/locale/ca/LC_MESSAGES/cervisia.mo -share/locale/ca/LC_MESSAGES/charlatanui.mo -share/locale/ca/LC_MESSAGES/childpanelextension.mo -share/locale/ca/LC_MESSAGES/clockapplet.mo -share/locale/ca/LC_MESSAGES/crashesplugin.mo -share/locale/ca/LC_MESSAGES/cupsdconf.mo -share/locale/ca/LC_MESSAGES/cvsservice.mo -share/locale/ca/LC_MESSAGES/dcoprss.mo -share/locale/ca/LC_MESSAGES/devicesapplet.mo -share/locale/ca/LC_MESSAGES/dirfilterplugin.mo -share/locale/ca/LC_MESSAGES/display.mo -share/locale/ca/LC_MESSAGES/dockbarextension.mo -share/locale/ca/LC_MESSAGES/domtreeviewer.mo -share/locale/ca/LC_MESSAGES/drkonqi.mo -share/locale/ca/LC_MESSAGES/dub.mo -share/locale/ca/LC_MESSAGES/extensionproxy.mo -share/locale/ca/LC_MESSAGES/ffrs.mo -share/locale/ca/LC_MESSAGES/filetypes.mo -share/locale/ca/LC_MESSAGES/fontinst.mo -share/locale/ca/LC_MESSAGES/fsview.mo -share/locale/ca/LC_MESSAGES/htmlsearch.mo -share/locale/ca/LC_MESSAGES/imagerename_plugin.mo -share/locale/ca/LC_MESSAGES/imgalleryplugin.mo -share/locale/ca/LC_MESSAGES/irkick.mo -share/locale/ca/LC_MESSAGES/jefferson.mo -share/locale/ca/LC_MESSAGES/joystick.mo -share/locale/ca/LC_MESSAGES/juk.mo -share/locale/ca/LC_MESSAGES/kabc2mutt.mo -share/locale/ca/LC_MESSAGES/kabc_dir.mo -share/locale/ca/LC_MESSAGES/kabc_file.mo -share/locale/ca/LC_MESSAGES/kabc_ldap.mo -share/locale/ca/LC_MESSAGES/kabc_ldapkio.mo -share/locale/ca/LC_MESSAGES/kabc_net.mo -share/locale/ca/LC_MESSAGES/kabc_slox.mo -share/locale/ca/LC_MESSAGES/kabc_sql.mo -share/locale/ca/LC_MESSAGES/kabcformat_binary.mo -share/locale/ca/LC_MESSAGES/kaboodle.mo -share/locale/ca/LC_MESSAGES/kaccess.mo -share/locale/ca/LC_MESSAGES/kaddressbook.mo -share/locale/ca/LC_MESSAGES/kalarm.mo -share/locale/ca/LC_MESSAGES/kalzium.mo -share/locale/ca/LC_MESSAGES/kandy.mo -share/locale/ca/LC_MESSAGES/kappfinder.mo -share/locale/ca/LC_MESSAGES/karm.mo -share/locale/ca/LC_MESSAGES/kasbarextension.mo -share/locale/ca/LC_MESSAGES/kasteroids.mo -share/locale/ca/LC_MESSAGES/kate.mo -share/locale/ca/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/ca/LC_MESSAGES/katedefaultproject.mo -share/locale/ca/LC_MESSAGES/katefiletemplates.mo -share/locale/ca/LC_MESSAGES/katefll_initplugin.mo -share/locale/ca/LC_MESSAGES/katefll_plugin.mo -share/locale/ca/LC_MESSAGES/katehelloworld.mo -share/locale/ca/LC_MESSAGES/katehtmltools.mo -share/locale/ca/LC_MESSAGES/kateinsertcommand.mo -share/locale/ca/LC_MESSAGES/katekjswrapper.mo -share/locale/ca/LC_MESSAGES/katekttsd.mo -share/locale/ca/LC_MESSAGES/katemake.mo -share/locale/ca/LC_MESSAGES/katemodeline.mo -share/locale/ca/LC_MESSAGES/kateopenheader.mo -share/locale/ca/LC_MESSAGES/katepart.mo -share/locale/ca/LC_MESSAGES/katepartkttsd.mo -share/locale/ca/LC_MESSAGES/kateprojectmanager.mo -share/locale/ca/LC_MESSAGES/katepybrowse.mo -share/locale/ca/LC_MESSAGES/katesnippets.mo -share/locale/ca/LC_MESSAGES/katespell.mo -share/locale/ca/LC_MESSAGES/katetabbarextension.mo -share/locale/ca/LC_MESSAGES/katetextfilter.mo -share/locale/ca/LC_MESSAGES/katexmlcheck.mo -share/locale/ca/LC_MESSAGES/katexmltools.mo -share/locale/ca/LC_MESSAGES/katomic.mo -share/locale/ca/LC_MESSAGES/kaudiocreator.mo -share/locale/ca/LC_MESSAGES/kbabel.mo -share/locale/ca/LC_MESSAGES/kbackgammon.mo -share/locale/ca/LC_MESSAGES/kbattleship.mo -share/locale/ca/LC_MESSAGES/kbinaryclock.mo -share/locale/ca/LC_MESSAGES/kblackbox.mo -share/locale/ca/LC_MESSAGES/kbounce.mo -share/locale/ca/LC_MESSAGES/kbruch.mo -share/locale/ca/LC_MESSAGES/kbstateapplet.mo -share/locale/ca/LC_MESSAGES/kbugbuster.mo -share/locale/ca/LC_MESSAGES/kcachegrind.mo -share/locale/ca/LC_MESSAGES/kcalc.mo -share/locale/ca/LC_MESSAGES/kcharselect.mo -share/locale/ca/LC_MESSAGES/kcharselectapplet.mo -share/locale/ca/LC_MESSAGES/kcm_krfb.mo -share/locale/ca/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/ca/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/ca/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/ca/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/ca/LC_MESSAGES/kcmaccess.mo -share/locale/ca/LC_MESSAGES/kcmaccessibility.mo -share/locale/ca/LC_MESSAGES/kcmarts.mo -share/locale/ca/LC_MESSAGES/kcmaudiocd.mo -share/locale/ca/LC_MESSAGES/kcmbackground.mo -share/locale/ca/LC_MESSAGES/kcmbell.mo -share/locale/ca/LC_MESSAGES/kcmcddb.mo -share/locale/ca/LC_MESSAGES/kcmcgi.mo -share/locale/ca/LC_MESSAGES/kcmcolors.mo -share/locale/ca/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/ca/LC_MESSAGES/kcmcrypto.mo -share/locale/ca/LC_MESSAGES/kcmcss.mo -share/locale/ca/LC_MESSAGES/kcmemail.mo -share/locale/ca/LC_MESSAGES/kcmenergy.mo -share/locale/ca/LC_MESSAGES/kcmfonts.mo -share/locale/ca/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/ca/LC_MESSAGES/kcmicons.mo -share/locale/ca/LC_MESSAGES/kcminfo.mo -share/locale/ca/LC_MESSAGES/kcminput.mo -share/locale/ca/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/ca/LC_MESSAGES/kcmkabconfig.mo -share/locale/ca/LC_MESSAGES/kcmkamera.mo -share/locale/ca/LC_MESSAGES/kcmkclock.mo -share/locale/ca/LC_MESSAGES/kcmkded.mo -share/locale/ca/LC_MESSAGES/kcmkdnssd.mo -share/locale/ca/LC_MESSAGES/kcmkeys.mo -share/locale/ca/LC_MESSAGES/kcmkicker.mo -share/locale/ca/LC_MESSAGES/kcmkio.mo -share/locale/ca/LC_MESSAGES/kcmkmix.mo -share/locale/ca/LC_MESSAGES/kcmkonq.mo -share/locale/ca/LC_MESSAGES/kcmkonqhtml.mo -share/locale/ca/LC_MESSAGES/kcmkonsole.mo -share/locale/ca/LC_MESSAGES/kcmkontactnt.mo -share/locale/ca/LC_MESSAGES/kcmktalkd.mo -share/locale/ca/LC_MESSAGES/kcmkttsd.mo -share/locale/ca/LC_MESSAGES/kcmkuick.mo -share/locale/ca/LC_MESSAGES/kcmkurifilt.mo -share/locale/ca/LC_MESSAGES/kcmkvaio.mo -share/locale/ca/LC_MESSAGES/kcmkwallet.mo -share/locale/ca/LC_MESSAGES/kcmkwindecoration.mo -share/locale/ca/LC_MESSAGES/kcmkwinrules.mo -share/locale/ca/LC_MESSAGES/kcmkwintheme.mo -share/locale/ca/LC_MESSAGES/kcmkwm.mo -share/locale/ca/LC_MESSAGES/kcmkxmlrpcd.mo -share/locale/ca/LC_MESSAGES/kcmlanbrowser.mo -share/locale/ca/LC_MESSAGES/kcmlaptop.mo -share/locale/ca/LC_MESSAGES/kcmlaunch.mo -share/locale/ca/LC_MESSAGES/kcmlayout.mo -share/locale/ca/LC_MESSAGES/kcmlilo.mo -share/locale/ca/LC_MESSAGES/kcmlirc.mo -share/locale/ca/LC_MESSAGES/kcmlocale.mo -share/locale/ca/LC_MESSAGES/kcmmediacontrol.mo -share/locale/ca/LC_MESSAGES/kcmmidi.mo -share/locale/ca/LC_MESSAGES/kcmnic.mo -share/locale/ca/LC_MESSAGES/kcmnotify.mo -share/locale/ca/LC_MESSAGES/kcmperformance.mo -share/locale/ca/LC_MESSAGES/kcmprintmgr.mo -share/locale/ca/LC_MESSAGES/kcmsamba.mo -share/locale/ca/LC_MESSAGES/kcmscreensaver.mo -share/locale/ca/LC_MESSAGES/kcmshell.mo -share/locale/ca/LC_MESSAGES/kcmsmartcard.mo -share/locale/ca/LC_MESSAGES/kcmsmserver.mo -share/locale/ca/LC_MESSAGES/kcmsocks.mo -share/locale/ca/LC_MESSAGES/kcmspellchecking.mo -share/locale/ca/LC_MESSAGES/kcmstyle.mo -share/locale/ca/LC_MESSAGES/kcmtaskbar.mo -share/locale/ca/LC_MESSAGES/kcmthinkpad.mo -share/locale/ca/LC_MESSAGES/kcmusb.mo -share/locale/ca/LC_MESSAGES/kcmview1394.mo -share/locale/ca/LC_MESSAGES/kcmvim.mo -share/locale/ca/LC_MESSAGES/kcmwifi.mo -share/locale/ca/LC_MESSAGES/kcmxinerama.mo -share/locale/ca/LC_MESSAGES/kcoloredit.mo -share/locale/ca/LC_MESSAGES/kcontrol.mo -share/locale/ca/LC_MESSAGES/kcron.mo -share/locale/ca/LC_MESSAGES/kdat.mo -share/locale/ca/LC_MESSAGES/kdcop.mo -share/locale/ca/LC_MESSAGES/kdebugdialog.mo -share/locale/ca/LC_MESSAGES/kdelibs.mo -share/locale/ca/LC_MESSAGES/kdelibs_colors.mo -share/locale/ca/LC_MESSAGES/kdelirc.mo -share/locale/ca/LC_MESSAGES/kdepasswd.mo -share/locale/ca/LC_MESSAGES/kdepimresources.mo -share/locale/ca/LC_MESSAGES/kdepimwizards.mo -share/locale/ca/LC_MESSAGES/kdeprint.mo -share/locale/ca/LC_MESSAGES/kdeprint_part.mo -share/locale/ca/LC_MESSAGES/kdeprintfax.mo -share/locale/ca/LC_MESSAGES/kdesktop.mo -share/locale/ca/LC_MESSAGES/kdessh.mo -share/locale/ca/LC_MESSAGES/kdesu.mo -share/locale/ca/LC_MESSAGES/kdesud.mo -share/locale/ca/LC_MESSAGES/kdevdesigner.mo -share/locale/ca/LC_MESSAGES/kdevelop.mo -share/locale/ca/LC_MESSAGES/kdevtipofday.mo -share/locale/ca/LC_MESSAGES/kdf.mo -share/locale/ca/LC_MESSAGES/kdgantt.mo -share/locale/ca/LC_MESSAGES/kdialog.mo -share/locale/ca/LC_MESSAGES/kdict.mo -share/locale/ca/LC_MESSAGES/kdictapplet.mo -share/locale/ca/LC_MESSAGES/kdmchooser.mo -share/locale/ca/LC_MESSAGES/kdmconfig.mo -share/locale/ca/LC_MESSAGES/kdmgreet.mo -share/locale/ca/LC_MESSAGES/kdvi.mo -share/locale/ca/LC_MESSAGES/kedit.mo -share/locale/ca/LC_MESSAGES/keduca.mo -share/locale/ca/LC_MESSAGES/kenolaba.mo -share/locale/ca/LC_MESSAGES/kfax.mo -share/locale/ca/LC_MESSAGES/kfifteenapplet.mo -share/locale/ca/LC_MESSAGES/kfile_au.mo -share/locale/ca/LC_MESSAGES/kfile_avi.mo -share/locale/ca/LC_MESSAGES/kfile_bmp.mo -share/locale/ca/LC_MESSAGES/kfile_cert.mo -share/locale/ca/LC_MESSAGES/kfile_cpp.mo -share/locale/ca/LC_MESSAGES/kfile_dds.mo -share/locale/ca/LC_MESSAGES/kfile_deb.mo -share/locale/ca/LC_MESSAGES/kfile_desktop.mo -share/locale/ca/LC_MESSAGES/kfile_diff.mo -share/locale/ca/LC_MESSAGES/kfile_drgeo.mo -share/locale/ca/LC_MESSAGES/kfile_dvi.mo -share/locale/ca/LC_MESSAGES/kfile_exr.mo -share/locale/ca/LC_MESSAGES/kfile_flac.mo -share/locale/ca/LC_MESSAGES/kfile_folder.mo -share/locale/ca/LC_MESSAGES/kfile_font.mo -share/locale/ca/LC_MESSAGES/kfile_gif.mo -share/locale/ca/LC_MESSAGES/kfile_html.mo -share/locale/ca/LC_MESSAGES/kfile_ico.mo -share/locale/ca/LC_MESSAGES/kfile_ics.mo -share/locale/ca/LC_MESSAGES/kfile_jpeg.mo -share/locale/ca/LC_MESSAGES/kfile_kig.mo -share/locale/ca/LC_MESSAGES/kfile_lnk.mo -share/locale/ca/LC_MESSAGES/kfile_m3u.mo -share/locale/ca/LC_MESSAGES/kfile_mhtml.mo -share/locale/ca/LC_MESSAGES/kfile_mp3.mo -share/locale/ca/LC_MESSAGES/kfile_mpc.mo -share/locale/ca/LC_MESSAGES/kfile_ogg.mo -share/locale/ca/LC_MESSAGES/kfile_palm.mo -share/locale/ca/LC_MESSAGES/kfile_pcx.mo -share/locale/ca/LC_MESSAGES/kfile_pdf.mo -share/locale/ca/LC_MESSAGES/kfile_png.mo -share/locale/ca/LC_MESSAGES/kfile_pnm.mo -share/locale/ca/LC_MESSAGES/kfile_po.mo -share/locale/ca/LC_MESSAGES/kfile_ps.mo -share/locale/ca/LC_MESSAGES/kfile_rfc822.mo -share/locale/ca/LC_MESSAGES/kfile_rgb.mo -share/locale/ca/LC_MESSAGES/kfile_rpm.mo -share/locale/ca/LC_MESSAGES/kfile_sid.mo -share/locale/ca/LC_MESSAGES/kfile_tga.mo -share/locale/ca/LC_MESSAGES/kfile_theora.mo -share/locale/ca/LC_MESSAGES/kfile_tiff.mo -share/locale/ca/LC_MESSAGES/kfile_torrent.mo -share/locale/ca/LC_MESSAGES/kfile_ts.mo -share/locale/ca/LC_MESSAGES/kfile_txt.mo -share/locale/ca/LC_MESSAGES/kfile_vcf.mo -share/locale/ca/LC_MESSAGES/kfile_wav.mo -share/locale/ca/LC_MESSAGES/kfile_xbm.mo -share/locale/ca/LC_MESSAGES/kfile_xpm.mo -share/locale/ca/LC_MESSAGES/kfileaudiopreview.mo -share/locale/ca/LC_MESSAGES/kfilereplace.mo -share/locale/ca/LC_MESSAGES/kfileshare.mo -share/locale/ca/LC_MESSAGES/kfindpart.mo -share/locale/ca/LC_MESSAGES/kfloppy.mo -share/locale/ca/LC_MESSAGES/kfmclient.mo -share/locale/ca/LC_MESSAGES/kfontinst.mo -share/locale/ca/LC_MESSAGES/kfouleggs.mo -share/locale/ca/LC_MESSAGES/kgamma.mo -share/locale/ca/LC_MESSAGES/kgantt.mo -share/locale/ca/LC_MESSAGES/kget.mo -share/locale/ca/LC_MESSAGES/kghostview.mo -share/locale/ca/LC_MESSAGES/kgoldrunner.mo -share/locale/ca/LC_MESSAGES/kgpg.mo -share/locale/ca/LC_MESSAGES/kgreet_classic.mo -share/locale/ca/LC_MESSAGES/kgreet_winbind.mo -share/locale/ca/LC_MESSAGES/khangman.mo -share/locale/ca/LC_MESSAGES/khelpcenter.mo -share/locale/ca/LC_MESSAGES/khexedit.mo -share/locale/ca/LC_MESSAGES/khexedit2part.mo -share/locale/ca/LC_MESSAGES/khotkeys.mo -share/locale/ca/LC_MESSAGES/khtmlkttsd.mo -share/locale/ca/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/ca/LC_MESSAGES/kicker.mo -share/locale/ca/LC_MESSAGES/kiconedit.mo -share/locale/ca/LC_MESSAGES/kig.mo -share/locale/ca/LC_MESSAGES/kimagemapeditor.mo -share/locale/ca/LC_MESSAGES/kinetd.mo -share/locale/ca/LC_MESSAGES/kio.mo -share/locale/ca/LC_MESSAGES/kio_audiocd.mo -share/locale/ca/LC_MESSAGES/kio_devices.mo -share/locale/ca/LC_MESSAGES/kio_finger.mo -share/locale/ca/LC_MESSAGES/kio_fish.mo -share/locale/ca/LC_MESSAGES/kio_floppy.mo -share/locale/ca/LC_MESSAGES/kio_groupwise.mo -share/locale/ca/LC_MESSAGES/kio_help.mo -share/locale/ca/LC_MESSAGES/kio_imap4.mo -share/locale/ca/LC_MESSAGES/kio_lan.mo -share/locale/ca/LC_MESSAGES/kio_ldap.mo -share/locale/ca/LC_MESSAGES/kio_mac.mo -share/locale/ca/LC_MESSAGES/kio_man.mo -share/locale/ca/LC_MESSAGES/kio_media.mo -share/locale/ca/LC_MESSAGES/kio_mobile.mo -share/locale/ca/LC_MESSAGES/kio_newimap4.mo -share/locale/ca/LC_MESSAGES/kio_nfs.mo -share/locale/ca/LC_MESSAGES/kio_nntp.mo -share/locale/ca/LC_MESSAGES/kio_pop3.mo -share/locale/ca/LC_MESSAGES/kio_print.mo -share/locale/ca/LC_MESSAGES/kio_remote.mo -share/locale/ca/LC_MESSAGES/kio_settings.mo -share/locale/ca/LC_MESSAGES/kio_sftp.mo -share/locale/ca/LC_MESSAGES/kio_sieve.mo -share/locale/ca/LC_MESSAGES/kio_smb.mo -share/locale/ca/LC_MESSAGES/kio_smtp.mo -share/locale/ca/LC_MESSAGES/kio_svn.mo -share/locale/ca/LC_MESSAGES/kio_system.mo -share/locale/ca/LC_MESSAGES/kio_trash.mo -share/locale/ca/LC_MESSAGES/kio_zeroconf.mo -share/locale/ca/LC_MESSAGES/kioexec.mo -share/locale/ca/LC_MESSAGES/kiten.mo -share/locale/ca/LC_MESSAGES/kjobviewer.mo -share/locale/ca/LC_MESSAGES/kjots.mo -share/locale/ca/LC_MESSAGES/kjumpingcube.mo -share/locale/ca/LC_MESSAGES/klaptopdaemon.mo -share/locale/ca/LC_MESSAGES/klatin.mo -share/locale/ca/LC_MESSAGES/klegacyimport.mo -share/locale/ca/LC_MESSAGES/kleopatra.mo -share/locale/ca/LC_MESSAGES/klettres.mo -share/locale/ca/LC_MESSAGES/klickety.mo -share/locale/ca/LC_MESSAGES/klines.mo -share/locale/ca/LC_MESSAGES/klinkstatus.mo -share/locale/ca/LC_MESSAGES/klipper.mo -share/locale/ca/LC_MESSAGES/klock.mo -share/locale/ca/LC_MESSAGES/kmag.mo -share/locale/ca/LC_MESSAGES/kmahjongg.mo -share/locale/ca/LC_MESSAGES/kmail.mo -share/locale/ca/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/ca/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/ca/LC_MESSAGES/kmailcvt.mo -share/locale/ca/LC_MESSAGES/kmathapplet.mo -share/locale/ca/LC_MESSAGES/kmathtool.mo -share/locale/ca/LC_MESSAGES/kmcop.mo -share/locale/ca/LC_MESSAGES/kmenuapplet.mo -share/locale/ca/LC_MESSAGES/kmenuedit.mo -share/locale/ca/LC_MESSAGES/kmessedwords.mo -share/locale/ca/LC_MESSAGES/kmid.mo -share/locale/ca/LC_MESSAGES/kmilo_delli8k.mo -share/locale/ca/LC_MESSAGES/kmilo_generic.mo -share/locale/ca/LC_MESSAGES/kmilo_kvaio.mo -share/locale/ca/LC_MESSAGES/kmilo_powerbook.mo -share/locale/ca/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/ca/LC_MESSAGES/kmilod.mo -share/locale/ca/LC_MESSAGES/kmines.mo -share/locale/ca/LC_MESSAGES/kminipagerapplet.mo -share/locale/ca/LC_MESSAGES/kmix.mo -share/locale/ca/LC_MESSAGES/kmobile.mo -share/locale/ca/LC_MESSAGES/kmoon.mo -share/locale/ca/LC_MESSAGES/kmousetool.mo -share/locale/ca/LC_MESSAGES/kmouth.mo -share/locale/ca/LC_MESSAGES/kmplot.mo -share/locale/ca/LC_MESSAGES/kmrml.mo -share/locale/ca/LC_MESSAGES/knetattach.mo -share/locale/ca/LC_MESSAGES/knewsticker.mo -share/locale/ca/LC_MESSAGES/knode.mo -share/locale/ca/LC_MESSAGES/knotes.mo -share/locale/ca/LC_MESSAGES/knotify.mo -share/locale/ca/LC_MESSAGES/kodo.mo -share/locale/ca/LC_MESSAGES/kolf.mo -share/locale/ca/LC_MESSAGES/kolourpaint.mo -share/locale/ca/LC_MESSAGES/kolourpicker.mo -share/locale/ca/LC_MESSAGES/kommander.mo -share/locale/ca/LC_MESSAGES/kompare.mo -share/locale/ca/LC_MESSAGES/konnector_dummy.mo -share/locale/ca/LC_MESSAGES/konnector_kabc.mo -share/locale/ca/LC_MESSAGES/konnector_kcal.mo -share/locale/ca/LC_MESSAGES/konnector_local.mo -share/locale/ca/LC_MESSAGES/konnector_qtopia.mo -share/locale/ca/LC_MESSAGES/konnector_remote.mo -share/locale/ca/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/ca/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/ca/LC_MESSAGES/konqsidebar_news.mo -share/locale/ca/LC_MESSAGES/konqueror.mo -share/locale/ca/LC_MESSAGES/konquest.mo -share/locale/ca/LC_MESSAGES/konsole.mo -share/locale/ca/LC_MESSAGES/konsolekalendar.mo -share/locale/ca/LC_MESSAGES/kontact.mo -share/locale/ca/LC_MESSAGES/kooka.mo -share/locale/ca/LC_MESSAGES/kopete.mo -share/locale/ca/LC_MESSAGES/korganizer.mo -share/locale/ca/LC_MESSAGES/korn.mo -share/locale/ca/LC_MESSAGES/kpackage.mo -share/locale/ca/LC_MESSAGES/kpager.mo -share/locale/ca/LC_MESSAGES/kpartapp.mo -share/locale/ca/LC_MESSAGES/kpartsaver.mo -share/locale/ca/LC_MESSAGES/kpat.mo -share/locale/ca/LC_MESSAGES/kpdf.mo -share/locale/ca/LC_MESSAGES/kpercentage.mo -share/locale/ca/LC_MESSAGES/kpersonalizer.mo -share/locale/ca/LC_MESSAGES/kpf.mo -share/locale/ca/LC_MESSAGES/kpilot.mo -share/locale/ca/LC_MESSAGES/kpoker.mo -share/locale/ca/LC_MESSAGES/kpovmodeler.mo -share/locale/ca/LC_MESSAGES/kppp.mo -share/locale/ca/LC_MESSAGES/kppplogview.mo -share/locale/ca/LC_MESSAGES/kprinter.mo -share/locale/ca/LC_MESSAGES/krandr.mo -share/locale/ca/LC_MESSAGES/krdb.mo -share/locale/ca/LC_MESSAGES/krdc.mo -share/locale/ca/LC_MESSAGES/kreadconfig.mo -share/locale/ca/LC_MESSAGES/krec.mo -share/locale/ca/LC_MESSAGES/kregexpeditor.mo -share/locale/ca/LC_MESSAGES/kres_blogging.mo -share/locale/ca/LC_MESSAGES/kres_bugzilla.mo -share/locale/ca/LC_MESSAGES/kres_exchange.mo -share/locale/ca/LC_MESSAGES/kres_featureplan.mo -share/locale/ca/LC_MESSAGES/kres_groupwise.mo -share/locale/ca/LC_MESSAGES/kres_kolab.mo -share/locale/ca/LC_MESSAGES/kres_opengroupware.mo -share/locale/ca/LC_MESSAGES/kres_remote.mo -share/locale/ca/LC_MESSAGES/kres_xmlrpc.mo -share/locale/ca/LC_MESSAGES/kreversi.mo -share/locale/ca/LC_MESSAGES/krfb.mo -share/locale/ca/LC_MESSAGES/kruler.mo -share/locale/ca/LC_MESSAGES/krunapplet.mo -share/locale/ca/LC_MESSAGES/ksame.mo -share/locale/ca/LC_MESSAGES/ksayit.mo -share/locale/ca/LC_MESSAGES/kscd.mo -share/locale/ca/LC_MESSAGES/kscreensaver.mo -share/locale/ca/LC_MESSAGES/kshisen.mo -share/locale/ca/LC_MESSAGES/ksig.mo -share/locale/ca/LC_MESSAGES/ksim.mo -share/locale/ca/LC_MESSAGES/ksirc.mo -share/locale/ca/LC_MESSAGES/ksirtet.mo -share/locale/ca/LC_MESSAGES/ksmiletris.mo -share/locale/ca/LC_MESSAGES/ksmserver.mo -share/locale/ca/LC_MESSAGES/ksnake.mo -share/locale/ca/LC_MESSAGES/ksnapshot.mo -share/locale/ca/LC_MESSAGES/ksokoban.mo -share/locale/ca/LC_MESSAGES/kspaceduel.mo -share/locale/ca/LC_MESSAGES/ksplash.mo -share/locale/ca/LC_MESSAGES/ksplashthemes.mo -share/locale/ca/LC_MESSAGES/kstars.mo -share/locale/ca/LC_MESSAGES/kstart.mo -share/locale/ca/LC_MESSAGES/kstartperf.mo -share/locale/ca/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/ca/LC_MESSAGES/kstyle_phase_config.mo -share/locale/ca/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/ca/LC_MESSAGES/ksvgplugin.mo -share/locale/ca/LC_MESSAGES/ksync.mo -share/locale/ca/LC_MESSAGES/ksysguard.mo -share/locale/ca/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/ca/LC_MESSAGES/ksystraycmd.mo -share/locale/ca/LC_MESSAGES/ksysv.mo -share/locale/ca/LC_MESSAGES/ktalkd.mo -share/locale/ca/LC_MESSAGES/ktaskbarapplet.mo -share/locale/ca/LC_MESSAGES/kteatime.mo -share/locale/ca/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/ca/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/ca/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/ca/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/ca/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/ca/LC_MESSAGES/ktexteditor_kttsd.mo -share/locale/ca/LC_MESSAGES/kthememanager.mo -share/locale/ca/LC_MESSAGES/ktimemon.mo -share/locale/ca/LC_MESSAGES/ktimer.mo -share/locale/ca/LC_MESSAGES/ktip.mo -share/locale/ca/LC_MESSAGES/ktnef.mo -share/locale/ca/LC_MESSAGES/ktouch.mo -share/locale/ca/LC_MESSAGES/ktron.mo -share/locale/ca/LC_MESSAGES/kttsd.mo -share/locale/ca/LC_MESSAGES/kttsd_commandplugin.mo -share/locale/ca/LC_MESSAGES/kttsd_eposplugin.mo -share/locale/ca/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/ca/LC_MESSAGES/kttsd_fliteplugin.mo -share/locale/ca/LC_MESSAGES/kttsd_freettsplugin.mo -share/locale/ca/LC_MESSAGES/kttsd_hadifixplugin.mo -share/locale/ca/LC_MESSAGES/kttsd_sbdplugin.mo -share/locale/ca/LC_MESSAGES/kttsd_stringreplacerplugin.mo -share/locale/ca/LC_MESSAGES/kttsd_talkerchooserplugin.mo -share/locale/ca/LC_MESSAGES/kttsd_xmltransformerplugin.mo -share/locale/ca/LC_MESSAGES/kttsjobmgr.mo -share/locale/ca/LC_MESSAGES/kttsmgr.mo -share/locale/ca/LC_MESSAGES/ktuberling.mo -share/locale/ca/LC_MESSAGES/kturtle.mo -share/locale/ca/LC_MESSAGES/ktux.mo -share/locale/ca/LC_MESSAGES/kuick_plugin.mo -share/locale/ca/LC_MESSAGES/kuickshow.mo -share/locale/ca/LC_MESSAGES/kuiviewer.mo -share/locale/ca/LC_MESSAGES/kuser.mo -share/locale/ca/LC_MESSAGES/kverbos.mo -share/locale/ca/LC_MESSAGES/kview.mo -share/locale/ca/LC_MESSAGES/kview_scale.mo -share/locale/ca/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/ca/LC_MESSAGES/kviewcanvas.mo -share/locale/ca/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/ca/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/ca/LC_MESSAGES/kviewscannerplugin.mo -share/locale/ca/LC_MESSAGES/kviewshell.mo -share/locale/ca/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/ca/LC_MESSAGES/kviewviewer.mo -share/locale/ca/LC_MESSAGES/kvoctrain.mo -share/locale/ca/LC_MESSAGES/kwalletmanager.mo -share/locale/ca/LC_MESSAGES/kwatchgnupg.mo -share/locale/ca/LC_MESSAGES/kweather.mo -share/locale/ca/LC_MESSAGES/kwifimanager.mo -share/locale/ca/LC_MESSAGES/kwin.mo -share/locale/ca/LC_MESSAGES/kwin4.mo -share/locale/ca/LC_MESSAGES/kwin_art_clients.mo -share/locale/ca/LC_MESSAGES/kwin_clients.mo -share/locale/ca/LC_MESSAGES/kwireless.mo -share/locale/ca/LC_MESSAGES/kwordquiz.mo -share/locale/ca/LC_MESSAGES/kworldclock.mo -share/locale/ca/LC_MESSAGES/kwriteconfig.mo -share/locale/ca/LC_MESSAGES/kxkb.mo -share/locale/ca/LC_MESSAGES/kxmlrpcd.mo -share/locale/ca/LC_MESSAGES/kxsconfig.mo -share/locale/ca/LC_MESSAGES/kxsldbg.mo -share/locale/ca/LC_MESSAGES/libKTTSD.mo -share/locale/ca/LC_MESSAGES/libcalendarresources.mo -share/locale/ca/LC_MESSAGES/libdmctl.mo -share/locale/ca/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/ca/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/ca/LC_MESSAGES/libkcal.mo -share/locale/ca/LC_MESSAGES/libkcalsystem.mo -share/locale/ca/LC_MESSAGES/libkcddb.mo -share/locale/ca/LC_MESSAGES/libkdegames.mo -share/locale/ca/LC_MESSAGES/libkdehighscores.mo -share/locale/ca/LC_MESSAGES/libkdenetwork.mo -share/locale/ca/LC_MESSAGES/libkdepim.mo -share/locale/ca/LC_MESSAGES/libkholidays.mo -share/locale/ca/LC_MESSAGES/libkicker.mo -share/locale/ca/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/ca/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/ca/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/ca/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/ca/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/ca/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/ca/LC_MESSAGES/libkickermenu_tom.mo -share/locale/ca/LC_MESSAGES/libkleopatra.mo -share/locale/ca/LC_MESSAGES/libkmime.mo -share/locale/ca/LC_MESSAGES/libkonq.mo -share/locale/ca/LC_MESSAGES/libkpgp.mo -share/locale/ca/LC_MESSAGES/libkpimexchange.mo -share/locale/ca/LC_MESSAGES/libkscan.mo -share/locale/ca/LC_MESSAGES/libkscreensaver.mo -share/locale/ca/LC_MESSAGES/libksieve.mo -share/locale/ca/LC_MESSAGES/libksirtet.mo -share/locale/ca/LC_MESSAGES/libksync.mo -share/locale/ca/LC_MESSAGES/libtaskbar.mo -share/locale/ca/LC_MESSAGES/libtaskmanager.mo -share/locale/ca/LC_MESSAGES/lockout.mo -share/locale/ca/LC_MESSAGES/lskat.mo -share/locale/ca/LC_MESSAGES/lyrics.mo -share/locale/ca/LC_MESSAGES/mediaapplet.mo -share/locale/ca/LC_MESSAGES/mediacontrol.mo -share/locale/ca/LC_MESSAGES/minitoolsplugin.mo -share/locale/ca/LC_MESSAGES/multisynk.mo -share/locale/ca/LC_MESSAGES/naughtyapplet.mo -share/locale/ca/LC_MESSAGES/nexscope.mo -share/locale/ca/LC_MESSAGES/noatun.mo -share/locale/ca/LC_MESSAGES/nsplugin.mo -share/locale/ca/LC_MESSAGES/passwords.mo -share/locale/ca/LC_MESSAGES/pitchablespeed.mo -share/locale/ca/LC_MESSAGES/ppdtranslations.mo -share/locale/ca/LC_MESSAGES/privacy.mo -share/locale/ca/LC_MESSAGES/qeditor.mo -share/locale/ca/LC_MESSAGES/quanta.mo -share/locale/ca/LC_MESSAGES/quicklauncher.mo -share/locale/ca/LC_MESSAGES/rellinks.mo -share/locale/ca/LC_MESSAGES/searchbarplugin.mo -share/locale/ca/LC_MESSAGES/secpolicy.mo -share/locale/ca/LC_MESSAGES/spy.mo -share/locale/ca/LC_MESSAGES/synaescope.mo -share/locale/ca/LC_MESSAGES/taskbarextension.mo -share/locale/ca/LC_MESSAGES/timezones.mo -share/locale/ca/LC_MESSAGES/tippecanoe.mo -share/locale/ca/LC_MESSAGES/trashapplet.mo -share/locale/ca/LC_MESSAGES/tyler.mo -share/locale/ca/LC_MESSAGES/uachangerplugin.mo -share/locale/ca/LC_MESSAGES/umbrello.mo -share/locale/ca/LC_MESSAGES/useraccount.mo -share/locale/ca/LC_MESSAGES/validatorsplugin.mo -share/locale/ca/LC_MESSAGES/vimpart.mo -share/locale/ca/LC_MESSAGES/wakeup.mo -share/locale/ca/LC_MESSAGES/wavecapture.mo -share/locale/ca/LC_MESSAGES/webarchiver.mo -share/locale/ca/charset -share/locale/ca/entry.desktop -share/locale/ca/flag.png -@dirrm share/doc/HTML/ca/scripts -@dirrm share/doc/HTML/ca/kxkb -@dirrm share/doc/HTML/ca/kworldclock -@dirrm share/doc/HTML/ca/kwordquiz -@dirrm share/doc/HTML/ca/kweather -@dirrm share/doc/HTML/ca/kwallet -@dirrm share/doc/HTML/ca/kuser -@dirrm share/doc/HTML/ca/kturtle -@dirrm share/doc/HTML/ca/ktouch -@dirrm share/doc/HTML/ca/ktimer -@dirrm share/doc/HTML/ca/ksysv -@dirrm share/doc/HTML/ca/ksysguard -@dirrm share/doc/HTML/ca/kstars -@dirrm share/doc/HTML/ca/ksplashml -@dirrm share/doc/HTML/ca/kspell -@dirrm share/doc/HTML/ca/ksim -@dirrm share/doc/HTML/ca/krfb -@dirrm share/doc/HTML/ca/krdc -@dirrm share/doc/HTML/ca/kpovmodeler -@dirrm share/doc/HTML/ca/kpf -@dirrm share/doc/HTML/ca/kpercentage -@dirrm share/doc/HTML/ca/kpager -@dirrm share/doc/HTML/ca/kpackage -@dirrm share/doc/HTML/ca/konqueror -@dirrm share/doc/HTML/ca/konq-plugins/webarchiver -@dirrm share/doc/HTML/ca/konq-plugins/validators -@dirrm share/doc/HTML/ca/konq-plugins/uachanger -@dirrm share/doc/HTML/ca/konq-plugins/smbmounter -@dirrm share/doc/HTML/ca/konq-plugins/mediaplayer -@dirrm share/doc/HTML/ca/konq-plugins/kuick -@dirrm share/doc/HTML/ca/konq-plugins/khtmlsettings -@dirrm share/doc/HTML/ca/konq-plugins/imgallery -@dirrm share/doc/HTML/ca/konq-plugins/fsview -@dirrm share/doc/HTML/ca/konq-plugins/domtreeviewer -@dirrm share/doc/HTML/ca/konq-plugins/dirfilter -@dirrm share/doc/HTML/ca/konq-plugins/crashes -@dirrm share/doc/HTML/ca/konq-plugins/babel -@dirrm share/doc/HTML/ca/konq-plugins -@dirrm share/doc/HTML/ca/kompare -@dirrm share/doc/HTML/ca/kmoon -@dirrm share/doc/HTML/ca/kmessedwords -@dirrm share/doc/HTML/ca/kmenuedit -@dirrm share/doc/HTML/ca/kmail -@dirrm share/doc/HTML/ca/klipper -@dirrm share/doc/HTML/ca/klickety -@dirrm share/doc/HTML/ca/klettres -@dirrm share/doc/HTML/ca/kleopatra -@dirrm share/doc/HTML/ca/kioslave -@dirrm share/doc/HTML/ca/kinfocenter/blockdevices -@dirrm share/doc/HTML/ca/kinfocenter -@dirrm share/doc/HTML/ca/kicker -@dirrm share/doc/HTML/ca/khelpcenter/visualdict -@dirrm share/doc/HTML/ca/khelpcenter/userguide -@dirrm share/doc/HTML/ca/khelpcenter/quickstart -@dirrm share/doc/HTML/ca/khelpcenter/glossary -@dirrm share/doc/HTML/ca/khelpcenter/faq -@dirrm share/doc/HTML/ca/khelpcenter -@dirrm share/doc/HTML/ca/khangman -@dirrm share/doc/HTML/ca/kfind -@dirrm share/doc/HTML/ca/keduca -@dirrm share/doc/HTML/ca/kdf -@dirrm share/doc/HTML/ca/kdesu -@dirrm share/doc/HTML/ca/kdelibs -@dirrm share/doc/HTML/ca/kdebugdialog -@dirrm share/doc/HTML/ca/kdat -@dirrm share/doc/HTML/ca/kcron -@dirrm share/doc/HTML/ca/kcontrol/windowmanagement -@dirrm share/doc/HTML/ca/kcontrol/useragent -@dirrm share/doc/HTML/ca/kcontrol/spellchecking -@dirrm share/doc/HTML/ca/kcontrol/smb -@dirrm share/doc/HTML/ca/kcontrol/screensaver -@dirrm share/doc/HTML/ca/kcontrol/proxy -@dirrm share/doc/HTML/ca/kcontrol/powerctrl -@dirrm share/doc/HTML/ca/kcontrol/passwords -@dirrm share/doc/HTML/ca/kcontrol/panelappearance -@dirrm share/doc/HTML/ca/kcontrol/panel -@dirrm share/doc/HTML/ca/kcontrol/netpref -@dirrm share/doc/HTML/ca/kcontrol/mouse -@dirrm share/doc/HTML/ca/kcontrol/laptop -@dirrm share/doc/HTML/ca/kcontrol/language -@dirrm share/doc/HTML/ca/kcontrol/lanbrowser -@dirrm share/doc/HTML/ca/kcontrol/kwindecoration -@dirrm share/doc/HTML/ca/kcontrol/kmixcfg -@dirrm share/doc/HTML/ca/kcontrol/khtml -@dirrm share/doc/HTML/ca/kcontrol/keys -@dirrm share/doc/HTML/ca/kcontrol/keyboard -@dirrm share/doc/HTML/ca/kcontrol/kdm -@dirrm share/doc/HTML/ca/kcontrol/kcmtaskbar -@dirrm share/doc/HTML/ca/kcontrol/kcmstyle -@dirrm share/doc/HTML/ca/kcontrol/kcmsmserver -@dirrm share/doc/HTML/ca/kcontrol/kcmnotify -@dirrm share/doc/HTML/ca/kcontrol/kcmlowbatwarn -@dirrm share/doc/HTML/ca/kcontrol/kcmlowbatcrit -@dirrm share/doc/HTML/ca/kcontrol/kcmlaunch -@dirrm share/doc/HTML/ca/kcontrol/kcmktalkd -@dirrm share/doc/HTML/ca/kcontrol/kcmkonsole -@dirrm share/doc/HTML/ca/kcontrol/kcmfontinst -@dirrm share/doc/HTML/ca/kcontrol/kcmcss -@dirrm share/doc/HTML/ca/kcontrol/kcmaccess -@dirrm share/doc/HTML/ca/kcontrol/kalarmd -@dirrm share/doc/HTML/ca/kcontrol/icons -@dirrm share/doc/HTML/ca/kcontrol/helpindex -@dirrm share/doc/HTML/ca/kcontrol/fonts -@dirrm share/doc/HTML/ca/kcontrol/filetypes -@dirrm share/doc/HTML/ca/kcontrol/filemanager -@dirrm share/doc/HTML/ca/kcontrol/energy -@dirrm share/doc/HTML/ca/kcontrol/email -@dirrm share/doc/HTML/ca/kcontrol/ebrowsing -@dirrm share/doc/HTML/ca/kcontrol/desktopbehavior -@dirrm share/doc/HTML/ca/kcontrol/desktop -@dirrm share/doc/HTML/ca/kcontrol/crypto -@dirrm share/doc/HTML/ca/kcontrol/cookies -@dirrm share/doc/HTML/ca/kcontrol/colors -@dirrm share/doc/HTML/ca/kcontrol/clock -@dirrm share/doc/HTML/ca/kcontrol/cache -@dirrm share/doc/HTML/ca/kcontrol/bell -@dirrm share/doc/HTML/ca/kcontrol/background -@dirrm share/doc/HTML/ca/kcontrol/arts -@dirrm share/doc/HTML/ca/kcontrol -@dirrm share/doc/HTML/ca/kcharselect -@dirrm share/doc/HTML/ca/kbugbuster -@dirrm share/doc/HTML/ca/kbruch -@dirrm share/doc/HTML/ca/kbabel -@dirrm share/doc/HTML/ca/katomic -@dirrm share/doc/HTML/ca/kate -@dirrm share/doc/HTML/ca/kapptemplate -@dirrm share/doc/HTML/ca/kappfinder -@dirrm share/doc/HTML/ca/common -@dirrm share/doc/HTML/ca -@dirrm share/apps/kturtle/examples/ca -@dirrm share/apps/kturtle/examples -@dirrm share/apps/kturtle/data -@dirrm share/apps/kturtle -@dirrm share/apps/khangman/data/ca -@dirrm share/apps/khangman/data -@dirrm share/apps/khangman diff --git a/misc/kde4-l10n-cs/Makefile b/misc/kde4-l10n-cs/Makefile deleted file mode 100644 index 1f921c5c8ab0..000000000000 --- a/misc/kde4-l10n-cs/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-cs -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= cs- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Czech messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-cs/distinfo b/misc/kde4-l10n-cs/distinfo deleted file mode 100644 index d94a2f400c6f..000000000000 --- a/misc/kde4-l10n-cs/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-cs-3.4.2.tar.bz2) = f73dd7bef15e5cc816c0bea13d6f7c83 -SIZE (KDE/kde-i18n/kde-i18n-cs-3.4.2.tar.bz2) = 3178221 diff --git a/misc/kde4-l10n-cs/pkg-descr b/misc/kde4-l10n-cs/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-cs/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-cs/pkg-plist b/misc/kde4-l10n-cs/pkg-plist deleted file mode 100644 index eb54c99ea9dd..000000000000 --- a/misc/kde4-l10n-cs/pkg-plist +++ /dev/null @@ -1,852 +0,0 @@ -share/apps/khangman/cs.txt -share/apps/khangman/data/cs/animals.kvtml -share/apps/khangman/data/cs/easy.kvtml -share/apps/khangman/data/cs/hard.kvtml -share/apps/khangman/data/cs/medium.kvtml -share/apps/klettres/cs/alpha/a-0.ogg -share/apps/klettres/cs/alpha/a-1.ogg -share/apps/klettres/cs/alpha/a-10.ogg -share/apps/klettres/cs/alpha/a-11.ogg -share/apps/klettres/cs/alpha/a-12.ogg -share/apps/klettres/cs/alpha/a-13.ogg -share/apps/klettres/cs/alpha/a-14.ogg -share/apps/klettres/cs/alpha/a-15.ogg -share/apps/klettres/cs/alpha/a-16.ogg -share/apps/klettres/cs/alpha/a-17.ogg -share/apps/klettres/cs/alpha/a-18.ogg -share/apps/klettres/cs/alpha/a-19.ogg -share/apps/klettres/cs/alpha/a-2.ogg -share/apps/klettres/cs/alpha/a-20.ogg -share/apps/klettres/cs/alpha/a-21.ogg -share/apps/klettres/cs/alpha/a-22.ogg -share/apps/klettres/cs/alpha/a-23.ogg -share/apps/klettres/cs/alpha/a-24.ogg -share/apps/klettres/cs/alpha/a-25.ogg -share/apps/klettres/cs/alpha/a-26.ogg -share/apps/klettres/cs/alpha/a-27.ogg -share/apps/klettres/cs/alpha/a-28.ogg -share/apps/klettres/cs/alpha/a-29.ogg -share/apps/klettres/cs/alpha/a-3.ogg -share/apps/klettres/cs/alpha/a-30.ogg -share/apps/klettres/cs/alpha/a-31.ogg -share/apps/klettres/cs/alpha/a-4.ogg -share/apps/klettres/cs/alpha/a-5.ogg -share/apps/klettres/cs/alpha/a-6.ogg -share/apps/klettres/cs/alpha/a-7.ogg -share/apps/klettres/cs/alpha/a-8.ogg -share/apps/klettres/cs/alpha/a-9.ogg -share/apps/klettres/cs/syllab/ad-0.ogg -share/apps/klettres/cs/syllab/ad-1.ogg -share/apps/klettres/cs/syllab/ad-10.ogg -share/apps/klettres/cs/syllab/ad-11.ogg -share/apps/klettres/cs/syllab/ad-12.ogg -share/apps/klettres/cs/syllab/ad-13.ogg -share/apps/klettres/cs/syllab/ad-14.ogg -share/apps/klettres/cs/syllab/ad-15.ogg -share/apps/klettres/cs/syllab/ad-16.ogg -share/apps/klettres/cs/syllab/ad-17.ogg -share/apps/klettres/cs/syllab/ad-2.ogg -share/apps/klettres/cs/syllab/ad-3.ogg -share/apps/klettres/cs/syllab/ad-4.ogg -share/apps/klettres/cs/syllab/ad-5.ogg -share/apps/klettres/cs/syllab/ad-6.ogg -share/apps/klettres/cs/syllab/ad-7.ogg -share/apps/klettres/cs/syllab/ad-8.ogg -share/apps/klettres/cs/syllab/ad-9.ogg -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/appheader.html -share/doc/HTML/cs/common/artistic-license.html -share/doc/HTML/cs/common/bottom-left.png -share/doc/HTML/cs/common/bottom-middle.png -share/doc/HTML/cs/common/bottom-right.png -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/docheadergears.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/doxygen.css -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/footer.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/grad.png -share/doc/HTML/cs/common/header.html -share/doc/HTML/cs/common/headerbg.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/kde-web.css -share/doc/HTML/cs/common/kde_logo.png -share/doc/HTML/cs/common/kde_logo_bg.png -share/doc/HTML/cs/common/kmenu.png -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.png -share/doc/HTML/cs/common/mainfooter.html -share/doc/HTML/cs/common/mainheader.html -share/doc/HTML/cs/common/qpl-license.html -share/doc/HTML/cs/common/shadow.png -share/doc/HTML/cs/common/top-left.png -share/doc/HTML/cs/common/top-middle.png -share/doc/HTML/cs/common/top-right-konqueror.png -share/doc/HTML/cs/common/web-docbottom.png -share/doc/HTML/cs/common/web-doctop.png -share/doc/HTML/cs/common/x11-license.html -share/doc/HTML/cs/common/xml.dcl -share/doc/HTML/cs/kcontrol/arts/midi.docbook -share/doc/HTML/cs/kcontrol/bell/common -share/doc/HTML/cs/kcontrol/bell/index.cache.bz2 -share/doc/HTML/cs/kcontrol/bell/index.docbook -share/doc/HTML/cs/kcontrol/clock/common -share/doc/HTML/cs/kcontrol/clock/index.cache.bz2 -share/doc/HTML/cs/kcontrol/clock/index.docbook -share/doc/HTML/cs/kcontrol/common -share/doc/HTML/cs/kcontrol/crypto/common -share/doc/HTML/cs/kcontrol/crypto/index.cache.bz2 -share/doc/HTML/cs/kcontrol/crypto/index.docbook -share/doc/HTML/cs/kcontrol/email/common -share/doc/HTML/cs/kcontrol/email/index.cache.bz2 -share/doc/HTML/cs/kcontrol/email/index.docbook -share/doc/HTML/cs/kcontrol/index.cache.bz2 -share/doc/HTML/cs/kcontrol/index.docbook -share/doc/HTML/cs/kcontrol/kcmaccess/common -share/doc/HTML/cs/kcontrol/kcmaccess/index.cache.bz2 -share/doc/HTML/cs/kcontrol/kcmaccess/index.docbook -share/doc/HTML/cs/kcontrol/kcmlowbatcrit/common -share/doc/HTML/cs/kcontrol/kcmlowbatcrit/index.cache.bz2 -share/doc/HTML/cs/kcontrol/kcmlowbatcrit/index.docbook -share/doc/HTML/cs/kcontrol/kcmsmserver/common -share/doc/HTML/cs/kcontrol/kcmsmserver/index.cache.bz2 -share/doc/HTML/cs/kcontrol/kcmsmserver/index.docbook -share/doc/HTML/cs/kcontrol/kcmstyle/common -share/doc/HTML/cs/kcontrol/kcmstyle/index.cache.bz2 -share/doc/HTML/cs/kcontrol/kcmstyle/index.docbook -share/doc/HTML/cs/kcontrol/kdm/common -share/doc/HTML/cs/kcontrol/kdm/index.cache.bz2 -share/doc/HTML/cs/kcontrol/kdm/index.docbook -share/doc/HTML/cs/kcontrol/khtml/nsplugin.docbook -share/doc/HTML/cs/kcontrol/kmixcfg/common -share/doc/HTML/cs/kcontrol/kmixcfg/index.cache.bz2 -share/doc/HTML/cs/kcontrol/kmixcfg/index.docbook -share/doc/HTML/cs/kcontrol/laptop/common -share/doc/HTML/cs/kcontrol/laptop/index.cache.bz2 -share/doc/HTML/cs/kcontrol/laptop/index.docbook -share/doc/HTML/cs/kcontrol/passwords/common -share/doc/HTML/cs/kcontrol/passwords/index.cache.bz2 -share/doc/HTML/cs/kcontrol/passwords/index.docbook -share/doc/HTML/cs/kcontrol/screenshot.png -share/doc/HTML/cs/kdeprint/add-printer-wiz.docbook -share/doc/HTML/cs/kdeprint/common -share/doc/HTML/cs/kdeprint/cups-config.docbook -share/doc/HTML/cs/kdeprint/cupsoptions.docbook -share/doc/HTML/cs/kdeprint/extensions.docbook -share/doc/HTML/cs/kdeprint/external-command.docbook -share/doc/HTML/cs/kdeprint/final-word.docbook -share/doc/HTML/cs/kdeprint/getting-started.docbook -share/doc/HTML/cs/kdeprint/highlights.docbook -share/doc/HTML/cs/kdeprint/index.cache.bz2 -share/doc/HTML/cs/kdeprint/index.docbook -share/doc/HTML/cs/kdeprint/lpd.docbook -share/doc/HTML/cs/kdeprint/lpr-bsd.docbook -share/doc/HTML/cs/kdeprint/lprng.docbook -share/doc/HTML/cs/kdeprint/rlpr.docbook -share/doc/HTML/cs/kdeprint/tech-overview.docbook -share/doc/HTML/cs/kdeprint/theory.docbook -share/doc/HTML/cs/kdm/common -share/doc/HTML/cs/kdm/index.cache.bz2 -share/doc/HTML/cs/kdm/index.docbook -share/doc/HTML/cs/kgamma/common -share/doc/HTML/cs/kgamma/index.cache.bz2 -share/doc/HTML/cs/kgamma/index.docbook -share/doc/HTML/cs/khelpcenter/contact.docbook -share/doc/HTML/cs/khelpcenter/links.docbook -share/doc/HTML/cs/khelpcenter/support.docbook -share/doc/HTML/cs/khelpcenter/welcome.docbook -share/doc/HTML/cs/khelpcenter/whatiskde.docbook -share/doc/HTML/cs/kinfocenter/devices/common -share/doc/HTML/cs/kinfocenter/devices/index.cache.bz2 -share/doc/HTML/cs/kinfocenter/devices/index.docbook -share/doc/HTML/cs/kinfocenter/dma/common -share/doc/HTML/cs/kinfocenter/dma/index.cache.bz2 -share/doc/HTML/cs/kinfocenter/dma/index.docbook -share/doc/HTML/cs/kinfocenter/interrupts/common -share/doc/HTML/cs/kinfocenter/interrupts/index.cache.bz2 -share/doc/HTML/cs/kinfocenter/interrupts/index.docbook -share/doc/HTML/cs/kinfocenter/ioports/common -share/doc/HTML/cs/kinfocenter/ioports/index.cache.bz2 -share/doc/HTML/cs/kinfocenter/ioports/index.docbook -share/doc/HTML/cs/kinfocenter/memory/common -share/doc/HTML/cs/kinfocenter/memory/index.cache.bz2 -share/doc/HTML/cs/kinfocenter/memory/index.docbook -share/doc/HTML/cs/kinfocenter/partitions/common -share/doc/HTML/cs/kinfocenter/partitions/index.cache.bz2 -share/doc/HTML/cs/kinfocenter/partitions/index.docbook -share/doc/HTML/cs/kinfocenter/pci/common -share/doc/HTML/cs/kinfocenter/pci/index.cache.bz2 -share/doc/HTML/cs/kinfocenter/pci/index.docbook -share/doc/HTML/cs/kinfocenter/pcmcia/common -share/doc/HTML/cs/kinfocenter/pcmcia/index.cache.bz2 -share/doc/HTML/cs/kinfocenter/pcmcia/index.docbook -share/doc/HTML/cs/kinfocenter/processor/common -share/doc/HTML/cs/kinfocenter/processor/index.cache.bz2 -share/doc/HTML/cs/kinfocenter/processor/index.docbook -share/doc/HTML/cs/kinfocenter/scsi/common -share/doc/HTML/cs/kinfocenter/scsi/index.cache.bz2 -share/doc/HTML/cs/kinfocenter/scsi/index.docbook -share/doc/HTML/cs/kinfocenter/sound/common -share/doc/HTML/cs/kinfocenter/sound/index.cache.bz2 -share/doc/HTML/cs/kinfocenter/sound/index.docbook -share/doc/HTML/cs/kinfocenter/xserver/common -share/doc/HTML/cs/kinfocenter/xserver/index.cache.bz2 -share/doc/HTML/cs/kinfocenter/xserver/index.docbook -share/doc/HTML/cs/konsole/common -share/doc/HTML/cs/konsole/index.cache.bz2 -share/doc/HTML/cs/konsole/index.docbook -share/locale/cs/LC_MESSAGES/akregator.mo -share/locale/cs/LC_MESSAGES/akregator_konqplugin.mo -share/locale/cs/LC_MESSAGES/alsaplayerui.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/ark_plugin.mo -share/locale/cs/LC_MESSAGES/artsbuilder.mo -share/locale/cs/LC_MESSAGES/artscontrol.mo -share/locale/cs/LC_MESSAGES/artsmodules.mo -share/locale/cs/LC_MESSAGES/atlantik.mo -share/locale/cs/LC_MESSAGES/atlantikdesigner.mo -share/locale/cs/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/cs/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/cs/LC_MESSAGES/audiorename_plugin.mo -share/locale/cs/LC_MESSAGES/autorefresh.mo -share/locale/cs/LC_MESSAGES/babelfish.mo -share/locale/cs/LC_MESSAGES/cervisia.mo -share/locale/cs/LC_MESSAGES/charlatanui.mo -share/locale/cs/LC_MESSAGES/childpanelextension.mo -share/locale/cs/LC_MESSAGES/clockapplet.mo -share/locale/cs/LC_MESSAGES/crashesplugin.mo -share/locale/cs/LC_MESSAGES/cupsdconf.mo -share/locale/cs/LC_MESSAGES/cvsservice.mo -share/locale/cs/LC_MESSAGES/dcoprss.mo -share/locale/cs/LC_MESSAGES/devicesapplet.mo -share/locale/cs/LC_MESSAGES/dirfilterplugin.mo -share/locale/cs/LC_MESSAGES/display.mo -share/locale/cs/LC_MESSAGES/dockbarextension.mo -share/locale/cs/LC_MESSAGES/domtreeviewer.mo -share/locale/cs/LC_MESSAGES/drkonqi.mo -share/locale/cs/LC_MESSAGES/dub.mo -share/locale/cs/LC_MESSAGES/extensionproxy.mo -share/locale/cs/LC_MESSAGES/ffrs.mo -share/locale/cs/LC_MESSAGES/filetypes.mo -share/locale/cs/LC_MESSAGES/fontinst.mo -share/locale/cs/LC_MESSAGES/fsview.mo -share/locale/cs/LC_MESSAGES/htmlsearch.mo -share/locale/cs/LC_MESSAGES/imagerename_plugin.mo -share/locale/cs/LC_MESSAGES/imgalleryplugin.mo -share/locale/cs/LC_MESSAGES/irkick.mo -share/locale/cs/LC_MESSAGES/jefferson.mo -share/locale/cs/LC_MESSAGES/joystick.mo -share/locale/cs/LC_MESSAGES/juk.mo -share/locale/cs/LC_MESSAGES/kabc2mutt.mo -share/locale/cs/LC_MESSAGES/kabc_dir.mo -share/locale/cs/LC_MESSAGES/kabc_file.mo -share/locale/cs/LC_MESSAGES/kabc_ldap.mo -share/locale/cs/LC_MESSAGES/kabc_ldapkio.mo -share/locale/cs/LC_MESSAGES/kabc_net.mo -share/locale/cs/LC_MESSAGES/kabc_slox.mo -share/locale/cs/LC_MESSAGES/kabc_sql.mo -share/locale/cs/LC_MESSAGES/kabcformat_binary.mo -share/locale/cs/LC_MESSAGES/kaboodle.mo -share/locale/cs/LC_MESSAGES/kaccess.mo -share/locale/cs/LC_MESSAGES/kaddressbook.mo -share/locale/cs/LC_MESSAGES/kalarm.mo -share/locale/cs/LC_MESSAGES/kalzium.mo -share/locale/cs/LC_MESSAGES/kandy.mo -share/locale/cs/LC_MESSAGES/kappfinder.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/kate.mo -share/locale/cs/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/cs/LC_MESSAGES/katedefaultproject.mo -share/locale/cs/LC_MESSAGES/katefiletemplates.mo -share/locale/cs/LC_MESSAGES/katefll_initplugin.mo -share/locale/cs/LC_MESSAGES/katefll_plugin.mo -share/locale/cs/LC_MESSAGES/katehelloworld.mo -share/locale/cs/LC_MESSAGES/katehtmltools.mo -share/locale/cs/LC_MESSAGES/kateinsertcommand.mo -share/locale/cs/LC_MESSAGES/katekjswrapper.mo -share/locale/cs/LC_MESSAGES/katekttsd.mo -share/locale/cs/LC_MESSAGES/katemake.mo -share/locale/cs/LC_MESSAGES/katemodeline.mo -share/locale/cs/LC_MESSAGES/kateopenheader.mo -share/locale/cs/LC_MESSAGES/katepart.mo -share/locale/cs/LC_MESSAGES/katepartkttsd.mo -share/locale/cs/LC_MESSAGES/kateprojectmanager.mo -share/locale/cs/LC_MESSAGES/katepybrowse.mo -share/locale/cs/LC_MESSAGES/katesnippets.mo -share/locale/cs/LC_MESSAGES/katespell.mo -share/locale/cs/LC_MESSAGES/katetabbarextension.mo -share/locale/cs/LC_MESSAGES/katetextfilter.mo -share/locale/cs/LC_MESSAGES/katexmlcheck.mo -share/locale/cs/LC_MESSAGES/katexmltools.mo -share/locale/cs/LC_MESSAGES/katomic.mo -share/locale/cs/LC_MESSAGES/kaudiocreator.mo -share/locale/cs/LC_MESSAGES/kbabel.mo -share/locale/cs/LC_MESSAGES/kbackgammon.mo -share/locale/cs/LC_MESSAGES/kbattleship.mo -share/locale/cs/LC_MESSAGES/kbinaryclock.mo -share/locale/cs/LC_MESSAGES/kblackbox.mo -share/locale/cs/LC_MESSAGES/kbounce.mo -share/locale/cs/LC_MESSAGES/kbruch.mo -share/locale/cs/LC_MESSAGES/kbstateapplet.mo -share/locale/cs/LC_MESSAGES/kbugbuster.mo -share/locale/cs/LC_MESSAGES/kcachegrind.mo -share/locale/cs/LC_MESSAGES/kcalc.mo -share/locale/cs/LC_MESSAGES/kcharselect.mo -share/locale/cs/LC_MESSAGES/kcharselectapplet.mo -share/locale/cs/LC_MESSAGES/kcm_krfb.mo -share/locale/cs/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/cs/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/cs/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/cs/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/cs/LC_MESSAGES/kcmaccess.mo -share/locale/cs/LC_MESSAGES/kcmaccessibility.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/kcmcddb.mo -share/locale/cs/LC_MESSAGES/kcmcgi.mo -share/locale/cs/LC_MESSAGES/kcmcolors.mo -share/locale/cs/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/cs/LC_MESSAGES/kcmcrypto.mo -share/locale/cs/LC_MESSAGES/kcmcss.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/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/kcmkabconfig.mo -share/locale/cs/LC_MESSAGES/kcmkamera.mo -share/locale/cs/LC_MESSAGES/kcmkclock.mo -share/locale/cs/LC_MESSAGES/kcmkded.mo -share/locale/cs/LC_MESSAGES/kcmkdnssd.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/kcmkontactnt.mo -share/locale/cs/LC_MESSAGES/kcmktalkd.mo -share/locale/cs/LC_MESSAGES/kcmkttsd.mo -share/locale/cs/LC_MESSAGES/kcmkuick.mo -share/locale/cs/LC_MESSAGES/kcmkurifilt.mo -share/locale/cs/LC_MESSAGES/kcmkvaio.mo -share/locale/cs/LC_MESSAGES/kcmkwallet.mo -share/locale/cs/LC_MESSAGES/kcmkwindecoration.mo -share/locale/cs/LC_MESSAGES/kcmkwinrules.mo -share/locale/cs/LC_MESSAGES/kcmkwintheme.mo -share/locale/cs/LC_MESSAGES/kcmkwm.mo -share/locale/cs/LC_MESSAGES/kcmkxmlrpcd.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/kcmlirc.mo -share/locale/cs/LC_MESSAGES/kcmlocale.mo -share/locale/cs/LC_MESSAGES/kcmmediacontrol.mo -share/locale/cs/LC_MESSAGES/kcmmidi.mo -share/locale/cs/LC_MESSAGES/kcmnic.mo -share/locale/cs/LC_MESSAGES/kcmnotify.mo -share/locale/cs/LC_MESSAGES/kcmperformance.mo -share/locale/cs/LC_MESSAGES/kcmprintmgr.mo -share/locale/cs/LC_MESSAGES/kcmsamba.mo -share/locale/cs/LC_MESSAGES/kcmscreensaver.mo -share/locale/cs/LC_MESSAGES/kcmshell.mo -share/locale/cs/LC_MESSAGES/kcmsmartcard.mo -share/locale/cs/LC_MESSAGES/kcmsmserver.mo -share/locale/cs/LC_MESSAGES/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/kcmthinkpad.mo -share/locale/cs/LC_MESSAGES/kcmusb.mo -share/locale/cs/LC_MESSAGES/kcmview1394.mo -share/locale/cs/LC_MESSAGES/kcmvim.mo -share/locale/cs/LC_MESSAGES/kcmwifi.mo -share/locale/cs/LC_MESSAGES/kcmxinerama.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/kdat.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/kdelirc.mo -share/locale/cs/LC_MESSAGES/kdepasswd.mo -share/locale/cs/LC_MESSAGES/kdepimresources.mo -share/locale/cs/LC_MESSAGES/kdepimwizards.mo -share/locale/cs/LC_MESSAGES/kdeprint.mo -share/locale/cs/LC_MESSAGES/kdeprint_part.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/kdevdesigner.mo -share/locale/cs/LC_MESSAGES/kdevelop.mo -share/locale/cs/LC_MESSAGES/kdevtipofday.mo -share/locale/cs/LC_MESSAGES/kdf.mo -share/locale/cs/LC_MESSAGES/kdgantt.mo -share/locale/cs/LC_MESSAGES/kdialog.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/keduca.mo -share/locale/cs/LC_MESSAGES/kenolaba.mo -share/locale/cs/LC_MESSAGES/kfax.mo -share/locale/cs/LC_MESSAGES/kfifteenapplet.mo -share/locale/cs/LC_MESSAGES/kfile_au.mo -share/locale/cs/LC_MESSAGES/kfile_avi.mo -share/locale/cs/LC_MESSAGES/kfile_bmp.mo -share/locale/cs/LC_MESSAGES/kfile_cert.mo -share/locale/cs/LC_MESSAGES/kfile_cpp.mo -share/locale/cs/LC_MESSAGES/kfile_dds.mo -share/locale/cs/LC_MESSAGES/kfile_deb.mo -share/locale/cs/LC_MESSAGES/kfile_desktop.mo -share/locale/cs/LC_MESSAGES/kfile_diff.mo -share/locale/cs/LC_MESSAGES/kfile_drgeo.mo -share/locale/cs/LC_MESSAGES/kfile_dvi.mo -share/locale/cs/LC_MESSAGES/kfile_exr.mo -share/locale/cs/LC_MESSAGES/kfile_flac.mo -share/locale/cs/LC_MESSAGES/kfile_folder.mo -share/locale/cs/LC_MESSAGES/kfile_font.mo -share/locale/cs/LC_MESSAGES/kfile_gif.mo -share/locale/cs/LC_MESSAGES/kfile_html.mo -share/locale/cs/LC_MESSAGES/kfile_ico.mo -share/locale/cs/LC_MESSAGES/kfile_ics.mo -share/locale/cs/LC_MESSAGES/kfile_jpeg.mo -share/locale/cs/LC_MESSAGES/kfile_kig.mo -share/locale/cs/LC_MESSAGES/kfile_lnk.mo -share/locale/cs/LC_MESSAGES/kfile_m3u.mo -share/locale/cs/LC_MESSAGES/kfile_mhtml.mo -share/locale/cs/LC_MESSAGES/kfile_mp3.mo -share/locale/cs/LC_MESSAGES/kfile_mpc.mo -share/locale/cs/LC_MESSAGES/kfile_ogg.mo -share/locale/cs/LC_MESSAGES/kfile_palm.mo -share/locale/cs/LC_MESSAGES/kfile_pcx.mo -share/locale/cs/LC_MESSAGES/kfile_pdf.mo -share/locale/cs/LC_MESSAGES/kfile_png.mo -share/locale/cs/LC_MESSAGES/kfile_pnm.mo -share/locale/cs/LC_MESSAGES/kfile_po.mo -share/locale/cs/LC_MESSAGES/kfile_ps.mo -share/locale/cs/LC_MESSAGES/kfile_rfc822.mo -share/locale/cs/LC_MESSAGES/kfile_rgb.mo -share/locale/cs/LC_MESSAGES/kfile_rpm.mo -share/locale/cs/LC_MESSAGES/kfile_sid.mo -share/locale/cs/LC_MESSAGES/kfile_tga.mo -share/locale/cs/LC_MESSAGES/kfile_theora.mo -share/locale/cs/LC_MESSAGES/kfile_tiff.mo -share/locale/cs/LC_MESSAGES/kfile_torrent.mo -share/locale/cs/LC_MESSAGES/kfile_ts.mo -share/locale/cs/LC_MESSAGES/kfile_txt.mo -share/locale/cs/LC_MESSAGES/kfile_vcf.mo -share/locale/cs/LC_MESSAGES/kfile_wav.mo -share/locale/cs/LC_MESSAGES/kfile_xbm.mo -share/locale/cs/LC_MESSAGES/kfile_xpm.mo -share/locale/cs/LC_MESSAGES/kfileaudiopreview.mo -share/locale/cs/LC_MESSAGES/kfilereplace.mo -share/locale/cs/LC_MESSAGES/kfileshare.mo -share/locale/cs/LC_MESSAGES/kfindpart.mo -share/locale/cs/LC_MESSAGES/kfloppy.mo -share/locale/cs/LC_MESSAGES/kfmclient.mo -share/locale/cs/LC_MESSAGES/kfontinst.mo -share/locale/cs/LC_MESSAGES/kfouleggs.mo -share/locale/cs/LC_MESSAGES/kgamma.mo -share/locale/cs/LC_MESSAGES/kgantt.mo -share/locale/cs/LC_MESSAGES/kget.mo -share/locale/cs/LC_MESSAGES/kghostview.mo -share/locale/cs/LC_MESSAGES/kgoldrunner.mo -share/locale/cs/LC_MESSAGES/kgpg.mo -share/locale/cs/LC_MESSAGES/kgreet_classic.mo -share/locale/cs/LC_MESSAGES/kgreet_winbind.mo -share/locale/cs/LC_MESSAGES/khangman.mo -share/locale/cs/LC_MESSAGES/khelpcenter.mo -share/locale/cs/LC_MESSAGES/khexedit.mo -share/locale/cs/LC_MESSAGES/khexedit2part.mo -share/locale/cs/LC_MESSAGES/khotkeys.mo -share/locale/cs/LC_MESSAGES/khtmlkttsd.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/kig.mo -share/locale/cs/LC_MESSAGES/kimagemapeditor.mo -share/locale/cs/LC_MESSAGES/kinetd.mo -share/locale/cs/LC_MESSAGES/kio.mo -share/locale/cs/LC_MESSAGES/kio_audiocd.mo -share/locale/cs/LC_MESSAGES/kio_devices.mo -share/locale/cs/LC_MESSAGES/kio_finger.mo -share/locale/cs/LC_MESSAGES/kio_fish.mo -share/locale/cs/LC_MESSAGES/kio_floppy.mo -share/locale/cs/LC_MESSAGES/kio_groupwise.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_ldap.mo -share/locale/cs/LC_MESSAGES/kio_mac.mo -share/locale/cs/LC_MESSAGES/kio_man.mo -share/locale/cs/LC_MESSAGES/kio_media.mo -share/locale/cs/LC_MESSAGES/kio_mobile.mo -share/locale/cs/LC_MESSAGES/kio_newimap4.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_print.mo -share/locale/cs/LC_MESSAGES/kio_remote.mo -share/locale/cs/LC_MESSAGES/kio_settings.mo -share/locale/cs/LC_MESSAGES/kio_sftp.mo -share/locale/cs/LC_MESSAGES/kio_sieve.mo -share/locale/cs/LC_MESSAGES/kio_smb.mo -share/locale/cs/LC_MESSAGES/kio_smtp.mo -share/locale/cs/LC_MESSAGES/kio_svn.mo -share/locale/cs/LC_MESSAGES/kio_system.mo -share/locale/cs/LC_MESSAGES/kio_trash.mo -share/locale/cs/LC_MESSAGES/kio_zeroconf.mo -share/locale/cs/LC_MESSAGES/kioexec.mo -share/locale/cs/LC_MESSAGES/kiten.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/klatin.mo -share/locale/cs/LC_MESSAGES/klegacyimport.mo -share/locale/cs/LC_MESSAGES/kleopatra.mo -share/locale/cs/LC_MESSAGES/klettres.mo -share/locale/cs/LC_MESSAGES/klickety.mo -share/locale/cs/LC_MESSAGES/klines.mo -share/locale/cs/LC_MESSAGES/klinkstatus.mo -share/locale/cs/LC_MESSAGES/klipper.mo -share/locale/cs/LC_MESSAGES/klock.mo -share/locale/cs/LC_MESSAGES/kmag.mo -share/locale/cs/LC_MESSAGES/kmahjongg.mo -share/locale/cs/LC_MESSAGES/kmail.mo -share/locale/cs/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/cs/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/cs/LC_MESSAGES/kmailcvt.mo -share/locale/cs/LC_MESSAGES/kmathapplet.mo -share/locale/cs/LC_MESSAGES/kmathtool.mo -share/locale/cs/LC_MESSAGES/kmcop.mo -share/locale/cs/LC_MESSAGES/kmenuapplet.mo -share/locale/cs/LC_MESSAGES/kmenuedit.mo -share/locale/cs/LC_MESSAGES/kmessedwords.mo -share/locale/cs/LC_MESSAGES/kmid.mo -share/locale/cs/LC_MESSAGES/kmilo_delli8k.mo -share/locale/cs/LC_MESSAGES/kmilo_generic.mo -share/locale/cs/LC_MESSAGES/kmilo_kvaio.mo -share/locale/cs/LC_MESSAGES/kmilo_powerbook.mo -share/locale/cs/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/cs/LC_MESSAGES/kmilod.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/kmobile.mo -share/locale/cs/LC_MESSAGES/kmoon.mo -share/locale/cs/LC_MESSAGES/kmousetool.mo -share/locale/cs/LC_MESSAGES/kmouth.mo -share/locale/cs/LC_MESSAGES/kmplot.mo -share/locale/cs/LC_MESSAGES/kmrml.mo -share/locale/cs/LC_MESSAGES/knetattach.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/kodo.mo -share/locale/cs/LC_MESSAGES/kolf.mo -share/locale/cs/LC_MESSAGES/kolourpaint.mo -share/locale/cs/LC_MESSAGES/kolourpicker.mo -share/locale/cs/LC_MESSAGES/kommander.mo -share/locale/cs/LC_MESSAGES/kompare.mo -share/locale/cs/LC_MESSAGES/konnector_kabc.mo -share/locale/cs/LC_MESSAGES/konnector_kcal.mo -share/locale/cs/LC_MESSAGES/konnector_local.mo -share/locale/cs/LC_MESSAGES/konnector_qtopia.mo -share/locale/cs/LC_MESSAGES/konnector_remote.mo -share/locale/cs/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/cs/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/cs/LC_MESSAGES/konqsidebar_news.mo -share/locale/cs/LC_MESSAGES/konqueror.mo -share/locale/cs/LC_MESSAGES/konquest.mo -share/locale/cs/LC_MESSAGES/konsole.mo -share/locale/cs/LC_MESSAGES/konsolekalendar.mo -share/locale/cs/LC_MESSAGES/kontact.mo -share/locale/cs/LC_MESSAGES/kooka.mo -share/locale/cs/LC_MESSAGES/kopete.mo -share/locale/cs/LC_MESSAGES/korganizer.mo -share/locale/cs/LC_MESSAGES/korn.mo -share/locale/cs/LC_MESSAGES/kpackage.mo -share/locale/cs/LC_MESSAGES/kpager.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/kpdf.mo -share/locale/cs/LC_MESSAGES/kpercentage.mo -share/locale/cs/LC_MESSAGES/kpersonalizer.mo -share/locale/cs/LC_MESSAGES/kpf.mo -share/locale/cs/LC_MESSAGES/kpilot.mo -share/locale/cs/LC_MESSAGES/kpoker.mo -share/locale/cs/LC_MESSAGES/kpovmodeler.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/krandr.mo -share/locale/cs/LC_MESSAGES/krdb.mo -share/locale/cs/LC_MESSAGES/krdc.mo -share/locale/cs/LC_MESSAGES/kreadconfig.mo -share/locale/cs/LC_MESSAGES/krec.mo -share/locale/cs/LC_MESSAGES/kregexpeditor.mo -share/locale/cs/LC_MESSAGES/kres_blogging.mo -share/locale/cs/LC_MESSAGES/kres_bugzilla.mo -share/locale/cs/LC_MESSAGES/kres_exchange.mo -share/locale/cs/LC_MESSAGES/kres_featureplan.mo -share/locale/cs/LC_MESSAGES/kres_groupwise.mo -share/locale/cs/LC_MESSAGES/kres_kolab.mo -share/locale/cs/LC_MESSAGES/kres_opengroupware.mo -share/locale/cs/LC_MESSAGES/kres_remote.mo -share/locale/cs/LC_MESSAGES/kres_xmlrpc.mo -share/locale/cs/LC_MESSAGES/kreversi.mo -share/locale/cs/LC_MESSAGES/krfb.mo -share/locale/cs/LC_MESSAGES/kruler.mo -share/locale/cs/LC_MESSAGES/krunapplet.mo -share/locale/cs/LC_MESSAGES/ksame.mo -share/locale/cs/LC_MESSAGES/ksayit.mo -share/locale/cs/LC_MESSAGES/kscd.mo -share/locale/cs/LC_MESSAGES/kscreensaver.mo -share/locale/cs/LC_MESSAGES/kshisen.mo -share/locale/cs/LC_MESSAGES/ksig.mo -share/locale/cs/LC_MESSAGES/ksim.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/ksplashthemes.mo -share/locale/cs/LC_MESSAGES/kstars.mo -share/locale/cs/LC_MESSAGES/kstart.mo -share/locale/cs/LC_MESSAGES/kstartperf.mo -share/locale/cs/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/cs/LC_MESSAGES/kstyle_phase_config.mo -share/locale/cs/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/cs/LC_MESSAGES/ksvgplugin.mo -share/locale/cs/LC_MESSAGES/ksync.mo -share/locale/cs/LC_MESSAGES/ksysguard.mo -share/locale/cs/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/cs/LC_MESSAGES/ksystraycmd.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/ktexteditor_autobookmarker.mo -share/locale/cs/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/cs/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/cs/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/cs/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/cs/LC_MESSAGES/ktexteditor_kttsd.mo -share/locale/cs/LC_MESSAGES/kthememanager.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/ktnef.mo -share/locale/cs/LC_MESSAGES/ktouch.mo -share/locale/cs/LC_MESSAGES/ktron.mo -share/locale/cs/LC_MESSAGES/kttsd.mo -share/locale/cs/LC_MESSAGES/kttsd_commandplugin.mo -share/locale/cs/LC_MESSAGES/kttsd_eposplugin.mo -share/locale/cs/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/cs/LC_MESSAGES/kttsd_fliteplugin.mo -share/locale/cs/LC_MESSAGES/kttsd_freettsplugin.mo -share/locale/cs/LC_MESSAGES/kttsd_hadifixplugin.mo -share/locale/cs/LC_MESSAGES/kttsd_sbdplugin.mo -share/locale/cs/LC_MESSAGES/kttsd_stringreplacerplugin.mo -share/locale/cs/LC_MESSAGES/kttsd_talkerchooserplugin.mo -share/locale/cs/LC_MESSAGES/kttsd_xmltransformerplugin.mo -share/locale/cs/LC_MESSAGES/kttsjobmgr.mo -share/locale/cs/LC_MESSAGES/kttsmgr.mo -share/locale/cs/LC_MESSAGES/ktuberling.mo -share/locale/cs/LC_MESSAGES/kturtle.mo -share/locale/cs/LC_MESSAGES/ktux.mo -share/locale/cs/LC_MESSAGES/kuick_plugin.mo -share/locale/cs/LC_MESSAGES/kuickshow.mo -share/locale/cs/LC_MESSAGES/kuiviewer.mo -share/locale/cs/LC_MESSAGES/kuser.mo -share/locale/cs/LC_MESSAGES/kverbos.mo -share/locale/cs/LC_MESSAGES/kview.mo -share/locale/cs/LC_MESSAGES/kview_scale.mo -share/locale/cs/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/cs/LC_MESSAGES/kviewcanvas.mo -share/locale/cs/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/cs/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/cs/LC_MESSAGES/kviewscannerplugin.mo -share/locale/cs/LC_MESSAGES/kviewshell.mo -share/locale/cs/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/cs/LC_MESSAGES/kviewviewer.mo -share/locale/cs/LC_MESSAGES/kvoctrain.mo -share/locale/cs/LC_MESSAGES/kwalletmanager.mo -share/locale/cs/LC_MESSAGES/kwatchgnupg.mo -share/locale/cs/LC_MESSAGES/kweather.mo -share/locale/cs/LC_MESSAGES/kwifimanager.mo -share/locale/cs/LC_MESSAGES/kwin.mo -share/locale/cs/LC_MESSAGES/kwin4.mo -share/locale/cs/LC_MESSAGES/kwin_art_clients.mo -share/locale/cs/LC_MESSAGES/kwin_clients.mo -share/locale/cs/LC_MESSAGES/kwireless.mo -share/locale/cs/LC_MESSAGES/kwordquiz.mo -share/locale/cs/LC_MESSAGES/kworldclock.mo -share/locale/cs/LC_MESSAGES/kwriteconfig.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/kxsldbg.mo -share/locale/cs/LC_MESSAGES/libKTTSD.mo -share/locale/cs/LC_MESSAGES/libcalendarresources.mo -share/locale/cs/LC_MESSAGES/libdmctl.mo -share/locale/cs/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/cs/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/cs/LC_MESSAGES/libkcal.mo -share/locale/cs/LC_MESSAGES/libkcalsystem.mo -share/locale/cs/LC_MESSAGES/libkcddb.mo -share/locale/cs/LC_MESSAGES/libkdegames.mo -share/locale/cs/LC_MESSAGES/libkdehighscores.mo -share/locale/cs/LC_MESSAGES/libkdenetwork.mo -share/locale/cs/LC_MESSAGES/libkdepim.mo -share/locale/cs/LC_MESSAGES/libkholidays.mo -share/locale/cs/LC_MESSAGES/libkicker.mo -share/locale/cs/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/cs/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/cs/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/cs/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/cs/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/cs/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/cs/LC_MESSAGES/libkickermenu_tom.mo -share/locale/cs/LC_MESSAGES/libkleopatra.mo -share/locale/cs/LC_MESSAGES/libkmime.mo -share/locale/cs/LC_MESSAGES/libkonq.mo -share/locale/cs/LC_MESSAGES/libkpgp.mo -share/locale/cs/LC_MESSAGES/libkpimexchange.mo -share/locale/cs/LC_MESSAGES/libkscan.mo -share/locale/cs/LC_MESSAGES/libkscreensaver.mo -share/locale/cs/LC_MESSAGES/libksieve.mo -share/locale/cs/LC_MESSAGES/libksirtet.mo -share/locale/cs/LC_MESSAGES/libksync.mo -share/locale/cs/LC_MESSAGES/libtaskbar.mo -share/locale/cs/LC_MESSAGES/libtaskmanager.mo -share/locale/cs/LC_MESSAGES/lockout.mo -share/locale/cs/LC_MESSAGES/lskat.mo -share/locale/cs/LC_MESSAGES/lyrics.mo -share/locale/cs/LC_MESSAGES/mediaapplet.mo -share/locale/cs/LC_MESSAGES/mediacontrol.mo -share/locale/cs/LC_MESSAGES/minitoolsplugin.mo -share/locale/cs/LC_MESSAGES/multisynk.mo -share/locale/cs/LC_MESSAGES/naughtyapplet.mo -share/locale/cs/LC_MESSAGES/nexscope.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/pitchablespeed.mo -share/locale/cs/LC_MESSAGES/ppdtranslations.mo -share/locale/cs/LC_MESSAGES/privacy.mo -share/locale/cs/LC_MESSAGES/qeditor.mo -share/locale/cs/LC_MESSAGES/quanta.mo -share/locale/cs/LC_MESSAGES/quicklauncher.mo -share/locale/cs/LC_MESSAGES/rellinks.mo -share/locale/cs/LC_MESSAGES/searchbarplugin.mo -share/locale/cs/LC_MESSAGES/secpolicy.mo -share/locale/cs/LC_MESSAGES/spy.mo -share/locale/cs/LC_MESSAGES/synaescope.mo -share/locale/cs/LC_MESSAGES/taskbarextension.mo -share/locale/cs/LC_MESSAGES/timezones.mo -share/locale/cs/LC_MESSAGES/tippecanoe.mo -share/locale/cs/LC_MESSAGES/trashapplet.mo -share/locale/cs/LC_MESSAGES/tyler.mo -share/locale/cs/LC_MESSAGES/uachangerplugin.mo -share/locale/cs/LC_MESSAGES/umbrello.mo -share/locale/cs/LC_MESSAGES/useraccount.mo -share/locale/cs/LC_MESSAGES/validatorsplugin.mo -share/locale/cs/LC_MESSAGES/vimpart.mo -share/locale/cs/LC_MESSAGES/wakeup.mo -share/locale/cs/LC_MESSAGES/wavecapture.mo -share/locale/cs/LC_MESSAGES/webarchiver.mo -share/locale/cs/charset -share/locale/cs/entry.desktop -share/locale/cs/flag.png -@dirrm share/doc/HTML/cs/konsole -@dirrm share/doc/HTML/cs/kinfocenter/xserver -@dirrm share/doc/HTML/cs/kinfocenter/sound -@dirrm share/doc/HTML/cs/kinfocenter/scsi -@dirrm share/doc/HTML/cs/kinfocenter/processor -@dirrm share/doc/HTML/cs/kinfocenter/pcmcia -@dirrm share/doc/HTML/cs/kinfocenter/pci -@dirrm share/doc/HTML/cs/kinfocenter/partitions -@dirrm share/doc/HTML/cs/kinfocenter/memory -@dirrm share/doc/HTML/cs/kinfocenter/ioports -@dirrm share/doc/HTML/cs/kinfocenter/interrupts -@dirrm share/doc/HTML/cs/kinfocenter/dma -@dirrm share/doc/HTML/cs/kinfocenter/devices -@dirrm share/doc/HTML/cs/kinfocenter -@dirrm share/doc/HTML/cs/khelpcenter -@dirrm share/doc/HTML/cs/kgamma -@dirrm share/doc/HTML/cs/kdm -@dirrm share/doc/HTML/cs/kdeprint -@dirrm share/doc/HTML/cs/kcontrol/passwords -@dirrm share/doc/HTML/cs/kcontrol/laptop -@dirrm share/doc/HTML/cs/kcontrol/kmixcfg -@dirrm share/doc/HTML/cs/kcontrol/khtml -@dirrm share/doc/HTML/cs/kcontrol/kdm -@dirrm share/doc/HTML/cs/kcontrol/kcmstyle -@dirrm share/doc/HTML/cs/kcontrol/kcmsmserver -@dirrm share/doc/HTML/cs/kcontrol/kcmlowbatcrit -@dirrm share/doc/HTML/cs/kcontrol/kcmaccess -@dirrm share/doc/HTML/cs/kcontrol/email -@dirrm share/doc/HTML/cs/kcontrol/crypto -@dirrm share/doc/HTML/cs/kcontrol/clock -@dirrm share/doc/HTML/cs/kcontrol/bell -@dirrm share/doc/HTML/cs/kcontrol/arts -@dirrm share/doc/HTML/cs/kcontrol -@dirrm share/doc/HTML/cs/common -@dirrm share/apps/klettres/cs/syllab -@dirrm share/apps/klettres/cs/alpha -@dirrm share/apps/klettres/cs -@dirrm share/apps/klettres -@dirrm share/apps/khangman/data/cs -@dirrm share/apps/khangman/data -@dirrm share/apps/khangman diff --git a/misc/kde4-l10n-da/Makefile b/misc/kde4-l10n-da/Makefile deleted file mode 100644 index 722dd51c4c20..000000000000 --- a/misc/kde4-l10n-da/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-da -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= da- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Danish messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-da/distinfo b/misc/kde4-l10n-da/distinfo deleted file mode 100644 index bb352161b6a2..000000000000 --- a/misc/kde4-l10n-da/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-da-3.4.2.tar.bz2) = 9ca37ca653ca4318cccd123a9f7b2a7b -SIZE (KDE/kde-i18n/kde-i18n-da-3.4.2.tar.bz2) = 12839260 diff --git a/misc/kde4-l10n-da/pkg-descr b/misc/kde4-l10n-da/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-da/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-da/pkg-plist b/misc/kde4-l10n-da/pkg-plist deleted file mode 100644 index 67ce6d145003..000000000000 --- a/misc/kde4-l10n-da/pkg-plist +++ /dev/null @@ -1,2420 +0,0 @@ -share/apps/khangman/da.txt -share/apps/khangman/data/da/animals.kvtml -share/apps/khangman/data/da/easy.kvtml -share/apps/khangman/data/da/hard.kvtml -share/apps/khangman/data/da/medium.kvtml -share/apps/klettres/da/alpha/a-0.ogg -share/apps/klettres/da/alpha/a-1.ogg -share/apps/klettres/da/alpha/a-10.ogg -share/apps/klettres/da/alpha/a-11.ogg -share/apps/klettres/da/alpha/a-12.ogg -share/apps/klettres/da/alpha/a-13.ogg -share/apps/klettres/da/alpha/a-14.ogg -share/apps/klettres/da/alpha/a-15.ogg -share/apps/klettres/da/alpha/a-16.ogg -share/apps/klettres/da/alpha/a-17.ogg -share/apps/klettres/da/alpha/a-18.ogg -share/apps/klettres/da/alpha/a-19.ogg -share/apps/klettres/da/alpha/a-2.ogg -share/apps/klettres/da/alpha/a-20.ogg -share/apps/klettres/da/alpha/a-21.ogg -share/apps/klettres/da/alpha/a-22.ogg -share/apps/klettres/da/alpha/a-23.ogg -share/apps/klettres/da/alpha/a-24.ogg -share/apps/klettres/da/alpha/a-25.ogg -share/apps/klettres/da/alpha/a-26.ogg -share/apps/klettres/da/alpha/a-27.ogg -share/apps/klettres/da/alpha/a-28.ogg -share/apps/klettres/da/alpha/a-3.ogg -share/apps/klettres/da/alpha/a-4.ogg -share/apps/klettres/da/alpha/a-5.ogg -share/apps/klettres/da/alpha/a-6.ogg -share/apps/klettres/da/alpha/a-7.ogg -share/apps/klettres/da/alpha/a-8.ogg -share/apps/klettres/da/alpha/a-9.ogg -share/apps/klettres/da/syllab/ad-0.ogg -share/apps/klettres/da/syllab/ad-1.ogg -share/apps/klettres/da/syllab/ad-10.ogg -share/apps/klettres/da/syllab/ad-11.ogg -share/apps/klettres/da/syllab/ad-12.ogg -share/apps/klettres/da/syllab/ad-13.ogg -share/apps/klettres/da/syllab/ad-14.ogg -share/apps/klettres/da/syllab/ad-15.ogg -share/apps/klettres/da/syllab/ad-16.ogg -share/apps/klettres/da/syllab/ad-17.ogg -share/apps/klettres/da/syllab/ad-18.ogg -share/apps/klettres/da/syllab/ad-19.ogg -share/apps/klettres/da/syllab/ad-2.ogg -share/apps/klettres/da/syllab/ad-20.ogg -share/apps/klettres/da/syllab/ad-21.ogg -share/apps/klettres/da/syllab/ad-22.ogg -share/apps/klettres/da/syllab/ad-23.ogg -share/apps/klettres/da/syllab/ad-24.ogg -share/apps/klettres/da/syllab/ad-25.ogg -share/apps/klettres/da/syllab/ad-26.ogg -share/apps/klettres/da/syllab/ad-27.ogg -share/apps/klettres/da/syllab/ad-3.ogg -share/apps/klettres/da/syllab/ad-4.ogg -share/apps/klettres/da/syllab/ad-5.ogg -share/apps/klettres/da/syllab/ad-6.ogg -share/apps/klettres/da/syllab/ad-7.ogg -share/apps/klettres/da/syllab/ad-8.ogg -share/apps/klettres/da/syllab/ad-9.ogg -share/apps/ktuberling/sounds/da/briller.wav -share/apps/ktuberling/sounds/da/cigar.wav -share/apps/ktuberling/sounds/da/haar.wav -share/apps/ktuberling/sounds/da/halsbaand.wav -share/apps/ktuberling/sounds/da/halstoerklaede.wav -share/apps/ktuberling/sounds/da/hat.wav -share/apps/ktuberling/sounds/da/horn.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/pingvin.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/doc/HTML/da/KRegExpEditor/altntool.png -share/doc/HTML/da/KRegExpEditor/anychartool.png -share/doc/HTML/da/KRegExpEditor/boundarytools.png -share/doc/HTML/da/KRegExpEditor/charactertool.png -share/doc/HTML/da/KRegExpEditor/common -share/doc/HTML/da/KRegExpEditor/compoundtool.png -share/doc/HTML/da/KRegExpEditor/index.cache.bz2 -share/doc/HTML/da/KRegExpEditor/index.docbook -share/doc/HTML/da/KRegExpEditor/linestartendtool.png -share/doc/HTML/da/KRegExpEditor/lookaheadtools.png -share/doc/HTML/da/KRegExpEditor/repeattool.png -share/doc/HTML/da/KRegExpEditor/theEditor.png -share/doc/HTML/da/akregator/common -share/doc/HTML/da/akregator/index.cache.bz2 -share/doc/HTML/da/akregator/index.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/amor/man-amor.6.docbook -share/doc/HTML/da/ark/common -share/doc/HTML/da/ark/index.cache.bz2 -share/doc/HTML/da/ark/index.docbook -share/doc/HTML/da/artsbuilder/apis.docbook -share/doc/HTML/da/artsbuilder/artsbuilder.docbook -share/doc/HTML/da/artsbuilder/common -share/doc/HTML/da/artsbuilder/detail.docbook -share/doc/HTML/da/artsbuilder/digitalaudio.docbook -share/doc/HTML/da/artsbuilder/faq.docbook -share/doc/HTML/da/artsbuilder/future.docbook -share/doc/HTML/da/artsbuilder/glossary.docbook -share/doc/HTML/da/artsbuilder/gui.docbook -share/doc/HTML/da/artsbuilder/helping.docbook -share/doc/HTML/da/artsbuilder/index.cache.bz2 -share/doc/HTML/da/artsbuilder/index.docbook -share/doc/HTML/da/artsbuilder/mcop.docbook -share/doc/HTML/da/artsbuilder/midi.docbook -share/doc/HTML/da/artsbuilder/midiintro.docbook -share/doc/HTML/da/artsbuilder/modules.docbook -share/doc/HTML/da/artsbuilder/porting.docbook -share/doc/HTML/da/artsbuilder/references.docbook -share/doc/HTML/da/artsbuilder/tools.docbook -share/doc/HTML/da/atlantik/common -share/doc/HTML/da/atlantik/index.cache.bz2 -share/doc/HTML/da/atlantik/index.docbook -share/doc/HTML/da/atlantik/man-atlantik.6.docbook -share/doc/HTML/da/cervisia/common -share/doc/HTML/da/cervisia/index.cache.bz2 -share/doc/HTML/da/cervisia/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/appheader.html -share/doc/HTML/da/common/artistic-license.html -share/doc/HTML/da/common/bottom-left.png -share/doc/HTML/da/common/bottom-middle.png -share/doc/HTML/da/common/bottom-right.png -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/docheadergears.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/doxygen.css -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/footer.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/grad.png -share/doc/HTML/da/common/header.html -share/doc/HTML/da/common/headerbg.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/kde-web.css -share/doc/HTML/da/common/kde_logo.png -share/doc/HTML/da/common/kde_logo_bg.png -share/doc/HTML/da/common/kmenu.png -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.png -share/doc/HTML/da/common/mainfooter.html -share/doc/HTML/da/common/mainheader.html -share/doc/HTML/da/common/qpl-license.html -share/doc/HTML/da/common/shadow.png -share/doc/HTML/da/common/top-left.png -share/doc/HTML/da/common/top-middle.png -share/doc/HTML/da/common/top-right-konqueror.png -share/doc/HTML/da/common/web-docbottom.png -share/doc/HTML/da/common/web-doctop.png -share/doc/HTML/da/common/x11-license.html -share/doc/HTML/da/common/xml.dcl -share/doc/HTML/da/flashkard/common -share/doc/HTML/da/flashkard/index.cache.bz2 -share/doc/HTML/da/flashkard/index.docbook -share/doc/HTML/da/juk/common -share/doc/HTML/da/juk/index.cache.bz2 -share/doc/HTML/da/juk/index.docbook -share/doc/HTML/da/kaboodle/common -share/doc/HTML/da/kaboodle/index.cache.bz2 -share/doc/HTML/da/kaboodle/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/kalarm/alarmmessage.png -share/doc/HTML/da/kalarm/common -share/doc/HTML/da/kalarm/editwindow.png -share/doc/HTML/da/kalarm/index.cache.bz2 -share/doc/HTML/da/kalarm/index.docbook -share/doc/HTML/da/kalarm/mainwindow.png -share/doc/HTML/da/kalzium/common -share/doc/HTML/da/kalzium/index.cache.bz2 -share/doc/HTML/da/kalzium/index.docbook -share/doc/HTML/da/kalzium/man-kalzium.1.docbook -share/doc/HTML/da/kalzium/screenshot1.png -share/doc/HTML/da/kalzium/screenshot3.png -share/doc/HTML/da/kalzium/settings.png -share/doc/HTML/da/kamera/common -share/doc/HTML/da/kamera/index.cache.bz2 -share/doc/HTML/da/kamera/index.docbook -share/doc/HTML/da/kandy/common -share/doc/HTML/da/kandy/index.cache.bz2 -share/doc/HTML/da/kandy/index.docbook -share/doc/HTML/da/kappfinder/man-kappfinder.1.docbook -share/doc/HTML/da/kapptemplate/man-kapptemplate.1.docbook -share/doc/HTML/da/karm/common -share/doc/HTML/da/karm/index.cache.bz2 -share/doc/HTML/da/karm/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-plugins/common -share/doc/HTML/da/kate-plugins/filetemplates.docbook -share/doc/HTML/da/kate-plugins/htmltools.docbook -share/doc/HTML/da/kate-plugins/index.cache.bz2 -share/doc/HTML/da/kate-plugins/index.docbook -share/doc/HTML/da/kate-plugins/insertcommand.docbook -share/doc/HTML/da/kate-plugins/openheader.docbook -share/doc/HTML/da/kate-plugins/projectmanager.docbook -share/doc/HTML/da/kate-plugins/textfilter.docbook -share/doc/HTML/da/kate-plugins/xmlcheck.docbook -share/doc/HTML/da/kate-plugins/xmltools.docbook -share/doc/HTML/da/kate/advanced.docbook -share/doc/HTML/da/kate/common -share/doc/HTML/da/kate/configdialog01.png -share/doc/HTML/da/kate/configdialog02.png -share/doc/HTML/da/kate/configuring.docbook -share/doc/HTML/da/kate/fundamentals.docbook -share/doc/HTML/da/kate/highlighted.png -share/doc/HTML/da/kate/highlighting.docbook -share/doc/HTML/da/kate/index.cache.bz2 -share/doc/HTML/da/kate/index.docbook -share/doc/HTML/da/kate/kate.png -share/doc/HTML/da/kate/mdi.docbook -share/doc/HTML/da/kate/menus.docbook -share/doc/HTML/da/kate/mimetypechooser.png -share/doc/HTML/da/kate/part.docbook -share/doc/HTML/da/kate/plugins.docbook -share/doc/HTML/da/kate/regular-expressions.docbook -share/doc/HTML/da/kate/unhighlighted.png -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/kbabel/catman.docbook -share/doc/HTML/da/kbabel/common -share/doc/HTML/da/kbabel/dictionaries.docbook -share/doc/HTML/da/kbabel/faq.docbook -share/doc/HTML/da/kbabel/glossary.docbook -share/doc/HTML/da/kbabel/index.cache.bz2 -share/doc/HTML/da/kbabel/index.docbook -share/doc/HTML/da/kbabel/kbabeldict.docbook -share/doc/HTML/da/kbabel/man-catalogmanager.1.docbook -share/doc/HTML/da/kbabel/menu.docbook -share/doc/HTML/da/kbabel/preferences.docbook -share/doc/HTML/da/kbabel/roughtranslation.png -share/doc/HTML/da/kbabel/snap1.png -share/doc/HTML/da/kbabel/snap_catalogmanager.png -share/doc/HTML/da/kbabel/using.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/kbounce/common -share/doc/HTML/da/kbounce/index.cache.bz2 -share/doc/HTML/da/kbounce/index.docbook -share/doc/HTML/da/kbruch/common -share/doc/HTML/da/kbruch/index.cache.bz2 -share/doc/HTML/da/kbruch/index.docbook -share/doc/HTML/da/kbugbuster/common -share/doc/HTML/da/kbugbuster/index.cache.bz2 -share/doc/HTML/da/kbugbuster/index.docbook -share/doc/HTML/da/kcachegrind/common -share/doc/HTML/da/kcachegrind/index.cache.bz2 -share/doc/HTML/da/kcachegrind/index.docbook -share/doc/HTML/da/kcalc/common -share/doc/HTML/da/kcalc/index.cache.bz2 -share/doc/HTML/da/kcalc/index.docbook -share/doc/HTML/da/kcharselect/common -share/doc/HTML/da/kcharselect/index.cache.bz2 -share/doc/HTML/da/kcharselect/index.docbook -share/doc/HTML/da/kcoloredit/common -share/doc/HTML/da/kcoloredit/index.cache.bz2 -share/doc/HTML/da/kcoloredit/index.docbook -share/doc/HTML/da/kcontrol/arts/common -share/doc/HTML/da/kcontrol/arts/index.cache.bz2 -share/doc/HTML/da/kcontrol/arts/index.docbook -share/doc/HTML/da/kcontrol/arts/midi.docbook -share/doc/HTML/da/kcontrol/background/common -share/doc/HTML/da/kcontrol/background/index.cache.bz2 -share/doc/HTML/da/kcontrol/background/index.docbook -share/doc/HTML/da/kcontrol/bell/common -share/doc/HTML/da/kcontrol/bell/index.cache.bz2 -share/doc/HTML/da/kcontrol/bell/index.docbook -share/doc/HTML/da/kcontrol/cache/common -share/doc/HTML/da/kcontrol/cache/index.cache.bz2 -share/doc/HTML/da/kcontrol/cache/index.docbook -share/doc/HTML/da/kcontrol/clock/common -share/doc/HTML/da/kcontrol/clock/index.cache.bz2 -share/doc/HTML/da/kcontrol/clock/index.docbook -share/doc/HTML/da/kcontrol/colors/common -share/doc/HTML/da/kcontrol/colors/index.cache.bz2 -share/doc/HTML/da/kcontrol/colors/index.docbook -share/doc/HTML/da/kcontrol/common -share/doc/HTML/da/kcontrol/cookies/common -share/doc/HTML/da/kcontrol/cookies/index.cache.bz2 -share/doc/HTML/da/kcontrol/cookies/index.docbook -share/doc/HTML/da/kcontrol/crypto/common -share/doc/HTML/da/kcontrol/crypto/index.cache.bz2 -share/doc/HTML/da/kcontrol/crypto/index.docbook -share/doc/HTML/da/kcontrol/desktop/common -share/doc/HTML/da/kcontrol/desktop/index.cache.bz2 -share/doc/HTML/da/kcontrol/desktop/index.docbook -share/doc/HTML/da/kcontrol/desktopbehavior/common -share/doc/HTML/da/kcontrol/desktopbehavior/index.cache.bz2 -share/doc/HTML/da/kcontrol/desktopbehavior/index.docbook -share/doc/HTML/da/kcontrol/ebrowsing/common -share/doc/HTML/da/kcontrol/ebrowsing/index.cache.bz2 -share/doc/HTML/da/kcontrol/ebrowsing/index.docbook -share/doc/HTML/da/kcontrol/email/common -share/doc/HTML/da/kcontrol/email/index.cache.bz2 -share/doc/HTML/da/kcontrol/email/index.docbook -share/doc/HTML/da/kcontrol/energy/common -share/doc/HTML/da/kcontrol/energy/index.cache.bz2 -share/doc/HTML/da/kcontrol/energy/index.docbook -share/doc/HTML/da/kcontrol/filemanager/common -share/doc/HTML/da/kcontrol/filemanager/index.cache.bz2 -share/doc/HTML/da/kcontrol/filemanager/index.docbook -share/doc/HTML/da/kcontrol/filemanager/kfileman1.png -share/doc/HTML/da/kcontrol/filemanager/kfileman2.png -share/doc/HTML/da/kcontrol/filetypes/common -share/doc/HTML/da/kcontrol/filetypes/index.cache.bz2 -share/doc/HTML/da/kcontrol/filetypes/index.docbook -share/doc/HTML/da/kcontrol/fonts/common -share/doc/HTML/da/kcontrol/fonts/index.cache.bz2 -share/doc/HTML/da/kcontrol/fonts/index.docbook -share/doc/HTML/da/kcontrol/helpindex/common -share/doc/HTML/da/kcontrol/helpindex/index.cache.bz2 -share/doc/HTML/da/kcontrol/helpindex/index.docbook -share/doc/HTML/da/kcontrol/icons/common -share/doc/HTML/da/kcontrol/icons/index.cache.bz2 -share/doc/HTML/da/kcontrol/icons/index.docbook -share/doc/HTML/da/kcontrol/index.cache.bz2 -share/doc/HTML/da/kcontrol/index.docbook -share/doc/HTML/da/kcontrol/kalarmd/common -share/doc/HTML/da/kcontrol/kalarmd/index.cache.bz2 -share/doc/HTML/da/kcontrol/kalarmd/index.docbook -share/doc/HTML/da/kcontrol/kcmaccess/common -share/doc/HTML/da/kcontrol/kcmaccess/index.cache.bz2 -share/doc/HTML/da/kcontrol/kcmaccess/index.docbook -share/doc/HTML/da/kcontrol/kcmcss/common -share/doc/HTML/da/kcontrol/kcmcss/index.cache.bz2 -share/doc/HTML/da/kcontrol/kcmcss/index.docbook -share/doc/HTML/da/kcontrol/kcmfontinst/common -share/doc/HTML/da/kcontrol/kcmfontinst/index.cache.bz2 -share/doc/HTML/da/kcontrol/kcmfontinst/index.docbook -share/doc/HTML/da/kcontrol/kcmkonsole/common -share/doc/HTML/da/kcontrol/kcmkonsole/index.cache.bz2 -share/doc/HTML/da/kcontrol/kcmkonsole/index.docbook -share/doc/HTML/da/kcontrol/kcmktalkd/common -share/doc/HTML/da/kcontrol/kcmktalkd/index.cache.bz2 -share/doc/HTML/da/kcontrol/kcmktalkd/index.docbook -share/doc/HTML/da/kcontrol/kcmlaunch/common -share/doc/HTML/da/kcontrol/kcmlaunch/index.cache.bz2 -share/doc/HTML/da/kcontrol/kcmlaunch/index.docbook -share/doc/HTML/da/kcontrol/kcmlowbatcrit/common -share/doc/HTML/da/kcontrol/kcmlowbatcrit/index.cache.bz2 -share/doc/HTML/da/kcontrol/kcmlowbatcrit/index.docbook -share/doc/HTML/da/kcontrol/kcmlowbatwarn/common -share/doc/HTML/da/kcontrol/kcmlowbatwarn/index.cache.bz2 -share/doc/HTML/da/kcontrol/kcmlowbatwarn/index.docbook -share/doc/HTML/da/kcontrol/kcmnotify/common -share/doc/HTML/da/kcontrol/kcmnotify/index.cache.bz2 -share/doc/HTML/da/kcontrol/kcmnotify/index.docbook -share/doc/HTML/da/kcontrol/kcmsmserver/common -share/doc/HTML/da/kcontrol/kcmsmserver/index.cache.bz2 -share/doc/HTML/da/kcontrol/kcmsmserver/index.docbook -share/doc/HTML/da/kcontrol/kcmstyle/common -share/doc/HTML/da/kcontrol/kcmstyle/index.cache.bz2 -share/doc/HTML/da/kcontrol/kcmstyle/index.docbook -share/doc/HTML/da/kcontrol/kcmtaskbar/common -share/doc/HTML/da/kcontrol/kcmtaskbar/index.cache.bz2 -share/doc/HTML/da/kcontrol/kcmtaskbar/index.docbook -share/doc/HTML/da/kcontrol/kdm/common -share/doc/HTML/da/kcontrol/kdm/index.cache.bz2 -share/doc/HTML/da/kcontrol/kdm/index.docbook -share/doc/HTML/da/kcontrol/keyboard/common -share/doc/HTML/da/kcontrol/keyboard/index.cache.bz2 -share/doc/HTML/da/kcontrol/keyboard/index.docbook -share/doc/HTML/da/kcontrol/keys/common -share/doc/HTML/da/kcontrol/keys/index.cache.bz2 -share/doc/HTML/da/kcontrol/keys/index.docbook -share/doc/HTML/da/kcontrol/khtml/common -share/doc/HTML/da/kcontrol/khtml/index.cache.bz2 -share/doc/HTML/da/kcontrol/khtml/index.docbook -share/doc/HTML/da/kcontrol/khtml/nsplugin.docbook -share/doc/HTML/da/kcontrol/kmixcfg/common -share/doc/HTML/da/kcontrol/kmixcfg/index.cache.bz2 -share/doc/HTML/da/kcontrol/kmixcfg/index.docbook -share/doc/HTML/da/kcontrol/kthememgr/common -share/doc/HTML/da/kcontrol/kthememgr/index.cache.bz2 -share/doc/HTML/da/kcontrol/kthememgr/index.docbook -share/doc/HTML/da/kcontrol/kwindecoration/common -share/doc/HTML/da/kcontrol/kwindecoration/index.cache.bz2 -share/doc/HTML/da/kcontrol/kwindecoration/index.docbook -share/doc/HTML/da/kcontrol/lanbrowser/common -share/doc/HTML/da/kcontrol/lanbrowser/index.cache.bz2 -share/doc/HTML/da/kcontrol/lanbrowser/index.docbook -share/doc/HTML/da/kcontrol/language/common -share/doc/HTML/da/kcontrol/language/index.cache.bz2 -share/doc/HTML/da/kcontrol/language/index.docbook -share/doc/HTML/da/kcontrol/laptop/common -share/doc/HTML/da/kcontrol/laptop/index.cache.bz2 -share/doc/HTML/da/kcontrol/laptop/index.docbook -share/doc/HTML/da/kcontrol/mouse/common -share/doc/HTML/da/kcontrol/mouse/index.cache.bz2 -share/doc/HTML/da/kcontrol/mouse/index.docbook -share/doc/HTML/da/kcontrol/netpref/common -share/doc/HTML/da/kcontrol/netpref/index.cache.bz2 -share/doc/HTML/da/kcontrol/netpref/index.docbook -share/doc/HTML/da/kcontrol/panel/common -share/doc/HTML/da/kcontrol/panel/index.cache.bz2 -share/doc/HTML/da/kcontrol/panel/index.docbook -share/doc/HTML/da/kcontrol/panelappearance/common -share/doc/HTML/da/kcontrol/panelappearance/index.cache.bz2 -share/doc/HTML/da/kcontrol/panelappearance/index.docbook -share/doc/HTML/da/kcontrol/passwords/common -share/doc/HTML/da/kcontrol/passwords/index.cache.bz2 -share/doc/HTML/da/kcontrol/passwords/index.docbook -share/doc/HTML/da/kcontrol/powerctrl/common -share/doc/HTML/da/kcontrol/powerctrl/index.cache.bz2 -share/doc/HTML/da/kcontrol/powerctrl/index.docbook -share/doc/HTML/da/kcontrol/proxy/common -share/doc/HTML/da/kcontrol/proxy/index.cache.bz2 -share/doc/HTML/da/kcontrol/proxy/index.docbook -share/doc/HTML/da/kcontrol/proxy/socks.docbook -share/doc/HTML/da/kcontrol/screensaver/common -share/doc/HTML/da/kcontrol/screensaver/index.cache.bz2 -share/doc/HTML/da/kcontrol/screensaver/index.docbook -share/doc/HTML/da/kcontrol/screenshot.png -share/doc/HTML/da/kcontrol/smb/common -share/doc/HTML/da/kcontrol/smb/index.cache.bz2 -share/doc/HTML/da/kcontrol/smb/index.docbook -share/doc/HTML/da/kcontrol/spellchecking/common -share/doc/HTML/da/kcontrol/spellchecking/index.cache.bz2 -share/doc/HTML/da/kcontrol/spellchecking/index.docbook -share/doc/HTML/da/kcontrol/useragent/common -share/doc/HTML/da/kcontrol/useragent/index.cache.bz2 -share/doc/HTML/da/kcontrol/useragent/index.docbook -share/doc/HTML/da/kcontrol/windowmanagement/common -share/doc/HTML/da/kcontrol/windowmanagement/index.cache.bz2 -share/doc/HTML/da/kcontrol/windowmanagement/index.docbook -share/doc/HTML/da/kcron/common -share/doc/HTML/da/kcron/index.cache.bz2 -share/doc/HTML/da/kcron/index.docbook -share/doc/HTML/da/kcron/kcron.png -share/doc/HTML/da/kcron/kcronstart.png -share/doc/HTML/da/kcron/newtask.png -share/doc/HTML/da/kcron/newvariable.png -share/doc/HTML/da/kcron/print.png -share/doc/HTML/da/kdat/common -share/doc/HTML/da/kdat/index.cache.bz2 -share/doc/HTML/da/kdat/index.docbook -share/doc/HTML/da/kdcop/common -share/doc/HTML/da/kdcop/index.cache.bz2 -share/doc/HTML/da/kdcop/index.docbook -share/doc/HTML/da/kde_app_devel/common -share/doc/HTML/da/kde_app_devel/index.cache.bz2 -share/doc/HTML/da/kde_app_devel/index.docbook -share/doc/HTML/da/kdearch/common -share/doc/HTML/da/kdearch/index.cache.bz2 -share/doc/HTML/da/kdearch/index.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/kdelibs/man-artsmessage.1.docbook -share/doc/HTML/da/kdelibs/man-checkXML.1.docbook -share/doc/HTML/da/kdelibs/man-dcop.1.docbook -share/doc/HTML/da/kdelibs/man-kdeoptions.7.docbook -share/doc/HTML/da/kdelibs/man-qtoptions.7.docbook -share/doc/HTML/da/kdelirc/irkick/common -share/doc/HTML/da/kdelirc/irkick/index.cache.bz2 -share/doc/HTML/da/kdelirc/irkick/index.docbook -share/doc/HTML/da/kdelirc/kcmlirc/common -share/doc/HTML/da/kdelirc/kcmlirc/index.cache.bz2 -share/doc/HTML/da/kdelirc/kcmlirc/index.docbook -share/doc/HTML/da/kdeprint/add-printer-wiz.docbook -share/doc/HTML/da/kdeprint/common -share/doc/HTML/da/kdeprint/cups-config.docbook -share/doc/HTML/da/kdeprint/cupsoptions.docbook -share/doc/HTML/da/kdeprint/extensions.docbook -share/doc/HTML/da/kdeprint/external-command.docbook -share/doc/HTML/da/kdeprint/final-word.docbook -share/doc/HTML/da/kdeprint/getting-started.docbook -share/doc/HTML/da/kdeprint/highlights.docbook -share/doc/HTML/da/kdeprint/index.cache.bz2 -share/doc/HTML/da/kdeprint/index.docbook -share/doc/HTML/da/kdeprint/lpd.docbook -share/doc/HTML/da/kdeprint/lpr-bsd.docbook -share/doc/HTML/da/kdeprint/lprng.docbook -share/doc/HTML/da/kdeprint/rlpr.docbook -share/doc/HTML/da/kdeprint/tech-overview.docbook -share/doc/HTML/da/kdeprint/theory.docbook -share/doc/HTML/da/kdesu/common -share/doc/HTML/da/kdesu/index.cache.bz2 -share/doc/HTML/da/kdesu/index.docbook -share/doc/HTML/da/kdevelop/app-files.docbook -share/doc/HTML/da/kdevelop/app-menu.docbook -share/doc/HTML/da/kdevelop/applicationwizard.docbook -share/doc/HTML/da/kdevelop/common -share/doc/HTML/da/kdevelop/getting-started.docbook -share/doc/HTML/da/kdevelop/index.cache.bz2 -share/doc/HTML/da/kdevelop/index.docbook -share/doc/HTML/da/kdevelop/kdevelop-install.docbook -share/doc/HTML/da/kdevelop/kdevelop-scripting.docbook -share/doc/HTML/da/kdevelop/kdevelop-survey.docbook -share/doc/HTML/da/kdevelop/project-advanced.docbook -share/doc/HTML/da/kdevelop/project-management.docbook -share/doc/HTML/da/kdevelop/setup.docbook -share/doc/HTML/da/kdevelop/unixdev.docbook -share/doc/HTML/da/kdf/common -share/doc/HTML/da/kdf/index.cache.bz2 -share/doc/HTML/da/kdf/index.docbook -share/doc/HTML/da/kdict/common -share/doc/HTML/da/kdict/index.cache.bz2 -share/doc/HTML/da/kdict/index.docbook -share/doc/HTML/da/kdm/common -share/doc/HTML/da/kdm/index.cache.bz2 -share/doc/HTML/da/kdm/index.docbook -share/doc/HTML/da/kdm/kdmrc-ref.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/keduca/common -share/doc/HTML/da/keduca/index.cache.bz2 -share/doc/HTML/da/keduca/index.docbook -share/doc/HTML/da/keduca/screenshot.png -share/doc/HTML/da/kenolaba/common -share/doc/HTML/da/kenolaba/index.cache.bz2 -share/doc/HTML/da/kenolaba/index.docbook -share/doc/HTML/da/kenolaba/man-kenolaba.6.docbook -share/doc/HTML/da/kfilereplace/common -share/doc/HTML/da/kfilereplace/index.cache.bz2 -share/doc/HTML/da/kfilereplace/index.docbook -share/doc/HTML/da/kfind/common -share/doc/HTML/da/kfind/index.cache.bz2 -share/doc/HTML/da/kfind/index.docbook -share/doc/HTML/da/kfloppy/common -share/doc/HTML/da/kfloppy/index.cache.bz2 -share/doc/HTML/da/kfloppy/index.docbook -share/doc/HTML/da/kfouleggs/common -share/doc/HTML/da/kfouleggs/gamescreen.png -share/doc/HTML/da/kfouleggs/index.cache.bz2 -share/doc/HTML/da/kfouleggs/index.docbook -share/doc/HTML/da/kgamma/common -share/doc/HTML/da/kgamma/index.cache.bz2 -share/doc/HTML/da/kgamma/index.docbook -share/doc/HTML/da/kgeo/common -share/doc/HTML/da/kgeo/index.cache.bz2 -share/doc/HTML/da/kgeo/index.docbook -share/doc/HTML/da/kget/common -share/doc/HTML/da/kget/index.cache.bz2 -share/doc/HTML/da/kget/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/kgoldrunner/common -share/doc/HTML/da/kgoldrunner/index.cache.bz2 -share/doc/HTML/da/kgoldrunner/index.docbook -share/doc/HTML/da/kgpg/common -share/doc/HTML/da/kgpg/index.cache.bz2 -share/doc/HTML/da/kgpg/index.docbook -share/doc/HTML/da/khangman/common -share/doc/HTML/da/khangman/index.cache.bz2 -share/doc/HTML/da/khangman/index.docbook -share/doc/HTML/da/khangman/khangman1.png -share/doc/HTML/da/khelpcenter/common -share/doc/HTML/da/khelpcenter/contact.docbook -share/doc/HTML/da/khelpcenter/faq/about.docbook -share/doc/HTML/da/khelpcenter/faq/common -share/doc/HTML/da/khelpcenter/faq/configkde.docbook -share/doc/HTML/da/khelpcenter/faq/contrib.docbook -share/doc/HTML/da/khelpcenter/faq/desktop.docbook -share/doc/HTML/da/khelpcenter/faq/filemng.docbook -share/doc/HTML/da/khelpcenter/faq/getkde.docbook -share/doc/HTML/da/khelpcenter/faq/index.cache.bz2 -share/doc/HTML/da/khelpcenter/faq/index.docbook -share/doc/HTML/da/khelpcenter/faq/install.docbook -share/doc/HTML/da/khelpcenter/faq/intro.docbook -share/doc/HTML/da/khelpcenter/faq/kdeapps.docbook -share/doc/HTML/da/khelpcenter/faq/misc.docbook -share/doc/HTML/da/khelpcenter/faq/moreinfo.docbook -share/doc/HTML/da/khelpcenter/faq/nonkdeapps.docbook -share/doc/HTML/da/khelpcenter/faq/notrelated.docbook -share/doc/HTML/da/khelpcenter/faq/panel.docbook -share/doc/HTML/da/khelpcenter/faq/questions.docbook -share/doc/HTML/da/khelpcenter/faq/sound.docbook -share/doc/HTML/da/khelpcenter/faq/tips.docbook -share/doc/HTML/da/khelpcenter/faq/webbrowse.docbook -share/doc/HTML/da/khelpcenter/faq/winmng.docbook -share/doc/HTML/da/khelpcenter/glossary/common -share/doc/HTML/da/khelpcenter/glossary/index.cache.bz2 -share/doc/HTML/da/khelpcenter/glossary/index.docbook -share/doc/HTML/da/khelpcenter/glossary/kdeprintingglossary.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/quickstart/common -share/doc/HTML/da/khelpcenter/quickstart/index.cache.bz2 -share/doc/HTML/da/khelpcenter/quickstart/index.docbook -share/doc/HTML/da/khelpcenter/support.docbook -share/doc/HTML/da/khelpcenter/userguide/about-desktop.docbook -share/doc/HTML/da/khelpcenter/userguide/accessibility.docbook -share/doc/HTML/da/khelpcenter/userguide/base-kde-applications.docbook -share/doc/HTML/da/khelpcenter/userguide/browser-fine-tuning.docbook -share/doc/HTML/da/khelpcenter/userguide/burning-cds.docbook -share/doc/HTML/da/khelpcenter/userguide/common -share/doc/HTML/da/khelpcenter/userguide/control-center.docbook -share/doc/HTML/da/khelpcenter/userguide/creating-graphics.docbook -share/doc/HTML/da/khelpcenter/userguide/credits-and-license.docbook -share/doc/HTML/da/khelpcenter/userguide/email.docbook -share/doc/HTML/da/khelpcenter/userguide/file-sharing.docbook -share/doc/HTML/da/khelpcenter/userguide/first-impressions.docbook -share/doc/HTML/da/khelpcenter/userguide/font-installation.docbook -share/doc/HTML/da/khelpcenter/userguide/getting-help.docbook -share/doc/HTML/da/khelpcenter/userguide/getting-started.docbook -share/doc/HTML/da/khelpcenter/userguide/glossary.docbook -share/doc/HTML/da/khelpcenter/userguide/groupware-kontact.docbook -share/doc/HTML/da/khelpcenter/userguide/history.docbook -share/doc/HTML/da/khelpcenter/userguide/index.cache.bz2 -share/doc/HTML/da/khelpcenter/userguide/index.docbook -share/doc/HTML/da/khelpcenter/userguide/installation.docbook -share/doc/HTML/da/khelpcenter/userguide/internet-shortcuts.docbook -share/doc/HTML/da/khelpcenter/userguide/intro.docbook -share/doc/HTML/da/khelpcenter/userguide/kde-as-root.docbook -share/doc/HTML/da/khelpcenter/userguide/kde-edutainment.docbook -share/doc/HTML/da/khelpcenter/userguide/kde-for-admins.docbook -share/doc/HTML/da/khelpcenter/userguide/kde-office.docbook -share/doc/HTML/da/khelpcenter/userguide/konsole-intro.docbook -share/doc/HTML/da/khelpcenter/userguide/messaging-intro.docbook -share/doc/HTML/da/khelpcenter/userguide/migrator-dictionary.docbook -share/doc/HTML/da/khelpcenter/userguide/more-help.docbook -share/doc/HTML/da/khelpcenter/userguide/net-connection-setup.docbook -share/doc/HTML/da/khelpcenter/userguide/networking-with-windows.docbook -share/doc/HTML/da/khelpcenter/userguide/notices-trademarks.docbook -share/doc/HTML/da/khelpcenter/userguide/panel-and-desktop.docbook -share/doc/HTML/da/khelpcenter/userguide/pdf-files.docbook -share/doc/HTML/da/khelpcenter/userguide/playing-audiocds.docbook -share/doc/HTML/da/khelpcenter/userguide/playing-movies.docbook -share/doc/HTML/da/khelpcenter/userguide/playing-music.docbook -share/doc/HTML/da/khelpcenter/userguide/printer-setup.docbook -share/doc/HTML/da/khelpcenter/userguide/printing-from-apps.docbook -share/doc/HTML/da/khelpcenter/userguide/programs-and-documents.docbook -share/doc/HTML/da/khelpcenter/userguide/programs-controlling.docbook -share/doc/HTML/da/khelpcenter/userguide/removable-disks.docbook -share/doc/HTML/da/khelpcenter/userguide/screen-captures.docbook -share/doc/HTML/da/khelpcenter/userguide/shared-sessions.docbook -share/doc/HTML/da/khelpcenter/userguide/shortcuts.docbook -share/doc/HTML/da/khelpcenter/userguide/staff.docbook -share/doc/HTML/da/khelpcenter/userguide/standard-menu-entries.docbook -share/doc/HTML/da/khelpcenter/userguide/switching-sessions.docbook -share/doc/HTML/da/khelpcenter/userguide/the-filemanager.docbook -share/doc/HTML/da/khelpcenter/userguide/troubleshooting-network-x.docbook -share/doc/HTML/da/khelpcenter/userguide/troubleshooting-no-open.docbook -share/doc/HTML/da/khelpcenter/userguide/ug-faq.docbook -share/doc/HTML/da/khelpcenter/userguide/under-the-hood.docbook -share/doc/HTML/da/khelpcenter/userguide/usenet.docbook -share/doc/HTML/da/khelpcenter/userguide/where-next.docbook -share/doc/HTML/da/khelpcenter/userguide/windows-how-to.docbook -share/doc/HTML/da/khelpcenter/userguide/your-kde-account.docbook -share/doc/HTML/da/khelpcenter/visualdict/common -share/doc/HTML/da/khelpcenter/visualdict/index.cache.bz2 -share/doc/HTML/da/khelpcenter/visualdict/index.docbook -share/doc/HTML/da/khelpcenter/visualdict/pict1.png -share/doc/HTML/da/khelpcenter/visualdict/pict10.png -share/doc/HTML/da/khelpcenter/visualdict/pict11.png -share/doc/HTML/da/khelpcenter/visualdict/pict12.png -share/doc/HTML/da/khelpcenter/visualdict/pict13.png -share/doc/HTML/da/khelpcenter/visualdict/pict14.png -share/doc/HTML/da/khelpcenter/visualdict/pict15.png -share/doc/HTML/da/khelpcenter/visualdict/pict16.png -share/doc/HTML/da/khelpcenter/visualdict/pict19.png -share/doc/HTML/da/khelpcenter/visualdict/pict2.png -share/doc/HTML/da/khelpcenter/visualdict/pict20.png -share/doc/HTML/da/khelpcenter/visualdict/pict4.png -share/doc/HTML/da/khelpcenter/visualdict/pict5.png -share/doc/HTML/da/khelpcenter/visualdict/pict6.png -share/doc/HTML/da/khelpcenter/visualdict/pict7.png -share/doc/HTML/da/khelpcenter/visualdict/pict8.png -share/doc/HTML/da/khelpcenter/visualdict/pict9.png -share/doc/HTML/da/khelpcenter/welcome.docbook -share/doc/HTML/da/khelpcenter/whatiskde.docbook -share/doc/HTML/da/khexedit/common -share/doc/HTML/da/khexedit/index.cache.bz2 -share/doc/HTML/da/khexedit/index.docbook -share/doc/HTML/da/kicker-applets/common -share/doc/HTML/da/kicker-applets/index.cache.bz2 -share/doc/HTML/da/kicker-applets/index.docbook -share/doc/HTML/da/kicker-applets/kolourpicker.docbook -share/doc/HTML/da/kicker-applets/ktimemon.docbook -share/doc/HTML/da/kicker/common -share/doc/HTML/da/kicker/index.cache.bz2 -share/doc/HTML/da/kicker/index.docbook -share/doc/HTML/da/kicker/screenshot_right.png -share/doc/HTML/da/kicker/taskbar_group.png -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/kig/common -share/doc/HTML/da/kig/index.cache.bz2 -share/doc/HTML/da/kig/index.docbook -share/doc/HTML/da/kinfocenter/blockdevices/common -share/doc/HTML/da/kinfocenter/blockdevices/index.cache.bz2 -share/doc/HTML/da/kinfocenter/blockdevices/index.docbook -share/doc/HTML/da/kinfocenter/common -share/doc/HTML/da/kinfocenter/devices/common -share/doc/HTML/da/kinfocenter/devices/index.cache.bz2 -share/doc/HTML/da/kinfocenter/devices/index.docbook -share/doc/HTML/da/kinfocenter/dma/common -share/doc/HTML/da/kinfocenter/dma/index.cache.bz2 -share/doc/HTML/da/kinfocenter/dma/index.docbook -share/doc/HTML/da/kinfocenter/index.cache.bz2 -share/doc/HTML/da/kinfocenter/index.docbook -share/doc/HTML/da/kinfocenter/interrupts/common -share/doc/HTML/da/kinfocenter/interrupts/index.cache.bz2 -share/doc/HTML/da/kinfocenter/interrupts/index.docbook -share/doc/HTML/da/kinfocenter/ioports/common -share/doc/HTML/da/kinfocenter/ioports/index.cache.bz2 -share/doc/HTML/da/kinfocenter/ioports/index.docbook -share/doc/HTML/da/kinfocenter/memory/common -share/doc/HTML/da/kinfocenter/memory/index.cache.bz2 -share/doc/HTML/da/kinfocenter/memory/index.docbook -share/doc/HTML/da/kinfocenter/nics/common -share/doc/HTML/da/kinfocenter/nics/index.cache.bz2 -share/doc/HTML/da/kinfocenter/nics/index.docbook -share/doc/HTML/da/kinfocenter/opengl/common -share/doc/HTML/da/kinfocenter/opengl/index.cache.bz2 -share/doc/HTML/da/kinfocenter/opengl/index.docbook -share/doc/HTML/da/kinfocenter/partitions/common -share/doc/HTML/da/kinfocenter/partitions/index.cache.bz2 -share/doc/HTML/da/kinfocenter/partitions/index.docbook -share/doc/HTML/da/kinfocenter/pci/common -share/doc/HTML/da/kinfocenter/pci/index.cache.bz2 -share/doc/HTML/da/kinfocenter/pci/index.docbook -share/doc/HTML/da/kinfocenter/pcmcia/common -share/doc/HTML/da/kinfocenter/pcmcia/index.cache.bz2 -share/doc/HTML/da/kinfocenter/pcmcia/index.docbook -share/doc/HTML/da/kinfocenter/processor/common -share/doc/HTML/da/kinfocenter/processor/index.cache.bz2 -share/doc/HTML/da/kinfocenter/processor/index.docbook -share/doc/HTML/da/kinfocenter/protocols/common -share/doc/HTML/da/kinfocenter/protocols/index.cache.bz2 -share/doc/HTML/da/kinfocenter/protocols/index.docbook -share/doc/HTML/da/kinfocenter/samba/common -share/doc/HTML/da/kinfocenter/samba/index.cache.bz2 -share/doc/HTML/da/kinfocenter/samba/index.docbook -share/doc/HTML/da/kinfocenter/scsi/common -share/doc/HTML/da/kinfocenter/scsi/index.cache.bz2 -share/doc/HTML/da/kinfocenter/scsi/index.docbook -share/doc/HTML/da/kinfocenter/sound/common -share/doc/HTML/da/kinfocenter/sound/index.cache.bz2 -share/doc/HTML/da/kinfocenter/sound/index.docbook -share/doc/HTML/da/kinfocenter/usb/common -share/doc/HTML/da/kinfocenter/usb/index.cache.bz2 -share/doc/HTML/da/kinfocenter/usb/index.docbook -share/doc/HTML/da/kinfocenter/xserver/common -share/doc/HTML/da/kinfocenter/xserver/index.cache.bz2 -share/doc/HTML/da/kinfocenter/xserver/index.docbook -share/doc/HTML/da/kio_audiocd/audiocd.docbook -share/doc/HTML/da/kioslave/audiocd.docbook -share/doc/HTML/da/kioslave/bzip.docbook -share/doc/HTML/da/kioslave/bzip2.docbook -share/doc/HTML/da/kioslave/cgi.docbook -share/doc/HTML/da/kioslave/common -share/doc/HTML/da/kioslave/data.docbook -share/doc/HTML/da/kioslave/file.docbook -share/doc/HTML/da/kioslave/finger.docbook -share/doc/HTML/da/kioslave/fish.docbook -share/doc/HTML/da/kioslave/floppy.docbook -share/doc/HTML/da/kioslave/ftp.docbook -share/doc/HTML/da/kioslave/gopher.docbook -share/doc/HTML/da/kioslave/gzip.docbook -share/doc/HTML/da/kioslave/help.docbook -share/doc/HTML/da/kioslave/http.docbook -share/doc/HTML/da/kioslave/https.docbook -share/doc/HTML/da/kioslave/imap.docbook -share/doc/HTML/da/kioslave/imaps.docbook -share/doc/HTML/da/kioslave/index.cache.bz2 -share/doc/HTML/da/kioslave/index.docbook -share/doc/HTML/da/kioslave/info.docbook -share/doc/HTML/da/kioslave/lan.docbook -share/doc/HTML/da/kioslave/ldap.docbook -share/doc/HTML/da/kioslave/mac.docbook -share/doc/HTML/da/kioslave/mailto.docbook -share/doc/HTML/da/kioslave/man.docbook -share/doc/HTML/da/kioslave/mrml.docbook -share/doc/HTML/da/kioslave/news.docbook -share/doc/HTML/da/kioslave/nfs.docbook -share/doc/HTML/da/kioslave/nntp.docbook -share/doc/HTML/da/kioslave/pop3.docbook -share/doc/HTML/da/kioslave/pop3s.docbook -share/doc/HTML/da/kioslave/print.docbook -share/doc/HTML/da/kioslave/rlan.docbook -share/doc/HTML/da/kioslave/rlogin.docbook -share/doc/HTML/da/kioslave/sftp.docbook -share/doc/HTML/da/kioslave/smb.docbook -share/doc/HTML/da/kioslave/smtp.docbook -share/doc/HTML/da/kioslave/tar.docbook -share/doc/HTML/da/kioslave/telnet.docbook -share/doc/HTML/da/kioslave/thumbnail.docbook -share/doc/HTML/da/kioslave/webdav.docbook -share/doc/HTML/da/kioslave/webdavs.docbook -share/doc/HTML/da/kiten/common -share/doc/HTML/da/kiten/index.cache.bz2 -share/doc/HTML/da/kiten/index.docbook -share/doc/HTML/da/kjots/common -share/doc/HTML/da/kjots/index.cache.bz2 -share/doc/HTML/da/kjots/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/klatin/adjectives.docbook -share/doc/HTML/da/klatin/common -share/doc/HTML/da/klatin/index.cache.bz2 -share/doc/HTML/da/klatin/index.docbook -share/doc/HTML/da/klatin/nouns.docbook -share/doc/HTML/da/klatin/numbers.docbook -share/doc/HTML/da/klatin/pronouns.docbook -share/doc/HTML/da/klatin/verbs.docbook -share/doc/HTML/da/kleopatra/common -share/doc/HTML/da/kleopatra/index.cache.bz2 -share/doc/HTML/da/kleopatra/index.docbook -share/doc/HTML/da/klettres/common -share/doc/HTML/da/klettres/index.cache.bz2 -share/doc/HTML/da/klettres/index.docbook -share/doc/HTML/da/klettres/klettres1.png -share/doc/HTML/da/klettres/klettres2.png -share/doc/HTML/da/klettres/klettres3.png -share/doc/HTML/da/klickety/common -share/doc/HTML/da/klickety/index.cache.bz2 -share/doc/HTML/da/klickety/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/klinkstatus/common -share/doc/HTML/da/klinkstatus/index.cache.bz2 -share/doc/HTML/da/klinkstatus/index.docbook -share/doc/HTML/da/klipper/common -share/doc/HTML/da/klipper/index.cache.bz2 -share/doc/HTML/da/klipper/index.docbook -share/doc/HTML/da/kmag/common -share/doc/HTML/da/kmag/index.cache.bz2 -share/doc/HTML/da/kmag/index.docbook -share/doc/HTML/da/kmag/screenshot.png -share/doc/HTML/da/kmahjongg/common -share/doc/HTML/da/kmahjongg/index.cache.bz2 -share/doc/HTML/da/kmahjongg/index.docbook -share/doc/HTML/da/kmail/common -share/doc/HTML/da/kmail/configure.docbook -share/doc/HTML/da/kmail/credits-and-licenses.docbook -share/doc/HTML/da/kmail/faq.docbook -share/doc/HTML/da/kmail/getting-started.docbook -share/doc/HTML/da/kmail/importing.docbook -share/doc/HTML/da/kmail/index.cache.bz2 -share/doc/HTML/da/kmail/index.docbook -share/doc/HTML/da/kmail/intro.docbook -share/doc/HTML/da/kmail/menus.docbook -share/doc/HTML/da/kmail/using-kmail.docbook -share/doc/HTML/da/kmathtool/common -share/doc/HTML/da/kmathtool/index.cache.bz2 -share/doc/HTML/da/kmathtool/index.docbook -share/doc/HTML/da/kmenuedit/common -share/doc/HTML/da/kmenuedit/index.cache.bz2 -share/doc/HTML/da/kmenuedit/index.docbook -share/doc/HTML/da/kmessedwords/common -share/doc/HTML/da/kmessedwords/index.cache.bz2 -share/doc/HTML/da/kmessedwords/index.docbook -share/doc/HTML/da/kmessedwords/kmw1.png -share/doc/HTML/da/kmessedwords/kmw2.png -share/doc/HTML/da/kmessedwords/kmw3.png -share/doc/HTML/da/kmessedwords/kmw4.png -share/doc/HTML/da/kmid/common -share/doc/HTML/da/kmid/index.cache.bz2 -share/doc/HTML/da/kmid/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/kmix/common -share/doc/HTML/da/kmix/index.cache.bz2 -share/doc/HTML/da/kmix/index.docbook -share/doc/HTML/da/kmoon/common -share/doc/HTML/da/kmoon/index.cache.bz2 -share/doc/HTML/da/kmoon/index.docbook -share/doc/HTML/da/kmousetool/common -share/doc/HTML/da/kmousetool/index.cache.bz2 -share/doc/HTML/da/kmousetool/index.docbook -share/doc/HTML/da/kmouth/common -share/doc/HTML/da/kmouth/index.cache.bz2 -share/doc/HTML/da/kmouth/index.docbook -share/doc/HTML/da/kmplot/axesdlg.png -share/doc/HTML/da/kmplot/axesopt.png -share/doc/HTML/da/kmplot/commands.docbook -share/doc/HTML/da/kmplot/common -share/doc/HTML/da/kmplot/configuration.docbook -share/doc/HTML/da/kmplot/credits.docbook -share/doc/HTML/da/kmplot/dcop.docbook -share/doc/HTML/da/kmplot/developer.docbook -share/doc/HTML/da/kmplot/firststeps.docbook -share/doc/HTML/da/kmplot/functionsdlg.png -share/doc/HTML/da/kmplot/griddlg.png -share/doc/HTML/da/kmplot/index.cache.bz2 -share/doc/HTML/da/kmplot/index.docbook -share/doc/HTML/da/kmplot/install.docbook -share/doc/HTML/da/kmplot/introduction.docbook -share/doc/HTML/da/kmplot/main.png -share/doc/HTML/da/kmplot/menu.docbook -share/doc/HTML/da/kmplot/namesdlg.png -share/doc/HTML/da/kmplot/reference.docbook -share/doc/HTML/da/kmplot/scaledlg.png -share/doc/HTML/da/kmplot/settingsdlg.png -share/doc/HTML/da/kmplot/stepdlg.png -share/doc/HTML/da/kmplot/toolbar.png -share/doc/HTML/da/kmplot/using.docbook -share/doc/HTML/da/knetattach/common -share/doc/HTML/da/knetattach/index.cache.bz2 -share/doc/HTML/da/knetattach/index.docbook -share/doc/HTML/da/knewsticker/common -share/doc/HTML/da/knewsticker/index.cache.bz2 -share/doc/HTML/da/knewsticker/index.docbook -share/doc/HTML/da/knode/commands.docbook -share/doc/HTML/da/knode/common -share/doc/HTML/da/knode/credits.docbook -share/doc/HTML/da/knode/faq.docbook -share/doc/HTML/da/knode/gloss.docbook -share/doc/HTML/da/knode/index.cache.bz2 -share/doc/HTML/da/knode/index.docbook -share/doc/HTML/da/knode/install.docbook -share/doc/HTML/da/knode/introduction.docbook -share/doc/HTML/da/knode/journey.docbook -share/doc/HTML/da/knode/knode-cleanup.png -share/doc/HTML/da/knode/knode-colors-fonts.png -share/doc/HTML/da/knode/knode-composer-attachments.png -share/doc/HTML/da/knode/knode-composer-settings.png -share/doc/HTML/da/knode/knode-edit-filter.png -share/doc/HTML/da/knode/knode-edit-header1.png -share/doc/HTML/da/knode/knode-edit-header2.png -share/doc/HTML/da/knode/knode-filters.png -share/doc/HTML/da/knode/knode-followup.png -share/doc/HTML/da/knode/knode-header-settings.png -share/doc/HTML/da/knode/knode-identity.png -share/doc/HTML/da/knode/knode-mail-account.png -share/doc/HTML/da/knode/knode-new-article.png -share/doc/HTML/da/knode/knode-news-account.png -share/doc/HTML/da/knode/knode-post-settings.png -share/doc/HTML/da/knode/knode-read-news-settings.png -share/doc/HTML/da/knode/knode-reply.png -share/doc/HTML/da/knode/knode-search.png -share/doc/HTML/da/knode/knode-start.png -share/doc/HTML/da/knode/knode-subscribe.png -share/doc/HTML/da/knode/knode-views.png -share/doc/HTML/da/knode/more.docbook -share/doc/HTML/da/knode/using-firststart.docbook -share/doc/HTML/da/knode/using-morefeatures.docbook -share/doc/HTML/da/knode/using-subscribing.docbook -share/doc/HTML/da/knotes/common -share/doc/HTML/da/knotes/index.cache.bz2 -share/doc/HTML/da/knotes/index.docbook -share/doc/HTML/da/kodo/common -share/doc/HTML/da/kodo/index.cache.bz2 -share/doc/HTML/da/kodo/index.docbook -share/doc/HTML/da/kolf/common -share/doc/HTML/da/kolf/index.cache.bz2 -share/doc/HTML/da/kolf/index.docbook -share/doc/HTML/da/kolourpaint/common -share/doc/HTML/da/kolourpaint/index.cache.bz2 -share/doc/HTML/da/kolourpaint/index.docbook -share/doc/HTML/da/kommander/basics.docbook -share/doc/HTML/da/kommander/commands.docbook -share/doc/HTML/da/kommander/common -share/doc/HTML/da/kommander/credits.docbook -share/doc/HTML/da/kommander/dcop.docbook -share/doc/HTML/da/kommander/editor.docbook -share/doc/HTML/da/kommander/extending.docbook -share/doc/HTML/da/kommander/glossary.docbook -share/doc/HTML/da/kommander/index.cache.bz2 -share/doc/HTML/da/kommander/index.docbook -share/doc/HTML/da/kommander/installation.docbook -share/doc/HTML/da/kommander/introduction.docbook -share/doc/HTML/da/kommander/q-and-a.docbook -share/doc/HTML/da/kommander/specials.docbook -share/doc/HTML/da/kommander/tutorials.docbook -share/doc/HTML/da/kommander/widgets.docbook -share/doc/HTML/da/kompare/common -share/doc/HTML/da/kompare/index.cache.bz2 -share/doc/HTML/da/kompare/index.docbook -share/doc/HTML/da/konq-plugins/babel/common -share/doc/HTML/da/konq-plugins/babel/index.cache.bz2 -share/doc/HTML/da/konq-plugins/babel/index.docbook -share/doc/HTML/da/konq-plugins/common -share/doc/HTML/da/konq-plugins/crashes/common -share/doc/HTML/da/konq-plugins/crashes/index.cache.bz2 -share/doc/HTML/da/konq-plugins/crashes/index.docbook -share/doc/HTML/da/konq-plugins/dirfilter/common -share/doc/HTML/da/konq-plugins/dirfilter/index.cache.bz2 -share/doc/HTML/da/konq-plugins/dirfilter/index.docbook -share/doc/HTML/da/konq-plugins/domtreeviewer/common -share/doc/HTML/da/konq-plugins/domtreeviewer/index.cache.bz2 -share/doc/HTML/da/konq-plugins/domtreeviewer/index.docbook -share/doc/HTML/da/konq-plugins/fsview/common -share/doc/HTML/da/konq-plugins/fsview/index.cache.bz2 -share/doc/HTML/da/konq-plugins/fsview/index.docbook -share/doc/HTML/da/konq-plugins/imgallery/common -share/doc/HTML/da/konq-plugins/imgallery/index.cache.bz2 -share/doc/HTML/da/konq-plugins/imgallery/index.docbook -share/doc/HTML/da/konq-plugins/index.cache.bz2 -share/doc/HTML/da/konq-plugins/index.docbook -share/doc/HTML/da/konq-plugins/khtmlsettings/common -share/doc/HTML/da/konq-plugins/khtmlsettings/index.cache.bz2 -share/doc/HTML/da/konq-plugins/khtmlsettings/index.docbook -share/doc/HTML/da/konq-plugins/kuick/common -share/doc/HTML/da/konq-plugins/kuick/index.cache.bz2 -share/doc/HTML/da/konq-plugins/kuick/index.docbook -share/doc/HTML/da/konq-plugins/mediaplayer/common -share/doc/HTML/da/konq-plugins/mediaplayer/index.cache.bz2 -share/doc/HTML/da/konq-plugins/mediaplayer/index.docbook -share/doc/HTML/da/konq-plugins/smbmounter/common -share/doc/HTML/da/konq-plugins/smbmounter/index.cache.bz2 -share/doc/HTML/da/konq-plugins/smbmounter/index.docbook -share/doc/HTML/da/konq-plugins/uachanger/common -share/doc/HTML/da/konq-plugins/uachanger/index.cache.bz2 -share/doc/HTML/da/konq-plugins/uachanger/index.docbook -share/doc/HTML/da/konq-plugins/validators/common -share/doc/HTML/da/konq-plugins/validators/index.cache.bz2 -share/doc/HTML/da/konq-plugins/validators/index.docbook -share/doc/HTML/da/konq-plugins/webarchiver/common -share/doc/HTML/da/konq-plugins/webarchiver/index.cache.bz2 -share/doc/HTML/da/konq-plugins/webarchiver/index.docbook -share/doc/HTML/da/konqueror/basics.docbook -share/doc/HTML/da/konqueror/bookmarks.docbook -share/doc/HTML/da/konqueror/browser.docbook -share/doc/HTML/da/konqueror/cmndline.png -share/doc/HTML/da/konqueror/commands.docbook -share/doc/HTML/da/konqueror/common -share/doc/HTML/da/konqueror/config.docbook -share/doc/HTML/da/konqueror/credits.docbook -share/doc/HTML/da/konqueror/dirtree.png -share/doc/HTML/da/konqueror/dragdrop.png -share/doc/HTML/da/konqueror/faq.docbook -share/doc/HTML/da/konqueror/filemanager.docbook -share/doc/HTML/da/konqueror/index.cache.bz2 -share/doc/HTML/da/konqueror/index.docbook -share/doc/HTML/da/konqueror/introduction.docbook -share/doc/HTML/da/konqueror/konqorg.png -share/doc/HTML/da/konqueror/man-kbookmarkmerger.1.docbook -share/doc/HTML/da/konqueror/parts.png -share/doc/HTML/da/konqueror/path-complete.docbook -share/doc/HTML/da/konqueror/plugins.docbook -share/doc/HTML/da/konqueror/save-settings.docbook -share/doc/HTML/da/konqueror/shortcut1.png -share/doc/HTML/da/konqueror/shortcut2.png -share/doc/HTML/da/konqueror/sidebar.docbook -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/konsole/common -share/doc/HTML/da/konsole/index.cache.bz2 -share/doc/HTML/da/konsole/index.docbook -share/doc/HTML/da/konsole/konsole.png -share/doc/HTML/da/konsolekalendar/common -share/doc/HTML/da/konsolekalendar/index.cache.bz2 -share/doc/HTML/da/konsolekalendar/index.docbook -share/doc/HTML/da/kontact/common -share/doc/HTML/da/kontact/index.cache.bz2 -share/doc/HTML/da/kontact/index.docbook -share/doc/HTML/da/kooka/common -share/doc/HTML/da/kooka/index.cache.bz2 -share/doc/HTML/da/kooka/index.docbook -share/doc/HTML/da/kopete/common -share/doc/HTML/da/kopete/index.cache.bz2 -share/doc/HTML/da/kopete/index.docbook -share/doc/HTML/da/kopete/menus.docbook -share/doc/HTML/da/korganizer/common -share/doc/HTML/da/korganizer/exchange-plugin.docbook -share/doc/HTML/da/korganizer/group-scheduling.docbook -share/doc/HTML/da/korganizer/index.cache.bz2 -share/doc/HTML/da/korganizer/index.docbook -share/doc/HTML/da/korganizer/outlook-to-vcalendar.docbook -share/doc/HTML/da/korganizer/plugins-chapter.docbook -share/doc/HTML/da/korn/common -share/doc/HTML/da/korn/index.cache.bz2 -share/doc/HTML/da/korn/index.docbook -share/doc/HTML/da/kpackage/common -share/doc/HTML/da/kpackage/index.cache.bz2 -share/doc/HTML/da/kpackage/index.docbook -share/doc/HTML/da/kpager/common -share/doc/HTML/da/kpager/index.cache.bz2 -share/doc/HTML/da/kpager/index.docbook -share/doc/HTML/da/kpager/screenshot.png -share/doc/HTML/da/kpager/settings.png -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/kpat/man-kpat.6.docbook -share/doc/HTML/da/kpat/man.docbook -share/doc/HTML/da/kpdf/common -share/doc/HTML/da/kpdf/index.cache.bz2 -share/doc/HTML/da/kpdf/index.docbook -share/doc/HTML/da/kpercentage/commands.docbook -share/doc/HTML/da/kpercentage/common -share/doc/HTML/da/kpercentage/credits.docbook -share/doc/HTML/da/kpercentage/devel.docbook -share/doc/HTML/da/kpercentage/faq.docbook -share/doc/HTML/da/kpercentage/help.png -share/doc/HTML/da/kpercentage/index.cache.bz2 -share/doc/HTML/da/kpercentage/index.docbook -share/doc/HTML/da/kpercentage/install.docbook -share/doc/HTML/da/kpercentage/introduction.docbook -share/doc/HTML/da/kpercentage/main.png -share/doc/HTML/da/kpercentage/using.docbook -share/doc/HTML/da/kpercentage/welcome.png -share/doc/HTML/da/kpf/common -share/doc/HTML/da/kpf/index.cache.bz2 -share/doc/HTML/da/kpf/index.docbook -share/doc/HTML/da/kpilot/common -share/doc/HTML/da/kpilot/configuration.docbook -share/doc/HTML/da/kpilot/faq.docbook -share/doc/HTML/da/kpilot/index.cache.bz2 -share/doc/HTML/da/kpilot/index.docbook -share/doc/HTML/da/kpilot/sync.docbook -share/doc/HTML/da/kpilot/usage.docbook -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/kpovmodeler/common -share/doc/HTML/da/kpovmodeler/index.cache.bz2 -share/doc/HTML/da/kpovmodeler/index.docbook -share/doc/HTML/da/kppp/accounting.docbook -share/doc/HTML/da/kppp/callback.docbook -share/doc/HTML/da/kppp/chap.docbook -share/doc/HTML/da/kppp/common -share/doc/HTML/da/kppp/dialog-setup.docbook -share/doc/HTML/da/kppp/getting-online.docbook -share/doc/HTML/da/kppp/global-settings.docbook -share/doc/HTML/da/kppp/hayes.docbook -share/doc/HTML/da/kppp/index.cache.bz2 -share/doc/HTML/da/kppp/index.docbook -share/doc/HTML/da/kppp/kppp-account-accounting-tab.png -share/doc/HTML/da/kppp/kppp-account-dial-tab.png -share/doc/HTML/da/kppp/kppp-account-dial-tab1.png -share/doc/HTML/da/kppp/kppp-account-dns-tab.png -share/doc/HTML/da/kppp/kppp-account-execute-tab.png -share/doc/HTML/da/kppp/kppp-account-gateway-tab.png -share/doc/HTML/da/kppp/kppp-account-ip-tab.png -share/doc/HTML/da/kppp/kppp-account-login-script-tab.png -share/doc/HTML/da/kppp/kppp-config.png -share/doc/HTML/da/kppp/kppp-device-tab.png -share/doc/HTML/da/kppp/kppp-dialer-tab.png -share/doc/HTML/da/kppp/kppp-faq.docbook -share/doc/HTML/da/kppp/kppp-graph-tab.png -share/doc/HTML/da/kppp/kppp-misc-tab.png -share/doc/HTML/da/kppp/kppp-modem-tab.png -share/doc/HTML/da/kppp/kppp-wizard.png -share/doc/HTML/da/kppp/security.docbook -share/doc/HTML/da/kppp/tricks.docbook -share/doc/HTML/da/kppp/wizard.docbook -share/doc/HTML/da/krdc/common -share/doc/HTML/da/krdc/index.cache.bz2 -share/doc/HTML/da/krdc/index.docbook -share/doc/HTML/da/krec/common -share/doc/HTML/da/krec/index.cache.bz2 -share/doc/HTML/da/krec/index.docbook -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/krfb/common -share/doc/HTML/da/krfb/index.cache.bz2 -share/doc/HTML/da/krfb/index.docbook -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/kscd/common -share/doc/HTML/da/kscd/index.cache.bz2 -share/doc/HTML/da/kscd/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/ksim/common -share/doc/HTML/da/ksim/index.cache.bz2 -share/doc/HTML/da/ksim/index.docbook -share/doc/HTML/da/ksirc/common -share/doc/HTML/da/ksirc/index.cache.bz2 -share/doc/HTML/da/ksirc/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/ksplashml/common -share/doc/HTML/da/ksplashml/index.cache.bz2 -share/doc/HTML/da/ksplashml/index.docbook -share/doc/HTML/da/kstars/aavso.png -share/doc/HTML/da/kstars/ai-contents.docbook -share/doc/HTML/da/kstars/altvstime.docbook -share/doc/HTML/da/kstars/altvstime.png -share/doc/HTML/da/kstars/astroinfo.docbook -share/doc/HTML/da/kstars/blackbody.docbook -share/doc/HTML/da/kstars/calc-angdist.docbook -share/doc/HTML/da/kstars/calc-apcoords.docbook -share/doc/HTML/da/kstars/calc-apcoords.png -share/doc/HTML/da/kstars/calc-dayduration.docbook -share/doc/HTML/da/kstars/calc-daylength.png -share/doc/HTML/da/kstars/calc-ecliptic.docbook -share/doc/HTML/da/kstars/calc-eqgal.docbook -share/doc/HTML/da/kstars/calc-eqgal.png -share/doc/HTML/da/kstars/calc-equinox.docbook -share/doc/HTML/da/kstars/calc-geodetic.docbook -share/doc/HTML/da/kstars/calc-geodetic.png -share/doc/HTML/da/kstars/calc-horizontal.docbook -share/doc/HTML/da/kstars/calc-horizontal.png -share/doc/HTML/da/kstars/calc-julian.png -share/doc/HTML/da/kstars/calc-julianday.docbook -share/doc/HTML/da/kstars/calc-planetcoords.docbook -share/doc/HTML/da/kstars/calc-precess.docbook -share/doc/HTML/da/kstars/calc-precess.png -share/doc/HTML/da/kstars/calc-sidereal.docbook -share/doc/HTML/da/kstars/calc-sidereal.png -share/doc/HTML/da/kstars/calculator.docbook -share/doc/HTML/da/kstars/cequator.docbook -share/doc/HTML/da/kstars/colorandtemp.docbook -share/doc/HTML/da/kstars/commands.docbook -share/doc/HTML/da/kstars/common -share/doc/HTML/da/kstars/config.docbook -share/doc/HTML/da/kstars/cpoles.docbook -share/doc/HTML/da/kstars/credits.docbook -share/doc/HTML/da/kstars/csphere.docbook -share/doc/HTML/da/kstars/darkmatter.docbook -share/doc/HTML/da/kstars/dcop.docbook -share/doc/HTML/da/kstars/detaildialog.png -share/doc/HTML/da/kstars/details.docbook -share/doc/HTML/da/kstars/devicemanager.png -share/doc/HTML/da/kstars/dumpmode.docbook -share/doc/HTML/da/kstars/ecliptic.docbook -share/doc/HTML/da/kstars/ellipticalgalaxies.docbook -share/doc/HTML/da/kstars/equinox.docbook -share/doc/HTML/da/kstars/faq.docbook -share/doc/HTML/da/kstars/find.png -share/doc/HTML/da/kstars/flux.docbook -share/doc/HTML/da/kstars/fovdialog.png -share/doc/HTML/da/kstars/geocoords.docbook -share/doc/HTML/da/kstars/geolocator.png -share/doc/HTML/da/kstars/greatcircle.docbook -share/doc/HTML/da/kstars/horizon.docbook -share/doc/HTML/da/kstars/hourangle.docbook -share/doc/HTML/da/kstars/index.cache.bz2 -share/doc/HTML/da/kstars/index.docbook -share/doc/HTML/da/kstars/indi.docbook -share/doc/HTML/da/kstars/indiclient.png -share/doc/HTML/da/kstars/install.docbook -share/doc/HTML/da/kstars/jmoons.docbook -share/doc/HTML/da/kstars/jmoons.png -share/doc/HTML/da/kstars/julianday.docbook -share/doc/HTML/da/kstars/leapyear.docbook -share/doc/HTML/da/kstars/lightcurves.docbook -share/doc/HTML/da/kstars/luminosity.docbook -share/doc/HTML/da/kstars/magnitude.docbook -share/doc/HTML/da/kstars/meridian.docbook -share/doc/HTML/da/kstars/newfov.png -share/doc/HTML/da/kstars/observinglist.docbook -share/doc/HTML/da/kstars/parallax.docbook -share/doc/HTML/da/kstars/popup.png -share/doc/HTML/da/kstars/precession.docbook -share/doc/HTML/da/kstars/quicktour.docbook -share/doc/HTML/da/kstars/retrograde.docbook -share/doc/HTML/da/kstars/screen1.png -share/doc/HTML/da/kstars/scriptbuilder.docbook -share/doc/HTML/da/kstars/scriptbuilder.png -share/doc/HTML/da/kstars/sidereal.docbook -share/doc/HTML/da/kstars/skycoords.docbook -share/doc/HTML/da/kstars/solarsys.docbook -share/doc/HTML/da/kstars/solarsystem.png -share/doc/HTML/da/kstars/spiralgalaxies.docbook -share/doc/HTML/da/kstars/stars.docbook -share/doc/HTML/da/kstars/timezones.docbook -share/doc/HTML/da/kstars/tools.docbook -share/doc/HTML/da/kstars/utime.docbook -share/doc/HTML/da/kstars/viewops.png -share/doc/HTML/da/kstars/wut.docbook -share/doc/HTML/da/kstars/wut.png -share/doc/HTML/da/kstars/zenith.docbook -share/doc/HTML/da/ksysguard/common -share/doc/HTML/da/ksysguard/index.cache.bz2 -share/doc/HTML/da/ksysguard/index.docbook -share/doc/HTML/da/ksysv/common -share/doc/HTML/da/ksysv/index.cache.bz2 -share/doc/HTML/da/ksysv/index.docbook -share/doc/HTML/da/ktalkd/common -share/doc/HTML/da/ktalkd/index.cache.bz2 -share/doc/HTML/da/ktalkd/index.docbook -share/doc/HTML/da/kteatime/common -share/doc/HTML/da/kteatime/index.cache.bz2 -share/doc/HTML/da/kteatime/index.docbook -share/doc/HTML/da/ktimer/common -share/doc/HTML/da/ktimer/index.cache.bz2 -share/doc/HTML/da/ktimer/index.docbook -share/doc/HTML/da/ktnef/common -share/doc/HTML/da/ktnef/index.cache.bz2 -share/doc/HTML/da/ktnef/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/ktouch/screenshot1.png -share/doc/HTML/da/ktouch/screenshot2.png -share/doc/HTML/da/ktouch/screenshot3.png -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/kttsd/common -share/doc/HTML/da/kttsd/index.cache.bz2 -share/doc/HTML/da/kttsd/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/ktuberling/technical-reference.docbook -share/doc/HTML/da/kturtle/common -share/doc/HTML/da/kturtle/getting-started.docbook -share/doc/HTML/da/kturtle/glossary.docbook -share/doc/HTML/da/kturtle/index.cache.bz2 -share/doc/HTML/da/kturtle/index.docbook -share/doc/HTML/da/kturtle/programming-reference.docbook -share/doc/HTML/da/kturtle/translator-guide.docbook -share/doc/HTML/da/kturtle/using-kturtle.docbook -share/doc/HTML/da/kuickshow/common -share/doc/HTML/da/kuickshow/index.cache.bz2 -share/doc/HTML/da/kuickshow/index.docbook -share/doc/HTML/da/kuser/common -share/doc/HTML/da/kuser/index.cache.bz2 -share/doc/HTML/da/kuser/index.docbook -share/doc/HTML/da/kuser/kuser.png -share/doc/HTML/da/kverbos/common -share/doc/HTML/da/kverbos/index.cache.bz2 -share/doc/HTML/da/kverbos/index.docbook -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/kvoctrain/common -share/doc/HTML/da/kvoctrain/index.cache.bz2 -share/doc/HTML/da/kvoctrain/index.docbook -share/doc/HTML/da/kvoctrain/man-spotlight2kvtml.1.docbook -share/doc/HTML/da/kwallet/common -share/doc/HTML/da/kwallet/index.cache.bz2 -share/doc/HTML/da/kwallet/index.docbook -share/doc/HTML/da/kwatchgnupg/common -share/doc/HTML/da/kwatchgnupg/index.cache.bz2 -share/doc/HTML/da/kwatchgnupg/index.docbook -share/doc/HTML/da/kweather/common -share/doc/HTML/da/kweather/index.cache.bz2 -share/doc/HTML/da/kweather/index.docbook -share/doc/HTML/da/kwifimanager/common -share/doc/HTML/da/kwifimanager/index.cache.bz2 -share/doc/HTML/da/kwifimanager/index.docbook -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/kwordquiz/common -share/doc/HTML/da/kwordquiz/index.cache.bz2 -share/doc/HTML/da/kwordquiz/index.docbook -share/doc/HTML/da/kworldclock/common -share/doc/HTML/da/kworldclock/index.cache.bz2 -share/doc/HTML/da/kworldclock/index.docbook -share/doc/HTML/da/kworldclock/man-kworldclock.1.docbook -share/doc/HTML/da/kwrite/common -share/doc/HTML/da/kwrite/index.cache.bz2 -share/doc/HTML/da/kwrite/index.docbook -share/doc/HTML/da/kwuftpd/common -share/doc/HTML/da/kwuftpd/directories.png -share/doc/HTML/da/kwuftpd/index.cache.bz2 -share/doc/HTML/da/kwuftpd/index.docbook -share/doc/HTML/da/kwuftpd/logging.png -share/doc/HTML/da/kwuftpd/messages.png -share/doc/HTML/da/kwuftpd/ratios.png -share/doc/HTML/da/kwuftpd/security.png -share/doc/HTML/da/kwuftpd/uploads.png -share/doc/HTML/da/kwuftpd/user_classes.png -share/doc/HTML/da/kwuftpd/virtual.png -share/doc/HTML/da/kxconfig/common -share/doc/HTML/da/kxconfig/index.cache.bz2 -share/doc/HTML/da/kxconfig/index.docbook -share/doc/HTML/da/kxkb/common -share/doc/HTML/da/kxkb/index.cache.bz2 -share/doc/HTML/da/kxkb/index.docbook -share/doc/HTML/da/kxsldbg/callstack.docbook -share/doc/HTML/da/kxsldbg/common -share/doc/HTML/da/kxsldbg/credits.docbook -share/doc/HTML/da/kxsldbg/entities.docbook -share/doc/HTML/da/kxsldbg/glossary.docbook -share/doc/HTML/da/kxsldbg/index.cache.bz2 -share/doc/HTML/da/kxsldbg/index.docbook -share/doc/HTML/da/kxsldbg/kxsldbg_configure.docbook -share/doc/HTML/da/kxsldbg/kxsldbg_inspector.docbook -share/doc/HTML/da/kxsldbg/kxsldbg_mainwindow.docbook -share/doc/HTML/da/kxsldbg/kxsldbg_tools.docbook -share/doc/HTML/da/kxsldbg/sources.docbook -share/doc/HTML/da/kxsldbg/templates.docbook -share/doc/HTML/da/kxsldbg/variables.docbook -share/doc/HTML/da/lisa/common -share/doc/HTML/da/lisa/index.cache.bz2 -share/doc/HTML/da/lisa/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/megami/common -share/doc/HTML/da/megami/index.cache.bz2 -share/doc/HTML/da/megami/index.docbook -share/doc/HTML/da/multisynk/common -share/doc/HTML/da/multisynk/index.cache.bz2 -share/doc/HTML/da/multisynk/index.docbook -share/doc/HTML/da/multisynk/konnectors-chapter.docbook -share/doc/HTML/da/noatun/common -share/doc/HTML/da/noatun/index.cache.bz2 -share/doc/HTML/da/noatun/index.docbook -share/doc/HTML/da/quanta/adv-quanta.docbook -share/doc/HTML/da/quanta/common -share/doc/HTML/da/quanta/config-quanta.docbook -share/doc/HTML/da/quanta/credits-license.docbook -share/doc/HTML/da/quanta/debugging-quanta.docbook -share/doc/HTML/da/quanta/extending-quanta.docbook -share/doc/HTML/da/quanta/fundamentals.docbook -share/doc/HTML/da/quanta/glossary.docbook -share/doc/HTML/da/quanta/index.cache.bz2 -share/doc/HTML/da/quanta/index.docbook -share/doc/HTML/da/quanta/installation.docbook -share/doc/HTML/da/quanta/introduction.docbook -share/doc/HTML/da/quanta/man-quanta.1.docbook -share/doc/HTML/da/quanta/q-and-a.docbook -share/doc/HTML/da/quanta/quanta-menus.docbook -share/doc/HTML/da/quanta/quanta-projects.docbook -share/doc/HTML/da/quanta/working-with-quanta.docbook -share/doc/HTML/da/scripts/man-adddebug.1.docbook -share/doc/HTML/da/scripts/man-cheatmake.1.docbook -share/doc/HTML/da/scripts/man-create_cvsignore.1.docbook -share/doc/HTML/da/scripts/man-create_makefile.1.docbook -share/doc/HTML/da/scripts/man-create_makefiles.1.docbook -share/doc/HTML/da/scripts/man-cvscheck.1.docbook -share/doc/HTML/da/scripts/man-cvslastchange.1.docbook -share/doc/HTML/da/scripts/man-cvslastlog.1.docbook -share/doc/HTML/da/scripts/man-cvsrevertlast.1.docbook -share/doc/HTML/da/scripts/man-cxxmetric.1.docbook -share/doc/HTML/da/scripts/man-demangle.1.docbook -share/doc/HTML/da/scripts/man-extend_dmalloc.1.docbook -share/doc/HTML/da/scripts/man-extractrc.1.docbook -share/doc/HTML/da/scripts/man-fixincludes.1.docbook -share/doc/HTML/da/scripts/man-po2xml.1.docbook -share/doc/HTML/da/scripts/man-pruneemptydirs.1.docbook -share/doc/HTML/da/scripts/man-qtdoc.1.docbook -share/doc/HTML/da/scripts/man-reportview.1.docbook -share/doc/HTML/da/scripts/man-split2po.1.docbook -share/doc/HTML/da/scripts/man-swappo.1.docbook -share/doc/HTML/da/scripts/man-transxx.1.docbook -share/doc/HTML/da/scripts/man-xml2pot.1.docbook -share/doc/HTML/da/scripts/man-zonetab2pot.1.docbook -share/doc/HTML/da/umbrello/authors.docbook -share/doc/HTML/da/umbrello/code_import_and_generation.docbook -share/doc/HTML/da/umbrello/common -share/doc/HTML/da/umbrello/credits.docbook -share/doc/HTML/da/umbrello/index.cache.bz2 -share/doc/HTML/da/umbrello/index.docbook -share/doc/HTML/da/umbrello/introduction.docbook -share/doc/HTML/da/umbrello/other_features.docbook -share/doc/HTML/da/umbrello/uml_basics.docbook -share/doc/HTML/da/umbrello/working_with_umbrello.docbook -share/doc/HTML/da/xsldbg/commands.docbook -share/doc/HTML/da/xsldbg/common -share/doc/HTML/da/xsldbg/credits.docbook -share/doc/HTML/da/xsldbg/index.cache.bz2 -share/doc/HTML/da/xsldbg/index.docbook -share/doc/HTML/da/xsldbg/introduction.docbook -share/doc/HTML/da/xsldbg/usage.docbook -share/locale/da/LC_MESSAGES/akregator.mo -share/locale/da/LC_MESSAGES/akregator_konqplugin.mo -share/locale/da/LC_MESSAGES/alsaplayerui.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/ark_plugin.mo -share/locale/da/LC_MESSAGES/artsbuilder.mo -share/locale/da/LC_MESSAGES/artscontrol.mo -share/locale/da/LC_MESSAGES/artsmodules.mo -share/locale/da/LC_MESSAGES/atlantik.mo -share/locale/da/LC_MESSAGES/atlantikdesigner.mo -share/locale/da/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/da/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/da/LC_MESSAGES/audiorename_plugin.mo -share/locale/da/LC_MESSAGES/autorefresh.mo -share/locale/da/LC_MESSAGES/babelfish.mo -share/locale/da/LC_MESSAGES/cervisia.mo -share/locale/da/LC_MESSAGES/charlatanui.mo -share/locale/da/LC_MESSAGES/childpanelextension.mo -share/locale/da/LC_MESSAGES/clockapplet.mo -share/locale/da/LC_MESSAGES/crashesplugin.mo -share/locale/da/LC_MESSAGES/cupsdconf.mo -share/locale/da/LC_MESSAGES/cvsservice.mo -share/locale/da/LC_MESSAGES/dcoprss.mo -share/locale/da/LC_MESSAGES/devicesapplet.mo -share/locale/da/LC_MESSAGES/dirfilterplugin.mo -share/locale/da/LC_MESSAGES/display.mo -share/locale/da/LC_MESSAGES/dockbarextension.mo -share/locale/da/LC_MESSAGES/domtreeviewer.mo -share/locale/da/LC_MESSAGES/drkonqi.mo -share/locale/da/LC_MESSAGES/dub.mo -share/locale/da/LC_MESSAGES/extensionproxy.mo -share/locale/da/LC_MESSAGES/ffrs.mo -share/locale/da/LC_MESSAGES/filetypes.mo -share/locale/da/LC_MESSAGES/fontinst.mo -share/locale/da/LC_MESSAGES/fsview.mo -share/locale/da/LC_MESSAGES/htmlsearch.mo -share/locale/da/LC_MESSAGES/imagerename_plugin.mo -share/locale/da/LC_MESSAGES/imgalleryplugin.mo -share/locale/da/LC_MESSAGES/irkick.mo -share/locale/da/LC_MESSAGES/jefferson.mo -share/locale/da/LC_MESSAGES/joystick.mo -share/locale/da/LC_MESSAGES/juk.mo -share/locale/da/LC_MESSAGES/kabc2mutt.mo -share/locale/da/LC_MESSAGES/kabc_dir.mo -share/locale/da/LC_MESSAGES/kabc_file.mo -share/locale/da/LC_MESSAGES/kabc_ldap.mo -share/locale/da/LC_MESSAGES/kabc_ldapkio.mo -share/locale/da/LC_MESSAGES/kabc_net.mo -share/locale/da/LC_MESSAGES/kabc_slox.mo -share/locale/da/LC_MESSAGES/kabc_sql.mo -share/locale/da/LC_MESSAGES/kabcformat_binary.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/kalarm.mo -share/locale/da/LC_MESSAGES/kalzium.mo -share/locale/da/LC_MESSAGES/kandy.mo -share/locale/da/LC_MESSAGES/kappfinder.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/kate.mo -share/locale/da/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/da/LC_MESSAGES/katedefaultproject.mo -share/locale/da/LC_MESSAGES/katefiletemplates.mo -share/locale/da/LC_MESSAGES/katefll_initplugin.mo -share/locale/da/LC_MESSAGES/katefll_plugin.mo -share/locale/da/LC_MESSAGES/katehelloworld.mo -share/locale/da/LC_MESSAGES/katehtmltools.mo -share/locale/da/LC_MESSAGES/kateinsertcommand.mo -share/locale/da/LC_MESSAGES/katekjswrapper.mo -share/locale/da/LC_MESSAGES/katekttsd.mo -share/locale/da/LC_MESSAGES/katemake.mo -share/locale/da/LC_MESSAGES/katemodeline.mo -share/locale/da/LC_MESSAGES/kateopenheader.mo -share/locale/da/LC_MESSAGES/katepart.mo -share/locale/da/LC_MESSAGES/katepartkttsd.mo -share/locale/da/LC_MESSAGES/kateprojectmanager.mo -share/locale/da/LC_MESSAGES/katepybrowse.mo -share/locale/da/LC_MESSAGES/katesnippets.mo -share/locale/da/LC_MESSAGES/katespell.mo -share/locale/da/LC_MESSAGES/katetabbarextension.mo -share/locale/da/LC_MESSAGES/katetextfilter.mo -share/locale/da/LC_MESSAGES/katexmlcheck.mo -share/locale/da/LC_MESSAGES/katexmltools.mo -share/locale/da/LC_MESSAGES/katomic.mo -share/locale/da/LC_MESSAGES/kaudiocreator.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/kbinaryclock.mo -share/locale/da/LC_MESSAGES/kblackbox.mo -share/locale/da/LC_MESSAGES/kbounce.mo -share/locale/da/LC_MESSAGES/kbruch.mo -share/locale/da/LC_MESSAGES/kbstateapplet.mo -share/locale/da/LC_MESSAGES/kbugbuster.mo -share/locale/da/LC_MESSAGES/kcachegrind.mo -share/locale/da/LC_MESSAGES/kcalc.mo -share/locale/da/LC_MESSAGES/kcharselect.mo -share/locale/da/LC_MESSAGES/kcharselectapplet.mo -share/locale/da/LC_MESSAGES/kcm_krfb.mo -share/locale/da/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/da/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/da/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/da/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/da/LC_MESSAGES/kcmaccess.mo -share/locale/da/LC_MESSAGES/kcmaccessibility.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/kcmcddb.mo -share/locale/da/LC_MESSAGES/kcmcgi.mo -share/locale/da/LC_MESSAGES/kcmcolors.mo -share/locale/da/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/da/LC_MESSAGES/kcmcrypto.mo -share/locale/da/LC_MESSAGES/kcmcss.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/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/kcmkabconfig.mo -share/locale/da/LC_MESSAGES/kcmkamera.mo -share/locale/da/LC_MESSAGES/kcmkclock.mo -share/locale/da/LC_MESSAGES/kcmkded.mo -share/locale/da/LC_MESSAGES/kcmkdnssd.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/kcmkontactnt.mo -share/locale/da/LC_MESSAGES/kcmktalkd.mo -share/locale/da/LC_MESSAGES/kcmkttsd.mo -share/locale/da/LC_MESSAGES/kcmkuick.mo -share/locale/da/LC_MESSAGES/kcmkurifilt.mo -share/locale/da/LC_MESSAGES/kcmkvaio.mo -share/locale/da/LC_MESSAGES/kcmkwallet.mo -share/locale/da/LC_MESSAGES/kcmkwindecoration.mo -share/locale/da/LC_MESSAGES/kcmkwinrules.mo -share/locale/da/LC_MESSAGES/kcmkwintheme.mo -share/locale/da/LC_MESSAGES/kcmkwm.mo -share/locale/da/LC_MESSAGES/kcmkxmlrpcd.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/kcmlirc.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/kcmnic.mo -share/locale/da/LC_MESSAGES/kcmnotify.mo -share/locale/da/LC_MESSAGES/kcmperformance.mo -share/locale/da/LC_MESSAGES/kcmprintmgr.mo -share/locale/da/LC_MESSAGES/kcmsamba.mo -share/locale/da/LC_MESSAGES/kcmscreensaver.mo -share/locale/da/LC_MESSAGES/kcmshell.mo -share/locale/da/LC_MESSAGES/kcmsmartcard.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/kcmthinkpad.mo -share/locale/da/LC_MESSAGES/kcmusb.mo -share/locale/da/LC_MESSAGES/kcmview1394.mo -share/locale/da/LC_MESSAGES/kcmvim.mo -share/locale/da/LC_MESSAGES/kcmwifi.mo -share/locale/da/LC_MESSAGES/kcmxinerama.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/kdat.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/kdelibs_colors.mo -share/locale/da/LC_MESSAGES/kdelirc.mo -share/locale/da/LC_MESSAGES/kdepasswd.mo -share/locale/da/LC_MESSAGES/kdepimresources.mo -share/locale/da/LC_MESSAGES/kdepimwizards.mo -share/locale/da/LC_MESSAGES/kdeprint.mo -share/locale/da/LC_MESSAGES/kdeprint_part.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/kdesu.mo -share/locale/da/LC_MESSAGES/kdesud.mo -share/locale/da/LC_MESSAGES/kdevdesigner.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/kdgantt.mo -share/locale/da/LC_MESSAGES/kdialog.mo -share/locale/da/LC_MESSAGES/kdict.mo -share/locale/da/LC_MESSAGES/kdictapplet.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/keduca.mo -share/locale/da/LC_MESSAGES/kenolaba.mo -share/locale/da/LC_MESSAGES/kfax.mo -share/locale/da/LC_MESSAGES/kfifteenapplet.mo -share/locale/da/LC_MESSAGES/kfile_au.mo -share/locale/da/LC_MESSAGES/kfile_avi.mo -share/locale/da/LC_MESSAGES/kfile_bmp.mo -share/locale/da/LC_MESSAGES/kfile_cert.mo -share/locale/da/LC_MESSAGES/kfile_cpp.mo -share/locale/da/LC_MESSAGES/kfile_dds.mo -share/locale/da/LC_MESSAGES/kfile_deb.mo -share/locale/da/LC_MESSAGES/kfile_desktop.mo -share/locale/da/LC_MESSAGES/kfile_diff.mo -share/locale/da/LC_MESSAGES/kfile_drgeo.mo -share/locale/da/LC_MESSAGES/kfile_dvi.mo -share/locale/da/LC_MESSAGES/kfile_exr.mo -share/locale/da/LC_MESSAGES/kfile_flac.mo -share/locale/da/LC_MESSAGES/kfile_folder.mo -share/locale/da/LC_MESSAGES/kfile_font.mo -share/locale/da/LC_MESSAGES/kfile_gif.mo -share/locale/da/LC_MESSAGES/kfile_html.mo -share/locale/da/LC_MESSAGES/kfile_ico.mo -share/locale/da/LC_MESSAGES/kfile_ics.mo -share/locale/da/LC_MESSAGES/kfile_jpeg.mo -share/locale/da/LC_MESSAGES/kfile_kig.mo -share/locale/da/LC_MESSAGES/kfile_lnk.mo -share/locale/da/LC_MESSAGES/kfile_m3u.mo -share/locale/da/LC_MESSAGES/kfile_mhtml.mo -share/locale/da/LC_MESSAGES/kfile_mp3.mo -share/locale/da/LC_MESSAGES/kfile_mpc.mo -share/locale/da/LC_MESSAGES/kfile_ogg.mo -share/locale/da/LC_MESSAGES/kfile_palm.mo -share/locale/da/LC_MESSAGES/kfile_pcx.mo -share/locale/da/LC_MESSAGES/kfile_pdf.mo -share/locale/da/LC_MESSAGES/kfile_png.mo -share/locale/da/LC_MESSAGES/kfile_pnm.mo -share/locale/da/LC_MESSAGES/kfile_po.mo -share/locale/da/LC_MESSAGES/kfile_ps.mo -share/locale/da/LC_MESSAGES/kfile_rfc822.mo -share/locale/da/LC_MESSAGES/kfile_rgb.mo -share/locale/da/LC_MESSAGES/kfile_rpm.mo -share/locale/da/LC_MESSAGES/kfile_sid.mo -share/locale/da/LC_MESSAGES/kfile_tga.mo -share/locale/da/LC_MESSAGES/kfile_theora.mo -share/locale/da/LC_MESSAGES/kfile_tiff.mo -share/locale/da/LC_MESSAGES/kfile_torrent.mo -share/locale/da/LC_MESSAGES/kfile_ts.mo -share/locale/da/LC_MESSAGES/kfile_txt.mo -share/locale/da/LC_MESSAGES/kfile_vcf.mo -share/locale/da/LC_MESSAGES/kfile_wav.mo -share/locale/da/LC_MESSAGES/kfile_xbm.mo -share/locale/da/LC_MESSAGES/kfile_xpm.mo -share/locale/da/LC_MESSAGES/kfileaudiopreview.mo -share/locale/da/LC_MESSAGES/kfilereplace.mo -share/locale/da/LC_MESSAGES/kfileshare.mo -share/locale/da/LC_MESSAGES/kfindpart.mo -share/locale/da/LC_MESSAGES/kfloppy.mo -share/locale/da/LC_MESSAGES/kfmclient.mo -share/locale/da/LC_MESSAGES/kfontinst.mo -share/locale/da/LC_MESSAGES/kfouleggs.mo -share/locale/da/LC_MESSAGES/kgamma.mo -share/locale/da/LC_MESSAGES/kgantt.mo -share/locale/da/LC_MESSAGES/kget.mo -share/locale/da/LC_MESSAGES/kghostview.mo -share/locale/da/LC_MESSAGES/kgoldrunner.mo -share/locale/da/LC_MESSAGES/kgpg.mo -share/locale/da/LC_MESSAGES/kgreet_classic.mo -share/locale/da/LC_MESSAGES/kgreet_winbind.mo -share/locale/da/LC_MESSAGES/khangman.mo -share/locale/da/LC_MESSAGES/khelpcenter.mo -share/locale/da/LC_MESSAGES/khexedit.mo -share/locale/da/LC_MESSAGES/khexedit2part.mo -share/locale/da/LC_MESSAGES/khotkeys.mo -share/locale/da/LC_MESSAGES/khtmlkttsd.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/kig.mo -share/locale/da/LC_MESSAGES/kimagemapeditor.mo -share/locale/da/LC_MESSAGES/kinetd.mo -share/locale/da/LC_MESSAGES/kio.mo -share/locale/da/LC_MESSAGES/kio_audiocd.mo -share/locale/da/LC_MESSAGES/kio_devices.mo -share/locale/da/LC_MESSAGES/kio_finger.mo -share/locale/da/LC_MESSAGES/kio_fish.mo -share/locale/da/LC_MESSAGES/kio_floppy.mo -share/locale/da/LC_MESSAGES/kio_groupwise.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_ldap.mo -share/locale/da/LC_MESSAGES/kio_mac.mo -share/locale/da/LC_MESSAGES/kio_man.mo -share/locale/da/LC_MESSAGES/kio_media.mo -share/locale/da/LC_MESSAGES/kio_mobile.mo -share/locale/da/LC_MESSAGES/kio_newimap4.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_print.mo -share/locale/da/LC_MESSAGES/kio_remote.mo -share/locale/da/LC_MESSAGES/kio_settings.mo -share/locale/da/LC_MESSAGES/kio_sftp.mo -share/locale/da/LC_MESSAGES/kio_sieve.mo -share/locale/da/LC_MESSAGES/kio_smb.mo -share/locale/da/LC_MESSAGES/kio_smtp.mo -share/locale/da/LC_MESSAGES/kio_svn.mo -share/locale/da/LC_MESSAGES/kio_system.mo -share/locale/da/LC_MESSAGES/kio_trash.mo -share/locale/da/LC_MESSAGES/kio_zeroconf.mo -share/locale/da/LC_MESSAGES/kioexec.mo -share/locale/da/LC_MESSAGES/kiten.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/klatin.mo -share/locale/da/LC_MESSAGES/klegacyimport.mo -share/locale/da/LC_MESSAGES/kleopatra.mo -share/locale/da/LC_MESSAGES/klettres.mo -share/locale/da/LC_MESSAGES/klickety.mo -share/locale/da/LC_MESSAGES/klines.mo -share/locale/da/LC_MESSAGES/klinkstatus.mo -share/locale/da/LC_MESSAGES/klipper.mo -share/locale/da/LC_MESSAGES/klock.mo -share/locale/da/LC_MESSAGES/kmag.mo -share/locale/da/LC_MESSAGES/kmahjongg.mo -share/locale/da/LC_MESSAGES/kmail.mo -share/locale/da/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/da/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/da/LC_MESSAGES/kmailcvt.mo -share/locale/da/LC_MESSAGES/kmathapplet.mo -share/locale/da/LC_MESSAGES/kmathtool.mo -share/locale/da/LC_MESSAGES/kmcop.mo -share/locale/da/LC_MESSAGES/kmenuapplet.mo -share/locale/da/LC_MESSAGES/kmenuedit.mo -share/locale/da/LC_MESSAGES/kmessedwords.mo -share/locale/da/LC_MESSAGES/kmid.mo -share/locale/da/LC_MESSAGES/kmilo_delli8k.mo -share/locale/da/LC_MESSAGES/kmilo_generic.mo -share/locale/da/LC_MESSAGES/kmilo_kvaio.mo -share/locale/da/LC_MESSAGES/kmilo_powerbook.mo -share/locale/da/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/da/LC_MESSAGES/kmilod.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/kmobile.mo -share/locale/da/LC_MESSAGES/kmoon.mo -share/locale/da/LC_MESSAGES/kmousetool.mo -share/locale/da/LC_MESSAGES/kmouth.mo -share/locale/da/LC_MESSAGES/kmplot.mo -share/locale/da/LC_MESSAGES/kmrml.mo -share/locale/da/LC_MESSAGES/knetattach.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/kodo.mo -share/locale/da/LC_MESSAGES/kolf.mo -share/locale/da/LC_MESSAGES/kolourpaint.mo -share/locale/da/LC_MESSAGES/kolourpicker.mo -share/locale/da/LC_MESSAGES/kommander.mo -share/locale/da/LC_MESSAGES/kompare.mo -share/locale/da/LC_MESSAGES/konnector_dummy.mo -share/locale/da/LC_MESSAGES/konnector_kabc.mo -share/locale/da/LC_MESSAGES/konnector_kcal.mo -share/locale/da/LC_MESSAGES/konnector_local.mo -share/locale/da/LC_MESSAGES/konnector_qtopia.mo -share/locale/da/LC_MESSAGES/konnector_remote.mo -share/locale/da/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/da/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/da/LC_MESSAGES/konqsidebar_news.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/konsolekalendar.mo -share/locale/da/LC_MESSAGES/kontact.mo -share/locale/da/LC_MESSAGES/kooka.mo -share/locale/da/LC_MESSAGES/kopete.mo -share/locale/da/LC_MESSAGES/korganizer.mo -share/locale/da/LC_MESSAGES/korn.mo -share/locale/da/LC_MESSAGES/kpackage.mo -share/locale/da/LC_MESSAGES/kpager.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/kpdf.mo -share/locale/da/LC_MESSAGES/kpercentage.mo -share/locale/da/LC_MESSAGES/kpersonalizer.mo -share/locale/da/LC_MESSAGES/kpf.mo -share/locale/da/LC_MESSAGES/kpilot.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/krandr.mo -share/locale/da/LC_MESSAGES/krdb.mo -share/locale/da/LC_MESSAGES/krdc.mo -share/locale/da/LC_MESSAGES/kreadconfig.mo -share/locale/da/LC_MESSAGES/krec.mo -share/locale/da/LC_MESSAGES/kregexpeditor.mo -share/locale/da/LC_MESSAGES/kres_blogging.mo -share/locale/da/LC_MESSAGES/kres_bugzilla.mo -share/locale/da/LC_MESSAGES/kres_exchange.mo -share/locale/da/LC_MESSAGES/kres_featureplan.mo -share/locale/da/LC_MESSAGES/kres_groupwise.mo -share/locale/da/LC_MESSAGES/kres_kolab.mo -share/locale/da/LC_MESSAGES/kres_opengroupware.mo -share/locale/da/LC_MESSAGES/kres_remote.mo -share/locale/da/LC_MESSAGES/kres_xmlrpc.mo -share/locale/da/LC_MESSAGES/kreversi.mo -share/locale/da/LC_MESSAGES/krfb.mo -share/locale/da/LC_MESSAGES/kruler.mo -share/locale/da/LC_MESSAGES/krunapplet.mo -share/locale/da/LC_MESSAGES/ksame.mo -share/locale/da/LC_MESSAGES/ksayit.mo -share/locale/da/LC_MESSAGES/kscd.mo -share/locale/da/LC_MESSAGES/kscreensaver.mo -share/locale/da/LC_MESSAGES/kshisen.mo -share/locale/da/LC_MESSAGES/ksig.mo -share/locale/da/LC_MESSAGES/ksim.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/ksplashthemes.mo -share/locale/da/LC_MESSAGES/kstars.mo -share/locale/da/LC_MESSAGES/kstart.mo -share/locale/da/LC_MESSAGES/kstartperf.mo -share/locale/da/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/da/LC_MESSAGES/kstyle_phase_config.mo -share/locale/da/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/da/LC_MESSAGES/ksvgplugin.mo -share/locale/da/LC_MESSAGES/ksync.mo -share/locale/da/LC_MESSAGES/ksysguard.mo -share/locale/da/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/da/LC_MESSAGES/ksystraycmd.mo -share/locale/da/LC_MESSAGES/ksysv.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/ktexteditor_autobookmarker.mo -share/locale/da/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/da/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/da/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/da/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/da/LC_MESSAGES/ktexteditor_kttsd.mo -share/locale/da/LC_MESSAGES/kthememanager.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/ktnef.mo -share/locale/da/LC_MESSAGES/ktouch.mo -share/locale/da/LC_MESSAGES/ktron.mo -share/locale/da/LC_MESSAGES/kttsd.mo -share/locale/da/LC_MESSAGES/kttsd_commandplugin.mo -share/locale/da/LC_MESSAGES/kttsd_eposplugin.mo -share/locale/da/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/da/LC_MESSAGES/kttsd_fliteplugin.mo -share/locale/da/LC_MESSAGES/kttsd_freettsplugin.mo -share/locale/da/LC_MESSAGES/kttsd_hadifixplugin.mo -share/locale/da/LC_MESSAGES/kttsd_sbdplugin.mo -share/locale/da/LC_MESSAGES/kttsd_stringreplacerplugin.mo -share/locale/da/LC_MESSAGES/kttsd_talkerchooserplugin.mo -share/locale/da/LC_MESSAGES/kttsd_xmltransformerplugin.mo -share/locale/da/LC_MESSAGES/kttsjobmgr.mo -share/locale/da/LC_MESSAGES/kttsmgr.mo -share/locale/da/LC_MESSAGES/ktuberling.mo -share/locale/da/LC_MESSAGES/kturtle.mo -share/locale/da/LC_MESSAGES/ktux.mo -share/locale/da/LC_MESSAGES/kuick_plugin.mo -share/locale/da/LC_MESSAGES/kuickshow.mo -share/locale/da/LC_MESSAGES/kuiviewer.mo -share/locale/da/LC_MESSAGES/kuser.mo -share/locale/da/LC_MESSAGES/kverbos.mo -share/locale/da/LC_MESSAGES/kview.mo -share/locale/da/LC_MESSAGES/kview_scale.mo -share/locale/da/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/da/LC_MESSAGES/kviewcanvas.mo -share/locale/da/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/da/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/da/LC_MESSAGES/kviewscannerplugin.mo -share/locale/da/LC_MESSAGES/kviewshell.mo -share/locale/da/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/da/LC_MESSAGES/kviewviewer.mo -share/locale/da/LC_MESSAGES/kvoctrain.mo -share/locale/da/LC_MESSAGES/kwalletmanager.mo -share/locale/da/LC_MESSAGES/kwatchgnupg.mo -share/locale/da/LC_MESSAGES/kweather.mo -share/locale/da/LC_MESSAGES/kwifimanager.mo -share/locale/da/LC_MESSAGES/kwin.mo -share/locale/da/LC_MESSAGES/kwin4.mo -share/locale/da/LC_MESSAGES/kwin_art_clients.mo -share/locale/da/LC_MESSAGES/kwin_clients.mo -share/locale/da/LC_MESSAGES/kwireless.mo -share/locale/da/LC_MESSAGES/kwordquiz.mo -share/locale/da/LC_MESSAGES/kworldclock.mo -share/locale/da/LC_MESSAGES/kwriteconfig.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/kxsldbg.mo -share/locale/da/LC_MESSAGES/libKTTSD.mo -share/locale/da/LC_MESSAGES/libcalendarresources.mo -share/locale/da/LC_MESSAGES/libdmctl.mo -share/locale/da/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/da/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/da/LC_MESSAGES/libkcal.mo -share/locale/da/LC_MESSAGES/libkcalsystem.mo -share/locale/da/LC_MESSAGES/libkcddb.mo -share/locale/da/LC_MESSAGES/libkdegames.mo -share/locale/da/LC_MESSAGES/libkdehighscores.mo -share/locale/da/LC_MESSAGES/libkdenetwork.mo -share/locale/da/LC_MESSAGES/libkdepim.mo -share/locale/da/LC_MESSAGES/libkholidays.mo -share/locale/da/LC_MESSAGES/libkicker.mo -share/locale/da/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/da/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/da/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/da/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/da/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/da/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/da/LC_MESSAGES/libkickermenu_tom.mo -share/locale/da/LC_MESSAGES/libkleopatra.mo -share/locale/da/LC_MESSAGES/libkmime.mo -share/locale/da/LC_MESSAGES/libkonq.mo -share/locale/da/LC_MESSAGES/libkpgp.mo -share/locale/da/LC_MESSAGES/libkpimexchange.mo -share/locale/da/LC_MESSAGES/libkscan.mo -share/locale/da/LC_MESSAGES/libkscreensaver.mo -share/locale/da/LC_MESSAGES/libksieve.mo -share/locale/da/LC_MESSAGES/libksirtet.mo -share/locale/da/LC_MESSAGES/libksync.mo -share/locale/da/LC_MESSAGES/libtaskbar.mo -share/locale/da/LC_MESSAGES/libtaskmanager.mo -share/locale/da/LC_MESSAGES/lockout.mo -share/locale/da/LC_MESSAGES/lskat.mo -share/locale/da/LC_MESSAGES/lyrics.mo -share/locale/da/LC_MESSAGES/mediaapplet.mo -share/locale/da/LC_MESSAGES/mediacontrol.mo -share/locale/da/LC_MESSAGES/minitoolsplugin.mo -share/locale/da/LC_MESSAGES/multisynk.mo -share/locale/da/LC_MESSAGES/naughtyapplet.mo -share/locale/da/LC_MESSAGES/nexscope.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/pitchablespeed.mo -share/locale/da/LC_MESSAGES/ppdtranslations.mo -share/locale/da/LC_MESSAGES/privacy.mo -share/locale/da/LC_MESSAGES/qeditor.mo -share/locale/da/LC_MESSAGES/quanta.mo -share/locale/da/LC_MESSAGES/quicklauncher.mo -share/locale/da/LC_MESSAGES/rellinks.mo -share/locale/da/LC_MESSAGES/searchbarplugin.mo -share/locale/da/LC_MESSAGES/secpolicy.mo -share/locale/da/LC_MESSAGES/spy.mo -share/locale/da/LC_MESSAGES/synaescope.mo -share/locale/da/LC_MESSAGES/taskbarextension.mo -share/locale/da/LC_MESSAGES/timezones.mo -share/locale/da/LC_MESSAGES/tippecanoe.mo -share/locale/da/LC_MESSAGES/trashapplet.mo -share/locale/da/LC_MESSAGES/tyler.mo -share/locale/da/LC_MESSAGES/uachangerplugin.mo -share/locale/da/LC_MESSAGES/umbrello.mo -share/locale/da/LC_MESSAGES/useraccount.mo -share/locale/da/LC_MESSAGES/validatorsplugin.mo -share/locale/da/LC_MESSAGES/vimpart.mo -share/locale/da/LC_MESSAGES/wakeup.mo -share/locale/da/LC_MESSAGES/wavecapture.mo -share/locale/da/LC_MESSAGES/webarchiver.mo -share/locale/da/charset -share/locale/da/da.compendium -share/locale/da/entry.desktop -share/locale/da/flag.png -@dirrm share/doc/HTML/da/xsldbg -@dirrm share/doc/HTML/da/umbrello -@dirrm share/doc/HTML/da/scripts -@dirrm share/doc/HTML/da/quanta -@dirrm share/doc/HTML/da/noatun -@dirrm share/doc/HTML/da/multisynk -@dirrm share/doc/HTML/da/megami -@dirrm share/doc/HTML/da/lskat -@dirrm share/doc/HTML/da/lisa -@dirrm share/doc/HTML/da/kxsldbg -@dirrm share/doc/HTML/da/kxkb -@dirrm share/doc/HTML/da/kxconfig -@dirrm share/doc/HTML/da/kwuftpd -@dirrm share/doc/HTML/da/kwrite -@dirrm share/doc/HTML/da/kworldclock -@dirrm share/doc/HTML/da/kwordquiz -@dirrm share/doc/HTML/da/kwin4 -@dirrm share/doc/HTML/da/kwifimanager -@dirrm share/doc/HTML/da/kweather -@dirrm share/doc/HTML/da/kwatchgnupg -@dirrm share/doc/HTML/da/kwallet -@dirrm share/doc/HTML/da/kvoctrain -@dirrm share/doc/HTML/da/kview -@dirrm share/doc/HTML/da/kverbos -@dirrm share/doc/HTML/da/kuser -@dirrm share/doc/HTML/da/kuickshow -@dirrm share/doc/HTML/da/kturtle -@dirrm share/doc/HTML/da/ktuberling -@dirrm share/doc/HTML/da/kttsd -@dirrm share/doc/HTML/da/ktron -@dirrm share/doc/HTML/da/ktouch -@dirrm share/doc/HTML/da/ktnef -@dirrm share/doc/HTML/da/ktimer -@dirrm share/doc/HTML/da/kteatime -@dirrm share/doc/HTML/da/ktalkd -@dirrm share/doc/HTML/da/ksysv -@dirrm share/doc/HTML/da/ksysguard -@dirrm share/doc/HTML/da/kstars -@dirrm share/doc/HTML/da/ksplashml -@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/ksirc -@dirrm share/doc/HTML/da/ksim -@dirrm share/doc/HTML/da/kshisen -@dirrm share/doc/HTML/da/kscd -@dirrm share/doc/HTML/da/ksame -@dirrm share/doc/HTML/da/kruler -@dirrm share/doc/HTML/da/krfb -@dirrm share/doc/HTML/da/kreversi -@dirrm share/doc/HTML/da/krec -@dirrm share/doc/HTML/da/krdc -@dirrm share/doc/HTML/da/kppp -@dirrm share/doc/HTML/da/kpovmodeler -@dirrm share/doc/HTML/da/kpoker -@dirrm share/doc/HTML/da/kpilot -@dirrm share/doc/HTML/da/kpf -@dirrm share/doc/HTML/da/kpercentage -@dirrm share/doc/HTML/da/kpdf -@dirrm share/doc/HTML/da/kpat -@dirrm share/doc/HTML/da/kpaint -@dirrm share/doc/HTML/da/kpager -@dirrm share/doc/HTML/da/kpackage -@dirrm share/doc/HTML/da/korn -@dirrm share/doc/HTML/da/korganizer -@dirrm share/doc/HTML/da/kopete -@dirrm share/doc/HTML/da/kooka -@dirrm share/doc/HTML/da/kontact -@dirrm share/doc/HTML/da/konsolekalendar -@dirrm share/doc/HTML/da/konsole -@dirrm share/doc/HTML/da/konquest -@dirrm share/doc/HTML/da/konqueror -@dirrm share/doc/HTML/da/konq-plugins/webarchiver -@dirrm share/doc/HTML/da/konq-plugins/validators -@dirrm share/doc/HTML/da/konq-plugins/uachanger -@dirrm share/doc/HTML/da/konq-plugins/smbmounter -@dirrm share/doc/HTML/da/konq-plugins/mediaplayer -@dirrm share/doc/HTML/da/konq-plugins/kuick -@dirrm share/doc/HTML/da/konq-plugins/khtmlsettings -@dirrm share/doc/HTML/da/konq-plugins/imgallery -@dirrm share/doc/HTML/da/konq-plugins/fsview -@dirrm share/doc/HTML/da/konq-plugins/domtreeviewer -@dirrm share/doc/HTML/da/konq-plugins/dirfilter -@dirrm share/doc/HTML/da/konq-plugins/crashes -@dirrm share/doc/HTML/da/konq-plugins/babel -@dirrm share/doc/HTML/da/konq-plugins -@dirrm share/doc/HTML/da/kompare -@dirrm share/doc/HTML/da/kommander -@dirrm share/doc/HTML/da/kolourpaint -@dirrm share/doc/HTML/da/kolf -@dirrm share/doc/HTML/da/kodo -@dirrm share/doc/HTML/da/knotes -@dirrm share/doc/HTML/da/knode -@dirrm share/doc/HTML/da/knewsticker -@dirrm share/doc/HTML/da/knetattach -@dirrm share/doc/HTML/da/kmplot -@dirrm share/doc/HTML/da/kmouth -@dirrm share/doc/HTML/da/kmousetool -@dirrm share/doc/HTML/da/kmoon -@dirrm share/doc/HTML/da/kmix -@dirrm share/doc/HTML/da/kmines -@dirrm share/doc/HTML/da/kmid -@dirrm share/doc/HTML/da/kmessedwords -@dirrm share/doc/HTML/da/kmenuedit -@dirrm share/doc/HTML/da/kmathtool -@dirrm share/doc/HTML/da/kmail -@dirrm share/doc/HTML/da/kmahjongg -@dirrm share/doc/HTML/da/kmag -@dirrm share/doc/HTML/da/klipper -@dirrm share/doc/HTML/da/klinkstatus -@dirrm share/doc/HTML/da/klines -@dirrm share/doc/HTML/da/klickety -@dirrm share/doc/HTML/da/klettres -@dirrm share/doc/HTML/da/kleopatra -@dirrm share/doc/HTML/da/klatin -@dirrm share/doc/HTML/da/kjumpingcube -@dirrm share/doc/HTML/da/kjots -@dirrm share/doc/HTML/da/kiten -@dirrm share/doc/HTML/da/kioslave -@dirrm share/doc/HTML/da/kio_audiocd -@dirrm share/doc/HTML/da/kinfocenter/xserver -@dirrm share/doc/HTML/da/kinfocenter/usb -@dirrm share/doc/HTML/da/kinfocenter/sound -@dirrm share/doc/HTML/da/kinfocenter/scsi -@dirrm share/doc/HTML/da/kinfocenter/samba -@dirrm share/doc/HTML/da/kinfocenter/protocols -@dirrm share/doc/HTML/da/kinfocenter/processor -@dirrm share/doc/HTML/da/kinfocenter/pcmcia -@dirrm share/doc/HTML/da/kinfocenter/pci -@dirrm share/doc/HTML/da/kinfocenter/partitions -@dirrm share/doc/HTML/da/kinfocenter/opengl -@dirrm share/doc/HTML/da/kinfocenter/nics -@dirrm share/doc/HTML/da/kinfocenter/memory -@dirrm share/doc/HTML/da/kinfocenter/ioports -@dirrm share/doc/HTML/da/kinfocenter/interrupts -@dirrm share/doc/HTML/da/kinfocenter/dma -@dirrm share/doc/HTML/da/kinfocenter/devices -@dirrm share/doc/HTML/da/kinfocenter/blockdevices -@dirrm share/doc/HTML/da/kinfocenter -@dirrm share/doc/HTML/da/kig -@dirrm share/doc/HTML/da/kiconedit -@dirrm share/doc/HTML/da/kicker-applets -@dirrm share/doc/HTML/da/kicker -@dirrm share/doc/HTML/da/khexedit -@dirrm share/doc/HTML/da/khelpcenter/visualdict -@dirrm share/doc/HTML/da/khelpcenter/userguide -@dirrm share/doc/HTML/da/khelpcenter/quickstart -@dirrm share/doc/HTML/da/khelpcenter/glossary -@dirrm share/doc/HTML/da/khelpcenter/faq -@dirrm share/doc/HTML/da/khelpcenter -@dirrm share/doc/HTML/da/khangman -@dirrm share/doc/HTML/da/kgpg -@dirrm share/doc/HTML/da/kgoldrunner -@dirrm share/doc/HTML/da/kghostview -@dirrm share/doc/HTML/da/kget -@dirrm share/doc/HTML/da/kgeo -@dirrm share/doc/HTML/da/kgamma -@dirrm share/doc/HTML/da/kfouleggs -@dirrm share/doc/HTML/da/kfloppy -@dirrm share/doc/HTML/da/kfind -@dirrm share/doc/HTML/da/kfilereplace -@dirrm share/doc/HTML/da/kenolaba -@dirrm share/doc/HTML/da/keduca -@dirrm share/doc/HTML/da/kedit -@dirrm share/doc/HTML/da/kdvi -@dirrm share/doc/HTML/da/kdm -@dirrm share/doc/HTML/da/kdict -@dirrm share/doc/HTML/da/kdf -@dirrm share/doc/HTML/da/kdevelop -@dirrm share/doc/HTML/da/kdesu -@dirrm share/doc/HTML/da/kdeprint -@dirrm share/doc/HTML/da/kdelirc/kcmlirc -@dirrm share/doc/HTML/da/kdelirc/irkick -@dirrm share/doc/HTML/da/kdelirc -@dirrm share/doc/HTML/da/kdelibs -@dirrm share/doc/HTML/da/kdebugdialog -@dirrm share/doc/HTML/da/kdearch -@dirrm share/doc/HTML/da/kde_app_devel -@dirrm share/doc/HTML/da/kdcop -@dirrm share/doc/HTML/da/kdat -@dirrm share/doc/HTML/da/kcron -@dirrm share/doc/HTML/da/kcontrol/windowmanagement -@dirrm share/doc/HTML/da/kcontrol/useragent -@dirrm share/doc/HTML/da/kcontrol/spellchecking -@dirrm share/doc/HTML/da/kcontrol/smb -@dirrm share/doc/HTML/da/kcontrol/screensaver -@dirrm share/doc/HTML/da/kcontrol/proxy -@dirrm share/doc/HTML/da/kcontrol/powerctrl -@dirrm share/doc/HTML/da/kcontrol/passwords -@dirrm share/doc/HTML/da/kcontrol/panelappearance -@dirrm share/doc/HTML/da/kcontrol/panel -@dirrm share/doc/HTML/da/kcontrol/netpref -@dirrm share/doc/HTML/da/kcontrol/mouse -@dirrm share/doc/HTML/da/kcontrol/laptop -@dirrm share/doc/HTML/da/kcontrol/language -@dirrm share/doc/HTML/da/kcontrol/lanbrowser -@dirrm share/doc/HTML/da/kcontrol/kwindecoration -@dirrm share/doc/HTML/da/kcontrol/kthememgr -@dirrm share/doc/HTML/da/kcontrol/kmixcfg -@dirrm share/doc/HTML/da/kcontrol/khtml -@dirrm share/doc/HTML/da/kcontrol/keys -@dirrm share/doc/HTML/da/kcontrol/keyboard -@dirrm share/doc/HTML/da/kcontrol/kdm -@dirrm share/doc/HTML/da/kcontrol/kcmtaskbar -@dirrm share/doc/HTML/da/kcontrol/kcmstyle -@dirrm share/doc/HTML/da/kcontrol/kcmsmserver -@dirrm share/doc/HTML/da/kcontrol/kcmnotify -@dirrm share/doc/HTML/da/kcontrol/kcmlowbatwarn -@dirrm share/doc/HTML/da/kcontrol/kcmlowbatcrit -@dirrm share/doc/HTML/da/kcontrol/kcmlaunch -@dirrm share/doc/HTML/da/kcontrol/kcmktalkd -@dirrm share/doc/HTML/da/kcontrol/kcmkonsole -@dirrm share/doc/HTML/da/kcontrol/kcmfontinst -@dirrm share/doc/HTML/da/kcontrol/kcmcss -@dirrm share/doc/HTML/da/kcontrol/kcmaccess -@dirrm share/doc/HTML/da/kcontrol/kalarmd -@dirrm share/doc/HTML/da/kcontrol/icons -@dirrm share/doc/HTML/da/kcontrol/helpindex -@dirrm share/doc/HTML/da/kcontrol/fonts -@dirrm share/doc/HTML/da/kcontrol/filetypes -@dirrm share/doc/HTML/da/kcontrol/filemanager -@dirrm share/doc/HTML/da/kcontrol/energy -@dirrm share/doc/HTML/da/kcontrol/email -@dirrm share/doc/HTML/da/kcontrol/ebrowsing -@dirrm share/doc/HTML/da/kcontrol/desktopbehavior -@dirrm share/doc/HTML/da/kcontrol/desktop -@dirrm share/doc/HTML/da/kcontrol/crypto -@dirrm share/doc/HTML/da/kcontrol/cookies -@dirrm share/doc/HTML/da/kcontrol/colors -@dirrm share/doc/HTML/da/kcontrol/clock -@dirrm share/doc/HTML/da/kcontrol/cache -@dirrm share/doc/HTML/da/kcontrol/bell -@dirrm share/doc/HTML/da/kcontrol/background -@dirrm share/doc/HTML/da/kcontrol/arts -@dirrm share/doc/HTML/da/kcontrol -@dirrm share/doc/HTML/da/kcoloredit -@dirrm share/doc/HTML/da/kcharselect -@dirrm share/doc/HTML/da/kcalc -@dirrm share/doc/HTML/da/kcachegrind -@dirrm share/doc/HTML/da/kbugbuster -@dirrm share/doc/HTML/da/kbruch -@dirrm share/doc/HTML/da/kbounce -@dirrm share/doc/HTML/da/kblackbox -@dirrm share/doc/HTML/da/kbattleship -@dirrm share/doc/HTML/da/kbackgammon -@dirrm share/doc/HTML/da/kbabel -@dirrm share/doc/HTML/da/katomic -@dirrm share/doc/HTML/da/kate-plugins -@dirrm share/doc/HTML/da/kate -@dirrm share/doc/HTML/da/kasteroids -@dirrm share/doc/HTML/da/karm -@dirrm share/doc/HTML/da/kapptemplate -@dirrm share/doc/HTML/da/kappfinder -@dirrm share/doc/HTML/da/kandy -@dirrm share/doc/HTML/da/kamera -@dirrm share/doc/HTML/da/kalzium -@dirrm share/doc/HTML/da/kalarm -@dirrm share/doc/HTML/da/kaddressbook -@dirrm share/doc/HTML/da/kaboodle -@dirrm share/doc/HTML/da/juk -@dirrm share/doc/HTML/da/flashkard -@dirrm share/doc/HTML/da/common -@dirrm share/doc/HTML/da/cervisia -@dirrm share/doc/HTML/da/atlantik -@dirrm share/doc/HTML/da/artsbuilder -@dirrm share/doc/HTML/da/ark -@dirrm share/doc/HTML/da/amor -@dirrm share/doc/HTML/da/akregator -@dirrm share/doc/HTML/da/KRegExpEditor -@dirrm share/apps/ktuberling/sounds/da -@dirrm share/apps/ktuberling/sounds -@dirrm share/apps/ktuberling -@dirrm share/apps/klettres/da/syllab -@dirrm share/apps/klettres/da/alpha -@dirrm share/apps/klettres/da -@dirrm share/apps/klettres -@dirrm share/apps/khangman/data/da -@dirrm share/apps/khangman/data -@dirrm share/apps/khangman diff --git a/misc/kde4-l10n-el/Makefile b/misc/kde4-l10n-el/Makefile deleted file mode 100644 index 3954ab647bc5..000000000000 --- a/misc/kde4-l10n-el/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-el -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= el- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Modern Greek messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-el/distinfo b/misc/kde4-l10n-el/distinfo deleted file mode 100644 index 36b921e89701..000000000000 --- a/misc/kde4-l10n-el/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-el-3.4.2.tar.bz2) = a62e585ede740230c2b361f76af8d816 -SIZE (KDE/kde-i18n/kde-i18n-el-3.4.2.tar.bz2) = 1833338 diff --git a/misc/kde4-l10n-el/pkg-descr b/misc/kde4-l10n-el/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-el/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-el/pkg-plist b/misc/kde4-l10n-el/pkg-plist deleted file mode 100644 index 40ab1d7446e4..000000000000 --- a/misc/kde4-l10n-el/pkg-plist +++ /dev/null @@ -1,592 +0,0 @@ -share/locale/el/LC_MESSAGES/akregator.mo -share/locale/el/LC_MESSAGES/akregator_konqplugin.mo -share/locale/el/LC_MESSAGES/alsaplayerui.mo -share/locale/el/LC_MESSAGES/amor.mo -share/locale/el/LC_MESSAGES/appletproxy.mo -share/locale/el/LC_MESSAGES/ark.mo -share/locale/el/LC_MESSAGES/ark_plugin.mo -share/locale/el/LC_MESSAGES/artsbuilder.mo -share/locale/el/LC_MESSAGES/artscontrol.mo -share/locale/el/LC_MESSAGES/artsmodules.mo -share/locale/el/LC_MESSAGES/atlantik.mo -share/locale/el/LC_MESSAGES/atlantikdesigner.mo -share/locale/el/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/el/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/el/LC_MESSAGES/audiorename_plugin.mo -share/locale/el/LC_MESSAGES/autorefresh.mo -share/locale/el/LC_MESSAGES/babelfish.mo -share/locale/el/LC_MESSAGES/cervisia.mo -share/locale/el/LC_MESSAGES/charlatanui.mo -share/locale/el/LC_MESSAGES/childpanelextension.mo -share/locale/el/LC_MESSAGES/clockapplet.mo -share/locale/el/LC_MESSAGES/crashesplugin.mo -share/locale/el/LC_MESSAGES/cupsdconf.mo -share/locale/el/LC_MESSAGES/cvsservice.mo -share/locale/el/LC_MESSAGES/dcoprss.mo -share/locale/el/LC_MESSAGES/devicesapplet.mo -share/locale/el/LC_MESSAGES/dirfilterplugin.mo -share/locale/el/LC_MESSAGES/display.mo -share/locale/el/LC_MESSAGES/dockbarextension.mo -share/locale/el/LC_MESSAGES/domtreeviewer.mo -share/locale/el/LC_MESSAGES/drkonqi.mo -share/locale/el/LC_MESSAGES/dub.mo -share/locale/el/LC_MESSAGES/extensionproxy.mo -share/locale/el/LC_MESSAGES/ffrs.mo -share/locale/el/LC_MESSAGES/filetypes.mo -share/locale/el/LC_MESSAGES/fontinst.mo -share/locale/el/LC_MESSAGES/fsview.mo -share/locale/el/LC_MESSAGES/htmlsearch.mo -share/locale/el/LC_MESSAGES/imagerename_plugin.mo -share/locale/el/LC_MESSAGES/imgalleryplugin.mo -share/locale/el/LC_MESSAGES/irkick.mo -share/locale/el/LC_MESSAGES/jefferson.mo -share/locale/el/LC_MESSAGES/joystick.mo -share/locale/el/LC_MESSAGES/juk.mo -share/locale/el/LC_MESSAGES/kabc2mutt.mo -share/locale/el/LC_MESSAGES/kabc_dir.mo -share/locale/el/LC_MESSAGES/kabc_file.mo -share/locale/el/LC_MESSAGES/kabc_ldap.mo -share/locale/el/LC_MESSAGES/kabc_ldapkio.mo -share/locale/el/LC_MESSAGES/kabc_net.mo -share/locale/el/LC_MESSAGES/kabc_slox.mo -share/locale/el/LC_MESSAGES/kabc_sql.mo -share/locale/el/LC_MESSAGES/kabcformat_binary.mo -share/locale/el/LC_MESSAGES/kaboodle.mo -share/locale/el/LC_MESSAGES/kaccess.mo -share/locale/el/LC_MESSAGES/kaddressbook.mo -share/locale/el/LC_MESSAGES/kalarm.mo -share/locale/el/LC_MESSAGES/kalzium.mo -share/locale/el/LC_MESSAGES/kandy.mo -share/locale/el/LC_MESSAGES/kappfinder.mo -share/locale/el/LC_MESSAGES/karm.mo -share/locale/el/LC_MESSAGES/kasbarextension.mo -share/locale/el/LC_MESSAGES/kasteroids.mo -share/locale/el/LC_MESSAGES/kate.mo -share/locale/el/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/el/LC_MESSAGES/katedefaultproject.mo -share/locale/el/LC_MESSAGES/katefiletemplates.mo -share/locale/el/LC_MESSAGES/katefll_initplugin.mo -share/locale/el/LC_MESSAGES/katefll_plugin.mo -share/locale/el/LC_MESSAGES/katehelloworld.mo -share/locale/el/LC_MESSAGES/katehtmltools.mo -share/locale/el/LC_MESSAGES/kateinsertcommand.mo -share/locale/el/LC_MESSAGES/katekjswrapper.mo -share/locale/el/LC_MESSAGES/katekttsd.mo -share/locale/el/LC_MESSAGES/katemake.mo -share/locale/el/LC_MESSAGES/katemodeline.mo -share/locale/el/LC_MESSAGES/kateopenheader.mo -share/locale/el/LC_MESSAGES/katepart.mo -share/locale/el/LC_MESSAGES/katepartkttsd.mo -share/locale/el/LC_MESSAGES/kateprojectmanager.mo -share/locale/el/LC_MESSAGES/katepybrowse.mo -share/locale/el/LC_MESSAGES/katesnippets.mo -share/locale/el/LC_MESSAGES/katespell.mo -share/locale/el/LC_MESSAGES/katetabbarextension.mo -share/locale/el/LC_MESSAGES/katetextfilter.mo -share/locale/el/LC_MESSAGES/katexmlcheck.mo -share/locale/el/LC_MESSAGES/katexmltools.mo -share/locale/el/LC_MESSAGES/katomic.mo -share/locale/el/LC_MESSAGES/kaudiocreator.mo -share/locale/el/LC_MESSAGES/kbabel.mo -share/locale/el/LC_MESSAGES/kbackgammon.mo -share/locale/el/LC_MESSAGES/kbattleship.mo -share/locale/el/LC_MESSAGES/kbinaryclock.mo -share/locale/el/LC_MESSAGES/kblackbox.mo -share/locale/el/LC_MESSAGES/kbounce.mo -share/locale/el/LC_MESSAGES/kbruch.mo -share/locale/el/LC_MESSAGES/kbstateapplet.mo -share/locale/el/LC_MESSAGES/kbugbuster.mo -share/locale/el/LC_MESSAGES/kcachegrind.mo -share/locale/el/LC_MESSAGES/kcalc.mo -share/locale/el/LC_MESSAGES/kcharselect.mo -share/locale/el/LC_MESSAGES/kcharselectapplet.mo -share/locale/el/LC_MESSAGES/kcm_krfb.mo -share/locale/el/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/el/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/el/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/el/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/el/LC_MESSAGES/kcmaccess.mo -share/locale/el/LC_MESSAGES/kcmaccessibility.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/kcmcddb.mo -share/locale/el/LC_MESSAGES/kcmcgi.mo -share/locale/el/LC_MESSAGES/kcmcolors.mo -share/locale/el/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/el/LC_MESSAGES/kcmcrypto.mo -share/locale/el/LC_MESSAGES/kcmcss.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/kcmioslaveinfo.mo -share/locale/el/LC_MESSAGES/kcmkabconfig.mo -share/locale/el/LC_MESSAGES/kcmkamera.mo -share/locale/el/LC_MESSAGES/kcmkclock.mo -share/locale/el/LC_MESSAGES/kcmkded.mo -share/locale/el/LC_MESSAGES/kcmkdnssd.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/kcmkmix.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/kcmkontactnt.mo -share/locale/el/LC_MESSAGES/kcmktalkd.mo -share/locale/el/LC_MESSAGES/kcmkttsd.mo -share/locale/el/LC_MESSAGES/kcmkuick.mo -share/locale/el/LC_MESSAGES/kcmkurifilt.mo -share/locale/el/LC_MESSAGES/kcmkvaio.mo -share/locale/el/LC_MESSAGES/kcmkwallet.mo -share/locale/el/LC_MESSAGES/kcmkwindecoration.mo -share/locale/el/LC_MESSAGES/kcmkwinrules.mo -share/locale/el/LC_MESSAGES/kcmkwintheme.mo -share/locale/el/LC_MESSAGES/kcmkwm.mo -share/locale/el/LC_MESSAGES/kcmkxmlrpcd.mo -share/locale/el/LC_MESSAGES/kcmlanbrowser.mo -share/locale/el/LC_MESSAGES/kcmlaptop.mo -share/locale/el/LC_MESSAGES/kcmlaunch.mo -share/locale/el/LC_MESSAGES/kcmlayout.mo -share/locale/el/LC_MESSAGES/kcmlilo.mo -share/locale/el/LC_MESSAGES/kcmlirc.mo -share/locale/el/LC_MESSAGES/kcmlocale.mo -share/locale/el/LC_MESSAGES/kcmmediacontrol.mo -share/locale/el/LC_MESSAGES/kcmmidi.mo -share/locale/el/LC_MESSAGES/kcmnic.mo -share/locale/el/LC_MESSAGES/kcmnotify.mo -share/locale/el/LC_MESSAGES/kcmperformance.mo -share/locale/el/LC_MESSAGES/kcmprintmgr.mo -share/locale/el/LC_MESSAGES/kcmsamba.mo -share/locale/el/LC_MESSAGES/kcmscreensaver.mo -share/locale/el/LC_MESSAGES/kcmshell.mo -share/locale/el/LC_MESSAGES/kcmsmartcard.mo -share/locale/el/LC_MESSAGES/kcmsmserver.mo -share/locale/el/LC_MESSAGES/kcmsocks.mo -share/locale/el/LC_MESSAGES/kcmspellchecking.mo -share/locale/el/LC_MESSAGES/kcmstyle.mo -share/locale/el/LC_MESSAGES/kcmtaskbar.mo -share/locale/el/LC_MESSAGES/kcmthinkpad.mo -share/locale/el/LC_MESSAGES/kcmusb.mo -share/locale/el/LC_MESSAGES/kcmview1394.mo -share/locale/el/LC_MESSAGES/kcmvim.mo -share/locale/el/LC_MESSAGES/kcmwifi.mo -share/locale/el/LC_MESSAGES/kcmxinerama.mo -share/locale/el/LC_MESSAGES/kcoloredit.mo -share/locale/el/LC_MESSAGES/kcontrol.mo -share/locale/el/LC_MESSAGES/kcron.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/kdelibs_colors.mo -share/locale/el/LC_MESSAGES/kdelirc.mo -share/locale/el/LC_MESSAGES/kdepasswd.mo -share/locale/el/LC_MESSAGES/kdepimresources.mo -share/locale/el/LC_MESSAGES/kdepimwizards.mo -share/locale/el/LC_MESSAGES/kdeprint.mo -share/locale/el/LC_MESSAGES/kdeprint_part.mo -share/locale/el/LC_MESSAGES/kdeprintfax.mo -share/locale/el/LC_MESSAGES/kdesktop.mo -share/locale/el/LC_MESSAGES/kdessh.mo -share/locale/el/LC_MESSAGES/kdesu.mo -share/locale/el/LC_MESSAGES/kdesud.mo -share/locale/el/LC_MESSAGES/kdevdesigner.mo -share/locale/el/LC_MESSAGES/kdevelop.mo -share/locale/el/LC_MESSAGES/kdevtipofday.mo -share/locale/el/LC_MESSAGES/kdf.mo -share/locale/el/LC_MESSAGES/kdgantt.mo -share/locale/el/LC_MESSAGES/kdialog.mo -share/locale/el/LC_MESSAGES/kdict.mo -share/locale/el/LC_MESSAGES/kdictapplet.mo -share/locale/el/LC_MESSAGES/kdmchooser.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/keduca.mo -share/locale/el/LC_MESSAGES/kenolaba.mo -share/locale/el/LC_MESSAGES/kfax.mo -share/locale/el/LC_MESSAGES/kfifteenapplet.mo -share/locale/el/LC_MESSAGES/kfile_au.mo -share/locale/el/LC_MESSAGES/kfile_avi.mo -share/locale/el/LC_MESSAGES/kfile_bmp.mo -share/locale/el/LC_MESSAGES/kfile_cert.mo -share/locale/el/LC_MESSAGES/kfile_cpp.mo -share/locale/el/LC_MESSAGES/kfile_dds.mo -share/locale/el/LC_MESSAGES/kfile_deb.mo -share/locale/el/LC_MESSAGES/kfile_desktop.mo -share/locale/el/LC_MESSAGES/kfile_diff.mo -share/locale/el/LC_MESSAGES/kfile_drgeo.mo -share/locale/el/LC_MESSAGES/kfile_dvi.mo -share/locale/el/LC_MESSAGES/kfile_exr.mo -share/locale/el/LC_MESSAGES/kfile_flac.mo -share/locale/el/LC_MESSAGES/kfile_folder.mo -share/locale/el/LC_MESSAGES/kfile_font.mo -share/locale/el/LC_MESSAGES/kfile_gif.mo -share/locale/el/LC_MESSAGES/kfile_html.mo -share/locale/el/LC_MESSAGES/kfile_ico.mo -share/locale/el/LC_MESSAGES/kfile_ics.mo -share/locale/el/LC_MESSAGES/kfile_jpeg.mo -share/locale/el/LC_MESSAGES/kfile_kig.mo -share/locale/el/LC_MESSAGES/kfile_lnk.mo -share/locale/el/LC_MESSAGES/kfile_m3u.mo -share/locale/el/LC_MESSAGES/kfile_mhtml.mo -share/locale/el/LC_MESSAGES/kfile_mp3.mo -share/locale/el/LC_MESSAGES/kfile_mpc.mo -share/locale/el/LC_MESSAGES/kfile_ogg.mo -share/locale/el/LC_MESSAGES/kfile_palm.mo -share/locale/el/LC_MESSAGES/kfile_pcx.mo -share/locale/el/LC_MESSAGES/kfile_pdf.mo -share/locale/el/LC_MESSAGES/kfile_png.mo -share/locale/el/LC_MESSAGES/kfile_pnm.mo -share/locale/el/LC_MESSAGES/kfile_po.mo -share/locale/el/LC_MESSAGES/kfile_ps.mo -share/locale/el/LC_MESSAGES/kfile_rfc822.mo -share/locale/el/LC_MESSAGES/kfile_rgb.mo -share/locale/el/LC_MESSAGES/kfile_rpm.mo -share/locale/el/LC_MESSAGES/kfile_sid.mo -share/locale/el/LC_MESSAGES/kfile_tga.mo -share/locale/el/LC_MESSAGES/kfile_theora.mo -share/locale/el/LC_MESSAGES/kfile_tiff.mo -share/locale/el/LC_MESSAGES/kfile_torrent.mo -share/locale/el/LC_MESSAGES/kfile_ts.mo -share/locale/el/LC_MESSAGES/kfile_txt.mo -share/locale/el/LC_MESSAGES/kfile_vcf.mo -share/locale/el/LC_MESSAGES/kfile_wav.mo -share/locale/el/LC_MESSAGES/kfile_xbm.mo -share/locale/el/LC_MESSAGES/kfile_xpm.mo -share/locale/el/LC_MESSAGES/kfileaudiopreview.mo -share/locale/el/LC_MESSAGES/kfilereplace.mo -share/locale/el/LC_MESSAGES/kfileshare.mo -share/locale/el/LC_MESSAGES/kfindpart.mo -share/locale/el/LC_MESSAGES/kfloppy.mo -share/locale/el/LC_MESSAGES/kfmclient.mo -share/locale/el/LC_MESSAGES/kfontinst.mo -share/locale/el/LC_MESSAGES/kfouleggs.mo -share/locale/el/LC_MESSAGES/kgamma.mo -share/locale/el/LC_MESSAGES/kgantt.mo -share/locale/el/LC_MESSAGES/kget.mo -share/locale/el/LC_MESSAGES/kghostview.mo -share/locale/el/LC_MESSAGES/kgoldrunner.mo -share/locale/el/LC_MESSAGES/kgpg.mo -share/locale/el/LC_MESSAGES/kgreet_classic.mo -share/locale/el/LC_MESSAGES/kgreet_winbind.mo -share/locale/el/LC_MESSAGES/khangman.mo -share/locale/el/LC_MESSAGES/khelpcenter.mo -share/locale/el/LC_MESSAGES/khexedit.mo -share/locale/el/LC_MESSAGES/khexedit2part.mo -share/locale/el/LC_MESSAGES/khotkeys.mo -share/locale/el/LC_MESSAGES/khtmlkttsd.mo -share/locale/el/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/el/LC_MESSAGES/kicker.mo -share/locale/el/LC_MESSAGES/kiconedit.mo -share/locale/el/LC_MESSAGES/kig.mo -share/locale/el/LC_MESSAGES/kimagemapeditor.mo -share/locale/el/LC_MESSAGES/kinetd.mo -share/locale/el/LC_MESSAGES/kio.mo -share/locale/el/LC_MESSAGES/kio_audiocd.mo -share/locale/el/LC_MESSAGES/kio_devices.mo -share/locale/el/LC_MESSAGES/kio_finger.mo -share/locale/el/LC_MESSAGES/kio_fish.mo -share/locale/el/LC_MESSAGES/kio_floppy.mo -share/locale/el/LC_MESSAGES/kio_groupwise.mo -share/locale/el/LC_MESSAGES/kio_help.mo -share/locale/el/LC_MESSAGES/kio_imap4.mo -share/locale/el/LC_MESSAGES/kio_lan.mo -share/locale/el/LC_MESSAGES/kio_ldap.mo -share/locale/el/LC_MESSAGES/kio_mac.mo -share/locale/el/LC_MESSAGES/kio_man.mo -share/locale/el/LC_MESSAGES/kio_media.mo -share/locale/el/LC_MESSAGES/kio_mobile.mo -share/locale/el/LC_MESSAGES/kio_newimap4.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_print.mo -share/locale/el/LC_MESSAGES/kio_remote.mo -share/locale/el/LC_MESSAGES/kio_settings.mo -share/locale/el/LC_MESSAGES/kio_sftp.mo -share/locale/el/LC_MESSAGES/kio_sieve.mo -share/locale/el/LC_MESSAGES/kio_smb.mo -share/locale/el/LC_MESSAGES/kio_smtp.mo -share/locale/el/LC_MESSAGES/kio_svn.mo -share/locale/el/LC_MESSAGES/kio_system.mo -share/locale/el/LC_MESSAGES/kio_trash.mo -share/locale/el/LC_MESSAGES/kio_zeroconf.mo -share/locale/el/LC_MESSAGES/kioexec.mo -share/locale/el/LC_MESSAGES/kiten.mo -share/locale/el/LC_MESSAGES/kjobviewer.mo -share/locale/el/LC_MESSAGES/kjots.mo -share/locale/el/LC_MESSAGES/kjumpingcube.mo -share/locale/el/LC_MESSAGES/klaptopdaemon.mo -share/locale/el/LC_MESSAGES/klatin.mo -share/locale/el/LC_MESSAGES/klegacyimport.mo -share/locale/el/LC_MESSAGES/kleopatra.mo -share/locale/el/LC_MESSAGES/klettres.mo -share/locale/el/LC_MESSAGES/klickety.mo -share/locale/el/LC_MESSAGES/klines.mo -share/locale/el/LC_MESSAGES/klinkstatus.mo -share/locale/el/LC_MESSAGES/klipper.mo -share/locale/el/LC_MESSAGES/klock.mo -share/locale/el/LC_MESSAGES/kmag.mo -share/locale/el/LC_MESSAGES/kmahjongg.mo -share/locale/el/LC_MESSAGES/kmail.mo -share/locale/el/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/el/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/el/LC_MESSAGES/kmailcvt.mo -share/locale/el/LC_MESSAGES/kmathapplet.mo -share/locale/el/LC_MESSAGES/kmathtool.mo -share/locale/el/LC_MESSAGES/kmcop.mo -share/locale/el/LC_MESSAGES/kmenuapplet.mo -share/locale/el/LC_MESSAGES/kmenuedit.mo -share/locale/el/LC_MESSAGES/kmessedwords.mo -share/locale/el/LC_MESSAGES/kmid.mo -share/locale/el/LC_MESSAGES/kmilo_delli8k.mo -share/locale/el/LC_MESSAGES/kmilo_generic.mo -share/locale/el/LC_MESSAGES/kmilo_kvaio.mo -share/locale/el/LC_MESSAGES/kmilo_powerbook.mo -share/locale/el/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/el/LC_MESSAGES/kmilod.mo -share/locale/el/LC_MESSAGES/kmines.mo -share/locale/el/LC_MESSAGES/kminipagerapplet.mo -share/locale/el/LC_MESSAGES/kmix.mo -share/locale/el/LC_MESSAGES/kmobile.mo -share/locale/el/LC_MESSAGES/kmoon.mo -share/locale/el/LC_MESSAGES/kmousetool.mo -share/locale/el/LC_MESSAGES/kmouth.mo -share/locale/el/LC_MESSAGES/kmplot.mo -share/locale/el/LC_MESSAGES/kmrml.mo -share/locale/el/LC_MESSAGES/knetattach.mo -share/locale/el/LC_MESSAGES/knewsticker.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/kodo.mo -share/locale/el/LC_MESSAGES/kolf.mo -share/locale/el/LC_MESSAGES/kolourpaint.mo -share/locale/el/LC_MESSAGES/kolourpicker.mo -share/locale/el/LC_MESSAGES/kommander.mo -share/locale/el/LC_MESSAGES/kompare.mo -share/locale/el/LC_MESSAGES/konnector_dummy.mo -share/locale/el/LC_MESSAGES/konnector_kabc.mo -share/locale/el/LC_MESSAGES/konnector_kcal.mo -share/locale/el/LC_MESSAGES/konnector_local.mo -share/locale/el/LC_MESSAGES/konnector_qtopia.mo -share/locale/el/LC_MESSAGES/konnector_remote.mo -share/locale/el/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/el/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/el/LC_MESSAGES/konqsidebar_news.mo -share/locale/el/LC_MESSAGES/konqueror.mo -share/locale/el/LC_MESSAGES/konquest.mo -share/locale/el/LC_MESSAGES/konsole.mo -share/locale/el/LC_MESSAGES/konsolekalendar.mo -share/locale/el/LC_MESSAGES/kontact.mo -share/locale/el/LC_MESSAGES/kooka.mo -share/locale/el/LC_MESSAGES/kopete.mo -share/locale/el/LC_MESSAGES/korganizer.mo -share/locale/el/LC_MESSAGES/korn.mo -share/locale/el/LC_MESSAGES/kpackage.mo -share/locale/el/LC_MESSAGES/kpager.mo -share/locale/el/LC_MESSAGES/kpartapp.mo -share/locale/el/LC_MESSAGES/kpartsaver.mo -share/locale/el/LC_MESSAGES/kpat.mo -share/locale/el/LC_MESSAGES/kpdf.mo -share/locale/el/LC_MESSAGES/kpercentage.mo -share/locale/el/LC_MESSAGES/kpersonalizer.mo -share/locale/el/LC_MESSAGES/kpf.mo -share/locale/el/LC_MESSAGES/kpilot.mo -share/locale/el/LC_MESSAGES/kpoker.mo -share/locale/el/LC_MESSAGES/kpovmodeler.mo -share/locale/el/LC_MESSAGES/kppp.mo -share/locale/el/LC_MESSAGES/kppplogview.mo -share/locale/el/LC_MESSAGES/kprinter.mo -share/locale/el/LC_MESSAGES/krandr.mo -share/locale/el/LC_MESSAGES/krdb.mo -share/locale/el/LC_MESSAGES/krdc.mo -share/locale/el/LC_MESSAGES/kreadconfig.mo -share/locale/el/LC_MESSAGES/krec.mo -share/locale/el/LC_MESSAGES/kregexpeditor.mo -share/locale/el/LC_MESSAGES/kres_blogging.mo -share/locale/el/LC_MESSAGES/kres_bugzilla.mo -share/locale/el/LC_MESSAGES/kres_exchange.mo -share/locale/el/LC_MESSAGES/kres_featureplan.mo -share/locale/el/LC_MESSAGES/kres_groupwise.mo -share/locale/el/LC_MESSAGES/kres_kolab.mo -share/locale/el/LC_MESSAGES/kres_opengroupware.mo -share/locale/el/LC_MESSAGES/kres_remote.mo -share/locale/el/LC_MESSAGES/kres_xmlrpc.mo -share/locale/el/LC_MESSAGES/kreversi.mo -share/locale/el/LC_MESSAGES/krfb.mo -share/locale/el/LC_MESSAGES/kruler.mo -share/locale/el/LC_MESSAGES/krunapplet.mo -share/locale/el/LC_MESSAGES/ksame.mo -share/locale/el/LC_MESSAGES/ksayit.mo -share/locale/el/LC_MESSAGES/kscd.mo -share/locale/el/LC_MESSAGES/kscreensaver.mo -share/locale/el/LC_MESSAGES/kshisen.mo -share/locale/el/LC_MESSAGES/ksig.mo -share/locale/el/LC_MESSAGES/ksim.mo -share/locale/el/LC_MESSAGES/ksirc.mo -share/locale/el/LC_MESSAGES/ksirtet.mo -share/locale/el/LC_MESSAGES/ksmiletris.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/ksokoban.mo -share/locale/el/LC_MESSAGES/kspaceduel.mo -share/locale/el/LC_MESSAGES/ksplash.mo -share/locale/el/LC_MESSAGES/ksplashthemes.mo -share/locale/el/LC_MESSAGES/kstars.mo -share/locale/el/LC_MESSAGES/kstart.mo -share/locale/el/LC_MESSAGES/kstartperf.mo -share/locale/el/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/el/LC_MESSAGES/kstyle_phase_config.mo -share/locale/el/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/el/LC_MESSAGES/ksvgplugin.mo -share/locale/el/LC_MESSAGES/ksync.mo -share/locale/el/LC_MESSAGES/ksysguard.mo -share/locale/el/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/el/LC_MESSAGES/ksystraycmd.mo -share/locale/el/LC_MESSAGES/ksysv.mo -share/locale/el/LC_MESSAGES/ktalkd.mo -share/locale/el/LC_MESSAGES/ktaskbarapplet.mo -share/locale/el/LC_MESSAGES/kteatime.mo -share/locale/el/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/el/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/el/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/el/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/el/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/el/LC_MESSAGES/ktexteditor_kttsd.mo -share/locale/el/LC_MESSAGES/kthememanager.mo -share/locale/el/LC_MESSAGES/ktimemon.mo -share/locale/el/LC_MESSAGES/ktimer.mo -share/locale/el/LC_MESSAGES/ktip.mo -share/locale/el/LC_MESSAGES/ktnef.mo -share/locale/el/LC_MESSAGES/ktouch.mo -share/locale/el/LC_MESSAGES/ktron.mo -share/locale/el/LC_MESSAGES/kttsd.mo -share/locale/el/LC_MESSAGES/kttsd_commandplugin.mo -share/locale/el/LC_MESSAGES/kttsd_eposplugin.mo -share/locale/el/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/el/LC_MESSAGES/kttsd_fliteplugin.mo -share/locale/el/LC_MESSAGES/kttsd_freettsplugin.mo -share/locale/el/LC_MESSAGES/kttsd_hadifixplugin.mo -share/locale/el/LC_MESSAGES/kttsd_sbdplugin.mo -share/locale/el/LC_MESSAGES/kttsd_stringreplacerplugin.mo -share/locale/el/LC_MESSAGES/kttsd_talkerchooserplugin.mo -share/locale/el/LC_MESSAGES/kttsd_xmltransformerplugin.mo -share/locale/el/LC_MESSAGES/kttsjobmgr.mo -share/locale/el/LC_MESSAGES/kttsmgr.mo -share/locale/el/LC_MESSAGES/ktuberling.mo -share/locale/el/LC_MESSAGES/kturtle.mo -share/locale/el/LC_MESSAGES/ktux.mo -share/locale/el/LC_MESSAGES/kuick_plugin.mo -share/locale/el/LC_MESSAGES/kuickshow.mo -share/locale/el/LC_MESSAGES/kuiviewer.mo -share/locale/el/LC_MESSAGES/kuser.mo -share/locale/el/LC_MESSAGES/kverbos.mo -share/locale/el/LC_MESSAGES/kview.mo -share/locale/el/LC_MESSAGES/kview_scale.mo -share/locale/el/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/el/LC_MESSAGES/kviewcanvas.mo -share/locale/el/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/el/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/el/LC_MESSAGES/kviewscannerplugin.mo -share/locale/el/LC_MESSAGES/kviewshell.mo -share/locale/el/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/el/LC_MESSAGES/kviewviewer.mo -share/locale/el/LC_MESSAGES/kvoctrain.mo -share/locale/el/LC_MESSAGES/kwalletmanager.mo -share/locale/el/LC_MESSAGES/kwatchgnupg.mo -share/locale/el/LC_MESSAGES/kweather.mo -share/locale/el/LC_MESSAGES/kwifimanager.mo -share/locale/el/LC_MESSAGES/kwin.mo -share/locale/el/LC_MESSAGES/kwin4.mo -share/locale/el/LC_MESSAGES/kwin_art_clients.mo -share/locale/el/LC_MESSAGES/kwin_clients.mo -share/locale/el/LC_MESSAGES/kwireless.mo -share/locale/el/LC_MESSAGES/kwordquiz.mo -share/locale/el/LC_MESSAGES/kworldclock.mo -share/locale/el/LC_MESSAGES/kwriteconfig.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/kxsldbg.mo -share/locale/el/LC_MESSAGES/libKTTSD.mo -share/locale/el/LC_MESSAGES/libcalendarresources.mo -share/locale/el/LC_MESSAGES/libdmctl.mo -share/locale/el/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/el/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/el/LC_MESSAGES/libkcal.mo -share/locale/el/LC_MESSAGES/libkcalsystem.mo -share/locale/el/LC_MESSAGES/libkcddb.mo -share/locale/el/LC_MESSAGES/libkdegames.mo -share/locale/el/LC_MESSAGES/libkdehighscores.mo -share/locale/el/LC_MESSAGES/libkdenetwork.mo -share/locale/el/LC_MESSAGES/libkdepim.mo -share/locale/el/LC_MESSAGES/libkholidays.mo -share/locale/el/LC_MESSAGES/libkicker.mo -share/locale/el/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/el/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/el/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/el/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/el/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/el/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/el/LC_MESSAGES/libkickermenu_tom.mo -share/locale/el/LC_MESSAGES/libkleopatra.mo -share/locale/el/LC_MESSAGES/libkmime.mo -share/locale/el/LC_MESSAGES/libkonq.mo -share/locale/el/LC_MESSAGES/libkpgp.mo -share/locale/el/LC_MESSAGES/libkpimexchange.mo -share/locale/el/LC_MESSAGES/libkscan.mo -share/locale/el/LC_MESSAGES/libkscreensaver.mo -share/locale/el/LC_MESSAGES/libksieve.mo -share/locale/el/LC_MESSAGES/libksirtet.mo -share/locale/el/LC_MESSAGES/libksync.mo -share/locale/el/LC_MESSAGES/libtaskbar.mo -share/locale/el/LC_MESSAGES/libtaskmanager.mo -share/locale/el/LC_MESSAGES/lockout.mo -share/locale/el/LC_MESSAGES/lskat.mo -share/locale/el/LC_MESSAGES/lyrics.mo -share/locale/el/LC_MESSAGES/mediaapplet.mo -share/locale/el/LC_MESSAGES/mediacontrol.mo -share/locale/el/LC_MESSAGES/minitoolsplugin.mo -share/locale/el/LC_MESSAGES/multisynk.mo -share/locale/el/LC_MESSAGES/naughtyapplet.mo -share/locale/el/LC_MESSAGES/nexscope.mo -share/locale/el/LC_MESSAGES/noatun.mo -share/locale/el/LC_MESSAGES/nsplugin.mo -share/locale/el/LC_MESSAGES/passwords.mo -share/locale/el/LC_MESSAGES/pitchablespeed.mo -share/locale/el/LC_MESSAGES/ppdtranslations.mo -share/locale/el/LC_MESSAGES/privacy.mo -share/locale/el/LC_MESSAGES/qeditor.mo -share/locale/el/LC_MESSAGES/quanta.mo -share/locale/el/LC_MESSAGES/quicklauncher.mo -share/locale/el/LC_MESSAGES/rellinks.mo -share/locale/el/LC_MESSAGES/searchbarplugin.mo -share/locale/el/LC_MESSAGES/secpolicy.mo -share/locale/el/LC_MESSAGES/spy.mo -share/locale/el/LC_MESSAGES/synaescope.mo -share/locale/el/LC_MESSAGES/taskbarextension.mo -share/locale/el/LC_MESSAGES/timezones.mo -share/locale/el/LC_MESSAGES/tippecanoe.mo -share/locale/el/LC_MESSAGES/trashapplet.mo -share/locale/el/LC_MESSAGES/tyler.mo -share/locale/el/LC_MESSAGES/uachangerplugin.mo -share/locale/el/LC_MESSAGES/umbrello.mo -share/locale/el/LC_MESSAGES/useraccount.mo -share/locale/el/LC_MESSAGES/validatorsplugin.mo -share/locale/el/LC_MESSAGES/vimpart.mo -share/locale/el/LC_MESSAGES/wakeup.mo -share/locale/el/LC_MESSAGES/wavecapture.mo -share/locale/el/LC_MESSAGES/webarchiver.mo -share/locale/el/charset -share/locale/el/entry.desktop -share/locale/el/flag.png diff --git a/misc/kde4-l10n-en_GB/Makefile b/misc/kde4-l10n-en_GB/Makefile deleted file mode 100644 index cf4a2a238097..000000000000 --- a/misc/kde4-l10n-en_GB/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-en_GB -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= en_GB- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= British messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-en_GB/distinfo b/misc/kde4-l10n-en_GB/distinfo deleted file mode 100644 index 0b060403779c..000000000000 --- a/misc/kde4-l10n-en_GB/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-en_GB-3.4.2.tar.bz2) = e3c2226ad67ad1ce73d48f3a57cbb00c -SIZE (KDE/kde-i18n/kde-i18n-en_GB-3.4.2.tar.bz2) = 3538287 diff --git a/misc/kde4-l10n-en_GB/pkg-descr b/misc/kde4-l10n-en_GB/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-en_GB/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-en_GB/pkg-plist b/misc/kde4-l10n-en_GB/pkg-plist deleted file mode 100644 index 5ba20bf38639..000000000000 --- a/misc/kde4-l10n-en_GB/pkg-plist +++ /dev/null @@ -1,1338 +0,0 @@ -share/apps/katepart/syntax/logohighlightstyle.en_GB.xml -share/apps/kturtle/data/logokeywords.en_GB.xml -share/apps/kturtle/examples/en_GB/curly.logo -share/apps/kturtle/examples/en_GB/example1.logo -share/apps/kturtle/examples/en_GB/square.logo -share/apps/kturtle/examples/en_GB/triangle.logo -share/doc/HTML/en_GB/cervisia/common -share/doc/HTML/en_GB/cervisia/index.cache.bz2 -share/doc/HTML/en_GB/cervisia/index.docbook -share/doc/HTML/en_GB/common/1.png -share/doc/HTML/en_GB/common/10.png -share/doc/HTML/en_GB/common/2.png -share/doc/HTML/en_GB/common/3.png -share/doc/HTML/en_GB/common/4.png -share/doc/HTML/en_GB/common/5.png -share/doc/HTML/en_GB/common/6.png -share/doc/HTML/en_GB/common/7.png -share/doc/HTML/en_GB/common/8.png -share/doc/HTML/en_GB/common/9.png -share/doc/HTML/en_GB/common/appheader.html -share/doc/HTML/en_GB/common/artistic-license.html -share/doc/HTML/en_GB/common/bottom-left.png -share/doc/HTML/en_GB/common/bottom-middle.png -share/doc/HTML/en_GB/common/bottom-right.png -share/doc/HTML/en_GB/common/bottom1.png -share/doc/HTML/en_GB/common/bottom2.png -share/doc/HTML/en_GB/common/bsd-license.html -share/doc/HTML/en_GB/common/docheadergears.png -share/doc/HTML/en_GB/common/doctop1.png -share/doc/HTML/en_GB/common/doctop1a.png -share/doc/HTML/en_GB/common/doctop1b.png -share/doc/HTML/en_GB/common/doctop2.png -share/doc/HTML/en_GB/common/doxygen.css -share/doc/HTML/en_GB/common/fdl-license -share/doc/HTML/en_GB/common/fdl-license.html -share/doc/HTML/en_GB/common/fdl-translated.html -share/doc/HTML/en_GB/common/footer.html -share/doc/HTML/en_GB/common/gpl-license -share/doc/HTML/en_GB/common/gpl-license.html -share/doc/HTML/en_GB/common/gpl-translated.html -share/doc/HTML/en_GB/common/grad.png -share/doc/HTML/en_GB/common/header.html -share/doc/HTML/en_GB/common/headerbg.png -share/doc/HTML/en_GB/common/kde-common.css -share/doc/HTML/en_GB/common/kde-default.css -share/doc/HTML/en_GB/common/kde-localised.css -share/doc/HTML/en_GB/common/kde-localised.css.template -share/doc/HTML/en_GB/common/kde-web.css -share/doc/HTML/en_GB/common/kde_logo.png -share/doc/HTML/en_GB/common/kde_logo_bg.png -share/doc/HTML/en_GB/common/kmenu.png -share/doc/HTML/en_GB/common/lgpl-license -share/doc/HTML/en_GB/common/lgpl-license.html -share/doc/HTML/en_GB/common/lgpl-translated.html -share/doc/HTML/en_GB/common/logotp3.png -share/doc/HTML/en_GB/common/mainfooter.html -share/doc/HTML/en_GB/common/mainheader.html -share/doc/HTML/en_GB/common/qpl-license.html -share/doc/HTML/en_GB/common/shadow.png -share/doc/HTML/en_GB/common/top-left.png -share/doc/HTML/en_GB/common/top-middle.png -share/doc/HTML/en_GB/common/top-right-konqueror.png -share/doc/HTML/en_GB/common/web-docbottom.png -share/doc/HTML/en_GB/common/web-doctop.png -share/doc/HTML/en_GB/common/x11-license.html -share/doc/HTML/en_GB/common/xml.dcl -share/doc/HTML/en_GB/kaddressbook/common -share/doc/HTML/en_GB/kaddressbook/index.cache.bz2 -share/doc/HTML/en_GB/kaddressbook/index.docbook -share/doc/HTML/en_GB/kalarm/common -share/doc/HTML/en_GB/kalarm/editwindow.png -share/doc/HTML/en_GB/kalarm/index.cache.bz2 -share/doc/HTML/en_GB/kalarm/index.docbook -share/doc/HTML/en_GB/kalarm/mainwindow.png -share/doc/HTML/en_GB/kate/advanced.docbook -share/doc/HTML/en_GB/kate/common -share/doc/HTML/en_GB/kate/configuring.docbook -share/doc/HTML/en_GB/kate/fundamentals.docbook -share/doc/HTML/en_GB/kate/highlighting.docbook -share/doc/HTML/en_GB/kate/index.cache.bz2 -share/doc/HTML/en_GB/kate/index.docbook -share/doc/HTML/en_GB/kate/mdi.docbook -share/doc/HTML/en_GB/kate/menus.docbook -share/doc/HTML/en_GB/kate/part.docbook -share/doc/HTML/en_GB/kate/plugins.docbook -share/doc/HTML/en_GB/kate/regular-expressions.docbook -share/doc/HTML/en_GB/kbabel/catman.docbook -share/doc/HTML/en_GB/kbabel/common -share/doc/HTML/en_GB/kbabel/dictionaries.docbook -share/doc/HTML/en_GB/kbabel/faq.docbook -share/doc/HTML/en_GB/kbabel/glossary.docbook -share/doc/HTML/en_GB/kbabel/index.cache.bz2 -share/doc/HTML/en_GB/kbabel/index.docbook -share/doc/HTML/en_GB/kbabel/kbabeldict.docbook -share/doc/HTML/en_GB/kbabel/menu.docbook -share/doc/HTML/en_GB/kbabel/preferences.docbook -share/doc/HTML/en_GB/kbabel/using.docbook -share/doc/HTML/en_GB/kbugbuster/common -share/doc/HTML/en_GB/kbugbuster/index.cache.bz2 -share/doc/HTML/en_GB/kbugbuster/index.docbook -share/doc/HTML/en_GB/kcachegrind/common -share/doc/HTML/en_GB/kcachegrind/index.cache.bz2 -share/doc/HTML/en_GB/kcachegrind/index.docbook -share/doc/HTML/en_GB/kcontrol/arts/common -share/doc/HTML/en_GB/kcontrol/arts/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/arts/index.docbook -share/doc/HTML/en_GB/kcontrol/arts/midi.docbook -share/doc/HTML/en_GB/kcontrol/background/common -share/doc/HTML/en_GB/kcontrol/background/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/background/index.docbook -share/doc/HTML/en_GB/kcontrol/bell/common -share/doc/HTML/en_GB/kcontrol/bell/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/bell/index.docbook -share/doc/HTML/en_GB/kcontrol/cache/common -share/doc/HTML/en_GB/kcontrol/cache/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/cache/index.docbook -share/doc/HTML/en_GB/kcontrol/clock/common -share/doc/HTML/en_GB/kcontrol/clock/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/clock/index.docbook -share/doc/HTML/en_GB/kcontrol/colors/common -share/doc/HTML/en_GB/kcontrol/colors/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/colors/index.docbook -share/doc/HTML/en_GB/kcontrol/common -share/doc/HTML/en_GB/kcontrol/cookies/common -share/doc/HTML/en_GB/kcontrol/cookies/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/cookies/index.docbook -share/doc/HTML/en_GB/kcontrol/crypto/common -share/doc/HTML/en_GB/kcontrol/crypto/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/crypto/index.docbook -share/doc/HTML/en_GB/kcontrol/desktop/common -share/doc/HTML/en_GB/kcontrol/desktop/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/desktop/index.docbook -share/doc/HTML/en_GB/kcontrol/desktopbehavior/common -share/doc/HTML/en_GB/kcontrol/desktopbehavior/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/desktopbehavior/index.docbook -share/doc/HTML/en_GB/kcontrol/ebrowsing/common -share/doc/HTML/en_GB/kcontrol/ebrowsing/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/ebrowsing/index.docbook -share/doc/HTML/en_GB/kcontrol/email/common -share/doc/HTML/en_GB/kcontrol/email/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/email/index.docbook -share/doc/HTML/en_GB/kcontrol/energy/common -share/doc/HTML/en_GB/kcontrol/energy/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/energy/index.docbook -share/doc/HTML/en_GB/kcontrol/filemanager/common -share/doc/HTML/en_GB/kcontrol/filemanager/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/filemanager/index.docbook -share/doc/HTML/en_GB/kcontrol/filetypes/common -share/doc/HTML/en_GB/kcontrol/filetypes/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/filetypes/index.docbook -share/doc/HTML/en_GB/kcontrol/fonts/common -share/doc/HTML/en_GB/kcontrol/fonts/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/fonts/index.docbook -share/doc/HTML/en_GB/kcontrol/helpindex/common -share/doc/HTML/en_GB/kcontrol/helpindex/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/helpindex/index.docbook -share/doc/HTML/en_GB/kcontrol/icons/common -share/doc/HTML/en_GB/kcontrol/icons/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/icons/index.docbook -share/doc/HTML/en_GB/kcontrol/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/index.docbook -share/doc/HTML/en_GB/kcontrol/kalarmd/common -share/doc/HTML/en_GB/kcontrol/kalarmd/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/kalarmd/index.docbook -share/doc/HTML/en_GB/kcontrol/kcmaccess/common -share/doc/HTML/en_GB/kcontrol/kcmaccess/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/kcmaccess/index.docbook -share/doc/HTML/en_GB/kcontrol/kcmcss/common -share/doc/HTML/en_GB/kcontrol/kcmcss/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/kcmcss/index.docbook -share/doc/HTML/en_GB/kcontrol/kcmfontinst/common -share/doc/HTML/en_GB/kcontrol/kcmfontinst/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/kcmfontinst/index.docbook -share/doc/HTML/en_GB/kcontrol/kcmkonsole/common -share/doc/HTML/en_GB/kcontrol/kcmkonsole/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/kcmkonsole/index.docbook -share/doc/HTML/en_GB/kcontrol/kcmktalkd/common -share/doc/HTML/en_GB/kcontrol/kcmktalkd/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/kcmktalkd/index.docbook -share/doc/HTML/en_GB/kcontrol/kcmlaunch/common -share/doc/HTML/en_GB/kcontrol/kcmlaunch/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/kcmlaunch/index.docbook -share/doc/HTML/en_GB/kcontrol/kcmlowbatcrit/common -share/doc/HTML/en_GB/kcontrol/kcmlowbatcrit/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/kcmlowbatcrit/index.docbook -share/doc/HTML/en_GB/kcontrol/kcmnotify/common -share/doc/HTML/en_GB/kcontrol/kcmnotify/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/kcmnotify/index.docbook -share/doc/HTML/en_GB/kcontrol/kcmsmserver/common -share/doc/HTML/en_GB/kcontrol/kcmsmserver/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/kcmsmserver/index.docbook -share/doc/HTML/en_GB/kcontrol/kcmstyle/common -share/doc/HTML/en_GB/kcontrol/kcmstyle/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/kcmstyle/index.docbook -share/doc/HTML/en_GB/kcontrol/kcmtaskbar/common -share/doc/HTML/en_GB/kcontrol/kcmtaskbar/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/kcmtaskbar/index.docbook -share/doc/HTML/en_GB/kcontrol/kdm/common -share/doc/HTML/en_GB/kcontrol/kdm/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/kdm/index.docbook -share/doc/HTML/en_GB/kcontrol/keyboard/common -share/doc/HTML/en_GB/kcontrol/keyboard/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/keyboard/index.docbook -share/doc/HTML/en_GB/kcontrol/keys/common -share/doc/HTML/en_GB/kcontrol/keys/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/keys/index.docbook -share/doc/HTML/en_GB/kcontrol/khtml/common -share/doc/HTML/en_GB/kcontrol/khtml/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/khtml/index.docbook -share/doc/HTML/en_GB/kcontrol/khtml/nsplugin.docbook -share/doc/HTML/en_GB/kcontrol/kmixcfg/common -share/doc/HTML/en_GB/kcontrol/kmixcfg/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/kmixcfg/index.docbook -share/doc/HTML/en_GB/kcontrol/kthememgr/common -share/doc/HTML/en_GB/kcontrol/kthememgr/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/kthememgr/index.docbook -share/doc/HTML/en_GB/kcontrol/kwindecoration/common -share/doc/HTML/en_GB/kcontrol/kwindecoration/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/kwindecoration/index.docbook -share/doc/HTML/en_GB/kcontrol/language/common -share/doc/HTML/en_GB/kcontrol/language/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/language/index.docbook -share/doc/HTML/en_GB/kcontrol/mouse/common -share/doc/HTML/en_GB/kcontrol/mouse/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/mouse/index.docbook -share/doc/HTML/en_GB/kcontrol/netpref/common -share/doc/HTML/en_GB/kcontrol/netpref/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/netpref/index.docbook -share/doc/HTML/en_GB/kcontrol/panel/common -share/doc/HTML/en_GB/kcontrol/panel/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/panel/index.docbook -share/doc/HTML/en_GB/kcontrol/panelappearance/common -share/doc/HTML/en_GB/kcontrol/panelappearance/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/panelappearance/index.docbook -share/doc/HTML/en_GB/kcontrol/passwords/common -share/doc/HTML/en_GB/kcontrol/passwords/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/passwords/index.docbook -share/doc/HTML/en_GB/kcontrol/proxy/common -share/doc/HTML/en_GB/kcontrol/proxy/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/proxy/index.docbook -share/doc/HTML/en_GB/kcontrol/proxy/socks.docbook -share/doc/HTML/en_GB/kcontrol/screensaver/common -share/doc/HTML/en_GB/kcontrol/screensaver/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/screensaver/index.docbook -share/doc/HTML/en_GB/kcontrol/smb/common -share/doc/HTML/en_GB/kcontrol/smb/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/smb/index.docbook -share/doc/HTML/en_GB/kcontrol/spellchecking/common -share/doc/HTML/en_GB/kcontrol/spellchecking/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/spellchecking/index.docbook -share/doc/HTML/en_GB/kcontrol/useragent/common -share/doc/HTML/en_GB/kcontrol/useragent/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/useragent/index.docbook -share/doc/HTML/en_GB/kcontrol/windowmanagement/common -share/doc/HTML/en_GB/kcontrol/windowmanagement/index.cache.bz2 -share/doc/HTML/en_GB/kcontrol/windowmanagement/index.docbook -share/doc/HTML/en_GB/kdebugdialog/common -share/doc/HTML/en_GB/kdebugdialog/index.cache.bz2 -share/doc/HTML/en_GB/kdebugdialog/index.docbook -share/doc/HTML/en_GB/kdeprint/add-printer-wiz.docbook -share/doc/HTML/en_GB/kdeprint/common -share/doc/HTML/en_GB/kdeprint/cups-config.docbook -share/doc/HTML/en_GB/kdeprint/cupsoptions.docbook -share/doc/HTML/en_GB/kdeprint/extensions.docbook -share/doc/HTML/en_GB/kdeprint/external-command.docbook -share/doc/HTML/en_GB/kdeprint/final-word.docbook -share/doc/HTML/en_GB/kdeprint/getting-started.docbook -share/doc/HTML/en_GB/kdeprint/highlights.docbook -share/doc/HTML/en_GB/kdeprint/index.cache.bz2 -share/doc/HTML/en_GB/kdeprint/index.docbook -share/doc/HTML/en_GB/kdeprint/lpd.docbook -share/doc/HTML/en_GB/kdeprint/lpr-bsd.docbook -share/doc/HTML/en_GB/kdeprint/lprng.docbook -share/doc/HTML/en_GB/kdeprint/rlpr.docbook -share/doc/HTML/en_GB/kdeprint/tech-overview.docbook -share/doc/HTML/en_GB/kdeprint/theory.docbook -share/doc/HTML/en_GB/kdesu/common -share/doc/HTML/en_GB/kdesu/index.cache.bz2 -share/doc/HTML/en_GB/kdesu/index.docbook -share/doc/HTML/en_GB/kdm/common -share/doc/HTML/en_GB/kdm/index.cache.bz2 -share/doc/HTML/en_GB/kdm/index.docbook -share/doc/HTML/en_GB/kdm/kdmrc-ref.docbook -share/doc/HTML/en_GB/kfind/common -share/doc/HTML/en_GB/kfind/index.cache.bz2 -share/doc/HTML/en_GB/kfind/index.docbook -share/doc/HTML/en_GB/khelpcenter/common -share/doc/HTML/en_GB/khelpcenter/contact.docbook -share/doc/HTML/en_GB/khelpcenter/faq/about.docbook -share/doc/HTML/en_GB/khelpcenter/faq/common -share/doc/HTML/en_GB/khelpcenter/faq/configkde.docbook -share/doc/HTML/en_GB/khelpcenter/faq/contrib.docbook -share/doc/HTML/en_GB/khelpcenter/faq/desktop.docbook -share/doc/HTML/en_GB/khelpcenter/faq/filemng.docbook -share/doc/HTML/en_GB/khelpcenter/faq/getkde.docbook -share/doc/HTML/en_GB/khelpcenter/faq/index.cache.bz2 -share/doc/HTML/en_GB/khelpcenter/faq/index.docbook -share/doc/HTML/en_GB/khelpcenter/faq/install.docbook -share/doc/HTML/en_GB/khelpcenter/faq/intro.docbook -share/doc/HTML/en_GB/khelpcenter/faq/kdeapps.docbook -share/doc/HTML/en_GB/khelpcenter/faq/misc.docbook -share/doc/HTML/en_GB/khelpcenter/faq/moreinfo.docbook -share/doc/HTML/en_GB/khelpcenter/faq/nonkdeapps.docbook -share/doc/HTML/en_GB/khelpcenter/faq/notrelated.docbook -share/doc/HTML/en_GB/khelpcenter/faq/panel.docbook -share/doc/HTML/en_GB/khelpcenter/faq/tips.docbook -share/doc/HTML/en_GB/khelpcenter/faq/winmng.docbook -share/doc/HTML/en_GB/khelpcenter/glossary/common -share/doc/HTML/en_GB/khelpcenter/glossary/index.cache.bz2 -share/doc/HTML/en_GB/khelpcenter/glossary/index.docbook -share/doc/HTML/en_GB/khelpcenter/glossary/kdeprintingglossary.docbook -share/doc/HTML/en_GB/khelpcenter/help.docbook -share/doc/HTML/en_GB/khelpcenter/index.cache.bz2 -share/doc/HTML/en_GB/khelpcenter/index.docbook -share/doc/HTML/en_GB/khelpcenter/links.docbook -share/doc/HTML/en_GB/khelpcenter/quickstart/common -share/doc/HTML/en_GB/khelpcenter/quickstart/index.cache.bz2 -share/doc/HTML/en_GB/khelpcenter/quickstart/index.docbook -share/doc/HTML/en_GB/khelpcenter/support.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/about-desktop.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/common -share/doc/HTML/en_GB/khelpcenter/userguide/first-impressions.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/getting-started.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/history.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/index.cache.bz2 -share/doc/HTML/en_GB/khelpcenter/userguide/index.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/installation.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/intro.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/kdeadmin-apps.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/kdebase-apps.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/kdeedu-apps.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/kdegames-apps.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/kdegraphics-apps.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/kdemultimedia-apps.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/kdenetwork-apps.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/kdepim-apps.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/kdetoys-apps.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/kdeutils-apps.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/koffice-apps.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/more-help.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/notices-trademarks.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/shortcuts.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/staff.docbook -share/doc/HTML/en_GB/khelpcenter/userguide/ug-faq.docbook -share/doc/HTML/en_GB/khelpcenter/visualdict/common -share/doc/HTML/en_GB/khelpcenter/visualdict/index.cache.bz2 -share/doc/HTML/en_GB/khelpcenter/visualdict/index.docbook -share/doc/HTML/en_GB/khelpcenter/welcome.docbook -share/doc/HTML/en_GB/khelpcenter/whatiskde.docbook -share/doc/HTML/en_GB/kicker/common -share/doc/HTML/en_GB/kicker/index.cache.bz2 -share/doc/HTML/en_GB/kicker/index.docbook -share/doc/HTML/en_GB/kinfocenter/blockdevices/common -share/doc/HTML/en_GB/kinfocenter/blockdevices/index.cache.bz2 -share/doc/HTML/en_GB/kinfocenter/blockdevices/index.docbook -share/doc/HTML/en_GB/kinfocenter/common -share/doc/HTML/en_GB/kinfocenter/devices/common -share/doc/HTML/en_GB/kinfocenter/devices/index.cache.bz2 -share/doc/HTML/en_GB/kinfocenter/devices/index.docbook -share/doc/HTML/en_GB/kinfocenter/dma/common -share/doc/HTML/en_GB/kinfocenter/dma/index.cache.bz2 -share/doc/HTML/en_GB/kinfocenter/dma/index.docbook -share/doc/HTML/en_GB/kinfocenter/index.cache.bz2 -share/doc/HTML/en_GB/kinfocenter/index.docbook -share/doc/HTML/en_GB/kinfocenter/interrupts/common -share/doc/HTML/en_GB/kinfocenter/interrupts/index.cache.bz2 -share/doc/HTML/en_GB/kinfocenter/interrupts/index.docbook -share/doc/HTML/en_GB/kinfocenter/ioports/common -share/doc/HTML/en_GB/kinfocenter/ioports/index.cache.bz2 -share/doc/HTML/en_GB/kinfocenter/ioports/index.docbook -share/doc/HTML/en_GB/kinfocenter/memory/common -share/doc/HTML/en_GB/kinfocenter/memory/index.cache.bz2 -share/doc/HTML/en_GB/kinfocenter/memory/index.docbook -share/doc/HTML/en_GB/kinfocenter/nics/common -share/doc/HTML/en_GB/kinfocenter/nics/index.cache.bz2 -share/doc/HTML/en_GB/kinfocenter/nics/index.docbook -share/doc/HTML/en_GB/kinfocenter/opengl/common -share/doc/HTML/en_GB/kinfocenter/opengl/index.cache.bz2 -share/doc/HTML/en_GB/kinfocenter/opengl/index.docbook -share/doc/HTML/en_GB/kinfocenter/partitions/common -share/doc/HTML/en_GB/kinfocenter/partitions/index.cache.bz2 -share/doc/HTML/en_GB/kinfocenter/partitions/index.docbook -share/doc/HTML/en_GB/kinfocenter/pci/common -share/doc/HTML/en_GB/kinfocenter/pci/index.cache.bz2 -share/doc/HTML/en_GB/kinfocenter/pci/index.docbook -share/doc/HTML/en_GB/kinfocenter/pcmcia/common -share/doc/HTML/en_GB/kinfocenter/pcmcia/index.cache.bz2 -share/doc/HTML/en_GB/kinfocenter/pcmcia/index.docbook -share/doc/HTML/en_GB/kinfocenter/processor/common -share/doc/HTML/en_GB/kinfocenter/processor/index.cache.bz2 -share/doc/HTML/en_GB/kinfocenter/processor/index.docbook -share/doc/HTML/en_GB/kinfocenter/protocols/common -share/doc/HTML/en_GB/kinfocenter/protocols/index.cache.bz2 -share/doc/HTML/en_GB/kinfocenter/protocols/index.docbook -share/doc/HTML/en_GB/kinfocenter/samba/common -share/doc/HTML/en_GB/kinfocenter/samba/index.cache.bz2 -share/doc/HTML/en_GB/kinfocenter/samba/index.docbook -share/doc/HTML/en_GB/kinfocenter/scsi/common -share/doc/HTML/en_GB/kinfocenter/scsi/index.cache.bz2 -share/doc/HTML/en_GB/kinfocenter/scsi/index.docbook -share/doc/HTML/en_GB/kinfocenter/sound/common -share/doc/HTML/en_GB/kinfocenter/sound/index.cache.bz2 -share/doc/HTML/en_GB/kinfocenter/sound/index.docbook -share/doc/HTML/en_GB/kinfocenter/usb/common -share/doc/HTML/en_GB/kinfocenter/usb/index.cache.bz2 -share/doc/HTML/en_GB/kinfocenter/usb/index.docbook -share/doc/HTML/en_GB/kinfocenter/xserver/common -share/doc/HTML/en_GB/kinfocenter/xserver/index.cache.bz2 -share/doc/HTML/en_GB/kinfocenter/xserver/index.docbook -share/doc/HTML/en_GB/kioslave/audiocd.docbook -share/doc/HTML/en_GB/kioslave/bzip.docbook -share/doc/HTML/en_GB/kioslave/bzip2.docbook -share/doc/HTML/en_GB/kioslave/cgi.docbook -share/doc/HTML/en_GB/kioslave/common -share/doc/HTML/en_GB/kioslave/data.docbook -share/doc/HTML/en_GB/kioslave/file.docbook -share/doc/HTML/en_GB/kioslave/finger.docbook -share/doc/HTML/en_GB/kioslave/fish.docbook -share/doc/HTML/en_GB/kioslave/floppy.docbook -share/doc/HTML/en_GB/kioslave/ftp.docbook -share/doc/HTML/en_GB/kioslave/gopher.docbook -share/doc/HTML/en_GB/kioslave/gzip.docbook -share/doc/HTML/en_GB/kioslave/help.docbook -share/doc/HTML/en_GB/kioslave/http.docbook -share/doc/HTML/en_GB/kioslave/https.docbook -share/doc/HTML/en_GB/kioslave/imap.docbook -share/doc/HTML/en_GB/kioslave/imaps.docbook -share/doc/HTML/en_GB/kioslave/index.cache.bz2 -share/doc/HTML/en_GB/kioslave/index.docbook -share/doc/HTML/en_GB/kioslave/info.docbook -share/doc/HTML/en_GB/kioslave/lan.docbook -share/doc/HTML/en_GB/kioslave/ldap.docbook -share/doc/HTML/en_GB/kioslave/mac.docbook -share/doc/HTML/en_GB/kioslave/mailto.docbook -share/doc/HTML/en_GB/kioslave/man.docbook -share/doc/HTML/en_GB/kioslave/mrml.docbook -share/doc/HTML/en_GB/kioslave/news.docbook -share/doc/HTML/en_GB/kioslave/nfs.docbook -share/doc/HTML/en_GB/kioslave/nntp.docbook -share/doc/HTML/en_GB/kioslave/pop3.docbook -share/doc/HTML/en_GB/kioslave/pop3s.docbook -share/doc/HTML/en_GB/kioslave/print.docbook -share/doc/HTML/en_GB/kioslave/rlan.docbook -share/doc/HTML/en_GB/kioslave/rlogin.docbook -share/doc/HTML/en_GB/kioslave/sftp.docbook -share/doc/HTML/en_GB/kioslave/smb.docbook -share/doc/HTML/en_GB/kioslave/smtp.docbook -share/doc/HTML/en_GB/kioslave/tar.docbook -share/doc/HTML/en_GB/kioslave/telnet.docbook -share/doc/HTML/en_GB/kioslave/thumbnail.docbook -share/doc/HTML/en_GB/kioslave/webdav.docbook -share/doc/HTML/en_GB/kioslave/webdavs.docbook -share/doc/HTML/en_GB/klatin/adjectives.docbook -share/doc/HTML/en_GB/klatin/common -share/doc/HTML/en_GB/klatin/index.cache.bz2 -share/doc/HTML/en_GB/klatin/index.docbook -share/doc/HTML/en_GB/klatin/nouns.docbook -share/doc/HTML/en_GB/klatin/numbers.docbook -share/doc/HTML/en_GB/klatin/pronouns.docbook -share/doc/HTML/en_GB/klatin/verbs.docbook -share/doc/HTML/en_GB/kleopatra/common -share/doc/HTML/en_GB/kleopatra/index.cache.bz2 -share/doc/HTML/en_GB/kleopatra/index.docbook -share/doc/HTML/en_GB/klipper/common -share/doc/HTML/en_GB/klipper/index.cache.bz2 -share/doc/HTML/en_GB/klipper/index.docbook -share/doc/HTML/en_GB/kmail/common -share/doc/HTML/en_GB/kmail/configure.docbook -share/doc/HTML/en_GB/kmail/credits-and-licenses.docbook -share/doc/HTML/en_GB/kmail/faq.docbook -share/doc/HTML/en_GB/kmail/getting-started.docbook -share/doc/HTML/en_GB/kmail/importing.docbook -share/doc/HTML/en_GB/kmail/index.cache.bz2 -share/doc/HTML/en_GB/kmail/index.docbook -share/doc/HTML/en_GB/kmail/intro.docbook -share/doc/HTML/en_GB/kmail/menus.docbook -share/doc/HTML/en_GB/kmail/using-kmail.docbook -share/doc/HTML/en_GB/kmenuedit/common -share/doc/HTML/en_GB/kmenuedit/index.cache.bz2 -share/doc/HTML/en_GB/kmenuedit/index.docbook -share/doc/HTML/en_GB/kmplot/commands.docbook -share/doc/HTML/en_GB/kmplot/common -share/doc/HTML/en_GB/kmplot/configuration.docbook -share/doc/HTML/en_GB/kmplot/credits.docbook -share/doc/HTML/en_GB/kmplot/developer.docbook -share/doc/HTML/en_GB/kmplot/firststeps.docbook -share/doc/HTML/en_GB/kmplot/index.cache.bz2 -share/doc/HTML/en_GB/kmplot/index.docbook -share/doc/HTML/en_GB/kmplot/install.docbook -share/doc/HTML/en_GB/kmplot/introduction.docbook -share/doc/HTML/en_GB/kmplot/menu.docbook -share/doc/HTML/en_GB/kmplot/reference.docbook -share/doc/HTML/en_GB/kmplot/using.docbook -share/doc/HTML/en_GB/knode/commands.docbook -share/doc/HTML/en_GB/knode/common -share/doc/HTML/en_GB/knode/credits.docbook -share/doc/HTML/en_GB/knode/faq.docbook -share/doc/HTML/en_GB/knode/gloss.docbook -share/doc/HTML/en_GB/knode/index.cache.bz2 -share/doc/HTML/en_GB/knode/index.docbook -share/doc/HTML/en_GB/knode/install.docbook -share/doc/HTML/en_GB/knode/introduction.docbook -share/doc/HTML/en_GB/knode/journey.docbook -share/doc/HTML/en_GB/knode/more.docbook -share/doc/HTML/en_GB/knode/using-firststart.docbook -share/doc/HTML/en_GB/knode/using-morefeatures.docbook -share/doc/HTML/en_GB/knode/using-subscribing.docbook -share/doc/HTML/en_GB/knotes/common -share/doc/HTML/en_GB/knotes/index.cache.bz2 -share/doc/HTML/en_GB/knotes/index.docbook -share/doc/HTML/en_GB/kompare/common -share/doc/HTML/en_GB/kompare/index.cache.bz2 -share/doc/HTML/en_GB/kompare/index.docbook -share/doc/HTML/en_GB/konqueror/basics.docbook -share/doc/HTML/en_GB/konqueror/bookmarks.docbook -share/doc/HTML/en_GB/konqueror/browser.docbook -share/doc/HTML/en_GB/konqueror/commands.docbook -share/doc/HTML/en_GB/konqueror/common -share/doc/HTML/en_GB/konqueror/config.docbook -share/doc/HTML/en_GB/konqueror/credits.docbook -share/doc/HTML/en_GB/konqueror/faq.docbook -share/doc/HTML/en_GB/konqueror/filemanager.docbook -share/doc/HTML/en_GB/konqueror/index.cache.bz2 -share/doc/HTML/en_GB/konqueror/index.docbook -share/doc/HTML/en_GB/konqueror/introduction.docbook -share/doc/HTML/en_GB/konqueror/path-complete.docbook -share/doc/HTML/en_GB/konqueror/plugins.docbook -share/doc/HTML/en_GB/konqueror/save-settings.docbook -share/doc/HTML/en_GB/konqueror/sidebar.docbook -share/doc/HTML/en_GB/konsole/common -share/doc/HTML/en_GB/konsole/index.cache.bz2 -share/doc/HTML/en_GB/konsole/index.docbook -share/doc/HTML/en_GB/kpager/common -share/doc/HTML/en_GB/kpager/index.cache.bz2 -share/doc/HTML/en_GB/kpager/index.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/en_GB/ksplashml/common -share/doc/HTML/en_GB/ksplashml/index.cache.bz2 -share/doc/HTML/en_GB/ksplashml/index.docbook -share/doc/HTML/en_GB/kstars/ai-contents.docbook -share/doc/HTML/en_GB/kstars/altvstime.docbook -share/doc/HTML/en_GB/kstars/astroinfo.docbook -share/doc/HTML/en_GB/kstars/blackbody.docbook -share/doc/HTML/en_GB/kstars/calc-angdist.docbook -share/doc/HTML/en_GB/kstars/calc-apcoords.docbook -share/doc/HTML/en_GB/kstars/calc-dayduration.docbook -share/doc/HTML/en_GB/kstars/calc-ecliptic.docbook -share/doc/HTML/en_GB/kstars/calc-eqgal.docbook -share/doc/HTML/en_GB/kstars/calc-equinox.docbook -share/doc/HTML/en_GB/kstars/calc-geodetic.docbook -share/doc/HTML/en_GB/kstars/calc-horizontal.docbook -share/doc/HTML/en_GB/kstars/calc-julianday.docbook -share/doc/HTML/en_GB/kstars/calc-planetcoords.docbook -share/doc/HTML/en_GB/kstars/calc-precess.docbook -share/doc/HTML/en_GB/kstars/calc-sidereal.docbook -share/doc/HTML/en_GB/kstars/calculator.docbook -share/doc/HTML/en_GB/kstars/cequator.docbook -share/doc/HTML/en_GB/kstars/colorandtemp.docbook -share/doc/HTML/en_GB/kstars/commands.docbook -share/doc/HTML/en_GB/kstars/common -share/doc/HTML/en_GB/kstars/config.docbook -share/doc/HTML/en_GB/kstars/cpoles.docbook -share/doc/HTML/en_GB/kstars/credits.docbook -share/doc/HTML/en_GB/kstars/csphere.docbook -share/doc/HTML/en_GB/kstars/darkmatter.docbook -share/doc/HTML/en_GB/kstars/dcop.docbook -share/doc/HTML/en_GB/kstars/details.docbook -share/doc/HTML/en_GB/kstars/dumpmode.docbook -share/doc/HTML/en_GB/kstars/ecliptic.docbook -share/doc/HTML/en_GB/kstars/ellipticalgalaxies.docbook -share/doc/HTML/en_GB/kstars/equinox.docbook -share/doc/HTML/en_GB/kstars/faq.docbook -share/doc/HTML/en_GB/kstars/flux.docbook -share/doc/HTML/en_GB/kstars/geocoords.docbook -share/doc/HTML/en_GB/kstars/greatcircle.docbook -share/doc/HTML/en_GB/kstars/horizon.docbook -share/doc/HTML/en_GB/kstars/hourangle.docbook -share/doc/HTML/en_GB/kstars/index.cache.bz2 -share/doc/HTML/en_GB/kstars/index.docbook -share/doc/HTML/en_GB/kstars/indi.docbook -share/doc/HTML/en_GB/kstars/install.docbook -share/doc/HTML/en_GB/kstars/jmoons.docbook -share/doc/HTML/en_GB/kstars/julianday.docbook -share/doc/HTML/en_GB/kstars/leapyear.docbook -share/doc/HTML/en_GB/kstars/lightcurves.docbook -share/doc/HTML/en_GB/kstars/luminosity.docbook -share/doc/HTML/en_GB/kstars/magnitude.docbook -share/doc/HTML/en_GB/kstars/meridian.docbook -share/doc/HTML/en_GB/kstars/parallax.docbook -share/doc/HTML/en_GB/kstars/precession.docbook -share/doc/HTML/en_GB/kstars/quicktour.docbook -share/doc/HTML/en_GB/kstars/retrograde.docbook -share/doc/HTML/en_GB/kstars/scriptbuilder.docbook -share/doc/HTML/en_GB/kstars/sidereal.docbook -share/doc/HTML/en_GB/kstars/skycoords.docbook -share/doc/HTML/en_GB/kstars/solarsys.docbook -share/doc/HTML/en_GB/kstars/spiralgalaxies.docbook -share/doc/HTML/en_GB/kstars/stars.docbook -share/doc/HTML/en_GB/kstars/timezones.docbook -share/doc/HTML/en_GB/kstars/tools.docbook -share/doc/HTML/en_GB/kstars/utime.docbook -share/doc/HTML/en_GB/kstars/wut.docbook -share/doc/HTML/en_GB/kstars/zenith.docbook -share/doc/HTML/en_GB/ksysguard/common -share/doc/HTML/en_GB/ksysguard/index.cache.bz2 -share/doc/HTML/en_GB/ksysguard/index.docbook -share/doc/HTML/en_GB/kturtle/common -share/doc/HTML/en_GB/kturtle/getting-started.docbook -share/doc/HTML/en_GB/kturtle/glossary.docbook -share/doc/HTML/en_GB/kturtle/index.cache.bz2 -share/doc/HTML/en_GB/kturtle/index.docbook -share/doc/HTML/en_GB/kturtle/programming-reference.docbook -share/doc/HTML/en_GB/kturtle/translator-guide.docbook -share/doc/HTML/en_GB/kturtle/using-kturtle.docbook -share/doc/HTML/en_GB/kwrite/common -share/doc/HTML/en_GB/kwrite/index.cache.bz2 -share/doc/HTML/en_GB/kwrite/index.docbook -share/doc/HTML/en_GB/kxkb/common -share/doc/HTML/en_GB/kxkb/index.cache.bz2 -share/doc/HTML/en_GB/kxkb/index.docbook -share/doc/HTML/en_GB/umbrello/authors.docbook -share/doc/HTML/en_GB/umbrello/code_import_and_generation.docbook -share/doc/HTML/en_GB/umbrello/common -share/doc/HTML/en_GB/umbrello/credits.docbook -share/doc/HTML/en_GB/umbrello/index.cache.bz2 -share/doc/HTML/en_GB/umbrello/index.docbook -share/doc/HTML/en_GB/umbrello/introduction.docbook -share/doc/HTML/en_GB/umbrello/other_features.docbook -share/doc/HTML/en_GB/umbrello/uml_basics.docbook -share/doc/HTML/en_GB/umbrello/working_with_umbrello.docbook -share/locale/en_GB/LC_MESSAGES/akregator.mo -share/locale/en_GB/LC_MESSAGES/akregator_konqplugin.mo -share/locale/en_GB/LC_MESSAGES/alsaplayerui.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/ark_plugin.mo -share/locale/en_GB/LC_MESSAGES/artsbuilder.mo -share/locale/en_GB/LC_MESSAGES/artscontrol.mo -share/locale/en_GB/LC_MESSAGES/artsmodules.mo -share/locale/en_GB/LC_MESSAGES/atlantik.mo -share/locale/en_GB/LC_MESSAGES/atlantikdesigner.mo -share/locale/en_GB/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/en_GB/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/en_GB/LC_MESSAGES/audiorename_plugin.mo -share/locale/en_GB/LC_MESSAGES/autorefresh.mo -share/locale/en_GB/LC_MESSAGES/babelfish.mo -share/locale/en_GB/LC_MESSAGES/cervisia.mo -share/locale/en_GB/LC_MESSAGES/charlatanui.mo -share/locale/en_GB/LC_MESSAGES/childpanelextension.mo -share/locale/en_GB/LC_MESSAGES/clockapplet.mo -share/locale/en_GB/LC_MESSAGES/crashesplugin.mo -share/locale/en_GB/LC_MESSAGES/cupsdconf.mo -share/locale/en_GB/LC_MESSAGES/cvsservice.mo -share/locale/en_GB/LC_MESSAGES/dcoprss.mo -share/locale/en_GB/LC_MESSAGES/devicesapplet.mo -share/locale/en_GB/LC_MESSAGES/dirfilterplugin.mo -share/locale/en_GB/LC_MESSAGES/display.mo -share/locale/en_GB/LC_MESSAGES/dockbarextension.mo -share/locale/en_GB/LC_MESSAGES/domtreeviewer.mo -share/locale/en_GB/LC_MESSAGES/drkonqi.mo -share/locale/en_GB/LC_MESSAGES/dub.mo -share/locale/en_GB/LC_MESSAGES/extensionproxy.mo -share/locale/en_GB/LC_MESSAGES/ffrs.mo -share/locale/en_GB/LC_MESSAGES/filetypes.mo -share/locale/en_GB/LC_MESSAGES/fontinst.mo -share/locale/en_GB/LC_MESSAGES/fsview.mo -share/locale/en_GB/LC_MESSAGES/htmlsearch.mo -share/locale/en_GB/LC_MESSAGES/imagerename_plugin.mo -share/locale/en_GB/LC_MESSAGES/imgalleryplugin.mo -share/locale/en_GB/LC_MESSAGES/irkick.mo -share/locale/en_GB/LC_MESSAGES/jefferson.mo -share/locale/en_GB/LC_MESSAGES/joystick.mo -share/locale/en_GB/LC_MESSAGES/juk.mo -share/locale/en_GB/LC_MESSAGES/kabc2mutt.mo -share/locale/en_GB/LC_MESSAGES/kabc_dir.mo -share/locale/en_GB/LC_MESSAGES/kabc_file.mo -share/locale/en_GB/LC_MESSAGES/kabc_ldap.mo -share/locale/en_GB/LC_MESSAGES/kabc_ldapkio.mo -share/locale/en_GB/LC_MESSAGES/kabc_net.mo -share/locale/en_GB/LC_MESSAGES/kabc_slox.mo -share/locale/en_GB/LC_MESSAGES/kabc_sql.mo -share/locale/en_GB/LC_MESSAGES/kabcformat_binary.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/kalarm.mo -share/locale/en_GB/LC_MESSAGES/kalzium.mo -share/locale/en_GB/LC_MESSAGES/kandy.mo -share/locale/en_GB/LC_MESSAGES/kappfinder.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/kate.mo -share/locale/en_GB/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/en_GB/LC_MESSAGES/katedefaultproject.mo -share/locale/en_GB/LC_MESSAGES/katefiletemplates.mo -share/locale/en_GB/LC_MESSAGES/katefll_initplugin.mo -share/locale/en_GB/LC_MESSAGES/katefll_plugin.mo -share/locale/en_GB/LC_MESSAGES/katehelloworld.mo -share/locale/en_GB/LC_MESSAGES/katehtmltools.mo -share/locale/en_GB/LC_MESSAGES/kateinsertcommand.mo -share/locale/en_GB/LC_MESSAGES/katekjswrapper.mo -share/locale/en_GB/LC_MESSAGES/katekttsd.mo -share/locale/en_GB/LC_MESSAGES/katemake.mo -share/locale/en_GB/LC_MESSAGES/katemodeline.mo -share/locale/en_GB/LC_MESSAGES/kateopenheader.mo -share/locale/en_GB/LC_MESSAGES/katepart.mo -share/locale/en_GB/LC_MESSAGES/katepartkttsd.mo -share/locale/en_GB/LC_MESSAGES/kateprojectmanager.mo -share/locale/en_GB/LC_MESSAGES/katepybrowse.mo -share/locale/en_GB/LC_MESSAGES/katesnippets.mo -share/locale/en_GB/LC_MESSAGES/katespell.mo -share/locale/en_GB/LC_MESSAGES/katetabbarextension.mo -share/locale/en_GB/LC_MESSAGES/katetextfilter.mo -share/locale/en_GB/LC_MESSAGES/katexmlcheck.mo -share/locale/en_GB/LC_MESSAGES/katexmltools.mo -share/locale/en_GB/LC_MESSAGES/katomic.mo -share/locale/en_GB/LC_MESSAGES/kaudiocreator.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/kbinaryclock.mo -share/locale/en_GB/LC_MESSAGES/kblackbox.mo -share/locale/en_GB/LC_MESSAGES/kbounce.mo -share/locale/en_GB/LC_MESSAGES/kbruch.mo -share/locale/en_GB/LC_MESSAGES/kbstateapplet.mo -share/locale/en_GB/LC_MESSAGES/kbugbuster.mo -share/locale/en_GB/LC_MESSAGES/kcachegrind.mo -share/locale/en_GB/LC_MESSAGES/kcalc.mo -share/locale/en_GB/LC_MESSAGES/kcharselect.mo -share/locale/en_GB/LC_MESSAGES/kcharselectapplet.mo -share/locale/en_GB/LC_MESSAGES/kcm_krfb.mo -share/locale/en_GB/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/en_GB/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/en_GB/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/en_GB/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/en_GB/LC_MESSAGES/kcmaccess.mo -share/locale/en_GB/LC_MESSAGES/kcmaccessibility.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/kcmcddb.mo -share/locale/en_GB/LC_MESSAGES/kcmcgi.mo -share/locale/en_GB/LC_MESSAGES/kcmcolors.mo -share/locale/en_GB/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/en_GB/LC_MESSAGES/kcmcrypto.mo -share/locale/en_GB/LC_MESSAGES/kcmcss.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/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/kcmkabconfig.mo -share/locale/en_GB/LC_MESSAGES/kcmkamera.mo -share/locale/en_GB/LC_MESSAGES/kcmkclock.mo -share/locale/en_GB/LC_MESSAGES/kcmkded.mo -share/locale/en_GB/LC_MESSAGES/kcmkdnssd.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/kcmkontactnt.mo -share/locale/en_GB/LC_MESSAGES/kcmktalkd.mo -share/locale/en_GB/LC_MESSAGES/kcmkttsd.mo -share/locale/en_GB/LC_MESSAGES/kcmkuick.mo -share/locale/en_GB/LC_MESSAGES/kcmkurifilt.mo -share/locale/en_GB/LC_MESSAGES/kcmkvaio.mo -share/locale/en_GB/LC_MESSAGES/kcmkwallet.mo -share/locale/en_GB/LC_MESSAGES/kcmkwindecoration.mo -share/locale/en_GB/LC_MESSAGES/kcmkwinrules.mo -share/locale/en_GB/LC_MESSAGES/kcmkwintheme.mo -share/locale/en_GB/LC_MESSAGES/kcmkwm.mo -share/locale/en_GB/LC_MESSAGES/kcmkxmlrpcd.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/kcmlirc.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/kcmnic.mo -share/locale/en_GB/LC_MESSAGES/kcmnotify.mo -share/locale/en_GB/LC_MESSAGES/kcmperformance.mo -share/locale/en_GB/LC_MESSAGES/kcmprintmgr.mo -share/locale/en_GB/LC_MESSAGES/kcmsamba.mo -share/locale/en_GB/LC_MESSAGES/kcmscreensaver.mo -share/locale/en_GB/LC_MESSAGES/kcmshell.mo -share/locale/en_GB/LC_MESSAGES/kcmsmartcard.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/kcmthinkpad.mo -share/locale/en_GB/LC_MESSAGES/kcmusb.mo -share/locale/en_GB/LC_MESSAGES/kcmview1394.mo -share/locale/en_GB/LC_MESSAGES/kcmvim.mo -share/locale/en_GB/LC_MESSAGES/kcmwifi.mo -share/locale/en_GB/LC_MESSAGES/kcmxinerama.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/kdat.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/kdelibs_colors.mo -share/locale/en_GB/LC_MESSAGES/kdelirc.mo -share/locale/en_GB/LC_MESSAGES/kdepasswd.mo -share/locale/en_GB/LC_MESSAGES/kdepimresources.mo -share/locale/en_GB/LC_MESSAGES/kdepimwizards.mo -share/locale/en_GB/LC_MESSAGES/kdeprint.mo -share/locale/en_GB/LC_MESSAGES/kdeprint_part.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/kdesu.mo -share/locale/en_GB/LC_MESSAGES/kdesud.mo -share/locale/en_GB/LC_MESSAGES/kdevdesigner.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/kdgantt.mo -share/locale/en_GB/LC_MESSAGES/kdialog.mo -share/locale/en_GB/LC_MESSAGES/kdict.mo -share/locale/en_GB/LC_MESSAGES/kdictapplet.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/keduca.mo -share/locale/en_GB/LC_MESSAGES/kenolaba.mo -share/locale/en_GB/LC_MESSAGES/kfax.mo -share/locale/en_GB/LC_MESSAGES/kfifteenapplet.mo -share/locale/en_GB/LC_MESSAGES/kfile_au.mo -share/locale/en_GB/LC_MESSAGES/kfile_avi.mo -share/locale/en_GB/LC_MESSAGES/kfile_bmp.mo -share/locale/en_GB/LC_MESSAGES/kfile_cert.mo -share/locale/en_GB/LC_MESSAGES/kfile_cpp.mo -share/locale/en_GB/LC_MESSAGES/kfile_dds.mo -share/locale/en_GB/LC_MESSAGES/kfile_deb.mo -share/locale/en_GB/LC_MESSAGES/kfile_desktop.mo -share/locale/en_GB/LC_MESSAGES/kfile_diff.mo -share/locale/en_GB/LC_MESSAGES/kfile_drgeo.mo -share/locale/en_GB/LC_MESSAGES/kfile_dvi.mo -share/locale/en_GB/LC_MESSAGES/kfile_exr.mo -share/locale/en_GB/LC_MESSAGES/kfile_flac.mo -share/locale/en_GB/LC_MESSAGES/kfile_folder.mo -share/locale/en_GB/LC_MESSAGES/kfile_font.mo -share/locale/en_GB/LC_MESSAGES/kfile_gif.mo -share/locale/en_GB/LC_MESSAGES/kfile_html.mo -share/locale/en_GB/LC_MESSAGES/kfile_ico.mo -share/locale/en_GB/LC_MESSAGES/kfile_ics.mo -share/locale/en_GB/LC_MESSAGES/kfile_jpeg.mo -share/locale/en_GB/LC_MESSAGES/kfile_kig.mo -share/locale/en_GB/LC_MESSAGES/kfile_lnk.mo -share/locale/en_GB/LC_MESSAGES/kfile_m3u.mo -share/locale/en_GB/LC_MESSAGES/kfile_mhtml.mo -share/locale/en_GB/LC_MESSAGES/kfile_mp3.mo -share/locale/en_GB/LC_MESSAGES/kfile_mpc.mo -share/locale/en_GB/LC_MESSAGES/kfile_ogg.mo -share/locale/en_GB/LC_MESSAGES/kfile_palm.mo -share/locale/en_GB/LC_MESSAGES/kfile_pcx.mo -share/locale/en_GB/LC_MESSAGES/kfile_pdf.mo -share/locale/en_GB/LC_MESSAGES/kfile_png.mo -share/locale/en_GB/LC_MESSAGES/kfile_pnm.mo -share/locale/en_GB/LC_MESSAGES/kfile_po.mo -share/locale/en_GB/LC_MESSAGES/kfile_ps.mo -share/locale/en_GB/LC_MESSAGES/kfile_rfc822.mo -share/locale/en_GB/LC_MESSAGES/kfile_rgb.mo -share/locale/en_GB/LC_MESSAGES/kfile_rpm.mo -share/locale/en_GB/LC_MESSAGES/kfile_sid.mo -share/locale/en_GB/LC_MESSAGES/kfile_tga.mo -share/locale/en_GB/LC_MESSAGES/kfile_theora.mo -share/locale/en_GB/LC_MESSAGES/kfile_tiff.mo -share/locale/en_GB/LC_MESSAGES/kfile_torrent.mo -share/locale/en_GB/LC_MESSAGES/kfile_ts.mo -share/locale/en_GB/LC_MESSAGES/kfile_txt.mo -share/locale/en_GB/LC_MESSAGES/kfile_vcf.mo -share/locale/en_GB/LC_MESSAGES/kfile_wav.mo -share/locale/en_GB/LC_MESSAGES/kfile_xbm.mo -share/locale/en_GB/LC_MESSAGES/kfile_xpm.mo -share/locale/en_GB/LC_MESSAGES/kfileaudiopreview.mo -share/locale/en_GB/LC_MESSAGES/kfilereplace.mo -share/locale/en_GB/LC_MESSAGES/kfileshare.mo -share/locale/en_GB/LC_MESSAGES/kfindpart.mo -share/locale/en_GB/LC_MESSAGES/kfloppy.mo -share/locale/en_GB/LC_MESSAGES/kfmclient.mo -share/locale/en_GB/LC_MESSAGES/kfontinst.mo -share/locale/en_GB/LC_MESSAGES/kfouleggs.mo -share/locale/en_GB/LC_MESSAGES/kgamma.mo -share/locale/en_GB/LC_MESSAGES/kgantt.mo -share/locale/en_GB/LC_MESSAGES/kget.mo -share/locale/en_GB/LC_MESSAGES/kghostview.mo -share/locale/en_GB/LC_MESSAGES/kgoldrunner.mo -share/locale/en_GB/LC_MESSAGES/kgpg.mo -share/locale/en_GB/LC_MESSAGES/kgreet_classic.mo -share/locale/en_GB/LC_MESSAGES/kgreet_winbind.mo -share/locale/en_GB/LC_MESSAGES/khangman.mo -share/locale/en_GB/LC_MESSAGES/khelpcenter.mo -share/locale/en_GB/LC_MESSAGES/khexedit.mo -share/locale/en_GB/LC_MESSAGES/khexedit2part.mo -share/locale/en_GB/LC_MESSAGES/khotkeys.mo -share/locale/en_GB/LC_MESSAGES/khtmlkttsd.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/kig.mo -share/locale/en_GB/LC_MESSAGES/kimagemapeditor.mo -share/locale/en_GB/LC_MESSAGES/kinetd.mo -share/locale/en_GB/LC_MESSAGES/kio.mo -share/locale/en_GB/LC_MESSAGES/kio_audiocd.mo -share/locale/en_GB/LC_MESSAGES/kio_devices.mo -share/locale/en_GB/LC_MESSAGES/kio_finger.mo -share/locale/en_GB/LC_MESSAGES/kio_fish.mo -share/locale/en_GB/LC_MESSAGES/kio_floppy.mo -share/locale/en_GB/LC_MESSAGES/kio_groupwise.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_ldap.mo -share/locale/en_GB/LC_MESSAGES/kio_mac.mo -share/locale/en_GB/LC_MESSAGES/kio_man.mo -share/locale/en_GB/LC_MESSAGES/kio_media.mo -share/locale/en_GB/LC_MESSAGES/kio_mobile.mo -share/locale/en_GB/LC_MESSAGES/kio_newimap4.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_print.mo -share/locale/en_GB/LC_MESSAGES/kio_remote.mo -share/locale/en_GB/LC_MESSAGES/kio_settings.mo -share/locale/en_GB/LC_MESSAGES/kio_sftp.mo -share/locale/en_GB/LC_MESSAGES/kio_sieve.mo -share/locale/en_GB/LC_MESSAGES/kio_smb.mo -share/locale/en_GB/LC_MESSAGES/kio_smtp.mo -share/locale/en_GB/LC_MESSAGES/kio_svn.mo -share/locale/en_GB/LC_MESSAGES/kio_system.mo -share/locale/en_GB/LC_MESSAGES/kio_trash.mo -share/locale/en_GB/LC_MESSAGES/kio_zeroconf.mo -share/locale/en_GB/LC_MESSAGES/kioexec.mo -share/locale/en_GB/LC_MESSAGES/kiten.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/klatin.mo -share/locale/en_GB/LC_MESSAGES/klegacyimport.mo -share/locale/en_GB/LC_MESSAGES/kleopatra.mo -share/locale/en_GB/LC_MESSAGES/klettres.mo -share/locale/en_GB/LC_MESSAGES/klickety.mo -share/locale/en_GB/LC_MESSAGES/klines.mo -share/locale/en_GB/LC_MESSAGES/klinkstatus.mo -share/locale/en_GB/LC_MESSAGES/klipper.mo -share/locale/en_GB/LC_MESSAGES/klock.mo -share/locale/en_GB/LC_MESSAGES/kmag.mo -share/locale/en_GB/LC_MESSAGES/kmahjongg.mo -share/locale/en_GB/LC_MESSAGES/kmail.mo -share/locale/en_GB/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/en_GB/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/en_GB/LC_MESSAGES/kmailcvt.mo -share/locale/en_GB/LC_MESSAGES/kmathapplet.mo -share/locale/en_GB/LC_MESSAGES/kmathtool.mo -share/locale/en_GB/LC_MESSAGES/kmcop.mo -share/locale/en_GB/LC_MESSAGES/kmenuapplet.mo -share/locale/en_GB/LC_MESSAGES/kmenuedit.mo -share/locale/en_GB/LC_MESSAGES/kmessedwords.mo -share/locale/en_GB/LC_MESSAGES/kmid.mo -share/locale/en_GB/LC_MESSAGES/kmilo_delli8k.mo -share/locale/en_GB/LC_MESSAGES/kmilo_generic.mo -share/locale/en_GB/LC_MESSAGES/kmilo_kvaio.mo -share/locale/en_GB/LC_MESSAGES/kmilo_powerbook.mo -share/locale/en_GB/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/en_GB/LC_MESSAGES/kmilod.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/kmobile.mo -share/locale/en_GB/LC_MESSAGES/kmoon.mo -share/locale/en_GB/LC_MESSAGES/kmousetool.mo -share/locale/en_GB/LC_MESSAGES/kmouth.mo -share/locale/en_GB/LC_MESSAGES/kmplot.mo -share/locale/en_GB/LC_MESSAGES/kmrml.mo -share/locale/en_GB/LC_MESSAGES/knetattach.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/kodo.mo -share/locale/en_GB/LC_MESSAGES/kolf.mo -share/locale/en_GB/LC_MESSAGES/kolourpaint.mo -share/locale/en_GB/LC_MESSAGES/kolourpicker.mo -share/locale/en_GB/LC_MESSAGES/kommander.mo -share/locale/en_GB/LC_MESSAGES/kompare.mo -share/locale/en_GB/LC_MESSAGES/konnector_dummy.mo -share/locale/en_GB/LC_MESSAGES/konnector_kabc.mo -share/locale/en_GB/LC_MESSAGES/konnector_kcal.mo -share/locale/en_GB/LC_MESSAGES/konnector_local.mo -share/locale/en_GB/LC_MESSAGES/konnector_qtopia.mo -share/locale/en_GB/LC_MESSAGES/konnector_remote.mo -share/locale/en_GB/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/en_GB/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/en_GB/LC_MESSAGES/konqsidebar_news.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/konsolekalendar.mo -share/locale/en_GB/LC_MESSAGES/kontact.mo -share/locale/en_GB/LC_MESSAGES/kooka.mo -share/locale/en_GB/LC_MESSAGES/kopete.mo -share/locale/en_GB/LC_MESSAGES/korganizer.mo -share/locale/en_GB/LC_MESSAGES/korn.mo -share/locale/en_GB/LC_MESSAGES/kpackage.mo -share/locale/en_GB/LC_MESSAGES/kpager.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/kpdf.mo -share/locale/en_GB/LC_MESSAGES/kpercentage.mo -share/locale/en_GB/LC_MESSAGES/kpersonalizer.mo -share/locale/en_GB/LC_MESSAGES/kpf.mo -share/locale/en_GB/LC_MESSAGES/kpilot.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/krandr.mo -share/locale/en_GB/LC_MESSAGES/krdb.mo -share/locale/en_GB/LC_MESSAGES/krdc.mo -share/locale/en_GB/LC_MESSAGES/kreadconfig.mo -share/locale/en_GB/LC_MESSAGES/krec.mo -share/locale/en_GB/LC_MESSAGES/kregexpeditor.mo -share/locale/en_GB/LC_MESSAGES/kres_blogging.mo -share/locale/en_GB/LC_MESSAGES/kres_bugzilla.mo -share/locale/en_GB/LC_MESSAGES/kres_exchange.mo -share/locale/en_GB/LC_MESSAGES/kres_featureplan.mo -share/locale/en_GB/LC_MESSAGES/kres_groupwise.mo -share/locale/en_GB/LC_MESSAGES/kres_kolab.mo -share/locale/en_GB/LC_MESSAGES/kres_opengroupware.mo -share/locale/en_GB/LC_MESSAGES/kres_remote.mo -share/locale/en_GB/LC_MESSAGES/kres_xmlrpc.mo -share/locale/en_GB/LC_MESSAGES/kreversi.mo -share/locale/en_GB/LC_MESSAGES/krfb.mo -share/locale/en_GB/LC_MESSAGES/kruler.mo -share/locale/en_GB/LC_MESSAGES/krunapplet.mo -share/locale/en_GB/LC_MESSAGES/ksame.mo -share/locale/en_GB/LC_MESSAGES/ksayit.mo -share/locale/en_GB/LC_MESSAGES/kscd.mo -share/locale/en_GB/LC_MESSAGES/kscreensaver.mo -share/locale/en_GB/LC_MESSAGES/kshisen.mo -share/locale/en_GB/LC_MESSAGES/ksig.mo -share/locale/en_GB/LC_MESSAGES/ksim.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/ksplashthemes.mo -share/locale/en_GB/LC_MESSAGES/kstars.mo -share/locale/en_GB/LC_MESSAGES/kstart.mo -share/locale/en_GB/LC_MESSAGES/kstartperf.mo -share/locale/en_GB/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/en_GB/LC_MESSAGES/kstyle_phase_config.mo -share/locale/en_GB/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/en_GB/LC_MESSAGES/ksvgplugin.mo -share/locale/en_GB/LC_MESSAGES/ksync.mo -share/locale/en_GB/LC_MESSAGES/ksysguard.mo -share/locale/en_GB/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/en_GB/LC_MESSAGES/ksystraycmd.mo -share/locale/en_GB/LC_MESSAGES/ksysv.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/ktexteditor_autobookmarker.mo -share/locale/en_GB/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/en_GB/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/en_GB/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/en_GB/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/en_GB/LC_MESSAGES/ktexteditor_kttsd.mo -share/locale/en_GB/LC_MESSAGES/kthememanager.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/ktnef.mo -share/locale/en_GB/LC_MESSAGES/ktouch.mo -share/locale/en_GB/LC_MESSAGES/ktron.mo -share/locale/en_GB/LC_MESSAGES/kttsd.mo -share/locale/en_GB/LC_MESSAGES/kttsd_commandplugin.mo -share/locale/en_GB/LC_MESSAGES/kttsd_eposplugin.mo -share/locale/en_GB/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/en_GB/LC_MESSAGES/kttsd_fliteplugin.mo -share/locale/en_GB/LC_MESSAGES/kttsd_freettsplugin.mo -share/locale/en_GB/LC_MESSAGES/kttsd_hadifixplugin.mo -share/locale/en_GB/LC_MESSAGES/kttsd_sbdplugin.mo -share/locale/en_GB/LC_MESSAGES/kttsd_stringreplacerplugin.mo -share/locale/en_GB/LC_MESSAGES/kttsd_talkerchooserplugin.mo -share/locale/en_GB/LC_MESSAGES/kttsd_xmltransformerplugin.mo -share/locale/en_GB/LC_MESSAGES/kttsjobmgr.mo -share/locale/en_GB/LC_MESSAGES/kttsmgr.mo -share/locale/en_GB/LC_MESSAGES/ktuberling.mo -share/locale/en_GB/LC_MESSAGES/kturtle.mo -share/locale/en_GB/LC_MESSAGES/ktux.mo -share/locale/en_GB/LC_MESSAGES/kuick_plugin.mo -share/locale/en_GB/LC_MESSAGES/kuickshow.mo -share/locale/en_GB/LC_MESSAGES/kuiviewer.mo -share/locale/en_GB/LC_MESSAGES/kuser.mo -share/locale/en_GB/LC_MESSAGES/kverbos.mo -share/locale/en_GB/LC_MESSAGES/kview.mo -share/locale/en_GB/LC_MESSAGES/kview_scale.mo -share/locale/en_GB/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/en_GB/LC_MESSAGES/kviewcanvas.mo -share/locale/en_GB/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/en_GB/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/en_GB/LC_MESSAGES/kviewscannerplugin.mo -share/locale/en_GB/LC_MESSAGES/kviewshell.mo -share/locale/en_GB/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/en_GB/LC_MESSAGES/kviewviewer.mo -share/locale/en_GB/LC_MESSAGES/kvoctrain.mo -share/locale/en_GB/LC_MESSAGES/kwalletmanager.mo -share/locale/en_GB/LC_MESSAGES/kwatchgnupg.mo -share/locale/en_GB/LC_MESSAGES/kweather.mo -share/locale/en_GB/LC_MESSAGES/kwifimanager.mo -share/locale/en_GB/LC_MESSAGES/kwin.mo -share/locale/en_GB/LC_MESSAGES/kwin4.mo -share/locale/en_GB/LC_MESSAGES/kwin_art_clients.mo -share/locale/en_GB/LC_MESSAGES/kwin_clients.mo -share/locale/en_GB/LC_MESSAGES/kwireless.mo -share/locale/en_GB/LC_MESSAGES/kwordquiz.mo -share/locale/en_GB/LC_MESSAGES/kworldclock.mo -share/locale/en_GB/LC_MESSAGES/kwriteconfig.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/kxsldbg.mo -share/locale/en_GB/LC_MESSAGES/libKTTSD.mo -share/locale/en_GB/LC_MESSAGES/libcalendarresources.mo -share/locale/en_GB/LC_MESSAGES/libdmctl.mo -share/locale/en_GB/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/en_GB/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/en_GB/LC_MESSAGES/libkcal.mo -share/locale/en_GB/LC_MESSAGES/libkcalsystem.mo -share/locale/en_GB/LC_MESSAGES/libkcddb.mo -share/locale/en_GB/LC_MESSAGES/libkdegames.mo -share/locale/en_GB/LC_MESSAGES/libkdehighscores.mo -share/locale/en_GB/LC_MESSAGES/libkdenetwork.mo -share/locale/en_GB/LC_MESSAGES/libkdepim.mo -share/locale/en_GB/LC_MESSAGES/libkholidays.mo -share/locale/en_GB/LC_MESSAGES/libkicker.mo -share/locale/en_GB/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/en_GB/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/en_GB/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/en_GB/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/en_GB/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/en_GB/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/en_GB/LC_MESSAGES/libkickermenu_tom.mo -share/locale/en_GB/LC_MESSAGES/libkleopatra.mo -share/locale/en_GB/LC_MESSAGES/libkmime.mo -share/locale/en_GB/LC_MESSAGES/libkonq.mo -share/locale/en_GB/LC_MESSAGES/libkpgp.mo -share/locale/en_GB/LC_MESSAGES/libkpimexchange.mo -share/locale/en_GB/LC_MESSAGES/libkscan.mo -share/locale/en_GB/LC_MESSAGES/libkscreensaver.mo -share/locale/en_GB/LC_MESSAGES/libksieve.mo -share/locale/en_GB/LC_MESSAGES/libksirtet.mo -share/locale/en_GB/LC_MESSAGES/libksync.mo -share/locale/en_GB/LC_MESSAGES/libtaskbar.mo -share/locale/en_GB/LC_MESSAGES/libtaskmanager.mo -share/locale/en_GB/LC_MESSAGES/lockout.mo -share/locale/en_GB/LC_MESSAGES/lskat.mo -share/locale/en_GB/LC_MESSAGES/lyrics.mo -share/locale/en_GB/LC_MESSAGES/mediaapplet.mo -share/locale/en_GB/LC_MESSAGES/mediacontrol.mo -share/locale/en_GB/LC_MESSAGES/minitoolsplugin.mo -share/locale/en_GB/LC_MESSAGES/multisynk.mo -share/locale/en_GB/LC_MESSAGES/naughtyapplet.mo -share/locale/en_GB/LC_MESSAGES/nexscope.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/pitchablespeed.mo -share/locale/en_GB/LC_MESSAGES/ppdtranslations.mo -share/locale/en_GB/LC_MESSAGES/privacy.mo -share/locale/en_GB/LC_MESSAGES/qeditor.mo -share/locale/en_GB/LC_MESSAGES/quanta.mo -share/locale/en_GB/LC_MESSAGES/quicklauncher.mo -share/locale/en_GB/LC_MESSAGES/rellinks.mo -share/locale/en_GB/LC_MESSAGES/searchbarplugin.mo -share/locale/en_GB/LC_MESSAGES/secpolicy.mo -share/locale/en_GB/LC_MESSAGES/spy.mo -share/locale/en_GB/LC_MESSAGES/synaescope.mo -share/locale/en_GB/LC_MESSAGES/taskbarextension.mo -share/locale/en_GB/LC_MESSAGES/timezones.mo -share/locale/en_GB/LC_MESSAGES/tippecanoe.mo -share/locale/en_GB/LC_MESSAGES/trashapplet.mo -share/locale/en_GB/LC_MESSAGES/tyler.mo -share/locale/en_GB/LC_MESSAGES/uachangerplugin.mo -share/locale/en_GB/LC_MESSAGES/umbrello.mo -share/locale/en_GB/LC_MESSAGES/useraccount.mo -share/locale/en_GB/LC_MESSAGES/validatorsplugin.mo -share/locale/en_GB/LC_MESSAGES/vimpart.mo -share/locale/en_GB/LC_MESSAGES/wakeup.mo -share/locale/en_GB/LC_MESSAGES/wavecapture.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 -@dirrm share/doc/HTML/en_GB/umbrello -@dirrm share/doc/HTML/en_GB/kxkb -@dirrm share/doc/HTML/en_GB/kwrite -@dirrm share/doc/HTML/en_GB/kturtle -@dirrm share/doc/HTML/en_GB/ksysguard -@dirrm share/doc/HTML/en_GB/kstars -@dirrm share/doc/HTML/en_GB/ksplashml -@dirrm share/doc/HTML/en_GB/kspell -@dirrm share/doc/HTML/en_GB/kpager -@dirrm share/doc/HTML/en_GB/konsole -@dirrm share/doc/HTML/en_GB/konqueror -@dirrm share/doc/HTML/en_GB/kompare -@dirrm share/doc/HTML/en_GB/knotes -@dirrm share/doc/HTML/en_GB/knode -@dirrm share/doc/HTML/en_GB/kmplot -@dirrm share/doc/HTML/en_GB/kmenuedit -@dirrm share/doc/HTML/en_GB/kmail -@dirrm share/doc/HTML/en_GB/klipper -@dirrm share/doc/HTML/en_GB/kleopatra -@dirrm share/doc/HTML/en_GB/klatin -@dirrm share/doc/HTML/en_GB/kioslave -@dirrm share/doc/HTML/en_GB/kinfocenter/xserver -@dirrm share/doc/HTML/en_GB/kinfocenter/usb -@dirrm share/doc/HTML/en_GB/kinfocenter/sound -@dirrm share/doc/HTML/en_GB/kinfocenter/scsi -@dirrm share/doc/HTML/en_GB/kinfocenter/samba -@dirrm share/doc/HTML/en_GB/kinfocenter/protocols -@dirrm share/doc/HTML/en_GB/kinfocenter/processor -@dirrm share/doc/HTML/en_GB/kinfocenter/pcmcia -@dirrm share/doc/HTML/en_GB/kinfocenter/pci -@dirrm share/doc/HTML/en_GB/kinfocenter/partitions -@dirrm share/doc/HTML/en_GB/kinfocenter/opengl -@dirrm share/doc/HTML/en_GB/kinfocenter/nics -@dirrm share/doc/HTML/en_GB/kinfocenter/memory -@dirrm share/doc/HTML/en_GB/kinfocenter/ioports -@dirrm share/doc/HTML/en_GB/kinfocenter/interrupts -@dirrm share/doc/HTML/en_GB/kinfocenter/dma -@dirrm share/doc/HTML/en_GB/kinfocenter/devices -@dirrm share/doc/HTML/en_GB/kinfocenter/blockdevices -@dirrm share/doc/HTML/en_GB/kinfocenter -@dirrm share/doc/HTML/en_GB/kicker -@dirrm share/doc/HTML/en_GB/khelpcenter/visualdict -@dirrm share/doc/HTML/en_GB/khelpcenter/userguide -@dirrm share/doc/HTML/en_GB/khelpcenter/quickstart -@dirrm share/doc/HTML/en_GB/khelpcenter/glossary -@dirrm share/doc/HTML/en_GB/khelpcenter/faq -@dirrm share/doc/HTML/en_GB/khelpcenter -@dirrm share/doc/HTML/en_GB/kfind -@dirrm share/doc/HTML/en_GB/kdm -@dirrm share/doc/HTML/en_GB/kdesu -@dirrm share/doc/HTML/en_GB/kdeprint -@dirrm share/doc/HTML/en_GB/kdebugdialog -@dirrm share/doc/HTML/en_GB/kcontrol/windowmanagement -@dirrm share/doc/HTML/en_GB/kcontrol/useragent -@dirrm share/doc/HTML/en_GB/kcontrol/spellchecking -@dirrm share/doc/HTML/en_GB/kcontrol/smb -@dirrm share/doc/HTML/en_GB/kcontrol/screensaver -@dirrm share/doc/HTML/en_GB/kcontrol/proxy -@dirrm share/doc/HTML/en_GB/kcontrol/passwords -@dirrm share/doc/HTML/en_GB/kcontrol/panelappearance -@dirrm share/doc/HTML/en_GB/kcontrol/panel -@dirrm share/doc/HTML/en_GB/kcontrol/netpref -@dirrm share/doc/HTML/en_GB/kcontrol/mouse -@dirrm share/doc/HTML/en_GB/kcontrol/language -@dirrm share/doc/HTML/en_GB/kcontrol/kwindecoration -@dirrm share/doc/HTML/en_GB/kcontrol/kthememgr -@dirrm share/doc/HTML/en_GB/kcontrol/kmixcfg -@dirrm share/doc/HTML/en_GB/kcontrol/khtml -@dirrm share/doc/HTML/en_GB/kcontrol/keys -@dirrm share/doc/HTML/en_GB/kcontrol/keyboard -@dirrm share/doc/HTML/en_GB/kcontrol/kdm -@dirrm share/doc/HTML/en_GB/kcontrol/kcmtaskbar -@dirrm share/doc/HTML/en_GB/kcontrol/kcmstyle -@dirrm share/doc/HTML/en_GB/kcontrol/kcmsmserver -@dirrm share/doc/HTML/en_GB/kcontrol/kcmnotify -@dirrm share/doc/HTML/en_GB/kcontrol/kcmlowbatcrit -@dirrm share/doc/HTML/en_GB/kcontrol/kcmlaunch -@dirrm share/doc/HTML/en_GB/kcontrol/kcmktalkd -@dirrm share/doc/HTML/en_GB/kcontrol/kcmkonsole -@dirrm share/doc/HTML/en_GB/kcontrol/kcmfontinst -@dirrm share/doc/HTML/en_GB/kcontrol/kcmcss -@dirrm share/doc/HTML/en_GB/kcontrol/kcmaccess -@dirrm share/doc/HTML/en_GB/kcontrol/kalarmd -@dirrm share/doc/HTML/en_GB/kcontrol/icons -@dirrm share/doc/HTML/en_GB/kcontrol/helpindex -@dirrm share/doc/HTML/en_GB/kcontrol/fonts -@dirrm share/doc/HTML/en_GB/kcontrol/filetypes -@dirrm share/doc/HTML/en_GB/kcontrol/filemanager -@dirrm share/doc/HTML/en_GB/kcontrol/energy -@dirrm share/doc/HTML/en_GB/kcontrol/email -@dirrm share/doc/HTML/en_GB/kcontrol/ebrowsing -@dirrm share/doc/HTML/en_GB/kcontrol/desktopbehavior -@dirrm share/doc/HTML/en_GB/kcontrol/desktop -@dirrm share/doc/HTML/en_GB/kcontrol/crypto -@dirrm share/doc/HTML/en_GB/kcontrol/cookies -@dirrm share/doc/HTML/en_GB/kcontrol/colors -@dirrm share/doc/HTML/en_GB/kcontrol/clock -@dirrm share/doc/HTML/en_GB/kcontrol/cache -@dirrm share/doc/HTML/en_GB/kcontrol/bell -@dirrm share/doc/HTML/en_GB/kcontrol/background -@dirrm share/doc/HTML/en_GB/kcontrol/arts -@dirrm share/doc/HTML/en_GB/kcontrol -@dirrm share/doc/HTML/en_GB/kcachegrind -@dirrm share/doc/HTML/en_GB/kbugbuster -@dirrm share/doc/HTML/en_GB/kbabel -@dirrm share/doc/HTML/en_GB/kate -@dirrm share/doc/HTML/en_GB/kalarm -@dirrm share/doc/HTML/en_GB/kaddressbook -@dirrm share/doc/HTML/en_GB/common -@dirrm share/doc/HTML/en_GB/cervisia -@dirrm share/apps/kturtle/examples/en_GB -@dirrm share/apps/kturtle/examples -@dirrm share/apps/kturtle/data -@dirrm share/apps/kturtle diff --git a/misc/kde4-l10n-eo/Makefile b/misc/kde4-l10n-eo/Makefile deleted file mode 100644 index b49da51c0177..000000000000 --- a/misc/kde4-l10n-eo/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-eo -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= eo- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Esperanto messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-eo/distinfo b/misc/kde4-l10n-eo/distinfo deleted file mode 100644 index d587d612e323..000000000000 --- a/misc/kde4-l10n-eo/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-eo-3.4.2.tar.bz2) = 2d6fd4e41b0590ecfb584f40d0d54edd -SIZE (KDE/kde-i18n/kde-i18n-eo-3.4.2.tar.bz2) = 1217494 diff --git a/misc/kde4-l10n-eo/pkg-descr b/misc/kde4-l10n-eo/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-eo/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-eo/pkg-plist b/misc/kde4-l10n-eo/pkg-plist deleted file mode 100644 index ee3949050627..000000000000 --- a/misc/kde4-l10n-eo/pkg-plist +++ /dev/null @@ -1,293 +0,0 @@ -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/ark_plugin.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/cervisia.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/devicesapplet.mo -share/locale/eo/LC_MESSAGES/dirfilterplugin.mo -share/locale/eo/LC_MESSAGES/display.mo -share/locale/eo/LC_MESSAGES/dockbarextension.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/fontinst.mo -share/locale/eo/LC_MESSAGES/htmlsearch.mo -share/locale/eo/LC_MESSAGES/imgalleryplugin.mo -share/locale/eo/LC_MESSAGES/joystick.mo -share/locale/eo/LC_MESSAGES/kabc_dir.mo -share/locale/eo/LC_MESSAGES/kabc_file.mo -share/locale/eo/LC_MESSAGES/kabc_ldap.mo -share/locale/eo/LC_MESSAGES/kabc_ldapkio.mo -share/locale/eo/LC_MESSAGES/kabc_net.mo -share/locale/eo/LC_MESSAGES/kabc_sql.mo -share/locale/eo/LC_MESSAGES/kabcformat_binary.mo -share/locale/eo/LC_MESSAGES/kaccess.mo -share/locale/eo/LC_MESSAGES/kaddressbook.mo -share/locale/eo/LC_MESSAGES/kalzium.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/katedefaultproject.mo -share/locale/eo/LC_MESSAGES/katepart.mo -share/locale/eo/LC_MESSAGES/katomic.mo -share/locale/eo/LC_MESSAGES/kbabel.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/kbounce.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/kcmaccessibility.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/kcmcgi.mo -share/locale/eo/LC_MESSAGES/kcmcolors.mo -share/locale/eo/LC_MESSAGES/kcmcomponentchooser.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/kcmkded.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/kcmlocale.mo -share/locale/eo/LC_MESSAGES/kcmmidi.mo -share/locale/eo/LC_MESSAGES/kcmnic.mo -share/locale/eo/LC_MESSAGES/kcmnotify.mo -share/locale/eo/LC_MESSAGES/kcmperformance.mo -share/locale/eo/LC_MESSAGES/kcmsamba.mo -share/locale/eo/LC_MESSAGES/kcmscreensaver.mo -share/locale/eo/LC_MESSAGES/kcmsmartcard.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/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/kdat.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/kdelibs_colors.mo -share/locale/eo/LC_MESSAGES/kdepasswd.mo -share/locale/eo/LC_MESSAGES/kdeprint.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/kdevelop.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/kenolaba.mo -share/locale/eo/LC_MESSAGES/kfax.mo -share/locale/eo/LC_MESSAGES/kfifteenapplet.mo -share/locale/eo/LC_MESSAGES/kfile_deb.mo -share/locale/eo/LC_MESSAGES/kfile_rfc822.mo -share/locale/eo/LC_MESSAGES/kfile_rpm.mo -share/locale/eo/LC_MESSAGES/kfile_txt.mo -share/locale/eo/LC_MESSAGES/kfile_vcf.mo -share/locale/eo/LC_MESSAGES/kfileaudiopreview.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/kfontinst.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.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_mac.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_print.mo -share/locale/eo/LC_MESSAGES/kio_settings.mo -share/locale/eo/LC_MESSAGES/kio_sftp.mo -share/locale/eo/LC_MESSAGES/kio_smb.mo -share/locale/eo/LC_MESSAGES/kio_smtp.mo -share/locale/eo/LC_MESSAGES/kioexec.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/klock.mo -share/locale/eo/LC_MESSAGES/kmag.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/kmcop.mo -share/locale/eo/LC_MESSAGES/kmenuapplet.mo -share/locale/eo/LC_MESSAGES/kmenuedit.mo -share/locale/eo/LC_MESSAGES/kmid.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/kmousetool.mo -share/locale/eo/LC_MESSAGES/kmouth.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/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/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/krandr.mo -share/locale/eo/LC_MESSAGES/krdb.mo -share/locale/eo/LC_MESSAGES/kreadconfig.mo -share/locale/eo/LC_MESSAGES/kregexpeditor.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/kscreensaver.mo -share/locale/eo/LC_MESSAGES/kshisen.mo -share/locale/eo/LC_MESSAGES/ksim.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/ksplashthemes.mo -share/locale/eo/LC_MESSAGES/kstars.mo -share/locale/eo/LC_MESSAGES/kstart.mo -share/locale/eo/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/eo/LC_MESSAGES/ksysguard.mo -share/locale/eo/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/eo/LC_MESSAGES/ksystraycmd.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/ktexteditor_insertfile.mo -share/locale/eo/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/eo/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/eo/LC_MESSAGES/kthememanager.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/kwriteconfig.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/libkcal.mo -share/locale/eo/LC_MESSAGES/libkdegames.mo -share/locale/eo/LC_MESSAGES/libkdehighscores.mo -share/locale/eo/LC_MESSAGES/libkdenetwork.mo -share/locale/eo/LC_MESSAGES/libkicker.mo -share/locale/eo/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/eo/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/eo/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/eo/LC_MESSAGES/libkickermenu_recentdocs.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/libtaskbar.mo -share/locale/eo/LC_MESSAGES/libtaskmanager.mo -share/locale/eo/LC_MESSAGES/lockout.mo -share/locale/eo/LC_MESSAGES/lskat.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/privacy.mo -share/locale/eo/LC_MESSAGES/quicklauncher.mo -share/locale/eo/LC_MESSAGES/secpolicy.mo -share/locale/eo/LC_MESSAGES/spy.mo -share/locale/eo/LC_MESSAGES/taskbarextension.mo -share/locale/eo/LC_MESSAGES/timezones.mo -share/locale/eo/LC_MESSAGES/uachangerplugin.mo -share/locale/eo/LC_MESSAGES/useraccount.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 diff --git a/misc/kde4-l10n-es/Makefile b/misc/kde4-l10n-es/Makefile deleted file mode 100644 index 28197311abf8..000000000000 --- a/misc/kde4-l10n-es/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-es -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= es- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Spanish messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-es/distinfo b/misc/kde4-l10n-es/distinfo deleted file mode 100644 index c75f4c59aac5..000000000000 --- a/misc/kde4-l10n-es/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-es-3.4.2.tar.bz2) = 8f85ee4ed2e2450076e0df44e234b465 -SIZE (KDE/kde-i18n/kde-i18n-es-3.4.2.tar.bz2) = 10759939 diff --git a/misc/kde4-l10n-es/pkg-descr b/misc/kde4-l10n-es/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-es/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-es/pkg-plist b/misc/kde4-l10n-es/pkg-plist deleted file mode 100644 index 3c4b2d0a0fc0..000000000000 --- a/misc/kde4-l10n-es/pkg-plist +++ /dev/null @@ -1,2281 +0,0 @@ -share/apps/katepart/syntax/logohighlightstyle.es.xml -share/apps/khangman/data/es/animals.kvtml -share/apps/khangman/data/es/easy.kvtml -share/apps/khangman/data/es/hard.kvtml -share/apps/khangman/data/es/medium.kvtml -share/apps/khangman/es.txt -share/apps/ktuberling/sounds/es/anteojos.wav -share/apps/ktuberling/sounds/es/bigote.wav -share/apps/ktuberling/sounds/es/boca.wav -share/apps/ktuberling/sounds/es/ceja.wav -share/apps/ktuberling/sounds/es/cigarro.wav -share/apps/ktuberling/sounds/es/eltipodelapatata.wav -share/apps/ktuberling/sounds/es/gafasdesol.wav -share/apps/ktuberling/sounds/es/insignia.wav -share/apps/ktuberling/sounds/es/lazo.wav -share/apps/ktuberling/sounds/es/nariz.wav -share/apps/ktuberling/sounds/es/ojo.wav -share/apps/ktuberling/sounds/es/oreja.wav -share/apps/ktuberling/sounds/es/pendiente.wav -share/apps/ktuberling/sounds/es/reloj.wav -share/apps/ktuberling/sounds/es/sombrero.wav -share/apps/kturtle/data/logokeywords.es.xml -share/apps/kturtle/examples/es/cartelito.logo -share/apps/kturtle/examples/es/collar.logo -share/apps/kturtle/examples/es/colores.logo -share/apps/kturtle/examples/es/cuadrado.logo -share/apps/kturtle/examples/es/flecha.logo -share/apps/kturtle/examples/es/flor.logo -share/apps/kturtle/examples/es/lastablas.logo -share/apps/kturtle/examples/es/rulitos.logo -share/apps/kturtle/examples/es/triangulo.logo -share/apps/kturtle/examples/es/triangulos.logo -share/apps/kturtle/examples/es/tunombre.logo -share/doc/HTML/es/KRegExpEditor/altntool.png -share/doc/HTML/es/KRegExpEditor/anychartool.png -share/doc/HTML/es/KRegExpEditor/boundarytools.png -share/doc/HTML/es/KRegExpEditor/charactertool.png -share/doc/HTML/es/KRegExpEditor/common -share/doc/HTML/es/KRegExpEditor/compoundtool.png -share/doc/HTML/es/KRegExpEditor/index.cache.bz2 -share/doc/HTML/es/KRegExpEditor/index.docbook -share/doc/HTML/es/KRegExpEditor/linestartendtool.png -share/doc/HTML/es/KRegExpEditor/lookaheadtools.png -share/doc/HTML/es/KRegExpEditor/repeattool.png -share/doc/HTML/es/KRegExpEditor/theEditor.png -share/doc/HTML/es/akregator/common -share/doc/HTML/es/akregator/index.cache.bz2 -share/doc/HTML/es/akregator/index.docbook -share/doc/HTML/es/aktion/common -share/doc/HTML/es/aktion/index.cache.bz2 -share/doc/HTML/es/aktion/index.docbook -share/doc/HTML/es/amor/common -share/doc/HTML/es/amor/index.cache.bz2 -share/doc/HTML/es/amor/index.docbook -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/apis.docbook -share/doc/HTML/es/artsbuilder/artsbuilder.docbook -share/doc/HTML/es/artsbuilder/detail.docbook -share/doc/HTML/es/artsbuilder/digitalaudio.docbook -share/doc/HTML/es/artsbuilder/faq.docbook -share/doc/HTML/es/artsbuilder/future.docbook -share/doc/HTML/es/artsbuilder/glossary.docbook -share/doc/HTML/es/artsbuilder/gui.docbook -share/doc/HTML/es/artsbuilder/helping.docbook -share/doc/HTML/es/artsbuilder/mcop.docbook -share/doc/HTML/es/artsbuilder/midi.docbook -share/doc/HTML/es/artsbuilder/midiintro.docbook -share/doc/HTML/es/artsbuilder/modules.docbook -share/doc/HTML/es/artsbuilder/porting.docbook -share/doc/HTML/es/artsbuilder/references.docbook -share/doc/HTML/es/artsbuilder/tools.docbook -share/doc/HTML/es/atlantik/common -share/doc/HTML/es/atlantik/index.cache.bz2 -share/doc/HTML/es/atlantik/index.docbook -share/doc/HTML/es/atlantik/man-atlantik.6.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/appheader.html -share/doc/HTML/es/common/artistic-license.html -share/doc/HTML/es/common/bottom-left.png -share/doc/HTML/es/common/bottom-middle.png -share/doc/HTML/es/common/bottom-right.png -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/docheadergears.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/doxygen.css -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/footer.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/grad.png -share/doc/HTML/es/common/header.html -share/doc/HTML/es/common/headerbg.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/kde-web.css -share/doc/HTML/es/common/kde_logo.png -share/doc/HTML/es/common/kde_logo_bg.png -share/doc/HTML/es/common/kmenu.png -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.png -share/doc/HTML/es/common/mainfooter.html -share/doc/HTML/es/common/mainheader.html -share/doc/HTML/es/common/qpl-license.html -share/doc/HTML/es/common/shadow.png -share/doc/HTML/es/common/top-left.png -share/doc/HTML/es/common/top-middle.png -share/doc/HTML/es/common/top-right-konqueror.png -share/doc/HTML/es/common/web-docbottom.png -share/doc/HTML/es/common/web-doctop.png -share/doc/HTML/es/common/x11-license.html -share/doc/HTML/es/common/xml.dcl -share/doc/HTML/es/flashkard/common -share/doc/HTML/es/flashkard/index.cache.bz2 -share/doc/HTML/es/flashkard/index.docbook -share/doc/HTML/es/kaboodle/common -share/doc/HTML/es/kaboodle/index.cache.bz2 -share/doc/HTML/es/kaboodle/index.docbook -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/kalarm/common -share/doc/HTML/es/kalarm/index.cache.bz2 -share/doc/HTML/es/kalarm/index.docbook -share/doc/HTML/es/kalzium/common -share/doc/HTML/es/kalzium/index.cache.bz2 -share/doc/HTML/es/kalzium/index.docbook -share/doc/HTML/es/kalzium/man-kalzium.1.docbook -share/doc/HTML/es/kalzium/screenshot1.png -share/doc/HTML/es/kalzium/screenshot3.png -share/doc/HTML/es/kalzium/settings.png -share/doc/HTML/es/kamera/common -share/doc/HTML/es/kamera/index.cache.bz2 -share/doc/HTML/es/kamera/index.docbook -share/doc/HTML/es/kandy/common -share/doc/HTML/es/kandy/index.cache.bz2 -share/doc/HTML/es/kandy/index.docbook -share/doc/HTML/es/kappfinder/man-kappfinder.1.docbook -share/doc/HTML/es/kapptemplate/man-kapptemplate.1.docbook -share/doc/HTML/es/karm/common -share/doc/HTML/es/karm/index.cache.bz2 -share/doc/HTML/es/karm/index.docbook -share/doc/HTML/es/kasteroids/common -share/doc/HTML/es/kasteroids/index.cache.bz2 -share/doc/HTML/es/kasteroids/index.docbook -share/doc/HTML/es/kate-plugins/common -share/doc/HTML/es/kate-plugins/filetemplates.docbook -share/doc/HTML/es/kate-plugins/htmltools.docbook -share/doc/HTML/es/kate-plugins/index.cache.bz2 -share/doc/HTML/es/kate-plugins/index.docbook -share/doc/HTML/es/kate-plugins/insertcommand.docbook -share/doc/HTML/es/kate-plugins/openheader.docbook -share/doc/HTML/es/kate-plugins/projectmanager.docbook -share/doc/HTML/es/kate-plugins/textfilter.docbook -share/doc/HTML/es/kate-plugins/xmlcheck.docbook -share/doc/HTML/es/kate-plugins/xmltools.docbook -share/doc/HTML/es/kate/advanced.docbook -share/doc/HTML/es/kate/common -share/doc/HTML/es/kate/configdialog01.png -share/doc/HTML/es/kate/configdialog02.png -share/doc/HTML/es/kate/configuring.docbook -share/doc/HTML/es/kate/fundamentals.docbook -share/doc/HTML/es/kate/highlighted.png -share/doc/HTML/es/kate/highlighting.docbook -share/doc/HTML/es/kate/index.cache.bz2 -share/doc/HTML/es/kate/index.docbook -share/doc/HTML/es/kate/kate.png -share/doc/HTML/es/kate/mdi.docbook -share/doc/HTML/es/kate/menus.docbook -share/doc/HTML/es/kate/mimetypechooser.png -share/doc/HTML/es/kate/part.docbook -share/doc/HTML/es/kate/plugins.docbook -share/doc/HTML/es/kate/regular-expressions.docbook -share/doc/HTML/es/kate/unhighlighted.png -share/doc/HTML/es/katomic/common -share/doc/HTML/es/katomic/index.cache.bz2 -share/doc/HTML/es/katomic/index.docbook -share/doc/HTML/es/kbabel/catman.docbook -share/doc/HTML/es/kbabel/dictionaries.docbook -share/doc/HTML/es/kbabel/faq.docbook -share/doc/HTML/es/kbabel/glossary.docbook -share/doc/HTML/es/kbabel/kbabeldict.docbook -share/doc/HTML/es/kbabel/man-catalogmanager.1.docbook -share/doc/HTML/es/kbabel/menu.docbook -share/doc/HTML/es/kbabel/preferences.docbook -share/doc/HTML/es/kbabel/using.docbook -share/doc/HTML/es/kbackgammon/common -share/doc/HTML/es/kbackgammon/index.cache.bz2 -share/doc/HTML/es/kbackgammon/index.docbook -share/doc/HTML/es/kbattleship/common -share/doc/HTML/es/kbattleship/index.cache.bz2 -share/doc/HTML/es/kbattleship/index.docbook -share/doc/HTML/es/kblackbox/common -share/doc/HTML/es/kblackbox/index.cache.bz2 -share/doc/HTML/es/kblackbox/index.docbook -share/doc/HTML/es/kbounce/common -share/doc/HTML/es/kbounce/index.cache.bz2 -share/doc/HTML/es/kbounce/index.docbook -share/doc/HTML/es/kbruch/checked.png -share/doc/HTML/es/kbruch/common -share/doc/HTML/es/kbruch/compare.png -share/doc/HTML/es/kbruch/convert.png -share/doc/HTML/es/kbruch/factorize.png -share/doc/HTML/es/kbruch/gui_main.png -share/doc/HTML/es/kbruch/index.cache.bz2 -share/doc/HTML/es/kbruch/index.docbook -share/doc/HTML/es/kbruch/reduced.png -share/doc/HTML/es/kbruch/settings.png -share/doc/HTML/es/kbugbuster/common -share/doc/HTML/es/kbugbuster/index.cache.bz2 -share/doc/HTML/es/kbugbuster/index.docbook -share/doc/HTML/es/kcalc/common -share/doc/HTML/es/kcalc/index.cache.bz2 -share/doc/HTML/es/kcalc/index.docbook -share/doc/HTML/es/kcharselect/common -share/doc/HTML/es/kcharselect/index.cache.bz2 -share/doc/HTML/es/kcharselect/index.docbook -share/doc/HTML/es/kcoloredit/common -share/doc/HTML/es/kcoloredit/index.cache.bz2 -share/doc/HTML/es/kcoloredit/index.docbook -share/doc/HTML/es/kcontrol/arts/common -share/doc/HTML/es/kcontrol/arts/index.cache.bz2 -share/doc/HTML/es/kcontrol/arts/index.docbook -share/doc/HTML/es/kcontrol/arts/midi.docbook -share/doc/HTML/es/kcontrol/background/common -share/doc/HTML/es/kcontrol/background/index.cache.bz2 -share/doc/HTML/es/kcontrol/background/index.docbook -share/doc/HTML/es/kcontrol/bell/common -share/doc/HTML/es/kcontrol/bell/index.cache.bz2 -share/doc/HTML/es/kcontrol/bell/index.docbook -share/doc/HTML/es/kcontrol/cache/common -share/doc/HTML/es/kcontrol/cache/index.cache.bz2 -share/doc/HTML/es/kcontrol/cache/index.docbook -share/doc/HTML/es/kcontrol/clock/common -share/doc/HTML/es/kcontrol/clock/index.cache.bz2 -share/doc/HTML/es/kcontrol/clock/index.docbook -share/doc/HTML/es/kcontrol/colors/common -share/doc/HTML/es/kcontrol/colors/index.cache.bz2 -share/doc/HTML/es/kcontrol/colors/index.docbook -share/doc/HTML/es/kcontrol/common -share/doc/HTML/es/kcontrol/cookies/common -share/doc/HTML/es/kcontrol/cookies/index.cache.bz2 -share/doc/HTML/es/kcontrol/cookies/index.docbook -share/doc/HTML/es/kcontrol/crypto/common -share/doc/HTML/es/kcontrol/crypto/index.cache.bz2 -share/doc/HTML/es/kcontrol/crypto/index.docbook -share/doc/HTML/es/kcontrol/desktop/common -share/doc/HTML/es/kcontrol/desktop/index.cache.bz2 -share/doc/HTML/es/kcontrol/desktop/index.docbook -share/doc/HTML/es/kcontrol/ebrowsing/common -share/doc/HTML/es/kcontrol/ebrowsing/index.cache.bz2 -share/doc/HTML/es/kcontrol/ebrowsing/index.docbook -share/doc/HTML/es/kcontrol/email/common -share/doc/HTML/es/kcontrol/email/index.cache.bz2 -share/doc/HTML/es/kcontrol/email/index.docbook -share/doc/HTML/es/kcontrol/energy/common -share/doc/HTML/es/kcontrol/energy/index.cache.bz2 -share/doc/HTML/es/kcontrol/energy/index.docbook -share/doc/HTML/es/kcontrol/filemanager/common -share/doc/HTML/es/kcontrol/filemanager/index.cache.bz2 -share/doc/HTML/es/kcontrol/filemanager/index.docbook -share/doc/HTML/es/kcontrol/filemanager/kfileman1.png -share/doc/HTML/es/kcontrol/filemanager/kfileman2.png -share/doc/HTML/es/kcontrol/filetypes/common -share/doc/HTML/es/kcontrol/filetypes/index.cache.bz2 -share/doc/HTML/es/kcontrol/filetypes/index.docbook -share/doc/HTML/es/kcontrol/fonts/common -share/doc/HTML/es/kcontrol/fonts/index.cache.bz2 -share/doc/HTML/es/kcontrol/fonts/index.docbook -share/doc/HTML/es/kcontrol/helpindex/common -share/doc/HTML/es/kcontrol/helpindex/index.cache.bz2 -share/doc/HTML/es/kcontrol/helpindex/index.docbook -share/doc/HTML/es/kcontrol/icons/common -share/doc/HTML/es/kcontrol/icons/index.cache.bz2 -share/doc/HTML/es/kcontrol/icons/index.docbook -share/doc/HTML/es/kcontrol/index.cache.bz2 -share/doc/HTML/es/kcontrol/index.docbook -share/doc/HTML/es/kcontrol/kalarmd/common -share/doc/HTML/es/kcontrol/kalarmd/index.cache.bz2 -share/doc/HTML/es/kcontrol/kalarmd/index.docbook -share/doc/HTML/es/kcontrol/kcmaccess/common -share/doc/HTML/es/kcontrol/kcmaccess/index.cache.bz2 -share/doc/HTML/es/kcontrol/kcmaccess/index.docbook -share/doc/HTML/es/kcontrol/kcmcss/common -share/doc/HTML/es/kcontrol/kcmcss/index.cache.bz2 -share/doc/HTML/es/kcontrol/kcmcss/index.docbook -share/doc/HTML/es/kcontrol/kcmfontinst/common -share/doc/HTML/es/kcontrol/kcmfontinst/index.cache.bz2 -share/doc/HTML/es/kcontrol/kcmfontinst/index.docbook -share/doc/HTML/es/kcontrol/kcmkonsole/common -share/doc/HTML/es/kcontrol/kcmkonsole/index.cache.bz2 -share/doc/HTML/es/kcontrol/kcmkonsole/index.docbook -share/doc/HTML/es/kcontrol/kcmktalkd/common -share/doc/HTML/es/kcontrol/kcmktalkd/index.cache.bz2 -share/doc/HTML/es/kcontrol/kcmktalkd/index.docbook -share/doc/HTML/es/kcontrol/kcmlaunch/common -share/doc/HTML/es/kcontrol/kcmlaunch/index.cache.bz2 -share/doc/HTML/es/kcontrol/kcmlaunch/index.docbook -share/doc/HTML/es/kcontrol/kcmlowbatcrit/common -share/doc/HTML/es/kcontrol/kcmlowbatcrit/index.cache.bz2 -share/doc/HTML/es/kcontrol/kcmlowbatcrit/index.docbook -share/doc/HTML/es/kcontrol/kcmlowbatwarn/common -share/doc/HTML/es/kcontrol/kcmlowbatwarn/index.cache.bz2 -share/doc/HTML/es/kcontrol/kcmlowbatwarn/index.docbook -share/doc/HTML/es/kcontrol/kcmnotify/common -share/doc/HTML/es/kcontrol/kcmnotify/index.cache.bz2 -share/doc/HTML/es/kcontrol/kcmnotify/index.docbook -share/doc/HTML/es/kcontrol/kcmsmserver/common -share/doc/HTML/es/kcontrol/kcmsmserver/index.cache.bz2 -share/doc/HTML/es/kcontrol/kcmsmserver/index.docbook -share/doc/HTML/es/kcontrol/kcmstyle/common -share/doc/HTML/es/kcontrol/kcmstyle/index.cache.bz2 -share/doc/HTML/es/kcontrol/kcmstyle/index.docbook -share/doc/HTML/es/kcontrol/kcmtaskbar/common -share/doc/HTML/es/kcontrol/kcmtaskbar/index.cache.bz2 -share/doc/HTML/es/kcontrol/kcmtaskbar/index.docbook -share/doc/HTML/es/kcontrol/kdm/common -share/doc/HTML/es/kcontrol/kdm/index.cache.bz2 -share/doc/HTML/es/kcontrol/kdm/index.docbook -share/doc/HTML/es/kcontrol/keyboard/common -share/doc/HTML/es/kcontrol/keyboard/index.cache.bz2 -share/doc/HTML/es/kcontrol/keyboard/index.docbook -share/doc/HTML/es/kcontrol/keys/common -share/doc/HTML/es/kcontrol/keys/index.cache.bz2 -share/doc/HTML/es/kcontrol/keys/index.docbook -share/doc/HTML/es/kcontrol/khtml/common -share/doc/HTML/es/kcontrol/khtml/index.cache.bz2 -share/doc/HTML/es/kcontrol/khtml/index.docbook -share/doc/HTML/es/kcontrol/khtml/nsplugin.docbook -share/doc/HTML/es/kcontrol/kmixcfg/common -share/doc/HTML/es/kcontrol/kmixcfg/index.cache.bz2 -share/doc/HTML/es/kcontrol/kmixcfg/index.docbook -share/doc/HTML/es/kcontrol/kthememgr/common -share/doc/HTML/es/kcontrol/kthememgr/index.cache.bz2 -share/doc/HTML/es/kcontrol/kthememgr/index.docbook -share/doc/HTML/es/kcontrol/kwindecoration/common -share/doc/HTML/es/kcontrol/kwindecoration/index.cache.bz2 -share/doc/HTML/es/kcontrol/kwindecoration/index.docbook -share/doc/HTML/es/kcontrol/kxmlrpcd/common -share/doc/HTML/es/kcontrol/kxmlrpcd/index.cache.bz2 -share/doc/HTML/es/kcontrol/kxmlrpcd/index.docbook -share/doc/HTML/es/kcontrol/lanbrowser/common -share/doc/HTML/es/kcontrol/lanbrowser/index.cache.bz2 -share/doc/HTML/es/kcontrol/lanbrowser/index.docbook -share/doc/HTML/es/kcontrol/language/common -share/doc/HTML/es/kcontrol/language/index.cache.bz2 -share/doc/HTML/es/kcontrol/language/index.docbook -share/doc/HTML/es/kcontrol/laptop/common -share/doc/HTML/es/kcontrol/laptop/index.cache.bz2 -share/doc/HTML/es/kcontrol/laptop/index.docbook -share/doc/HTML/es/kcontrol/mouse/common -share/doc/HTML/es/kcontrol/mouse/index.cache.bz2 -share/doc/HTML/es/kcontrol/mouse/index.docbook -share/doc/HTML/es/kcontrol/netpref/common -share/doc/HTML/es/kcontrol/netpref/index.cache.bz2 -share/doc/HTML/es/kcontrol/netpref/index.docbook -share/doc/HTML/es/kcontrol/panel/common -share/doc/HTML/es/kcontrol/panel/index.cache.bz2 -share/doc/HTML/es/kcontrol/panel/index.docbook -share/doc/HTML/es/kcontrol/passwords/common -share/doc/HTML/es/kcontrol/passwords/index.cache.bz2 -share/doc/HTML/es/kcontrol/passwords/index.docbook -share/doc/HTML/es/kcontrol/powerctrl/common -share/doc/HTML/es/kcontrol/powerctrl/index.cache.bz2 -share/doc/HTML/es/kcontrol/powerctrl/index.docbook -share/doc/HTML/es/kcontrol/proxy/common -share/doc/HTML/es/kcontrol/proxy/index.cache.bz2 -share/doc/HTML/es/kcontrol/proxy/index.docbook -share/doc/HTML/es/kcontrol/proxy/socks.docbook -share/doc/HTML/es/kcontrol/screensaver/common -share/doc/HTML/es/kcontrol/screensaver/index.cache.bz2 -share/doc/HTML/es/kcontrol/screensaver/index.docbook -share/doc/HTML/es/kcontrol/screenshot.png -share/doc/HTML/es/kcontrol/smb/common -share/doc/HTML/es/kcontrol/smb/index.cache.bz2 -share/doc/HTML/es/kcontrol/smb/index.docbook -share/doc/HTML/es/kcontrol/spellchecking/common -share/doc/HTML/es/kcontrol/spellchecking/index.cache.bz2 -share/doc/HTML/es/kcontrol/spellchecking/index.docbook -share/doc/HTML/es/kcontrol/useragent/common -share/doc/HTML/es/kcontrol/useragent/index.cache.bz2 -share/doc/HTML/es/kcontrol/useragent/index.docbook -share/doc/HTML/es/kcontrol/windowmanagement/common -share/doc/HTML/es/kcontrol/windowmanagement/index.cache.bz2 -share/doc/HTML/es/kcontrol/windowmanagement/index.docbook -share/doc/HTML/es/kcron/common -share/doc/HTML/es/kcron/index.cache.bz2 -share/doc/HTML/es/kcron/index.docbook -share/doc/HTML/es/kcron/kcron.png -share/doc/HTML/es/kcron/kcronstart.png -share/doc/HTML/es/kcron/newtask.png -share/doc/HTML/es/kcron/newvariable.png -share/doc/HTML/es/kcron/print.png -share/doc/HTML/es/kdat/common -share/doc/HTML/es/kdat/index.cache.bz2 -share/doc/HTML/es/kdat/index.docbook -share/doc/HTML/es/kdcop/common -share/doc/HTML/es/kdcop/index.cache.bz2 -share/doc/HTML/es/kdcop/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/kdelibs/man-artsmessage.1.docbook -share/doc/HTML/es/kdelibs/man-checkXML.1.docbook -share/doc/HTML/es/kdelibs/man-dcop.1.docbook -share/doc/HTML/es/kdelibs/man-kdeoptions.7.docbook -share/doc/HTML/es/kdelibs/man-qtoptions.7.docbook -share/doc/HTML/es/kdelirc/irkick/common -share/doc/HTML/es/kdelirc/irkick/index.cache.bz2 -share/doc/HTML/es/kdelirc/irkick/index.docbook -share/doc/HTML/es/kdelirc/kcmlirc/common -share/doc/HTML/es/kdelirc/kcmlirc/index.cache.bz2 -share/doc/HTML/es/kdelirc/kcmlirc/index.docbook -share/doc/HTML/es/kdeprint/add-printer-wiz.docbook -share/doc/HTML/es/kdeprint/cups-config.docbook -share/doc/HTML/es/kdeprint/cupsaddprinterwizard1.png -share/doc/HTML/es/kdeprint/cupsaddprinterwizard2_backendselection.png -share/doc/HTML/es/kdeprint/cupsaddprinterwizard3_networkscan.png -share/doc/HTML/es/kdeprint/cupsaddprinterwizard4_networkscan_config.png -share/doc/HTML/es/kdeprint/cupsoptions.docbook -share/doc/HTML/es/kdeprint/cupsserverconfig_browse_relay_add_button.png -share/doc/HTML/es/kdeprint/cupsserverconfig_browsingmasks_add_button.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration10_browsinggeneral.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration11_browsingconnections.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration11_browsingmasks.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration12_browsingtimeouts.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration14_browsingrelay.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration15a_resourceallprinters_defineaccess.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration15b_resourceallprinters_defineaccess.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration15c_resourceallprinters_defineaccess.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration1_welcome.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration2_general.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration3_logging.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration4_directories.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration5_HTTP.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration6_encryption.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration7_miscellanious.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration8_networkgeneral.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration9_networkclients.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration_resourceadminaccessmasks.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration_resourceadminaddprinters.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration_resourceadminaddprinters_defineaccess.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration_resourceadminauthorization.png -share/doc/HTML/es/kdeprint/cupsserverconfiguration_securityoverview.png -share/doc/HTML/es/kdeprint/extensions.docbook -share/doc/HTML/es/kdeprint/external-command.docbook -share/doc/HTML/es/kdeprint/final-word.docbook -share/doc/HTML/es/kdeprint/getting-started.docbook -share/doc/HTML/es/kdeprint/highlights.docbook -share/doc/HTML/es/kdeprint/kcontrolcenter-printmanager-jobcontrol-2.png -share/doc/HTML/es/kdeprint/kcron_to_be_printed.png -share/doc/HTML/es/kdeprint/kdeprint-jobviewer.png -share/doc/HTML/es/kdeprint/kprinter-as-netscape-printcommand.png -share/doc/HTML/es/kdeprint/kprinter.png -share/doc/HTML/es/kdeprint/kprinter_called_from_run_command.png -share/doc/HTML/es/kdeprint/kprinter_kivio.png -share/doc/HTML/es/kdeprint/kprinter_with_kcron_developer_special.png -share/doc/HTML/es/kdeprint/lpd.docbook -share/doc/HTML/es/kdeprint/lpr-bsd.docbook -share/doc/HTML/es/kdeprint/lprng.docbook -share/doc/HTML/es/kdeprint/rlpr.docbook -share/doc/HTML/es/kdeprint/steinbruch_scaled.png -share/doc/HTML/es/kdeprint/tech-overview.docbook -share/doc/HTML/es/kdeprint/theory.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/kdf/kdf.png -share/doc/HTML/es/kdf/kdf_config.png -share/doc/HTML/es/kdict/common -share/doc/HTML/es/kdict/index.cache.bz2 -share/doc/HTML/es/kdict/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/kdvi/common -share/doc/HTML/es/kdvi/index.cache.bz2 -share/doc/HTML/es/kdvi/index.docbook -share/doc/HTML/es/kdvi/optionrequester1.png -share/doc/HTML/es/kdvi/optionrequester2.png -share/doc/HTML/es/kedit/common -share/doc/HTML/es/kedit/index.cache.bz2 -share/doc/HTML/es/kedit/index.docbook -share/doc/HTML/es/keduca/common -share/doc/HTML/es/keduca/index.cache.bz2 -share/doc/HTML/es/keduca/index.docbook -share/doc/HTML/es/keduca/screenshot.png -share/doc/HTML/es/kenolaba/common -share/doc/HTML/es/kenolaba/index.cache.bz2 -share/doc/HTML/es/kenolaba/index.docbook -share/doc/HTML/es/kenolaba/man-kenolaba.6.docbook -share/doc/HTML/es/kfind/common -share/doc/HTML/es/kfind/index.cache.bz2 -share/doc/HTML/es/kfind/index.docbook -share/doc/HTML/es/kfloppy/common -share/doc/HTML/es/kfloppy/index.cache.bz2 -share/doc/HTML/es/kfloppy/index.docbook -share/doc/HTML/es/kfouleggs/common -share/doc/HTML/es/kfouleggs/index.cache.bz2 -share/doc/HTML/es/kfouleggs/index.docbook -share/doc/HTML/es/kgamma/common -share/doc/HTML/es/kgamma/index.cache.bz2 -share/doc/HTML/es/kgamma/index.docbook -share/doc/HTML/es/kghostview/common -share/doc/HTML/es/kghostview/index.cache.bz2 -share/doc/HTML/es/kghostview/index.docbook -share/doc/HTML/es/kgoldrunner/common -share/doc/HTML/es/kgoldrunner/index.cache.bz2 -share/doc/HTML/es/kgoldrunner/index.docbook -share/doc/HTML/es/kgpg/common -share/doc/HTML/es/kgpg/editor.png -share/doc/HTML/es/kgpg/index.cache.bz2 -share/doc/HTML/es/kgpg/index.docbook -share/doc/HTML/es/kgpg/keygen.png -share/doc/HTML/es/kgpg/keymanage.png -share/doc/HTML/es/kgpg/keys.png -share/doc/HTML/es/kgpg/kicker.png -share/doc/HTML/es/kgpg/options.png -share/doc/HTML/es/khangman/common -share/doc/HTML/es/khangman/index.cache.bz2 -share/doc/HTML/es/khangman/index.docbook -share/doc/HTML/es/khangman/khangman1.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/questions.docbook -share/doc/HTML/es/khelpcenter/faq/sound.docbook -share/doc/HTML/es/khelpcenter/faq/tips.docbook -share/doc/HTML/es/khelpcenter/faq/webbrowse.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/glossary/kdeprintingglossary.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/links.docbook -share/doc/HTML/es/khelpcenter/main.html -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/support.docbook -share/doc/HTML/es/khelpcenter/userguide/a-window.png -share/doc/HTML/es/khelpcenter/userguide/about-desktop.docbook -share/doc/HTML/es/khelpcenter/userguide/accessibility.docbook -share/doc/HTML/es/khelpcenter/userguide/amarok.png -share/doc/HTML/es/khelpcenter/userguide/base-kde-applications.docbook -share/doc/HTML/es/khelpcenter/userguide/browser-fine-tuning.docbook -share/doc/HTML/es/khelpcenter/userguide/burning-cds.docbook -share/doc/HTML/es/khelpcenter/userguide/control-center.docbook -share/doc/HTML/es/khelpcenter/userguide/creating-graphics.docbook -share/doc/HTML/es/khelpcenter/userguide/credits-and-license.docbook -share/doc/HTML/es/khelpcenter/userguide/desktop.png -share/doc/HTML/es/khelpcenter/userguide/email.docbook -share/doc/HTML/es/khelpcenter/userguide/file-sharing.docbook -share/doc/HTML/es/khelpcenter/userguide/first-impressions.docbook -share/doc/HTML/es/khelpcenter/userguide/font-installation.docbook -share/doc/HTML/es/khelpcenter/userguide/getting-help.docbook -share/doc/HTML/es/khelpcenter/userguide/getting-started.docbook -share/doc/HTML/es/khelpcenter/userguide/glossary.docbook -share/doc/HTML/es/khelpcenter/userguide/groupware-kontact.docbook -share/doc/HTML/es/khelpcenter/userguide/history.docbook -share/doc/HTML/es/khelpcenter/userguide/installation.docbook -share/doc/HTML/es/khelpcenter/userguide/internet-shortcuts.docbook -share/doc/HTML/es/khelpcenter/userguide/intro.docbook -share/doc/HTML/es/khelpcenter/userguide/juk.png -share/doc/HTML/es/khelpcenter/userguide/kaboodle.png -share/doc/HTML/es/khelpcenter/userguide/kcalc-systray.png -share/doc/HTML/es/khelpcenter/userguide/kcontrol.png -share/doc/HTML/es/khelpcenter/userguide/kde-as-root.docbook -share/doc/HTML/es/khelpcenter/userguide/kde-edutainment.docbook -share/doc/HTML/es/khelpcenter/userguide/kde-for-admins.docbook -share/doc/HTML/es/khelpcenter/userguide/kde-office.docbook -share/doc/HTML/es/khelpcenter/userguide/kdeadmin-apps.docbook -share/doc/HTML/es/khelpcenter/userguide/kdebase-apps.docbook -share/doc/HTML/es/khelpcenter/userguide/kdeedu-apps.docbook -share/doc/HTML/es/khelpcenter/userguide/kdegames-apps.docbook -share/doc/HTML/es/khelpcenter/userguide/kdegraphics-apps.docbook -share/doc/HTML/es/khelpcenter/userguide/kdemultimedia-apps.docbook -share/doc/HTML/es/khelpcenter/userguide/kdenetwork-apps.docbook -share/doc/HTML/es/khelpcenter/userguide/kdepim-apps.docbook -share/doc/HTML/es/khelpcenter/userguide/kdetoys-apps.docbook -share/doc/HTML/es/khelpcenter/userguide/kdeutils-apps.docbook -share/doc/HTML/es/khelpcenter/userguide/kmag.png -share/doc/HTML/es/khelpcenter/userguide/kmenu.png -share/doc/HTML/es/khelpcenter/userguide/kmousetool.png -share/doc/HTML/es/khelpcenter/userguide/kmouth.png -share/doc/HTML/es/khelpcenter/userguide/kmouth2.png -share/doc/HTML/es/khelpcenter/userguide/kmouth3.png -share/doc/HTML/es/khelpcenter/userguide/knode-identity.png -share/doc/HTML/es/khelpcenter/userguide/knode-mail-account.png -share/doc/HTML/es/khelpcenter/userguide/knode-news-account.png -share/doc/HTML/es/khelpcenter/userguide/knode-start.png -share/doc/HTML/es/khelpcenter/userguide/koffice-apps.docbook -share/doc/HTML/es/khelpcenter/userguide/konq-sidebar.png -share/doc/HTML/es/khelpcenter/userguide/konq-simple.png -share/doc/HTML/es/khelpcenter/userguide/konsole-intro.docbook -share/doc/HTML/es/khelpcenter/userguide/kopete.png -share/doc/HTML/es/khelpcenter/userguide/kppp-dialer-tab.png -share/doc/HTML/es/khelpcenter/userguide/kppp-wizard.png -share/doc/HTML/es/khelpcenter/userguide/messaging-intro.docbook -share/doc/HTML/es/khelpcenter/userguide/migrator-dictionary.docbook -share/doc/HTML/es/khelpcenter/userguide/more-help.docbook -share/doc/HTML/es/khelpcenter/userguide/net-connection-setup.docbook -share/doc/HTML/es/khelpcenter/userguide/networking-with-windows.docbook -share/doc/HTML/es/khelpcenter/userguide/noatun.png -share/doc/HTML/es/khelpcenter/userguide/oggfolder.png -share/doc/HTML/es/khelpcenter/userguide/open-file-dialog.png -share/doc/HTML/es/khelpcenter/userguide/panel-and-desktop.docbook -share/doc/HTML/es/khelpcenter/userguide/pdf-files.docbook -share/doc/HTML/es/khelpcenter/userguide/playing-audiocds.docbook -share/doc/HTML/es/khelpcenter/userguide/playing-movies.docbook -share/doc/HTML/es/khelpcenter/userguide/playing-music.docbook -share/doc/HTML/es/khelpcenter/userguide/printer-setup.docbook -share/doc/HTML/es/khelpcenter/userguide/printing-from-apps.docbook -share/doc/HTML/es/khelpcenter/userguide/programs-and-documents.docbook -share/doc/HTML/es/khelpcenter/userguide/programs-controlling.docbook -share/doc/HTML/es/khelpcenter/userguide/removable-disks.docbook -share/doc/HTML/es/khelpcenter/userguide/rip.png -share/doc/HTML/es/khelpcenter/userguide/ripsettings.png -share/doc/HTML/es/khelpcenter/userguide/screen-captures.docbook -share/doc/HTML/es/khelpcenter/userguide/services.png -share/doc/HTML/es/khelpcenter/userguide/shared-sessions.docbook -share/doc/HTML/es/khelpcenter/userguide/shortcuts.docbook -share/doc/HTML/es/khelpcenter/userguide/staff.docbook -share/doc/HTML/es/khelpcenter/userguide/standard-menu-entries.docbook -share/doc/HTML/es/khelpcenter/userguide/switching-sessions.docbook -share/doc/HTML/es/khelpcenter/userguide/the-filemanager.docbook -share/doc/HTML/es/khelpcenter/userguide/titlebar-menu.png -share/doc/HTML/es/khelpcenter/userguide/troubleshooting-network-x.docbook -share/doc/HTML/es/khelpcenter/userguide/troubleshooting-no-open.docbook -share/doc/HTML/es/khelpcenter/userguide/ug-faq.docbook -share/doc/HTML/es/khelpcenter/userguide/under-the-hood.docbook -share/doc/HTML/es/khelpcenter/userguide/usenet.docbook -share/doc/HTML/es/khelpcenter/userguide/where-next.docbook -share/doc/HTML/es/khelpcenter/userguide/windows-how-to.docbook -share/doc/HTML/es/khelpcenter/userguide/your-kde-account.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/khexedit/common -share/doc/HTML/es/khexedit/index.cache.bz2 -share/doc/HTML/es/khexedit/index.docbook -share/doc/HTML/es/khexedit/khexedit1.png -share/doc/HTML/es/kicker-applets/common -share/doc/HTML/es/kicker-applets/index.cache.bz2 -share/doc/HTML/es/kicker-applets/index.docbook -share/doc/HTML/es/kicker-applets/kolourpicker.docbook -share/doc/HTML/es/kicker-applets/ktimemon.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/kiconedit/common -share/doc/HTML/es/kiconedit/index.cache.bz2 -share/doc/HTML/es/kiconedit/index.docbook -share/doc/HTML/es/kinfocenter/blockdevices/common -share/doc/HTML/es/kinfocenter/blockdevices/index.cache.bz2 -share/doc/HTML/es/kinfocenter/blockdevices/index.docbook -share/doc/HTML/es/kinfocenter/common -share/doc/HTML/es/kinfocenter/devices/common -share/doc/HTML/es/kinfocenter/devices/index.cache.bz2 -share/doc/HTML/es/kinfocenter/devices/index.docbook -share/doc/HTML/es/kinfocenter/dma/common -share/doc/HTML/es/kinfocenter/dma/index.cache.bz2 -share/doc/HTML/es/kinfocenter/dma/index.docbook -share/doc/HTML/es/kinfocenter/index.cache.bz2 -share/doc/HTML/es/kinfocenter/index.docbook -share/doc/HTML/es/kinfocenter/interrupts/common -share/doc/HTML/es/kinfocenter/interrupts/index.cache.bz2 -share/doc/HTML/es/kinfocenter/interrupts/index.docbook -share/doc/HTML/es/kinfocenter/ioports/common -share/doc/HTML/es/kinfocenter/ioports/index.cache.bz2 -share/doc/HTML/es/kinfocenter/ioports/index.docbook -share/doc/HTML/es/kinfocenter/memory/common -share/doc/HTML/es/kinfocenter/memory/index.cache.bz2 -share/doc/HTML/es/kinfocenter/memory/index.docbook -share/doc/HTML/es/kinfocenter/nics/common -share/doc/HTML/es/kinfocenter/nics/index.cache.bz2 -share/doc/HTML/es/kinfocenter/nics/index.docbook -share/doc/HTML/es/kinfocenter/opengl/common -share/doc/HTML/es/kinfocenter/opengl/index.cache.bz2 -share/doc/HTML/es/kinfocenter/opengl/index.docbook -share/doc/HTML/es/kinfocenter/partitions/common -share/doc/HTML/es/kinfocenter/partitions/index.cache.bz2 -share/doc/HTML/es/kinfocenter/partitions/index.docbook -share/doc/HTML/es/kinfocenter/pci/common -share/doc/HTML/es/kinfocenter/pci/index.cache.bz2 -share/doc/HTML/es/kinfocenter/pci/index.docbook -share/doc/HTML/es/kinfocenter/pcmcia/common -share/doc/HTML/es/kinfocenter/pcmcia/index.cache.bz2 -share/doc/HTML/es/kinfocenter/pcmcia/index.docbook -share/doc/HTML/es/kinfocenter/processor/common -share/doc/HTML/es/kinfocenter/processor/index.cache.bz2 -share/doc/HTML/es/kinfocenter/processor/index.docbook -share/doc/HTML/es/kinfocenter/protocols/common -share/doc/HTML/es/kinfocenter/protocols/index.cache.bz2 -share/doc/HTML/es/kinfocenter/protocols/index.docbook -share/doc/HTML/es/kinfocenter/samba/common -share/doc/HTML/es/kinfocenter/samba/index.cache.bz2 -share/doc/HTML/es/kinfocenter/samba/index.docbook -share/doc/HTML/es/kinfocenter/scsi/common -share/doc/HTML/es/kinfocenter/scsi/index.cache.bz2 -share/doc/HTML/es/kinfocenter/scsi/index.docbook -share/doc/HTML/es/kinfocenter/sound/common -share/doc/HTML/es/kinfocenter/sound/index.cache.bz2 -share/doc/HTML/es/kinfocenter/sound/index.docbook -share/doc/HTML/es/kinfocenter/usb/common -share/doc/HTML/es/kinfocenter/usb/index.cache.bz2 -share/doc/HTML/es/kinfocenter/usb/index.docbook -share/doc/HTML/es/kinfocenter/xserver/common -share/doc/HTML/es/kinfocenter/xserver/index.cache.bz2 -share/doc/HTML/es/kinfocenter/xserver/index.docbook -share/doc/HTML/es/kioslave/audiocd.docbook -share/doc/HTML/es/kioslave/bzip.docbook -share/doc/HTML/es/kioslave/bzip2.docbook -share/doc/HTML/es/kioslave/cgi.docbook -share/doc/HTML/es/kioslave/common -share/doc/HTML/es/kioslave/data.docbook -share/doc/HTML/es/kioslave/file.docbook -share/doc/HTML/es/kioslave/finger.docbook -share/doc/HTML/es/kioslave/fish.docbook -share/doc/HTML/es/kioslave/floppy.docbook -share/doc/HTML/es/kioslave/ftp.docbook -share/doc/HTML/es/kioslave/gopher.docbook -share/doc/HTML/es/kioslave/gzip.docbook -share/doc/HTML/es/kioslave/help.docbook -share/doc/HTML/es/kioslave/http.docbook -share/doc/HTML/es/kioslave/https.docbook -share/doc/HTML/es/kioslave/imap.docbook -share/doc/HTML/es/kioslave/imaps.docbook -share/doc/HTML/es/kioslave/index.cache.bz2 -share/doc/HTML/es/kioslave/index.docbook -share/doc/HTML/es/kioslave/info.docbook -share/doc/HTML/es/kioslave/lan.docbook -share/doc/HTML/es/kioslave/ldap.docbook -share/doc/HTML/es/kioslave/mac.docbook -share/doc/HTML/es/kioslave/mailto.docbook -share/doc/HTML/es/kioslave/man.docbook -share/doc/HTML/es/kioslave/mrml.docbook -share/doc/HTML/es/kioslave/news.docbook -share/doc/HTML/es/kioslave/nfs.docbook -share/doc/HTML/es/kioslave/nntp.docbook -share/doc/HTML/es/kioslave/pop3.docbook -share/doc/HTML/es/kioslave/pop3s.docbook -share/doc/HTML/es/kioslave/print.docbook -share/doc/HTML/es/kioslave/rlan.docbook -share/doc/HTML/es/kioslave/rlogin.docbook -share/doc/HTML/es/kioslave/sftp.docbook -share/doc/HTML/es/kioslave/smb.docbook -share/doc/HTML/es/kioslave/smtp.docbook -share/doc/HTML/es/kioslave/tar.docbook -share/doc/HTML/es/kioslave/telnet.docbook -share/doc/HTML/es/kioslave/thumbnail.docbook -share/doc/HTML/es/kioslave/webdav.docbook -share/doc/HTML/es/kioslave/webdavs.docbook -share/doc/HTML/es/kiten/common -share/doc/HTML/es/kiten/index.cache.bz2 -share/doc/HTML/es/kiten/index.docbook -share/doc/HTML/es/kjots/common -share/doc/HTML/es/kjots/index.cache.bz2 -share/doc/HTML/es/kjots/index.docbook -share/doc/HTML/es/kjumpingcube/common -share/doc/HTML/es/kjumpingcube/index.cache.bz2 -share/doc/HTML/es/kjumpingcube/index.docbook -share/doc/HTML/es/klatin/adjectives.docbook -share/doc/HTML/es/klatin/nouns.docbook -share/doc/HTML/es/klatin/numbers.docbook -share/doc/HTML/es/klatin/pronouns.docbook -share/doc/HTML/es/klatin/verbs.docbook -share/doc/HTML/es/kleopatra/common -share/doc/HTML/es/kleopatra/index.cache.bz2 -share/doc/HTML/es/kleopatra/index.docbook -share/doc/HTML/es/klettres/common -share/doc/HTML/es/klettres/index.cache.bz2 -share/doc/HTML/es/klettres/index.docbook -share/doc/HTML/es/klickety/common -share/doc/HTML/es/klickety/index.cache.bz2 -share/doc/HTML/es/klickety/index.docbook -share/doc/HTML/es/klines/common -share/doc/HTML/es/klines/index.cache.bz2 -share/doc/HTML/es/klines/index.docbook -share/doc/HTML/es/klinkstatus/common -share/doc/HTML/es/klinkstatus/index.cache.bz2 -share/doc/HTML/es/klinkstatus/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/kmag/common -share/doc/HTML/es/kmag/index.cache.bz2 -share/doc/HTML/es/kmag/index.docbook -share/doc/HTML/es/kmag/screenshot.png -share/doc/HTML/es/kmahjongg/common -share/doc/HTML/es/kmahjongg/index.cache.bz2 -share/doc/HTML/es/kmahjongg/index.docbook -share/doc/HTML/es/kmail/common -share/doc/HTML/es/kmail/configure.docbook -share/doc/HTML/es/kmail/credits-and-licenses.docbook -share/doc/HTML/es/kmail/faq.docbook -share/doc/HTML/es/kmail/getting-started.docbook -share/doc/HTML/es/kmail/importing.docbook -share/doc/HTML/es/kmail/index.cache.bz2 -share/doc/HTML/es/kmail/index.docbook -share/doc/HTML/es/kmail/intro.docbook -share/doc/HTML/es/kmail/menus.docbook -share/doc/HTML/es/kmail/using-kmail.docbook -share/doc/HTML/es/kmathtool/common -share/doc/HTML/es/kmathtool/index.cache.bz2 -share/doc/HTML/es/kmathtool/index.docbook -share/doc/HTML/es/kmenuedit/common -share/doc/HTML/es/kmenuedit/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/kmessedwords/common -share/doc/HTML/es/kmessedwords/index.cache.bz2 -share/doc/HTML/es/kmessedwords/index.docbook -share/doc/HTML/es/kmessedwords/kmw1.png -share/doc/HTML/es/kmessedwords/kmw2.png -share/doc/HTML/es/kmid/common -share/doc/HTML/es/kmid/index.cache.bz2 -share/doc/HTML/es/kmid/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/kmousetool/common -share/doc/HTML/es/kmousetool/index.cache.bz2 -share/doc/HTML/es/kmousetool/index.docbook -share/doc/HTML/es/kmouth/common -share/doc/HTML/es/kmouth/index.cache.bz2 -share/doc/HTML/es/kmouth/index.docbook -share/doc/HTML/es/kmouth/kmouthcpref.eps -share/doc/HTML/es/kmouth/kmouthcpref.png -share/doc/HTML/es/kmouth/kmouthctts.eps -share/doc/HTML/es/kmouth/kmouthctts.png -share/doc/HTML/es/kmouth/kmouthcwcp.eps -share/doc/HTML/es/kmouth/kmouthcwcp.png -share/doc/HTML/es/kmouth/kmouthedit.eps -share/doc/HTML/es/kmouth/kmouthedit.png -share/doc/HTML/es/kmouth/kmouthmain.eps -share/doc/HTML/es/kmouth/kmouthmain.png -share/doc/HTML/es/kmouth/kmouthwizard.eps -share/doc/HTML/es/kmouth/kmouthwizard.png -share/doc/HTML/es/kmplot/axesdlg.png -share/doc/HTML/es/kmplot/axesopt.png -share/doc/HTML/es/kmplot/commands.docbook -share/doc/HTML/es/kmplot/configuration.docbook -share/doc/HTML/es/kmplot/credits.docbook -share/doc/HTML/es/kmplot/developer.docbook -share/doc/HTML/es/kmplot/functionsdlg.png -share/doc/HTML/es/kmplot/griddlg.png -share/doc/HTML/es/kmplot/install.docbook -share/doc/HTML/es/kmplot/introduction.docbook -share/doc/HTML/es/kmplot/main.png -share/doc/HTML/es/kmplot/menu.docbook -share/doc/HTML/es/kmplot/namesdlg.png -share/doc/HTML/es/kmplot/reference.docbook -share/doc/HTML/es/kmplot/scaledlg.png -share/doc/HTML/es/kmplot/settingsdlg.png -share/doc/HTML/es/kmplot/stepdlg.png -share/doc/HTML/es/kmplot/toolbar.png -share/doc/HTML/es/kmplot/using.docbook -share/doc/HTML/es/knode/commands.docbook -share/doc/HTML/es/knode/common -share/doc/HTML/es/knode/credits.docbook -share/doc/HTML/es/knode/faq.docbook -share/doc/HTML/es/knode/gloss.docbook -share/doc/HTML/es/knode/index.cache.bz2 -share/doc/HTML/es/knode/index.docbook -share/doc/HTML/es/knode/install.docbook -share/doc/HTML/es/knode/introduction.docbook -share/doc/HTML/es/knode/journey.docbook -share/doc/HTML/es/knode/more.docbook -share/doc/HTML/es/knode/using-firststart.docbook -share/doc/HTML/es/knode/using-morefeatures.docbook -share/doc/HTML/es/knode/using-subscribing.docbook -share/doc/HTML/es/knotes/common -share/doc/HTML/es/knotes/index.cache.bz2 -share/doc/HTML/es/knotes/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/kolf/common -share/doc/HTML/es/kolf/index.cache.bz2 -share/doc/HTML/es/kolf/index.docbook -share/doc/HTML/es/kolourpaint/common -share/doc/HTML/es/kolourpaint/index.cache.bz2 -share/doc/HTML/es/kolourpaint/index.docbook -share/doc/HTML/es/kommander/basics.docbook -share/doc/HTML/es/kommander/commands.docbook -share/doc/HTML/es/kommander/common -share/doc/HTML/es/kommander/credits.docbook -share/doc/HTML/es/kommander/dcop.docbook -share/doc/HTML/es/kommander/editor.docbook -share/doc/HTML/es/kommander/extending.docbook -share/doc/HTML/es/kommander/glossary.docbook -share/doc/HTML/es/kommander/index.cache.bz2 -share/doc/HTML/es/kommander/index.docbook -share/doc/HTML/es/kommander/installation.docbook -share/doc/HTML/es/kommander/introduction.docbook -share/doc/HTML/es/kommander/q-and-a.docbook -share/doc/HTML/es/kommander/specials.docbook -share/doc/HTML/es/kommander/tutorials.docbook -share/doc/HTML/es/kommander/widgets.docbook -share/doc/HTML/es/kompare/common -share/doc/HTML/es/kompare/index.cache.bz2 -share/doc/HTML/es/kompare/index.docbook -share/doc/HTML/es/konq-plugins/babel/common -share/doc/HTML/es/konq-plugins/babel/index.cache.bz2 -share/doc/HTML/es/konq-plugins/babel/index.docbook -share/doc/HTML/es/konq-plugins/common -share/doc/HTML/es/konq-plugins/crashes/common -share/doc/HTML/es/konq-plugins/crashes/index.cache.bz2 -share/doc/HTML/es/konq-plugins/crashes/index.docbook -share/doc/HTML/es/konq-plugins/dirfilter/common -share/doc/HTML/es/konq-plugins/dirfilter/index.cache.bz2 -share/doc/HTML/es/konq-plugins/dirfilter/index.docbook -share/doc/HTML/es/konq-plugins/domtreeviewer/common -share/doc/HTML/es/konq-plugins/domtreeviewer/index.cache.bz2 -share/doc/HTML/es/konq-plugins/domtreeviewer/index.docbook -share/doc/HTML/es/konq-plugins/fsview/common -share/doc/HTML/es/konq-plugins/fsview/index.cache.bz2 -share/doc/HTML/es/konq-plugins/fsview/index.docbook -share/doc/HTML/es/konq-plugins/imgallery/common -share/doc/HTML/es/konq-plugins/imgallery/index.cache.bz2 -share/doc/HTML/es/konq-plugins/imgallery/index.docbook -share/doc/HTML/es/konq-plugins/index.cache.bz2 -share/doc/HTML/es/konq-plugins/index.docbook -share/doc/HTML/es/konq-plugins/khtmlsettings/common -share/doc/HTML/es/konq-plugins/khtmlsettings/index.cache.bz2 -share/doc/HTML/es/konq-plugins/khtmlsettings/index.docbook -share/doc/HTML/es/konq-plugins/kuick/common -share/doc/HTML/es/konq-plugins/kuick/index.cache.bz2 -share/doc/HTML/es/konq-plugins/kuick/index.docbook -share/doc/HTML/es/konq-plugins/mediaplayer/common -share/doc/HTML/es/konq-plugins/mediaplayer/index.cache.bz2 -share/doc/HTML/es/konq-plugins/mediaplayer/index.docbook -share/doc/HTML/es/konq-plugins/smbmounter/common -share/doc/HTML/es/konq-plugins/smbmounter/index.cache.bz2 -share/doc/HTML/es/konq-plugins/smbmounter/index.docbook -share/doc/HTML/es/konq-plugins/uachanger/common -share/doc/HTML/es/konq-plugins/uachanger/index.cache.bz2 -share/doc/HTML/es/konq-plugins/uachanger/index.docbook -share/doc/HTML/es/konq-plugins/validators/common -share/doc/HTML/es/konq-plugins/validators/index.cache.bz2 -share/doc/HTML/es/konq-plugins/validators/index.docbook -share/doc/HTML/es/konq-plugins/webarchiver/common -share/doc/HTML/es/konq-plugins/webarchiver/index.cache.bz2 -share/doc/HTML/es/konq-plugins/webarchiver/index.docbook -share/doc/HTML/es/konqueror/basics.docbook -share/doc/HTML/es/konqueror/bookmarks.docbook -share/doc/HTML/es/konqueror/browser.docbook -share/doc/HTML/es/konqueror/cmndline.png -share/doc/HTML/es/konqueror/commands.docbook -share/doc/HTML/es/konqueror/config.docbook -share/doc/HTML/es/konqueror/credits.docbook -share/doc/HTML/es/konqueror/dirtree.png -share/doc/HTML/es/konqueror/dragdrop.png -share/doc/HTML/es/konqueror/faq.docbook -share/doc/HTML/es/konqueror/filemanager.docbook -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/introduction.docbook -share/doc/HTML/es/konqueror/konqorg.png -share/doc/HTML/es/konqueror/konqueror.png -share/doc/HTML/es/konqueror/parts.png -share/doc/HTML/es/konqueror/path-complete.docbook -share/doc/HTML/es/konqueror/plugins.docbook -share/doc/HTML/es/konqueror/save-settings.docbook -share/doc/HTML/es/konqueror/shortcut1.png -share/doc/HTML/es/konqueror/shortcut2.png -share/doc/HTML/es/konqueror/sidebar.docbook -share/doc/HTML/es/konquest/common -share/doc/HTML/es/konquest/index.cache.bz2 -share/doc/HTML/es/konquest/index.docbook -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/konsolekalendar/common -share/doc/HTML/es/konsolekalendar/index.cache.bz2 -share/doc/HTML/es/konsolekalendar/index.docbook -share/doc/HTML/es/kontact/common -share/doc/HTML/es/kontact/index.cache.bz2 -share/doc/HTML/es/kontact/index.docbook -share/doc/HTML/es/kooka/common -share/doc/HTML/es/kooka/index.cache.bz2 -share/doc/HTML/es/kooka/index.docbook -share/doc/HTML/es/kopete/menus.docbook -share/doc/HTML/es/korganizer/common -share/doc/HTML/es/korganizer/exchange-plugin.docbook -share/doc/HTML/es/korganizer/group-scheduling.docbook -share/doc/HTML/es/korganizer/index.cache.bz2 -share/doc/HTML/es/korganizer/index.docbook -share/doc/HTML/es/korganizer/outlook-to-vcalendar.docbook -share/doc/HTML/es/korganizer/plugins-chapter.docbook -share/doc/HTML/es/korn/common -share/doc/HTML/es/korn/index.cache.bz2 -share/doc/HTML/es/korn/index.docbook -share/doc/HTML/es/kpackage/bsdloc.png -share/doc/HTML/es/kpackage/common -share/doc/HTML/es/kpackage/debaptloc.png -share/doc/HTML/es/kpackage/debloc.png -share/doc/HTML/es/kpackage/handle.png -share/doc/HTML/es/kpackage/index.cache.bz2 -share/doc/HTML/es/kpackage/index.docbook -share/doc/HTML/es/kpackage/install.png -share/doc/HTML/es/kpackage/left.png -share/doc/HTML/es/kpackage/right-change.png -share/doc/HTML/es/kpackage/right-files.png -share/doc/HTML/es/kpackage/right-prop.png -share/doc/HTML/es/kpackage/rpmloc.png -share/doc/HTML/es/kpackage/slackloc.png -share/doc/HTML/es/kpackage/uninstall.png -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/kpaint/common -share/doc/HTML/es/kpaint/index.cache.bz2 -share/doc/HTML/es/kpaint/index.docbook -share/doc/HTML/es/kpat/common -share/doc/HTML/es/kpat/index.cache.bz2 -share/doc/HTML/es/kpat/index.docbook -share/doc/HTML/es/kpat/man-kpat.6.docbook -share/doc/HTML/es/kpat/man.docbook -share/doc/HTML/es/kpdf/common -share/doc/HTML/es/kpdf/index.cache.bz2 -share/doc/HTML/es/kpdf/index.docbook -share/doc/HTML/es/kpercentage/commands.docbook -share/doc/HTML/es/kpercentage/common -share/doc/HTML/es/kpercentage/credits.docbook -share/doc/HTML/es/kpercentage/devel.docbook -share/doc/HTML/es/kpercentage/faq.docbook -share/doc/HTML/es/kpercentage/index.cache.bz2 -share/doc/HTML/es/kpercentage/index.docbook -share/doc/HTML/es/kpercentage/install.docbook -share/doc/HTML/es/kpercentage/introduction.docbook -share/doc/HTML/es/kpercentage/using.docbook -share/doc/HTML/es/kpf/common -share/doc/HTML/es/kpf/index.cache.bz2 -share/doc/HTML/es/kpf/index.docbook -share/doc/HTML/es/kpilot/common -share/doc/HTML/es/kpilot/configuration.docbook -share/doc/HTML/es/kpilot/faq.docbook -share/doc/HTML/es/kpilot/index.cache.bz2 -share/doc/HTML/es/kpilot/index.docbook -share/doc/HTML/es/kpilot/sync.docbook -share/doc/HTML/es/kpilot/usage.docbook -share/doc/HTML/es/kpoker/common -share/doc/HTML/es/kpoker/index.cache.bz2 -share/doc/HTML/es/kpoker/index.docbook -share/doc/HTML/es/kpoker/kpoker1.png -share/doc/HTML/es/kpoker/kpoker2.png -share/doc/HTML/es/kpovmodeler/common -share/doc/HTML/es/kpovmodeler/index.cache.bz2 -share/doc/HTML/es/kpovmodeler/index.docbook -share/doc/HTML/es/kppp/accounting.docbook -share/doc/HTML/es/kppp/callback.docbook -share/doc/HTML/es/kppp/chap.docbook -share/doc/HTML/es/kppp/dialog-setup.docbook -share/doc/HTML/es/kppp/getting-online.docbook -share/doc/HTML/es/kppp/global-settings.docbook -share/doc/HTML/es/kppp/hayes.docbook -share/doc/HTML/es/kppp/kppp-faq.docbook -share/doc/HTML/es/kppp/security.docbook -share/doc/HTML/es/kppp/tricks.docbook -share/doc/HTML/es/kppp/wizard.docbook -share/doc/HTML/es/krdc/common -share/doc/HTML/es/krdc/index.cache.bz2 -share/doc/HTML/es/krdc/index.docbook -share/doc/HTML/es/kreversi/common -share/doc/HTML/es/kreversi/index.cache.bz2 -share/doc/HTML/es/kreversi/index.docbook -share/doc/HTML/es/kruler/common -share/doc/HTML/es/kruler/index.cache.bz2 -share/doc/HTML/es/kruler/index.docbook -share/doc/HTML/es/ksame/common -share/doc/HTML/es/ksame/index.cache.bz2 -share/doc/HTML/es/ksame/index.docbook -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/kshisen/common -share/doc/HTML/es/kshisen/index.cache.bz2 -share/doc/HTML/es/kshisen/index.docbook -share/doc/HTML/es/ksim/common -share/doc/HTML/es/ksim/index.cache.bz2 -share/doc/HTML/es/ksim/index.docbook -share/doc/HTML/es/ksirtet/common -share/doc/HTML/es/ksirtet/index.cache.bz2 -share/doc/HTML/es/ksirtet/index.docbook -share/doc/HTML/es/ksnake/common -share/doc/HTML/es/ksnake/index.cache.bz2 -share/doc/HTML/es/ksnake/index.docbook -share/doc/HTML/es/ksnapshot/common -share/doc/HTML/es/ksnapshot/index.cache.bz2 -share/doc/HTML/es/ksnapshot/index.docbook -share/doc/HTML/es/ksnapshot/preview.png -share/doc/HTML/es/ksnapshot/window.png -share/doc/HTML/es/ksokoban/common -share/doc/HTML/es/ksokoban/index.cache.bz2 -share/doc/HTML/es/ksokoban/index.docbook -share/doc/HTML/es/kspaceduel/common -share/doc/HTML/es/kspaceduel/index.cache.bz2 -share/doc/HTML/es/kspaceduel/index.docbook -share/doc/HTML/es/kspell/common -share/doc/HTML/es/kspell/index.cache.bz2 -share/doc/HTML/es/kspell/index.docbook -share/doc/HTML/es/kstars/ai-contents.docbook -share/doc/HTML/es/kstars/astroinfo.docbook -share/doc/HTML/es/kstars/blackbody.docbook -share/doc/HTML/es/kstars/calc-apcoords.docbook -share/doc/HTML/es/kstars/calc-dayduration.docbook -share/doc/HTML/es/kstars/calc-eqgal.docbook -share/doc/HTML/es/kstars/calc-geodetic.docbook -share/doc/HTML/es/kstars/calc-horizontal.docbook -share/doc/HTML/es/kstars/calc-julianday.docbook -share/doc/HTML/es/kstars/calc-precess.docbook -share/doc/HTML/es/kstars/calc-sidereal.docbook -share/doc/HTML/es/kstars/cequator.docbook -share/doc/HTML/es/kstars/colorandtemp.docbook -share/doc/HTML/es/kstars/commands.docbook -share/doc/HTML/es/kstars/config.docbook -share/doc/HTML/es/kstars/cpoles.docbook -share/doc/HTML/es/kstars/credits.docbook -share/doc/HTML/es/kstars/csphere.docbook -share/doc/HTML/es/kstars/darkmatter.docbook -share/doc/HTML/es/kstars/dumpmode.docbook -share/doc/HTML/es/kstars/ecliptic.docbook -share/doc/HTML/es/kstars/ellipticalgalaxies.docbook -share/doc/HTML/es/kstars/equinox.docbook -share/doc/HTML/es/kstars/faq.docbook -share/doc/HTML/es/kstars/flux.docbook -share/doc/HTML/es/kstars/geocoords.docbook -share/doc/HTML/es/kstars/greatcircle.docbook -share/doc/HTML/es/kstars/horizon.docbook -share/doc/HTML/es/kstars/hourangle.docbook -share/doc/HTML/es/kstars/install.docbook -share/doc/HTML/es/kstars/jmoons.docbook -share/doc/HTML/es/kstars/julianday.docbook -share/doc/HTML/es/kstars/leapyear.docbook -share/doc/HTML/es/kstars/luminosity.docbook -share/doc/HTML/es/kstars/magnitude.docbook -share/doc/HTML/es/kstars/meridian.docbook -share/doc/HTML/es/kstars/parallax.docbook -share/doc/HTML/es/kstars/precession.docbook -share/doc/HTML/es/kstars/quicktour.docbook -share/doc/HTML/es/kstars/retrograde.docbook -share/doc/HTML/es/kstars/sidereal.docbook -share/doc/HTML/es/kstars/skycoords.docbook -share/doc/HTML/es/kstars/solarsys.docbook -share/doc/HTML/es/kstars/stars.docbook -share/doc/HTML/es/kstars/timezones.docbook -share/doc/HTML/es/kstars/tools.docbook -share/doc/HTML/es/kstars/utime.docbook -share/doc/HTML/es/kstars/zenith.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/config.png -share/doc/HTML/es/kteatime/index.cache.bz2 -share/doc/HTML/es/kteatime/index.docbook -share/doc/HTML/es/ktimer/common -share/doc/HTML/es/ktimer/index.cache.bz2 -share/doc/HTML/es/ktimer/index.docbook -share/doc/HTML/es/ktnef/common -share/doc/HTML/es/ktnef/index.cache.bz2 -share/doc/HTML/es/ktnef/index.docbook -share/doc/HTML/es/ktouch/common -share/doc/HTML/es/ktouch/index.cache.bz2 -share/doc/HTML/es/ktouch/index.docbook -share/doc/HTML/es/ktron/common -share/doc/HTML/es/ktron/index.cache.bz2 -share/doc/HTML/es/ktron/index.docbook -share/doc/HTML/es/kttsd/addtalker.png -share/doc/HTML/es/kttsd/audio.png -share/doc/HTML/es/kttsd/common -share/doc/HTML/es/kttsd/festivalintconf.png -share/doc/HTML/es/kttsd/filters.png -share/doc/HTML/es/kttsd/general.png -share/doc/HTML/es/kttsd/index.cache.bz2 -share/doc/HTML/es/kttsd/index.docbook -share/doc/HTML/es/kttsd/interruption.png -share/doc/HTML/es/kttsd/jobs.png -share/doc/HTML/es/kttsd/stringreplacer.png -share/doc/HTML/es/kttsd/talkerchooser.png -share/doc/HTML/es/kttsd/talkers.png -share/doc/HTML/es/kttsd/xmltransformer.png -share/doc/HTML/es/ktuberling/common -share/doc/HTML/es/ktuberling/index.cache.bz2 -share/doc/HTML/es/ktuberling/index.docbook -share/doc/HTML/es/ktuberling/technical-reference.docbook -share/doc/HTML/es/kuickshow/common -share/doc/HTML/es/kuickshow/index.cache.bz2 -share/doc/HTML/es/kuickshow/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/kuser/kuser.png -share/doc/HTML/es/kverbos/common -share/doc/HTML/es/kverbos/index.cache.bz2 -share/doc/HTML/es/kverbos/index.docbook -share/doc/HTML/es/kview/common -share/doc/HTML/es/kview/index.cache.bz2 -share/doc/HTML/es/kview/index.docbook -share/doc/HTML/es/kview/snapshot1.png -share/doc/HTML/es/kview/snapshot2.png -share/doc/HTML/es/kview/snapshot3.png -share/doc/HTML/es/kview/snapshot4.png -share/doc/HTML/es/kview/snapshot5.png -share/doc/HTML/es/kview/snapshot6.png -share/doc/HTML/es/kview/snapshot7.png -share/doc/HTML/es/kview/snapshot8.png -share/doc/HTML/es/kview/snapshot9.png -share/doc/HTML/es/kvoctrain/common -share/doc/HTML/es/kvoctrain/index.cache.bz2 -share/doc/HTML/es/kvoctrain/index.docbook -share/doc/HTML/es/kwatchgnupg/common -share/doc/HTML/es/kwatchgnupg/index.cache.bz2 -share/doc/HTML/es/kwatchgnupg/index.docbook -share/doc/HTML/es/kweather/common -share/doc/HTML/es/kweather/index.cache.bz2 -share/doc/HTML/es/kweather/index.docbook -share/doc/HTML/es/kwifimanager/common -share/doc/HTML/es/kwifimanager/index.cache.bz2 -share/doc/HTML/es/kwifimanager/index.docbook -share/doc/HTML/es/kwin4/common -share/doc/HTML/es/kwin4/index.cache.bz2 -share/doc/HTML/es/kwin4/index.docbook -share/doc/HTML/es/kworldclock/common -share/doc/HTML/es/kworldclock/index.cache.bz2 -share/doc/HTML/es/kworldclock/index.docbook -share/doc/HTML/es/kworldclock/man-kworldclock.1.docbook -share/doc/HTML/es/kworldclock/screenshot-clock-dialog.png -share/doc/HTML/es/kworldclock/screenshot-mlb.png -share/doc/HTML/es/kworldclock/screenshot-quairading-clock.png -share/doc/HTML/es/kworldclock/screenshot-quairading-dialog.png -share/doc/HTML/es/kworldclock/screenshot-rmb-cities.png -share/doc/HTML/es/kworldclock/screenshot-rmb-clock.png -share/doc/HTML/es/kworldclock/screenshot-rmb-daylight.png -share/doc/HTML/es/kworldclock/screenshot-rmb-flags.png -share/doc/HTML/es/kworldclock/screenshot-withclocks.png -share/doc/HTML/es/kworldclock/screenshot-withflags.png -share/doc/HTML/es/kworldclock/screenshot.png -share/doc/HTML/es/kwuftpd/common -share/doc/HTML/es/kwuftpd/index.cache.bz2 -share/doc/HTML/es/kwuftpd/index.docbook -share/doc/HTML/es/kxconfig/common -share/doc/HTML/es/kxconfig/index.cache.bz2 -share/doc/HTML/es/kxconfig/index.docbook -share/doc/HTML/es/kxsldbg/callstack.docbook -share/doc/HTML/es/kxsldbg/credits.docbook -share/doc/HTML/es/kxsldbg/entities.docbook -share/doc/HTML/es/kxsldbg/glossary.docbook -share/doc/HTML/es/kxsldbg/kxsldbg_configure.docbook -share/doc/HTML/es/kxsldbg/kxsldbg_inspector.docbook -share/doc/HTML/es/kxsldbg/kxsldbg_mainwindow.docbook -share/doc/HTML/es/kxsldbg/kxsldbg_tools.docbook -share/doc/HTML/es/kxsldbg/sources.docbook -share/doc/HTML/es/kxsldbg/templates.docbook -share/doc/HTML/es/kxsldbg/variables.docbook -share/doc/HTML/es/lisa/common -share/doc/HTML/es/lisa/index.cache.bz2 -share/doc/HTML/es/lisa/index.docbook -share/doc/HTML/es/lskat/common -share/doc/HTML/es/lskat/index.cache.bz2 -share/doc/HTML/es/lskat/index.docbook -share/doc/HTML/es/megami/common -share/doc/HTML/es/megami/index.cache.bz2 -share/doc/HTML/es/megami/index.docbook -share/doc/HTML/es/multisynk/common -share/doc/HTML/es/multisynk/index.cache.bz2 -share/doc/HTML/es/multisynk/index.docbook -share/doc/HTML/es/multisynk/konnectors-chapter.docbook -share/doc/HTML/es/noatun/common -share/doc/HTML/es/noatun/index.cache.bz2 -share/doc/HTML/es/noatun/index.docbook -share/doc/HTML/es/quanta/adv-quanta.docbook -share/doc/HTML/es/quanta/config-quanta.docbook -share/doc/HTML/es/quanta/credits-license.docbook -share/doc/HTML/es/quanta/debugging-quanta.docbook -share/doc/HTML/es/quanta/extending-quanta.docbook -share/doc/HTML/es/quanta/fundamentals.docbook -share/doc/HTML/es/quanta/glossary.docbook -share/doc/HTML/es/quanta/installation.docbook -share/doc/HTML/es/quanta/introduction.docbook -share/doc/HTML/es/quanta/man-quanta.1.docbook -share/doc/HTML/es/quanta/q-and-a.docbook -share/doc/HTML/es/quanta/quanta-menus.docbook -share/doc/HTML/es/quanta/quanta-projects.docbook -share/doc/HTML/es/quanta/working-with-quanta.docbook -share/doc/HTML/es/scripts/man-adddebug.1.docbook -share/doc/HTML/es/scripts/man-cheatmake.1.docbook -share/doc/HTML/es/scripts/man-create_cvsignore.1.docbook -share/doc/HTML/es/scripts/man-create_makefiles.1.docbook -share/doc/HTML/es/scripts/man-cvscheck.1.docbook -share/doc/HTML/es/scripts/man-cvslastchange.1.docbook -share/doc/HTML/es/scripts/man-cvslastlog.1.docbook -share/doc/HTML/es/scripts/man-cvsrevertlast.1.docbook -share/doc/HTML/es/scripts/man-cxxmetric.1.docbook -share/doc/HTML/es/scripts/man-demangle.1.docbook -share/doc/HTML/es/scripts/man-extend_dmalloc.1.docbook -share/doc/HTML/es/scripts/man-extractrc.1.docbook -share/doc/HTML/es/scripts/man-fixincludes.1.docbook -share/doc/HTML/es/scripts/man-po2xml.1.docbook -share/doc/HTML/es/scripts/man-pruneemptydirs.1.docbook -share/doc/HTML/es/scripts/man-qtdoc.1.docbook -share/doc/HTML/es/scripts/man-reportview.1.docbook -share/doc/HTML/es/scripts/man-split2po.1.docbook -share/doc/HTML/es/scripts/man-swappo.1.docbook -share/doc/HTML/es/scripts/man-transxx.1.docbook -share/doc/HTML/es/scripts/man-xml2pot.1.docbook -share/doc/HTML/es/scripts/man-zonetab2pot.1.docbook -share/doc/HTML/es/umbrello/authors.docbook -share/doc/HTML/es/umbrello/code_import_and_generation.docbook -share/doc/HTML/es/umbrello/credits.docbook -share/doc/HTML/es/umbrello/faq.docbook -share/doc/HTML/es/umbrello/installation.docbook -share/doc/HTML/es/umbrello/introduction.docbook -share/doc/HTML/es/umbrello/other_features.docbook -share/doc/HTML/es/umbrello/uml_basics.docbook -share/doc/HTML/es/umbrello/working_with_umbrello.docbook -share/doc/HTML/es/xsldbg/commands.docbook -share/doc/HTML/es/xsldbg/credits.docbook -share/doc/HTML/es/xsldbg/introduction.docbook -share/doc/HTML/es/xsldbg/usage.docbook -share/locale/es/LC_MESSAGES/akregator.mo -share/locale/es/LC_MESSAGES/akregator_konqplugin.mo -share/locale/es/LC_MESSAGES/alsaplayerui.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/ark_plugin.mo -share/locale/es/LC_MESSAGES/artsbuilder.mo -share/locale/es/LC_MESSAGES/artscontrol.mo -share/locale/es/LC_MESSAGES/artsmodules.mo -share/locale/es/LC_MESSAGES/atlantik.mo -share/locale/es/LC_MESSAGES/atlantikdesigner.mo -share/locale/es/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/es/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/es/LC_MESSAGES/audiorename_plugin.mo -share/locale/es/LC_MESSAGES/autorefresh.mo -share/locale/es/LC_MESSAGES/babelfish.mo -share/locale/es/LC_MESSAGES/cervisia.mo -share/locale/es/LC_MESSAGES/charlatanui.mo -share/locale/es/LC_MESSAGES/childpanelextension.mo -share/locale/es/LC_MESSAGES/clockapplet.mo -share/locale/es/LC_MESSAGES/crashesplugin.mo -share/locale/es/LC_MESSAGES/cupsdconf.mo -share/locale/es/LC_MESSAGES/cvsservice.mo -share/locale/es/LC_MESSAGES/dcoprss.mo -share/locale/es/LC_MESSAGES/devicesapplet.mo -share/locale/es/LC_MESSAGES/dirfilterplugin.mo -share/locale/es/LC_MESSAGES/display.mo -share/locale/es/LC_MESSAGES/dockbarextension.mo -share/locale/es/LC_MESSAGES/domtreeviewer.mo -share/locale/es/LC_MESSAGES/drkonqi.mo -share/locale/es/LC_MESSAGES/dub.mo -share/locale/es/LC_MESSAGES/extensionproxy.mo -share/locale/es/LC_MESSAGES/ffrs.mo -share/locale/es/LC_MESSAGES/filetypes.mo -share/locale/es/LC_MESSAGES/fontinst.mo -share/locale/es/LC_MESSAGES/fsview.mo -share/locale/es/LC_MESSAGES/htmlsearch.mo -share/locale/es/LC_MESSAGES/imagerename_plugin.mo -share/locale/es/LC_MESSAGES/imgalleryplugin.mo -share/locale/es/LC_MESSAGES/irkick.mo -share/locale/es/LC_MESSAGES/jefferson.mo -share/locale/es/LC_MESSAGES/joystick.mo -share/locale/es/LC_MESSAGES/juk.mo -share/locale/es/LC_MESSAGES/kabc2mutt.mo -share/locale/es/LC_MESSAGES/kabc_dir.mo -share/locale/es/LC_MESSAGES/kabc_file.mo -share/locale/es/LC_MESSAGES/kabc_ldap.mo -share/locale/es/LC_MESSAGES/kabc_ldapkio.mo -share/locale/es/LC_MESSAGES/kabc_net.mo -share/locale/es/LC_MESSAGES/kabc_slox.mo -share/locale/es/LC_MESSAGES/kabc_sql.mo -share/locale/es/LC_MESSAGES/kabcformat_binary.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/kalarm.mo -share/locale/es/LC_MESSAGES/kalzium.mo -share/locale/es/LC_MESSAGES/kandy.mo -share/locale/es/LC_MESSAGES/kappfinder.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/kate.mo -share/locale/es/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/es/LC_MESSAGES/katedefaultproject.mo -share/locale/es/LC_MESSAGES/katefiletemplates.mo -share/locale/es/LC_MESSAGES/katefll_initplugin.mo -share/locale/es/LC_MESSAGES/katefll_plugin.mo -share/locale/es/LC_MESSAGES/katehelloworld.mo -share/locale/es/LC_MESSAGES/katehtmltools.mo -share/locale/es/LC_MESSAGES/kateinsertcommand.mo -share/locale/es/LC_MESSAGES/katekjswrapper.mo -share/locale/es/LC_MESSAGES/katekttsd.mo -share/locale/es/LC_MESSAGES/katemake.mo -share/locale/es/LC_MESSAGES/katemodeline.mo -share/locale/es/LC_MESSAGES/kateopenheader.mo -share/locale/es/LC_MESSAGES/katepart.mo -share/locale/es/LC_MESSAGES/katepartkttsd.mo -share/locale/es/LC_MESSAGES/kateprojectmanager.mo -share/locale/es/LC_MESSAGES/katepybrowse.mo -share/locale/es/LC_MESSAGES/katesnippets.mo -share/locale/es/LC_MESSAGES/katespell.mo -share/locale/es/LC_MESSAGES/katetabbarextension.mo -share/locale/es/LC_MESSAGES/katetextfilter.mo -share/locale/es/LC_MESSAGES/katexmlcheck.mo -share/locale/es/LC_MESSAGES/katexmltools.mo -share/locale/es/LC_MESSAGES/katomic.mo -share/locale/es/LC_MESSAGES/kaudiocreator.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/kbinaryclock.mo -share/locale/es/LC_MESSAGES/kblackbox.mo -share/locale/es/LC_MESSAGES/kbounce.mo -share/locale/es/LC_MESSAGES/kbruch.mo -share/locale/es/LC_MESSAGES/kbstateapplet.mo -share/locale/es/LC_MESSAGES/kbugbuster.mo -share/locale/es/LC_MESSAGES/kcachegrind.mo -share/locale/es/LC_MESSAGES/kcalc.mo -share/locale/es/LC_MESSAGES/kcharselect.mo -share/locale/es/LC_MESSAGES/kcharselectapplet.mo -share/locale/es/LC_MESSAGES/kcm_krfb.mo -share/locale/es/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/es/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/es/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/es/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/es/LC_MESSAGES/kcmaccess.mo -share/locale/es/LC_MESSAGES/kcmaccessibility.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/kcmcddb.mo -share/locale/es/LC_MESSAGES/kcmcgi.mo -share/locale/es/LC_MESSAGES/kcmcolors.mo -share/locale/es/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/es/LC_MESSAGES/kcmcrypto.mo -share/locale/es/LC_MESSAGES/kcmcss.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/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/kcmkabconfig.mo -share/locale/es/LC_MESSAGES/kcmkamera.mo -share/locale/es/LC_MESSAGES/kcmkclock.mo -share/locale/es/LC_MESSAGES/kcmkded.mo -share/locale/es/LC_MESSAGES/kcmkdnssd.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/kcmkontactnt.mo -share/locale/es/LC_MESSAGES/kcmktalkd.mo -share/locale/es/LC_MESSAGES/kcmkttsd.mo -share/locale/es/LC_MESSAGES/kcmkuick.mo -share/locale/es/LC_MESSAGES/kcmkurifilt.mo -share/locale/es/LC_MESSAGES/kcmkvaio.mo -share/locale/es/LC_MESSAGES/kcmkwallet.mo -share/locale/es/LC_MESSAGES/kcmkwindecoration.mo -share/locale/es/LC_MESSAGES/kcmkwinrules.mo -share/locale/es/LC_MESSAGES/kcmkwintheme.mo -share/locale/es/LC_MESSAGES/kcmkwm.mo -share/locale/es/LC_MESSAGES/kcmkxmlrpcd.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/kcmlirc.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/kcmnic.mo -share/locale/es/LC_MESSAGES/kcmnotify.mo -share/locale/es/LC_MESSAGES/kcmperformance.mo -share/locale/es/LC_MESSAGES/kcmprintmgr.mo -share/locale/es/LC_MESSAGES/kcmsamba.mo -share/locale/es/LC_MESSAGES/kcmscreensaver.mo -share/locale/es/LC_MESSAGES/kcmshell.mo -share/locale/es/LC_MESSAGES/kcmsmartcard.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/kcmthinkpad.mo -share/locale/es/LC_MESSAGES/kcmusb.mo -share/locale/es/LC_MESSAGES/kcmview1394.mo -share/locale/es/LC_MESSAGES/kcmvim.mo -share/locale/es/LC_MESSAGES/kcmwifi.mo -share/locale/es/LC_MESSAGES/kcmxinerama.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/kdat.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/kdelibs_colors.mo -share/locale/es/LC_MESSAGES/kdelirc.mo -share/locale/es/LC_MESSAGES/kdepasswd.mo -share/locale/es/LC_MESSAGES/kdepimresources.mo -share/locale/es/LC_MESSAGES/kdepimwizards.mo -share/locale/es/LC_MESSAGES/kdeprint.mo -share/locale/es/LC_MESSAGES/kdeprint_part.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/kdesu.mo -share/locale/es/LC_MESSAGES/kdesud.mo -share/locale/es/LC_MESSAGES/kdevdesigner.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/kdgantt.mo -share/locale/es/LC_MESSAGES/kdialog.mo -share/locale/es/LC_MESSAGES/kdict.mo -share/locale/es/LC_MESSAGES/kdictapplet.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/keduca.mo -share/locale/es/LC_MESSAGES/kenolaba.mo -share/locale/es/LC_MESSAGES/kfax.mo -share/locale/es/LC_MESSAGES/kfifteenapplet.mo -share/locale/es/LC_MESSAGES/kfile_au.mo -share/locale/es/LC_MESSAGES/kfile_avi.mo -share/locale/es/LC_MESSAGES/kfile_bmp.mo -share/locale/es/LC_MESSAGES/kfile_cert.mo -share/locale/es/LC_MESSAGES/kfile_cpp.mo -share/locale/es/LC_MESSAGES/kfile_dds.mo -share/locale/es/LC_MESSAGES/kfile_deb.mo -share/locale/es/LC_MESSAGES/kfile_desktop.mo -share/locale/es/LC_MESSAGES/kfile_diff.mo -share/locale/es/LC_MESSAGES/kfile_drgeo.mo -share/locale/es/LC_MESSAGES/kfile_dvi.mo -share/locale/es/LC_MESSAGES/kfile_exr.mo -share/locale/es/LC_MESSAGES/kfile_flac.mo -share/locale/es/LC_MESSAGES/kfile_folder.mo -share/locale/es/LC_MESSAGES/kfile_font.mo -share/locale/es/LC_MESSAGES/kfile_gif.mo -share/locale/es/LC_MESSAGES/kfile_html.mo -share/locale/es/LC_MESSAGES/kfile_ico.mo -share/locale/es/LC_MESSAGES/kfile_ics.mo -share/locale/es/LC_MESSAGES/kfile_jpeg.mo -share/locale/es/LC_MESSAGES/kfile_kig.mo -share/locale/es/LC_MESSAGES/kfile_lnk.mo -share/locale/es/LC_MESSAGES/kfile_m3u.mo -share/locale/es/LC_MESSAGES/kfile_mhtml.mo -share/locale/es/LC_MESSAGES/kfile_mp3.mo -share/locale/es/LC_MESSAGES/kfile_mpc.mo -share/locale/es/LC_MESSAGES/kfile_ogg.mo -share/locale/es/LC_MESSAGES/kfile_palm.mo -share/locale/es/LC_MESSAGES/kfile_pcx.mo -share/locale/es/LC_MESSAGES/kfile_pdf.mo -share/locale/es/LC_MESSAGES/kfile_png.mo -share/locale/es/LC_MESSAGES/kfile_pnm.mo -share/locale/es/LC_MESSAGES/kfile_po.mo -share/locale/es/LC_MESSAGES/kfile_ps.mo -share/locale/es/LC_MESSAGES/kfile_rfc822.mo -share/locale/es/LC_MESSAGES/kfile_rgb.mo -share/locale/es/LC_MESSAGES/kfile_rpm.mo -share/locale/es/LC_MESSAGES/kfile_sid.mo -share/locale/es/LC_MESSAGES/kfile_tga.mo -share/locale/es/LC_MESSAGES/kfile_theora.mo -share/locale/es/LC_MESSAGES/kfile_tiff.mo -share/locale/es/LC_MESSAGES/kfile_torrent.mo -share/locale/es/LC_MESSAGES/kfile_ts.mo -share/locale/es/LC_MESSAGES/kfile_txt.mo -share/locale/es/LC_MESSAGES/kfile_vcf.mo -share/locale/es/LC_MESSAGES/kfile_wav.mo -share/locale/es/LC_MESSAGES/kfile_xbm.mo -share/locale/es/LC_MESSAGES/kfile_xpm.mo -share/locale/es/LC_MESSAGES/kfileaudiopreview.mo -share/locale/es/LC_MESSAGES/kfilereplace.mo -share/locale/es/LC_MESSAGES/kfileshare.mo -share/locale/es/LC_MESSAGES/kfindpart.mo -share/locale/es/LC_MESSAGES/kfloppy.mo -share/locale/es/LC_MESSAGES/kfmclient.mo -share/locale/es/LC_MESSAGES/kfontinst.mo -share/locale/es/LC_MESSAGES/kfouleggs.mo -share/locale/es/LC_MESSAGES/kgamma.mo -share/locale/es/LC_MESSAGES/kgantt.mo -share/locale/es/LC_MESSAGES/kget.mo -share/locale/es/LC_MESSAGES/kghostview.mo -share/locale/es/LC_MESSAGES/kgoldrunner.mo -share/locale/es/LC_MESSAGES/kgpg.mo -share/locale/es/LC_MESSAGES/kgreet_classic.mo -share/locale/es/LC_MESSAGES/kgreet_winbind.mo -share/locale/es/LC_MESSAGES/khangman.mo -share/locale/es/LC_MESSAGES/khelpcenter.mo -share/locale/es/LC_MESSAGES/khexedit.mo -share/locale/es/LC_MESSAGES/khexedit2part.mo -share/locale/es/LC_MESSAGES/khotkeys.mo -share/locale/es/LC_MESSAGES/khtmlkttsd.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/kig.mo -share/locale/es/LC_MESSAGES/kimagemapeditor.mo -share/locale/es/LC_MESSAGES/kinetd.mo -share/locale/es/LC_MESSAGES/kio.mo -share/locale/es/LC_MESSAGES/kio_audiocd.mo -share/locale/es/LC_MESSAGES/kio_devices.mo -share/locale/es/LC_MESSAGES/kio_finger.mo -share/locale/es/LC_MESSAGES/kio_fish.mo -share/locale/es/LC_MESSAGES/kio_floppy.mo -share/locale/es/LC_MESSAGES/kio_groupwise.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_ldap.mo -share/locale/es/LC_MESSAGES/kio_mac.mo -share/locale/es/LC_MESSAGES/kio_man.mo -share/locale/es/LC_MESSAGES/kio_media.mo -share/locale/es/LC_MESSAGES/kio_mobile.mo -share/locale/es/LC_MESSAGES/kio_newimap4.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_print.mo -share/locale/es/LC_MESSAGES/kio_remote.mo -share/locale/es/LC_MESSAGES/kio_settings.mo -share/locale/es/LC_MESSAGES/kio_sftp.mo -share/locale/es/LC_MESSAGES/kio_sieve.mo -share/locale/es/LC_MESSAGES/kio_smb.mo -share/locale/es/LC_MESSAGES/kio_smtp.mo -share/locale/es/LC_MESSAGES/kio_svn.mo -share/locale/es/LC_MESSAGES/kio_system.mo -share/locale/es/LC_MESSAGES/kio_trash.mo -share/locale/es/LC_MESSAGES/kio_zeroconf.mo -share/locale/es/LC_MESSAGES/kioexec.mo -share/locale/es/LC_MESSAGES/kiten.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/klatin.mo -share/locale/es/LC_MESSAGES/klegacyimport.mo -share/locale/es/LC_MESSAGES/kleopatra.mo -share/locale/es/LC_MESSAGES/klettres.mo -share/locale/es/LC_MESSAGES/klickety.mo -share/locale/es/LC_MESSAGES/klines.mo -share/locale/es/LC_MESSAGES/klinkstatus.mo -share/locale/es/LC_MESSAGES/klipper.mo -share/locale/es/LC_MESSAGES/klock.mo -share/locale/es/LC_MESSAGES/kmag.mo -share/locale/es/LC_MESSAGES/kmahjongg.mo -share/locale/es/LC_MESSAGES/kmail.mo -share/locale/es/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/es/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/es/LC_MESSAGES/kmailcvt.mo -share/locale/es/LC_MESSAGES/kmathapplet.mo -share/locale/es/LC_MESSAGES/kmathtool.mo -share/locale/es/LC_MESSAGES/kmcop.mo -share/locale/es/LC_MESSAGES/kmenuapplet.mo -share/locale/es/LC_MESSAGES/kmenuedit.mo -share/locale/es/LC_MESSAGES/kmessedwords.mo -share/locale/es/LC_MESSAGES/kmid.mo -share/locale/es/LC_MESSAGES/kmilo_delli8k.mo -share/locale/es/LC_MESSAGES/kmilo_generic.mo -share/locale/es/LC_MESSAGES/kmilo_kvaio.mo -share/locale/es/LC_MESSAGES/kmilo_powerbook.mo -share/locale/es/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/es/LC_MESSAGES/kmilod.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/kmobile.mo -share/locale/es/LC_MESSAGES/kmoon.mo -share/locale/es/LC_MESSAGES/kmousetool.mo -share/locale/es/LC_MESSAGES/kmouth.mo -share/locale/es/LC_MESSAGES/kmplot.mo -share/locale/es/LC_MESSAGES/kmrml.mo -share/locale/es/LC_MESSAGES/knetattach.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/kodo.mo -share/locale/es/LC_MESSAGES/kolf.mo -share/locale/es/LC_MESSAGES/kolourpaint.mo -share/locale/es/LC_MESSAGES/kolourpicker.mo -share/locale/es/LC_MESSAGES/kommander.mo -share/locale/es/LC_MESSAGES/kompare.mo -share/locale/es/LC_MESSAGES/konnector_dummy.mo -share/locale/es/LC_MESSAGES/konnector_kabc.mo -share/locale/es/LC_MESSAGES/konnector_kcal.mo -share/locale/es/LC_MESSAGES/konnector_local.mo -share/locale/es/LC_MESSAGES/konnector_qtopia.mo -share/locale/es/LC_MESSAGES/konnector_remote.mo -share/locale/es/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/es/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/es/LC_MESSAGES/konqsidebar_news.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/konsolekalendar.mo -share/locale/es/LC_MESSAGES/kontact.mo -share/locale/es/LC_MESSAGES/kooka.mo -share/locale/es/LC_MESSAGES/kopete.mo -share/locale/es/LC_MESSAGES/korganizer.mo -share/locale/es/LC_MESSAGES/korn.mo -share/locale/es/LC_MESSAGES/kpackage.mo -share/locale/es/LC_MESSAGES/kpager.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/kpdf.mo -share/locale/es/LC_MESSAGES/kpercentage.mo -share/locale/es/LC_MESSAGES/kpersonalizer.mo -share/locale/es/LC_MESSAGES/kpf.mo -share/locale/es/LC_MESSAGES/kpilot.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/krandr.mo -share/locale/es/LC_MESSAGES/krdb.mo -share/locale/es/LC_MESSAGES/krdc.mo -share/locale/es/LC_MESSAGES/kreadconfig.mo -share/locale/es/LC_MESSAGES/krec.mo -share/locale/es/LC_MESSAGES/kregexpeditor.mo -share/locale/es/LC_MESSAGES/kres_blogging.mo -share/locale/es/LC_MESSAGES/kres_bugzilla.mo -share/locale/es/LC_MESSAGES/kres_exchange.mo -share/locale/es/LC_MESSAGES/kres_featureplan.mo -share/locale/es/LC_MESSAGES/kres_groupwise.mo -share/locale/es/LC_MESSAGES/kres_kolab.mo -share/locale/es/LC_MESSAGES/kres_opengroupware.mo -share/locale/es/LC_MESSAGES/kres_remote.mo -share/locale/es/LC_MESSAGES/kres_xmlrpc.mo -share/locale/es/LC_MESSAGES/kreversi.mo -share/locale/es/LC_MESSAGES/krfb.mo -share/locale/es/LC_MESSAGES/kruler.mo -share/locale/es/LC_MESSAGES/krunapplet.mo -share/locale/es/LC_MESSAGES/ksame.mo -share/locale/es/LC_MESSAGES/ksayit.mo -share/locale/es/LC_MESSAGES/kscd.mo -share/locale/es/LC_MESSAGES/kscreensaver.mo -share/locale/es/LC_MESSAGES/kshisen.mo -share/locale/es/LC_MESSAGES/ksig.mo -share/locale/es/LC_MESSAGES/ksim.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/ksplashthemes.mo -share/locale/es/LC_MESSAGES/kstars.mo -share/locale/es/LC_MESSAGES/kstart.mo -share/locale/es/LC_MESSAGES/kstartperf.mo -share/locale/es/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/es/LC_MESSAGES/kstyle_phase_config.mo -share/locale/es/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/es/LC_MESSAGES/ksvgplugin.mo -share/locale/es/LC_MESSAGES/ksync.mo -share/locale/es/LC_MESSAGES/ksysguard.mo -share/locale/es/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/es/LC_MESSAGES/ksystraycmd.mo -share/locale/es/LC_MESSAGES/ksysv.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/ktexteditor_autobookmarker.mo -share/locale/es/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/es/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/es/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/es/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/es/LC_MESSAGES/ktexteditor_kttsd.mo -share/locale/es/LC_MESSAGES/kthememanager.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/ktnef.mo -share/locale/es/LC_MESSAGES/ktouch.mo -share/locale/es/LC_MESSAGES/ktron.mo -share/locale/es/LC_MESSAGES/kttsd.mo -share/locale/es/LC_MESSAGES/kttsd_commandplugin.mo -share/locale/es/LC_MESSAGES/kttsd_eposplugin.mo -share/locale/es/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/es/LC_MESSAGES/kttsd_fliteplugin.mo -share/locale/es/LC_MESSAGES/kttsd_freettsplugin.mo -share/locale/es/LC_MESSAGES/kttsd_hadifixplugin.mo -share/locale/es/LC_MESSAGES/kttsd_sbdplugin.mo -share/locale/es/LC_MESSAGES/kttsd_stringreplacerplugin.mo -share/locale/es/LC_MESSAGES/kttsd_talkerchooserplugin.mo -share/locale/es/LC_MESSAGES/kttsd_xmltransformerplugin.mo -share/locale/es/LC_MESSAGES/kttsjobmgr.mo -share/locale/es/LC_MESSAGES/kttsmgr.mo -share/locale/es/LC_MESSAGES/ktuberling.mo -share/locale/es/LC_MESSAGES/kturtle.mo -share/locale/es/LC_MESSAGES/ktux.mo -share/locale/es/LC_MESSAGES/kuick_plugin.mo -share/locale/es/LC_MESSAGES/kuickshow.mo -share/locale/es/LC_MESSAGES/kuiviewer.mo -share/locale/es/LC_MESSAGES/kuser.mo -share/locale/es/LC_MESSAGES/kverbos.mo -share/locale/es/LC_MESSAGES/kview.mo -share/locale/es/LC_MESSAGES/kview_scale.mo -share/locale/es/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/es/LC_MESSAGES/kviewcanvas.mo -share/locale/es/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/es/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/es/LC_MESSAGES/kviewscannerplugin.mo -share/locale/es/LC_MESSAGES/kviewshell.mo -share/locale/es/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/es/LC_MESSAGES/kviewviewer.mo -share/locale/es/LC_MESSAGES/kvoctrain.mo -share/locale/es/LC_MESSAGES/kwalletmanager.mo -share/locale/es/LC_MESSAGES/kwatchgnupg.mo -share/locale/es/LC_MESSAGES/kweather.mo -share/locale/es/LC_MESSAGES/kwifimanager.mo -share/locale/es/LC_MESSAGES/kwin.mo -share/locale/es/LC_MESSAGES/kwin4.mo -share/locale/es/LC_MESSAGES/kwin_art_clients.mo -share/locale/es/LC_MESSAGES/kwin_clients.mo -share/locale/es/LC_MESSAGES/kwireless.mo -share/locale/es/LC_MESSAGES/kwordquiz.mo -share/locale/es/LC_MESSAGES/kworldclock.mo -share/locale/es/LC_MESSAGES/kwriteconfig.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/kxsldbg.mo -share/locale/es/LC_MESSAGES/libKTTSD.mo -share/locale/es/LC_MESSAGES/libcalendarresources.mo -share/locale/es/LC_MESSAGES/libdmctl.mo -share/locale/es/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/es/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/es/LC_MESSAGES/libkcal.mo -share/locale/es/LC_MESSAGES/libkcalsystem.mo -share/locale/es/LC_MESSAGES/libkcddb.mo -share/locale/es/LC_MESSAGES/libkdegames.mo -share/locale/es/LC_MESSAGES/libkdehighscores.mo -share/locale/es/LC_MESSAGES/libkdenetwork.mo -share/locale/es/LC_MESSAGES/libkdepim.mo -share/locale/es/LC_MESSAGES/libkholidays.mo -share/locale/es/LC_MESSAGES/libkicker.mo -share/locale/es/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/es/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/es/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/es/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/es/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/es/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/es/LC_MESSAGES/libkickermenu_tom.mo -share/locale/es/LC_MESSAGES/libkleopatra.mo -share/locale/es/LC_MESSAGES/libkmime.mo -share/locale/es/LC_MESSAGES/libkonq.mo -share/locale/es/LC_MESSAGES/libkpgp.mo -share/locale/es/LC_MESSAGES/libkpimexchange.mo -share/locale/es/LC_MESSAGES/libkscan.mo -share/locale/es/LC_MESSAGES/libkscreensaver.mo -share/locale/es/LC_MESSAGES/libksieve.mo -share/locale/es/LC_MESSAGES/libksirtet.mo -share/locale/es/LC_MESSAGES/libksync.mo -share/locale/es/LC_MESSAGES/libtaskbar.mo -share/locale/es/LC_MESSAGES/libtaskmanager.mo -share/locale/es/LC_MESSAGES/lockout.mo -share/locale/es/LC_MESSAGES/lskat.mo -share/locale/es/LC_MESSAGES/lyrics.mo -share/locale/es/LC_MESSAGES/mediaapplet.mo -share/locale/es/LC_MESSAGES/mediacontrol.mo -share/locale/es/LC_MESSAGES/minitoolsplugin.mo -share/locale/es/LC_MESSAGES/multisynk.mo -share/locale/es/LC_MESSAGES/naughtyapplet.mo -share/locale/es/LC_MESSAGES/nexscope.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/pitchablespeed.mo -share/locale/es/LC_MESSAGES/ppdtranslations.mo -share/locale/es/LC_MESSAGES/privacy.mo -share/locale/es/LC_MESSAGES/qeditor.mo -share/locale/es/LC_MESSAGES/quanta.mo -share/locale/es/LC_MESSAGES/quicklauncher.mo -share/locale/es/LC_MESSAGES/rellinks.mo -share/locale/es/LC_MESSAGES/searchbarplugin.mo -share/locale/es/LC_MESSAGES/secpolicy.mo -share/locale/es/LC_MESSAGES/spy.mo -share/locale/es/LC_MESSAGES/synaescope.mo -share/locale/es/LC_MESSAGES/taskbarextension.mo -share/locale/es/LC_MESSAGES/timezones.mo -share/locale/es/LC_MESSAGES/tippecanoe.mo -share/locale/es/LC_MESSAGES/trashapplet.mo -share/locale/es/LC_MESSAGES/tyler.mo -share/locale/es/LC_MESSAGES/uachangerplugin.mo -share/locale/es/LC_MESSAGES/umbrello.mo -share/locale/es/LC_MESSAGES/useraccount.mo -share/locale/es/LC_MESSAGES/validatorsplugin.mo -share/locale/es/LC_MESSAGES/vimpart.mo -share/locale/es/LC_MESSAGES/wakeup.mo -share/locale/es/LC_MESSAGES/wavecapture.mo -share/locale/es/LC_MESSAGES/webarchiver.mo -share/locale/es/charset -share/locale/es/entry.desktop -share/locale/es/flag.png -@dirrm share/doc/HTML/es/xsldbg -@dirrm share/doc/HTML/es/umbrello -@dirrm share/doc/HTML/es/scripts -@dirrm share/doc/HTML/es/quanta -@dirrm share/doc/HTML/es/noatun -@dirrm share/doc/HTML/es/multisynk -@dirrm share/doc/HTML/es/megami -@dirrm share/doc/HTML/es/lskat -@dirrm share/doc/HTML/es/lisa -@dirrm share/doc/HTML/es/kxsldbg -@dirrm share/doc/HTML/es/kxconfig -@dirrm share/doc/HTML/es/kwuftpd -@dirrm share/doc/HTML/es/kworldclock -@dirrm share/doc/HTML/es/kwin4 -@dirrm share/doc/HTML/es/kwifimanager -@dirrm share/doc/HTML/es/kweather -@dirrm share/doc/HTML/es/kwatchgnupg -@dirrm share/doc/HTML/es/kvoctrain -@dirrm share/doc/HTML/es/kview -@dirrm share/doc/HTML/es/kverbos -@dirrm share/doc/HTML/es/kuser -@dirrm share/doc/HTML/es/kuickshow -@dirrm share/doc/HTML/es/ktuberling -@dirrm share/doc/HTML/es/kttsd -@dirrm share/doc/HTML/es/ktron -@dirrm share/doc/HTML/es/ktouch -@dirrm share/doc/HTML/es/ktnef -@dirrm share/doc/HTML/es/ktimer -@dirrm share/doc/HTML/es/kteatime -@dirrm share/doc/HTML/es/ksysv -@dirrm share/doc/HTML/es/ksysguard -@dirrm share/doc/HTML/es/kstars -@dirrm share/doc/HTML/es/kspell -@dirrm share/doc/HTML/es/kspaceduel -@dirrm share/doc/HTML/es/ksokoban -@dirrm share/doc/HTML/es/ksnapshot -@dirrm share/doc/HTML/es/ksnake -@dirrm share/doc/HTML/es/ksirtet -@dirrm share/doc/HTML/es/ksim -@dirrm share/doc/HTML/es/kshisen -@dirrm share/doc/HTML/es/kscd -@dirrm share/doc/HTML/es/ksame -@dirrm share/doc/HTML/es/kruler -@dirrm share/doc/HTML/es/kreversi -@dirrm share/doc/HTML/es/krdc -@dirrm share/doc/HTML/es/kppp -@dirrm share/doc/HTML/es/kpovmodeler -@dirrm share/doc/HTML/es/kpoker -@dirrm share/doc/HTML/es/kpilot -@dirrm share/doc/HTML/es/kpf -@dirrm share/doc/HTML/es/kpercentage -@dirrm share/doc/HTML/es/kpdf -@dirrm share/doc/HTML/es/kpat -@dirrm share/doc/HTML/es/kpaint -@dirrm share/doc/HTML/es/kpager -@dirrm share/doc/HTML/es/kpackage -@dirrm share/doc/HTML/es/korn -@dirrm share/doc/HTML/es/korganizer -@dirrm share/doc/HTML/es/kopete -@dirrm share/doc/HTML/es/kooka -@dirrm share/doc/HTML/es/kontact -@dirrm share/doc/HTML/es/konsolekalendar -@dirrm share/doc/HTML/es/konsole -@dirrm share/doc/HTML/es/konquest -@dirrm share/doc/HTML/es/konqueror -@dirrm share/doc/HTML/es/konq-plugins/webarchiver -@dirrm share/doc/HTML/es/konq-plugins/validators -@dirrm share/doc/HTML/es/konq-plugins/uachanger -@dirrm share/doc/HTML/es/konq-plugins/smbmounter -@dirrm share/doc/HTML/es/konq-plugins/mediaplayer -@dirrm share/doc/HTML/es/konq-plugins/kuick -@dirrm share/doc/HTML/es/konq-plugins/khtmlsettings -@dirrm share/doc/HTML/es/konq-plugins/imgallery -@dirrm share/doc/HTML/es/konq-plugins/fsview -@dirrm share/doc/HTML/es/konq-plugins/domtreeviewer -@dirrm share/doc/HTML/es/konq-plugins/dirfilter -@dirrm share/doc/HTML/es/konq-plugins/crashes -@dirrm share/doc/HTML/es/konq-plugins/babel -@dirrm share/doc/HTML/es/konq-plugins -@dirrm share/doc/HTML/es/kompare -@dirrm share/doc/HTML/es/kommander -@dirrm share/doc/HTML/es/kolourpaint -@dirrm share/doc/HTML/es/kolf -@dirrm share/doc/HTML/es/kodo -@dirrm share/doc/HTML/es/knotes -@dirrm share/doc/HTML/es/knode -@dirrm share/doc/HTML/es/kmplot -@dirrm share/doc/HTML/es/kmouth -@dirrm share/doc/HTML/es/kmousetool -@dirrm share/doc/HTML/es/kmoon -@dirrm share/doc/HTML/es/kmix -@dirrm share/doc/HTML/es/kmines -@dirrm share/doc/HTML/es/kmid -@dirrm share/doc/HTML/es/kmessedwords -@dirrm share/doc/HTML/es/kmenuedit -@dirrm share/doc/HTML/es/kmathtool -@dirrm share/doc/HTML/es/kmail -@dirrm share/doc/HTML/es/kmahjongg -@dirrm share/doc/HTML/es/kmag -@dirrm share/doc/HTML/es/klipper -@dirrm share/doc/HTML/es/klinkstatus -@dirrm share/doc/HTML/es/klines -@dirrm share/doc/HTML/es/klickety -@dirrm share/doc/HTML/es/klettres -@dirrm share/doc/HTML/es/kleopatra -@dirrm share/doc/HTML/es/klatin -@dirrm share/doc/HTML/es/kjumpingcube -@dirrm share/doc/HTML/es/kjots -@dirrm share/doc/HTML/es/kiten -@dirrm share/doc/HTML/es/kioslave -@dirrm share/doc/HTML/es/kinfocenter/xserver -@dirrm share/doc/HTML/es/kinfocenter/usb -@dirrm share/doc/HTML/es/kinfocenter/sound -@dirrm share/doc/HTML/es/kinfocenter/scsi -@dirrm share/doc/HTML/es/kinfocenter/samba -@dirrm share/doc/HTML/es/kinfocenter/protocols -@dirrm share/doc/HTML/es/kinfocenter/processor -@dirrm share/doc/HTML/es/kinfocenter/pcmcia -@dirrm share/doc/HTML/es/kinfocenter/pci -@dirrm share/doc/HTML/es/kinfocenter/partitions -@dirrm share/doc/HTML/es/kinfocenter/opengl -@dirrm share/doc/HTML/es/kinfocenter/nics -@dirrm share/doc/HTML/es/kinfocenter/memory -@dirrm share/doc/HTML/es/kinfocenter/ioports -@dirrm share/doc/HTML/es/kinfocenter/interrupts -@dirrm share/doc/HTML/es/kinfocenter/dma -@dirrm share/doc/HTML/es/kinfocenter/devices -@dirrm share/doc/HTML/es/kinfocenter/blockdevices -@dirrm share/doc/HTML/es/kinfocenter -@dirrm share/doc/HTML/es/kiconedit -@dirrm share/doc/HTML/es/kicker-applets -@dirrm share/doc/HTML/es/kicker -@dirrm share/doc/HTML/es/khexedit -@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/khangman -@dirrm share/doc/HTML/es/kgpg -@dirrm share/doc/HTML/es/kgoldrunner -@dirrm share/doc/HTML/es/kghostview -@dirrm share/doc/HTML/es/kgamma -@dirrm share/doc/HTML/es/kfouleggs -@dirrm share/doc/HTML/es/kfloppy -@dirrm share/doc/HTML/es/kfind -@dirrm share/doc/HTML/es/kenolaba -@dirrm share/doc/HTML/es/keduca -@dirrm share/doc/HTML/es/kedit -@dirrm share/doc/HTML/es/kdvi -@dirrm share/doc/HTML/es/kdm -@dirrm share/doc/HTML/es/kdict -@dirrm share/doc/HTML/es/kdf -@dirrm share/doc/HTML/es/kdevelop -@dirrm share/doc/HTML/es/kdesu -@dirrm share/doc/HTML/es/kdeprint -@dirrm share/doc/HTML/es/kdelirc/kcmlirc -@dirrm share/doc/HTML/es/kdelirc/irkick -@dirrm share/doc/HTML/es/kdelirc -@dirrm share/doc/HTML/es/kdelibs -@dirrm share/doc/HTML/es/kdebugdialog -@dirrm share/doc/HTML/es/kdcop -@dirrm share/doc/HTML/es/kdat -@dirrm share/doc/HTML/es/kcron -@dirrm share/doc/HTML/es/kcontrol/windowmanagement -@dirrm share/doc/HTML/es/kcontrol/useragent -@dirrm share/doc/HTML/es/kcontrol/spellchecking -@dirrm share/doc/HTML/es/kcontrol/smb -@dirrm share/doc/HTML/es/kcontrol/screensaver -@dirrm share/doc/HTML/es/kcontrol/proxy -@dirrm share/doc/HTML/es/kcontrol/powerctrl -@dirrm share/doc/HTML/es/kcontrol/passwords -@dirrm share/doc/HTML/es/kcontrol/panel -@dirrm share/doc/HTML/es/kcontrol/netpref -@dirrm share/doc/HTML/es/kcontrol/mouse -@dirrm share/doc/HTML/es/kcontrol/laptop -@dirrm share/doc/HTML/es/kcontrol/language -@dirrm share/doc/HTML/es/kcontrol/lanbrowser -@dirrm share/doc/HTML/es/kcontrol/kxmlrpcd -@dirrm share/doc/HTML/es/kcontrol/kwindecoration -@dirrm share/doc/HTML/es/kcontrol/kthememgr -@dirrm share/doc/HTML/es/kcontrol/kmixcfg -@dirrm share/doc/HTML/es/kcontrol/khtml -@dirrm share/doc/HTML/es/kcontrol/keys -@dirrm share/doc/HTML/es/kcontrol/keyboard -@dirrm share/doc/HTML/es/kcontrol/kdm -@dirrm share/doc/HTML/es/kcontrol/kcmtaskbar -@dirrm share/doc/HTML/es/kcontrol/kcmstyle -@dirrm share/doc/HTML/es/kcontrol/kcmsmserver -@dirrm share/doc/HTML/es/kcontrol/kcmnotify -@dirrm share/doc/HTML/es/kcontrol/kcmlowbatwarn -@dirrm share/doc/HTML/es/kcontrol/kcmlowbatcrit -@dirrm share/doc/HTML/es/kcontrol/kcmlaunch -@dirrm share/doc/HTML/es/kcontrol/kcmktalkd -@dirrm share/doc/HTML/es/kcontrol/kcmkonsole -@dirrm share/doc/HTML/es/kcontrol/kcmfontinst -@dirrm share/doc/HTML/es/kcontrol/kcmcss -@dirrm share/doc/HTML/es/kcontrol/kcmaccess -@dirrm share/doc/HTML/es/kcontrol/kalarmd -@dirrm share/doc/HTML/es/kcontrol/icons -@dirrm share/doc/HTML/es/kcontrol/helpindex -@dirrm share/doc/HTML/es/kcontrol/fonts -@dirrm share/doc/HTML/es/kcontrol/filetypes -@dirrm share/doc/HTML/es/kcontrol/filemanager -@dirrm share/doc/HTML/es/kcontrol/energy -@dirrm share/doc/HTML/es/kcontrol/email -@dirrm share/doc/HTML/es/kcontrol/ebrowsing -@dirrm share/doc/HTML/es/kcontrol/desktop -@dirrm share/doc/HTML/es/kcontrol/crypto -@dirrm share/doc/HTML/es/kcontrol/cookies -@dirrm share/doc/HTML/es/kcontrol/colors -@dirrm share/doc/HTML/es/kcontrol/clock -@dirrm share/doc/HTML/es/kcontrol/cache -@dirrm share/doc/HTML/es/kcontrol/bell -@dirrm share/doc/HTML/es/kcontrol/background -@dirrm share/doc/HTML/es/kcontrol/arts -@dirrm share/doc/HTML/es/kcontrol -@dirrm share/doc/HTML/es/kcoloredit -@dirrm share/doc/HTML/es/kcharselect -@dirrm share/doc/HTML/es/kcalc -@dirrm share/doc/HTML/es/kbugbuster -@dirrm share/doc/HTML/es/kbruch -@dirrm share/doc/HTML/es/kbounce -@dirrm share/doc/HTML/es/kblackbox -@dirrm share/doc/HTML/es/kbattleship -@dirrm share/doc/HTML/es/kbackgammon -@dirrm share/doc/HTML/es/kbabel -@dirrm share/doc/HTML/es/katomic -@dirrm share/doc/HTML/es/kate-plugins -@dirrm share/doc/HTML/es/kate -@dirrm share/doc/HTML/es/kasteroids -@dirrm share/doc/HTML/es/karm -@dirrm share/doc/HTML/es/kapptemplate -@dirrm share/doc/HTML/es/kappfinder -@dirrm share/doc/HTML/es/kandy -@dirrm share/doc/HTML/es/kamera -@dirrm share/doc/HTML/es/kalzium -@dirrm share/doc/HTML/es/kalarm -@dirrm share/doc/HTML/es/kaddressbook -@dirrm share/doc/HTML/es/kaboodle -@dirrm share/doc/HTML/es/flashkard -@dirrm share/doc/HTML/es/common -@dirrm share/doc/HTML/es/atlantik -@dirrm share/doc/HTML/es/artsbuilder -@dirrm share/doc/HTML/es/ark -@dirrm share/doc/HTML/es/amor -@dirrm share/doc/HTML/es/aktion -@dirrm share/doc/HTML/es/akregator -@dirrm share/doc/HTML/es/KRegExpEditor -@dirrm share/apps/kturtle/examples/es -@dirrm share/apps/kturtle/examples -@dirrm share/apps/kturtle/data -@dirrm share/apps/kturtle -@dirrm share/apps/ktuberling/sounds/es -@dirrm share/apps/ktuberling/sounds -@dirrm share/apps/ktuberling -@dirrm share/apps/khangman/data/es -@dirrm share/apps/khangman/data -@dirrm share/apps/khangman diff --git a/misc/kde4-l10n-et/Makefile b/misc/kde4-l10n-et/Makefile deleted file mode 100644 index 0f47d3450067..000000000000 --- a/misc/kde4-l10n-et/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-et -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= et- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Estonian messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-et/distinfo b/misc/kde4-l10n-et/distinfo deleted file mode 100644 index f75ec8f035a9..000000000000 --- a/misc/kde4-l10n-et/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-et-3.4.2.tar.bz2) = f48b7b0b9077c61d49f8c612b2726e73 -SIZE (KDE/kde-i18n/kde-i18n-et-3.4.2.tar.bz2) = 8617519 diff --git a/misc/kde4-l10n-et/pkg-descr b/misc/kde4-l10n-et/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-et/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-et/pkg-plist b/misc/kde4-l10n-et/pkg-plist deleted file mode 100644 index 307e5c13dbd1..000000000000 --- a/misc/kde4-l10n-et/pkg-plist +++ /dev/null @@ -1,2093 +0,0 @@ -share/doc/HTML/et/KRegExpEditor/common -share/doc/HTML/et/KRegExpEditor/index.cache.bz2 -share/doc/HTML/et/KRegExpEditor/index.docbook -share/doc/HTML/et/akregator/common -share/doc/HTML/et/akregator/index.cache.bz2 -share/doc/HTML/et/akregator/index.docbook -share/doc/HTML/et/amor/common -share/doc/HTML/et/amor/index.cache.bz2 -share/doc/HTML/et/amor/index.docbook -share/doc/HTML/et/ark/common -share/doc/HTML/et/ark/index.cache.bz2 -share/doc/HTML/et/ark/index.docbook -share/doc/HTML/et/atlantik/common -share/doc/HTML/et/atlantik/index.cache.bz2 -share/doc/HTML/et/atlantik/index.docbook -share/doc/HTML/et/cervisia/common -share/doc/HTML/et/cervisia/index.cache.bz2 -share/doc/HTML/et/cervisia/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/appheader.html -share/doc/HTML/et/common/artistic-license.html -share/doc/HTML/et/common/bottom-left.png -share/doc/HTML/et/common/bottom-middle.png -share/doc/HTML/et/common/bottom-right.png -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/docheadergears.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/doxygen.css -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/footer.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/grad.png -share/doc/HTML/et/common/header.html -share/doc/HTML/et/common/headerbg.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/kde-web.css -share/doc/HTML/et/common/kde_logo.png -share/doc/HTML/et/common/kde_logo_bg.png -share/doc/HTML/et/common/kmenu.png -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.png -share/doc/HTML/et/common/mainfooter.html -share/doc/HTML/et/common/mainheader.html -share/doc/HTML/et/common/qpl-license.html -share/doc/HTML/et/common/shadow.png -share/doc/HTML/et/common/top-left.png -share/doc/HTML/et/common/top-middle.png -share/doc/HTML/et/common/top-right-konqueror.png -share/doc/HTML/et/common/web-docbottom.png -share/doc/HTML/et/common/web-doctop.png -share/doc/HTML/et/common/x11-license.html -share/doc/HTML/et/common/xml.dcl -share/doc/HTML/et/flashkard/common -share/doc/HTML/et/flashkard/index.cache.bz2 -share/doc/HTML/et/flashkard/index.docbook -share/doc/HTML/et/kaboodle/common -share/doc/HTML/et/kaboodle/index.cache.bz2 -share/doc/HTML/et/kaboodle/index.docbook -share/doc/HTML/et/kaddressbook/common -share/doc/HTML/et/kaddressbook/index.cache.bz2 -share/doc/HTML/et/kaddressbook/index.docbook -share/doc/HTML/et/kalarm/common -share/doc/HTML/et/kalarm/index.cache.bz2 -share/doc/HTML/et/kalarm/index.docbook -share/doc/HTML/et/kalzium/common -share/doc/HTML/et/kalzium/index.cache.bz2 -share/doc/HTML/et/kalzium/index.docbook -share/doc/HTML/et/kalzium/man-kalzium.1.docbook -share/doc/HTML/et/kamera/common -share/doc/HTML/et/kamera/index.cache.bz2 -share/doc/HTML/et/kamera/index.docbook -share/doc/HTML/et/kandy/common -share/doc/HTML/et/kandy/index.cache.bz2 -share/doc/HTML/et/kandy/index.docbook -share/doc/HTML/et/kappfinder/man-kappfinder.1.docbook -share/doc/HTML/et/karm/common -share/doc/HTML/et/karm/index.cache.bz2 -share/doc/HTML/et/karm/index.docbook -share/doc/HTML/et/kasteroids/common -share/doc/HTML/et/kasteroids/index.cache.bz2 -share/doc/HTML/et/kasteroids/index.docbook -share/doc/HTML/et/kate-plugins/common -share/doc/HTML/et/kate-plugins/filetemplates.docbook -share/doc/HTML/et/kate-plugins/htmltools.docbook -share/doc/HTML/et/kate-plugins/index.cache.bz2 -share/doc/HTML/et/kate-plugins/index.docbook -share/doc/HTML/et/kate-plugins/insertcommand.docbook -share/doc/HTML/et/kate-plugins/openheader.docbook -share/doc/HTML/et/kate-plugins/projectmanager.docbook -share/doc/HTML/et/kate-plugins/textfilter.docbook -share/doc/HTML/et/kate-plugins/xmlcheck.docbook -share/doc/HTML/et/kate-plugins/xmltools.docbook -share/doc/HTML/et/kate/advanced.docbook -share/doc/HTML/et/kate/common -share/doc/HTML/et/kate/configdialog01.png -share/doc/HTML/et/kate/configdialog02.png -share/doc/HTML/et/kate/configuring.docbook -share/doc/HTML/et/kate/fundamentals.docbook -share/doc/HTML/et/kate/highlighting.docbook -share/doc/HTML/et/kate/index.cache.bz2 -share/doc/HTML/et/kate/index.docbook -share/doc/HTML/et/kate/kate.png -share/doc/HTML/et/kate/mdi.docbook -share/doc/HTML/et/kate/menus.docbook -share/doc/HTML/et/kate/mimetypechooser.png -share/doc/HTML/et/kate/part.docbook -share/doc/HTML/et/kate/plugins.docbook -share/doc/HTML/et/kate/regular-expressions.docbook -share/doc/HTML/et/katomic/common -share/doc/HTML/et/katomic/index.cache.bz2 -share/doc/HTML/et/katomic/index.docbook -share/doc/HTML/et/kbabel/catman.docbook -share/doc/HTML/et/kbabel/common -share/doc/HTML/et/kbabel/dictionaries.docbook -share/doc/HTML/et/kbabel/faq.docbook -share/doc/HTML/et/kbabel/glossary.docbook -share/doc/HTML/et/kbabel/index.cache.bz2 -share/doc/HTML/et/kbabel/index.docbook -share/doc/HTML/et/kbabel/kbabeldict.docbook -share/doc/HTML/et/kbabel/menu.docbook -share/doc/HTML/et/kbabel/preferences.docbook -share/doc/HTML/et/kbabel/using.docbook -share/doc/HTML/et/kbackgammon/common -share/doc/HTML/et/kbackgammon/index.cache.bz2 -share/doc/HTML/et/kbackgammon/index.docbook -share/doc/HTML/et/kbattleship/common -share/doc/HTML/et/kbattleship/index.cache.bz2 -share/doc/HTML/et/kbattleship/index.docbook -share/doc/HTML/et/kblackbox/common -share/doc/HTML/et/kblackbox/index.cache.bz2 -share/doc/HTML/et/kblackbox/index.docbook -share/doc/HTML/et/kbounce/common -share/doc/HTML/et/kbounce/index.cache.bz2 -share/doc/HTML/et/kbounce/index.docbook -share/doc/HTML/et/kbruch/common -share/doc/HTML/et/kbruch/index.cache.bz2 -share/doc/HTML/et/kbruch/index.docbook -share/doc/HTML/et/kbugbuster/common -share/doc/HTML/et/kbugbuster/index.cache.bz2 -share/doc/HTML/et/kbugbuster/index.docbook -share/doc/HTML/et/kcachegrind/common -share/doc/HTML/et/kcachegrind/index.cache.bz2 -share/doc/HTML/et/kcachegrind/index.docbook -share/doc/HTML/et/kcalc/common -share/doc/HTML/et/kcalc/index.cache.bz2 -share/doc/HTML/et/kcalc/index.docbook -share/doc/HTML/et/kcharselect/common -share/doc/HTML/et/kcharselect/index.cache.bz2 -share/doc/HTML/et/kcharselect/index.docbook -share/doc/HTML/et/kcoloredit/common -share/doc/HTML/et/kcoloredit/index.cache.bz2 -share/doc/HTML/et/kcoloredit/index.docbook -share/doc/HTML/et/kcontrol/arts/common -share/doc/HTML/et/kcontrol/arts/index.cache.bz2 -share/doc/HTML/et/kcontrol/arts/index.docbook -share/doc/HTML/et/kcontrol/arts/midi.docbook -share/doc/HTML/et/kcontrol/background/common -share/doc/HTML/et/kcontrol/background/index.cache.bz2 -share/doc/HTML/et/kcontrol/background/index.docbook -share/doc/HTML/et/kcontrol/bell/common -share/doc/HTML/et/kcontrol/bell/index.cache.bz2 -share/doc/HTML/et/kcontrol/bell/index.docbook -share/doc/HTML/et/kcontrol/cache/common -share/doc/HTML/et/kcontrol/cache/index.cache.bz2 -share/doc/HTML/et/kcontrol/cache/index.docbook -share/doc/HTML/et/kcontrol/clock/common -share/doc/HTML/et/kcontrol/clock/index.cache.bz2 -share/doc/HTML/et/kcontrol/clock/index.docbook -share/doc/HTML/et/kcontrol/colors/common -share/doc/HTML/et/kcontrol/colors/index.cache.bz2 -share/doc/HTML/et/kcontrol/colors/index.docbook -share/doc/HTML/et/kcontrol/common -share/doc/HTML/et/kcontrol/cookies/common -share/doc/HTML/et/kcontrol/cookies/index.cache.bz2 -share/doc/HTML/et/kcontrol/cookies/index.docbook -share/doc/HTML/et/kcontrol/crypto/common -share/doc/HTML/et/kcontrol/crypto/index.cache.bz2 -share/doc/HTML/et/kcontrol/crypto/index.docbook -share/doc/HTML/et/kcontrol/desktop/common -share/doc/HTML/et/kcontrol/desktop/index.cache.bz2 -share/doc/HTML/et/kcontrol/desktop/index.docbook -share/doc/HTML/et/kcontrol/desktopbehavior/common -share/doc/HTML/et/kcontrol/desktopbehavior/index.cache.bz2 -share/doc/HTML/et/kcontrol/desktopbehavior/index.docbook -share/doc/HTML/et/kcontrol/ebrowsing/common -share/doc/HTML/et/kcontrol/ebrowsing/index.cache.bz2 -share/doc/HTML/et/kcontrol/ebrowsing/index.docbook -share/doc/HTML/et/kcontrol/email/common -share/doc/HTML/et/kcontrol/email/index.cache.bz2 -share/doc/HTML/et/kcontrol/email/index.docbook -share/doc/HTML/et/kcontrol/energy/common -share/doc/HTML/et/kcontrol/energy/index.cache.bz2 -share/doc/HTML/et/kcontrol/energy/index.docbook -share/doc/HTML/et/kcontrol/filemanager/common -share/doc/HTML/et/kcontrol/filemanager/index.cache.bz2 -share/doc/HTML/et/kcontrol/filemanager/index.docbook -share/doc/HTML/et/kcontrol/filetypes/common -share/doc/HTML/et/kcontrol/filetypes/index.cache.bz2 -share/doc/HTML/et/kcontrol/filetypes/index.docbook -share/doc/HTML/et/kcontrol/fonts/common -share/doc/HTML/et/kcontrol/fonts/index.cache.bz2 -share/doc/HTML/et/kcontrol/fonts/index.docbook -share/doc/HTML/et/kcontrol/helpindex/common -share/doc/HTML/et/kcontrol/helpindex/index.cache.bz2 -share/doc/HTML/et/kcontrol/helpindex/index.docbook -share/doc/HTML/et/kcontrol/icons/common -share/doc/HTML/et/kcontrol/icons/index.cache.bz2 -share/doc/HTML/et/kcontrol/icons/index.docbook -share/doc/HTML/et/kcontrol/index.cache.bz2 -share/doc/HTML/et/kcontrol/index.docbook -share/doc/HTML/et/kcontrol/kalarmd/common -share/doc/HTML/et/kcontrol/kalarmd/index.cache.bz2 -share/doc/HTML/et/kcontrol/kalarmd/index.docbook -share/doc/HTML/et/kcontrol/kcmaccess/common -share/doc/HTML/et/kcontrol/kcmaccess/index.cache.bz2 -share/doc/HTML/et/kcontrol/kcmaccess/index.docbook -share/doc/HTML/et/kcontrol/kcmcss/common -share/doc/HTML/et/kcontrol/kcmcss/index.cache.bz2 -share/doc/HTML/et/kcontrol/kcmcss/index.docbook -share/doc/HTML/et/kcontrol/kcmfontinst/common -share/doc/HTML/et/kcontrol/kcmfontinst/index.cache.bz2 -share/doc/HTML/et/kcontrol/kcmfontinst/index.docbook -share/doc/HTML/et/kcontrol/kcmkonsole/common -share/doc/HTML/et/kcontrol/kcmkonsole/index.cache.bz2 -share/doc/HTML/et/kcontrol/kcmkonsole/index.docbook -share/doc/HTML/et/kcontrol/kcmktalkd/common -share/doc/HTML/et/kcontrol/kcmktalkd/index.cache.bz2 -share/doc/HTML/et/kcontrol/kcmktalkd/index.docbook -share/doc/HTML/et/kcontrol/kcmlaunch/common -share/doc/HTML/et/kcontrol/kcmlaunch/index.cache.bz2 -share/doc/HTML/et/kcontrol/kcmlaunch/index.docbook -share/doc/HTML/et/kcontrol/kcmlowbatcrit/common -share/doc/HTML/et/kcontrol/kcmlowbatcrit/index.cache.bz2 -share/doc/HTML/et/kcontrol/kcmlowbatcrit/index.docbook -share/doc/HTML/et/kcontrol/kcmlowbatwarn/common -share/doc/HTML/et/kcontrol/kcmlowbatwarn/index.cache.bz2 -share/doc/HTML/et/kcontrol/kcmlowbatwarn/index.docbook -share/doc/HTML/et/kcontrol/kcmnotify/common -share/doc/HTML/et/kcontrol/kcmnotify/index.cache.bz2 -share/doc/HTML/et/kcontrol/kcmnotify/index.docbook -share/doc/HTML/et/kcontrol/kcmsmserver/common -share/doc/HTML/et/kcontrol/kcmsmserver/index.cache.bz2 -share/doc/HTML/et/kcontrol/kcmsmserver/index.docbook -share/doc/HTML/et/kcontrol/kcmstyle/common -share/doc/HTML/et/kcontrol/kcmstyle/index.cache.bz2 -share/doc/HTML/et/kcontrol/kcmstyle/index.docbook -share/doc/HTML/et/kcontrol/kcmtaskbar/common -share/doc/HTML/et/kcontrol/kcmtaskbar/index.cache.bz2 -share/doc/HTML/et/kcontrol/kcmtaskbar/index.docbook -share/doc/HTML/et/kcontrol/kdm/common -share/doc/HTML/et/kcontrol/kdm/index.cache.bz2 -share/doc/HTML/et/kcontrol/kdm/index.docbook -share/doc/HTML/et/kcontrol/keyboard/common -share/doc/HTML/et/kcontrol/keyboard/index.cache.bz2 -share/doc/HTML/et/kcontrol/keyboard/index.docbook -share/doc/HTML/et/kcontrol/keys/common -share/doc/HTML/et/kcontrol/keys/index.cache.bz2 -share/doc/HTML/et/kcontrol/keys/index.docbook -share/doc/HTML/et/kcontrol/khtml/common -share/doc/HTML/et/kcontrol/khtml/index.cache.bz2 -share/doc/HTML/et/kcontrol/khtml/index.docbook -share/doc/HTML/et/kcontrol/khtml/nsplugin.docbook -share/doc/HTML/et/kcontrol/kmixcfg/common -share/doc/HTML/et/kcontrol/kmixcfg/index.cache.bz2 -share/doc/HTML/et/kcontrol/kmixcfg/index.docbook -share/doc/HTML/et/kcontrol/kwindecoration/common -share/doc/HTML/et/kcontrol/kwindecoration/index.cache.bz2 -share/doc/HTML/et/kcontrol/kwindecoration/index.docbook -share/doc/HTML/et/kcontrol/kxmlrpcd/common -share/doc/HTML/et/kcontrol/kxmlrpcd/index.cache.bz2 -share/doc/HTML/et/kcontrol/kxmlrpcd/index.docbook -share/doc/HTML/et/kcontrol/lanbrowser/common -share/doc/HTML/et/kcontrol/lanbrowser/index.cache.bz2 -share/doc/HTML/et/kcontrol/lanbrowser/index.docbook -share/doc/HTML/et/kcontrol/language/common -share/doc/HTML/et/kcontrol/language/index.cache.bz2 -share/doc/HTML/et/kcontrol/language/index.docbook -share/doc/HTML/et/kcontrol/laptop/common -share/doc/HTML/et/kcontrol/laptop/index.cache.bz2 -share/doc/HTML/et/kcontrol/laptop/index.docbook -share/doc/HTML/et/kcontrol/mouse/common -share/doc/HTML/et/kcontrol/mouse/index.cache.bz2 -share/doc/HTML/et/kcontrol/mouse/index.docbook -share/doc/HTML/et/kcontrol/netpref/common -share/doc/HTML/et/kcontrol/netpref/index.cache.bz2 -share/doc/HTML/et/kcontrol/netpref/index.docbook -share/doc/HTML/et/kcontrol/panel/common -share/doc/HTML/et/kcontrol/panel/index.cache.bz2 -share/doc/HTML/et/kcontrol/panel/index.docbook -share/doc/HTML/et/kcontrol/panelappearance/common -share/doc/HTML/et/kcontrol/panelappearance/index.cache.bz2 -share/doc/HTML/et/kcontrol/panelappearance/index.docbook -share/doc/HTML/et/kcontrol/passwords/common -share/doc/HTML/et/kcontrol/passwords/index.cache.bz2 -share/doc/HTML/et/kcontrol/passwords/index.docbook -share/doc/HTML/et/kcontrol/powerctrl/common -share/doc/HTML/et/kcontrol/powerctrl/index.cache.bz2 -share/doc/HTML/et/kcontrol/powerctrl/index.docbook -share/doc/HTML/et/kcontrol/proxy/common -share/doc/HTML/et/kcontrol/proxy/index.cache.bz2 -share/doc/HTML/et/kcontrol/proxy/index.docbook -share/doc/HTML/et/kcontrol/proxy/socks.docbook -share/doc/HTML/et/kcontrol/screensaver/common -share/doc/HTML/et/kcontrol/screensaver/index.cache.bz2 -share/doc/HTML/et/kcontrol/screensaver/index.docbook -share/doc/HTML/et/kcontrol/smb/common -share/doc/HTML/et/kcontrol/smb/index.cache.bz2 -share/doc/HTML/et/kcontrol/smb/index.docbook -share/doc/HTML/et/kcontrol/spellchecking/common -share/doc/HTML/et/kcontrol/spellchecking/index.cache.bz2 -share/doc/HTML/et/kcontrol/spellchecking/index.docbook -share/doc/HTML/et/kcontrol/useragent/common -share/doc/HTML/et/kcontrol/useragent/index.cache.bz2 -share/doc/HTML/et/kcontrol/useragent/index.docbook -share/doc/HTML/et/kcontrol/windowmanagement/common -share/doc/HTML/et/kcontrol/windowmanagement/index.cache.bz2 -share/doc/HTML/et/kcontrol/windowmanagement/index.docbook -share/doc/HTML/et/kcron/common -share/doc/HTML/et/kcron/index.cache.bz2 -share/doc/HTML/et/kcron/index.docbook -share/doc/HTML/et/kdat/common -share/doc/HTML/et/kdat/index.cache.bz2 -share/doc/HTML/et/kdat/index.docbook -share/doc/HTML/et/kdcop/common -share/doc/HTML/et/kdcop/index.cache.bz2 -share/doc/HTML/et/kdcop/index.docbook -share/doc/HTML/et/kdearch/common -share/doc/HTML/et/kdearch/index.cache.bz2 -share/doc/HTML/et/kdearch/index.docbook -share/doc/HTML/et/kdebugdialog/common -share/doc/HTML/et/kdebugdialog/index.cache.bz2 -share/doc/HTML/et/kdebugdialog/index.docbook -share/doc/HTML/et/kdelirc/irkick/common -share/doc/HTML/et/kdelirc/irkick/index.cache.bz2 -share/doc/HTML/et/kdelirc/irkick/index.docbook -share/doc/HTML/et/kdelirc/kcmlirc/common -share/doc/HTML/et/kdelirc/kcmlirc/index.cache.bz2 -share/doc/HTML/et/kdelirc/kcmlirc/index.docbook -share/doc/HTML/et/kdeprint/add-printer-wiz.docbook -share/doc/HTML/et/kdeprint/common -share/doc/HTML/et/kdeprint/cups-config.docbook -share/doc/HTML/et/kdeprint/cupsoptions.docbook -share/doc/HTML/et/kdeprint/extensions.docbook -share/doc/HTML/et/kdeprint/external-command.docbook -share/doc/HTML/et/kdeprint/final-word.docbook -share/doc/HTML/et/kdeprint/getting-started.docbook -share/doc/HTML/et/kdeprint/highlights.docbook -share/doc/HTML/et/kdeprint/index.cache.bz2 -share/doc/HTML/et/kdeprint/index.docbook -share/doc/HTML/et/kdeprint/lpd.docbook -share/doc/HTML/et/kdeprint/lpr-bsd.docbook -share/doc/HTML/et/kdeprint/lprng.docbook -share/doc/HTML/et/kdeprint/rlpr.docbook -share/doc/HTML/et/kdeprint/tech-overview.docbook -share/doc/HTML/et/kdeprint/theory.docbook -share/doc/HTML/et/kdesu/common -share/doc/HTML/et/kdesu/index.cache.bz2 -share/doc/HTML/et/kdesu/index.docbook -share/doc/HTML/et/kdf/common -share/doc/HTML/et/kdf/index.cache.bz2 -share/doc/HTML/et/kdf/index.docbook -share/doc/HTML/et/kdict/common -share/doc/HTML/et/kdict/index.cache.bz2 -share/doc/HTML/et/kdict/index.docbook -share/doc/HTML/et/kdm/common -share/doc/HTML/et/kdm/index.cache.bz2 -share/doc/HTML/et/kdm/index.docbook -share/doc/HTML/et/kdm/kdmrc-ref.docbook -share/doc/HTML/et/kdvi/common -share/doc/HTML/et/kdvi/index.cache.bz2 -share/doc/HTML/et/kdvi/index.docbook -share/doc/HTML/et/kedit/common -share/doc/HTML/et/kedit/index.cache.bz2 -share/doc/HTML/et/kedit/index.docbook -share/doc/HTML/et/keduca/common -share/doc/HTML/et/keduca/index.cache.bz2 -share/doc/HTML/et/keduca/index.docbook -share/doc/HTML/et/kenolaba/common -share/doc/HTML/et/kenolaba/index.cache.bz2 -share/doc/HTML/et/kenolaba/index.docbook -share/doc/HTML/et/kfilereplace/common -share/doc/HTML/et/kfilereplace/index.cache.bz2 -share/doc/HTML/et/kfilereplace/index.docbook -share/doc/HTML/et/kfind/common -share/doc/HTML/et/kfind/index.cache.bz2 -share/doc/HTML/et/kfind/index.docbook -share/doc/HTML/et/kfloppy/common -share/doc/HTML/et/kfloppy/index.cache.bz2 -share/doc/HTML/et/kfloppy/index.docbook -share/doc/HTML/et/kfouleggs/common -share/doc/HTML/et/kfouleggs/index.cache.bz2 -share/doc/HTML/et/kfouleggs/index.docbook -share/doc/HTML/et/kgamma/common -share/doc/HTML/et/kgamma/index.cache.bz2 -share/doc/HTML/et/kgamma/index.docbook -share/doc/HTML/et/kget/common -share/doc/HTML/et/kget/index.cache.bz2 -share/doc/HTML/et/kget/index.docbook -share/doc/HTML/et/kghostview/common -share/doc/HTML/et/kghostview/index.cache.bz2 -share/doc/HTML/et/kghostview/index.docbook -share/doc/HTML/et/kgoldrunner/common -share/doc/HTML/et/kgoldrunner/index.cache.bz2 -share/doc/HTML/et/kgoldrunner/index.docbook -share/doc/HTML/et/kgpg/common -share/doc/HTML/et/kgpg/index.cache.bz2 -share/doc/HTML/et/kgpg/index.docbook -share/doc/HTML/et/khangman/common -share/doc/HTML/et/khangman/index.cache.bz2 -share/doc/HTML/et/khangman/index.docbook -share/doc/HTML/et/khelpcenter/common -share/doc/HTML/et/khelpcenter/contact.docbook -share/doc/HTML/et/khelpcenter/faq/about.docbook -share/doc/HTML/et/khelpcenter/faq/common -share/doc/HTML/et/khelpcenter/faq/configkde.docbook -share/doc/HTML/et/khelpcenter/faq/contrib.docbook -share/doc/HTML/et/khelpcenter/faq/desktop.docbook -share/doc/HTML/et/khelpcenter/faq/filemng.docbook -share/doc/HTML/et/khelpcenter/faq/getkde.docbook -share/doc/HTML/et/khelpcenter/faq/index.cache.bz2 -share/doc/HTML/et/khelpcenter/faq/index.docbook -share/doc/HTML/et/khelpcenter/faq/install.docbook -share/doc/HTML/et/khelpcenter/faq/intro.docbook -share/doc/HTML/et/khelpcenter/faq/kdeapps.docbook -share/doc/HTML/et/khelpcenter/faq/misc.docbook -share/doc/HTML/et/khelpcenter/faq/moreinfo.docbook -share/doc/HTML/et/khelpcenter/faq/nonkdeapps.docbook -share/doc/HTML/et/khelpcenter/faq/notrelated.docbook -share/doc/HTML/et/khelpcenter/faq/panel.docbook -share/doc/HTML/et/khelpcenter/faq/questions.docbook -share/doc/HTML/et/khelpcenter/faq/sound.docbook -share/doc/HTML/et/khelpcenter/faq/tips.docbook -share/doc/HTML/et/khelpcenter/faq/webbrowse.docbook -share/doc/HTML/et/khelpcenter/faq/winmng.docbook -share/doc/HTML/et/khelpcenter/glossary/common -share/doc/HTML/et/khelpcenter/glossary/index.cache.bz2 -share/doc/HTML/et/khelpcenter/glossary/index.docbook -share/doc/HTML/et/khelpcenter/glossary/kdeprintingglossary.docbook -share/doc/HTML/et/khelpcenter/help.docbook -share/doc/HTML/et/khelpcenter/index.cache.bz2 -share/doc/HTML/et/khelpcenter/index.docbook -share/doc/HTML/et/khelpcenter/links.docbook -share/doc/HTML/et/khelpcenter/quickstart/common -share/doc/HTML/et/khelpcenter/quickstart/index.cache.bz2 -share/doc/HTML/et/khelpcenter/quickstart/index.docbook -share/doc/HTML/et/khelpcenter/support.docbook -share/doc/HTML/et/khelpcenter/userguide/a-window.png -share/doc/HTML/et/khelpcenter/userguide/about-desktop.docbook -share/doc/HTML/et/khelpcenter/userguide/accessibility.docbook -share/doc/HTML/et/khelpcenter/userguide/amarok.png -share/doc/HTML/et/khelpcenter/userguide/base-kde-applications.docbook -share/doc/HTML/et/khelpcenter/userguide/browser-fine-tuning.docbook -share/doc/HTML/et/khelpcenter/userguide/burning-cds.docbook -share/doc/HTML/et/khelpcenter/userguide/common -share/doc/HTML/et/khelpcenter/userguide/control-center.docbook -share/doc/HTML/et/khelpcenter/userguide/creating-graphics.docbook -share/doc/HTML/et/khelpcenter/userguide/credits-and-license.docbook -share/doc/HTML/et/khelpcenter/userguide/desktop.png -share/doc/HTML/et/khelpcenter/userguide/email.docbook -share/doc/HTML/et/khelpcenter/userguide/file-sharing.docbook -share/doc/HTML/et/khelpcenter/userguide/first-impressions.docbook -share/doc/HTML/et/khelpcenter/userguide/font-installation.docbook -share/doc/HTML/et/khelpcenter/userguide/getting-help.docbook -share/doc/HTML/et/khelpcenter/userguide/getting-started.docbook -share/doc/HTML/et/khelpcenter/userguide/glossary.docbook -share/doc/HTML/et/khelpcenter/userguide/groupware-kontact.docbook -share/doc/HTML/et/khelpcenter/userguide/history.docbook -share/doc/HTML/et/khelpcenter/userguide/index.cache.bz2 -share/doc/HTML/et/khelpcenter/userguide/index.docbook -share/doc/HTML/et/khelpcenter/userguide/installation.docbook -share/doc/HTML/et/khelpcenter/userguide/internet-shortcuts.docbook -share/doc/HTML/et/khelpcenter/userguide/intro.docbook -share/doc/HTML/et/khelpcenter/userguide/juk.png -share/doc/HTML/et/khelpcenter/userguide/kaboodle.png -share/doc/HTML/et/khelpcenter/userguide/kcontrol.png -share/doc/HTML/et/khelpcenter/userguide/kde-as-root.docbook -share/doc/HTML/et/khelpcenter/userguide/kde-edutainment.docbook -share/doc/HTML/et/khelpcenter/userguide/kde-for-admins.docbook -share/doc/HTML/et/khelpcenter/userguide/kde-office.docbook -share/doc/HTML/et/khelpcenter/userguide/kdeadmin-apps.docbook -share/doc/HTML/et/khelpcenter/userguide/kdebase-apps.docbook -share/doc/HTML/et/khelpcenter/userguide/kdeedu-apps.docbook -share/doc/HTML/et/khelpcenter/userguide/kdegames-apps.docbook -share/doc/HTML/et/khelpcenter/userguide/kdegraphics-apps.docbook -share/doc/HTML/et/khelpcenter/userguide/kdemultimedia-apps.docbook -share/doc/HTML/et/khelpcenter/userguide/kdenetwork-apps.docbook -share/doc/HTML/et/khelpcenter/userguide/kdepim-apps.docbook -share/doc/HTML/et/khelpcenter/userguide/kdetoys-apps.docbook -share/doc/HTML/et/khelpcenter/userguide/kdeutils-apps.docbook -share/doc/HTML/et/khelpcenter/userguide/kmag.png -share/doc/HTML/et/khelpcenter/userguide/kmousetool.png -share/doc/HTML/et/khelpcenter/userguide/kmouth.png -share/doc/HTML/et/khelpcenter/userguide/kmouth2.png -share/doc/HTML/et/khelpcenter/userguide/kmouth3.png -share/doc/HTML/et/khelpcenter/userguide/knode-identity.png -share/doc/HTML/et/khelpcenter/userguide/knode-mail-account.png -share/doc/HTML/et/khelpcenter/userguide/knode-start.png -share/doc/HTML/et/khelpcenter/userguide/koffice-apps.docbook -share/doc/HTML/et/khelpcenter/userguide/konq-sidebar.png -share/doc/HTML/et/khelpcenter/userguide/konq-simple.png -share/doc/HTML/et/khelpcenter/userguide/konsole-intro.docbook -share/doc/HTML/et/khelpcenter/userguide/kopete.png -share/doc/HTML/et/khelpcenter/userguide/kppp-dialer-tab.png -share/doc/HTML/et/khelpcenter/userguide/kppp-wizard.png -share/doc/HTML/et/khelpcenter/userguide/messaging-intro.docbook -share/doc/HTML/et/khelpcenter/userguide/migrator-dictionary.docbook -share/doc/HTML/et/khelpcenter/userguide/more-help.docbook -share/doc/HTML/et/khelpcenter/userguide/net-connection-setup.docbook -share/doc/HTML/et/khelpcenter/userguide/networking-with-windows.docbook -share/doc/HTML/et/khelpcenter/userguide/noatun.png -share/doc/HTML/et/khelpcenter/userguide/notices-trademarks.docbook -share/doc/HTML/et/khelpcenter/userguide/oggfolder.png -share/doc/HTML/et/khelpcenter/userguide/open-file-dialog.png -share/doc/HTML/et/khelpcenter/userguide/panel-and-desktop.docbook -share/doc/HTML/et/khelpcenter/userguide/pdf-files.docbook -share/doc/HTML/et/khelpcenter/userguide/playing-audiocds.docbook -share/doc/HTML/et/khelpcenter/userguide/playing-movies.docbook -share/doc/HTML/et/khelpcenter/userguide/playing-music.docbook -share/doc/HTML/et/khelpcenter/userguide/printer-setup.docbook -share/doc/HTML/et/khelpcenter/userguide/printing-from-apps.docbook -share/doc/HTML/et/khelpcenter/userguide/programs-and-documents.docbook -share/doc/HTML/et/khelpcenter/userguide/programs-controlling.docbook -share/doc/HTML/et/khelpcenter/userguide/removable-disks.docbook -share/doc/HTML/et/khelpcenter/userguide/rip.png -share/doc/HTML/et/khelpcenter/userguide/ripsettings.png -share/doc/HTML/et/khelpcenter/userguide/screen-captures.docbook -share/doc/HTML/et/khelpcenter/userguide/services.png -share/doc/HTML/et/khelpcenter/userguide/shared-sessions.docbook -share/doc/HTML/et/khelpcenter/userguide/shortcuts.docbook -share/doc/HTML/et/khelpcenter/userguide/staff.docbook -share/doc/HTML/et/khelpcenter/userguide/standard-menu-entries.docbook -share/doc/HTML/et/khelpcenter/userguide/switching-sessions.docbook -share/doc/HTML/et/khelpcenter/userguide/the-filemanager.docbook -share/doc/HTML/et/khelpcenter/userguide/titlebar-menu.png -share/doc/HTML/et/khelpcenter/userguide/troubleshooting-network-x.docbook -share/doc/HTML/et/khelpcenter/userguide/troubleshooting-no-open.docbook -share/doc/HTML/et/khelpcenter/userguide/ug-faq.docbook -share/doc/HTML/et/khelpcenter/userguide/under-the-hood.docbook -share/doc/HTML/et/khelpcenter/userguide/usenet.docbook -share/doc/HTML/et/khelpcenter/userguide/where-next.docbook -share/doc/HTML/et/khelpcenter/userguide/windows-how-to.docbook -share/doc/HTML/et/khelpcenter/userguide/your-kde-account.docbook -share/doc/HTML/et/khelpcenter/visualdict/common -share/doc/HTML/et/khelpcenter/visualdict/index.cache.bz2 -share/doc/HTML/et/khelpcenter/visualdict/index.docbook -share/doc/HTML/et/khelpcenter/welcome.docbook -share/doc/HTML/et/khelpcenter/whatiskde.docbook -share/doc/HTML/et/khexedit/common -share/doc/HTML/et/khexedit/index.cache.bz2 -share/doc/HTML/et/khexedit/index.docbook -share/doc/HTML/et/kicker-applets/common -share/doc/HTML/et/kicker-applets/index.cache.bz2 -share/doc/HTML/et/kicker-applets/index.docbook -share/doc/HTML/et/kicker-applets/kolourpicker.docbook -share/doc/HTML/et/kicker-applets/ktimemon.docbook -share/doc/HTML/et/kicker/common -share/doc/HTML/et/kicker/desktop_icon.png -share/doc/HTML/et/kicker/index.cache.bz2 -share/doc/HTML/et/kicker/index.docbook -share/doc/HTML/et/kicker/k_menu_icon.png -share/doc/HTML/et/kicker/printsys_icon.png -share/doc/HTML/et/kicker/quickbrowser_icon.png -share/doc/HTML/et/kicker/recent_docs_icon.png -share/doc/HTML/et/kicker/screenshot_left.png -share/doc/HTML/et/kicker/screenshot_right.png -share/doc/HTML/et/kicker/taskbar_group.png -share/doc/HTML/et/kicker/terminals_icon.png -share/doc/HTML/et/kicker/windowlist_icon.png -share/doc/HTML/et/kiconedit/common -share/doc/HTML/et/kiconedit/index.cache.bz2 -share/doc/HTML/et/kiconedit/index.docbook -share/doc/HTML/et/kig/common -share/doc/HTML/et/kig/index.cache.bz2 -share/doc/HTML/et/kig/index.docbook -share/doc/HTML/et/kinfocenter/blockdevices/common -share/doc/HTML/et/kinfocenter/blockdevices/index.cache.bz2 -share/doc/HTML/et/kinfocenter/blockdevices/index.docbook -share/doc/HTML/et/kinfocenter/common -share/doc/HTML/et/kinfocenter/devices/common -share/doc/HTML/et/kinfocenter/devices/index.cache.bz2 -share/doc/HTML/et/kinfocenter/devices/index.docbook -share/doc/HTML/et/kinfocenter/dma/common -share/doc/HTML/et/kinfocenter/dma/index.cache.bz2 -share/doc/HTML/et/kinfocenter/dma/index.docbook -share/doc/HTML/et/kinfocenter/index.cache.bz2 -share/doc/HTML/et/kinfocenter/index.docbook -share/doc/HTML/et/kinfocenter/interrupts/common -share/doc/HTML/et/kinfocenter/interrupts/index.cache.bz2 -share/doc/HTML/et/kinfocenter/interrupts/index.docbook -share/doc/HTML/et/kinfocenter/ioports/common -share/doc/HTML/et/kinfocenter/ioports/index.cache.bz2 -share/doc/HTML/et/kinfocenter/ioports/index.docbook -share/doc/HTML/et/kinfocenter/memory/common -share/doc/HTML/et/kinfocenter/memory/index.cache.bz2 -share/doc/HTML/et/kinfocenter/memory/index.docbook -share/doc/HTML/et/kinfocenter/nics/common -share/doc/HTML/et/kinfocenter/nics/index.cache.bz2 -share/doc/HTML/et/kinfocenter/nics/index.docbook -share/doc/HTML/et/kinfocenter/opengl/common -share/doc/HTML/et/kinfocenter/opengl/index.cache.bz2 -share/doc/HTML/et/kinfocenter/opengl/index.docbook -share/doc/HTML/et/kinfocenter/partitions/common -share/doc/HTML/et/kinfocenter/partitions/index.cache.bz2 -share/doc/HTML/et/kinfocenter/partitions/index.docbook -share/doc/HTML/et/kinfocenter/pci/common -share/doc/HTML/et/kinfocenter/pci/index.cache.bz2 -share/doc/HTML/et/kinfocenter/pci/index.docbook -share/doc/HTML/et/kinfocenter/pcmcia/common -share/doc/HTML/et/kinfocenter/pcmcia/index.cache.bz2 -share/doc/HTML/et/kinfocenter/pcmcia/index.docbook -share/doc/HTML/et/kinfocenter/processor/common -share/doc/HTML/et/kinfocenter/processor/index.cache.bz2 -share/doc/HTML/et/kinfocenter/processor/index.docbook -share/doc/HTML/et/kinfocenter/protocols/common -share/doc/HTML/et/kinfocenter/protocols/index.cache.bz2 -share/doc/HTML/et/kinfocenter/protocols/index.docbook -share/doc/HTML/et/kinfocenter/samba/common -share/doc/HTML/et/kinfocenter/samba/index.cache.bz2 -share/doc/HTML/et/kinfocenter/samba/index.docbook -share/doc/HTML/et/kinfocenter/scsi/common -share/doc/HTML/et/kinfocenter/scsi/index.cache.bz2 -share/doc/HTML/et/kinfocenter/scsi/index.docbook -share/doc/HTML/et/kinfocenter/sound/common -share/doc/HTML/et/kinfocenter/sound/index.cache.bz2 -share/doc/HTML/et/kinfocenter/sound/index.docbook -share/doc/HTML/et/kinfocenter/usb/common -share/doc/HTML/et/kinfocenter/usb/index.cache.bz2 -share/doc/HTML/et/kinfocenter/usb/index.docbook -share/doc/HTML/et/kinfocenter/xserver/common -share/doc/HTML/et/kinfocenter/xserver/index.cache.bz2 -share/doc/HTML/et/kinfocenter/xserver/index.docbook -share/doc/HTML/et/kio_audiocd/audiocd.docbook -share/doc/HTML/et/kioslave/audiocd.docbook -share/doc/HTML/et/kioslave/bzip.docbook -share/doc/HTML/et/kioslave/bzip2.docbook -share/doc/HTML/et/kioslave/cgi.docbook -share/doc/HTML/et/kioslave/common -share/doc/HTML/et/kioslave/data.docbook -share/doc/HTML/et/kioslave/file.docbook -share/doc/HTML/et/kioslave/finger.docbook -share/doc/HTML/et/kioslave/fish.docbook -share/doc/HTML/et/kioslave/floppy.docbook -share/doc/HTML/et/kioslave/ftp.docbook -share/doc/HTML/et/kioslave/gopher.docbook -share/doc/HTML/et/kioslave/gzip.docbook -share/doc/HTML/et/kioslave/help.docbook -share/doc/HTML/et/kioslave/http.docbook -share/doc/HTML/et/kioslave/https.docbook -share/doc/HTML/et/kioslave/imap.docbook -share/doc/HTML/et/kioslave/imaps.docbook -share/doc/HTML/et/kioslave/index.cache.bz2 -share/doc/HTML/et/kioslave/index.docbook -share/doc/HTML/et/kioslave/info.docbook -share/doc/HTML/et/kioslave/lan.docbook -share/doc/HTML/et/kioslave/ldap.docbook -share/doc/HTML/et/kioslave/mac.docbook -share/doc/HTML/et/kioslave/mailto.docbook -share/doc/HTML/et/kioslave/man.docbook -share/doc/HTML/et/kioslave/mrml.docbook -share/doc/HTML/et/kioslave/news.docbook -share/doc/HTML/et/kioslave/nfs.docbook -share/doc/HTML/et/kioslave/nntp.docbook -share/doc/HTML/et/kioslave/pop3.docbook -share/doc/HTML/et/kioslave/pop3s.docbook -share/doc/HTML/et/kioslave/print.docbook -share/doc/HTML/et/kioslave/rlan.docbook -share/doc/HTML/et/kioslave/rlogin.docbook -share/doc/HTML/et/kioslave/sftp.docbook -share/doc/HTML/et/kioslave/smb.docbook -share/doc/HTML/et/kioslave/smtp.docbook -share/doc/HTML/et/kioslave/tar.docbook -share/doc/HTML/et/kioslave/telnet.docbook -share/doc/HTML/et/kioslave/thumbnail.docbook -share/doc/HTML/et/kioslave/webdav.docbook -share/doc/HTML/et/kioslave/webdavs.docbook -share/doc/HTML/et/kiten/common -share/doc/HTML/et/kiten/index.cache.bz2 -share/doc/HTML/et/kiten/index.docbook -share/doc/HTML/et/kjots/common -share/doc/HTML/et/kjots/index.cache.bz2 -share/doc/HTML/et/kjots/index.docbook -share/doc/HTML/et/kjumpingcube/common -share/doc/HTML/et/kjumpingcube/index.cache.bz2 -share/doc/HTML/et/kjumpingcube/index.docbook -share/doc/HTML/et/klatin/adjectives.docbook -share/doc/HTML/et/klatin/common -share/doc/HTML/et/klatin/index.cache.bz2 -share/doc/HTML/et/klatin/index.docbook -share/doc/HTML/et/klatin/nouns.docbook -share/doc/HTML/et/klatin/numbers.docbook -share/doc/HTML/et/klatin/pronouns.docbook -share/doc/HTML/et/klatin/verbs.docbook -share/doc/HTML/et/kleopatra/common -share/doc/HTML/et/kleopatra/index.cache.bz2 -share/doc/HTML/et/kleopatra/index.docbook -share/doc/HTML/et/klettres/common -share/doc/HTML/et/klettres/index.cache.bz2 -share/doc/HTML/et/klettres/index.docbook -share/doc/HTML/et/klickety/common -share/doc/HTML/et/klickety/index.cache.bz2 -share/doc/HTML/et/klickety/index.docbook -share/doc/HTML/et/klines/common -share/doc/HTML/et/klines/index.cache.bz2 -share/doc/HTML/et/klines/index.docbook -share/doc/HTML/et/klinkstatus/common -share/doc/HTML/et/klinkstatus/index.cache.bz2 -share/doc/HTML/et/klinkstatus/index.docbook -share/doc/HTML/et/klipper/common -share/doc/HTML/et/klipper/index.cache.bz2 -share/doc/HTML/et/klipper/index.docbook -share/doc/HTML/et/kmag/common -share/doc/HTML/et/kmag/index.cache.bz2 -share/doc/HTML/et/kmag/index.docbook -share/doc/HTML/et/kmahjongg/common -share/doc/HTML/et/kmahjongg/index.cache.bz2 -share/doc/HTML/et/kmahjongg/index.docbook -share/doc/HTML/et/kmail/common -share/doc/HTML/et/kmail/configure.docbook -share/doc/HTML/et/kmail/credits-and-licenses.docbook -share/doc/HTML/et/kmail/faq.docbook -share/doc/HTML/et/kmail/getting-started.docbook -share/doc/HTML/et/kmail/importing.docbook -share/doc/HTML/et/kmail/index.cache.bz2 -share/doc/HTML/et/kmail/index.docbook -share/doc/HTML/et/kmail/intro.docbook -share/doc/HTML/et/kmail/menus.docbook -share/doc/HTML/et/kmail/using-kmail.docbook -share/doc/HTML/et/kmathtool/common -share/doc/HTML/et/kmathtool/index.cache.bz2 -share/doc/HTML/et/kmathtool/index.docbook -share/doc/HTML/et/kmenuedit/common -share/doc/HTML/et/kmenuedit/index.cache.bz2 -share/doc/HTML/et/kmenuedit/index.docbook -share/doc/HTML/et/kmessedwords/common -share/doc/HTML/et/kmessedwords/index.cache.bz2 -share/doc/HTML/et/kmessedwords/index.docbook -share/doc/HTML/et/kmines/common -share/doc/HTML/et/kmines/index.cache.bz2 -share/doc/HTML/et/kmines/index.docbook -share/doc/HTML/et/kmoon/common -share/doc/HTML/et/kmoon/index.cache.bz2 -share/doc/HTML/et/kmoon/index.docbook -share/doc/HTML/et/kmousetool/common -share/doc/HTML/et/kmousetool/index.cache.bz2 -share/doc/HTML/et/kmousetool/index.docbook -share/doc/HTML/et/kmouth/common -share/doc/HTML/et/kmouth/index.cache.bz2 -share/doc/HTML/et/kmouth/index.docbook -share/doc/HTML/et/kmplot/commands.docbook -share/doc/HTML/et/kmplot/common -share/doc/HTML/et/kmplot/configuration.docbook -share/doc/HTML/et/kmplot/credits.docbook -share/doc/HTML/et/kmplot/dcop.docbook -share/doc/HTML/et/kmplot/developer.docbook -share/doc/HTML/et/kmplot/firststeps.docbook -share/doc/HTML/et/kmplot/index.cache.bz2 -share/doc/HTML/et/kmplot/index.docbook -share/doc/HTML/et/kmplot/install.docbook -share/doc/HTML/et/kmplot/introduction.docbook -share/doc/HTML/et/kmplot/menu.docbook -share/doc/HTML/et/kmplot/reference.docbook -share/doc/HTML/et/kmplot/using.docbook -share/doc/HTML/et/knetattach/common -share/doc/HTML/et/knetattach/index.cache.bz2 -share/doc/HTML/et/knetattach/index.docbook -share/doc/HTML/et/knetattach/screenshot.png -share/doc/HTML/et/knewsticker/common -share/doc/HTML/et/knewsticker/index.cache.bz2 -share/doc/HTML/et/knewsticker/index.docbook -share/doc/HTML/et/knode/commands.docbook -share/doc/HTML/et/knode/common -share/doc/HTML/et/knode/credits.docbook -share/doc/HTML/et/knode/faq.docbook -share/doc/HTML/et/knode/gloss.docbook -share/doc/HTML/et/knode/index.cache.bz2 -share/doc/HTML/et/knode/index.docbook -share/doc/HTML/et/knode/install.docbook -share/doc/HTML/et/knode/introduction.docbook -share/doc/HTML/et/knode/journey.docbook -share/doc/HTML/et/knode/more.docbook -share/doc/HTML/et/knode/using-firststart.docbook -share/doc/HTML/et/knode/using-morefeatures.docbook -share/doc/HTML/et/knode/using-subscribing.docbook -share/doc/HTML/et/knotes/common -share/doc/HTML/et/knotes/index.cache.bz2 -share/doc/HTML/et/knotes/index.docbook -share/doc/HTML/et/kodo/common -share/doc/HTML/et/kodo/index.cache.bz2 -share/doc/HTML/et/kodo/index.docbook -share/doc/HTML/et/kolf/common -share/doc/HTML/et/kolf/index.cache.bz2 -share/doc/HTML/et/kolf/index.docbook -share/doc/HTML/et/kolourpaint/common -share/doc/HTML/et/kolourpaint/index.cache.bz2 -share/doc/HTML/et/kolourpaint/index.docbook -share/doc/HTML/et/kommander/basics.docbook -share/doc/HTML/et/kommander/commands.docbook -share/doc/HTML/et/kommander/common -share/doc/HTML/et/kommander/credits.docbook -share/doc/HTML/et/kommander/dcop.docbook -share/doc/HTML/et/kommander/editor.docbook -share/doc/HTML/et/kommander/extending.docbook -share/doc/HTML/et/kommander/glossary.docbook -share/doc/HTML/et/kommander/index.cache.bz2 -share/doc/HTML/et/kommander/index.docbook -share/doc/HTML/et/kommander/installation.docbook -share/doc/HTML/et/kommander/introduction.docbook -share/doc/HTML/et/kommander/q-and-a.docbook -share/doc/HTML/et/kommander/specials.docbook -share/doc/HTML/et/kommander/tutorials.docbook -share/doc/HTML/et/kommander/widgets.docbook -share/doc/HTML/et/kompare/common -share/doc/HTML/et/kompare/index.cache.bz2 -share/doc/HTML/et/kompare/index.docbook -share/doc/HTML/et/konq-plugins/babel/common -share/doc/HTML/et/konq-plugins/babel/index.cache.bz2 -share/doc/HTML/et/konq-plugins/babel/index.docbook -share/doc/HTML/et/konq-plugins/common -share/doc/HTML/et/konq-plugins/crashes/common -share/doc/HTML/et/konq-plugins/crashes/index.cache.bz2 -share/doc/HTML/et/konq-plugins/crashes/index.docbook -share/doc/HTML/et/konq-plugins/dirfilter/common -share/doc/HTML/et/konq-plugins/dirfilter/index.cache.bz2 -share/doc/HTML/et/konq-plugins/dirfilter/index.docbook -share/doc/HTML/et/konq-plugins/domtreeviewer/common -share/doc/HTML/et/konq-plugins/domtreeviewer/index.cache.bz2 -share/doc/HTML/et/konq-plugins/domtreeviewer/index.docbook -share/doc/HTML/et/konq-plugins/fsview/common -share/doc/HTML/et/konq-plugins/fsview/index.cache.bz2 -share/doc/HTML/et/konq-plugins/fsview/index.docbook -share/doc/HTML/et/konq-plugins/imgallery/common -share/doc/HTML/et/konq-plugins/imgallery/index.cache.bz2 -share/doc/HTML/et/konq-plugins/imgallery/index.docbook -share/doc/HTML/et/konq-plugins/index.cache.bz2 -share/doc/HTML/et/konq-plugins/index.docbook -share/doc/HTML/et/konq-plugins/khtmlsettings/common -share/doc/HTML/et/konq-plugins/khtmlsettings/index.cache.bz2 -share/doc/HTML/et/konq-plugins/khtmlsettings/index.docbook -share/doc/HTML/et/konq-plugins/kuick/common -share/doc/HTML/et/konq-plugins/kuick/index.cache.bz2 -share/doc/HTML/et/konq-plugins/kuick/index.docbook -share/doc/HTML/et/konq-plugins/mediaplayer/common -share/doc/HTML/et/konq-plugins/mediaplayer/index.cache.bz2 -share/doc/HTML/et/konq-plugins/mediaplayer/index.docbook -share/doc/HTML/et/konq-plugins/smbmounter/common -share/doc/HTML/et/konq-plugins/smbmounter/index.cache.bz2 -share/doc/HTML/et/konq-plugins/smbmounter/index.docbook -share/doc/HTML/et/konq-plugins/uachanger/common -share/doc/HTML/et/konq-plugins/uachanger/index.cache.bz2 -share/doc/HTML/et/konq-plugins/uachanger/index.docbook -share/doc/HTML/et/konq-plugins/validators/common -share/doc/HTML/et/konq-plugins/validators/index.cache.bz2 -share/doc/HTML/et/konq-plugins/validators/index.docbook -share/doc/HTML/et/konq-plugins/webarchiver/common -share/doc/HTML/et/konq-plugins/webarchiver/index.cache.bz2 -share/doc/HTML/et/konq-plugins/webarchiver/index.docbook -share/doc/HTML/et/konqueror/basics.docbook -share/doc/HTML/et/konqueror/bookmarks.docbook -share/doc/HTML/et/konqueror/browser.docbook -share/doc/HTML/et/konqueror/cmndline.png -share/doc/HTML/et/konqueror/commands.docbook -share/doc/HTML/et/konqueror/common -share/doc/HTML/et/konqueror/config.docbook -share/doc/HTML/et/konqueror/credits.docbook -share/doc/HTML/et/konqueror/dirtree.png -share/doc/HTML/et/konqueror/dragdrop.png -share/doc/HTML/et/konqueror/faq.docbook -share/doc/HTML/et/konqueror/filemanager.docbook -share/doc/HTML/et/konqueror/index.cache.bz2 -share/doc/HTML/et/konqueror/index.docbook -share/doc/HTML/et/konqueror/introduction.docbook -share/doc/HTML/et/konqueror/konqorg.png -share/doc/HTML/et/konqueror/man-kbookmarkmerger.1.docbook -share/doc/HTML/et/konqueror/parts.png -share/doc/HTML/et/konqueror/path-complete.docbook -share/doc/HTML/et/konqueror/plugins.docbook -share/doc/HTML/et/konqueror/save-settings.docbook -share/doc/HTML/et/konqueror/shortcut1.png -share/doc/HTML/et/konqueror/shortcut2.png -share/doc/HTML/et/konqueror/sidebar.docbook -share/doc/HTML/et/konquest/common -share/doc/HTML/et/konquest/index.cache.bz2 -share/doc/HTML/et/konquest/index.docbook -share/doc/HTML/et/konsole/common -share/doc/HTML/et/konsole/index.cache.bz2 -share/doc/HTML/et/konsole/index.docbook -share/doc/HTML/et/konsole/konsole.png -share/doc/HTML/et/konsole/tabbar.png -share/doc/HTML/et/konsolekalendar/common -share/doc/HTML/et/konsolekalendar/index.cache.bz2 -share/doc/HTML/et/konsolekalendar/index.docbook -share/doc/HTML/et/kontact/common -share/doc/HTML/et/kontact/index.cache.bz2 -share/doc/HTML/et/kontact/index.docbook -share/doc/HTML/et/kooka/common -share/doc/HTML/et/kooka/index.cache.bz2 -share/doc/HTML/et/kooka/index.docbook -share/doc/HTML/et/kopete/common -share/doc/HTML/et/kopete/index.cache.bz2 -share/doc/HTML/et/kopete/index.docbook -share/doc/HTML/et/kopete/menus.docbook -share/doc/HTML/et/korganizer/common -share/doc/HTML/et/korganizer/exchange-plugin.docbook -share/doc/HTML/et/korganizer/group-scheduling.docbook -share/doc/HTML/et/korganizer/index.cache.bz2 -share/doc/HTML/et/korganizer/index.docbook -share/doc/HTML/et/korganizer/outlook-to-vcalendar.docbook -share/doc/HTML/et/korganizer/plugins-chapter.docbook -share/doc/HTML/et/korn/common -share/doc/HTML/et/korn/index.cache.bz2 -share/doc/HTML/et/korn/index.docbook -share/doc/HTML/et/kpackage/common -share/doc/HTML/et/kpackage/index.cache.bz2 -share/doc/HTML/et/kpackage/index.docbook -share/doc/HTML/et/kpager/common -share/doc/HTML/et/kpager/index.cache.bz2 -share/doc/HTML/et/kpager/index.docbook -share/doc/HTML/et/kpager/screenshot.png -share/doc/HTML/et/kpager/settings.png -share/doc/HTML/et/kpat/common -share/doc/HTML/et/kpat/index.cache.bz2 -share/doc/HTML/et/kpat/index.docbook -share/doc/HTML/et/kpat/man-kpat.6.docbook -share/doc/HTML/et/kpat/man.docbook -share/doc/HTML/et/kpdf/common -share/doc/HTML/et/kpdf/index.cache.bz2 -share/doc/HTML/et/kpdf/index.docbook -share/doc/HTML/et/kpercentage/commands.docbook -share/doc/HTML/et/kpercentage/common -share/doc/HTML/et/kpercentage/credits.docbook -share/doc/HTML/et/kpercentage/devel.docbook -share/doc/HTML/et/kpercentage/faq.docbook -share/doc/HTML/et/kpercentage/index.cache.bz2 -share/doc/HTML/et/kpercentage/index.docbook -share/doc/HTML/et/kpercentage/install.docbook -share/doc/HTML/et/kpercentage/introduction.docbook -share/doc/HTML/et/kpercentage/using.docbook -share/doc/HTML/et/kpf/common -share/doc/HTML/et/kpf/index.cache.bz2 -share/doc/HTML/et/kpf/index.docbook -share/doc/HTML/et/kpilot/common -share/doc/HTML/et/kpilot/configuration.docbook -share/doc/HTML/et/kpilot/faq.docbook -share/doc/HTML/et/kpilot/index.cache.bz2 -share/doc/HTML/et/kpilot/index.docbook -share/doc/HTML/et/kpilot/sync.docbook -share/doc/HTML/et/kpilot/usage.docbook -share/doc/HTML/et/kpoker/common -share/doc/HTML/et/kpoker/index.cache.bz2 -share/doc/HTML/et/kpoker/index.docbook -share/doc/HTML/et/kpovmodeler/common -share/doc/HTML/et/kpovmodeler/index.cache.bz2 -share/doc/HTML/et/kpovmodeler/index.docbook -share/doc/HTML/et/kppp/accounting.docbook -share/doc/HTML/et/kppp/callback.docbook -share/doc/HTML/et/kppp/chap.docbook -share/doc/HTML/et/kppp/common -share/doc/HTML/et/kppp/dialog-setup.docbook -share/doc/HTML/et/kppp/getting-online.docbook -share/doc/HTML/et/kppp/global-settings.docbook -share/doc/HTML/et/kppp/hayes.docbook -share/doc/HTML/et/kppp/index.cache.bz2 -share/doc/HTML/et/kppp/index.docbook -share/doc/HTML/et/kppp/kppp-faq.docbook -share/doc/HTML/et/kppp/security.docbook -share/doc/HTML/et/kppp/tricks.docbook -share/doc/HTML/et/kppp/wizard.docbook -share/doc/HTML/et/krdc/common -share/doc/HTML/et/krdc/index.cache.bz2 -share/doc/HTML/et/krdc/index.docbook -share/doc/HTML/et/kreversi/common -share/doc/HTML/et/kreversi/index.cache.bz2 -share/doc/HTML/et/kreversi/index.docbook -share/doc/HTML/et/krfb/common -share/doc/HTML/et/krfb/index.cache.bz2 -share/doc/HTML/et/krfb/index.docbook -share/doc/HTML/et/kruler/common -share/doc/HTML/et/kruler/index.cache.bz2 -share/doc/HTML/et/kruler/index.docbook -share/doc/HTML/et/ksame/common -share/doc/HTML/et/ksame/index.cache.bz2 -share/doc/HTML/et/ksame/index.docbook -share/doc/HTML/et/kscd/common -share/doc/HTML/et/kscd/index.cache.bz2 -share/doc/HTML/et/kscd/index.docbook -share/doc/HTML/et/kshisen/common -share/doc/HTML/et/kshisen/index.cache.bz2 -share/doc/HTML/et/kshisen/index.docbook -share/doc/HTML/et/ksim/common -share/doc/HTML/et/ksim/index.cache.bz2 -share/doc/HTML/et/ksim/index.docbook -share/doc/HTML/et/ksirc/common -share/doc/HTML/et/ksirc/index.cache.bz2 -share/doc/HTML/et/ksirc/index.docbook -share/doc/HTML/et/ksirtet/common -share/doc/HTML/et/ksirtet/index.cache.bz2 -share/doc/HTML/et/ksirtet/index.docbook -share/doc/HTML/et/ksnake/common -share/doc/HTML/et/ksnake/index.cache.bz2 -share/doc/HTML/et/ksnake/index.docbook -share/doc/HTML/et/ksnapshot/common -share/doc/HTML/et/ksnapshot/index.cache.bz2 -share/doc/HTML/et/ksnapshot/index.docbook -share/doc/HTML/et/ksokoban/common -share/doc/HTML/et/ksokoban/index.cache.bz2 -share/doc/HTML/et/ksokoban/index.docbook -share/doc/HTML/et/kspaceduel/common -share/doc/HTML/et/kspaceduel/index.cache.bz2 -share/doc/HTML/et/kspaceduel/index.docbook -share/doc/HTML/et/kspell/common -share/doc/HTML/et/kspell/index.cache.bz2 -share/doc/HTML/et/kspell/index.docbook -share/doc/HTML/et/ksplashml/common -share/doc/HTML/et/ksplashml/index.cache.bz2 -share/doc/HTML/et/ksplashml/index.docbook -share/doc/HTML/et/kstars/ai-contents.docbook -share/doc/HTML/et/kstars/altvstime.docbook -share/doc/HTML/et/kstars/astroinfo.docbook -share/doc/HTML/et/kstars/blackbody.docbook -share/doc/HTML/et/kstars/calc-angdist.docbook -share/doc/HTML/et/kstars/calc-apcoords.docbook -share/doc/HTML/et/kstars/calc-dayduration.docbook -share/doc/HTML/et/kstars/calc-ecliptic.docbook -share/doc/HTML/et/kstars/calc-eqgal.docbook -share/doc/HTML/et/kstars/calc-equinox.docbook -share/doc/HTML/et/kstars/calc-geodetic.docbook -share/doc/HTML/et/kstars/calc-horizontal.docbook -share/doc/HTML/et/kstars/calc-julianday.docbook -share/doc/HTML/et/kstars/calc-planetcoords.docbook -share/doc/HTML/et/kstars/calc-precess.docbook -share/doc/HTML/et/kstars/calc-sidereal.docbook -share/doc/HTML/et/kstars/calculator.docbook -share/doc/HTML/et/kstars/cequator.docbook -share/doc/HTML/et/kstars/colorandtemp.docbook -share/doc/HTML/et/kstars/commands.docbook -share/doc/HTML/et/kstars/common -share/doc/HTML/et/kstars/config.docbook -share/doc/HTML/et/kstars/cpoles.docbook -share/doc/HTML/et/kstars/credits.docbook -share/doc/HTML/et/kstars/csphere.docbook -share/doc/HTML/et/kstars/darkmatter.docbook -share/doc/HTML/et/kstars/dcop.docbook -share/doc/HTML/et/kstars/details.docbook -share/doc/HTML/et/kstars/dumpmode.docbook -share/doc/HTML/et/kstars/ecliptic.docbook -share/doc/HTML/et/kstars/ellipticalgalaxies.docbook -share/doc/HTML/et/kstars/equinox.docbook -share/doc/HTML/et/kstars/faq.docbook -share/doc/HTML/et/kstars/flux.docbook -share/doc/HTML/et/kstars/geocoords.docbook -share/doc/HTML/et/kstars/greatcircle.docbook -share/doc/HTML/et/kstars/horizon.docbook -share/doc/HTML/et/kstars/hourangle.docbook -share/doc/HTML/et/kstars/index.cache.bz2 -share/doc/HTML/et/kstars/index.docbook -share/doc/HTML/et/kstars/indi.docbook -share/doc/HTML/et/kstars/install.docbook -share/doc/HTML/et/kstars/jmoons.docbook -share/doc/HTML/et/kstars/julianday.docbook -share/doc/HTML/et/kstars/leapyear.docbook -share/doc/HTML/et/kstars/lightcurves.docbook -share/doc/HTML/et/kstars/luminosity.docbook -share/doc/HTML/et/kstars/magnitude.docbook -share/doc/HTML/et/kstars/meridian.docbook -share/doc/HTML/et/kstars/observinglist.docbook -share/doc/HTML/et/kstars/parallax.docbook -share/doc/HTML/et/kstars/precession.docbook -share/doc/HTML/et/kstars/quicktour.docbook -share/doc/HTML/et/kstars/retrograde.docbook -share/doc/HTML/et/kstars/scriptbuilder.docbook -share/doc/HTML/et/kstars/sidereal.docbook -share/doc/HTML/et/kstars/skycoords.docbook -share/doc/HTML/et/kstars/solarsys.docbook -share/doc/HTML/et/kstars/spiralgalaxies.docbook -share/doc/HTML/et/kstars/stars.docbook -share/doc/HTML/et/kstars/timezones.docbook -share/doc/HTML/et/kstars/tools.docbook -share/doc/HTML/et/kstars/utime.docbook -share/doc/HTML/et/kstars/wut.docbook -share/doc/HTML/et/kstars/zenith.docbook -share/doc/HTML/et/ksysguard/common -share/doc/HTML/et/ksysguard/index.cache.bz2 -share/doc/HTML/et/ksysguard/index.docbook -share/doc/HTML/et/ksysv/common -share/doc/HTML/et/ksysv/index.cache.bz2 -share/doc/HTML/et/ksysv/index.docbook -share/doc/HTML/et/ktalkd/common -share/doc/HTML/et/ktalkd/index.cache.bz2 -share/doc/HTML/et/ktalkd/index.docbook -share/doc/HTML/et/kteatime/common -share/doc/HTML/et/kteatime/index.cache.bz2 -share/doc/HTML/et/kteatime/index.docbook -share/doc/HTML/et/ktimer/common -share/doc/HTML/et/ktimer/index.cache.bz2 -share/doc/HTML/et/ktimer/index.docbook -share/doc/HTML/et/ktnef/common -share/doc/HTML/et/ktnef/index.cache.bz2 -share/doc/HTML/et/ktnef/index.docbook -share/doc/HTML/et/ktouch/common -share/doc/HTML/et/ktouch/index.cache.bz2 -share/doc/HTML/et/ktouch/index.docbook -share/doc/HTML/et/ktron/common -share/doc/HTML/et/ktron/index.cache.bz2 -share/doc/HTML/et/ktron/index.docbook -share/doc/HTML/et/kttsd/common -share/doc/HTML/et/kttsd/index.cache.bz2 -share/doc/HTML/et/kttsd/index.docbook -share/doc/HTML/et/ktuberling/common -share/doc/HTML/et/ktuberling/index.cache.bz2 -share/doc/HTML/et/ktuberling/index.docbook -share/doc/HTML/et/ktuberling/technical-reference.docbook -share/doc/HTML/et/kturtle/common -share/doc/HTML/et/kturtle/getting-started.docbook -share/doc/HTML/et/kturtle/glossary.docbook -share/doc/HTML/et/kturtle/index.cache.bz2 -share/doc/HTML/et/kturtle/index.docbook -share/doc/HTML/et/kturtle/programming-reference.docbook -share/doc/HTML/et/kturtle/translator-guide.docbook -share/doc/HTML/et/kturtle/using-kturtle.docbook -share/doc/HTML/et/kuickshow/common -share/doc/HTML/et/kuickshow/index.cache.bz2 -share/doc/HTML/et/kuickshow/index.docbook -share/doc/HTML/et/kuser/common -share/doc/HTML/et/kuser/index.cache.bz2 -share/doc/HTML/et/kuser/index.docbook -share/doc/HTML/et/kverbos/common -share/doc/HTML/et/kverbos/index.cache.bz2 -share/doc/HTML/et/kverbos/index.docbook -share/doc/HTML/et/kview/common -share/doc/HTML/et/kview/index.cache.bz2 -share/doc/HTML/et/kview/index.docbook -share/doc/HTML/et/kvoctrain/common -share/doc/HTML/et/kvoctrain/index.cache.bz2 -share/doc/HTML/et/kvoctrain/index.docbook -share/doc/HTML/et/kwallet/common -share/doc/HTML/et/kwallet/index.cache.bz2 -share/doc/HTML/et/kwallet/index.docbook -share/doc/HTML/et/kwatchgnupg/common -share/doc/HTML/et/kwatchgnupg/index.cache.bz2 -share/doc/HTML/et/kwatchgnupg/index.docbook -share/doc/HTML/et/kweather/common -share/doc/HTML/et/kweather/index.cache.bz2 -share/doc/HTML/et/kweather/index.docbook -share/doc/HTML/et/kwifimanager/common -share/doc/HTML/et/kwifimanager/index.cache.bz2 -share/doc/HTML/et/kwifimanager/index.docbook -share/doc/HTML/et/kwin4/common -share/doc/HTML/et/kwin4/index.cache.bz2 -share/doc/HTML/et/kwin4/index.docbook -share/doc/HTML/et/kwordquiz/common -share/doc/HTML/et/kwordquiz/index.cache.bz2 -share/doc/HTML/et/kwordquiz/index.docbook -share/doc/HTML/et/kworldclock/common -share/doc/HTML/et/kworldclock/index.cache.bz2 -share/doc/HTML/et/kworldclock/index.docbook -share/doc/HTML/et/kwrite/common -share/doc/HTML/et/kwrite/index.cache.bz2 -share/doc/HTML/et/kwrite/index.docbook -share/doc/HTML/et/kxkb/common -share/doc/HTML/et/kxkb/index.cache.bz2 -share/doc/HTML/et/kxkb/index.docbook -share/doc/HTML/et/kxsldbg/callstack.docbook -share/doc/HTML/et/kxsldbg/common -share/doc/HTML/et/kxsldbg/credits.docbook -share/doc/HTML/et/kxsldbg/entities.docbook -share/doc/HTML/et/kxsldbg/glossary.docbook -share/doc/HTML/et/kxsldbg/index.cache.bz2 -share/doc/HTML/et/kxsldbg/index.docbook -share/doc/HTML/et/kxsldbg/kxsldbg_configure.docbook -share/doc/HTML/et/kxsldbg/kxsldbg_inspector.docbook -share/doc/HTML/et/kxsldbg/kxsldbg_mainwindow.docbook -share/doc/HTML/et/kxsldbg/kxsldbg_tools.docbook -share/doc/HTML/et/kxsldbg/sources.docbook -share/doc/HTML/et/kxsldbg/templates.docbook -share/doc/HTML/et/kxsldbg/variables.docbook -share/doc/HTML/et/lisa/common -share/doc/HTML/et/lisa/index.cache.bz2 -share/doc/HTML/et/lisa/index.docbook -share/doc/HTML/et/lskat/common -share/doc/HTML/et/lskat/index.cache.bz2 -share/doc/HTML/et/lskat/index.docbook -share/doc/HTML/et/multisynk/common -share/doc/HTML/et/multisynk/index.cache.bz2 -share/doc/HTML/et/multisynk/index.docbook -share/doc/HTML/et/multisynk/konnectors-chapter.docbook -share/doc/HTML/et/noatun/common -share/doc/HTML/et/noatun/index.cache.bz2 -share/doc/HTML/et/noatun/index.docbook -share/doc/HTML/et/quanta/adv-quanta.docbook -share/doc/HTML/et/quanta/common -share/doc/HTML/et/quanta/config-quanta.docbook -share/doc/HTML/et/quanta/credits-license.docbook -share/doc/HTML/et/quanta/debugging-quanta.docbook -share/doc/HTML/et/quanta/extending-quanta.docbook -share/doc/HTML/et/quanta/fundamentals.docbook -share/doc/HTML/et/quanta/glossary.docbook -share/doc/HTML/et/quanta/index.cache.bz2 -share/doc/HTML/et/quanta/index.docbook -share/doc/HTML/et/quanta/installation.docbook -share/doc/HTML/et/quanta/introduction.docbook -share/doc/HTML/et/quanta/q-and-a.docbook -share/doc/HTML/et/quanta/quanta-menus.docbook -share/doc/HTML/et/quanta/quanta-projects.docbook -share/doc/HTML/et/quanta/working-with-quanta.docbook -share/doc/HTML/et/umbrello/authors.docbook -share/doc/HTML/et/umbrello/code_import_and_generation.docbook -share/doc/HTML/et/umbrello/common -share/doc/HTML/et/umbrello/credits.docbook -share/doc/HTML/et/umbrello/index.cache.bz2 -share/doc/HTML/et/umbrello/index.docbook -share/doc/HTML/et/umbrello/introduction.docbook -share/doc/HTML/et/umbrello/other_features.docbook -share/doc/HTML/et/umbrello/uml_basics.docbook -share/doc/HTML/et/umbrello/working_with_umbrello.docbook -share/doc/HTML/et/xsldbg/commands.docbook -share/doc/HTML/et/xsldbg/common -share/doc/HTML/et/xsldbg/credits.docbook -share/doc/HTML/et/xsldbg/index.cache.bz2 -share/doc/HTML/et/xsldbg/index.docbook -share/doc/HTML/et/xsldbg/introduction.docbook -share/doc/HTML/et/xsldbg/usage.docbook -share/locale/et/LC_MESSAGES/akregator.mo -share/locale/et/LC_MESSAGES/akregator_konqplugin.mo -share/locale/et/LC_MESSAGES/alsaplayerui.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/ark_plugin.mo -share/locale/et/LC_MESSAGES/artsbuilder.mo -share/locale/et/LC_MESSAGES/artscontrol.mo -share/locale/et/LC_MESSAGES/artsmodules.mo -share/locale/et/LC_MESSAGES/atlantik.mo -share/locale/et/LC_MESSAGES/atlantikdesigner.mo -share/locale/et/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/et/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/et/LC_MESSAGES/audiorename_plugin.mo -share/locale/et/LC_MESSAGES/autorefresh.mo -share/locale/et/LC_MESSAGES/babelfish.mo -share/locale/et/LC_MESSAGES/cervisia.mo -share/locale/et/LC_MESSAGES/charlatanui.mo -share/locale/et/LC_MESSAGES/childpanelextension.mo -share/locale/et/LC_MESSAGES/clockapplet.mo -share/locale/et/LC_MESSAGES/crashesplugin.mo -share/locale/et/LC_MESSAGES/cupsdconf.mo -share/locale/et/LC_MESSAGES/cvsservice.mo -share/locale/et/LC_MESSAGES/dcoprss.mo -share/locale/et/LC_MESSAGES/devicesapplet.mo -share/locale/et/LC_MESSAGES/dirfilterplugin.mo -share/locale/et/LC_MESSAGES/display.mo -share/locale/et/LC_MESSAGES/dockbarextension.mo -share/locale/et/LC_MESSAGES/domtreeviewer.mo -share/locale/et/LC_MESSAGES/drkonqi.mo -share/locale/et/LC_MESSAGES/dub.mo -share/locale/et/LC_MESSAGES/extensionproxy.mo -share/locale/et/LC_MESSAGES/ffrs.mo -share/locale/et/LC_MESSAGES/filetypes.mo -share/locale/et/LC_MESSAGES/fontinst.mo -share/locale/et/LC_MESSAGES/fsview.mo -share/locale/et/LC_MESSAGES/htmlsearch.mo -share/locale/et/LC_MESSAGES/imagerename_plugin.mo -share/locale/et/LC_MESSAGES/imgalleryplugin.mo -share/locale/et/LC_MESSAGES/irkick.mo -share/locale/et/LC_MESSAGES/jefferson.mo -share/locale/et/LC_MESSAGES/joystick.mo -share/locale/et/LC_MESSAGES/juk.mo -share/locale/et/LC_MESSAGES/kabc2mutt.mo -share/locale/et/LC_MESSAGES/kabc_dir.mo -share/locale/et/LC_MESSAGES/kabc_file.mo -share/locale/et/LC_MESSAGES/kabc_ldap.mo -share/locale/et/LC_MESSAGES/kabc_ldapkio.mo -share/locale/et/LC_MESSAGES/kabc_net.mo -share/locale/et/LC_MESSAGES/kabc_slox.mo -share/locale/et/LC_MESSAGES/kabc_sql.mo -share/locale/et/LC_MESSAGES/kabcformat_binary.mo -share/locale/et/LC_MESSAGES/kaboodle.mo -share/locale/et/LC_MESSAGES/kaccess.mo -share/locale/et/LC_MESSAGES/kaddressbook.mo -share/locale/et/LC_MESSAGES/kalarm.mo -share/locale/et/LC_MESSAGES/kalzium.mo -share/locale/et/LC_MESSAGES/kandy.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/kate.mo -share/locale/et/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/et/LC_MESSAGES/katedefaultproject.mo -share/locale/et/LC_MESSAGES/katefiletemplates.mo -share/locale/et/LC_MESSAGES/katefll_initplugin.mo -share/locale/et/LC_MESSAGES/katefll_plugin.mo -share/locale/et/LC_MESSAGES/katehelloworld.mo -share/locale/et/LC_MESSAGES/katehtmltools.mo -share/locale/et/LC_MESSAGES/kateinsertcommand.mo -share/locale/et/LC_MESSAGES/katekjswrapper.mo -share/locale/et/LC_MESSAGES/katekttsd.mo -share/locale/et/LC_MESSAGES/katemake.mo -share/locale/et/LC_MESSAGES/katemodeline.mo -share/locale/et/LC_MESSAGES/kateopenheader.mo -share/locale/et/LC_MESSAGES/katepart.mo -share/locale/et/LC_MESSAGES/katepartkttsd.mo -share/locale/et/LC_MESSAGES/kateprojectmanager.mo -share/locale/et/LC_MESSAGES/katepybrowse.mo -share/locale/et/LC_MESSAGES/katesnippets.mo -share/locale/et/LC_MESSAGES/katespell.mo -share/locale/et/LC_MESSAGES/katetabbarextension.mo -share/locale/et/LC_MESSAGES/katetextfilter.mo -share/locale/et/LC_MESSAGES/katexmlcheck.mo -share/locale/et/LC_MESSAGES/katexmltools.mo -share/locale/et/LC_MESSAGES/katomic.mo -share/locale/et/LC_MESSAGES/kaudiocreator.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/kbinaryclock.mo -share/locale/et/LC_MESSAGES/kblackbox.mo -share/locale/et/LC_MESSAGES/kbounce.mo -share/locale/et/LC_MESSAGES/kbruch.mo -share/locale/et/LC_MESSAGES/kbstateapplet.mo -share/locale/et/LC_MESSAGES/kbugbuster.mo -share/locale/et/LC_MESSAGES/kcachegrind.mo -share/locale/et/LC_MESSAGES/kcalc.mo -share/locale/et/LC_MESSAGES/kcharselect.mo -share/locale/et/LC_MESSAGES/kcharselectapplet.mo -share/locale/et/LC_MESSAGES/kcm_krfb.mo -share/locale/et/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/et/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/et/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/et/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/et/LC_MESSAGES/kcmaccess.mo -share/locale/et/LC_MESSAGES/kcmaccessibility.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/kcmcddb.mo -share/locale/et/LC_MESSAGES/kcmcgi.mo -share/locale/et/LC_MESSAGES/kcmcolors.mo -share/locale/et/LC_MESSAGES/kcmcomponentchooser.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/kcmkabconfig.mo -share/locale/et/LC_MESSAGES/kcmkamera.mo -share/locale/et/LC_MESSAGES/kcmkclock.mo -share/locale/et/LC_MESSAGES/kcmkded.mo -share/locale/et/LC_MESSAGES/kcmkdnssd.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/kcmkontactnt.mo -share/locale/et/LC_MESSAGES/kcmktalkd.mo -share/locale/et/LC_MESSAGES/kcmkttsd.mo -share/locale/et/LC_MESSAGES/kcmkuick.mo -share/locale/et/LC_MESSAGES/kcmkurifilt.mo -share/locale/et/LC_MESSAGES/kcmkvaio.mo -share/locale/et/LC_MESSAGES/kcmkwallet.mo -share/locale/et/LC_MESSAGES/kcmkwindecoration.mo -share/locale/et/LC_MESSAGES/kcmkwinrules.mo -share/locale/et/LC_MESSAGES/kcmkwintheme.mo -share/locale/et/LC_MESSAGES/kcmkwm.mo -share/locale/et/LC_MESSAGES/kcmkxmlrpcd.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/kcmlirc.mo -share/locale/et/LC_MESSAGES/kcmlocale.mo -share/locale/et/LC_MESSAGES/kcmmediacontrol.mo -share/locale/et/LC_MESSAGES/kcmmidi.mo -share/locale/et/LC_MESSAGES/kcmnic.mo -share/locale/et/LC_MESSAGES/kcmnotify.mo -share/locale/et/LC_MESSAGES/kcmperformance.mo -share/locale/et/LC_MESSAGES/kcmprintmgr.mo -share/locale/et/LC_MESSAGES/kcmsamba.mo -share/locale/et/LC_MESSAGES/kcmscreensaver.mo -share/locale/et/LC_MESSAGES/kcmshell.mo -share/locale/et/LC_MESSAGES/kcmsmartcard.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/kcmthinkpad.mo -share/locale/et/LC_MESSAGES/kcmusb.mo -share/locale/et/LC_MESSAGES/kcmview1394.mo -share/locale/et/LC_MESSAGES/kcmvim.mo -share/locale/et/LC_MESSAGES/kcmwifi.mo -share/locale/et/LC_MESSAGES/kcmxinerama.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/kdat.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/kdelibs_colors.mo -share/locale/et/LC_MESSAGES/kdelirc.mo -share/locale/et/LC_MESSAGES/kdepasswd.mo -share/locale/et/LC_MESSAGES/kdepimresources.mo -share/locale/et/LC_MESSAGES/kdepimwizards.mo -share/locale/et/LC_MESSAGES/kdeprint.mo -share/locale/et/LC_MESSAGES/kdeprint_part.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/kdevdesigner.mo -share/locale/et/LC_MESSAGES/kdevelop.mo -share/locale/et/LC_MESSAGES/kdevtipofday.mo -share/locale/et/LC_MESSAGES/kdf.mo -share/locale/et/LC_MESSAGES/kdgantt.mo -share/locale/et/LC_MESSAGES/kdialog.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/keduca.mo -share/locale/et/LC_MESSAGES/kenolaba.mo -share/locale/et/LC_MESSAGES/kfax.mo -share/locale/et/LC_MESSAGES/kfifteenapplet.mo -share/locale/et/LC_MESSAGES/kfile_au.mo -share/locale/et/LC_MESSAGES/kfile_avi.mo -share/locale/et/LC_MESSAGES/kfile_bmp.mo -share/locale/et/LC_MESSAGES/kfile_cert.mo -share/locale/et/LC_MESSAGES/kfile_cpp.mo -share/locale/et/LC_MESSAGES/kfile_dds.mo -share/locale/et/LC_MESSAGES/kfile_deb.mo -share/locale/et/LC_MESSAGES/kfile_desktop.mo -share/locale/et/LC_MESSAGES/kfile_diff.mo -share/locale/et/LC_MESSAGES/kfile_drgeo.mo -share/locale/et/LC_MESSAGES/kfile_dvi.mo -share/locale/et/LC_MESSAGES/kfile_exr.mo -share/locale/et/LC_MESSAGES/kfile_flac.mo -share/locale/et/LC_MESSAGES/kfile_folder.mo -share/locale/et/LC_MESSAGES/kfile_font.mo -share/locale/et/LC_MESSAGES/kfile_gif.mo -share/locale/et/LC_MESSAGES/kfile_html.mo -share/locale/et/LC_MESSAGES/kfile_ico.mo -share/locale/et/LC_MESSAGES/kfile_ics.mo -share/locale/et/LC_MESSAGES/kfile_jpeg.mo -share/locale/et/LC_MESSAGES/kfile_kig.mo -share/locale/et/LC_MESSAGES/kfile_lnk.mo -share/locale/et/LC_MESSAGES/kfile_m3u.mo -share/locale/et/LC_MESSAGES/kfile_mhtml.mo -share/locale/et/LC_MESSAGES/kfile_mp3.mo -share/locale/et/LC_MESSAGES/kfile_mpc.mo -share/locale/et/LC_MESSAGES/kfile_ogg.mo -share/locale/et/LC_MESSAGES/kfile_palm.mo -share/locale/et/LC_MESSAGES/kfile_pcx.mo -share/locale/et/LC_MESSAGES/kfile_pdf.mo -share/locale/et/LC_MESSAGES/kfile_png.mo -share/locale/et/LC_MESSAGES/kfile_pnm.mo -share/locale/et/LC_MESSAGES/kfile_po.mo -share/locale/et/LC_MESSAGES/kfile_ps.mo -share/locale/et/LC_MESSAGES/kfile_rfc822.mo -share/locale/et/LC_MESSAGES/kfile_rgb.mo -share/locale/et/LC_MESSAGES/kfile_rpm.mo -share/locale/et/LC_MESSAGES/kfile_sid.mo -share/locale/et/LC_MESSAGES/kfile_tga.mo -share/locale/et/LC_MESSAGES/kfile_theora.mo -share/locale/et/LC_MESSAGES/kfile_tiff.mo -share/locale/et/LC_MESSAGES/kfile_torrent.mo -share/locale/et/LC_MESSAGES/kfile_ts.mo -share/locale/et/LC_MESSAGES/kfile_txt.mo -share/locale/et/LC_MESSAGES/kfile_vcf.mo -share/locale/et/LC_MESSAGES/kfile_wav.mo -share/locale/et/LC_MESSAGES/kfile_xbm.mo -share/locale/et/LC_MESSAGES/kfile_xpm.mo -share/locale/et/LC_MESSAGES/kfileaudiopreview.mo -share/locale/et/LC_MESSAGES/kfilereplace.mo -share/locale/et/LC_MESSAGES/kfileshare.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/kfontinst.mo -share/locale/et/LC_MESSAGES/kfouleggs.mo -share/locale/et/LC_MESSAGES/kgamma.mo -share/locale/et/LC_MESSAGES/kgantt.mo -share/locale/et/LC_MESSAGES/kget.mo -share/locale/et/LC_MESSAGES/kghostview.mo -share/locale/et/LC_MESSAGES/kgoldrunner.mo -share/locale/et/LC_MESSAGES/kgpg.mo -share/locale/et/LC_MESSAGES/kgreet_classic.mo -share/locale/et/LC_MESSAGES/kgreet_winbind.mo -share/locale/et/LC_MESSAGES/khangman.mo -share/locale/et/LC_MESSAGES/khelpcenter.mo -share/locale/et/LC_MESSAGES/khexedit.mo -share/locale/et/LC_MESSAGES/khexedit2part.mo -share/locale/et/LC_MESSAGES/khotkeys.mo -share/locale/et/LC_MESSAGES/khtmlkttsd.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/kig.mo -share/locale/et/LC_MESSAGES/kimagemapeditor.mo -share/locale/et/LC_MESSAGES/kinetd.mo -share/locale/et/LC_MESSAGES/kio.mo -share/locale/et/LC_MESSAGES/kio_audiocd.mo -share/locale/et/LC_MESSAGES/kio_devices.mo -share/locale/et/LC_MESSAGES/kio_finger.mo -share/locale/et/LC_MESSAGES/kio_fish.mo -share/locale/et/LC_MESSAGES/kio_floppy.mo -share/locale/et/LC_MESSAGES/kio_groupwise.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_ldap.mo -share/locale/et/LC_MESSAGES/kio_mac.mo -share/locale/et/LC_MESSAGES/kio_man.mo -share/locale/et/LC_MESSAGES/kio_media.mo -share/locale/et/LC_MESSAGES/kio_mobile.mo -share/locale/et/LC_MESSAGES/kio_newimap4.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_print.mo -share/locale/et/LC_MESSAGES/kio_remote.mo -share/locale/et/LC_MESSAGES/kio_settings.mo -share/locale/et/LC_MESSAGES/kio_sftp.mo -share/locale/et/LC_MESSAGES/kio_sieve.mo -share/locale/et/LC_MESSAGES/kio_smb.mo -share/locale/et/LC_MESSAGES/kio_smtp.mo -share/locale/et/LC_MESSAGES/kio_svn.mo -share/locale/et/LC_MESSAGES/kio_system.mo -share/locale/et/LC_MESSAGES/kio_trash.mo -share/locale/et/LC_MESSAGES/kio_zeroconf.mo -share/locale/et/LC_MESSAGES/kioexec.mo -share/locale/et/LC_MESSAGES/kiten.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/klatin.mo -share/locale/et/LC_MESSAGES/klegacyimport.mo -share/locale/et/LC_MESSAGES/kleopatra.mo -share/locale/et/LC_MESSAGES/klettres.mo -share/locale/et/LC_MESSAGES/klickety.mo -share/locale/et/LC_MESSAGES/klines.mo -share/locale/et/LC_MESSAGES/klinkstatus.mo -share/locale/et/LC_MESSAGES/klipper.mo -share/locale/et/LC_MESSAGES/klock.mo -share/locale/et/LC_MESSAGES/kmag.mo -share/locale/et/LC_MESSAGES/kmahjongg.mo -share/locale/et/LC_MESSAGES/kmail.mo -share/locale/et/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/et/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/et/LC_MESSAGES/kmailcvt.mo -share/locale/et/LC_MESSAGES/kmathapplet.mo -share/locale/et/LC_MESSAGES/kmathtool.mo -share/locale/et/LC_MESSAGES/kmcop.mo -share/locale/et/LC_MESSAGES/kmenuapplet.mo -share/locale/et/LC_MESSAGES/kmenuedit.mo -share/locale/et/LC_MESSAGES/kmessedwords.mo -share/locale/et/LC_MESSAGES/kmid.mo -share/locale/et/LC_MESSAGES/kmilo_delli8k.mo -share/locale/et/LC_MESSAGES/kmilo_generic.mo -share/locale/et/LC_MESSAGES/kmilo_kvaio.mo -share/locale/et/LC_MESSAGES/kmilo_powerbook.mo -share/locale/et/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/et/LC_MESSAGES/kmilod.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/kmobile.mo -share/locale/et/LC_MESSAGES/kmoon.mo -share/locale/et/LC_MESSAGES/kmousetool.mo -share/locale/et/LC_MESSAGES/kmouth.mo -share/locale/et/LC_MESSAGES/kmplot.mo -share/locale/et/LC_MESSAGES/kmrml.mo -share/locale/et/LC_MESSAGES/knetattach.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/kodo.mo -share/locale/et/LC_MESSAGES/kolf.mo -share/locale/et/LC_MESSAGES/kolourpaint.mo -share/locale/et/LC_MESSAGES/kolourpicker.mo -share/locale/et/LC_MESSAGES/kommander.mo -share/locale/et/LC_MESSAGES/kompare.mo -share/locale/et/LC_MESSAGES/konnector_dummy.mo -share/locale/et/LC_MESSAGES/konnector_kabc.mo -share/locale/et/LC_MESSAGES/konnector_kcal.mo -share/locale/et/LC_MESSAGES/konnector_local.mo -share/locale/et/LC_MESSAGES/konnector_qtopia.mo -share/locale/et/LC_MESSAGES/konnector_remote.mo -share/locale/et/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/et/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/et/LC_MESSAGES/konqsidebar_news.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/konsolekalendar.mo -share/locale/et/LC_MESSAGES/kontact.mo -share/locale/et/LC_MESSAGES/kooka.mo -share/locale/et/LC_MESSAGES/kopete.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/kpartapp.mo -share/locale/et/LC_MESSAGES/kpartsaver.mo -share/locale/et/LC_MESSAGES/kpat.mo -share/locale/et/LC_MESSAGES/kpdf.mo -share/locale/et/LC_MESSAGES/kpercentage.mo -share/locale/et/LC_MESSAGES/kpersonalizer.mo -share/locale/et/LC_MESSAGES/kpf.mo -share/locale/et/LC_MESSAGES/kpilot.mo -share/locale/et/LC_MESSAGES/kpoker.mo -share/locale/et/LC_MESSAGES/kpovmodeler.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/krandr.mo -share/locale/et/LC_MESSAGES/krdb.mo -share/locale/et/LC_MESSAGES/krdc.mo -share/locale/et/LC_MESSAGES/kreadconfig.mo -share/locale/et/LC_MESSAGES/krec.mo -share/locale/et/LC_MESSAGES/kregexpeditor.mo -share/locale/et/LC_MESSAGES/kres_blogging.mo -share/locale/et/LC_MESSAGES/kres_bugzilla.mo -share/locale/et/LC_MESSAGES/kres_exchange.mo -share/locale/et/LC_MESSAGES/kres_featureplan.mo -share/locale/et/LC_MESSAGES/kres_groupwise.mo -share/locale/et/LC_MESSAGES/kres_kolab.mo -share/locale/et/LC_MESSAGES/kres_opengroupware.mo -share/locale/et/LC_MESSAGES/kres_remote.mo -share/locale/et/LC_MESSAGES/kres_xmlrpc.mo -share/locale/et/LC_MESSAGES/kreversi.mo -share/locale/et/LC_MESSAGES/krfb.mo -share/locale/et/LC_MESSAGES/kruler.mo -share/locale/et/LC_MESSAGES/krunapplet.mo -share/locale/et/LC_MESSAGES/ksame.mo -share/locale/et/LC_MESSAGES/ksayit.mo -share/locale/et/LC_MESSAGES/kscd.mo -share/locale/et/LC_MESSAGES/kscreensaver.mo -share/locale/et/LC_MESSAGES/kshisen.mo -share/locale/et/LC_MESSAGES/ksig.mo -share/locale/et/LC_MESSAGES/ksim.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/ksplashthemes.mo -share/locale/et/LC_MESSAGES/kstars.mo -share/locale/et/LC_MESSAGES/kstart.mo -share/locale/et/LC_MESSAGES/kstartperf.mo -share/locale/et/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/et/LC_MESSAGES/kstyle_phase_config.mo -share/locale/et/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/et/LC_MESSAGES/ksvgplugin.mo -share/locale/et/LC_MESSAGES/ksync.mo -share/locale/et/LC_MESSAGES/ksysguard.mo -share/locale/et/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/et/LC_MESSAGES/ksystraycmd.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/ktexteditor_autobookmarker.mo -share/locale/et/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/et/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/et/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/et/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/et/LC_MESSAGES/ktexteditor_kttsd.mo -share/locale/et/LC_MESSAGES/kthememanager.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/ktnef.mo -share/locale/et/LC_MESSAGES/ktouch.mo -share/locale/et/LC_MESSAGES/ktron.mo -share/locale/et/LC_MESSAGES/kttsd.mo -share/locale/et/LC_MESSAGES/kttsd_commandplugin.mo -share/locale/et/LC_MESSAGES/kttsd_eposplugin.mo -share/locale/et/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/et/LC_MESSAGES/kttsd_fliteplugin.mo -share/locale/et/LC_MESSAGES/kttsd_freettsplugin.mo -share/locale/et/LC_MESSAGES/kttsd_hadifixplugin.mo -share/locale/et/LC_MESSAGES/kttsd_sbdplugin.mo -share/locale/et/LC_MESSAGES/kttsd_stringreplacerplugin.mo -share/locale/et/LC_MESSAGES/kttsd_talkerchooserplugin.mo -share/locale/et/LC_MESSAGES/kttsd_xmltransformerplugin.mo -share/locale/et/LC_MESSAGES/kttsjobmgr.mo -share/locale/et/LC_MESSAGES/kttsmgr.mo -share/locale/et/LC_MESSAGES/ktuberling.mo -share/locale/et/LC_MESSAGES/kturtle.mo -share/locale/et/LC_MESSAGES/ktux.mo -share/locale/et/LC_MESSAGES/kuick_plugin.mo -share/locale/et/LC_MESSAGES/kuickshow.mo -share/locale/et/LC_MESSAGES/kuiviewer.mo -share/locale/et/LC_MESSAGES/kuser.mo -share/locale/et/LC_MESSAGES/kverbos.mo -share/locale/et/LC_MESSAGES/kview.mo -share/locale/et/LC_MESSAGES/kview_scale.mo -share/locale/et/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/et/LC_MESSAGES/kviewcanvas.mo -share/locale/et/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/et/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/et/LC_MESSAGES/kviewscannerplugin.mo -share/locale/et/LC_MESSAGES/kviewshell.mo -share/locale/et/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/et/LC_MESSAGES/kviewviewer.mo -share/locale/et/LC_MESSAGES/kvoctrain.mo -share/locale/et/LC_MESSAGES/kwalletmanager.mo -share/locale/et/LC_MESSAGES/kwatchgnupg.mo -share/locale/et/LC_MESSAGES/kweather.mo -share/locale/et/LC_MESSAGES/kwifimanager.mo -share/locale/et/LC_MESSAGES/kwin.mo -share/locale/et/LC_MESSAGES/kwin4.mo -share/locale/et/LC_MESSAGES/kwin_art_clients.mo -share/locale/et/LC_MESSAGES/kwin_clients.mo -share/locale/et/LC_MESSAGES/kwireless.mo -share/locale/et/LC_MESSAGES/kwordquiz.mo -share/locale/et/LC_MESSAGES/kworldclock.mo -share/locale/et/LC_MESSAGES/kwriteconfig.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/kxsldbg.mo -share/locale/et/LC_MESSAGES/libKTTSD.mo -share/locale/et/LC_MESSAGES/libcalendarresources.mo -share/locale/et/LC_MESSAGES/libdmctl.mo -share/locale/et/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/et/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/et/LC_MESSAGES/libkcal.mo -share/locale/et/LC_MESSAGES/libkcalsystem.mo -share/locale/et/LC_MESSAGES/libkcddb.mo -share/locale/et/LC_MESSAGES/libkdegames.mo -share/locale/et/LC_MESSAGES/libkdehighscores.mo -share/locale/et/LC_MESSAGES/libkdenetwork.mo -share/locale/et/LC_MESSAGES/libkdepim.mo -share/locale/et/LC_MESSAGES/libkholidays.mo -share/locale/et/LC_MESSAGES/libkicker.mo -share/locale/et/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/et/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/et/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/et/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/et/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/et/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/et/LC_MESSAGES/libkickermenu_tom.mo -share/locale/et/LC_MESSAGES/libkleopatra.mo -share/locale/et/LC_MESSAGES/libkmime.mo -share/locale/et/LC_MESSAGES/libkonq.mo -share/locale/et/LC_MESSAGES/libkpgp.mo -share/locale/et/LC_MESSAGES/libkpimexchange.mo -share/locale/et/LC_MESSAGES/libkscan.mo -share/locale/et/LC_MESSAGES/libkscreensaver.mo -share/locale/et/LC_MESSAGES/libksieve.mo -share/locale/et/LC_MESSAGES/libksirtet.mo -share/locale/et/LC_MESSAGES/libksync.mo -share/locale/et/LC_MESSAGES/libtaskbar.mo -share/locale/et/LC_MESSAGES/libtaskmanager.mo -share/locale/et/LC_MESSAGES/lockout.mo -share/locale/et/LC_MESSAGES/lskat.mo -share/locale/et/LC_MESSAGES/lyrics.mo -share/locale/et/LC_MESSAGES/mediaapplet.mo -share/locale/et/LC_MESSAGES/mediacontrol.mo -share/locale/et/LC_MESSAGES/minitoolsplugin.mo -share/locale/et/LC_MESSAGES/multisynk.mo -share/locale/et/LC_MESSAGES/naughtyapplet.mo -share/locale/et/LC_MESSAGES/nexscope.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/pitchablespeed.mo -share/locale/et/LC_MESSAGES/ppdtranslations.mo -share/locale/et/LC_MESSAGES/privacy.mo -share/locale/et/LC_MESSAGES/qeditor.mo -share/locale/et/LC_MESSAGES/quanta.mo -share/locale/et/LC_MESSAGES/quicklauncher.mo -share/locale/et/LC_MESSAGES/rellinks.mo -share/locale/et/LC_MESSAGES/searchbarplugin.mo -share/locale/et/LC_MESSAGES/secpolicy.mo -share/locale/et/LC_MESSAGES/spy.mo -share/locale/et/LC_MESSAGES/synaescope.mo -share/locale/et/LC_MESSAGES/taskbarextension.mo -share/locale/et/LC_MESSAGES/timezones.mo -share/locale/et/LC_MESSAGES/tippecanoe.mo -share/locale/et/LC_MESSAGES/trashapplet.mo -share/locale/et/LC_MESSAGES/tyler.mo -share/locale/et/LC_MESSAGES/uachangerplugin.mo -share/locale/et/LC_MESSAGES/umbrello.mo -share/locale/et/LC_MESSAGES/useraccount.mo -share/locale/et/LC_MESSAGES/validatorsplugin.mo -share/locale/et/LC_MESSAGES/vimpart.mo -share/locale/et/LC_MESSAGES/wakeup.mo -share/locale/et/LC_MESSAGES/wavecapture.mo -share/locale/et/LC_MESSAGES/webarchiver.mo -share/locale/et/charset -share/locale/et/entry.desktop -share/locale/et/flag.png -@dirrm share/doc/HTML/et/xsldbg -@dirrm share/doc/HTML/et/umbrello -@dirrm share/doc/HTML/et/quanta -@dirrm share/doc/HTML/et/noatun -@dirrm share/doc/HTML/et/multisynk -@dirrm share/doc/HTML/et/lskat -@dirrm share/doc/HTML/et/lisa -@dirrm share/doc/HTML/et/kxsldbg -@dirrm share/doc/HTML/et/kxkb -@dirrm share/doc/HTML/et/kwrite -@dirrm share/doc/HTML/et/kworldclock -@dirrm share/doc/HTML/et/kwordquiz -@dirrm share/doc/HTML/et/kwin4 -@dirrm share/doc/HTML/et/kwifimanager -@dirrm share/doc/HTML/et/kweather -@dirrm share/doc/HTML/et/kwatchgnupg -@dirrm share/doc/HTML/et/kwallet -@dirrm share/doc/HTML/et/kvoctrain -@dirrm share/doc/HTML/et/kview -@dirrm share/doc/HTML/et/kverbos -@dirrm share/doc/HTML/et/kuser -@dirrm share/doc/HTML/et/kuickshow -@dirrm share/doc/HTML/et/kturtle -@dirrm share/doc/HTML/et/ktuberling -@dirrm share/doc/HTML/et/kttsd -@dirrm share/doc/HTML/et/ktron -@dirrm share/doc/HTML/et/ktouch -@dirrm share/doc/HTML/et/ktnef -@dirrm share/doc/HTML/et/ktimer -@dirrm share/doc/HTML/et/kteatime -@dirrm share/doc/HTML/et/ktalkd -@dirrm share/doc/HTML/et/ksysv -@dirrm share/doc/HTML/et/ksysguard -@dirrm share/doc/HTML/et/kstars -@dirrm share/doc/HTML/et/ksplashml -@dirrm share/doc/HTML/et/kspell -@dirrm share/doc/HTML/et/kspaceduel -@dirrm share/doc/HTML/et/ksokoban -@dirrm share/doc/HTML/et/ksnapshot -@dirrm share/doc/HTML/et/ksnake -@dirrm share/doc/HTML/et/ksirtet -@dirrm share/doc/HTML/et/ksirc -@dirrm share/doc/HTML/et/ksim -@dirrm share/doc/HTML/et/kshisen -@dirrm share/doc/HTML/et/kscd -@dirrm share/doc/HTML/et/ksame -@dirrm share/doc/HTML/et/kruler -@dirrm share/doc/HTML/et/krfb -@dirrm share/doc/HTML/et/kreversi -@dirrm share/doc/HTML/et/krdc -@dirrm share/doc/HTML/et/kppp -@dirrm share/doc/HTML/et/kpovmodeler -@dirrm share/doc/HTML/et/kpoker -@dirrm share/doc/HTML/et/kpilot -@dirrm share/doc/HTML/et/kpf -@dirrm share/doc/HTML/et/kpercentage -@dirrm share/doc/HTML/et/kpdf -@dirrm share/doc/HTML/et/kpat -@dirrm share/doc/HTML/et/kpager -@dirrm share/doc/HTML/et/kpackage -@dirrm share/doc/HTML/et/korn -@dirrm share/doc/HTML/et/korganizer -@dirrm share/doc/HTML/et/kopete -@dirrm share/doc/HTML/et/kooka -@dirrm share/doc/HTML/et/kontact -@dirrm share/doc/HTML/et/konsolekalendar -@dirrm share/doc/HTML/et/konsole -@dirrm share/doc/HTML/et/konquest -@dirrm share/doc/HTML/et/konqueror -@dirrm share/doc/HTML/et/konq-plugins/webarchiver -@dirrm share/doc/HTML/et/konq-plugins/validators -@dirrm share/doc/HTML/et/konq-plugins/uachanger -@dirrm share/doc/HTML/et/konq-plugins/smbmounter -@dirrm share/doc/HTML/et/konq-plugins/mediaplayer -@dirrm share/doc/HTML/et/konq-plugins/kuick -@dirrm share/doc/HTML/et/konq-plugins/khtmlsettings -@dirrm share/doc/HTML/et/konq-plugins/imgallery -@dirrm share/doc/HTML/et/konq-plugins/fsview -@dirrm share/doc/HTML/et/konq-plugins/domtreeviewer -@dirrm share/doc/HTML/et/konq-plugins/dirfilter -@dirrm share/doc/HTML/et/konq-plugins/crashes -@dirrm share/doc/HTML/et/konq-plugins/babel -@dirrm share/doc/HTML/et/konq-plugins -@dirrm share/doc/HTML/et/kompare -@dirrm share/doc/HTML/et/kommander -@dirrm share/doc/HTML/et/kolourpaint -@dirrm share/doc/HTML/et/kolf -@dirrm share/doc/HTML/et/kodo -@dirrm share/doc/HTML/et/knotes -@dirrm share/doc/HTML/et/knode -@dirrm share/doc/HTML/et/knewsticker -@dirrm share/doc/HTML/et/knetattach -@dirrm share/doc/HTML/et/kmplot -@dirrm share/doc/HTML/et/kmouth -@dirrm share/doc/HTML/et/kmousetool -@dirrm share/doc/HTML/et/kmoon -@dirrm share/doc/HTML/et/kmines -@dirrm share/doc/HTML/et/kmessedwords -@dirrm share/doc/HTML/et/kmenuedit -@dirrm share/doc/HTML/et/kmathtool -@dirrm share/doc/HTML/et/kmail -@dirrm share/doc/HTML/et/kmahjongg -@dirrm share/doc/HTML/et/kmag -@dirrm share/doc/HTML/et/klipper -@dirrm share/doc/HTML/et/klinkstatus -@dirrm share/doc/HTML/et/klines -@dirrm share/doc/HTML/et/klickety -@dirrm share/doc/HTML/et/klettres -@dirrm share/doc/HTML/et/kleopatra -@dirrm share/doc/HTML/et/klatin -@dirrm share/doc/HTML/et/kjumpingcube -@dirrm share/doc/HTML/et/kjots -@dirrm share/doc/HTML/et/kiten -@dirrm share/doc/HTML/et/kioslave -@dirrm share/doc/HTML/et/kio_audiocd -@dirrm share/doc/HTML/et/kinfocenter/xserver -@dirrm share/doc/HTML/et/kinfocenter/usb -@dirrm share/doc/HTML/et/kinfocenter/sound -@dirrm share/doc/HTML/et/kinfocenter/scsi -@dirrm share/doc/HTML/et/kinfocenter/samba -@dirrm share/doc/HTML/et/kinfocenter/protocols -@dirrm share/doc/HTML/et/kinfocenter/processor -@dirrm share/doc/HTML/et/kinfocenter/pcmcia -@dirrm share/doc/HTML/et/kinfocenter/pci -@dirrm share/doc/HTML/et/kinfocenter/partitions -@dirrm share/doc/HTML/et/kinfocenter/opengl -@dirrm share/doc/HTML/et/kinfocenter/nics -@dirrm share/doc/HTML/et/kinfocenter/memory -@dirrm share/doc/HTML/et/kinfocenter/ioports -@dirrm share/doc/HTML/et/kinfocenter/interrupts -@dirrm share/doc/HTML/et/kinfocenter/dma -@dirrm share/doc/HTML/et/kinfocenter/devices -@dirrm share/doc/HTML/et/kinfocenter/blockdevices -@dirrm share/doc/HTML/et/kinfocenter -@dirrm share/doc/HTML/et/kig -@dirrm share/doc/HTML/et/kiconedit -@dirrm share/doc/HTML/et/kicker-applets -@dirrm share/doc/HTML/et/kicker -@dirrm share/doc/HTML/et/khexedit -@dirrm share/doc/HTML/et/khelpcenter/visualdict -@dirrm share/doc/HTML/et/khelpcenter/userguide -@dirrm share/doc/HTML/et/khelpcenter/quickstart -@dirrm share/doc/HTML/et/khelpcenter/glossary -@dirrm share/doc/HTML/et/khelpcenter/faq -@dirrm share/doc/HTML/et/khelpcenter -@dirrm share/doc/HTML/et/khangman -@dirrm share/doc/HTML/et/kgpg -@dirrm share/doc/HTML/et/kgoldrunner -@dirrm share/doc/HTML/et/kghostview -@dirrm share/doc/HTML/et/kget -@dirrm share/doc/HTML/et/kgamma -@dirrm share/doc/HTML/et/kfouleggs -@dirrm share/doc/HTML/et/kfloppy -@dirrm share/doc/HTML/et/kfind -@dirrm share/doc/HTML/et/kfilereplace -@dirrm share/doc/HTML/et/kenolaba -@dirrm share/doc/HTML/et/keduca -@dirrm share/doc/HTML/et/kedit -@dirrm share/doc/HTML/et/kdvi -@dirrm share/doc/HTML/et/kdm -@dirrm share/doc/HTML/et/kdict -@dirrm share/doc/HTML/et/kdf -@dirrm share/doc/HTML/et/kdesu -@dirrm share/doc/HTML/et/kdeprint -@dirrm share/doc/HTML/et/kdelirc/kcmlirc -@dirrm share/doc/HTML/et/kdelirc/irkick -@dirrm share/doc/HTML/et/kdelirc -@dirrm share/doc/HTML/et/kdebugdialog -@dirrm share/doc/HTML/et/kdearch -@dirrm share/doc/HTML/et/kdcop -@dirrm share/doc/HTML/et/kdat -@dirrm share/doc/HTML/et/kcron -@dirrm share/doc/HTML/et/kcontrol/windowmanagement -@dirrm share/doc/HTML/et/kcontrol/useragent -@dirrm share/doc/HTML/et/kcontrol/spellchecking -@dirrm share/doc/HTML/et/kcontrol/smb -@dirrm share/doc/HTML/et/kcontrol/screensaver -@dirrm share/doc/HTML/et/kcontrol/proxy -@dirrm share/doc/HTML/et/kcontrol/powerctrl -@dirrm share/doc/HTML/et/kcontrol/passwords -@dirrm share/doc/HTML/et/kcontrol/panelappearance -@dirrm share/doc/HTML/et/kcontrol/panel -@dirrm share/doc/HTML/et/kcontrol/netpref -@dirrm share/doc/HTML/et/kcontrol/mouse -@dirrm share/doc/HTML/et/kcontrol/laptop -@dirrm share/doc/HTML/et/kcontrol/language -@dirrm share/doc/HTML/et/kcontrol/lanbrowser -@dirrm share/doc/HTML/et/kcontrol/kxmlrpcd -@dirrm share/doc/HTML/et/kcontrol/kwindecoration -@dirrm share/doc/HTML/et/kcontrol/kmixcfg -@dirrm share/doc/HTML/et/kcontrol/khtml -@dirrm share/doc/HTML/et/kcontrol/keys -@dirrm share/doc/HTML/et/kcontrol/keyboard -@dirrm share/doc/HTML/et/kcontrol/kdm -@dirrm share/doc/HTML/et/kcontrol/kcmtaskbar -@dirrm share/doc/HTML/et/kcontrol/kcmstyle -@dirrm share/doc/HTML/et/kcontrol/kcmsmserver -@dirrm share/doc/HTML/et/kcontrol/kcmnotify -@dirrm share/doc/HTML/et/kcontrol/kcmlowbatwarn -@dirrm share/doc/HTML/et/kcontrol/kcmlowbatcrit -@dirrm share/doc/HTML/et/kcontrol/kcmlaunch -@dirrm share/doc/HTML/et/kcontrol/kcmktalkd -@dirrm share/doc/HTML/et/kcontrol/kcmkonsole -@dirrm share/doc/HTML/et/kcontrol/kcmfontinst -@dirrm share/doc/HTML/et/kcontrol/kcmcss -@dirrm share/doc/HTML/et/kcontrol/kcmaccess -@dirrm share/doc/HTML/et/kcontrol/kalarmd -@dirrm share/doc/HTML/et/kcontrol/icons -@dirrm share/doc/HTML/et/kcontrol/helpindex -@dirrm share/doc/HTML/et/kcontrol/fonts -@dirrm share/doc/HTML/et/kcontrol/filetypes -@dirrm share/doc/HTML/et/kcontrol/filemanager -@dirrm share/doc/HTML/et/kcontrol/energy -@dirrm share/doc/HTML/et/kcontrol/email -@dirrm share/doc/HTML/et/kcontrol/ebrowsing -@dirrm share/doc/HTML/et/kcontrol/desktopbehavior -@dirrm share/doc/HTML/et/kcontrol/desktop -@dirrm share/doc/HTML/et/kcontrol/crypto -@dirrm share/doc/HTML/et/kcontrol/cookies -@dirrm share/doc/HTML/et/kcontrol/colors -@dirrm share/doc/HTML/et/kcontrol/clock -@dirrm share/doc/HTML/et/kcontrol/cache -@dirrm share/doc/HTML/et/kcontrol/bell -@dirrm share/doc/HTML/et/kcontrol/background -@dirrm share/doc/HTML/et/kcontrol/arts -@dirrm share/doc/HTML/et/kcontrol -@dirrm share/doc/HTML/et/kcoloredit -@dirrm share/doc/HTML/et/kcharselect -@dirrm share/doc/HTML/et/kcalc -@dirrm share/doc/HTML/et/kcachegrind -@dirrm share/doc/HTML/et/kbugbuster -@dirrm share/doc/HTML/et/kbruch -@dirrm share/doc/HTML/et/kbounce -@dirrm share/doc/HTML/et/kblackbox -@dirrm share/doc/HTML/et/kbattleship -@dirrm share/doc/HTML/et/kbackgammon -@dirrm share/doc/HTML/et/kbabel -@dirrm share/doc/HTML/et/katomic -@dirrm share/doc/HTML/et/kate-plugins -@dirrm share/doc/HTML/et/kate -@dirrm share/doc/HTML/et/kasteroids -@dirrm share/doc/HTML/et/karm -@dirrm share/doc/HTML/et/kappfinder -@dirrm share/doc/HTML/et/kandy -@dirrm share/doc/HTML/et/kamera -@dirrm share/doc/HTML/et/kalzium -@dirrm share/doc/HTML/et/kalarm -@dirrm share/doc/HTML/et/kaddressbook -@dirrm share/doc/HTML/et/kaboodle -@dirrm share/doc/HTML/et/flashkard -@dirrm share/doc/HTML/et/common -@dirrm share/doc/HTML/et/cervisia -@dirrm share/doc/HTML/et/atlantik -@dirrm share/doc/HTML/et/ark -@dirrm share/doc/HTML/et/amor -@dirrm share/doc/HTML/et/akregator -@dirrm share/doc/HTML/et/KRegExpEditor diff --git a/misc/kde4-l10n-eu/Makefile b/misc/kde4-l10n-eu/Makefile deleted file mode 100644 index 2e78cdeb9979..000000000000 --- a/misc/kde4-l10n-eu/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-eu -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= eu- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Basque messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-eu/distinfo b/misc/kde4-l10n-eu/distinfo deleted file mode 100644 index f29687c551a2..000000000000 --- a/misc/kde4-l10n-eu/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-eu-3.4.2.tar.bz2) = 333d6cf136bb3aa1468f2e6eb228084c -SIZE (KDE/kde-i18n/kde-i18n-eu-3.4.2.tar.bz2) = 1909107 diff --git a/misc/kde4-l10n-eu/pkg-descr b/misc/kde4-l10n-eu/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-eu/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-eu/pkg-plist b/misc/kde4-l10n-eu/pkg-plist deleted file mode 100644 index fedcdabce6c7..000000000000 --- a/misc/kde4-l10n-eu/pkg-plist +++ /dev/null @@ -1,636 +0,0 @@ -share/doc/HTML/eu/common/1.png -share/doc/HTML/eu/common/10.png -share/doc/HTML/eu/common/2.png -share/doc/HTML/eu/common/3.png -share/doc/HTML/eu/common/4.png -share/doc/HTML/eu/common/5.png -share/doc/HTML/eu/common/6.png -share/doc/HTML/eu/common/7.png -share/doc/HTML/eu/common/8.png -share/doc/HTML/eu/common/9.png -share/doc/HTML/eu/common/appheader.html -share/doc/HTML/eu/common/artistic-license.html -share/doc/HTML/eu/common/bottom-left.png -share/doc/HTML/eu/common/bottom-middle.png -share/doc/HTML/eu/common/bottom-right.png -share/doc/HTML/eu/common/bottom1.png -share/doc/HTML/eu/common/bottom2.png -share/doc/HTML/eu/common/bsd-license.html -share/doc/HTML/eu/common/docheadergears.png -share/doc/HTML/eu/common/doctop1.png -share/doc/HTML/eu/common/doctop1a.png -share/doc/HTML/eu/common/doctop1b.png -share/doc/HTML/eu/common/doctop2.png -share/doc/HTML/eu/common/doxygen.css -share/doc/HTML/eu/common/fdl-license -share/doc/HTML/eu/common/fdl-license.html -share/doc/HTML/eu/common/fdl-translated.html -share/doc/HTML/eu/common/footer.html -share/doc/HTML/eu/common/gpl-license -share/doc/HTML/eu/common/gpl-license.html -share/doc/HTML/eu/common/gpl-translated.html -share/doc/HTML/eu/common/grad.png -share/doc/HTML/eu/common/header.html -share/doc/HTML/eu/common/headerbg.png -share/doc/HTML/eu/common/kde-common.css -share/doc/HTML/eu/common/kde-default.css -share/doc/HTML/eu/common/kde-localised.css -share/doc/HTML/eu/common/kde-localised.css.template -share/doc/HTML/eu/common/kde-web.css -share/doc/HTML/eu/common/kde_logo.png -share/doc/HTML/eu/common/kde_logo_bg.png -share/doc/HTML/eu/common/kmenu.png -share/doc/HTML/eu/common/lgpl-license -share/doc/HTML/eu/common/lgpl-license.html -share/doc/HTML/eu/common/logotp3.png -share/doc/HTML/eu/common/mainfooter.html -share/doc/HTML/eu/common/mainheader.html -share/doc/HTML/eu/common/qpl-license.html -share/doc/HTML/eu/common/shadow.png -share/doc/HTML/eu/common/top-left.png -share/doc/HTML/eu/common/top-middle.png -share/doc/HTML/eu/common/top-right-konqueror.png -share/doc/HTML/eu/common/web-docbottom.png -share/doc/HTML/eu/common/web-doctop.png -share/doc/HTML/eu/common/x11-license.html -share/doc/HTML/eu/common/xml.dcl -share/doc/HTML/eu/kbabel/catman.docbook -share/doc/HTML/eu/kbabel/dictionaries.docbook -share/doc/HTML/eu/kbabel/faq.docbook -share/doc/HTML/eu/kbabel/glossary.docbook -share/doc/HTML/eu/kbabel/kbabeldict.docbook -share/doc/HTML/eu/kbabel/menu.docbook -share/doc/HTML/eu/kbabel/preferences.docbook -share/doc/HTML/eu/kbabel/using.docbook -share/locale/eu/LC_MESSAGES/akregator.mo -share/locale/eu/LC_MESSAGES/akregator_konqplugin.mo -share/locale/eu/LC_MESSAGES/alsaplayerui.mo -share/locale/eu/LC_MESSAGES/amor.mo -share/locale/eu/LC_MESSAGES/appletproxy.mo -share/locale/eu/LC_MESSAGES/ark.mo -share/locale/eu/LC_MESSAGES/ark_plugin.mo -share/locale/eu/LC_MESSAGES/artsbuilder.mo -share/locale/eu/LC_MESSAGES/artscontrol.mo -share/locale/eu/LC_MESSAGES/artsmodules.mo -share/locale/eu/LC_MESSAGES/atlantik.mo -share/locale/eu/LC_MESSAGES/atlantikdesigner.mo -share/locale/eu/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/eu/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/eu/LC_MESSAGES/audiorename_plugin.mo -share/locale/eu/LC_MESSAGES/autorefresh.mo -share/locale/eu/LC_MESSAGES/babelfish.mo -share/locale/eu/LC_MESSAGES/cervisia.mo -share/locale/eu/LC_MESSAGES/charlatanui.mo -share/locale/eu/LC_MESSAGES/childpanelextension.mo -share/locale/eu/LC_MESSAGES/clockapplet.mo -share/locale/eu/LC_MESSAGES/crashesplugin.mo -share/locale/eu/LC_MESSAGES/cupsdconf.mo -share/locale/eu/LC_MESSAGES/cvsservice.mo -share/locale/eu/LC_MESSAGES/dcoprss.mo -share/locale/eu/LC_MESSAGES/devicesapplet.mo -share/locale/eu/LC_MESSAGES/dirfilterplugin.mo -share/locale/eu/LC_MESSAGES/display.mo -share/locale/eu/LC_MESSAGES/dockbarextension.mo -share/locale/eu/LC_MESSAGES/domtreeviewer.mo -share/locale/eu/LC_MESSAGES/drkonqi.mo -share/locale/eu/LC_MESSAGES/dub.mo -share/locale/eu/LC_MESSAGES/extensionproxy.mo -share/locale/eu/LC_MESSAGES/ffrs.mo -share/locale/eu/LC_MESSAGES/filetypes.mo -share/locale/eu/LC_MESSAGES/fontinst.mo -share/locale/eu/LC_MESSAGES/fsview.mo -share/locale/eu/LC_MESSAGES/htmlsearch.mo -share/locale/eu/LC_MESSAGES/imagerename_plugin.mo -share/locale/eu/LC_MESSAGES/imgalleryplugin.mo -share/locale/eu/LC_MESSAGES/irkick.mo -share/locale/eu/LC_MESSAGES/jefferson.mo -share/locale/eu/LC_MESSAGES/joystick.mo -share/locale/eu/LC_MESSAGES/juk.mo -share/locale/eu/LC_MESSAGES/kabc2mutt.mo -share/locale/eu/LC_MESSAGES/kabc_dir.mo -share/locale/eu/LC_MESSAGES/kabc_file.mo -share/locale/eu/LC_MESSAGES/kabc_ldap.mo -share/locale/eu/LC_MESSAGES/kabc_ldapkio.mo -share/locale/eu/LC_MESSAGES/kabc_net.mo -share/locale/eu/LC_MESSAGES/kabc_slox.mo -share/locale/eu/LC_MESSAGES/kabc_sql.mo -share/locale/eu/LC_MESSAGES/kabcformat_binary.mo -share/locale/eu/LC_MESSAGES/kaboodle.mo -share/locale/eu/LC_MESSAGES/kaccess.mo -share/locale/eu/LC_MESSAGES/kaddressbook.mo -share/locale/eu/LC_MESSAGES/kalarm.mo -share/locale/eu/LC_MESSAGES/kalzium.mo -share/locale/eu/LC_MESSAGES/kandy.mo -share/locale/eu/LC_MESSAGES/kappfinder.mo -share/locale/eu/LC_MESSAGES/karm.mo -share/locale/eu/LC_MESSAGES/kasbarextension.mo -share/locale/eu/LC_MESSAGES/kasteroids.mo -share/locale/eu/LC_MESSAGES/kate.mo -share/locale/eu/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/eu/LC_MESSAGES/katedefaultproject.mo -share/locale/eu/LC_MESSAGES/katefiletemplates.mo -share/locale/eu/LC_MESSAGES/katefll_initplugin.mo -share/locale/eu/LC_MESSAGES/katefll_plugin.mo -share/locale/eu/LC_MESSAGES/katehelloworld.mo -share/locale/eu/LC_MESSAGES/katehtmltools.mo -share/locale/eu/LC_MESSAGES/kateinsertcommand.mo -share/locale/eu/LC_MESSAGES/katekjswrapper.mo -share/locale/eu/LC_MESSAGES/katekttsd.mo -share/locale/eu/LC_MESSAGES/katemake.mo -share/locale/eu/LC_MESSAGES/katemodeline.mo -share/locale/eu/LC_MESSAGES/kateopenheader.mo -share/locale/eu/LC_MESSAGES/katepart.mo -share/locale/eu/LC_MESSAGES/katepartkttsd.mo -share/locale/eu/LC_MESSAGES/kateprojectmanager.mo -share/locale/eu/LC_MESSAGES/katepybrowse.mo -share/locale/eu/LC_MESSAGES/katesnippets.mo -share/locale/eu/LC_MESSAGES/katespell.mo -share/locale/eu/LC_MESSAGES/katetabbarextension.mo -share/locale/eu/LC_MESSAGES/katetextfilter.mo -share/locale/eu/LC_MESSAGES/katexmlcheck.mo -share/locale/eu/LC_MESSAGES/katexmltools.mo -share/locale/eu/LC_MESSAGES/katomic.mo -share/locale/eu/LC_MESSAGES/kaudiocreator.mo -share/locale/eu/LC_MESSAGES/kbabel.mo -share/locale/eu/LC_MESSAGES/kbackgammon.mo -share/locale/eu/LC_MESSAGES/kbattleship.mo -share/locale/eu/LC_MESSAGES/kbinaryclock.mo -share/locale/eu/LC_MESSAGES/kblackbox.mo -share/locale/eu/LC_MESSAGES/kbounce.mo -share/locale/eu/LC_MESSAGES/kbruch.mo -share/locale/eu/LC_MESSAGES/kbugbuster.mo -share/locale/eu/LC_MESSAGES/kcachegrind.mo -share/locale/eu/LC_MESSAGES/kcalc.mo -share/locale/eu/LC_MESSAGES/kcharselect.mo -share/locale/eu/LC_MESSAGES/kcharselectapplet.mo -share/locale/eu/LC_MESSAGES/kcm_krfb.mo -share/locale/eu/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/eu/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/eu/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/eu/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/eu/LC_MESSAGES/kcmaccess.mo -share/locale/eu/LC_MESSAGES/kcmaccessibility.mo -share/locale/eu/LC_MESSAGES/kcmarts.mo -share/locale/eu/LC_MESSAGES/kcmaudiocd.mo -share/locale/eu/LC_MESSAGES/kcmbackground.mo -share/locale/eu/LC_MESSAGES/kcmbell.mo -share/locale/eu/LC_MESSAGES/kcmcddb.mo -share/locale/eu/LC_MESSAGES/kcmcgi.mo -share/locale/eu/LC_MESSAGES/kcmcolors.mo -share/locale/eu/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/eu/LC_MESSAGES/kcmcrypto.mo -share/locale/eu/LC_MESSAGES/kcmcss.mo -share/locale/eu/LC_MESSAGES/kcmemail.mo -share/locale/eu/LC_MESSAGES/kcmenergy.mo -share/locale/eu/LC_MESSAGES/kcmfonts.mo -share/locale/eu/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/eu/LC_MESSAGES/kcmicons.mo -share/locale/eu/LC_MESSAGES/kcminfo.mo -share/locale/eu/LC_MESSAGES/kcminput.mo -share/locale/eu/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/eu/LC_MESSAGES/kcmkabconfig.mo -share/locale/eu/LC_MESSAGES/kcmkamera.mo -share/locale/eu/LC_MESSAGES/kcmkclock.mo -share/locale/eu/LC_MESSAGES/kcmkded.mo -share/locale/eu/LC_MESSAGES/kcmkdnssd.mo -share/locale/eu/LC_MESSAGES/kcmkeys.mo -share/locale/eu/LC_MESSAGES/kcmkicker.mo -share/locale/eu/LC_MESSAGES/kcmkio.mo -share/locale/eu/LC_MESSAGES/kcmkmix.mo -share/locale/eu/LC_MESSAGES/kcmkonq.mo -share/locale/eu/LC_MESSAGES/kcmkonqhtml.mo -share/locale/eu/LC_MESSAGES/kcmkonsole.mo -share/locale/eu/LC_MESSAGES/kcmkontactnt.mo -share/locale/eu/LC_MESSAGES/kcmktalkd.mo -share/locale/eu/LC_MESSAGES/kcmkuick.mo -share/locale/eu/LC_MESSAGES/kcmkurifilt.mo -share/locale/eu/LC_MESSAGES/kcmkvaio.mo -share/locale/eu/LC_MESSAGES/kcmkwallet.mo -share/locale/eu/LC_MESSAGES/kcmkwindecoration.mo -share/locale/eu/LC_MESSAGES/kcmkwinrules.mo -share/locale/eu/LC_MESSAGES/kcmkwintheme.mo -share/locale/eu/LC_MESSAGES/kcmkwm.mo -share/locale/eu/LC_MESSAGES/kcmkxmlrpcd.mo -share/locale/eu/LC_MESSAGES/kcmlanbrowser.mo -share/locale/eu/LC_MESSAGES/kcmlaptop.mo -share/locale/eu/LC_MESSAGES/kcmlaunch.mo -share/locale/eu/LC_MESSAGES/kcmlayout.mo -share/locale/eu/LC_MESSAGES/kcmlilo.mo -share/locale/eu/LC_MESSAGES/kcmlirc.mo -share/locale/eu/LC_MESSAGES/kcmlocale.mo -share/locale/eu/LC_MESSAGES/kcmmediacontrol.mo -share/locale/eu/LC_MESSAGES/kcmmidi.mo -share/locale/eu/LC_MESSAGES/kcmnotify.mo -share/locale/eu/LC_MESSAGES/kcmperformance.mo -share/locale/eu/LC_MESSAGES/kcmprintmgr.mo -share/locale/eu/LC_MESSAGES/kcmsamba.mo -share/locale/eu/LC_MESSAGES/kcmscreensaver.mo -share/locale/eu/LC_MESSAGES/kcmshell.mo -share/locale/eu/LC_MESSAGES/kcmsmartcard.mo -share/locale/eu/LC_MESSAGES/kcmsmserver.mo -share/locale/eu/LC_MESSAGES/kcmsocks.mo -share/locale/eu/LC_MESSAGES/kcmspellchecking.mo -share/locale/eu/LC_MESSAGES/kcmstyle.mo -share/locale/eu/LC_MESSAGES/kcmtaskbar.mo -share/locale/eu/LC_MESSAGES/kcmthinkpad.mo -share/locale/eu/LC_MESSAGES/kcmusb.mo -share/locale/eu/LC_MESSAGES/kcmview1394.mo -share/locale/eu/LC_MESSAGES/kcmvim.mo -share/locale/eu/LC_MESSAGES/kcmwifi.mo -share/locale/eu/LC_MESSAGES/kcmxinerama.mo -share/locale/eu/LC_MESSAGES/kcoloredit.mo -share/locale/eu/LC_MESSAGES/kcontrol.mo -share/locale/eu/LC_MESSAGES/kcron.mo -share/locale/eu/LC_MESSAGES/kdat.mo -share/locale/eu/LC_MESSAGES/kdcop.mo -share/locale/eu/LC_MESSAGES/kdebugdialog.mo -share/locale/eu/LC_MESSAGES/kdelibs.mo -share/locale/eu/LC_MESSAGES/kdelibs_colors.mo -share/locale/eu/LC_MESSAGES/kdelirc.mo -share/locale/eu/LC_MESSAGES/kdepasswd.mo -share/locale/eu/LC_MESSAGES/kdepimresources.mo -share/locale/eu/LC_MESSAGES/kdepimwizards.mo -share/locale/eu/LC_MESSAGES/kdeprint.mo -share/locale/eu/LC_MESSAGES/kdeprint_part.mo -share/locale/eu/LC_MESSAGES/kdeprintfax.mo -share/locale/eu/LC_MESSAGES/kdesktop.mo -share/locale/eu/LC_MESSAGES/kdessh.mo -share/locale/eu/LC_MESSAGES/kdesu.mo -share/locale/eu/LC_MESSAGES/kdesud.mo -share/locale/eu/LC_MESSAGES/kdevdesigner.mo -share/locale/eu/LC_MESSAGES/kdevelop.mo -share/locale/eu/LC_MESSAGES/kdevtipofday.mo -share/locale/eu/LC_MESSAGES/kdf.mo -share/locale/eu/LC_MESSAGES/kdgantt.mo -share/locale/eu/LC_MESSAGES/kdialog.mo -share/locale/eu/LC_MESSAGES/kdict.mo -share/locale/eu/LC_MESSAGES/kdictapplet.mo -share/locale/eu/LC_MESSAGES/kdmchooser.mo -share/locale/eu/LC_MESSAGES/kdmconfig.mo -share/locale/eu/LC_MESSAGES/kdmgreet.mo -share/locale/eu/LC_MESSAGES/kdvi.mo -share/locale/eu/LC_MESSAGES/kedit.mo -share/locale/eu/LC_MESSAGES/keduca.mo -share/locale/eu/LC_MESSAGES/kenolaba.mo -share/locale/eu/LC_MESSAGES/kfax.mo -share/locale/eu/LC_MESSAGES/kfifteenapplet.mo -share/locale/eu/LC_MESSAGES/kfile_au.mo -share/locale/eu/LC_MESSAGES/kfile_avi.mo -share/locale/eu/LC_MESSAGES/kfile_bmp.mo -share/locale/eu/LC_MESSAGES/kfile_cert.mo -share/locale/eu/LC_MESSAGES/kfile_cpp.mo -share/locale/eu/LC_MESSAGES/kfile_dds.mo -share/locale/eu/LC_MESSAGES/kfile_deb.mo -share/locale/eu/LC_MESSAGES/kfile_desktop.mo -share/locale/eu/LC_MESSAGES/kfile_diff.mo -share/locale/eu/LC_MESSAGES/kfile_drgeo.mo -share/locale/eu/LC_MESSAGES/kfile_dvi.mo -share/locale/eu/LC_MESSAGES/kfile_exr.mo -share/locale/eu/LC_MESSAGES/kfile_flac.mo -share/locale/eu/LC_MESSAGES/kfile_folder.mo -share/locale/eu/LC_MESSAGES/kfile_font.mo -share/locale/eu/LC_MESSAGES/kfile_gif.mo -share/locale/eu/LC_MESSAGES/kfile_html.mo -share/locale/eu/LC_MESSAGES/kfile_ico.mo -share/locale/eu/LC_MESSAGES/kfile_ics.mo -share/locale/eu/LC_MESSAGES/kfile_jpeg.mo -share/locale/eu/LC_MESSAGES/kfile_kig.mo -share/locale/eu/LC_MESSAGES/kfile_lnk.mo -share/locale/eu/LC_MESSAGES/kfile_m3u.mo -share/locale/eu/LC_MESSAGES/kfile_mhtml.mo -share/locale/eu/LC_MESSAGES/kfile_mp3.mo -share/locale/eu/LC_MESSAGES/kfile_mpc.mo -share/locale/eu/LC_MESSAGES/kfile_ogg.mo -share/locale/eu/LC_MESSAGES/kfile_palm.mo -share/locale/eu/LC_MESSAGES/kfile_pcx.mo -share/locale/eu/LC_MESSAGES/kfile_pdf.mo -share/locale/eu/LC_MESSAGES/kfile_png.mo -share/locale/eu/LC_MESSAGES/kfile_pnm.mo -share/locale/eu/LC_MESSAGES/kfile_po.mo -share/locale/eu/LC_MESSAGES/kfile_ps.mo -share/locale/eu/LC_MESSAGES/kfile_rfc822.mo -share/locale/eu/LC_MESSAGES/kfile_rgb.mo -share/locale/eu/LC_MESSAGES/kfile_rpm.mo -share/locale/eu/LC_MESSAGES/kfile_sid.mo -share/locale/eu/LC_MESSAGES/kfile_tga.mo -share/locale/eu/LC_MESSAGES/kfile_theora.mo -share/locale/eu/LC_MESSAGES/kfile_tiff.mo -share/locale/eu/LC_MESSAGES/kfile_torrent.mo -share/locale/eu/LC_MESSAGES/kfile_ts.mo -share/locale/eu/LC_MESSAGES/kfile_txt.mo -share/locale/eu/LC_MESSAGES/kfile_vcf.mo -share/locale/eu/LC_MESSAGES/kfile_wav.mo -share/locale/eu/LC_MESSAGES/kfile_xbm.mo -share/locale/eu/LC_MESSAGES/kfile_xpm.mo -share/locale/eu/LC_MESSAGES/kfileaudiopreview.mo -share/locale/eu/LC_MESSAGES/kfilereplace.mo -share/locale/eu/LC_MESSAGES/kfileshare.mo -share/locale/eu/LC_MESSAGES/kfindpart.mo -share/locale/eu/LC_MESSAGES/kfloppy.mo -share/locale/eu/LC_MESSAGES/kfmclient.mo -share/locale/eu/LC_MESSAGES/kfontinst.mo -share/locale/eu/LC_MESSAGES/kfouleggs.mo -share/locale/eu/LC_MESSAGES/kgamma.mo -share/locale/eu/LC_MESSAGES/kgantt.mo -share/locale/eu/LC_MESSAGES/kget.mo -share/locale/eu/LC_MESSAGES/kghostview.mo -share/locale/eu/LC_MESSAGES/kgoldrunner.mo -share/locale/eu/LC_MESSAGES/kgpg.mo -share/locale/eu/LC_MESSAGES/kgreet_classic.mo -share/locale/eu/LC_MESSAGES/kgreet_winbind.mo -share/locale/eu/LC_MESSAGES/khangman.mo -share/locale/eu/LC_MESSAGES/khelpcenter.mo -share/locale/eu/LC_MESSAGES/khexedit.mo -share/locale/eu/LC_MESSAGES/khexedit2part.mo -share/locale/eu/LC_MESSAGES/khotkeys.mo -share/locale/eu/LC_MESSAGES/khtmlkttsd.mo -share/locale/eu/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/eu/LC_MESSAGES/kicker.mo -share/locale/eu/LC_MESSAGES/kiconedit.mo -share/locale/eu/LC_MESSAGES/kig.mo -share/locale/eu/LC_MESSAGES/kimagemapeditor.mo -share/locale/eu/LC_MESSAGES/kinetd.mo -share/locale/eu/LC_MESSAGES/kio.mo -share/locale/eu/LC_MESSAGES/kio_audiocd.mo -share/locale/eu/LC_MESSAGES/kio_devices.mo -share/locale/eu/LC_MESSAGES/kio_finger.mo -share/locale/eu/LC_MESSAGES/kio_fish.mo -share/locale/eu/LC_MESSAGES/kio_floppy.mo -share/locale/eu/LC_MESSAGES/kio_groupwise.mo -share/locale/eu/LC_MESSAGES/kio_help.mo -share/locale/eu/LC_MESSAGES/kio_imap4.mo -share/locale/eu/LC_MESSAGES/kio_lan.mo -share/locale/eu/LC_MESSAGES/kio_ldap.mo -share/locale/eu/LC_MESSAGES/kio_mac.mo -share/locale/eu/LC_MESSAGES/kio_man.mo -share/locale/eu/LC_MESSAGES/kio_media.mo -share/locale/eu/LC_MESSAGES/kio_mobile.mo -share/locale/eu/LC_MESSAGES/kio_newimap4.mo -share/locale/eu/LC_MESSAGES/kio_nfs.mo -share/locale/eu/LC_MESSAGES/kio_nntp.mo -share/locale/eu/LC_MESSAGES/kio_pop3.mo -share/locale/eu/LC_MESSAGES/kio_print.mo -share/locale/eu/LC_MESSAGES/kio_remote.mo -share/locale/eu/LC_MESSAGES/kio_settings.mo -share/locale/eu/LC_MESSAGES/kio_sftp.mo -share/locale/eu/LC_MESSAGES/kio_sieve.mo -share/locale/eu/LC_MESSAGES/kio_smb.mo -share/locale/eu/LC_MESSAGES/kio_smtp.mo -share/locale/eu/LC_MESSAGES/kio_svn.mo -share/locale/eu/LC_MESSAGES/kio_system.mo -share/locale/eu/LC_MESSAGES/kio_trash.mo -share/locale/eu/LC_MESSAGES/kio_zeroconf.mo -share/locale/eu/LC_MESSAGES/kioexec.mo -share/locale/eu/LC_MESSAGES/kiten.mo -share/locale/eu/LC_MESSAGES/kjobviewer.mo -share/locale/eu/LC_MESSAGES/kjots.mo -share/locale/eu/LC_MESSAGES/kjumpingcube.mo -share/locale/eu/LC_MESSAGES/klaptopdaemon.mo -share/locale/eu/LC_MESSAGES/klatin.mo -share/locale/eu/LC_MESSAGES/klegacyimport.mo -share/locale/eu/LC_MESSAGES/kleopatra.mo -share/locale/eu/LC_MESSAGES/klettres.mo -share/locale/eu/LC_MESSAGES/klickety.mo -share/locale/eu/LC_MESSAGES/klines.mo -share/locale/eu/LC_MESSAGES/klinkstatus.mo -share/locale/eu/LC_MESSAGES/klipper.mo -share/locale/eu/LC_MESSAGES/klock.mo -share/locale/eu/LC_MESSAGES/kmahjongg.mo -share/locale/eu/LC_MESSAGES/kmail.mo -share/locale/eu/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/eu/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/eu/LC_MESSAGES/kmailcvt.mo -share/locale/eu/LC_MESSAGES/kmathapplet.mo -share/locale/eu/LC_MESSAGES/kmathtool.mo -share/locale/eu/LC_MESSAGES/kmcop.mo -share/locale/eu/LC_MESSAGES/kmenuapplet.mo -share/locale/eu/LC_MESSAGES/kmenuedit.mo -share/locale/eu/LC_MESSAGES/kmessedwords.mo -share/locale/eu/LC_MESSAGES/kmid.mo -share/locale/eu/LC_MESSAGES/kmilo_delli8k.mo -share/locale/eu/LC_MESSAGES/kmilo_generic.mo -share/locale/eu/LC_MESSAGES/kmilo_kvaio.mo -share/locale/eu/LC_MESSAGES/kmilo_powerbook.mo -share/locale/eu/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/eu/LC_MESSAGES/kmilod.mo -share/locale/eu/LC_MESSAGES/kmines.mo -share/locale/eu/LC_MESSAGES/kminipagerapplet.mo -share/locale/eu/LC_MESSAGES/kmix.mo -share/locale/eu/LC_MESSAGES/kmobile.mo -share/locale/eu/LC_MESSAGES/kmoon.mo -share/locale/eu/LC_MESSAGES/kmplot.mo -share/locale/eu/LC_MESSAGES/kmrml.mo -share/locale/eu/LC_MESSAGES/knetattach.mo -share/locale/eu/LC_MESSAGES/knewsticker.mo -share/locale/eu/LC_MESSAGES/knode.mo -share/locale/eu/LC_MESSAGES/knotes.mo -share/locale/eu/LC_MESSAGES/knotify.mo -share/locale/eu/LC_MESSAGES/kodo.mo -share/locale/eu/LC_MESSAGES/kolf.mo -share/locale/eu/LC_MESSAGES/kolourpaint.mo -share/locale/eu/LC_MESSAGES/kolourpicker.mo -share/locale/eu/LC_MESSAGES/kommander.mo -share/locale/eu/LC_MESSAGES/kompare.mo -share/locale/eu/LC_MESSAGES/konnector_dummy.mo -share/locale/eu/LC_MESSAGES/konnector_kabc.mo -share/locale/eu/LC_MESSAGES/konnector_kcal.mo -share/locale/eu/LC_MESSAGES/konnector_local.mo -share/locale/eu/LC_MESSAGES/konnector_qtopia.mo -share/locale/eu/LC_MESSAGES/konnector_remote.mo -share/locale/eu/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/eu/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/eu/LC_MESSAGES/konqsidebar_news.mo -share/locale/eu/LC_MESSAGES/konqueror.mo -share/locale/eu/LC_MESSAGES/konquest.mo -share/locale/eu/LC_MESSAGES/konsole.mo -share/locale/eu/LC_MESSAGES/konsolekalendar.mo -share/locale/eu/LC_MESSAGES/kontact.mo -share/locale/eu/LC_MESSAGES/kooka.mo -share/locale/eu/LC_MESSAGES/kopete.mo -share/locale/eu/LC_MESSAGES/korganizer.mo -share/locale/eu/LC_MESSAGES/korn.mo -share/locale/eu/LC_MESSAGES/kpackage.mo -share/locale/eu/LC_MESSAGES/kpager.mo -share/locale/eu/LC_MESSAGES/kpartapp.mo -share/locale/eu/LC_MESSAGES/kpartsaver.mo -share/locale/eu/LC_MESSAGES/kpat.mo -share/locale/eu/LC_MESSAGES/kpdf.mo -share/locale/eu/LC_MESSAGES/kpercentage.mo -share/locale/eu/LC_MESSAGES/kpersonalizer.mo -share/locale/eu/LC_MESSAGES/kpf.mo -share/locale/eu/LC_MESSAGES/kpilot.mo -share/locale/eu/LC_MESSAGES/kpoker.mo -share/locale/eu/LC_MESSAGES/kpovmodeler.mo -share/locale/eu/LC_MESSAGES/kppp.mo -share/locale/eu/LC_MESSAGES/kppplogview.mo -share/locale/eu/LC_MESSAGES/kprinter.mo -share/locale/eu/LC_MESSAGES/krandr.mo -share/locale/eu/LC_MESSAGES/krdb.mo -share/locale/eu/LC_MESSAGES/krdc.mo -share/locale/eu/LC_MESSAGES/kreadconfig.mo -share/locale/eu/LC_MESSAGES/krec.mo -share/locale/eu/LC_MESSAGES/kregexpeditor.mo -share/locale/eu/LC_MESSAGES/kres_blogging.mo -share/locale/eu/LC_MESSAGES/kres_bugzilla.mo -share/locale/eu/LC_MESSAGES/kres_exchange.mo -share/locale/eu/LC_MESSAGES/kres_featureplan.mo -share/locale/eu/LC_MESSAGES/kres_groupwise.mo -share/locale/eu/LC_MESSAGES/kres_kolab.mo -share/locale/eu/LC_MESSAGES/kres_opengroupware.mo -share/locale/eu/LC_MESSAGES/kres_remote.mo -share/locale/eu/LC_MESSAGES/kres_xmlrpc.mo -share/locale/eu/LC_MESSAGES/kreversi.mo -share/locale/eu/LC_MESSAGES/krfb.mo -share/locale/eu/LC_MESSAGES/kruler.mo -share/locale/eu/LC_MESSAGES/krunapplet.mo -share/locale/eu/LC_MESSAGES/ksame.mo -share/locale/eu/LC_MESSAGES/kscd.mo -share/locale/eu/LC_MESSAGES/kscreensaver.mo -share/locale/eu/LC_MESSAGES/kshisen.mo -share/locale/eu/LC_MESSAGES/ksig.mo -share/locale/eu/LC_MESSAGES/ksim.mo -share/locale/eu/LC_MESSAGES/ksirc.mo -share/locale/eu/LC_MESSAGES/ksirtet.mo -share/locale/eu/LC_MESSAGES/ksmiletris.mo -share/locale/eu/LC_MESSAGES/ksmserver.mo -share/locale/eu/LC_MESSAGES/ksnake.mo -share/locale/eu/LC_MESSAGES/ksnapshot.mo -share/locale/eu/LC_MESSAGES/ksokoban.mo -share/locale/eu/LC_MESSAGES/kspaceduel.mo -share/locale/eu/LC_MESSAGES/ksplash.mo -share/locale/eu/LC_MESSAGES/ksplashthemes.mo -share/locale/eu/LC_MESSAGES/kstars.mo -share/locale/eu/LC_MESSAGES/kstart.mo -share/locale/eu/LC_MESSAGES/kstartperf.mo -share/locale/eu/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/eu/LC_MESSAGES/kstyle_phase_config.mo -share/locale/eu/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/eu/LC_MESSAGES/ksvgplugin.mo -share/locale/eu/LC_MESSAGES/ksync.mo -share/locale/eu/LC_MESSAGES/ksysguard.mo -share/locale/eu/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/eu/LC_MESSAGES/ksystraycmd.mo -share/locale/eu/LC_MESSAGES/ksysv.mo -share/locale/eu/LC_MESSAGES/ktalkd.mo -share/locale/eu/LC_MESSAGES/ktaskbarapplet.mo -share/locale/eu/LC_MESSAGES/kteatime.mo -share/locale/eu/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/eu/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/eu/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/eu/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/eu/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/eu/LC_MESSAGES/kthememanager.mo -share/locale/eu/LC_MESSAGES/ktimemon.mo -share/locale/eu/LC_MESSAGES/ktimer.mo -share/locale/eu/LC_MESSAGES/ktip.mo -share/locale/eu/LC_MESSAGES/ktnef.mo -share/locale/eu/LC_MESSAGES/ktouch.mo -share/locale/eu/LC_MESSAGES/ktron.mo -share/locale/eu/LC_MESSAGES/ktuberling.mo -share/locale/eu/LC_MESSAGES/kturtle.mo -share/locale/eu/LC_MESSAGES/ktux.mo -share/locale/eu/LC_MESSAGES/kuick_plugin.mo -share/locale/eu/LC_MESSAGES/kuickshow.mo -share/locale/eu/LC_MESSAGES/kuiviewer.mo -share/locale/eu/LC_MESSAGES/kuser.mo -share/locale/eu/LC_MESSAGES/kverbos.mo -share/locale/eu/LC_MESSAGES/kview.mo -share/locale/eu/LC_MESSAGES/kview_scale.mo -share/locale/eu/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/eu/LC_MESSAGES/kviewcanvas.mo -share/locale/eu/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/eu/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/eu/LC_MESSAGES/kviewscannerplugin.mo -share/locale/eu/LC_MESSAGES/kviewshell.mo -share/locale/eu/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/eu/LC_MESSAGES/kviewviewer.mo -share/locale/eu/LC_MESSAGES/kvoctrain.mo -share/locale/eu/LC_MESSAGES/kwalletmanager.mo -share/locale/eu/LC_MESSAGES/kwatchgnupg.mo -share/locale/eu/LC_MESSAGES/kweather.mo -share/locale/eu/LC_MESSAGES/kwifimanager.mo -share/locale/eu/LC_MESSAGES/kwin.mo -share/locale/eu/LC_MESSAGES/kwin4.mo -share/locale/eu/LC_MESSAGES/kwin_art_clients.mo -share/locale/eu/LC_MESSAGES/kwin_clients.mo -share/locale/eu/LC_MESSAGES/kwireless.mo -share/locale/eu/LC_MESSAGES/kwordquiz.mo -share/locale/eu/LC_MESSAGES/kworldclock.mo -share/locale/eu/LC_MESSAGES/kwriteconfig.mo -share/locale/eu/LC_MESSAGES/kxkb.mo -share/locale/eu/LC_MESSAGES/kxmlrpcd.mo -share/locale/eu/LC_MESSAGES/kxsconfig.mo -share/locale/eu/LC_MESSAGES/kxsldbg.mo -share/locale/eu/LC_MESSAGES/libcalendarresources.mo -share/locale/eu/LC_MESSAGES/libdmctl.mo -share/locale/eu/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/eu/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/eu/LC_MESSAGES/libkcal.mo -share/locale/eu/LC_MESSAGES/libkcalsystem.mo -share/locale/eu/LC_MESSAGES/libkcddb.mo -share/locale/eu/LC_MESSAGES/libkdegames.mo -share/locale/eu/LC_MESSAGES/libkdehighscores.mo -share/locale/eu/LC_MESSAGES/libkdenetwork.mo -share/locale/eu/LC_MESSAGES/libkdepim.mo -share/locale/eu/LC_MESSAGES/libkholidays.mo -share/locale/eu/LC_MESSAGES/libkicker.mo -share/locale/eu/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/eu/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/eu/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/eu/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/eu/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/eu/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/eu/LC_MESSAGES/libkickermenu_tom.mo -share/locale/eu/LC_MESSAGES/libkleopatra.mo -share/locale/eu/LC_MESSAGES/libkmime.mo -share/locale/eu/LC_MESSAGES/libkonq.mo -share/locale/eu/LC_MESSAGES/libkpgp.mo -share/locale/eu/LC_MESSAGES/libkpimexchange.mo -share/locale/eu/LC_MESSAGES/libkscan.mo -share/locale/eu/LC_MESSAGES/libkscreensaver.mo -share/locale/eu/LC_MESSAGES/libksieve.mo -share/locale/eu/LC_MESSAGES/libksirtet.mo -share/locale/eu/LC_MESSAGES/libksync.mo -share/locale/eu/LC_MESSAGES/libtaskbar.mo -share/locale/eu/LC_MESSAGES/libtaskmanager.mo -share/locale/eu/LC_MESSAGES/lockout.mo -share/locale/eu/LC_MESSAGES/lskat.mo -share/locale/eu/LC_MESSAGES/lyrics.mo -share/locale/eu/LC_MESSAGES/mediaapplet.mo -share/locale/eu/LC_MESSAGES/mediacontrol.mo -share/locale/eu/LC_MESSAGES/minitoolsplugin.mo -share/locale/eu/LC_MESSAGES/multisynk.mo -share/locale/eu/LC_MESSAGES/naughtyapplet.mo -share/locale/eu/LC_MESSAGES/nexscope.mo -share/locale/eu/LC_MESSAGES/noatun.mo -share/locale/eu/LC_MESSAGES/nsplugin.mo -share/locale/eu/LC_MESSAGES/passwords.mo -share/locale/eu/LC_MESSAGES/pitchablespeed.mo -share/locale/eu/LC_MESSAGES/ppdtranslations.mo -share/locale/eu/LC_MESSAGES/privacy.mo -share/locale/eu/LC_MESSAGES/qeditor.mo -share/locale/eu/LC_MESSAGES/quanta.mo -share/locale/eu/LC_MESSAGES/quicklauncher.mo -share/locale/eu/LC_MESSAGES/rellinks.mo -share/locale/eu/LC_MESSAGES/searchbarplugin.mo -share/locale/eu/LC_MESSAGES/secpolicy.mo -share/locale/eu/LC_MESSAGES/spy.mo -share/locale/eu/LC_MESSAGES/synaescope.mo -share/locale/eu/LC_MESSAGES/taskbarextension.mo -share/locale/eu/LC_MESSAGES/timezones.mo -share/locale/eu/LC_MESSAGES/tippecanoe.mo -share/locale/eu/LC_MESSAGES/trashapplet.mo -share/locale/eu/LC_MESSAGES/tyler.mo -share/locale/eu/LC_MESSAGES/uachangerplugin.mo -share/locale/eu/LC_MESSAGES/umbrello.mo -share/locale/eu/LC_MESSAGES/useraccount.mo -share/locale/eu/LC_MESSAGES/validatorsplugin.mo -share/locale/eu/LC_MESSAGES/vimpart.mo -share/locale/eu/LC_MESSAGES/wakeup.mo -share/locale/eu/LC_MESSAGES/wavecapture.mo -share/locale/eu/LC_MESSAGES/webarchiver.mo -share/locale/eu/charset -share/locale/eu/entry.desktop -share/locale/eu/flag.png -@dirrm share/doc/HTML/eu/kbabel -@dirrm share/doc/HTML/eu/common diff --git a/misc/kde4-l10n-fi/Makefile b/misc/kde4-l10n-fi/Makefile deleted file mode 100644 index 26aae8db2543..000000000000 --- a/misc/kde4-l10n-fi/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-fi -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= fi- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Finnish messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-fi/distinfo b/misc/kde4-l10n-fi/distinfo deleted file mode 100644 index c3ca0822c0ee..000000000000 --- a/misc/kde4-l10n-fi/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-fi-3.4.2.tar.bz2) = 757f3c63d837551286ba3e3d82043f18 -SIZE (KDE/kde-i18n/kde-i18n-fi-3.4.2.tar.bz2) = 2102382 diff --git a/misc/kde4-l10n-fi/pkg-descr b/misc/kde4-l10n-fi/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-fi/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-fi/pkg-plist b/misc/kde4-l10n-fi/pkg-plist deleted file mode 100644 index 827c4fe7cb52..000000000000 --- a/misc/kde4-l10n-fi/pkg-plist +++ /dev/null @@ -1,650 +0,0 @@ -share/apps/khangman/data/fi/animals.kvtml -share/apps/khangman/data/fi/easy.kvtml -share/apps/khangman/data/fi/hard.kvtml -share/apps/khangman/data/fi/medium.kvtml -share/apps/khangman/fi.txt -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/appheader.html -share/doc/HTML/fi/common/artistic-license.html -share/doc/HTML/fi/common/bottom-left.png -share/doc/HTML/fi/common/bottom-middle.png -share/doc/HTML/fi/common/bottom-right.png -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/docheadergears.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/doxygen.css -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/footer.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/grad.png -share/doc/HTML/fi/common/header.html -share/doc/HTML/fi/common/headerbg.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/kde-web.css -share/doc/HTML/fi/common/kde_logo.png -share/doc/HTML/fi/common/kde_logo_bg.png -share/doc/HTML/fi/common/kmenu.png -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.png -share/doc/HTML/fi/common/mainfooter.html -share/doc/HTML/fi/common/mainheader.html -share/doc/HTML/fi/common/qpl-license.html -share/doc/HTML/fi/common/shadow.png -share/doc/HTML/fi/common/top-left.png -share/doc/HTML/fi/common/top-middle.png -share/doc/HTML/fi/common/top-right-konqueror.png -share/doc/HTML/fi/common/web-docbottom.png -share/doc/HTML/fi/common/web-doctop.png -share/doc/HTML/fi/common/x11-license.html -share/doc/HTML/fi/common/xml.dcl -share/doc/HTML/fi/kfind/common -share/doc/HTML/fi/kfind/index.cache.bz2 -share/doc/HTML/fi/kfind/index.docbook -share/doc/HTML/fi/khelpcenter/common -share/doc/HTML/fi/khelpcenter/contact.docbook -share/doc/HTML/fi/khelpcenter/glossary/common -share/doc/HTML/fi/khelpcenter/glossary/index.cache.bz2 -share/doc/HTML/fi/khelpcenter/glossary/index.docbook -share/doc/HTML/fi/khelpcenter/glossary/kdeprintingglossary.docbook -share/doc/HTML/fi/khelpcenter/help.docbook -share/doc/HTML/fi/khelpcenter/index.cache.bz2 -share/doc/HTML/fi/khelpcenter/index.docbook -share/doc/HTML/fi/khelpcenter/support.docbook -share/doc/HTML/fi/khelpcenter/welcome.docbook -share/doc/HTML/fi/khelpcenter/whatiskde.docbook -share/locale/fi/LC_MESSAGES/akregator.mo -share/locale/fi/LC_MESSAGES/akregator_konqplugin.mo -share/locale/fi/LC_MESSAGES/alsaplayerui.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/ark_plugin.mo -share/locale/fi/LC_MESSAGES/artsbuilder.mo -share/locale/fi/LC_MESSAGES/artscontrol.mo -share/locale/fi/LC_MESSAGES/artsmodules.mo -share/locale/fi/LC_MESSAGES/atlantik.mo -share/locale/fi/LC_MESSAGES/atlantikdesigner.mo -share/locale/fi/LC_MESSAGES/audiorename_plugin.mo -share/locale/fi/LC_MESSAGES/autorefresh.mo -share/locale/fi/LC_MESSAGES/babelfish.mo -share/locale/fi/LC_MESSAGES/cervisia.mo -share/locale/fi/LC_MESSAGES/charlatanui.mo -share/locale/fi/LC_MESSAGES/childpanelextension.mo -share/locale/fi/LC_MESSAGES/clockapplet.mo -share/locale/fi/LC_MESSAGES/crashesplugin.mo -share/locale/fi/LC_MESSAGES/cupsdconf.mo -share/locale/fi/LC_MESSAGES/cvsservice.mo -share/locale/fi/LC_MESSAGES/dcoprss.mo -share/locale/fi/LC_MESSAGES/devicesapplet.mo -share/locale/fi/LC_MESSAGES/dirfilterplugin.mo -share/locale/fi/LC_MESSAGES/display.mo -share/locale/fi/LC_MESSAGES/dockbarextension.mo -share/locale/fi/LC_MESSAGES/domtreeviewer.mo -share/locale/fi/LC_MESSAGES/drkonqi.mo -share/locale/fi/LC_MESSAGES/dub.mo -share/locale/fi/LC_MESSAGES/extensionproxy.mo -share/locale/fi/LC_MESSAGES/ffrs.mo -share/locale/fi/LC_MESSAGES/filetypes.mo -share/locale/fi/LC_MESSAGES/fontinst.mo -share/locale/fi/LC_MESSAGES/fsview.mo -share/locale/fi/LC_MESSAGES/htmlsearch.mo -share/locale/fi/LC_MESSAGES/imagerename_plugin.mo -share/locale/fi/LC_MESSAGES/imgalleryplugin.mo -share/locale/fi/LC_MESSAGES/irkick.mo -share/locale/fi/LC_MESSAGES/jefferson.mo -share/locale/fi/LC_MESSAGES/joystick.mo -share/locale/fi/LC_MESSAGES/juk.mo -share/locale/fi/LC_MESSAGES/kabc2mutt.mo -share/locale/fi/LC_MESSAGES/kabc_dir.mo -share/locale/fi/LC_MESSAGES/kabc_file.mo -share/locale/fi/LC_MESSAGES/kabc_ldap.mo -share/locale/fi/LC_MESSAGES/kabc_ldapkio.mo -share/locale/fi/LC_MESSAGES/kabc_net.mo -share/locale/fi/LC_MESSAGES/kabc_slox.mo -share/locale/fi/LC_MESSAGES/kabc_sql.mo -share/locale/fi/LC_MESSAGES/kabcformat_binary.mo -share/locale/fi/LC_MESSAGES/kaboodle.mo -share/locale/fi/LC_MESSAGES/kaccess.mo -share/locale/fi/LC_MESSAGES/kaddressbook.mo -share/locale/fi/LC_MESSAGES/kalarm.mo -share/locale/fi/LC_MESSAGES/kalzium.mo -share/locale/fi/LC_MESSAGES/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/katecppsymbolviewer.mo -share/locale/fi/LC_MESSAGES/katedefaultproject.mo -share/locale/fi/LC_MESSAGES/katefiletemplates.mo -share/locale/fi/LC_MESSAGES/katefll_initplugin.mo -share/locale/fi/LC_MESSAGES/katefll_plugin.mo -share/locale/fi/LC_MESSAGES/katehelloworld.mo -share/locale/fi/LC_MESSAGES/katehtmltools.mo -share/locale/fi/LC_MESSAGES/kateinsertcommand.mo -share/locale/fi/LC_MESSAGES/katekjswrapper.mo -share/locale/fi/LC_MESSAGES/katekttsd.mo -share/locale/fi/LC_MESSAGES/katemake.mo -share/locale/fi/LC_MESSAGES/katemodeline.mo -share/locale/fi/LC_MESSAGES/kateopenheader.mo -share/locale/fi/LC_MESSAGES/katepart.mo -share/locale/fi/LC_MESSAGES/katepartkttsd.mo -share/locale/fi/LC_MESSAGES/kateprojectmanager.mo -share/locale/fi/LC_MESSAGES/katepybrowse.mo -share/locale/fi/LC_MESSAGES/katespell.mo -share/locale/fi/LC_MESSAGES/katetabbarextension.mo -share/locale/fi/LC_MESSAGES/katetextfilter.mo -share/locale/fi/LC_MESSAGES/katexmlcheck.mo -share/locale/fi/LC_MESSAGES/katexmltools.mo -share/locale/fi/LC_MESSAGES/katomic.mo -share/locale/fi/LC_MESSAGES/kaudiocreator.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/kbinaryclock.mo -share/locale/fi/LC_MESSAGES/kblackbox.mo -share/locale/fi/LC_MESSAGES/kbounce.mo -share/locale/fi/LC_MESSAGES/kbruch.mo -share/locale/fi/LC_MESSAGES/kbstateapplet.mo -share/locale/fi/LC_MESSAGES/kbugbuster.mo -share/locale/fi/LC_MESSAGES/kcalc.mo -share/locale/fi/LC_MESSAGES/kcharselect.mo -share/locale/fi/LC_MESSAGES/kcharselectapplet.mo -share/locale/fi/LC_MESSAGES/kcm_krfb.mo -share/locale/fi/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/fi/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/fi/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/fi/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/fi/LC_MESSAGES/kcmaccess.mo -share/locale/fi/LC_MESSAGES/kcmaccessibility.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/kcmcddb.mo -share/locale/fi/LC_MESSAGES/kcmcgi.mo -share/locale/fi/LC_MESSAGES/kcmcolors.mo -share/locale/fi/LC_MESSAGES/kcmcomponentchooser.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/kcmkabconfig.mo -share/locale/fi/LC_MESSAGES/kcmkamera.mo -share/locale/fi/LC_MESSAGES/kcmkclock.mo -share/locale/fi/LC_MESSAGES/kcmkded.mo -share/locale/fi/LC_MESSAGES/kcmkdnssd.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/kcmkontactnt.mo -share/locale/fi/LC_MESSAGES/kcmktalkd.mo -share/locale/fi/LC_MESSAGES/kcmkttsd.mo -share/locale/fi/LC_MESSAGES/kcmkuick.mo -share/locale/fi/LC_MESSAGES/kcmkurifilt.mo -share/locale/fi/LC_MESSAGES/kcmkvaio.mo -share/locale/fi/LC_MESSAGES/kcmkwallet.mo -share/locale/fi/LC_MESSAGES/kcmkwindecoration.mo -share/locale/fi/LC_MESSAGES/kcmkwinrules.mo -share/locale/fi/LC_MESSAGES/kcmkwintheme.mo -share/locale/fi/LC_MESSAGES/kcmkwm.mo -share/locale/fi/LC_MESSAGES/kcmkxmlrpcd.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/kcmlocale.mo -share/locale/fi/LC_MESSAGES/kcmmediacontrol.mo -share/locale/fi/LC_MESSAGES/kcmmidi.mo -share/locale/fi/LC_MESSAGES/kcmnic.mo -share/locale/fi/LC_MESSAGES/kcmnotify.mo -share/locale/fi/LC_MESSAGES/kcmperformance.mo -share/locale/fi/LC_MESSAGES/kcmprintmgr.mo -share/locale/fi/LC_MESSAGES/kcmsamba.mo -share/locale/fi/LC_MESSAGES/kcmscreensaver.mo -share/locale/fi/LC_MESSAGES/kcmshell.mo -share/locale/fi/LC_MESSAGES/kcmsmartcard.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/kcmthinkpad.mo -share/locale/fi/LC_MESSAGES/kcmusb.mo -share/locale/fi/LC_MESSAGES/kcmview1394.mo -share/locale/fi/LC_MESSAGES/kcmvim.mo -share/locale/fi/LC_MESSAGES/kcmwifi.mo -share/locale/fi/LC_MESSAGES/kcmxinerama.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/kdelibs_colors.mo -share/locale/fi/LC_MESSAGES/kdelirc.mo -share/locale/fi/LC_MESSAGES/kdepasswd.mo -share/locale/fi/LC_MESSAGES/kdepimresources.mo -share/locale/fi/LC_MESSAGES/kdepimwizards.mo -share/locale/fi/LC_MESSAGES/kdeprint.mo -share/locale/fi/LC_MESSAGES/kdeprint_part.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/kdevdesigner.mo -share/locale/fi/LC_MESSAGES/kdevelop.mo -share/locale/fi/LC_MESSAGES/kdevtipofday.mo -share/locale/fi/LC_MESSAGES/kdf.mo -share/locale/fi/LC_MESSAGES/kdialog.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/keduca.mo -share/locale/fi/LC_MESSAGES/kenolaba.mo -share/locale/fi/LC_MESSAGES/kfax.mo -share/locale/fi/LC_MESSAGES/kfifteenapplet.mo -share/locale/fi/LC_MESSAGES/kfile_au.mo -share/locale/fi/LC_MESSAGES/kfile_avi.mo -share/locale/fi/LC_MESSAGES/kfile_bmp.mo -share/locale/fi/LC_MESSAGES/kfile_cpp.mo -share/locale/fi/LC_MESSAGES/kfile_dds.mo -share/locale/fi/LC_MESSAGES/kfile_deb.mo -share/locale/fi/LC_MESSAGES/kfile_desktop.mo -share/locale/fi/LC_MESSAGES/kfile_diff.mo -share/locale/fi/LC_MESSAGES/kfile_dvi.mo -share/locale/fi/LC_MESSAGES/kfile_exr.mo -share/locale/fi/LC_MESSAGES/kfile_flac.mo -share/locale/fi/LC_MESSAGES/kfile_folder.mo -share/locale/fi/LC_MESSAGES/kfile_font.mo -share/locale/fi/LC_MESSAGES/kfile_gif.mo -share/locale/fi/LC_MESSAGES/kfile_html.mo -share/locale/fi/LC_MESSAGES/kfile_ico.mo -share/locale/fi/LC_MESSAGES/kfile_ics.mo -share/locale/fi/LC_MESSAGES/kfile_jpeg.mo -share/locale/fi/LC_MESSAGES/kfile_lnk.mo -share/locale/fi/LC_MESSAGES/kfile_m3u.mo -share/locale/fi/LC_MESSAGES/kfile_mp3.mo -share/locale/fi/LC_MESSAGES/kfile_mpc.mo -share/locale/fi/LC_MESSAGES/kfile_ogg.mo -share/locale/fi/LC_MESSAGES/kfile_palm.mo -share/locale/fi/LC_MESSAGES/kfile_pcx.mo -share/locale/fi/LC_MESSAGES/kfile_pdf.mo -share/locale/fi/LC_MESSAGES/kfile_png.mo -share/locale/fi/LC_MESSAGES/kfile_pnm.mo -share/locale/fi/LC_MESSAGES/kfile_po.mo -share/locale/fi/LC_MESSAGES/kfile_ps.mo -share/locale/fi/LC_MESSAGES/kfile_rfc822.mo -share/locale/fi/LC_MESSAGES/kfile_rgb.mo -share/locale/fi/LC_MESSAGES/kfile_rpm.mo -share/locale/fi/LC_MESSAGES/kfile_sid.mo -share/locale/fi/LC_MESSAGES/kfile_tga.mo -share/locale/fi/LC_MESSAGES/kfile_tiff.mo -share/locale/fi/LC_MESSAGES/kfile_torrent.mo -share/locale/fi/LC_MESSAGES/kfile_ts.mo -share/locale/fi/LC_MESSAGES/kfile_txt.mo -share/locale/fi/LC_MESSAGES/kfile_vcf.mo -share/locale/fi/LC_MESSAGES/kfile_wav.mo -share/locale/fi/LC_MESSAGES/kfile_xbm.mo -share/locale/fi/LC_MESSAGES/kfile_xpm.mo -share/locale/fi/LC_MESSAGES/kfileaudiopreview.mo -share/locale/fi/LC_MESSAGES/kfilereplace.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/kfontinst.mo -share/locale/fi/LC_MESSAGES/kfouleggs.mo -share/locale/fi/LC_MESSAGES/kgamma.mo -share/locale/fi/LC_MESSAGES/kgantt.mo -share/locale/fi/LC_MESSAGES/kget.mo -share/locale/fi/LC_MESSAGES/kghostview.mo -share/locale/fi/LC_MESSAGES/kgoldrunner.mo -share/locale/fi/LC_MESSAGES/kgpg.mo -share/locale/fi/LC_MESSAGES/kgreet_classic.mo -share/locale/fi/LC_MESSAGES/kgreet_winbind.mo -share/locale/fi/LC_MESSAGES/khangman.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/khtmlkttsd.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/kig.mo -share/locale/fi/LC_MESSAGES/kimagemapeditor.mo -share/locale/fi/LC_MESSAGES/kinetd.mo -share/locale/fi/LC_MESSAGES/kio.mo -share/locale/fi/LC_MESSAGES/kio_audiocd.mo -share/locale/fi/LC_MESSAGES/kio_devices.mo -share/locale/fi/LC_MESSAGES/kio_finger.mo -share/locale/fi/LC_MESSAGES/kio_fish.mo -share/locale/fi/LC_MESSAGES/kio_floppy.mo -share/locale/fi/LC_MESSAGES/kio_groupwise.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_ldap.mo -share/locale/fi/LC_MESSAGES/kio_mac.mo -share/locale/fi/LC_MESSAGES/kio_man.mo -share/locale/fi/LC_MESSAGES/kio_media.mo -share/locale/fi/LC_MESSAGES/kio_mobile.mo -share/locale/fi/LC_MESSAGES/kio_newimap4.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_print.mo -share/locale/fi/LC_MESSAGES/kio_remote.mo -share/locale/fi/LC_MESSAGES/kio_settings.mo -share/locale/fi/LC_MESSAGES/kio_sftp.mo -share/locale/fi/LC_MESSAGES/kio_sieve.mo -share/locale/fi/LC_MESSAGES/kio_smb.mo -share/locale/fi/LC_MESSAGES/kio_smtp.mo -share/locale/fi/LC_MESSAGES/kio_svn.mo -share/locale/fi/LC_MESSAGES/kio_system.mo -share/locale/fi/LC_MESSAGES/kio_trash.mo -share/locale/fi/LC_MESSAGES/kioexec.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/klettres.mo -share/locale/fi/LC_MESSAGES/klickety.mo -share/locale/fi/LC_MESSAGES/klines.mo -share/locale/fi/LC_MESSAGES/klinkstatus.mo -share/locale/fi/LC_MESSAGES/klipper.mo -share/locale/fi/LC_MESSAGES/klock.mo -share/locale/fi/LC_MESSAGES/kmag.mo -share/locale/fi/LC_MESSAGES/kmahjongg.mo -share/locale/fi/LC_MESSAGES/kmail.mo -share/locale/fi/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/fi/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/fi/LC_MESSAGES/kmailcvt.mo -share/locale/fi/LC_MESSAGES/kmathapplet.mo -share/locale/fi/LC_MESSAGES/kmathtool.mo -share/locale/fi/LC_MESSAGES/kmcop.mo -share/locale/fi/LC_MESSAGES/kmenuapplet.mo -share/locale/fi/LC_MESSAGES/kmenuedit.mo -share/locale/fi/LC_MESSAGES/kmessedwords.mo -share/locale/fi/LC_MESSAGES/kmid.mo -share/locale/fi/LC_MESSAGES/kmilo_delli8k.mo -share/locale/fi/LC_MESSAGES/kmilo_generic.mo -share/locale/fi/LC_MESSAGES/kmilo_kvaio.mo -share/locale/fi/LC_MESSAGES/kmilo_powerbook.mo -share/locale/fi/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/fi/LC_MESSAGES/kmilod.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/kmobile.mo -share/locale/fi/LC_MESSAGES/kmoon.mo -share/locale/fi/LC_MESSAGES/kmousetool.mo -share/locale/fi/LC_MESSAGES/kmouth.mo -share/locale/fi/LC_MESSAGES/kmplot.mo -share/locale/fi/LC_MESSAGES/kmrml.mo -share/locale/fi/LC_MESSAGES/knetattach.mo -share/locale/fi/LC_MESSAGES/knewsticker.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/kolf.mo -share/locale/fi/LC_MESSAGES/kolourpaint.mo -share/locale/fi/LC_MESSAGES/kolourpicker.mo -share/locale/fi/LC_MESSAGES/kommander.mo -share/locale/fi/LC_MESSAGES/kompare.mo -share/locale/fi/LC_MESSAGES/konnector_dummy.mo -share/locale/fi/LC_MESSAGES/konnector_kabc.mo -share/locale/fi/LC_MESSAGES/konnector_kcal.mo -share/locale/fi/LC_MESSAGES/konnector_local.mo -share/locale/fi/LC_MESSAGES/konnector_qtopia.mo -share/locale/fi/LC_MESSAGES/konnector_remote.mo -share/locale/fi/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/fi/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/fi/LC_MESSAGES/konqsidebar_news.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/konsolekalendar.mo -share/locale/fi/LC_MESSAGES/kontact.mo -share/locale/fi/LC_MESSAGES/kooka.mo -share/locale/fi/LC_MESSAGES/kopete.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/kpartapp.mo -share/locale/fi/LC_MESSAGES/kpartsaver.mo -share/locale/fi/LC_MESSAGES/kpat.mo -share/locale/fi/LC_MESSAGES/kpdf.mo -share/locale/fi/LC_MESSAGES/kpercentage.mo -share/locale/fi/LC_MESSAGES/kpersonalizer.mo -share/locale/fi/LC_MESSAGES/kpf.mo -share/locale/fi/LC_MESSAGES/kpilot.mo -share/locale/fi/LC_MESSAGES/kpoker.mo -share/locale/fi/LC_MESSAGES/kpovmodeler.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/krandr.mo -share/locale/fi/LC_MESSAGES/krdb.mo -share/locale/fi/LC_MESSAGES/krdc.mo -share/locale/fi/LC_MESSAGES/kreadconfig.mo -share/locale/fi/LC_MESSAGES/krec.mo -share/locale/fi/LC_MESSAGES/kregexpeditor.mo -share/locale/fi/LC_MESSAGES/kres_blogging.mo -share/locale/fi/LC_MESSAGES/kres_bugzilla.mo -share/locale/fi/LC_MESSAGES/kres_exchange.mo -share/locale/fi/LC_MESSAGES/kres_featureplan.mo -share/locale/fi/LC_MESSAGES/kres_groupwise.mo -share/locale/fi/LC_MESSAGES/kres_kolab.mo -share/locale/fi/LC_MESSAGES/kres_opengroupware.mo -share/locale/fi/LC_MESSAGES/kres_remote.mo -share/locale/fi/LC_MESSAGES/kres_xmlrpc.mo -share/locale/fi/LC_MESSAGES/kreversi.mo -share/locale/fi/LC_MESSAGES/krfb.mo -share/locale/fi/LC_MESSAGES/kruler.mo -share/locale/fi/LC_MESSAGES/krunapplet.mo -share/locale/fi/LC_MESSAGES/ksame.mo -share/locale/fi/LC_MESSAGES/ksayit.mo -share/locale/fi/LC_MESSAGES/kscd.mo -share/locale/fi/LC_MESSAGES/kscreensaver.mo -share/locale/fi/LC_MESSAGES/kshisen.mo -share/locale/fi/LC_MESSAGES/ksig.mo -share/locale/fi/LC_MESSAGES/ksim.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/ksplashthemes.mo -share/locale/fi/LC_MESSAGES/kstars.mo -share/locale/fi/LC_MESSAGES/kstart.mo -share/locale/fi/LC_MESSAGES/kstartperf.mo -share/locale/fi/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/fi/LC_MESSAGES/kstyle_phase_config.mo -share/locale/fi/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/fi/LC_MESSAGES/ksvgplugin.mo -share/locale/fi/LC_MESSAGES/ksync.mo -share/locale/fi/LC_MESSAGES/ksysguard.mo -share/locale/fi/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/fi/LC_MESSAGES/ksystraycmd.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/ktexteditor_autobookmarker.mo -share/locale/fi/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/fi/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/fi/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/fi/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/fi/LC_MESSAGES/ktexteditor_kttsd.mo -share/locale/fi/LC_MESSAGES/kthememanager.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/ktnef.mo -share/locale/fi/LC_MESSAGES/ktouch.mo -share/locale/fi/LC_MESSAGES/ktron.mo -share/locale/fi/LC_MESSAGES/kttsd.mo -share/locale/fi/LC_MESSAGES/kttsd_commandplugin.mo -share/locale/fi/LC_MESSAGES/kttsd_eposplugin.mo -share/locale/fi/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/fi/LC_MESSAGES/kttsd_fliteplugin.mo -share/locale/fi/LC_MESSAGES/kttsd_freettsplugin.mo -share/locale/fi/LC_MESSAGES/kttsd_hadifixplugin.mo -share/locale/fi/LC_MESSAGES/kttsd_sbdplugin.mo -share/locale/fi/LC_MESSAGES/kttsd_stringreplacerplugin.mo -share/locale/fi/LC_MESSAGES/kttsd_talkerchooserplugin.mo -share/locale/fi/LC_MESSAGES/kttsd_xmltransformerplugin.mo -share/locale/fi/LC_MESSAGES/kttsjobmgr.mo -share/locale/fi/LC_MESSAGES/kttsmgr.mo -share/locale/fi/LC_MESSAGES/ktuberling.mo -share/locale/fi/LC_MESSAGES/kturtle.mo -share/locale/fi/LC_MESSAGES/ktux.mo -share/locale/fi/LC_MESSAGES/kuick_plugin.mo -share/locale/fi/LC_MESSAGES/kuickshow.mo -share/locale/fi/LC_MESSAGES/kuiviewer.mo -share/locale/fi/LC_MESSAGES/kuser.mo -share/locale/fi/LC_MESSAGES/kverbos.mo -share/locale/fi/LC_MESSAGES/kview.mo -share/locale/fi/LC_MESSAGES/kview_scale.mo -share/locale/fi/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/fi/LC_MESSAGES/kviewcanvas.mo -share/locale/fi/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/fi/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/fi/LC_MESSAGES/kviewscannerplugin.mo -share/locale/fi/LC_MESSAGES/kviewshell.mo -share/locale/fi/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/fi/LC_MESSAGES/kviewviewer.mo -share/locale/fi/LC_MESSAGES/kwalletmanager.mo -share/locale/fi/LC_MESSAGES/kweather.mo -share/locale/fi/LC_MESSAGES/kwifimanager.mo -share/locale/fi/LC_MESSAGES/kwin.mo -share/locale/fi/LC_MESSAGES/kwin4.mo -share/locale/fi/LC_MESSAGES/kwin_art_clients.mo -share/locale/fi/LC_MESSAGES/kwin_clients.mo -share/locale/fi/LC_MESSAGES/kwireless.mo -share/locale/fi/LC_MESSAGES/kworldclock.mo -share/locale/fi/LC_MESSAGES/kwriteconfig.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/kxsldbg.mo -share/locale/fi/LC_MESSAGES/libKTTSD.mo -share/locale/fi/LC_MESSAGES/libcalendarresources.mo -share/locale/fi/LC_MESSAGES/libdmctl.mo -share/locale/fi/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/fi/LC_MESSAGES/libkcal.mo -share/locale/fi/LC_MESSAGES/libkcalsystem.mo -share/locale/fi/LC_MESSAGES/libkcddb.mo -share/locale/fi/LC_MESSAGES/libkdegames.mo -share/locale/fi/LC_MESSAGES/libkdehighscores.mo -share/locale/fi/LC_MESSAGES/libkdenetwork.mo -share/locale/fi/LC_MESSAGES/libkdepim.mo -share/locale/fi/LC_MESSAGES/libkholidays.mo -share/locale/fi/LC_MESSAGES/libkicker.mo -share/locale/fi/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/fi/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/fi/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/fi/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/fi/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/fi/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/fi/LC_MESSAGES/libkickermenu_tom.mo -share/locale/fi/LC_MESSAGES/libkmime.mo -share/locale/fi/LC_MESSAGES/libkonq.mo -share/locale/fi/LC_MESSAGES/libkpimexchange.mo -share/locale/fi/LC_MESSAGES/libkscan.mo -share/locale/fi/LC_MESSAGES/libkscreensaver.mo -share/locale/fi/LC_MESSAGES/libksirtet.mo -share/locale/fi/LC_MESSAGES/libksync.mo -share/locale/fi/LC_MESSAGES/libtaskbar.mo -share/locale/fi/LC_MESSAGES/libtaskmanager.mo -share/locale/fi/LC_MESSAGES/lockout.mo -share/locale/fi/LC_MESSAGES/lskat.mo -share/locale/fi/LC_MESSAGES/lyrics.mo -share/locale/fi/LC_MESSAGES/mediaapplet.mo -share/locale/fi/LC_MESSAGES/mediacontrol.mo -share/locale/fi/LC_MESSAGES/minitoolsplugin.mo -share/locale/fi/LC_MESSAGES/naughtyapplet.mo -share/locale/fi/LC_MESSAGES/nexscope.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/pitchablespeed.mo -share/locale/fi/LC_MESSAGES/ppdtranslations.mo -share/locale/fi/LC_MESSAGES/privacy.mo -share/locale/fi/LC_MESSAGES/qeditor.mo -share/locale/fi/LC_MESSAGES/quanta.mo -share/locale/fi/LC_MESSAGES/quicklauncher.mo -share/locale/fi/LC_MESSAGES/searchbarplugin.mo -share/locale/fi/LC_MESSAGES/secpolicy.mo -share/locale/fi/LC_MESSAGES/spy.mo -share/locale/fi/LC_MESSAGES/synaescope.mo -share/locale/fi/LC_MESSAGES/taskbarextension.mo -share/locale/fi/LC_MESSAGES/timezones.mo -share/locale/fi/LC_MESSAGES/tippecanoe.mo -share/locale/fi/LC_MESSAGES/trashapplet.mo -share/locale/fi/LC_MESSAGES/tyler.mo -share/locale/fi/LC_MESSAGES/uachangerplugin.mo -share/locale/fi/LC_MESSAGES/umbrello.mo -share/locale/fi/LC_MESSAGES/useraccount.mo -share/locale/fi/LC_MESSAGES/validatorsplugin.mo -share/locale/fi/LC_MESSAGES/vimpart.mo -share/locale/fi/LC_MESSAGES/wakeup.mo -share/locale/fi/LC_MESSAGES/wavecapture.mo -share/locale/fi/LC_MESSAGES/webarchiver.mo -share/locale/fi/charset -share/locale/fi/entry.desktop -share/locale/fi/flag.png -@dirrm share/doc/HTML/fi/khelpcenter/glossary -@dirrm share/doc/HTML/fi/khelpcenter -@dirrm share/doc/HTML/fi/kfind -@dirrm share/doc/HTML/fi/common -@dirrm share/apps/khangman/data/fi -@dirrm share/apps/khangman/data -@dirrm share/apps/khangman diff --git a/misc/kde4-l10n-gl/Makefile b/misc/kde4-l10n-gl/Makefile deleted file mode 100644 index 647f1eb17334..000000000000 --- a/misc/kde4-l10n-gl/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-gl -# Date created: 20 January 2004 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= 3.3.2 -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= gl- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Gallegan messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-gl/distinfo b/misc/kde4-l10n-gl/distinfo deleted file mode 100644 index 6f92afa4056f..000000000000 --- a/misc/kde4-l10n-gl/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-gl-3.3.2.tar.bz2) = e1bcc1276a18a0fd0f6df7c03b702f26 -SIZE (KDE/kde-i18n/kde-i18n-gl-3.3.2.tar.bz2) = 1890385 diff --git a/misc/kde4-l10n-gl/pkg-descr b/misc/kde4-l10n-gl/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-gl/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-gl/pkg-plist b/misc/kde4-l10n-gl/pkg-plist deleted file mode 100644 index 194d238a5f86..000000000000 --- a/misc/kde4-l10n-gl/pkg-plist +++ /dev/null @@ -1,366 +0,0 @@ -share/locale/gl/LC_MESSAGES/alsaplayerui.mo -share/locale/gl/LC_MESSAGES/amor.mo -share/locale/gl/LC_MESSAGES/appletproxy.mo -share/locale/gl/LC_MESSAGES/ark.mo -share/locale/gl/LC_MESSAGES/ark_plugin.mo -share/locale/gl/LC_MESSAGES/artscontrol.mo -share/locale/gl/LC_MESSAGES/atlantikdesigner.mo -share/locale/gl/LC_MESSAGES/audiorename_plugin.mo -share/locale/gl/LC_MESSAGES/autorefresh.mo -share/locale/gl/LC_MESSAGES/babelfish.mo -share/locale/gl/LC_MESSAGES/charlatanui.mo -share/locale/gl/LC_MESSAGES/childpanelextension.mo -share/locale/gl/LC_MESSAGES/clockapplet.mo -share/locale/gl/LC_MESSAGES/crashesplugin.mo -share/locale/gl/LC_MESSAGES/dcopservice.mo -share/locale/gl/LC_MESSAGES/devicesapplet.mo -share/locale/gl/LC_MESSAGES/dirfilterplugin.mo -share/locale/gl/LC_MESSAGES/display.mo -share/locale/gl/LC_MESSAGES/dockbarextension.mo -share/locale/gl/LC_MESSAGES/domtreeviewer.mo -share/locale/gl/LC_MESSAGES/drkonqi.mo -share/locale/gl/LC_MESSAGES/extensionproxy.mo -share/locale/gl/LC_MESSAGES/filetypes.mo -share/locale/gl/LC_MESSAGES/flashkard.mo -share/locale/gl/LC_MESSAGES/fontinst.mo -share/locale/gl/LC_MESSAGES/htmlsearch.mo -share/locale/gl/LC_MESSAGES/imagerename_plugin.mo -share/locale/gl/LC_MESSAGES/joystick.mo -share/locale/gl/LC_MESSAGES/kabc_dir.mo -share/locale/gl/LC_MESSAGES/kabc_file.mo -share/locale/gl/LC_MESSAGES/kabc_ldap.mo -share/locale/gl/LC_MESSAGES/kabc_ldapkio.mo -share/locale/gl/LC_MESSAGES/kabc_net.mo -share/locale/gl/LC_MESSAGES/kabc_sql.mo -share/locale/gl/LC_MESSAGES/kabcformat_binary.mo -share/locale/gl/LC_MESSAGES/kaboodle.mo -share/locale/gl/LC_MESSAGES/kaccess.mo -share/locale/gl/LC_MESSAGES/kaddressbook.mo -share/locale/gl/LC_MESSAGES/kalzium.mo -share/locale/gl/LC_MESSAGES/kandy.mo -share/locale/gl/LC_MESSAGES/kappfinder.mo -share/locale/gl/LC_MESSAGES/kasbarextension.mo -share/locale/gl/LC_MESSAGES/kasteroids.mo -share/locale/gl/LC_MESSAGES/kate.mo -share/locale/gl/LC_MESSAGES/katedefaultproject.mo -share/locale/gl/LC_MESSAGES/katehelloworld.mo -share/locale/gl/LC_MESSAGES/kateprojectmanager.mo -share/locale/gl/LC_MESSAGES/katomic.mo -share/locale/gl/LC_MESSAGES/kaudiocreator.mo -share/locale/gl/LC_MESSAGES/kbabel.mo -share/locale/gl/LC_MESSAGES/kbattleship.mo -share/locale/gl/LC_MESSAGES/kbounce.mo -share/locale/gl/LC_MESSAGES/kbruch.mo -share/locale/gl/LC_MESSAGES/kcalc.mo -share/locale/gl/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/gl/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/gl/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/gl/LC_MESSAGES/kcmaccess.mo -share/locale/gl/LC_MESSAGES/kcmaccessibility.mo -share/locale/gl/LC_MESSAGES/kcmarts.mo -share/locale/gl/LC_MESSAGES/kcmaudiocd.mo -share/locale/gl/LC_MESSAGES/kcmbackground.mo -share/locale/gl/LC_MESSAGES/kcmbell.mo -share/locale/gl/LC_MESSAGES/kcmcddb.mo -share/locale/gl/LC_MESSAGES/kcmcgi.mo -share/locale/gl/LC_MESSAGES/kcmcolors.mo -share/locale/gl/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/gl/LC_MESSAGES/kcmcrypto.mo -share/locale/gl/LC_MESSAGES/kcmcss.mo -share/locale/gl/LC_MESSAGES/kcmemail.mo -share/locale/gl/LC_MESSAGES/kcmenergy.mo -share/locale/gl/LC_MESSAGES/kcmfileshare.mo -share/locale/gl/LC_MESSAGES/kcmfonts.mo -share/locale/gl/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/gl/LC_MESSAGES/kcmicons.mo -share/locale/gl/LC_MESSAGES/kcminfo.mo -share/locale/gl/LC_MESSAGES/kcminput.mo -share/locale/gl/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/gl/LC_MESSAGES/kcmkamera.mo -share/locale/gl/LC_MESSAGES/kcmkclock.mo -share/locale/gl/LC_MESSAGES/kcmkdb.mo -share/locale/gl/LC_MESSAGES/kcmkded.mo -share/locale/gl/LC_MESSAGES/kcmkeys.mo -share/locale/gl/LC_MESSAGES/kcmkicker.mo -share/locale/gl/LC_MESSAGES/kcmkio.mo -share/locale/gl/LC_MESSAGES/kcmkmix.mo -share/locale/gl/LC_MESSAGES/kcmkonq.mo -share/locale/gl/LC_MESSAGES/kcmkonqhtml.mo -share/locale/gl/LC_MESSAGES/kcmkonsole.mo -share/locale/gl/LC_MESSAGES/kcmktalkd.mo -share/locale/gl/LC_MESSAGES/kcmkvaio.mo -share/locale/gl/LC_MESSAGES/kcmkwindecoration.mo -share/locale/gl/LC_MESSAGES/kcmkwintheme.mo -share/locale/gl/LC_MESSAGES/kcmkwm.mo -share/locale/gl/LC_MESSAGES/kcmkxmlrpcd.mo -share/locale/gl/LC_MESSAGES/kcmlanbrowser.mo -share/locale/gl/LC_MESSAGES/kcmlaptop.mo -share/locale/gl/LC_MESSAGES/kcmlaunch.mo -share/locale/gl/LC_MESSAGES/kcmlayout.mo -share/locale/gl/LC_MESSAGES/kcmlocale.mo -share/locale/gl/LC_MESSAGES/kcmmediacontrol.mo -share/locale/gl/LC_MESSAGES/kcmmidi.mo -share/locale/gl/LC_MESSAGES/kcmnic.mo -share/locale/gl/LC_MESSAGES/kcmnotify.mo -share/locale/gl/LC_MESSAGES/kcmperformance.mo -share/locale/gl/LC_MESSAGES/kcmprintmgr.mo -share/locale/gl/LC_MESSAGES/kcmsamba.mo -share/locale/gl/LC_MESSAGES/kcmscreensaver.mo -share/locale/gl/LC_MESSAGES/kcmsmartcard.mo -share/locale/gl/LC_MESSAGES/kcmsmserver.mo -share/locale/gl/LC_MESSAGES/kcmsocks.mo -share/locale/gl/LC_MESSAGES/kcmspellchecking.mo -share/locale/gl/LC_MESSAGES/kcmstyle.mo -share/locale/gl/LC_MESSAGES/kcmtaskbar.mo -share/locale/gl/LC_MESSAGES/kcmusb.mo -share/locale/gl/LC_MESSAGES/kcmview1394.mo -share/locale/gl/LC_MESSAGES/kcmxinerama.mo -share/locale/gl/LC_MESSAGES/kcoloredit.mo -share/locale/gl/LC_MESSAGES/kcontrol.mo -share/locale/gl/LC_MESSAGES/kdat.mo -share/locale/gl/LC_MESSAGES/kdcop.mo -share/locale/gl/LC_MESSAGES/kdebugdialog.mo -share/locale/gl/LC_MESSAGES/kdelibs.mo -share/locale/gl/LC_MESSAGES/kdelibs_colors.mo -share/locale/gl/LC_MESSAGES/kdeprint.mo -share/locale/gl/LC_MESSAGES/kdeprint_part.mo -share/locale/gl/LC_MESSAGES/kdeprintfax.mo -share/locale/gl/LC_MESSAGES/kdesktop.mo -share/locale/gl/LC_MESSAGES/kdesu.mo -share/locale/gl/LC_MESSAGES/kdesud.mo -share/locale/gl/LC_MESSAGES/kdf.mo -share/locale/gl/LC_MESSAGES/kdialog.mo -share/locale/gl/LC_MESSAGES/kdmchooser.mo -share/locale/gl/LC_MESSAGES/kdmconfig.mo -share/locale/gl/LC_MESSAGES/kdmgreet.mo -share/locale/gl/LC_MESSAGES/kdvi.mo -share/locale/gl/LC_MESSAGES/kedit.mo -share/locale/gl/LC_MESSAGES/keduca.mo -share/locale/gl/LC_MESSAGES/kenolaba.mo -share/locale/gl/LC_MESSAGES/kfax.mo -share/locale/gl/LC_MESSAGES/kfifteenapplet.mo -share/locale/gl/LC_MESSAGES/kfile_au.mo -share/locale/gl/LC_MESSAGES/kfile_avi.mo -share/locale/gl/LC_MESSAGES/kfile_bmp.mo -share/locale/gl/LC_MESSAGES/kfile_cpp.mo -share/locale/gl/LC_MESSAGES/kfile_deb.mo -share/locale/gl/LC_MESSAGES/kfile_desktop.mo -share/locale/gl/LC_MESSAGES/kfile_diff.mo -share/locale/gl/LC_MESSAGES/kfile_drgeo.mo -share/locale/gl/LC_MESSAGES/kfile_dvi.mo -share/locale/gl/LC_MESSAGES/kfile_flac.mo -share/locale/gl/LC_MESSAGES/kfile_folder.mo -share/locale/gl/LC_MESSAGES/kfile_font.mo -share/locale/gl/LC_MESSAGES/kfile_gif.mo -share/locale/gl/LC_MESSAGES/kfile_html.mo -share/locale/gl/LC_MESSAGES/kfile_ico.mo -share/locale/gl/LC_MESSAGES/kfile_jpeg.mo -share/locale/gl/LC_MESSAGES/kfile_kig.mo -share/locale/gl/LC_MESSAGES/kfile_lnk.mo -share/locale/gl/LC_MESSAGES/kfile_m3u.mo -share/locale/gl/LC_MESSAGES/kfile_mp3.mo -share/locale/gl/LC_MESSAGES/kfile_mpc.mo -share/locale/gl/LC_MESSAGES/kfile_ogg.mo -share/locale/gl/LC_MESSAGES/kfile_pcx.mo -share/locale/gl/LC_MESSAGES/kfile_pdf.mo -share/locale/gl/LC_MESSAGES/kfile_png.mo -share/locale/gl/LC_MESSAGES/kfile_pnm.mo -share/locale/gl/LC_MESSAGES/kfile_po.mo -share/locale/gl/LC_MESSAGES/kfile_ps.mo -share/locale/gl/LC_MESSAGES/kfile_rgb.mo -share/locale/gl/LC_MESSAGES/kfile_rpm.mo -share/locale/gl/LC_MESSAGES/kfile_sid.mo -share/locale/gl/LC_MESSAGES/kfile_tga.mo -share/locale/gl/LC_MESSAGES/kfile_tiff.mo -share/locale/gl/LC_MESSAGES/kfile_ts.mo -share/locale/gl/LC_MESSAGES/kfile_txt.mo -share/locale/gl/LC_MESSAGES/kfile_wav.mo -share/locale/gl/LC_MESSAGES/kfile_xbm.mo -share/locale/gl/LC_MESSAGES/kfileaudiopreview.mo -share/locale/gl/LC_MESSAGES/kfindpart.mo -share/locale/gl/LC_MESSAGES/kfloppy.mo -share/locale/gl/LC_MESSAGES/kfmclient.mo -share/locale/gl/LC_MESSAGES/kfontinst.mo -share/locale/gl/LC_MESSAGES/kfouleggs.mo -share/locale/gl/LC_MESSAGES/kgamma.mo -share/locale/gl/LC_MESSAGES/kget.mo -share/locale/gl/LC_MESSAGES/kghostview.mo -share/locale/gl/LC_MESSAGES/kgpg.mo -share/locale/gl/LC_MESSAGES/khangman.mo -share/locale/gl/LC_MESSAGES/khelpcenter.mo -share/locale/gl/LC_MESSAGES/khotkeys.mo -share/locale/gl/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/gl/LC_MESSAGES/kicker.mo -share/locale/gl/LC_MESSAGES/kiconedit.mo -share/locale/gl/LC_MESSAGES/kio.mo -share/locale/gl/LC_MESSAGES/kio_audiocd.mo -share/locale/gl/LC_MESSAGES/kio_devices.mo -share/locale/gl/LC_MESSAGES/kio_finger.mo -share/locale/gl/LC_MESSAGES/kio_fish.mo -share/locale/gl/LC_MESSAGES/kio_floppy.mo -share/locale/gl/LC_MESSAGES/kio_help.mo -share/locale/gl/LC_MESSAGES/kio_imap4.mo -share/locale/gl/LC_MESSAGES/kio_mac.mo -share/locale/gl/LC_MESSAGES/kio_man.mo -share/locale/gl/LC_MESSAGES/kio_mobile.mo -share/locale/gl/LC_MESSAGES/kio_nfs.mo -share/locale/gl/LC_MESSAGES/kio_nntp.mo -share/locale/gl/LC_MESSAGES/kio_pop3.mo -share/locale/gl/LC_MESSAGES/kio_print.mo -share/locale/gl/LC_MESSAGES/kio_settings.mo -share/locale/gl/LC_MESSAGES/kio_sftp.mo -share/locale/gl/LC_MESSAGES/kio_smb.mo -share/locale/gl/LC_MESSAGES/kio_smbro.mo -share/locale/gl/LC_MESSAGES/kio_smtp.mo -share/locale/gl/LC_MESSAGES/kio_trash.mo -share/locale/gl/LC_MESSAGES/kioexec.mo -share/locale/gl/LC_MESSAGES/kiten.mo -share/locale/gl/LC_MESSAGES/kjobviewer.mo -share/locale/gl/LC_MESSAGES/kjots.mo -share/locale/gl/LC_MESSAGES/klaptopdaemon.mo -share/locale/gl/LC_MESSAGES/klatin.mo -share/locale/gl/LC_MESSAGES/klegacyimport.mo -share/locale/gl/LC_MESSAGES/klettres.mo -share/locale/gl/LC_MESSAGES/klickety.mo -share/locale/gl/LC_MESSAGES/klines.mo -share/locale/gl/LC_MESSAGES/klipper.mo -share/locale/gl/LC_MESSAGES/kmag.mo -share/locale/gl/LC_MESSAGES/kmail.mo -share/locale/gl/LC_MESSAGES/kmcop.mo -share/locale/gl/LC_MESSAGES/kmenuapplet.mo -share/locale/gl/LC_MESSAGES/kmenuedit.mo -share/locale/gl/LC_MESSAGES/kmessedwords.mo -share/locale/gl/LC_MESSAGES/kmid.mo -share/locale/gl/LC_MESSAGES/kmines.mo -share/locale/gl/LC_MESSAGES/kminipagerapplet.mo -share/locale/gl/LC_MESSAGES/kmix.mo -share/locale/gl/LC_MESSAGES/kmoon.mo -share/locale/gl/LC_MESSAGES/kmousetool.mo -share/locale/gl/LC_MESSAGES/knode.mo -share/locale/gl/LC_MESSAGES/knotes.mo -share/locale/gl/LC_MESSAGES/knotify.mo -share/locale/gl/LC_MESSAGES/kodo.mo -share/locale/gl/LC_MESSAGES/kolf.mo -share/locale/gl/LC_MESSAGES/kolourpaint.mo -share/locale/gl/LC_MESSAGES/kolourpicker.mo -share/locale/gl/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/gl/LC_MESSAGES/konqueror.mo -share/locale/gl/LC_MESSAGES/konsole.mo -share/locale/gl/LC_MESSAGES/kontact.mo -share/locale/gl/LC_MESSAGES/kooka.mo -share/locale/gl/LC_MESSAGES/kopete.mo -share/locale/gl/LC_MESSAGES/korganizer.mo -share/locale/gl/LC_MESSAGES/kpackage.mo -share/locale/gl/LC_MESSAGES/kpager.mo -share/locale/gl/LC_MESSAGES/kpartapp.mo -share/locale/gl/LC_MESSAGES/kpartsaver.mo -share/locale/gl/LC_MESSAGES/kpat.mo -share/locale/gl/LC_MESSAGES/kpdf.mo -share/locale/gl/LC_MESSAGES/kpercentage.mo -share/locale/gl/LC_MESSAGES/kpersonalizer.mo -share/locale/gl/LC_MESSAGES/kpoker.mo -share/locale/gl/LC_MESSAGES/kppp.mo -share/locale/gl/LC_MESSAGES/kprinter.mo -share/locale/gl/LC_MESSAGES/krandr.mo -share/locale/gl/LC_MESSAGES/krdb.mo -share/locale/gl/LC_MESSAGES/kreadconfig.mo -share/locale/gl/LC_MESSAGES/krec.mo -share/locale/gl/LC_MESSAGES/kreversi.mo -share/locale/gl/LC_MESSAGES/kruler.mo -share/locale/gl/LC_MESSAGES/krunapplet.mo -share/locale/gl/LC_MESSAGES/ksame.mo -share/locale/gl/LC_MESSAGES/kscd.mo -share/locale/gl/LC_MESSAGES/kscreensaver.mo -share/locale/gl/LC_MESSAGES/kshisen.mo -share/locale/gl/LC_MESSAGES/ksig.mo -share/locale/gl/LC_MESSAGES/ksim.mo -share/locale/gl/LC_MESSAGES/ksmiletris.mo -share/locale/gl/LC_MESSAGES/ksmserver.mo -share/locale/gl/LC_MESSAGES/ksnake.mo -share/locale/gl/LC_MESSAGES/ksnapshot.mo -share/locale/gl/LC_MESSAGES/ksokoban.mo -share/locale/gl/LC_MESSAGES/kspaceduel.mo -share/locale/gl/LC_MESSAGES/ksplash.mo -share/locale/gl/LC_MESSAGES/ksplashthemes.mo -share/locale/gl/LC_MESSAGES/kstart.mo -share/locale/gl/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/gl/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/gl/LC_MESSAGES/ksysguard.mo -share/locale/gl/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/gl/LC_MESSAGES/ksystraycmd.mo -share/locale/gl/LC_MESSAGES/ksysv.mo -share/locale/gl/LC_MESSAGES/ktaskbarapplet.mo -share/locale/gl/LC_MESSAGES/kteatime.mo -share/locale/gl/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/gl/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/gl/LC_MESSAGES/ktimer.mo -share/locale/gl/LC_MESSAGES/ktip.mo -share/locale/gl/LC_MESSAGES/ktron.mo -share/locale/gl/LC_MESSAGES/ktux.mo -share/locale/gl/LC_MESSAGES/kuick_plugin.mo -share/locale/gl/LC_MESSAGES/kuickshow.mo -share/locale/gl/LC_MESSAGES/kuser.mo -share/locale/gl/LC_MESSAGES/kview.mo -share/locale/gl/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/gl/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/gl/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/gl/LC_MESSAGES/kviewscannerplugin.mo -share/locale/gl/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/gl/LC_MESSAGES/kviewviewer.mo -share/locale/gl/LC_MESSAGES/kwalletmanager.mo -share/locale/gl/LC_MESSAGES/kweather.mo -share/locale/gl/LC_MESSAGES/kwin.mo -share/locale/gl/LC_MESSAGES/kwin_b2_config.mo -share/locale/gl/LC_MESSAGES/kwin_cde.mo -share/locale/gl/LC_MESSAGES/kwin_cde_config.mo -share/locale/gl/LC_MESSAGES/kwin_default_config.mo -share/locale/gl/LC_MESSAGES/kwin_glow.mo -share/locale/gl/LC_MESSAGES/kwin_glow_config.mo -share/locale/gl/LC_MESSAGES/kwin_icewm.mo -share/locale/gl/LC_MESSAGES/kwin_icewm_config.mo -share/locale/gl/LC_MESSAGES/kwin_kde1.mo -share/locale/gl/LC_MESSAGES/kwin_keramik_config.mo -share/locale/gl/LC_MESSAGES/kwin_kstep.mo -share/locale/gl/LC_MESSAGES/kwin_modernsys_config.mo -share/locale/gl/LC_MESSAGES/kwin_openlook.mo -share/locale/gl/LC_MESSAGES/kwin_plastik.mo -share/locale/gl/LC_MESSAGES/kwin_plastik_config.mo -share/locale/gl/LC_MESSAGES/kwin_quartz_config.mo -share/locale/gl/LC_MESSAGES/kwin_riscos.mo -share/locale/gl/LC_MESSAGES/kwin_system.mo -share/locale/gl/LC_MESSAGES/kwireless.mo -share/locale/gl/LC_MESSAGES/kworldclock.mo -share/locale/gl/LC_MESSAGES/kwriteconfig.mo -share/locale/gl/LC_MESSAGES/kxkb.mo -share/locale/gl/LC_MESSAGES/libkcddb.mo -share/locale/gl/LC_MESSAGES/libkdegames.mo -share/locale/gl/LC_MESSAGES/libkdehighscores.mo -share/locale/gl/LC_MESSAGES/libkicker.mo -share/locale/gl/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/gl/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/gl/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/gl/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/gl/LC_MESSAGES/libkonq.mo -share/locale/gl/LC_MESSAGES/libkscan.mo -share/locale/gl/LC_MESSAGES/libkscreensaver.mo -share/locale/gl/LC_MESSAGES/libksirtet.mo -share/locale/gl/LC_MESSAGES/libtaskbar.mo -share/locale/gl/LC_MESSAGES/libtaskmanager.mo -share/locale/gl/LC_MESSAGES/lockout.mo -share/locale/gl/LC_MESSAGES/naughtyapplet.mo -share/locale/gl/LC_MESSAGES/noatun.mo -share/locale/gl/LC_MESSAGES/nsplugin.mo -share/locale/gl/LC_MESSAGES/passwords.mo -share/locale/gl/LC_MESSAGES/privacy.mo -share/locale/gl/LC_MESSAGES/quanta.mo -share/locale/gl/LC_MESSAGES/quicklauncher.mo -share/locale/gl/LC_MESSAGES/secpolicy.mo -share/locale/gl/LC_MESSAGES/spy.mo -share/locale/gl/LC_MESSAGES/taskbarextension.mo -share/locale/gl/LC_MESSAGES/timezones.mo -share/locale/gl/LC_MESSAGES/uachangerplugin.mo -share/locale/gl/LC_MESSAGES/userinfo.mo -share/locale/gl/LC_MESSAGES/webarchiver.mo -share/locale/gl/charset -share/locale/gl/entry.desktop -share/locale/gl/flag.png diff --git a/misc/kde4-l10n-hi/Makefile b/misc/kde4-l10n-hi/Makefile deleted file mode 100644 index 5ff64615e641..000000000000 --- a/misc/kde4-l10n-hi/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-hi -# Date created: 20 January 2004 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= hi- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Hindi messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-hi/distinfo b/misc/kde4-l10n-hi/distinfo deleted file mode 100644 index 0bf2b461e6aa..000000000000 --- a/misc/kde4-l10n-hi/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-hi-3.4.2.tar.bz2) = 9e48c3943219b4ca203de1db61dfe84d -SIZE (KDE/kde-i18n/kde-i18n-hi-3.4.2.tar.bz2) = 1748574 diff --git a/misc/kde4-l10n-hi/pkg-descr b/misc/kde4-l10n-hi/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-hi/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-hi/pkg-plist b/misc/kde4-l10n-hi/pkg-plist deleted file mode 100644 index 61a5e5d6afd0..000000000000 --- a/misc/kde4-l10n-hi/pkg-plist +++ /dev/null @@ -1,558 +0,0 @@ -share/locale/hi/LC_MESSAGES/akregator.mo -share/locale/hi/LC_MESSAGES/akregator_konqplugin.mo -share/locale/hi/LC_MESSAGES/alsaplayerui.mo -share/locale/hi/LC_MESSAGES/amor.mo -share/locale/hi/LC_MESSAGES/appletproxy.mo -share/locale/hi/LC_MESSAGES/ark.mo -share/locale/hi/LC_MESSAGES/ark_plugin.mo -share/locale/hi/LC_MESSAGES/artsbuilder.mo -share/locale/hi/LC_MESSAGES/artscontrol.mo -share/locale/hi/LC_MESSAGES/artsmodules.mo -share/locale/hi/LC_MESSAGES/atlantik.mo -share/locale/hi/LC_MESSAGES/atlantikdesigner.mo -share/locale/hi/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/hi/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/hi/LC_MESSAGES/audiorename_plugin.mo -share/locale/hi/LC_MESSAGES/autorefresh.mo -share/locale/hi/LC_MESSAGES/babelfish.mo -share/locale/hi/LC_MESSAGES/cervisia.mo -share/locale/hi/LC_MESSAGES/charlatanui.mo -share/locale/hi/LC_MESSAGES/childpanelextension.mo -share/locale/hi/LC_MESSAGES/clockapplet.mo -share/locale/hi/LC_MESSAGES/crashesplugin.mo -share/locale/hi/LC_MESSAGES/cupsdconf.mo -share/locale/hi/LC_MESSAGES/cvsservice.mo -share/locale/hi/LC_MESSAGES/dcoprss.mo -share/locale/hi/LC_MESSAGES/devicesapplet.mo -share/locale/hi/LC_MESSAGES/dirfilterplugin.mo -share/locale/hi/LC_MESSAGES/display.mo -share/locale/hi/LC_MESSAGES/dockbarextension.mo -share/locale/hi/LC_MESSAGES/domtreeviewer.mo -share/locale/hi/LC_MESSAGES/drkonqi.mo -share/locale/hi/LC_MESSAGES/dub.mo -share/locale/hi/LC_MESSAGES/extensionproxy.mo -share/locale/hi/LC_MESSAGES/ffrs.mo -share/locale/hi/LC_MESSAGES/filetypes.mo -share/locale/hi/LC_MESSAGES/fontinst.mo -share/locale/hi/LC_MESSAGES/fsview.mo -share/locale/hi/LC_MESSAGES/htmlsearch.mo -share/locale/hi/LC_MESSAGES/imagerename_plugin.mo -share/locale/hi/LC_MESSAGES/imgalleryplugin.mo -share/locale/hi/LC_MESSAGES/irkick.mo -share/locale/hi/LC_MESSAGES/jefferson.mo -share/locale/hi/LC_MESSAGES/joystick.mo -share/locale/hi/LC_MESSAGES/juk.mo -share/locale/hi/LC_MESSAGES/kabc2mutt.mo -share/locale/hi/LC_MESSAGES/kabc_dir.mo -share/locale/hi/LC_MESSAGES/kabc_file.mo -share/locale/hi/LC_MESSAGES/kabc_ldap.mo -share/locale/hi/LC_MESSAGES/kabc_ldapkio.mo -share/locale/hi/LC_MESSAGES/kabc_net.mo -share/locale/hi/LC_MESSAGES/kabc_slox.mo -share/locale/hi/LC_MESSAGES/kabc_sql.mo -share/locale/hi/LC_MESSAGES/kabcformat_binary.mo -share/locale/hi/LC_MESSAGES/kaboodle.mo -share/locale/hi/LC_MESSAGES/kaccess.mo -share/locale/hi/LC_MESSAGES/kaddressbook.mo -share/locale/hi/LC_MESSAGES/kalarm.mo -share/locale/hi/LC_MESSAGES/kalzium.mo -share/locale/hi/LC_MESSAGES/kandy.mo -share/locale/hi/LC_MESSAGES/kappfinder.mo -share/locale/hi/LC_MESSAGES/karm.mo -share/locale/hi/LC_MESSAGES/kasbarextension.mo -share/locale/hi/LC_MESSAGES/kasteroids.mo -share/locale/hi/LC_MESSAGES/kate.mo -share/locale/hi/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/hi/LC_MESSAGES/katedefaultproject.mo -share/locale/hi/LC_MESSAGES/katefiletemplates.mo -share/locale/hi/LC_MESSAGES/katefll_initplugin.mo -share/locale/hi/LC_MESSAGES/katefll_plugin.mo -share/locale/hi/LC_MESSAGES/katehelloworld.mo -share/locale/hi/LC_MESSAGES/katehtmltools.mo -share/locale/hi/LC_MESSAGES/kateinsertcommand.mo -share/locale/hi/LC_MESSAGES/katekjswrapper.mo -share/locale/hi/LC_MESSAGES/katekttsd.mo -share/locale/hi/LC_MESSAGES/katemake.mo -share/locale/hi/LC_MESSAGES/katemodeline.mo -share/locale/hi/LC_MESSAGES/kateopenheader.mo -share/locale/hi/LC_MESSAGES/katepart.mo -share/locale/hi/LC_MESSAGES/kateprojectmanager.mo -share/locale/hi/LC_MESSAGES/katepybrowse.mo -share/locale/hi/LC_MESSAGES/katesnippets.mo -share/locale/hi/LC_MESSAGES/katespell.mo -share/locale/hi/LC_MESSAGES/katetabbarextension.mo -share/locale/hi/LC_MESSAGES/katetextfilter.mo -share/locale/hi/LC_MESSAGES/katexmlcheck.mo -share/locale/hi/LC_MESSAGES/katexmltools.mo -share/locale/hi/LC_MESSAGES/katomic.mo -share/locale/hi/LC_MESSAGES/kaudiocreator.mo -share/locale/hi/LC_MESSAGES/kbackgammon.mo -share/locale/hi/LC_MESSAGES/kbattleship.mo -share/locale/hi/LC_MESSAGES/kbinaryclock.mo -share/locale/hi/LC_MESSAGES/kblackbox.mo -share/locale/hi/LC_MESSAGES/kbounce.mo -share/locale/hi/LC_MESSAGES/kbruch.mo -share/locale/hi/LC_MESSAGES/kbstateapplet.mo -share/locale/hi/LC_MESSAGES/kbugbuster.mo -share/locale/hi/LC_MESSAGES/kcachegrind.mo -share/locale/hi/LC_MESSAGES/kcalc.mo -share/locale/hi/LC_MESSAGES/kcharselect.mo -share/locale/hi/LC_MESSAGES/kcharselectapplet.mo -share/locale/hi/LC_MESSAGES/kcm_krfb.mo -share/locale/hi/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/hi/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/hi/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/hi/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/hi/LC_MESSAGES/kcmaccess.mo -share/locale/hi/LC_MESSAGES/kcmaccessibility.mo -share/locale/hi/LC_MESSAGES/kcmarts.mo -share/locale/hi/LC_MESSAGES/kcmaudiocd.mo -share/locale/hi/LC_MESSAGES/kcmbackground.mo -share/locale/hi/LC_MESSAGES/kcmbell.mo -share/locale/hi/LC_MESSAGES/kcmcddb.mo -share/locale/hi/LC_MESSAGES/kcmcgi.mo -share/locale/hi/LC_MESSAGES/kcmcolors.mo -share/locale/hi/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/hi/LC_MESSAGES/kcmcrypto.mo -share/locale/hi/LC_MESSAGES/kcmcss.mo -share/locale/hi/LC_MESSAGES/kcmemail.mo -share/locale/hi/LC_MESSAGES/kcmenergy.mo -share/locale/hi/LC_MESSAGES/kcmfonts.mo -share/locale/hi/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/hi/LC_MESSAGES/kcmicons.mo -share/locale/hi/LC_MESSAGES/kcminfo.mo -share/locale/hi/LC_MESSAGES/kcminput.mo -share/locale/hi/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/hi/LC_MESSAGES/kcmkabconfig.mo -share/locale/hi/LC_MESSAGES/kcmkamera.mo -share/locale/hi/LC_MESSAGES/kcmkclock.mo -share/locale/hi/LC_MESSAGES/kcmkded.mo -share/locale/hi/LC_MESSAGES/kcmkdnssd.mo -share/locale/hi/LC_MESSAGES/kcmkeys.mo -share/locale/hi/LC_MESSAGES/kcmkicker.mo -share/locale/hi/LC_MESSAGES/kcmkio.mo -share/locale/hi/LC_MESSAGES/kcmkmix.mo -share/locale/hi/LC_MESSAGES/kcmkonq.mo -share/locale/hi/LC_MESSAGES/kcmkonqhtml.mo -share/locale/hi/LC_MESSAGES/kcmkonsole.mo -share/locale/hi/LC_MESSAGES/kcmkontactnt.mo -share/locale/hi/LC_MESSAGES/kcmktalkd.mo -share/locale/hi/LC_MESSAGES/kcmkuick.mo -share/locale/hi/LC_MESSAGES/kcmkurifilt.mo -share/locale/hi/LC_MESSAGES/kcmkvaio.mo -share/locale/hi/LC_MESSAGES/kcmkwallet.mo -share/locale/hi/LC_MESSAGES/kcmkwindecoration.mo -share/locale/hi/LC_MESSAGES/kcmkwinrules.mo -share/locale/hi/LC_MESSAGES/kcmkwintheme.mo -share/locale/hi/LC_MESSAGES/kcmkwm.mo -share/locale/hi/LC_MESSAGES/kcmkxmlrpcd.mo -share/locale/hi/LC_MESSAGES/kcmlanbrowser.mo -share/locale/hi/LC_MESSAGES/kcmlaptop.mo -share/locale/hi/LC_MESSAGES/kcmlaunch.mo -share/locale/hi/LC_MESSAGES/kcmlayout.mo -share/locale/hi/LC_MESSAGES/kcmlilo.mo -share/locale/hi/LC_MESSAGES/kcmlirc.mo -share/locale/hi/LC_MESSAGES/kcmlocale.mo -share/locale/hi/LC_MESSAGES/kcmmediacontrol.mo -share/locale/hi/LC_MESSAGES/kcmmidi.mo -share/locale/hi/LC_MESSAGES/kcmnic.mo -share/locale/hi/LC_MESSAGES/kcmnotify.mo -share/locale/hi/LC_MESSAGES/kcmperformance.mo -share/locale/hi/LC_MESSAGES/kcmprintmgr.mo -share/locale/hi/LC_MESSAGES/kcmsamba.mo -share/locale/hi/LC_MESSAGES/kcmscreensaver.mo -share/locale/hi/LC_MESSAGES/kcmshell.mo -share/locale/hi/LC_MESSAGES/kcmsmartcard.mo -share/locale/hi/LC_MESSAGES/kcmsmserver.mo -share/locale/hi/LC_MESSAGES/kcmsocks.mo -share/locale/hi/LC_MESSAGES/kcmspellchecking.mo -share/locale/hi/LC_MESSAGES/kcmstyle.mo -share/locale/hi/LC_MESSAGES/kcmtaskbar.mo -share/locale/hi/LC_MESSAGES/kcmthinkpad.mo -share/locale/hi/LC_MESSAGES/kcmusb.mo -share/locale/hi/LC_MESSAGES/kcmview1394.mo -share/locale/hi/LC_MESSAGES/kcmvim.mo -share/locale/hi/LC_MESSAGES/kcmwifi.mo -share/locale/hi/LC_MESSAGES/kcmxinerama.mo -share/locale/hi/LC_MESSAGES/kcoloredit.mo -share/locale/hi/LC_MESSAGES/kcontrol.mo -share/locale/hi/LC_MESSAGES/kcron.mo -share/locale/hi/LC_MESSAGES/kdat.mo -share/locale/hi/LC_MESSAGES/kdcop.mo -share/locale/hi/LC_MESSAGES/kdebugdialog.mo -share/locale/hi/LC_MESSAGES/kdelibs.mo -share/locale/hi/LC_MESSAGES/kdelibs_colors.mo -share/locale/hi/LC_MESSAGES/kdelirc.mo -share/locale/hi/LC_MESSAGES/kdepasswd.mo -share/locale/hi/LC_MESSAGES/kdepimwizards.mo -share/locale/hi/LC_MESSAGES/kdeprint.mo -share/locale/hi/LC_MESSAGES/kdeprint_part.mo -share/locale/hi/LC_MESSAGES/kdeprintfax.mo -share/locale/hi/LC_MESSAGES/kdesktop.mo -share/locale/hi/LC_MESSAGES/kdessh.mo -share/locale/hi/LC_MESSAGES/kdesu.mo -share/locale/hi/LC_MESSAGES/kdesud.mo -share/locale/hi/LC_MESSAGES/kdevelop.mo -share/locale/hi/LC_MESSAGES/kdevtipofday.mo -share/locale/hi/LC_MESSAGES/kdf.mo -share/locale/hi/LC_MESSAGES/kdgantt.mo -share/locale/hi/LC_MESSAGES/kdialog.mo -share/locale/hi/LC_MESSAGES/kdict.mo -share/locale/hi/LC_MESSAGES/kdictapplet.mo -share/locale/hi/LC_MESSAGES/kdmchooser.mo -share/locale/hi/LC_MESSAGES/kdmconfig.mo -share/locale/hi/LC_MESSAGES/kdmgreet.mo -share/locale/hi/LC_MESSAGES/kdvi.mo -share/locale/hi/LC_MESSAGES/kedit.mo -share/locale/hi/LC_MESSAGES/keduca.mo -share/locale/hi/LC_MESSAGES/kenolaba.mo -share/locale/hi/LC_MESSAGES/kfax.mo -share/locale/hi/LC_MESSAGES/kfifteenapplet.mo -share/locale/hi/LC_MESSAGES/kfile_au.mo -share/locale/hi/LC_MESSAGES/kfile_avi.mo -share/locale/hi/LC_MESSAGES/kfile_bmp.mo -share/locale/hi/LC_MESSAGES/kfile_cert.mo -share/locale/hi/LC_MESSAGES/kfile_cpp.mo -share/locale/hi/LC_MESSAGES/kfile_dds.mo -share/locale/hi/LC_MESSAGES/kfile_deb.mo -share/locale/hi/LC_MESSAGES/kfile_desktop.mo -share/locale/hi/LC_MESSAGES/kfile_diff.mo -share/locale/hi/LC_MESSAGES/kfile_drgeo.mo -share/locale/hi/LC_MESSAGES/kfile_dvi.mo -share/locale/hi/LC_MESSAGES/kfile_exr.mo -share/locale/hi/LC_MESSAGES/kfile_flac.mo -share/locale/hi/LC_MESSAGES/kfile_folder.mo -share/locale/hi/LC_MESSAGES/kfile_font.mo -share/locale/hi/LC_MESSAGES/kfile_gif.mo -share/locale/hi/LC_MESSAGES/kfile_html.mo -share/locale/hi/LC_MESSAGES/kfile_ico.mo -share/locale/hi/LC_MESSAGES/kfile_ics.mo -share/locale/hi/LC_MESSAGES/kfile_jpeg.mo -share/locale/hi/LC_MESSAGES/kfile_kig.mo -share/locale/hi/LC_MESSAGES/kfile_lnk.mo -share/locale/hi/LC_MESSAGES/kfile_m3u.mo -share/locale/hi/LC_MESSAGES/kfile_mp3.mo -share/locale/hi/LC_MESSAGES/kfile_mpc.mo -share/locale/hi/LC_MESSAGES/kfile_ogg.mo -share/locale/hi/LC_MESSAGES/kfile_palm.mo -share/locale/hi/LC_MESSAGES/kfile_pcx.mo -share/locale/hi/LC_MESSAGES/kfile_pdf.mo -share/locale/hi/LC_MESSAGES/kfile_png.mo -share/locale/hi/LC_MESSAGES/kfile_pnm.mo -share/locale/hi/LC_MESSAGES/kfile_po.mo -share/locale/hi/LC_MESSAGES/kfile_ps.mo -share/locale/hi/LC_MESSAGES/kfile_rfc822.mo -share/locale/hi/LC_MESSAGES/kfile_rgb.mo -share/locale/hi/LC_MESSAGES/kfile_rpm.mo -share/locale/hi/LC_MESSAGES/kfile_sid.mo -share/locale/hi/LC_MESSAGES/kfile_tga.mo -share/locale/hi/LC_MESSAGES/kfile_theora.mo -share/locale/hi/LC_MESSAGES/kfile_tiff.mo -share/locale/hi/LC_MESSAGES/kfile_torrent.mo -share/locale/hi/LC_MESSAGES/kfile_ts.mo -share/locale/hi/LC_MESSAGES/kfile_txt.mo -share/locale/hi/LC_MESSAGES/kfile_vcf.mo -share/locale/hi/LC_MESSAGES/kfile_wav.mo -share/locale/hi/LC_MESSAGES/kfile_xbm.mo -share/locale/hi/LC_MESSAGES/kfile_xpm.mo -share/locale/hi/LC_MESSAGES/kfileaudiopreview.mo -share/locale/hi/LC_MESSAGES/kfilereplace.mo -share/locale/hi/LC_MESSAGES/kfileshare.mo -share/locale/hi/LC_MESSAGES/kfindpart.mo -share/locale/hi/LC_MESSAGES/kfloppy.mo -share/locale/hi/LC_MESSAGES/kfmclient.mo -share/locale/hi/LC_MESSAGES/kfontinst.mo -share/locale/hi/LC_MESSAGES/kfouleggs.mo -share/locale/hi/LC_MESSAGES/kgamma.mo -share/locale/hi/LC_MESSAGES/kgantt.mo -share/locale/hi/LC_MESSAGES/kget.mo -share/locale/hi/LC_MESSAGES/kghostview.mo -share/locale/hi/LC_MESSAGES/kgoldrunner.mo -share/locale/hi/LC_MESSAGES/kgpg.mo -share/locale/hi/LC_MESSAGES/kgreet_classic.mo -share/locale/hi/LC_MESSAGES/khangman.mo -share/locale/hi/LC_MESSAGES/khelpcenter.mo -share/locale/hi/LC_MESSAGES/khexedit.mo -share/locale/hi/LC_MESSAGES/khexedit2part.mo -share/locale/hi/LC_MESSAGES/khotkeys.mo -share/locale/hi/LC_MESSAGES/khtmlkttsd.mo -share/locale/hi/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/hi/LC_MESSAGES/kicker.mo -share/locale/hi/LC_MESSAGES/kiconedit.mo -share/locale/hi/LC_MESSAGES/kig.mo -share/locale/hi/LC_MESSAGES/kimagemapeditor.mo -share/locale/hi/LC_MESSAGES/kinetd.mo -share/locale/hi/LC_MESSAGES/kio.mo -share/locale/hi/LC_MESSAGES/kio_audiocd.mo -share/locale/hi/LC_MESSAGES/kio_devices.mo -share/locale/hi/LC_MESSAGES/kio_finger.mo -share/locale/hi/LC_MESSAGES/kio_fish.mo -share/locale/hi/LC_MESSAGES/kio_floppy.mo -share/locale/hi/LC_MESSAGES/kio_help.mo -share/locale/hi/LC_MESSAGES/kio_imap4.mo -share/locale/hi/LC_MESSAGES/kio_lan.mo -share/locale/hi/LC_MESSAGES/kio_ldap.mo -share/locale/hi/LC_MESSAGES/kio_mac.mo -share/locale/hi/LC_MESSAGES/kio_man.mo -share/locale/hi/LC_MESSAGES/kio_media.mo -share/locale/hi/LC_MESSAGES/kio_mobile.mo -share/locale/hi/LC_MESSAGES/kio_newimap4.mo -share/locale/hi/LC_MESSAGES/kio_nfs.mo -share/locale/hi/LC_MESSAGES/kio_nntp.mo -share/locale/hi/LC_MESSAGES/kio_pop3.mo -share/locale/hi/LC_MESSAGES/kio_print.mo -share/locale/hi/LC_MESSAGES/kio_remote.mo -share/locale/hi/LC_MESSAGES/kio_settings.mo -share/locale/hi/LC_MESSAGES/kio_sftp.mo -share/locale/hi/LC_MESSAGES/kio_sieve.mo -share/locale/hi/LC_MESSAGES/kio_smb.mo -share/locale/hi/LC_MESSAGES/kio_smtp.mo -share/locale/hi/LC_MESSAGES/kio_system.mo -share/locale/hi/LC_MESSAGES/kio_trash.mo -share/locale/hi/LC_MESSAGES/kioexec.mo -share/locale/hi/LC_MESSAGES/kiten.mo -share/locale/hi/LC_MESSAGES/kjobviewer.mo -share/locale/hi/LC_MESSAGES/kjots.mo -share/locale/hi/LC_MESSAGES/kjumpingcube.mo -share/locale/hi/LC_MESSAGES/klaptopdaemon.mo -share/locale/hi/LC_MESSAGES/klatin.mo -share/locale/hi/LC_MESSAGES/klegacyimport.mo -share/locale/hi/LC_MESSAGES/kleopatra.mo -share/locale/hi/LC_MESSAGES/klettres.mo -share/locale/hi/LC_MESSAGES/klickety.mo -share/locale/hi/LC_MESSAGES/klines.mo -share/locale/hi/LC_MESSAGES/klinkstatus.mo -share/locale/hi/LC_MESSAGES/klipper.mo -share/locale/hi/LC_MESSAGES/klock.mo -share/locale/hi/LC_MESSAGES/kmag.mo -share/locale/hi/LC_MESSAGES/kmahjongg.mo -share/locale/hi/LC_MESSAGES/kmail.mo -share/locale/hi/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/hi/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/hi/LC_MESSAGES/kmailcvt.mo -share/locale/hi/LC_MESSAGES/kmathapplet.mo -share/locale/hi/LC_MESSAGES/kmathtool.mo -share/locale/hi/LC_MESSAGES/kmcop.mo -share/locale/hi/LC_MESSAGES/kmenuapplet.mo -share/locale/hi/LC_MESSAGES/kmenuedit.mo -share/locale/hi/LC_MESSAGES/kmessedwords.mo -share/locale/hi/LC_MESSAGES/kmid.mo -share/locale/hi/LC_MESSAGES/kmilo_delli8k.mo -share/locale/hi/LC_MESSAGES/kmilo_generic.mo -share/locale/hi/LC_MESSAGES/kmilo_kvaio.mo -share/locale/hi/LC_MESSAGES/kmilo_powerbook.mo -share/locale/hi/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/hi/LC_MESSAGES/kmilod.mo -share/locale/hi/LC_MESSAGES/kmines.mo -share/locale/hi/LC_MESSAGES/kminipagerapplet.mo -share/locale/hi/LC_MESSAGES/kmix.mo -share/locale/hi/LC_MESSAGES/kmobile.mo -share/locale/hi/LC_MESSAGES/kmoon.mo -share/locale/hi/LC_MESSAGES/kmousetool.mo -share/locale/hi/LC_MESSAGES/kmouth.mo -share/locale/hi/LC_MESSAGES/kmplot.mo -share/locale/hi/LC_MESSAGES/kmrml.mo -share/locale/hi/LC_MESSAGES/knetattach.mo -share/locale/hi/LC_MESSAGES/knewsticker.mo -share/locale/hi/LC_MESSAGES/knode.mo -share/locale/hi/LC_MESSAGES/knotes.mo -share/locale/hi/LC_MESSAGES/knotify.mo -share/locale/hi/LC_MESSAGES/kodo.mo -share/locale/hi/LC_MESSAGES/kolf.mo -share/locale/hi/LC_MESSAGES/kolourpaint.mo -share/locale/hi/LC_MESSAGES/kolourpicker.mo -share/locale/hi/LC_MESSAGES/kommander.mo -share/locale/hi/LC_MESSAGES/kompare.mo -share/locale/hi/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/hi/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/hi/LC_MESSAGES/konqsidebar_news.mo -share/locale/hi/LC_MESSAGES/konqueror.mo -share/locale/hi/LC_MESSAGES/konquest.mo -share/locale/hi/LC_MESSAGES/konsole.mo -share/locale/hi/LC_MESSAGES/konsolekalendar.mo -share/locale/hi/LC_MESSAGES/kontact.mo -share/locale/hi/LC_MESSAGES/kooka.mo -share/locale/hi/LC_MESSAGES/kopete.mo -share/locale/hi/LC_MESSAGES/korganizer.mo -share/locale/hi/LC_MESSAGES/korn.mo -share/locale/hi/LC_MESSAGES/kpackage.mo -share/locale/hi/LC_MESSAGES/kpager.mo -share/locale/hi/LC_MESSAGES/kpartapp.mo -share/locale/hi/LC_MESSAGES/kpartsaver.mo -share/locale/hi/LC_MESSAGES/kpat.mo -share/locale/hi/LC_MESSAGES/kpdf.mo -share/locale/hi/LC_MESSAGES/kpercentage.mo -share/locale/hi/LC_MESSAGES/kpersonalizer.mo -share/locale/hi/LC_MESSAGES/kpf.mo -share/locale/hi/LC_MESSAGES/kpilot.mo -share/locale/hi/LC_MESSAGES/kpoker.mo -share/locale/hi/LC_MESSAGES/kpovmodeler.mo -share/locale/hi/LC_MESSAGES/kppp.mo -share/locale/hi/LC_MESSAGES/kppplogview.mo -share/locale/hi/LC_MESSAGES/kprinter.mo -share/locale/hi/LC_MESSAGES/krandr.mo -share/locale/hi/LC_MESSAGES/krdb.mo -share/locale/hi/LC_MESSAGES/krdc.mo -share/locale/hi/LC_MESSAGES/kreadconfig.mo -share/locale/hi/LC_MESSAGES/krec.mo -share/locale/hi/LC_MESSAGES/kregexpeditor.mo -share/locale/hi/LC_MESSAGES/kres_blogging.mo -share/locale/hi/LC_MESSAGES/kres_exchange.mo -share/locale/hi/LC_MESSAGES/kres_kolab.mo -share/locale/hi/LC_MESSAGES/kres_remote.mo -share/locale/hi/LC_MESSAGES/kres_xmlrpc.mo -share/locale/hi/LC_MESSAGES/kreversi.mo -share/locale/hi/LC_MESSAGES/krfb.mo -share/locale/hi/LC_MESSAGES/kruler.mo -share/locale/hi/LC_MESSAGES/krunapplet.mo -share/locale/hi/LC_MESSAGES/ksame.mo -share/locale/hi/LC_MESSAGES/ksayit.mo -share/locale/hi/LC_MESSAGES/kscd.mo -share/locale/hi/LC_MESSAGES/kscreensaver.mo -share/locale/hi/LC_MESSAGES/kshisen.mo -share/locale/hi/LC_MESSAGES/ksig.mo -share/locale/hi/LC_MESSAGES/ksim.mo -share/locale/hi/LC_MESSAGES/ksirc.mo -share/locale/hi/LC_MESSAGES/ksirtet.mo -share/locale/hi/LC_MESSAGES/ksmiletris.mo -share/locale/hi/LC_MESSAGES/ksmserver.mo -share/locale/hi/LC_MESSAGES/ksnake.mo -share/locale/hi/LC_MESSAGES/ksnapshot.mo -share/locale/hi/LC_MESSAGES/ksokoban.mo -share/locale/hi/LC_MESSAGES/kspaceduel.mo -share/locale/hi/LC_MESSAGES/ksplash.mo -share/locale/hi/LC_MESSAGES/ksplashthemes.mo -share/locale/hi/LC_MESSAGES/kstars.mo -share/locale/hi/LC_MESSAGES/kstart.mo -share/locale/hi/LC_MESSAGES/kstartperf.mo -share/locale/hi/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/hi/LC_MESSAGES/kstyle_phase_config.mo -share/locale/hi/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/hi/LC_MESSAGES/ksvgplugin.mo -share/locale/hi/LC_MESSAGES/ksync.mo -share/locale/hi/LC_MESSAGES/ksysguard.mo -share/locale/hi/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/hi/LC_MESSAGES/ksystraycmd.mo -share/locale/hi/LC_MESSAGES/ksysv.mo -share/locale/hi/LC_MESSAGES/ktalkd.mo -share/locale/hi/LC_MESSAGES/ktaskbarapplet.mo -share/locale/hi/LC_MESSAGES/kteatime.mo -share/locale/hi/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/hi/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/hi/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/hi/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/hi/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/hi/LC_MESSAGES/kthememanager.mo -share/locale/hi/LC_MESSAGES/ktimemon.mo -share/locale/hi/LC_MESSAGES/ktimer.mo -share/locale/hi/LC_MESSAGES/ktip.mo -share/locale/hi/LC_MESSAGES/ktnef.mo -share/locale/hi/LC_MESSAGES/ktouch.mo -share/locale/hi/LC_MESSAGES/ktron.mo -share/locale/hi/LC_MESSAGES/kttsd.mo -share/locale/hi/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/hi/LC_MESSAGES/kttsjobmgr.mo -share/locale/hi/LC_MESSAGES/kttsmgr.mo -share/locale/hi/LC_MESSAGES/ktuberling.mo -share/locale/hi/LC_MESSAGES/kturtle.mo -share/locale/hi/LC_MESSAGES/ktux.mo -share/locale/hi/LC_MESSAGES/kuick_plugin.mo -share/locale/hi/LC_MESSAGES/kuickshow.mo -share/locale/hi/LC_MESSAGES/kuiviewer.mo -share/locale/hi/LC_MESSAGES/kuser.mo -share/locale/hi/LC_MESSAGES/kverbos.mo -share/locale/hi/LC_MESSAGES/kview.mo -share/locale/hi/LC_MESSAGES/kview_scale.mo -share/locale/hi/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/hi/LC_MESSAGES/kviewcanvas.mo -share/locale/hi/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/hi/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/hi/LC_MESSAGES/kviewscannerplugin.mo -share/locale/hi/LC_MESSAGES/kviewshell.mo -share/locale/hi/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/hi/LC_MESSAGES/kviewviewer.mo -share/locale/hi/LC_MESSAGES/kvoctrain.mo -share/locale/hi/LC_MESSAGES/kwalletmanager.mo -share/locale/hi/LC_MESSAGES/kwatchgnupg.mo -share/locale/hi/LC_MESSAGES/kweather.mo -share/locale/hi/LC_MESSAGES/kwifimanager.mo -share/locale/hi/LC_MESSAGES/kwin.mo -share/locale/hi/LC_MESSAGES/kwin4.mo -share/locale/hi/LC_MESSAGES/kwin_art_clients.mo -share/locale/hi/LC_MESSAGES/kwin_clients.mo -share/locale/hi/LC_MESSAGES/kwireless.mo -share/locale/hi/LC_MESSAGES/kwordquiz.mo -share/locale/hi/LC_MESSAGES/kworldclock.mo -share/locale/hi/LC_MESSAGES/kwriteconfig.mo -share/locale/hi/LC_MESSAGES/kxkb.mo -share/locale/hi/LC_MESSAGES/kxmlrpcd.mo -share/locale/hi/LC_MESSAGES/kxsconfig.mo -share/locale/hi/LC_MESSAGES/kxsldbg.mo -share/locale/hi/LC_MESSAGES/libKTTSD.mo -share/locale/hi/LC_MESSAGES/libcalendarresources.mo -share/locale/hi/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/hi/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/hi/LC_MESSAGES/libkcal.mo -share/locale/hi/LC_MESSAGES/libkcalsystem.mo -share/locale/hi/LC_MESSAGES/libkcddb.mo -share/locale/hi/LC_MESSAGES/libkdegames.mo -share/locale/hi/LC_MESSAGES/libkdehighscores.mo -share/locale/hi/LC_MESSAGES/libkdenetwork.mo -share/locale/hi/LC_MESSAGES/libkdepim.mo -share/locale/hi/LC_MESSAGES/libkicker.mo -share/locale/hi/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/hi/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/hi/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/hi/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/hi/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/hi/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/hi/LC_MESSAGES/libkickermenu_tom.mo -share/locale/hi/LC_MESSAGES/libkleopatra.mo -share/locale/hi/LC_MESSAGES/libkmime.mo -share/locale/hi/LC_MESSAGES/libkonq.mo -share/locale/hi/LC_MESSAGES/libkpgp.mo -share/locale/hi/LC_MESSAGES/libkpimexchange.mo -share/locale/hi/LC_MESSAGES/libkscan.mo -share/locale/hi/LC_MESSAGES/libkscreensaver.mo -share/locale/hi/LC_MESSAGES/libksieve.mo -share/locale/hi/LC_MESSAGES/libksirtet.mo -share/locale/hi/LC_MESSAGES/libksync.mo -share/locale/hi/LC_MESSAGES/libtaskbar.mo -share/locale/hi/LC_MESSAGES/libtaskmanager.mo -share/locale/hi/LC_MESSAGES/lockout.mo -share/locale/hi/LC_MESSAGES/lskat.mo -share/locale/hi/LC_MESSAGES/lyrics.mo -share/locale/hi/LC_MESSAGES/mediaapplet.mo -share/locale/hi/LC_MESSAGES/mediacontrol.mo -share/locale/hi/LC_MESSAGES/minitoolsplugin.mo -share/locale/hi/LC_MESSAGES/naughtyapplet.mo -share/locale/hi/LC_MESSAGES/nexscope.mo -share/locale/hi/LC_MESSAGES/noatun.mo -share/locale/hi/LC_MESSAGES/nsplugin.mo -share/locale/hi/LC_MESSAGES/passwords.mo -share/locale/hi/LC_MESSAGES/pitchablespeed.mo -share/locale/hi/LC_MESSAGES/ppdtranslations.mo -share/locale/hi/LC_MESSAGES/privacy.mo -share/locale/hi/LC_MESSAGES/qeditor.mo -share/locale/hi/LC_MESSAGES/quanta.mo -share/locale/hi/LC_MESSAGES/quicklauncher.mo -share/locale/hi/LC_MESSAGES/rellinks.mo -share/locale/hi/LC_MESSAGES/searchbarplugin.mo -share/locale/hi/LC_MESSAGES/secpolicy.mo -share/locale/hi/LC_MESSAGES/spy.mo -share/locale/hi/LC_MESSAGES/synaescope.mo -share/locale/hi/LC_MESSAGES/taskbarextension.mo -share/locale/hi/LC_MESSAGES/timezones.mo -share/locale/hi/LC_MESSAGES/tippecanoe.mo -share/locale/hi/LC_MESSAGES/trashapplet.mo -share/locale/hi/LC_MESSAGES/tyler.mo -share/locale/hi/LC_MESSAGES/uachangerplugin.mo -share/locale/hi/LC_MESSAGES/umbrello.mo -share/locale/hi/LC_MESSAGES/useraccount.mo -share/locale/hi/LC_MESSAGES/validatorsplugin.mo -share/locale/hi/LC_MESSAGES/vimpart.mo -share/locale/hi/LC_MESSAGES/wakeup.mo -share/locale/hi/LC_MESSAGES/wavecapture.mo -share/locale/hi/LC_MESSAGES/webarchiver.mo -share/locale/hi/charset -share/locale/hi/entry.desktop diff --git a/misc/kde4-l10n-is/Makefile b/misc/kde4-l10n-is/Makefile deleted file mode 100644 index b9ca8ecb6eb3..000000000000 --- a/misc/kde4-l10n-is/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-is -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= is- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Icelandic messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-is/distinfo b/misc/kde4-l10n-is/distinfo deleted file mode 100644 index 9afebe07f132..000000000000 --- a/misc/kde4-l10n-is/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-is-3.4.2.tar.bz2) = df6ddbd88f8494ee29a7d10b38acfac8 -SIZE (KDE/kde-i18n/kde-i18n-is-3.4.2.tar.bz2) = 1941184 diff --git a/misc/kde4-l10n-is/pkg-descr b/misc/kde4-l10n-is/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-is/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-is/pkg-plist b/misc/kde4-l10n-is/pkg-plist deleted file mode 100644 index 557187dd5e86..000000000000 --- a/misc/kde4-l10n-is/pkg-plist +++ /dev/null @@ -1,592 +0,0 @@ -share/locale/is/LC_MESSAGES/akregator.mo -share/locale/is/LC_MESSAGES/akregator_konqplugin.mo -share/locale/is/LC_MESSAGES/alsaplayerui.mo -share/locale/is/LC_MESSAGES/amor.mo -share/locale/is/LC_MESSAGES/appletproxy.mo -share/locale/is/LC_MESSAGES/ark.mo -share/locale/is/LC_MESSAGES/ark_plugin.mo -share/locale/is/LC_MESSAGES/artsbuilder.mo -share/locale/is/LC_MESSAGES/artscontrol.mo -share/locale/is/LC_MESSAGES/artsmodules.mo -share/locale/is/LC_MESSAGES/atlantik.mo -share/locale/is/LC_MESSAGES/atlantikdesigner.mo -share/locale/is/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/is/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/is/LC_MESSAGES/audiorename_plugin.mo -share/locale/is/LC_MESSAGES/autorefresh.mo -share/locale/is/LC_MESSAGES/babelfish.mo -share/locale/is/LC_MESSAGES/cervisia.mo -share/locale/is/LC_MESSAGES/charlatanui.mo -share/locale/is/LC_MESSAGES/childpanelextension.mo -share/locale/is/LC_MESSAGES/clockapplet.mo -share/locale/is/LC_MESSAGES/crashesplugin.mo -share/locale/is/LC_MESSAGES/cupsdconf.mo -share/locale/is/LC_MESSAGES/cvsservice.mo -share/locale/is/LC_MESSAGES/dcoprss.mo -share/locale/is/LC_MESSAGES/devicesapplet.mo -share/locale/is/LC_MESSAGES/dirfilterplugin.mo -share/locale/is/LC_MESSAGES/display.mo -share/locale/is/LC_MESSAGES/dockbarextension.mo -share/locale/is/LC_MESSAGES/domtreeviewer.mo -share/locale/is/LC_MESSAGES/drkonqi.mo -share/locale/is/LC_MESSAGES/dub.mo -share/locale/is/LC_MESSAGES/extensionproxy.mo -share/locale/is/LC_MESSAGES/ffrs.mo -share/locale/is/LC_MESSAGES/filetypes.mo -share/locale/is/LC_MESSAGES/fontinst.mo -share/locale/is/LC_MESSAGES/fsview.mo -share/locale/is/LC_MESSAGES/htmlsearch.mo -share/locale/is/LC_MESSAGES/imagerename_plugin.mo -share/locale/is/LC_MESSAGES/imgalleryplugin.mo -share/locale/is/LC_MESSAGES/irkick.mo -share/locale/is/LC_MESSAGES/jefferson.mo -share/locale/is/LC_MESSAGES/joystick.mo -share/locale/is/LC_MESSAGES/juk.mo -share/locale/is/LC_MESSAGES/kabc2mutt.mo -share/locale/is/LC_MESSAGES/kabc_dir.mo -share/locale/is/LC_MESSAGES/kabc_file.mo -share/locale/is/LC_MESSAGES/kabc_ldap.mo -share/locale/is/LC_MESSAGES/kabc_ldapkio.mo -share/locale/is/LC_MESSAGES/kabc_net.mo -share/locale/is/LC_MESSAGES/kabc_slox.mo -share/locale/is/LC_MESSAGES/kabc_sql.mo -share/locale/is/LC_MESSAGES/kabcformat_binary.mo -share/locale/is/LC_MESSAGES/kaboodle.mo -share/locale/is/LC_MESSAGES/kaccess.mo -share/locale/is/LC_MESSAGES/kaddressbook.mo -share/locale/is/LC_MESSAGES/kalarm.mo -share/locale/is/LC_MESSAGES/kalzium.mo -share/locale/is/LC_MESSAGES/kandy.mo -share/locale/is/LC_MESSAGES/kappfinder.mo -share/locale/is/LC_MESSAGES/karm.mo -share/locale/is/LC_MESSAGES/kasbarextension.mo -share/locale/is/LC_MESSAGES/kasteroids.mo -share/locale/is/LC_MESSAGES/kate.mo -share/locale/is/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/is/LC_MESSAGES/katedefaultproject.mo -share/locale/is/LC_MESSAGES/katefiletemplates.mo -share/locale/is/LC_MESSAGES/katefll_initplugin.mo -share/locale/is/LC_MESSAGES/katefll_plugin.mo -share/locale/is/LC_MESSAGES/katehelloworld.mo -share/locale/is/LC_MESSAGES/katehtmltools.mo -share/locale/is/LC_MESSAGES/kateinsertcommand.mo -share/locale/is/LC_MESSAGES/katekjswrapper.mo -share/locale/is/LC_MESSAGES/katekttsd.mo -share/locale/is/LC_MESSAGES/katemake.mo -share/locale/is/LC_MESSAGES/katemodeline.mo -share/locale/is/LC_MESSAGES/kateopenheader.mo -share/locale/is/LC_MESSAGES/katepart.mo -share/locale/is/LC_MESSAGES/katepartkttsd.mo -share/locale/is/LC_MESSAGES/kateprojectmanager.mo -share/locale/is/LC_MESSAGES/katepybrowse.mo -share/locale/is/LC_MESSAGES/katesnippets.mo -share/locale/is/LC_MESSAGES/katespell.mo -share/locale/is/LC_MESSAGES/katetabbarextension.mo -share/locale/is/LC_MESSAGES/katetextfilter.mo -share/locale/is/LC_MESSAGES/katexmlcheck.mo -share/locale/is/LC_MESSAGES/katexmltools.mo -share/locale/is/LC_MESSAGES/katomic.mo -share/locale/is/LC_MESSAGES/kaudiocreator.mo -share/locale/is/LC_MESSAGES/kbabel.mo -share/locale/is/LC_MESSAGES/kbackgammon.mo -share/locale/is/LC_MESSAGES/kbattleship.mo -share/locale/is/LC_MESSAGES/kbinaryclock.mo -share/locale/is/LC_MESSAGES/kblackbox.mo -share/locale/is/LC_MESSAGES/kbounce.mo -share/locale/is/LC_MESSAGES/kbruch.mo -share/locale/is/LC_MESSAGES/kbstateapplet.mo -share/locale/is/LC_MESSAGES/kbugbuster.mo -share/locale/is/LC_MESSAGES/kcachegrind.mo -share/locale/is/LC_MESSAGES/kcalc.mo -share/locale/is/LC_MESSAGES/kcharselect.mo -share/locale/is/LC_MESSAGES/kcharselectapplet.mo -share/locale/is/LC_MESSAGES/kcm_krfb.mo -share/locale/is/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/is/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/is/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/is/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/is/LC_MESSAGES/kcmaccess.mo -share/locale/is/LC_MESSAGES/kcmaccessibility.mo -share/locale/is/LC_MESSAGES/kcmarts.mo -share/locale/is/LC_MESSAGES/kcmaudiocd.mo -share/locale/is/LC_MESSAGES/kcmbackground.mo -share/locale/is/LC_MESSAGES/kcmbell.mo -share/locale/is/LC_MESSAGES/kcmcddb.mo -share/locale/is/LC_MESSAGES/kcmcgi.mo -share/locale/is/LC_MESSAGES/kcmcolors.mo -share/locale/is/LC_MESSAGES/kcmcomponentchooser.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/kcmkabconfig.mo -share/locale/is/LC_MESSAGES/kcmkamera.mo -share/locale/is/LC_MESSAGES/kcmkclock.mo -share/locale/is/LC_MESSAGES/kcmkded.mo -share/locale/is/LC_MESSAGES/kcmkdnssd.mo -share/locale/is/LC_MESSAGES/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/kcmkontactnt.mo -share/locale/is/LC_MESSAGES/kcmktalkd.mo -share/locale/is/LC_MESSAGES/kcmkttsd.mo -share/locale/is/LC_MESSAGES/kcmkuick.mo -share/locale/is/LC_MESSAGES/kcmkurifilt.mo -share/locale/is/LC_MESSAGES/kcmkvaio.mo -share/locale/is/LC_MESSAGES/kcmkwallet.mo -share/locale/is/LC_MESSAGES/kcmkwindecoration.mo -share/locale/is/LC_MESSAGES/kcmkwinrules.mo -share/locale/is/LC_MESSAGES/kcmkwintheme.mo -share/locale/is/LC_MESSAGES/kcmkwm.mo -share/locale/is/LC_MESSAGES/kcmkxmlrpcd.mo -share/locale/is/LC_MESSAGES/kcmlanbrowser.mo -share/locale/is/LC_MESSAGES/kcmlaptop.mo -share/locale/is/LC_MESSAGES/kcmlaunch.mo -share/locale/is/LC_MESSAGES/kcmlayout.mo -share/locale/is/LC_MESSAGES/kcmlilo.mo -share/locale/is/LC_MESSAGES/kcmlirc.mo -share/locale/is/LC_MESSAGES/kcmlocale.mo -share/locale/is/LC_MESSAGES/kcmmediacontrol.mo -share/locale/is/LC_MESSAGES/kcmmidi.mo -share/locale/is/LC_MESSAGES/kcmnic.mo -share/locale/is/LC_MESSAGES/kcmnotify.mo -share/locale/is/LC_MESSAGES/kcmperformance.mo -share/locale/is/LC_MESSAGES/kcmprintmgr.mo -share/locale/is/LC_MESSAGES/kcmsamba.mo -share/locale/is/LC_MESSAGES/kcmscreensaver.mo -share/locale/is/LC_MESSAGES/kcmshell.mo -share/locale/is/LC_MESSAGES/kcmsmartcard.mo -share/locale/is/LC_MESSAGES/kcmsmserver.mo -share/locale/is/LC_MESSAGES/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/kcmthinkpad.mo -share/locale/is/LC_MESSAGES/kcmusb.mo -share/locale/is/LC_MESSAGES/kcmview1394.mo -share/locale/is/LC_MESSAGES/kcmvim.mo -share/locale/is/LC_MESSAGES/kcmwifi.mo -share/locale/is/LC_MESSAGES/kcmxinerama.mo -share/locale/is/LC_MESSAGES/kcoloredit.mo -share/locale/is/LC_MESSAGES/kcontrol.mo -share/locale/is/LC_MESSAGES/kcron.mo -share/locale/is/LC_MESSAGES/kdat.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/kdelibs_colors.mo -share/locale/is/LC_MESSAGES/kdelirc.mo -share/locale/is/LC_MESSAGES/kdepasswd.mo -share/locale/is/LC_MESSAGES/kdepimresources.mo -share/locale/is/LC_MESSAGES/kdepimwizards.mo -share/locale/is/LC_MESSAGES/kdeprint.mo -share/locale/is/LC_MESSAGES/kdeprint_part.mo -share/locale/is/LC_MESSAGES/kdeprintfax.mo -share/locale/is/LC_MESSAGES/kdesktop.mo -share/locale/is/LC_MESSAGES/kdessh.mo -share/locale/is/LC_MESSAGES/kdesu.mo -share/locale/is/LC_MESSAGES/kdesud.mo -share/locale/is/LC_MESSAGES/kdevdesigner.mo -share/locale/is/LC_MESSAGES/kdevelop.mo -share/locale/is/LC_MESSAGES/kdevtipofday.mo -share/locale/is/LC_MESSAGES/kdf.mo -share/locale/is/LC_MESSAGES/kdgantt.mo -share/locale/is/LC_MESSAGES/kdialog.mo -share/locale/is/LC_MESSAGES/kdict.mo -share/locale/is/LC_MESSAGES/kdictapplet.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/keduca.mo -share/locale/is/LC_MESSAGES/kenolaba.mo -share/locale/is/LC_MESSAGES/kfax.mo -share/locale/is/LC_MESSAGES/kfifteenapplet.mo -share/locale/is/LC_MESSAGES/kfile_au.mo -share/locale/is/LC_MESSAGES/kfile_avi.mo -share/locale/is/LC_MESSAGES/kfile_bmp.mo -share/locale/is/LC_MESSAGES/kfile_cert.mo -share/locale/is/LC_MESSAGES/kfile_cpp.mo -share/locale/is/LC_MESSAGES/kfile_dds.mo -share/locale/is/LC_MESSAGES/kfile_deb.mo -share/locale/is/LC_MESSAGES/kfile_desktop.mo -share/locale/is/LC_MESSAGES/kfile_diff.mo -share/locale/is/LC_MESSAGES/kfile_drgeo.mo -share/locale/is/LC_MESSAGES/kfile_dvi.mo -share/locale/is/LC_MESSAGES/kfile_exr.mo -share/locale/is/LC_MESSAGES/kfile_flac.mo -share/locale/is/LC_MESSAGES/kfile_folder.mo -share/locale/is/LC_MESSAGES/kfile_font.mo -share/locale/is/LC_MESSAGES/kfile_gif.mo -share/locale/is/LC_MESSAGES/kfile_html.mo -share/locale/is/LC_MESSAGES/kfile_ico.mo -share/locale/is/LC_MESSAGES/kfile_ics.mo -share/locale/is/LC_MESSAGES/kfile_jpeg.mo -share/locale/is/LC_MESSAGES/kfile_kig.mo -share/locale/is/LC_MESSAGES/kfile_lnk.mo -share/locale/is/LC_MESSAGES/kfile_m3u.mo -share/locale/is/LC_MESSAGES/kfile_mhtml.mo -share/locale/is/LC_MESSAGES/kfile_mp3.mo -share/locale/is/LC_MESSAGES/kfile_mpc.mo -share/locale/is/LC_MESSAGES/kfile_ogg.mo -share/locale/is/LC_MESSAGES/kfile_palm.mo -share/locale/is/LC_MESSAGES/kfile_pcx.mo -share/locale/is/LC_MESSAGES/kfile_pdf.mo -share/locale/is/LC_MESSAGES/kfile_png.mo -share/locale/is/LC_MESSAGES/kfile_pnm.mo -share/locale/is/LC_MESSAGES/kfile_po.mo -share/locale/is/LC_MESSAGES/kfile_ps.mo -share/locale/is/LC_MESSAGES/kfile_rfc822.mo -share/locale/is/LC_MESSAGES/kfile_rgb.mo -share/locale/is/LC_MESSAGES/kfile_rpm.mo -share/locale/is/LC_MESSAGES/kfile_sid.mo -share/locale/is/LC_MESSAGES/kfile_tga.mo -share/locale/is/LC_MESSAGES/kfile_theora.mo -share/locale/is/LC_MESSAGES/kfile_tiff.mo -share/locale/is/LC_MESSAGES/kfile_torrent.mo -share/locale/is/LC_MESSAGES/kfile_ts.mo -share/locale/is/LC_MESSAGES/kfile_txt.mo -share/locale/is/LC_MESSAGES/kfile_vcf.mo -share/locale/is/LC_MESSAGES/kfile_wav.mo -share/locale/is/LC_MESSAGES/kfile_xbm.mo -share/locale/is/LC_MESSAGES/kfile_xpm.mo -share/locale/is/LC_MESSAGES/kfileaudiopreview.mo -share/locale/is/LC_MESSAGES/kfilereplace.mo -share/locale/is/LC_MESSAGES/kfileshare.mo -share/locale/is/LC_MESSAGES/kfindpart.mo -share/locale/is/LC_MESSAGES/kfloppy.mo -share/locale/is/LC_MESSAGES/kfmclient.mo -share/locale/is/LC_MESSAGES/kfontinst.mo -share/locale/is/LC_MESSAGES/kfouleggs.mo -share/locale/is/LC_MESSAGES/kgamma.mo -share/locale/is/LC_MESSAGES/kgantt.mo -share/locale/is/LC_MESSAGES/kget.mo -share/locale/is/LC_MESSAGES/kghostview.mo -share/locale/is/LC_MESSAGES/kgoldrunner.mo -share/locale/is/LC_MESSAGES/kgpg.mo -share/locale/is/LC_MESSAGES/kgreet_classic.mo -share/locale/is/LC_MESSAGES/kgreet_winbind.mo -share/locale/is/LC_MESSAGES/khangman.mo -share/locale/is/LC_MESSAGES/khelpcenter.mo -share/locale/is/LC_MESSAGES/khexedit.mo -share/locale/is/LC_MESSAGES/khexedit2part.mo -share/locale/is/LC_MESSAGES/khotkeys.mo -share/locale/is/LC_MESSAGES/khtmlkttsd.mo -share/locale/is/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/is/LC_MESSAGES/kicker.mo -share/locale/is/LC_MESSAGES/kiconedit.mo -share/locale/is/LC_MESSAGES/kig.mo -share/locale/is/LC_MESSAGES/kimagemapeditor.mo -share/locale/is/LC_MESSAGES/kinetd.mo -share/locale/is/LC_MESSAGES/kio.mo -share/locale/is/LC_MESSAGES/kio_audiocd.mo -share/locale/is/LC_MESSAGES/kio_devices.mo -share/locale/is/LC_MESSAGES/kio_finger.mo -share/locale/is/LC_MESSAGES/kio_fish.mo -share/locale/is/LC_MESSAGES/kio_floppy.mo -share/locale/is/LC_MESSAGES/kio_groupwise.mo -share/locale/is/LC_MESSAGES/kio_help.mo -share/locale/is/LC_MESSAGES/kio_imap4.mo -share/locale/is/LC_MESSAGES/kio_lan.mo -share/locale/is/LC_MESSAGES/kio_ldap.mo -share/locale/is/LC_MESSAGES/kio_mac.mo -share/locale/is/LC_MESSAGES/kio_man.mo -share/locale/is/LC_MESSAGES/kio_media.mo -share/locale/is/LC_MESSAGES/kio_mobile.mo -share/locale/is/LC_MESSAGES/kio_newimap4.mo -share/locale/is/LC_MESSAGES/kio_nfs.mo -share/locale/is/LC_MESSAGES/kio_nntp.mo -share/locale/is/LC_MESSAGES/kio_pop3.mo -share/locale/is/LC_MESSAGES/kio_print.mo -share/locale/is/LC_MESSAGES/kio_remote.mo -share/locale/is/LC_MESSAGES/kio_settings.mo -share/locale/is/LC_MESSAGES/kio_sftp.mo -share/locale/is/LC_MESSAGES/kio_sieve.mo -share/locale/is/LC_MESSAGES/kio_smb.mo -share/locale/is/LC_MESSAGES/kio_smtp.mo -share/locale/is/LC_MESSAGES/kio_svn.mo -share/locale/is/LC_MESSAGES/kio_system.mo -share/locale/is/LC_MESSAGES/kio_trash.mo -share/locale/is/LC_MESSAGES/kio_zeroconf.mo -share/locale/is/LC_MESSAGES/kioexec.mo -share/locale/is/LC_MESSAGES/kiten.mo -share/locale/is/LC_MESSAGES/kjobviewer.mo -share/locale/is/LC_MESSAGES/kjots.mo -share/locale/is/LC_MESSAGES/kjumpingcube.mo -share/locale/is/LC_MESSAGES/klaptopdaemon.mo -share/locale/is/LC_MESSAGES/klatin.mo -share/locale/is/LC_MESSAGES/klegacyimport.mo -share/locale/is/LC_MESSAGES/kleopatra.mo -share/locale/is/LC_MESSAGES/klettres.mo -share/locale/is/LC_MESSAGES/klickety.mo -share/locale/is/LC_MESSAGES/klines.mo -share/locale/is/LC_MESSAGES/klinkstatus.mo -share/locale/is/LC_MESSAGES/klipper.mo -share/locale/is/LC_MESSAGES/klock.mo -share/locale/is/LC_MESSAGES/kmag.mo -share/locale/is/LC_MESSAGES/kmahjongg.mo -share/locale/is/LC_MESSAGES/kmail.mo -share/locale/is/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/is/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/is/LC_MESSAGES/kmailcvt.mo -share/locale/is/LC_MESSAGES/kmathapplet.mo -share/locale/is/LC_MESSAGES/kmathtool.mo -share/locale/is/LC_MESSAGES/kmcop.mo -share/locale/is/LC_MESSAGES/kmenuapplet.mo -share/locale/is/LC_MESSAGES/kmenuedit.mo -share/locale/is/LC_MESSAGES/kmessedwords.mo -share/locale/is/LC_MESSAGES/kmid.mo -share/locale/is/LC_MESSAGES/kmilo_delli8k.mo -share/locale/is/LC_MESSAGES/kmilo_generic.mo -share/locale/is/LC_MESSAGES/kmilo_kvaio.mo -share/locale/is/LC_MESSAGES/kmilo_powerbook.mo -share/locale/is/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/is/LC_MESSAGES/kmilod.mo -share/locale/is/LC_MESSAGES/kmines.mo -share/locale/is/LC_MESSAGES/kminipagerapplet.mo -share/locale/is/LC_MESSAGES/kmix.mo -share/locale/is/LC_MESSAGES/kmobile.mo -share/locale/is/LC_MESSAGES/kmoon.mo -share/locale/is/LC_MESSAGES/kmousetool.mo -share/locale/is/LC_MESSAGES/kmouth.mo -share/locale/is/LC_MESSAGES/kmplot.mo -share/locale/is/LC_MESSAGES/kmrml.mo -share/locale/is/LC_MESSAGES/knetattach.mo -share/locale/is/LC_MESSAGES/knewsticker.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/kolf.mo -share/locale/is/LC_MESSAGES/kolourpaint.mo -share/locale/is/LC_MESSAGES/kolourpicker.mo -share/locale/is/LC_MESSAGES/kommander.mo -share/locale/is/LC_MESSAGES/kompare.mo -share/locale/is/LC_MESSAGES/konnector_dummy.mo -share/locale/is/LC_MESSAGES/konnector_kabc.mo -share/locale/is/LC_MESSAGES/konnector_kcal.mo -share/locale/is/LC_MESSAGES/konnector_local.mo -share/locale/is/LC_MESSAGES/konnector_qtopia.mo -share/locale/is/LC_MESSAGES/konnector_remote.mo -share/locale/is/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/is/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/is/LC_MESSAGES/konqsidebar_news.mo -share/locale/is/LC_MESSAGES/konqueror.mo -share/locale/is/LC_MESSAGES/konquest.mo -share/locale/is/LC_MESSAGES/konsole.mo -share/locale/is/LC_MESSAGES/konsolekalendar.mo -share/locale/is/LC_MESSAGES/kontact.mo -share/locale/is/LC_MESSAGES/kooka.mo -share/locale/is/LC_MESSAGES/kopete.mo -share/locale/is/LC_MESSAGES/korganizer.mo -share/locale/is/LC_MESSAGES/korn.mo -share/locale/is/LC_MESSAGES/kpackage.mo -share/locale/is/LC_MESSAGES/kpager.mo -share/locale/is/LC_MESSAGES/kpartapp.mo -share/locale/is/LC_MESSAGES/kpartsaver.mo -share/locale/is/LC_MESSAGES/kpat.mo -share/locale/is/LC_MESSAGES/kpdf.mo -share/locale/is/LC_MESSAGES/kpercentage.mo -share/locale/is/LC_MESSAGES/kpersonalizer.mo -share/locale/is/LC_MESSAGES/kpf.mo -share/locale/is/LC_MESSAGES/kpilot.mo -share/locale/is/LC_MESSAGES/kpoker.mo -share/locale/is/LC_MESSAGES/kpovmodeler.mo -share/locale/is/LC_MESSAGES/kppp.mo -share/locale/is/LC_MESSAGES/kppplogview.mo -share/locale/is/LC_MESSAGES/kprinter.mo -share/locale/is/LC_MESSAGES/krandr.mo -share/locale/is/LC_MESSAGES/krdb.mo -share/locale/is/LC_MESSAGES/krdc.mo -share/locale/is/LC_MESSAGES/kreadconfig.mo -share/locale/is/LC_MESSAGES/krec.mo -share/locale/is/LC_MESSAGES/kregexpeditor.mo -share/locale/is/LC_MESSAGES/kres_blogging.mo -share/locale/is/LC_MESSAGES/kres_bugzilla.mo -share/locale/is/LC_MESSAGES/kres_exchange.mo -share/locale/is/LC_MESSAGES/kres_featureplan.mo -share/locale/is/LC_MESSAGES/kres_groupwise.mo -share/locale/is/LC_MESSAGES/kres_kolab.mo -share/locale/is/LC_MESSAGES/kres_opengroupware.mo -share/locale/is/LC_MESSAGES/kres_remote.mo -share/locale/is/LC_MESSAGES/kres_xmlrpc.mo -share/locale/is/LC_MESSAGES/kreversi.mo -share/locale/is/LC_MESSAGES/krfb.mo -share/locale/is/LC_MESSAGES/kruler.mo -share/locale/is/LC_MESSAGES/krunapplet.mo -share/locale/is/LC_MESSAGES/ksame.mo -share/locale/is/LC_MESSAGES/ksayit.mo -share/locale/is/LC_MESSAGES/kscd.mo -share/locale/is/LC_MESSAGES/kscreensaver.mo -share/locale/is/LC_MESSAGES/kshisen.mo -share/locale/is/LC_MESSAGES/ksig.mo -share/locale/is/LC_MESSAGES/ksim.mo -share/locale/is/LC_MESSAGES/ksirc.mo -share/locale/is/LC_MESSAGES/ksirtet.mo -share/locale/is/LC_MESSAGES/ksmiletris.mo -share/locale/is/LC_MESSAGES/ksmserver.mo -share/locale/is/LC_MESSAGES/ksnake.mo -share/locale/is/LC_MESSAGES/ksnapshot.mo -share/locale/is/LC_MESSAGES/ksokoban.mo -share/locale/is/LC_MESSAGES/kspaceduel.mo -share/locale/is/LC_MESSAGES/ksplash.mo -share/locale/is/LC_MESSAGES/ksplashthemes.mo -share/locale/is/LC_MESSAGES/kstars.mo -share/locale/is/LC_MESSAGES/kstart.mo -share/locale/is/LC_MESSAGES/kstartperf.mo -share/locale/is/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/is/LC_MESSAGES/kstyle_phase_config.mo -share/locale/is/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/is/LC_MESSAGES/ksvgplugin.mo -share/locale/is/LC_MESSAGES/ksync.mo -share/locale/is/LC_MESSAGES/ksysguard.mo -share/locale/is/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/is/LC_MESSAGES/ksystraycmd.mo -share/locale/is/LC_MESSAGES/ksysv.mo -share/locale/is/LC_MESSAGES/ktalkd.mo -share/locale/is/LC_MESSAGES/ktaskbarapplet.mo -share/locale/is/LC_MESSAGES/kteatime.mo -share/locale/is/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/is/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/is/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/is/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/is/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/is/LC_MESSAGES/ktexteditor_kttsd.mo -share/locale/is/LC_MESSAGES/kthememanager.mo -share/locale/is/LC_MESSAGES/ktimemon.mo -share/locale/is/LC_MESSAGES/ktimer.mo -share/locale/is/LC_MESSAGES/ktip.mo -share/locale/is/LC_MESSAGES/ktnef.mo -share/locale/is/LC_MESSAGES/ktouch.mo -share/locale/is/LC_MESSAGES/ktron.mo -share/locale/is/LC_MESSAGES/kttsd.mo -share/locale/is/LC_MESSAGES/kttsd_commandplugin.mo -share/locale/is/LC_MESSAGES/kttsd_eposplugin.mo -share/locale/is/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/is/LC_MESSAGES/kttsd_fliteplugin.mo -share/locale/is/LC_MESSAGES/kttsd_freettsplugin.mo -share/locale/is/LC_MESSAGES/kttsd_hadifixplugin.mo -share/locale/is/LC_MESSAGES/kttsd_sbdplugin.mo -share/locale/is/LC_MESSAGES/kttsd_stringreplacerplugin.mo -share/locale/is/LC_MESSAGES/kttsd_talkerchooserplugin.mo -share/locale/is/LC_MESSAGES/kttsd_xmltransformerplugin.mo -share/locale/is/LC_MESSAGES/kttsjobmgr.mo -share/locale/is/LC_MESSAGES/kttsmgr.mo -share/locale/is/LC_MESSAGES/ktuberling.mo -share/locale/is/LC_MESSAGES/kturtle.mo -share/locale/is/LC_MESSAGES/ktux.mo -share/locale/is/LC_MESSAGES/kuick_plugin.mo -share/locale/is/LC_MESSAGES/kuickshow.mo -share/locale/is/LC_MESSAGES/kuiviewer.mo -share/locale/is/LC_MESSAGES/kuser.mo -share/locale/is/LC_MESSAGES/kverbos.mo -share/locale/is/LC_MESSAGES/kview.mo -share/locale/is/LC_MESSAGES/kview_scale.mo -share/locale/is/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/is/LC_MESSAGES/kviewcanvas.mo -share/locale/is/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/is/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/is/LC_MESSAGES/kviewscannerplugin.mo -share/locale/is/LC_MESSAGES/kviewshell.mo -share/locale/is/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/is/LC_MESSAGES/kviewviewer.mo -share/locale/is/LC_MESSAGES/kvoctrain.mo -share/locale/is/LC_MESSAGES/kwalletmanager.mo -share/locale/is/LC_MESSAGES/kwatchgnupg.mo -share/locale/is/LC_MESSAGES/kweather.mo -share/locale/is/LC_MESSAGES/kwifimanager.mo -share/locale/is/LC_MESSAGES/kwin.mo -share/locale/is/LC_MESSAGES/kwin4.mo -share/locale/is/LC_MESSAGES/kwin_art_clients.mo -share/locale/is/LC_MESSAGES/kwin_clients.mo -share/locale/is/LC_MESSAGES/kwireless.mo -share/locale/is/LC_MESSAGES/kwordquiz.mo -share/locale/is/LC_MESSAGES/kworldclock.mo -share/locale/is/LC_MESSAGES/kwriteconfig.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/kxsldbg.mo -share/locale/is/LC_MESSAGES/libKTTSD.mo -share/locale/is/LC_MESSAGES/libcalendarresources.mo -share/locale/is/LC_MESSAGES/libdmctl.mo -share/locale/is/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/is/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/is/LC_MESSAGES/libkcal.mo -share/locale/is/LC_MESSAGES/libkcalsystem.mo -share/locale/is/LC_MESSAGES/libkcddb.mo -share/locale/is/LC_MESSAGES/libkdegames.mo -share/locale/is/LC_MESSAGES/libkdehighscores.mo -share/locale/is/LC_MESSAGES/libkdenetwork.mo -share/locale/is/LC_MESSAGES/libkdepim.mo -share/locale/is/LC_MESSAGES/libkholidays.mo -share/locale/is/LC_MESSAGES/libkicker.mo -share/locale/is/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/is/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/is/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/is/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/is/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/is/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/is/LC_MESSAGES/libkickermenu_tom.mo -share/locale/is/LC_MESSAGES/libkleopatra.mo -share/locale/is/LC_MESSAGES/libkmime.mo -share/locale/is/LC_MESSAGES/libkonq.mo -share/locale/is/LC_MESSAGES/libkpgp.mo -share/locale/is/LC_MESSAGES/libkpimexchange.mo -share/locale/is/LC_MESSAGES/libkscan.mo -share/locale/is/LC_MESSAGES/libkscreensaver.mo -share/locale/is/LC_MESSAGES/libksieve.mo -share/locale/is/LC_MESSAGES/libksirtet.mo -share/locale/is/LC_MESSAGES/libksync.mo -share/locale/is/LC_MESSAGES/libtaskbar.mo -share/locale/is/LC_MESSAGES/libtaskmanager.mo -share/locale/is/LC_MESSAGES/lockout.mo -share/locale/is/LC_MESSAGES/lskat.mo -share/locale/is/LC_MESSAGES/lyrics.mo -share/locale/is/LC_MESSAGES/mediaapplet.mo -share/locale/is/LC_MESSAGES/mediacontrol.mo -share/locale/is/LC_MESSAGES/minitoolsplugin.mo -share/locale/is/LC_MESSAGES/multisynk.mo -share/locale/is/LC_MESSAGES/naughtyapplet.mo -share/locale/is/LC_MESSAGES/nexscope.mo -share/locale/is/LC_MESSAGES/noatun.mo -share/locale/is/LC_MESSAGES/nsplugin.mo -share/locale/is/LC_MESSAGES/passwords.mo -share/locale/is/LC_MESSAGES/pitchablespeed.mo -share/locale/is/LC_MESSAGES/ppdtranslations.mo -share/locale/is/LC_MESSAGES/privacy.mo -share/locale/is/LC_MESSAGES/qeditor.mo -share/locale/is/LC_MESSAGES/quanta.mo -share/locale/is/LC_MESSAGES/quicklauncher.mo -share/locale/is/LC_MESSAGES/rellinks.mo -share/locale/is/LC_MESSAGES/searchbarplugin.mo -share/locale/is/LC_MESSAGES/secpolicy.mo -share/locale/is/LC_MESSAGES/spy.mo -share/locale/is/LC_MESSAGES/synaescope.mo -share/locale/is/LC_MESSAGES/taskbarextension.mo -share/locale/is/LC_MESSAGES/timezones.mo -share/locale/is/LC_MESSAGES/tippecanoe.mo -share/locale/is/LC_MESSAGES/trashapplet.mo -share/locale/is/LC_MESSAGES/tyler.mo -share/locale/is/LC_MESSAGES/uachangerplugin.mo -share/locale/is/LC_MESSAGES/umbrello.mo -share/locale/is/LC_MESSAGES/useraccount.mo -share/locale/is/LC_MESSAGES/validatorsplugin.mo -share/locale/is/LC_MESSAGES/vimpart.mo -share/locale/is/LC_MESSAGES/wakeup.mo -share/locale/is/LC_MESSAGES/wavecapture.mo -share/locale/is/LC_MESSAGES/webarchiver.mo -share/locale/is/charset -share/locale/is/entry.desktop -share/locale/is/flag.png diff --git a/misc/kde4-l10n-it/Makefile b/misc/kde4-l10n-it/Makefile deleted file mode 100644 index 4d8881fcf0a2..000000000000 --- a/misc/kde4-l10n-it/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-it -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= it- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Italian messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-it/distinfo b/misc/kde4-l10n-it/distinfo deleted file mode 100644 index 1cf956fa4a32..000000000000 --- a/misc/kde4-l10n-it/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-it-3.4.2.tar.bz2) = 9bb6a0522e32ae078cba3a928d3012fe -SIZE (KDE/kde-i18n/kde-i18n-it-3.4.2.tar.bz2) = 12372833 diff --git a/misc/kde4-l10n-it/pkg-descr b/misc/kde4-l10n-it/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-it/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-it/pkg-plist b/misc/kde4-l10n-it/pkg-plist deleted file mode 100644 index 0a358bd97fdb..000000000000 --- a/misc/kde4-l10n-it/pkg-plist +++ /dev/null @@ -1,2168 +0,0 @@ -share/apps/katepart/syntax/logohighlightstyle.it.xml -share/apps/khangman/data/it/animals.kvtml -share/apps/khangman/data/it/easy.kvtml -share/apps/khangman/data/it/hard.kvtml -share/apps/khangman/data/it/medium.kvtml -share/apps/klatin/data/vocabs/it/A.kvtml -share/apps/klatin/data/vocabs/it/BC.kvtml -share/apps/klatin/data/vocabs/it/D.kvtml -share/apps/klatin/data/vocabs/it/EF.kvtml -share/apps/klatin/data/vocabs/it/GHI1.kvtml -share/apps/klatin/data/vocabs/it/I2L.kvtml -share/apps/klatin/data/vocabs/it/M.kvtml -share/apps/klatin/data/vocabs/it/N.kvtml -share/apps/klatin/data/vocabs/it/OP1.kvtml -share/apps/klatin/data/vocabs/it/P2.kvtml -share/apps/klatin/data/vocabs/it/QR.kvtml -share/apps/klatin/data/vocabs/it/S.kvtml -share/apps/klatin/data/vocabs/it/TU.kvtml -share/apps/klatin/data/vocabs/it/V.kvtml -share/apps/klettres/it/alpha/a.ogg -share/apps/klettres/it/alpha/b.ogg -share/apps/klettres/it/alpha/c.ogg -share/apps/klettres/it/alpha/d.ogg -share/apps/klettres/it/alpha/e.ogg -share/apps/klettres/it/alpha/f.ogg -share/apps/klettres/it/alpha/g.ogg -share/apps/klettres/it/alpha/h.ogg -share/apps/klettres/it/alpha/i.ogg -share/apps/klettres/it/alpha/j.ogg -share/apps/klettres/it/alpha/k.ogg -share/apps/klettres/it/alpha/l.ogg -share/apps/klettres/it/alpha/m.ogg -share/apps/klettres/it/alpha/n.ogg -share/apps/klettres/it/alpha/o.ogg -share/apps/klettres/it/alpha/p.ogg -share/apps/klettres/it/alpha/q.ogg -share/apps/klettres/it/alpha/r.ogg -share/apps/klettres/it/alpha/s.ogg -share/apps/klettres/it/alpha/t.ogg -share/apps/klettres/it/alpha/u.ogg -share/apps/klettres/it/alpha/w.ogg -share/apps/klettres/it/alpha/x.ogg -share/apps/klettres/it/alpha/y.ogg -share/apps/klettres/it/alpha/z.ogg -share/apps/klettres/it/syllab/ba.ogg -share/apps/klettres/it/syllab/be.ogg -share/apps/klettres/it/syllab/bi.ogg -share/apps/klettres/it/syllab/bo.ogg -share/apps/klettres/it/syllab/bu.ogg -share/apps/klettres/it/syllab/ca.ogg -share/apps/klettres/it/syllab/ce.ogg -share/apps/klettres/it/syllab/ci.ogg -share/apps/klettres/it/syllab/co.ogg -share/apps/klettres/it/syllab/cu.ogg -share/apps/klettres/it/syllab/da.ogg -share/apps/klettres/it/syllab/de.ogg -share/apps/klettres/it/syllab/di.ogg -share/apps/klettres/it/syllab/do.ogg -share/apps/klettres/it/syllab/du.ogg -share/apps/klettres/it/syllab/fa.ogg -share/apps/klettres/it/syllab/fe.ogg -share/apps/klettres/it/syllab/fi.ogg -share/apps/klettres/it/syllab/fo.ogg -share/apps/klettres/it/syllab/ga.ogg -share/apps/klettres/it/syllab/ge.ogg -share/apps/klettres/it/syllab/gi.ogg -share/apps/klettres/it/syllab/gli.ogg -share/apps/klettres/it/syllab/gna.ogg -share/apps/klettres/it/syllab/gne.ogg -share/apps/klettres/it/syllab/gni.ogg -share/apps/klettres/it/syllab/gno.ogg -share/apps/klettres/it/syllab/gnu.ogg -share/apps/klettres/it/syllab/go.ogg -share/apps/klettres/it/syllab/gu.ogg -share/apps/klettres/it/syllab/la.ogg -share/apps/klettres/it/syllab/le.ogg -share/apps/klettres/it/syllab/li.ogg -share/apps/klettres/it/syllab/lo.ogg -share/apps/klettres/it/syllab/lu.ogg -share/apps/klettres/it/syllab/ma.ogg -share/apps/klettres/it/syllab/me.ogg -share/apps/klettres/it/syllab/mi.ogg -share/apps/klettres/it/syllab/mo.ogg -share/apps/klettres/it/syllab/mu.ogg -share/apps/klettres/it/syllab/na.ogg -share/apps/klettres/it/syllab/ne.ogg -share/apps/klettres/it/syllab/ni.ogg -share/apps/klettres/it/syllab/no.ogg -share/apps/klettres/it/syllab/nu.ogg -share/apps/klettres/it/syllab/pa.ogg -share/apps/klettres/it/syllab/pe.ogg -share/apps/klettres/it/syllab/pi.ogg -share/apps/klettres/it/syllab/po.ogg -share/apps/klettres/it/syllab/pu.ogg -share/apps/klettres/it/syllab/ra.ogg -share/apps/klettres/it/syllab/re.ogg -share/apps/klettres/it/syllab/ri.ogg -share/apps/klettres/it/syllab/ro.ogg -share/apps/klettres/it/syllab/ru.ogg -share/apps/klettres/it/syllab/sa.ogg -share/apps/klettres/it/syllab/se.ogg -share/apps/klettres/it/syllab/si.ogg -share/apps/klettres/it/syllab/so.ogg -share/apps/klettres/it/syllab/su.ogg -share/apps/klettres/it/syllab/ta.ogg -share/apps/klettres/it/syllab/te.ogg -share/apps/klettres/it/syllab/ti.ogg -share/apps/klettres/it/syllab/to.ogg -share/apps/klettres/it/syllab/tu.ogg -share/apps/klettres/it/syllab/va.ogg -share/apps/klettres/it/syllab/ve.ogg -share/apps/klettres/it/syllab/vi.ogg -share/apps/klettres/it/syllab/vo.ogg -share/apps/klettres/it/syllab/vu.ogg -share/apps/klettres/it/syllab/za.ogg -share/apps/klettres/it/syllab/ze.ogg -share/apps/klettres/it/syllab/zi.ogg -share/apps/klettres/it/syllab/zo.ogg -share/apps/klettres/it/syllab/zu.ogg -share/apps/ktuberling/sounds/it/baffi.wav -share/apps/ktuberling/sounds/it/bocca.wav -share/apps/ktuberling/sounds/it/capelli.wav -share/apps/ktuberling/sounds/it/cappello.wav -share/apps/ktuberling/sounds/it/collana.wav -share/apps/ktuberling/sounds/it/corno.wav -share/apps/ktuberling/sounds/it/cravatta.wav -share/apps/ktuberling/sounds/it/cravattino.wav -share/apps/ktuberling/sounds/it/distintivo.wav -share/apps/ktuberling/sounds/it/naso.wav -share/apps/ktuberling/sounds/it/occhiali.wav -share/apps/ktuberling/sounds/it/occhialidasole.wav -share/apps/ktuberling/sounds/it/occhio.wav -share/apps/ktuberling/sounds/it/orecchino.wav -share/apps/ktuberling/sounds/it/orecchio.wav -share/apps/ktuberling/sounds/it/orologio.wav -share/apps/ktuberling/sounds/it/patatone.wav -share/apps/ktuberling/sounds/it/pinguino.wav -share/apps/ktuberling/sounds/it/sciarpina.wav -share/apps/ktuberling/sounds/it/sigaro.wav -share/apps/ktuberling/sounds/it/sopracciglio.wav -share/apps/kturtle/data/logokeywords.it.xml -share/apps/kturtle/examples/it/colorisfondo.logo -share/apps/kturtle/examples/it/fiore.logo -share/apps/kturtle/examples/it/freccia.logo -share/apps/kturtle/examples/it/nomicasuali.logo -share/apps/kturtle/examples/it/pub.logo -share/apps/kturtle/examples/it/quadrati.logo -share/apps/kturtle/examples/it/quadrato.logo -share/apps/kturtle/examples/it/riccioli.logo -share/apps/kturtle/examples/it/tabelline.logo -share/apps/kturtle/examples/it/triangoli.logo -share/apps/kturtle/examples/it/triangolo.logo -share/doc/HTML/it/KRegExpEditor/common -share/doc/HTML/it/KRegExpEditor/index.cache.bz2 -share/doc/HTML/it/KRegExpEditor/index.docbook -share/doc/HTML/it/amor/common -share/doc/HTML/it/amor/index.cache.bz2 -share/doc/HTML/it/amor/index.docbook -share/doc/HTML/it/amor/man-amor.6.docbook -share/doc/HTML/it/ark/common -share/doc/HTML/it/ark/index.cache.bz2 -share/doc/HTML/it/ark/index.docbook -share/doc/HTML/it/artsbuilder/digitalaudio.docbook -share/doc/HTML/it/artsbuilder/glossary.docbook -share/doc/HTML/it/artsbuilder/helping.docbook -share/doc/HTML/it/artsbuilder/midiintro.docbook -share/doc/HTML/it/artsbuilder/porting.docbook -share/doc/HTML/it/artsbuilder/references.docbook -share/doc/HTML/it/atlantik/common -share/doc/HTML/it/atlantik/index.cache.bz2 -share/doc/HTML/it/atlantik/index.docbook -share/doc/HTML/it/atlantik/man-atlantik.6.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/appheader.html -share/doc/HTML/it/common/artistic-license.html -share/doc/HTML/it/common/bottom-left.png -share/doc/HTML/it/common/bottom-middle.png -share/doc/HTML/it/common/bottom-right.png -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/docheadergears.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/doxygen.css -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/footer.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/grad.png -share/doc/HTML/it/common/header.html -share/doc/HTML/it/common/headerbg.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/kde-web.css -share/doc/HTML/it/common/kde_logo.png -share/doc/HTML/it/common/kde_logo_bg.png -share/doc/HTML/it/common/kmenu.png -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.png -share/doc/HTML/it/common/mainfooter.html -share/doc/HTML/it/common/mainheader.html -share/doc/HTML/it/common/qpl-license.html -share/doc/HTML/it/common/shadow.png -share/doc/HTML/it/common/top-left.png -share/doc/HTML/it/common/top-middle.png -share/doc/HTML/it/common/top-right-konqueror.png -share/doc/HTML/it/common/web-docbottom.png -share/doc/HTML/it/common/web-doctop.png -share/doc/HTML/it/common/x11-license.html -share/doc/HTML/it/common/xml.dcl -share/doc/HTML/it/juk/common -share/doc/HTML/it/juk/index.cache.bz2 -share/doc/HTML/it/juk/index.docbook -share/doc/HTML/it/kaboodle/common -share/doc/HTML/it/kaboodle/index.cache.bz2 -share/doc/HTML/it/kaboodle/index.docbook -share/doc/HTML/it/kaddressbook/common -share/doc/HTML/it/kaddressbook/index.cache.bz2 -share/doc/HTML/it/kaddressbook/index.docbook -share/doc/HTML/it/kalzium/common -share/doc/HTML/it/kalzium/index.cache.bz2 -share/doc/HTML/it/kalzium/index.docbook -share/doc/HTML/it/kalzium/man-kalzium.1.docbook -share/doc/HTML/it/kamera/common -share/doc/HTML/it/kamera/index.cache.bz2 -share/doc/HTML/it/kamera/index.docbook -share/doc/HTML/it/kandy/common -share/doc/HTML/it/kandy/index.cache.bz2 -share/doc/HTML/it/kandy/index.docbook -share/doc/HTML/it/kasteroids/common -share/doc/HTML/it/kasteroids/index.cache.bz2 -share/doc/HTML/it/kasteroids/index.docbook -share/doc/HTML/it/kate-plugins/common -share/doc/HTML/it/kate-plugins/filetemplates.docbook -share/doc/HTML/it/kate-plugins/htmltools.docbook -share/doc/HTML/it/kate-plugins/index.cache.bz2 -share/doc/HTML/it/kate-plugins/index.docbook -share/doc/HTML/it/kate-plugins/insertcommand.docbook -share/doc/HTML/it/kate-plugins/openheader.docbook -share/doc/HTML/it/kate-plugins/textfilter.docbook -share/doc/HTML/it/kate-plugins/xmlcheck.docbook -share/doc/HTML/it/kate-plugins/xmltools.docbook -share/doc/HTML/it/kate/advanced.docbook -share/doc/HTML/it/kate/configuring.docbook -share/doc/HTML/it/kate/fundamentals.docbook -share/doc/HTML/it/kate/mdi.docbook -share/doc/HTML/it/kate/plugins.docbook -share/doc/HTML/it/katomic/common -share/doc/HTML/it/katomic/index.cache.bz2 -share/doc/HTML/it/katomic/index.docbook -share/doc/HTML/it/kbabel/catman.docbook -share/doc/HTML/it/kbabel/common -share/doc/HTML/it/kbabel/dictionaries.docbook -share/doc/HTML/it/kbabel/faq.docbook -share/doc/HTML/it/kbabel/glossary.docbook -share/doc/HTML/it/kbabel/index.cache.bz2 -share/doc/HTML/it/kbabel/index.docbook -share/doc/HTML/it/kbabel/kbabeldict.docbook -share/doc/HTML/it/kbabel/man-catalogmanager.1.docbook -share/doc/HTML/it/kbabel/menu.docbook -share/doc/HTML/it/kbabel/preferences.docbook -share/doc/HTML/it/kbabel/using.docbook -share/doc/HTML/it/kbackgammon/common -share/doc/HTML/it/kbackgammon/index.cache.bz2 -share/doc/HTML/it/kbackgammon/index.docbook -share/doc/HTML/it/kbattleship/common -share/doc/HTML/it/kbattleship/index.cache.bz2 -share/doc/HTML/it/kbattleship/index.docbook -share/doc/HTML/it/kblackbox/common -share/doc/HTML/it/kblackbox/index.cache.bz2 -share/doc/HTML/it/kblackbox/index.docbook -share/doc/HTML/it/kbounce/common -share/doc/HTML/it/kbounce/index.cache.bz2 -share/doc/HTML/it/kbounce/index.docbook -share/doc/HTML/it/kbruch/common -share/doc/HTML/it/kbruch/index.cache.bz2 -share/doc/HTML/it/kbruch/index.docbook -share/doc/HTML/it/kbugbuster/common -share/doc/HTML/it/kbugbuster/index.cache.bz2 -share/doc/HTML/it/kbugbuster/index.docbook -share/doc/HTML/it/kcalc/common -share/doc/HTML/it/kcalc/index.cache.bz2 -share/doc/HTML/it/kcalc/index.docbook -share/doc/HTML/it/kcharselect/common -share/doc/HTML/it/kcharselect/index.cache.bz2 -share/doc/HTML/it/kcharselect/index.docbook -share/doc/HTML/it/kcoloredit/common -share/doc/HTML/it/kcoloredit/index.cache.bz2 -share/doc/HTML/it/kcoloredit/index.docbook -share/doc/HTML/it/kcontrol/arts/midi.docbook -share/doc/HTML/it/kcontrol/bell/common -share/doc/HTML/it/kcontrol/bell/index.cache.bz2 -share/doc/HTML/it/kcontrol/bell/index.docbook -share/doc/HTML/it/kcontrol/cache/common -share/doc/HTML/it/kcontrol/cache/index.cache.bz2 -share/doc/HTML/it/kcontrol/cache/index.docbook -share/doc/HTML/it/kcontrol/clock/common -share/doc/HTML/it/kcontrol/clock/index.cache.bz2 -share/doc/HTML/it/kcontrol/clock/index.docbook -share/doc/HTML/it/kcontrol/colors/common -share/doc/HTML/it/kcontrol/colors/index.cache.bz2 -share/doc/HTML/it/kcontrol/colors/index.docbook -share/doc/HTML/it/kcontrol/common -share/doc/HTML/it/kcontrol/cookies/common -share/doc/HTML/it/kcontrol/cookies/index.cache.bz2 -share/doc/HTML/it/kcontrol/cookies/index.docbook -share/doc/HTML/it/kcontrol/crypto/common -share/doc/HTML/it/kcontrol/crypto/index.cache.bz2 -share/doc/HTML/it/kcontrol/crypto/index.docbook -share/doc/HTML/it/kcontrol/desktop/common -share/doc/HTML/it/kcontrol/desktop/index.cache.bz2 -share/doc/HTML/it/kcontrol/desktop/index.docbook -share/doc/HTML/it/kcontrol/desktopbehavior/common -share/doc/HTML/it/kcontrol/desktopbehavior/index.cache.bz2 -share/doc/HTML/it/kcontrol/desktopbehavior/index.docbook -share/doc/HTML/it/kcontrol/ebrowsing/common -share/doc/HTML/it/kcontrol/ebrowsing/index.cache.bz2 -share/doc/HTML/it/kcontrol/ebrowsing/index.docbook -share/doc/HTML/it/kcontrol/email/common -share/doc/HTML/it/kcontrol/email/index.cache.bz2 -share/doc/HTML/it/kcontrol/email/index.docbook -share/doc/HTML/it/kcontrol/energy/common -share/doc/HTML/it/kcontrol/energy/index.cache.bz2 -share/doc/HTML/it/kcontrol/energy/index.docbook -share/doc/HTML/it/kcontrol/filemanager/common -share/doc/HTML/it/kcontrol/filemanager/index.cache.bz2 -share/doc/HTML/it/kcontrol/filemanager/index.docbook -share/doc/HTML/it/kcontrol/fonts/common -share/doc/HTML/it/kcontrol/fonts/index.cache.bz2 -share/doc/HTML/it/kcontrol/fonts/index.docbook -share/doc/HTML/it/kcontrol/icons/common -share/doc/HTML/it/kcontrol/icons/index.cache.bz2 -share/doc/HTML/it/kcontrol/icons/index.docbook -share/doc/HTML/it/kcontrol/index.cache.bz2 -share/doc/HTML/it/kcontrol/index.docbook -share/doc/HTML/it/kcontrol/kalarmd/common -share/doc/HTML/it/kcontrol/kalarmd/index.cache.bz2 -share/doc/HTML/it/kcontrol/kalarmd/index.docbook -share/doc/HTML/it/kcontrol/kcmcss/common -share/doc/HTML/it/kcontrol/kcmcss/index.cache.bz2 -share/doc/HTML/it/kcontrol/kcmcss/index.docbook -share/doc/HTML/it/kcontrol/kcmfontinst/common -share/doc/HTML/it/kcontrol/kcmfontinst/index.cache.bz2 -share/doc/HTML/it/kcontrol/kcmfontinst/index.docbook -share/doc/HTML/it/kcontrol/kcmktalkd/common -share/doc/HTML/it/kcontrol/kcmktalkd/index.cache.bz2 -share/doc/HTML/it/kcontrol/kcmktalkd/index.docbook -share/doc/HTML/it/kcontrol/kcmlowbatcrit/common -share/doc/HTML/it/kcontrol/kcmlowbatcrit/index.cache.bz2 -share/doc/HTML/it/kcontrol/kcmlowbatcrit/index.docbook -share/doc/HTML/it/kcontrol/kcmlowbatwarn/common -share/doc/HTML/it/kcontrol/kcmlowbatwarn/index.cache.bz2 -share/doc/HTML/it/kcontrol/kcmlowbatwarn/index.docbook -share/doc/HTML/it/kcontrol/kcmnotify/common -share/doc/HTML/it/kcontrol/kcmnotify/index.cache.bz2 -share/doc/HTML/it/kcontrol/kcmnotify/index.docbook -share/doc/HTML/it/kcontrol/kcmsmserver/common -share/doc/HTML/it/kcontrol/kcmsmserver/index.cache.bz2 -share/doc/HTML/it/kcontrol/kcmsmserver/index.docbook -share/doc/HTML/it/kcontrol/kdm/common -share/doc/HTML/it/kcontrol/kdm/index.cache.bz2 -share/doc/HTML/it/kcontrol/kdm/index.docbook -share/doc/HTML/it/kcontrol/keyboard/common -share/doc/HTML/it/kcontrol/keyboard/index.cache.bz2 -share/doc/HTML/it/kcontrol/keyboard/index.docbook -share/doc/HTML/it/kcontrol/keys/common -share/doc/HTML/it/kcontrol/keys/index.cache.bz2 -share/doc/HTML/it/kcontrol/keys/index.docbook -share/doc/HTML/it/kcontrol/khtml/common -share/doc/HTML/it/kcontrol/khtml/index.cache.bz2 -share/doc/HTML/it/kcontrol/khtml/index.docbook -share/doc/HTML/it/kcontrol/khtml/nsplugin.docbook -share/doc/HTML/it/kcontrol/kmixcfg/common -share/doc/HTML/it/kcontrol/kmixcfg/index.cache.bz2 -share/doc/HTML/it/kcontrol/kmixcfg/index.docbook -share/doc/HTML/it/kcontrol/kwindecoration/common -share/doc/HTML/it/kcontrol/kwindecoration/index.cache.bz2 -share/doc/HTML/it/kcontrol/kwindecoration/index.docbook -share/doc/HTML/it/kcontrol/lanbrowser/common -share/doc/HTML/it/kcontrol/lanbrowser/index.cache.bz2 -share/doc/HTML/it/kcontrol/lanbrowser/index.docbook -share/doc/HTML/it/kcontrol/laptop/common -share/doc/HTML/it/kcontrol/laptop/index.cache.bz2 -share/doc/HTML/it/kcontrol/laptop/index.docbook -share/doc/HTML/it/kcontrol/mouse/common -share/doc/HTML/it/kcontrol/mouse/index.cache.bz2 -share/doc/HTML/it/kcontrol/mouse/index.docbook -share/doc/HTML/it/kcontrol/netpref/common -share/doc/HTML/it/kcontrol/netpref/index.cache.bz2 -share/doc/HTML/it/kcontrol/netpref/index.docbook -share/doc/HTML/it/kcontrol/panelappearance/common -share/doc/HTML/it/kcontrol/panelappearance/index.cache.bz2 -share/doc/HTML/it/kcontrol/panelappearance/index.docbook -share/doc/HTML/it/kcontrol/passwords/common -share/doc/HTML/it/kcontrol/passwords/index.cache.bz2 -share/doc/HTML/it/kcontrol/passwords/index.docbook -share/doc/HTML/it/kcontrol/powerctrl/common -share/doc/HTML/it/kcontrol/powerctrl/index.cache.bz2 -share/doc/HTML/it/kcontrol/powerctrl/index.docbook -share/doc/HTML/it/kcontrol/proxy/common -share/doc/HTML/it/kcontrol/proxy/index.cache.bz2 -share/doc/HTML/it/kcontrol/proxy/index.docbook -share/doc/HTML/it/kcontrol/proxy/socks.docbook -share/doc/HTML/it/kcontrol/smb/common -share/doc/HTML/it/kcontrol/smb/index.cache.bz2 -share/doc/HTML/it/kcontrol/smb/index.docbook -share/doc/HTML/it/kcontrol/spellchecking/common -share/doc/HTML/it/kcontrol/spellchecking/index.cache.bz2 -share/doc/HTML/it/kcontrol/spellchecking/index.docbook -share/doc/HTML/it/kcontrol/useragent/common -share/doc/HTML/it/kcontrol/useragent/index.cache.bz2 -share/doc/HTML/it/kcontrol/useragent/index.docbook -share/doc/HTML/it/kcontrol/windowmanagement/common -share/doc/HTML/it/kcontrol/windowmanagement/index.cache.bz2 -share/doc/HTML/it/kcontrol/windowmanagement/index.docbook -share/doc/HTML/it/kcron/common -share/doc/HTML/it/kcron/index.cache.bz2 -share/doc/HTML/it/kcron/index.docbook -share/doc/HTML/it/kdat/common -share/doc/HTML/it/kdat/index.cache.bz2 -share/doc/HTML/it/kdat/index.docbook -share/doc/HTML/it/kde_app_devel/common -share/doc/HTML/it/kde_app_devel/index.cache.bz2 -share/doc/HTML/it/kde_app_devel/index.docbook -share/doc/HTML/it/kdearch/common -share/doc/HTML/it/kdearch/index.cache.bz2 -share/doc/HTML/it/kdearch/index.docbook -share/doc/HTML/it/kdebugdialog/common -share/doc/HTML/it/kdebugdialog/index.cache.bz2 -share/doc/HTML/it/kdebugdialog/index.docbook -share/doc/HTML/it/kdelibs/man-artsmessage.1.docbook -share/doc/HTML/it/kdelibs/man-checkXML.1.docbook -share/doc/HTML/it/kdelibs/man-dcop.1.docbook -share/doc/HTML/it/kdelibs/man-kdeoptions.7.docbook -share/doc/HTML/it/kdelibs/man-qtoptions.7.docbook -share/doc/HTML/it/kdelirc/irkick/common -share/doc/HTML/it/kdelirc/irkick/index.cache.bz2 -share/doc/HTML/it/kdelirc/irkick/index.docbook -share/doc/HTML/it/kdelirc/kcmlirc/common -share/doc/HTML/it/kdelirc/kcmlirc/index.cache.bz2 -share/doc/HTML/it/kdelirc/kcmlirc/index.docbook -share/doc/HTML/it/kdeprint/extensions.docbook -share/doc/HTML/it/kdeprint/external-command.docbook -share/doc/HTML/it/kdeprint/getting-started.docbook -share/doc/HTML/it/kdeprint/lpd.docbook -share/doc/HTML/it/kdeprint/lpr-bsd.docbook -share/doc/HTML/it/kdeprint/lprng.docbook -share/doc/HTML/it/kdeprint/rlpr.docbook -share/doc/HTML/it/kdesu/common -share/doc/HTML/it/kdesu/index.cache.bz2 -share/doc/HTML/it/kdesu/index.docbook -share/doc/HTML/it/kdevelop/SF-general.png -share/doc/HTML/it/kdevelop/SF-indent.png -share/doc/HTML/it/kdevelop/SF-other.png -share/doc/HTML/it/kdevelop/app-files.docbook -share/doc/HTML/it/kdevelop/app-menu.docbook -share/doc/HTML/it/kdevelop/applicationwizard.docbook -share/doc/HTML/it/kdevelop/automake-file-popup.png -share/doc/HTML/it/kdevelop/automake-subproject-popup.png -share/doc/HTML/it/kdevelop/automake-target-popup.png -share/doc/HTML/it/kdevelop/automakemanager.png -share/doc/HTML/it/kdevelop/classview.png -share/doc/HTML/it/kdevelop/common -share/doc/HTML/it/kdevelop/configure-adddialog-baselibs.png -share/doc/HTML/it/kdevelop/configure-adddialog-qt.png -share/doc/HTML/it/kdevelop/configure-adddialog.png -share/doc/HTML/it/kdevelop/configure-doctree-DevHelp.png -share/doc/HTML/it/kdevelop/configure-doctree-TOC.png -share/doc/HTML/it/kdevelop/configure-doctree-bookmark.png -share/doc/HTML/it/kdevelop/configure-doctree-general.png -share/doc/HTML/it/kdevelop/configure-doctree-textsearch.png -share/doc/HTML/it/kdevelop/configure-docu-chm.png -share/doc/HTML/it/kdevelop/configure-docu-custom.png -share/doc/HTML/it/kdevelop/configure-docu-devhelp.png -share/doc/HTML/it/kdevelop/configure-docu-dox.png -share/doc/HTML/it/kdevelop/configure-docu-edit.png -share/doc/HTML/it/kdevelop/configure-docu-general.png -share/doc/HTML/it/kdevelop/configure-docu-toc.png -share/doc/HTML/it/kdevelop/configure-editor.png -share/doc/HTML/it/kdevelop/configure-file-selector.png -share/doc/HTML/it/kdevelop/configure-general.png -share/doc/HTML/it/kdevelop/configure-project-doc.png -share/doc/HTML/it/kdevelop/configure-select.png -share/doc/HTML/it/kdevelop/configure-snippets.png -share/doc/HTML/it/kdevelop/create-new-project-cvs.png -share/doc/HTML/it/kdevelop/createnewproject.png -share/doc/HTML/it/kdevelop/doctree-add-bookmark.png -share/doc/HTML/it/kdevelop/doctree-reduced.png -share/doc/HTML/it/kdevelop/doctree.png -share/doc/HTML/it/kdevelop/doctreeview.png -share/doc/HTML/it/kdevelop/documents-contents.png -share/doc/HTML/it/kdevelop/edit-doctree-TOC-entry.png -share/doc/HTML/it/kdevelop/empty-ide.png -share/doc/HTML/it/kdevelop/file-selector.png -share/doc/HTML/it/kdevelop/filetree.png -share/doc/HTML/it/kdevelop/folded-tabs.png -share/doc/HTML/it/kdevelop/getting-started.docbook -share/doc/HTML/it/kdevelop/importdirectory.png -share/doc/HTML/it/kdevelop/index.cache.bz2 -share/doc/HTML/it/kdevelop/index.docbook -share/doc/HTML/it/kdevelop/kdcop_browsing.png -share/doc/HTML/it/kdevelop/kdevelop-ideal-mode-0.png -share/doc/HTML/it/kdevelop/kdevelop-ideal-mode.png -share/doc/HTML/it/kdevelop/kdevelop-install.docbook -share/doc/HTML/it/kdevelop/kdevelop-mdi-mode.png -share/doc/HTML/it/kdevelop/kdevelop-scripting.docbook -share/doc/HTML/it/kdevelop/kdevelop-survey.docbook -share/doc/HTML/it/kdevelop/kdevelop-tabbed-mode.png -share/doc/HTML/it/kdevelop/kdevelop-toplevel-mode.png -share/doc/HTML/it/kdevelop/open-project.png -share/doc/HTML/it/kdevelop/open-recent-project.png -share/doc/HTML/it/kdevelop/project-advanced.docbook -share/doc/HTML/it/kdevelop/project-management.docbook -share/doc/HTML/it/kdevelop/script_location.png -share/doc/HTML/it/kdevelop/select-user-interface-0.png -share/doc/HTML/it/kdevelop/select-user-interface.png -share/doc/HTML/it/kdevelop/setup.docbook -share/doc/HTML/it/kdevelop/unixdev.docbook -share/doc/HTML/it/kdf/common -share/doc/HTML/it/kdf/index.cache.bz2 -share/doc/HTML/it/kdf/index.docbook -share/doc/HTML/it/kdvi/common -share/doc/HTML/it/kdvi/index.cache.bz2 -share/doc/HTML/it/kdvi/index.docbook -share/doc/HTML/it/kedit/common -share/doc/HTML/it/kedit/index.cache.bz2 -share/doc/HTML/it/kedit/index.docbook -share/doc/HTML/it/keduca/common -share/doc/HTML/it/keduca/index.cache.bz2 -share/doc/HTML/it/keduca/index.docbook -share/doc/HTML/it/keduca/screenshot.png -share/doc/HTML/it/kenolaba/common -share/doc/HTML/it/kenolaba/index.cache.bz2 -share/doc/HTML/it/kenolaba/index.docbook -share/doc/HTML/it/kenolaba/man-kenolaba.6.docbook -share/doc/HTML/it/kfilereplace/common -share/doc/HTML/it/kfilereplace/index.cache.bz2 -share/doc/HTML/it/kfilereplace/index.docbook -share/doc/HTML/it/kfind/common -share/doc/HTML/it/kfind/index.cache.bz2 -share/doc/HTML/it/kfind/index.docbook -share/doc/HTML/it/kfloppy/common -share/doc/HTML/it/kfloppy/index.cache.bz2 -share/doc/HTML/it/kfloppy/index.docbook -share/doc/HTML/it/kfouleggs/common -share/doc/HTML/it/kfouleggs/index.cache.bz2 -share/doc/HTML/it/kfouleggs/index.docbook -share/doc/HTML/it/kgamma/common -share/doc/HTML/it/kgamma/index.cache.bz2 -share/doc/HTML/it/kgamma/index.docbook -share/doc/HTML/it/kget/common -share/doc/HTML/it/kget/index.cache.bz2 -share/doc/HTML/it/kget/index.docbook -share/doc/HTML/it/kghostview/common -share/doc/HTML/it/kghostview/index.cache.bz2 -share/doc/HTML/it/kghostview/index.docbook -share/doc/HTML/it/kgoldrunner/common -share/doc/HTML/it/kgoldrunner/index.cache.bz2 -share/doc/HTML/it/kgoldrunner/index.docbook -share/doc/HTML/it/kgpg/common -share/doc/HTML/it/kgpg/editor.png -share/doc/HTML/it/kgpg/index.cache.bz2 -share/doc/HTML/it/kgpg/index.docbook -share/doc/HTML/it/kgpg/keygen.png -share/doc/HTML/it/kgpg/keymanage.png -share/doc/HTML/it/kgpg/keys.png -share/doc/HTML/it/kgpg/kicker.png -share/doc/HTML/it/kgpg/options.png -share/doc/HTML/it/khangman/common -share/doc/HTML/it/khangman/index.cache.bz2 -share/doc/HTML/it/khangman/index.docbook -share/doc/HTML/it/khelpcenter/common -share/doc/HTML/it/khelpcenter/contact.docbook -share/doc/HTML/it/khelpcenter/faq/about.docbook -share/doc/HTML/it/khelpcenter/faq/common -share/doc/HTML/it/khelpcenter/faq/configkde.docbook -share/doc/HTML/it/khelpcenter/faq/contrib.docbook -share/doc/HTML/it/khelpcenter/faq/desktop.docbook -share/doc/HTML/it/khelpcenter/faq/filemng.docbook -share/doc/HTML/it/khelpcenter/faq/getkde.docbook -share/doc/HTML/it/khelpcenter/faq/index.cache.bz2 -share/doc/HTML/it/khelpcenter/faq/index.docbook -share/doc/HTML/it/khelpcenter/faq/install.docbook -share/doc/HTML/it/khelpcenter/faq/intro.docbook -share/doc/HTML/it/khelpcenter/faq/kdeapps.docbook -share/doc/HTML/it/khelpcenter/faq/misc.docbook -share/doc/HTML/it/khelpcenter/faq/moreinfo.docbook -share/doc/HTML/it/khelpcenter/faq/nonkdeapps.docbook -share/doc/HTML/it/khelpcenter/faq/notrelated.docbook -share/doc/HTML/it/khelpcenter/faq/panel.docbook -share/doc/HTML/it/khelpcenter/faq/questions.docbook -share/doc/HTML/it/khelpcenter/faq/sound.docbook -share/doc/HTML/it/khelpcenter/faq/tips.docbook -share/doc/HTML/it/khelpcenter/faq/webbrowse.docbook -share/doc/HTML/it/khelpcenter/faq/winmng.docbook -share/doc/HTML/it/khelpcenter/glossary/common -share/doc/HTML/it/khelpcenter/glossary/index.cache.bz2 -share/doc/HTML/it/khelpcenter/glossary/index.docbook -share/doc/HTML/it/khelpcenter/glossary/kdeprintingglossary.docbook -share/doc/HTML/it/khelpcenter/help.docbook -share/doc/HTML/it/khelpcenter/index.cache.bz2 -share/doc/HTML/it/khelpcenter/index.docbook -share/doc/HTML/it/khelpcenter/links.docbook -share/doc/HTML/it/khelpcenter/quickstart/common -share/doc/HTML/it/khelpcenter/quickstart/index.cache.bz2 -share/doc/HTML/it/khelpcenter/quickstart/index.docbook -share/doc/HTML/it/khelpcenter/support.docbook -share/doc/HTML/it/khelpcenter/userguide/about-desktop.docbook -share/doc/HTML/it/khelpcenter/userguide/base-kde-applications.docbook -share/doc/HTML/it/khelpcenter/userguide/burning-cds.docbook -share/doc/HTML/it/khelpcenter/userguide/creating-graphics.docbook -share/doc/HTML/it/khelpcenter/userguide/first-impressions.docbook -share/doc/HTML/it/khelpcenter/userguide/font-installation.docbook -share/doc/HTML/it/khelpcenter/userguide/getting-started.docbook -share/doc/HTML/it/khelpcenter/userguide/history.docbook -share/doc/HTML/it/khelpcenter/userguide/installation.docbook -share/doc/HTML/it/khelpcenter/userguide/intro.docbook -share/doc/HTML/it/khelpcenter/userguide/kde-as-root.docbook -share/doc/HTML/it/khelpcenter/userguide/kdeadmin-apps.docbook -share/doc/HTML/it/khelpcenter/userguide/kdebase-apps.docbook -share/doc/HTML/it/khelpcenter/userguide/kdeedu-apps.docbook -share/doc/HTML/it/khelpcenter/userguide/kdegames-apps.docbook -share/doc/HTML/it/khelpcenter/userguide/kdegraphics-apps.docbook -share/doc/HTML/it/khelpcenter/userguide/kdemultimedia-apps.docbook -share/doc/HTML/it/khelpcenter/userguide/kdenetwork-apps.docbook -share/doc/HTML/it/khelpcenter/userguide/kdepim-apps.docbook -share/doc/HTML/it/khelpcenter/userguide/kdetoys-apps.docbook -share/doc/HTML/it/khelpcenter/userguide/kdeutils-apps.docbook -share/doc/HTML/it/khelpcenter/userguide/koffice-apps.docbook -share/doc/HTML/it/khelpcenter/userguide/migrator-dictionary.docbook -share/doc/HTML/it/khelpcenter/userguide/more-help.docbook -share/doc/HTML/it/khelpcenter/userguide/pdf-files.docbook -share/doc/HTML/it/khelpcenter/userguide/playing-audiocds.docbook -share/doc/HTML/it/khelpcenter/userguide/playing-movies.docbook -share/doc/HTML/it/khelpcenter/userguide/programs-controlling.docbook -share/doc/HTML/it/khelpcenter/userguide/removable-disks.docbook -share/doc/HTML/it/khelpcenter/userguide/screen-captures.docbook -share/doc/HTML/it/khelpcenter/userguide/shared-sessions.docbook -share/doc/HTML/it/khelpcenter/userguide/shortcuts.docbook -share/doc/HTML/it/khelpcenter/userguide/staff.docbook -share/doc/HTML/it/khelpcenter/userguide/switching-sessions.docbook -share/doc/HTML/it/khelpcenter/userguide/ug-faq.docbook -share/doc/HTML/it/khelpcenter/userguide/where-next.docbook -share/doc/HTML/it/khelpcenter/userguide/your-kde-account.docbook -share/doc/HTML/it/khelpcenter/visualdict/common -share/doc/HTML/it/khelpcenter/visualdict/index.cache.bz2 -share/doc/HTML/it/khelpcenter/visualdict/index.docbook -share/doc/HTML/it/khelpcenter/welcome.docbook -share/doc/HTML/it/khelpcenter/whatiskde.docbook -share/doc/HTML/it/kicker-applets/common -share/doc/HTML/it/kicker-applets/index.cache.bz2 -share/doc/HTML/it/kicker-applets/index.docbook -share/doc/HTML/it/kicker-applets/kolourpicker.docbook -share/doc/HTML/it/kicker-applets/ktimemon.docbook -share/doc/HTML/it/kicker/common -share/doc/HTML/it/kicker/index.cache.bz2 -share/doc/HTML/it/kicker/index.docbook -share/doc/HTML/it/kiconedit/common -share/doc/HTML/it/kiconedit/index.cache.bz2 -share/doc/HTML/it/kiconedit/index.docbook -share/doc/HTML/it/kig/common -share/doc/HTML/it/kig/index.cache.bz2 -share/doc/HTML/it/kig/index.docbook -share/doc/HTML/it/kinfocenter/blockdevices/common -share/doc/HTML/it/kinfocenter/blockdevices/index.cache.bz2 -share/doc/HTML/it/kinfocenter/blockdevices/index.docbook -share/doc/HTML/it/kinfocenter/common -share/doc/HTML/it/kinfocenter/devices/common -share/doc/HTML/it/kinfocenter/devices/index.cache.bz2 -share/doc/HTML/it/kinfocenter/devices/index.docbook -share/doc/HTML/it/kinfocenter/dma/common -share/doc/HTML/it/kinfocenter/dma/index.cache.bz2 -share/doc/HTML/it/kinfocenter/dma/index.docbook -share/doc/HTML/it/kinfocenter/index.cache.bz2 -share/doc/HTML/it/kinfocenter/index.docbook -share/doc/HTML/it/kinfocenter/interrupts/common -share/doc/HTML/it/kinfocenter/interrupts/index.cache.bz2 -share/doc/HTML/it/kinfocenter/interrupts/index.docbook -share/doc/HTML/it/kinfocenter/ioports/common -share/doc/HTML/it/kinfocenter/ioports/index.cache.bz2 -share/doc/HTML/it/kinfocenter/ioports/index.docbook -share/doc/HTML/it/kinfocenter/memory/common -share/doc/HTML/it/kinfocenter/memory/index.cache.bz2 -share/doc/HTML/it/kinfocenter/memory/index.docbook -share/doc/HTML/it/kinfocenter/nics/common -share/doc/HTML/it/kinfocenter/nics/index.cache.bz2 -share/doc/HTML/it/kinfocenter/nics/index.docbook -share/doc/HTML/it/kinfocenter/opengl/common -share/doc/HTML/it/kinfocenter/opengl/index.cache.bz2 -share/doc/HTML/it/kinfocenter/opengl/index.docbook -share/doc/HTML/it/kinfocenter/partitions/common -share/doc/HTML/it/kinfocenter/partitions/index.cache.bz2 -share/doc/HTML/it/kinfocenter/partitions/index.docbook -share/doc/HTML/it/kinfocenter/pci/common -share/doc/HTML/it/kinfocenter/pci/index.cache.bz2 -share/doc/HTML/it/kinfocenter/pci/index.docbook -share/doc/HTML/it/kinfocenter/pcmcia/common -share/doc/HTML/it/kinfocenter/pcmcia/index.cache.bz2 -share/doc/HTML/it/kinfocenter/pcmcia/index.docbook -share/doc/HTML/it/kinfocenter/processor/common -share/doc/HTML/it/kinfocenter/processor/index.cache.bz2 -share/doc/HTML/it/kinfocenter/processor/index.docbook -share/doc/HTML/it/kinfocenter/protocols/common -share/doc/HTML/it/kinfocenter/protocols/index.cache.bz2 -share/doc/HTML/it/kinfocenter/protocols/index.docbook -share/doc/HTML/it/kinfocenter/samba/common -share/doc/HTML/it/kinfocenter/samba/index.cache.bz2 -share/doc/HTML/it/kinfocenter/samba/index.docbook -share/doc/HTML/it/kinfocenter/scsi/common -share/doc/HTML/it/kinfocenter/scsi/index.cache.bz2 -share/doc/HTML/it/kinfocenter/scsi/index.docbook -share/doc/HTML/it/kinfocenter/sound/common -share/doc/HTML/it/kinfocenter/sound/index.cache.bz2 -share/doc/HTML/it/kinfocenter/sound/index.docbook -share/doc/HTML/it/kinfocenter/usb/common -share/doc/HTML/it/kinfocenter/usb/index.cache.bz2 -share/doc/HTML/it/kinfocenter/usb/index.docbook -share/doc/HTML/it/kinfocenter/xserver/common -share/doc/HTML/it/kinfocenter/xserver/index.cache.bz2 -share/doc/HTML/it/kinfocenter/xserver/index.docbook -share/doc/HTML/it/kio_audiocd/audiocd.docbook -share/doc/HTML/it/kioslave/audiocd.docbook -share/doc/HTML/it/kioslave/bzip.docbook -share/doc/HTML/it/kioslave/bzip2.docbook -share/doc/HTML/it/kioslave/cgi.docbook -share/doc/HTML/it/kioslave/common -share/doc/HTML/it/kioslave/data.docbook -share/doc/HTML/it/kioslave/file.docbook -share/doc/HTML/it/kioslave/finger.docbook -share/doc/HTML/it/kioslave/fish.docbook -share/doc/HTML/it/kioslave/floppy.docbook -share/doc/HTML/it/kioslave/ftp.docbook -share/doc/HTML/it/kioslave/gopher.docbook -share/doc/HTML/it/kioslave/gzip.docbook -share/doc/HTML/it/kioslave/help.docbook -share/doc/HTML/it/kioslave/http.docbook -share/doc/HTML/it/kioslave/https.docbook -share/doc/HTML/it/kioslave/imap.docbook -share/doc/HTML/it/kioslave/imaps.docbook -share/doc/HTML/it/kioslave/index.cache.bz2 -share/doc/HTML/it/kioslave/index.docbook -share/doc/HTML/it/kioslave/info.docbook -share/doc/HTML/it/kioslave/lan.docbook -share/doc/HTML/it/kioslave/ldap.docbook -share/doc/HTML/it/kioslave/mac.docbook -share/doc/HTML/it/kioslave/mailto.docbook -share/doc/HTML/it/kioslave/man.docbook -share/doc/HTML/it/kioslave/mrml.docbook -share/doc/HTML/it/kioslave/news.docbook -share/doc/HTML/it/kioslave/nfs.docbook -share/doc/HTML/it/kioslave/nntp.docbook -share/doc/HTML/it/kioslave/pop3.docbook -share/doc/HTML/it/kioslave/pop3s.docbook -share/doc/HTML/it/kioslave/print.docbook -share/doc/HTML/it/kioslave/rlan.docbook -share/doc/HTML/it/kioslave/rlogin.docbook -share/doc/HTML/it/kioslave/sftp.docbook -share/doc/HTML/it/kioslave/smb.docbook -share/doc/HTML/it/kioslave/smtp.docbook -share/doc/HTML/it/kioslave/tar.docbook -share/doc/HTML/it/kioslave/telnet.docbook -share/doc/HTML/it/kioslave/thumbnail.docbook -share/doc/HTML/it/kioslave/webdav.docbook -share/doc/HTML/it/kioslave/webdavs.docbook -share/doc/HTML/it/kiten/common -share/doc/HTML/it/kiten/index.cache.bz2 -share/doc/HTML/it/kiten/index.docbook -share/doc/HTML/it/kjots/common -share/doc/HTML/it/kjots/index.cache.bz2 -share/doc/HTML/it/kjots/index.docbook -share/doc/HTML/it/kjumpingcube/common -share/doc/HTML/it/kjumpingcube/index.cache.bz2 -share/doc/HTML/it/kjumpingcube/index.docbook -share/doc/HTML/it/klatin/adjectives.docbook -share/doc/HTML/it/klatin/common -share/doc/HTML/it/klatin/index.cache.bz2 -share/doc/HTML/it/klatin/index.docbook -share/doc/HTML/it/klatin/nouns.docbook -share/doc/HTML/it/klatin/numbers.docbook -share/doc/HTML/it/klatin/pronouns.docbook -share/doc/HTML/it/klatin/verbs.docbook -share/doc/HTML/it/kleopatra/common -share/doc/HTML/it/kleopatra/index.cache.bz2 -share/doc/HTML/it/kleopatra/index.docbook -share/doc/HTML/it/klettres/common -share/doc/HTML/it/klettres/index.cache.bz2 -share/doc/HTML/it/klettres/index.docbook -share/doc/HTML/it/klettres/klettres1.png -share/doc/HTML/it/klettres/klettres3.png -share/doc/HTML/it/klickety/common -share/doc/HTML/it/klickety/index.cache.bz2 -share/doc/HTML/it/klickety/index.docbook -share/doc/HTML/it/klines/common -share/doc/HTML/it/klines/index.cache.bz2 -share/doc/HTML/it/klines/index.docbook -share/doc/HTML/it/klinkstatus/common -share/doc/HTML/it/klinkstatus/index.cache.bz2 -share/doc/HTML/it/klinkstatus/index.docbook -share/doc/HTML/it/klipper/common -share/doc/HTML/it/klipper/index.cache.bz2 -share/doc/HTML/it/klipper/index.docbook -share/doc/HTML/it/kmag/common -share/doc/HTML/it/kmag/index.cache.bz2 -share/doc/HTML/it/kmag/index.docbook -share/doc/HTML/it/kmahjongg/common -share/doc/HTML/it/kmahjongg/index.cache.bz2 -share/doc/HTML/it/kmahjongg/index.docbook -share/doc/HTML/it/kmail/common -share/doc/HTML/it/kmail/configure.docbook -share/doc/HTML/it/kmail/credits-and-licenses.docbook -share/doc/HTML/it/kmail/faq.docbook -share/doc/HTML/it/kmail/getting-started.docbook -share/doc/HTML/it/kmail/importing.docbook -share/doc/HTML/it/kmail/index.cache.bz2 -share/doc/HTML/it/kmail/index.docbook -share/doc/HTML/it/kmail/intro.docbook -share/doc/HTML/it/kmail/menus.docbook -share/doc/HTML/it/kmail/using-kmail.docbook -share/doc/HTML/it/kmathtool/common -share/doc/HTML/it/kmathtool/index.cache.bz2 -share/doc/HTML/it/kmathtool/index.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/kmessedwords/common -share/doc/HTML/it/kmessedwords/index.cache.bz2 -share/doc/HTML/it/kmessedwords/index.docbook -share/doc/HTML/it/kmessedwords/kmw1.png -share/doc/HTML/it/kmessedwords/kmw2.png -share/doc/HTML/it/kmessedwords/kmw3.png -share/doc/HTML/it/kmessedwords/kmw4.png -share/doc/HTML/it/kmid/common -share/doc/HTML/it/kmid/index.cache.bz2 -share/doc/HTML/it/kmid/index.docbook -share/doc/HTML/it/kmines/common -share/doc/HTML/it/kmines/index.cache.bz2 -share/doc/HTML/it/kmines/index.docbook -share/doc/HTML/it/kmix/common -share/doc/HTML/it/kmix/index.cache.bz2 -share/doc/HTML/it/kmix/index.docbook -share/doc/HTML/it/kmix/kmix-channel-playback.png -share/doc/HTML/it/kmix/kmix-channel-record.png -share/doc/HTML/it/kmix/kmix-window.png -share/doc/HTML/it/kmoon/common -share/doc/HTML/it/kmoon/index.cache.bz2 -share/doc/HTML/it/kmoon/index.docbook -share/doc/HTML/it/kmousetool/common -share/doc/HTML/it/kmousetool/index.cache.bz2 -share/doc/HTML/it/kmousetool/index.docbook -share/doc/HTML/it/kmouth/common -share/doc/HTML/it/kmouth/index.cache.bz2 -share/doc/HTML/it/kmouth/index.docbook -share/doc/HTML/it/kmplot/commands.docbook -share/doc/HTML/it/kmplot/common -share/doc/HTML/it/kmplot/configuration.docbook -share/doc/HTML/it/kmplot/credits.docbook -share/doc/HTML/it/kmplot/dcop.docbook -share/doc/HTML/it/kmplot/developer.docbook -share/doc/HTML/it/kmplot/firststeps.docbook -share/doc/HTML/it/kmplot/index.cache.bz2 -share/doc/HTML/it/kmplot/index.docbook -share/doc/HTML/it/kmplot/install.docbook -share/doc/HTML/it/kmplot/introduction.docbook -share/doc/HTML/it/kmplot/menu.docbook -share/doc/HTML/it/kmplot/reference.docbook -share/doc/HTML/it/kmplot/using.docbook -share/doc/HTML/it/knode/credits.docbook -share/doc/HTML/it/knode/install.docbook -share/doc/HTML/it/knode/introduction.docbook -share/doc/HTML/it/knotes/common -share/doc/HTML/it/knotes/index.cache.bz2 -share/doc/HTML/it/knotes/index.docbook -share/doc/HTML/it/kodo/common -share/doc/HTML/it/kodo/index.cache.bz2 -share/doc/HTML/it/kodo/index.docbook -share/doc/HTML/it/kolf/common -share/doc/HTML/it/kolf/index.cache.bz2 -share/doc/HTML/it/kolf/index.docbook -share/doc/HTML/it/kommander/basics.docbook -share/doc/HTML/it/kommander/commands.docbook -share/doc/HTML/it/kommander/common -share/doc/HTML/it/kommander/credits.docbook -share/doc/HTML/it/kommander/dcop.docbook -share/doc/HTML/it/kommander/editor.docbook -share/doc/HTML/it/kommander/extending.docbook -share/doc/HTML/it/kommander/glossary.docbook -share/doc/HTML/it/kommander/index.cache.bz2 -share/doc/HTML/it/kommander/index.docbook -share/doc/HTML/it/kommander/installation.docbook -share/doc/HTML/it/kommander/introduction.docbook -share/doc/HTML/it/kommander/q-and-a.docbook -share/doc/HTML/it/kommander/specials.docbook -share/doc/HTML/it/kommander/tutorials.docbook -share/doc/HTML/it/kommander/widgets.docbook -share/doc/HTML/it/kompare/common -share/doc/HTML/it/kompare/index.cache.bz2 -share/doc/HTML/it/kompare/index.docbook -share/doc/HTML/it/konq-plugins/babel/common -share/doc/HTML/it/konq-plugins/babel/index.cache.bz2 -share/doc/HTML/it/konq-plugins/babel/index.docbook -share/doc/HTML/it/konq-plugins/common -share/doc/HTML/it/konq-plugins/crashes/common -share/doc/HTML/it/konq-plugins/crashes/index.cache.bz2 -share/doc/HTML/it/konq-plugins/crashes/index.docbook -share/doc/HTML/it/konq-plugins/dirfilter/common -share/doc/HTML/it/konq-plugins/dirfilter/index.cache.bz2 -share/doc/HTML/it/konq-plugins/dirfilter/index.docbook -share/doc/HTML/it/konq-plugins/domtreeviewer/common -share/doc/HTML/it/konq-plugins/domtreeviewer/index.cache.bz2 -share/doc/HTML/it/konq-plugins/domtreeviewer/index.docbook -share/doc/HTML/it/konq-plugins/fsview/common -share/doc/HTML/it/konq-plugins/fsview/index.cache.bz2 -share/doc/HTML/it/konq-plugins/fsview/index.docbook -share/doc/HTML/it/konq-plugins/imgallery/common -share/doc/HTML/it/konq-plugins/imgallery/index.cache.bz2 -share/doc/HTML/it/konq-plugins/imgallery/index.docbook -share/doc/HTML/it/konq-plugins/index.cache.bz2 -share/doc/HTML/it/konq-plugins/index.docbook -share/doc/HTML/it/konq-plugins/khtmlsettings/common -share/doc/HTML/it/konq-plugins/khtmlsettings/index.cache.bz2 -share/doc/HTML/it/konq-plugins/khtmlsettings/index.docbook -share/doc/HTML/it/konq-plugins/kuick/common -share/doc/HTML/it/konq-plugins/kuick/index.cache.bz2 -share/doc/HTML/it/konq-plugins/kuick/index.docbook -share/doc/HTML/it/konq-plugins/mediaplayer/common -share/doc/HTML/it/konq-plugins/mediaplayer/index.cache.bz2 -share/doc/HTML/it/konq-plugins/mediaplayer/index.docbook -share/doc/HTML/it/konq-plugins/smbmounter/common -share/doc/HTML/it/konq-plugins/smbmounter/index.cache.bz2 -share/doc/HTML/it/konq-plugins/smbmounter/index.docbook -share/doc/HTML/it/konq-plugins/uachanger/common -share/doc/HTML/it/konq-plugins/uachanger/index.cache.bz2 -share/doc/HTML/it/konq-plugins/uachanger/index.docbook -share/doc/HTML/it/konq-plugins/validators/common -share/doc/HTML/it/konq-plugins/validators/index.cache.bz2 -share/doc/HTML/it/konq-plugins/validators/index.docbook -share/doc/HTML/it/konq-plugins/webarchiver/common -share/doc/HTML/it/konq-plugins/webarchiver/index.cache.bz2 -share/doc/HTML/it/konq-plugins/webarchiver/index.docbook -share/doc/HTML/it/konqueror/basics.docbook -share/doc/HTML/it/konqueror/bookmarks.docbook -share/doc/HTML/it/konqueror/browser.docbook -share/doc/HTML/it/konqueror/commands.docbook -share/doc/HTML/it/konqueror/common -share/doc/HTML/it/konqueror/config.docbook -share/doc/HTML/it/konqueror/credits.docbook -share/doc/HTML/it/konqueror/faq.docbook -share/doc/HTML/it/konqueror/filemanager.docbook -share/doc/HTML/it/konqueror/index.cache.bz2 -share/doc/HTML/it/konqueror/index.docbook -share/doc/HTML/it/konqueror/introduction.docbook -share/doc/HTML/it/konqueror/path-complete.docbook -share/doc/HTML/it/konqueror/plugins.docbook -share/doc/HTML/it/konqueror/save-settings.docbook -share/doc/HTML/it/konqueror/sidebar.docbook -share/doc/HTML/it/konquest/common -share/doc/HTML/it/konquest/index.cache.bz2 -share/doc/HTML/it/konquest/index.docbook -share/doc/HTML/it/konsole/common -share/doc/HTML/it/konsole/index.cache.bz2 -share/doc/HTML/it/konsole/index.docbook -share/doc/HTML/it/konsole/konsole.png -share/doc/HTML/it/konsole/tabbar.png -share/doc/HTML/it/kooka/common -share/doc/HTML/it/kooka/index.cache.bz2 -share/doc/HTML/it/kooka/index.docbook -share/doc/HTML/it/kooka/kooka_gocr.png -share/doc/HTML/it/kooka/kooka_gocr_result.png -share/doc/HTML/it/kooka/kooka_mainctrl.png -share/doc/HTML/it/kooka/shortcut0.png -share/doc/HTML/it/kooka/shortcut1.png -share/doc/HTML/it/kooka/toolbar.png -share/doc/HTML/it/kooka/toolbar1.png -share/doc/HTML/it/kooka/toolbar2.png -share/doc/HTML/it/kopete/common -share/doc/HTML/it/kopete/index.cache.bz2 -share/doc/HTML/it/kopete/index.docbook -share/doc/HTML/it/kopete/menus.docbook -share/doc/HTML/it/korganizer/common -share/doc/HTML/it/korganizer/exchange-plugin.docbook -share/doc/HTML/it/korganizer/group-scheduling.docbook -share/doc/HTML/it/korganizer/index.cache.bz2 -share/doc/HTML/it/korganizer/index.docbook -share/doc/HTML/it/korganizer/outlook-to-vcalendar.docbook -share/doc/HTML/it/korganizer/plugins-chapter.docbook -share/doc/HTML/it/korn/common -share/doc/HTML/it/korn/index.cache.bz2 -share/doc/HTML/it/korn/index.docbook -share/doc/HTML/it/kpackage/common -share/doc/HTML/it/kpackage/index.cache.bz2 -share/doc/HTML/it/kpackage/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/kpat/man-kpat.6.docbook -share/doc/HTML/it/kpat/man.docbook -share/doc/HTML/it/kpdf/common -share/doc/HTML/it/kpdf/index.cache.bz2 -share/doc/HTML/it/kpdf/index.docbook -share/doc/HTML/it/kpercentage/commands.docbook -share/doc/HTML/it/kpercentage/common -share/doc/HTML/it/kpercentage/credits.docbook -share/doc/HTML/it/kpercentage/devel.docbook -share/doc/HTML/it/kpercentage/faq.docbook -share/doc/HTML/it/kpercentage/index.cache.bz2 -share/doc/HTML/it/kpercentage/index.docbook -share/doc/HTML/it/kpercentage/install.docbook -share/doc/HTML/it/kpercentage/introduction.docbook -share/doc/HTML/it/kpercentage/using.docbook -share/doc/HTML/it/kpoker/common -share/doc/HTML/it/kpoker/index.cache.bz2 -share/doc/HTML/it/kpoker/index.docbook -share/doc/HTML/it/kppp/accounting.docbook -share/doc/HTML/it/kppp/getting-online.docbook -share/doc/HTML/it/kppp/global-settings.docbook -share/doc/HTML/it/kppp/security.docbook -share/doc/HTML/it/krec/common -share/doc/HTML/it/krec/index.cache.bz2 -share/doc/HTML/it/krec/index.docbook -share/doc/HTML/it/krec/krec-configuration.png -share/doc/HTML/it/krec/krec-hicolor.png -share/doc/HTML/it/krec/krec-keramik.png -share/doc/HTML/it/krec/krec-new_file_properties.png -share/doc/HTML/it/krec/using_krec.png -share/doc/HTML/it/kreversi/common -share/doc/HTML/it/kreversi/index.cache.bz2 -share/doc/HTML/it/kreversi/index.docbook -share/doc/HTML/it/kruler/common -share/doc/HTML/it/kruler/index.cache.bz2 -share/doc/HTML/it/kruler/index.docbook -share/doc/HTML/it/ksame/common -share/doc/HTML/it/ksame/index.cache.bz2 -share/doc/HTML/it/ksame/index.docbook -share/doc/HTML/it/kscd/common -share/doc/HTML/it/kscd/index.cache.bz2 -share/doc/HTML/it/kscd/index.docbook -share/doc/HTML/it/kscd/kscd.png -share/doc/HTML/it/kscd/kscd11.png -share/doc/HTML/it/kscd/kscd12.png -share/doc/HTML/it/kscd/kscd13.png -share/doc/HTML/it/kscd/kscd14.png -share/doc/HTML/it/kscd/kscd16.png -share/doc/HTML/it/kscd/kscd18.png -share/doc/HTML/it/kscd/kscd19.png -share/doc/HTML/it/kscd/kscd2.png -share/doc/HTML/it/kscd/kscd3.png -share/doc/HTML/it/kscd/kscd5.png -share/doc/HTML/it/kscd/kscd6.png -share/doc/HTML/it/kshisen/common -share/doc/HTML/it/kshisen/index.cache.bz2 -share/doc/HTML/it/kshisen/index.docbook -share/doc/HTML/it/ksim/common -share/doc/HTML/it/ksim/index.cache.bz2 -share/doc/HTML/it/ksim/index.docbook -share/doc/HTML/it/ksirtet/common -share/doc/HTML/it/ksirtet/index.cache.bz2 -share/doc/HTML/it/ksirtet/index.docbook -share/doc/HTML/it/ksnake/common -share/doc/HTML/it/ksnake/index.cache.bz2 -share/doc/HTML/it/ksnake/index.docbook -share/doc/HTML/it/ksnapshot/common -share/doc/HTML/it/ksnapshot/index.cache.bz2 -share/doc/HTML/it/ksnapshot/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/it/kspaceduel/common -share/doc/HTML/it/kspaceduel/index.cache.bz2 -share/doc/HTML/it/kspaceduel/index.docbook -share/doc/HTML/it/kspell/common -share/doc/HTML/it/kspell/index.cache.bz2 -share/doc/HTML/it/kspell/index.docbook -share/doc/HTML/it/ksplashml/common -share/doc/HTML/it/ksplashml/index.cache.bz2 -share/doc/HTML/it/ksplashml/index.docbook -share/doc/HTML/it/kstars/aavso.png -share/doc/HTML/it/kstars/ai-contents.docbook -share/doc/HTML/it/kstars/altvstime.docbook -share/doc/HTML/it/kstars/altvstime.png -share/doc/HTML/it/kstars/astroinfo.docbook -share/doc/HTML/it/kstars/blackbody.docbook -share/doc/HTML/it/kstars/calc-angdist.docbook -share/doc/HTML/it/kstars/calc-apcoords.docbook -share/doc/HTML/it/kstars/calc-apcoords.png -share/doc/HTML/it/kstars/calc-dayduration.docbook -share/doc/HTML/it/kstars/calc-daylength.png -share/doc/HTML/it/kstars/calc-ecliptic.docbook -share/doc/HTML/it/kstars/calc-eqgal.docbook -share/doc/HTML/it/kstars/calc-eqgal.png -share/doc/HTML/it/kstars/calc-equinox.docbook -share/doc/HTML/it/kstars/calc-geodetic.docbook -share/doc/HTML/it/kstars/calc-geodetic.png -share/doc/HTML/it/kstars/calc-horizontal.docbook -share/doc/HTML/it/kstars/calc-horizontal.png -share/doc/HTML/it/kstars/calc-julian.png -share/doc/HTML/it/kstars/calc-julianday.docbook -share/doc/HTML/it/kstars/calc-planetcoords.docbook -share/doc/HTML/it/kstars/calc-precess.docbook -share/doc/HTML/it/kstars/calc-precess.png -share/doc/HTML/it/kstars/calc-sidereal.docbook -share/doc/HTML/it/kstars/calc-sidereal.png -share/doc/HTML/it/kstars/calculator.docbook -share/doc/HTML/it/kstars/cequator.docbook -share/doc/HTML/it/kstars/colorandtemp.docbook -share/doc/HTML/it/kstars/commands.docbook -share/doc/HTML/it/kstars/common -share/doc/HTML/it/kstars/config.docbook -share/doc/HTML/it/kstars/cpoles.docbook -share/doc/HTML/it/kstars/credits.docbook -share/doc/HTML/it/kstars/csphere.docbook -share/doc/HTML/it/kstars/darkmatter.docbook -share/doc/HTML/it/kstars/dcop.docbook -share/doc/HTML/it/kstars/detaildialog.png -share/doc/HTML/it/kstars/details.docbook -share/doc/HTML/it/kstars/devicemanager.png -share/doc/HTML/it/kstars/dumpmode.docbook -share/doc/HTML/it/kstars/ecliptic.docbook -share/doc/HTML/it/kstars/ellipticalgalaxies.docbook -share/doc/HTML/it/kstars/equinox.docbook -share/doc/HTML/it/kstars/faq.docbook -share/doc/HTML/it/kstars/find.png -share/doc/HTML/it/kstars/flux.docbook -share/doc/HTML/it/kstars/geocoords.docbook -share/doc/HTML/it/kstars/graph1.png -share/doc/HTML/it/kstars/graph2.png -share/doc/HTML/it/kstars/graph3.png -share/doc/HTML/it/kstars/greatcircle.docbook -share/doc/HTML/it/kstars/horizon.docbook -share/doc/HTML/it/kstars/hourangle.docbook -share/doc/HTML/it/kstars/index.cache.bz2 -share/doc/HTML/it/kstars/index.docbook -share/doc/HTML/it/kstars/indi.docbook -share/doc/HTML/it/kstars/install.docbook -share/doc/HTML/it/kstars/jmoons.docbook -share/doc/HTML/it/kstars/julianday.docbook -share/doc/HTML/it/kstars/leapyear.docbook -share/doc/HTML/it/kstars/lightcurves.docbook -share/doc/HTML/it/kstars/luminosity.docbook -share/doc/HTML/it/kstars/magnitude.docbook -share/doc/HTML/it/kstars/meridian.docbook -share/doc/HTML/it/kstars/observinglist.docbook -share/doc/HTML/it/kstars/parallax.docbook -share/doc/HTML/it/kstars/precession.docbook -share/doc/HTML/it/kstars/quicktour.docbook -share/doc/HTML/it/kstars/retrograde.docbook -share/doc/HTML/it/kstars/screen1.png -share/doc/HTML/it/kstars/screen2.png -share/doc/HTML/it/kstars/screen3.png -share/doc/HTML/it/kstars/screen4.png -share/doc/HTML/it/kstars/scriptbuilder.docbook -share/doc/HTML/it/kstars/sidereal.docbook -share/doc/HTML/it/kstars/skycoords.docbook -share/doc/HTML/it/kstars/solarsys.docbook -share/doc/HTML/it/kstars/spiralgalaxies.docbook -share/doc/HTML/it/kstars/stars.docbook -share/doc/HTML/it/kstars/timezones.docbook -share/doc/HTML/it/kstars/tools.docbook -share/doc/HTML/it/kstars/utime.docbook -share/doc/HTML/it/kstars/wut.docbook -share/doc/HTML/it/kstars/zenith.docbook -share/doc/HTML/it/ksysguard/common -share/doc/HTML/it/ksysguard/index.cache.bz2 -share/doc/HTML/it/ksysguard/index.docbook -share/doc/HTML/it/ksysv/common -share/doc/HTML/it/ksysv/index.cache.bz2 -share/doc/HTML/it/ksysv/index.docbook -share/doc/HTML/it/kteatime/common -share/doc/HTML/it/kteatime/index.cache.bz2 -share/doc/HTML/it/kteatime/index.docbook -share/doc/HTML/it/ktimer/common -share/doc/HTML/it/ktimer/index.cache.bz2 -share/doc/HTML/it/ktimer/index.docbook -share/doc/HTML/it/ktouch/common -share/doc/HTML/it/ktouch/index.cache.bz2 -share/doc/HTML/it/ktouch/index.docbook -share/doc/HTML/it/ktouch/screenshot1.png -share/doc/HTML/it/ktouch/screenshot2.png -share/doc/HTML/it/ktouch/screenshot3.png -share/doc/HTML/it/ktron/common -share/doc/HTML/it/ktron/index.cache.bz2 -share/doc/HTML/it/ktron/index.docbook -share/doc/HTML/it/kttsd/common -share/doc/HTML/it/kttsd/index.cache.bz2 -share/doc/HTML/it/kttsd/index.docbook -share/doc/HTML/it/ktuberling/common -share/doc/HTML/it/ktuberling/index.cache.bz2 -share/doc/HTML/it/ktuberling/index.docbook -share/doc/HTML/it/ktuberling/technical-reference.docbook -share/doc/HTML/it/kturtle/common -share/doc/HTML/it/kturtle/getting-started.docbook -share/doc/HTML/it/kturtle/glossary.docbook -share/doc/HTML/it/kturtle/index.cache.bz2 -share/doc/HTML/it/kturtle/index.docbook -share/doc/HTML/it/kturtle/programming-reference.docbook -share/doc/HTML/it/kturtle/translator-guide.docbook -share/doc/HTML/it/kturtle/using-kturtle.docbook -share/doc/HTML/it/kuickshow/common -share/doc/HTML/it/kuickshow/index.cache.bz2 -share/doc/HTML/it/kuickshow/index.docbook -share/doc/HTML/it/kuser/common -share/doc/HTML/it/kuser/index.cache.bz2 -share/doc/HTML/it/kuser/index.docbook -share/doc/HTML/it/kverbos/common -share/doc/HTML/it/kverbos/index.cache.bz2 -share/doc/HTML/it/kverbos/index.docbook -share/doc/HTML/it/kview/common -share/doc/HTML/it/kview/index.cache.bz2 -share/doc/HTML/it/kview/index.docbook -share/doc/HTML/it/kvoctrain/art-query-dlg.png -share/doc/HTML/it/kvoctrain/common -share/doc/HTML/it/kvoctrain/comp-query-dlg.png -share/doc/HTML/it/kvoctrain/docprop1-dlg.png -share/doc/HTML/it/kvoctrain/docprop2-dlg.png -share/doc/HTML/it/kvoctrain/docprop6-dlg.png -share/doc/HTML/it/kvoctrain/entry1-dlg.png -share/doc/HTML/it/kvoctrain/entry2-dlg.png -share/doc/HTML/it/kvoctrain/entry3-dlg.png -share/doc/HTML/it/kvoctrain/entry4-dlg.png -share/doc/HTML/it/kvoctrain/entry5-dlg.png -share/doc/HTML/it/kvoctrain/entry6-dlg.png -share/doc/HTML/it/kvoctrain/index.cache.bz2 -share/doc/HTML/it/kvoctrain/index.docbook -share/doc/HTML/it/kvoctrain/lang1-dlg.png -share/doc/HTML/it/kvoctrain/mainview.png -share/doc/HTML/it/kvoctrain/man-spotlight2kvtml.1.docbook -share/doc/HTML/it/kvoctrain/mu-query-dlg.png -share/doc/HTML/it/kvoctrain/options1-dlg.png -share/doc/HTML/it/kvoctrain/options2-dlg.png -share/doc/HTML/it/kvoctrain/options3-dlg.png -share/doc/HTML/it/kvoctrain/options4-dlg.png -share/doc/HTML/it/kvoctrain/pron-dlg.png -share/doc/HTML/it/kvoctrain/q-opt1-dlg.png -share/doc/HTML/it/kvoctrain/q-opt2-dlg.png -share/doc/HTML/it/kvoctrain/q-opt3-dlg.png -share/doc/HTML/it/kvoctrain/q-opt4-dlg.png -share/doc/HTML/it/kvoctrain/query-dlg.png -share/doc/HTML/it/kvoctrain/stat1-dlg.png -share/doc/HTML/it/kvoctrain/stat2-dlg.png -share/doc/HTML/it/kvoctrain/syn-query-dlg.png -share/doc/HTML/it/kvoctrain/verb-query-dlg.png -share/doc/HTML/it/kwallet/common -share/doc/HTML/it/kwallet/index.cache.bz2 -share/doc/HTML/it/kwallet/index.docbook -share/doc/HTML/it/kweather/common -share/doc/HTML/it/kweather/index.cache.bz2 -share/doc/HTML/it/kweather/index.docbook -share/doc/HTML/it/kwin4/common -share/doc/HTML/it/kwin4/index.cache.bz2 -share/doc/HTML/it/kwin4/index.docbook -share/doc/HTML/it/kwordquiz/common -share/doc/HTML/it/kwordquiz/index.cache.bz2 -share/doc/HTML/it/kwordquiz/index.docbook -share/doc/HTML/it/kworldclock/common -share/doc/HTML/it/kworldclock/index.cache.bz2 -share/doc/HTML/it/kworldclock/index.docbook -share/doc/HTML/it/kworldclock/man-kworldclock.1.docbook -share/doc/HTML/it/kwrite/common -share/doc/HTML/it/kwrite/index.cache.bz2 -share/doc/HTML/it/kwrite/index.docbook -share/doc/HTML/it/kxkb/common -share/doc/HTML/it/kxkb/index.cache.bz2 -share/doc/HTML/it/kxkb/index.docbook -share/doc/HTML/it/kxsldbg/callstack.docbook -share/doc/HTML/it/kxsldbg/common -share/doc/HTML/it/kxsldbg/credits.docbook -share/doc/HTML/it/kxsldbg/entities.docbook -share/doc/HTML/it/kxsldbg/glossary.docbook -share/doc/HTML/it/kxsldbg/index.cache.bz2 -share/doc/HTML/it/kxsldbg/index.docbook -share/doc/HTML/it/kxsldbg/kxsldbg_configure.docbook -share/doc/HTML/it/kxsldbg/kxsldbg_inspector.docbook -share/doc/HTML/it/kxsldbg/kxsldbg_mainwindow.docbook -share/doc/HTML/it/kxsldbg/kxsldbg_tools.docbook -share/doc/HTML/it/kxsldbg/sources.docbook -share/doc/HTML/it/kxsldbg/templates.docbook -share/doc/HTML/it/kxsldbg/variables.docbook -share/doc/HTML/it/lisa/common -share/doc/HTML/it/lisa/index.cache.bz2 -share/doc/HTML/it/lisa/index.docbook -share/doc/HTML/it/lskat/common -share/doc/HTML/it/lskat/index.cache.bz2 -share/doc/HTML/it/lskat/index.docbook -share/doc/HTML/it/megami/common -share/doc/HTML/it/megami/index.cache.bz2 -share/doc/HTML/it/megami/index.docbook -share/doc/HTML/it/noatun/common -share/doc/HTML/it/noatun/index.cache.bz2 -share/doc/HTML/it/noatun/index.docbook -share/doc/HTML/it/quanta/adv-quanta.docbook -share/doc/HTML/it/quanta/config-quanta.docbook -share/doc/HTML/it/quanta/credits-license.docbook -share/doc/HTML/it/quanta/debugging-quanta.docbook -share/doc/HTML/it/quanta/glossary.docbook -share/doc/HTML/it/quanta/installation.docbook -share/doc/HTML/it/quanta/introduction.docbook -share/doc/HTML/it/quanta/q-and-a.docbook -share/doc/HTML/it/quanta/quanta-menus.docbook -share/doc/HTML/it/scripts/man-adddebug.1.docbook -share/doc/HTML/it/scripts/man-extractrc.1.docbook -share/doc/HTML/it/scripts/man-fixincludes.1.docbook -share/doc/HTML/it/scripts/man-po2xml.1.docbook -share/doc/HTML/it/scripts/man-qtdoc.1.docbook -share/doc/HTML/it/scripts/man-xml2pot.1.docbook -share/doc/HTML/it/umbrello/authors.docbook -share/doc/HTML/it/umbrello/code_import_and_generation.docbook -share/doc/HTML/it/umbrello/common -share/doc/HTML/it/umbrello/credits.docbook -share/doc/HTML/it/umbrello/index.cache.bz2 -share/doc/HTML/it/umbrello/index.docbook -share/doc/HTML/it/umbrello/introduction.docbook -share/doc/HTML/it/umbrello/other_features.docbook -share/doc/HTML/it/umbrello/uml_basics.docbook -share/doc/HTML/it/umbrello/working_with_umbrello.docbook -share/locale/it/LC_MESSAGES/akregator.mo -share/locale/it/LC_MESSAGES/akregator_konqplugin.mo -share/locale/it/LC_MESSAGES/alsaplayerui.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/ark_plugin.mo -share/locale/it/LC_MESSAGES/artsbuilder.mo -share/locale/it/LC_MESSAGES/artscontrol.mo -share/locale/it/LC_MESSAGES/artsmodules.mo -share/locale/it/LC_MESSAGES/atlantik.mo -share/locale/it/LC_MESSAGES/atlantikdesigner.mo -share/locale/it/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/it/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/it/LC_MESSAGES/audiorename_plugin.mo -share/locale/it/LC_MESSAGES/autorefresh.mo -share/locale/it/LC_MESSAGES/babelfish.mo -share/locale/it/LC_MESSAGES/cervisia.mo -share/locale/it/LC_MESSAGES/charlatanui.mo -share/locale/it/LC_MESSAGES/childpanelextension.mo -share/locale/it/LC_MESSAGES/clockapplet.mo -share/locale/it/LC_MESSAGES/crashesplugin.mo -share/locale/it/LC_MESSAGES/cupsdconf.mo -share/locale/it/LC_MESSAGES/cvsservice.mo -share/locale/it/LC_MESSAGES/dcoprss.mo -share/locale/it/LC_MESSAGES/devicesapplet.mo -share/locale/it/LC_MESSAGES/dirfilterplugin.mo -share/locale/it/LC_MESSAGES/display.mo -share/locale/it/LC_MESSAGES/dockbarextension.mo -share/locale/it/LC_MESSAGES/domtreeviewer.mo -share/locale/it/LC_MESSAGES/drkonqi.mo -share/locale/it/LC_MESSAGES/dub.mo -share/locale/it/LC_MESSAGES/extensionproxy.mo -share/locale/it/LC_MESSAGES/ffrs.mo -share/locale/it/LC_MESSAGES/filetypes.mo -share/locale/it/LC_MESSAGES/fontinst.mo -share/locale/it/LC_MESSAGES/fsview.mo -share/locale/it/LC_MESSAGES/htmlsearch.mo -share/locale/it/LC_MESSAGES/imagerename_plugin.mo -share/locale/it/LC_MESSAGES/imgalleryplugin.mo -share/locale/it/LC_MESSAGES/irkick.mo -share/locale/it/LC_MESSAGES/jefferson.mo -share/locale/it/LC_MESSAGES/joystick.mo -share/locale/it/LC_MESSAGES/juk.mo -share/locale/it/LC_MESSAGES/kabc2mutt.mo -share/locale/it/LC_MESSAGES/kabc_dir.mo -share/locale/it/LC_MESSAGES/kabc_file.mo -share/locale/it/LC_MESSAGES/kabc_ldap.mo -share/locale/it/LC_MESSAGES/kabc_ldapkio.mo -share/locale/it/LC_MESSAGES/kabc_net.mo -share/locale/it/LC_MESSAGES/kabc_slox.mo -share/locale/it/LC_MESSAGES/kabc_sql.mo -share/locale/it/LC_MESSAGES/kabcformat_binary.mo -share/locale/it/LC_MESSAGES/kaboodle.mo -share/locale/it/LC_MESSAGES/kaccess.mo -share/locale/it/LC_MESSAGES/kaddressbook.mo -share/locale/it/LC_MESSAGES/kalarm.mo -share/locale/it/LC_MESSAGES/kalzium.mo -share/locale/it/LC_MESSAGES/kandy.mo -share/locale/it/LC_MESSAGES/kappfinder.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/katecppsymbolviewer.mo -share/locale/it/LC_MESSAGES/katedefaultproject.mo -share/locale/it/LC_MESSAGES/katefiletemplates.mo -share/locale/it/LC_MESSAGES/katefll_initplugin.mo -share/locale/it/LC_MESSAGES/katefll_plugin.mo -share/locale/it/LC_MESSAGES/katehelloworld.mo -share/locale/it/LC_MESSAGES/katehtmltools.mo -share/locale/it/LC_MESSAGES/kateinsertcommand.mo -share/locale/it/LC_MESSAGES/katekjswrapper.mo -share/locale/it/LC_MESSAGES/katekttsd.mo -share/locale/it/LC_MESSAGES/katemake.mo -share/locale/it/LC_MESSAGES/katemodeline.mo -share/locale/it/LC_MESSAGES/kateopenheader.mo -share/locale/it/LC_MESSAGES/katepart.mo -share/locale/it/LC_MESSAGES/katepartkttsd.mo -share/locale/it/LC_MESSAGES/kateprojectmanager.mo -share/locale/it/LC_MESSAGES/katepybrowse.mo -share/locale/it/LC_MESSAGES/katesnippets.mo -share/locale/it/LC_MESSAGES/katespell.mo -share/locale/it/LC_MESSAGES/katetabbarextension.mo -share/locale/it/LC_MESSAGES/katetextfilter.mo -share/locale/it/LC_MESSAGES/katexmlcheck.mo -share/locale/it/LC_MESSAGES/katexmltools.mo -share/locale/it/LC_MESSAGES/katomic.mo -share/locale/it/LC_MESSAGES/kaudiocreator.mo -share/locale/it/LC_MESSAGES/kbabel.mo -share/locale/it/LC_MESSAGES/kbackgammon.mo -share/locale/it/LC_MESSAGES/kbattleship.mo -share/locale/it/LC_MESSAGES/kbinaryclock.mo -share/locale/it/LC_MESSAGES/kblackbox.mo -share/locale/it/LC_MESSAGES/kbounce.mo -share/locale/it/LC_MESSAGES/kbruch.mo -share/locale/it/LC_MESSAGES/kbstateapplet.mo -share/locale/it/LC_MESSAGES/kbugbuster.mo -share/locale/it/LC_MESSAGES/kcachegrind.mo -share/locale/it/LC_MESSAGES/kcalc.mo -share/locale/it/LC_MESSAGES/kcharselect.mo -share/locale/it/LC_MESSAGES/kcharselectapplet.mo -share/locale/it/LC_MESSAGES/kcm_krfb.mo -share/locale/it/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/it/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/it/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/it/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/it/LC_MESSAGES/kcmaccess.mo -share/locale/it/LC_MESSAGES/kcmaccessibility.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/kcmcddb.mo -share/locale/it/LC_MESSAGES/kcmcgi.mo -share/locale/it/LC_MESSAGES/kcmcolors.mo -share/locale/it/LC_MESSAGES/kcmcomponentchooser.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/kcminfo.mo -share/locale/it/LC_MESSAGES/kcminput.mo -share/locale/it/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/it/LC_MESSAGES/kcmkabconfig.mo -share/locale/it/LC_MESSAGES/kcmkamera.mo -share/locale/it/LC_MESSAGES/kcmkclock.mo -share/locale/it/LC_MESSAGES/kcmkded.mo -share/locale/it/LC_MESSAGES/kcmkdnssd.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/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/kcmkontactnt.mo -share/locale/it/LC_MESSAGES/kcmktalkd.mo -share/locale/it/LC_MESSAGES/kcmkttsd.mo -share/locale/it/LC_MESSAGES/kcmkuick.mo -share/locale/it/LC_MESSAGES/kcmkurifilt.mo -share/locale/it/LC_MESSAGES/kcmkvaio.mo -share/locale/it/LC_MESSAGES/kcmkwallet.mo -share/locale/it/LC_MESSAGES/kcmkwindecoration.mo -share/locale/it/LC_MESSAGES/kcmkwinrules.mo -share/locale/it/LC_MESSAGES/kcmkwintheme.mo -share/locale/it/LC_MESSAGES/kcmkwm.mo -share/locale/it/LC_MESSAGES/kcmkxmlrpcd.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/kcmlirc.mo -share/locale/it/LC_MESSAGES/kcmlocale.mo -share/locale/it/LC_MESSAGES/kcmmediacontrol.mo -share/locale/it/LC_MESSAGES/kcmmidi.mo -share/locale/it/LC_MESSAGES/kcmnic.mo -share/locale/it/LC_MESSAGES/kcmnotify.mo -share/locale/it/LC_MESSAGES/kcmperformance.mo -share/locale/it/LC_MESSAGES/kcmprintmgr.mo -share/locale/it/LC_MESSAGES/kcmsamba.mo -share/locale/it/LC_MESSAGES/kcmscreensaver.mo -share/locale/it/LC_MESSAGES/kcmshell.mo -share/locale/it/LC_MESSAGES/kcmsmartcard.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/kcmthinkpad.mo -share/locale/it/LC_MESSAGES/kcmusb.mo -share/locale/it/LC_MESSAGES/kcmview1394.mo -share/locale/it/LC_MESSAGES/kcmvim.mo -share/locale/it/LC_MESSAGES/kcmwifi.mo -share/locale/it/LC_MESSAGES/kcmxinerama.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/kdat.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/kdelibs_colors.mo -share/locale/it/LC_MESSAGES/kdelirc.mo -share/locale/it/LC_MESSAGES/kdepasswd.mo -share/locale/it/LC_MESSAGES/kdepimresources.mo -share/locale/it/LC_MESSAGES/kdepimwizards.mo -share/locale/it/LC_MESSAGES/kdeprint.mo -share/locale/it/LC_MESSAGES/kdeprint_part.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/kdevdesigner.mo -share/locale/it/LC_MESSAGES/kdevelop.mo -share/locale/it/LC_MESSAGES/kdevtipofday.mo -share/locale/it/LC_MESSAGES/kdf.mo -share/locale/it/LC_MESSAGES/kdgantt.mo -share/locale/it/LC_MESSAGES/kdialog.mo -share/locale/it/LC_MESSAGES/kdict.mo -share/locale/it/LC_MESSAGES/kdictapplet.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/keduca.mo -share/locale/it/LC_MESSAGES/kenolaba.mo -share/locale/it/LC_MESSAGES/kfax.mo -share/locale/it/LC_MESSAGES/kfifteenapplet.mo -share/locale/it/LC_MESSAGES/kfile_au.mo -share/locale/it/LC_MESSAGES/kfile_avi.mo -share/locale/it/LC_MESSAGES/kfile_bmp.mo -share/locale/it/LC_MESSAGES/kfile_cert.mo -share/locale/it/LC_MESSAGES/kfile_cpp.mo -share/locale/it/LC_MESSAGES/kfile_dds.mo -share/locale/it/LC_MESSAGES/kfile_deb.mo -share/locale/it/LC_MESSAGES/kfile_desktop.mo -share/locale/it/LC_MESSAGES/kfile_diff.mo -share/locale/it/LC_MESSAGES/kfile_drgeo.mo -share/locale/it/LC_MESSAGES/kfile_dvi.mo -share/locale/it/LC_MESSAGES/kfile_exr.mo -share/locale/it/LC_MESSAGES/kfile_flac.mo -share/locale/it/LC_MESSAGES/kfile_folder.mo -share/locale/it/LC_MESSAGES/kfile_font.mo -share/locale/it/LC_MESSAGES/kfile_gif.mo -share/locale/it/LC_MESSAGES/kfile_html.mo -share/locale/it/LC_MESSAGES/kfile_ico.mo -share/locale/it/LC_MESSAGES/kfile_ics.mo -share/locale/it/LC_MESSAGES/kfile_jpeg.mo -share/locale/it/LC_MESSAGES/kfile_kig.mo -share/locale/it/LC_MESSAGES/kfile_lnk.mo -share/locale/it/LC_MESSAGES/kfile_m3u.mo -share/locale/it/LC_MESSAGES/kfile_mhtml.mo -share/locale/it/LC_MESSAGES/kfile_mp3.mo -share/locale/it/LC_MESSAGES/kfile_mpc.mo -share/locale/it/LC_MESSAGES/kfile_ogg.mo -share/locale/it/LC_MESSAGES/kfile_palm.mo -share/locale/it/LC_MESSAGES/kfile_pcx.mo -share/locale/it/LC_MESSAGES/kfile_pdf.mo -share/locale/it/LC_MESSAGES/kfile_png.mo -share/locale/it/LC_MESSAGES/kfile_pnm.mo -share/locale/it/LC_MESSAGES/kfile_po.mo -share/locale/it/LC_MESSAGES/kfile_ps.mo -share/locale/it/LC_MESSAGES/kfile_rfc822.mo -share/locale/it/LC_MESSAGES/kfile_rgb.mo -share/locale/it/LC_MESSAGES/kfile_rpm.mo -share/locale/it/LC_MESSAGES/kfile_sid.mo -share/locale/it/LC_MESSAGES/kfile_tga.mo -share/locale/it/LC_MESSAGES/kfile_theora.mo -share/locale/it/LC_MESSAGES/kfile_tiff.mo -share/locale/it/LC_MESSAGES/kfile_torrent.mo -share/locale/it/LC_MESSAGES/kfile_ts.mo -share/locale/it/LC_MESSAGES/kfile_txt.mo -share/locale/it/LC_MESSAGES/kfile_vcf.mo -share/locale/it/LC_MESSAGES/kfile_wav.mo -share/locale/it/LC_MESSAGES/kfile_xbm.mo -share/locale/it/LC_MESSAGES/kfile_xpm.mo -share/locale/it/LC_MESSAGES/kfileaudiopreview.mo -share/locale/it/LC_MESSAGES/kfilereplace.mo -share/locale/it/LC_MESSAGES/kfileshare.mo -share/locale/it/LC_MESSAGES/kfindpart.mo -share/locale/it/LC_MESSAGES/kfloppy.mo -share/locale/it/LC_MESSAGES/kfmclient.mo -share/locale/it/LC_MESSAGES/kfontinst.mo -share/locale/it/LC_MESSAGES/kfouleggs.mo -share/locale/it/LC_MESSAGES/kgamma.mo -share/locale/it/LC_MESSAGES/kgantt.mo -share/locale/it/LC_MESSAGES/kget.mo -share/locale/it/LC_MESSAGES/kghostview.mo -share/locale/it/LC_MESSAGES/kgoldrunner.mo -share/locale/it/LC_MESSAGES/kgpg.mo -share/locale/it/LC_MESSAGES/kgreet_classic.mo -share/locale/it/LC_MESSAGES/kgreet_winbind.mo -share/locale/it/LC_MESSAGES/khangman.mo -share/locale/it/LC_MESSAGES/khelpcenter.mo -share/locale/it/LC_MESSAGES/khexedit.mo -share/locale/it/LC_MESSAGES/khexedit2part.mo -share/locale/it/LC_MESSAGES/khotkeys.mo -share/locale/it/LC_MESSAGES/khtmlkttsd.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/kig.mo -share/locale/it/LC_MESSAGES/kimagemapeditor.mo -share/locale/it/LC_MESSAGES/kinetd.mo -share/locale/it/LC_MESSAGES/kio.mo -share/locale/it/LC_MESSAGES/kio_audiocd.mo -share/locale/it/LC_MESSAGES/kio_devices.mo -share/locale/it/LC_MESSAGES/kio_finger.mo -share/locale/it/LC_MESSAGES/kio_fish.mo -share/locale/it/LC_MESSAGES/kio_floppy.mo -share/locale/it/LC_MESSAGES/kio_groupwise.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_ldap.mo -share/locale/it/LC_MESSAGES/kio_mac.mo -share/locale/it/LC_MESSAGES/kio_man.mo -share/locale/it/LC_MESSAGES/kio_media.mo -share/locale/it/LC_MESSAGES/kio_mobile.mo -share/locale/it/LC_MESSAGES/kio_newimap4.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_print.mo -share/locale/it/LC_MESSAGES/kio_remote.mo -share/locale/it/LC_MESSAGES/kio_settings.mo -share/locale/it/LC_MESSAGES/kio_sftp.mo -share/locale/it/LC_MESSAGES/kio_sieve.mo -share/locale/it/LC_MESSAGES/kio_smb.mo -share/locale/it/LC_MESSAGES/kio_smtp.mo -share/locale/it/LC_MESSAGES/kio_svn.mo -share/locale/it/LC_MESSAGES/kio_system.mo -share/locale/it/LC_MESSAGES/kio_trash.mo -share/locale/it/LC_MESSAGES/kio_zeroconf.mo -share/locale/it/LC_MESSAGES/kioexec.mo -share/locale/it/LC_MESSAGES/kiten.mo -share/locale/it/LC_MESSAGES/kjobviewer.mo -share/locale/it/LC_MESSAGES/kjots.mo -share/locale/it/LC_MESSAGES/kjumpingcube.mo -share/locale/it/LC_MESSAGES/klaptopdaemon.mo -share/locale/it/LC_MESSAGES/klatin.mo -share/locale/it/LC_MESSAGES/klegacyimport.mo -share/locale/it/LC_MESSAGES/kleopatra.mo -share/locale/it/LC_MESSAGES/klettres.mo -share/locale/it/LC_MESSAGES/klickety.mo -share/locale/it/LC_MESSAGES/klines.mo -share/locale/it/LC_MESSAGES/klinkstatus.mo -share/locale/it/LC_MESSAGES/klipper.mo -share/locale/it/LC_MESSAGES/klock.mo -share/locale/it/LC_MESSAGES/kmag.mo -share/locale/it/LC_MESSAGES/kmahjongg.mo -share/locale/it/LC_MESSAGES/kmail.mo -share/locale/it/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/it/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/it/LC_MESSAGES/kmailcvt.mo -share/locale/it/LC_MESSAGES/kmathapplet.mo -share/locale/it/LC_MESSAGES/kmathtool.mo -share/locale/it/LC_MESSAGES/kmcop.mo -share/locale/it/LC_MESSAGES/kmenuapplet.mo -share/locale/it/LC_MESSAGES/kmenuedit.mo -share/locale/it/LC_MESSAGES/kmessedwords.mo -share/locale/it/LC_MESSAGES/kmid.mo -share/locale/it/LC_MESSAGES/kmilo_delli8k.mo -share/locale/it/LC_MESSAGES/kmilo_generic.mo -share/locale/it/LC_MESSAGES/kmilo_kvaio.mo -share/locale/it/LC_MESSAGES/kmilo_powerbook.mo -share/locale/it/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/it/LC_MESSAGES/kmilod.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/kmobile.mo -share/locale/it/LC_MESSAGES/kmoon.mo -share/locale/it/LC_MESSAGES/kmousetool.mo -share/locale/it/LC_MESSAGES/kmouth.mo -share/locale/it/LC_MESSAGES/kmplot.mo -share/locale/it/LC_MESSAGES/kmrml.mo -share/locale/it/LC_MESSAGES/knetattach.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/kodo.mo -share/locale/it/LC_MESSAGES/kolf.mo -share/locale/it/LC_MESSAGES/kolourpaint.mo -share/locale/it/LC_MESSAGES/kolourpicker.mo -share/locale/it/LC_MESSAGES/kommander.mo -share/locale/it/LC_MESSAGES/kompare.mo -share/locale/it/LC_MESSAGES/konnector_dummy.mo -share/locale/it/LC_MESSAGES/konnector_kabc.mo -share/locale/it/LC_MESSAGES/konnector_kcal.mo -share/locale/it/LC_MESSAGES/konnector_local.mo -share/locale/it/LC_MESSAGES/konnector_qtopia.mo -share/locale/it/LC_MESSAGES/konnector_remote.mo -share/locale/it/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/it/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/it/LC_MESSAGES/konqsidebar_news.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/konsolekalendar.mo -share/locale/it/LC_MESSAGES/kontact.mo -share/locale/it/LC_MESSAGES/kooka.mo -share/locale/it/LC_MESSAGES/kopete.mo -share/locale/it/LC_MESSAGES/korganizer.mo -share/locale/it/LC_MESSAGES/korn.mo -share/locale/it/LC_MESSAGES/kpackage.mo -share/locale/it/LC_MESSAGES/kpager.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/kpdf.mo -share/locale/it/LC_MESSAGES/kpercentage.mo -share/locale/it/LC_MESSAGES/kpersonalizer.mo -share/locale/it/LC_MESSAGES/kpf.mo -share/locale/it/LC_MESSAGES/kpilot.mo -share/locale/it/LC_MESSAGES/kpoker.mo -share/locale/it/LC_MESSAGES/kpovmodeler.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/krandr.mo -share/locale/it/LC_MESSAGES/krdb.mo -share/locale/it/LC_MESSAGES/krdc.mo -share/locale/it/LC_MESSAGES/kreadconfig.mo -share/locale/it/LC_MESSAGES/krec.mo -share/locale/it/LC_MESSAGES/kregexpeditor.mo -share/locale/it/LC_MESSAGES/kres_blogging.mo -share/locale/it/LC_MESSAGES/kres_bugzilla.mo -share/locale/it/LC_MESSAGES/kres_exchange.mo -share/locale/it/LC_MESSAGES/kres_featureplan.mo -share/locale/it/LC_MESSAGES/kres_groupwise.mo -share/locale/it/LC_MESSAGES/kres_kolab.mo -share/locale/it/LC_MESSAGES/kres_opengroupware.mo -share/locale/it/LC_MESSAGES/kres_remote.mo -share/locale/it/LC_MESSAGES/kres_xmlrpc.mo -share/locale/it/LC_MESSAGES/kreversi.mo -share/locale/it/LC_MESSAGES/krfb.mo -share/locale/it/LC_MESSAGES/kruler.mo -share/locale/it/LC_MESSAGES/krunapplet.mo -share/locale/it/LC_MESSAGES/ksame.mo -share/locale/it/LC_MESSAGES/ksayit.mo -share/locale/it/LC_MESSAGES/kscd.mo -share/locale/it/LC_MESSAGES/kscreensaver.mo -share/locale/it/LC_MESSAGES/kshisen.mo -share/locale/it/LC_MESSAGES/ksig.mo -share/locale/it/LC_MESSAGES/ksim.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/ksplashthemes.mo -share/locale/it/LC_MESSAGES/kstars.mo -share/locale/it/LC_MESSAGES/kstart.mo -share/locale/it/LC_MESSAGES/kstartperf.mo -share/locale/it/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/it/LC_MESSAGES/kstyle_phase_config.mo -share/locale/it/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/it/LC_MESSAGES/ksvgplugin.mo -share/locale/it/LC_MESSAGES/ksync.mo -share/locale/it/LC_MESSAGES/ksysguard.mo -share/locale/it/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/it/LC_MESSAGES/ksystraycmd.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/ktexteditor_autobookmarker.mo -share/locale/it/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/it/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/it/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/it/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/it/LC_MESSAGES/ktexteditor_kttsd.mo -share/locale/it/LC_MESSAGES/kthememanager.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/ktnef.mo -share/locale/it/LC_MESSAGES/ktouch.mo -share/locale/it/LC_MESSAGES/ktron.mo -share/locale/it/LC_MESSAGES/kttsd.mo -share/locale/it/LC_MESSAGES/kttsd_commandplugin.mo -share/locale/it/LC_MESSAGES/kttsd_eposplugin.mo -share/locale/it/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/it/LC_MESSAGES/kttsd_fliteplugin.mo -share/locale/it/LC_MESSAGES/kttsd_freettsplugin.mo -share/locale/it/LC_MESSAGES/kttsd_hadifixplugin.mo -share/locale/it/LC_MESSAGES/kttsd_sbdplugin.mo -share/locale/it/LC_MESSAGES/kttsd_stringreplacerplugin.mo -share/locale/it/LC_MESSAGES/kttsd_talkerchooserplugin.mo -share/locale/it/LC_MESSAGES/kttsd_xmltransformerplugin.mo -share/locale/it/LC_MESSAGES/kttsjobmgr.mo -share/locale/it/LC_MESSAGES/kttsmgr.mo -share/locale/it/LC_MESSAGES/ktuberling.mo -share/locale/it/LC_MESSAGES/kturtle.mo -share/locale/it/LC_MESSAGES/ktux.mo -share/locale/it/LC_MESSAGES/kuick_plugin.mo -share/locale/it/LC_MESSAGES/kuickshow.mo -share/locale/it/LC_MESSAGES/kuiviewer.mo -share/locale/it/LC_MESSAGES/kuser.mo -share/locale/it/LC_MESSAGES/kverbos.mo -share/locale/it/LC_MESSAGES/kview.mo -share/locale/it/LC_MESSAGES/kview_scale.mo -share/locale/it/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/it/LC_MESSAGES/kviewcanvas.mo -share/locale/it/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/it/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/it/LC_MESSAGES/kviewscannerplugin.mo -share/locale/it/LC_MESSAGES/kviewshell.mo -share/locale/it/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/it/LC_MESSAGES/kviewviewer.mo -share/locale/it/LC_MESSAGES/kvoctrain.mo -share/locale/it/LC_MESSAGES/kwalletmanager.mo -share/locale/it/LC_MESSAGES/kwatchgnupg.mo -share/locale/it/LC_MESSAGES/kweather.mo -share/locale/it/LC_MESSAGES/kwifimanager.mo -share/locale/it/LC_MESSAGES/kwin.mo -share/locale/it/LC_MESSAGES/kwin4.mo -share/locale/it/LC_MESSAGES/kwin_art_clients.mo -share/locale/it/LC_MESSAGES/kwin_clients.mo -share/locale/it/LC_MESSAGES/kwireless.mo -share/locale/it/LC_MESSAGES/kwordquiz.mo -share/locale/it/LC_MESSAGES/kworldclock.mo -share/locale/it/LC_MESSAGES/kwriteconfig.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/kxsldbg.mo -share/locale/it/LC_MESSAGES/libKTTSD.mo -share/locale/it/LC_MESSAGES/libcalendarresources.mo -share/locale/it/LC_MESSAGES/libdmctl.mo -share/locale/it/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/it/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/it/LC_MESSAGES/libkcal.mo -share/locale/it/LC_MESSAGES/libkcalsystem.mo -share/locale/it/LC_MESSAGES/libkcddb.mo -share/locale/it/LC_MESSAGES/libkdegames.mo -share/locale/it/LC_MESSAGES/libkdehighscores.mo -share/locale/it/LC_MESSAGES/libkdenetwork.mo -share/locale/it/LC_MESSAGES/libkdepim.mo -share/locale/it/LC_MESSAGES/libkholidays.mo -share/locale/it/LC_MESSAGES/libkicker.mo -share/locale/it/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/it/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/it/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/it/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/it/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/it/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/it/LC_MESSAGES/libkickermenu_tom.mo -share/locale/it/LC_MESSAGES/libkleopatra.mo -share/locale/it/LC_MESSAGES/libkmime.mo -share/locale/it/LC_MESSAGES/libkonq.mo -share/locale/it/LC_MESSAGES/libkpgp.mo -share/locale/it/LC_MESSAGES/libkpimexchange.mo -share/locale/it/LC_MESSAGES/libkscan.mo -share/locale/it/LC_MESSAGES/libkscreensaver.mo -share/locale/it/LC_MESSAGES/libksieve.mo -share/locale/it/LC_MESSAGES/libksirtet.mo -share/locale/it/LC_MESSAGES/libksync.mo -share/locale/it/LC_MESSAGES/libtaskbar.mo -share/locale/it/LC_MESSAGES/libtaskmanager.mo -share/locale/it/LC_MESSAGES/lockout.mo -share/locale/it/LC_MESSAGES/lskat.mo -share/locale/it/LC_MESSAGES/lyrics.mo -share/locale/it/LC_MESSAGES/mediaapplet.mo -share/locale/it/LC_MESSAGES/mediacontrol.mo -share/locale/it/LC_MESSAGES/minitoolsplugin.mo -share/locale/it/LC_MESSAGES/multisynk.mo -share/locale/it/LC_MESSAGES/naughtyapplet.mo -share/locale/it/LC_MESSAGES/nexscope.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/pitchablespeed.mo -share/locale/it/LC_MESSAGES/ppdtranslations.mo -share/locale/it/LC_MESSAGES/privacy.mo -share/locale/it/LC_MESSAGES/qeditor.mo -share/locale/it/LC_MESSAGES/quanta.mo -share/locale/it/LC_MESSAGES/quicklauncher.mo -share/locale/it/LC_MESSAGES/rellinks.mo -share/locale/it/LC_MESSAGES/searchbarplugin.mo -share/locale/it/LC_MESSAGES/secpolicy.mo -share/locale/it/LC_MESSAGES/spy.mo -share/locale/it/LC_MESSAGES/synaescope.mo -share/locale/it/LC_MESSAGES/taskbarextension.mo -share/locale/it/LC_MESSAGES/timezones.mo -share/locale/it/LC_MESSAGES/tippecanoe.mo -share/locale/it/LC_MESSAGES/trashapplet.mo -share/locale/it/LC_MESSAGES/tyler.mo -share/locale/it/LC_MESSAGES/uachangerplugin.mo -share/locale/it/LC_MESSAGES/umbrello.mo -share/locale/it/LC_MESSAGES/useraccount.mo -share/locale/it/LC_MESSAGES/validatorsplugin.mo -share/locale/it/LC_MESSAGES/vimpart.mo -share/locale/it/LC_MESSAGES/wakeup.mo -share/locale/it/LC_MESSAGES/wavecapture.mo -share/locale/it/LC_MESSAGES/webarchiver.mo -share/locale/it/charset -share/locale/it/entry.desktop -share/locale/it/flag.png -@dirrm share/doc/HTML/it/umbrello -@dirrm share/doc/HTML/it/scripts -@dirrm share/doc/HTML/it/quanta -@dirrm share/doc/HTML/it/noatun -@dirrm share/doc/HTML/it/megami -@dirrm share/doc/HTML/it/lskat -@dirrm share/doc/HTML/it/lisa -@dirrm share/doc/HTML/it/kxsldbg -@dirrm share/doc/HTML/it/kxkb -@dirrm share/doc/HTML/it/kwrite -@dirrm share/doc/HTML/it/kworldclock -@dirrm share/doc/HTML/it/kwordquiz -@dirrm share/doc/HTML/it/kwin4 -@dirrm share/doc/HTML/it/kweather -@dirrm share/doc/HTML/it/kwallet -@dirrm share/doc/HTML/it/kvoctrain -@dirrm share/doc/HTML/it/kview -@dirrm share/doc/HTML/it/kverbos -@dirrm share/doc/HTML/it/kuser -@dirrm share/doc/HTML/it/kuickshow -@dirrm share/doc/HTML/it/kturtle -@dirrm share/doc/HTML/it/ktuberling -@dirrm share/doc/HTML/it/kttsd -@dirrm share/doc/HTML/it/ktron -@dirrm share/doc/HTML/it/ktouch -@dirrm share/doc/HTML/it/ktimer -@dirrm share/doc/HTML/it/kteatime -@dirrm share/doc/HTML/it/ksysv -@dirrm share/doc/HTML/it/ksysguard -@dirrm share/doc/HTML/it/kstars -@dirrm share/doc/HTML/it/ksplashml -@dirrm share/doc/HTML/it/kspell -@dirrm share/doc/HTML/it/kspaceduel -@dirrm share/doc/HTML/it/ksokoban -@dirrm share/doc/HTML/it/ksnapshot -@dirrm share/doc/HTML/it/ksnake -@dirrm share/doc/HTML/it/ksirtet -@dirrm share/doc/HTML/it/ksim -@dirrm share/doc/HTML/it/kshisen -@dirrm share/doc/HTML/it/kscd -@dirrm share/doc/HTML/it/ksame -@dirrm share/doc/HTML/it/kruler -@dirrm share/doc/HTML/it/kreversi -@dirrm share/doc/HTML/it/krec -@dirrm share/doc/HTML/it/kppp -@dirrm share/doc/HTML/it/kpoker -@dirrm share/doc/HTML/it/kpercentage -@dirrm share/doc/HTML/it/kpdf -@dirrm share/doc/HTML/it/kpat -@dirrm share/doc/HTML/it/kpackage -@dirrm share/doc/HTML/it/korn -@dirrm share/doc/HTML/it/korganizer -@dirrm share/doc/HTML/it/kopete -@dirrm share/doc/HTML/it/kooka -@dirrm share/doc/HTML/it/konsole -@dirrm share/doc/HTML/it/konquest -@dirrm share/doc/HTML/it/konqueror -@dirrm share/doc/HTML/it/konq-plugins/webarchiver -@dirrm share/doc/HTML/it/konq-plugins/validators -@dirrm share/doc/HTML/it/konq-plugins/uachanger -@dirrm share/doc/HTML/it/konq-plugins/smbmounter -@dirrm share/doc/HTML/it/konq-plugins/mediaplayer -@dirrm share/doc/HTML/it/konq-plugins/kuick -@dirrm share/doc/HTML/it/konq-plugins/khtmlsettings -@dirrm share/doc/HTML/it/konq-plugins/imgallery -@dirrm share/doc/HTML/it/konq-plugins/fsview -@dirrm share/doc/HTML/it/konq-plugins/domtreeviewer -@dirrm share/doc/HTML/it/konq-plugins/dirfilter -@dirrm share/doc/HTML/it/konq-plugins/crashes -@dirrm share/doc/HTML/it/konq-plugins/babel -@dirrm share/doc/HTML/it/konq-plugins -@dirrm share/doc/HTML/it/kompare -@dirrm share/doc/HTML/it/kommander -@dirrm share/doc/HTML/it/kolf -@dirrm share/doc/HTML/it/kodo -@dirrm share/doc/HTML/it/knotes -@dirrm share/doc/HTML/it/knode -@dirrm share/doc/HTML/it/kmplot -@dirrm share/doc/HTML/it/kmouth -@dirrm share/doc/HTML/it/kmousetool -@dirrm share/doc/HTML/it/kmoon -@dirrm share/doc/HTML/it/kmix -@dirrm share/doc/HTML/it/kmines -@dirrm share/doc/HTML/it/kmid -@dirrm share/doc/HTML/it/kmessedwords -@dirrm share/doc/HTML/it/kmenuedit -@dirrm share/doc/HTML/it/kmathtool -@dirrm share/doc/HTML/it/kmail -@dirrm share/doc/HTML/it/kmahjongg -@dirrm share/doc/HTML/it/kmag -@dirrm share/doc/HTML/it/klipper -@dirrm share/doc/HTML/it/klinkstatus -@dirrm share/doc/HTML/it/klines -@dirrm share/doc/HTML/it/klickety -@dirrm share/doc/HTML/it/klettres -@dirrm share/doc/HTML/it/kleopatra -@dirrm share/doc/HTML/it/klatin -@dirrm share/doc/HTML/it/kjumpingcube -@dirrm share/doc/HTML/it/kjots -@dirrm share/doc/HTML/it/kiten -@dirrm share/doc/HTML/it/kioslave -@dirrm share/doc/HTML/it/kio_audiocd -@dirrm share/doc/HTML/it/kinfocenter/xserver -@dirrm share/doc/HTML/it/kinfocenter/usb -@dirrm share/doc/HTML/it/kinfocenter/sound -@dirrm share/doc/HTML/it/kinfocenter/scsi -@dirrm share/doc/HTML/it/kinfocenter/samba -@dirrm share/doc/HTML/it/kinfocenter/protocols -@dirrm share/doc/HTML/it/kinfocenter/processor -@dirrm share/doc/HTML/it/kinfocenter/pcmcia -@dirrm share/doc/HTML/it/kinfocenter/pci -@dirrm share/doc/HTML/it/kinfocenter/partitions -@dirrm share/doc/HTML/it/kinfocenter/opengl -@dirrm share/doc/HTML/it/kinfocenter/nics -@dirrm share/doc/HTML/it/kinfocenter/memory -@dirrm share/doc/HTML/it/kinfocenter/ioports -@dirrm share/doc/HTML/it/kinfocenter/interrupts -@dirrm share/doc/HTML/it/kinfocenter/dma -@dirrm share/doc/HTML/it/kinfocenter/devices -@dirrm share/doc/HTML/it/kinfocenter/blockdevices -@dirrm share/doc/HTML/it/kinfocenter -@dirrm share/doc/HTML/it/kig -@dirrm share/doc/HTML/it/kiconedit -@dirrm share/doc/HTML/it/kicker-applets -@dirrm share/doc/HTML/it/kicker -@dirrm share/doc/HTML/it/khelpcenter/visualdict -@dirrm share/doc/HTML/it/khelpcenter/userguide -@dirrm share/doc/HTML/it/khelpcenter/quickstart -@dirrm share/doc/HTML/it/khelpcenter/glossary -@dirrm share/doc/HTML/it/khelpcenter/faq -@dirrm share/doc/HTML/it/khelpcenter -@dirrm share/doc/HTML/it/khangman -@dirrm share/doc/HTML/it/kgpg -@dirrm share/doc/HTML/it/kgoldrunner -@dirrm share/doc/HTML/it/kghostview -@dirrm share/doc/HTML/it/kget -@dirrm share/doc/HTML/it/kgamma -@dirrm share/doc/HTML/it/kfouleggs -@dirrm share/doc/HTML/it/kfloppy -@dirrm share/doc/HTML/it/kfind -@dirrm share/doc/HTML/it/kfilereplace -@dirrm share/doc/HTML/it/kenolaba -@dirrm share/doc/HTML/it/keduca -@dirrm share/doc/HTML/it/kedit -@dirrm share/doc/HTML/it/kdvi -@dirrm share/doc/HTML/it/kdf -@dirrm share/doc/HTML/it/kdevelop -@dirrm share/doc/HTML/it/kdesu -@dirrm share/doc/HTML/it/kdeprint -@dirrm share/doc/HTML/it/kdelirc/kcmlirc -@dirrm share/doc/HTML/it/kdelirc/irkick -@dirrm share/doc/HTML/it/kdelirc -@dirrm share/doc/HTML/it/kdelibs -@dirrm share/doc/HTML/it/kdebugdialog -@dirrm share/doc/HTML/it/kdearch -@dirrm share/doc/HTML/it/kde_app_devel -@dirrm share/doc/HTML/it/kdat -@dirrm share/doc/HTML/it/kcron -@dirrm share/doc/HTML/it/kcontrol/windowmanagement -@dirrm share/doc/HTML/it/kcontrol/useragent -@dirrm share/doc/HTML/it/kcontrol/spellchecking -@dirrm share/doc/HTML/it/kcontrol/smb -@dirrm share/doc/HTML/it/kcontrol/proxy -@dirrm share/doc/HTML/it/kcontrol/powerctrl -@dirrm share/doc/HTML/it/kcontrol/passwords -@dirrm share/doc/HTML/it/kcontrol/panelappearance -@dirrm share/doc/HTML/it/kcontrol/netpref -@dirrm share/doc/HTML/it/kcontrol/mouse -@dirrm share/doc/HTML/it/kcontrol/laptop -@dirrm share/doc/HTML/it/kcontrol/lanbrowser -@dirrm share/doc/HTML/it/kcontrol/kwindecoration -@dirrm share/doc/HTML/it/kcontrol/kmixcfg -@dirrm share/doc/HTML/it/kcontrol/khtml -@dirrm share/doc/HTML/it/kcontrol/keys -@dirrm share/doc/HTML/it/kcontrol/keyboard -@dirrm share/doc/HTML/it/kcontrol/kdm -@dirrm share/doc/HTML/it/kcontrol/kcmsmserver -@dirrm share/doc/HTML/it/kcontrol/kcmnotify -@dirrm share/doc/HTML/it/kcontrol/kcmlowbatwarn -@dirrm share/doc/HTML/it/kcontrol/kcmlowbatcrit -@dirrm share/doc/HTML/it/kcontrol/kcmktalkd -@dirrm share/doc/HTML/it/kcontrol/kcmfontinst -@dirrm share/doc/HTML/it/kcontrol/kcmcss -@dirrm share/doc/HTML/it/kcontrol/kalarmd -@dirrm share/doc/HTML/it/kcontrol/icons -@dirrm share/doc/HTML/it/kcontrol/fonts -@dirrm share/doc/HTML/it/kcontrol/filemanager -@dirrm share/doc/HTML/it/kcontrol/energy -@dirrm share/doc/HTML/it/kcontrol/email -@dirrm share/doc/HTML/it/kcontrol/ebrowsing -@dirrm share/doc/HTML/it/kcontrol/desktopbehavior -@dirrm share/doc/HTML/it/kcontrol/desktop -@dirrm share/doc/HTML/it/kcontrol/crypto -@dirrm share/doc/HTML/it/kcontrol/cookies -@dirrm share/doc/HTML/it/kcontrol/colors -@dirrm share/doc/HTML/it/kcontrol/clock -@dirrm share/doc/HTML/it/kcontrol/cache -@dirrm share/doc/HTML/it/kcontrol/bell -@dirrm share/doc/HTML/it/kcontrol/arts -@dirrm share/doc/HTML/it/kcontrol -@dirrm share/doc/HTML/it/kcoloredit -@dirrm share/doc/HTML/it/kcharselect -@dirrm share/doc/HTML/it/kcalc -@dirrm share/doc/HTML/it/kbugbuster -@dirrm share/doc/HTML/it/kbruch -@dirrm share/doc/HTML/it/kbounce -@dirrm share/doc/HTML/it/kblackbox -@dirrm share/doc/HTML/it/kbattleship -@dirrm share/doc/HTML/it/kbackgammon -@dirrm share/doc/HTML/it/kbabel -@dirrm share/doc/HTML/it/katomic -@dirrm share/doc/HTML/it/kate-plugins -@dirrm share/doc/HTML/it/kate -@dirrm share/doc/HTML/it/kasteroids -@dirrm share/doc/HTML/it/kandy -@dirrm share/doc/HTML/it/kamera -@dirrm share/doc/HTML/it/kalzium -@dirrm share/doc/HTML/it/kaddressbook -@dirrm share/doc/HTML/it/kaboodle -@dirrm share/doc/HTML/it/juk -@dirrm share/doc/HTML/it/common -@dirrm share/doc/HTML/it/atlantik -@dirrm share/doc/HTML/it/artsbuilder -@dirrm share/doc/HTML/it/ark -@dirrm share/doc/HTML/it/amor -@dirrm share/doc/HTML/it/KRegExpEditor -@dirrm share/apps/kturtle/examples/it -@dirrm share/apps/kturtle/examples -@dirrm share/apps/kturtle/data -@dirrm share/apps/kturtle -@dirrm share/apps/ktuberling/sounds/it -@dirrm share/apps/ktuberling/sounds -@dirrm share/apps/ktuberling -@dirrm share/apps/klettres/it/syllab -@dirrm share/apps/klettres/it/alpha -@dirrm share/apps/klettres/it -@dirrm share/apps/klettres -@dirrm share/apps/klatin/data/vocabs/it -@dirrm share/apps/klatin/data/vocabs -@dirrm share/apps/klatin/data -@dirrm share/apps/klatin -@dirrm share/apps/khangman/data/it -@dirrm share/apps/khangman/data -@dirrm share/apps/khangman diff --git a/misc/kde4-l10n-lt/Makefile b/misc/kde4-l10n-lt/Makefile deleted file mode 100644 index ca674f6ee051..000000000000 --- a/misc/kde4-l10n-lt/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-lt -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= lt- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Lithuanian messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-lt/distinfo b/misc/kde4-l10n-lt/distinfo deleted file mode 100644 index 6bd3355c2bcf..000000000000 --- a/misc/kde4-l10n-lt/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-lt-3.4.2.tar.bz2) = b614e6dede0b77813ca1181754b1e113 -SIZE (KDE/kde-i18n/kde-i18n-lt-3.4.2.tar.bz2) = 1767007 diff --git a/misc/kde4-l10n-lt/pkg-descr b/misc/kde4-l10n-lt/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-lt/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-lt/pkg-plist b/misc/kde4-l10n-lt/pkg-plist deleted file mode 100644 index d2fa88f5150b..000000000000 --- a/misc/kde4-l10n-lt/pkg-plist +++ /dev/null @@ -1,585 +0,0 @@ -share/locale/lt/LC_MESSAGES/akregator.mo -share/locale/lt/LC_MESSAGES/akregator_konqplugin.mo -share/locale/lt/LC_MESSAGES/alsaplayerui.mo -share/locale/lt/LC_MESSAGES/amor.mo -share/locale/lt/LC_MESSAGES/appletproxy.mo -share/locale/lt/LC_MESSAGES/ark.mo -share/locale/lt/LC_MESSAGES/ark_plugin.mo -share/locale/lt/LC_MESSAGES/artsbuilder.mo -share/locale/lt/LC_MESSAGES/artscontrol.mo -share/locale/lt/LC_MESSAGES/artsmodules.mo -share/locale/lt/LC_MESSAGES/atlantik.mo -share/locale/lt/LC_MESSAGES/atlantikdesigner.mo -share/locale/lt/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/lt/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/lt/LC_MESSAGES/audiorename_plugin.mo -share/locale/lt/LC_MESSAGES/autorefresh.mo -share/locale/lt/LC_MESSAGES/babelfish.mo -share/locale/lt/LC_MESSAGES/cervisia.mo -share/locale/lt/LC_MESSAGES/charlatanui.mo -share/locale/lt/LC_MESSAGES/childpanelextension.mo -share/locale/lt/LC_MESSAGES/clockapplet.mo -share/locale/lt/LC_MESSAGES/crashesplugin.mo -share/locale/lt/LC_MESSAGES/cupsdconf.mo -share/locale/lt/LC_MESSAGES/cvsservice.mo -share/locale/lt/LC_MESSAGES/dcoprss.mo -share/locale/lt/LC_MESSAGES/devicesapplet.mo -share/locale/lt/LC_MESSAGES/dirfilterplugin.mo -share/locale/lt/LC_MESSAGES/display.mo -share/locale/lt/LC_MESSAGES/dockbarextension.mo -share/locale/lt/LC_MESSAGES/domtreeviewer.mo -share/locale/lt/LC_MESSAGES/drkonqi.mo -share/locale/lt/LC_MESSAGES/dub.mo -share/locale/lt/LC_MESSAGES/extensionproxy.mo -share/locale/lt/LC_MESSAGES/ffrs.mo -share/locale/lt/LC_MESSAGES/filetypes.mo -share/locale/lt/LC_MESSAGES/fontinst.mo -share/locale/lt/LC_MESSAGES/fsview.mo -share/locale/lt/LC_MESSAGES/htmlsearch.mo -share/locale/lt/LC_MESSAGES/imagerename_plugin.mo -share/locale/lt/LC_MESSAGES/imgalleryplugin.mo -share/locale/lt/LC_MESSAGES/irkick.mo -share/locale/lt/LC_MESSAGES/jefferson.mo -share/locale/lt/LC_MESSAGES/joystick.mo -share/locale/lt/LC_MESSAGES/juk.mo -share/locale/lt/LC_MESSAGES/kabc2mutt.mo -share/locale/lt/LC_MESSAGES/kabc_dir.mo -share/locale/lt/LC_MESSAGES/kabc_file.mo -share/locale/lt/LC_MESSAGES/kabc_ldap.mo -share/locale/lt/LC_MESSAGES/kabc_ldapkio.mo -share/locale/lt/LC_MESSAGES/kabc_net.mo -share/locale/lt/LC_MESSAGES/kabc_slox.mo -share/locale/lt/LC_MESSAGES/kabc_sql.mo -share/locale/lt/LC_MESSAGES/kabcformat_binary.mo -share/locale/lt/LC_MESSAGES/kaboodle.mo -share/locale/lt/LC_MESSAGES/kaccess.mo -share/locale/lt/LC_MESSAGES/kaddressbook.mo -share/locale/lt/LC_MESSAGES/kalarm.mo -share/locale/lt/LC_MESSAGES/kalzium.mo -share/locale/lt/LC_MESSAGES/kandy.mo -share/locale/lt/LC_MESSAGES/kappfinder.mo -share/locale/lt/LC_MESSAGES/karm.mo -share/locale/lt/LC_MESSAGES/kasbarextension.mo -share/locale/lt/LC_MESSAGES/kasteroids.mo -share/locale/lt/LC_MESSAGES/kate.mo -share/locale/lt/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/lt/LC_MESSAGES/katedefaultproject.mo -share/locale/lt/LC_MESSAGES/katefiletemplates.mo -share/locale/lt/LC_MESSAGES/katefll_initplugin.mo -share/locale/lt/LC_MESSAGES/katefll_plugin.mo -share/locale/lt/LC_MESSAGES/katehelloworld.mo -share/locale/lt/LC_MESSAGES/katehtmltools.mo -share/locale/lt/LC_MESSAGES/kateinsertcommand.mo -share/locale/lt/LC_MESSAGES/katekjswrapper.mo -share/locale/lt/LC_MESSAGES/katekttsd.mo -share/locale/lt/LC_MESSAGES/katemake.mo -share/locale/lt/LC_MESSAGES/katemodeline.mo -share/locale/lt/LC_MESSAGES/kateopenheader.mo -share/locale/lt/LC_MESSAGES/katepart.mo -share/locale/lt/LC_MESSAGES/katepartkttsd.mo -share/locale/lt/LC_MESSAGES/kateprojectmanager.mo -share/locale/lt/LC_MESSAGES/katepybrowse.mo -share/locale/lt/LC_MESSAGES/katesnippets.mo -share/locale/lt/LC_MESSAGES/katespell.mo -share/locale/lt/LC_MESSAGES/katetabbarextension.mo -share/locale/lt/LC_MESSAGES/katetextfilter.mo -share/locale/lt/LC_MESSAGES/katexmlcheck.mo -share/locale/lt/LC_MESSAGES/katexmltools.mo -share/locale/lt/LC_MESSAGES/katomic.mo -share/locale/lt/LC_MESSAGES/kaudiocreator.mo -share/locale/lt/LC_MESSAGES/kbabel.mo -share/locale/lt/LC_MESSAGES/kbackgammon.mo -share/locale/lt/LC_MESSAGES/kbattleship.mo -share/locale/lt/LC_MESSAGES/kbinaryclock.mo -share/locale/lt/LC_MESSAGES/kblackbox.mo -share/locale/lt/LC_MESSAGES/kbounce.mo -share/locale/lt/LC_MESSAGES/kbruch.mo -share/locale/lt/LC_MESSAGES/kbstateapplet.mo -share/locale/lt/LC_MESSAGES/kbugbuster.mo -share/locale/lt/LC_MESSAGES/kcachegrind.mo -share/locale/lt/LC_MESSAGES/kcalc.mo -share/locale/lt/LC_MESSAGES/kcharselect.mo -share/locale/lt/LC_MESSAGES/kcharselectapplet.mo -share/locale/lt/LC_MESSAGES/kcm_krfb.mo -share/locale/lt/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/lt/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/lt/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/lt/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/lt/LC_MESSAGES/kcmaccess.mo -share/locale/lt/LC_MESSAGES/kcmaccessibility.mo -share/locale/lt/LC_MESSAGES/kcmarts.mo -share/locale/lt/LC_MESSAGES/kcmaudiocd.mo -share/locale/lt/LC_MESSAGES/kcmbackground.mo -share/locale/lt/LC_MESSAGES/kcmbell.mo -share/locale/lt/LC_MESSAGES/kcmcddb.mo -share/locale/lt/LC_MESSAGES/kcmcgi.mo -share/locale/lt/LC_MESSAGES/kcmcolors.mo -share/locale/lt/LC_MESSAGES/kcmcomponentchooser.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/kcmkabconfig.mo -share/locale/lt/LC_MESSAGES/kcmkamera.mo -share/locale/lt/LC_MESSAGES/kcmkclock.mo -share/locale/lt/LC_MESSAGES/kcmkded.mo -share/locale/lt/LC_MESSAGES/kcmkdnssd.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/kcmkontactnt.mo -share/locale/lt/LC_MESSAGES/kcmktalkd.mo -share/locale/lt/LC_MESSAGES/kcmkttsd.mo -share/locale/lt/LC_MESSAGES/kcmkuick.mo -share/locale/lt/LC_MESSAGES/kcmkurifilt.mo -share/locale/lt/LC_MESSAGES/kcmkvaio.mo -share/locale/lt/LC_MESSAGES/kcmkwallet.mo -share/locale/lt/LC_MESSAGES/kcmkwindecoration.mo -share/locale/lt/LC_MESSAGES/kcmkwinrules.mo -share/locale/lt/LC_MESSAGES/kcmkwintheme.mo -share/locale/lt/LC_MESSAGES/kcmkwm.mo -share/locale/lt/LC_MESSAGES/kcmkxmlrpcd.mo -share/locale/lt/LC_MESSAGES/kcmlanbrowser.mo -share/locale/lt/LC_MESSAGES/kcmlaptop.mo -share/locale/lt/LC_MESSAGES/kcmlaunch.mo -share/locale/lt/LC_MESSAGES/kcmlayout.mo -share/locale/lt/LC_MESSAGES/kcmlilo.mo -share/locale/lt/LC_MESSAGES/kcmlirc.mo -share/locale/lt/LC_MESSAGES/kcmlocale.mo -share/locale/lt/LC_MESSAGES/kcmmediacontrol.mo -share/locale/lt/LC_MESSAGES/kcmmidi.mo -share/locale/lt/LC_MESSAGES/kcmnic.mo -share/locale/lt/LC_MESSAGES/kcmnotify.mo -share/locale/lt/LC_MESSAGES/kcmperformance.mo -share/locale/lt/LC_MESSAGES/kcmprintmgr.mo -share/locale/lt/LC_MESSAGES/kcmsamba.mo -share/locale/lt/LC_MESSAGES/kcmscreensaver.mo -share/locale/lt/LC_MESSAGES/kcmshell.mo -share/locale/lt/LC_MESSAGES/kcmsmartcard.mo -share/locale/lt/LC_MESSAGES/kcmsmserver.mo -share/locale/lt/LC_MESSAGES/kcmsocks.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/kcmthinkpad.mo -share/locale/lt/LC_MESSAGES/kcmusb.mo -share/locale/lt/LC_MESSAGES/kcmview1394.mo -share/locale/lt/LC_MESSAGES/kcmvim.mo -share/locale/lt/LC_MESSAGES/kcmwifi.mo -share/locale/lt/LC_MESSAGES/kcmxinerama.mo -share/locale/lt/LC_MESSAGES/kcoloredit.mo -share/locale/lt/LC_MESSAGES/kcontrol.mo -share/locale/lt/LC_MESSAGES/kcron.mo -share/locale/lt/LC_MESSAGES/kdat.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/kdelibs_colors.mo -share/locale/lt/LC_MESSAGES/kdelirc.mo -share/locale/lt/LC_MESSAGES/kdepasswd.mo -share/locale/lt/LC_MESSAGES/kdepimresources.mo -share/locale/lt/LC_MESSAGES/kdepimwizards.mo -share/locale/lt/LC_MESSAGES/kdeprint.mo -share/locale/lt/LC_MESSAGES/kdeprint_part.mo -share/locale/lt/LC_MESSAGES/kdeprintfax.mo -share/locale/lt/LC_MESSAGES/kdesktop.mo -share/locale/lt/LC_MESSAGES/kdessh.mo -share/locale/lt/LC_MESSAGES/kdesu.mo -share/locale/lt/LC_MESSAGES/kdesud.mo -share/locale/lt/LC_MESSAGES/kdevdesigner.mo -share/locale/lt/LC_MESSAGES/kdevelop.mo -share/locale/lt/LC_MESSAGES/kdevtipofday.mo -share/locale/lt/LC_MESSAGES/kdf.mo -share/locale/lt/LC_MESSAGES/kdgantt.mo -share/locale/lt/LC_MESSAGES/kdialog.mo -share/locale/lt/LC_MESSAGES/kdict.mo -share/locale/lt/LC_MESSAGES/kdictapplet.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/kdvi.mo -share/locale/lt/LC_MESSAGES/kedit.mo -share/locale/lt/LC_MESSAGES/keduca.mo -share/locale/lt/LC_MESSAGES/kenolaba.mo -share/locale/lt/LC_MESSAGES/kfax.mo -share/locale/lt/LC_MESSAGES/kfifteenapplet.mo -share/locale/lt/LC_MESSAGES/kfile_au.mo -share/locale/lt/LC_MESSAGES/kfile_avi.mo -share/locale/lt/LC_MESSAGES/kfile_bmp.mo -share/locale/lt/LC_MESSAGES/kfile_cert.mo -share/locale/lt/LC_MESSAGES/kfile_cpp.mo -share/locale/lt/LC_MESSAGES/kfile_dds.mo -share/locale/lt/LC_MESSAGES/kfile_deb.mo -share/locale/lt/LC_MESSAGES/kfile_desktop.mo -share/locale/lt/LC_MESSAGES/kfile_diff.mo -share/locale/lt/LC_MESSAGES/kfile_drgeo.mo -share/locale/lt/LC_MESSAGES/kfile_dvi.mo -share/locale/lt/LC_MESSAGES/kfile_exr.mo -share/locale/lt/LC_MESSAGES/kfile_flac.mo -share/locale/lt/LC_MESSAGES/kfile_folder.mo -share/locale/lt/LC_MESSAGES/kfile_font.mo -share/locale/lt/LC_MESSAGES/kfile_gif.mo -share/locale/lt/LC_MESSAGES/kfile_html.mo -share/locale/lt/LC_MESSAGES/kfile_ico.mo -share/locale/lt/LC_MESSAGES/kfile_ics.mo -share/locale/lt/LC_MESSAGES/kfile_jpeg.mo -share/locale/lt/LC_MESSAGES/kfile_kig.mo -share/locale/lt/LC_MESSAGES/kfile_lnk.mo -share/locale/lt/LC_MESSAGES/kfile_m3u.mo -share/locale/lt/LC_MESSAGES/kfile_mhtml.mo -share/locale/lt/LC_MESSAGES/kfile_mp3.mo -share/locale/lt/LC_MESSAGES/kfile_mpc.mo -share/locale/lt/LC_MESSAGES/kfile_ogg.mo -share/locale/lt/LC_MESSAGES/kfile_palm.mo -share/locale/lt/LC_MESSAGES/kfile_pcx.mo -share/locale/lt/LC_MESSAGES/kfile_pdf.mo -share/locale/lt/LC_MESSAGES/kfile_png.mo -share/locale/lt/LC_MESSAGES/kfile_pnm.mo -share/locale/lt/LC_MESSAGES/kfile_po.mo -share/locale/lt/LC_MESSAGES/kfile_ps.mo -share/locale/lt/LC_MESSAGES/kfile_rfc822.mo -share/locale/lt/LC_MESSAGES/kfile_rgb.mo -share/locale/lt/LC_MESSAGES/kfile_rpm.mo -share/locale/lt/LC_MESSAGES/kfile_sid.mo -share/locale/lt/LC_MESSAGES/kfile_tga.mo -share/locale/lt/LC_MESSAGES/kfile_theora.mo -share/locale/lt/LC_MESSAGES/kfile_tiff.mo -share/locale/lt/LC_MESSAGES/kfile_torrent.mo -share/locale/lt/LC_MESSAGES/kfile_ts.mo -share/locale/lt/LC_MESSAGES/kfile_txt.mo -share/locale/lt/LC_MESSAGES/kfile_vcf.mo -share/locale/lt/LC_MESSAGES/kfile_wav.mo -share/locale/lt/LC_MESSAGES/kfile_xbm.mo -share/locale/lt/LC_MESSAGES/kfile_xpm.mo -share/locale/lt/LC_MESSAGES/kfileaudiopreview.mo -share/locale/lt/LC_MESSAGES/kfilereplace.mo -share/locale/lt/LC_MESSAGES/kfileshare.mo -share/locale/lt/LC_MESSAGES/kfindpart.mo -share/locale/lt/LC_MESSAGES/kfloppy.mo -share/locale/lt/LC_MESSAGES/kfmclient.mo -share/locale/lt/LC_MESSAGES/kfontinst.mo -share/locale/lt/LC_MESSAGES/kfouleggs.mo -share/locale/lt/LC_MESSAGES/kgamma.mo -share/locale/lt/LC_MESSAGES/kgantt.mo -share/locale/lt/LC_MESSAGES/kget.mo -share/locale/lt/LC_MESSAGES/kghostview.mo -share/locale/lt/LC_MESSAGES/kgoldrunner.mo -share/locale/lt/LC_MESSAGES/kgpg.mo -share/locale/lt/LC_MESSAGES/kgreet_classic.mo -share/locale/lt/LC_MESSAGES/kgreet_winbind.mo -share/locale/lt/LC_MESSAGES/khangman.mo -share/locale/lt/LC_MESSAGES/khelpcenter.mo -share/locale/lt/LC_MESSAGES/khexedit.mo -share/locale/lt/LC_MESSAGES/khexedit2part.mo -share/locale/lt/LC_MESSAGES/khotkeys.mo -share/locale/lt/LC_MESSAGES/khtmlkttsd.mo -share/locale/lt/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/lt/LC_MESSAGES/kicker.mo -share/locale/lt/LC_MESSAGES/kiconedit.mo -share/locale/lt/LC_MESSAGES/kig.mo -share/locale/lt/LC_MESSAGES/kimagemapeditor.mo -share/locale/lt/LC_MESSAGES/kinetd.mo -share/locale/lt/LC_MESSAGES/kio.mo -share/locale/lt/LC_MESSAGES/kio_audiocd.mo -share/locale/lt/LC_MESSAGES/kio_devices.mo -share/locale/lt/LC_MESSAGES/kio_finger.mo -share/locale/lt/LC_MESSAGES/kio_fish.mo -share/locale/lt/LC_MESSAGES/kio_floppy.mo -share/locale/lt/LC_MESSAGES/kio_groupwise.mo -share/locale/lt/LC_MESSAGES/kio_help.mo -share/locale/lt/LC_MESSAGES/kio_imap4.mo -share/locale/lt/LC_MESSAGES/kio_lan.mo -share/locale/lt/LC_MESSAGES/kio_ldap.mo -share/locale/lt/LC_MESSAGES/kio_mac.mo -share/locale/lt/LC_MESSAGES/kio_man.mo -share/locale/lt/LC_MESSAGES/kio_media.mo -share/locale/lt/LC_MESSAGES/kio_mobile.mo -share/locale/lt/LC_MESSAGES/kio_newimap4.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_print.mo -share/locale/lt/LC_MESSAGES/kio_remote.mo -share/locale/lt/LC_MESSAGES/kio_settings.mo -share/locale/lt/LC_MESSAGES/kio_sftp.mo -share/locale/lt/LC_MESSAGES/kio_sieve.mo -share/locale/lt/LC_MESSAGES/kio_smb.mo -share/locale/lt/LC_MESSAGES/kio_smtp.mo -share/locale/lt/LC_MESSAGES/kio_svn.mo -share/locale/lt/LC_MESSAGES/kio_system.mo -share/locale/lt/LC_MESSAGES/kio_trash.mo -share/locale/lt/LC_MESSAGES/kio_zeroconf.mo -share/locale/lt/LC_MESSAGES/kioexec.mo -share/locale/lt/LC_MESSAGES/kiten.mo -share/locale/lt/LC_MESSAGES/kjobviewer.mo -share/locale/lt/LC_MESSAGES/kjots.mo -share/locale/lt/LC_MESSAGES/kjumpingcube.mo -share/locale/lt/LC_MESSAGES/klaptopdaemon.mo -share/locale/lt/LC_MESSAGES/klatin.mo -share/locale/lt/LC_MESSAGES/klegacyimport.mo -share/locale/lt/LC_MESSAGES/kleopatra.mo -share/locale/lt/LC_MESSAGES/klettres.mo -share/locale/lt/LC_MESSAGES/klickety.mo -share/locale/lt/LC_MESSAGES/klines.mo -share/locale/lt/LC_MESSAGES/klinkstatus.mo -share/locale/lt/LC_MESSAGES/klipper.mo -share/locale/lt/LC_MESSAGES/klock.mo -share/locale/lt/LC_MESSAGES/kmag.mo -share/locale/lt/LC_MESSAGES/kmahjongg.mo -share/locale/lt/LC_MESSAGES/kmail.mo -share/locale/lt/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/lt/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/lt/LC_MESSAGES/kmailcvt.mo -share/locale/lt/LC_MESSAGES/kmathapplet.mo -share/locale/lt/LC_MESSAGES/kmathtool.mo -share/locale/lt/LC_MESSAGES/kmcop.mo -share/locale/lt/LC_MESSAGES/kmenuapplet.mo -share/locale/lt/LC_MESSAGES/kmenuedit.mo -share/locale/lt/LC_MESSAGES/kmessedwords.mo -share/locale/lt/LC_MESSAGES/kmid.mo -share/locale/lt/LC_MESSAGES/kmilo_delli8k.mo -share/locale/lt/LC_MESSAGES/kmilo_generic.mo -share/locale/lt/LC_MESSAGES/kmilo_kvaio.mo -share/locale/lt/LC_MESSAGES/kmilo_powerbook.mo -share/locale/lt/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/lt/LC_MESSAGES/kmilod.mo -share/locale/lt/LC_MESSAGES/kmines.mo -share/locale/lt/LC_MESSAGES/kminipagerapplet.mo -share/locale/lt/LC_MESSAGES/kmix.mo -share/locale/lt/LC_MESSAGES/kmobile.mo -share/locale/lt/LC_MESSAGES/kmoon.mo -share/locale/lt/LC_MESSAGES/kmousetool.mo -share/locale/lt/LC_MESSAGES/kmouth.mo -share/locale/lt/LC_MESSAGES/kmplot.mo -share/locale/lt/LC_MESSAGES/kmrml.mo -share/locale/lt/LC_MESSAGES/knetattach.mo -share/locale/lt/LC_MESSAGES/knewsticker.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/kodo.mo -share/locale/lt/LC_MESSAGES/kolf.mo -share/locale/lt/LC_MESSAGES/kolourpaint.mo -share/locale/lt/LC_MESSAGES/kolourpicker.mo -share/locale/lt/LC_MESSAGES/kommander.mo -share/locale/lt/LC_MESSAGES/kompare.mo -share/locale/lt/LC_MESSAGES/konnector_dummy.mo -share/locale/lt/LC_MESSAGES/konnector_kabc.mo -share/locale/lt/LC_MESSAGES/konnector_kcal.mo -share/locale/lt/LC_MESSAGES/konnector_local.mo -share/locale/lt/LC_MESSAGES/konnector_qtopia.mo -share/locale/lt/LC_MESSAGES/konnector_remote.mo -share/locale/lt/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/lt/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/lt/LC_MESSAGES/konqsidebar_news.mo -share/locale/lt/LC_MESSAGES/konqueror.mo -share/locale/lt/LC_MESSAGES/konquest.mo -share/locale/lt/LC_MESSAGES/konsole.mo -share/locale/lt/LC_MESSAGES/konsolekalendar.mo -share/locale/lt/LC_MESSAGES/kontact.mo -share/locale/lt/LC_MESSAGES/kooka.mo -share/locale/lt/LC_MESSAGES/kopete.mo -share/locale/lt/LC_MESSAGES/korganizer.mo -share/locale/lt/LC_MESSAGES/korn.mo -share/locale/lt/LC_MESSAGES/kpackage.mo -share/locale/lt/LC_MESSAGES/kpager.mo -share/locale/lt/LC_MESSAGES/kpartapp.mo -share/locale/lt/LC_MESSAGES/kpartsaver.mo -share/locale/lt/LC_MESSAGES/kpat.mo -share/locale/lt/LC_MESSAGES/kpdf.mo -share/locale/lt/LC_MESSAGES/kpercentage.mo -share/locale/lt/LC_MESSAGES/kpersonalizer.mo -share/locale/lt/LC_MESSAGES/kpf.mo -share/locale/lt/LC_MESSAGES/kpilot.mo -share/locale/lt/LC_MESSAGES/kpoker.mo -share/locale/lt/LC_MESSAGES/kpovmodeler.mo -share/locale/lt/LC_MESSAGES/kppp.mo -share/locale/lt/LC_MESSAGES/kppplogview.mo -share/locale/lt/LC_MESSAGES/kprinter.mo -share/locale/lt/LC_MESSAGES/krandr.mo -share/locale/lt/LC_MESSAGES/krdb.mo -share/locale/lt/LC_MESSAGES/krdc.mo -share/locale/lt/LC_MESSAGES/kreadconfig.mo -share/locale/lt/LC_MESSAGES/krec.mo -share/locale/lt/LC_MESSAGES/kregexpeditor.mo -share/locale/lt/LC_MESSAGES/kres_blogging.mo -share/locale/lt/LC_MESSAGES/kres_bugzilla.mo -share/locale/lt/LC_MESSAGES/kres_exchange.mo -share/locale/lt/LC_MESSAGES/kres_featureplan.mo -share/locale/lt/LC_MESSAGES/kres_groupwise.mo -share/locale/lt/LC_MESSAGES/kres_kolab.mo -share/locale/lt/LC_MESSAGES/kres_opengroupware.mo -share/locale/lt/LC_MESSAGES/kres_remote.mo -share/locale/lt/LC_MESSAGES/kres_xmlrpc.mo -share/locale/lt/LC_MESSAGES/kreversi.mo -share/locale/lt/LC_MESSAGES/krfb.mo -share/locale/lt/LC_MESSAGES/kruler.mo -share/locale/lt/LC_MESSAGES/krunapplet.mo -share/locale/lt/LC_MESSAGES/ksame.mo -share/locale/lt/LC_MESSAGES/ksayit.mo -share/locale/lt/LC_MESSAGES/kscd.mo -share/locale/lt/LC_MESSAGES/kscreensaver.mo -share/locale/lt/LC_MESSAGES/kshisen.mo -share/locale/lt/LC_MESSAGES/ksig.mo -share/locale/lt/LC_MESSAGES/ksim.mo -share/locale/lt/LC_MESSAGES/ksirc.mo -share/locale/lt/LC_MESSAGES/ksirtet.mo -share/locale/lt/LC_MESSAGES/ksmiletris.mo -share/locale/lt/LC_MESSAGES/ksmserver.mo -share/locale/lt/LC_MESSAGES/ksnake.mo -share/locale/lt/LC_MESSAGES/ksnapshot.mo -share/locale/lt/LC_MESSAGES/ksokoban.mo -share/locale/lt/LC_MESSAGES/kspaceduel.mo -share/locale/lt/LC_MESSAGES/ksplash.mo -share/locale/lt/LC_MESSAGES/ksplashthemes.mo -share/locale/lt/LC_MESSAGES/kstars.mo -share/locale/lt/LC_MESSAGES/kstart.mo -share/locale/lt/LC_MESSAGES/kstartperf.mo -share/locale/lt/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/lt/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/lt/LC_MESSAGES/ksvgplugin.mo -share/locale/lt/LC_MESSAGES/ksync.mo -share/locale/lt/LC_MESSAGES/ksysguard.mo -share/locale/lt/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/lt/LC_MESSAGES/ksystraycmd.mo -share/locale/lt/LC_MESSAGES/ksysv.mo -share/locale/lt/LC_MESSAGES/ktalkd.mo -share/locale/lt/LC_MESSAGES/ktaskbarapplet.mo -share/locale/lt/LC_MESSAGES/kteatime.mo -share/locale/lt/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/lt/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/lt/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/lt/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/lt/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/lt/LC_MESSAGES/kthememanager.mo -share/locale/lt/LC_MESSAGES/ktimemon.mo -share/locale/lt/LC_MESSAGES/ktimer.mo -share/locale/lt/LC_MESSAGES/ktip.mo -share/locale/lt/LC_MESSAGES/ktnef.mo -share/locale/lt/LC_MESSAGES/ktouch.mo -share/locale/lt/LC_MESSAGES/ktron.mo -share/locale/lt/LC_MESSAGES/kttsd.mo -share/locale/lt/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/lt/LC_MESSAGES/kttsd_sbdplugin.mo -share/locale/lt/LC_MESSAGES/kttsd_stringreplacerplugin.mo -share/locale/lt/LC_MESSAGES/kttsd_talkerchooserplugin.mo -share/locale/lt/LC_MESSAGES/kttsd_xmltransformerplugin.mo -share/locale/lt/LC_MESSAGES/kttsjobmgr.mo -share/locale/lt/LC_MESSAGES/kttsmgr.mo -share/locale/lt/LC_MESSAGES/ktuberling.mo -share/locale/lt/LC_MESSAGES/kturtle.mo -share/locale/lt/LC_MESSAGES/ktux.mo -share/locale/lt/LC_MESSAGES/kuick_plugin.mo -share/locale/lt/LC_MESSAGES/kuickshow.mo -share/locale/lt/LC_MESSAGES/kuiviewer.mo -share/locale/lt/LC_MESSAGES/kuser.mo -share/locale/lt/LC_MESSAGES/kverbos.mo -share/locale/lt/LC_MESSAGES/kview.mo -share/locale/lt/LC_MESSAGES/kview_scale.mo -share/locale/lt/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/lt/LC_MESSAGES/kviewcanvas.mo -share/locale/lt/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/lt/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/lt/LC_MESSAGES/kviewscannerplugin.mo -share/locale/lt/LC_MESSAGES/kviewshell.mo -share/locale/lt/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/lt/LC_MESSAGES/kviewviewer.mo -share/locale/lt/LC_MESSAGES/kvoctrain.mo -share/locale/lt/LC_MESSAGES/kwalletmanager.mo -share/locale/lt/LC_MESSAGES/kwatchgnupg.mo -share/locale/lt/LC_MESSAGES/kweather.mo -share/locale/lt/LC_MESSAGES/kwifimanager.mo -share/locale/lt/LC_MESSAGES/kwin.mo -share/locale/lt/LC_MESSAGES/kwin4.mo -share/locale/lt/LC_MESSAGES/kwin_art_clients.mo -share/locale/lt/LC_MESSAGES/kwin_clients.mo -share/locale/lt/LC_MESSAGES/kwireless.mo -share/locale/lt/LC_MESSAGES/kwordquiz.mo -share/locale/lt/LC_MESSAGES/kworldclock.mo -share/locale/lt/LC_MESSAGES/kwriteconfig.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/kxsldbg.mo -share/locale/lt/LC_MESSAGES/libKTTSD.mo -share/locale/lt/LC_MESSAGES/libcalendarresources.mo -share/locale/lt/LC_MESSAGES/libdmctl.mo -share/locale/lt/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/lt/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/lt/LC_MESSAGES/libkcal.mo -share/locale/lt/LC_MESSAGES/libkcalsystem.mo -share/locale/lt/LC_MESSAGES/libkcddb.mo -share/locale/lt/LC_MESSAGES/libkdegames.mo -share/locale/lt/LC_MESSAGES/libkdehighscores.mo -share/locale/lt/LC_MESSAGES/libkdenetwork.mo -share/locale/lt/LC_MESSAGES/libkdepim.mo -share/locale/lt/LC_MESSAGES/libkholidays.mo -share/locale/lt/LC_MESSAGES/libkicker.mo -share/locale/lt/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/lt/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/lt/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/lt/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/lt/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/lt/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/lt/LC_MESSAGES/libkickermenu_tom.mo -share/locale/lt/LC_MESSAGES/libkleopatra.mo -share/locale/lt/LC_MESSAGES/libkmime.mo -share/locale/lt/LC_MESSAGES/libkonq.mo -share/locale/lt/LC_MESSAGES/libkpgp.mo -share/locale/lt/LC_MESSAGES/libkpimexchange.mo -share/locale/lt/LC_MESSAGES/libkscan.mo -share/locale/lt/LC_MESSAGES/libkscreensaver.mo -share/locale/lt/LC_MESSAGES/libksieve.mo -share/locale/lt/LC_MESSAGES/libksirtet.mo -share/locale/lt/LC_MESSAGES/libksync.mo -share/locale/lt/LC_MESSAGES/libtaskbar.mo -share/locale/lt/LC_MESSAGES/libtaskmanager.mo -share/locale/lt/LC_MESSAGES/lockout.mo -share/locale/lt/LC_MESSAGES/lskat.mo -share/locale/lt/LC_MESSAGES/lyrics.mo -share/locale/lt/LC_MESSAGES/mediaapplet.mo -share/locale/lt/LC_MESSAGES/mediacontrol.mo -share/locale/lt/LC_MESSAGES/minitoolsplugin.mo -share/locale/lt/LC_MESSAGES/multisynk.mo -share/locale/lt/LC_MESSAGES/naughtyapplet.mo -share/locale/lt/LC_MESSAGES/nexscope.mo -share/locale/lt/LC_MESSAGES/noatun.mo -share/locale/lt/LC_MESSAGES/nsplugin.mo -share/locale/lt/LC_MESSAGES/passwords.mo -share/locale/lt/LC_MESSAGES/pitchablespeed.mo -share/locale/lt/LC_MESSAGES/ppdtranslations.mo -share/locale/lt/LC_MESSAGES/privacy.mo -share/locale/lt/LC_MESSAGES/qeditor.mo -share/locale/lt/LC_MESSAGES/quanta.mo -share/locale/lt/LC_MESSAGES/quicklauncher.mo -share/locale/lt/LC_MESSAGES/rellinks.mo -share/locale/lt/LC_MESSAGES/searchbarplugin.mo -share/locale/lt/LC_MESSAGES/secpolicy.mo -share/locale/lt/LC_MESSAGES/spy.mo -share/locale/lt/LC_MESSAGES/synaescope.mo -share/locale/lt/LC_MESSAGES/taskbarextension.mo -share/locale/lt/LC_MESSAGES/timezones.mo -share/locale/lt/LC_MESSAGES/tippecanoe.mo -share/locale/lt/LC_MESSAGES/trashapplet.mo -share/locale/lt/LC_MESSAGES/tyler.mo -share/locale/lt/LC_MESSAGES/uachangerplugin.mo -share/locale/lt/LC_MESSAGES/umbrello.mo -share/locale/lt/LC_MESSAGES/useraccount.mo -share/locale/lt/LC_MESSAGES/validatorsplugin.mo -share/locale/lt/LC_MESSAGES/vimpart.mo -share/locale/lt/LC_MESSAGES/wakeup.mo -share/locale/lt/LC_MESSAGES/wavecapture.mo -share/locale/lt/LC_MESSAGES/webarchiver.mo -share/locale/lt/charset -share/locale/lt/entry.desktop -share/locale/lt/flag.png diff --git a/misc/kde4-l10n-lv/Makefile b/misc/kde4-l10n-lv/Makefile deleted file mode 100644 index a878d23e1ed2..000000000000 --- a/misc/kde4-l10n-lv/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: kde3-i18n-lv -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= 3.0.5 -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= Attic/${PORTVERSION}/src/kde-i18n -PKGNAMEPREFIX= lv- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Latvian messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -WRKSRC= ${WRKDIR}/${PORTNAME}-${PKGNAMEPREFIX:S/-//} - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-lv/distinfo b/misc/kde4-l10n-lv/distinfo deleted file mode 100644 index d519d45e2bf6..000000000000 --- a/misc/kde4-l10n-lv/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-lv-3.0.5.tar.bz2) = 6910df0d0f155e216d60cdb26c02c302 -SIZE (KDE/kde-i18n/kde-i18n-lv-3.0.5.tar.bz2) = 1567944 diff --git a/misc/kde4-l10n-lv/pkg-descr b/misc/kde4-l10n-lv/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-lv/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-lv/pkg-plist b/misc/kde4-l10n-lv/pkg-plist deleted file mode 100644 index db629d5cd35a..000000000000 --- a/misc/kde4-l10n-lv/pkg-plist +++ /dev/null @@ -1,311 +0,0 @@ -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/cervisia.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/dub.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/fontinst.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/kab3.mo -share/locale/lv/LC_MESSAGES/kaboodle.mo -share/locale/lv/LC_MESSAGES/kaccess.mo -share/locale/lv/LC_MESSAGES/kaddressbook.mo -share/locale/lv/LC_MESSAGES/kalarm.mo -share/locale/lv/LC_MESSAGES/kalarmd.mo -share/locale/lv/LC_MESSAGES/kalarmdgui.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/katehelloworld.mo -share/locale/lv/LC_MESSAGES/katehtmltools.mo -share/locale/lv/LC_MESSAGES/kateinsertcommand.mo -share/locale/lv/LC_MESSAGES/kateopenheader.mo -share/locale/lv/LC_MESSAGES/katepart.mo -share/locale/lv/LC_MESSAGES/kateprojectmanager.mo -share/locale/lv/LC_MESSAGES/katetextfilter.mo -share/locale/lv/LC_MESSAGES/katexmltools.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/kbounce.mo -share/locale/lv/LC_MESSAGES/kbugbuster.mo -share/locale/lv/LC_MESSAGES/kcalc.mo -share/locale/lv/LC_MESSAGES/kcardchooser.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/kcmkuick.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/kcmkxmlrpcd.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/kcmnic.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/kcmsmartcard.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/kdat.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/keduca.mo -share/locale/lv/LC_MESSAGES/kenolaba.mo -share/locale/lv/LC_MESSAGES/kfax.mo -share/locale/lv/LC_MESSAGES/kfile_m3u.mo -share/locale/lv/LC_MESSAGES/kfile_mp3.mo -share/locale/lv/LC_MESSAGES/kfile_ogg.mo -share/locale/lv/LC_MESSAGES/kfile_pdf.mo -share/locale/lv/LC_MESSAGES/kfile_png.mo -share/locale/lv/LC_MESSAGES/kfile_ps.mo -share/locale/lv/LC_MESSAGES/kfile_wav.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/kgantt.mo -share/locale/lv/LC_MESSAGES/kgeo.mo -share/locale/lv/LC_MESSAGES/kghostview.mo -share/locale/lv/LC_MESSAGES/khangman.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_print.mo -share/locale/lv/LC_MESSAGES/kio_sftp.mo -share/locale/lv/LC_MESSAGES/kio_smb.mo -share/locale/lv/LC_MESSAGES/kio_smbro.mo -share/locale/lv/LC_MESSAGES/kio_smtp.mo -share/locale/lv/LC_MESSAGES/kit.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/klatin.mo -share/locale/lv/LC_MESSAGES/klegacyimport.mo -share/locale/lv/LC_MESSAGES/kless.mo -share/locale/lv/LC_MESSAGES/klettres.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/kmessedwords.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/kompare.mo -share/locale/lv/LC_MESSAGES/koncd.mo -share/locale/lv/LC_MESSAGES/konqsidebar_mediaplayer.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/kpf.mo -share/locale/lv/LC_MESSAGES/kpilot.mo -share/locale/lv/LC_MESSAGES/kpixmap2bitmap.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/kregexpeditor.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/kstars.mo -share/locale/lv/LC_MESSAGES/kstart.mo -share/locale/lv/LC_MESSAGES/kstartperf.mo -share/locale/lv/LC_MESSAGES/ksync.mo -share/locale/lv/LC_MESSAGES/ksysguard.mo -share/locale/lv/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/lv/LC_MESSAGES/ksystraycmd.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/ktouch.mo -share/locale/lv/LC_MESSAGES/ktron.mo -share/locale/lv/LC_MESSAGES/ktuberling.mo -share/locale/lv/LC_MESSAGES/kuick_plugin.mo -share/locale/lv/LC_MESSAGES/kuickshow.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/kvoctrain.mo -share/locale/lv/LC_MESSAGES/kwin.mo -share/locale/lv/LC_MESSAGES/kwin4.mo -share/locale/lv/LC_MESSAGES/kwin_b2_config.mo -share/locale/lv/LC_MESSAGES/kwin_cde_config.mo -share/locale/lv/LC_MESSAGES/kwin_default_config.mo -share/locale/lv/LC_MESSAGES/kwin_glow_config.mo -share/locale/lv/LC_MESSAGES/kwin_icewm_config.mo -share/locale/lv/LC_MESSAGES/kwin_modernsys_config.mo -share/locale/lv/LC_MESSAGES/kwin_quartz_config.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/libkcal.mo -share/locale/lv/LC_MESSAGES/libkdegames.mo -share/locale/lv/LC_MESSAGES/libkdehighscores.mo -share/locale/lv/LC_MESSAGES/libkdenetwork.mo -share/locale/lv/LC_MESSAGES/libkicker.mo -share/locale/lv/LC_MESSAGES/libkickermenu_kdeprint.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/libtaskbar.mo -share/locale/lv/LC_MESSAGES/libtaskmanager.mo -share/locale/lv/LC_MESSAGES/lockout.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 -@dirrm share/locale/lv/LC_MESSAGES -@dirrm share/locale/lv diff --git a/misc/kde4-l10n-mk/Makefile b/misc/kde4-l10n-mk/Makefile deleted file mode 100644 index 7bbe451f8b8d..000000000000 --- a/misc/kde4-l10n-mk/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-mk -# Date created: 15 July 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= mk- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Macedonian messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-mk/distinfo b/misc/kde4-l10n-mk/distinfo deleted file mode 100644 index 9d3fb5247a5c..000000000000 --- a/misc/kde4-l10n-mk/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-mk-3.4.2.tar.bz2) = da100cfd29fed0134dc29d37d2dccd24 -SIZE (KDE/kde-i18n/kde-i18n-mk-3.4.2.tar.bz2) = 1239241 diff --git a/misc/kde4-l10n-mk/pkg-descr b/misc/kde4-l10n-mk/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-mk/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-mk/pkg-plist b/misc/kde4-l10n-mk/pkg-plist deleted file mode 100644 index 4ef4e8c69423..000000000000 --- a/misc/kde4-l10n-mk/pkg-plist +++ /dev/null @@ -1,405 +0,0 @@ -share/locale/mk/LC_MESSAGES/amor.mo -share/locale/mk/LC_MESSAGES/appletproxy.mo -share/locale/mk/LC_MESSAGES/ark.mo -share/locale/mk/LC_MESSAGES/artsbuilder.mo -share/locale/mk/LC_MESSAGES/artscontrol.mo -share/locale/mk/LC_MESSAGES/artsmodules.mo -share/locale/mk/LC_MESSAGES/atlantik.mo -share/locale/mk/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/mk/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/mk/LC_MESSAGES/childpanelextension.mo -share/locale/mk/LC_MESSAGES/clockapplet.mo -share/locale/mk/LC_MESSAGES/cupsdconf.mo -share/locale/mk/LC_MESSAGES/dcoprss.mo -share/locale/mk/LC_MESSAGES/devicesapplet.mo -share/locale/mk/LC_MESSAGES/display.mo -share/locale/mk/LC_MESSAGES/dockbarextension.mo -share/locale/mk/LC_MESSAGES/drkonqi.mo -share/locale/mk/LC_MESSAGES/extensionproxy.mo -share/locale/mk/LC_MESSAGES/filetypes.mo -share/locale/mk/LC_MESSAGES/fontinst.mo -share/locale/mk/LC_MESSAGES/htmlsearch.mo -share/locale/mk/LC_MESSAGES/irkick.mo -share/locale/mk/LC_MESSAGES/joystick.mo -share/locale/mk/LC_MESSAGES/juk.mo -share/locale/mk/LC_MESSAGES/kabc2mutt.mo -share/locale/mk/LC_MESSAGES/kabc_dir.mo -share/locale/mk/LC_MESSAGES/kabc_file.mo -share/locale/mk/LC_MESSAGES/kabc_ldap.mo -share/locale/mk/LC_MESSAGES/kabc_ldapkio.mo -share/locale/mk/LC_MESSAGES/kabc_net.mo -share/locale/mk/LC_MESSAGES/kabc_sql.mo -share/locale/mk/LC_MESSAGES/kabcformat_binary.mo -share/locale/mk/LC_MESSAGES/kaboodle.mo -share/locale/mk/LC_MESSAGES/kaccess.mo -share/locale/mk/LC_MESSAGES/kalzium.mo -share/locale/mk/LC_MESSAGES/kappfinder.mo -share/locale/mk/LC_MESSAGES/karm.mo -share/locale/mk/LC_MESSAGES/kasbarextension.mo -share/locale/mk/LC_MESSAGES/kasteroids.mo -share/locale/mk/LC_MESSAGES/kate.mo -share/locale/mk/LC_MESSAGES/katedefaultproject.mo -share/locale/mk/LC_MESSAGES/katepart.mo -share/locale/mk/LC_MESSAGES/katomic.mo -share/locale/mk/LC_MESSAGES/kaudiocreator.mo -share/locale/mk/LC_MESSAGES/kbackgammon.mo -share/locale/mk/LC_MESSAGES/kbattleship.mo -share/locale/mk/LC_MESSAGES/kblackbox.mo -share/locale/mk/LC_MESSAGES/kbounce.mo -share/locale/mk/LC_MESSAGES/kcalc.mo -share/locale/mk/LC_MESSAGES/kcharselect.mo -share/locale/mk/LC_MESSAGES/kcharselectapplet.mo -share/locale/mk/LC_MESSAGES/kcm_krfb.mo -share/locale/mk/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/mk/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/mk/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/mk/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/mk/LC_MESSAGES/kcmaccess.mo -share/locale/mk/LC_MESSAGES/kcmaccessibility.mo -share/locale/mk/LC_MESSAGES/kcmarts.mo -share/locale/mk/LC_MESSAGES/kcmaudiocd.mo -share/locale/mk/LC_MESSAGES/kcmbackground.mo -share/locale/mk/LC_MESSAGES/kcmbell.mo -share/locale/mk/LC_MESSAGES/kcmcddb.mo -share/locale/mk/LC_MESSAGES/kcmcgi.mo -share/locale/mk/LC_MESSAGES/kcmcolors.mo -share/locale/mk/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/mk/LC_MESSAGES/kcmcrypto.mo -share/locale/mk/LC_MESSAGES/kcmcss.mo -share/locale/mk/LC_MESSAGES/kcmemail.mo -share/locale/mk/LC_MESSAGES/kcmenergy.mo -share/locale/mk/LC_MESSAGES/kcmfonts.mo -share/locale/mk/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/mk/LC_MESSAGES/kcmicons.mo -share/locale/mk/LC_MESSAGES/kcminfo.mo -share/locale/mk/LC_MESSAGES/kcminput.mo -share/locale/mk/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/mk/LC_MESSAGES/kcmkamera.mo -share/locale/mk/LC_MESSAGES/kcmkclock.mo -share/locale/mk/LC_MESSAGES/kcmkded.mo -share/locale/mk/LC_MESSAGES/kcmkeys.mo -share/locale/mk/LC_MESSAGES/kcmkicker.mo -share/locale/mk/LC_MESSAGES/kcmkio.mo -share/locale/mk/LC_MESSAGES/kcmkmix.mo -share/locale/mk/LC_MESSAGES/kcmkonq.mo -share/locale/mk/LC_MESSAGES/kcmkonqhtml.mo -share/locale/mk/LC_MESSAGES/kcmkonsole.mo -share/locale/mk/LC_MESSAGES/kcmktalkd.mo -share/locale/mk/LC_MESSAGES/kcmkurifilt.mo -share/locale/mk/LC_MESSAGES/kcmkvaio.mo -share/locale/mk/LC_MESSAGES/kcmkwallet.mo -share/locale/mk/LC_MESSAGES/kcmkwindecoration.mo -share/locale/mk/LC_MESSAGES/kcmkwinrules.mo -share/locale/mk/LC_MESSAGES/kcmkwintheme.mo -share/locale/mk/LC_MESSAGES/kcmkwm.mo -share/locale/mk/LC_MESSAGES/kcmkxmlrpcd.mo -share/locale/mk/LC_MESSAGES/kcmlanbrowser.mo -share/locale/mk/LC_MESSAGES/kcmlaptop.mo -share/locale/mk/LC_MESSAGES/kcmlaunch.mo -share/locale/mk/LC_MESSAGES/kcmlayout.mo -share/locale/mk/LC_MESSAGES/kcmlilo.mo -share/locale/mk/LC_MESSAGES/kcmlirc.mo -share/locale/mk/LC_MESSAGES/kcmlocale.mo -share/locale/mk/LC_MESSAGES/kcmmidi.mo -share/locale/mk/LC_MESSAGES/kcmnic.mo -share/locale/mk/LC_MESSAGES/kcmnotify.mo -share/locale/mk/LC_MESSAGES/kcmperformance.mo -share/locale/mk/LC_MESSAGES/kcmprintmgr.mo -share/locale/mk/LC_MESSAGES/kcmsamba.mo -share/locale/mk/LC_MESSAGES/kcmscreensaver.mo -share/locale/mk/LC_MESSAGES/kcmshell.mo -share/locale/mk/LC_MESSAGES/kcmsmartcard.mo -share/locale/mk/LC_MESSAGES/kcmsmserver.mo -share/locale/mk/LC_MESSAGES/kcmsocks.mo -share/locale/mk/LC_MESSAGES/kcmspellchecking.mo -share/locale/mk/LC_MESSAGES/kcmstyle.mo -share/locale/mk/LC_MESSAGES/kcmtaskbar.mo -share/locale/mk/LC_MESSAGES/kcmthinkpad.mo -share/locale/mk/LC_MESSAGES/kcmusb.mo -share/locale/mk/LC_MESSAGES/kcmview1394.mo -share/locale/mk/LC_MESSAGES/kcmwifi.mo -share/locale/mk/LC_MESSAGES/kcmxinerama.mo -share/locale/mk/LC_MESSAGES/kcoloredit.mo -share/locale/mk/LC_MESSAGES/kcontrol.mo -share/locale/mk/LC_MESSAGES/kcron.mo -share/locale/mk/LC_MESSAGES/kdat.mo -share/locale/mk/LC_MESSAGES/kdcop.mo -share/locale/mk/LC_MESSAGES/kdebugdialog.mo -share/locale/mk/LC_MESSAGES/kdelibs.mo -share/locale/mk/LC_MESSAGES/kdelibs_colors.mo -share/locale/mk/LC_MESSAGES/kdelirc.mo -share/locale/mk/LC_MESSAGES/kdepasswd.mo -share/locale/mk/LC_MESSAGES/kdeprint.mo -share/locale/mk/LC_MESSAGES/kdeprint_part.mo -share/locale/mk/LC_MESSAGES/kdeprintfax.mo -share/locale/mk/LC_MESSAGES/kdesktop.mo -share/locale/mk/LC_MESSAGES/kdessh.mo -share/locale/mk/LC_MESSAGES/kdesu.mo -share/locale/mk/LC_MESSAGES/kdesud.mo -share/locale/mk/LC_MESSAGES/kdf.mo -share/locale/mk/LC_MESSAGES/kdialog.mo -share/locale/mk/LC_MESSAGES/kdict.mo -share/locale/mk/LC_MESSAGES/kdictapplet.mo -share/locale/mk/LC_MESSAGES/kdmchooser.mo -share/locale/mk/LC_MESSAGES/kdmconfig.mo -share/locale/mk/LC_MESSAGES/kdmgreet.mo -share/locale/mk/LC_MESSAGES/kdvi.mo -share/locale/mk/LC_MESSAGES/kedit.mo -share/locale/mk/LC_MESSAGES/keduca.mo -share/locale/mk/LC_MESSAGES/kenolaba.mo -share/locale/mk/LC_MESSAGES/kfax.mo -share/locale/mk/LC_MESSAGES/kfifteenapplet.mo -share/locale/mk/LC_MESSAGES/kfile_au.mo -share/locale/mk/LC_MESSAGES/kfile_avi.mo -share/locale/mk/LC_MESSAGES/kfile_bmp.mo -share/locale/mk/LC_MESSAGES/kfile_cpp.mo -share/locale/mk/LC_MESSAGES/kfile_dds.mo -share/locale/mk/LC_MESSAGES/kfile_deb.mo -share/locale/mk/LC_MESSAGES/kfile_diff.mo -share/locale/mk/LC_MESSAGES/kfile_dvi.mo -share/locale/mk/LC_MESSAGES/kfile_exr.mo -share/locale/mk/LC_MESSAGES/kfile_flac.mo -share/locale/mk/LC_MESSAGES/kfile_font.mo -share/locale/mk/LC_MESSAGES/kfile_gif.mo -share/locale/mk/LC_MESSAGES/kfile_ico.mo -share/locale/mk/LC_MESSAGES/kfile_jpeg.mo -share/locale/mk/LC_MESSAGES/kfile_m3u.mo -share/locale/mk/LC_MESSAGES/kfile_mp3.mo -share/locale/mk/LC_MESSAGES/kfile_mpc.mo -share/locale/mk/LC_MESSAGES/kfile_ogg.mo -share/locale/mk/LC_MESSAGES/kfile_palm.mo -share/locale/mk/LC_MESSAGES/kfile_pcx.mo -share/locale/mk/LC_MESSAGES/kfile_pdf.mo -share/locale/mk/LC_MESSAGES/kfile_png.mo -share/locale/mk/LC_MESSAGES/kfile_pnm.mo -share/locale/mk/LC_MESSAGES/kfile_po.mo -share/locale/mk/LC_MESSAGES/kfile_ps.mo -share/locale/mk/LC_MESSAGES/kfile_rfc822.mo -share/locale/mk/LC_MESSAGES/kfile_rgb.mo -share/locale/mk/LC_MESSAGES/kfile_rpm.mo -share/locale/mk/LC_MESSAGES/kfile_sid.mo -share/locale/mk/LC_MESSAGES/kfile_tga.mo -share/locale/mk/LC_MESSAGES/kfile_theora.mo -share/locale/mk/LC_MESSAGES/kfile_tiff.mo -share/locale/mk/LC_MESSAGES/kfile_vcf.mo -share/locale/mk/LC_MESSAGES/kfile_wav.mo -share/locale/mk/LC_MESSAGES/kfile_xbm.mo -share/locale/mk/LC_MESSAGES/kfile_xpm.mo -share/locale/mk/LC_MESSAGES/kfileaudiopreview.mo -share/locale/mk/LC_MESSAGES/kfileshare.mo -share/locale/mk/LC_MESSAGES/kfindpart.mo -share/locale/mk/LC_MESSAGES/kfloppy.mo -share/locale/mk/LC_MESSAGES/kfmclient.mo -share/locale/mk/LC_MESSAGES/kfontinst.mo -share/locale/mk/LC_MESSAGES/kfouleggs.mo -share/locale/mk/LC_MESSAGES/kgamma.mo -share/locale/mk/LC_MESSAGES/kget.mo -share/locale/mk/LC_MESSAGES/kghostview.mo -share/locale/mk/LC_MESSAGES/kgoldrunner.mo -share/locale/mk/LC_MESSAGES/kgpg.mo -share/locale/mk/LC_MESSAGES/kgreet_classic.mo -share/locale/mk/LC_MESSAGES/khangman.mo -share/locale/mk/LC_MESSAGES/khelpcenter.mo -share/locale/mk/LC_MESSAGES/khexedit.mo -share/locale/mk/LC_MESSAGES/khotkeys.mo -share/locale/mk/LC_MESSAGES/kicker.mo -share/locale/mk/LC_MESSAGES/kiconedit.mo -share/locale/mk/LC_MESSAGES/kinetd.mo -share/locale/mk/LC_MESSAGES/kio.mo -share/locale/mk/LC_MESSAGES/kio_audiocd.mo -share/locale/mk/LC_MESSAGES/kio_devices.mo -share/locale/mk/LC_MESSAGES/kio_finger.mo -share/locale/mk/LC_MESSAGES/kio_fish.mo -share/locale/mk/LC_MESSAGES/kio_floppy.mo -share/locale/mk/LC_MESSAGES/kio_help.mo -share/locale/mk/LC_MESSAGES/kio_lan.mo -share/locale/mk/LC_MESSAGES/kio_ldap.mo -share/locale/mk/LC_MESSAGES/kio_mac.mo -share/locale/mk/LC_MESSAGES/kio_man.mo -share/locale/mk/LC_MESSAGES/kio_media.mo -share/locale/mk/LC_MESSAGES/kio_mobile.mo -share/locale/mk/LC_MESSAGES/kio_newimap4.mo -share/locale/mk/LC_MESSAGES/kio_nfs.mo -share/locale/mk/LC_MESSAGES/kio_nntp.mo -share/locale/mk/LC_MESSAGES/kio_pop3.mo -share/locale/mk/LC_MESSAGES/kio_print.mo -share/locale/mk/LC_MESSAGES/kio_remote.mo -share/locale/mk/LC_MESSAGES/kio_settings.mo -share/locale/mk/LC_MESSAGES/kio_sftp.mo -share/locale/mk/LC_MESSAGES/kio_smb.mo -share/locale/mk/LC_MESSAGES/kio_smtp.mo -share/locale/mk/LC_MESSAGES/kio_system.mo -share/locale/mk/LC_MESSAGES/kio_trash.mo -share/locale/mk/LC_MESSAGES/kioexec.mo -share/locale/mk/LC_MESSAGES/kiten.mo -share/locale/mk/LC_MESSAGES/kjobviewer.mo -share/locale/mk/LC_MESSAGES/kjots.mo -share/locale/mk/LC_MESSAGES/kjumpingcube.mo -share/locale/mk/LC_MESSAGES/klaptopdaemon.mo -share/locale/mk/LC_MESSAGES/klegacyimport.mo -share/locale/mk/LC_MESSAGES/klettres.mo -share/locale/mk/LC_MESSAGES/klickety.mo -share/locale/mk/LC_MESSAGES/klines.mo -share/locale/mk/LC_MESSAGES/klipper.mo -share/locale/mk/LC_MESSAGES/kmahjongg.mo -share/locale/mk/LC_MESSAGES/kmail.mo -share/locale/mk/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/mk/LC_MESSAGES/kmathtool.mo -share/locale/mk/LC_MESSAGES/kmcop.mo -share/locale/mk/LC_MESSAGES/kmenuapplet.mo -share/locale/mk/LC_MESSAGES/kmenuedit.mo -share/locale/mk/LC_MESSAGES/kmessedwords.mo -share/locale/mk/LC_MESSAGES/kmid.mo -share/locale/mk/LC_MESSAGES/kmilo_generic.mo -share/locale/mk/LC_MESSAGES/kmilo_kvaio.mo -share/locale/mk/LC_MESSAGES/kmilo_powerbook.mo -share/locale/mk/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/mk/LC_MESSAGES/kmilod.mo -share/locale/mk/LC_MESSAGES/kmines.mo -share/locale/mk/LC_MESSAGES/kminipagerapplet.mo -share/locale/mk/LC_MESSAGES/kmix.mo -share/locale/mk/LC_MESSAGES/kmoon.mo -share/locale/mk/LC_MESSAGES/kmplot.mo -share/locale/mk/LC_MESSAGES/kmrml.mo -share/locale/mk/LC_MESSAGES/knetattach.mo -share/locale/mk/LC_MESSAGES/knewsticker.mo -share/locale/mk/LC_MESSAGES/knotes.mo -share/locale/mk/LC_MESSAGES/knotify.mo -share/locale/mk/LC_MESSAGES/kodo.mo -share/locale/mk/LC_MESSAGES/kolf.mo -share/locale/mk/LC_MESSAGES/kolourpaint.mo -share/locale/mk/LC_MESSAGES/kompare.mo -share/locale/mk/LC_MESSAGES/konqueror.mo -share/locale/mk/LC_MESSAGES/konquest.mo -share/locale/mk/LC_MESSAGES/konsole.mo -share/locale/mk/LC_MESSAGES/kooka.mo -share/locale/mk/LC_MESSAGES/kpackage.mo -share/locale/mk/LC_MESSAGES/kpager.mo -share/locale/mk/LC_MESSAGES/kpartapp.mo -share/locale/mk/LC_MESSAGES/kpat.mo -share/locale/mk/LC_MESSAGES/kpdf.mo -share/locale/mk/LC_MESSAGES/kpercentage.mo -share/locale/mk/LC_MESSAGES/kpersonalizer.mo -share/locale/mk/LC_MESSAGES/kpf.mo -share/locale/mk/LC_MESSAGES/kpoker.mo -share/locale/mk/LC_MESSAGES/kpovmodeler.mo -share/locale/mk/LC_MESSAGES/kppp.mo -share/locale/mk/LC_MESSAGES/kppplogview.mo -share/locale/mk/LC_MESSAGES/kprinter.mo -share/locale/mk/LC_MESSAGES/krandr.mo -share/locale/mk/LC_MESSAGES/krdb.mo -share/locale/mk/LC_MESSAGES/krdc.mo -share/locale/mk/LC_MESSAGES/kreadconfig.mo -share/locale/mk/LC_MESSAGES/krec.mo -share/locale/mk/LC_MESSAGES/kregexpeditor.mo -share/locale/mk/LC_MESSAGES/kres_exchange.mo -share/locale/mk/LC_MESSAGES/kres_remote.mo -share/locale/mk/LC_MESSAGES/kres_xmlrpc.mo -share/locale/mk/LC_MESSAGES/kreversi.mo -share/locale/mk/LC_MESSAGES/krfb.mo -share/locale/mk/LC_MESSAGES/kruler.mo -share/locale/mk/LC_MESSAGES/krunapplet.mo -share/locale/mk/LC_MESSAGES/ksame.mo -share/locale/mk/LC_MESSAGES/kscd.mo -share/locale/mk/LC_MESSAGES/kscreensaver.mo -share/locale/mk/LC_MESSAGES/kshisen.mo -share/locale/mk/LC_MESSAGES/ksim.mo -share/locale/mk/LC_MESSAGES/ksirc.mo -share/locale/mk/LC_MESSAGES/ksirtet.mo -share/locale/mk/LC_MESSAGES/ksmiletris.mo -share/locale/mk/LC_MESSAGES/ksmserver.mo -share/locale/mk/LC_MESSAGES/ksnake.mo -share/locale/mk/LC_MESSAGES/ksnapshot.mo -share/locale/mk/LC_MESSAGES/ksokoban.mo -share/locale/mk/LC_MESSAGES/kspaceduel.mo -share/locale/mk/LC_MESSAGES/ksplash.mo -share/locale/mk/LC_MESSAGES/ksplashthemes.mo -share/locale/mk/LC_MESSAGES/kstars.mo -share/locale/mk/LC_MESSAGES/kstart.mo -share/locale/mk/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/mk/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/mk/LC_MESSAGES/ksvgplugin.mo -share/locale/mk/LC_MESSAGES/ksysguard.mo -share/locale/mk/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/mk/LC_MESSAGES/ksystraycmd.mo -share/locale/mk/LC_MESSAGES/ksysv.mo -share/locale/mk/LC_MESSAGES/ktalkd.mo -share/locale/mk/LC_MESSAGES/ktaskbarapplet.mo -share/locale/mk/LC_MESSAGES/kteatime.mo -share/locale/mk/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/mk/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/mk/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/mk/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/mk/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/mk/LC_MESSAGES/kthememanager.mo -share/locale/mk/LC_MESSAGES/ktimer.mo -share/locale/mk/LC_MESSAGES/ktip.mo -share/locale/mk/LC_MESSAGES/ktouch.mo -share/locale/mk/LC_MESSAGES/ktron.mo -share/locale/mk/LC_MESSAGES/ktuberling.mo -share/locale/mk/LC_MESSAGES/ktux.mo -share/locale/mk/LC_MESSAGES/kuickshow.mo -share/locale/mk/LC_MESSAGES/kuser.mo -share/locale/mk/LC_MESSAGES/kverbos.mo -share/locale/mk/LC_MESSAGES/kview.mo -share/locale/mk/LC_MESSAGES/kview_scale.mo -share/locale/mk/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/mk/LC_MESSAGES/kviewcanvas.mo -share/locale/mk/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/mk/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/mk/LC_MESSAGES/kviewscannerplugin.mo -share/locale/mk/LC_MESSAGES/kviewshell.mo -share/locale/mk/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/mk/LC_MESSAGES/kviewviewer.mo -share/locale/mk/LC_MESSAGES/kvoctrain.mo -share/locale/mk/LC_MESSAGES/kwalletmanager.mo -share/locale/mk/LC_MESSAGES/kweather.mo -share/locale/mk/LC_MESSAGES/kwifimanager.mo -share/locale/mk/LC_MESSAGES/kwin.mo -share/locale/mk/LC_MESSAGES/kwin4.mo -share/locale/mk/LC_MESSAGES/kwin_clients.mo -share/locale/mk/LC_MESSAGES/kwireless.mo -share/locale/mk/LC_MESSAGES/kworldclock.mo -share/locale/mk/LC_MESSAGES/kwriteconfig.mo -share/locale/mk/LC_MESSAGES/kxkb.mo -share/locale/mk/LC_MESSAGES/kxmlrpcd.mo -share/locale/mk/LC_MESSAGES/libcalendarresources.mo -share/locale/mk/LC_MESSAGES/libkcalsystem.mo -share/locale/mk/LC_MESSAGES/libkcddb.mo -share/locale/mk/LC_MESSAGES/libkdegames.mo -share/locale/mk/LC_MESSAGES/libkdehighscores.mo -share/locale/mk/LC_MESSAGES/libkdenetwork.mo -share/locale/mk/LC_MESSAGES/libkdepim.mo -share/locale/mk/LC_MESSAGES/libkicker.mo -share/locale/mk/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/mk/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/mk/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/mk/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/mk/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/mk/LC_MESSAGES/libkickermenu_tom.mo -share/locale/mk/LC_MESSAGES/libkonq.mo -share/locale/mk/LC_MESSAGES/libkpimexchange.mo -share/locale/mk/LC_MESSAGES/libkscan.mo -share/locale/mk/LC_MESSAGES/libkscreensaver.mo -share/locale/mk/LC_MESSAGES/libksirtet.mo -share/locale/mk/LC_MESSAGES/libksync.mo -share/locale/mk/LC_MESSAGES/libtaskbar.mo -share/locale/mk/LC_MESSAGES/libtaskmanager.mo -share/locale/mk/LC_MESSAGES/lockout.mo -share/locale/mk/LC_MESSAGES/lskat.mo -share/locale/mk/LC_MESSAGES/mediaapplet.mo -share/locale/mk/LC_MESSAGES/naughtyapplet.mo -share/locale/mk/LC_MESSAGES/noatun.mo -share/locale/mk/LC_MESSAGES/nsplugin.mo -share/locale/mk/LC_MESSAGES/passwords.mo -share/locale/mk/LC_MESSAGES/ppdtranslations.mo -share/locale/mk/LC_MESSAGES/privacy.mo -share/locale/mk/LC_MESSAGES/quicklauncher.mo -share/locale/mk/LC_MESSAGES/secpolicy.mo -share/locale/mk/LC_MESSAGES/taskbarextension.mo -share/locale/mk/LC_MESSAGES/timezones.mo -share/locale/mk/LC_MESSAGES/trashapplet.mo -share/locale/mk/LC_MESSAGES/useraccount.mo -share/locale/mk/charset -share/locale/mk/entry.desktop -share/locale/mk/flag.png diff --git a/misc/kde4-l10n-nb/Makefile b/misc/kde4-l10n-nb/Makefile deleted file mode 100644 index a141541edef1..000000000000 --- a/misc/kde4-l10n-nb/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-nb -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= nb- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Norwegian Bokmål messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-nb/distinfo b/misc/kde4-l10n-nb/distinfo deleted file mode 100644 index dc1b26f24f96..000000000000 --- a/misc/kde4-l10n-nb/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-nb-3.4.2.tar.bz2) = ef20071e63fe76fc6c7e116bd14ebbd5 -SIZE (KDE/kde-i18n/kde-i18n-nb-3.4.2.tar.bz2) = 1967094 diff --git a/misc/kde4-l10n-nb/pkg-descr b/misc/kde4-l10n-nb/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-nb/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-nb/pkg-plist b/misc/kde4-l10n-nb/pkg-plist deleted file mode 100644 index b0758e3e27cb..000000000000 --- a/misc/kde4-l10n-nb/pkg-plist +++ /dev/null @@ -1,582 +0,0 @@ -share/apps/khangman/data/nb/animals.kvtml -share/apps/khangman/data/nb/easy.kvtml -share/apps/khangman/data/nb/hard.kvtml -share/apps/khangman/data/nb/medium.kvtml -share/apps/khangman/nb.txt -share/locale/nb/LC_MESSAGES/akregator.mo -share/locale/nb/LC_MESSAGES/akregator_konqplugin.mo -share/locale/nb/LC_MESSAGES/alsaplayerui.mo -share/locale/nb/LC_MESSAGES/amor.mo -share/locale/nb/LC_MESSAGES/appletproxy.mo -share/locale/nb/LC_MESSAGES/ark.mo -share/locale/nb/LC_MESSAGES/ark_plugin.mo -share/locale/nb/LC_MESSAGES/artsbuilder.mo -share/locale/nb/LC_MESSAGES/artscontrol.mo -share/locale/nb/LC_MESSAGES/artsmodules.mo -share/locale/nb/LC_MESSAGES/atlantik.mo -share/locale/nb/LC_MESSAGES/atlantikdesigner.mo -share/locale/nb/LC_MESSAGES/audiorename_plugin.mo -share/locale/nb/LC_MESSAGES/autorefresh.mo -share/locale/nb/LC_MESSAGES/babelfish.mo -share/locale/nb/LC_MESSAGES/cervisia.mo -share/locale/nb/LC_MESSAGES/charlatanui.mo -share/locale/nb/LC_MESSAGES/childpanelextension.mo -share/locale/nb/LC_MESSAGES/clockapplet.mo -share/locale/nb/LC_MESSAGES/crashesplugin.mo -share/locale/nb/LC_MESSAGES/cupsdconf.mo -share/locale/nb/LC_MESSAGES/cvsservice.mo -share/locale/nb/LC_MESSAGES/dcoprss.mo -share/locale/nb/LC_MESSAGES/devicesapplet.mo -share/locale/nb/LC_MESSAGES/dirfilterplugin.mo -share/locale/nb/LC_MESSAGES/display.mo -share/locale/nb/LC_MESSAGES/dockbarextension.mo -share/locale/nb/LC_MESSAGES/domtreeviewer.mo -share/locale/nb/LC_MESSAGES/drkonqi.mo -share/locale/nb/LC_MESSAGES/dub.mo -share/locale/nb/LC_MESSAGES/extensionproxy.mo -share/locale/nb/LC_MESSAGES/ffrs.mo -share/locale/nb/LC_MESSAGES/filetypes.mo -share/locale/nb/LC_MESSAGES/fontinst.mo -share/locale/nb/LC_MESSAGES/fsview.mo -share/locale/nb/LC_MESSAGES/htmlsearch.mo -share/locale/nb/LC_MESSAGES/imagerename_plugin.mo -share/locale/nb/LC_MESSAGES/imgalleryplugin.mo -share/locale/nb/LC_MESSAGES/irkick.mo -share/locale/nb/LC_MESSAGES/jefferson.mo -share/locale/nb/LC_MESSAGES/joystick.mo -share/locale/nb/LC_MESSAGES/juk.mo -share/locale/nb/LC_MESSAGES/kabc2mutt.mo -share/locale/nb/LC_MESSAGES/kabc_dir.mo -share/locale/nb/LC_MESSAGES/kabc_file.mo -share/locale/nb/LC_MESSAGES/kabc_ldap.mo -share/locale/nb/LC_MESSAGES/kabc_ldapkio.mo -share/locale/nb/LC_MESSAGES/kabc_net.mo -share/locale/nb/LC_MESSAGES/kabc_slox.mo -share/locale/nb/LC_MESSAGES/kabc_sql.mo -share/locale/nb/LC_MESSAGES/kabcformat_binary.mo -share/locale/nb/LC_MESSAGES/kaboodle.mo -share/locale/nb/LC_MESSAGES/kaccess.mo -share/locale/nb/LC_MESSAGES/kaddressbook.mo -share/locale/nb/LC_MESSAGES/kalarm.mo -share/locale/nb/LC_MESSAGES/kalzium.mo -share/locale/nb/LC_MESSAGES/kandy.mo -share/locale/nb/LC_MESSAGES/kappfinder.mo -share/locale/nb/LC_MESSAGES/karm.mo -share/locale/nb/LC_MESSAGES/kasbarextension.mo -share/locale/nb/LC_MESSAGES/kasteroids.mo -share/locale/nb/LC_MESSAGES/kate.mo -share/locale/nb/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/nb/LC_MESSAGES/katedefaultproject.mo -share/locale/nb/LC_MESSAGES/katefiletemplates.mo -share/locale/nb/LC_MESSAGES/katefll_initplugin.mo -share/locale/nb/LC_MESSAGES/katefll_plugin.mo -share/locale/nb/LC_MESSAGES/katehelloworld.mo -share/locale/nb/LC_MESSAGES/katehtmltools.mo -share/locale/nb/LC_MESSAGES/kateinsertcommand.mo -share/locale/nb/LC_MESSAGES/katekjswrapper.mo -share/locale/nb/LC_MESSAGES/katekttsd.mo -share/locale/nb/LC_MESSAGES/katemake.mo -share/locale/nb/LC_MESSAGES/katemodeline.mo -share/locale/nb/LC_MESSAGES/kateopenheader.mo -share/locale/nb/LC_MESSAGES/katepart.mo -share/locale/nb/LC_MESSAGES/katepartkttsd.mo -share/locale/nb/LC_MESSAGES/kateprojectmanager.mo -share/locale/nb/LC_MESSAGES/katepybrowse.mo -share/locale/nb/LC_MESSAGES/katesnippets.mo -share/locale/nb/LC_MESSAGES/katespell.mo -share/locale/nb/LC_MESSAGES/katetabbarextension.mo -share/locale/nb/LC_MESSAGES/katetextfilter.mo -share/locale/nb/LC_MESSAGES/katexmlcheck.mo -share/locale/nb/LC_MESSAGES/katexmltools.mo -share/locale/nb/LC_MESSAGES/katomic.mo -share/locale/nb/LC_MESSAGES/kaudiocreator.mo -share/locale/nb/LC_MESSAGES/kbabel.mo -share/locale/nb/LC_MESSAGES/kbackgammon.mo -share/locale/nb/LC_MESSAGES/kbattleship.mo -share/locale/nb/LC_MESSAGES/kbinaryclock.mo -share/locale/nb/LC_MESSAGES/kblackbox.mo -share/locale/nb/LC_MESSAGES/kbounce.mo -share/locale/nb/LC_MESSAGES/kbruch.mo -share/locale/nb/LC_MESSAGES/kbugbuster.mo -share/locale/nb/LC_MESSAGES/kcachegrind.mo -share/locale/nb/LC_MESSAGES/kcalc.mo -share/locale/nb/LC_MESSAGES/kcharselect.mo -share/locale/nb/LC_MESSAGES/kcharselectapplet.mo -share/locale/nb/LC_MESSAGES/kcm_krfb.mo -share/locale/nb/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/nb/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/nb/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/nb/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/nb/LC_MESSAGES/kcmaccess.mo -share/locale/nb/LC_MESSAGES/kcmaccessibility.mo -share/locale/nb/LC_MESSAGES/kcmarts.mo -share/locale/nb/LC_MESSAGES/kcmaudiocd.mo -share/locale/nb/LC_MESSAGES/kcmbackground.mo -share/locale/nb/LC_MESSAGES/kcmbell.mo -share/locale/nb/LC_MESSAGES/kcmcddb.mo -share/locale/nb/LC_MESSAGES/kcmcgi.mo -share/locale/nb/LC_MESSAGES/kcmcolors.mo -share/locale/nb/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/nb/LC_MESSAGES/kcmcrypto.mo -share/locale/nb/LC_MESSAGES/kcmcss.mo -share/locale/nb/LC_MESSAGES/kcmemail.mo -share/locale/nb/LC_MESSAGES/kcmenergy.mo -share/locale/nb/LC_MESSAGES/kcmfonts.mo -share/locale/nb/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/nb/LC_MESSAGES/kcmicons.mo -share/locale/nb/LC_MESSAGES/kcminfo.mo -share/locale/nb/LC_MESSAGES/kcminput.mo -share/locale/nb/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/nb/LC_MESSAGES/kcmkabconfig.mo -share/locale/nb/LC_MESSAGES/kcmkamera.mo -share/locale/nb/LC_MESSAGES/kcmkclock.mo -share/locale/nb/LC_MESSAGES/kcmkded.mo -share/locale/nb/LC_MESSAGES/kcmkdnssd.mo -share/locale/nb/LC_MESSAGES/kcmkeys.mo -share/locale/nb/LC_MESSAGES/kcmkicker.mo -share/locale/nb/LC_MESSAGES/kcmkio.mo -share/locale/nb/LC_MESSAGES/kcmkmix.mo -share/locale/nb/LC_MESSAGES/kcmkonq.mo -share/locale/nb/LC_MESSAGES/kcmkonqhtml.mo -share/locale/nb/LC_MESSAGES/kcmkonsole.mo -share/locale/nb/LC_MESSAGES/kcmkontactnt.mo -share/locale/nb/LC_MESSAGES/kcmktalkd.mo -share/locale/nb/LC_MESSAGES/kcmkttsd.mo -share/locale/nb/LC_MESSAGES/kcmkuick.mo -share/locale/nb/LC_MESSAGES/kcmkurifilt.mo -share/locale/nb/LC_MESSAGES/kcmkvaio.mo -share/locale/nb/LC_MESSAGES/kcmkwallet.mo -share/locale/nb/LC_MESSAGES/kcmkwindecoration.mo -share/locale/nb/LC_MESSAGES/kcmkwinrules.mo -share/locale/nb/LC_MESSAGES/kcmkwintheme.mo -share/locale/nb/LC_MESSAGES/kcmkwm.mo -share/locale/nb/LC_MESSAGES/kcmkxmlrpcd.mo -share/locale/nb/LC_MESSAGES/kcmlanbrowser.mo -share/locale/nb/LC_MESSAGES/kcmlaptop.mo -share/locale/nb/LC_MESSAGES/kcmlaunch.mo -share/locale/nb/LC_MESSAGES/kcmlayout.mo -share/locale/nb/LC_MESSAGES/kcmlilo.mo -share/locale/nb/LC_MESSAGES/kcmlirc.mo -share/locale/nb/LC_MESSAGES/kcmlocale.mo -share/locale/nb/LC_MESSAGES/kcmmediacontrol.mo -share/locale/nb/LC_MESSAGES/kcmmidi.mo -share/locale/nb/LC_MESSAGES/kcmnic.mo -share/locale/nb/LC_MESSAGES/kcmnotify.mo -share/locale/nb/LC_MESSAGES/kcmperformance.mo -share/locale/nb/LC_MESSAGES/kcmprintmgr.mo -share/locale/nb/LC_MESSAGES/kcmsamba.mo -share/locale/nb/LC_MESSAGES/kcmscreensaver.mo -share/locale/nb/LC_MESSAGES/kcmshell.mo -share/locale/nb/LC_MESSAGES/kcmsmartcard.mo -share/locale/nb/LC_MESSAGES/kcmsmserver.mo -share/locale/nb/LC_MESSAGES/kcmsocks.mo -share/locale/nb/LC_MESSAGES/kcmspellchecking.mo -share/locale/nb/LC_MESSAGES/kcmstyle.mo -share/locale/nb/LC_MESSAGES/kcmtaskbar.mo -share/locale/nb/LC_MESSAGES/kcmthinkpad.mo -share/locale/nb/LC_MESSAGES/kcmusb.mo -share/locale/nb/LC_MESSAGES/kcmview1394.mo -share/locale/nb/LC_MESSAGES/kcmvim.mo -share/locale/nb/LC_MESSAGES/kcmwifi.mo -share/locale/nb/LC_MESSAGES/kcmxinerama.mo -share/locale/nb/LC_MESSAGES/kcoloredit.mo -share/locale/nb/LC_MESSAGES/kcontrol.mo -share/locale/nb/LC_MESSAGES/kcron.mo -share/locale/nb/LC_MESSAGES/kdat.mo -share/locale/nb/LC_MESSAGES/kdcop.mo -share/locale/nb/LC_MESSAGES/kdebugdialog.mo -share/locale/nb/LC_MESSAGES/kdelibs.mo -share/locale/nb/LC_MESSAGES/kdelibs_colors.mo -share/locale/nb/LC_MESSAGES/kdelirc.mo -share/locale/nb/LC_MESSAGES/kdepasswd.mo -share/locale/nb/LC_MESSAGES/kdepimresources.mo -share/locale/nb/LC_MESSAGES/kdepimwizards.mo -share/locale/nb/LC_MESSAGES/kdeprint.mo -share/locale/nb/LC_MESSAGES/kdeprint_part.mo -share/locale/nb/LC_MESSAGES/kdeprintfax.mo -share/locale/nb/LC_MESSAGES/kdesktop.mo -share/locale/nb/LC_MESSAGES/kdessh.mo -share/locale/nb/LC_MESSAGES/kdesu.mo -share/locale/nb/LC_MESSAGES/kdesud.mo -share/locale/nb/LC_MESSAGES/kdevdesigner.mo -share/locale/nb/LC_MESSAGES/kdevelop.mo -share/locale/nb/LC_MESSAGES/kdevtipofday.mo -share/locale/nb/LC_MESSAGES/kdf.mo -share/locale/nb/LC_MESSAGES/kdgantt.mo -share/locale/nb/LC_MESSAGES/kdialog.mo -share/locale/nb/LC_MESSAGES/kdict.mo -share/locale/nb/LC_MESSAGES/kdictapplet.mo -share/locale/nb/LC_MESSAGES/kdmchooser.mo -share/locale/nb/LC_MESSAGES/kdmconfig.mo -share/locale/nb/LC_MESSAGES/kdmgreet.mo -share/locale/nb/LC_MESSAGES/kdvi.mo -share/locale/nb/LC_MESSAGES/kedit.mo -share/locale/nb/LC_MESSAGES/keduca.mo -share/locale/nb/LC_MESSAGES/kenolaba.mo -share/locale/nb/LC_MESSAGES/kfax.mo -share/locale/nb/LC_MESSAGES/kfifteenapplet.mo -share/locale/nb/LC_MESSAGES/kfile_au.mo -share/locale/nb/LC_MESSAGES/kfile_avi.mo -share/locale/nb/LC_MESSAGES/kfile_bmp.mo -share/locale/nb/LC_MESSAGES/kfile_cert.mo -share/locale/nb/LC_MESSAGES/kfile_cpp.mo -share/locale/nb/LC_MESSAGES/kfile_dds.mo -share/locale/nb/LC_MESSAGES/kfile_deb.mo -share/locale/nb/LC_MESSAGES/kfile_desktop.mo -share/locale/nb/LC_MESSAGES/kfile_diff.mo -share/locale/nb/LC_MESSAGES/kfile_drgeo.mo -share/locale/nb/LC_MESSAGES/kfile_dvi.mo -share/locale/nb/LC_MESSAGES/kfile_exr.mo -share/locale/nb/LC_MESSAGES/kfile_flac.mo -share/locale/nb/LC_MESSAGES/kfile_folder.mo -share/locale/nb/LC_MESSAGES/kfile_font.mo -share/locale/nb/LC_MESSAGES/kfile_gif.mo -share/locale/nb/LC_MESSAGES/kfile_html.mo -share/locale/nb/LC_MESSAGES/kfile_ico.mo -share/locale/nb/LC_MESSAGES/kfile_ics.mo -share/locale/nb/LC_MESSAGES/kfile_jpeg.mo -share/locale/nb/LC_MESSAGES/kfile_kig.mo -share/locale/nb/LC_MESSAGES/kfile_lnk.mo -share/locale/nb/LC_MESSAGES/kfile_m3u.mo -share/locale/nb/LC_MESSAGES/kfile_mhtml.mo -share/locale/nb/LC_MESSAGES/kfile_mp3.mo -share/locale/nb/LC_MESSAGES/kfile_mpc.mo -share/locale/nb/LC_MESSAGES/kfile_ogg.mo -share/locale/nb/LC_MESSAGES/kfile_palm.mo -share/locale/nb/LC_MESSAGES/kfile_pcx.mo -share/locale/nb/LC_MESSAGES/kfile_pdf.mo -share/locale/nb/LC_MESSAGES/kfile_png.mo -share/locale/nb/LC_MESSAGES/kfile_pnm.mo -share/locale/nb/LC_MESSAGES/kfile_po.mo -share/locale/nb/LC_MESSAGES/kfile_ps.mo -share/locale/nb/LC_MESSAGES/kfile_rfc822.mo -share/locale/nb/LC_MESSAGES/kfile_rgb.mo -share/locale/nb/LC_MESSAGES/kfile_rpm.mo -share/locale/nb/LC_MESSAGES/kfile_sid.mo -share/locale/nb/LC_MESSAGES/kfile_tga.mo -share/locale/nb/LC_MESSAGES/kfile_theora.mo -share/locale/nb/LC_MESSAGES/kfile_tiff.mo -share/locale/nb/LC_MESSAGES/kfile_torrent.mo -share/locale/nb/LC_MESSAGES/kfile_ts.mo -share/locale/nb/LC_MESSAGES/kfile_txt.mo -share/locale/nb/LC_MESSAGES/kfile_vcf.mo -share/locale/nb/LC_MESSAGES/kfile_wav.mo -share/locale/nb/LC_MESSAGES/kfile_xbm.mo -share/locale/nb/LC_MESSAGES/kfile_xpm.mo -share/locale/nb/LC_MESSAGES/kfileaudiopreview.mo -share/locale/nb/LC_MESSAGES/kfilereplace.mo -share/locale/nb/LC_MESSAGES/kfileshare.mo -share/locale/nb/LC_MESSAGES/kfindpart.mo -share/locale/nb/LC_MESSAGES/kfloppy.mo -share/locale/nb/LC_MESSAGES/kfmclient.mo -share/locale/nb/LC_MESSAGES/kfontinst.mo -share/locale/nb/LC_MESSAGES/kfouleggs.mo -share/locale/nb/LC_MESSAGES/kgamma.mo -share/locale/nb/LC_MESSAGES/kgantt.mo -share/locale/nb/LC_MESSAGES/kget.mo -share/locale/nb/LC_MESSAGES/kghostview.mo -share/locale/nb/LC_MESSAGES/kgoldrunner.mo -share/locale/nb/LC_MESSAGES/kgpg.mo -share/locale/nb/LC_MESSAGES/kgreet_classic.mo -share/locale/nb/LC_MESSAGES/kgreet_winbind.mo -share/locale/nb/LC_MESSAGES/khangman.mo -share/locale/nb/LC_MESSAGES/khelpcenter.mo -share/locale/nb/LC_MESSAGES/khexedit.mo -share/locale/nb/LC_MESSAGES/khexedit2part.mo -share/locale/nb/LC_MESSAGES/khotkeys.mo -share/locale/nb/LC_MESSAGES/khtmlkttsd.mo -share/locale/nb/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/nb/LC_MESSAGES/kicker.mo -share/locale/nb/LC_MESSAGES/kiconedit.mo -share/locale/nb/LC_MESSAGES/kig.mo -share/locale/nb/LC_MESSAGES/kinetd.mo -share/locale/nb/LC_MESSAGES/kio.mo -share/locale/nb/LC_MESSAGES/kio_audiocd.mo -share/locale/nb/LC_MESSAGES/kio_devices.mo -share/locale/nb/LC_MESSAGES/kio_finger.mo -share/locale/nb/LC_MESSAGES/kio_fish.mo -share/locale/nb/LC_MESSAGES/kio_floppy.mo -share/locale/nb/LC_MESSAGES/kio_groupwise.mo -share/locale/nb/LC_MESSAGES/kio_help.mo -share/locale/nb/LC_MESSAGES/kio_imap4.mo -share/locale/nb/LC_MESSAGES/kio_lan.mo -share/locale/nb/LC_MESSAGES/kio_ldap.mo -share/locale/nb/LC_MESSAGES/kio_mac.mo -share/locale/nb/LC_MESSAGES/kio_man.mo -share/locale/nb/LC_MESSAGES/kio_media.mo -share/locale/nb/LC_MESSAGES/kio_mobile.mo -share/locale/nb/LC_MESSAGES/kio_newimap4.mo -share/locale/nb/LC_MESSAGES/kio_nfs.mo -share/locale/nb/LC_MESSAGES/kio_nntp.mo -share/locale/nb/LC_MESSAGES/kio_pop3.mo -share/locale/nb/LC_MESSAGES/kio_print.mo -share/locale/nb/LC_MESSAGES/kio_remote.mo -share/locale/nb/LC_MESSAGES/kio_settings.mo -share/locale/nb/LC_MESSAGES/kio_sftp.mo -share/locale/nb/LC_MESSAGES/kio_sieve.mo -share/locale/nb/LC_MESSAGES/kio_smb.mo -share/locale/nb/LC_MESSAGES/kio_smtp.mo -share/locale/nb/LC_MESSAGES/kio_svn.mo -share/locale/nb/LC_MESSAGES/kio_system.mo -share/locale/nb/LC_MESSAGES/kio_trash.mo -share/locale/nb/LC_MESSAGES/kio_zeroconf.mo -share/locale/nb/LC_MESSAGES/kioexec.mo -share/locale/nb/LC_MESSAGES/kiten.mo -share/locale/nb/LC_MESSAGES/kjobviewer.mo -share/locale/nb/LC_MESSAGES/kjots.mo -share/locale/nb/LC_MESSAGES/kjumpingcube.mo -share/locale/nb/LC_MESSAGES/klaptopdaemon.mo -share/locale/nb/LC_MESSAGES/klatin.mo -share/locale/nb/LC_MESSAGES/klegacyimport.mo -share/locale/nb/LC_MESSAGES/kleopatra.mo -share/locale/nb/LC_MESSAGES/klettres.mo -share/locale/nb/LC_MESSAGES/klickety.mo -share/locale/nb/LC_MESSAGES/klines.mo -share/locale/nb/LC_MESSAGES/klipper.mo -share/locale/nb/LC_MESSAGES/klock.mo -share/locale/nb/LC_MESSAGES/kmag.mo -share/locale/nb/LC_MESSAGES/kmahjongg.mo -share/locale/nb/LC_MESSAGES/kmail.mo -share/locale/nb/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/nb/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/nb/LC_MESSAGES/kmailcvt.mo -share/locale/nb/LC_MESSAGES/kmathapplet.mo -share/locale/nb/LC_MESSAGES/kmathtool.mo -share/locale/nb/LC_MESSAGES/kmcop.mo -share/locale/nb/LC_MESSAGES/kmenuapplet.mo -share/locale/nb/LC_MESSAGES/kmenuedit.mo -share/locale/nb/LC_MESSAGES/kmessedwords.mo -share/locale/nb/LC_MESSAGES/kmid.mo -share/locale/nb/LC_MESSAGES/kmilo_delli8k.mo -share/locale/nb/LC_MESSAGES/kmilo_generic.mo -share/locale/nb/LC_MESSAGES/kmilo_kvaio.mo -share/locale/nb/LC_MESSAGES/kmilo_powerbook.mo -share/locale/nb/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/nb/LC_MESSAGES/kmilod.mo -share/locale/nb/LC_MESSAGES/kmines.mo -share/locale/nb/LC_MESSAGES/kminipagerapplet.mo -share/locale/nb/LC_MESSAGES/kmix.mo -share/locale/nb/LC_MESSAGES/kmobile.mo -share/locale/nb/LC_MESSAGES/kmoon.mo -share/locale/nb/LC_MESSAGES/kmousetool.mo -share/locale/nb/LC_MESSAGES/kmouth.mo -share/locale/nb/LC_MESSAGES/kmplot.mo -share/locale/nb/LC_MESSAGES/kmrml.mo -share/locale/nb/LC_MESSAGES/knetattach.mo -share/locale/nb/LC_MESSAGES/knewsticker.mo -share/locale/nb/LC_MESSAGES/knode.mo -share/locale/nb/LC_MESSAGES/knotes.mo -share/locale/nb/LC_MESSAGES/knotify.mo -share/locale/nb/LC_MESSAGES/kodo.mo -share/locale/nb/LC_MESSAGES/kolf.mo -share/locale/nb/LC_MESSAGES/kolourpaint.mo -share/locale/nb/LC_MESSAGES/kolourpicker.mo -share/locale/nb/LC_MESSAGES/kompare.mo -share/locale/nb/LC_MESSAGES/konnector_dummy.mo -share/locale/nb/LC_MESSAGES/konnector_kabc.mo -share/locale/nb/LC_MESSAGES/konnector_kcal.mo -share/locale/nb/LC_MESSAGES/konnector_local.mo -share/locale/nb/LC_MESSAGES/konnector_qtopia.mo -share/locale/nb/LC_MESSAGES/konnector_remote.mo -share/locale/nb/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/nb/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/nb/LC_MESSAGES/konqsidebar_news.mo -share/locale/nb/LC_MESSAGES/konqueror.mo -share/locale/nb/LC_MESSAGES/konquest.mo -share/locale/nb/LC_MESSAGES/konsole.mo -share/locale/nb/LC_MESSAGES/konsolekalendar.mo -share/locale/nb/LC_MESSAGES/kontact.mo -share/locale/nb/LC_MESSAGES/kooka.mo -share/locale/nb/LC_MESSAGES/kopete.mo -share/locale/nb/LC_MESSAGES/korganizer.mo -share/locale/nb/LC_MESSAGES/korn.mo -share/locale/nb/LC_MESSAGES/kpackage.mo -share/locale/nb/LC_MESSAGES/kpager.mo -share/locale/nb/LC_MESSAGES/kpartapp.mo -share/locale/nb/LC_MESSAGES/kpartsaver.mo -share/locale/nb/LC_MESSAGES/kpat.mo -share/locale/nb/LC_MESSAGES/kpdf.mo -share/locale/nb/LC_MESSAGES/kpercentage.mo -share/locale/nb/LC_MESSAGES/kpersonalizer.mo -share/locale/nb/LC_MESSAGES/kpf.mo -share/locale/nb/LC_MESSAGES/kpilot.mo -share/locale/nb/LC_MESSAGES/kpoker.mo -share/locale/nb/LC_MESSAGES/kpovmodeler.mo -share/locale/nb/LC_MESSAGES/kppp.mo -share/locale/nb/LC_MESSAGES/kppplogview.mo -share/locale/nb/LC_MESSAGES/kprinter.mo -share/locale/nb/LC_MESSAGES/krandr.mo -share/locale/nb/LC_MESSAGES/krdb.mo -share/locale/nb/LC_MESSAGES/krdc.mo -share/locale/nb/LC_MESSAGES/kreadconfig.mo -share/locale/nb/LC_MESSAGES/krec.mo -share/locale/nb/LC_MESSAGES/kregexpeditor.mo -share/locale/nb/LC_MESSAGES/kres_blogging.mo -share/locale/nb/LC_MESSAGES/kres_bugzilla.mo -share/locale/nb/LC_MESSAGES/kres_exchange.mo -share/locale/nb/LC_MESSAGES/kres_featureplan.mo -share/locale/nb/LC_MESSAGES/kres_groupwise.mo -share/locale/nb/LC_MESSAGES/kres_kolab.mo -share/locale/nb/LC_MESSAGES/kres_opengroupware.mo -share/locale/nb/LC_MESSAGES/kres_remote.mo -share/locale/nb/LC_MESSAGES/kres_xmlrpc.mo -share/locale/nb/LC_MESSAGES/kreversi.mo -share/locale/nb/LC_MESSAGES/krfb.mo -share/locale/nb/LC_MESSAGES/kruler.mo -share/locale/nb/LC_MESSAGES/krunapplet.mo -share/locale/nb/LC_MESSAGES/ksame.mo -share/locale/nb/LC_MESSAGES/kscd.mo -share/locale/nb/LC_MESSAGES/kscreensaver.mo -share/locale/nb/LC_MESSAGES/kshisen.mo -share/locale/nb/LC_MESSAGES/ksig.mo -share/locale/nb/LC_MESSAGES/ksim.mo -share/locale/nb/LC_MESSAGES/ksirc.mo -share/locale/nb/LC_MESSAGES/ksirtet.mo -share/locale/nb/LC_MESSAGES/ksmiletris.mo -share/locale/nb/LC_MESSAGES/ksmserver.mo -share/locale/nb/LC_MESSAGES/ksnake.mo -share/locale/nb/LC_MESSAGES/ksnapshot.mo -share/locale/nb/LC_MESSAGES/ksokoban.mo -share/locale/nb/LC_MESSAGES/kspaceduel.mo -share/locale/nb/LC_MESSAGES/ksplash.mo -share/locale/nb/LC_MESSAGES/ksplashthemes.mo -share/locale/nb/LC_MESSAGES/kstars.mo -share/locale/nb/LC_MESSAGES/kstart.mo -share/locale/nb/LC_MESSAGES/kstartperf.mo -share/locale/nb/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/nb/LC_MESSAGES/kstyle_phase_config.mo -share/locale/nb/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/nb/LC_MESSAGES/ksvgplugin.mo -share/locale/nb/LC_MESSAGES/ksync.mo -share/locale/nb/LC_MESSAGES/ksysguard.mo -share/locale/nb/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/nb/LC_MESSAGES/ksystraycmd.mo -share/locale/nb/LC_MESSAGES/ksysv.mo -share/locale/nb/LC_MESSAGES/ktalkd.mo -share/locale/nb/LC_MESSAGES/ktaskbarapplet.mo -share/locale/nb/LC_MESSAGES/kteatime.mo -share/locale/nb/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/nb/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/nb/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/nb/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/nb/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/nb/LC_MESSAGES/kthememanager.mo -share/locale/nb/LC_MESSAGES/ktimemon.mo -share/locale/nb/LC_MESSAGES/ktimer.mo -share/locale/nb/LC_MESSAGES/ktip.mo -share/locale/nb/LC_MESSAGES/ktnef.mo -share/locale/nb/LC_MESSAGES/ktouch.mo -share/locale/nb/LC_MESSAGES/ktron.mo -share/locale/nb/LC_MESSAGES/kttsd.mo -share/locale/nb/LC_MESSAGES/kttsd_freettsplugin.mo -share/locale/nb/LC_MESSAGES/kttsmgr.mo -share/locale/nb/LC_MESSAGES/ktuberling.mo -share/locale/nb/LC_MESSAGES/kturtle.mo -share/locale/nb/LC_MESSAGES/ktux.mo -share/locale/nb/LC_MESSAGES/kuick_plugin.mo -share/locale/nb/LC_MESSAGES/kuickshow.mo -share/locale/nb/LC_MESSAGES/kuiviewer.mo -share/locale/nb/LC_MESSAGES/kuser.mo -share/locale/nb/LC_MESSAGES/kverbos.mo -share/locale/nb/LC_MESSAGES/kview.mo -share/locale/nb/LC_MESSAGES/kview_scale.mo -share/locale/nb/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/nb/LC_MESSAGES/kviewcanvas.mo -share/locale/nb/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/nb/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/nb/LC_MESSAGES/kviewscannerplugin.mo -share/locale/nb/LC_MESSAGES/kviewshell.mo -share/locale/nb/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/nb/LC_MESSAGES/kviewviewer.mo -share/locale/nb/LC_MESSAGES/kvoctrain.mo -share/locale/nb/LC_MESSAGES/kwalletmanager.mo -share/locale/nb/LC_MESSAGES/kwatchgnupg.mo -share/locale/nb/LC_MESSAGES/kweather.mo -share/locale/nb/LC_MESSAGES/kwifimanager.mo -share/locale/nb/LC_MESSAGES/kwin.mo -share/locale/nb/LC_MESSAGES/kwin4.mo -share/locale/nb/LC_MESSAGES/kwin_art_clients.mo -share/locale/nb/LC_MESSAGES/kwin_clients.mo -share/locale/nb/LC_MESSAGES/kwireless.mo -share/locale/nb/LC_MESSAGES/kwordquiz.mo -share/locale/nb/LC_MESSAGES/kworldclock.mo -share/locale/nb/LC_MESSAGES/kwriteconfig.mo -share/locale/nb/LC_MESSAGES/kxkb.mo -share/locale/nb/LC_MESSAGES/kxmlrpcd.mo -share/locale/nb/LC_MESSAGES/kxsconfig.mo -share/locale/nb/LC_MESSAGES/libKTTSD.mo -share/locale/nb/LC_MESSAGES/libcalendarresources.mo -share/locale/nb/LC_MESSAGES/libdmctl.mo -share/locale/nb/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/nb/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/nb/LC_MESSAGES/libkcal.mo -share/locale/nb/LC_MESSAGES/libkcalsystem.mo -share/locale/nb/LC_MESSAGES/libkcddb.mo -share/locale/nb/LC_MESSAGES/libkdegames.mo -share/locale/nb/LC_MESSAGES/libkdehighscores.mo -share/locale/nb/LC_MESSAGES/libkdenetwork.mo -share/locale/nb/LC_MESSAGES/libkdepim.mo -share/locale/nb/LC_MESSAGES/libkholidays.mo -share/locale/nb/LC_MESSAGES/libkicker.mo -share/locale/nb/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/nb/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/nb/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/nb/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/nb/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/nb/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/nb/LC_MESSAGES/libkickermenu_tom.mo -share/locale/nb/LC_MESSAGES/libkleopatra.mo -share/locale/nb/LC_MESSAGES/libkmime.mo -share/locale/nb/LC_MESSAGES/libkonq.mo -share/locale/nb/LC_MESSAGES/libkpgp.mo -share/locale/nb/LC_MESSAGES/libkpimexchange.mo -share/locale/nb/LC_MESSAGES/libkscan.mo -share/locale/nb/LC_MESSAGES/libkscreensaver.mo -share/locale/nb/LC_MESSAGES/libksieve.mo -share/locale/nb/LC_MESSAGES/libksirtet.mo -share/locale/nb/LC_MESSAGES/libksync.mo -share/locale/nb/LC_MESSAGES/libtaskbar.mo -share/locale/nb/LC_MESSAGES/libtaskmanager.mo -share/locale/nb/LC_MESSAGES/lockout.mo -share/locale/nb/LC_MESSAGES/lskat.mo -share/locale/nb/LC_MESSAGES/lyrics.mo -share/locale/nb/LC_MESSAGES/mediaapplet.mo -share/locale/nb/LC_MESSAGES/mediacontrol.mo -share/locale/nb/LC_MESSAGES/minitoolsplugin.mo -share/locale/nb/LC_MESSAGES/multisynk.mo -share/locale/nb/LC_MESSAGES/naughtyapplet.mo -share/locale/nb/LC_MESSAGES/nexscope.mo -share/locale/nb/LC_MESSAGES/noatun.mo -share/locale/nb/LC_MESSAGES/nsplugin.mo -share/locale/nb/LC_MESSAGES/passwords.mo -share/locale/nb/LC_MESSAGES/pitchablespeed.mo -share/locale/nb/LC_MESSAGES/ppdtranslations.mo -share/locale/nb/LC_MESSAGES/privacy.mo -share/locale/nb/LC_MESSAGES/qeditor.mo -share/locale/nb/LC_MESSAGES/quanta.mo -share/locale/nb/LC_MESSAGES/quicklauncher.mo -share/locale/nb/LC_MESSAGES/rellinks.mo -share/locale/nb/LC_MESSAGES/searchbarplugin.mo -share/locale/nb/LC_MESSAGES/secpolicy.mo -share/locale/nb/LC_MESSAGES/spy.mo -share/locale/nb/LC_MESSAGES/synaescope.mo -share/locale/nb/LC_MESSAGES/taskbarextension.mo -share/locale/nb/LC_MESSAGES/timezones.mo -share/locale/nb/LC_MESSAGES/tippecanoe.mo -share/locale/nb/LC_MESSAGES/trashapplet.mo -share/locale/nb/LC_MESSAGES/tyler.mo -share/locale/nb/LC_MESSAGES/uachangerplugin.mo -share/locale/nb/LC_MESSAGES/umbrello.mo -share/locale/nb/LC_MESSAGES/useraccount.mo -share/locale/nb/LC_MESSAGES/validatorsplugin.mo -share/locale/nb/LC_MESSAGES/vimpart.mo -share/locale/nb/LC_MESSAGES/wakeup.mo -share/locale/nb/LC_MESSAGES/wavecapture.mo -share/locale/nb/LC_MESSAGES/webarchiver.mo -share/locale/nb/README -share/locale/nb/charset -share/locale/nb/entry.desktop -share/locale/nb/flag.png -@dirrm share/apps/khangman/data/nb -@dirrm share/apps/khangman/data -@dirrm share/apps/khangman diff --git a/misc/kde4-l10n-nds/Makefile b/misc/kde4-l10n-nds/Makefile deleted file mode 100644 index 9d046f243902..000000000000 --- a/misc/kde4-l10n-nds/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-nds -# Date created: 02 February -# Whom: Michael Nottebrock <lofi@freebsd.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= nds- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Low German localized messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-nds/distinfo b/misc/kde4-l10n-nds/distinfo deleted file mode 100644 index d0e387e6bb34..000000000000 --- a/misc/kde4-l10n-nds/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-nds-3.4.2.tar.bz2) = 4b0b302cf56b8db010aa5befdbba3455 -SIZE (KDE/kde-i18n/kde-i18n-nds-3.4.2.tar.bz2) = 863463 diff --git a/misc/kde4-l10n-nds/pkg-descr b/misc/kde4-l10n-nds/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-nds/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-nds/pkg-plist b/misc/kde4-l10n-nds/pkg-plist deleted file mode 100644 index 303059be45a6..000000000000 --- a/misc/kde4-l10n-nds/pkg-plist +++ /dev/null @@ -1,333 +0,0 @@ -share/locale/nds/LC_MESSAGES/alsaplayerui.mo -share/locale/nds/LC_MESSAGES/appletproxy.mo -share/locale/nds/LC_MESSAGES/ark.mo -share/locale/nds/LC_MESSAGES/atlantikdesigner.mo -share/locale/nds/LC_MESSAGES/audiorename_plugin.mo -share/locale/nds/LC_MESSAGES/autorefresh.mo -share/locale/nds/LC_MESSAGES/babelfish.mo -share/locale/nds/LC_MESSAGES/cervisia.mo -share/locale/nds/LC_MESSAGES/charlatanui.mo -share/locale/nds/LC_MESSAGES/childpanelextension.mo -share/locale/nds/LC_MESSAGES/clockapplet.mo -share/locale/nds/LC_MESSAGES/crashesplugin.mo -share/locale/nds/LC_MESSAGES/cupsdconf.mo -share/locale/nds/LC_MESSAGES/devicesapplet.mo -share/locale/nds/LC_MESSAGES/dirfilterplugin.mo -share/locale/nds/LC_MESSAGES/display.mo -share/locale/nds/LC_MESSAGES/dockbarextension.mo -share/locale/nds/LC_MESSAGES/domtreeviewer.mo -share/locale/nds/LC_MESSAGES/drkonqi.mo -share/locale/nds/LC_MESSAGES/dub.mo -share/locale/nds/LC_MESSAGES/extensionproxy.mo -share/locale/nds/LC_MESSAGES/ffrs.mo -share/locale/nds/LC_MESSAGES/filetypes.mo -share/locale/nds/LC_MESSAGES/fontinst.mo -share/locale/nds/LC_MESSAGES/fsview.mo -share/locale/nds/LC_MESSAGES/htmlsearch.mo -share/locale/nds/LC_MESSAGES/imagerename_plugin.mo -share/locale/nds/LC_MESSAGES/imgalleryplugin.mo -share/locale/nds/LC_MESSAGES/irkick.mo -share/locale/nds/LC_MESSAGES/jefferson.mo -share/locale/nds/LC_MESSAGES/joystick.mo -share/locale/nds/LC_MESSAGES/kabc2mutt.mo -share/locale/nds/LC_MESSAGES/kabc_dir.mo -share/locale/nds/LC_MESSAGES/kabc_file.mo -share/locale/nds/LC_MESSAGES/kabc_ldap.mo -share/locale/nds/LC_MESSAGES/kabc_ldapkio.mo -share/locale/nds/LC_MESSAGES/kabc_net.mo -share/locale/nds/LC_MESSAGES/kabc_sql.mo -share/locale/nds/LC_MESSAGES/kabcformat_binary.mo -share/locale/nds/LC_MESSAGES/kaccess.mo -share/locale/nds/LC_MESSAGES/kaddressbook.mo -share/locale/nds/LC_MESSAGES/kalarm.mo -share/locale/nds/LC_MESSAGES/kandy.mo -share/locale/nds/LC_MESSAGES/kappfinder.mo -share/locale/nds/LC_MESSAGES/karm.mo -share/locale/nds/LC_MESSAGES/kasbarextension.mo -share/locale/nds/LC_MESSAGES/kate.mo -share/locale/nds/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/nds/LC_MESSAGES/katedefaultproject.mo -share/locale/nds/LC_MESSAGES/katefll_initplugin.mo -share/locale/nds/LC_MESSAGES/katefll_plugin.mo -share/locale/nds/LC_MESSAGES/katehelloworld.mo -share/locale/nds/LC_MESSAGES/katehtmltools.mo -share/locale/nds/LC_MESSAGES/kateinsertcommand.mo -share/locale/nds/LC_MESSAGES/katemake.mo -share/locale/nds/LC_MESSAGES/katemodeline.mo -share/locale/nds/LC_MESSAGES/kateopenheader.mo -share/locale/nds/LC_MESSAGES/katepart.mo -share/locale/nds/LC_MESSAGES/kateprojectmanager.mo -share/locale/nds/LC_MESSAGES/katepybrowse.mo -share/locale/nds/LC_MESSAGES/katespell.mo -share/locale/nds/LC_MESSAGES/katetextfilter.mo -share/locale/nds/LC_MESSAGES/katexmlcheck.mo -share/locale/nds/LC_MESSAGES/katexmltools.mo -share/locale/nds/LC_MESSAGES/kbabel.mo -share/locale/nds/LC_MESSAGES/kbinaryclock.mo -share/locale/nds/LC_MESSAGES/kcalc.mo -share/locale/nds/LC_MESSAGES/kcharselect.mo -share/locale/nds/LC_MESSAGES/kcharselectapplet.mo -share/locale/nds/LC_MESSAGES/kcmaccess.mo -share/locale/nds/LC_MESSAGES/kcmaccessibility.mo -share/locale/nds/LC_MESSAGES/kcmarts.mo -share/locale/nds/LC_MESSAGES/kcmbackground.mo -share/locale/nds/LC_MESSAGES/kcmbell.mo -share/locale/nds/LC_MESSAGES/kcmcgi.mo -share/locale/nds/LC_MESSAGES/kcmcolors.mo -share/locale/nds/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/nds/LC_MESSAGES/kcmcrypto.mo -share/locale/nds/LC_MESSAGES/kcmcss.mo -share/locale/nds/LC_MESSAGES/kcmemail.mo -share/locale/nds/LC_MESSAGES/kcmenergy.mo -share/locale/nds/LC_MESSAGES/kcmfonts.mo -share/locale/nds/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/nds/LC_MESSAGES/kcmicons.mo -share/locale/nds/LC_MESSAGES/kcminfo.mo -share/locale/nds/LC_MESSAGES/kcminput.mo -share/locale/nds/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/nds/LC_MESSAGES/kcmkabconfig.mo -share/locale/nds/LC_MESSAGES/kcmkclock.mo -share/locale/nds/LC_MESSAGES/kcmkded.mo -share/locale/nds/LC_MESSAGES/kcmkeys.mo -share/locale/nds/LC_MESSAGES/kcmkicker.mo -share/locale/nds/LC_MESSAGES/kcmkio.mo -share/locale/nds/LC_MESSAGES/kcmkonq.mo -share/locale/nds/LC_MESSAGES/kcmkonqhtml.mo -share/locale/nds/LC_MESSAGES/kcmkonsole.mo -share/locale/nds/LC_MESSAGES/kcmkontactnt.mo -share/locale/nds/LC_MESSAGES/kcmkuick.mo -share/locale/nds/LC_MESSAGES/kcmkurifilt.mo -share/locale/nds/LC_MESSAGES/kcmkvaio.mo -share/locale/nds/LC_MESSAGES/kcmkwallet.mo -share/locale/nds/LC_MESSAGES/kcmkwindecoration.mo -share/locale/nds/LC_MESSAGES/kcmkwintheme.mo -share/locale/nds/LC_MESSAGES/kcmkwm.mo -share/locale/nds/LC_MESSAGES/kcmlaptop.mo -share/locale/nds/LC_MESSAGES/kcmlaunch.mo -share/locale/nds/LC_MESSAGES/kcmlayout.mo -share/locale/nds/LC_MESSAGES/kcmlilo.mo -share/locale/nds/LC_MESSAGES/kcmlirc.mo -share/locale/nds/LC_MESSAGES/kcmlocale.mo -share/locale/nds/LC_MESSAGES/kcmmediacontrol.mo -share/locale/nds/LC_MESSAGES/kcmmidi.mo -share/locale/nds/LC_MESSAGES/kcmnic.mo -share/locale/nds/LC_MESSAGES/kcmnotify.mo -share/locale/nds/LC_MESSAGES/kcmperformance.mo -share/locale/nds/LC_MESSAGES/kcmprintmgr.mo -share/locale/nds/LC_MESSAGES/kcmsamba.mo -share/locale/nds/LC_MESSAGES/kcmscreensaver.mo -share/locale/nds/LC_MESSAGES/kcmsmartcard.mo -share/locale/nds/LC_MESSAGES/kcmsmserver.mo -share/locale/nds/LC_MESSAGES/kcmsocks.mo -share/locale/nds/LC_MESSAGES/kcmspellchecking.mo -share/locale/nds/LC_MESSAGES/kcmstyle.mo -share/locale/nds/LC_MESSAGES/kcmtaskbar.mo -share/locale/nds/LC_MESSAGES/kcmusb.mo -share/locale/nds/LC_MESSAGES/kcmview1394.mo -share/locale/nds/LC_MESSAGES/kcmvim.mo -share/locale/nds/LC_MESSAGES/kcmxinerama.mo -share/locale/nds/LC_MESSAGES/kcontrol.mo -share/locale/nds/LC_MESSAGES/kcron.mo -share/locale/nds/LC_MESSAGES/kdat.mo -share/locale/nds/LC_MESSAGES/kdcop.mo -share/locale/nds/LC_MESSAGES/kdebugdialog.mo -share/locale/nds/LC_MESSAGES/kdelibs.mo -share/locale/nds/LC_MESSAGES/kdelibs_colors.mo -share/locale/nds/LC_MESSAGES/kdelirc.mo -share/locale/nds/LC_MESSAGES/kdepasswd.mo -share/locale/nds/LC_MESSAGES/kdeprint.mo -share/locale/nds/LC_MESSAGES/kdeprint_part.mo -share/locale/nds/LC_MESSAGES/kdeprintfax.mo -share/locale/nds/LC_MESSAGES/kdesktop.mo -share/locale/nds/LC_MESSAGES/kdessh.mo -share/locale/nds/LC_MESSAGES/kdesu.mo -share/locale/nds/LC_MESSAGES/kdesud.mo -share/locale/nds/LC_MESSAGES/kdf.mo -share/locale/nds/LC_MESSAGES/kdgantt.mo -share/locale/nds/LC_MESSAGES/kdialog.mo -share/locale/nds/LC_MESSAGES/kdmchooser.mo -share/locale/nds/LC_MESSAGES/kdmconfig.mo -share/locale/nds/LC_MESSAGES/kdmgreet.mo -share/locale/nds/LC_MESSAGES/kedit.mo -share/locale/nds/LC_MESSAGES/kfifteenapplet.mo -share/locale/nds/LC_MESSAGES/kfile_cpp.mo -share/locale/nds/LC_MESSAGES/kfile_deb.mo -share/locale/nds/LC_MESSAGES/kfile_desktop.mo -share/locale/nds/LC_MESSAGES/kfile_folder.mo -share/locale/nds/LC_MESSAGES/kfile_font.mo -share/locale/nds/LC_MESSAGES/kfile_html.mo -share/locale/nds/LC_MESSAGES/kfile_rfc822.mo -share/locale/nds/LC_MESSAGES/kfile_rpm.mo -share/locale/nds/LC_MESSAGES/kfile_txt.mo -share/locale/nds/LC_MESSAGES/kfile_vcf.mo -share/locale/nds/LC_MESSAGES/kfileaudiopreview.mo -share/locale/nds/LC_MESSAGES/kfindpart.mo -share/locale/nds/LC_MESSAGES/kfloppy.mo -share/locale/nds/LC_MESSAGES/kfmclient.mo -share/locale/nds/LC_MESSAGES/kfontinst.mo -share/locale/nds/LC_MESSAGES/kfouleggs.mo -share/locale/nds/LC_MESSAGES/kgantt.mo -share/locale/nds/LC_MESSAGES/kgpg.mo -share/locale/nds/LC_MESSAGES/kgreet_classic.mo -share/locale/nds/LC_MESSAGES/khelpcenter.mo -share/locale/nds/LC_MESSAGES/khexedit.mo -share/locale/nds/LC_MESSAGES/khotkeys.mo -share/locale/nds/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/nds/LC_MESSAGES/kicker.mo -share/locale/nds/LC_MESSAGES/kio.mo -share/locale/nds/LC_MESSAGES/kio_devices.mo -share/locale/nds/LC_MESSAGES/kio_finger.mo -share/locale/nds/LC_MESSAGES/kio_fish.mo -share/locale/nds/LC_MESSAGES/kio_floppy.mo -share/locale/nds/LC_MESSAGES/kio_help.mo -share/locale/nds/LC_MESSAGES/kio_imap4.mo -share/locale/nds/LC_MESSAGES/kio_mac.mo -share/locale/nds/LC_MESSAGES/kio_man.mo -share/locale/nds/LC_MESSAGES/kio_mobile.mo -share/locale/nds/LC_MESSAGES/kio_nfs.mo -share/locale/nds/LC_MESSAGES/kio_nntp.mo -share/locale/nds/LC_MESSAGES/kio_pop3.mo -share/locale/nds/LC_MESSAGES/kio_print.mo -share/locale/nds/LC_MESSAGES/kio_settings.mo -share/locale/nds/LC_MESSAGES/kio_sftp.mo -share/locale/nds/LC_MESSAGES/kio_sieve.mo -share/locale/nds/LC_MESSAGES/kio_smb.mo -share/locale/nds/LC_MESSAGES/kio_smtp.mo -share/locale/nds/LC_MESSAGES/kioexec.mo -share/locale/nds/LC_MESSAGES/kjobviewer.mo -share/locale/nds/LC_MESSAGES/kjots.mo -share/locale/nds/LC_MESSAGES/klaptopdaemon.mo -share/locale/nds/LC_MESSAGES/klegacyimport.mo -share/locale/nds/LC_MESSAGES/kleopatra.mo -share/locale/nds/LC_MESSAGES/klickety.mo -share/locale/nds/LC_MESSAGES/klipper.mo -share/locale/nds/LC_MESSAGES/klock.mo -share/locale/nds/LC_MESSAGES/kmag.mo -share/locale/nds/LC_MESSAGES/kmahjongg.mo -share/locale/nds/LC_MESSAGES/kmail.mo -share/locale/nds/LC_MESSAGES/kmailcvt.mo -share/locale/nds/LC_MESSAGES/kmcop.mo -share/locale/nds/LC_MESSAGES/kmenuapplet.mo -share/locale/nds/LC_MESSAGES/kmenuedit.mo -share/locale/nds/LC_MESSAGES/kmilo_generic.mo -share/locale/nds/LC_MESSAGES/kmilo_kvaio.mo -share/locale/nds/LC_MESSAGES/kmilo_powerbook.mo -share/locale/nds/LC_MESSAGES/kmilod.mo -share/locale/nds/LC_MESSAGES/kminipagerapplet.mo -share/locale/nds/LC_MESSAGES/kmobile.mo -share/locale/nds/LC_MESSAGES/kmoon.mo -share/locale/nds/LC_MESSAGES/kmousetool.mo -share/locale/nds/LC_MESSAGES/kmouth.mo -share/locale/nds/LC_MESSAGES/knode.mo -share/locale/nds/LC_MESSAGES/knotes.mo -share/locale/nds/LC_MESSAGES/knotify.mo -share/locale/nds/LC_MESSAGES/kolourpicker.mo -share/locale/nds/LC_MESSAGES/kompare.mo -share/locale/nds/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/nds/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/nds/LC_MESSAGES/konqueror.mo -share/locale/nds/LC_MESSAGES/konsole.mo -share/locale/nds/LC_MESSAGES/konsolekalendar.mo -share/locale/nds/LC_MESSAGES/kontact.mo -share/locale/nds/LC_MESSAGES/korganizer.mo -share/locale/nds/LC_MESSAGES/korn.mo -share/locale/nds/LC_MESSAGES/kpackage.mo -share/locale/nds/LC_MESSAGES/kpager.mo -share/locale/nds/LC_MESSAGES/kpartapp.mo -share/locale/nds/LC_MESSAGES/kpartsaver.mo -share/locale/nds/LC_MESSAGES/kpersonalizer.mo -share/locale/nds/LC_MESSAGES/kpilot.mo -share/locale/nds/LC_MESSAGES/kprinter.mo -share/locale/nds/LC_MESSAGES/krandr.mo -share/locale/nds/LC_MESSAGES/krdb.mo -share/locale/nds/LC_MESSAGES/kreadconfig.mo -share/locale/nds/LC_MESSAGES/kregexpeditor.mo -share/locale/nds/LC_MESSAGES/kruler.mo -share/locale/nds/LC_MESSAGES/krunapplet.mo -share/locale/nds/LC_MESSAGES/kscreensaver.mo -share/locale/nds/LC_MESSAGES/ksig.mo -share/locale/nds/LC_MESSAGES/ksim.mo -share/locale/nds/LC_MESSAGES/ksirtet.mo -share/locale/nds/LC_MESSAGES/ksmiletris.mo -share/locale/nds/LC_MESSAGES/ksmserver.mo -share/locale/nds/LC_MESSAGES/ksnake.mo -share/locale/nds/LC_MESSAGES/ksplash.mo -share/locale/nds/LC_MESSAGES/ksplashthemes.mo -share/locale/nds/LC_MESSAGES/kstars.mo -share/locale/nds/LC_MESSAGES/kstart.mo -share/locale/nds/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/nds/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/nds/LC_MESSAGES/ksync.mo -share/locale/nds/LC_MESSAGES/ksysguard.mo -share/locale/nds/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/nds/LC_MESSAGES/ksystraycmd.mo -share/locale/nds/LC_MESSAGES/ksysv.mo -share/locale/nds/LC_MESSAGES/ktaskbarapplet.mo -share/locale/nds/LC_MESSAGES/kteatime.mo -share/locale/nds/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/nds/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/nds/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/nds/LC_MESSAGES/ktimemon.mo -share/locale/nds/LC_MESSAGES/ktimer.mo -share/locale/nds/LC_MESSAGES/ktip.mo -share/locale/nds/LC_MESSAGES/ktnef.mo -share/locale/nds/LC_MESSAGES/ktux.mo -share/locale/nds/LC_MESSAGES/kuick_plugin.mo -share/locale/nds/LC_MESSAGES/kuser.mo -share/locale/nds/LC_MESSAGES/kwalletmanager.mo -share/locale/nds/LC_MESSAGES/kweather.mo -share/locale/nds/LC_MESSAGES/kwin.mo -share/locale/nds/LC_MESSAGES/kwin_clients.mo -share/locale/nds/LC_MESSAGES/kwriteconfig.mo -share/locale/nds/LC_MESSAGES/kxkb.mo -share/locale/nds/LC_MESSAGES/kxsconfig.mo -share/locale/nds/LC_MESSAGES/libcalendarresources.mo -share/locale/nds/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/nds/LC_MESSAGES/libkcal.mo -share/locale/nds/LC_MESSAGES/libkcalsystem.mo -share/locale/nds/LC_MESSAGES/libkdenetwork.mo -share/locale/nds/LC_MESSAGES/libkdepim.mo -share/locale/nds/LC_MESSAGES/libkicker.mo -share/locale/nds/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/nds/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/nds/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/nds/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/nds/LC_MESSAGES/libkickermenu_tom.mo -share/locale/nds/LC_MESSAGES/libkonq.mo -share/locale/nds/LC_MESSAGES/libkpimexchange.mo -share/locale/nds/LC_MESSAGES/libkscreensaver.mo -share/locale/nds/LC_MESSAGES/libksieve.mo -share/locale/nds/LC_MESSAGES/libksirtet.mo -share/locale/nds/LC_MESSAGES/libksync.mo -share/locale/nds/LC_MESSAGES/libtaskbar.mo -share/locale/nds/LC_MESSAGES/libtaskmanager.mo -share/locale/nds/LC_MESSAGES/lockout.mo -share/locale/nds/LC_MESSAGES/lyrics.mo -share/locale/nds/LC_MESSAGES/mediacontrol.mo -share/locale/nds/LC_MESSAGES/minitoolsplugin.mo -share/locale/nds/LC_MESSAGES/naughtyapplet.mo -share/locale/nds/LC_MESSAGES/nexscope.mo -share/locale/nds/LC_MESSAGES/nsplugin.mo -share/locale/nds/LC_MESSAGES/passwords.mo -share/locale/nds/LC_MESSAGES/pitchablespeed.mo -share/locale/nds/LC_MESSAGES/ppdtranslations.mo -share/locale/nds/LC_MESSAGES/privacy.mo -share/locale/nds/LC_MESSAGES/quicklauncher.mo -share/locale/nds/LC_MESSAGES/secpolicy.mo -share/locale/nds/LC_MESSAGES/spy.mo -share/locale/nds/LC_MESSAGES/synaescope.mo -share/locale/nds/LC_MESSAGES/taskbarextension.mo -share/locale/nds/LC_MESSAGES/timezones.mo -share/locale/nds/LC_MESSAGES/tippecanoe.mo -share/locale/nds/LC_MESSAGES/tyler.mo -share/locale/nds/LC_MESSAGES/uachangerplugin.mo -share/locale/nds/LC_MESSAGES/useraccount.mo -share/locale/nds/LC_MESSAGES/validatorsplugin.mo -share/locale/nds/LC_MESSAGES/vimpart.mo -share/locale/nds/LC_MESSAGES/wakeup.mo -share/locale/nds/LC_MESSAGES/wavecapture.mo -share/locale/nds/LC_MESSAGES/webarchiver.mo -share/locale/nds/charset -share/locale/nds/entry.desktop -@dirrm share/locale/nds/LC_MESSAGES -@dirrm share/locale/nds diff --git a/misc/kde4-l10n-nl/Makefile b/misc/kde4-l10n-nl/Makefile deleted file mode 100644 index 18b2ea8ec46d..000000000000 --- a/misc/kde4-l10n-nl/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-nl -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= nl- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Dutch messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-nl/distinfo b/misc/kde4-l10n-nl/distinfo deleted file mode 100644 index 468eb8546bb1..000000000000 --- a/misc/kde4-l10n-nl/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-nl-3.4.2.tar.bz2) = 5ffeabd3de47ed44942c3e87631a3b50 -SIZE (KDE/kde-i18n/kde-i18n-nl-3.4.2.tar.bz2) = 9559668 diff --git a/misc/kde4-l10n-nl/pkg-descr b/misc/kde4-l10n-nl/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-nl/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-nl/pkg-plist b/misc/kde4-l10n-nl/pkg-plist deleted file mode 100644 index 212d189f3a94..000000000000 --- a/misc/kde4-l10n-nl/pkg-plist +++ /dev/null @@ -1,2056 +0,0 @@ -share/apps/katepart/syntax/logohighlightstyle.nl.xml -share/apps/khangman/data/nl/animals.kvtml -share/apps/khangman/data/nl/easy.kvtml -share/apps/khangman/data/nl/hard.kvtml -share/apps/khangman/data/nl/medium.kvtml -share/apps/klettres/nl/alpha/a-0.ogg -share/apps/klettres/nl/alpha/a-1.ogg -share/apps/klettres/nl/alpha/a-10.ogg -share/apps/klettres/nl/alpha/a-11.ogg -share/apps/klettres/nl/alpha/a-12.ogg -share/apps/klettres/nl/alpha/a-13.ogg -share/apps/klettres/nl/alpha/a-14.ogg -share/apps/klettres/nl/alpha/a-15.ogg -share/apps/klettres/nl/alpha/a-16.ogg -share/apps/klettres/nl/alpha/a-17.ogg -share/apps/klettres/nl/alpha/a-18.ogg -share/apps/klettres/nl/alpha/a-19.ogg -share/apps/klettres/nl/alpha/a-2.ogg -share/apps/klettres/nl/alpha/a-20.ogg -share/apps/klettres/nl/alpha/a-21.ogg -share/apps/klettres/nl/alpha/a-3.ogg -share/apps/klettres/nl/alpha/a-4.ogg -share/apps/klettres/nl/alpha/a-5.ogg -share/apps/klettres/nl/alpha/a-6.ogg -share/apps/klettres/nl/alpha/a-7.ogg -share/apps/klettres/nl/alpha/a-8.ogg -share/apps/klettres/nl/alpha/a-9.ogg -share/apps/klettres/nl/syllab/ad-0.ogg -share/apps/klettres/nl/syllab/ad-1.ogg -share/apps/klettres/nl/syllab/ad-10.ogg -share/apps/klettres/nl/syllab/ad-11.ogg -share/apps/klettres/nl/syllab/ad-12.ogg -share/apps/klettres/nl/syllab/ad-13.ogg -share/apps/klettres/nl/syllab/ad-14.ogg -share/apps/klettres/nl/syllab/ad-15.ogg -share/apps/klettres/nl/syllab/ad-16.ogg -share/apps/klettres/nl/syllab/ad-17.ogg -share/apps/klettres/nl/syllab/ad-18.ogg -share/apps/klettres/nl/syllab/ad-19.ogg -share/apps/klettres/nl/syllab/ad-2.ogg -share/apps/klettres/nl/syllab/ad-20.ogg -share/apps/klettres/nl/syllab/ad-21.ogg -share/apps/klettres/nl/syllab/ad-22.ogg -share/apps/klettres/nl/syllab/ad-23.ogg -share/apps/klettres/nl/syllab/ad-24.ogg -share/apps/klettres/nl/syllab/ad-25.ogg -share/apps/klettres/nl/syllab/ad-3.ogg -share/apps/klettres/nl/syllab/ad-4.ogg -share/apps/klettres/nl/syllab/ad-5.ogg -share/apps/klettres/nl/syllab/ad-6.ogg -share/apps/klettres/nl/syllab/ad-7.ogg -share/apps/klettres/nl/syllab/ad-8.ogg -share/apps/klettres/nl/syllab/ad-9.ogg -share/apps/ktuberling/sounds/nl/aardappelmannetje.wav -share/apps/ktuberling/sounds/nl/bril.wav -share/apps/ktuberling/sounds/nl/haar.wav -share/apps/ktuberling/sounds/nl/hoed.wav -share/apps/ktuberling/sounds/nl/horens.wav -share/apps/ktuberling/sounds/nl/horloge.wav -share/apps/ktuberling/sounds/nl/ketting.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/pinguin.wav -share/apps/ktuberling/sounds/nl/sigaar.wav -share/apps/ktuberling/sounds/nl/sjaal.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/stropdas.wav -share/apps/ktuberling/sounds/nl/wenkbrauw.wav -share/apps/ktuberling/sounds/nl/zonnebril.wav -share/apps/kturtle/data/logokeywords.nl.xml -share/apps/kturtle/examples/nl/advertentie.logo -share/apps/kturtle/examples/nl/bloem.logo -share/apps/kturtle/examples/nl/driehoek.logo -share/apps/kturtle/examples/nl/driehoeken.logo -share/apps/kturtle/examples/nl/kleuren.logo -share/apps/kturtle/examples/nl/krullen.logo -share/apps/kturtle/examples/nl/pijl.logo -share/apps/kturtle/examples/nl/randomnaam.logo -share/apps/kturtle/examples/nl/tafels.logo -share/apps/kturtle/examples/nl/vierkant.logo -share/apps/kturtle/examples/nl/vierkanten.logo -share/doc/HTML/nl/amor/common -share/doc/HTML/nl/amor/index.cache.bz2 -share/doc/HTML/nl/amor/index.docbook -share/doc/HTML/nl/ark/common -share/doc/HTML/nl/ark/index.cache.bz2 -share/doc/HTML/nl/ark/index.docbook -share/doc/HTML/nl/artsbuilder/digitalaudio.docbook -share/doc/HTML/nl/artsbuilder/gui.docbook -share/doc/HTML/nl/atlantik/common -share/doc/HTML/nl/atlantik/index.cache.bz2 -share/doc/HTML/nl/atlantik/index.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/appheader.html -share/doc/HTML/nl/common/artistic-license.html -share/doc/HTML/nl/common/bottom-left.png -share/doc/HTML/nl/common/bottom-middle.png -share/doc/HTML/nl/common/bottom-right.png -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/docheadergears.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/doxygen.css -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/footer.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/grad.png -share/doc/HTML/nl/common/header.html -share/doc/HTML/nl/common/headerbg.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/kde-web.css -share/doc/HTML/nl/common/kde_logo.png -share/doc/HTML/nl/common/kde_logo_bg.png -share/doc/HTML/nl/common/kmenu.png -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.png -share/doc/HTML/nl/common/mainfooter.html -share/doc/HTML/nl/common/mainheader.html -share/doc/HTML/nl/common/qpl-license.html -share/doc/HTML/nl/common/shadow.png -share/doc/HTML/nl/common/top-left.png -share/doc/HTML/nl/common/top-middle.png -share/doc/HTML/nl/common/top-right-konqueror.png -share/doc/HTML/nl/common/web-docbottom.png -share/doc/HTML/nl/common/web-doctop.png -share/doc/HTML/nl/common/x11-license.html -share/doc/HTML/nl/common/xml.dcl -share/doc/HTML/nl/juk/common -share/doc/HTML/nl/juk/index.cache.bz2 -share/doc/HTML/nl/juk/index.docbook -share/doc/HTML/nl/kaboodle/common -share/doc/HTML/nl/kaboodle/index.cache.bz2 -share/doc/HTML/nl/kaboodle/index.docbook -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/kalzium/common -share/doc/HTML/nl/kalzium/index.cache.bz2 -share/doc/HTML/nl/kalzium/index.docbook -share/doc/HTML/nl/kalzium/man-kalzium.1.docbook -share/doc/HTML/nl/kalzium/screenshot1.png -share/doc/HTML/nl/kalzium/screenshot2.png -share/doc/HTML/nl/kalzium/screenshot3.png -share/doc/HTML/nl/kalzium/settings.png -share/doc/HTML/nl/kamera/common -share/doc/HTML/nl/kamera/index.cache.bz2 -share/doc/HTML/nl/kamera/index.docbook -share/doc/HTML/nl/kandy/common -share/doc/HTML/nl/kandy/index.cache.bz2 -share/doc/HTML/nl/kandy/index.docbook -share/doc/HTML/nl/karm/common -share/doc/HTML/nl/karm/index.cache.bz2 -share/doc/HTML/nl/karm/index.docbook -share/doc/HTML/nl/karm/man-karm.1.docbook -share/doc/HTML/nl/karm/screenshot.png -share/doc/HTML/nl/kasteroids/common -share/doc/HTML/nl/kasteroids/index.cache.bz2 -share/doc/HTML/nl/kasteroids/index.docbook -share/doc/HTML/nl/kate-plugins/common -share/doc/HTML/nl/kate-plugins/filetemplates.docbook -share/doc/HTML/nl/kate-plugins/htmltools.docbook -share/doc/HTML/nl/kate-plugins/index.cache.bz2 -share/doc/HTML/nl/kate-plugins/index.docbook -share/doc/HTML/nl/kate-plugins/insertcommand.docbook -share/doc/HTML/nl/kate-plugins/openheader.docbook -share/doc/HTML/nl/kate-plugins/projectmanager.docbook -share/doc/HTML/nl/kate-plugins/textfilter.docbook -share/doc/HTML/nl/kate-plugins/xmlcheck.docbook -share/doc/HTML/nl/kate-plugins/xmltools.docbook -share/doc/HTML/nl/kate/advanced.docbook -share/doc/HTML/nl/kate/common -share/doc/HTML/nl/kate/configuring.docbook -share/doc/HTML/nl/kate/fundamentals.docbook -share/doc/HTML/nl/kate/highlighting.docbook -share/doc/HTML/nl/kate/index.cache.bz2 -share/doc/HTML/nl/kate/index.docbook -share/doc/HTML/nl/kate/mdi.docbook -share/doc/HTML/nl/kate/menus.docbook -share/doc/HTML/nl/kate/part.docbook -share/doc/HTML/nl/kate/plugins.docbook -share/doc/HTML/nl/kate/regular-expressions.docbook -share/doc/HTML/nl/katomic/common -share/doc/HTML/nl/katomic/index.cache.bz2 -share/doc/HTML/nl/katomic/index.docbook -share/doc/HTML/nl/kbabel/catman.docbook -share/doc/HTML/nl/kbabel/faq.docbook -share/doc/HTML/nl/kbabel/kbabeldict.docbook -share/doc/HTML/nl/kbackgammon/common -share/doc/HTML/nl/kbackgammon/index.cache.bz2 -share/doc/HTML/nl/kbackgammon/index.docbook -share/doc/HTML/nl/kbattleship/common -share/doc/HTML/nl/kbattleship/index.cache.bz2 -share/doc/HTML/nl/kbattleship/index.docbook -share/doc/HTML/nl/kblackbox/common -share/doc/HTML/nl/kblackbox/index.cache.bz2 -share/doc/HTML/nl/kblackbox/index.docbook -share/doc/HTML/nl/kbounce/common -share/doc/HTML/nl/kbounce/index.cache.bz2 -share/doc/HTML/nl/kbounce/index.docbook -share/doc/HTML/nl/kbounce/jezball_corridor1.png -share/doc/HTML/nl/kbounce/jezball_corridor2.png -share/doc/HTML/nl/kbounce/jezball_newWall.png -share/doc/HTML/nl/kbruch/common -share/doc/HTML/nl/kbruch/index.cache.bz2 -share/doc/HTML/nl/kbruch/index.docbook -share/doc/HTML/nl/kbugbuster/common -share/doc/HTML/nl/kbugbuster/index.cache.bz2 -share/doc/HTML/nl/kbugbuster/index.docbook -share/doc/HTML/nl/kcalc/common -share/doc/HTML/nl/kcalc/index.cache.bz2 -share/doc/HTML/nl/kcalc/index.docbook -share/doc/HTML/nl/kcharselect/common -share/doc/HTML/nl/kcharselect/index.cache.bz2 -share/doc/HTML/nl/kcharselect/index.docbook -share/doc/HTML/nl/kcoloredit/common -share/doc/HTML/nl/kcoloredit/index.cache.bz2 -share/doc/HTML/nl/kcoloredit/index.docbook -share/doc/HTML/nl/kcontrol/arts/common -share/doc/HTML/nl/kcontrol/arts/index.cache.bz2 -share/doc/HTML/nl/kcontrol/arts/index.docbook -share/doc/HTML/nl/kcontrol/arts/midi.docbook -share/doc/HTML/nl/kcontrol/background/common -share/doc/HTML/nl/kcontrol/background/index.cache.bz2 -share/doc/HTML/nl/kcontrol/background/index.docbook -share/doc/HTML/nl/kcontrol/bell/common -share/doc/HTML/nl/kcontrol/bell/index.cache.bz2 -share/doc/HTML/nl/kcontrol/bell/index.docbook -share/doc/HTML/nl/kcontrol/cache/common -share/doc/HTML/nl/kcontrol/cache/index.cache.bz2 -share/doc/HTML/nl/kcontrol/cache/index.docbook -share/doc/HTML/nl/kcontrol/clock/common -share/doc/HTML/nl/kcontrol/clock/index.cache.bz2 -share/doc/HTML/nl/kcontrol/clock/index.docbook -share/doc/HTML/nl/kcontrol/colors/common -share/doc/HTML/nl/kcontrol/colors/index.cache.bz2 -share/doc/HTML/nl/kcontrol/colors/index.docbook -share/doc/HTML/nl/kcontrol/common -share/doc/HTML/nl/kcontrol/cookies/common -share/doc/HTML/nl/kcontrol/cookies/index.cache.bz2 -share/doc/HTML/nl/kcontrol/cookies/index.docbook -share/doc/HTML/nl/kcontrol/crypto/common -share/doc/HTML/nl/kcontrol/crypto/index.cache.bz2 -share/doc/HTML/nl/kcontrol/crypto/index.docbook -share/doc/HTML/nl/kcontrol/desktop/common -share/doc/HTML/nl/kcontrol/desktop/index.cache.bz2 -share/doc/HTML/nl/kcontrol/desktop/index.docbook -share/doc/HTML/nl/kcontrol/desktopbehavior/common -share/doc/HTML/nl/kcontrol/desktopbehavior/index.cache.bz2 -share/doc/HTML/nl/kcontrol/desktopbehavior/index.docbook -share/doc/HTML/nl/kcontrol/ebrowsing/common -share/doc/HTML/nl/kcontrol/ebrowsing/index.cache.bz2 -share/doc/HTML/nl/kcontrol/ebrowsing/index.docbook -share/doc/HTML/nl/kcontrol/email/common -share/doc/HTML/nl/kcontrol/email/index.cache.bz2 -share/doc/HTML/nl/kcontrol/email/index.docbook -share/doc/HTML/nl/kcontrol/energy/common -share/doc/HTML/nl/kcontrol/energy/index.cache.bz2 -share/doc/HTML/nl/kcontrol/energy/index.docbook -share/doc/HTML/nl/kcontrol/filemanager/common -share/doc/HTML/nl/kcontrol/filemanager/index.cache.bz2 -share/doc/HTML/nl/kcontrol/filemanager/index.docbook -share/doc/HTML/nl/kcontrol/filetypes/common -share/doc/HTML/nl/kcontrol/filetypes/index.cache.bz2 -share/doc/HTML/nl/kcontrol/filetypes/index.docbook -share/doc/HTML/nl/kcontrol/fonts/common -share/doc/HTML/nl/kcontrol/fonts/index.cache.bz2 -share/doc/HTML/nl/kcontrol/fonts/index.docbook -share/doc/HTML/nl/kcontrol/helpindex/common -share/doc/HTML/nl/kcontrol/helpindex/index.cache.bz2 -share/doc/HTML/nl/kcontrol/helpindex/index.docbook -share/doc/HTML/nl/kcontrol/icons/common -share/doc/HTML/nl/kcontrol/icons/index.cache.bz2 -share/doc/HTML/nl/kcontrol/icons/index.docbook -share/doc/HTML/nl/kcontrol/index.cache.bz2 -share/doc/HTML/nl/kcontrol/index.docbook -share/doc/HTML/nl/kcontrol/kalarmd/common -share/doc/HTML/nl/kcontrol/kalarmd/index.cache.bz2 -share/doc/HTML/nl/kcontrol/kalarmd/index.docbook -share/doc/HTML/nl/kcontrol/kcmaccess/common -share/doc/HTML/nl/kcontrol/kcmaccess/index.cache.bz2 -share/doc/HTML/nl/kcontrol/kcmaccess/index.docbook -share/doc/HTML/nl/kcontrol/kcmcss/common -share/doc/HTML/nl/kcontrol/kcmcss/index.cache.bz2 -share/doc/HTML/nl/kcontrol/kcmcss/index.docbook -share/doc/HTML/nl/kcontrol/kcmfontinst/common -share/doc/HTML/nl/kcontrol/kcmfontinst/index.cache.bz2 -share/doc/HTML/nl/kcontrol/kcmfontinst/index.docbook -share/doc/HTML/nl/kcontrol/kcmkonsole/common -share/doc/HTML/nl/kcontrol/kcmkonsole/index.cache.bz2 -share/doc/HTML/nl/kcontrol/kcmkonsole/index.docbook -share/doc/HTML/nl/kcontrol/kcmktalkd/common -share/doc/HTML/nl/kcontrol/kcmktalkd/index.cache.bz2 -share/doc/HTML/nl/kcontrol/kcmktalkd/index.docbook -share/doc/HTML/nl/kcontrol/kcmlaunch/common -share/doc/HTML/nl/kcontrol/kcmlaunch/index.cache.bz2 -share/doc/HTML/nl/kcontrol/kcmlaunch/index.docbook -share/doc/HTML/nl/kcontrol/kcmlowbatcrit/common -share/doc/HTML/nl/kcontrol/kcmlowbatcrit/index.cache.bz2 -share/doc/HTML/nl/kcontrol/kcmlowbatcrit/index.docbook -share/doc/HTML/nl/kcontrol/kcmlowbatwarn/common -share/doc/HTML/nl/kcontrol/kcmlowbatwarn/index.cache.bz2 -share/doc/HTML/nl/kcontrol/kcmlowbatwarn/index.docbook -share/doc/HTML/nl/kcontrol/kcmnotify/common -share/doc/HTML/nl/kcontrol/kcmnotify/index.cache.bz2 -share/doc/HTML/nl/kcontrol/kcmnotify/index.docbook -share/doc/HTML/nl/kcontrol/kcmsmserver/common -share/doc/HTML/nl/kcontrol/kcmsmserver/index.cache.bz2 -share/doc/HTML/nl/kcontrol/kcmsmserver/index.docbook -share/doc/HTML/nl/kcontrol/kcmtaskbar/common -share/doc/HTML/nl/kcontrol/kcmtaskbar/index.cache.bz2 -share/doc/HTML/nl/kcontrol/kcmtaskbar/index.docbook -share/doc/HTML/nl/kcontrol/keyboard/common -share/doc/HTML/nl/kcontrol/keyboard/index.cache.bz2 -share/doc/HTML/nl/kcontrol/keyboard/index.docbook -share/doc/HTML/nl/kcontrol/keys/common -share/doc/HTML/nl/kcontrol/keys/index.cache.bz2 -share/doc/HTML/nl/kcontrol/keys/index.docbook -share/doc/HTML/nl/kcontrol/khtml/common -share/doc/HTML/nl/kcontrol/khtml/index.cache.bz2 -share/doc/HTML/nl/kcontrol/khtml/index.docbook -share/doc/HTML/nl/kcontrol/khtml/nsplugin.docbook -share/doc/HTML/nl/kcontrol/kmixcfg/common -share/doc/HTML/nl/kcontrol/kmixcfg/index.cache.bz2 -share/doc/HTML/nl/kcontrol/kmixcfg/index.docbook -share/doc/HTML/nl/kcontrol/kthememgr/common -share/doc/HTML/nl/kcontrol/kthememgr/index.cache.bz2 -share/doc/HTML/nl/kcontrol/kthememgr/index.docbook -share/doc/HTML/nl/kcontrol/kwindecoration/common -share/doc/HTML/nl/kcontrol/kwindecoration/index.cache.bz2 -share/doc/HTML/nl/kcontrol/kwindecoration/index.docbook -share/doc/HTML/nl/kcontrol/lanbrowser/common -share/doc/HTML/nl/kcontrol/lanbrowser/index.cache.bz2 -share/doc/HTML/nl/kcontrol/lanbrowser/index.docbook -share/doc/HTML/nl/kcontrol/laptop/common -share/doc/HTML/nl/kcontrol/laptop/index.cache.bz2 -share/doc/HTML/nl/kcontrol/laptop/index.docbook -share/doc/HTML/nl/kcontrol/mouse/common -share/doc/HTML/nl/kcontrol/mouse/index.cache.bz2 -share/doc/HTML/nl/kcontrol/mouse/index.docbook -share/doc/HTML/nl/kcontrol/netpref/common -share/doc/HTML/nl/kcontrol/netpref/index.cache.bz2 -share/doc/HTML/nl/kcontrol/netpref/index.docbook -share/doc/HTML/nl/kcontrol/powerctrl/common -share/doc/HTML/nl/kcontrol/powerctrl/index.cache.bz2 -share/doc/HTML/nl/kcontrol/powerctrl/index.docbook -share/doc/HTML/nl/kcontrol/proxy/common -share/doc/HTML/nl/kcontrol/proxy/index.cache.bz2 -share/doc/HTML/nl/kcontrol/proxy/index.docbook -share/doc/HTML/nl/kcontrol/proxy/socks.docbook -share/doc/HTML/nl/kcontrol/screenshot.png -share/doc/HTML/nl/kcontrol/smb/common -share/doc/HTML/nl/kcontrol/smb/index.cache.bz2 -share/doc/HTML/nl/kcontrol/smb/index.docbook -share/doc/HTML/nl/kcontrol/spellchecking/common -share/doc/HTML/nl/kcontrol/spellchecking/index.cache.bz2 -share/doc/HTML/nl/kcontrol/spellchecking/index.docbook -share/doc/HTML/nl/kcontrol/useragent/common -share/doc/HTML/nl/kcontrol/useragent/index.cache.bz2 -share/doc/HTML/nl/kcontrol/useragent/index.docbook -share/doc/HTML/nl/kcontrol/windowmanagement/common -share/doc/HTML/nl/kcontrol/windowmanagement/index.cache.bz2 -share/doc/HTML/nl/kcontrol/windowmanagement/index.docbook -share/doc/HTML/nl/kcron/common -share/doc/HTML/nl/kcron/index.cache.bz2 -share/doc/HTML/nl/kcron/index.docbook -share/doc/HTML/nl/kcron/newtask.png -share/doc/HTML/nl/kcron/newvariable.png -share/doc/HTML/nl/kcron/print.png -share/doc/HTML/nl/kdat/common -share/doc/HTML/nl/kdat/index.cache.bz2 -share/doc/HTML/nl/kdat/index.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/kdelirc/irkick/common -share/doc/HTML/nl/kdelirc/irkick/index.cache.bz2 -share/doc/HTML/nl/kdelirc/irkick/index.docbook -share/doc/HTML/nl/kdelirc/kcmlirc/common -share/doc/HTML/nl/kdelirc/kcmlirc/index.cache.bz2 -share/doc/HTML/nl/kdelirc/kcmlirc/index.docbook -share/doc/HTML/nl/kdeprint/add-printer-wiz.docbook -share/doc/HTML/nl/kdeprint/common -share/doc/HTML/nl/kdeprint/cups-config.docbook -share/doc/HTML/nl/kdeprint/cupsoptions.docbook -share/doc/HTML/nl/kdeprint/extensions.docbook -share/doc/HTML/nl/kdeprint/external-command.docbook -share/doc/HTML/nl/kdeprint/final-word.docbook -share/doc/HTML/nl/kdeprint/getting-started.docbook -share/doc/HTML/nl/kdeprint/highlights.docbook -share/doc/HTML/nl/kdeprint/index.cache.bz2 -share/doc/HTML/nl/kdeprint/index.docbook -share/doc/HTML/nl/kdeprint/lpd.docbook -share/doc/HTML/nl/kdeprint/lpr-bsd.docbook -share/doc/HTML/nl/kdeprint/lprng.docbook -share/doc/HTML/nl/kdeprint/rlpr.docbook -share/doc/HTML/nl/kdeprint/tech-overview.docbook -share/doc/HTML/nl/kdeprint/theory.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/kdf/common -share/doc/HTML/nl/kdf/index.cache.bz2 -share/doc/HTML/nl/kdf/index.docbook -share/doc/HTML/nl/kdf/kdf.png -share/doc/HTML/nl/kdf/kdf_config.png -share/doc/HTML/nl/kdvi/common -share/doc/HTML/nl/kdvi/index.cache.bz2 -share/doc/HTML/nl/kdvi/index.docbook -share/doc/HTML/nl/keduca/common -share/doc/HTML/nl/keduca/index.cache.bz2 -share/doc/HTML/nl/keduca/index.docbook -share/doc/HTML/nl/kenolaba/common -share/doc/HTML/nl/kenolaba/index.cache.bz2 -share/doc/HTML/nl/kenolaba/index.docbook -share/doc/HTML/nl/kfilereplace/common -share/doc/HTML/nl/kfilereplace/index.cache.bz2 -share/doc/HTML/nl/kfilereplace/index.docbook -share/doc/HTML/nl/kfind/common -share/doc/HTML/nl/kfind/index.cache.bz2 -share/doc/HTML/nl/kfind/index.docbook -share/doc/HTML/nl/kfloppy/common -share/doc/HTML/nl/kfloppy/index.cache.bz2 -share/doc/HTML/nl/kfloppy/index.docbook -share/doc/HTML/nl/kfouleggs/common -share/doc/HTML/nl/kfouleggs/gamescreen.png -share/doc/HTML/nl/kfouleggs/index.cache.bz2 -share/doc/HTML/nl/kfouleggs/index.docbook -share/doc/HTML/nl/kgamma/common -share/doc/HTML/nl/kgamma/index.cache.bz2 -share/doc/HTML/nl/kgamma/index.docbook -share/doc/HTML/nl/kget/common -share/doc/HTML/nl/kget/index.cache.bz2 -share/doc/HTML/nl/kget/index.docbook -share/doc/HTML/nl/kget/kget1.png -share/doc/HTML/nl/kget/kget2.png -share/doc/HTML/nl/kget/kget3.png -share/doc/HTML/nl/kget/kget4.png -share/doc/HTML/nl/kget/kget5.png -share/doc/HTML/nl/kghostview/common -share/doc/HTML/nl/kghostview/index.cache.bz2 -share/doc/HTML/nl/kghostview/index.docbook -share/doc/HTML/nl/kgoldrunner/common -share/doc/HTML/nl/kgoldrunner/index.cache.bz2 -share/doc/HTML/nl/kgoldrunner/index.docbook -share/doc/HTML/nl/khangman/common -share/doc/HTML/nl/khangman/index.cache.bz2 -share/doc/HTML/nl/khangman/index.docbook -share/doc/HTML/nl/khelpcenter/common -share/doc/HTML/nl/khelpcenter/contact.docbook -share/doc/HTML/nl/khelpcenter/faq/about.docbook -share/doc/HTML/nl/khelpcenter/faq/common -share/doc/HTML/nl/khelpcenter/faq/configkde.docbook -share/doc/HTML/nl/khelpcenter/faq/contrib.docbook -share/doc/HTML/nl/khelpcenter/faq/desktop.docbook -share/doc/HTML/nl/khelpcenter/faq/filemng.docbook -share/doc/HTML/nl/khelpcenter/faq/getkde.docbook -share/doc/HTML/nl/khelpcenter/faq/index.cache.bz2 -share/doc/HTML/nl/khelpcenter/faq/index.docbook -share/doc/HTML/nl/khelpcenter/faq/install.docbook -share/doc/HTML/nl/khelpcenter/faq/intro.docbook -share/doc/HTML/nl/khelpcenter/faq/kdeapps.docbook -share/doc/HTML/nl/khelpcenter/faq/misc.docbook -share/doc/HTML/nl/khelpcenter/faq/moreinfo.docbook -share/doc/HTML/nl/khelpcenter/faq/nonkdeapps.docbook -share/doc/HTML/nl/khelpcenter/faq/notrelated.docbook -share/doc/HTML/nl/khelpcenter/faq/panel.docbook -share/doc/HTML/nl/khelpcenter/faq/tips.docbook -share/doc/HTML/nl/khelpcenter/faq/winmng.docbook -share/doc/HTML/nl/khelpcenter/glossary/common -share/doc/HTML/nl/khelpcenter/glossary/index.cache.bz2 -share/doc/HTML/nl/khelpcenter/glossary/index.docbook -share/doc/HTML/nl/khelpcenter/glossary/kdeprintingglossary.docbook -share/doc/HTML/nl/khelpcenter/help.docbook -share/doc/HTML/nl/khelpcenter/index.cache.bz2 -share/doc/HTML/nl/khelpcenter/index.docbook -share/doc/HTML/nl/khelpcenter/links.docbook -share/doc/HTML/nl/khelpcenter/quickstart/common -share/doc/HTML/nl/khelpcenter/quickstart/index.cache.bz2 -share/doc/HTML/nl/khelpcenter/quickstart/index.docbook -share/doc/HTML/nl/khelpcenter/support.docbook -share/doc/HTML/nl/khelpcenter/userguide/about-desktop.docbook -share/doc/HTML/nl/khelpcenter/userguide/common -share/doc/HTML/nl/khelpcenter/userguide/first-impressions.docbook -share/doc/HTML/nl/khelpcenter/userguide/getting-started.docbook -share/doc/HTML/nl/khelpcenter/userguide/history.docbook -share/doc/HTML/nl/khelpcenter/userguide/index.cache.bz2 -share/doc/HTML/nl/khelpcenter/userguide/index.docbook -share/doc/HTML/nl/khelpcenter/userguide/installation.docbook -share/doc/HTML/nl/khelpcenter/userguide/intro.docbook -share/doc/HTML/nl/khelpcenter/userguide/more-help.docbook -share/doc/HTML/nl/khelpcenter/userguide/notices-trademarks.docbook -share/doc/HTML/nl/khelpcenter/userguide/shortcuts.docbook -share/doc/HTML/nl/khelpcenter/userguide/staff.docbook -share/doc/HTML/nl/khelpcenter/userguide/ug-faq.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/welcome.docbook -share/doc/HTML/nl/khelpcenter/whatiskde.docbook -share/doc/HTML/nl/kicker-applets/common -share/doc/HTML/nl/kicker-applets/index.cache.bz2 -share/doc/HTML/nl/kicker-applets/index.docbook -share/doc/HTML/nl/kicker-applets/kolourpicker.docbook -share/doc/HTML/nl/kicker-applets/ktimemon.docbook -share/doc/HTML/nl/kicker/common -share/doc/HTML/nl/kicker/index.cache.bz2 -share/doc/HTML/nl/kicker/index.docbook -share/doc/HTML/nl/kig/common -share/doc/HTML/nl/kig/constructed_a_point.png -share/doc/HTML/nl/kig/constructed_script_object.png -share/doc/HTML/nl/kig/constructing_a_circle.png -share/doc/HTML/nl/kig/constructing_a_circle_2.png -share/doc/HTML/nl/kig/edit_types_dialog.png -share/doc/HTML/nl/kig/index.cache.bz2 -share/doc/HTML/nl/kig/index.docbook -share/doc/HTML/nl/kig/macro_wizard.png -share/doc/HTML/nl/kig/macros_at_work.png -share/doc/HTML/nl/kig/selecting_objects.png -share/doc/HTML/nl/kig/simple_locus_construction.png -share/doc/HTML/nl/kig/test_run_macro.png -share/doc/HTML/nl/kig/text_label_attaching.png -share/doc/HTML/nl/kig/text_label_wizard.png -share/doc/HTML/nl/kinfocenter/blockdevices/common -share/doc/HTML/nl/kinfocenter/blockdevices/index.cache.bz2 -share/doc/HTML/nl/kinfocenter/blockdevices/index.docbook -share/doc/HTML/nl/kinfocenter/common -share/doc/HTML/nl/kinfocenter/devices/common -share/doc/HTML/nl/kinfocenter/devices/index.cache.bz2 -share/doc/HTML/nl/kinfocenter/devices/index.docbook -share/doc/HTML/nl/kinfocenter/dma/common -share/doc/HTML/nl/kinfocenter/dma/index.cache.bz2 -share/doc/HTML/nl/kinfocenter/dma/index.docbook -share/doc/HTML/nl/kinfocenter/index.cache.bz2 -share/doc/HTML/nl/kinfocenter/index.docbook -share/doc/HTML/nl/kinfocenter/interrupts/common -share/doc/HTML/nl/kinfocenter/interrupts/index.cache.bz2 -share/doc/HTML/nl/kinfocenter/interrupts/index.docbook -share/doc/HTML/nl/kinfocenter/ioports/common -share/doc/HTML/nl/kinfocenter/ioports/index.cache.bz2 -share/doc/HTML/nl/kinfocenter/ioports/index.docbook -share/doc/HTML/nl/kinfocenter/memory/common -share/doc/HTML/nl/kinfocenter/memory/index.cache.bz2 -share/doc/HTML/nl/kinfocenter/memory/index.docbook -share/doc/HTML/nl/kinfocenter/nics/common -share/doc/HTML/nl/kinfocenter/nics/index.cache.bz2 -share/doc/HTML/nl/kinfocenter/nics/index.docbook -share/doc/HTML/nl/kinfocenter/opengl/common -share/doc/HTML/nl/kinfocenter/opengl/index.cache.bz2 -share/doc/HTML/nl/kinfocenter/opengl/index.docbook -share/doc/HTML/nl/kinfocenter/partitions/common -share/doc/HTML/nl/kinfocenter/partitions/index.cache.bz2 -share/doc/HTML/nl/kinfocenter/partitions/index.docbook -share/doc/HTML/nl/kinfocenter/pci/common -share/doc/HTML/nl/kinfocenter/pci/index.cache.bz2 -share/doc/HTML/nl/kinfocenter/pci/index.docbook -share/doc/HTML/nl/kinfocenter/pcmcia/common -share/doc/HTML/nl/kinfocenter/pcmcia/index.cache.bz2 -share/doc/HTML/nl/kinfocenter/pcmcia/index.docbook -share/doc/HTML/nl/kinfocenter/processor/common -share/doc/HTML/nl/kinfocenter/processor/index.cache.bz2 -share/doc/HTML/nl/kinfocenter/processor/index.docbook -share/doc/HTML/nl/kinfocenter/protocols/common -share/doc/HTML/nl/kinfocenter/protocols/index.cache.bz2 -share/doc/HTML/nl/kinfocenter/protocols/index.docbook -share/doc/HTML/nl/kinfocenter/samba/common -share/doc/HTML/nl/kinfocenter/samba/index.cache.bz2 -share/doc/HTML/nl/kinfocenter/samba/index.docbook -share/doc/HTML/nl/kinfocenter/scsi/common -share/doc/HTML/nl/kinfocenter/scsi/index.cache.bz2 -share/doc/HTML/nl/kinfocenter/scsi/index.docbook -share/doc/HTML/nl/kinfocenter/sound/common -share/doc/HTML/nl/kinfocenter/sound/index.cache.bz2 -share/doc/HTML/nl/kinfocenter/sound/index.docbook -share/doc/HTML/nl/kinfocenter/usb/common -share/doc/HTML/nl/kinfocenter/usb/index.cache.bz2 -share/doc/HTML/nl/kinfocenter/usb/index.docbook -share/doc/HTML/nl/kinfocenter/xserver/common -share/doc/HTML/nl/kinfocenter/xserver/index.cache.bz2 -share/doc/HTML/nl/kinfocenter/xserver/index.docbook -share/doc/HTML/nl/kioslave/audiocd.docbook -share/doc/HTML/nl/kioslave/bzip.docbook -share/doc/HTML/nl/kioslave/bzip2.docbook -share/doc/HTML/nl/kioslave/cgi.docbook -share/doc/HTML/nl/kioslave/common -share/doc/HTML/nl/kioslave/data.docbook -share/doc/HTML/nl/kioslave/file.docbook -share/doc/HTML/nl/kioslave/finger.docbook -share/doc/HTML/nl/kioslave/fish.docbook -share/doc/HTML/nl/kioslave/floppy.docbook -share/doc/HTML/nl/kioslave/ftp.docbook -share/doc/HTML/nl/kioslave/gopher.docbook -share/doc/HTML/nl/kioslave/gzip.docbook -share/doc/HTML/nl/kioslave/help.docbook -share/doc/HTML/nl/kioslave/http.docbook -share/doc/HTML/nl/kioslave/https.docbook -share/doc/HTML/nl/kioslave/imap.docbook -share/doc/HTML/nl/kioslave/imaps.docbook -share/doc/HTML/nl/kioslave/index.cache.bz2 -share/doc/HTML/nl/kioslave/index.docbook -share/doc/HTML/nl/kioslave/info.docbook -share/doc/HTML/nl/kioslave/lan.docbook -share/doc/HTML/nl/kioslave/ldap.docbook -share/doc/HTML/nl/kioslave/mac.docbook -share/doc/HTML/nl/kioslave/mailto.docbook -share/doc/HTML/nl/kioslave/man.docbook -share/doc/HTML/nl/kioslave/mrml.docbook -share/doc/HTML/nl/kioslave/news.docbook -share/doc/HTML/nl/kioslave/nfs.docbook -share/doc/HTML/nl/kioslave/nntp.docbook -share/doc/HTML/nl/kioslave/pop3.docbook -share/doc/HTML/nl/kioslave/pop3s.docbook -share/doc/HTML/nl/kioslave/print.docbook -share/doc/HTML/nl/kioslave/rlan.docbook -share/doc/HTML/nl/kioslave/rlogin.docbook -share/doc/HTML/nl/kioslave/sftp.docbook -share/doc/HTML/nl/kioslave/smb.docbook -share/doc/HTML/nl/kioslave/smtp.docbook -share/doc/HTML/nl/kioslave/tar.docbook -share/doc/HTML/nl/kioslave/telnet.docbook -share/doc/HTML/nl/kioslave/thumbnail.docbook -share/doc/HTML/nl/kioslave/webdav.docbook -share/doc/HTML/nl/kioslave/webdavs.docbook -share/doc/HTML/nl/kiten/common -share/doc/HTML/nl/kiten/index.cache.bz2 -share/doc/HTML/nl/kiten/index.docbook -share/doc/HTML/nl/kjots/common -share/doc/HTML/nl/kjots/index.cache.bz2 -share/doc/HTML/nl/kjots/index.docbook -share/doc/HTML/nl/kjumpingcube/common -share/doc/HTML/nl/kjumpingcube/index.cache.bz2 -share/doc/HTML/nl/kjumpingcube/index.docbook -share/doc/HTML/nl/klatin/adjectives.docbook -share/doc/HTML/nl/klatin/common -share/doc/HTML/nl/klatin/index.cache.bz2 -share/doc/HTML/nl/klatin/index.docbook -share/doc/HTML/nl/klatin/nouns.docbook -share/doc/HTML/nl/klatin/numbers.docbook -share/doc/HTML/nl/klatin/pronouns.docbook -share/doc/HTML/nl/klatin/verbs.docbook -share/doc/HTML/nl/klettres/common -share/doc/HTML/nl/klettres/index.cache.bz2 -share/doc/HTML/nl/klettres/index.docbook -share/doc/HTML/nl/klickety/common -share/doc/HTML/nl/klickety/index.cache.bz2 -share/doc/HTML/nl/klickety/index.docbook -share/doc/HTML/nl/klines/common -share/doc/HTML/nl/klines/index.cache.bz2 -share/doc/HTML/nl/klines/index.docbook -share/doc/HTML/nl/klinkstatus/common -share/doc/HTML/nl/klinkstatus/index.cache.bz2 -share/doc/HTML/nl/klinkstatus/index.docbook -share/doc/HTML/nl/klipper/common -share/doc/HTML/nl/klipper/index.cache.bz2 -share/doc/HTML/nl/klipper/index.docbook -share/doc/HTML/nl/kmag/common -share/doc/HTML/nl/kmag/index.cache.bz2 -share/doc/HTML/nl/kmag/index.docbook -share/doc/HTML/nl/kmag/screenshot.png -share/doc/HTML/nl/kmahjongg/common -share/doc/HTML/nl/kmahjongg/index.cache.bz2 -share/doc/HTML/nl/kmahjongg/index.docbook -share/doc/HTML/nl/kmail/common -share/doc/HTML/nl/kmail/configure.docbook -share/doc/HTML/nl/kmail/credits-and-licenses.docbook -share/doc/HTML/nl/kmail/faq.docbook -share/doc/HTML/nl/kmail/getting-started.docbook -share/doc/HTML/nl/kmail/importing.docbook -share/doc/HTML/nl/kmail/index.cache.bz2 -share/doc/HTML/nl/kmail/index.docbook -share/doc/HTML/nl/kmail/intro.docbook -share/doc/HTML/nl/kmail/menus.docbook -share/doc/HTML/nl/kmail/using-kmail.docbook -share/doc/HTML/nl/kmathtool/common -share/doc/HTML/nl/kmathtool/index.cache.bz2 -share/doc/HTML/nl/kmathtool/index.docbook -share/doc/HTML/nl/kmenuedit/common -share/doc/HTML/nl/kmenuedit/index.cache.bz2 -share/doc/HTML/nl/kmenuedit/index.docbook -share/doc/HTML/nl/kmessedwords/common -share/doc/HTML/nl/kmessedwords/index.cache.bz2 -share/doc/HTML/nl/kmessedwords/index.docbook -share/doc/HTML/nl/kmessedwords/kmw1.png -share/doc/HTML/nl/kmessedwords/kmw1bis.png -share/doc/HTML/nl/kmessedwords/kmw2.png -share/doc/HTML/nl/kmessedwords/kmw3.png -share/doc/HTML/nl/kmessedwords/kmw4.png -share/doc/HTML/nl/kmines/common -share/doc/HTML/nl/kmines/index.cache.bz2 -share/doc/HTML/nl/kmines/index.docbook -share/doc/HTML/nl/kmines/kmines1.png -share/doc/HTML/nl/kmines/kmines2.png -share/doc/HTML/nl/kmix/common -share/doc/HTML/nl/kmix/index.cache.bz2 -share/doc/HTML/nl/kmix/index.docbook -share/doc/HTML/nl/kmoon/common -share/doc/HTML/nl/kmoon/index.cache.bz2 -share/doc/HTML/nl/kmoon/index.docbook -share/doc/HTML/nl/kmousetool/common -share/doc/HTML/nl/kmousetool/index.cache.bz2 -share/doc/HTML/nl/kmousetool/index.docbook -share/doc/HTML/nl/kmouth/common -share/doc/HTML/nl/kmouth/index.cache.bz2 -share/doc/HTML/nl/kmouth/index.docbook -share/doc/HTML/nl/kmouth/kmouthcpref.png -share/doc/HTML/nl/kmouth/kmouthctts.png -share/doc/HTML/nl/kmouth/kmouthcwcp.png -share/doc/HTML/nl/kmouth/kmouthedit.png -share/doc/HTML/nl/kmouth/kmouthmain.png -share/doc/HTML/nl/kmouth/kmouthwizard.png -share/doc/HTML/nl/kmplot/commands.docbook -share/doc/HTML/nl/kmplot/common -share/doc/HTML/nl/kmplot/configuration.docbook -share/doc/HTML/nl/kmplot/credits.docbook -share/doc/HTML/nl/kmplot/dcop.docbook -share/doc/HTML/nl/kmplot/developer.docbook -share/doc/HTML/nl/kmplot/firststeps.docbook -share/doc/HTML/nl/kmplot/index.cache.bz2 -share/doc/HTML/nl/kmplot/index.docbook -share/doc/HTML/nl/kmplot/install.docbook -share/doc/HTML/nl/kmplot/introduction.docbook -share/doc/HTML/nl/kmplot/menu.docbook -share/doc/HTML/nl/kmplot/reference.docbook -share/doc/HTML/nl/kmplot/using.docbook -share/doc/HTML/nl/knode/commands.docbook -share/doc/HTML/nl/knode/common -share/doc/HTML/nl/knode/credits.docbook -share/doc/HTML/nl/knode/faq.docbook -share/doc/HTML/nl/knode/gloss.docbook -share/doc/HTML/nl/knode/index.cache.bz2 -share/doc/HTML/nl/knode/index.docbook -share/doc/HTML/nl/knode/install.docbook -share/doc/HTML/nl/knode/introduction.docbook -share/doc/HTML/nl/knode/journey.docbook -share/doc/HTML/nl/knode/more.docbook -share/doc/HTML/nl/knode/using-firststart.docbook -share/doc/HTML/nl/knode/using-morefeatures.docbook -share/doc/HTML/nl/knode/using-subscribing.docbook -share/doc/HTML/nl/knotes/common -share/doc/HTML/nl/knotes/index.cache.bz2 -share/doc/HTML/nl/knotes/index.docbook -share/doc/HTML/nl/kodo/common -share/doc/HTML/nl/kodo/index.cache.bz2 -share/doc/HTML/nl/kodo/index.docbook -share/doc/HTML/nl/kolf/common -share/doc/HTML/nl/kolf/index.cache.bz2 -share/doc/HTML/nl/kolf/index.docbook -share/doc/HTML/nl/kommander/basics.docbook -share/doc/HTML/nl/kommander/commands.docbook -share/doc/HTML/nl/kommander/common -share/doc/HTML/nl/kommander/credits.docbook -share/doc/HTML/nl/kommander/dcop.docbook -share/doc/HTML/nl/kommander/editor.docbook -share/doc/HTML/nl/kommander/extending.docbook -share/doc/HTML/nl/kommander/glossary.docbook -share/doc/HTML/nl/kommander/index.cache.bz2 -share/doc/HTML/nl/kommander/index.docbook -share/doc/HTML/nl/kommander/installation.docbook -share/doc/HTML/nl/kommander/introduction.docbook -share/doc/HTML/nl/kommander/q-and-a.docbook -share/doc/HTML/nl/kommander/specials.docbook -share/doc/HTML/nl/kommander/tutorials.docbook -share/doc/HTML/nl/kommander/widgets.docbook -share/doc/HTML/nl/kompare/common -share/doc/HTML/nl/kompare/index.cache.bz2 -share/doc/HTML/nl/kompare/index.docbook -share/doc/HTML/nl/konq-plugins/babel/common -share/doc/HTML/nl/konq-plugins/babel/index.cache.bz2 -share/doc/HTML/nl/konq-plugins/babel/index.docbook -share/doc/HTML/nl/konq-plugins/common -share/doc/HTML/nl/konq-plugins/crashes/common -share/doc/HTML/nl/konq-plugins/crashes/index.cache.bz2 -share/doc/HTML/nl/konq-plugins/crashes/index.docbook -share/doc/HTML/nl/konq-plugins/dirfilter/common -share/doc/HTML/nl/konq-plugins/dirfilter/index.cache.bz2 -share/doc/HTML/nl/konq-plugins/dirfilter/index.docbook -share/doc/HTML/nl/konq-plugins/domtreeviewer/common -share/doc/HTML/nl/konq-plugins/domtreeviewer/index.cache.bz2 -share/doc/HTML/nl/konq-plugins/domtreeviewer/index.docbook -share/doc/HTML/nl/konq-plugins/fsview/common -share/doc/HTML/nl/konq-plugins/fsview/index.cache.bz2 -share/doc/HTML/nl/konq-plugins/fsview/index.docbook -share/doc/HTML/nl/konq-plugins/imgallery/common -share/doc/HTML/nl/konq-plugins/imgallery/index.cache.bz2 -share/doc/HTML/nl/konq-plugins/imgallery/index.docbook -share/doc/HTML/nl/konq-plugins/index.cache.bz2 -share/doc/HTML/nl/konq-plugins/index.docbook -share/doc/HTML/nl/konq-plugins/khtmlsettings/common -share/doc/HTML/nl/konq-plugins/khtmlsettings/index.cache.bz2 -share/doc/HTML/nl/konq-plugins/khtmlsettings/index.docbook -share/doc/HTML/nl/konq-plugins/kuick/common -share/doc/HTML/nl/konq-plugins/kuick/index.cache.bz2 -share/doc/HTML/nl/konq-plugins/kuick/index.docbook -share/doc/HTML/nl/konq-plugins/mediaplayer/common -share/doc/HTML/nl/konq-plugins/mediaplayer/index.cache.bz2 -share/doc/HTML/nl/konq-plugins/mediaplayer/index.docbook -share/doc/HTML/nl/konq-plugins/smbmounter/common -share/doc/HTML/nl/konq-plugins/smbmounter/index.cache.bz2 -share/doc/HTML/nl/konq-plugins/smbmounter/index.docbook -share/doc/HTML/nl/konq-plugins/uachanger/common -share/doc/HTML/nl/konq-plugins/uachanger/index.cache.bz2 -share/doc/HTML/nl/konq-plugins/uachanger/index.docbook -share/doc/HTML/nl/konq-plugins/validators/common -share/doc/HTML/nl/konq-plugins/validators/index.cache.bz2 -share/doc/HTML/nl/konq-plugins/validators/index.docbook -share/doc/HTML/nl/konq-plugins/webarchiver/common -share/doc/HTML/nl/konq-plugins/webarchiver/index.cache.bz2 -share/doc/HTML/nl/konq-plugins/webarchiver/index.docbook -share/doc/HTML/nl/konqueror/basics.docbook -share/doc/HTML/nl/konqueror/bookmarks.docbook -share/doc/HTML/nl/konqueror/browser.docbook -share/doc/HTML/nl/konqueror/cmndline.png -share/doc/HTML/nl/konqueror/commands.docbook -share/doc/HTML/nl/konqueror/common -share/doc/HTML/nl/konqueror/config.docbook -share/doc/HTML/nl/konqueror/credits.docbook -share/doc/HTML/nl/konqueror/dirtree.png -share/doc/HTML/nl/konqueror/dragdrop.png -share/doc/HTML/nl/konqueror/faq.docbook -share/doc/HTML/nl/konqueror/filemanager.docbook -share/doc/HTML/nl/konqueror/index.cache.bz2 -share/doc/HTML/nl/konqueror/index.docbook -share/doc/HTML/nl/konqueror/introduction.docbook -share/doc/HTML/nl/konqueror/konqorg.png -share/doc/HTML/nl/konqueror/parts.png -share/doc/HTML/nl/konqueror/path-complete.docbook -share/doc/HTML/nl/konqueror/plugins.docbook -share/doc/HTML/nl/konqueror/save-settings.docbook -share/doc/HTML/nl/konqueror/shortcut1.png -share/doc/HTML/nl/konqueror/shortcut2.png -share/doc/HTML/nl/konqueror/sidebar.docbook -share/doc/HTML/nl/konquest/common -share/doc/HTML/nl/konquest/index.cache.bz2 -share/doc/HTML/nl/konquest/index.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/nl/konsolekalendar/common -share/doc/HTML/nl/konsolekalendar/index.cache.bz2 -share/doc/HTML/nl/konsolekalendar/index.docbook -share/doc/HTML/nl/kontact/common -share/doc/HTML/nl/kontact/index.cache.bz2 -share/doc/HTML/nl/kontact/index.docbook -share/doc/HTML/nl/kopete/common -share/doc/HTML/nl/kopete/index.cache.bz2 -share/doc/HTML/nl/kopete/index.docbook -share/doc/HTML/nl/kopete/menus.docbook -share/doc/HTML/nl/korganizer/common -share/doc/HTML/nl/korganizer/exchange-plugin.docbook -share/doc/HTML/nl/korganizer/group-scheduling.docbook -share/doc/HTML/nl/korganizer/index.cache.bz2 -share/doc/HTML/nl/korganizer/index.docbook -share/doc/HTML/nl/korganizer/outlook-to-vcalendar.docbook -share/doc/HTML/nl/korganizer/plugins-chapter.docbook -share/doc/HTML/nl/korn/common -share/doc/HTML/nl/korn/index.cache.bz2 -share/doc/HTML/nl/korn/index.docbook -share/doc/HTML/nl/kpackage/bsdloc.png -share/doc/HTML/nl/kpackage/common -share/doc/HTML/nl/kpackage/debaptloc.png -share/doc/HTML/nl/kpackage/debloc.png -share/doc/HTML/nl/kpackage/handle.png -share/doc/HTML/nl/kpackage/index.cache.bz2 -share/doc/HTML/nl/kpackage/index.docbook -share/doc/HTML/nl/kpackage/install.png -share/doc/HTML/nl/kpackage/left.png -share/doc/HTML/nl/kpackage/right-change.png -share/doc/HTML/nl/kpackage/right-files.png -share/doc/HTML/nl/kpackage/right-prop.png -share/doc/HTML/nl/kpackage/rpmloc.png -share/doc/HTML/nl/kpackage/slackloc.png -share/doc/HTML/nl/kpackage/uninstall.png -share/doc/HTML/nl/kpager/common -share/doc/HTML/nl/kpager/index.cache.bz2 -share/doc/HTML/nl/kpager/index.docbook -share/doc/HTML/nl/kpat/common -share/doc/HTML/nl/kpat/index.cache.bz2 -share/doc/HTML/nl/kpat/index.docbook -share/doc/HTML/nl/kpat/man-kpat.6.docbook -share/doc/HTML/nl/kpdf/common -share/doc/HTML/nl/kpdf/index.cache.bz2 -share/doc/HTML/nl/kpdf/index.docbook -share/doc/HTML/nl/kpercentage/answer.png -share/doc/HTML/nl/kpercentage/commands.docbook -share/doc/HTML/nl/kpercentage/common -share/doc/HTML/nl/kpercentage/credits.docbook -share/doc/HTML/nl/kpercentage/devel.docbook -share/doc/HTML/nl/kpercentage/edu-logo.png -share/doc/HTML/nl/kpercentage/faq.docbook -share/doc/HTML/nl/kpercentage/help.png -share/doc/HTML/nl/kpercentage/index.cache.bz2 -share/doc/HTML/nl/kpercentage/index.docbook -share/doc/HTML/nl/kpercentage/install.docbook -share/doc/HTML/nl/kpercentage/introduction.docbook -share/doc/HTML/nl/kpercentage/main.png -share/doc/HTML/nl/kpercentage/using.docbook -share/doc/HTML/nl/kpercentage/welcome.png -share/doc/HTML/nl/kpf/common -share/doc/HTML/nl/kpf/index.cache.bz2 -share/doc/HTML/nl/kpf/index.docbook -share/doc/HTML/nl/kpilot/common -share/doc/HTML/nl/kpilot/configuration.docbook -share/doc/HTML/nl/kpilot/faq.docbook -share/doc/HTML/nl/kpilot/index.cache.bz2 -share/doc/HTML/nl/kpilot/index.docbook -share/doc/HTML/nl/kpilot/sync.docbook -share/doc/HTML/nl/kpilot/usage.docbook -share/doc/HTML/nl/kpoker/common -share/doc/HTML/nl/kpoker/index.cache.bz2 -share/doc/HTML/nl/kpoker/index.docbook -share/doc/HTML/nl/kpoker/kpoker1.png -share/doc/HTML/nl/kpoker/kpoker2.png -share/doc/HTML/nl/kreversi/common -share/doc/HTML/nl/kreversi/index.cache.bz2 -share/doc/HTML/nl/kreversi/index.docbook -share/doc/HTML/nl/kreversi/kreversi1.png -share/doc/HTML/nl/kruler/common -share/doc/HTML/nl/kruler/index.cache.bz2 -share/doc/HTML/nl/kruler/index.docbook -share/doc/HTML/nl/ksame/common -share/doc/HTML/nl/ksame/index.cache.bz2 -share/doc/HTML/nl/ksame/index.docbook -share/doc/HTML/nl/kshisen/common -share/doc/HTML/nl/kshisen/index.cache.bz2 -share/doc/HTML/nl/kshisen/index.docbook -share/doc/HTML/nl/ksim/common -share/doc/HTML/nl/ksim/index.cache.bz2 -share/doc/HTML/nl/ksim/index.docbook -share/doc/HTML/nl/ksirtet/common -share/doc/HTML/nl/ksirtet/index.cache.bz2 -share/doc/HTML/nl/ksirtet/index.docbook -share/doc/HTML/nl/ksnake/common -share/doc/HTML/nl/ksnake/index.cache.bz2 -share/doc/HTML/nl/ksnake/index.docbook -share/doc/HTML/nl/ksnapshot/common -share/doc/HTML/nl/ksnapshot/index.cache.bz2 -share/doc/HTML/nl/ksnapshot/index.docbook -share/doc/HTML/nl/ksokoban/common -share/doc/HTML/nl/ksokoban/index.cache.bz2 -share/doc/HTML/nl/ksokoban/index.docbook -share/doc/HTML/nl/kspaceduel/common -share/doc/HTML/nl/kspaceduel/index.cache.bz2 -share/doc/HTML/nl/kspaceduel/index.docbook -share/doc/HTML/nl/kspaceduel/kspaceduel3.png -share/doc/HTML/nl/kspell/common -share/doc/HTML/nl/kspell/index.cache.bz2 -share/doc/HTML/nl/kspell/index.docbook -share/doc/HTML/nl/ksplashml/common -share/doc/HTML/nl/ksplashml/index.cache.bz2 -share/doc/HTML/nl/ksplashml/index.docbook -share/doc/HTML/nl/kstars/aavso.png -share/doc/HTML/nl/kstars/ai-contents.docbook -share/doc/HTML/nl/kstars/altvstime.docbook -share/doc/HTML/nl/kstars/altvstime.png -share/doc/HTML/nl/kstars/astroinfo.docbook -share/doc/HTML/nl/kstars/blackbody.docbook -share/doc/HTML/nl/kstars/blackbody.png -share/doc/HTML/nl/kstars/calc-angdist.docbook -share/doc/HTML/nl/kstars/calc-apcoords.docbook -share/doc/HTML/nl/kstars/calc-apcoords.png -share/doc/HTML/nl/kstars/calc-dayduration.docbook -share/doc/HTML/nl/kstars/calc-daylength.png -share/doc/HTML/nl/kstars/calc-ecliptic.docbook -share/doc/HTML/nl/kstars/calc-eqgal.docbook -share/doc/HTML/nl/kstars/calc-eqgal.png -share/doc/HTML/nl/kstars/calc-equinox.docbook -share/doc/HTML/nl/kstars/calc-geodetic.docbook -share/doc/HTML/nl/kstars/calc-geodetic.png -share/doc/HTML/nl/kstars/calc-horizontal.docbook -share/doc/HTML/nl/kstars/calc-horizontal.png -share/doc/HTML/nl/kstars/calc-julian.png -share/doc/HTML/nl/kstars/calc-julianday.docbook -share/doc/HTML/nl/kstars/calc-planetcoords.docbook -share/doc/HTML/nl/kstars/calc-precess.docbook -share/doc/HTML/nl/kstars/calc-precess.png -share/doc/HTML/nl/kstars/calc-sidereal.docbook -share/doc/HTML/nl/kstars/calc-sidereal.png -share/doc/HTML/nl/kstars/calculator.docbook -share/doc/HTML/nl/kstars/cequator.docbook -share/doc/HTML/nl/kstars/color_indices.png -share/doc/HTML/nl/kstars/colorandtemp.docbook -share/doc/HTML/nl/kstars/commands.docbook -share/doc/HTML/nl/kstars/common -share/doc/HTML/nl/kstars/config.docbook -share/doc/HTML/nl/kstars/cpoles.docbook -share/doc/HTML/nl/kstars/credits.docbook -share/doc/HTML/nl/kstars/csphere.docbook -share/doc/HTML/nl/kstars/darkmatter.docbook -share/doc/HTML/nl/kstars/dcop.docbook -share/doc/HTML/nl/kstars/detaildialog.png -share/doc/HTML/nl/kstars/details.docbook -share/doc/HTML/nl/kstars/devicemanager.png -share/doc/HTML/nl/kstars/dumpmode.docbook -share/doc/HTML/nl/kstars/ecliptic.docbook -share/doc/HTML/nl/kstars/ellipticalgalaxies.docbook -share/doc/HTML/nl/kstars/equinox.docbook -share/doc/HTML/nl/kstars/faq.docbook -share/doc/HTML/nl/kstars/find.png -share/doc/HTML/nl/kstars/flux.docbook -share/doc/HTML/nl/kstars/fovdialog.png -share/doc/HTML/nl/kstars/geocoords.docbook -share/doc/HTML/nl/kstars/geolocator.png -share/doc/HTML/nl/kstars/greatcircle.docbook -share/doc/HTML/nl/kstars/horizon.docbook -share/doc/HTML/nl/kstars/hourangle.docbook -share/doc/HTML/nl/kstars/index.cache.bz2 -share/doc/HTML/nl/kstars/index.docbook -share/doc/HTML/nl/kstars/indi.docbook -share/doc/HTML/nl/kstars/indiclient.png -share/doc/HTML/nl/kstars/indicontrolpanel.png -share/doc/HTML/nl/kstars/install.docbook -share/doc/HTML/nl/kstars/jmoons.docbook -share/doc/HTML/nl/kstars/jmoons.png -share/doc/HTML/nl/kstars/julianday.docbook -share/doc/HTML/nl/kstars/kepler2nd.png -share/doc/HTML/nl/kstars/leapyear.docbook -share/doc/HTML/nl/kstars/lightcurve.png -share/doc/HTML/nl/kstars/lightcurves.docbook -share/doc/HTML/nl/kstars/luminosity.docbook -share/doc/HTML/nl/kstars/magnitude.docbook -share/doc/HTML/nl/kstars/meridian.docbook -share/doc/HTML/nl/kstars/newfov.png -share/doc/HTML/nl/kstars/observinglist.docbook -share/doc/HTML/nl/kstars/parallax.docbook -share/doc/HTML/nl/kstars/popup.png -share/doc/HTML/nl/kstars/precession.docbook -share/doc/HTML/nl/kstars/quicktour.docbook -share/doc/HTML/nl/kstars/retrograde.docbook -share/doc/HTML/nl/kstars/screen1.png -share/doc/HTML/nl/kstars/scriptbuilder.docbook -share/doc/HTML/nl/kstars/scriptbuilder.png -share/doc/HTML/nl/kstars/sidereal.docbook -share/doc/HTML/nl/kstars/skycoords.docbook -share/doc/HTML/nl/kstars/skymapdevice.png -share/doc/HTML/nl/kstars/solarsys.docbook -share/doc/HTML/nl/kstars/solarsystem.png -share/doc/HTML/nl/kstars/spiralgalaxies.docbook -share/doc/HTML/nl/kstars/star_colors.png -share/doc/HTML/nl/kstars/stars.docbook -share/doc/HTML/nl/kstars/timezones.docbook -share/doc/HTML/nl/kstars/tools.docbook -share/doc/HTML/nl/kstars/utime.docbook -share/doc/HTML/nl/kstars/viewops.png -share/doc/HTML/nl/kstars/wut.docbook -share/doc/HTML/nl/kstars/wut.png -share/doc/HTML/nl/kstars/zenith.docbook -share/doc/HTML/nl/ksysguard/common -share/doc/HTML/nl/ksysguard/index.cache.bz2 -share/doc/HTML/nl/ksysguard/index.docbook -share/doc/HTML/nl/ksysv/common -share/doc/HTML/nl/ksysv/index.cache.bz2 -share/doc/HTML/nl/ksysv/index.docbook -share/doc/HTML/nl/kteatime/common -share/doc/HTML/nl/kteatime/index.cache.bz2 -share/doc/HTML/nl/kteatime/index.docbook -share/doc/HTML/nl/ktimer/common -share/doc/HTML/nl/ktimer/index.cache.bz2 -share/doc/HTML/nl/ktimer/index.docbook -share/doc/HTML/nl/ktnef/common -share/doc/HTML/nl/ktnef/index.cache.bz2 -share/doc/HTML/nl/ktnef/index.docbook -share/doc/HTML/nl/ktouch/common -share/doc/HTML/nl/ktouch/index.cache.bz2 -share/doc/HTML/nl/ktouch/index.docbook -share/doc/HTML/nl/ktouch/screenshot1.png -share/doc/HTML/nl/ktouch/screenshot2.png -share/doc/HTML/nl/ktouch/screenshot3.png -share/doc/HTML/nl/ktron/common -share/doc/HTML/nl/ktron/index.cache.bz2 -share/doc/HTML/nl/ktron/index.docbook -share/doc/HTML/nl/ktuberling/common -share/doc/HTML/nl/ktuberling/index.cache.bz2 -share/doc/HTML/nl/ktuberling/index.docbook -share/doc/HTML/nl/ktuberling/technical-reference.docbook -share/doc/HTML/nl/kturtle/common -share/doc/HTML/nl/kturtle/getting-started.docbook -share/doc/HTML/nl/kturtle/glossary.docbook -share/doc/HTML/nl/kturtle/index.cache.bz2 -share/doc/HTML/nl/kturtle/index.docbook -share/doc/HTML/nl/kturtle/mainwindow.png -share/doc/HTML/nl/kturtle/mainwindow_flower_nrs.png -share/doc/HTML/nl/kturtle/programming-reference.docbook -share/doc/HTML/nl/kturtle/translator-guide.docbook -share/doc/HTML/nl/kturtle/using-kturtle.docbook -share/doc/HTML/nl/kturtle/wrapping.png -share/doc/HTML/nl/kuickshow/common -share/doc/HTML/nl/kuickshow/index.cache.bz2 -share/doc/HTML/nl/kuickshow/index.docbook -share/doc/HTML/nl/kuser/common -share/doc/HTML/nl/kuser/index.cache.bz2 -share/doc/HTML/nl/kuser/index.docbook -share/doc/HTML/nl/kuser/kuser.png -share/doc/HTML/nl/kverbos/common -share/doc/HTML/nl/kverbos/index.cache.bz2 -share/doc/HTML/nl/kverbos/index.docbook -share/doc/HTML/nl/kwallet/common -share/doc/HTML/nl/kwallet/index.cache.bz2 -share/doc/HTML/nl/kwallet/index.docbook -share/doc/HTML/nl/kwatchgnupg/common -share/doc/HTML/nl/kwatchgnupg/index.cache.bz2 -share/doc/HTML/nl/kwatchgnupg/index.docbook -share/doc/HTML/nl/kweather/common -share/doc/HTML/nl/kweather/index.cache.bz2 -share/doc/HTML/nl/kweather/index.docbook -share/doc/HTML/nl/kwin4/common -share/doc/HTML/nl/kwin4/index.cache.bz2 -share/doc/HTML/nl/kwin4/index.docbook -share/doc/HTML/nl/kwordquiz/common -share/doc/HTML/nl/kwordquiz/index.cache.bz2 -share/doc/HTML/nl/kwordquiz/index.docbook -share/doc/HTML/nl/kwordquiz/kwq-dlg-characters.png -share/doc/HTML/nl/kwordquiz/kwq-dlg-configure-characters.png -share/doc/HTML/nl/kwordquiz/kwq-dlg-configure-editor.png -share/doc/HTML/nl/kwordquiz/kwq-dlg-configure-quiz.png -share/doc/HTML/nl/kwordquiz/kwq-dlg-languages.png -share/doc/HTML/nl/kwordquiz/kwq-dlg-print-exam.png -share/doc/HTML/nl/kwordquiz/kwq-dlg-print-flashcard.png -share/doc/HTML/nl/kwordquiz/kwq-dlg-print-list.png -share/doc/HTML/nl/kwordquiz/kwq-dlg-print-type.png -share/doc/HTML/nl/kwordquiz/kwq-dlg-rowscolumns.png -share/doc/HTML/nl/kwordquiz/kwq-dlg-sort.png -share/doc/HTML/nl/kwordquiz/kwq-editor.png -share/doc/HTML/nl/kwordquiz/kwq-flashcard.png -share/doc/HTML/nl/kwordquiz/kwq-multiple.png -share/doc/HTML/nl/kwordquiz/kwq-qanda.png -share/doc/HTML/nl/kworldclock/common -share/doc/HTML/nl/kworldclock/index.cache.bz2 -share/doc/HTML/nl/kworldclock/index.docbook -share/doc/HTML/nl/kxkb/common -share/doc/HTML/nl/kxkb/index.cache.bz2 -share/doc/HTML/nl/kxkb/index.docbook -share/doc/HTML/nl/kxsldbg/callstack.docbook -share/doc/HTML/nl/kxsldbg/common -share/doc/HTML/nl/kxsldbg/credits.docbook -share/doc/HTML/nl/kxsldbg/entities.docbook -share/doc/HTML/nl/kxsldbg/glossary.docbook -share/doc/HTML/nl/kxsldbg/index.cache.bz2 -share/doc/HTML/nl/kxsldbg/index.docbook -share/doc/HTML/nl/kxsldbg/kxsldbg_configure.docbook -share/doc/HTML/nl/kxsldbg/kxsldbg_inspector.docbook -share/doc/HTML/nl/kxsldbg/kxsldbg_mainwindow.docbook -share/doc/HTML/nl/kxsldbg/kxsldbg_tools.docbook -share/doc/HTML/nl/kxsldbg/sources.docbook -share/doc/HTML/nl/kxsldbg/templates.docbook -share/doc/HTML/nl/kxsldbg/variables.docbook -share/doc/HTML/nl/lskat/common -share/doc/HTML/nl/lskat/index.cache.bz2 -share/doc/HTML/nl/lskat/index.docbook -share/doc/HTML/nl/multisynk/common -share/doc/HTML/nl/multisynk/index.cache.bz2 -share/doc/HTML/nl/multisynk/index.docbook -share/doc/HTML/nl/multisynk/konnectors-chapter.docbook -share/doc/HTML/nl/noatun/common -share/doc/HTML/nl/noatun/index.cache.bz2 -share/doc/HTML/nl/noatun/index.docbook -share/doc/HTML/nl/quanta/adv-quanta.docbook -share/doc/HTML/nl/quanta/common -share/doc/HTML/nl/quanta/config-quanta.docbook -share/doc/HTML/nl/quanta/credits-license.docbook -share/doc/HTML/nl/quanta/debugging-quanta.docbook -share/doc/HTML/nl/quanta/extending-quanta.docbook -share/doc/HTML/nl/quanta/fundamentals.docbook -share/doc/HTML/nl/quanta/glossary.docbook -share/doc/HTML/nl/quanta/index.cache.bz2 -share/doc/HTML/nl/quanta/index.docbook -share/doc/HTML/nl/quanta/installation.docbook -share/doc/HTML/nl/quanta/introduction.docbook -share/doc/HTML/nl/quanta/man-quanta.1.docbook -share/doc/HTML/nl/quanta/q-and-a.docbook -share/doc/HTML/nl/quanta/quanta-menus.docbook -share/doc/HTML/nl/quanta/quanta-projects.docbook -share/doc/HTML/nl/quanta/working-with-quanta.docbook -share/doc/HTML/nl/scripts/man-adddebug.1.docbook -share/doc/HTML/nl/scripts/man-fixincludes.1.docbook -share/doc/HTML/nl/scripts/man-po2xml.1.docbook -share/doc/HTML/nl/scripts/man-qtdoc.1.docbook -share/doc/HTML/nl/scripts/man-split2po.1.docbook -share/doc/HTML/nl/scripts/man-swappo.1.docbook -share/doc/HTML/nl/umbrello/authors.docbook -share/doc/HTML/nl/umbrello/code_import_and_generation.docbook -share/doc/HTML/nl/umbrello/common -share/doc/HTML/nl/umbrello/credits.docbook -share/doc/HTML/nl/umbrello/index.cache.bz2 -share/doc/HTML/nl/umbrello/index.docbook -share/doc/HTML/nl/umbrello/introduction.docbook -share/doc/HTML/nl/umbrello/other_features.docbook -share/doc/HTML/nl/umbrello/uml_basics.docbook -share/doc/HTML/nl/umbrello/working_with_umbrello.docbook -share/doc/HTML/nl/xsldbg/commands.docbook -share/doc/HTML/nl/xsldbg/common -share/doc/HTML/nl/xsldbg/credits.docbook -share/doc/HTML/nl/xsldbg/index.cache.bz2 -share/doc/HTML/nl/xsldbg/index.docbook -share/doc/HTML/nl/xsldbg/introduction.docbook -share/doc/HTML/nl/xsldbg/usage.docbook -share/locale/nl/LC_MESSAGES/akregator.mo -share/locale/nl/LC_MESSAGES/akregator_konqplugin.mo -share/locale/nl/LC_MESSAGES/alsaplayerui.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/ark_plugin.mo -share/locale/nl/LC_MESSAGES/artsbuilder.mo -share/locale/nl/LC_MESSAGES/artscontrol.mo -share/locale/nl/LC_MESSAGES/artsmodules.mo -share/locale/nl/LC_MESSAGES/atlantik.mo -share/locale/nl/LC_MESSAGES/atlantikdesigner.mo -share/locale/nl/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/nl/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/nl/LC_MESSAGES/audiorename_plugin.mo -share/locale/nl/LC_MESSAGES/autorefresh.mo -share/locale/nl/LC_MESSAGES/babelfish.mo -share/locale/nl/LC_MESSAGES/cervisia.mo -share/locale/nl/LC_MESSAGES/charlatanui.mo -share/locale/nl/LC_MESSAGES/childpanelextension.mo -share/locale/nl/LC_MESSAGES/clockapplet.mo -share/locale/nl/LC_MESSAGES/crashesplugin.mo -share/locale/nl/LC_MESSAGES/cupsdconf.mo -share/locale/nl/LC_MESSAGES/cvsservice.mo -share/locale/nl/LC_MESSAGES/dcoprss.mo -share/locale/nl/LC_MESSAGES/devicesapplet.mo -share/locale/nl/LC_MESSAGES/dirfilterplugin.mo -share/locale/nl/LC_MESSAGES/display.mo -share/locale/nl/LC_MESSAGES/dockbarextension.mo -share/locale/nl/LC_MESSAGES/domtreeviewer.mo -share/locale/nl/LC_MESSAGES/drkonqi.mo -share/locale/nl/LC_MESSAGES/dub.mo -share/locale/nl/LC_MESSAGES/extensionproxy.mo -share/locale/nl/LC_MESSAGES/ffrs.mo -share/locale/nl/LC_MESSAGES/filetypes.mo -share/locale/nl/LC_MESSAGES/fontinst.mo -share/locale/nl/LC_MESSAGES/fsview.mo -share/locale/nl/LC_MESSAGES/htmlsearch.mo -share/locale/nl/LC_MESSAGES/imagerename_plugin.mo -share/locale/nl/LC_MESSAGES/imgalleryplugin.mo -share/locale/nl/LC_MESSAGES/irkick.mo -share/locale/nl/LC_MESSAGES/jefferson.mo -share/locale/nl/LC_MESSAGES/joystick.mo -share/locale/nl/LC_MESSAGES/juk.mo -share/locale/nl/LC_MESSAGES/kabc2mutt.mo -share/locale/nl/LC_MESSAGES/kabc_dir.mo -share/locale/nl/LC_MESSAGES/kabc_file.mo -share/locale/nl/LC_MESSAGES/kabc_ldap.mo -share/locale/nl/LC_MESSAGES/kabc_ldapkio.mo -share/locale/nl/LC_MESSAGES/kabc_net.mo -share/locale/nl/LC_MESSAGES/kabc_slox.mo -share/locale/nl/LC_MESSAGES/kabc_sql.mo -share/locale/nl/LC_MESSAGES/kabcformat_binary.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/kalarm.mo -share/locale/nl/LC_MESSAGES/kalzium.mo -share/locale/nl/LC_MESSAGES/kandy.mo -share/locale/nl/LC_MESSAGES/kappfinder.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/kate.mo -share/locale/nl/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/nl/LC_MESSAGES/katedefaultproject.mo -share/locale/nl/LC_MESSAGES/katefiletemplates.mo -share/locale/nl/LC_MESSAGES/katefll_initplugin.mo -share/locale/nl/LC_MESSAGES/katefll_plugin.mo -share/locale/nl/LC_MESSAGES/katehelloworld.mo -share/locale/nl/LC_MESSAGES/katehtmltools.mo -share/locale/nl/LC_MESSAGES/kateinsertcommand.mo -share/locale/nl/LC_MESSAGES/katekjswrapper.mo -share/locale/nl/LC_MESSAGES/katekttsd.mo -share/locale/nl/LC_MESSAGES/katemake.mo -share/locale/nl/LC_MESSAGES/katemodeline.mo -share/locale/nl/LC_MESSAGES/kateopenheader.mo -share/locale/nl/LC_MESSAGES/katepart.mo -share/locale/nl/LC_MESSAGES/katepartkttsd.mo -share/locale/nl/LC_MESSAGES/kateprojectmanager.mo -share/locale/nl/LC_MESSAGES/katepybrowse.mo -share/locale/nl/LC_MESSAGES/katesnippets.mo -share/locale/nl/LC_MESSAGES/katespell.mo -share/locale/nl/LC_MESSAGES/katetabbarextension.mo -share/locale/nl/LC_MESSAGES/katetextfilter.mo -share/locale/nl/LC_MESSAGES/katexmlcheck.mo -share/locale/nl/LC_MESSAGES/katexmltools.mo -share/locale/nl/LC_MESSAGES/katomic.mo -share/locale/nl/LC_MESSAGES/kaudiocreator.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/kbinaryclock.mo -share/locale/nl/LC_MESSAGES/kblackbox.mo -share/locale/nl/LC_MESSAGES/kbounce.mo -share/locale/nl/LC_MESSAGES/kbruch.mo -share/locale/nl/LC_MESSAGES/kbstateapplet.mo -share/locale/nl/LC_MESSAGES/kbugbuster.mo -share/locale/nl/LC_MESSAGES/kcachegrind.mo -share/locale/nl/LC_MESSAGES/kcalc.mo -share/locale/nl/LC_MESSAGES/kcharselect.mo -share/locale/nl/LC_MESSAGES/kcharselectapplet.mo -share/locale/nl/LC_MESSAGES/kcm_krfb.mo -share/locale/nl/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/nl/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/nl/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/nl/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/nl/LC_MESSAGES/kcmaccess.mo -share/locale/nl/LC_MESSAGES/kcmaccessibility.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/kcmcddb.mo -share/locale/nl/LC_MESSAGES/kcmcgi.mo -share/locale/nl/LC_MESSAGES/kcmcolors.mo -share/locale/nl/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/nl/LC_MESSAGES/kcmcrypto.mo -share/locale/nl/LC_MESSAGES/kcmcss.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/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/kcmkabconfig.mo -share/locale/nl/LC_MESSAGES/kcmkamera.mo -share/locale/nl/LC_MESSAGES/kcmkclock.mo -share/locale/nl/LC_MESSAGES/kcmkded.mo -share/locale/nl/LC_MESSAGES/kcmkdnssd.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/kcmkontactnt.mo -share/locale/nl/LC_MESSAGES/kcmktalkd.mo -share/locale/nl/LC_MESSAGES/kcmkttsd.mo -share/locale/nl/LC_MESSAGES/kcmkuick.mo -share/locale/nl/LC_MESSAGES/kcmkurifilt.mo -share/locale/nl/LC_MESSAGES/kcmkvaio.mo -share/locale/nl/LC_MESSAGES/kcmkwallet.mo -share/locale/nl/LC_MESSAGES/kcmkwindecoration.mo -share/locale/nl/LC_MESSAGES/kcmkwinrules.mo -share/locale/nl/LC_MESSAGES/kcmkwintheme.mo -share/locale/nl/LC_MESSAGES/kcmkwm.mo -share/locale/nl/LC_MESSAGES/kcmkxmlrpcd.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/kcmlirc.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/kcmnic.mo -share/locale/nl/LC_MESSAGES/kcmnotify.mo -share/locale/nl/LC_MESSAGES/kcmperformance.mo -share/locale/nl/LC_MESSAGES/kcmprintmgr.mo -share/locale/nl/LC_MESSAGES/kcmsamba.mo -share/locale/nl/LC_MESSAGES/kcmscreensaver.mo -share/locale/nl/LC_MESSAGES/kcmshell.mo -share/locale/nl/LC_MESSAGES/kcmsmartcard.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/kcmthinkpad.mo -share/locale/nl/LC_MESSAGES/kcmusb.mo -share/locale/nl/LC_MESSAGES/kcmview1394.mo -share/locale/nl/LC_MESSAGES/kcmvim.mo -share/locale/nl/LC_MESSAGES/kcmwifi.mo -share/locale/nl/LC_MESSAGES/kcmxinerama.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/kdat.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/kdelibs_colors.mo -share/locale/nl/LC_MESSAGES/kdelirc.mo -share/locale/nl/LC_MESSAGES/kdepasswd.mo -share/locale/nl/LC_MESSAGES/kdepimresources.mo -share/locale/nl/LC_MESSAGES/kdepimwizards.mo -share/locale/nl/LC_MESSAGES/kdeprint.mo -share/locale/nl/LC_MESSAGES/kdeprint_part.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/kdesu.mo -share/locale/nl/LC_MESSAGES/kdesud.mo -share/locale/nl/LC_MESSAGES/kdevdesigner.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/kdgantt.mo -share/locale/nl/LC_MESSAGES/kdialog.mo -share/locale/nl/LC_MESSAGES/kdict.mo -share/locale/nl/LC_MESSAGES/kdictapplet.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/keduca.mo -share/locale/nl/LC_MESSAGES/kenolaba.mo -share/locale/nl/LC_MESSAGES/kfax.mo -share/locale/nl/LC_MESSAGES/kfifteenapplet.mo -share/locale/nl/LC_MESSAGES/kfile_au.mo -share/locale/nl/LC_MESSAGES/kfile_avi.mo -share/locale/nl/LC_MESSAGES/kfile_bmp.mo -share/locale/nl/LC_MESSAGES/kfile_cert.mo -share/locale/nl/LC_MESSAGES/kfile_cpp.mo -share/locale/nl/LC_MESSAGES/kfile_dds.mo -share/locale/nl/LC_MESSAGES/kfile_deb.mo -share/locale/nl/LC_MESSAGES/kfile_desktop.mo -share/locale/nl/LC_MESSAGES/kfile_diff.mo -share/locale/nl/LC_MESSAGES/kfile_drgeo.mo -share/locale/nl/LC_MESSAGES/kfile_dvi.mo -share/locale/nl/LC_MESSAGES/kfile_exr.mo -share/locale/nl/LC_MESSAGES/kfile_flac.mo -share/locale/nl/LC_MESSAGES/kfile_folder.mo -share/locale/nl/LC_MESSAGES/kfile_font.mo -share/locale/nl/LC_MESSAGES/kfile_gif.mo -share/locale/nl/LC_MESSAGES/kfile_html.mo -share/locale/nl/LC_MESSAGES/kfile_ico.mo -share/locale/nl/LC_MESSAGES/kfile_ics.mo -share/locale/nl/LC_MESSAGES/kfile_jpeg.mo -share/locale/nl/LC_MESSAGES/kfile_kig.mo -share/locale/nl/LC_MESSAGES/kfile_lnk.mo -share/locale/nl/LC_MESSAGES/kfile_m3u.mo -share/locale/nl/LC_MESSAGES/kfile_mhtml.mo -share/locale/nl/LC_MESSAGES/kfile_mp3.mo -share/locale/nl/LC_MESSAGES/kfile_mpc.mo -share/locale/nl/LC_MESSAGES/kfile_ogg.mo -share/locale/nl/LC_MESSAGES/kfile_palm.mo -share/locale/nl/LC_MESSAGES/kfile_pcx.mo -share/locale/nl/LC_MESSAGES/kfile_pdf.mo -share/locale/nl/LC_MESSAGES/kfile_png.mo -share/locale/nl/LC_MESSAGES/kfile_pnm.mo -share/locale/nl/LC_MESSAGES/kfile_po.mo -share/locale/nl/LC_MESSAGES/kfile_ps.mo -share/locale/nl/LC_MESSAGES/kfile_rfc822.mo -share/locale/nl/LC_MESSAGES/kfile_rgb.mo -share/locale/nl/LC_MESSAGES/kfile_rpm.mo -share/locale/nl/LC_MESSAGES/kfile_sid.mo -share/locale/nl/LC_MESSAGES/kfile_tga.mo -share/locale/nl/LC_MESSAGES/kfile_theora.mo -share/locale/nl/LC_MESSAGES/kfile_tiff.mo -share/locale/nl/LC_MESSAGES/kfile_torrent.mo -share/locale/nl/LC_MESSAGES/kfile_ts.mo -share/locale/nl/LC_MESSAGES/kfile_txt.mo -share/locale/nl/LC_MESSAGES/kfile_vcf.mo -share/locale/nl/LC_MESSAGES/kfile_wav.mo -share/locale/nl/LC_MESSAGES/kfile_xbm.mo -share/locale/nl/LC_MESSAGES/kfile_xpm.mo -share/locale/nl/LC_MESSAGES/kfileaudiopreview.mo -share/locale/nl/LC_MESSAGES/kfilereplace.mo -share/locale/nl/LC_MESSAGES/kfileshare.mo -share/locale/nl/LC_MESSAGES/kfindpart.mo -share/locale/nl/LC_MESSAGES/kfloppy.mo -share/locale/nl/LC_MESSAGES/kfmclient.mo -share/locale/nl/LC_MESSAGES/kfontinst.mo -share/locale/nl/LC_MESSAGES/kfouleggs.mo -share/locale/nl/LC_MESSAGES/kgamma.mo -share/locale/nl/LC_MESSAGES/kgantt.mo -share/locale/nl/LC_MESSAGES/kget.mo -share/locale/nl/LC_MESSAGES/kghostview.mo -share/locale/nl/LC_MESSAGES/kgoldrunner.mo -share/locale/nl/LC_MESSAGES/kgpg.mo -share/locale/nl/LC_MESSAGES/kgreet_classic.mo -share/locale/nl/LC_MESSAGES/kgreet_winbind.mo -share/locale/nl/LC_MESSAGES/khangman.mo -share/locale/nl/LC_MESSAGES/khelpcenter.mo -share/locale/nl/LC_MESSAGES/khexedit.mo -share/locale/nl/LC_MESSAGES/khexedit2part.mo -share/locale/nl/LC_MESSAGES/khotkeys.mo -share/locale/nl/LC_MESSAGES/khtmlkttsd.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/kig.mo -share/locale/nl/LC_MESSAGES/kimagemapeditor.mo -share/locale/nl/LC_MESSAGES/kinetd.mo -share/locale/nl/LC_MESSAGES/kio.mo -share/locale/nl/LC_MESSAGES/kio_audiocd.mo -share/locale/nl/LC_MESSAGES/kio_devices.mo -share/locale/nl/LC_MESSAGES/kio_finger.mo -share/locale/nl/LC_MESSAGES/kio_fish.mo -share/locale/nl/LC_MESSAGES/kio_floppy.mo -share/locale/nl/LC_MESSAGES/kio_groupwise.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_ldap.mo -share/locale/nl/LC_MESSAGES/kio_mac.mo -share/locale/nl/LC_MESSAGES/kio_man.mo -share/locale/nl/LC_MESSAGES/kio_media.mo -share/locale/nl/LC_MESSAGES/kio_mobile.mo -share/locale/nl/LC_MESSAGES/kio_newimap4.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_print.mo -share/locale/nl/LC_MESSAGES/kio_remote.mo -share/locale/nl/LC_MESSAGES/kio_settings.mo -share/locale/nl/LC_MESSAGES/kio_sftp.mo -share/locale/nl/LC_MESSAGES/kio_sieve.mo -share/locale/nl/LC_MESSAGES/kio_smb.mo -share/locale/nl/LC_MESSAGES/kio_smtp.mo -share/locale/nl/LC_MESSAGES/kio_svn.mo -share/locale/nl/LC_MESSAGES/kio_system.mo -share/locale/nl/LC_MESSAGES/kio_trash.mo -share/locale/nl/LC_MESSAGES/kio_zeroconf.mo -share/locale/nl/LC_MESSAGES/kioexec.mo -share/locale/nl/LC_MESSAGES/kiten.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/klatin.mo -share/locale/nl/LC_MESSAGES/klegacyimport.mo -share/locale/nl/LC_MESSAGES/kleopatra.mo -share/locale/nl/LC_MESSAGES/klettres.mo -share/locale/nl/LC_MESSAGES/klickety.mo -share/locale/nl/LC_MESSAGES/klines.mo -share/locale/nl/LC_MESSAGES/klinkstatus.mo -share/locale/nl/LC_MESSAGES/klipper.mo -share/locale/nl/LC_MESSAGES/klock.mo -share/locale/nl/LC_MESSAGES/kmag.mo -share/locale/nl/LC_MESSAGES/kmahjongg.mo -share/locale/nl/LC_MESSAGES/kmail.mo -share/locale/nl/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/nl/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/nl/LC_MESSAGES/kmailcvt.mo -share/locale/nl/LC_MESSAGES/kmathapplet.mo -share/locale/nl/LC_MESSAGES/kmathtool.mo -share/locale/nl/LC_MESSAGES/kmcop.mo -share/locale/nl/LC_MESSAGES/kmenuapplet.mo -share/locale/nl/LC_MESSAGES/kmenuedit.mo -share/locale/nl/LC_MESSAGES/kmessedwords.mo -share/locale/nl/LC_MESSAGES/kmid.mo -share/locale/nl/LC_MESSAGES/kmilo_delli8k.mo -share/locale/nl/LC_MESSAGES/kmilo_generic.mo -share/locale/nl/LC_MESSAGES/kmilo_kvaio.mo -share/locale/nl/LC_MESSAGES/kmilo_powerbook.mo -share/locale/nl/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/nl/LC_MESSAGES/kmilod.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/kmobile.mo -share/locale/nl/LC_MESSAGES/kmoon.mo -share/locale/nl/LC_MESSAGES/kmousetool.mo -share/locale/nl/LC_MESSAGES/kmouth.mo -share/locale/nl/LC_MESSAGES/kmplot.mo -share/locale/nl/LC_MESSAGES/kmrml.mo -share/locale/nl/LC_MESSAGES/knetattach.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/kodo.mo -share/locale/nl/LC_MESSAGES/kolf.mo -share/locale/nl/LC_MESSAGES/kolourpaint.mo -share/locale/nl/LC_MESSAGES/kolourpicker.mo -share/locale/nl/LC_MESSAGES/kommander.mo -share/locale/nl/LC_MESSAGES/kompare.mo -share/locale/nl/LC_MESSAGES/konnector_dummy.mo -share/locale/nl/LC_MESSAGES/konnector_kabc.mo -share/locale/nl/LC_MESSAGES/konnector_kcal.mo -share/locale/nl/LC_MESSAGES/konnector_local.mo -share/locale/nl/LC_MESSAGES/konnector_qtopia.mo -share/locale/nl/LC_MESSAGES/konnector_remote.mo -share/locale/nl/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/nl/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/nl/LC_MESSAGES/konqsidebar_news.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/konsolekalendar.mo -share/locale/nl/LC_MESSAGES/kontact.mo -share/locale/nl/LC_MESSAGES/kooka.mo -share/locale/nl/LC_MESSAGES/kopete.mo -share/locale/nl/LC_MESSAGES/korganizer.mo -share/locale/nl/LC_MESSAGES/korn.mo -share/locale/nl/LC_MESSAGES/kpackage.mo -share/locale/nl/LC_MESSAGES/kpager.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/kpdf.mo -share/locale/nl/LC_MESSAGES/kpercentage.mo -share/locale/nl/LC_MESSAGES/kpersonalizer.mo -share/locale/nl/LC_MESSAGES/kpf.mo -share/locale/nl/LC_MESSAGES/kpilot.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/krandr.mo -share/locale/nl/LC_MESSAGES/krdb.mo -share/locale/nl/LC_MESSAGES/krdc.mo -share/locale/nl/LC_MESSAGES/kreadconfig.mo -share/locale/nl/LC_MESSAGES/krec.mo -share/locale/nl/LC_MESSAGES/kregexpeditor.mo -share/locale/nl/LC_MESSAGES/kres_blogging.mo -share/locale/nl/LC_MESSAGES/kres_bugzilla.mo -share/locale/nl/LC_MESSAGES/kres_exchange.mo -share/locale/nl/LC_MESSAGES/kres_featureplan.mo -share/locale/nl/LC_MESSAGES/kres_groupwise.mo -share/locale/nl/LC_MESSAGES/kres_kolab.mo -share/locale/nl/LC_MESSAGES/kres_opengroupware.mo -share/locale/nl/LC_MESSAGES/kres_remote.mo -share/locale/nl/LC_MESSAGES/kres_xmlrpc.mo -share/locale/nl/LC_MESSAGES/kreversi.mo -share/locale/nl/LC_MESSAGES/krfb.mo -share/locale/nl/LC_MESSAGES/kruler.mo -share/locale/nl/LC_MESSAGES/krunapplet.mo -share/locale/nl/LC_MESSAGES/ksame.mo -share/locale/nl/LC_MESSAGES/ksayit.mo -share/locale/nl/LC_MESSAGES/kscd.mo -share/locale/nl/LC_MESSAGES/kscreensaver.mo -share/locale/nl/LC_MESSAGES/kshisen.mo -share/locale/nl/LC_MESSAGES/ksig.mo -share/locale/nl/LC_MESSAGES/ksim.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/ksplashthemes.mo -share/locale/nl/LC_MESSAGES/kstars.mo -share/locale/nl/LC_MESSAGES/kstart.mo -share/locale/nl/LC_MESSAGES/kstartperf.mo -share/locale/nl/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/nl/LC_MESSAGES/kstyle_phase_config.mo -share/locale/nl/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/nl/LC_MESSAGES/ksvgplugin.mo -share/locale/nl/LC_MESSAGES/ksync.mo -share/locale/nl/LC_MESSAGES/ksysguard.mo -share/locale/nl/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/nl/LC_MESSAGES/ksystraycmd.mo -share/locale/nl/LC_MESSAGES/ksysv.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/ktexteditor_autobookmarker.mo -share/locale/nl/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/nl/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/nl/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/nl/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/nl/LC_MESSAGES/ktexteditor_kttsd.mo -share/locale/nl/LC_MESSAGES/kthememanager.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/ktnef.mo -share/locale/nl/LC_MESSAGES/ktouch.mo -share/locale/nl/LC_MESSAGES/ktron.mo -share/locale/nl/LC_MESSAGES/kttsd.mo -share/locale/nl/LC_MESSAGES/kttsd_commandplugin.mo -share/locale/nl/LC_MESSAGES/kttsd_eposplugin.mo -share/locale/nl/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/nl/LC_MESSAGES/kttsd_fliteplugin.mo -share/locale/nl/LC_MESSAGES/kttsd_freettsplugin.mo -share/locale/nl/LC_MESSAGES/kttsd_hadifixplugin.mo -share/locale/nl/LC_MESSAGES/kttsd_sbdplugin.mo -share/locale/nl/LC_MESSAGES/kttsd_stringreplacerplugin.mo -share/locale/nl/LC_MESSAGES/kttsd_talkerchooserplugin.mo -share/locale/nl/LC_MESSAGES/kttsd_xmltransformerplugin.mo -share/locale/nl/LC_MESSAGES/kttsjobmgr.mo -share/locale/nl/LC_MESSAGES/kttsmgr.mo -share/locale/nl/LC_MESSAGES/ktuberling.mo -share/locale/nl/LC_MESSAGES/kturtle.mo -share/locale/nl/LC_MESSAGES/ktux.mo -share/locale/nl/LC_MESSAGES/kuick_plugin.mo -share/locale/nl/LC_MESSAGES/kuickshow.mo -share/locale/nl/LC_MESSAGES/kuiviewer.mo -share/locale/nl/LC_MESSAGES/kuser.mo -share/locale/nl/LC_MESSAGES/kverbos.mo -share/locale/nl/LC_MESSAGES/kview.mo -share/locale/nl/LC_MESSAGES/kview_scale.mo -share/locale/nl/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/nl/LC_MESSAGES/kviewcanvas.mo -share/locale/nl/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/nl/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/nl/LC_MESSAGES/kviewscannerplugin.mo -share/locale/nl/LC_MESSAGES/kviewshell.mo -share/locale/nl/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/nl/LC_MESSAGES/kviewviewer.mo -share/locale/nl/LC_MESSAGES/kvoctrain.mo -share/locale/nl/LC_MESSAGES/kwalletmanager.mo -share/locale/nl/LC_MESSAGES/kwatchgnupg.mo -share/locale/nl/LC_MESSAGES/kweather.mo -share/locale/nl/LC_MESSAGES/kwifimanager.mo -share/locale/nl/LC_MESSAGES/kwin.mo -share/locale/nl/LC_MESSAGES/kwin4.mo -share/locale/nl/LC_MESSAGES/kwin_art_clients.mo -share/locale/nl/LC_MESSAGES/kwin_clients.mo -share/locale/nl/LC_MESSAGES/kwireless.mo -share/locale/nl/LC_MESSAGES/kwordquiz.mo -share/locale/nl/LC_MESSAGES/kworldclock.mo -share/locale/nl/LC_MESSAGES/kwriteconfig.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/kxsldbg.mo -share/locale/nl/LC_MESSAGES/libKTTSD.mo -share/locale/nl/LC_MESSAGES/libcalendarresources.mo -share/locale/nl/LC_MESSAGES/libdmctl.mo -share/locale/nl/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/nl/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/nl/LC_MESSAGES/libkcal.mo -share/locale/nl/LC_MESSAGES/libkcalsystem.mo -share/locale/nl/LC_MESSAGES/libkcddb.mo -share/locale/nl/LC_MESSAGES/libkdegames.mo -share/locale/nl/LC_MESSAGES/libkdehighscores.mo -share/locale/nl/LC_MESSAGES/libkdenetwork.mo -share/locale/nl/LC_MESSAGES/libkdepim.mo -share/locale/nl/LC_MESSAGES/libkholidays.mo -share/locale/nl/LC_MESSAGES/libkicker.mo -share/locale/nl/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/nl/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/nl/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/nl/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/nl/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/nl/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/nl/LC_MESSAGES/libkickermenu_tom.mo -share/locale/nl/LC_MESSAGES/libkleopatra.mo -share/locale/nl/LC_MESSAGES/libkmime.mo -share/locale/nl/LC_MESSAGES/libkonq.mo -share/locale/nl/LC_MESSAGES/libkpgp.mo -share/locale/nl/LC_MESSAGES/libkpimexchange.mo -share/locale/nl/LC_MESSAGES/libkscan.mo -share/locale/nl/LC_MESSAGES/libkscreensaver.mo -share/locale/nl/LC_MESSAGES/libksieve.mo -share/locale/nl/LC_MESSAGES/libksirtet.mo -share/locale/nl/LC_MESSAGES/libksync.mo -share/locale/nl/LC_MESSAGES/libtaskbar.mo -share/locale/nl/LC_MESSAGES/libtaskmanager.mo -share/locale/nl/LC_MESSAGES/lockout.mo -share/locale/nl/LC_MESSAGES/lskat.mo -share/locale/nl/LC_MESSAGES/lyrics.mo -share/locale/nl/LC_MESSAGES/mediaapplet.mo -share/locale/nl/LC_MESSAGES/mediacontrol.mo -share/locale/nl/LC_MESSAGES/minitoolsplugin.mo -share/locale/nl/LC_MESSAGES/multisynk.mo -share/locale/nl/LC_MESSAGES/naughtyapplet.mo -share/locale/nl/LC_MESSAGES/nexscope.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/pitchablespeed.mo -share/locale/nl/LC_MESSAGES/ppdtranslations.mo -share/locale/nl/LC_MESSAGES/privacy.mo -share/locale/nl/LC_MESSAGES/qeditor.mo -share/locale/nl/LC_MESSAGES/quanta.mo -share/locale/nl/LC_MESSAGES/quicklauncher.mo -share/locale/nl/LC_MESSAGES/rellinks.mo -share/locale/nl/LC_MESSAGES/searchbarplugin.mo -share/locale/nl/LC_MESSAGES/secpolicy.mo -share/locale/nl/LC_MESSAGES/spy.mo -share/locale/nl/LC_MESSAGES/synaescope.mo -share/locale/nl/LC_MESSAGES/taskbarextension.mo -share/locale/nl/LC_MESSAGES/timezones.mo -share/locale/nl/LC_MESSAGES/tippecanoe.mo -share/locale/nl/LC_MESSAGES/trashapplet.mo -share/locale/nl/LC_MESSAGES/tyler.mo -share/locale/nl/LC_MESSAGES/uachangerplugin.mo -share/locale/nl/LC_MESSAGES/umbrello.mo -share/locale/nl/LC_MESSAGES/useraccount.mo -share/locale/nl/LC_MESSAGES/validatorsplugin.mo -share/locale/nl/LC_MESSAGES/vimpart.mo -share/locale/nl/LC_MESSAGES/wakeup.mo -share/locale/nl/LC_MESSAGES/wavecapture.mo -share/locale/nl/LC_MESSAGES/webarchiver.mo -share/locale/nl/charset -share/locale/nl/entry.desktop -share/locale/nl/flag.png -@dirrm share/locale/nl/LC_MESSAGES -@dirrm share/locale/nl -@dirrm share/locale -@dirrm share/doc/HTML/nl/xsldbg -@dirrm share/doc/HTML/nl/umbrello -@dirrm share/doc/HTML/nl/scripts -@dirrm share/doc/HTML/nl/quanta -@dirrm share/doc/HTML/nl/noatun -@dirrm share/doc/HTML/nl/multisynk -@dirrm share/doc/HTML/nl/lskat -@dirrm share/doc/HTML/nl/kxsldbg -@dirrm share/doc/HTML/nl/kxkb -@dirrm share/doc/HTML/nl/kworldclock -@dirrm share/doc/HTML/nl/kwordquiz -@dirrm share/doc/HTML/nl/kwin4 -@dirrm share/doc/HTML/nl/kweather -@dirrm share/doc/HTML/nl/kwatchgnupg -@dirrm share/doc/HTML/nl/kwallet -@dirrm share/doc/HTML/nl/kverbos -@dirrm share/doc/HTML/nl/kuser -@dirrm share/doc/HTML/nl/kuickshow -@dirrm share/doc/HTML/nl/kturtle -@dirrm share/doc/HTML/nl/ktuberling -@dirrm share/doc/HTML/nl/ktron -@dirrm share/doc/HTML/nl/ktouch -@dirrm share/doc/HTML/nl/ktnef -@dirrm share/doc/HTML/nl/ktimer -@dirrm share/doc/HTML/nl/kteatime -@dirrm share/doc/HTML/nl/ksysv -@dirrm share/doc/HTML/nl/ksysguard -@dirrm share/doc/HTML/nl/kstars -@dirrm share/doc/HTML/nl/ksplashml -@dirrm share/doc/HTML/nl/kspell -@dirrm share/doc/HTML/nl/kspaceduel -@dirrm share/doc/HTML/nl/ksokoban -@dirrm share/doc/HTML/nl/ksnapshot -@dirrm share/doc/HTML/nl/ksnake -@dirrm share/doc/HTML/nl/ksirtet -@dirrm share/doc/HTML/nl/ksim -@dirrm share/doc/HTML/nl/kshisen -@dirrm share/doc/HTML/nl/ksame -@dirrm share/doc/HTML/nl/kruler -@dirrm share/doc/HTML/nl/kreversi -@dirrm share/doc/HTML/nl/kpoker -@dirrm share/doc/HTML/nl/kpilot -@dirrm share/doc/HTML/nl/kpf -@dirrm share/doc/HTML/nl/kpercentage -@dirrm share/doc/HTML/nl/kpdf -@dirrm share/doc/HTML/nl/kpat -@dirrm share/doc/HTML/nl/kpager -@dirrm share/doc/HTML/nl/kpackage -@dirrm share/doc/HTML/nl/korn -@dirrm share/doc/HTML/nl/korganizer -@dirrm share/doc/HTML/nl/kopete -@dirrm share/doc/HTML/nl/kontact -@dirrm share/doc/HTML/nl/konsolekalendar -@dirrm share/doc/HTML/nl/konsole -@dirrm share/doc/HTML/nl/konquest -@dirrm share/doc/HTML/nl/konqueror -@dirrm share/doc/HTML/nl/konq-plugins/webarchiver -@dirrm share/doc/HTML/nl/konq-plugins/validators -@dirrm share/doc/HTML/nl/konq-plugins/uachanger -@dirrm share/doc/HTML/nl/konq-plugins/smbmounter -@dirrm share/doc/HTML/nl/konq-plugins/mediaplayer -@dirrm share/doc/HTML/nl/konq-plugins/kuick -@dirrm share/doc/HTML/nl/konq-plugins/khtmlsettings -@dirrm share/doc/HTML/nl/konq-plugins/imgallery -@dirrm share/doc/HTML/nl/konq-plugins/fsview -@dirrm share/doc/HTML/nl/konq-plugins/domtreeviewer -@dirrm share/doc/HTML/nl/konq-plugins/dirfilter -@dirrm share/doc/HTML/nl/konq-plugins/crashes -@dirrm share/doc/HTML/nl/konq-plugins/babel -@dirrm share/doc/HTML/nl/konq-plugins -@dirrm share/doc/HTML/nl/kompare -@dirrm share/doc/HTML/nl/kommander -@dirrm share/doc/HTML/nl/kolf -@dirrm share/doc/HTML/nl/kodo -@dirrm share/doc/HTML/nl/knotes -@dirrm share/doc/HTML/nl/knode -@dirrm share/doc/HTML/nl/kmplot -@dirrm share/doc/HTML/nl/kmouth -@dirrm share/doc/HTML/nl/kmousetool -@dirrm share/doc/HTML/nl/kmoon -@dirrm share/doc/HTML/nl/kmix -@dirrm share/doc/HTML/nl/kmines -@dirrm share/doc/HTML/nl/kmessedwords -@dirrm share/doc/HTML/nl/kmenuedit -@dirrm share/doc/HTML/nl/kmathtool -@dirrm share/doc/HTML/nl/kmail -@dirrm share/doc/HTML/nl/kmahjongg -@dirrm share/doc/HTML/nl/kmag -@dirrm share/doc/HTML/nl/klipper -@dirrm share/doc/HTML/nl/klinkstatus -@dirrm share/doc/HTML/nl/klines -@dirrm share/doc/HTML/nl/klickety -@dirrm share/doc/HTML/nl/klettres -@dirrm share/doc/HTML/nl/klatin -@dirrm share/doc/HTML/nl/kjumpingcube -@dirrm share/doc/HTML/nl/kjots -@dirrm share/doc/HTML/nl/kiten -@dirrm share/doc/HTML/nl/kioslave -@dirrm share/doc/HTML/nl/kinfocenter/xserver -@dirrm share/doc/HTML/nl/kinfocenter/usb -@dirrm share/doc/HTML/nl/kinfocenter/sound -@dirrm share/doc/HTML/nl/kinfocenter/scsi -@dirrm share/doc/HTML/nl/kinfocenter/samba -@dirrm share/doc/HTML/nl/kinfocenter/protocols -@dirrm share/doc/HTML/nl/kinfocenter/processor -@dirrm share/doc/HTML/nl/kinfocenter/pcmcia -@dirrm share/doc/HTML/nl/kinfocenter/pci -@dirrm share/doc/HTML/nl/kinfocenter/partitions -@dirrm share/doc/HTML/nl/kinfocenter/opengl -@dirrm share/doc/HTML/nl/kinfocenter/nics -@dirrm share/doc/HTML/nl/kinfocenter/memory -@dirrm share/doc/HTML/nl/kinfocenter/ioports -@dirrm share/doc/HTML/nl/kinfocenter/interrupts -@dirrm share/doc/HTML/nl/kinfocenter/dma -@dirrm share/doc/HTML/nl/kinfocenter/devices -@dirrm share/doc/HTML/nl/kinfocenter/blockdevices -@dirrm share/doc/HTML/nl/kinfocenter -@dirrm share/doc/HTML/nl/kig -@dirrm share/doc/HTML/nl/kicker-applets -@dirrm share/doc/HTML/nl/kicker -@dirrm share/doc/HTML/nl/khelpcenter/visualdict -@dirrm share/doc/HTML/nl/khelpcenter/userguide -@dirrm share/doc/HTML/nl/khelpcenter/quickstart -@dirrm share/doc/HTML/nl/khelpcenter/glossary -@dirrm share/doc/HTML/nl/khelpcenter/faq -@dirrm share/doc/HTML/nl/khelpcenter -@dirrm share/doc/HTML/nl/khangman -@dirrm share/doc/HTML/nl/kgoldrunner -@dirrm share/doc/HTML/nl/kghostview -@dirrm share/doc/HTML/nl/kget -@dirrm share/doc/HTML/nl/kgamma -@dirrm share/doc/HTML/nl/kfouleggs -@dirrm share/doc/HTML/nl/kfloppy -@dirrm share/doc/HTML/nl/kfind -@dirrm share/doc/HTML/nl/kfilereplace -@dirrm share/doc/HTML/nl/kenolaba -@dirrm share/doc/HTML/nl/keduca -@dirrm share/doc/HTML/nl/kdvi -@dirrm share/doc/HTML/nl/kdf -@dirrm share/doc/HTML/nl/kdesu -@dirrm share/doc/HTML/nl/kdeprint -@dirrm share/doc/HTML/nl/kdelirc/kcmlirc -@dirrm share/doc/HTML/nl/kdelirc/irkick -@dirrm share/doc/HTML/nl/kdelirc -@dirrm share/doc/HTML/nl/kdebugdialog -@dirrm share/doc/HTML/nl/kdat -@dirrm share/doc/HTML/nl/kcron -@dirrm share/doc/HTML/nl/kcontrol/windowmanagement -@dirrm share/doc/HTML/nl/kcontrol/useragent -@dirrm share/doc/HTML/nl/kcontrol/spellchecking -@dirrm share/doc/HTML/nl/kcontrol/smb -@dirrm share/doc/HTML/nl/kcontrol/proxy -@dirrm share/doc/HTML/nl/kcontrol/powerctrl -@dirrm share/doc/HTML/nl/kcontrol/netpref -@dirrm share/doc/HTML/nl/kcontrol/mouse -@dirrm share/doc/HTML/nl/kcontrol/laptop -@dirrm share/doc/HTML/nl/kcontrol/lanbrowser -@dirrm share/doc/HTML/nl/kcontrol/kwindecoration -@dirrm share/doc/HTML/nl/kcontrol/kthememgr -@dirrm share/doc/HTML/nl/kcontrol/kmixcfg -@dirrm share/doc/HTML/nl/kcontrol/khtml -@dirrm share/doc/HTML/nl/kcontrol/keys -@dirrm share/doc/HTML/nl/kcontrol/keyboard -@dirrm share/doc/HTML/nl/kcontrol/kcmtaskbar -@dirrm share/doc/HTML/nl/kcontrol/kcmsmserver -@dirrm share/doc/HTML/nl/kcontrol/kcmnotify -@dirrm share/doc/HTML/nl/kcontrol/kcmlowbatwarn -@dirrm share/doc/HTML/nl/kcontrol/kcmlowbatcrit -@dirrm share/doc/HTML/nl/kcontrol/kcmlaunch -@dirrm share/doc/HTML/nl/kcontrol/kcmktalkd -@dirrm share/doc/HTML/nl/kcontrol/kcmkonsole -@dirrm share/doc/HTML/nl/kcontrol/kcmfontinst -@dirrm share/doc/HTML/nl/kcontrol/kcmcss -@dirrm share/doc/HTML/nl/kcontrol/kcmaccess -@dirrm share/doc/HTML/nl/kcontrol/kalarmd -@dirrm share/doc/HTML/nl/kcontrol/icons -@dirrm share/doc/HTML/nl/kcontrol/helpindex -@dirrm share/doc/HTML/nl/kcontrol/fonts -@dirrm share/doc/HTML/nl/kcontrol/filetypes -@dirrm share/doc/HTML/nl/kcontrol/filemanager -@dirrm share/doc/HTML/nl/kcontrol/energy -@dirrm share/doc/HTML/nl/kcontrol/email -@dirrm share/doc/HTML/nl/kcontrol/ebrowsing -@dirrm share/doc/HTML/nl/kcontrol/desktopbehavior -@dirrm share/doc/HTML/nl/kcontrol/desktop -@dirrm share/doc/HTML/nl/kcontrol/crypto -@dirrm share/doc/HTML/nl/kcontrol/cookies -@dirrm share/doc/HTML/nl/kcontrol/colors -@dirrm share/doc/HTML/nl/kcontrol/clock -@dirrm share/doc/HTML/nl/kcontrol/cache -@dirrm share/doc/HTML/nl/kcontrol/bell -@dirrm share/doc/HTML/nl/kcontrol/background -@dirrm share/doc/HTML/nl/kcontrol/arts -@dirrm share/doc/HTML/nl/kcontrol -@dirrm share/doc/HTML/nl/kcoloredit -@dirrm share/doc/HTML/nl/kcharselect -@dirrm share/doc/HTML/nl/kcalc -@dirrm share/doc/HTML/nl/kbugbuster -@dirrm share/doc/HTML/nl/kbruch -@dirrm share/doc/HTML/nl/kbounce -@dirrm share/doc/HTML/nl/kblackbox -@dirrm share/doc/HTML/nl/kbattleship -@dirrm share/doc/HTML/nl/kbackgammon -@dirrm share/doc/HTML/nl/kbabel -@dirrm share/doc/HTML/nl/katomic -@dirrm share/doc/HTML/nl/kate-plugins -@dirrm share/doc/HTML/nl/kate -@dirrm share/doc/HTML/nl/kasteroids -@dirrm share/doc/HTML/nl/karm -@dirrm share/doc/HTML/nl/kandy -@dirrm share/doc/HTML/nl/kamera -@dirrm share/doc/HTML/nl/kalzium -@dirrm share/doc/HTML/nl/kaddressbook -@dirrm share/doc/HTML/nl/kaboodle -@dirrm share/doc/HTML/nl/juk -@dirrm share/doc/HTML/nl/common -@dirrm share/doc/HTML/nl/atlantik -@dirrm share/doc/HTML/nl/artsbuilder -@dirrm share/doc/HTML/nl/ark -@dirrm share/doc/HTML/nl/amor -@dirrm share/doc/HTML/nl -@dirrm share/doc/HTML -@dirrm share/apps/kturtle/examples/nl -@dirrm share/apps/kturtle/examples -@dirrm share/apps/kturtle/data -@dirrm share/apps/kturtle -@dirrm share/apps/ktuberling/sounds/nl -@dirrm share/apps/ktuberling/sounds -@dirrm share/apps/ktuberling -@dirrm share/apps/klettres/nl/syllab -@dirrm share/apps/klettres/nl/alpha -@dirrm share/apps/klettres/nl -@dirrm share/apps/klettres -@dirrm share/apps/khangman/data/nl -@dirrm share/apps/khangman/data -@dirrm share/apps/khangman -@dirrm share/apps/katepart/syntax -@dirrm share/apps/katepart -@dirrm share/apps diff --git a/misc/kde4-l10n-nn/Makefile b/misc/kde4-l10n-nn/Makefile deleted file mode 100644 index 06c4a39c8dcf..000000000000 --- a/misc/kde4-l10n-nn/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-nn -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= nn- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Norwegian Nynorsk messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-nn/distinfo b/misc/kde4-l10n-nn/distinfo deleted file mode 100644 index 956367a4843d..000000000000 --- a/misc/kde4-l10n-nn/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-nn-3.4.2.tar.bz2) = 6207ace27fa8c332a40afe911c63259c -SIZE (KDE/kde-i18n/kde-i18n-nn-3.4.2.tar.bz2) = 1702732 diff --git a/misc/kde4-l10n-nn/pkg-descr b/misc/kde4-l10n-nn/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-nn/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-nn/pkg-plist b/misc/kde4-l10n-nn/pkg-plist deleted file mode 100644 index 90ea40598b74..000000000000 --- a/misc/kde4-l10n-nn/pkg-plist +++ /dev/null @@ -1,492 +0,0 @@ -share/apps/khangman/data/nn/animals.kvtml -share/apps/khangman/data/nn/easy.kvtml -share/apps/khangman/data/nn/hard.kvtml -share/apps/khangman/data/nn/medium.kvtml -share/apps/khangman/nn.txt -share/locale/nn/LC_MESSAGES/akregator.mo -share/locale/nn/LC_MESSAGES/amor.mo -share/locale/nn/LC_MESSAGES/appletproxy.mo -share/locale/nn/LC_MESSAGES/ark.mo -share/locale/nn/LC_MESSAGES/artsbuilder.mo -share/locale/nn/LC_MESSAGES/artscontrol.mo -share/locale/nn/LC_MESSAGES/artsmodules.mo -share/locale/nn/LC_MESSAGES/atlantik.mo -share/locale/nn/LC_MESSAGES/babelfish.mo -share/locale/nn/LC_MESSAGES/charlatanui.mo -share/locale/nn/LC_MESSAGES/childpanelextension.mo -share/locale/nn/LC_MESSAGES/clockapplet.mo -share/locale/nn/LC_MESSAGES/crashesplugin.mo -share/locale/nn/LC_MESSAGES/cupsdconf.mo -share/locale/nn/LC_MESSAGES/dcoprss.mo -share/locale/nn/LC_MESSAGES/devicesapplet.mo -share/locale/nn/LC_MESSAGES/dirfilterplugin.mo -share/locale/nn/LC_MESSAGES/display.mo -share/locale/nn/LC_MESSAGES/dockbarextension.mo -share/locale/nn/LC_MESSAGES/domtreeviewer.mo -share/locale/nn/LC_MESSAGES/drkonqi.mo -share/locale/nn/LC_MESSAGES/dub.mo -share/locale/nn/LC_MESSAGES/extensionproxy.mo -share/locale/nn/LC_MESSAGES/filetypes.mo -share/locale/nn/LC_MESSAGES/fontinst.mo -share/locale/nn/LC_MESSAGES/htmlsearch.mo -share/locale/nn/LC_MESSAGES/imagerename_plugin.mo -share/locale/nn/LC_MESSAGES/imgalleryplugin.mo -share/locale/nn/LC_MESSAGES/irkick.mo -share/locale/nn/LC_MESSAGES/joystick.mo -share/locale/nn/LC_MESSAGES/juk.mo -share/locale/nn/LC_MESSAGES/kabc2mutt.mo -share/locale/nn/LC_MESSAGES/kabc_dir.mo -share/locale/nn/LC_MESSAGES/kabc_file.mo -share/locale/nn/LC_MESSAGES/kabc_ldap.mo -share/locale/nn/LC_MESSAGES/kabc_ldapkio.mo -share/locale/nn/LC_MESSAGES/kabc_net.mo -share/locale/nn/LC_MESSAGES/kabc_slox.mo -share/locale/nn/LC_MESSAGES/kabc_sql.mo -share/locale/nn/LC_MESSAGES/kabcformat_binary.mo -share/locale/nn/LC_MESSAGES/kaboodle.mo -share/locale/nn/LC_MESSAGES/kaccess.mo -share/locale/nn/LC_MESSAGES/kaddressbook.mo -share/locale/nn/LC_MESSAGES/kalarm.mo -share/locale/nn/LC_MESSAGES/kandy.mo -share/locale/nn/LC_MESSAGES/kappfinder.mo -share/locale/nn/LC_MESSAGES/karm.mo -share/locale/nn/LC_MESSAGES/kasbarextension.mo -share/locale/nn/LC_MESSAGES/kasteroids.mo -share/locale/nn/LC_MESSAGES/kate.mo -share/locale/nn/LC_MESSAGES/katedefaultproject.mo -share/locale/nn/LC_MESSAGES/katefll_initplugin.mo -share/locale/nn/LC_MESSAGES/katefll_plugin.mo -share/locale/nn/LC_MESSAGES/katehelloworld.mo -share/locale/nn/LC_MESSAGES/katehtmltools.mo -share/locale/nn/LC_MESSAGES/kateinsertcommand.mo -share/locale/nn/LC_MESSAGES/katekttsd.mo -share/locale/nn/LC_MESSAGES/katemodeline.mo -share/locale/nn/LC_MESSAGES/kateopenheader.mo -share/locale/nn/LC_MESSAGES/katepart.mo -share/locale/nn/LC_MESSAGES/katepartkttsd.mo -share/locale/nn/LC_MESSAGES/kateprojectmanager.mo -share/locale/nn/LC_MESSAGES/katepybrowse.mo -share/locale/nn/LC_MESSAGES/katespell.mo -share/locale/nn/LC_MESSAGES/katetabbarextension.mo -share/locale/nn/LC_MESSAGES/katetextfilter.mo -share/locale/nn/LC_MESSAGES/katexmlcheck.mo -share/locale/nn/LC_MESSAGES/katexmltools.mo -share/locale/nn/LC_MESSAGES/katomic.mo -share/locale/nn/LC_MESSAGES/kaudiocreator.mo -share/locale/nn/LC_MESSAGES/kbabel.mo -share/locale/nn/LC_MESSAGES/kbackgammon.mo -share/locale/nn/LC_MESSAGES/kbattleship.mo -share/locale/nn/LC_MESSAGES/kblackbox.mo -share/locale/nn/LC_MESSAGES/kbounce.mo -share/locale/nn/LC_MESSAGES/kcalc.mo -share/locale/nn/LC_MESSAGES/kcharselect.mo -share/locale/nn/LC_MESSAGES/kcharselectapplet.mo -share/locale/nn/LC_MESSAGES/kcm_krfb.mo -share/locale/nn/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/nn/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/nn/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/nn/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/nn/LC_MESSAGES/kcmaccess.mo -share/locale/nn/LC_MESSAGES/kcmaccessibility.mo -share/locale/nn/LC_MESSAGES/kcmarts.mo -share/locale/nn/LC_MESSAGES/kcmaudiocd.mo -share/locale/nn/LC_MESSAGES/kcmbackground.mo -share/locale/nn/LC_MESSAGES/kcmbell.mo -share/locale/nn/LC_MESSAGES/kcmcddb.mo -share/locale/nn/LC_MESSAGES/kcmcgi.mo -share/locale/nn/LC_MESSAGES/kcmcolors.mo -share/locale/nn/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/nn/LC_MESSAGES/kcmcrypto.mo -share/locale/nn/LC_MESSAGES/kcmcss.mo -share/locale/nn/LC_MESSAGES/kcmemail.mo -share/locale/nn/LC_MESSAGES/kcmenergy.mo -share/locale/nn/LC_MESSAGES/kcmfonts.mo -share/locale/nn/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/nn/LC_MESSAGES/kcmicons.mo -share/locale/nn/LC_MESSAGES/kcminfo.mo -share/locale/nn/LC_MESSAGES/kcminput.mo -share/locale/nn/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/nn/LC_MESSAGES/kcmkabconfig.mo -share/locale/nn/LC_MESSAGES/kcmkamera.mo -share/locale/nn/LC_MESSAGES/kcmkclock.mo -share/locale/nn/LC_MESSAGES/kcmkded.mo -share/locale/nn/LC_MESSAGES/kcmkdnssd.mo -share/locale/nn/LC_MESSAGES/kcmkeys.mo -share/locale/nn/LC_MESSAGES/kcmkicker.mo -share/locale/nn/LC_MESSAGES/kcmkio.mo -share/locale/nn/LC_MESSAGES/kcmkmix.mo -share/locale/nn/LC_MESSAGES/kcmkonq.mo -share/locale/nn/LC_MESSAGES/kcmkonqhtml.mo -share/locale/nn/LC_MESSAGES/kcmkonsole.mo -share/locale/nn/LC_MESSAGES/kcmkontactnt.mo -share/locale/nn/LC_MESSAGES/kcmktalkd.mo -share/locale/nn/LC_MESSAGES/kcmkuick.mo -share/locale/nn/LC_MESSAGES/kcmkurifilt.mo -share/locale/nn/LC_MESSAGES/kcmkwindecoration.mo -share/locale/nn/LC_MESSAGES/kcmkwinrules.mo -share/locale/nn/LC_MESSAGES/kcmkwintheme.mo -share/locale/nn/LC_MESSAGES/kcmkwm.mo -share/locale/nn/LC_MESSAGES/kcmkxmlrpcd.mo -share/locale/nn/LC_MESSAGES/kcmlanbrowser.mo -share/locale/nn/LC_MESSAGES/kcmlaptop.mo -share/locale/nn/LC_MESSAGES/kcmlaunch.mo -share/locale/nn/LC_MESSAGES/kcmlayout.mo -share/locale/nn/LC_MESSAGES/kcmlilo.mo -share/locale/nn/LC_MESSAGES/kcmlocale.mo -share/locale/nn/LC_MESSAGES/kcmmediacontrol.mo -share/locale/nn/LC_MESSAGES/kcmmidi.mo -share/locale/nn/LC_MESSAGES/kcmnic.mo -share/locale/nn/LC_MESSAGES/kcmnotify.mo -share/locale/nn/LC_MESSAGES/kcmperformance.mo -share/locale/nn/LC_MESSAGES/kcmprintmgr.mo -share/locale/nn/LC_MESSAGES/kcmsamba.mo -share/locale/nn/LC_MESSAGES/kcmscreensaver.mo -share/locale/nn/LC_MESSAGES/kcmshell.mo -share/locale/nn/LC_MESSAGES/kcmsmartcard.mo -share/locale/nn/LC_MESSAGES/kcmsmserver.mo -share/locale/nn/LC_MESSAGES/kcmsocks.mo -share/locale/nn/LC_MESSAGES/kcmspellchecking.mo -share/locale/nn/LC_MESSAGES/kcmstyle.mo -share/locale/nn/LC_MESSAGES/kcmtaskbar.mo -share/locale/nn/LC_MESSAGES/kcmusb.mo -share/locale/nn/LC_MESSAGES/kcmview1394.mo -share/locale/nn/LC_MESSAGES/kcmwifi.mo -share/locale/nn/LC_MESSAGES/kcmxinerama.mo -share/locale/nn/LC_MESSAGES/kcoloredit.mo -share/locale/nn/LC_MESSAGES/kcontrol.mo -share/locale/nn/LC_MESSAGES/kcron.mo -share/locale/nn/LC_MESSAGES/kdat.mo -share/locale/nn/LC_MESSAGES/kdcop.mo -share/locale/nn/LC_MESSAGES/kdebugdialog.mo -share/locale/nn/LC_MESSAGES/kdelibs.mo -share/locale/nn/LC_MESSAGES/kdelibs_colors.mo -share/locale/nn/LC_MESSAGES/kdepasswd.mo -share/locale/nn/LC_MESSAGES/kdepimwizards.mo -share/locale/nn/LC_MESSAGES/kdeprint.mo -share/locale/nn/LC_MESSAGES/kdeprint_part.mo -share/locale/nn/LC_MESSAGES/kdeprintfax.mo -share/locale/nn/LC_MESSAGES/kdesktop.mo -share/locale/nn/LC_MESSAGES/kdessh.mo -share/locale/nn/LC_MESSAGES/kdesu.mo -share/locale/nn/LC_MESSAGES/kdesud.mo -share/locale/nn/LC_MESSAGES/kdevelop.mo -share/locale/nn/LC_MESSAGES/kdevtipofday.mo -share/locale/nn/LC_MESSAGES/kdf.mo -share/locale/nn/LC_MESSAGES/kdgantt.mo -share/locale/nn/LC_MESSAGES/kdialog.mo -share/locale/nn/LC_MESSAGES/kdict.mo -share/locale/nn/LC_MESSAGES/kdictapplet.mo -share/locale/nn/LC_MESSAGES/kdmchooser.mo -share/locale/nn/LC_MESSAGES/kdmconfig.mo -share/locale/nn/LC_MESSAGES/kdmgreet.mo -share/locale/nn/LC_MESSAGES/kdvi.mo -share/locale/nn/LC_MESSAGES/kedit.mo -share/locale/nn/LC_MESSAGES/keduca.mo -share/locale/nn/LC_MESSAGES/kenolaba.mo -share/locale/nn/LC_MESSAGES/kfax.mo -share/locale/nn/LC_MESSAGES/kfifteenapplet.mo -share/locale/nn/LC_MESSAGES/kfile_au.mo -share/locale/nn/LC_MESSAGES/kfile_avi.mo -share/locale/nn/LC_MESSAGES/kfile_bmp.mo -share/locale/nn/LC_MESSAGES/kfile_cpp.mo -share/locale/nn/LC_MESSAGES/kfile_dds.mo -share/locale/nn/LC_MESSAGES/kfile_deb.mo -share/locale/nn/LC_MESSAGES/kfile_desktop.mo -share/locale/nn/LC_MESSAGES/kfile_diff.mo -share/locale/nn/LC_MESSAGES/kfile_drgeo.mo -share/locale/nn/LC_MESSAGES/kfile_dvi.mo -share/locale/nn/LC_MESSAGES/kfile_exr.mo -share/locale/nn/LC_MESSAGES/kfile_flac.mo -share/locale/nn/LC_MESSAGES/kfile_folder.mo -share/locale/nn/LC_MESSAGES/kfile_font.mo -share/locale/nn/LC_MESSAGES/kfile_gif.mo -share/locale/nn/LC_MESSAGES/kfile_html.mo -share/locale/nn/LC_MESSAGES/kfile_ico.mo -share/locale/nn/LC_MESSAGES/kfile_jpeg.mo -share/locale/nn/LC_MESSAGES/kfile_kig.mo -share/locale/nn/LC_MESSAGES/kfile_lnk.mo -share/locale/nn/LC_MESSAGES/kfile_m3u.mo -share/locale/nn/LC_MESSAGES/kfile_mp3.mo -share/locale/nn/LC_MESSAGES/kfile_mpc.mo -share/locale/nn/LC_MESSAGES/kfile_ogg.mo -share/locale/nn/LC_MESSAGES/kfile_palm.mo -share/locale/nn/LC_MESSAGES/kfile_pcx.mo -share/locale/nn/LC_MESSAGES/kfile_pdf.mo -share/locale/nn/LC_MESSAGES/kfile_png.mo -share/locale/nn/LC_MESSAGES/kfile_pnm.mo -share/locale/nn/LC_MESSAGES/kfile_po.mo -share/locale/nn/LC_MESSAGES/kfile_ps.mo -share/locale/nn/LC_MESSAGES/kfile_rfc822.mo -share/locale/nn/LC_MESSAGES/kfile_rgb.mo -share/locale/nn/LC_MESSAGES/kfile_rpm.mo -share/locale/nn/LC_MESSAGES/kfile_sid.mo -share/locale/nn/LC_MESSAGES/kfile_tga.mo -share/locale/nn/LC_MESSAGES/kfile_theora.mo -share/locale/nn/LC_MESSAGES/kfile_tiff.mo -share/locale/nn/LC_MESSAGES/kfile_txt.mo -share/locale/nn/LC_MESSAGES/kfile_vcf.mo -share/locale/nn/LC_MESSAGES/kfile_wav.mo -share/locale/nn/LC_MESSAGES/kfile_xbm.mo -share/locale/nn/LC_MESSAGES/kfile_xpm.mo -share/locale/nn/LC_MESSAGES/kfileaudiopreview.mo -share/locale/nn/LC_MESSAGES/kfileshare.mo -share/locale/nn/LC_MESSAGES/kfindpart.mo -share/locale/nn/LC_MESSAGES/kfloppy.mo -share/locale/nn/LC_MESSAGES/kfmclient.mo -share/locale/nn/LC_MESSAGES/kfontinst.mo -share/locale/nn/LC_MESSAGES/kfouleggs.mo -share/locale/nn/LC_MESSAGES/kgamma.mo -share/locale/nn/LC_MESSAGES/kgantt.mo -share/locale/nn/LC_MESSAGES/kget.mo -share/locale/nn/LC_MESSAGES/kghostview.mo -share/locale/nn/LC_MESSAGES/kgreet_classic.mo -share/locale/nn/LC_MESSAGES/kgreet_winbind.mo -share/locale/nn/LC_MESSAGES/khangman.mo -share/locale/nn/LC_MESSAGES/khelpcenter.mo -share/locale/nn/LC_MESSAGES/khexedit.mo -share/locale/nn/LC_MESSAGES/khotkeys.mo -share/locale/nn/LC_MESSAGES/khtmlkttsd.mo -share/locale/nn/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/nn/LC_MESSAGES/kicker.mo -share/locale/nn/LC_MESSAGES/kiconedit.mo -share/locale/nn/LC_MESSAGES/kinetd.mo -share/locale/nn/LC_MESSAGES/kio.mo -share/locale/nn/LC_MESSAGES/kio_audiocd.mo -share/locale/nn/LC_MESSAGES/kio_devices.mo -share/locale/nn/LC_MESSAGES/kio_finger.mo -share/locale/nn/LC_MESSAGES/kio_fish.mo -share/locale/nn/LC_MESSAGES/kio_floppy.mo -share/locale/nn/LC_MESSAGES/kio_help.mo -share/locale/nn/LC_MESSAGES/kio_lan.mo -share/locale/nn/LC_MESSAGES/kio_ldap.mo -share/locale/nn/LC_MESSAGES/kio_mac.mo -share/locale/nn/LC_MESSAGES/kio_man.mo -share/locale/nn/LC_MESSAGES/kio_media.mo -share/locale/nn/LC_MESSAGES/kio_mobile.mo -share/locale/nn/LC_MESSAGES/kio_newimap4.mo -share/locale/nn/LC_MESSAGES/kio_nfs.mo -share/locale/nn/LC_MESSAGES/kio_nntp.mo -share/locale/nn/LC_MESSAGES/kio_pop3.mo -share/locale/nn/LC_MESSAGES/kio_print.mo -share/locale/nn/LC_MESSAGES/kio_remote.mo -share/locale/nn/LC_MESSAGES/kio_settings.mo -share/locale/nn/LC_MESSAGES/kio_sftp.mo -share/locale/nn/LC_MESSAGES/kio_sieve.mo -share/locale/nn/LC_MESSAGES/kio_smb.mo -share/locale/nn/LC_MESSAGES/kio_smtp.mo -share/locale/nn/LC_MESSAGES/kio_system.mo -share/locale/nn/LC_MESSAGES/kio_trash.mo -share/locale/nn/LC_MESSAGES/kioexec.mo -share/locale/nn/LC_MESSAGES/kjobviewer.mo -share/locale/nn/LC_MESSAGES/kjots.mo -share/locale/nn/LC_MESSAGES/kjumpingcube.mo -share/locale/nn/LC_MESSAGES/klaptopdaemon.mo -share/locale/nn/LC_MESSAGES/klatin.mo -share/locale/nn/LC_MESSAGES/klegacyimport.mo -share/locale/nn/LC_MESSAGES/kleopatra.mo -share/locale/nn/LC_MESSAGES/klettres.mo -share/locale/nn/LC_MESSAGES/klickety.mo -share/locale/nn/LC_MESSAGES/klines.mo -share/locale/nn/LC_MESSAGES/klipper.mo -share/locale/nn/LC_MESSAGES/klock.mo -share/locale/nn/LC_MESSAGES/kmag.mo -share/locale/nn/LC_MESSAGES/kmahjongg.mo -share/locale/nn/LC_MESSAGES/kmail.mo -share/locale/nn/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/nn/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/nn/LC_MESSAGES/kmailcvt.mo -share/locale/nn/LC_MESSAGES/kmathapplet.mo -share/locale/nn/LC_MESSAGES/kmathtool.mo -share/locale/nn/LC_MESSAGES/kmcop.mo -share/locale/nn/LC_MESSAGES/kmenuapplet.mo -share/locale/nn/LC_MESSAGES/kmenuedit.mo -share/locale/nn/LC_MESSAGES/kmessedwords.mo -share/locale/nn/LC_MESSAGES/kmid.mo -share/locale/nn/LC_MESSAGES/kmines.mo -share/locale/nn/LC_MESSAGES/kminipagerapplet.mo -share/locale/nn/LC_MESSAGES/kmix.mo -share/locale/nn/LC_MESSAGES/kmobile.mo -share/locale/nn/LC_MESSAGES/kmoon.mo -share/locale/nn/LC_MESSAGES/kmousetool.mo -share/locale/nn/LC_MESSAGES/kmouth.mo -share/locale/nn/LC_MESSAGES/kmplot.mo -share/locale/nn/LC_MESSAGES/kmrml.mo -share/locale/nn/LC_MESSAGES/knetattach.mo -share/locale/nn/LC_MESSAGES/knewsticker.mo -share/locale/nn/LC_MESSAGES/knode.mo -share/locale/nn/LC_MESSAGES/knotes.mo -share/locale/nn/LC_MESSAGES/knotify.mo -share/locale/nn/LC_MESSAGES/kodo.mo -share/locale/nn/LC_MESSAGES/kolf.mo -share/locale/nn/LC_MESSAGES/kolourpicker.mo -share/locale/nn/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/nn/LC_MESSAGES/konqueror.mo -share/locale/nn/LC_MESSAGES/konquest.mo -share/locale/nn/LC_MESSAGES/konsole.mo -share/locale/nn/LC_MESSAGES/konsolekalendar.mo -share/locale/nn/LC_MESSAGES/kontact.mo -share/locale/nn/LC_MESSAGES/kooka.mo -share/locale/nn/LC_MESSAGES/kopete.mo -share/locale/nn/LC_MESSAGES/korganizer.mo -share/locale/nn/LC_MESSAGES/korn.mo -share/locale/nn/LC_MESSAGES/kpackage.mo -share/locale/nn/LC_MESSAGES/kpager.mo -share/locale/nn/LC_MESSAGES/kpartapp.mo -share/locale/nn/LC_MESSAGES/kpartsaver.mo -share/locale/nn/LC_MESSAGES/kpat.mo -share/locale/nn/LC_MESSAGES/kpdf.mo -share/locale/nn/LC_MESSAGES/kpercentage.mo -share/locale/nn/LC_MESSAGES/kpersonalizer.mo -share/locale/nn/LC_MESSAGES/kpf.mo -share/locale/nn/LC_MESSAGES/kpilot.mo -share/locale/nn/LC_MESSAGES/kpoker.mo -share/locale/nn/LC_MESSAGES/kppp.mo -share/locale/nn/LC_MESSAGES/kppplogview.mo -share/locale/nn/LC_MESSAGES/kprinter.mo -share/locale/nn/LC_MESSAGES/krandr.mo -share/locale/nn/LC_MESSAGES/krdb.mo -share/locale/nn/LC_MESSAGES/krdc.mo -share/locale/nn/LC_MESSAGES/kreadconfig.mo -share/locale/nn/LC_MESSAGES/krec.mo -share/locale/nn/LC_MESSAGES/kregexpeditor.mo -share/locale/nn/LC_MESSAGES/kres_exchange.mo -share/locale/nn/LC_MESSAGES/kres_remote.mo -share/locale/nn/LC_MESSAGES/kres_xmlrpc.mo -share/locale/nn/LC_MESSAGES/kreversi.mo -share/locale/nn/LC_MESSAGES/krfb.mo -share/locale/nn/LC_MESSAGES/kruler.mo -share/locale/nn/LC_MESSAGES/krunapplet.mo -share/locale/nn/LC_MESSAGES/ksame.mo -share/locale/nn/LC_MESSAGES/kscd.mo -share/locale/nn/LC_MESSAGES/kscreensaver.mo -share/locale/nn/LC_MESSAGES/kshisen.mo -share/locale/nn/LC_MESSAGES/ksim.mo -share/locale/nn/LC_MESSAGES/ksirc.mo -share/locale/nn/LC_MESSAGES/ksirtet.mo -share/locale/nn/LC_MESSAGES/ksmiletris.mo -share/locale/nn/LC_MESSAGES/ksmserver.mo -share/locale/nn/LC_MESSAGES/ksnake.mo -share/locale/nn/LC_MESSAGES/ksnapshot.mo -share/locale/nn/LC_MESSAGES/ksokoban.mo -share/locale/nn/LC_MESSAGES/kspaceduel.mo -share/locale/nn/LC_MESSAGES/ksplash.mo -share/locale/nn/LC_MESSAGES/ksplashthemes.mo -share/locale/nn/LC_MESSAGES/kstars.mo -share/locale/nn/LC_MESSAGES/kstart.mo -share/locale/nn/LC_MESSAGES/kstartperf.mo -share/locale/nn/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/nn/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/nn/LC_MESSAGES/ksvgplugin.mo -share/locale/nn/LC_MESSAGES/ksync.mo -share/locale/nn/LC_MESSAGES/ksysguard.mo -share/locale/nn/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/nn/LC_MESSAGES/ksystraycmd.mo -share/locale/nn/LC_MESSAGES/ksysv.mo -share/locale/nn/LC_MESSAGES/ktalkd.mo -share/locale/nn/LC_MESSAGES/ktaskbarapplet.mo -share/locale/nn/LC_MESSAGES/kteatime.mo -share/locale/nn/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/nn/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/nn/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/nn/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/nn/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/nn/LC_MESSAGES/kthememanager.mo -share/locale/nn/LC_MESSAGES/ktimemon.mo -share/locale/nn/LC_MESSAGES/ktimer.mo -share/locale/nn/LC_MESSAGES/ktip.mo -share/locale/nn/LC_MESSAGES/ktnef.mo -share/locale/nn/LC_MESSAGES/ktouch.mo -share/locale/nn/LC_MESSAGES/ktron.mo -share/locale/nn/LC_MESSAGES/ktuberling.mo -share/locale/nn/LC_MESSAGES/kturtle.mo -share/locale/nn/LC_MESSAGES/ktux.mo -share/locale/nn/LC_MESSAGES/kuick_plugin.mo -share/locale/nn/LC_MESSAGES/kuickshow.mo -share/locale/nn/LC_MESSAGES/kuser.mo -share/locale/nn/LC_MESSAGES/kview.mo -share/locale/nn/LC_MESSAGES/kview_scale.mo -share/locale/nn/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/nn/LC_MESSAGES/kviewcanvas.mo -share/locale/nn/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/nn/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/nn/LC_MESSAGES/kviewscannerplugin.mo -share/locale/nn/LC_MESSAGES/kviewshell.mo -share/locale/nn/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/nn/LC_MESSAGES/kviewviewer.mo -share/locale/nn/LC_MESSAGES/kvoctrain.mo -share/locale/nn/LC_MESSAGES/kwalletmanager.mo -share/locale/nn/LC_MESSAGES/kwatchgnupg.mo -share/locale/nn/LC_MESSAGES/kweather.mo -share/locale/nn/LC_MESSAGES/kwifimanager.mo -share/locale/nn/LC_MESSAGES/kwin.mo -share/locale/nn/LC_MESSAGES/kwin4.mo -share/locale/nn/LC_MESSAGES/kwin_clients.mo -share/locale/nn/LC_MESSAGES/kwireless.mo -share/locale/nn/LC_MESSAGES/kworldclock.mo -share/locale/nn/LC_MESSAGES/kwriteconfig.mo -share/locale/nn/LC_MESSAGES/kxkb.mo -share/locale/nn/LC_MESSAGES/kxmlrpcd.mo -share/locale/nn/LC_MESSAGES/kxsconfig.mo -share/locale/nn/LC_MESSAGES/libcalendarresources.mo -share/locale/nn/LC_MESSAGES/libdmctl.mo -share/locale/nn/LC_MESSAGES/libkcal.mo -share/locale/nn/LC_MESSAGES/libkcalsystem.mo -share/locale/nn/LC_MESSAGES/libkcddb.mo -share/locale/nn/LC_MESSAGES/libkdegames.mo -share/locale/nn/LC_MESSAGES/libkdehighscores.mo -share/locale/nn/LC_MESSAGES/libkdenetwork.mo -share/locale/nn/LC_MESSAGES/libkdepim.mo -share/locale/nn/LC_MESSAGES/libkholidays.mo -share/locale/nn/LC_MESSAGES/libkicker.mo -share/locale/nn/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/nn/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/nn/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/nn/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/nn/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/nn/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/nn/LC_MESSAGES/libkickermenu_tom.mo -share/locale/nn/LC_MESSAGES/libkleopatra.mo -share/locale/nn/LC_MESSAGES/libkonq.mo -share/locale/nn/LC_MESSAGES/libkpimexchange.mo -share/locale/nn/LC_MESSAGES/libkscan.mo -share/locale/nn/LC_MESSAGES/libkscreensaver.mo -share/locale/nn/LC_MESSAGES/libksieve.mo -share/locale/nn/LC_MESSAGES/libksirtet.mo -share/locale/nn/LC_MESSAGES/libksync.mo -share/locale/nn/LC_MESSAGES/libtaskbar.mo -share/locale/nn/LC_MESSAGES/libtaskmanager.mo -share/locale/nn/LC_MESSAGES/lockout.mo -share/locale/nn/LC_MESSAGES/lskat.mo -share/locale/nn/LC_MESSAGES/mediaapplet.mo -share/locale/nn/LC_MESSAGES/mediacontrol.mo -share/locale/nn/LC_MESSAGES/naughtyapplet.mo -share/locale/nn/LC_MESSAGES/noatun.mo -share/locale/nn/LC_MESSAGES/nsplugin.mo -share/locale/nn/LC_MESSAGES/passwords.mo -share/locale/nn/LC_MESSAGES/pitchablespeed.mo -share/locale/nn/LC_MESSAGES/ppdtranslations.mo -share/locale/nn/LC_MESSAGES/privacy.mo -share/locale/nn/LC_MESSAGES/quanta.mo -share/locale/nn/LC_MESSAGES/quicklauncher.mo -share/locale/nn/LC_MESSAGES/rellinks.mo -share/locale/nn/LC_MESSAGES/searchbarplugin.mo -share/locale/nn/LC_MESSAGES/secpolicy.mo -share/locale/nn/LC_MESSAGES/spy.mo -share/locale/nn/LC_MESSAGES/synaescope.mo -share/locale/nn/LC_MESSAGES/taskbarextension.mo -share/locale/nn/LC_MESSAGES/timezones.mo -share/locale/nn/LC_MESSAGES/tippecanoe.mo -share/locale/nn/LC_MESSAGES/trashapplet.mo -share/locale/nn/LC_MESSAGES/tyler.mo -share/locale/nn/LC_MESSAGES/uachangerplugin.mo -share/locale/nn/LC_MESSAGES/useraccount.mo -share/locale/nn/LC_MESSAGES/validatorsplugin.mo -share/locale/nn/LC_MESSAGES/wakeup.mo -share/locale/nn/LC_MESSAGES/wavecapture.mo -share/locale/nn/LC_MESSAGES/webarchiver.mo -share/locale/nn/charset -share/locale/nn/entry.desktop -share/locale/nn/flag.png -@dirrm share/apps/khangman/data/nn -@dirrm share/apps/khangman/data -@dirrm share/apps/khangman diff --git a/misc/kde4-l10n-pa/Makefile b/misc/kde4-l10n-pa/Makefile deleted file mode 100644 index 3a02eefaf9f6..000000000000 --- a/misc/kde4-l10n-pa/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-eo -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= pa- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Panjabi messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-pa/distinfo b/misc/kde4-l10n-pa/distinfo deleted file mode 100644 index 4368bd3e3a51..000000000000 --- a/misc/kde4-l10n-pa/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-pa-3.4.2.tar.bz2) = da2f01224ed8bd4bc776cc306d903e75 -SIZE (KDE/kde-i18n/kde-i18n-pa-3.4.2.tar.bz2) = 865090 diff --git a/misc/kde4-l10n-pa/pkg-descr b/misc/kde4-l10n-pa/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-pa/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-pa/pkg-plist b/misc/kde4-l10n-pa/pkg-plist deleted file mode 100644 index 5a6f35d43f42..000000000000 --- a/misc/kde4-l10n-pa/pkg-plist +++ /dev/null @@ -1,318 +0,0 @@ -share/locale/pa/LC_MESSAGES/appletproxy.mo -share/locale/pa/LC_MESSAGES/autorefresh.mo -share/locale/pa/LC_MESSAGES/babelfish.mo -share/locale/pa/LC_MESSAGES/cervisia.mo -share/locale/pa/LC_MESSAGES/charlatanui.mo -share/locale/pa/LC_MESSAGES/childpanelextension.mo -share/locale/pa/LC_MESSAGES/clockapplet.mo -share/locale/pa/LC_MESSAGES/crashesplugin.mo -share/locale/pa/LC_MESSAGES/cupsdconf.mo -share/locale/pa/LC_MESSAGES/cvsservice.mo -share/locale/pa/LC_MESSAGES/devicesapplet.mo -share/locale/pa/LC_MESSAGES/display.mo -share/locale/pa/LC_MESSAGES/dockbarextension.mo -share/locale/pa/LC_MESSAGES/drkonqi.mo -share/locale/pa/LC_MESSAGES/extensionproxy.mo -share/locale/pa/LC_MESSAGES/filetypes.mo -share/locale/pa/LC_MESSAGES/fontinst.mo -share/locale/pa/LC_MESSAGES/htmlsearch.mo -share/locale/pa/LC_MESSAGES/imagerename_plugin.mo -share/locale/pa/LC_MESSAGES/joystick.mo -share/locale/pa/LC_MESSAGES/kabc2mutt.mo -share/locale/pa/LC_MESSAGES/kabc_dir.mo -share/locale/pa/LC_MESSAGES/kabc_file.mo -share/locale/pa/LC_MESSAGES/kabc_ldap.mo -share/locale/pa/LC_MESSAGES/kabc_ldapkio.mo -share/locale/pa/LC_MESSAGES/kabc_net.mo -share/locale/pa/LC_MESSAGES/kabc_slox.mo -share/locale/pa/LC_MESSAGES/kabc_sql.mo -share/locale/pa/LC_MESSAGES/kabcformat_binary.mo -share/locale/pa/LC_MESSAGES/kaboodle.mo -share/locale/pa/LC_MESSAGES/kaccess.mo -share/locale/pa/LC_MESSAGES/kaddressbook.mo -share/locale/pa/LC_MESSAGES/kalzium.mo -share/locale/pa/LC_MESSAGES/kappfinder.mo -share/locale/pa/LC_MESSAGES/karm.mo -share/locale/pa/LC_MESSAGES/kasbarextension.mo -share/locale/pa/LC_MESSAGES/kate.mo -share/locale/pa/LC_MESSAGES/katedefaultproject.mo -share/locale/pa/LC_MESSAGES/katehelloworld.mo -share/locale/pa/LC_MESSAGES/katehtmltools.mo -share/locale/pa/LC_MESSAGES/katekttsd.mo -share/locale/pa/LC_MESSAGES/katemodeline.mo -share/locale/pa/LC_MESSAGES/kateopenheader.mo -share/locale/pa/LC_MESSAGES/katepart.mo -share/locale/pa/LC_MESSAGES/katepartkttsd.mo -share/locale/pa/LC_MESSAGES/kbabel.mo -share/locale/pa/LC_MESSAGES/kbruch.mo -share/locale/pa/LC_MESSAGES/kcalc.mo -share/locale/pa/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/pa/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/pa/LC_MESSAGES/kcmaccess.mo -share/locale/pa/LC_MESSAGES/kcmaccessibility.mo -share/locale/pa/LC_MESSAGES/kcmarts.mo -share/locale/pa/LC_MESSAGES/kcmbackground.mo -share/locale/pa/LC_MESSAGES/kcmbell.mo -share/locale/pa/LC_MESSAGES/kcmcgi.mo -share/locale/pa/LC_MESSAGES/kcmcolors.mo -share/locale/pa/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/pa/LC_MESSAGES/kcmcrypto.mo -share/locale/pa/LC_MESSAGES/kcmcss.mo -share/locale/pa/LC_MESSAGES/kcmemail.mo -share/locale/pa/LC_MESSAGES/kcmenergy.mo -share/locale/pa/LC_MESSAGES/kcmfonts.mo -share/locale/pa/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/pa/LC_MESSAGES/kcmicons.mo -share/locale/pa/LC_MESSAGES/kcminfo.mo -share/locale/pa/LC_MESSAGES/kcminput.mo -share/locale/pa/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/pa/LC_MESSAGES/kcmkabconfig.mo -share/locale/pa/LC_MESSAGES/kcmkamera.mo -share/locale/pa/LC_MESSAGES/kcmkclock.mo -share/locale/pa/LC_MESSAGES/kcmkded.mo -share/locale/pa/LC_MESSAGES/kcmkdnssd.mo -share/locale/pa/LC_MESSAGES/kcmkeys.mo -share/locale/pa/LC_MESSAGES/kcmkicker.mo -share/locale/pa/LC_MESSAGES/kcmkio.mo -share/locale/pa/LC_MESSAGES/kcmkmix.mo -share/locale/pa/LC_MESSAGES/kcmkonq.mo -share/locale/pa/LC_MESSAGES/kcmkonqhtml.mo -share/locale/pa/LC_MESSAGES/kcmkonsole.mo -share/locale/pa/LC_MESSAGES/kcmkontactnt.mo -share/locale/pa/LC_MESSAGES/kcmkurifilt.mo -share/locale/pa/LC_MESSAGES/kcmkwindecoration.mo -share/locale/pa/LC_MESSAGES/kcmkwinrules.mo -share/locale/pa/LC_MESSAGES/kcmkwintheme.mo -share/locale/pa/LC_MESSAGES/kcmkwm.mo -share/locale/pa/LC_MESSAGES/kcmlanbrowser.mo -share/locale/pa/LC_MESSAGES/kcmlaunch.mo -share/locale/pa/LC_MESSAGES/kcmlayout.mo -share/locale/pa/LC_MESSAGES/kcmlocale.mo -share/locale/pa/LC_MESSAGES/kcmmidi.mo -share/locale/pa/LC_MESSAGES/kcmnic.mo -share/locale/pa/LC_MESSAGES/kcmnotify.mo -share/locale/pa/LC_MESSAGES/kcmperformance.mo -share/locale/pa/LC_MESSAGES/kcmprintmgr.mo -share/locale/pa/LC_MESSAGES/kcmsamba.mo -share/locale/pa/LC_MESSAGES/kcmscreensaver.mo -share/locale/pa/LC_MESSAGES/kcmshell.mo -share/locale/pa/LC_MESSAGES/kcmsmartcard.mo -share/locale/pa/LC_MESSAGES/kcmsmserver.mo -share/locale/pa/LC_MESSAGES/kcmsocks.mo -share/locale/pa/LC_MESSAGES/kcmspellchecking.mo -share/locale/pa/LC_MESSAGES/kcmstyle.mo -share/locale/pa/LC_MESSAGES/kcmtaskbar.mo -share/locale/pa/LC_MESSAGES/kcmthinkpad.mo -share/locale/pa/LC_MESSAGES/kcmusb.mo -share/locale/pa/LC_MESSAGES/kcmview1394.mo -share/locale/pa/LC_MESSAGES/kcmxinerama.mo -share/locale/pa/LC_MESSAGES/kcoloredit.mo -share/locale/pa/LC_MESSAGES/kcontrol.mo -share/locale/pa/LC_MESSAGES/kdcop.mo -share/locale/pa/LC_MESSAGES/kdebugdialog.mo -share/locale/pa/LC_MESSAGES/kdelibs.mo -share/locale/pa/LC_MESSAGES/kdelibs_colors.mo -share/locale/pa/LC_MESSAGES/kdepasswd.mo -share/locale/pa/LC_MESSAGES/kdeprint.mo -share/locale/pa/LC_MESSAGES/kdeprint_part.mo -share/locale/pa/LC_MESSAGES/kdeprintfax.mo -share/locale/pa/LC_MESSAGES/kdesktop.mo -share/locale/pa/LC_MESSAGES/kdessh.mo -share/locale/pa/LC_MESSAGES/kdesu.mo -share/locale/pa/LC_MESSAGES/kdesud.mo -share/locale/pa/LC_MESSAGES/kdialog.mo -share/locale/pa/LC_MESSAGES/kdmchooser.mo -share/locale/pa/LC_MESSAGES/kdmconfig.mo -share/locale/pa/LC_MESSAGES/kdmgreet.mo -share/locale/pa/LC_MESSAGES/kedit.mo -share/locale/pa/LC_MESSAGES/keduca.mo -share/locale/pa/LC_MESSAGES/kfile_au.mo -share/locale/pa/LC_MESSAGES/kfile_avi.mo -share/locale/pa/LC_MESSAGES/kfile_cpp.mo -share/locale/pa/LC_MESSAGES/kfile_deb.mo -share/locale/pa/LC_MESSAGES/kfile_desktop.mo -share/locale/pa/LC_MESSAGES/kfile_drgeo.mo -share/locale/pa/LC_MESSAGES/kfile_dvi.mo -share/locale/pa/LC_MESSAGES/kfile_flac.mo -share/locale/pa/LC_MESSAGES/kfile_folder.mo -share/locale/pa/LC_MESSAGES/kfile_font.mo -share/locale/pa/LC_MESSAGES/kfile_gif.mo -share/locale/pa/LC_MESSAGES/kfile_html.mo -share/locale/pa/LC_MESSAGES/kfile_ico.mo -share/locale/pa/LC_MESSAGES/kfile_ics.mo -share/locale/pa/LC_MESSAGES/kfile_jpeg.mo -share/locale/pa/LC_MESSAGES/kfile_kig.mo -share/locale/pa/LC_MESSAGES/kfile_lnk.mo -share/locale/pa/LC_MESSAGES/kfile_m3u.mo -share/locale/pa/LC_MESSAGES/kfile_mp3.mo -share/locale/pa/LC_MESSAGES/kfile_mpc.mo -share/locale/pa/LC_MESSAGES/kfile_ogg.mo -share/locale/pa/LC_MESSAGES/kfile_pdf.mo -share/locale/pa/LC_MESSAGES/kfile_png.mo -share/locale/pa/LC_MESSAGES/kfile_po.mo -share/locale/pa/LC_MESSAGES/kfile_ps.mo -share/locale/pa/LC_MESSAGES/kfile_rfc822.mo -share/locale/pa/LC_MESSAGES/kfile_rpm.mo -share/locale/pa/LC_MESSAGES/kfile_sid.mo -share/locale/pa/LC_MESSAGES/kfile_theora.mo -share/locale/pa/LC_MESSAGES/kfile_ts.mo -share/locale/pa/LC_MESSAGES/kfile_txt.mo -share/locale/pa/LC_MESSAGES/kfile_vcf.mo -share/locale/pa/LC_MESSAGES/kfile_wav.mo -share/locale/pa/LC_MESSAGES/kfile_xbm.mo -share/locale/pa/LC_MESSAGES/kfileaudiopreview.mo -share/locale/pa/LC_MESSAGES/kfileshare.mo -share/locale/pa/LC_MESSAGES/kfindpart.mo -share/locale/pa/LC_MESSAGES/kfmclient.mo -share/locale/pa/LC_MESSAGES/kfontinst.mo -share/locale/pa/LC_MESSAGES/kget.mo -share/locale/pa/LC_MESSAGES/kghostview.mo -share/locale/pa/LC_MESSAGES/kgreet_classic.mo -share/locale/pa/LC_MESSAGES/kgreet_winbind.mo -share/locale/pa/LC_MESSAGES/khelpcenter.mo -share/locale/pa/LC_MESSAGES/khotkeys.mo -share/locale/pa/LC_MESSAGES/khtmlkttsd.mo -share/locale/pa/LC_MESSAGES/kicker.mo -share/locale/pa/LC_MESSAGES/kig.mo -share/locale/pa/LC_MESSAGES/kinetd.mo -share/locale/pa/LC_MESSAGES/kio.mo -share/locale/pa/LC_MESSAGES/kio_audiocd.mo -share/locale/pa/LC_MESSAGES/kio_devices.mo -share/locale/pa/LC_MESSAGES/kio_finger.mo -share/locale/pa/LC_MESSAGES/kio_fish.mo -share/locale/pa/LC_MESSAGES/kio_floppy.mo -share/locale/pa/LC_MESSAGES/kio_help.mo -share/locale/pa/LC_MESSAGES/kio_imap4.mo -share/locale/pa/LC_MESSAGES/kio_ldap.mo -share/locale/pa/LC_MESSAGES/kio_mac.mo -share/locale/pa/LC_MESSAGES/kio_man.mo -share/locale/pa/LC_MESSAGES/kio_media.mo -share/locale/pa/LC_MESSAGES/kio_mobile.mo -share/locale/pa/LC_MESSAGES/kio_nfs.mo -share/locale/pa/LC_MESSAGES/kio_nntp.mo -share/locale/pa/LC_MESSAGES/kio_pop3.mo -share/locale/pa/LC_MESSAGES/kio_print.mo -share/locale/pa/LC_MESSAGES/kio_remote.mo -share/locale/pa/LC_MESSAGES/kio_settings.mo -share/locale/pa/LC_MESSAGES/kio_sftp.mo -share/locale/pa/LC_MESSAGES/kio_smb.mo -share/locale/pa/LC_MESSAGES/kio_smtp.mo -share/locale/pa/LC_MESSAGES/kio_svn.mo -share/locale/pa/LC_MESSAGES/kio_system.mo -share/locale/pa/LC_MESSAGES/kio_trash.mo -share/locale/pa/LC_MESSAGES/kioexec.mo -share/locale/pa/LC_MESSAGES/kjobviewer.mo -share/locale/pa/LC_MESSAGES/klaptopdaemon.mo -share/locale/pa/LC_MESSAGES/klegacyimport.mo -share/locale/pa/LC_MESSAGES/klipper.mo -share/locale/pa/LC_MESSAGES/kmail.mo -share/locale/pa/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/pa/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/pa/LC_MESSAGES/kmailcvt.mo -share/locale/pa/LC_MESSAGES/kmathtool.mo -share/locale/pa/LC_MESSAGES/kmcop.mo -share/locale/pa/LC_MESSAGES/kmenuapplet.mo -share/locale/pa/LC_MESSAGES/kmenuedit.mo -share/locale/pa/LC_MESSAGES/kmilo_generic.mo -share/locale/pa/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/pa/LC_MESSAGES/kmilod.mo -share/locale/pa/LC_MESSAGES/kminipagerapplet.mo -share/locale/pa/LC_MESSAGES/kmousetool.mo -share/locale/pa/LC_MESSAGES/knetattach.mo -share/locale/pa/LC_MESSAGES/knotify.mo -share/locale/pa/LC_MESSAGES/kolourpaint.mo -share/locale/pa/LC_MESSAGES/konnector_dummy.mo -share/locale/pa/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/pa/LC_MESSAGES/konqueror.mo -share/locale/pa/LC_MESSAGES/konsole.mo -share/locale/pa/LC_MESSAGES/konsolekalendar.mo -share/locale/pa/LC_MESSAGES/kontact.mo -share/locale/pa/LC_MESSAGES/kooka.mo -share/locale/pa/LC_MESSAGES/korganizer.mo -share/locale/pa/LC_MESSAGES/kpackage.mo -share/locale/pa/LC_MESSAGES/kpager.mo -share/locale/pa/LC_MESSAGES/kpartapp.mo -share/locale/pa/LC_MESSAGES/kpat.mo -share/locale/pa/LC_MESSAGES/kpdf.mo -share/locale/pa/LC_MESSAGES/kpersonalizer.mo -share/locale/pa/LC_MESSAGES/kpilot.mo -share/locale/pa/LC_MESSAGES/kppp.mo -share/locale/pa/LC_MESSAGES/kprinter.mo -share/locale/pa/LC_MESSAGES/krandr.mo -share/locale/pa/LC_MESSAGES/krdb.mo -share/locale/pa/LC_MESSAGES/kreadconfig.mo -share/locale/pa/LC_MESSAGES/krunapplet.mo -share/locale/pa/LC_MESSAGES/kscreensaver.mo -share/locale/pa/LC_MESSAGES/kshisen.mo -share/locale/pa/LC_MESSAGES/ksmserver.mo -share/locale/pa/LC_MESSAGES/ksnapshot.mo -share/locale/pa/LC_MESSAGES/ksplash.mo -share/locale/pa/LC_MESSAGES/ksplashthemes.mo -share/locale/pa/LC_MESSAGES/kstart.mo -share/locale/pa/LC_MESSAGES/kstartperf.mo -share/locale/pa/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/pa/LC_MESSAGES/kstyle_phase_config.mo -share/locale/pa/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/pa/LC_MESSAGES/ksvgplugin.mo -share/locale/pa/LC_MESSAGES/ksysguard.mo -share/locale/pa/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/pa/LC_MESSAGES/ksystraycmd.mo -share/locale/pa/LC_MESSAGES/ktaskbarapplet.mo -share/locale/pa/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/pa/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/pa/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/pa/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/pa/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/pa/LC_MESSAGES/kthememanager.mo -share/locale/pa/LC_MESSAGES/ktip.mo -share/locale/pa/LC_MESSAGES/kview.mo -share/locale/pa/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/pa/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/pa/LC_MESSAGES/kviewviewer.mo -share/locale/pa/LC_MESSAGES/kwin.mo -share/locale/pa/LC_MESSAGES/kwin_clients.mo -share/locale/pa/LC_MESSAGES/kwriteconfig.mo -share/locale/pa/LC_MESSAGES/kxkb.mo -share/locale/pa/LC_MESSAGES/libcalendarresources.mo -share/locale/pa/LC_MESSAGES/libdmctl.mo -share/locale/pa/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/pa/LC_MESSAGES/libkcal.mo -share/locale/pa/LC_MESSAGES/libkcalsystem.mo -share/locale/pa/LC_MESSAGES/libkcddb.mo -share/locale/pa/LC_MESSAGES/libkdenetwork.mo -share/locale/pa/LC_MESSAGES/libkdepim.mo -share/locale/pa/LC_MESSAGES/libkicker.mo -share/locale/pa/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/pa/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/pa/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/pa/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/pa/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/pa/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/pa/LC_MESSAGES/libkickermenu_tom.mo -share/locale/pa/LC_MESSAGES/libkleopatra.mo -share/locale/pa/LC_MESSAGES/libkonq.mo -share/locale/pa/LC_MESSAGES/libkpimexchange.mo -share/locale/pa/LC_MESSAGES/libkscan.mo -share/locale/pa/LC_MESSAGES/libkscreensaver.mo -share/locale/pa/LC_MESSAGES/libtaskbar.mo -share/locale/pa/LC_MESSAGES/libtaskmanager.mo -share/locale/pa/LC_MESSAGES/lockout.mo -share/locale/pa/LC_MESSAGES/lyrics.mo -share/locale/pa/LC_MESSAGES/mediaapplet.mo -share/locale/pa/LC_MESSAGES/naughtyapplet.mo -share/locale/pa/LC_MESSAGES/noatun.mo -share/locale/pa/LC_MESSAGES/nsplugin.mo -share/locale/pa/LC_MESSAGES/passwords.mo -share/locale/pa/LC_MESSAGES/ppdtranslations.mo -share/locale/pa/LC_MESSAGES/privacy.mo -share/locale/pa/LC_MESSAGES/quanta.mo -share/locale/pa/LC_MESSAGES/quicklauncher.mo -share/locale/pa/LC_MESSAGES/secpolicy.mo -share/locale/pa/LC_MESSAGES/taskbarextension.mo -share/locale/pa/LC_MESSAGES/timezones.mo -share/locale/pa/LC_MESSAGES/trashapplet.mo -share/locale/pa/LC_MESSAGES/tyler.mo -share/locale/pa/LC_MESSAGES/useraccount.mo -share/locale/pa/LC_MESSAGES/wavecapture.mo -share/locale/pa/charset -share/locale/pa/entry.desktop diff --git a/misc/kde4-l10n-ro/Makefile b/misc/kde4-l10n-ro/Makefile deleted file mode 100644 index 79f1d7e5ae2c..000000000000 --- a/misc/kde4-l10n-ro/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-ro -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= ro- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Romanian messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-ro/distinfo b/misc/kde4-l10n-ro/distinfo deleted file mode 100644 index 520456de2df8..000000000000 --- a/misc/kde4-l10n-ro/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-ro-3.4.2.tar.bz2) = 89b1c4c64633475709b037c6c3f9f696 -SIZE (KDE/kde-i18n/kde-i18n-ro-3.4.2.tar.bz2) = 3027397 diff --git a/misc/kde4-l10n-ro/pkg-descr b/misc/kde4-l10n-ro/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-ro/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-ro/pkg-plist b/misc/kde4-l10n-ro/pkg-plist deleted file mode 100644 index ac5bf3891c91..000000000000 --- a/misc/kde4-l10n-ro/pkg-plist +++ /dev/null @@ -1,773 +0,0 @@ -share/apps/ktuberling/sounds/ro/ceas.wav -share/apps/ktuberling/sounds/ro/cercel.wav -share/apps/ktuberling/sounds/ro/colier.wav -share/apps/ktuberling/sounds/ro/corn.wav -share/apps/ktuberling/sounds/ro/cravata.wav -share/apps/ktuberling/sounds/ro/domnul-cartof.wav -share/apps/ktuberling/sounds/ro/fular.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-de-soare.wav -share/apps/ktuberling/sounds/ro/ochelari.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/par.wav -share/apps/ktuberling/sounds/ro/pinguin.wav -share/apps/ktuberling/sounds/ro/sprinceana.wav -share/apps/ktuberling/sounds/ro/tigara.wav -share/apps/ktuberling/sounds/ro/ureche.wav -share/doc/HTML/ro/common/1.png -share/doc/HTML/ro/common/10.png -share/doc/HTML/ro/common/2.png -share/doc/HTML/ro/common/3.png -share/doc/HTML/ro/common/4.png -share/doc/HTML/ro/common/5.png -share/doc/HTML/ro/common/6.png -share/doc/HTML/ro/common/7.png -share/doc/HTML/ro/common/8.png -share/doc/HTML/ro/common/9.png -share/doc/HTML/ro/common/appheader.html -share/doc/HTML/ro/common/artistic-license.html -share/doc/HTML/ro/common/bottom-left.png -share/doc/HTML/ro/common/bottom-middle.png -share/doc/HTML/ro/common/bottom-right.png -share/doc/HTML/ro/common/bottom1.png -share/doc/HTML/ro/common/bottom2.png -share/doc/HTML/ro/common/bsd-license.html -share/doc/HTML/ro/common/docheadergears.png -share/doc/HTML/ro/common/doctop1.png -share/doc/HTML/ro/common/doctop1a.png -share/doc/HTML/ro/common/doctop1b.png -share/doc/HTML/ro/common/doctop2.png -share/doc/HTML/ro/common/doxygen.css -share/doc/HTML/ro/common/fdl-license -share/doc/HTML/ro/common/fdl-license.html -share/doc/HTML/ro/common/fdl-translated.html -share/doc/HTML/ro/common/footer.html -share/doc/HTML/ro/common/gpl-license -share/doc/HTML/ro/common/gpl-license.html -share/doc/HTML/ro/common/gpl-translated.html -share/doc/HTML/ro/common/grad.png -share/doc/HTML/ro/common/header.html -share/doc/HTML/ro/common/headerbg.png -share/doc/HTML/ro/common/kde-common.css -share/doc/HTML/ro/common/kde-default.css -share/doc/HTML/ro/common/kde-localised.css -share/doc/HTML/ro/common/kde-localised.css.template -share/doc/HTML/ro/common/kde-web.css -share/doc/HTML/ro/common/kde_logo.png -share/doc/HTML/ro/common/kde_logo_bg.png -share/doc/HTML/ro/common/kmenu.png -share/doc/HTML/ro/common/lgpl-license -share/doc/HTML/ro/common/lgpl-license.html -share/doc/HTML/ro/common/lgpl-translated.html -share/doc/HTML/ro/common/logotp3.png -share/doc/HTML/ro/common/mainfooter.html -share/doc/HTML/ro/common/mainheader.html -share/doc/HTML/ro/common/qpl-license.html -share/doc/HTML/ro/common/shadow.png -share/doc/HTML/ro/common/top-left.png -share/doc/HTML/ro/common/top-middle.png -share/doc/HTML/ro/common/top-right-konqueror.png -share/doc/HTML/ro/common/web-docbottom.png -share/doc/HTML/ro/common/web-doctop.png -share/doc/HTML/ro/common/x11-license.html -share/doc/HTML/ro/common/xml.dcl -share/doc/HTML/ro/khelpcenter/common -share/doc/HTML/ro/khelpcenter/contact.docbook -share/doc/HTML/ro/khelpcenter/glossary/common -share/doc/HTML/ro/khelpcenter/glossary/index.cache.bz2 -share/doc/HTML/ro/khelpcenter/glossary/index.docbook -share/doc/HTML/ro/khelpcenter/glossary/kdeprintingglossary.docbook -share/doc/HTML/ro/khelpcenter/help.docbook -share/doc/HTML/ro/khelpcenter/index.cache.bz2 -share/doc/HTML/ro/khelpcenter/index.docbook -share/doc/HTML/ro/khelpcenter/links.docbook -share/doc/HTML/ro/khelpcenter/support.docbook -share/doc/HTML/ro/khelpcenter/visualdict/common -share/doc/HTML/ro/khelpcenter/visualdict/index.cache.bz2 -share/doc/HTML/ro/khelpcenter/visualdict/index.docbook -share/doc/HTML/ro/khelpcenter/visualdict/pict1.png -share/doc/HTML/ro/khelpcenter/visualdict/pict10.png -share/doc/HTML/ro/khelpcenter/visualdict/pict11.png -share/doc/HTML/ro/khelpcenter/visualdict/pict12.png -share/doc/HTML/ro/khelpcenter/visualdict/pict13.png -share/doc/HTML/ro/khelpcenter/visualdict/pict14.png -share/doc/HTML/ro/khelpcenter/visualdict/pict15.png -share/doc/HTML/ro/khelpcenter/visualdict/pict16.png -share/doc/HTML/ro/khelpcenter/visualdict/pict17.png -share/doc/HTML/ro/khelpcenter/visualdict/pict18.png -share/doc/HTML/ro/khelpcenter/visualdict/pict19.png -share/doc/HTML/ro/khelpcenter/visualdict/pict2.png -share/doc/HTML/ro/khelpcenter/visualdict/pict20.png -share/doc/HTML/ro/khelpcenter/visualdict/pict3.png -share/doc/HTML/ro/khelpcenter/visualdict/pict4.png -share/doc/HTML/ro/khelpcenter/visualdict/pict5.png -share/doc/HTML/ro/khelpcenter/visualdict/pict6.png -share/doc/HTML/ro/khelpcenter/visualdict/pict7.png -share/doc/HTML/ro/khelpcenter/visualdict/pict8.png -share/doc/HTML/ro/khelpcenter/visualdict/pict9.png -share/doc/HTML/ro/khelpcenter/welcome.docbook -share/doc/HTML/ro/khelpcenter/whatiskde.docbook -share/doc/HTML/ro/kinfocenter/common -share/doc/HTML/ro/kinfocenter/devices/common -share/doc/HTML/ro/kinfocenter/devices/index.cache.bz2 -share/doc/HTML/ro/kinfocenter/devices/index.docbook -share/doc/HTML/ro/kinfocenter/dma/common -share/doc/HTML/ro/kinfocenter/dma/index.cache.bz2 -share/doc/HTML/ro/kinfocenter/dma/index.docbook -share/doc/HTML/ro/kinfocenter/index.cache.bz2 -share/doc/HTML/ro/kinfocenter/index.docbook -share/doc/HTML/ro/kinfocenter/interrupts/common -share/doc/HTML/ro/kinfocenter/interrupts/index.cache.bz2 -share/doc/HTML/ro/kinfocenter/interrupts/index.docbook -share/doc/HTML/ro/kinfocenter/ioports/common -share/doc/HTML/ro/kinfocenter/ioports/index.cache.bz2 -share/doc/HTML/ro/kinfocenter/ioports/index.docbook -share/doc/HTML/ro/kinfocenter/memory/common -share/doc/HTML/ro/kinfocenter/memory/index.cache.bz2 -share/doc/HTML/ro/kinfocenter/memory/index.docbook -share/doc/HTML/ro/kinfocenter/nics/common -share/doc/HTML/ro/kinfocenter/nics/index.cache.bz2 -share/doc/HTML/ro/kinfocenter/nics/index.docbook -share/doc/HTML/ro/kinfocenter/opengl/common -share/doc/HTML/ro/kinfocenter/opengl/index.cache.bz2 -share/doc/HTML/ro/kinfocenter/opengl/index.docbook -share/doc/HTML/ro/kinfocenter/partitions/common -share/doc/HTML/ro/kinfocenter/partitions/index.cache.bz2 -share/doc/HTML/ro/kinfocenter/partitions/index.docbook -share/doc/HTML/ro/kinfocenter/pci/common -share/doc/HTML/ro/kinfocenter/pci/index.cache.bz2 -share/doc/HTML/ro/kinfocenter/pci/index.docbook -share/doc/HTML/ro/kinfocenter/pcmcia/common -share/doc/HTML/ro/kinfocenter/pcmcia/index.cache.bz2 -share/doc/HTML/ro/kinfocenter/pcmcia/index.docbook -share/doc/HTML/ro/kinfocenter/processor/common -share/doc/HTML/ro/kinfocenter/processor/index.cache.bz2 -share/doc/HTML/ro/kinfocenter/processor/index.docbook -share/doc/HTML/ro/kinfocenter/protocols/common -share/doc/HTML/ro/kinfocenter/protocols/index.cache.bz2 -share/doc/HTML/ro/kinfocenter/protocols/index.docbook -share/doc/HTML/ro/kinfocenter/samba/common -share/doc/HTML/ro/kinfocenter/samba/index.cache.bz2 -share/doc/HTML/ro/kinfocenter/samba/index.docbook -share/doc/HTML/ro/kinfocenter/scsi/common -share/doc/HTML/ro/kinfocenter/scsi/index.cache.bz2 -share/doc/HTML/ro/kinfocenter/scsi/index.docbook -share/doc/HTML/ro/kinfocenter/sound/common -share/doc/HTML/ro/kinfocenter/sound/index.cache.bz2 -share/doc/HTML/ro/kinfocenter/sound/index.docbook -share/doc/HTML/ro/kinfocenter/usb/common -share/doc/HTML/ro/kinfocenter/usb/index.cache.bz2 -share/doc/HTML/ro/kinfocenter/usb/index.docbook -share/doc/HTML/ro/kinfocenter/xserver/common -share/doc/HTML/ro/kinfocenter/xserver/index.cache.bz2 -share/doc/HTML/ro/kinfocenter/xserver/index.docbook -share/doc/HTML/ro/kioslave/bzip.docbook -share/doc/HTML/ro/kioslave/bzip2.docbook -share/doc/HTML/ro/kioslave/cgi.docbook -share/doc/HTML/ro/kioslave/common -share/doc/HTML/ro/kioslave/data.docbook -share/doc/HTML/ro/kioslave/file.docbook -share/doc/HTML/ro/kioslave/finger.docbook -share/doc/HTML/ro/kioslave/fish.docbook -share/doc/HTML/ro/kioslave/floppy.docbook -share/doc/HTML/ro/kioslave/ftp.docbook -share/doc/HTML/ro/kioslave/gopher.docbook -share/doc/HTML/ro/kioslave/gzip.docbook -share/doc/HTML/ro/kioslave/help.docbook -share/doc/HTML/ro/kioslave/http.docbook -share/doc/HTML/ro/kioslave/https.docbook -share/doc/HTML/ro/kioslave/imap.docbook -share/doc/HTML/ro/kioslave/imaps.docbook -share/doc/HTML/ro/kioslave/index.cache.bz2 -share/doc/HTML/ro/kioslave/index.docbook -share/doc/HTML/ro/kioslave/info.docbook -share/doc/HTML/ro/kioslave/lan.docbook -share/doc/HTML/ro/kioslave/ldap.docbook -share/doc/HTML/ro/kioslave/mac.docbook -share/doc/HTML/ro/kioslave/mailto.docbook -share/doc/HTML/ro/kioslave/man.docbook -share/doc/HTML/ro/kioslave/mrml.docbook -share/doc/HTML/ro/kioslave/news.docbook -share/doc/HTML/ro/kioslave/nfs.docbook -share/doc/HTML/ro/kioslave/nntp.docbook -share/doc/HTML/ro/kioslave/pop3.docbook -share/doc/HTML/ro/kioslave/pop3s.docbook -share/doc/HTML/ro/kioslave/print.docbook -share/doc/HTML/ro/kioslave/rlan.docbook -share/doc/HTML/ro/kioslave/rlogin.docbook -share/doc/HTML/ro/kioslave/sftp.docbook -share/doc/HTML/ro/kioslave/smb.docbook -share/doc/HTML/ro/kioslave/smtp.docbook -share/doc/HTML/ro/kioslave/tar.docbook -share/doc/HTML/ro/kioslave/telnet.docbook -share/doc/HTML/ro/kioslave/thumbnail.docbook -share/doc/HTML/ro/kioslave/webdav.docbook -share/doc/HTML/ro/kioslave/webdavs.docbook -share/locale/ro/LC_MESSAGES/akregator.mo -share/locale/ro/LC_MESSAGES/alsaplayerui.mo -share/locale/ro/LC_MESSAGES/amor.mo -share/locale/ro/LC_MESSAGES/appletproxy.mo -share/locale/ro/LC_MESSAGES/ark.mo -share/locale/ro/LC_MESSAGES/artsbuilder.mo -share/locale/ro/LC_MESSAGES/artscontrol.mo -share/locale/ro/LC_MESSAGES/artsmodules.mo -share/locale/ro/LC_MESSAGES/atlantik.mo -share/locale/ro/LC_MESSAGES/atlantikdesigner.mo -share/locale/ro/LC_MESSAGES/audiorename_plugin.mo -share/locale/ro/LC_MESSAGES/autorefresh.mo -share/locale/ro/LC_MESSAGES/babelfish.mo -share/locale/ro/LC_MESSAGES/cervisia.mo -share/locale/ro/LC_MESSAGES/charlatanui.mo -share/locale/ro/LC_MESSAGES/childpanelextension.mo -share/locale/ro/LC_MESSAGES/clockapplet.mo -share/locale/ro/LC_MESSAGES/crashesplugin.mo -share/locale/ro/LC_MESSAGES/cupsdconf.mo -share/locale/ro/LC_MESSAGES/cvsservice.mo -share/locale/ro/LC_MESSAGES/dcoprss.mo -share/locale/ro/LC_MESSAGES/devicesapplet.mo -share/locale/ro/LC_MESSAGES/dirfilterplugin.mo -share/locale/ro/LC_MESSAGES/display.mo -share/locale/ro/LC_MESSAGES/dockbarextension.mo -share/locale/ro/LC_MESSAGES/domtreeviewer.mo -share/locale/ro/LC_MESSAGES/drkonqi.mo -share/locale/ro/LC_MESSAGES/dub.mo -share/locale/ro/LC_MESSAGES/extensionproxy.mo -share/locale/ro/LC_MESSAGES/ffrs.mo -share/locale/ro/LC_MESSAGES/filetypes.mo -share/locale/ro/LC_MESSAGES/fontinst.mo -share/locale/ro/LC_MESSAGES/fsview.mo -share/locale/ro/LC_MESSAGES/htmlsearch.mo -share/locale/ro/LC_MESSAGES/imagerename_plugin.mo -share/locale/ro/LC_MESSAGES/imgalleryplugin.mo -share/locale/ro/LC_MESSAGES/irkick.mo -share/locale/ro/LC_MESSAGES/jefferson.mo -share/locale/ro/LC_MESSAGES/joystick.mo -share/locale/ro/LC_MESSAGES/juk.mo -share/locale/ro/LC_MESSAGES/kabc2mutt.mo -share/locale/ro/LC_MESSAGES/kabc_dir.mo -share/locale/ro/LC_MESSAGES/kabc_file.mo -share/locale/ro/LC_MESSAGES/kabc_ldap.mo -share/locale/ro/LC_MESSAGES/kabc_ldapkio.mo -share/locale/ro/LC_MESSAGES/kabc_net.mo -share/locale/ro/LC_MESSAGES/kabc_sql.mo -share/locale/ro/LC_MESSAGES/kabcformat_binary.mo -share/locale/ro/LC_MESSAGES/kaboodle.mo -share/locale/ro/LC_MESSAGES/kaccess.mo -share/locale/ro/LC_MESSAGES/kaddressbook.mo -share/locale/ro/LC_MESSAGES/kalarm.mo -share/locale/ro/LC_MESSAGES/kalzium.mo -share/locale/ro/LC_MESSAGES/kandy.mo -share/locale/ro/LC_MESSAGES/kappfinder.mo -share/locale/ro/LC_MESSAGES/karm.mo -share/locale/ro/LC_MESSAGES/kasbarextension.mo -share/locale/ro/LC_MESSAGES/kasteroids.mo -share/locale/ro/LC_MESSAGES/kate.mo -share/locale/ro/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/ro/LC_MESSAGES/katedefaultproject.mo -share/locale/ro/LC_MESSAGES/katefll_initplugin.mo -share/locale/ro/LC_MESSAGES/katefll_plugin.mo -share/locale/ro/LC_MESSAGES/katehelloworld.mo -share/locale/ro/LC_MESSAGES/katehtmltools.mo -share/locale/ro/LC_MESSAGES/kateinsertcommand.mo -share/locale/ro/LC_MESSAGES/katekjswrapper.mo -share/locale/ro/LC_MESSAGES/katekttsd.mo -share/locale/ro/LC_MESSAGES/katemake.mo -share/locale/ro/LC_MESSAGES/katemodeline.mo -share/locale/ro/LC_MESSAGES/kateopenheader.mo -share/locale/ro/LC_MESSAGES/katepart.mo -share/locale/ro/LC_MESSAGES/katepartkttsd.mo -share/locale/ro/LC_MESSAGES/kateprojectmanager.mo -share/locale/ro/LC_MESSAGES/katepybrowse.mo -share/locale/ro/LC_MESSAGES/katespell.mo -share/locale/ro/LC_MESSAGES/katetabbarextension.mo -share/locale/ro/LC_MESSAGES/katetextfilter.mo -share/locale/ro/LC_MESSAGES/katexmlcheck.mo -share/locale/ro/LC_MESSAGES/katexmltools.mo -share/locale/ro/LC_MESSAGES/katomic.mo -share/locale/ro/LC_MESSAGES/kaudiocreator.mo -share/locale/ro/LC_MESSAGES/kbabel.mo -share/locale/ro/LC_MESSAGES/kbackgammon.mo -share/locale/ro/LC_MESSAGES/kbattleship.mo -share/locale/ro/LC_MESSAGES/kbinaryclock.mo -share/locale/ro/LC_MESSAGES/kblackbox.mo -share/locale/ro/LC_MESSAGES/kbounce.mo -share/locale/ro/LC_MESSAGES/kbruch.mo -share/locale/ro/LC_MESSAGES/kbugbuster.mo -share/locale/ro/LC_MESSAGES/kcachegrind.mo -share/locale/ro/LC_MESSAGES/kcalc.mo -share/locale/ro/LC_MESSAGES/kcharselect.mo -share/locale/ro/LC_MESSAGES/kcharselectapplet.mo -share/locale/ro/LC_MESSAGES/kcm_krfb.mo -share/locale/ro/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/ro/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/ro/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/ro/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/ro/LC_MESSAGES/kcmaccess.mo -share/locale/ro/LC_MESSAGES/kcmaccessibility.mo -share/locale/ro/LC_MESSAGES/kcmarts.mo -share/locale/ro/LC_MESSAGES/kcmaudiocd.mo -share/locale/ro/LC_MESSAGES/kcmbackground.mo -share/locale/ro/LC_MESSAGES/kcmbell.mo -share/locale/ro/LC_MESSAGES/kcmcddb.mo -share/locale/ro/LC_MESSAGES/kcmcgi.mo -share/locale/ro/LC_MESSAGES/kcmcolors.mo -share/locale/ro/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/ro/LC_MESSAGES/kcmcrypto.mo -share/locale/ro/LC_MESSAGES/kcmcss.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/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/kcmkabconfig.mo -share/locale/ro/LC_MESSAGES/kcmkamera.mo -share/locale/ro/LC_MESSAGES/kcmkclock.mo -share/locale/ro/LC_MESSAGES/kcmkded.mo -share/locale/ro/LC_MESSAGES/kcmkdnssd.mo -share/locale/ro/LC_MESSAGES/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/kcmkontactnt.mo -share/locale/ro/LC_MESSAGES/kcmktalkd.mo -share/locale/ro/LC_MESSAGES/kcmkttsd.mo -share/locale/ro/LC_MESSAGES/kcmkuick.mo -share/locale/ro/LC_MESSAGES/kcmkurifilt.mo -share/locale/ro/LC_MESSAGES/kcmkvaio.mo -share/locale/ro/LC_MESSAGES/kcmkwallet.mo -share/locale/ro/LC_MESSAGES/kcmkwindecoration.mo -share/locale/ro/LC_MESSAGES/kcmkwinrules.mo -share/locale/ro/LC_MESSAGES/kcmkwintheme.mo -share/locale/ro/LC_MESSAGES/kcmkwm.mo -share/locale/ro/LC_MESSAGES/kcmkxmlrpcd.mo -share/locale/ro/LC_MESSAGES/kcmlanbrowser.mo -share/locale/ro/LC_MESSAGES/kcmlaptop.mo -share/locale/ro/LC_MESSAGES/kcmlaunch.mo -share/locale/ro/LC_MESSAGES/kcmlayout.mo -share/locale/ro/LC_MESSAGES/kcmlilo.mo -share/locale/ro/LC_MESSAGES/kcmlirc.mo -share/locale/ro/LC_MESSAGES/kcmlocale.mo -share/locale/ro/LC_MESSAGES/kcmmediacontrol.mo -share/locale/ro/LC_MESSAGES/kcmmidi.mo -share/locale/ro/LC_MESSAGES/kcmnic.mo -share/locale/ro/LC_MESSAGES/kcmnotify.mo -share/locale/ro/LC_MESSAGES/kcmperformance.mo -share/locale/ro/LC_MESSAGES/kcmprintmgr.mo -share/locale/ro/LC_MESSAGES/kcmsamba.mo -share/locale/ro/LC_MESSAGES/kcmscreensaver.mo -share/locale/ro/LC_MESSAGES/kcmshell.mo -share/locale/ro/LC_MESSAGES/kcmsmartcard.mo -share/locale/ro/LC_MESSAGES/kcmsmserver.mo -share/locale/ro/LC_MESSAGES/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/kcmthinkpad.mo -share/locale/ro/LC_MESSAGES/kcmusb.mo -share/locale/ro/LC_MESSAGES/kcmview1394.mo -share/locale/ro/LC_MESSAGES/kcmvim.mo -share/locale/ro/LC_MESSAGES/kcmwifi.mo -share/locale/ro/LC_MESSAGES/kcmxinerama.mo -share/locale/ro/LC_MESSAGES/kcoloredit.mo -share/locale/ro/LC_MESSAGES/kcontrol.mo -share/locale/ro/LC_MESSAGES/kcron.mo -share/locale/ro/LC_MESSAGES/kdat.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/kdelibs_colors.mo -share/locale/ro/LC_MESSAGES/kdelirc.mo -share/locale/ro/LC_MESSAGES/kdepasswd.mo -share/locale/ro/LC_MESSAGES/kdeprint.mo -share/locale/ro/LC_MESSAGES/kdeprint_part.mo -share/locale/ro/LC_MESSAGES/kdeprintfax.mo -share/locale/ro/LC_MESSAGES/kdesktop.mo -share/locale/ro/LC_MESSAGES/kdessh.mo -share/locale/ro/LC_MESSAGES/kdesu.mo -share/locale/ro/LC_MESSAGES/kdesud.mo -share/locale/ro/LC_MESSAGES/kdevdesigner.mo -share/locale/ro/LC_MESSAGES/kdevelop.mo -share/locale/ro/LC_MESSAGES/kdevtipofday.mo -share/locale/ro/LC_MESSAGES/kdf.mo -share/locale/ro/LC_MESSAGES/kdgantt.mo -share/locale/ro/LC_MESSAGES/kdialog.mo -share/locale/ro/LC_MESSAGES/kdict.mo -share/locale/ro/LC_MESSAGES/kdictapplet.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/keduca.mo -share/locale/ro/LC_MESSAGES/kenolaba.mo -share/locale/ro/LC_MESSAGES/kfax.mo -share/locale/ro/LC_MESSAGES/kfifteenapplet.mo -share/locale/ro/LC_MESSAGES/kfile_au.mo -share/locale/ro/LC_MESSAGES/kfile_avi.mo -share/locale/ro/LC_MESSAGES/kfile_bmp.mo -share/locale/ro/LC_MESSAGES/kfile_cpp.mo -share/locale/ro/LC_MESSAGES/kfile_dds.mo -share/locale/ro/LC_MESSAGES/kfile_deb.mo -share/locale/ro/LC_MESSAGES/kfile_desktop.mo -share/locale/ro/LC_MESSAGES/kfile_diff.mo -share/locale/ro/LC_MESSAGES/kfile_dvi.mo -share/locale/ro/LC_MESSAGES/kfile_exr.mo -share/locale/ro/LC_MESSAGES/kfile_flac.mo -share/locale/ro/LC_MESSAGES/kfile_folder.mo -share/locale/ro/LC_MESSAGES/kfile_font.mo -share/locale/ro/LC_MESSAGES/kfile_gif.mo -share/locale/ro/LC_MESSAGES/kfile_html.mo -share/locale/ro/LC_MESSAGES/kfile_ico.mo -share/locale/ro/LC_MESSAGES/kfile_jpeg.mo -share/locale/ro/LC_MESSAGES/kfile_lnk.mo -share/locale/ro/LC_MESSAGES/kfile_m3u.mo -share/locale/ro/LC_MESSAGES/kfile_mp3.mo -share/locale/ro/LC_MESSAGES/kfile_ogg.mo -share/locale/ro/LC_MESSAGES/kfile_palm.mo -share/locale/ro/LC_MESSAGES/kfile_pcx.mo -share/locale/ro/LC_MESSAGES/kfile_pdf.mo -share/locale/ro/LC_MESSAGES/kfile_png.mo -share/locale/ro/LC_MESSAGES/kfile_pnm.mo -share/locale/ro/LC_MESSAGES/kfile_po.mo -share/locale/ro/LC_MESSAGES/kfile_ps.mo -share/locale/ro/LC_MESSAGES/kfile_rfc822.mo -share/locale/ro/LC_MESSAGES/kfile_rgb.mo -share/locale/ro/LC_MESSAGES/kfile_rpm.mo -share/locale/ro/LC_MESSAGES/kfile_sid.mo -share/locale/ro/LC_MESSAGES/kfile_tga.mo -share/locale/ro/LC_MESSAGES/kfile_tiff.mo -share/locale/ro/LC_MESSAGES/kfile_torrent.mo -share/locale/ro/LC_MESSAGES/kfile_ts.mo -share/locale/ro/LC_MESSAGES/kfile_txt.mo -share/locale/ro/LC_MESSAGES/kfile_vcf.mo -share/locale/ro/LC_MESSAGES/kfile_wav.mo -share/locale/ro/LC_MESSAGES/kfile_xbm.mo -share/locale/ro/LC_MESSAGES/kfile_xpm.mo -share/locale/ro/LC_MESSAGES/kfileaudiopreview.mo -share/locale/ro/LC_MESSAGES/kfilereplace.mo -share/locale/ro/LC_MESSAGES/kfileshare.mo -share/locale/ro/LC_MESSAGES/kfindpart.mo -share/locale/ro/LC_MESSAGES/kfloppy.mo -share/locale/ro/LC_MESSAGES/kfmclient.mo -share/locale/ro/LC_MESSAGES/kfontinst.mo -share/locale/ro/LC_MESSAGES/kfouleggs.mo -share/locale/ro/LC_MESSAGES/kgamma.mo -share/locale/ro/LC_MESSAGES/kgantt.mo -share/locale/ro/LC_MESSAGES/kget.mo -share/locale/ro/LC_MESSAGES/kghostview.mo -share/locale/ro/LC_MESSAGES/kgoldrunner.mo -share/locale/ro/LC_MESSAGES/kgpg.mo -share/locale/ro/LC_MESSAGES/kgreet_classic.mo -share/locale/ro/LC_MESSAGES/kgreet_winbind.mo -share/locale/ro/LC_MESSAGES/khangman.mo -share/locale/ro/LC_MESSAGES/khelpcenter.mo -share/locale/ro/LC_MESSAGES/khexedit.mo -share/locale/ro/LC_MESSAGES/khotkeys.mo -share/locale/ro/LC_MESSAGES/khtmlkttsd.mo -share/locale/ro/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/ro/LC_MESSAGES/kicker.mo -share/locale/ro/LC_MESSAGES/kiconedit.mo -share/locale/ro/LC_MESSAGES/kig.mo -share/locale/ro/LC_MESSAGES/kimagemapeditor.mo -share/locale/ro/LC_MESSAGES/kinetd.mo -share/locale/ro/LC_MESSAGES/kio.mo -share/locale/ro/LC_MESSAGES/kio_audiocd.mo -share/locale/ro/LC_MESSAGES/kio_devices.mo -share/locale/ro/LC_MESSAGES/kio_finger.mo -share/locale/ro/LC_MESSAGES/kio_fish.mo -share/locale/ro/LC_MESSAGES/kio_floppy.mo -share/locale/ro/LC_MESSAGES/kio_help.mo -share/locale/ro/LC_MESSAGES/kio_imap4.mo -share/locale/ro/LC_MESSAGES/kio_lan.mo -share/locale/ro/LC_MESSAGES/kio_ldap.mo -share/locale/ro/LC_MESSAGES/kio_mac.mo -share/locale/ro/LC_MESSAGES/kio_man.mo -share/locale/ro/LC_MESSAGES/kio_media.mo -share/locale/ro/LC_MESSAGES/kio_mobile.mo -share/locale/ro/LC_MESSAGES/kio_newimap4.mo -share/locale/ro/LC_MESSAGES/kio_nfs.mo -share/locale/ro/LC_MESSAGES/kio_nntp.mo -share/locale/ro/LC_MESSAGES/kio_pop3.mo -share/locale/ro/LC_MESSAGES/kio_print.mo -share/locale/ro/LC_MESSAGES/kio_remote.mo -share/locale/ro/LC_MESSAGES/kio_settings.mo -share/locale/ro/LC_MESSAGES/kio_sftp.mo -share/locale/ro/LC_MESSAGES/kio_sieve.mo -share/locale/ro/LC_MESSAGES/kio_smb.mo -share/locale/ro/LC_MESSAGES/kio_smtp.mo -share/locale/ro/LC_MESSAGES/kio_svn.mo -share/locale/ro/LC_MESSAGES/kio_system.mo -share/locale/ro/LC_MESSAGES/kio_trash.mo -share/locale/ro/LC_MESSAGES/kio_zeroconf.mo -share/locale/ro/LC_MESSAGES/kioexec.mo -share/locale/ro/LC_MESSAGES/kiten.mo -share/locale/ro/LC_MESSAGES/kjobviewer.mo -share/locale/ro/LC_MESSAGES/kjots.mo -share/locale/ro/LC_MESSAGES/kjumpingcube.mo -share/locale/ro/LC_MESSAGES/klaptopdaemon.mo -share/locale/ro/LC_MESSAGES/klatin.mo -share/locale/ro/LC_MESSAGES/klegacyimport.mo -share/locale/ro/LC_MESSAGES/kleopatra.mo -share/locale/ro/LC_MESSAGES/klettres.mo -share/locale/ro/LC_MESSAGES/klickety.mo -share/locale/ro/LC_MESSAGES/klines.mo -share/locale/ro/LC_MESSAGES/klinkstatus.mo -share/locale/ro/LC_MESSAGES/klipper.mo -share/locale/ro/LC_MESSAGES/klock.mo -share/locale/ro/LC_MESSAGES/kmag.mo -share/locale/ro/LC_MESSAGES/kmahjongg.mo -share/locale/ro/LC_MESSAGES/kmail.mo -share/locale/ro/LC_MESSAGES/kmailcvt.mo -share/locale/ro/LC_MESSAGES/kmathapplet.mo -share/locale/ro/LC_MESSAGES/kmathtool.mo -share/locale/ro/LC_MESSAGES/kmcop.mo -share/locale/ro/LC_MESSAGES/kmenuapplet.mo -share/locale/ro/LC_MESSAGES/kmenuedit.mo -share/locale/ro/LC_MESSAGES/kmessedwords.mo -share/locale/ro/LC_MESSAGES/kmid.mo -share/locale/ro/LC_MESSAGES/kmilo_generic.mo -share/locale/ro/LC_MESSAGES/kmilo_kvaio.mo -share/locale/ro/LC_MESSAGES/kmilo_powerbook.mo -share/locale/ro/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/ro/LC_MESSAGES/kmilod.mo -share/locale/ro/LC_MESSAGES/kmines.mo -share/locale/ro/LC_MESSAGES/kminipagerapplet.mo -share/locale/ro/LC_MESSAGES/kmix.mo -share/locale/ro/LC_MESSAGES/kmobile.mo -share/locale/ro/LC_MESSAGES/kmoon.mo -share/locale/ro/LC_MESSAGES/kmousetool.mo -share/locale/ro/LC_MESSAGES/kmouth.mo -share/locale/ro/LC_MESSAGES/kmplot.mo -share/locale/ro/LC_MESSAGES/kmrml.mo -share/locale/ro/LC_MESSAGES/knetattach.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/kodo.mo -share/locale/ro/LC_MESSAGES/kolf.mo -share/locale/ro/LC_MESSAGES/kolourpaint.mo -share/locale/ro/LC_MESSAGES/kolourpicker.mo -share/locale/ro/LC_MESSAGES/kommander.mo -share/locale/ro/LC_MESSAGES/kompare.mo -share/locale/ro/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/ro/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/ro/LC_MESSAGES/konqsidebar_news.mo -share/locale/ro/LC_MESSAGES/konqueror.mo -share/locale/ro/LC_MESSAGES/konquest.mo -share/locale/ro/LC_MESSAGES/konsole.mo -share/locale/ro/LC_MESSAGES/konsolekalendar.mo -share/locale/ro/LC_MESSAGES/kontact.mo -share/locale/ro/LC_MESSAGES/kooka.mo -share/locale/ro/LC_MESSAGES/kopete.mo -share/locale/ro/LC_MESSAGES/korganizer.mo -share/locale/ro/LC_MESSAGES/korn.mo -share/locale/ro/LC_MESSAGES/kpackage.mo -share/locale/ro/LC_MESSAGES/kpager.mo -share/locale/ro/LC_MESSAGES/kpartapp.mo -share/locale/ro/LC_MESSAGES/kpartsaver.mo -share/locale/ro/LC_MESSAGES/kpat.mo -share/locale/ro/LC_MESSAGES/kpdf.mo -share/locale/ro/LC_MESSAGES/kpercentage.mo -share/locale/ro/LC_MESSAGES/kpersonalizer.mo -share/locale/ro/LC_MESSAGES/kpf.mo -share/locale/ro/LC_MESSAGES/kpilot.mo -share/locale/ro/LC_MESSAGES/kpoker.mo -share/locale/ro/LC_MESSAGES/kpovmodeler.mo -share/locale/ro/LC_MESSAGES/kppp.mo -share/locale/ro/LC_MESSAGES/kppplogview.mo -share/locale/ro/LC_MESSAGES/kprinter.mo -share/locale/ro/LC_MESSAGES/krandr.mo -share/locale/ro/LC_MESSAGES/krdb.mo -share/locale/ro/LC_MESSAGES/krdc.mo -share/locale/ro/LC_MESSAGES/kreadconfig.mo -share/locale/ro/LC_MESSAGES/krec.mo -share/locale/ro/LC_MESSAGES/kregexpeditor.mo -share/locale/ro/LC_MESSAGES/kreversi.mo -share/locale/ro/LC_MESSAGES/krfb.mo -share/locale/ro/LC_MESSAGES/kruler.mo -share/locale/ro/LC_MESSAGES/krunapplet.mo -share/locale/ro/LC_MESSAGES/ksame.mo -share/locale/ro/LC_MESSAGES/kscd.mo -share/locale/ro/LC_MESSAGES/kscreensaver.mo -share/locale/ro/LC_MESSAGES/kshisen.mo -share/locale/ro/LC_MESSAGES/ksig.mo -share/locale/ro/LC_MESSAGES/ksim.mo -share/locale/ro/LC_MESSAGES/ksirc.mo -share/locale/ro/LC_MESSAGES/ksirtet.mo -share/locale/ro/LC_MESSAGES/ksmiletris.mo -share/locale/ro/LC_MESSAGES/ksmserver.mo -share/locale/ro/LC_MESSAGES/ksnake.mo -share/locale/ro/LC_MESSAGES/ksnapshot.mo -share/locale/ro/LC_MESSAGES/ksokoban.mo -share/locale/ro/LC_MESSAGES/kspaceduel.mo -share/locale/ro/LC_MESSAGES/ksplash.mo -share/locale/ro/LC_MESSAGES/ksplashthemes.mo -share/locale/ro/LC_MESSAGES/kstars.mo -share/locale/ro/LC_MESSAGES/kstart.mo -share/locale/ro/LC_MESSAGES/kstartperf.mo -share/locale/ro/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/ro/LC_MESSAGES/kstyle_phase_config.mo -share/locale/ro/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/ro/LC_MESSAGES/ksvgplugin.mo -share/locale/ro/LC_MESSAGES/ksync.mo -share/locale/ro/LC_MESSAGES/ksysguard.mo -share/locale/ro/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/ro/LC_MESSAGES/ksystraycmd.mo -share/locale/ro/LC_MESSAGES/ksysv.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/ktexteditor_autobookmarker.mo -share/locale/ro/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/ro/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/ro/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/ro/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/ro/LC_MESSAGES/kthememanager.mo -share/locale/ro/LC_MESSAGES/ktimemon.mo -share/locale/ro/LC_MESSAGES/ktimer.mo -share/locale/ro/LC_MESSAGES/ktip.mo -share/locale/ro/LC_MESSAGES/ktnef.mo -share/locale/ro/LC_MESSAGES/ktouch.mo -share/locale/ro/LC_MESSAGES/ktron.mo -share/locale/ro/LC_MESSAGES/kttsd.mo -share/locale/ro/LC_MESSAGES/kttsjobmgr.mo -share/locale/ro/LC_MESSAGES/kttsmgr.mo -share/locale/ro/LC_MESSAGES/ktuberling.mo -share/locale/ro/LC_MESSAGES/kturtle.mo -share/locale/ro/LC_MESSAGES/ktux.mo -share/locale/ro/LC_MESSAGES/kuick_plugin.mo -share/locale/ro/LC_MESSAGES/kuickshow.mo -share/locale/ro/LC_MESSAGES/kuiviewer.mo -share/locale/ro/LC_MESSAGES/kuser.mo -share/locale/ro/LC_MESSAGES/kverbos.mo -share/locale/ro/LC_MESSAGES/kview.mo -share/locale/ro/LC_MESSAGES/kview_scale.mo -share/locale/ro/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/ro/LC_MESSAGES/kviewcanvas.mo -share/locale/ro/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/ro/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/ro/LC_MESSAGES/kviewscannerplugin.mo -share/locale/ro/LC_MESSAGES/kviewshell.mo -share/locale/ro/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/ro/LC_MESSAGES/kviewviewer.mo -share/locale/ro/LC_MESSAGES/kvoctrain.mo -share/locale/ro/LC_MESSAGES/kwalletmanager.mo -share/locale/ro/LC_MESSAGES/kwatchgnupg.mo -share/locale/ro/LC_MESSAGES/kweather.mo -share/locale/ro/LC_MESSAGES/kwifimanager.mo -share/locale/ro/LC_MESSAGES/kwin.mo -share/locale/ro/LC_MESSAGES/kwin4.mo -share/locale/ro/LC_MESSAGES/kwin_art_clients.mo -share/locale/ro/LC_MESSAGES/kwin_clients.mo -share/locale/ro/LC_MESSAGES/kwireless.mo -share/locale/ro/LC_MESSAGES/kwordquiz.mo -share/locale/ro/LC_MESSAGES/kworldclock.mo -share/locale/ro/LC_MESSAGES/kwriteconfig.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/kxsldbg.mo -share/locale/ro/LC_MESSAGES/libcalendarresources.mo -share/locale/ro/LC_MESSAGES/libdmctl.mo -share/locale/ro/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/ro/LC_MESSAGES/libkcal.mo -share/locale/ro/LC_MESSAGES/libkcalsystem.mo -share/locale/ro/LC_MESSAGES/libkcddb.mo -share/locale/ro/LC_MESSAGES/libkdegames.mo -share/locale/ro/LC_MESSAGES/libkdehighscores.mo -share/locale/ro/LC_MESSAGES/libkdenetwork.mo -share/locale/ro/LC_MESSAGES/libkdepim.mo -share/locale/ro/LC_MESSAGES/libkicker.mo -share/locale/ro/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/ro/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/ro/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/ro/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/ro/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/ro/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/ro/LC_MESSAGES/libkickermenu_tom.mo -share/locale/ro/LC_MESSAGES/libkleopatra.mo -share/locale/ro/LC_MESSAGES/libkonq.mo -share/locale/ro/LC_MESSAGES/libkpimexchange.mo -share/locale/ro/LC_MESSAGES/libkscan.mo -share/locale/ro/LC_MESSAGES/libkscreensaver.mo -share/locale/ro/LC_MESSAGES/libksieve.mo -share/locale/ro/LC_MESSAGES/libksirtet.mo -share/locale/ro/LC_MESSAGES/libksync.mo -share/locale/ro/LC_MESSAGES/libtaskbar.mo -share/locale/ro/LC_MESSAGES/libtaskmanager.mo -share/locale/ro/LC_MESSAGES/lockout.mo -share/locale/ro/LC_MESSAGES/lskat.mo -share/locale/ro/LC_MESSAGES/lyrics.mo -share/locale/ro/LC_MESSAGES/mediaapplet.mo -share/locale/ro/LC_MESSAGES/mediacontrol.mo -share/locale/ro/LC_MESSAGES/minitoolsplugin.mo -share/locale/ro/LC_MESSAGES/naughtyapplet.mo -share/locale/ro/LC_MESSAGES/nexscope.mo -share/locale/ro/LC_MESSAGES/noatun.mo -share/locale/ro/LC_MESSAGES/nsplugin.mo -share/locale/ro/LC_MESSAGES/passwords.mo -share/locale/ro/LC_MESSAGES/pitchablespeed.mo -share/locale/ro/LC_MESSAGES/ppdtranslations.mo -share/locale/ro/LC_MESSAGES/privacy.mo -share/locale/ro/LC_MESSAGES/qeditor.mo -share/locale/ro/LC_MESSAGES/quanta.mo -share/locale/ro/LC_MESSAGES/quicklauncher.mo -share/locale/ro/LC_MESSAGES/rellinks.mo -share/locale/ro/LC_MESSAGES/searchbarplugin.mo -share/locale/ro/LC_MESSAGES/secpolicy.mo -share/locale/ro/LC_MESSAGES/spy.mo -share/locale/ro/LC_MESSAGES/synaescope.mo -share/locale/ro/LC_MESSAGES/taskbarextension.mo -share/locale/ro/LC_MESSAGES/timezones.mo -share/locale/ro/LC_MESSAGES/tippecanoe.mo -share/locale/ro/LC_MESSAGES/trashapplet.mo -share/locale/ro/LC_MESSAGES/tyler.mo -share/locale/ro/LC_MESSAGES/uachangerplugin.mo -share/locale/ro/LC_MESSAGES/umbrello.mo -share/locale/ro/LC_MESSAGES/useraccount.mo -share/locale/ro/LC_MESSAGES/validatorsplugin.mo -share/locale/ro/LC_MESSAGES/vimpart.mo -share/locale/ro/LC_MESSAGES/wakeup.mo -share/locale/ro/LC_MESSAGES/wavecapture.mo -share/locale/ro/LC_MESSAGES/webarchiver.mo -share/locale/ro/charset -share/locale/ro/entry.desktop -share/locale/ro/flag.png -@dirrm share/doc/HTML/ro/kioslave -@dirrm share/doc/HTML/ro/kinfocenter/xserver -@dirrm share/doc/HTML/ro/kinfocenter/usb -@dirrm share/doc/HTML/ro/kinfocenter/sound -@dirrm share/doc/HTML/ro/kinfocenter/scsi -@dirrm share/doc/HTML/ro/kinfocenter/samba -@dirrm share/doc/HTML/ro/kinfocenter/protocols -@dirrm share/doc/HTML/ro/kinfocenter/processor -@dirrm share/doc/HTML/ro/kinfocenter/pcmcia -@dirrm share/doc/HTML/ro/kinfocenter/pci -@dirrm share/doc/HTML/ro/kinfocenter/partitions -@dirrm share/doc/HTML/ro/kinfocenter/opengl -@dirrm share/doc/HTML/ro/kinfocenter/nics -@dirrm share/doc/HTML/ro/kinfocenter/memory -@dirrm share/doc/HTML/ro/kinfocenter/ioports -@dirrm share/doc/HTML/ro/kinfocenter/interrupts -@dirrm share/doc/HTML/ro/kinfocenter/dma -@dirrm share/doc/HTML/ro/kinfocenter/devices -@dirrm share/doc/HTML/ro/kinfocenter -@dirrm share/doc/HTML/ro/khelpcenter/visualdict -@dirrm share/doc/HTML/ro/khelpcenter/glossary -@dirrm share/doc/HTML/ro/khelpcenter -@dirrm share/doc/HTML/ro/common -@dirrm share/apps/ktuberling/sounds/ro -@dirrm share/apps/ktuberling/sounds -@dirrm share/apps/ktuberling diff --git a/misc/kde4-l10n-sk/Makefile b/misc/kde4-l10n-sk/Makefile deleted file mode 100644 index 486be8bb4fd5..000000000000 --- a/misc/kde4-l10n-sk/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-sk -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= sk- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Slovak messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-sk/distinfo b/misc/kde4-l10n-sk/distinfo deleted file mode 100644 index 42d4edf85ee9..000000000000 --- a/misc/kde4-l10n-sk/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-sk-3.4.2.tar.bz2) = ffa21cab8e4c97c74176b36fff8b2f9b -SIZE (KDE/kde-i18n/kde-i18n-sk-3.4.2.tar.bz2) = 5379234 diff --git a/misc/kde4-l10n-sk/pkg-descr b/misc/kde4-l10n-sk/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-sk/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-sk/pkg-plist b/misc/kde4-l10n-sk/pkg-plist deleted file mode 100644 index 117b530dfbf7..000000000000 --- a/misc/kde4-l10n-sk/pkg-plist +++ /dev/null @@ -1,1535 +0,0 @@ -share/apps/klettres/sk/alpha/a-0.ogg -share/apps/klettres/sk/alpha/a-1.ogg -share/apps/klettres/sk/alpha/a-10.ogg -share/apps/klettres/sk/alpha/a-11.ogg -share/apps/klettres/sk/alpha/a-12.ogg -share/apps/klettres/sk/alpha/a-13.ogg -share/apps/klettres/sk/alpha/a-14.ogg -share/apps/klettres/sk/alpha/a-15.ogg -share/apps/klettres/sk/alpha/a-16.ogg -share/apps/klettres/sk/alpha/a-17.ogg -share/apps/klettres/sk/alpha/a-18.ogg -share/apps/klettres/sk/alpha/a-19.ogg -share/apps/klettres/sk/alpha/a-2.ogg -share/apps/klettres/sk/alpha/a-20.ogg -share/apps/klettres/sk/alpha/a-21.ogg -share/apps/klettres/sk/alpha/a-22.ogg -share/apps/klettres/sk/alpha/a-23.ogg -share/apps/klettres/sk/alpha/a-24.ogg -share/apps/klettres/sk/alpha/a-25.ogg -share/apps/klettres/sk/alpha/a-26.ogg -share/apps/klettres/sk/alpha/a-27.ogg -share/apps/klettres/sk/alpha/a-28.ogg -share/apps/klettres/sk/alpha/a-29.ogg -share/apps/klettres/sk/alpha/a-3.ogg -share/apps/klettres/sk/alpha/a-30.ogg -share/apps/klettres/sk/alpha/a-31.ogg -share/apps/klettres/sk/alpha/a-32.ogg -share/apps/klettres/sk/alpha/a-33.ogg -share/apps/klettres/sk/alpha/a-34.ogg -share/apps/klettres/sk/alpha/a-35.ogg -share/apps/klettres/sk/alpha/a-36.ogg -share/apps/klettres/sk/alpha/a-37.ogg -share/apps/klettres/sk/alpha/a-38.ogg -share/apps/klettres/sk/alpha/a-39.ogg -share/apps/klettres/sk/alpha/a-4.ogg -share/apps/klettres/sk/alpha/a-40.ogg -share/apps/klettres/sk/alpha/a-41.ogg -share/apps/klettres/sk/alpha/a-5.ogg -share/apps/klettres/sk/alpha/a-6.ogg -share/apps/klettres/sk/alpha/a-7.ogg -share/apps/klettres/sk/alpha/a-8.ogg -share/apps/klettres/sk/alpha/a-9.ogg -share/apps/klettres/sk/syllab/ad-0.ogg -share/apps/klettres/sk/syllab/ad-1.ogg -share/apps/klettres/sk/syllab/ad-10.ogg -share/apps/klettres/sk/syllab/ad-11.ogg -share/apps/klettres/sk/syllab/ad-12.ogg -share/apps/klettres/sk/syllab/ad-13.ogg -share/apps/klettres/sk/syllab/ad-14.ogg -share/apps/klettres/sk/syllab/ad-15.ogg -share/apps/klettres/sk/syllab/ad-16.ogg -share/apps/klettres/sk/syllab/ad-17.ogg -share/apps/klettres/sk/syllab/ad-18.ogg -share/apps/klettres/sk/syllab/ad-19.ogg -share/apps/klettres/sk/syllab/ad-2.ogg -share/apps/klettres/sk/syllab/ad-20.ogg -share/apps/klettres/sk/syllab/ad-21.ogg -share/apps/klettres/sk/syllab/ad-22.ogg -share/apps/klettres/sk/syllab/ad-23.ogg -share/apps/klettres/sk/syllab/ad-24.ogg -share/apps/klettres/sk/syllab/ad-25.ogg -share/apps/klettres/sk/syllab/ad-26.ogg -share/apps/klettres/sk/syllab/ad-27.ogg -share/apps/klettres/sk/syllab/ad-28.ogg -share/apps/klettres/sk/syllab/ad-29.ogg -share/apps/klettres/sk/syllab/ad-3.ogg -share/apps/klettres/sk/syllab/ad-30.ogg -share/apps/klettres/sk/syllab/ad-31.ogg -share/apps/klettres/sk/syllab/ad-32.ogg -share/apps/klettres/sk/syllab/ad-33.ogg -share/apps/klettres/sk/syllab/ad-34.ogg -share/apps/klettres/sk/syllab/ad-35.ogg -share/apps/klettres/sk/syllab/ad-36.ogg -share/apps/klettres/sk/syllab/ad-37.ogg -share/apps/klettres/sk/syllab/ad-38.ogg -share/apps/klettres/sk/syllab/ad-4.ogg -share/apps/klettres/sk/syllab/ad-40.ogg -share/apps/klettres/sk/syllab/ad-41.ogg -share/apps/klettres/sk/syllab/ad-42.ogg -share/apps/klettres/sk/syllab/ad-43.ogg -share/apps/klettres/sk/syllab/ad-44.ogg -share/apps/klettres/sk/syllab/ad-45.ogg -share/apps/klettres/sk/syllab/ad-46.ogg -share/apps/klettres/sk/syllab/ad-47.ogg -share/apps/klettres/sk/syllab/ad-48.ogg -share/apps/klettres/sk/syllab/ad-49.ogg -share/apps/klettres/sk/syllab/ad-5.ogg -share/apps/klettres/sk/syllab/ad-50.ogg -share/apps/klettres/sk/syllab/ad-51.ogg -share/apps/klettres/sk/syllab/ad-52.ogg -share/apps/klettres/sk/syllab/ad-53.ogg -share/apps/klettres/sk/syllab/ad-54.ogg -share/apps/klettres/sk/syllab/ad-55.ogg -share/apps/klettres/sk/syllab/ad-56.ogg -share/apps/klettres/sk/syllab/ad-57.ogg -share/apps/klettres/sk/syllab/ad-58.ogg -share/apps/klettres/sk/syllab/ad-59.ogg -share/apps/klettres/sk/syllab/ad-6.ogg -share/apps/klettres/sk/syllab/ad-60.ogg -share/apps/klettres/sk/syllab/ad-61.ogg -share/apps/klettres/sk/syllab/ad-62.ogg -share/apps/klettres/sk/syllab/ad-63.ogg -share/apps/klettres/sk/syllab/ad-64.ogg -share/apps/klettres/sk/syllab/ad-65.ogg -share/apps/klettres/sk/syllab/ad-66.ogg -share/apps/klettres/sk/syllab/ad-67.ogg -share/apps/klettres/sk/syllab/ad-68.ogg -share/apps/klettres/sk/syllab/ad-69.ogg -share/apps/klettres/sk/syllab/ad-7.ogg -share/apps/klettres/sk/syllab/ad-70.ogg -share/apps/klettres/sk/syllab/ad-71.ogg -share/apps/klettres/sk/syllab/ad-72.ogg -share/apps/klettres/sk/syllab/ad-73.ogg -share/apps/klettres/sk/syllab/ad-74.ogg -share/apps/klettres/sk/syllab/ad-75.ogg -share/apps/klettres/sk/syllab/ad-76.ogg -share/apps/klettres/sk/syllab/ad-77.ogg -share/apps/klettres/sk/syllab/ad-8.ogg -share/apps/klettres/sk/syllab/ad-9.ogg -share/apps/ktuberling/sounds/sk/cigara.wav -share/apps/ktuberling/sounds/sk/fuzy.wav -share/apps/ktuberling/sounds/sk/hodinky.wav -share/apps/ktuberling/sounds/sk/klobuk.wav -share/apps/ktuberling/sounds/sk/kravata.wav -share/apps/ktuberling/sounds/sk/nausnica.wav -share/apps/ktuberling/sounds/sk/nos.wav -share/apps/ktuberling/sounds/sk/obocie.wav -share/apps/ktuberling/sounds/sk/odznak.wav -share/apps/ktuberling/sounds/sk/oko.wav -share/apps/ktuberling/sounds/sk/okuliare.wav -share/apps/ktuberling/sounds/sk/slnecneokuliare.wav -share/apps/ktuberling/sounds/sk/ucho.wav -share/apps/ktuberling/sounds/sk/usta.wav -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/atlantik/common -share/doc/HTML/sk/atlantik/index.cache.bz2 -share/doc/HTML/sk/atlantik/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/appheader.html -share/doc/HTML/sk/common/artistic-license.html -share/doc/HTML/sk/common/bottom-left.png -share/doc/HTML/sk/common/bottom-middle.png -share/doc/HTML/sk/common/bottom-right.png -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/docheadergears.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/doxygen.css -share/doc/HTML/sk/common/fdl-license -share/doc/HTML/sk/common/fdl-license.html -share/doc/HTML/sk/common/footer.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/grad.png -share/doc/HTML/sk/common/header.html -share/doc/HTML/sk/common/headerbg.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/kde-web.css -share/doc/HTML/sk/common/kde_logo.png -share/doc/HTML/sk/common/kde_logo_bg.png -share/doc/HTML/sk/common/kmenu.png -share/doc/HTML/sk/common/lgpl-license -share/doc/HTML/sk/common/lgpl-license.html -share/doc/HTML/sk/common/mainfooter.html -share/doc/HTML/sk/common/mainheader.html -share/doc/HTML/sk/common/qpl-license.html -share/doc/HTML/sk/common/shadow.png -share/doc/HTML/sk/common/top-left.png -share/doc/HTML/sk/common/top-middle.png -share/doc/HTML/sk/common/top-right-konqueror.png -share/doc/HTML/sk/common/web-docbottom.png -share/doc/HTML/sk/common/web-doctop.png -share/doc/HTML/sk/common/x11-license.html -share/doc/HTML/sk/common/xml.dcl -share/doc/HTML/sk/kaboodle/common -share/doc/HTML/sk/kaboodle/index.cache.bz2 -share/doc/HTML/sk/kaboodle/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/kamera/common -share/doc/HTML/sk/kamera/index.cache.bz2 -share/doc/HTML/sk/kamera/index.docbook -share/doc/HTML/sk/kasteroids/common -share/doc/HTML/sk/kasteroids/index.cache.bz2 -share/doc/HTML/sk/kasteroids/index.docbook -share/doc/HTML/sk/kate-plugins/common -share/doc/HTML/sk/kate-plugins/htmltools.docbook -share/doc/HTML/sk/kate-plugins/index.cache.bz2 -share/doc/HTML/sk/kate-plugins/index.docbook -share/doc/HTML/sk/kate-plugins/insertcommand.docbook -share/doc/HTML/sk/kate-plugins/openheader.docbook -share/doc/HTML/sk/kate-plugins/projectmanager.docbook -share/doc/HTML/sk/kate-plugins/textfilter.docbook -share/doc/HTML/sk/kate-plugins/xmlcheck.docbook -share/doc/HTML/sk/kate-plugins/xmltools.docbook -share/doc/HTML/sk/kate/advanced.docbook -share/doc/HTML/sk/kate/common -share/doc/HTML/sk/kate/configuring.docbook -share/doc/HTML/sk/kate/fundamentals.docbook -share/doc/HTML/sk/kate/highlighting.docbook -share/doc/HTML/sk/kate/index.cache.bz2 -share/doc/HTML/sk/kate/index.docbook -share/doc/HTML/sk/kate/mdi.docbook -share/doc/HTML/sk/kate/menus.docbook -share/doc/HTML/sk/kate/part.docbook -share/doc/HTML/sk/kate/plugins.docbook -share/doc/HTML/sk/kate/regular-expressions.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/kbackgammon/common -share/doc/HTML/sk/kbackgammon/index.cache.bz2 -share/doc/HTML/sk/kbackgammon/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/kblackbox/common -share/doc/HTML/sk/kblackbox/index.cache.bz2 -share/doc/HTML/sk/kblackbox/index.docbook -share/doc/HTML/sk/kbounce/common -share/doc/HTML/sk/kbounce/index.cache.bz2 -share/doc/HTML/sk/kbounce/index.docbook -share/doc/HTML/sk/kbounce/jezball_corridor1.png -share/doc/HTML/sk/kbounce/jezball_corridor2.png -share/doc/HTML/sk/kbounce/jezball_newWall.png -share/doc/HTML/sk/kbugbuster/common -share/doc/HTML/sk/kbugbuster/index.cache.bz2 -share/doc/HTML/sk/kbugbuster/index.docbook -share/doc/HTML/sk/kcharselect/common -share/doc/HTML/sk/kcharselect/index.cache.bz2 -share/doc/HTML/sk/kcharselect/index.docbook -share/doc/HTML/sk/kcoloredit/common -share/doc/HTML/sk/kcoloredit/index.cache.bz2 -share/doc/HTML/sk/kcoloredit/index.docbook -share/doc/HTML/sk/kcontrol/arts/common -share/doc/HTML/sk/kcontrol/arts/index.cache.bz2 -share/doc/HTML/sk/kcontrol/arts/index.docbook -share/doc/HTML/sk/kcontrol/arts/midi.docbook -share/doc/HTML/sk/kcontrol/background/common -share/doc/HTML/sk/kcontrol/background/index.cache.bz2 -share/doc/HTML/sk/kcontrol/background/index.docbook -share/doc/HTML/sk/kcontrol/bell/common -share/doc/HTML/sk/kcontrol/bell/index.cache.bz2 -share/doc/HTML/sk/kcontrol/bell/index.docbook -share/doc/HTML/sk/kcontrol/cache/common -share/doc/HTML/sk/kcontrol/cache/index.cache.bz2 -share/doc/HTML/sk/kcontrol/cache/index.docbook -share/doc/HTML/sk/kcontrol/clock/common -share/doc/HTML/sk/kcontrol/clock/index.cache.bz2 -share/doc/HTML/sk/kcontrol/clock/index.docbook -share/doc/HTML/sk/kcontrol/colors/common -share/doc/HTML/sk/kcontrol/colors/index.cache.bz2 -share/doc/HTML/sk/kcontrol/colors/index.docbook -share/doc/HTML/sk/kcontrol/common -share/doc/HTML/sk/kcontrol/cookies/common -share/doc/HTML/sk/kcontrol/cookies/index.cache.bz2 -share/doc/HTML/sk/kcontrol/cookies/index.docbook -share/doc/HTML/sk/kcontrol/crypto/common -share/doc/HTML/sk/kcontrol/crypto/index.cache.bz2 -share/doc/HTML/sk/kcontrol/crypto/index.docbook -share/doc/HTML/sk/kcontrol/desktop/common -share/doc/HTML/sk/kcontrol/desktop/index.cache.bz2 -share/doc/HTML/sk/kcontrol/desktop/index.docbook -share/doc/HTML/sk/kcontrol/ebrowsing/common -share/doc/HTML/sk/kcontrol/ebrowsing/index.cache.bz2 -share/doc/HTML/sk/kcontrol/ebrowsing/index.docbook -share/doc/HTML/sk/kcontrol/email/common -share/doc/HTML/sk/kcontrol/email/index.cache.bz2 -share/doc/HTML/sk/kcontrol/email/index.docbook -share/doc/HTML/sk/kcontrol/energy/common -share/doc/HTML/sk/kcontrol/energy/index.cache.bz2 -share/doc/HTML/sk/kcontrol/energy/index.docbook -share/doc/HTML/sk/kcontrol/filemanager/common -share/doc/HTML/sk/kcontrol/filemanager/index.cache.bz2 -share/doc/HTML/sk/kcontrol/filemanager/index.docbook -share/doc/HTML/sk/kcontrol/filemanager/kfileman1.png -share/doc/HTML/sk/kcontrol/filemanager/kfileman2.png -share/doc/HTML/sk/kcontrol/filetypes/common -share/doc/HTML/sk/kcontrol/filetypes/index.cache.bz2 -share/doc/HTML/sk/kcontrol/filetypes/index.docbook -share/doc/HTML/sk/kcontrol/fonts/common -share/doc/HTML/sk/kcontrol/fonts/index.cache.bz2 -share/doc/HTML/sk/kcontrol/fonts/index.docbook -share/doc/HTML/sk/kcontrol/helpindex/common -share/doc/HTML/sk/kcontrol/helpindex/index.cache.bz2 -share/doc/HTML/sk/kcontrol/helpindex/index.docbook -share/doc/HTML/sk/kcontrol/icons/common -share/doc/HTML/sk/kcontrol/icons/index.cache.bz2 -share/doc/HTML/sk/kcontrol/icons/index.docbook -share/doc/HTML/sk/kcontrol/index.cache.bz2 -share/doc/HTML/sk/kcontrol/index.docbook -share/doc/HTML/sk/kcontrol/kalarmd/common -share/doc/HTML/sk/kcontrol/kalarmd/index.cache.bz2 -share/doc/HTML/sk/kcontrol/kalarmd/index.docbook -share/doc/HTML/sk/kcontrol/kcmaccess/common -share/doc/HTML/sk/kcontrol/kcmaccess/index.cache.bz2 -share/doc/HTML/sk/kcontrol/kcmaccess/index.docbook -share/doc/HTML/sk/kcontrol/kcmcss/common -share/doc/HTML/sk/kcontrol/kcmcss/index.cache.bz2 -share/doc/HTML/sk/kcontrol/kcmcss/index.docbook -share/doc/HTML/sk/kcontrol/kcmfontinst/common -share/doc/HTML/sk/kcontrol/kcmfontinst/index.cache.bz2 -share/doc/HTML/sk/kcontrol/kcmfontinst/index.docbook -share/doc/HTML/sk/kcontrol/kcmkonsole/common -share/doc/HTML/sk/kcontrol/kcmkonsole/index.cache.bz2 -share/doc/HTML/sk/kcontrol/kcmkonsole/index.docbook -share/doc/HTML/sk/kcontrol/kcmktalkd/common -share/doc/HTML/sk/kcontrol/kcmktalkd/index.cache.bz2 -share/doc/HTML/sk/kcontrol/kcmktalkd/index.docbook -share/doc/HTML/sk/kcontrol/kcmlaunch/common -share/doc/HTML/sk/kcontrol/kcmlaunch/index.cache.bz2 -share/doc/HTML/sk/kcontrol/kcmlaunch/index.docbook -share/doc/HTML/sk/kcontrol/kcmlowbatcrit/common -share/doc/HTML/sk/kcontrol/kcmlowbatcrit/index.cache.bz2 -share/doc/HTML/sk/kcontrol/kcmlowbatcrit/index.docbook -share/doc/HTML/sk/kcontrol/kcmlowbatwarn/common -share/doc/HTML/sk/kcontrol/kcmlowbatwarn/index.cache.bz2 -share/doc/HTML/sk/kcontrol/kcmlowbatwarn/index.docbook -share/doc/HTML/sk/kcontrol/kcmnotify/common -share/doc/HTML/sk/kcontrol/kcmnotify/index.cache.bz2 -share/doc/HTML/sk/kcontrol/kcmnotify/index.docbook -share/doc/HTML/sk/kcontrol/kcmsmserver/common -share/doc/HTML/sk/kcontrol/kcmsmserver/index.cache.bz2 -share/doc/HTML/sk/kcontrol/kcmsmserver/index.docbook -share/doc/HTML/sk/kcontrol/kcmstyle/common -share/doc/HTML/sk/kcontrol/kcmstyle/index.cache.bz2 -share/doc/HTML/sk/kcontrol/kcmstyle/index.docbook -share/doc/HTML/sk/kcontrol/kcmtaskbar/common -share/doc/HTML/sk/kcontrol/kcmtaskbar/index.cache.bz2 -share/doc/HTML/sk/kcontrol/kcmtaskbar/index.docbook -share/doc/HTML/sk/kcontrol/kdm/common -share/doc/HTML/sk/kcontrol/kdm/index.cache.bz2 -share/doc/HTML/sk/kcontrol/kdm/index.docbook -share/doc/HTML/sk/kcontrol/keyboard/common -share/doc/HTML/sk/kcontrol/keyboard/index.cache.bz2 -share/doc/HTML/sk/kcontrol/keyboard/index.docbook -share/doc/HTML/sk/kcontrol/keys/common -share/doc/HTML/sk/kcontrol/keys/index.cache.bz2 -share/doc/HTML/sk/kcontrol/keys/index.docbook -share/doc/HTML/sk/kcontrol/khtml/common -share/doc/HTML/sk/kcontrol/khtml/index.cache.bz2 -share/doc/HTML/sk/kcontrol/khtml/index.docbook -share/doc/HTML/sk/kcontrol/khtml/nsplugin.docbook -share/doc/HTML/sk/kcontrol/kmixcfg/common -share/doc/HTML/sk/kcontrol/kmixcfg/index.cache.bz2 -share/doc/HTML/sk/kcontrol/kmixcfg/index.docbook -share/doc/HTML/sk/kcontrol/kwindecoration/common -share/doc/HTML/sk/kcontrol/kwindecoration/index.cache.bz2 -share/doc/HTML/sk/kcontrol/kwindecoration/index.docbook -share/doc/HTML/sk/kcontrol/kxmlrpcd/common -share/doc/HTML/sk/kcontrol/kxmlrpcd/index.cache.bz2 -share/doc/HTML/sk/kcontrol/kxmlrpcd/index.docbook -share/doc/HTML/sk/kcontrol/lanbrowser/common -share/doc/HTML/sk/kcontrol/lanbrowser/index.cache.bz2 -share/doc/HTML/sk/kcontrol/lanbrowser/index.docbook -share/doc/HTML/sk/kcontrol/language/common -share/doc/HTML/sk/kcontrol/language/index.cache.bz2 -share/doc/HTML/sk/kcontrol/language/index.docbook -share/doc/HTML/sk/kcontrol/laptop/common -share/doc/HTML/sk/kcontrol/laptop/index.cache.bz2 -share/doc/HTML/sk/kcontrol/laptop/index.docbook -share/doc/HTML/sk/kcontrol/mouse/common -share/doc/HTML/sk/kcontrol/mouse/index.cache.bz2 -share/doc/HTML/sk/kcontrol/mouse/index.docbook -share/doc/HTML/sk/kcontrol/netpref/common -share/doc/HTML/sk/kcontrol/netpref/index.cache.bz2 -share/doc/HTML/sk/kcontrol/netpref/index.docbook -share/doc/HTML/sk/kcontrol/panel/common -share/doc/HTML/sk/kcontrol/panel/index.cache.bz2 -share/doc/HTML/sk/kcontrol/panel/index.docbook -share/doc/HTML/sk/kcontrol/passwords/common -share/doc/HTML/sk/kcontrol/passwords/index.cache.bz2 -share/doc/HTML/sk/kcontrol/passwords/index.docbook -share/doc/HTML/sk/kcontrol/powerctrl/common -share/doc/HTML/sk/kcontrol/powerctrl/index.cache.bz2 -share/doc/HTML/sk/kcontrol/powerctrl/index.docbook -share/doc/HTML/sk/kcontrol/proxy/common -share/doc/HTML/sk/kcontrol/proxy/index.cache.bz2 -share/doc/HTML/sk/kcontrol/proxy/index.docbook -share/doc/HTML/sk/kcontrol/proxy/socks.docbook -share/doc/HTML/sk/kcontrol/screensaver/common -share/doc/HTML/sk/kcontrol/screensaver/index.cache.bz2 -share/doc/HTML/sk/kcontrol/screensaver/index.docbook -share/doc/HTML/sk/kcontrol/screenshot.png -share/doc/HTML/sk/kcontrol/smb/common -share/doc/HTML/sk/kcontrol/smb/index.cache.bz2 -share/doc/HTML/sk/kcontrol/smb/index.docbook -share/doc/HTML/sk/kcontrol/spellchecking/common -share/doc/HTML/sk/kcontrol/spellchecking/index.cache.bz2 -share/doc/HTML/sk/kcontrol/spellchecking/index.docbook -share/doc/HTML/sk/kcontrol/useragent/common -share/doc/HTML/sk/kcontrol/useragent/index.cache.bz2 -share/doc/HTML/sk/kcontrol/useragent/index.docbook -share/doc/HTML/sk/kcontrol/windowmanagement/common -share/doc/HTML/sk/kcontrol/windowmanagement/index.cache.bz2 -share/doc/HTML/sk/kcontrol/windowmanagement/index.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/kdeprint/add-printer-wiz.docbook -share/doc/HTML/sk/kdeprint/common -share/doc/HTML/sk/kdeprint/cups-config.docbook -share/doc/HTML/sk/kdeprint/cupsoptions.docbook -share/doc/HTML/sk/kdeprint/extensions.docbook -share/doc/HTML/sk/kdeprint/external-command.docbook -share/doc/HTML/sk/kdeprint/final-word.docbook -share/doc/HTML/sk/kdeprint/getting-started.docbook -share/doc/HTML/sk/kdeprint/highlights.docbook -share/doc/HTML/sk/kdeprint/index.cache.bz2 -share/doc/HTML/sk/kdeprint/index.docbook -share/doc/HTML/sk/kdeprint/lpd.docbook -share/doc/HTML/sk/kdeprint/lpr-bsd.docbook -share/doc/HTML/sk/kdeprint/lprng.docbook -share/doc/HTML/sk/kdeprint/rlpr.docbook -share/doc/HTML/sk/kdeprint/tech-overview.docbook -share/doc/HTML/sk/kdeprint/theory.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/kdf/kdf.png -share/doc/HTML/sk/kdf/kdf_config.png -share/doc/HTML/sk/kdm/common -share/doc/HTML/sk/kdm/index.cache.bz2 -share/doc/HTML/sk/kdm/index.docbook -share/doc/HTML/sk/kdvi/common -share/doc/HTML/sk/kdvi/index.cache.bz2 -share/doc/HTML/sk/kdvi/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/kfouleggs/common -share/doc/HTML/sk/kfouleggs/index.cache.bz2 -share/doc/HTML/sk/kfouleggs/index.docbook -share/doc/HTML/sk/khelpcenter/common -share/doc/HTML/sk/khelpcenter/contact.docbook -share/doc/HTML/sk/khelpcenter/faq/about.docbook -share/doc/HTML/sk/khelpcenter/faq/common -share/doc/HTML/sk/khelpcenter/faq/configkde.docbook -share/doc/HTML/sk/khelpcenter/faq/contrib.docbook -share/doc/HTML/sk/khelpcenter/faq/desktop.docbook -share/doc/HTML/sk/khelpcenter/faq/filemng.docbook -share/doc/HTML/sk/khelpcenter/faq/getkde.docbook -share/doc/HTML/sk/khelpcenter/faq/index.cache.bz2 -share/doc/HTML/sk/khelpcenter/faq/index.docbook -share/doc/HTML/sk/khelpcenter/faq/install.docbook -share/doc/HTML/sk/khelpcenter/faq/intro.docbook -share/doc/HTML/sk/khelpcenter/faq/kdeapps.docbook -share/doc/HTML/sk/khelpcenter/faq/misc.docbook -share/doc/HTML/sk/khelpcenter/faq/moreinfo.docbook -share/doc/HTML/sk/khelpcenter/faq/nonkdeapps.docbook -share/doc/HTML/sk/khelpcenter/faq/notrelated.docbook -share/doc/HTML/sk/khelpcenter/faq/panel.docbook -share/doc/HTML/sk/khelpcenter/faq/tips.docbook -share/doc/HTML/sk/khelpcenter/faq/winmng.docbook -share/doc/HTML/sk/khelpcenter/glossary/common -share/doc/HTML/sk/khelpcenter/glossary/index.cache.bz2 -share/doc/HTML/sk/khelpcenter/glossary/index.docbook -share/doc/HTML/sk/khelpcenter/glossary/kdeprintingglossary.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/userguide/about-desktop.docbook -share/doc/HTML/sk/khelpcenter/userguide/common -share/doc/HTML/sk/khelpcenter/userguide/first-impressions.docbook -share/doc/HTML/sk/khelpcenter/userguide/getting-started.docbook -share/doc/HTML/sk/khelpcenter/userguide/history.docbook -share/doc/HTML/sk/khelpcenter/userguide/index.cache.bz2 -share/doc/HTML/sk/khelpcenter/userguide/index.docbook -share/doc/HTML/sk/khelpcenter/userguide/installation.docbook -share/doc/HTML/sk/khelpcenter/userguide/intro.docbook -share/doc/HTML/sk/khelpcenter/userguide/kdeadmin-apps.docbook -share/doc/HTML/sk/khelpcenter/userguide/kdebase-apps.docbook -share/doc/HTML/sk/khelpcenter/userguide/kdeedu-apps.docbook -share/doc/HTML/sk/khelpcenter/userguide/kdegames-apps.docbook -share/doc/HTML/sk/khelpcenter/userguide/kdegraphics-apps.docbook -share/doc/HTML/sk/khelpcenter/userguide/kdemultimedia-apps.docbook -share/doc/HTML/sk/khelpcenter/userguide/kdenetwork-apps.docbook -share/doc/HTML/sk/khelpcenter/userguide/kdepim-apps.docbook -share/doc/HTML/sk/khelpcenter/userguide/kdetoys-apps.docbook -share/doc/HTML/sk/khelpcenter/userguide/kdeutils-apps.docbook -share/doc/HTML/sk/khelpcenter/userguide/koffice-apps.docbook -share/doc/HTML/sk/khelpcenter/userguide/more-help.docbook -share/doc/HTML/sk/khelpcenter/userguide/shortcuts.docbook -share/doc/HTML/sk/khelpcenter/userguide/staff.docbook -share/doc/HTML/sk/khelpcenter/userguide/ug-faq.docbook -share/doc/HTML/sk/khelpcenter/visualdict/common -share/doc/HTML/sk/khelpcenter/visualdict/index.cache.bz2 -share/doc/HTML/sk/khelpcenter/visualdict/index.docbook -share/doc/HTML/sk/khelpcenter/visualdict/pict1.png -share/doc/HTML/sk/khelpcenter/visualdict/pict10.png -share/doc/HTML/sk/khelpcenter/visualdict/pict11.png -share/doc/HTML/sk/khelpcenter/visualdict/pict12.png -share/doc/HTML/sk/khelpcenter/visualdict/pict13.png -share/doc/HTML/sk/khelpcenter/visualdict/pict14.png -share/doc/HTML/sk/khelpcenter/visualdict/pict15.png -share/doc/HTML/sk/khelpcenter/visualdict/pict16.png -share/doc/HTML/sk/khelpcenter/visualdict/pict17.png -share/doc/HTML/sk/khelpcenter/visualdict/pict18.png -share/doc/HTML/sk/khelpcenter/visualdict/pict19.png -share/doc/HTML/sk/khelpcenter/visualdict/pict2.png -share/doc/HTML/sk/khelpcenter/visualdict/pict20.png -share/doc/HTML/sk/khelpcenter/visualdict/pict3.png -share/doc/HTML/sk/khelpcenter/visualdict/pict4.png -share/doc/HTML/sk/khelpcenter/visualdict/pict5.png -share/doc/HTML/sk/khelpcenter/visualdict/pict7.png -share/doc/HTML/sk/khelpcenter/visualdict/pict9.png -share/doc/HTML/sk/khelpcenter/welcome.docbook -share/doc/HTML/sk/khelpcenter/whatiskde.docbook -share/doc/HTML/sk/kicker-applets/common -share/doc/HTML/sk/kicker-applets/index.cache.bz2 -share/doc/HTML/sk/kicker-applets/index.docbook -share/doc/HTML/sk/kicker-applets/kolourpicker.docbook -share/doc/HTML/sk/kicker-applets/ktimemon.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/kicker/screenshot_left.png -share/doc/HTML/sk/kicker/screenshot_right.png -share/doc/HTML/sk/kinfocenter/blockdevices/common -share/doc/HTML/sk/kinfocenter/blockdevices/index.cache.bz2 -share/doc/HTML/sk/kinfocenter/blockdevices/index.docbook -share/doc/HTML/sk/kinfocenter/common -share/doc/HTML/sk/kinfocenter/devices/common -share/doc/HTML/sk/kinfocenter/devices/index.cache.bz2 -share/doc/HTML/sk/kinfocenter/devices/index.docbook -share/doc/HTML/sk/kinfocenter/dma/common -share/doc/HTML/sk/kinfocenter/dma/index.cache.bz2 -share/doc/HTML/sk/kinfocenter/dma/index.docbook -share/doc/HTML/sk/kinfocenter/index.cache.bz2 -share/doc/HTML/sk/kinfocenter/index.docbook -share/doc/HTML/sk/kinfocenter/interrupts/common -share/doc/HTML/sk/kinfocenter/interrupts/index.cache.bz2 -share/doc/HTML/sk/kinfocenter/interrupts/index.docbook -share/doc/HTML/sk/kinfocenter/ioports/common -share/doc/HTML/sk/kinfocenter/ioports/index.cache.bz2 -share/doc/HTML/sk/kinfocenter/ioports/index.docbook -share/doc/HTML/sk/kinfocenter/memory/common -share/doc/HTML/sk/kinfocenter/memory/index.cache.bz2 -share/doc/HTML/sk/kinfocenter/memory/index.docbook -share/doc/HTML/sk/kinfocenter/nics/common -share/doc/HTML/sk/kinfocenter/nics/index.cache.bz2 -share/doc/HTML/sk/kinfocenter/nics/index.docbook -share/doc/HTML/sk/kinfocenter/partitions/common -share/doc/HTML/sk/kinfocenter/partitions/index.cache.bz2 -share/doc/HTML/sk/kinfocenter/partitions/index.docbook -share/doc/HTML/sk/kinfocenter/pci/common -share/doc/HTML/sk/kinfocenter/pci/index.cache.bz2 -share/doc/HTML/sk/kinfocenter/pci/index.docbook -share/doc/HTML/sk/kinfocenter/pcmcia/common -share/doc/HTML/sk/kinfocenter/pcmcia/index.cache.bz2 -share/doc/HTML/sk/kinfocenter/pcmcia/index.docbook -share/doc/HTML/sk/kinfocenter/processor/common -share/doc/HTML/sk/kinfocenter/processor/index.cache.bz2 -share/doc/HTML/sk/kinfocenter/processor/index.docbook -share/doc/HTML/sk/kinfocenter/protocols/common -share/doc/HTML/sk/kinfocenter/protocols/index.cache.bz2 -share/doc/HTML/sk/kinfocenter/protocols/index.docbook -share/doc/HTML/sk/kinfocenter/samba/common -share/doc/HTML/sk/kinfocenter/samba/index.cache.bz2 -share/doc/HTML/sk/kinfocenter/samba/index.docbook -share/doc/HTML/sk/kinfocenter/scsi/common -share/doc/HTML/sk/kinfocenter/scsi/index.cache.bz2 -share/doc/HTML/sk/kinfocenter/scsi/index.docbook -share/doc/HTML/sk/kinfocenter/sound/common -share/doc/HTML/sk/kinfocenter/sound/index.cache.bz2 -share/doc/HTML/sk/kinfocenter/sound/index.docbook -share/doc/HTML/sk/kinfocenter/usb/common -share/doc/HTML/sk/kinfocenter/usb/index.cache.bz2 -share/doc/HTML/sk/kinfocenter/usb/index.docbook -share/doc/HTML/sk/kinfocenter/xserver/common -share/doc/HTML/sk/kinfocenter/xserver/index.cache.bz2 -share/doc/HTML/sk/kinfocenter/xserver/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/cgi.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/fish.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/mac.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/print.docbook -share/doc/HTML/sk/kioslave/rlan.docbook -share/doc/HTML/sk/kioslave/rlogin.docbook -share/doc/HTML/sk/kioslave/sftp.docbook -share/doc/HTML/sk/kioslave/smb.docbook -share/doc/HTML/sk/kioslave/smtp.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/kioslave/webdav.docbook -share/doc/HTML/sk/kioslave/webdavs.docbook -share/doc/HTML/sk/kjumpingcube/common -share/doc/HTML/sk/kjumpingcube/index.cache.bz2 -share/doc/HTML/sk/kjumpingcube/index.docbook -share/doc/HTML/sk/klickety/common -share/doc/HTML/sk/klickety/index.cache.bz2 -share/doc/HTML/sk/klickety/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/kmathtool/common -share/doc/HTML/sk/kmathtool/index.cache.bz2 -share/doc/HTML/sk/kmathtool/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/kmines/common -share/doc/HTML/sk/kmines/index.cache.bz2 -share/doc/HTML/sk/kmines/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/kmplot/commands.docbook -share/doc/HTML/sk/kmplot/common -share/doc/HTML/sk/kmplot/credits.docbook -share/doc/HTML/sk/kmplot/developer.docbook -share/doc/HTML/sk/kmplot/index.cache.bz2 -share/doc/HTML/sk/kmplot/index.docbook -share/doc/HTML/sk/kmplot/install.docbook -share/doc/HTML/sk/kmplot/introduction.docbook -share/doc/HTML/sk/kmplot/menu.docbook -share/doc/HTML/sk/kmplot/using.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/kompare/common -share/doc/HTML/sk/kompare/index.cache.bz2 -share/doc/HTML/sk/kompare/index.docbook -share/doc/HTML/sk/konq-plugins/babel/common -share/doc/HTML/sk/konq-plugins/babel/index.cache.bz2 -share/doc/HTML/sk/konq-plugins/babel/index.docbook -share/doc/HTML/sk/konq-plugins/common -share/doc/HTML/sk/konq-plugins/crashes/common -share/doc/HTML/sk/konq-plugins/crashes/index.cache.bz2 -share/doc/HTML/sk/konq-plugins/crashes/index.docbook -share/doc/HTML/sk/konq-plugins/dirfilter/common -share/doc/HTML/sk/konq-plugins/dirfilter/index.cache.bz2 -share/doc/HTML/sk/konq-plugins/dirfilter/index.docbook -share/doc/HTML/sk/konq-plugins/domtreeviewer/common -share/doc/HTML/sk/konq-plugins/domtreeviewer/index.cache.bz2 -share/doc/HTML/sk/konq-plugins/domtreeviewer/index.docbook -share/doc/HTML/sk/konq-plugins/imgallery/common -share/doc/HTML/sk/konq-plugins/imgallery/index.cache.bz2 -share/doc/HTML/sk/konq-plugins/imgallery/index.docbook -share/doc/HTML/sk/konq-plugins/index.cache.bz2 -share/doc/HTML/sk/konq-plugins/index.docbook -share/doc/HTML/sk/konq-plugins/khtmlsettings/common -share/doc/HTML/sk/konq-plugins/khtmlsettings/index.cache.bz2 -share/doc/HTML/sk/konq-plugins/khtmlsettings/index.docbook -share/doc/HTML/sk/konq-plugins/kuick/common -share/doc/HTML/sk/konq-plugins/kuick/index.cache.bz2 -share/doc/HTML/sk/konq-plugins/kuick/index.docbook -share/doc/HTML/sk/konq-plugins/mediaplayer/common -share/doc/HTML/sk/konq-plugins/mediaplayer/index.cache.bz2 -share/doc/HTML/sk/konq-plugins/mediaplayer/index.docbook -share/doc/HTML/sk/konq-plugins/smbmounter/common -share/doc/HTML/sk/konq-plugins/smbmounter/index.cache.bz2 -share/doc/HTML/sk/konq-plugins/smbmounter/index.docbook -share/doc/HTML/sk/konq-plugins/uachanger/common -share/doc/HTML/sk/konq-plugins/uachanger/index.cache.bz2 -share/doc/HTML/sk/konq-plugins/uachanger/index.docbook -share/doc/HTML/sk/konq-plugins/validators/common -share/doc/HTML/sk/konq-plugins/validators/index.cache.bz2 -share/doc/HTML/sk/konq-plugins/validators/index.docbook -share/doc/HTML/sk/konq-plugins/webarchiver/common -share/doc/HTML/sk/konq-plugins/webarchiver/index.cache.bz2 -share/doc/HTML/sk/konq-plugins/webarchiver/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/konsole.png -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/kpager/screenshot.png -share/doc/HTML/sk/kpager/settings.png -share/doc/HTML/sk/kpercentage/commands.docbook -share/doc/HTML/sk/kpercentage/common -share/doc/HTML/sk/kpercentage/credits.docbook -share/doc/HTML/sk/kpercentage/devel.docbook -share/doc/HTML/sk/kpercentage/faq.docbook -share/doc/HTML/sk/kpercentage/index.cache.bz2 -share/doc/HTML/sk/kpercentage/index.docbook -share/doc/HTML/sk/kpercentage/install.docbook -share/doc/HTML/sk/kpercentage/introduction.docbook -share/doc/HTML/sk/kpercentage/using.docbook -share/doc/HTML/sk/kreversi/common -share/doc/HTML/sk/kreversi/index.cache.bz2 -share/doc/HTML/sk/kreversi/index.docbook -share/doc/HTML/sk/kreversi/kreversi1.png -share/doc/HTML/sk/krfb/common -share/doc/HTML/sk/krfb/index.cache.bz2 -share/doc/HTML/sk/krfb/index.docbook -share/doc/HTML/sk/kruler/common -share/doc/HTML/sk/kruler/index.cache.bz2 -share/doc/HTML/sk/kruler/index.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/ksim/common -share/doc/HTML/sk/ksim/index.cache.bz2 -share/doc/HTML/sk/ksim/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/kspell/common -share/doc/HTML/sk/kspell/index.cache.bz2 -share/doc/HTML/sk/kspell/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/ktimer/common -share/doc/HTML/sk/ktimer/index.cache.bz2 -share/doc/HTML/sk/ktimer/index.docbook -share/doc/HTML/sk/ktron/common -share/doc/HTML/sk/ktron/index.cache.bz2 -share/doc/HTML/sk/ktron/index.docbook -share/doc/HTML/sk/kweather/common -share/doc/HTML/sk/kweather/index.cache.bz2 -share/doc/HTML/sk/kweather/index.docbook -share/doc/HTML/sk/kwin4/common -share/doc/HTML/sk/kwin4/index.cache.bz2 -share/doc/HTML/sk/kwin4/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/lskat/common -share/doc/HTML/sk/lskat/index.cache.bz2 -share/doc/HTML/sk/lskat/index.docbook -share/doc/HTML/sk/umbrello/asf.xmi -share/doc/HTML/sk/umbrello/authors.docbook -share/doc/HTML/sk/umbrello/code_import_and_generation.docbook -share/doc/HTML/sk/umbrello/faq.docbook -share/doc/HTML/sk/umbrello/installation.docbook -share/doc/HTML/sk/umbrello/introduction.docbook -share/doc/HTML/sk/umbrello/menu_reference.docbook -share/doc/HTML/sk/umbrello/other_features.docbook -share/doc/HTML/sk/umbrello/pics/activity-diagram.png -share/doc/HTML/sk/umbrello/pics/add-remove-languages.png -share/doc/HTML/sk/umbrello/pics/aggregation.png -share/doc/HTML/sk/umbrello/pics/association.png -share/doc/HTML/sk/umbrello/pics/class-diagram.png -share/doc/HTML/sk/umbrello/pics/class.png -share/doc/HTML/sk/umbrello/pics/code-import.png -share/doc/HTML/sk/umbrello/pics/collaboration-diagram.png -share/doc/HTML/sk/umbrello/pics/composition.png -share/doc/HTML/sk/umbrello/pics/folders.png -share/doc/HTML/sk/umbrello/pics/generalization.png -share/doc/HTML/sk/umbrello/pics/generation-options.png -share/doc/HTML/sk/umbrello/pics/sequence-diagram.png -share/doc/HTML/sk/umbrello/pics/state-diagram.png -share/doc/HTML/sk/umbrello/pics/umbrello-main-screen.png -share/doc/HTML/sk/umbrello/pics/umbrello-ui-clean.png -share/doc/HTML/sk/umbrello/pics/umbrello-ui.png -share/doc/HTML/sk/umbrello/pics/use-case-diagram.png -share/doc/HTML/sk/umbrello/screen-shots.xmi -share/doc/HTML/sk/umbrello/uml_basics.docbook -share/doc/HTML/sk/umbrello/working_with_umbrello.docbook -share/locale/sk/LC_MESSAGES/akregator_konqplugin.mo -share/locale/sk/LC_MESSAGES/alsaplayerui.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/ark_plugin.mo -share/locale/sk/LC_MESSAGES/artsbuilder.mo -share/locale/sk/LC_MESSAGES/artscontrol.mo -share/locale/sk/LC_MESSAGES/artsmodules.mo -share/locale/sk/LC_MESSAGES/atlantik.mo -share/locale/sk/LC_MESSAGES/atlantikdesigner.mo -share/locale/sk/LC_MESSAGES/audiorename_plugin.mo -share/locale/sk/LC_MESSAGES/autorefresh.mo -share/locale/sk/LC_MESSAGES/babelfish.mo -share/locale/sk/LC_MESSAGES/cervisia.mo -share/locale/sk/LC_MESSAGES/charlatanui.mo -share/locale/sk/LC_MESSAGES/childpanelextension.mo -share/locale/sk/LC_MESSAGES/clockapplet.mo -share/locale/sk/LC_MESSAGES/crashesplugin.mo -share/locale/sk/LC_MESSAGES/cupsdconf.mo -share/locale/sk/LC_MESSAGES/cvsservice.mo -share/locale/sk/LC_MESSAGES/dcoprss.mo -share/locale/sk/LC_MESSAGES/devicesapplet.mo -share/locale/sk/LC_MESSAGES/dirfilterplugin.mo -share/locale/sk/LC_MESSAGES/display.mo -share/locale/sk/LC_MESSAGES/dockbarextension.mo -share/locale/sk/LC_MESSAGES/domtreeviewer.mo -share/locale/sk/LC_MESSAGES/drkonqi.mo -share/locale/sk/LC_MESSAGES/dub.mo -share/locale/sk/LC_MESSAGES/extensionproxy.mo -share/locale/sk/LC_MESSAGES/ffrs.mo -share/locale/sk/LC_MESSAGES/filetypes.mo -share/locale/sk/LC_MESSAGES/fontinst.mo -share/locale/sk/LC_MESSAGES/fsview.mo -share/locale/sk/LC_MESSAGES/htmlsearch.mo -share/locale/sk/LC_MESSAGES/imagerename_plugin.mo -share/locale/sk/LC_MESSAGES/imgalleryplugin.mo -share/locale/sk/LC_MESSAGES/irkick.mo -share/locale/sk/LC_MESSAGES/jefferson.mo -share/locale/sk/LC_MESSAGES/joystick.mo -share/locale/sk/LC_MESSAGES/juk.mo -share/locale/sk/LC_MESSAGES/kabc2mutt.mo -share/locale/sk/LC_MESSAGES/kabc_dir.mo -share/locale/sk/LC_MESSAGES/kabc_file.mo -share/locale/sk/LC_MESSAGES/kabc_ldap.mo -share/locale/sk/LC_MESSAGES/kabc_ldapkio.mo -share/locale/sk/LC_MESSAGES/kabc_net.mo -share/locale/sk/LC_MESSAGES/kabc_slox.mo -share/locale/sk/LC_MESSAGES/kabc_sql.mo -share/locale/sk/LC_MESSAGES/kabcformat_binary.mo -share/locale/sk/LC_MESSAGES/kaboodle.mo -share/locale/sk/LC_MESSAGES/kaccess.mo -share/locale/sk/LC_MESSAGES/kaddressbook.mo -share/locale/sk/LC_MESSAGES/kalarm.mo -share/locale/sk/LC_MESSAGES/kalzium.mo -share/locale/sk/LC_MESSAGES/kandy.mo -share/locale/sk/LC_MESSAGES/kappfinder.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/kate.mo -share/locale/sk/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/sk/LC_MESSAGES/katedefaultproject.mo -share/locale/sk/LC_MESSAGES/katefiletemplates.mo -share/locale/sk/LC_MESSAGES/katefll_initplugin.mo -share/locale/sk/LC_MESSAGES/katefll_plugin.mo -share/locale/sk/LC_MESSAGES/katehelloworld.mo -share/locale/sk/LC_MESSAGES/katehtmltools.mo -share/locale/sk/LC_MESSAGES/kateinsertcommand.mo -share/locale/sk/LC_MESSAGES/katekjswrapper.mo -share/locale/sk/LC_MESSAGES/katekttsd.mo -share/locale/sk/LC_MESSAGES/katemake.mo -share/locale/sk/LC_MESSAGES/katemodeline.mo -share/locale/sk/LC_MESSAGES/kateopenheader.mo -share/locale/sk/LC_MESSAGES/katepart.mo -share/locale/sk/LC_MESSAGES/katepartkttsd.mo -share/locale/sk/LC_MESSAGES/kateprojectmanager.mo -share/locale/sk/LC_MESSAGES/katepybrowse.mo -share/locale/sk/LC_MESSAGES/katesnippets.mo -share/locale/sk/LC_MESSAGES/katespell.mo -share/locale/sk/LC_MESSAGES/katetabbarextension.mo -share/locale/sk/LC_MESSAGES/katetextfilter.mo -share/locale/sk/LC_MESSAGES/katexmlcheck.mo -share/locale/sk/LC_MESSAGES/katexmltools.mo -share/locale/sk/LC_MESSAGES/katomic.mo -share/locale/sk/LC_MESSAGES/kaudiocreator.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/kbinaryclock.mo -share/locale/sk/LC_MESSAGES/kblackbox.mo -share/locale/sk/LC_MESSAGES/kbounce.mo -share/locale/sk/LC_MESSAGES/kbruch.mo -share/locale/sk/LC_MESSAGES/kbugbuster.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/kcm_krfb.mo -share/locale/sk/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/sk/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/sk/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/sk/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/sk/LC_MESSAGES/kcmaccess.mo -share/locale/sk/LC_MESSAGES/kcmaccessibility.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/kcmcddb.mo -share/locale/sk/LC_MESSAGES/kcmcgi.mo -share/locale/sk/LC_MESSAGES/kcmcolors.mo -share/locale/sk/LC_MESSAGES/kcmcomponentchooser.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/kcmkabconfig.mo -share/locale/sk/LC_MESSAGES/kcmkamera.mo -share/locale/sk/LC_MESSAGES/kcmkclock.mo -share/locale/sk/LC_MESSAGES/kcmkded.mo -share/locale/sk/LC_MESSAGES/kcmkdnssd.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/kcmkontactnt.mo -share/locale/sk/LC_MESSAGES/kcmktalkd.mo -share/locale/sk/LC_MESSAGES/kcmkuick.mo -share/locale/sk/LC_MESSAGES/kcmkurifilt.mo -share/locale/sk/LC_MESSAGES/kcmkvaio.mo -share/locale/sk/LC_MESSAGES/kcmkwallet.mo -share/locale/sk/LC_MESSAGES/kcmkwindecoration.mo -share/locale/sk/LC_MESSAGES/kcmkwinrules.mo -share/locale/sk/LC_MESSAGES/kcmkwintheme.mo -share/locale/sk/LC_MESSAGES/kcmkwm.mo -share/locale/sk/LC_MESSAGES/kcmkxmlrpcd.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/kcmlirc.mo -share/locale/sk/LC_MESSAGES/kcmlocale.mo -share/locale/sk/LC_MESSAGES/kcmmediacontrol.mo -share/locale/sk/LC_MESSAGES/kcmmidi.mo -share/locale/sk/LC_MESSAGES/kcmnic.mo -share/locale/sk/LC_MESSAGES/kcmnotify.mo -share/locale/sk/LC_MESSAGES/kcmperformance.mo -share/locale/sk/LC_MESSAGES/kcmprintmgr.mo -share/locale/sk/LC_MESSAGES/kcmsamba.mo -share/locale/sk/LC_MESSAGES/kcmscreensaver.mo -share/locale/sk/LC_MESSAGES/kcmshell.mo -share/locale/sk/LC_MESSAGES/kcmsmartcard.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/kcmthinkpad.mo -share/locale/sk/LC_MESSAGES/kcmusb.mo -share/locale/sk/LC_MESSAGES/kcmview1394.mo -share/locale/sk/LC_MESSAGES/kcmvim.mo -share/locale/sk/LC_MESSAGES/kcmwifi.mo -share/locale/sk/LC_MESSAGES/kcmxinerama.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/kdat.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/kdelibs_colors.mo -share/locale/sk/LC_MESSAGES/kdelirc.mo -share/locale/sk/LC_MESSAGES/kdepasswd.mo -share/locale/sk/LC_MESSAGES/kdepimwizards.mo -share/locale/sk/LC_MESSAGES/kdeprint.mo -share/locale/sk/LC_MESSAGES/kdeprint_part.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/kdevdesigner.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/kdgantt.mo -share/locale/sk/LC_MESSAGES/kdialog.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/keduca.mo -share/locale/sk/LC_MESSAGES/kenolaba.mo -share/locale/sk/LC_MESSAGES/kfax.mo -share/locale/sk/LC_MESSAGES/kfifteenapplet.mo -share/locale/sk/LC_MESSAGES/kfile_au.mo -share/locale/sk/LC_MESSAGES/kfile_avi.mo -share/locale/sk/LC_MESSAGES/kfile_bmp.mo -share/locale/sk/LC_MESSAGES/kfile_cert.mo -share/locale/sk/LC_MESSAGES/kfile_cpp.mo -share/locale/sk/LC_MESSAGES/kfile_deb.mo -share/locale/sk/LC_MESSAGES/kfile_desktop.mo -share/locale/sk/LC_MESSAGES/kfile_diff.mo -share/locale/sk/LC_MESSAGES/kfile_drgeo.mo -share/locale/sk/LC_MESSAGES/kfile_dvi.mo -share/locale/sk/LC_MESSAGES/kfile_exr.mo -share/locale/sk/LC_MESSAGES/kfile_flac.mo -share/locale/sk/LC_MESSAGES/kfile_folder.mo -share/locale/sk/LC_MESSAGES/kfile_font.mo -share/locale/sk/LC_MESSAGES/kfile_gif.mo -share/locale/sk/LC_MESSAGES/kfile_html.mo -share/locale/sk/LC_MESSAGES/kfile_ico.mo -share/locale/sk/LC_MESSAGES/kfile_jpeg.mo -share/locale/sk/LC_MESSAGES/kfile_kig.mo -share/locale/sk/LC_MESSAGES/kfile_lnk.mo -share/locale/sk/LC_MESSAGES/kfile_m3u.mo -share/locale/sk/LC_MESSAGES/kfile_mhtml.mo -share/locale/sk/LC_MESSAGES/kfile_mp3.mo -share/locale/sk/LC_MESSAGES/kfile_mpc.mo -share/locale/sk/LC_MESSAGES/kfile_ogg.mo -share/locale/sk/LC_MESSAGES/kfile_palm.mo -share/locale/sk/LC_MESSAGES/kfile_pcx.mo -share/locale/sk/LC_MESSAGES/kfile_pdf.mo -share/locale/sk/LC_MESSAGES/kfile_png.mo -share/locale/sk/LC_MESSAGES/kfile_pnm.mo -share/locale/sk/LC_MESSAGES/kfile_po.mo -share/locale/sk/LC_MESSAGES/kfile_ps.mo -share/locale/sk/LC_MESSAGES/kfile_rfc822.mo -share/locale/sk/LC_MESSAGES/kfile_rgb.mo -share/locale/sk/LC_MESSAGES/kfile_rpm.mo -share/locale/sk/LC_MESSAGES/kfile_sid.mo -share/locale/sk/LC_MESSAGES/kfile_tga.mo -share/locale/sk/LC_MESSAGES/kfile_tiff.mo -share/locale/sk/LC_MESSAGES/kfile_torrent.mo -share/locale/sk/LC_MESSAGES/kfile_ts.mo -share/locale/sk/LC_MESSAGES/kfile_txt.mo -share/locale/sk/LC_MESSAGES/kfile_vcf.mo -share/locale/sk/LC_MESSAGES/kfile_wav.mo -share/locale/sk/LC_MESSAGES/kfile_xbm.mo -share/locale/sk/LC_MESSAGES/kfile_xpm.mo -share/locale/sk/LC_MESSAGES/kfileaudiopreview.mo -share/locale/sk/LC_MESSAGES/kfindpart.mo -share/locale/sk/LC_MESSAGES/kfloppy.mo -share/locale/sk/LC_MESSAGES/kfmclient.mo -share/locale/sk/LC_MESSAGES/kfontinst.mo -share/locale/sk/LC_MESSAGES/kfouleggs.mo -share/locale/sk/LC_MESSAGES/kgamma.mo -share/locale/sk/LC_MESSAGES/kgantt.mo -share/locale/sk/LC_MESSAGES/kget.mo -share/locale/sk/LC_MESSAGES/kghostview.mo -share/locale/sk/LC_MESSAGES/kgoldrunner.mo -share/locale/sk/LC_MESSAGES/kgpg.mo -share/locale/sk/LC_MESSAGES/kgreet_classic.mo -share/locale/sk/LC_MESSAGES/kgreet_winbind.mo -share/locale/sk/LC_MESSAGES/khangman.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/khtmlkttsd.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/kig.mo -share/locale/sk/LC_MESSAGES/kinetd.mo -share/locale/sk/LC_MESSAGES/kio.mo -share/locale/sk/LC_MESSAGES/kio_audiocd.mo -share/locale/sk/LC_MESSAGES/kio_devices.mo -share/locale/sk/LC_MESSAGES/kio_finger.mo -share/locale/sk/LC_MESSAGES/kio_fish.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_ldap.mo -share/locale/sk/LC_MESSAGES/kio_mac.mo -share/locale/sk/LC_MESSAGES/kio_man.mo -share/locale/sk/LC_MESSAGES/kio_media.mo -share/locale/sk/LC_MESSAGES/kio_mobile.mo -share/locale/sk/LC_MESSAGES/kio_newimap4.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_print.mo -share/locale/sk/LC_MESSAGES/kio_remote.mo -share/locale/sk/LC_MESSAGES/kio_settings.mo -share/locale/sk/LC_MESSAGES/kio_sftp.mo -share/locale/sk/LC_MESSAGES/kio_sieve.mo -share/locale/sk/LC_MESSAGES/kio_smb.mo -share/locale/sk/LC_MESSAGES/kio_smtp.mo -share/locale/sk/LC_MESSAGES/kio_svn.mo -share/locale/sk/LC_MESSAGES/kio_system.mo -share/locale/sk/LC_MESSAGES/kio_trash.mo -share/locale/sk/LC_MESSAGES/kio_zeroconf.mo -share/locale/sk/LC_MESSAGES/kioexec.mo -share/locale/sk/LC_MESSAGES/kiten.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/klatin.mo -share/locale/sk/LC_MESSAGES/klegacyimport.mo -share/locale/sk/LC_MESSAGES/kleopatra.mo -share/locale/sk/LC_MESSAGES/klettres.mo -share/locale/sk/LC_MESSAGES/klickety.mo -share/locale/sk/LC_MESSAGES/klines.mo -share/locale/sk/LC_MESSAGES/klipper.mo -share/locale/sk/LC_MESSAGES/klock.mo -share/locale/sk/LC_MESSAGES/kmag.mo -share/locale/sk/LC_MESSAGES/kmahjongg.mo -share/locale/sk/LC_MESSAGES/kmail.mo -share/locale/sk/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/sk/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/sk/LC_MESSAGES/kmailcvt.mo -share/locale/sk/LC_MESSAGES/kmathapplet.mo -share/locale/sk/LC_MESSAGES/kmathtool.mo -share/locale/sk/LC_MESSAGES/kmcop.mo -share/locale/sk/LC_MESSAGES/kmenuapplet.mo -share/locale/sk/LC_MESSAGES/kmenuedit.mo -share/locale/sk/LC_MESSAGES/kmessedwords.mo -share/locale/sk/LC_MESSAGES/kmid.mo -share/locale/sk/LC_MESSAGES/kmilo_delli8k.mo -share/locale/sk/LC_MESSAGES/kmilo_generic.mo -share/locale/sk/LC_MESSAGES/kmilo_kvaio.mo -share/locale/sk/LC_MESSAGES/kmilo_powerbook.mo -share/locale/sk/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/sk/LC_MESSAGES/kmilod.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/kmobile.mo -share/locale/sk/LC_MESSAGES/kmoon.mo -share/locale/sk/LC_MESSAGES/kmousetool.mo -share/locale/sk/LC_MESSAGES/kmouth.mo -share/locale/sk/LC_MESSAGES/kmplot.mo -share/locale/sk/LC_MESSAGES/kmrml.mo -share/locale/sk/LC_MESSAGES/knetattach.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/kodo.mo -share/locale/sk/LC_MESSAGES/kolf.mo -share/locale/sk/LC_MESSAGES/kolourpaint.mo -share/locale/sk/LC_MESSAGES/kolourpicker.mo -share/locale/sk/LC_MESSAGES/kompare.mo -share/locale/sk/LC_MESSAGES/konnector_dummy.mo -share/locale/sk/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/sk/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/sk/LC_MESSAGES/konqsidebar_news.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/konsolekalendar.mo -share/locale/sk/LC_MESSAGES/kontact.mo -share/locale/sk/LC_MESSAGES/kooka.mo -share/locale/sk/LC_MESSAGES/kopete.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/kpartapp.mo -share/locale/sk/LC_MESSAGES/kpartsaver.mo -share/locale/sk/LC_MESSAGES/kpat.mo -share/locale/sk/LC_MESSAGES/kpdf.mo -share/locale/sk/LC_MESSAGES/kpercentage.mo -share/locale/sk/LC_MESSAGES/kpersonalizer.mo -share/locale/sk/LC_MESSAGES/kpf.mo -share/locale/sk/LC_MESSAGES/kpilot.mo -share/locale/sk/LC_MESSAGES/kpoker.mo -share/locale/sk/LC_MESSAGES/kpovmodeler.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/krandr.mo -share/locale/sk/LC_MESSAGES/krdb.mo -share/locale/sk/LC_MESSAGES/krdc.mo -share/locale/sk/LC_MESSAGES/kreadconfig.mo -share/locale/sk/LC_MESSAGES/krec.mo -share/locale/sk/LC_MESSAGES/kregexpeditor.mo -share/locale/sk/LC_MESSAGES/kres_exchange.mo -share/locale/sk/LC_MESSAGES/kres_remote.mo -share/locale/sk/LC_MESSAGES/kres_xmlrpc.mo -share/locale/sk/LC_MESSAGES/kreversi.mo -share/locale/sk/LC_MESSAGES/krfb.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/kscreensaver.mo -share/locale/sk/LC_MESSAGES/kshisen.mo -share/locale/sk/LC_MESSAGES/ksig.mo -share/locale/sk/LC_MESSAGES/ksim.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/ksplashthemes.mo -share/locale/sk/LC_MESSAGES/kstars.mo -share/locale/sk/LC_MESSAGES/kstart.mo -share/locale/sk/LC_MESSAGES/kstartperf.mo -share/locale/sk/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/sk/LC_MESSAGES/kstyle_phase_config.mo -share/locale/sk/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/sk/LC_MESSAGES/ksvgplugin.mo -share/locale/sk/LC_MESSAGES/ksync.mo -share/locale/sk/LC_MESSAGES/ksysguard.mo -share/locale/sk/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/sk/LC_MESSAGES/ksystraycmd.mo -share/locale/sk/LC_MESSAGES/ksysv.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/ktexteditor_autobookmarker.mo -share/locale/sk/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/sk/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/sk/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/sk/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/sk/LC_MESSAGES/kthememanager.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/ktnef.mo -share/locale/sk/LC_MESSAGES/ktouch.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/kuick_plugin.mo -share/locale/sk/LC_MESSAGES/kuickshow.mo -share/locale/sk/LC_MESSAGES/kuiviewer.mo -share/locale/sk/LC_MESSAGES/kuser.mo -share/locale/sk/LC_MESSAGES/kverbos.mo -share/locale/sk/LC_MESSAGES/kview.mo -share/locale/sk/LC_MESSAGES/kview_scale.mo -share/locale/sk/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/sk/LC_MESSAGES/kviewcanvas.mo -share/locale/sk/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/sk/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/sk/LC_MESSAGES/kviewscannerplugin.mo -share/locale/sk/LC_MESSAGES/kviewshell.mo -share/locale/sk/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/sk/LC_MESSAGES/kviewviewer.mo -share/locale/sk/LC_MESSAGES/kvoctrain.mo -share/locale/sk/LC_MESSAGES/kwalletmanager.mo -share/locale/sk/LC_MESSAGES/kwatchgnupg.mo -share/locale/sk/LC_MESSAGES/kweather.mo -share/locale/sk/LC_MESSAGES/kwifimanager.mo -share/locale/sk/LC_MESSAGES/kwin.mo -share/locale/sk/LC_MESSAGES/kwin4.mo -share/locale/sk/LC_MESSAGES/kwin_art_clients.mo -share/locale/sk/LC_MESSAGES/kwin_clients.mo -share/locale/sk/LC_MESSAGES/kwireless.mo -share/locale/sk/LC_MESSAGES/kworldclock.mo -share/locale/sk/LC_MESSAGES/kwriteconfig.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/libcalendarresources.mo -share/locale/sk/LC_MESSAGES/libdmctl.mo -share/locale/sk/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/sk/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/sk/LC_MESSAGES/libkcal.mo -share/locale/sk/LC_MESSAGES/libkcalsystem.mo -share/locale/sk/LC_MESSAGES/libkcddb.mo -share/locale/sk/LC_MESSAGES/libkdegames.mo -share/locale/sk/LC_MESSAGES/libkdehighscores.mo -share/locale/sk/LC_MESSAGES/libkdenetwork.mo -share/locale/sk/LC_MESSAGES/libkdepim.mo -share/locale/sk/LC_MESSAGES/libkicker.mo -share/locale/sk/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/sk/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/sk/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/sk/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/sk/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/sk/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/sk/LC_MESSAGES/libkickermenu_tom.mo -share/locale/sk/LC_MESSAGES/libkleopatra.mo -share/locale/sk/LC_MESSAGES/libkonq.mo -share/locale/sk/LC_MESSAGES/libkpimexchange.mo -share/locale/sk/LC_MESSAGES/libkscan.mo -share/locale/sk/LC_MESSAGES/libkscreensaver.mo -share/locale/sk/LC_MESSAGES/libksieve.mo -share/locale/sk/LC_MESSAGES/libksirtet.mo -share/locale/sk/LC_MESSAGES/libksync.mo -share/locale/sk/LC_MESSAGES/libtaskbar.mo -share/locale/sk/LC_MESSAGES/libtaskmanager.mo -share/locale/sk/LC_MESSAGES/lockout.mo -share/locale/sk/LC_MESSAGES/lskat.mo -share/locale/sk/LC_MESSAGES/lyrics.mo -share/locale/sk/LC_MESSAGES/mediaapplet.mo -share/locale/sk/LC_MESSAGES/mediacontrol.mo -share/locale/sk/LC_MESSAGES/minitoolsplugin.mo -share/locale/sk/LC_MESSAGES/naughtyapplet.mo -share/locale/sk/LC_MESSAGES/nexscope.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/pitchablespeed.mo -share/locale/sk/LC_MESSAGES/ppdtranslations.mo -share/locale/sk/LC_MESSAGES/privacy.mo -share/locale/sk/LC_MESSAGES/qeditor.mo -share/locale/sk/LC_MESSAGES/quanta.mo -share/locale/sk/LC_MESSAGES/quicklauncher.mo -share/locale/sk/LC_MESSAGES/rellinks.mo -share/locale/sk/LC_MESSAGES/searchbarplugin.mo -share/locale/sk/LC_MESSAGES/secpolicy.mo -share/locale/sk/LC_MESSAGES/spy.mo -share/locale/sk/LC_MESSAGES/synaescope.mo -share/locale/sk/LC_MESSAGES/taskbarextension.mo -share/locale/sk/LC_MESSAGES/timezones.mo -share/locale/sk/LC_MESSAGES/tippecanoe.mo -share/locale/sk/LC_MESSAGES/trashapplet.mo -share/locale/sk/LC_MESSAGES/tyler.mo -share/locale/sk/LC_MESSAGES/uachangerplugin.mo -share/locale/sk/LC_MESSAGES/umbrello.mo -share/locale/sk/LC_MESSAGES/useraccount.mo -share/locale/sk/LC_MESSAGES/validatorsplugin.mo -share/locale/sk/LC_MESSAGES/vimpart.mo -share/locale/sk/LC_MESSAGES/wakeup.mo -share/locale/sk/LC_MESSAGES/wavecapture.mo -share/locale/sk/LC_MESSAGES/webarchiver.mo -share/locale/sk/charset -share/locale/sk/entry.desktop -share/locale/sk/flag.png -@dirrm share/doc/HTML/sk/umbrello/pics -@dirrm share/doc/HTML/sk/umbrello -@dirrm share/doc/HTML/sk/lskat -@dirrm share/doc/HTML/sk/kworldclock -@dirrm share/doc/HTML/sk/kwin4 -@dirrm share/doc/HTML/sk/kweather -@dirrm share/doc/HTML/sk/ktron -@dirrm share/doc/HTML/sk/ktimer -@dirrm share/doc/HTML/sk/kteatime -@dirrm share/doc/HTML/sk/ksysguard -@dirrm share/doc/HTML/sk/kspell -@dirrm share/doc/HTML/sk/ksokoban -@dirrm share/doc/HTML/sk/ksnake -@dirrm share/doc/HTML/sk/ksirtet -@dirrm share/doc/HTML/sk/ksim -@dirrm share/doc/HTML/sk/kshisen -@dirrm share/doc/HTML/sk/ksame -@dirrm share/doc/HTML/sk/kruler -@dirrm share/doc/HTML/sk/krfb -@dirrm share/doc/HTML/sk/kreversi -@dirrm share/doc/HTML/sk/kpercentage -@dirrm share/doc/HTML/sk/kpager -@dirrm share/doc/HTML/sk/konsole -@dirrm share/doc/HTML/sk/konquest -@dirrm share/doc/HTML/sk/konqueror -@dirrm share/doc/HTML/sk/konq-plugins/webarchiver -@dirrm share/doc/HTML/sk/konq-plugins/validators -@dirrm share/doc/HTML/sk/konq-plugins/uachanger -@dirrm share/doc/HTML/sk/konq-plugins/smbmounter -@dirrm share/doc/HTML/sk/konq-plugins/mediaplayer -@dirrm share/doc/HTML/sk/konq-plugins/kuick -@dirrm share/doc/HTML/sk/konq-plugins/khtmlsettings -@dirrm share/doc/HTML/sk/konq-plugins/imgallery -@dirrm share/doc/HTML/sk/konq-plugins/domtreeviewer -@dirrm share/doc/HTML/sk/konq-plugins/dirfilter -@dirrm share/doc/HTML/sk/konq-plugins/crashes -@dirrm share/doc/HTML/sk/konq-plugins/babel -@dirrm share/doc/HTML/sk/konq-plugins -@dirrm share/doc/HTML/sk/kompare -@dirrm share/doc/HTML/sk/kodo -@dirrm share/doc/HTML/sk/kmplot -@dirrm share/doc/HTML/sk/kmoon -@dirrm share/doc/HTML/sk/kmines -@dirrm share/doc/HTML/sk/kmenuedit -@dirrm share/doc/HTML/sk/kmathtool -@dirrm share/doc/HTML/sk/klipper -@dirrm share/doc/HTML/sk/klines -@dirrm share/doc/HTML/sk/klickety -@dirrm share/doc/HTML/sk/kjumpingcube -@dirrm share/doc/HTML/sk/kioslave -@dirrm share/doc/HTML/sk/kinfocenter/xserver -@dirrm share/doc/HTML/sk/kinfocenter/usb -@dirrm share/doc/HTML/sk/kinfocenter/sound -@dirrm share/doc/HTML/sk/kinfocenter/scsi -@dirrm share/doc/HTML/sk/kinfocenter/samba -@dirrm share/doc/HTML/sk/kinfocenter/protocols -@dirrm share/doc/HTML/sk/kinfocenter/processor -@dirrm share/doc/HTML/sk/kinfocenter/pcmcia -@dirrm share/doc/HTML/sk/kinfocenter/pci -@dirrm share/doc/HTML/sk/kinfocenter/partitions -@dirrm share/doc/HTML/sk/kinfocenter/nics -@dirrm share/doc/HTML/sk/kinfocenter/memory -@dirrm share/doc/HTML/sk/kinfocenter/ioports -@dirrm share/doc/HTML/sk/kinfocenter/interrupts -@dirrm share/doc/HTML/sk/kinfocenter/dma -@dirrm share/doc/HTML/sk/kinfocenter/devices -@dirrm share/doc/HTML/sk/kinfocenter/blockdevices -@dirrm share/doc/HTML/sk/kinfocenter -@dirrm share/doc/HTML/sk/kicker-applets -@dirrm share/doc/HTML/sk/kicker -@dirrm share/doc/HTML/sk/khelpcenter/visualdict -@dirrm share/doc/HTML/sk/khelpcenter/userguide -@dirrm share/doc/HTML/sk/khelpcenter/quickstart -@dirrm share/doc/HTML/sk/khelpcenter/glossary -@dirrm share/doc/HTML/sk/khelpcenter/faq -@dirrm share/doc/HTML/sk/khelpcenter -@dirrm share/doc/HTML/sk/kfouleggs -@dirrm share/doc/HTML/sk/kfind -@dirrm share/doc/HTML/sk/kdvi -@dirrm share/doc/HTML/sk/kdm -@dirrm share/doc/HTML/sk/kdf -@dirrm share/doc/HTML/sk/kdesu -@dirrm share/doc/HTML/sk/kdeprint -@dirrm share/doc/HTML/sk/kdebugdialog -@dirrm share/doc/HTML/sk/kcontrol/windowmanagement -@dirrm share/doc/HTML/sk/kcontrol/useragent -@dirrm share/doc/HTML/sk/kcontrol/spellchecking -@dirrm share/doc/HTML/sk/kcontrol/smb -@dirrm share/doc/HTML/sk/kcontrol/screensaver -@dirrm share/doc/HTML/sk/kcontrol/proxy -@dirrm share/doc/HTML/sk/kcontrol/powerctrl -@dirrm share/doc/HTML/sk/kcontrol/passwords -@dirrm share/doc/HTML/sk/kcontrol/panel -@dirrm share/doc/HTML/sk/kcontrol/netpref -@dirrm share/doc/HTML/sk/kcontrol/mouse -@dirrm share/doc/HTML/sk/kcontrol/laptop -@dirrm share/doc/HTML/sk/kcontrol/language -@dirrm share/doc/HTML/sk/kcontrol/lanbrowser -@dirrm share/doc/HTML/sk/kcontrol/kxmlrpcd -@dirrm share/doc/HTML/sk/kcontrol/kwindecoration -@dirrm share/doc/HTML/sk/kcontrol/kmixcfg -@dirrm share/doc/HTML/sk/kcontrol/khtml -@dirrm share/doc/HTML/sk/kcontrol/keys -@dirrm share/doc/HTML/sk/kcontrol/keyboard -@dirrm share/doc/HTML/sk/kcontrol/kdm -@dirrm share/doc/HTML/sk/kcontrol/kcmtaskbar -@dirrm share/doc/HTML/sk/kcontrol/kcmstyle -@dirrm share/doc/HTML/sk/kcontrol/kcmsmserver -@dirrm share/doc/HTML/sk/kcontrol/kcmnotify -@dirrm share/doc/HTML/sk/kcontrol/kcmlowbatwarn -@dirrm share/doc/HTML/sk/kcontrol/kcmlowbatcrit -@dirrm share/doc/HTML/sk/kcontrol/kcmlaunch -@dirrm share/doc/HTML/sk/kcontrol/kcmktalkd -@dirrm share/doc/HTML/sk/kcontrol/kcmkonsole -@dirrm share/doc/HTML/sk/kcontrol/kcmfontinst -@dirrm share/doc/HTML/sk/kcontrol/kcmcss -@dirrm share/doc/HTML/sk/kcontrol/kcmaccess -@dirrm share/doc/HTML/sk/kcontrol/kalarmd -@dirrm share/doc/HTML/sk/kcontrol/icons -@dirrm share/doc/HTML/sk/kcontrol/helpindex -@dirrm share/doc/HTML/sk/kcontrol/fonts -@dirrm share/doc/HTML/sk/kcontrol/filetypes -@dirrm share/doc/HTML/sk/kcontrol/filemanager -@dirrm share/doc/HTML/sk/kcontrol/energy -@dirrm share/doc/HTML/sk/kcontrol/email -@dirrm share/doc/HTML/sk/kcontrol/ebrowsing -@dirrm share/doc/HTML/sk/kcontrol/desktop -@dirrm share/doc/HTML/sk/kcontrol/crypto -@dirrm share/doc/HTML/sk/kcontrol/cookies -@dirrm share/doc/HTML/sk/kcontrol/colors -@dirrm share/doc/HTML/sk/kcontrol/clock -@dirrm share/doc/HTML/sk/kcontrol/cache -@dirrm share/doc/HTML/sk/kcontrol/bell -@dirrm share/doc/HTML/sk/kcontrol/background -@dirrm share/doc/HTML/sk/kcontrol/arts -@dirrm share/doc/HTML/sk/kcontrol -@dirrm share/doc/HTML/sk/kcoloredit -@dirrm share/doc/HTML/sk/kcharselect -@dirrm share/doc/HTML/sk/kbugbuster -@dirrm share/doc/HTML/sk/kbounce -@dirrm share/doc/HTML/sk/kblackbox -@dirrm share/doc/HTML/sk/kbattleship -@dirrm share/doc/HTML/sk/kbackgammon -@dirrm share/doc/HTML/sk/katomic -@dirrm share/doc/HTML/sk/kate-plugins -@dirrm share/doc/HTML/sk/kate -@dirrm share/doc/HTML/sk/kasteroids -@dirrm share/doc/HTML/sk/kamera -@dirrm share/doc/HTML/sk/kaddressbook -@dirrm share/doc/HTML/sk/kaboodle -@dirrm share/doc/HTML/sk/common -@dirrm share/doc/HTML/sk/atlantik -@dirrm share/doc/HTML/sk/amor -@dirrm share/apps/ktuberling/sounds/sk -@dirrm share/apps/ktuberling/sounds -@dirrm share/apps/ktuberling -@dirrm share/apps/klettres/sk/syllab -@dirrm share/apps/klettres/sk/alpha -@dirrm share/apps/klettres/sk -@dirrm share/apps/klettres diff --git a/misc/kde4-l10n-sl/Makefile b/misc/kde4-l10n-sl/Makefile deleted file mode 100644 index 9609a48ec4d3..000000000000 --- a/misc/kde4-l10n-sl/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-sl -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= sl- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Slovenian messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-sl/distinfo b/misc/kde4-l10n-sl/distinfo deleted file mode 100644 index c631d9c3682b..000000000000 --- a/misc/kde4-l10n-sl/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-sl-3.4.2.tar.bz2) = 0702b0cdcce4f0c9b835a140713fbd86 -SIZE (KDE/kde-i18n/kde-i18n-sl-3.4.2.tar.bz2) = 4306629 diff --git a/misc/kde4-l10n-sl/pkg-descr b/misc/kde4-l10n-sl/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-sl/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-sl/pkg-plist b/misc/kde4-l10n-sl/pkg-plist deleted file mode 100644 index c024c421527c..000000000000 --- a/misc/kde4-l10n-sl/pkg-plist +++ /dev/null @@ -1,1003 +0,0 @@ -share/apps/katepart/syntax/logohighlightstyle.sl.xml -share/apps/khangman/data/sl/animals.kvtml -share/apps/khangman/data/sl/easy.kvtml -share/apps/khangman/data/sl/hard.kvtml -share/apps/khangman/data/sl/medium.kvtml -share/apps/khangman/sl.txt -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/lasje.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/oko.wav -share/apps/ktuberling/sounds/sl/pingvin.wav -share/apps/ktuberling/sounds/sl/rog.wav -share/apps/ktuberling/sounds/sl/sal.wav -share/apps/ktuberling/sounds/sl/soncna_ocala.wav -share/apps/ktuberling/sounds/sl/uhan.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/znacka.wav -share/apps/kturtle/data/logokeywords.sl.xml -share/apps/kturtle/examples/sl/curly.logo -share/apps/kturtle/examples/sl/example1.logo -share/apps/kturtle/examples/sl/square.logo -share/apps/kturtle/examples/sl/triangle.logo -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/appheader.html -share/doc/HTML/sl/common/artistic-license.html -share/doc/HTML/sl/common/bottom-left.png -share/doc/HTML/sl/common/bottom-middle.png -share/doc/HTML/sl/common/bottom-right.png -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/docheadergears.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/doxygen.css -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/footer.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/grad.png -share/doc/HTML/sl/common/header.html -share/doc/HTML/sl/common/headerbg.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/kde-web.css -share/doc/HTML/sl/common/kde_logo.png -share/doc/HTML/sl/common/kde_logo_bg.png -share/doc/HTML/sl/common/kmenu.png -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.png -share/doc/HTML/sl/common/mainfooter.html -share/doc/HTML/sl/common/mainheader.html -share/doc/HTML/sl/common/qpl-license.html -share/doc/HTML/sl/common/shadow.png -share/doc/HTML/sl/common/top-left.png -share/doc/HTML/sl/common/top-middle.png -share/doc/HTML/sl/common/top-right-konqueror.png -share/doc/HTML/sl/common/web-docbottom.png -share/doc/HTML/sl/common/web-doctop.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/kcontrol/arts/common -share/doc/HTML/sl/kcontrol/arts/index.cache.bz2 -share/doc/HTML/sl/kcontrol/arts/index.docbook -share/doc/HTML/sl/kcontrol/arts/midi.docbook -share/doc/HTML/sl/kcontrol/bell/common -share/doc/HTML/sl/kcontrol/bell/index.cache.bz2 -share/doc/HTML/sl/kcontrol/bell/index.docbook -share/doc/HTML/sl/kcontrol/clock/common -share/doc/HTML/sl/kcontrol/clock/index.cache.bz2 -share/doc/HTML/sl/kcontrol/clock/index.docbook -share/doc/HTML/sl/kcontrol/common -share/doc/HTML/sl/kcontrol/cookies/common -share/doc/HTML/sl/kcontrol/cookies/index.cache.bz2 -share/doc/HTML/sl/kcontrol/cookies/index.docbook -share/doc/HTML/sl/kcontrol/crypto/common -share/doc/HTML/sl/kcontrol/crypto/index.cache.bz2 -share/doc/HTML/sl/kcontrol/crypto/index.docbook -share/doc/HTML/sl/kcontrol/ebrowsing/common -share/doc/HTML/sl/kcontrol/ebrowsing/index.cache.bz2 -share/doc/HTML/sl/kcontrol/ebrowsing/index.docbook -share/doc/HTML/sl/kcontrol/filetypes/common -share/doc/HTML/sl/kcontrol/filetypes/index.cache.bz2 -share/doc/HTML/sl/kcontrol/filetypes/index.docbook -share/doc/HTML/sl/kcontrol/index.cache.bz2 -share/doc/HTML/sl/kcontrol/index.docbook -share/doc/HTML/sl/kcontrol/kalarmd/common -share/doc/HTML/sl/kcontrol/kalarmd/index.cache.bz2 -share/doc/HTML/sl/kcontrol/kalarmd/index.docbook -share/doc/HTML/sl/kcontrol/kcmcss/common -share/doc/HTML/sl/kcontrol/kcmcss/index.cache.bz2 -share/doc/HTML/sl/kcontrol/kcmcss/index.docbook -share/doc/HTML/sl/kcontrol/kcmlaunch/common -share/doc/HTML/sl/kcontrol/kcmlaunch/index.cache.bz2 -share/doc/HTML/sl/kcontrol/kcmlaunch/index.docbook -share/doc/HTML/sl/kcontrol/kcmlowbatcrit/common -share/doc/HTML/sl/kcontrol/kcmlowbatcrit/index.cache.bz2 -share/doc/HTML/sl/kcontrol/kcmlowbatcrit/index.docbook -share/doc/HTML/sl/kcontrol/kcmlowbatwarn/common -share/doc/HTML/sl/kcontrol/kcmlowbatwarn/index.cache.bz2 -share/doc/HTML/sl/kcontrol/kcmlowbatwarn/index.docbook -share/doc/HTML/sl/kcontrol/kcmsmserver/common -share/doc/HTML/sl/kcontrol/kcmsmserver/index.cache.bz2 -share/doc/HTML/sl/kcontrol/kcmsmserver/index.docbook -share/doc/HTML/sl/kcontrol/keyboard/common -share/doc/HTML/sl/kcontrol/keyboard/index.cache.bz2 -share/doc/HTML/sl/kcontrol/keyboard/index.docbook -share/doc/HTML/sl/kcontrol/kmixcfg/common -share/doc/HTML/sl/kcontrol/kmixcfg/index.cache.bz2 -share/doc/HTML/sl/kcontrol/kmixcfg/index.docbook -share/doc/HTML/sl/kcontrol/kwindecoration/common -share/doc/HTML/sl/kcontrol/kwindecoration/index.cache.bz2 -share/doc/HTML/sl/kcontrol/kwindecoration/index.docbook -share/doc/HTML/sl/kcontrol/laptop/common -share/doc/HTML/sl/kcontrol/laptop/index.cache.bz2 -share/doc/HTML/sl/kcontrol/laptop/index.docbook -share/doc/HTML/sl/kcontrol/powerctrl/common -share/doc/HTML/sl/kcontrol/powerctrl/index.cache.bz2 -share/doc/HTML/sl/kcontrol/powerctrl/index.docbook -share/doc/HTML/sl/kcontrol/proxy/socks.docbook -share/doc/HTML/sl/kcontrol/screenshot.png -share/doc/HTML/sl/kcontrol/smb/common -share/doc/HTML/sl/kcontrol/smb/index.cache.bz2 -share/doc/HTML/sl/kcontrol/smb/index.docbook -share/doc/HTML/sl/kcontrol/spellchecking/common -share/doc/HTML/sl/kcontrol/spellchecking/index.cache.bz2 -share/doc/HTML/sl/kcontrol/spellchecking/index.docbook -share/doc/HTML/sl/kcontrol/windowmanagement/common -share/doc/HTML/sl/kcontrol/windowmanagement/index.cache.bz2 -share/doc/HTML/sl/kcontrol/windowmanagement/index.docbook -share/doc/HTML/sl/kdeprint/extensions.docbook -share/doc/HTML/sl/kdeprint/lpd.docbook -share/doc/HTML/sl/kdeprint/lpr-bsd.docbook -share/doc/HTML/sl/kdeprint/lprng.docbook -share/doc/HTML/sl/kdeprint/rlpr.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/kfind/common -share/doc/HTML/sl/kfind/index.cache.bz2 -share/doc/HTML/sl/kfind/index.docbook -share/doc/HTML/sl/khelpcenter/common -share/doc/HTML/sl/khelpcenter/contact.docbook -share/doc/HTML/sl/khelpcenter/exec.xpm -share/doc/HTML/sl/khelpcenter/faq/about.docbook -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/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/kdeprintingglossary.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/links.docbook -share/doc/HTML/sl/khelpcenter/main.html -share/doc/HTML/sl/khelpcenter/support.docbook -share/doc/HTML/sl/khelpcenter/tinylogo.png -share/doc/HTML/sl/khelpcenter/userguide/about-desktop.docbook -share/doc/HTML/sl/khelpcenter/userguide/common -share/doc/HTML/sl/khelpcenter/userguide/first-impressions.docbook -share/doc/HTML/sl/khelpcenter/userguide/getting-started.docbook -share/doc/HTML/sl/khelpcenter/userguide/history.docbook -share/doc/HTML/sl/khelpcenter/userguide/index.cache.bz2 -share/doc/HTML/sl/khelpcenter/userguide/index.docbook -share/doc/HTML/sl/khelpcenter/userguide/installation.docbook -share/doc/HTML/sl/khelpcenter/userguide/intro.docbook -share/doc/HTML/sl/khelpcenter/userguide/kdeadmin-apps.docbook -share/doc/HTML/sl/khelpcenter/userguide/kdebase-apps.docbook -share/doc/HTML/sl/khelpcenter/userguide/kdeedu-apps.docbook -share/doc/HTML/sl/khelpcenter/userguide/kdegames-apps.docbook -share/doc/HTML/sl/khelpcenter/userguide/kdegraphics-apps.docbook -share/doc/HTML/sl/khelpcenter/userguide/kdemultimedia-apps.docbook -share/doc/HTML/sl/khelpcenter/userguide/kdenetwork-apps.docbook -share/doc/HTML/sl/khelpcenter/userguide/kdepim-apps.docbook -share/doc/HTML/sl/khelpcenter/userguide/kdetoys-apps.docbook -share/doc/HTML/sl/khelpcenter/userguide/kdeutils-apps.docbook -share/doc/HTML/sl/khelpcenter/userguide/koffice-apps.docbook -share/doc/HTML/sl/khelpcenter/userguide/more-help.docbook -share/doc/HTML/sl/khelpcenter/userguide/shortcuts.docbook -share/doc/HTML/sl/khelpcenter/userguide/staff.docbook -share/doc/HTML/sl/khelpcenter/userguide/ug-faq.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/kinfocenter/blockdevices/common -share/doc/HTML/sl/kinfocenter/blockdevices/index.cache.bz2 -share/doc/HTML/sl/kinfocenter/blockdevices/index.docbook -share/doc/HTML/sl/kinfocenter/dma/common -share/doc/HTML/sl/kinfocenter/dma/index.cache.bz2 -share/doc/HTML/sl/kinfocenter/dma/index.docbook -share/doc/HTML/sl/kinfocenter/partitions/common -share/doc/HTML/sl/kinfocenter/partitions/index.cache.bz2 -share/doc/HTML/sl/kinfocenter/partitions/index.docbook -share/doc/HTML/sl/kinfocenter/pci/common -share/doc/HTML/sl/kinfocenter/pci/index.cache.bz2 -share/doc/HTML/sl/kinfocenter/pci/index.docbook -share/doc/HTML/sl/kinfocenter/pcmcia/common -share/doc/HTML/sl/kinfocenter/pcmcia/index.cache.bz2 -share/doc/HTML/sl/kinfocenter/pcmcia/index.docbook -share/doc/HTML/sl/kinfocenter/processor/common -share/doc/HTML/sl/kinfocenter/processor/index.cache.bz2 -share/doc/HTML/sl/kinfocenter/processor/index.docbook -share/doc/HTML/sl/kinfocenter/protocols/common -share/doc/HTML/sl/kinfocenter/protocols/index.cache.bz2 -share/doc/HTML/sl/kinfocenter/protocols/index.docbook -share/doc/HTML/sl/kinfocenter/samba/common -share/doc/HTML/sl/kinfocenter/samba/index.cache.bz2 -share/doc/HTML/sl/kinfocenter/samba/index.docbook -share/doc/HTML/sl/kinfocenter/scsi/common -share/doc/HTML/sl/kinfocenter/scsi/index.cache.bz2 -share/doc/HTML/sl/kinfocenter/scsi/index.docbook -share/doc/HTML/sl/kinfocenter/sound/common -share/doc/HTML/sl/kinfocenter/sound/index.cache.bz2 -share/doc/HTML/sl/kinfocenter/sound/index.docbook -share/doc/HTML/sl/kinfocenter/xserver/common -share/doc/HTML/sl/kinfocenter/xserver/index.cache.bz2 -share/doc/HTML/sl/kinfocenter/xserver/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/cgi.docbook -share/doc/HTML/sl/kioslave/file.docbook -share/doc/HTML/sl/kioslave/finger.docbook -share/doc/HTML/sl/kioslave/fish.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/info.docbook -share/doc/HTML/sl/kioslave/lan.docbook -share/doc/HTML/sl/kioslave/ldap.docbook -share/doc/HTML/sl/kioslave/mac.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/print.docbook -share/doc/HTML/sl/kioslave/rlan.docbook -share/doc/HTML/sl/kioslave/rlogin.docbook -share/doc/HTML/sl/kioslave/sftp.docbook -share/doc/HTML/sl/kioslave/smb.docbook -share/doc/HTML/sl/kioslave/smtp.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/kioslave/webdav.docbook -share/doc/HTML/sl/kioslave/webdavs.docbook -share/doc/HTML/sl/konqueror/cmndline.png -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/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/konsole.png -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/kppp/accounting.docbook -share/doc/HTML/sl/kppp/callback.docbook -share/doc/HTML/sl/kppp/chap.docbook -share/doc/HTML/sl/kppp/common -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/hayes.docbook -share/doc/HTML/sl/kppp/index.cache.bz2 -share/doc/HTML/sl/kppp/index.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/locale/sl/LC_MESSAGES/akregator.mo -share/locale/sl/LC_MESSAGES/akregator_konqplugin.mo -share/locale/sl/LC_MESSAGES/alsaplayerui.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/ark_plugin.mo -share/locale/sl/LC_MESSAGES/artsbuilder.mo -share/locale/sl/LC_MESSAGES/artscontrol.mo -share/locale/sl/LC_MESSAGES/artsmodules.mo -share/locale/sl/LC_MESSAGES/atlantik.mo -share/locale/sl/LC_MESSAGES/atlantikdesigner.mo -share/locale/sl/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/sl/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/sl/LC_MESSAGES/audiorename_plugin.mo -share/locale/sl/LC_MESSAGES/autorefresh.mo -share/locale/sl/LC_MESSAGES/babelfish.mo -share/locale/sl/LC_MESSAGES/cervisia.mo -share/locale/sl/LC_MESSAGES/charlatanui.mo -share/locale/sl/LC_MESSAGES/childpanelextension.mo -share/locale/sl/LC_MESSAGES/clockapplet.mo -share/locale/sl/LC_MESSAGES/crashesplugin.mo -share/locale/sl/LC_MESSAGES/cupsdconf.mo -share/locale/sl/LC_MESSAGES/cvsservice.mo -share/locale/sl/LC_MESSAGES/dcoprss.mo -share/locale/sl/LC_MESSAGES/devicesapplet.mo -share/locale/sl/LC_MESSAGES/dirfilterplugin.mo -share/locale/sl/LC_MESSAGES/display.mo -share/locale/sl/LC_MESSAGES/dockbarextension.mo -share/locale/sl/LC_MESSAGES/domtreeviewer.mo -share/locale/sl/LC_MESSAGES/drkonqi.mo -share/locale/sl/LC_MESSAGES/dub.mo -share/locale/sl/LC_MESSAGES/extensionproxy.mo -share/locale/sl/LC_MESSAGES/ffrs.mo -share/locale/sl/LC_MESSAGES/filetypes.mo -share/locale/sl/LC_MESSAGES/fontinst.mo -share/locale/sl/LC_MESSAGES/fsview.mo -share/locale/sl/LC_MESSAGES/htmlsearch.mo -share/locale/sl/LC_MESSAGES/imagerename_plugin.mo -share/locale/sl/LC_MESSAGES/imgalleryplugin.mo -share/locale/sl/LC_MESSAGES/irkick.mo -share/locale/sl/LC_MESSAGES/jefferson.mo -share/locale/sl/LC_MESSAGES/joystick.mo -share/locale/sl/LC_MESSAGES/juk.mo -share/locale/sl/LC_MESSAGES/kabc2mutt.mo -share/locale/sl/LC_MESSAGES/kabc_dir.mo -share/locale/sl/LC_MESSAGES/kabc_file.mo -share/locale/sl/LC_MESSAGES/kabc_ldap.mo -share/locale/sl/LC_MESSAGES/kabc_ldapkio.mo -share/locale/sl/LC_MESSAGES/kabc_net.mo -share/locale/sl/LC_MESSAGES/kabc_slox.mo -share/locale/sl/LC_MESSAGES/kabc_sql.mo -share/locale/sl/LC_MESSAGES/kabcformat_binary.mo -share/locale/sl/LC_MESSAGES/kaboodle.mo -share/locale/sl/LC_MESSAGES/kaccess.mo -share/locale/sl/LC_MESSAGES/kaddressbook.mo -share/locale/sl/LC_MESSAGES/kalarm.mo -share/locale/sl/LC_MESSAGES/kalzium.mo -share/locale/sl/LC_MESSAGES/kandy.mo -share/locale/sl/LC_MESSAGES/kappfinder.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/kate.mo -share/locale/sl/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/sl/LC_MESSAGES/katedefaultproject.mo -share/locale/sl/LC_MESSAGES/katefiletemplates.mo -share/locale/sl/LC_MESSAGES/katefll_initplugin.mo -share/locale/sl/LC_MESSAGES/katefll_plugin.mo -share/locale/sl/LC_MESSAGES/katehelloworld.mo -share/locale/sl/LC_MESSAGES/katehtmltools.mo -share/locale/sl/LC_MESSAGES/kateinsertcommand.mo -share/locale/sl/LC_MESSAGES/katekjswrapper.mo -share/locale/sl/LC_MESSAGES/katekttsd.mo -share/locale/sl/LC_MESSAGES/katemake.mo -share/locale/sl/LC_MESSAGES/katemodeline.mo -share/locale/sl/LC_MESSAGES/kateopenheader.mo -share/locale/sl/LC_MESSAGES/katepart.mo -share/locale/sl/LC_MESSAGES/katepartkttsd.mo -share/locale/sl/LC_MESSAGES/kateprojectmanager.mo -share/locale/sl/LC_MESSAGES/katepybrowse.mo -share/locale/sl/LC_MESSAGES/katesnippets.mo -share/locale/sl/LC_MESSAGES/katespell.mo -share/locale/sl/LC_MESSAGES/katetabbarextension.mo -share/locale/sl/LC_MESSAGES/katetextfilter.mo -share/locale/sl/LC_MESSAGES/katexmlcheck.mo -share/locale/sl/LC_MESSAGES/katexmltools.mo -share/locale/sl/LC_MESSAGES/katomic.mo -share/locale/sl/LC_MESSAGES/kaudiocreator.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/kbinaryclock.mo -share/locale/sl/LC_MESSAGES/kblackbox.mo -share/locale/sl/LC_MESSAGES/kbounce.mo -share/locale/sl/LC_MESSAGES/kbruch.mo -share/locale/sl/LC_MESSAGES/kbstateapplet.mo -share/locale/sl/LC_MESSAGES/kbugbuster.mo -share/locale/sl/LC_MESSAGES/kcachegrind.mo -share/locale/sl/LC_MESSAGES/kcalc.mo -share/locale/sl/LC_MESSAGES/kcharselect.mo -share/locale/sl/LC_MESSAGES/kcharselectapplet.mo -share/locale/sl/LC_MESSAGES/kcm_krfb.mo -share/locale/sl/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/sl/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/sl/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/sl/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/sl/LC_MESSAGES/kcmaccess.mo -share/locale/sl/LC_MESSAGES/kcmaccessibility.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/kcmcddb.mo -share/locale/sl/LC_MESSAGES/kcmcgi.mo -share/locale/sl/LC_MESSAGES/kcmcolors.mo -share/locale/sl/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/sl/LC_MESSAGES/kcmcrypto.mo -share/locale/sl/LC_MESSAGES/kcmcss.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/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/kcmkabconfig.mo -share/locale/sl/LC_MESSAGES/kcmkamera.mo -share/locale/sl/LC_MESSAGES/kcmkclock.mo -share/locale/sl/LC_MESSAGES/kcmkded.mo -share/locale/sl/LC_MESSAGES/kcmkdnssd.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/kcmkontactnt.mo -share/locale/sl/LC_MESSAGES/kcmktalkd.mo -share/locale/sl/LC_MESSAGES/kcmkttsd.mo -share/locale/sl/LC_MESSAGES/kcmkuick.mo -share/locale/sl/LC_MESSAGES/kcmkurifilt.mo -share/locale/sl/LC_MESSAGES/kcmkvaio.mo -share/locale/sl/LC_MESSAGES/kcmkwallet.mo -share/locale/sl/LC_MESSAGES/kcmkwindecoration.mo -share/locale/sl/LC_MESSAGES/kcmkwinrules.mo -share/locale/sl/LC_MESSAGES/kcmkwintheme.mo -share/locale/sl/LC_MESSAGES/kcmkwm.mo -share/locale/sl/LC_MESSAGES/kcmkxmlrpcd.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/kcmlirc.mo -share/locale/sl/LC_MESSAGES/kcmlocale.mo -share/locale/sl/LC_MESSAGES/kcmmediacontrol.mo -share/locale/sl/LC_MESSAGES/kcmmidi.mo -share/locale/sl/LC_MESSAGES/kcmnic.mo -share/locale/sl/LC_MESSAGES/kcmnotify.mo -share/locale/sl/LC_MESSAGES/kcmperformance.mo -share/locale/sl/LC_MESSAGES/kcmprintmgr.mo -share/locale/sl/LC_MESSAGES/kcmsamba.mo -share/locale/sl/LC_MESSAGES/kcmscreensaver.mo -share/locale/sl/LC_MESSAGES/kcmshell.mo -share/locale/sl/LC_MESSAGES/kcmsmartcard.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/kcmthinkpad.mo -share/locale/sl/LC_MESSAGES/kcmusb.mo -share/locale/sl/LC_MESSAGES/kcmview1394.mo -share/locale/sl/LC_MESSAGES/kcmvim.mo -share/locale/sl/LC_MESSAGES/kcmwifi.mo -share/locale/sl/LC_MESSAGES/kcmxinerama.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/kdat.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/kdelibs_colors.mo -share/locale/sl/LC_MESSAGES/kdelirc.mo -share/locale/sl/LC_MESSAGES/kdepasswd.mo -share/locale/sl/LC_MESSAGES/kdepimresources.mo -share/locale/sl/LC_MESSAGES/kdepimwizards.mo -share/locale/sl/LC_MESSAGES/kdeprint.mo -share/locale/sl/LC_MESSAGES/kdeprint_part.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/kdevdesigner.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/kdgantt.mo -share/locale/sl/LC_MESSAGES/kdialog.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/keduca.mo -share/locale/sl/LC_MESSAGES/kenolaba.mo -share/locale/sl/LC_MESSAGES/kfax.mo -share/locale/sl/LC_MESSAGES/kfifteenapplet.mo -share/locale/sl/LC_MESSAGES/kfile_au.mo -share/locale/sl/LC_MESSAGES/kfile_avi.mo -share/locale/sl/LC_MESSAGES/kfile_bmp.mo -share/locale/sl/LC_MESSAGES/kfile_cert.mo -share/locale/sl/LC_MESSAGES/kfile_cpp.mo -share/locale/sl/LC_MESSAGES/kfile_dds.mo -share/locale/sl/LC_MESSAGES/kfile_deb.mo -share/locale/sl/LC_MESSAGES/kfile_desktop.mo -share/locale/sl/LC_MESSAGES/kfile_diff.mo -share/locale/sl/LC_MESSAGES/kfile_drgeo.mo -share/locale/sl/LC_MESSAGES/kfile_dvi.mo -share/locale/sl/LC_MESSAGES/kfile_exr.mo -share/locale/sl/LC_MESSAGES/kfile_flac.mo -share/locale/sl/LC_MESSAGES/kfile_folder.mo -share/locale/sl/LC_MESSAGES/kfile_font.mo -share/locale/sl/LC_MESSAGES/kfile_gif.mo -share/locale/sl/LC_MESSAGES/kfile_html.mo -share/locale/sl/LC_MESSAGES/kfile_ico.mo -share/locale/sl/LC_MESSAGES/kfile_ics.mo -share/locale/sl/LC_MESSAGES/kfile_jpeg.mo -share/locale/sl/LC_MESSAGES/kfile_kig.mo -share/locale/sl/LC_MESSAGES/kfile_lnk.mo -share/locale/sl/LC_MESSAGES/kfile_m3u.mo -share/locale/sl/LC_MESSAGES/kfile_mhtml.mo -share/locale/sl/LC_MESSAGES/kfile_mp3.mo -share/locale/sl/LC_MESSAGES/kfile_mpc.mo -share/locale/sl/LC_MESSAGES/kfile_ogg.mo -share/locale/sl/LC_MESSAGES/kfile_palm.mo -share/locale/sl/LC_MESSAGES/kfile_pcx.mo -share/locale/sl/LC_MESSAGES/kfile_pdf.mo -share/locale/sl/LC_MESSAGES/kfile_png.mo -share/locale/sl/LC_MESSAGES/kfile_pnm.mo -share/locale/sl/LC_MESSAGES/kfile_po.mo -share/locale/sl/LC_MESSAGES/kfile_ps.mo -share/locale/sl/LC_MESSAGES/kfile_rfc822.mo -share/locale/sl/LC_MESSAGES/kfile_rgb.mo -share/locale/sl/LC_MESSAGES/kfile_rpm.mo -share/locale/sl/LC_MESSAGES/kfile_sid.mo -share/locale/sl/LC_MESSAGES/kfile_tga.mo -share/locale/sl/LC_MESSAGES/kfile_theora.mo -share/locale/sl/LC_MESSAGES/kfile_tiff.mo -share/locale/sl/LC_MESSAGES/kfile_torrent.mo -share/locale/sl/LC_MESSAGES/kfile_ts.mo -share/locale/sl/LC_MESSAGES/kfile_txt.mo -share/locale/sl/LC_MESSAGES/kfile_vcf.mo -share/locale/sl/LC_MESSAGES/kfile_wav.mo -share/locale/sl/LC_MESSAGES/kfile_xbm.mo -share/locale/sl/LC_MESSAGES/kfile_xpm.mo -share/locale/sl/LC_MESSAGES/kfileaudiopreview.mo -share/locale/sl/LC_MESSAGES/kfilereplace.mo -share/locale/sl/LC_MESSAGES/kfileshare.mo -share/locale/sl/LC_MESSAGES/kfindpart.mo -share/locale/sl/LC_MESSAGES/kfloppy.mo -share/locale/sl/LC_MESSAGES/kfmclient.mo -share/locale/sl/LC_MESSAGES/kfontinst.mo -share/locale/sl/LC_MESSAGES/kfouleggs.mo -share/locale/sl/LC_MESSAGES/kgamma.mo -share/locale/sl/LC_MESSAGES/kgantt.mo -share/locale/sl/LC_MESSAGES/kget.mo -share/locale/sl/LC_MESSAGES/kghostview.mo -share/locale/sl/LC_MESSAGES/kgoldrunner.mo -share/locale/sl/LC_MESSAGES/kgpg.mo -share/locale/sl/LC_MESSAGES/kgreet_classic.mo -share/locale/sl/LC_MESSAGES/kgreet_winbind.mo -share/locale/sl/LC_MESSAGES/khangman.mo -share/locale/sl/LC_MESSAGES/khelpcenter.mo -share/locale/sl/LC_MESSAGES/khexedit.mo -share/locale/sl/LC_MESSAGES/khexedit2part.mo -share/locale/sl/LC_MESSAGES/khotkeys.mo -share/locale/sl/LC_MESSAGES/khtmlkttsd.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/kig.mo -share/locale/sl/LC_MESSAGES/kimagemapeditor.mo -share/locale/sl/LC_MESSAGES/kinetd.mo -share/locale/sl/LC_MESSAGES/kio.mo -share/locale/sl/LC_MESSAGES/kio_audiocd.mo -share/locale/sl/LC_MESSAGES/kio_devices.mo -share/locale/sl/LC_MESSAGES/kio_finger.mo -share/locale/sl/LC_MESSAGES/kio_fish.mo -share/locale/sl/LC_MESSAGES/kio_floppy.mo -share/locale/sl/LC_MESSAGES/kio_groupwise.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_ldap.mo -share/locale/sl/LC_MESSAGES/kio_mac.mo -share/locale/sl/LC_MESSAGES/kio_man.mo -share/locale/sl/LC_MESSAGES/kio_media.mo -share/locale/sl/LC_MESSAGES/kio_mobile.mo -share/locale/sl/LC_MESSAGES/kio_newimap4.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_print.mo -share/locale/sl/LC_MESSAGES/kio_remote.mo -share/locale/sl/LC_MESSAGES/kio_settings.mo -share/locale/sl/LC_MESSAGES/kio_sftp.mo -share/locale/sl/LC_MESSAGES/kio_sieve.mo -share/locale/sl/LC_MESSAGES/kio_smb.mo -share/locale/sl/LC_MESSAGES/kio_smtp.mo -share/locale/sl/LC_MESSAGES/kio_svn.mo -share/locale/sl/LC_MESSAGES/kio_system.mo -share/locale/sl/LC_MESSAGES/kio_trash.mo -share/locale/sl/LC_MESSAGES/kio_zeroconf.mo -share/locale/sl/LC_MESSAGES/kioexec.mo -share/locale/sl/LC_MESSAGES/kiten.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/klatin.mo -share/locale/sl/LC_MESSAGES/klegacyimport.mo -share/locale/sl/LC_MESSAGES/kleopatra.mo -share/locale/sl/LC_MESSAGES/klettres.mo -share/locale/sl/LC_MESSAGES/klickety.mo -share/locale/sl/LC_MESSAGES/klines.mo -share/locale/sl/LC_MESSAGES/klinkstatus.mo -share/locale/sl/LC_MESSAGES/klipper.mo -share/locale/sl/LC_MESSAGES/klock.mo -share/locale/sl/LC_MESSAGES/kmag.mo -share/locale/sl/LC_MESSAGES/kmahjongg.mo -share/locale/sl/LC_MESSAGES/kmail.mo -share/locale/sl/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/sl/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/sl/LC_MESSAGES/kmailcvt.mo -share/locale/sl/LC_MESSAGES/kmathapplet.mo -share/locale/sl/LC_MESSAGES/kmathtool.mo -share/locale/sl/LC_MESSAGES/kmcop.mo -share/locale/sl/LC_MESSAGES/kmenuapplet.mo -share/locale/sl/LC_MESSAGES/kmenuedit.mo -share/locale/sl/LC_MESSAGES/kmessedwords.mo -share/locale/sl/LC_MESSAGES/kmid.mo -share/locale/sl/LC_MESSAGES/kmilo_delli8k.mo -share/locale/sl/LC_MESSAGES/kmilo_generic.mo -share/locale/sl/LC_MESSAGES/kmilo_kvaio.mo -share/locale/sl/LC_MESSAGES/kmilo_powerbook.mo -share/locale/sl/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/sl/LC_MESSAGES/kmilod.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/kmobile.mo -share/locale/sl/LC_MESSAGES/kmoon.mo -share/locale/sl/LC_MESSAGES/kmousetool.mo -share/locale/sl/LC_MESSAGES/kmouth.mo -share/locale/sl/LC_MESSAGES/kmplot.mo -share/locale/sl/LC_MESSAGES/kmrml.mo -share/locale/sl/LC_MESSAGES/knetattach.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/kodo.mo -share/locale/sl/LC_MESSAGES/kolf.mo -share/locale/sl/LC_MESSAGES/kolourpaint.mo -share/locale/sl/LC_MESSAGES/kolourpicker.mo -share/locale/sl/LC_MESSAGES/kommander.mo -share/locale/sl/LC_MESSAGES/kompare.mo -share/locale/sl/LC_MESSAGES/konnector_dummy.mo -share/locale/sl/LC_MESSAGES/konnector_kabc.mo -share/locale/sl/LC_MESSAGES/konnector_kcal.mo -share/locale/sl/LC_MESSAGES/konnector_local.mo -share/locale/sl/LC_MESSAGES/konnector_qtopia.mo -share/locale/sl/LC_MESSAGES/konnector_remote.mo -share/locale/sl/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/sl/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/sl/LC_MESSAGES/konqsidebar_news.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/konsolekalendar.mo -share/locale/sl/LC_MESSAGES/kontact.mo -share/locale/sl/LC_MESSAGES/kooka.mo -share/locale/sl/LC_MESSAGES/kopete.mo -share/locale/sl/LC_MESSAGES/korganizer.mo -share/locale/sl/LC_MESSAGES/korn.mo -share/locale/sl/LC_MESSAGES/kpackage.mo -share/locale/sl/LC_MESSAGES/kpager.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/kpdf.mo -share/locale/sl/LC_MESSAGES/kpercentage.mo -share/locale/sl/LC_MESSAGES/kpersonalizer.mo -share/locale/sl/LC_MESSAGES/kpf.mo -share/locale/sl/LC_MESSAGES/kpilot.mo -share/locale/sl/LC_MESSAGES/kpoker.mo -share/locale/sl/LC_MESSAGES/kpovmodeler.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/krandr.mo -share/locale/sl/LC_MESSAGES/krdb.mo -share/locale/sl/LC_MESSAGES/krdc.mo -share/locale/sl/LC_MESSAGES/kreadconfig.mo -share/locale/sl/LC_MESSAGES/krec.mo -share/locale/sl/LC_MESSAGES/kregexpeditor.mo -share/locale/sl/LC_MESSAGES/kres_blogging.mo -share/locale/sl/LC_MESSAGES/kres_bugzilla.mo -share/locale/sl/LC_MESSAGES/kres_exchange.mo -share/locale/sl/LC_MESSAGES/kres_featureplan.mo -share/locale/sl/LC_MESSAGES/kres_groupwise.mo -share/locale/sl/LC_MESSAGES/kres_kolab.mo -share/locale/sl/LC_MESSAGES/kres_opengroupware.mo -share/locale/sl/LC_MESSAGES/kres_remote.mo -share/locale/sl/LC_MESSAGES/kres_xmlrpc.mo -share/locale/sl/LC_MESSAGES/kreversi.mo -share/locale/sl/LC_MESSAGES/krfb.mo -share/locale/sl/LC_MESSAGES/kruler.mo -share/locale/sl/LC_MESSAGES/krunapplet.mo -share/locale/sl/LC_MESSAGES/ksame.mo -share/locale/sl/LC_MESSAGES/ksayit.mo -share/locale/sl/LC_MESSAGES/kscd.mo -share/locale/sl/LC_MESSAGES/kscreensaver.mo -share/locale/sl/LC_MESSAGES/kshisen.mo -share/locale/sl/LC_MESSAGES/ksig.mo -share/locale/sl/LC_MESSAGES/ksim.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/ksplashthemes.mo -share/locale/sl/LC_MESSAGES/kstars.mo -share/locale/sl/LC_MESSAGES/kstart.mo -share/locale/sl/LC_MESSAGES/kstartperf.mo -share/locale/sl/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/sl/LC_MESSAGES/kstyle_phase_config.mo -share/locale/sl/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/sl/LC_MESSAGES/ksvgplugin.mo -share/locale/sl/LC_MESSAGES/ksync.mo -share/locale/sl/LC_MESSAGES/ksysguard.mo -share/locale/sl/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/sl/LC_MESSAGES/ksystraycmd.mo -share/locale/sl/LC_MESSAGES/ksysv.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/ktexteditor_autobookmarker.mo -share/locale/sl/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/sl/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/sl/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/sl/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/sl/LC_MESSAGES/ktexteditor_kttsd.mo -share/locale/sl/LC_MESSAGES/kthememanager.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/ktnef.mo -share/locale/sl/LC_MESSAGES/ktouch.mo -share/locale/sl/LC_MESSAGES/ktron.mo -share/locale/sl/LC_MESSAGES/kttsd.mo -share/locale/sl/LC_MESSAGES/kttsd_commandplugin.mo -share/locale/sl/LC_MESSAGES/kttsd_eposplugin.mo -share/locale/sl/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/sl/LC_MESSAGES/kttsd_fliteplugin.mo -share/locale/sl/LC_MESSAGES/kttsd_freettsplugin.mo -share/locale/sl/LC_MESSAGES/kttsd_hadifixplugin.mo -share/locale/sl/LC_MESSAGES/kttsd_sbdplugin.mo -share/locale/sl/LC_MESSAGES/kttsd_stringreplacerplugin.mo -share/locale/sl/LC_MESSAGES/kttsd_talkerchooserplugin.mo -share/locale/sl/LC_MESSAGES/kttsd_xmltransformerplugin.mo -share/locale/sl/LC_MESSAGES/kttsjobmgr.mo -share/locale/sl/LC_MESSAGES/kttsmgr.mo -share/locale/sl/LC_MESSAGES/ktuberling.mo -share/locale/sl/LC_MESSAGES/kturtle.mo -share/locale/sl/LC_MESSAGES/ktux.mo -share/locale/sl/LC_MESSAGES/kuick_plugin.mo -share/locale/sl/LC_MESSAGES/kuickshow.mo -share/locale/sl/LC_MESSAGES/kuiviewer.mo -share/locale/sl/LC_MESSAGES/kuser.mo -share/locale/sl/LC_MESSAGES/kverbos.mo -share/locale/sl/LC_MESSAGES/kview.mo -share/locale/sl/LC_MESSAGES/kview_scale.mo -share/locale/sl/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/sl/LC_MESSAGES/kviewcanvas.mo -share/locale/sl/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/sl/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/sl/LC_MESSAGES/kviewscannerplugin.mo -share/locale/sl/LC_MESSAGES/kviewshell.mo -share/locale/sl/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/sl/LC_MESSAGES/kviewviewer.mo -share/locale/sl/LC_MESSAGES/kvoctrain.mo -share/locale/sl/LC_MESSAGES/kwalletmanager.mo -share/locale/sl/LC_MESSAGES/kwatchgnupg.mo -share/locale/sl/LC_MESSAGES/kweather.mo -share/locale/sl/LC_MESSAGES/kwifimanager.mo -share/locale/sl/LC_MESSAGES/kwin.mo -share/locale/sl/LC_MESSAGES/kwin4.mo -share/locale/sl/LC_MESSAGES/kwin_art_clients.mo -share/locale/sl/LC_MESSAGES/kwin_clients.mo -share/locale/sl/LC_MESSAGES/kwireless.mo -share/locale/sl/LC_MESSAGES/kwordquiz.mo -share/locale/sl/LC_MESSAGES/kworldclock.mo -share/locale/sl/LC_MESSAGES/kwriteconfig.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/kxsldbg.mo -share/locale/sl/LC_MESSAGES/libKTTSD.mo -share/locale/sl/LC_MESSAGES/libcalendarresources.mo -share/locale/sl/LC_MESSAGES/libdmctl.mo -share/locale/sl/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/sl/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/sl/LC_MESSAGES/libkcal.mo -share/locale/sl/LC_MESSAGES/libkcalsystem.mo -share/locale/sl/LC_MESSAGES/libkcddb.mo -share/locale/sl/LC_MESSAGES/libkdegames.mo -share/locale/sl/LC_MESSAGES/libkdehighscores.mo -share/locale/sl/LC_MESSAGES/libkdenetwork.mo -share/locale/sl/LC_MESSAGES/libkdepim.mo -share/locale/sl/LC_MESSAGES/libkholidays.mo -share/locale/sl/LC_MESSAGES/libkicker.mo -share/locale/sl/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/sl/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/sl/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/sl/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/sl/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/sl/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/sl/LC_MESSAGES/libkickermenu_tom.mo -share/locale/sl/LC_MESSAGES/libkleopatra.mo -share/locale/sl/LC_MESSAGES/libkmime.mo -share/locale/sl/LC_MESSAGES/libkonq.mo -share/locale/sl/LC_MESSAGES/libkpgp.mo -share/locale/sl/LC_MESSAGES/libkpimexchange.mo -share/locale/sl/LC_MESSAGES/libkscan.mo -share/locale/sl/LC_MESSAGES/libkscreensaver.mo -share/locale/sl/LC_MESSAGES/libksieve.mo -share/locale/sl/LC_MESSAGES/libksirtet.mo -share/locale/sl/LC_MESSAGES/libksync.mo -share/locale/sl/LC_MESSAGES/libtaskbar.mo -share/locale/sl/LC_MESSAGES/libtaskmanager.mo -share/locale/sl/LC_MESSAGES/lockout.mo -share/locale/sl/LC_MESSAGES/lskat.mo -share/locale/sl/LC_MESSAGES/lyrics.mo -share/locale/sl/LC_MESSAGES/mediaapplet.mo -share/locale/sl/LC_MESSAGES/mediacontrol.mo -share/locale/sl/LC_MESSAGES/minitoolsplugin.mo -share/locale/sl/LC_MESSAGES/multisynk.mo -share/locale/sl/LC_MESSAGES/naughtyapplet.mo -share/locale/sl/LC_MESSAGES/nexscope.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/pitchablespeed.mo -share/locale/sl/LC_MESSAGES/ppdtranslations.mo -share/locale/sl/LC_MESSAGES/privacy.mo -share/locale/sl/LC_MESSAGES/qeditor.mo -share/locale/sl/LC_MESSAGES/quanta.mo -share/locale/sl/LC_MESSAGES/quicklauncher.mo -share/locale/sl/LC_MESSAGES/rellinks.mo -share/locale/sl/LC_MESSAGES/searchbarplugin.mo -share/locale/sl/LC_MESSAGES/secpolicy.mo -share/locale/sl/LC_MESSAGES/spy.mo -share/locale/sl/LC_MESSAGES/synaescope.mo -share/locale/sl/LC_MESSAGES/taskbarextension.mo -share/locale/sl/LC_MESSAGES/timezones.mo -share/locale/sl/LC_MESSAGES/tippecanoe.mo -share/locale/sl/LC_MESSAGES/trashapplet.mo -share/locale/sl/LC_MESSAGES/tyler.mo -share/locale/sl/LC_MESSAGES/uachangerplugin.mo -share/locale/sl/LC_MESSAGES/umbrello.mo -share/locale/sl/LC_MESSAGES/useraccount.mo -share/locale/sl/LC_MESSAGES/validatorsplugin.mo -share/locale/sl/LC_MESSAGES/vimpart.mo -share/locale/sl/LC_MESSAGES/wakeup.mo -share/locale/sl/LC_MESSAGES/wavecapture.mo -share/locale/sl/LC_MESSAGES/webarchiver.mo -share/locale/sl/charset -share/locale/sl/entry.desktop -share/locale/sl/flag.png -@dirrm share/doc/HTML/sl/kppp -@dirrm share/doc/HTML/sl/kpackage -@dirrm share/doc/HTML/sl/konsole -@dirrm share/doc/HTML/sl/konqueror -@dirrm share/doc/HTML/sl/kioslave -@dirrm share/doc/HTML/sl/kinfocenter/xserver -@dirrm share/doc/HTML/sl/kinfocenter/sound -@dirrm share/doc/HTML/sl/kinfocenter/scsi -@dirrm share/doc/HTML/sl/kinfocenter/samba -@dirrm share/doc/HTML/sl/kinfocenter/protocols -@dirrm share/doc/HTML/sl/kinfocenter/processor -@dirrm share/doc/HTML/sl/kinfocenter/pcmcia -@dirrm share/doc/HTML/sl/kinfocenter/pci -@dirrm share/doc/HTML/sl/kinfocenter/partitions -@dirrm share/doc/HTML/sl/kinfocenter/dma -@dirrm share/doc/HTML/sl/kinfocenter/blockdevices -@dirrm share/doc/HTML/sl/kinfocenter -@dirrm share/doc/HTML/sl/khelpcenter/visualdict -@dirrm share/doc/HTML/sl/khelpcenter/userguide -@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/kfind -@dirrm share/doc/HTML/sl/kdm -@dirrm share/doc/HTML/sl/kdesu -@dirrm share/doc/HTML/sl/kdeprint -@dirrm share/doc/HTML/sl/kcontrol/windowmanagement -@dirrm share/doc/HTML/sl/kcontrol/spellchecking -@dirrm share/doc/HTML/sl/kcontrol/smb -@dirrm share/doc/HTML/sl/kcontrol/proxy -@dirrm share/doc/HTML/sl/kcontrol/powerctrl -@dirrm share/doc/HTML/sl/kcontrol/laptop -@dirrm share/doc/HTML/sl/kcontrol/kwindecoration -@dirrm share/doc/HTML/sl/kcontrol/kmixcfg -@dirrm share/doc/HTML/sl/kcontrol/keyboard -@dirrm share/doc/HTML/sl/kcontrol/kcmsmserver -@dirrm share/doc/HTML/sl/kcontrol/kcmlowbatwarn -@dirrm share/doc/HTML/sl/kcontrol/kcmlowbatcrit -@dirrm share/doc/HTML/sl/kcontrol/kcmlaunch -@dirrm share/doc/HTML/sl/kcontrol/kcmcss -@dirrm share/doc/HTML/sl/kcontrol/kalarmd -@dirrm share/doc/HTML/sl/kcontrol/filetypes -@dirrm share/doc/HTML/sl/kcontrol/ebrowsing -@dirrm share/doc/HTML/sl/kcontrol/crypto -@dirrm share/doc/HTML/sl/kcontrol/cookies -@dirrm share/doc/HTML/sl/kcontrol/clock -@dirrm share/doc/HTML/sl/kcontrol/bell -@dirrm share/doc/HTML/sl/kcontrol/arts -@dirrm share/doc/HTML/sl/kcontrol -@dirrm share/doc/HTML/sl/kaddressbook -@dirrm share/doc/HTML/sl/common -@dirrm share/apps/kturtle/examples/sl -@dirrm share/apps/kturtle/examples -@dirrm share/apps/kturtle/data -@dirrm share/apps/kturtle -@dirrm share/apps/ktuberling/sounds/sl -@dirrm share/apps/ktuberling/sounds -@dirrm share/apps/ktuberling -@dirrm share/apps/khangman/data/sl -@dirrm share/apps/khangman/data -@dirrm share/apps/khangman diff --git a/misc/kde4-l10n-sr/Makefile b/misc/kde4-l10n-sr/Makefile deleted file mode 100644 index 4ecd0ba799fd..000000000000 --- a/misc/kde4-l10n-sr/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-sr -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= sr- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Serbian messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-sr/distinfo b/misc/kde4-l10n-sr/distinfo deleted file mode 100644 index 4c3c2f99a0e1..000000000000 --- a/misc/kde4-l10n-sr/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-sr-3.4.2.tar.bz2) = 0d9e803c9284ce0cca672c5548072a54 -SIZE (KDE/kde-i18n/kde-i18n-sr-3.4.2.tar.bz2) = 2102832 diff --git a/misc/kde4-l10n-sr/pkg-descr b/misc/kde4-l10n-sr/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-sr/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-sr/pkg-plist b/misc/kde4-l10n-sr/pkg-plist deleted file mode 100644 index 098f680fc821..000000000000 --- a/misc/kde4-l10n-sr/pkg-plist +++ /dev/null @@ -1,670 +0,0 @@ -share/apps/katepart/syntax/logohighlightstyle.sr.xml -share/apps/khangman/data/sr/animals.kvtml -share/apps/khangman/data/sr/easy.kvtml -share/apps/khangman/data/sr/hard.kvtml -share/apps/khangman/data/sr/medium.kvtml -share/apps/kturtle/data/logokeywords.sr.xml -share/apps/kturtle/examples/sr/curly.logo -share/apps/kturtle/examples/sr/example1.logo -share/apps/kturtle/examples/sr/square.logo -share/apps/kturtle/examples/sr/triangle.logo -share/doc/HTML/sr/common/1.png -share/doc/HTML/sr/common/10.png -share/doc/HTML/sr/common/2.png -share/doc/HTML/sr/common/3.png -share/doc/HTML/sr/common/4.png -share/doc/HTML/sr/common/5.png -share/doc/HTML/sr/common/6.png -share/doc/HTML/sr/common/7.png -share/doc/HTML/sr/common/8.png -share/doc/HTML/sr/common/9.png -share/doc/HTML/sr/common/appheader.html -share/doc/HTML/sr/common/artistic-license.html -share/doc/HTML/sr/common/bottom-left.png -share/doc/HTML/sr/common/bottom-middle.png -share/doc/HTML/sr/common/bottom-right.png -share/doc/HTML/sr/common/bottom1.png -share/doc/HTML/sr/common/bottom2.png -share/doc/HTML/sr/common/bsd-license.html -share/doc/HTML/sr/common/docheadergears.png -share/doc/HTML/sr/common/doctop1.png -share/doc/HTML/sr/common/doctop1a.png -share/doc/HTML/sr/common/doctop1b.png -share/doc/HTML/sr/common/doctop2.png -share/doc/HTML/sr/common/doxygen.css -share/doc/HTML/sr/common/fdl-license -share/doc/HTML/sr/common/fdl-license.html -share/doc/HTML/sr/common/fdl-translated.html -share/doc/HTML/sr/common/footer.html -share/doc/HTML/sr/common/gpl-license -share/doc/HTML/sr/common/gpl-license.html -share/doc/HTML/sr/common/gpl-translated.html -share/doc/HTML/sr/common/grad.png -share/doc/HTML/sr/common/header.html -share/doc/HTML/sr/common/headerbg.png -share/doc/HTML/sr/common/kde-common.css -share/doc/HTML/sr/common/kde-default.css -share/doc/HTML/sr/common/kde-localised.css -share/doc/HTML/sr/common/kde-localised.css.template -share/doc/HTML/sr/common/kde-web.css -share/doc/HTML/sr/common/kde_logo.png -share/doc/HTML/sr/common/kde_logo_bg.png -share/doc/HTML/sr/common/kmenu.png -share/doc/HTML/sr/common/lgpl-license -share/doc/HTML/sr/common/lgpl-license.html -share/doc/HTML/sr/common/lgpl-translated.html -share/doc/HTML/sr/common/logotp3.png -share/doc/HTML/sr/common/mainfooter.html -share/doc/HTML/sr/common/mainheader.html -share/doc/HTML/sr/common/qpl-license.html -share/doc/HTML/sr/common/shadow.png -share/doc/HTML/sr/common/top-left.png -share/doc/HTML/sr/common/top-middle.png -share/doc/HTML/sr/common/top-right-konqueror.png -share/doc/HTML/sr/common/web-docbottom.png -share/doc/HTML/sr/common/web-doctop.png -share/doc/HTML/sr/common/x11-license.html -share/doc/HTML/sr/common/xml.dcl -share/doc/HTML/sr/khelpcenter/welcome.docbook -share/doc/HTML/sr/khelpcenter/whatiskde.docbook -share/locale/sr/LC_MESSAGES/akregator.mo -share/locale/sr/LC_MESSAGES/akregator_konqplugin.mo -share/locale/sr/LC_MESSAGES/alsaplayerui.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/ark_plugin.mo -share/locale/sr/LC_MESSAGES/artsbuilder.mo -share/locale/sr/LC_MESSAGES/artscontrol.mo -share/locale/sr/LC_MESSAGES/artsmodules.mo -share/locale/sr/LC_MESSAGES/atlantik.mo -share/locale/sr/LC_MESSAGES/atlantikdesigner.mo -share/locale/sr/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/sr/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/sr/LC_MESSAGES/audiorename_plugin.mo -share/locale/sr/LC_MESSAGES/autorefresh.mo -share/locale/sr/LC_MESSAGES/babelfish.mo -share/locale/sr/LC_MESSAGES/cervisia.mo -share/locale/sr/LC_MESSAGES/charlatanui.mo -share/locale/sr/LC_MESSAGES/childpanelextension.mo -share/locale/sr/LC_MESSAGES/clockapplet.mo -share/locale/sr/LC_MESSAGES/crashesplugin.mo -share/locale/sr/LC_MESSAGES/cupsdconf.mo -share/locale/sr/LC_MESSAGES/cvsservice.mo -share/locale/sr/LC_MESSAGES/dcoprss.mo -share/locale/sr/LC_MESSAGES/devicesapplet.mo -share/locale/sr/LC_MESSAGES/dirfilterplugin.mo -share/locale/sr/LC_MESSAGES/display.mo -share/locale/sr/LC_MESSAGES/dockbarextension.mo -share/locale/sr/LC_MESSAGES/domtreeviewer.mo -share/locale/sr/LC_MESSAGES/drkonqi.mo -share/locale/sr/LC_MESSAGES/dub.mo -share/locale/sr/LC_MESSAGES/extensionproxy.mo -share/locale/sr/LC_MESSAGES/ffrs.mo -share/locale/sr/LC_MESSAGES/filetypes.mo -share/locale/sr/LC_MESSAGES/fontinst.mo -share/locale/sr/LC_MESSAGES/fsview.mo -share/locale/sr/LC_MESSAGES/htmlsearch.mo -share/locale/sr/LC_MESSAGES/imagerename_plugin.mo -share/locale/sr/LC_MESSAGES/imgalleryplugin.mo -share/locale/sr/LC_MESSAGES/irkick.mo -share/locale/sr/LC_MESSAGES/jefferson.mo -share/locale/sr/LC_MESSAGES/joystick.mo -share/locale/sr/LC_MESSAGES/juk.mo -share/locale/sr/LC_MESSAGES/kabc2mutt.mo -share/locale/sr/LC_MESSAGES/kabc_dir.mo -share/locale/sr/LC_MESSAGES/kabc_file.mo -share/locale/sr/LC_MESSAGES/kabc_ldap.mo -share/locale/sr/LC_MESSAGES/kabc_ldapkio.mo -share/locale/sr/LC_MESSAGES/kabc_net.mo -share/locale/sr/LC_MESSAGES/kabc_slox.mo -share/locale/sr/LC_MESSAGES/kabc_sql.mo -share/locale/sr/LC_MESSAGES/kabcformat_binary.mo -share/locale/sr/LC_MESSAGES/kaboodle.mo -share/locale/sr/LC_MESSAGES/kaccess.mo -share/locale/sr/LC_MESSAGES/kaddressbook.mo -share/locale/sr/LC_MESSAGES/kalarm.mo -share/locale/sr/LC_MESSAGES/kalzium.mo -share/locale/sr/LC_MESSAGES/kandy.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/katecppsymbolviewer.mo -share/locale/sr/LC_MESSAGES/katedefaultproject.mo -share/locale/sr/LC_MESSAGES/katefiletemplates.mo -share/locale/sr/LC_MESSAGES/katefll_initplugin.mo -share/locale/sr/LC_MESSAGES/katefll_plugin.mo -share/locale/sr/LC_MESSAGES/katehelloworld.mo -share/locale/sr/LC_MESSAGES/katehtmltools.mo -share/locale/sr/LC_MESSAGES/kateinsertcommand.mo -share/locale/sr/LC_MESSAGES/katekjswrapper.mo -share/locale/sr/LC_MESSAGES/katekttsd.mo -share/locale/sr/LC_MESSAGES/katemake.mo -share/locale/sr/LC_MESSAGES/katemodeline.mo -share/locale/sr/LC_MESSAGES/kateopenheader.mo -share/locale/sr/LC_MESSAGES/katepart.mo -share/locale/sr/LC_MESSAGES/katepartkttsd.mo -share/locale/sr/LC_MESSAGES/kateprojectmanager.mo -share/locale/sr/LC_MESSAGES/katepybrowse.mo -share/locale/sr/LC_MESSAGES/katesnippets.mo -share/locale/sr/LC_MESSAGES/katespell.mo -share/locale/sr/LC_MESSAGES/katetabbarextension.mo -share/locale/sr/LC_MESSAGES/katetextfilter.mo -share/locale/sr/LC_MESSAGES/katexmlcheck.mo -share/locale/sr/LC_MESSAGES/katexmltools.mo -share/locale/sr/LC_MESSAGES/katomic.mo -share/locale/sr/LC_MESSAGES/kaudiocreator.mo -share/locale/sr/LC_MESSAGES/kbabel.mo -share/locale/sr/LC_MESSAGES/kbackgammon.mo -share/locale/sr/LC_MESSAGES/kbattleship.mo -share/locale/sr/LC_MESSAGES/kbinaryclock.mo -share/locale/sr/LC_MESSAGES/kblackbox.mo -share/locale/sr/LC_MESSAGES/kbounce.mo -share/locale/sr/LC_MESSAGES/kbruch.mo -share/locale/sr/LC_MESSAGES/kbstateapplet.mo -share/locale/sr/LC_MESSAGES/kbugbuster.mo -share/locale/sr/LC_MESSAGES/kcachegrind.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/kcm_krfb.mo -share/locale/sr/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/sr/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/sr/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/sr/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/sr/LC_MESSAGES/kcmaccess.mo -share/locale/sr/LC_MESSAGES/kcmaccessibility.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/kcmcddb.mo -share/locale/sr/LC_MESSAGES/kcmcgi.mo -share/locale/sr/LC_MESSAGES/kcmcolors.mo -share/locale/sr/LC_MESSAGES/kcmcomponentchooser.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/kcmkabconfig.mo -share/locale/sr/LC_MESSAGES/kcmkamera.mo -share/locale/sr/LC_MESSAGES/kcmkclock.mo -share/locale/sr/LC_MESSAGES/kcmkded.mo -share/locale/sr/LC_MESSAGES/kcmkdnssd.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/kcmkontactnt.mo -share/locale/sr/LC_MESSAGES/kcmktalkd.mo -share/locale/sr/LC_MESSAGES/kcmkttsd.mo -share/locale/sr/LC_MESSAGES/kcmkuick.mo -share/locale/sr/LC_MESSAGES/kcmkurifilt.mo -share/locale/sr/LC_MESSAGES/kcmkvaio.mo -share/locale/sr/LC_MESSAGES/kcmkwallet.mo -share/locale/sr/LC_MESSAGES/kcmkwindecoration.mo -share/locale/sr/LC_MESSAGES/kcmkwinrules.mo -share/locale/sr/LC_MESSAGES/kcmkwintheme.mo -share/locale/sr/LC_MESSAGES/kcmkwm.mo -share/locale/sr/LC_MESSAGES/kcmkxmlrpcd.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/kcmlirc.mo -share/locale/sr/LC_MESSAGES/kcmlocale.mo -share/locale/sr/LC_MESSAGES/kcmmediacontrol.mo -share/locale/sr/LC_MESSAGES/kcmmidi.mo -share/locale/sr/LC_MESSAGES/kcmnic.mo -share/locale/sr/LC_MESSAGES/kcmnotify.mo -share/locale/sr/LC_MESSAGES/kcmperformance.mo -share/locale/sr/LC_MESSAGES/kcmprintmgr.mo -share/locale/sr/LC_MESSAGES/kcmsamba.mo -share/locale/sr/LC_MESSAGES/kcmscreensaver.mo -share/locale/sr/LC_MESSAGES/kcmshell.mo -share/locale/sr/LC_MESSAGES/kcmsmartcard.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/kcmthinkpad.mo -share/locale/sr/LC_MESSAGES/kcmusb.mo -share/locale/sr/LC_MESSAGES/kcmview1394.mo -share/locale/sr/LC_MESSAGES/kcmvim.mo -share/locale/sr/LC_MESSAGES/kcmwifi.mo -share/locale/sr/LC_MESSAGES/kcmxinerama.mo -share/locale/sr/LC_MESSAGES/kcoloredit.mo -share/locale/sr/LC_MESSAGES/kcontrol.mo -share/locale/sr/LC_MESSAGES/kcron.mo -share/locale/sr/LC_MESSAGES/kdat.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/kdelibs_colors.mo -share/locale/sr/LC_MESSAGES/kdelirc.mo -share/locale/sr/LC_MESSAGES/kdepasswd.mo -share/locale/sr/LC_MESSAGES/kdepimresources.mo -share/locale/sr/LC_MESSAGES/kdepimwizards.mo -share/locale/sr/LC_MESSAGES/kdeprint.mo -share/locale/sr/LC_MESSAGES/kdeprint_part.mo -share/locale/sr/LC_MESSAGES/kdeprintfax.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/kdevdesigner.mo -share/locale/sr/LC_MESSAGES/kdevelop.mo -share/locale/sr/LC_MESSAGES/kdevtipofday.mo -share/locale/sr/LC_MESSAGES/kdf.mo -share/locale/sr/LC_MESSAGES/kdgantt.mo -share/locale/sr/LC_MESSAGES/kdialog.mo -share/locale/sr/LC_MESSAGES/kdict.mo -share/locale/sr/LC_MESSAGES/kdictapplet.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/keduca.mo -share/locale/sr/LC_MESSAGES/kenolaba.mo -share/locale/sr/LC_MESSAGES/kfax.mo -share/locale/sr/LC_MESSAGES/kfifteenapplet.mo -share/locale/sr/LC_MESSAGES/kfile_au.mo -share/locale/sr/LC_MESSAGES/kfile_avi.mo -share/locale/sr/LC_MESSAGES/kfile_bmp.mo -share/locale/sr/LC_MESSAGES/kfile_cert.mo -share/locale/sr/LC_MESSAGES/kfile_cpp.mo -share/locale/sr/LC_MESSAGES/kfile_dds.mo -share/locale/sr/LC_MESSAGES/kfile_deb.mo -share/locale/sr/LC_MESSAGES/kfile_desktop.mo -share/locale/sr/LC_MESSAGES/kfile_diff.mo -share/locale/sr/LC_MESSAGES/kfile_drgeo.mo -share/locale/sr/LC_MESSAGES/kfile_dvi.mo -share/locale/sr/LC_MESSAGES/kfile_exr.mo -share/locale/sr/LC_MESSAGES/kfile_flac.mo -share/locale/sr/LC_MESSAGES/kfile_folder.mo -share/locale/sr/LC_MESSAGES/kfile_font.mo -share/locale/sr/LC_MESSAGES/kfile_gif.mo -share/locale/sr/LC_MESSAGES/kfile_html.mo -share/locale/sr/LC_MESSAGES/kfile_ico.mo -share/locale/sr/LC_MESSAGES/kfile_ics.mo -share/locale/sr/LC_MESSAGES/kfile_jpeg.mo -share/locale/sr/LC_MESSAGES/kfile_kig.mo -share/locale/sr/LC_MESSAGES/kfile_lnk.mo -share/locale/sr/LC_MESSAGES/kfile_m3u.mo -share/locale/sr/LC_MESSAGES/kfile_mhtml.mo -share/locale/sr/LC_MESSAGES/kfile_mp3.mo -share/locale/sr/LC_MESSAGES/kfile_mpc.mo -share/locale/sr/LC_MESSAGES/kfile_ogg.mo -share/locale/sr/LC_MESSAGES/kfile_palm.mo -share/locale/sr/LC_MESSAGES/kfile_pcx.mo -share/locale/sr/LC_MESSAGES/kfile_pdf.mo -share/locale/sr/LC_MESSAGES/kfile_png.mo -share/locale/sr/LC_MESSAGES/kfile_pnm.mo -share/locale/sr/LC_MESSAGES/kfile_po.mo -share/locale/sr/LC_MESSAGES/kfile_ps.mo -share/locale/sr/LC_MESSAGES/kfile_rfc822.mo -share/locale/sr/LC_MESSAGES/kfile_rgb.mo -share/locale/sr/LC_MESSAGES/kfile_rpm.mo -share/locale/sr/LC_MESSAGES/kfile_sid.mo -share/locale/sr/LC_MESSAGES/kfile_tga.mo -share/locale/sr/LC_MESSAGES/kfile_theora.mo -share/locale/sr/LC_MESSAGES/kfile_tiff.mo -share/locale/sr/LC_MESSAGES/kfile_torrent.mo -share/locale/sr/LC_MESSAGES/kfile_ts.mo -share/locale/sr/LC_MESSAGES/kfile_txt.mo -share/locale/sr/LC_MESSAGES/kfile_vcf.mo -share/locale/sr/LC_MESSAGES/kfile_wav.mo -share/locale/sr/LC_MESSAGES/kfile_xbm.mo -share/locale/sr/LC_MESSAGES/kfile_xpm.mo -share/locale/sr/LC_MESSAGES/kfileaudiopreview.mo -share/locale/sr/LC_MESSAGES/kfilereplace.mo -share/locale/sr/LC_MESSAGES/kfileshare.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/kfontinst.mo -share/locale/sr/LC_MESSAGES/kfouleggs.mo -share/locale/sr/LC_MESSAGES/kgamma.mo -share/locale/sr/LC_MESSAGES/kgantt.mo -share/locale/sr/LC_MESSAGES/kget.mo -share/locale/sr/LC_MESSAGES/kghostview.mo -share/locale/sr/LC_MESSAGES/kgoldrunner.mo -share/locale/sr/LC_MESSAGES/kgpg.mo -share/locale/sr/LC_MESSAGES/kgreet_classic.mo -share/locale/sr/LC_MESSAGES/kgreet_winbind.mo -share/locale/sr/LC_MESSAGES/khangman.mo -share/locale/sr/LC_MESSAGES/khelpcenter.mo -share/locale/sr/LC_MESSAGES/khexedit.mo -share/locale/sr/LC_MESSAGES/khexedit2part.mo -share/locale/sr/LC_MESSAGES/khotkeys.mo -share/locale/sr/LC_MESSAGES/khtmlkttsd.mo -share/locale/sr/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/sr/LC_MESSAGES/kicker.mo -share/locale/sr/LC_MESSAGES/kiconedit.mo -share/locale/sr/LC_MESSAGES/kig.mo -share/locale/sr/LC_MESSAGES/kimagemapeditor.mo -share/locale/sr/LC_MESSAGES/kinetd.mo -share/locale/sr/LC_MESSAGES/kio.mo -share/locale/sr/LC_MESSAGES/kio_audiocd.mo -share/locale/sr/LC_MESSAGES/kio_devices.mo -share/locale/sr/LC_MESSAGES/kio_finger.mo -share/locale/sr/LC_MESSAGES/kio_fish.mo -share/locale/sr/LC_MESSAGES/kio_floppy.mo -share/locale/sr/LC_MESSAGES/kio_groupwise.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_ldap.mo -share/locale/sr/LC_MESSAGES/kio_mac.mo -share/locale/sr/LC_MESSAGES/kio_man.mo -share/locale/sr/LC_MESSAGES/kio_media.mo -share/locale/sr/LC_MESSAGES/kio_mobile.mo -share/locale/sr/LC_MESSAGES/kio_newimap4.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_print.mo -share/locale/sr/LC_MESSAGES/kio_remote.mo -share/locale/sr/LC_MESSAGES/kio_settings.mo -share/locale/sr/LC_MESSAGES/kio_sftp.mo -share/locale/sr/LC_MESSAGES/kio_sieve.mo -share/locale/sr/LC_MESSAGES/kio_smb.mo -share/locale/sr/LC_MESSAGES/kio_smtp.mo -share/locale/sr/LC_MESSAGES/kio_svn.mo -share/locale/sr/LC_MESSAGES/kio_system.mo -share/locale/sr/LC_MESSAGES/kio_trash.mo -share/locale/sr/LC_MESSAGES/kio_zeroconf.mo -share/locale/sr/LC_MESSAGES/kioexec.mo -share/locale/sr/LC_MESSAGES/kiten.mo -share/locale/sr/LC_MESSAGES/kjobviewer.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/klatin.mo -share/locale/sr/LC_MESSAGES/klegacyimport.mo -share/locale/sr/LC_MESSAGES/kleopatra.mo -share/locale/sr/LC_MESSAGES/klettres.mo -share/locale/sr/LC_MESSAGES/klickety.mo -share/locale/sr/LC_MESSAGES/klines.mo -share/locale/sr/LC_MESSAGES/klinkstatus.mo -share/locale/sr/LC_MESSAGES/klipper.mo -share/locale/sr/LC_MESSAGES/klock.mo -share/locale/sr/LC_MESSAGES/kmag.mo -share/locale/sr/LC_MESSAGES/kmahjongg.mo -share/locale/sr/LC_MESSAGES/kmail.mo -share/locale/sr/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/sr/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/sr/LC_MESSAGES/kmailcvt.mo -share/locale/sr/LC_MESSAGES/kmathapplet.mo -share/locale/sr/LC_MESSAGES/kmathtool.mo -share/locale/sr/LC_MESSAGES/kmcop.mo -share/locale/sr/LC_MESSAGES/kmenuapplet.mo -share/locale/sr/LC_MESSAGES/kmenuedit.mo -share/locale/sr/LC_MESSAGES/kmessedwords.mo -share/locale/sr/LC_MESSAGES/kmid.mo -share/locale/sr/LC_MESSAGES/kmilo_delli8k.mo -share/locale/sr/LC_MESSAGES/kmilo_generic.mo -share/locale/sr/LC_MESSAGES/kmilo_kvaio.mo -share/locale/sr/LC_MESSAGES/kmilo_powerbook.mo -share/locale/sr/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/sr/LC_MESSAGES/kmilod.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/kmobile.mo -share/locale/sr/LC_MESSAGES/kmoon.mo -share/locale/sr/LC_MESSAGES/kmousetool.mo -share/locale/sr/LC_MESSAGES/kmouth.mo -share/locale/sr/LC_MESSAGES/kmplot.mo -share/locale/sr/LC_MESSAGES/kmrml.mo -share/locale/sr/LC_MESSAGES/knetattach.mo -share/locale/sr/LC_MESSAGES/knewsticker.mo -share/locale/sr/LC_MESSAGES/knode.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/kolf.mo -share/locale/sr/LC_MESSAGES/kolourpaint.mo -share/locale/sr/LC_MESSAGES/kolourpicker.mo -share/locale/sr/LC_MESSAGES/kommander.mo -share/locale/sr/LC_MESSAGES/kompare.mo -share/locale/sr/LC_MESSAGES/konnector_dummy.mo -share/locale/sr/LC_MESSAGES/konnector_kabc.mo -share/locale/sr/LC_MESSAGES/konnector_kcal.mo -share/locale/sr/LC_MESSAGES/konnector_local.mo -share/locale/sr/LC_MESSAGES/konnector_qtopia.mo -share/locale/sr/LC_MESSAGES/konnector_remote.mo -share/locale/sr/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/sr/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/sr/LC_MESSAGES/konqsidebar_news.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/konsolekalendar.mo -share/locale/sr/LC_MESSAGES/kontact.mo -share/locale/sr/LC_MESSAGES/kooka.mo -share/locale/sr/LC_MESSAGES/kopete.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/kpartapp.mo -share/locale/sr/LC_MESSAGES/kpartsaver.mo -share/locale/sr/LC_MESSAGES/kpat.mo -share/locale/sr/LC_MESSAGES/kpdf.mo -share/locale/sr/LC_MESSAGES/kpercentage.mo -share/locale/sr/LC_MESSAGES/kpersonalizer.mo -share/locale/sr/LC_MESSAGES/kpf.mo -share/locale/sr/LC_MESSAGES/kpilot.mo -share/locale/sr/LC_MESSAGES/kpoker.mo -share/locale/sr/LC_MESSAGES/kpovmodeler.mo -share/locale/sr/LC_MESSAGES/kppp.mo -share/locale/sr/LC_MESSAGES/kppplogview.mo -share/locale/sr/LC_MESSAGES/kprinter.mo -share/locale/sr/LC_MESSAGES/krandr.mo -share/locale/sr/LC_MESSAGES/krdb.mo -share/locale/sr/LC_MESSAGES/krdc.mo -share/locale/sr/LC_MESSAGES/kreadconfig.mo -share/locale/sr/LC_MESSAGES/krec.mo -share/locale/sr/LC_MESSAGES/kregexpeditor.mo -share/locale/sr/LC_MESSAGES/kres_blogging.mo -share/locale/sr/LC_MESSAGES/kres_bugzilla.mo -share/locale/sr/LC_MESSAGES/kres_exchange.mo -share/locale/sr/LC_MESSAGES/kres_featureplan.mo -share/locale/sr/LC_MESSAGES/kres_groupwise.mo -share/locale/sr/LC_MESSAGES/kres_kolab.mo -share/locale/sr/LC_MESSAGES/kres_opengroupware.mo -share/locale/sr/LC_MESSAGES/kres_remote.mo -share/locale/sr/LC_MESSAGES/kres_xmlrpc.mo -share/locale/sr/LC_MESSAGES/kreversi.mo -share/locale/sr/LC_MESSAGES/krfb.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/ksayit.mo -share/locale/sr/LC_MESSAGES/kscd.mo -share/locale/sr/LC_MESSAGES/kscreensaver.mo -share/locale/sr/LC_MESSAGES/kshisen.mo -share/locale/sr/LC_MESSAGES/ksig.mo -share/locale/sr/LC_MESSAGES/ksim.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/ksplashthemes.mo -share/locale/sr/LC_MESSAGES/kstars.mo -share/locale/sr/LC_MESSAGES/kstart.mo -share/locale/sr/LC_MESSAGES/kstartperf.mo -share/locale/sr/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/sr/LC_MESSAGES/kstyle_phase_config.mo -share/locale/sr/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/sr/LC_MESSAGES/ksvgplugin.mo -share/locale/sr/LC_MESSAGES/ksync.mo -share/locale/sr/LC_MESSAGES/ksysguard.mo -share/locale/sr/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/sr/LC_MESSAGES/ksystraycmd.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/ktexteditor_autobookmarker.mo -share/locale/sr/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/sr/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/sr/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/sr/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/sr/LC_MESSAGES/ktexteditor_kttsd.mo -share/locale/sr/LC_MESSAGES/kthememanager.mo -share/locale/sr/LC_MESSAGES/ktimemon.mo -share/locale/sr/LC_MESSAGES/ktimer.mo -share/locale/sr/LC_MESSAGES/ktip.mo -share/locale/sr/LC_MESSAGES/ktnef.mo -share/locale/sr/LC_MESSAGES/ktouch.mo -share/locale/sr/LC_MESSAGES/ktron.mo -share/locale/sr/LC_MESSAGES/kttsd.mo -share/locale/sr/LC_MESSAGES/kttsd_commandplugin.mo -share/locale/sr/LC_MESSAGES/kttsd_eposplugin.mo -share/locale/sr/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/sr/LC_MESSAGES/kttsd_fliteplugin.mo -share/locale/sr/LC_MESSAGES/kttsd_freettsplugin.mo -share/locale/sr/LC_MESSAGES/kttsd_hadifixplugin.mo -share/locale/sr/LC_MESSAGES/kttsd_sbdplugin.mo -share/locale/sr/LC_MESSAGES/kttsd_stringreplacerplugin.mo -share/locale/sr/LC_MESSAGES/kttsd_talkerchooserplugin.mo -share/locale/sr/LC_MESSAGES/kttsd_xmltransformerplugin.mo -share/locale/sr/LC_MESSAGES/kttsjobmgr.mo -share/locale/sr/LC_MESSAGES/kttsmgr.mo -share/locale/sr/LC_MESSAGES/ktuberling.mo -share/locale/sr/LC_MESSAGES/kturtle.mo -share/locale/sr/LC_MESSAGES/ktux.mo -share/locale/sr/LC_MESSAGES/kuick_plugin.mo -share/locale/sr/LC_MESSAGES/kuickshow.mo -share/locale/sr/LC_MESSAGES/kuiviewer.mo -share/locale/sr/LC_MESSAGES/kuser.mo -share/locale/sr/LC_MESSAGES/kverbos.mo -share/locale/sr/LC_MESSAGES/kview.mo -share/locale/sr/LC_MESSAGES/kview_scale.mo -share/locale/sr/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/sr/LC_MESSAGES/kviewcanvas.mo -share/locale/sr/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/sr/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/sr/LC_MESSAGES/kviewscannerplugin.mo -share/locale/sr/LC_MESSAGES/kviewshell.mo -share/locale/sr/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/sr/LC_MESSAGES/kviewviewer.mo -share/locale/sr/LC_MESSAGES/kvoctrain.mo -share/locale/sr/LC_MESSAGES/kwalletmanager.mo -share/locale/sr/LC_MESSAGES/kwatchgnupg.mo -share/locale/sr/LC_MESSAGES/kweather.mo -share/locale/sr/LC_MESSAGES/kwifimanager.mo -share/locale/sr/LC_MESSAGES/kwin.mo -share/locale/sr/LC_MESSAGES/kwin4.mo -share/locale/sr/LC_MESSAGES/kwin_art_clients.mo -share/locale/sr/LC_MESSAGES/kwin_clients.mo -share/locale/sr/LC_MESSAGES/kwireless.mo -share/locale/sr/LC_MESSAGES/kwordquiz.mo -share/locale/sr/LC_MESSAGES/kworldclock.mo -share/locale/sr/LC_MESSAGES/kwriteconfig.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/kxsldbg.mo -share/locale/sr/LC_MESSAGES/libKTTSD.mo -share/locale/sr/LC_MESSAGES/libcalendarresources.mo -share/locale/sr/LC_MESSAGES/libdmctl.mo -share/locale/sr/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/sr/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/sr/LC_MESSAGES/libkcal.mo -share/locale/sr/LC_MESSAGES/libkcalsystem.mo -share/locale/sr/LC_MESSAGES/libkcddb.mo -share/locale/sr/LC_MESSAGES/libkdegames.mo -share/locale/sr/LC_MESSAGES/libkdehighscores.mo -share/locale/sr/LC_MESSAGES/libkdenetwork.mo -share/locale/sr/LC_MESSAGES/libkdepim.mo -share/locale/sr/LC_MESSAGES/libkholidays.mo -share/locale/sr/LC_MESSAGES/libkicker.mo -share/locale/sr/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/sr/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/sr/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/sr/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/sr/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/sr/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/sr/LC_MESSAGES/libkickermenu_tom.mo -share/locale/sr/LC_MESSAGES/libkleopatra.mo -share/locale/sr/LC_MESSAGES/libkmime.mo -share/locale/sr/LC_MESSAGES/libkonq.mo -share/locale/sr/LC_MESSAGES/libkpgp.mo -share/locale/sr/LC_MESSAGES/libkpimexchange.mo -share/locale/sr/LC_MESSAGES/libkscan.mo -share/locale/sr/LC_MESSAGES/libkscreensaver.mo -share/locale/sr/LC_MESSAGES/libksieve.mo -share/locale/sr/LC_MESSAGES/libksirtet.mo -share/locale/sr/LC_MESSAGES/libksync.mo -share/locale/sr/LC_MESSAGES/libtaskbar.mo -share/locale/sr/LC_MESSAGES/libtaskmanager.mo -share/locale/sr/LC_MESSAGES/lockout.mo -share/locale/sr/LC_MESSAGES/lskat.mo -share/locale/sr/LC_MESSAGES/lyrics.mo -share/locale/sr/LC_MESSAGES/mediaapplet.mo -share/locale/sr/LC_MESSAGES/mediacontrol.mo -share/locale/sr/LC_MESSAGES/minitoolsplugin.mo -share/locale/sr/LC_MESSAGES/multisynk.mo -share/locale/sr/LC_MESSAGES/naughtyapplet.mo -share/locale/sr/LC_MESSAGES/nexscope.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/pitchablespeed.mo -share/locale/sr/LC_MESSAGES/ppdtranslations.mo -share/locale/sr/LC_MESSAGES/privacy.mo -share/locale/sr/LC_MESSAGES/qeditor.mo -share/locale/sr/LC_MESSAGES/quanta.mo -share/locale/sr/LC_MESSAGES/quicklauncher.mo -share/locale/sr/LC_MESSAGES/rellinks.mo -share/locale/sr/LC_MESSAGES/searchbarplugin.mo -share/locale/sr/LC_MESSAGES/secpolicy.mo -share/locale/sr/LC_MESSAGES/spy.mo -share/locale/sr/LC_MESSAGES/synaescope.mo -share/locale/sr/LC_MESSAGES/taskbarextension.mo -share/locale/sr/LC_MESSAGES/timezones.mo -share/locale/sr/LC_MESSAGES/tippecanoe.mo -share/locale/sr/LC_MESSAGES/trashapplet.mo -share/locale/sr/LC_MESSAGES/tyler.mo -share/locale/sr/LC_MESSAGES/uachangerplugin.mo -share/locale/sr/LC_MESSAGES/umbrello.mo -share/locale/sr/LC_MESSAGES/useraccount.mo -share/locale/sr/LC_MESSAGES/validatorsplugin.mo -share/locale/sr/LC_MESSAGES/vimpart.mo -share/locale/sr/LC_MESSAGES/wakeup.mo -share/locale/sr/LC_MESSAGES/wavecapture.mo -share/locale/sr/LC_MESSAGES/webarchiver.mo -share/locale/sr/charset -share/locale/sr/entry.desktop -share/locale/sr/flag.png -@dirrm share/doc/HTML/sr/khelpcenter -@dirrm share/doc/HTML/sr/common -@dirrm share/apps/kturtle/examples/sr -@dirrm share/apps/kturtle/examples -@dirrm share/apps/kturtle/data -@dirrm share/apps/kturtle -@dirrm share/apps/khangman/data/sr -@dirrm share/apps/khangman/data -@dirrm share/apps/khangman diff --git a/misc/kde4-l10n-sv/Makefile b/misc/kde4-l10n-sv/Makefile deleted file mode 100644 index d84ab728a1ea..000000000000 --- a/misc/kde4-l10n-sv/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-sv -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= sv- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Swedish messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-sv/distinfo b/misc/kde4-l10n-sv/distinfo deleted file mode 100644 index 547f32f1c011..000000000000 --- a/misc/kde4-l10n-sv/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-sv-3.4.2.tar.bz2) = 2f2f3f79924bfb2f75ee9f389e030b96 -SIZE (KDE/kde-i18n/kde-i18n-sv-3.4.2.tar.bz2) = 26630187 diff --git a/misc/kde4-l10n-sv/pkg-descr b/misc/kde4-l10n-sv/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-sv/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-sv/pkg-plist b/misc/kde4-l10n-sv/pkg-plist deleted file mode 100644 index 95fcaccbe2c7..000000000000 --- a/misc/kde4-l10n-sv/pkg-plist +++ /dev/null @@ -1,2880 +0,0 @@ -share/apps/katepart/syntax/logohighlightstyle.sv.xml -share/apps/khangman/data/sv/animals.kvtml -share/apps/khangman/data/sv/easy.kvtml -share/apps/khangman/data/sv/hard.kvtml -share/apps/khangman/data/sv/medium.kvtml -share/apps/khangman/sv.txt -share/apps/ktuberling/sounds/sv/brosch.wav -share/apps/ktuberling/sounds/sv/cigarr.wav -share/apps/ktuberling/sounds/sv/fluga.wav -share/apps/ktuberling/sounds/sv/glasogon.wav -share/apps/ktuberling/sounds/sv/halsband.wav -share/apps/ktuberling/sounds/sv/halsduk.wav -share/apps/ktuberling/sounds/sv/har.wav -share/apps/ktuberling/sounds/sv/hatt.wav -share/apps/ktuberling/sounds/sv/horn.wav -share/apps/ktuberling/sounds/sv/klocka.wav -share/apps/ktuberling/sounds/sv/mun.wav -share/apps/ktuberling/sounds/sv/mustasch.wav -share/apps/ktuberling/sounds/sv/nasa.wav -share/apps/ktuberling/sounds/sv/oga.wav -share/apps/ktuberling/sounds/sv/ogonbryn.wav -share/apps/ktuberling/sounds/sv/ora.wav -share/apps/ktuberling/sounds/sv/orhange.wav -share/apps/ktuberling/sounds/sv/pingvin.wav -share/apps/ktuberling/sounds/sv/potatismannen.wav -share/apps/ktuberling/sounds/sv/rosett.wav -share/apps/ktuberling/sounds/sv/slips.wav -share/apps/ktuberling/sounds/sv/solglasogon.wav -share/apps/kturtle/data/logokeywords.sv.xml -share/apps/kturtle/examples/sv/dukfarg.logo -share/apps/kturtle/examples/sv/fyrkant.logo -share/apps/kturtle/examples/sv/fyrkanter.logo -share/apps/kturtle/examples/sv/multiplikation.logo -share/apps/kturtle/examples/sv/pil.logo -share/apps/kturtle/examples/sv/slumpnamn.logo -share/apps/kturtle/examples/sv/snurrig.logo -share/apps/kturtle/examples/sv/triangel.logo -share/doc/HTML/sv/KRegExpEditor/altntool.png -share/doc/HTML/sv/KRegExpEditor/anychartool.png -share/doc/HTML/sv/KRegExpEditor/boundarytools.png -share/doc/HTML/sv/KRegExpEditor/charactertool.png -share/doc/HTML/sv/KRegExpEditor/common -share/doc/HTML/sv/KRegExpEditor/compoundtool.png -share/doc/HTML/sv/KRegExpEditor/index.cache.bz2 -share/doc/HTML/sv/KRegExpEditor/index.docbook -share/doc/HTML/sv/KRegExpEditor/linestartendtool.png -share/doc/HTML/sv/KRegExpEditor/lookaheadtools.png -share/doc/HTML/sv/KRegExpEditor/repeattool.png -share/doc/HTML/sv/KRegExpEditor/theEditor.png -share/doc/HTML/sv/akregator/common -share/doc/HTML/sv/akregator/index.cache.bz2 -share/doc/HTML/sv/akregator/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/amor/man-amor.6.docbook -share/doc/HTML/sv/ark/common -share/doc/HTML/sv/ark/index.cache.bz2 -share/doc/HTML/sv/ark/index.docbook -share/doc/HTML/sv/artsbuilder/apis.docbook -share/doc/HTML/sv/artsbuilder/arts-structure.png -share/doc/HTML/sv/artsbuilder/artsbuilder.docbook -share/doc/HTML/sv/artsbuilder/common -share/doc/HTML/sv/artsbuilder/detail.docbook -share/doc/HTML/sv/artsbuilder/digitalaudio.docbook -share/doc/HTML/sv/artsbuilder/faq.docbook -share/doc/HTML/sv/artsbuilder/future.docbook -share/doc/HTML/sv/artsbuilder/glossary.docbook -share/doc/HTML/sv/artsbuilder/gui.docbook -share/doc/HTML/sv/artsbuilder/helping.docbook -share/doc/HTML/sv/artsbuilder/images/Synth_AMAN_PLAY.png -share/doc/HTML/sv/artsbuilder/images/Synth_AMAN_RECORD.png -share/doc/HTML/sv/artsbuilder/images/Synth_BRICKWALL_LIMITER.png -share/doc/HTML/sv/artsbuilder/images/Synth_CAPTURE.png -share/doc/HTML/sv/artsbuilder/images/Synth_DATA.png -share/doc/HTML/sv/artsbuilder/images/Synth_FREEVERB.png -share/doc/HTML/sv/artsbuilder/images/Synth_FX_CFLANGER.png -share/doc/HTML/sv/artsbuilder/images/Synth_MIDI_TEST.png -share/doc/HTML/sv/artsbuilder/images/Synth_MOOG_VCF.png -share/doc/HTML/sv/artsbuilder/images/Synth_MULTI_ADD.png -share/doc/HTML/sv/artsbuilder/images/Synth_NOISE.png -share/doc/HTML/sv/artsbuilder/images/Synth_PITCH_SHIFT.png -share/doc/HTML/sv/artsbuilder/images/Synth_RECORD.png -share/doc/HTML/sv/artsbuilder/images/Synth_TREMOLO.png -share/doc/HTML/sv/artsbuilder/images/Synth_WAVE_PULSE.png -share/doc/HTML/sv/artsbuilder/images/Synth_WAVE_SOFTSAW.png -share/doc/HTML/sv/artsbuilder/index.cache.bz2 -share/doc/HTML/sv/artsbuilder/index.docbook -share/doc/HTML/sv/artsbuilder/mcop.docbook -share/doc/HTML/sv/artsbuilder/midi.docbook -share/doc/HTML/sv/artsbuilder/midiintro.docbook -share/doc/HTML/sv/artsbuilder/modules.docbook -share/doc/HTML/sv/artsbuilder/porting.docbook -share/doc/HTML/sv/artsbuilder/references.docbook -share/doc/HTML/sv/artsbuilder/tools.docbook -share/doc/HTML/sv/atlantik/common -share/doc/HTML/sv/atlantik/index.cache.bz2 -share/doc/HTML/sv/atlantik/index.docbook -share/doc/HTML/sv/atlantik/man-atlantik.6.docbook -share/doc/HTML/sv/cervisia/annotate.png -share/doc/HTML/sv/cervisia/checkout.png -share/doc/HTML/sv/cervisia/commit.png -share/doc/HTML/sv/cervisia/common -share/doc/HTML/sv/cervisia/diff.png -share/doc/HTML/sv/cervisia/history.png -share/doc/HTML/sv/cervisia/import.png -share/doc/HTML/sv/cervisia/index.cache.bz2 -share/doc/HTML/sv/cervisia/index.docbook -share/doc/HTML/sv/cervisia/logtree.png -share/doc/HTML/sv/cervisia/mainview.png -share/doc/HTML/sv/cervisia/patch.png -share/doc/HTML/sv/cervisia/popup.png -share/doc/HTML/sv/cervisia/repositories.png -share/doc/HTML/sv/cervisia/resolve.png -share/doc/HTML/sv/cervisia/updatetag.png -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/appheader.html -share/doc/HTML/sv/common/artistic-license.html -share/doc/HTML/sv/common/bottom-left.png -share/doc/HTML/sv/common/bottom-middle.png -share/doc/HTML/sv/common/bottom-right.png -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/docheadergears.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/doxygen.css -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/footer.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/grad.png -share/doc/HTML/sv/common/header.html -share/doc/HTML/sv/common/headerbg.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/kde-web.css -share/doc/HTML/sv/common/kde_logo.png -share/doc/HTML/sv/common/kde_logo_bg.png -share/doc/HTML/sv/common/kmenu.png -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.png -share/doc/HTML/sv/common/mainfooter.html -share/doc/HTML/sv/common/mainheader.html -share/doc/HTML/sv/common/qpl-license.html -share/doc/HTML/sv/common/shadow.png -share/doc/HTML/sv/common/top-left.png -share/doc/HTML/sv/common/top-middle.png -share/doc/HTML/sv/common/top-right-konqueror.png -share/doc/HTML/sv/common/web-docbottom.png -share/doc/HTML/sv/common/web-doctop.png -share/doc/HTML/sv/common/x11-license.html -share/doc/HTML/sv/common/xml.dcl -share/doc/HTML/sv/juk/common -share/doc/HTML/sv/juk/history-playlist.png -share/doc/HTML/sv/juk/index.cache.bz2 -share/doc/HTML/sv/juk/index.docbook -share/doc/HTML/sv/juk/juk-adv-search.png -share/doc/HTML/sv/juk/juk-file-renamer.png -share/doc/HTML/sv/juk/juk-main.png -share/doc/HTML/sv/juk/juk-tag-guesser.png -share/doc/HTML/sv/juk/search-playlist.png -share/doc/HTML/sv/kaboodle/common -share/doc/HTML/sv/kaboodle/index.cache.bz2 -share/doc/HTML/sv/kaboodle/index.docbook -share/doc/HTML/sv/kaddressbook/addhost.png -share/doc/HTML/sv/kaddressbook/common -share/doc/HTML/sv/kaddressbook/conf.png -share/doc/HTML/sv/kaddressbook/contactdlg.png -share/doc/HTML/sv/kaddressbook/edit_instant_messenging.png -share/doc/HTML/sv/kaddressbook/exportdlg.png -share/doc/HTML/sv/kaddressbook/extension.png -share/doc/HTML/sv/kaddressbook/filtereditdlg.png -share/doc/HTML/sv/kaddressbook/index.cache.bz2 -share/doc/HTML/sv/kaddressbook/index.docbook -share/doc/HTML/sv/kaddressbook/mainwin.png -share/doc/HTML/sv/kaddressbook/resourcedlg.png -share/doc/HTML/sv/kaddressbook/resourcesdlg.png -share/doc/HTML/sv/kaddressbook/vieweditdlg.png -share/doc/HTML/sv/kalarm/alarmmessage.png -share/doc/HTML/sv/kalarm/common -share/doc/HTML/sv/kalarm/editwindow.png -share/doc/HTML/sv/kalarm/index.cache.bz2 -share/doc/HTML/sv/kalarm/index.docbook -share/doc/HTML/sv/kalarm/mainwindow.png -share/doc/HTML/sv/kalzium/common -share/doc/HTML/sv/kalzium/index.cache.bz2 -share/doc/HTML/sv/kalzium/index.docbook -share/doc/HTML/sv/kalzium/man-kalzium.1.docbook -share/doc/HTML/sv/kalzium/screenshot1.png -share/doc/HTML/sv/kalzium/screenshot2.png -share/doc/HTML/sv/kalzium/screenshot3.png -share/doc/HTML/sv/kalzium/screenshot4.png -share/doc/HTML/sv/kalzium/screenshot5.png -share/doc/HTML/sv/kalzium/screenshot6.png -share/doc/HTML/sv/kalzium/settings.png -share/doc/HTML/sv/kamera/common -share/doc/HTML/sv/kamera/index.cache.bz2 -share/doc/HTML/sv/kamera/index.docbook -share/doc/HTML/sv/kandy/common -share/doc/HTML/sv/kandy/index.cache.bz2 -share/doc/HTML/sv/kandy/index.docbook -share/doc/HTML/sv/kappfinder/man-kappfinder.1.docbook -share/doc/HTML/sv/karm/common -share/doc/HTML/sv/karm/copy-this-task.png -share/doc/HTML/sv/karm/csvexport.png -share/doc/HTML/sv/karm/daterange.png -share/doc/HTML/sv/karm/idle-detect.png -share/doc/HTML/sv/karm/index.cache.bz2 -share/doc/HTML/sv/karm/index.docbook -share/doc/HTML/sv/karm/karm.png -share/doc/HTML/sv/kasteroids/common -share/doc/HTML/sv/kasteroids/index.cache.bz2 -share/doc/HTML/sv/kasteroids/index.docbook -share/doc/HTML/sv/kate-plugins/common -share/doc/HTML/sv/kate-plugins/filetemplates.docbook -share/doc/HTML/sv/kate-plugins/htmltools.docbook -share/doc/HTML/sv/kate-plugins/index.cache.bz2 -share/doc/HTML/sv/kate-plugins/index.docbook -share/doc/HTML/sv/kate-plugins/insertcommand.docbook -share/doc/HTML/sv/kate-plugins/openheader.docbook -share/doc/HTML/sv/kate-plugins/projectmanager.docbook -share/doc/HTML/sv/kate-plugins/textfilter.docbook -share/doc/HTML/sv/kate-plugins/xmlcheck.docbook -share/doc/HTML/sv/kate-plugins/xmltools.docbook -share/doc/HTML/sv/kate/advanced.docbook -share/doc/HTML/sv/kate/common -share/doc/HTML/sv/kate/configdialog01.png -share/doc/HTML/sv/kate/configdialog02.png -share/doc/HTML/sv/kate/configuring.docbook -share/doc/HTML/sv/kate/fundamentals.docbook -share/doc/HTML/sv/kate/highlighting.docbook -share/doc/HTML/sv/kate/index.cache.bz2 -share/doc/HTML/sv/kate/index.docbook -share/doc/HTML/sv/kate/kate.png -share/doc/HTML/sv/kate/mdi.docbook -share/doc/HTML/sv/kate/menus.docbook -share/doc/HTML/sv/kate/mimetypechooser.png -share/doc/HTML/sv/kate/part.docbook -share/doc/HTML/sv/kate/plugins.docbook -share/doc/HTML/sv/kate/regular-expressions.docbook -share/doc/HTML/sv/katomic/common -share/doc/HTML/sv/katomic/index.cache.bz2 -share/doc/HTML/sv/katomic/index.docbook -share/doc/HTML/sv/kbabel/catman.docbook -share/doc/HTML/sv/kbabel/common -share/doc/HTML/sv/kbabel/dbcan.png -share/doc/HTML/sv/kbabel/dictionaries.docbook -share/doc/HTML/sv/kbabel/faq.docbook -share/doc/HTML/sv/kbabel/glossary.docbook -share/doc/HTML/sv/kbabel/index.cache.bz2 -share/doc/HTML/sv/kbabel/index.docbook -share/doc/HTML/sv/kbabel/kbabeldict.docbook -share/doc/HTML/sv/kbabel/man-catalogmanager.1.docbook -share/doc/HTML/sv/kbabel/menu.docbook -share/doc/HTML/sv/kbabel/preferences.docbook -share/doc/HTML/sv/kbabel/roughtranslation.png -share/doc/HTML/sv/kbabel/snap1.png -share/doc/HTML/sv/kbabel/snap_catalogmanager.png -share/doc/HTML/sv/kbabel/snap_kbabeldict.png -share/doc/HTML/sv/kbabel/snap_kbabeldict2.png -share/doc/HTML/sv/kbabel/using.docbook -share/doc/HTML/sv/kbackgammon/common -share/doc/HTML/sv/kbackgammon/index.cache.bz2 -share/doc/HTML/sv/kbackgammon/index.docbook -share/doc/HTML/sv/kbattleship/common -share/doc/HTML/sv/kbattleship/index.cache.bz2 -share/doc/HTML/sv/kbattleship/index.docbook -share/doc/HTML/sv/kblackbox/common -share/doc/HTML/sv/kblackbox/index.cache.bz2 -share/doc/HTML/sv/kblackbox/index.docbook -share/doc/HTML/sv/kbounce/common -share/doc/HTML/sv/kbounce/index.cache.bz2 -share/doc/HTML/sv/kbounce/index.docbook -share/doc/HTML/sv/kbounce/jezball_corridor1.png -share/doc/HTML/sv/kbounce/jezball_corridor2.png -share/doc/HTML/sv/kbounce/jezball_newWall.png -share/doc/HTML/sv/kbruch/checked.png -share/doc/HTML/sv/kbruch/common -share/doc/HTML/sv/kbruch/compare.png -share/doc/HTML/sv/kbruch/convert.png -share/doc/HTML/sv/kbruch/factorize.png -share/doc/HTML/sv/kbruch/gui_main.png -share/doc/HTML/sv/kbruch/index.cache.bz2 -share/doc/HTML/sv/kbruch/index.docbook -share/doc/HTML/sv/kbruch/reduced.png -share/doc/HTML/sv/kbruch/settings.png -share/doc/HTML/sv/kbugbuster/common -share/doc/HTML/sv/kbugbuster/index.cache.bz2 -share/doc/HTML/sv/kbugbuster/index.docbook -share/doc/HTML/sv/kcachegrind/common -share/doc/HTML/sv/kcachegrind/index.cache.bz2 -share/doc/HTML/sv/kcachegrind/index.docbook -share/doc/HTML/sv/kcalc/common -share/doc/HTML/sv/kcalc/index.cache.bz2 -share/doc/HTML/sv/kcalc/index.docbook -share/doc/HTML/sv/kcharselect/common -share/doc/HTML/sv/kcharselect/index.cache.bz2 -share/doc/HTML/sv/kcharselect/index.docbook -share/doc/HTML/sv/kcoloredit/common -share/doc/HTML/sv/kcoloredit/index.cache.bz2 -share/doc/HTML/sv/kcoloredit/index.docbook -share/doc/HTML/sv/kcontrol/arts/common -share/doc/HTML/sv/kcontrol/arts/index.cache.bz2 -share/doc/HTML/sv/kcontrol/arts/index.docbook -share/doc/HTML/sv/kcontrol/arts/midi.docbook -share/doc/HTML/sv/kcontrol/background/common -share/doc/HTML/sv/kcontrol/background/index.cache.bz2 -share/doc/HTML/sv/kcontrol/background/index.docbook -share/doc/HTML/sv/kcontrol/bell/common -share/doc/HTML/sv/kcontrol/bell/index.cache.bz2 -share/doc/HTML/sv/kcontrol/bell/index.docbook -share/doc/HTML/sv/kcontrol/cache/common -share/doc/HTML/sv/kcontrol/cache/index.cache.bz2 -share/doc/HTML/sv/kcontrol/cache/index.docbook -share/doc/HTML/sv/kcontrol/clock/common -share/doc/HTML/sv/kcontrol/clock/index.cache.bz2 -share/doc/HTML/sv/kcontrol/clock/index.docbook -share/doc/HTML/sv/kcontrol/colors/common -share/doc/HTML/sv/kcontrol/colors/index.cache.bz2 -share/doc/HTML/sv/kcontrol/colors/index.docbook -share/doc/HTML/sv/kcontrol/common -share/doc/HTML/sv/kcontrol/cookies/common -share/doc/HTML/sv/kcontrol/cookies/index.cache.bz2 -share/doc/HTML/sv/kcontrol/cookies/index.docbook -share/doc/HTML/sv/kcontrol/crypto/common -share/doc/HTML/sv/kcontrol/crypto/index.cache.bz2 -share/doc/HTML/sv/kcontrol/crypto/index.docbook -share/doc/HTML/sv/kcontrol/desktop/common -share/doc/HTML/sv/kcontrol/desktop/index.cache.bz2 -share/doc/HTML/sv/kcontrol/desktop/index.docbook -share/doc/HTML/sv/kcontrol/desktopbehavior/common -share/doc/HTML/sv/kcontrol/desktopbehavior/index.cache.bz2 -share/doc/HTML/sv/kcontrol/desktopbehavior/index.docbook -share/doc/HTML/sv/kcontrol/ebrowsing/common -share/doc/HTML/sv/kcontrol/ebrowsing/index.cache.bz2 -share/doc/HTML/sv/kcontrol/ebrowsing/index.docbook -share/doc/HTML/sv/kcontrol/email/common -share/doc/HTML/sv/kcontrol/email/index.cache.bz2 -share/doc/HTML/sv/kcontrol/email/index.docbook -share/doc/HTML/sv/kcontrol/energy/common -share/doc/HTML/sv/kcontrol/energy/index.cache.bz2 -share/doc/HTML/sv/kcontrol/energy/index.docbook -share/doc/HTML/sv/kcontrol/filemanager/common -share/doc/HTML/sv/kcontrol/filemanager/index.cache.bz2 -share/doc/HTML/sv/kcontrol/filemanager/index.docbook -share/doc/HTML/sv/kcontrol/filemanager/kfileman1.png -share/doc/HTML/sv/kcontrol/filemanager/kfileman2.png -share/doc/HTML/sv/kcontrol/filetypes/common -share/doc/HTML/sv/kcontrol/filetypes/index.cache.bz2 -share/doc/HTML/sv/kcontrol/filetypes/index.docbook -share/doc/HTML/sv/kcontrol/fonts/common -share/doc/HTML/sv/kcontrol/fonts/index.cache.bz2 -share/doc/HTML/sv/kcontrol/fonts/index.docbook -share/doc/HTML/sv/kcontrol/helpindex/common -share/doc/HTML/sv/kcontrol/helpindex/index.cache.bz2 -share/doc/HTML/sv/kcontrol/helpindex/index.docbook -share/doc/HTML/sv/kcontrol/icons/common -share/doc/HTML/sv/kcontrol/icons/index.cache.bz2 -share/doc/HTML/sv/kcontrol/icons/index.docbook -share/doc/HTML/sv/kcontrol/index.cache.bz2 -share/doc/HTML/sv/kcontrol/index.docbook -share/doc/HTML/sv/kcontrol/kalarmd/common -share/doc/HTML/sv/kcontrol/kalarmd/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kalarmd/index.docbook -share/doc/HTML/sv/kcontrol/kcmaccess/common -share/doc/HTML/sv/kcontrol/kcmaccess/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kcmaccess/index.docbook -share/doc/HTML/sv/kcontrol/kcmcss/common -share/doc/HTML/sv/kcontrol/kcmcss/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kcmcss/index.docbook -share/doc/HTML/sv/kcontrol/kcmfontinst/common -share/doc/HTML/sv/kcontrol/kcmfontinst/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kcmfontinst/index.docbook -share/doc/HTML/sv/kcontrol/kcmkonsole/common -share/doc/HTML/sv/kcontrol/kcmkonsole/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kcmkonsole/index.docbook -share/doc/HTML/sv/kcontrol/kcmktalkd/common -share/doc/HTML/sv/kcontrol/kcmktalkd/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kcmktalkd/index.docbook -share/doc/HTML/sv/kcontrol/kcmlaunch/common -share/doc/HTML/sv/kcontrol/kcmlaunch/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kcmlaunch/index.docbook -share/doc/HTML/sv/kcontrol/kcmlowbatcrit/common -share/doc/HTML/sv/kcontrol/kcmlowbatcrit/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kcmlowbatcrit/index.docbook -share/doc/HTML/sv/kcontrol/kcmlowbatwarn/common -share/doc/HTML/sv/kcontrol/kcmlowbatwarn/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kcmlowbatwarn/index.docbook -share/doc/HTML/sv/kcontrol/kcmnotify/common -share/doc/HTML/sv/kcontrol/kcmnotify/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kcmnotify/index.docbook -share/doc/HTML/sv/kcontrol/kcmsmserver/common -share/doc/HTML/sv/kcontrol/kcmsmserver/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kcmsmserver/index.docbook -share/doc/HTML/sv/kcontrol/kcmstyle/common -share/doc/HTML/sv/kcontrol/kcmstyle/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kcmstyle/index.docbook -share/doc/HTML/sv/kcontrol/kcmtaskbar/common -share/doc/HTML/sv/kcontrol/kcmtaskbar/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kcmtaskbar/index.docbook -share/doc/HTML/sv/kcontrol/kdm/common -share/doc/HTML/sv/kcontrol/kdm/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kdm/index.docbook -share/doc/HTML/sv/kcontrol/keyboard/common -share/doc/HTML/sv/kcontrol/keyboard/index.cache.bz2 -share/doc/HTML/sv/kcontrol/keyboard/index.docbook -share/doc/HTML/sv/kcontrol/keys/common -share/doc/HTML/sv/kcontrol/keys/index.cache.bz2 -share/doc/HTML/sv/kcontrol/keys/index.docbook -share/doc/HTML/sv/kcontrol/khtml/common -share/doc/HTML/sv/kcontrol/khtml/index.cache.bz2 -share/doc/HTML/sv/kcontrol/khtml/index.docbook -share/doc/HTML/sv/kcontrol/khtml/nsplugin.docbook -share/doc/HTML/sv/kcontrol/kmixcfg/common -share/doc/HTML/sv/kcontrol/kmixcfg/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kmixcfg/index.docbook -share/doc/HTML/sv/kcontrol/kthememgr/common -share/doc/HTML/sv/kcontrol/kthememgr/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kthememgr/index.docbook -share/doc/HTML/sv/kcontrol/kwindecoration/common -share/doc/HTML/sv/kcontrol/kwindecoration/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kwindecoration/index.docbook -share/doc/HTML/sv/kcontrol/lanbrowser/common -share/doc/HTML/sv/kcontrol/lanbrowser/index.cache.bz2 -share/doc/HTML/sv/kcontrol/lanbrowser/index.docbook -share/doc/HTML/sv/kcontrol/language/common -share/doc/HTML/sv/kcontrol/language/index.cache.bz2 -share/doc/HTML/sv/kcontrol/language/index.docbook -share/doc/HTML/sv/kcontrol/laptop/common -share/doc/HTML/sv/kcontrol/laptop/index.cache.bz2 -share/doc/HTML/sv/kcontrol/laptop/index.docbook -share/doc/HTML/sv/kcontrol/mouse/common -share/doc/HTML/sv/kcontrol/mouse/index.cache.bz2 -share/doc/HTML/sv/kcontrol/mouse/index.docbook -share/doc/HTML/sv/kcontrol/netpref/common -share/doc/HTML/sv/kcontrol/netpref/index.cache.bz2 -share/doc/HTML/sv/kcontrol/netpref/index.docbook -share/doc/HTML/sv/kcontrol/panel/common -share/doc/HTML/sv/kcontrol/panel/index.cache.bz2 -share/doc/HTML/sv/kcontrol/panel/index.docbook -share/doc/HTML/sv/kcontrol/panelappearance/common -share/doc/HTML/sv/kcontrol/panelappearance/index.cache.bz2 -share/doc/HTML/sv/kcontrol/panelappearance/index.docbook -share/doc/HTML/sv/kcontrol/passwords/common -share/doc/HTML/sv/kcontrol/passwords/index.cache.bz2 -share/doc/HTML/sv/kcontrol/passwords/index.docbook -share/doc/HTML/sv/kcontrol/powerctrl/common -share/doc/HTML/sv/kcontrol/powerctrl/index.cache.bz2 -share/doc/HTML/sv/kcontrol/powerctrl/index.docbook -share/doc/HTML/sv/kcontrol/proxy/common -share/doc/HTML/sv/kcontrol/proxy/index.cache.bz2 -share/doc/HTML/sv/kcontrol/proxy/index.docbook -share/doc/HTML/sv/kcontrol/proxy/socks.docbook -share/doc/HTML/sv/kcontrol/screensaver/common -share/doc/HTML/sv/kcontrol/screensaver/index.cache.bz2 -share/doc/HTML/sv/kcontrol/screensaver/index.docbook -share/doc/HTML/sv/kcontrol/screenshot.png -share/doc/HTML/sv/kcontrol/smb/common -share/doc/HTML/sv/kcontrol/smb/index.cache.bz2 -share/doc/HTML/sv/kcontrol/smb/index.docbook -share/doc/HTML/sv/kcontrol/spellchecking/common -share/doc/HTML/sv/kcontrol/spellchecking/index.cache.bz2 -share/doc/HTML/sv/kcontrol/spellchecking/index.docbook -share/doc/HTML/sv/kcontrol/useragent/common -share/doc/HTML/sv/kcontrol/useragent/index.cache.bz2 -share/doc/HTML/sv/kcontrol/useragent/index.docbook -share/doc/HTML/sv/kcontrol/windowmanagement/common -share/doc/HTML/sv/kcontrol/windowmanagement/index.cache.bz2 -share/doc/HTML/sv/kcontrol/windowmanagement/index.docbook -share/doc/HTML/sv/kcron/common -share/doc/HTML/sv/kcron/index.cache.bz2 -share/doc/HTML/sv/kcron/index.docbook -share/doc/HTML/sv/kcron/kcron.png -share/doc/HTML/sv/kcron/kcronstart.png -share/doc/HTML/sv/kcron/newtask.png -share/doc/HTML/sv/kcron/newvariable.png -share/doc/HTML/sv/kcron/print.png -share/doc/HTML/sv/kdat/common -share/doc/HTML/sv/kdat/index.cache.bz2 -share/doc/HTML/sv/kdat/index.docbook -share/doc/HTML/sv/kdcop/common -share/doc/HTML/sv/kdcop/index.cache.bz2 -share/doc/HTML/sv/kdcop/index.docbook -share/doc/HTML/sv/kde_app_devel/appwizard.png -share/doc/HTML/sv/kde_app_devel/common -share/doc/HTML/sv/kde_app_devel/index.cache.bz2 -share/doc/HTML/sv/kde_app_devel/index.docbook -share/doc/HTML/sv/kdearch/common -share/doc/HTML/sv/kdearch/index.cache.bz2 -share/doc/HTML/sv/kdearch/index.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/kdelibs/man-artsmessage.1.docbook -share/doc/HTML/sv/kdelibs/man-checkXML.1.docbook -share/doc/HTML/sv/kdelibs/man-dcop.1.docbook -share/doc/HTML/sv/kdelibs/man-kdeoptions.7.docbook -share/doc/HTML/sv/kdelibs/man-qtoptions.7.docbook -share/doc/HTML/sv/kdelirc/irkick/common -share/doc/HTML/sv/kdelirc/irkick/index.cache.bz2 -share/doc/HTML/sv/kdelirc/irkick/index.docbook -share/doc/HTML/sv/kdelirc/kcmlirc/common -share/doc/HTML/sv/kdelirc/kcmlirc/index.cache.bz2 -share/doc/HTML/sv/kdelirc/kcmlirc/index.docbook -share/doc/HTML/sv/kdeprint/add-printer-wiz.docbook -share/doc/HTML/sv/kdeprint/common -share/doc/HTML/sv/kdeprint/cups-config.docbook -share/doc/HTML/sv/kdeprint/cups-filterarchitecture-kivio-70Percent-scaled.png -share/doc/HTML/sv/kdeprint/cupsaddprinterwizard1.png -share/doc/HTML/sv/kdeprint/cupsaddprinterwizard2_backendselection.png -share/doc/HTML/sv/kdeprint/cupsaddprinterwizard3_networkscan.png -share/doc/HTML/sv/kdeprint/cupsaddprinterwizard4_networkscan_config.png -share/doc/HTML/sv/kdeprint/cupsoptions.docbook -share/doc/HTML/sv/kdeprint/cupsserverconfiguration1_welcome.png -share/doc/HTML/sv/kdeprint/extensions.docbook -share/doc/HTML/sv/kdeprint/external-command.docbook -share/doc/HTML/sv/kdeprint/final-word.docbook -share/doc/HTML/sv/kdeprint/getting-started.docbook -share/doc/HTML/sv/kdeprint/highlights.docbook -share/doc/HTML/sv/kdeprint/index.cache.bz2 -share/doc/HTML/sv/kdeprint/index.docbook -share/doc/HTML/sv/kdeprint/kcontrolcenter-printmanager-jobcontrol-2.png -share/doc/HTML/sv/kdeprint/kcron_to_be_printed.png -share/doc/HTML/sv/kdeprint/kdeprint-jobviewer.png -share/doc/HTML/sv/kdeprint/kprinter-as-netscape-printcommand.png -share/doc/HTML/sv/kdeprint/kprinter-kivio.png -share/doc/HTML/sv/kdeprint/kprinter.png -share/doc/HTML/sv/kdeprint/kprinter_called_from_run_command.png -share/doc/HTML/sv/kdeprint/kprinter_with_kcron_developer_special.png -share/doc/HTML/sv/kdeprint/lpd.docbook -share/doc/HTML/sv/kdeprint/lpr-bsd.docbook -share/doc/HTML/sv/kdeprint/lprng.docbook -share/doc/HTML/sv/kdeprint/rlpr.docbook -share/doc/HTML/sv/kdeprint/steinbruch_scaled.png -share/doc/HTML/sv/kdeprint/tech-overview.docbook -share/doc/HTML/sv/kdeprint/theory.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/SF-general.png -share/doc/HTML/sv/kdevelop/SF-indent.png -share/doc/HTML/sv/kdevelop/SF-other.png -share/doc/HTML/sv/kdevelop/app-files.docbook -share/doc/HTML/sv/kdevelop/app-menu.docbook -share/doc/HTML/sv/kdevelop/applicationwizard.docbook -share/doc/HTML/sv/kdevelop/automake-file-popup.png -share/doc/HTML/sv/kdevelop/automake-manager.png -share/doc/HTML/sv/kdevelop/automake-subproject-popup.png -share/doc/HTML/sv/kdevelop/automake-target-popup.png -share/doc/HTML/sv/kdevelop/automakemanager.png -share/doc/HTML/sv/kdevelop/classview.png -share/doc/HTML/sv/kdevelop/common -share/doc/HTML/sv/kdevelop/configure-adddialog-baselibs.png -share/doc/HTML/sv/kdevelop/configure-adddialog-qt.png -share/doc/HTML/sv/kdevelop/configure-adddialog.png -share/doc/HTML/sv/kdevelop/configure-doctree-DevHelp.png -share/doc/HTML/sv/kdevelop/configure-doctree-TOC.png -share/doc/HTML/sv/kdevelop/configure-doctree-bookmark.png -share/doc/HTML/sv/kdevelop/configure-doctree-general.png -share/doc/HTML/sv/kdevelop/configure-doctree-textsearch.png -share/doc/HTML/sv/kdevelop/configure-docu-chm.png -share/doc/HTML/sv/kdevelop/configure-docu-custom.png -share/doc/HTML/sv/kdevelop/configure-docu-devhelp.png -share/doc/HTML/sv/kdevelop/configure-docu-dox.png -share/doc/HTML/sv/kdevelop/configure-docu-edit.png -share/doc/HTML/sv/kdevelop/configure-docu-general.png -share/doc/HTML/sv/kdevelop/configure-docu-toc.png -share/doc/HTML/sv/kdevelop/configure-editor.png -share/doc/HTML/sv/kdevelop/configure-file-selector.png -share/doc/HTML/sv/kdevelop/configure-general.png -share/doc/HTML/sv/kdevelop/configure-project-doc.png -share/doc/HTML/sv/kdevelop/configure-select.png -share/doc/HTML/sv/kdevelop/configure-snippets.png -share/doc/HTML/sv/kdevelop/create-new-project-cvs.png -share/doc/HTML/sv/kdevelop/createnewproject.png -share/doc/HTML/sv/kdevelop/doctree-add-bookmark.png -share/doc/HTML/sv/kdevelop/doctree-reduced.png -share/doc/HTML/sv/kdevelop/doctree.png -share/doc/HTML/sv/kdevelop/doctreeview.png -share/doc/HTML/sv/kdevelop/documents-contents.png -share/doc/HTML/sv/kdevelop/edit-doctree-TOC-entry.png -share/doc/HTML/sv/kdevelop/file-selector.png -share/doc/HTML/sv/kdevelop/filetree.png -share/doc/HTML/sv/kdevelop/folded-tabs.png -share/doc/HTML/sv/kdevelop/getting-started.docbook -share/doc/HTML/sv/kdevelop/importdirectory.png -share/doc/HTML/sv/kdevelop/index.cache.bz2 -share/doc/HTML/sv/kdevelop/index.docbook -share/doc/HTML/sv/kdevelop/kdcop_browsing.png -share/doc/HTML/sv/kdevelop/kdevelop-ideal-mode-0.png -share/doc/HTML/sv/kdevelop/kdevelop-ideal-mode.png -share/doc/HTML/sv/kdevelop/kdevelop-install.docbook -share/doc/HTML/sv/kdevelop/kdevelop-mdi-mode.png -share/doc/HTML/sv/kdevelop/kdevelop-scripting.docbook -share/doc/HTML/sv/kdevelop/kdevelop-survey.docbook -share/doc/HTML/sv/kdevelop/kdevelop-tabbed-mode.png -share/doc/HTML/sv/kdevelop/kdevelop-toplevel-mode.png -share/doc/HTML/sv/kdevelop/open-recent-project.png -share/doc/HTML/sv/kdevelop/project-advanced.docbook -share/doc/HTML/sv/kdevelop/project-management.docbook -share/doc/HTML/sv/kdevelop/script_location.png -share/doc/HTML/sv/kdevelop/select-user-interface-0.png -share/doc/HTML/sv/kdevelop/select-user-interface.png -share/doc/HTML/sv/kdevelop/setup.docbook -share/doc/HTML/sv/kdevelop/tip.database -share/doc/HTML/sv/kdevelop/unixdev.docbook -share/doc/HTML/sv/kdf/common -share/doc/HTML/sv/kdf/index.cache.bz2 -share/doc/HTML/sv/kdf/index.docbook -share/doc/HTML/sv/kdf/kdf.png -share/doc/HTML/sv/kdf/kdf_config.png -share/doc/HTML/sv/kdict/applet.png -share/doc/HTML/sv/kdict/common -share/doc/HTML/sv/kdict/conf.png -share/doc/HTML/sv/kdict/index.cache.bz2 -share/doc/HTML/sv/kdict/index.docbook -share/doc/HTML/sv/kdict/mainwin.png -share/doc/HTML/sv/kdict/seteditor.png -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/kdm/kdmrc-ref.docbook -share/doc/HTML/sv/kdvi/common -share/doc/HTML/sv/kdvi/index.cache.bz2 -share/doc/HTML/sv/kdvi/index.docbook -share/doc/HTML/sv/kdvi/optionrequester1.png -share/doc/HTML/sv/kdvi/optionrequester2.png -share/doc/HTML/sv/kedit/common -share/doc/HTML/sv/kedit/index.cache.bz2 -share/doc/HTML/sv/kedit/index.docbook -share/doc/HTML/sv/keduca/common -share/doc/HTML/sv/keduca/index.cache.bz2 -share/doc/HTML/sv/keduca/index.docbook -share/doc/HTML/sv/keduca/screenshot.png -share/doc/HTML/sv/kenolaba/common -share/doc/HTML/sv/kenolaba/index.cache.bz2 -share/doc/HTML/sv/kenolaba/index.docbook -share/doc/HTML/sv/kenolaba/man-kenolaba.6.docbook -share/doc/HTML/sv/kfilereplace/addstringsdialog_window.png -share/doc/HTML/sv/kfilereplace/common -share/doc/HTML/sv/kfilereplace/general_options.png -share/doc/HTML/sv/kfilereplace/index.cache.bz2 -share/doc/HTML/sv/kfilereplace/index.docbook -share/doc/HTML/sv/kfilereplace/kfr_standalone_main_window_1.png -share/doc/HTML/sv/kfilereplace/optionsdialog_main_window_1.png -share/doc/HTML/sv/kfilereplace/optionsdialog_main_window_2.png -share/doc/HTML/sv/kfilereplace/path_options.png -share/doc/HTML/sv/kfilereplace/projectdialog_main_window_1.png -share/doc/HTML/sv/kfilereplace/projectdialog_main_window_2.png -share/doc/HTML/sv/kfilereplace/quick_options.png -share/doc/HTML/sv/kfilereplace/report_example.png -share/doc/HTML/sv/kfilereplace/results_view.png -share/doc/HTML/sv/kfilereplace/strings_view.png -share/doc/HTML/sv/kfind/common -share/doc/HTML/sv/kfind/index.cache.bz2 -share/doc/HTML/sv/kfind/index.docbook -share/doc/HTML/sv/kfloppy/common -share/doc/HTML/sv/kfloppy/index.cache.bz2 -share/doc/HTML/sv/kfloppy/index.docbook -share/doc/HTML/sv/kfouleggs/common -share/doc/HTML/sv/kfouleggs/gamescreen.png -share/doc/HTML/sv/kfouleggs/index.cache.bz2 -share/doc/HTML/sv/kfouleggs/index.docbook -share/doc/HTML/sv/kgamma/common -share/doc/HTML/sv/kgamma/index.cache.bz2 -share/doc/HTML/sv/kgamma/index.docbook -share/doc/HTML/sv/kget/common -share/doc/HTML/sv/kget/index.cache.bz2 -share/doc/HTML/sv/kget/index.docbook -share/doc/HTML/sv/kget/kget1.png -share/doc/HTML/sv/kget/kget2.png -share/doc/HTML/sv/kget/kget3.png -share/doc/HTML/sv/kget/kget4.png -share/doc/HTML/sv/kget/kget5.png -share/doc/HTML/sv/kghostview/common -share/doc/HTML/sv/kghostview/index.cache.bz2 -share/doc/HTML/sv/kghostview/index.docbook -share/doc/HTML/sv/kgoldrunner/common -share/doc/HTML/sv/kgoldrunner/editbar.png -share/doc/HTML/sv/kgoldrunner/index.cache.bz2 -share/doc/HTML/sv/kgoldrunner/index.docbook -share/doc/HTML/sv/kgoldrunner/select.png -share/doc/HTML/sv/kgoldrunner/tute008.png -share/doc/HTML/sv/kgpg/common -share/doc/HTML/sv/kgpg/editor.png -share/doc/HTML/sv/kgpg/index.cache.bz2 -share/doc/HTML/sv/kgpg/index.docbook -share/doc/HTML/sv/kgpg/keygen.png -share/doc/HTML/sv/kgpg/keymanage.png -share/doc/HTML/sv/kgpg/keys.png -share/doc/HTML/sv/kgpg/menu.png -share/doc/HTML/sv/kgpg/options.png -share/doc/HTML/sv/khangman/advancedsettings.png -share/doc/HTML/sv/khangman/common -share/doc/HTML/sv/khangman/getnewstuff.png -share/doc/HTML/sv/khangman/index.cache.bz2 -share/doc/HTML/sv/khangman/index.docbook -share/doc/HTML/sv/khangman/khangman1.png -share/doc/HTML/sv/khangman/khangman2.png -share/doc/HTML/sv/khangman/normalsettings.png -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/questions.docbook -share/doc/HTML/sv/khelpcenter/faq/sound.docbook -share/doc/HTML/sv/khelpcenter/faq/tips.docbook -share/doc/HTML/sv/khelpcenter/faq/webbrowse.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/glossary/kdeprintingglossary.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/a-window.png -share/doc/HTML/sv/khelpcenter/userguide/about-desktop.docbook -share/doc/HTML/sv/khelpcenter/userguide/accessibility.docbook -share/doc/HTML/sv/khelpcenter/userguide/amarok.png -share/doc/HTML/sv/khelpcenter/userguide/base-kde-applications.docbook -share/doc/HTML/sv/khelpcenter/userguide/browser-fine-tuning.docbook -share/doc/HTML/sv/khelpcenter/userguide/burning-cds.docbook -share/doc/HTML/sv/khelpcenter/userguide/common -share/doc/HTML/sv/khelpcenter/userguide/control-center.docbook -share/doc/HTML/sv/khelpcenter/userguide/creating-graphics.docbook -share/doc/HTML/sv/khelpcenter/userguide/credits-and-license.docbook -share/doc/HTML/sv/khelpcenter/userguide/desktop.png -share/doc/HTML/sv/khelpcenter/userguide/email.docbook -share/doc/HTML/sv/khelpcenter/userguide/file-sharing.docbook -share/doc/HTML/sv/khelpcenter/userguide/first-impressions.docbook -share/doc/HTML/sv/khelpcenter/userguide/font-installation.docbook -share/doc/HTML/sv/khelpcenter/userguide/getting-help.docbook -share/doc/HTML/sv/khelpcenter/userguide/getting-started.docbook -share/doc/HTML/sv/khelpcenter/userguide/glossary.docbook -share/doc/HTML/sv/khelpcenter/userguide/groupware-kontact.docbook -share/doc/HTML/sv/khelpcenter/userguide/history.docbook -share/doc/HTML/sv/khelpcenter/userguide/index.cache.bz2 -share/doc/HTML/sv/khelpcenter/userguide/index.docbook -share/doc/HTML/sv/khelpcenter/userguide/installation.docbook -share/doc/HTML/sv/khelpcenter/userguide/internet-shortcuts.docbook -share/doc/HTML/sv/khelpcenter/userguide/intro.docbook -share/doc/HTML/sv/khelpcenter/userguide/juk.png -share/doc/HTML/sv/khelpcenter/userguide/kaboodle.png -share/doc/HTML/sv/khelpcenter/userguide/kcontrol.png -share/doc/HTML/sv/khelpcenter/userguide/kde-as-root.docbook -share/doc/HTML/sv/khelpcenter/userguide/kde-edutainment.docbook -share/doc/HTML/sv/khelpcenter/userguide/kde-for-admins.docbook -share/doc/HTML/sv/khelpcenter/userguide/kde-office.docbook -share/doc/HTML/sv/khelpcenter/userguide/kmag.png -share/doc/HTML/sv/khelpcenter/userguide/kmousetool.png -share/doc/HTML/sv/khelpcenter/userguide/kmouth.png -share/doc/HTML/sv/khelpcenter/userguide/kmouth2.png -share/doc/HTML/sv/khelpcenter/userguide/kmouth3.png -share/doc/HTML/sv/khelpcenter/userguide/knode-identity.png -share/doc/HTML/sv/khelpcenter/userguide/knode-mail-account.png -share/doc/HTML/sv/khelpcenter/userguide/knode-news-account.png -share/doc/HTML/sv/khelpcenter/userguide/knode-start.png -share/doc/HTML/sv/khelpcenter/userguide/konq-sidebar.png -share/doc/HTML/sv/khelpcenter/userguide/konq-simple.png -share/doc/HTML/sv/khelpcenter/userguide/konsole-intro.docbook -share/doc/HTML/sv/khelpcenter/userguide/kopete.png -share/doc/HTML/sv/khelpcenter/userguide/kppp-dialer-tab.png -share/doc/HTML/sv/khelpcenter/userguide/kppp-wizard.png -share/doc/HTML/sv/khelpcenter/userguide/messaging-intro.docbook -share/doc/HTML/sv/khelpcenter/userguide/migrator-dictionary.docbook -share/doc/HTML/sv/khelpcenter/userguide/more-help.docbook -share/doc/HTML/sv/khelpcenter/userguide/net-connection-setup.docbook -share/doc/HTML/sv/khelpcenter/userguide/networking-with-windows.docbook -share/doc/HTML/sv/khelpcenter/userguide/noatun.png -share/doc/HTML/sv/khelpcenter/userguide/notices-trademarks.docbook -share/doc/HTML/sv/khelpcenter/userguide/oggfolder.png -share/doc/HTML/sv/khelpcenter/userguide/open-file-dialog.png -share/doc/HTML/sv/khelpcenter/userguide/panel-and-desktop.docbook -share/doc/HTML/sv/khelpcenter/userguide/pdf-files.docbook -share/doc/HTML/sv/khelpcenter/userguide/playing-audiocds.docbook -share/doc/HTML/sv/khelpcenter/userguide/playing-movies.docbook -share/doc/HTML/sv/khelpcenter/userguide/playing-music.docbook -share/doc/HTML/sv/khelpcenter/userguide/printer-setup.docbook -share/doc/HTML/sv/khelpcenter/userguide/printing-from-apps.docbook -share/doc/HTML/sv/khelpcenter/userguide/programs-and-documents.docbook -share/doc/HTML/sv/khelpcenter/userguide/programs-controlling.docbook -share/doc/HTML/sv/khelpcenter/userguide/removable-disks.docbook -share/doc/HTML/sv/khelpcenter/userguide/rip.png -share/doc/HTML/sv/khelpcenter/userguide/ripsettings.png -share/doc/HTML/sv/khelpcenter/userguide/screen-captures.docbook -share/doc/HTML/sv/khelpcenter/userguide/services.png -share/doc/HTML/sv/khelpcenter/userguide/shared-sessions.docbook -share/doc/HTML/sv/khelpcenter/userguide/shortcuts.docbook -share/doc/HTML/sv/khelpcenter/userguide/staff.docbook -share/doc/HTML/sv/khelpcenter/userguide/standard-menu-entries.docbook -share/doc/HTML/sv/khelpcenter/userguide/switching-sessions.docbook -share/doc/HTML/sv/khelpcenter/userguide/the-filemanager.docbook -share/doc/HTML/sv/khelpcenter/userguide/titlebar-menu.png -share/doc/HTML/sv/khelpcenter/userguide/troubleshooting-network-x.docbook -share/doc/HTML/sv/khelpcenter/userguide/troubleshooting-no-open.docbook -share/doc/HTML/sv/khelpcenter/userguide/ug-faq.docbook -share/doc/HTML/sv/khelpcenter/userguide/under-the-hood.docbook -share/doc/HTML/sv/khelpcenter/userguide/usenet.docbook -share/doc/HTML/sv/khelpcenter/userguide/where-next.docbook -share/doc/HTML/sv/khelpcenter/userguide/windows-how-to.docbook -share/doc/HTML/sv/khelpcenter/userguide/your-kde-account.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/khexedit/common -share/doc/HTML/sv/khexedit/index.cache.bz2 -share/doc/HTML/sv/khexedit/index.docbook -share/doc/HTML/sv/khexedit/khexedit1.png -share/doc/HTML/sv/kicker-applets/common -share/doc/HTML/sv/kicker-applets/index.cache.bz2 -share/doc/HTML/sv/kicker-applets/index.docbook -share/doc/HTML/sv/kicker-applets/kolourpicker.docbook -share/doc/HTML/sv/kicker-applets/ktimemon.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/kiconedit/common -share/doc/HTML/sv/kiconedit/index.cache.bz2 -share/doc/HTML/sv/kiconedit/index.docbook -share/doc/HTML/sv/kig/common -share/doc/HTML/sv/kig/constructed_a_point.png -share/doc/HTML/sv/kig/constructed_script_object.png -share/doc/HTML/sv/kig/constructing_a_circle.png -share/doc/HTML/sv/kig/constructing_a_circle_2.png -share/doc/HTML/sv/kig/edit_types_dialog.png -share/doc/HTML/sv/kig/index.cache.bz2 -share/doc/HTML/sv/kig/index.docbook -share/doc/HTML/sv/kig/macro_wizard.png -share/doc/HTML/sv/kig/macros_at_work.png -share/doc/HTML/sv/kig/script_wizard.png -share/doc/HTML/sv/kig/script_wizard_entering_code.png -share/doc/HTML/sv/kig/selecting_objects.png -share/doc/HTML/sv/kig/simple_locus_construction.png -share/doc/HTML/sv/kig/test_run_macro.png -share/doc/HTML/sv/kig/text_label_attaching.png -share/doc/HTML/sv/kig/text_label_wizard.png -share/doc/HTML/sv/kig/text_label_wizard__select_property.png -share/doc/HTML/sv/kinfocenter/blockdevices/common -share/doc/HTML/sv/kinfocenter/blockdevices/index.cache.bz2 -share/doc/HTML/sv/kinfocenter/blockdevices/index.docbook -share/doc/HTML/sv/kinfocenter/common -share/doc/HTML/sv/kinfocenter/devices/common -share/doc/HTML/sv/kinfocenter/devices/index.cache.bz2 -share/doc/HTML/sv/kinfocenter/devices/index.docbook -share/doc/HTML/sv/kinfocenter/dma/common -share/doc/HTML/sv/kinfocenter/dma/index.cache.bz2 -share/doc/HTML/sv/kinfocenter/dma/index.docbook -share/doc/HTML/sv/kinfocenter/index.cache.bz2 -share/doc/HTML/sv/kinfocenter/index.docbook -share/doc/HTML/sv/kinfocenter/interrupts/common -share/doc/HTML/sv/kinfocenter/interrupts/index.cache.bz2 -share/doc/HTML/sv/kinfocenter/interrupts/index.docbook -share/doc/HTML/sv/kinfocenter/ioports/common -share/doc/HTML/sv/kinfocenter/ioports/index.cache.bz2 -share/doc/HTML/sv/kinfocenter/ioports/index.docbook -share/doc/HTML/sv/kinfocenter/memory/common -share/doc/HTML/sv/kinfocenter/memory/index.cache.bz2 -share/doc/HTML/sv/kinfocenter/memory/index.docbook -share/doc/HTML/sv/kinfocenter/nics/common -share/doc/HTML/sv/kinfocenter/nics/index.cache.bz2 -share/doc/HTML/sv/kinfocenter/nics/index.docbook -share/doc/HTML/sv/kinfocenter/partitions/common -share/doc/HTML/sv/kinfocenter/partitions/index.cache.bz2 -share/doc/HTML/sv/kinfocenter/partitions/index.docbook -share/doc/HTML/sv/kinfocenter/pci/common -share/doc/HTML/sv/kinfocenter/pci/index.cache.bz2 -share/doc/HTML/sv/kinfocenter/pci/index.docbook -share/doc/HTML/sv/kinfocenter/pcmcia/common -share/doc/HTML/sv/kinfocenter/pcmcia/index.cache.bz2 -share/doc/HTML/sv/kinfocenter/pcmcia/index.docbook -share/doc/HTML/sv/kinfocenter/processor/common -share/doc/HTML/sv/kinfocenter/processor/index.cache.bz2 -share/doc/HTML/sv/kinfocenter/processor/index.docbook -share/doc/HTML/sv/kinfocenter/protocols/common -share/doc/HTML/sv/kinfocenter/protocols/index.cache.bz2 -share/doc/HTML/sv/kinfocenter/protocols/index.docbook -share/doc/HTML/sv/kinfocenter/samba/common -share/doc/HTML/sv/kinfocenter/samba/index.cache.bz2 -share/doc/HTML/sv/kinfocenter/samba/index.docbook -share/doc/HTML/sv/kinfocenter/scsi/common -share/doc/HTML/sv/kinfocenter/scsi/index.cache.bz2 -share/doc/HTML/sv/kinfocenter/scsi/index.docbook -share/doc/HTML/sv/kinfocenter/sound/common -share/doc/HTML/sv/kinfocenter/sound/index.cache.bz2 -share/doc/HTML/sv/kinfocenter/sound/index.docbook -share/doc/HTML/sv/kinfocenter/usb/common -share/doc/HTML/sv/kinfocenter/usb/index.cache.bz2 -share/doc/HTML/sv/kinfocenter/usb/index.docbook -share/doc/HTML/sv/kinfocenter/xserver/common -share/doc/HTML/sv/kinfocenter/xserver/index.cache.bz2 -share/doc/HTML/sv/kinfocenter/xserver/index.docbook -share/doc/HTML/sv/kio_audiocd/audiocd.docbook -share/doc/HTML/sv/kioslave/bzip.docbook -share/doc/HTML/sv/kioslave/bzip2.docbook -share/doc/HTML/sv/kioslave/cgi.docbook -share/doc/HTML/sv/kioslave/common -share/doc/HTML/sv/kioslave/data.docbook -share/doc/HTML/sv/kioslave/file.docbook -share/doc/HTML/sv/kioslave/finger.docbook -share/doc/HTML/sv/kioslave/fish.docbook -share/doc/HTML/sv/kioslave/floppy.docbook -share/doc/HTML/sv/kioslave/ftp.docbook -share/doc/HTML/sv/kioslave/gopher.docbook -share/doc/HTML/sv/kioslave/gzip.docbook -share/doc/HTML/sv/kioslave/help.docbook -share/doc/HTML/sv/kioslave/http.docbook -share/doc/HTML/sv/kioslave/https.docbook -share/doc/HTML/sv/kioslave/imap.docbook -share/doc/HTML/sv/kioslave/imaps.docbook -share/doc/HTML/sv/kioslave/index.cache.bz2 -share/doc/HTML/sv/kioslave/index.docbook -share/doc/HTML/sv/kioslave/info.docbook -share/doc/HTML/sv/kioslave/lan.docbook -share/doc/HTML/sv/kioslave/ldap.docbook -share/doc/HTML/sv/kioslave/mac.docbook -share/doc/HTML/sv/kioslave/mailto.docbook -share/doc/HTML/sv/kioslave/man.docbook -share/doc/HTML/sv/kioslave/mrml.docbook -share/doc/HTML/sv/kioslave/news.docbook -share/doc/HTML/sv/kioslave/nfs.docbook -share/doc/HTML/sv/kioslave/nntp.docbook -share/doc/HTML/sv/kioslave/pop3.docbook -share/doc/HTML/sv/kioslave/pop3s.docbook -share/doc/HTML/sv/kioslave/print.docbook -share/doc/HTML/sv/kioslave/rlan.docbook -share/doc/HTML/sv/kioslave/rlogin.docbook -share/doc/HTML/sv/kioslave/sftp.docbook -share/doc/HTML/sv/kioslave/smb.docbook -share/doc/HTML/sv/kioslave/smtp.docbook -share/doc/HTML/sv/kioslave/tar.docbook -share/doc/HTML/sv/kioslave/telnet.docbook -share/doc/HTML/sv/kioslave/thumbnail.docbook -share/doc/HTML/sv/kioslave/webdav.docbook -share/doc/HTML/sv/kioslave/webdavs.docbook -share/doc/HTML/sv/kiten/common -share/doc/HTML/sv/kiten/index.cache.bz2 -share/doc/HTML/sv/kiten/index.docbook -share/doc/HTML/sv/kjots/common -share/doc/HTML/sv/kjots/index.cache.bz2 -share/doc/HTML/sv/kjots/index.docbook -share/doc/HTML/sv/kjumpingcube/common -share/doc/HTML/sv/kjumpingcube/index.cache.bz2 -share/doc/HTML/sv/kjumpingcube/index.docbook -share/doc/HTML/sv/klatin/adjectives.docbook -share/doc/HTML/sv/klatin/common -share/doc/HTML/sv/klatin/index.cache.bz2 -share/doc/HTML/sv/klatin/index.docbook -share/doc/HTML/sv/klatin/klatin1.png -share/doc/HTML/sv/klatin/klatin2.png -share/doc/HTML/sv/klatin/klatin3.png -share/doc/HTML/sv/klatin/klatin4.png -share/doc/HTML/sv/klatin/nouns.docbook -share/doc/HTML/sv/klatin/numbers.docbook -share/doc/HTML/sv/klatin/pronouns.docbook -share/doc/HTML/sv/klatin/results.png -share/doc/HTML/sv/klatin/verbs.docbook -share/doc/HTML/sv/kleopatra/common -share/doc/HTML/sv/kleopatra/index.cache.bz2 -share/doc/HTML/sv/kleopatra/index.docbook -share/doc/HTML/sv/klettres/common -share/doc/HTML/sv/klettres/index.cache.bz2 -share/doc/HTML/sv/klettres/index.docbook -share/doc/HTML/sv/klettres/klettres1.png -share/doc/HTML/sv/klettres/klettres2.png -share/doc/HTML/sv/klettres/klettres3.png -share/doc/HTML/sv/klettres/klettres4.png -share/doc/HTML/sv/klettres/klettres5.png -share/doc/HTML/sv/klickety/common -share/doc/HTML/sv/klickety/index.cache.bz2 -share/doc/HTML/sv/klickety/index.docbook -share/doc/HTML/sv/klines/common -share/doc/HTML/sv/klines/index.cache.bz2 -share/doc/HTML/sv/klines/index.docbook -share/doc/HTML/sv/klinkstatus/common -share/doc/HTML/sv/klinkstatus/index.cache.bz2 -share/doc/HTML/sv/klinkstatus/index.docbook -share/doc/HTML/sv/klinkstatus/screenshot.png -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/kmag/common -share/doc/HTML/sv/kmag/images/screenshot.png -share/doc/HTML/sv/kmag/index.cache.bz2 -share/doc/HTML/sv/kmag/index.docbook -share/doc/HTML/sv/kmag/screenshot.png -share/doc/HTML/sv/kmahjongg/common -share/doc/HTML/sv/kmahjongg/index.cache.bz2 -share/doc/HTML/sv/kmahjongg/index.docbook -share/doc/HTML/sv/kmail/common -share/doc/HTML/sv/kmail/configure.docbook -share/doc/HTML/sv/kmail/credits-and-licenses.docbook -share/doc/HTML/sv/kmail/faq.docbook -share/doc/HTML/sv/kmail/getting-started.docbook -share/doc/HTML/sv/kmail/importing.docbook -share/doc/HTML/sv/kmail/index.cache.bz2 -share/doc/HTML/sv/kmail/index.docbook -share/doc/HTML/sv/kmail/intro.docbook -share/doc/HTML/sv/kmail/menus.docbook -share/doc/HTML/sv/kmail/using-kmail.docbook -share/doc/HTML/sv/kmathtool/common -share/doc/HTML/sv/kmathtool/index.cache.bz2 -share/doc/HTML/sv/kmathtool/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/kmessedwords/common -share/doc/HTML/sv/kmessedwords/index.cache.bz2 -share/doc/HTML/sv/kmessedwords/index.docbook -share/doc/HTML/sv/kmessedwords/kmw1.png -share/doc/HTML/sv/kmessedwords/kmw1bis.png -share/doc/HTML/sv/kmessedwords/kmw2.png -share/doc/HTML/sv/kmessedwords/kmw3.png -share/doc/HTML/sv/kmessedwords/kmw4.png -share/doc/HTML/sv/kmid/common -share/doc/HTML/sv/kmid/index.cache.bz2 -share/doc/HTML/sv/kmid/index.docbook -share/doc/HTML/sv/kmidi/common -share/doc/HTML/sv/kmidi/index.cache.bz2 -share/doc/HTML/sv/kmidi/index.docbook -share/doc/HTML/sv/kmines/common -share/doc/HTML/sv/kmines/index.cache.bz2 -share/doc/HTML/sv/kmines/index.docbook -share/doc/HTML/sv/kmines/kmines1.png -share/doc/HTML/sv/kmines/kmines2.png -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/kmix/kmix-window.png -share/doc/HTML/sv/kmoon/common -share/doc/HTML/sv/kmoon/index.cache.bz2 -share/doc/HTML/sv/kmoon/index.docbook -share/doc/HTML/sv/kmousetool/common -share/doc/HTML/sv/kmousetool/index.cache.bz2 -share/doc/HTML/sv/kmousetool/index.docbook -share/doc/HTML/sv/kmouth/common -share/doc/HTML/sv/kmouth/index.cache.bz2 -share/doc/HTML/sv/kmouth/index.docbook -share/doc/HTML/sv/kmouth/kmouthcpref.png -share/doc/HTML/sv/kmouth/kmouthctts.png -share/doc/HTML/sv/kmouth/kmouthcwcp.png -share/doc/HTML/sv/kmouth/kmouthedit.png -share/doc/HTML/sv/kmouth/kmouthmain.png -share/doc/HTML/sv/kmouth/kmouthwizard.png -share/doc/HTML/sv/kmplot/commands.docbook -share/doc/HTML/sv/kmplot/common -share/doc/HTML/sv/kmplot/configuration.docbook -share/doc/HTML/sv/kmplot/credits.docbook -share/doc/HTML/sv/kmplot/dcop.docbook -share/doc/HTML/sv/kmplot/developer.docbook -share/doc/HTML/sv/kmplot/firststeps.docbook -share/doc/HTML/sv/kmplot/index.cache.bz2 -share/doc/HTML/sv/kmplot/index.docbook -share/doc/HTML/sv/kmplot/install.docbook -share/doc/HTML/sv/kmplot/introduction.docbook -share/doc/HTML/sv/kmplot/main.png -share/doc/HTML/sv/kmplot/menu.docbook -share/doc/HTML/sv/kmplot/namesdlg.png -share/doc/HTML/sv/kmplot/reference.docbook -share/doc/HTML/sv/kmplot/settingsdlg.png -share/doc/HTML/sv/kmplot/using.docbook -share/doc/HTML/sv/knewsticker/common -share/doc/HTML/sv/knewsticker/contextmenu.png -share/doc/HTML/sv/knewsticker/index.cache.bz2 -share/doc/HTML/sv/knewsticker/index.docbook -share/doc/HTML/sv/knewsticker/kcmnewsticker-filters.png -share/doc/HTML/sv/knewsticker/kcmnewsticker-general.png -share/doc/HTML/sv/knewsticker/kcmnewsticker-newssitedialog.png -share/doc/HTML/sv/knewsticker/kcmnewsticker-newssources.png -share/doc/HTML/sv/knewsticker/kcmnewsticker-scrollerprefs.png -share/doc/HTML/sv/knode/commands.docbook -share/doc/HTML/sv/knode/common -share/doc/HTML/sv/knode/credits.docbook -share/doc/HTML/sv/knode/faq.docbook -share/doc/HTML/sv/knode/gloss.docbook -share/doc/HTML/sv/knode/index.cache.bz2 -share/doc/HTML/sv/knode/index.docbook -share/doc/HTML/sv/knode/install.docbook -share/doc/HTML/sv/knode/introduction.docbook -share/doc/HTML/sv/knode/journey.docbook -share/doc/HTML/sv/knode/knode-cleanup.png -share/doc/HTML/sv/knode/knode-colors-fonts.png -share/doc/HTML/sv/knode/knode-composer-attachments.png -share/doc/HTML/sv/knode/knode-composer-settings.png -share/doc/HTML/sv/knode/knode-edit-filter.png -share/doc/HTML/sv/knode/knode-edit-header1.png -share/doc/HTML/sv/knode/knode-edit-header2.png -share/doc/HTML/sv/knode/knode-filters.png -share/doc/HTML/sv/knode/knode-followup.png -share/doc/HTML/sv/knode/knode-header-settings.png -share/doc/HTML/sv/knode/knode-identity.png -share/doc/HTML/sv/knode/knode-mail-account.png -share/doc/HTML/sv/knode/knode-new-article.png -share/doc/HTML/sv/knode/knode-news-account.png -share/doc/HTML/sv/knode/knode-post-settings.png -share/doc/HTML/sv/knode/knode-read-news-settings.png -share/doc/HTML/sv/knode/knode-reply.png -share/doc/HTML/sv/knode/knode-rule-editor.png -share/doc/HTML/sv/knode/knode-search.png -share/doc/HTML/sv/knode/knode-start.png -share/doc/HTML/sv/knode/knode-subscribe.png -share/doc/HTML/sv/knode/knode-views.png -share/doc/HTML/sv/knode/more.docbook -share/doc/HTML/sv/knode/using-firststart.docbook -share/doc/HTML/sv/knode/using-morefeatures.docbook -share/doc/HTML/sv/knode/using-subscribing.docbook -share/doc/HTML/sv/knotes/common -share/doc/HTML/sv/knotes/index.cache.bz2 -share/doc/HTML/sv/knotes/index.docbook -share/doc/HTML/sv/kodo/common -share/doc/HTML/sv/kodo/index.cache.bz2 -share/doc/HTML/sv/kodo/index.docbook -share/doc/HTML/sv/kolf/common -share/doc/HTML/sv/kolf/index.cache.bz2 -share/doc/HTML/sv/kolf/index.docbook -share/doc/HTML/sv/kolourpaint/common -share/doc/HTML/sv/kolourpaint/image_flip.png -share/doc/HTML/sv/kolourpaint/image_resize_scale.png -share/doc/HTML/sv/kolourpaint/image_rotate.png -share/doc/HTML/sv/kolourpaint/image_skew.png -share/doc/HTML/sv/kolourpaint/index.cache.bz2 -share/doc/HTML/sv/kolourpaint/index.docbook -share/doc/HTML/sv/kommander/basics.docbook -share/doc/HTML/sv/kommander/commands.docbook -share/doc/HTML/sv/kommander/common -share/doc/HTML/sv/kommander/credits.docbook -share/doc/HTML/sv/kommander/dcop.docbook -share/doc/HTML/sv/kommander/editor.docbook -share/doc/HTML/sv/kommander/editor.png -share/doc/HTML/sv/kommander/extending.docbook -share/doc/HTML/sv/kommander/glossary.docbook -share/doc/HTML/sv/kommander/index.cache.bz2 -share/doc/HTML/sv/kommander/index.docbook -share/doc/HTML/sv/kommander/installation.docbook -share/doc/HTML/sv/kommander/introduction.docbook -share/doc/HTML/sv/kommander/q-and-a.docbook -share/doc/HTML/sv/kommander/specials.docbook -share/doc/HTML/sv/kommander/tutorials.docbook -share/doc/HTML/sv/kommander/widgets.docbook -share/doc/HTML/sv/kompare/common -share/doc/HTML/sv/kompare/index.cache.bz2 -share/doc/HTML/sv/kompare/index.docbook -share/doc/HTML/sv/konq-plugins/babel/common -share/doc/HTML/sv/konq-plugins/babel/index.cache.bz2 -share/doc/HTML/sv/konq-plugins/babel/index.docbook -share/doc/HTML/sv/konq-plugins/common -share/doc/HTML/sv/konq-plugins/crashes/common -share/doc/HTML/sv/konq-plugins/crashes/index.cache.bz2 -share/doc/HTML/sv/konq-plugins/crashes/index.docbook -share/doc/HTML/sv/konq-plugins/dirfilter/common -share/doc/HTML/sv/konq-plugins/dirfilter/index.cache.bz2 -share/doc/HTML/sv/konq-plugins/dirfilter/index.docbook -share/doc/HTML/sv/konq-plugins/domtreeviewer/common -share/doc/HTML/sv/konq-plugins/domtreeviewer/index.cache.bz2 -share/doc/HTML/sv/konq-plugins/domtreeviewer/index.docbook -share/doc/HTML/sv/konq-plugins/fsview/common -share/doc/HTML/sv/konq-plugins/fsview/index.cache.bz2 -share/doc/HTML/sv/konq-plugins/fsview/index.docbook -share/doc/HTML/sv/konq-plugins/imgallery/common -share/doc/HTML/sv/konq-plugins/imgallery/folders.png -share/doc/HTML/sv/konq-plugins/imgallery/index.cache.bz2 -share/doc/HTML/sv/konq-plugins/imgallery/index.docbook -share/doc/HTML/sv/konq-plugins/imgallery/look.png -share/doc/HTML/sv/konq-plugins/imgallery/thumbnails.png -share/doc/HTML/sv/konq-plugins/index.cache.bz2 -share/doc/HTML/sv/konq-plugins/index.docbook -share/doc/HTML/sv/konq-plugins/khtmlsettings/common -share/doc/HTML/sv/konq-plugins/khtmlsettings/index.cache.bz2 -share/doc/HTML/sv/konq-plugins/khtmlsettings/index.docbook -share/doc/HTML/sv/konq-plugins/kuick/common -share/doc/HTML/sv/konq-plugins/kuick/index.cache.bz2 -share/doc/HTML/sv/konq-plugins/kuick/index.docbook -share/doc/HTML/sv/konq-plugins/mediaplayer/common -share/doc/HTML/sv/konq-plugins/mediaplayer/index.cache.bz2 -share/doc/HTML/sv/konq-plugins/mediaplayer/index.docbook -share/doc/HTML/sv/konq-plugins/smbmounter/common -share/doc/HTML/sv/konq-plugins/smbmounter/index.cache.bz2 -share/doc/HTML/sv/konq-plugins/smbmounter/index.docbook -share/doc/HTML/sv/konq-plugins/uachanger/common -share/doc/HTML/sv/konq-plugins/uachanger/index.cache.bz2 -share/doc/HTML/sv/konq-plugins/uachanger/index.docbook -share/doc/HTML/sv/konq-plugins/validators/common -share/doc/HTML/sv/konq-plugins/validators/index.cache.bz2 -share/doc/HTML/sv/konq-plugins/validators/index.docbook -share/doc/HTML/sv/konq-plugins/webarchiver/common -share/doc/HTML/sv/konq-plugins/webarchiver/index.cache.bz2 -share/doc/HTML/sv/konq-plugins/webarchiver/index.docbook -share/doc/HTML/sv/konqueror/basics.docbook -share/doc/HTML/sv/konqueror/bookmarks.docbook -share/doc/HTML/sv/konqueror/browser.docbook -share/doc/HTML/sv/konqueror/cmndline.png -share/doc/HTML/sv/konqueror/commands.docbook -share/doc/HTML/sv/konqueror/common -share/doc/HTML/sv/konqueror/config.docbook -share/doc/HTML/sv/konqueror/credits.docbook -share/doc/HTML/sv/konqueror/dirtree.png -share/doc/HTML/sv/konqueror/dragdrop.png -share/doc/HTML/sv/konqueror/faq.docbook -share/doc/HTML/sv/konqueror/filemanager.docbook -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/introduction.docbook -share/doc/HTML/sv/konqueror/konqorg.png -share/doc/HTML/sv/konqueror/man-kbookmarkmerger.1.docbook -share/doc/HTML/sv/konqueror/parts.png -share/doc/HTML/sv/konqueror/path-complete.docbook -share/doc/HTML/sv/konqueror/plugins.docbook -share/doc/HTML/sv/konqueror/save-settings.docbook -share/doc/HTML/sv/konqueror/shortcut1.png -share/doc/HTML/sv/konqueror/shortcut2.png -share/doc/HTML/sv/konqueror/sidebar.docbook -share/doc/HTML/sv/konquest/common -share/doc/HTML/sv/konquest/index.cache.bz2 -share/doc/HTML/sv/konquest/index.docbook -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/konsole/konsole.png -share/doc/HTML/sv/konsole/tabbar.png -share/doc/HTML/sv/konsolekalendar/common -share/doc/HTML/sv/konsolekalendar/index.cache.bz2 -share/doc/HTML/sv/konsolekalendar/index.docbook -share/doc/HTML/sv/kontact/common -share/doc/HTML/sv/kontact/index.cache.bz2 -share/doc/HTML/sv/kontact/index.docbook -share/doc/HTML/sv/kooka/common -share/doc/HTML/sv/kooka/index.cache.bz2 -share/doc/HTML/sv/kooka/index.docbook -share/doc/HTML/sv/kooka/kooka_gocr.png -share/doc/HTML/sv/kooka/kooka_gocr_result.png -share/doc/HTML/sv/kooka/kooka_mainctrl.png -share/doc/HTML/sv/kooka/shortcut0.png -share/doc/HTML/sv/kooka/shortcut1.png -share/doc/HTML/sv/kooka/toolbar.png -share/doc/HTML/sv/kooka/toolbar1.png -share/doc/HTML/sv/kooka/toolbar2.png -share/doc/HTML/sv/kopete/common -share/doc/HTML/sv/kopete/index.cache.bz2 -share/doc/HTML/sv/kopete/index.docbook -share/doc/HTML/sv/kopete/menus.docbook -share/doc/HTML/sv/korganizer/common -share/doc/HTML/sv/korganizer/ep_config.png -share/doc/HTML/sv/korganizer/ep_download.png -share/doc/HTML/sv/korganizer/ep_enable.png -share/doc/HTML/sv/korganizer/ep_menu.png -share/doc/HTML/sv/korganizer/ep_progress.png -share/doc/HTML/sv/korganizer/exchange-plugin.docbook -share/doc/HTML/sv/korganizer/group-scheduling.docbook -share/doc/HTML/sv/korganizer/gs_attendee1.png -share/doc/HTML/sv/korganizer/gs_attendee2.png -share/doc/HTML/sv/korganizer/gs_counter.png -share/doc/HTML/sv/korganizer/gs_filter.png -share/doc/HTML/sv/korganizer/gs_inbox1.png -share/doc/HTML/sv/korganizer/gs_inbox2.png -share/doc/HTML/sv/korganizer/gs_korganizer1.png -share/doc/HTML/sv/korganizer/gs_korganizer2.png -share/doc/HTML/sv/korganizer/gs_korganizer3.png -share/doc/HTML/sv/korganizer/gs_outbox1.png -share/doc/HTML/sv/korganizer/gs_outbox2.png -share/doc/HTML/sv/korganizer/gs_publish.png -share/doc/HTML/sv/korganizer/gs_reply.png -share/doc/HTML/sv/korganizer/gs_setup1.png -share/doc/HTML/sv/korganizer/gs_setup2.png -share/doc/HTML/sv/korganizer/gs_show1.png -share/doc/HTML/sv/korganizer/gs_show2.png -share/doc/HTML/sv/korganizer/gs_whatsnext.png -share/doc/HTML/sv/korganizer/index.cache.bz2 -share/doc/HTML/sv/korganizer/index.docbook -share/doc/HTML/sv/korganizer/o2v_importing1.png -share/doc/HTML/sv/korganizer/o2v_importing2.png -share/doc/HTML/sv/korganizer/o2v_importing3.png -share/doc/HTML/sv/korganizer/outlook-to-vcalendar.docbook -share/doc/HTML/sv/korganizer/plugins-chapter.docbook -share/doc/HTML/sv/korn/common -share/doc/HTML/sv/korn/index.cache.bz2 -share/doc/HTML/sv/korn/index.docbook -share/doc/HTML/sv/kpackage/bsdloc.png -share/doc/HTML/sv/kpackage/common -share/doc/HTML/sv/kpackage/debaptloc.png -share/doc/HTML/sv/kpackage/debloc.png -share/doc/HTML/sv/kpackage/handle.png -share/doc/HTML/sv/kpackage/index.cache.bz2 -share/doc/HTML/sv/kpackage/index.docbook -share/doc/HTML/sv/kpackage/install.png -share/doc/HTML/sv/kpackage/left.png -share/doc/HTML/sv/kpackage/right-change.png -share/doc/HTML/sv/kpackage/right-files.png -share/doc/HTML/sv/kpackage/right-prop.png -share/doc/HTML/sv/kpackage/rpmloc.png -share/doc/HTML/sv/kpackage/search.png -share/doc/HTML/sv/kpackage/searchf.png -share/doc/HTML/sv/kpackage/searchl.png -share/doc/HTML/sv/kpackage/slackloc.png -share/doc/HTML/sv/kpackage/uninstall.png -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/kpager/screenshot.png -share/doc/HTML/sv/kpager/settings.png -share/doc/HTML/sv/kpat/common -share/doc/HTML/sv/kpat/index.cache.bz2 -share/doc/HTML/sv/kpat/index.docbook -share/doc/HTML/sv/kpat/man-kpat.6.docbook -share/doc/HTML/sv/kpdf/common -share/doc/HTML/sv/kpdf/index.cache.bz2 -share/doc/HTML/sv/kpdf/index.docbook -share/doc/HTML/sv/kpercentage/answer.png -share/doc/HTML/sv/kpercentage/commands.docbook -share/doc/HTML/sv/kpercentage/common -share/doc/HTML/sv/kpercentage/credits.docbook -share/doc/HTML/sv/kpercentage/devel.docbook -share/doc/HTML/sv/kpercentage/faq.docbook -share/doc/HTML/sv/kpercentage/help.png -share/doc/HTML/sv/kpercentage/index.cache.bz2 -share/doc/HTML/sv/kpercentage/index.docbook -share/doc/HTML/sv/kpercentage/install.docbook -share/doc/HTML/sv/kpercentage/introduction.docbook -share/doc/HTML/sv/kpercentage/main.png -share/doc/HTML/sv/kpercentage/using.docbook -share/doc/HTML/sv/kpercentage/welcome.png -share/doc/HTML/sv/kpf/common -share/doc/HTML/sv/kpf/index.cache.bz2 -share/doc/HTML/sv/kpf/index.docbook -share/doc/HTML/sv/kpilot/address-app.png -share/doc/HTML/sv/kpilot/common -share/doc/HTML/sv/kpilot/conduit-knotes.png -share/doc/HTML/sv/kpilot/conduit-palmdoc.png -share/doc/HTML/sv/kpilot/conduit-popmail-kmail.png -share/doc/HTML/sv/kpilot/conduit-popmail-recv-method.png -share/doc/HTML/sv/kpilot/conduit-popmail-send-as.png -share/doc/HTML/sv/kpilot/conduit-popmail-send-method.png -share/doc/HTML/sv/kpilot/conduit-popmail-sendmail.png -share/doc/HTML/sv/kpilot/conduit-popmail-smtp.png -share/doc/HTML/sv/kpilot/conduit-popmail-top.png -share/doc/HTML/sv/kpilot/conduit-sysinfo.png -share/doc/HTML/sv/kpilot/conduit-vcal.png -share/doc/HTML/sv/kpilot/configuration.docbook -share/doc/HTML/sv/kpilot/daemon-menu.png -share/doc/HTML/sv/kpilot/db-app.png -share/doc/HTML/sv/kpilot/faq.docbook -share/doc/HTML/sv/kpilot/file-app.png -share/doc/HTML/sv/kpilot/index.cache.bz2 -share/doc/HTML/sv/kpilot/index.docbook -share/doc/HTML/sv/kpilot/main-app.png -share/doc/HTML/sv/kpilot/memo-app.png -share/doc/HTML/sv/kpilot/setup-address.png -share/doc/HTML/sv/kpilot/setup-conduit.png -share/doc/HTML/sv/kpilot/setup-dbspecial.png -share/doc/HTML/sv/kpilot/setup-general.png -share/doc/HTML/sv/kpilot/setup-hotsync.png -share/doc/HTML/sv/kpilot/setup-items.png -share/doc/HTML/sv/kpilot/setup-startup-exit.png -share/doc/HTML/sv/kpilot/setup-sync.png -share/doc/HTML/sv/kpilot/setup-tabs.png -share/doc/HTML/sv/kpilot/setup-viewer.png -share/doc/HTML/sv/kpilot/sidebar.png -share/doc/HTML/sv/kpilot/sync.docbook -share/doc/HTML/sv/kpilot/todo-app.png -share/doc/HTML/sv/kpilot/usage.docbook -share/doc/HTML/sv/kpilot/wizard-conduits.png -share/doc/HTML/sv/kpilot/wizard-connection.png -share/doc/HTML/sv/kpilot/wizard-general.png -share/doc/HTML/sv/kpoker/common -share/doc/HTML/sv/kpoker/index.cache.bz2 -share/doc/HTML/sv/kpoker/index.docbook -share/doc/HTML/sv/kpoker/kpoker1.png -share/doc/HTML/sv/kpoker/kpoker2.png -share/doc/HTML/sv/kpovmodeler/cameraview.png -share/doc/HTML/sv/kpovmodeler/common -share/doc/HTML/sv/kpovmodeler/controlpoints.png -share/doc/HTML/sv/kpovmodeler/defaultviewlayout.png -share/doc/HTML/sv/kpovmodeler/dockwidget.png -share/doc/HTML/sv/kpovmodeler/dockwidgettab.png -share/doc/HTML/sv/kpovmodeler/index.cache.bz2 -share/doc/HTML/sv/kpovmodeler/index.docbook -share/doc/HTML/sv/kpovmodeler/insertaspopup.png -share/doc/HTML/sv/kpovmodeler/objectpropertiesview.png -share/doc/HTML/sv/kpovmodeler/objecttree.png -share/doc/HTML/sv/kpovmodeler/rendermodeoutput.png -share/doc/HTML/sv/kpovmodeler/rendermodequality.png -share/doc/HTML/sv/kpovmodeler/rendermodesize.png -share/doc/HTML/sv/kpovmodeler/rendermodesselection.png -share/doc/HTML/sv/kpovmodeler/rendermodestoolbar.png -share/doc/HTML/sv/kpovmodeler/renderwindow.png -share/doc/HTML/sv/kpovmodeler/texturepreview.png -share/doc/HTML/sv/kpovmodeler/topview.png -share/doc/HTML/sv/kpovmodeler/tutorial01-camera-dialog.png -share/doc/HTML/sv/kpovmodeler/tutorial01-camera-graphic.png -share/doc/HTML/sv/kpovmodeler/tutorial01-ground-color-list.png -share/doc/HTML/sv/kpovmodeler/tutorial01-ground-pigment.png -share/doc/HTML/sv/kpovmodeler/tutorial01-ground-render.png -share/doc/HTML/sv/kpovmodeler/tutorial01-ground-solid-color-1.png -share/doc/HTML/sv/kpovmodeler/tutorial01-ground-solid-color-2.png -share/doc/HTML/sv/kpovmodeler/tutorial01-ground-wrong-colors-render.png -share/doc/HTML/sv/kpovmodeler/tutorial01-light-dialog.png -share/doc/HTML/sv/kpovmodeler/tutorial01-light-graphic.png -share/doc/HTML/sv/kpovmodeler/tutorial01-plane-dialog.png -share/doc/HTML/sv/kpovmodeler/tutorial01-plane-graphic.png -share/doc/HTML/sv/kpovmodeler/tutorial01-plane-tree-expanded.png -share/doc/HTML/sv/kpovmodeler/tutorial01-plane-tree-translate.png -share/doc/HTML/sv/kpovmodeler/tutorial01-sphere-dialog.png -share/doc/HTML/sv/kpovmodeler/tutorial01-sphere-finish-dialog.png -share/doc/HTML/sv/kpovmodeler/tutorial01-sphere-render-finish.png -share/doc/HTML/sv/kpovmodeler/tutorial01-sphere-render-nocolor.png -share/doc/HTML/sv/kpovmodeler/tutorial01-sphere-render-solidcolor.png -share/doc/HTML/sv/kpovmodeler/tutorial01-sphere-solid-color.png -share/doc/HTML/sv/kppp/accounting.docbook -share/doc/HTML/sv/kppp/callback.docbook -share/doc/HTML/sv/kppp/chap.docbook -share/doc/HTML/sv/kppp/common -share/doc/HTML/sv/kppp/dialog-setup.docbook -share/doc/HTML/sv/kppp/getting-online.docbook -share/doc/HTML/sv/kppp/global-settings.docbook -share/doc/HTML/sv/kppp/hayes.docbook -share/doc/HTML/sv/kppp/index.cache.bz2 -share/doc/HTML/sv/kppp/index.docbook -share/doc/HTML/sv/kppp/kppp-account-accounting-tab.png -share/doc/HTML/sv/kppp/kppp-account-dial-tab.png -share/doc/HTML/sv/kppp/kppp-account-dns-tab.png -share/doc/HTML/sv/kppp/kppp-account-execute-tab.png -share/doc/HTML/sv/kppp/kppp-account-gateway-tab.png -share/doc/HTML/sv/kppp/kppp-account-ip-tab.png -share/doc/HTML/sv/kppp/kppp-account-login-script-tab.png -share/doc/HTML/sv/kppp/kppp-config.png -share/doc/HTML/sv/kppp/kppp-device-tab.png -share/doc/HTML/sv/kppp/kppp-dialler-tab.png -share/doc/HTML/sv/kppp/kppp-faq.docbook -share/doc/HTML/sv/kppp/kppp-graph-tab.png -share/doc/HTML/sv/kppp/kppp-misc-tab.png -share/doc/HTML/sv/kppp/kppp-modem-tab.png -share/doc/HTML/sv/kppp/kppp-wizard.png -share/doc/HTML/sv/kppp/security.docbook -share/doc/HTML/sv/kppp/tricks.docbook -share/doc/HTML/sv/kppp/wizard.docbook -share/doc/HTML/sv/krdc/authentication.png -share/doc/HTML/sv/krdc/common -share/doc/HTML/sv/krdc/index.cache.bz2 -share/doc/HTML/sv/krdc/index.docbook -share/doc/HTML/sv/krdc/preferences_profilestab.png -share/doc/HTML/sv/krdc/preferences_rdpdefaultstab.png -share/doc/HTML/sv/krdc/preferences_vncdefaultstab.png -share/doc/HTML/sv/krdc/snapshot.png -share/doc/HTML/sv/krdc/snapshot_connectionspeed.png -share/doc/HTML/sv/krdc/snapshot_nobrowse.png -share/doc/HTML/sv/krdc/snapshot_vncentry.png -share/doc/HTML/sv/krec/common -share/doc/HTML/sv/krec/index.cache.bz2 -share/doc/HTML/sv/krec/index.docbook -share/doc/HTML/sv/krec/krec-configuration.png -share/doc/HTML/sv/krec/krec-hicolor.png -share/doc/HTML/sv/krec/krec-keramik.png -share/doc/HTML/sv/krec/krec-new_file_properties.png -share/doc/HTML/sv/kreversi/common -share/doc/HTML/sv/kreversi/index.cache.bz2 -share/doc/HTML/sv/kreversi/index.docbook -share/doc/HTML/sv/kreversi/kreversi1.png -share/doc/HTML/sv/krfb/common -share/doc/HTML/sv/krfb/configuration_access.png -share/doc/HTML/sv/krfb/configuration_network.png -share/doc/HTML/sv/krfb/configuration_session.png -share/doc/HTML/sv/krfb/connection.png -share/doc/HTML/sv/krfb/email_invitation.png -share/doc/HTML/sv/krfb/index.cache.bz2 -share/doc/HTML/sv/krfb/index.docbook -share/doc/HTML/sv/krfb/invitation_management.png -share/doc/HTML/sv/krfb/personal_invitation.png -share/doc/HTML/sv/krfb/screenshot.png -share/doc/HTML/sv/kruler/common -share/doc/HTML/sv/kruler/index.cache.bz2 -share/doc/HTML/sv/kruler/index.docbook -share/doc/HTML/sv/ksame/common -share/doc/HTML/sv/ksame/index.cache.bz2 -share/doc/HTML/sv/ksame/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/kscd/kscd5.png -share/doc/HTML/sv/kscd/kscd6.png -share/doc/HTML/sv/kshisen/common -share/doc/HTML/sv/kshisen/index.cache.bz2 -share/doc/HTML/sv/kshisen/index.docbook -share/doc/HTML/sv/ksim/common -share/doc/HTML/sv/ksim/index.cache.bz2 -share/doc/HTML/sv/ksim/index.docbook -share/doc/HTML/sv/ksirc/common -share/doc/HTML/sv/ksirc/index.cache.bz2 -share/doc/HTML/sv/ksirc/index.docbook -share/doc/HTML/sv/ksirtet/common -share/doc/HTML/sv/ksirtet/index.cache.bz2 -share/doc/HTML/sv/ksirtet/index.docbook -share/doc/HTML/sv/ksnake/common -share/doc/HTML/sv/ksnake/index.cache.bz2 -share/doc/HTML/sv/ksnake/index.docbook -share/doc/HTML/sv/ksnapshot/common -share/doc/HTML/sv/ksnapshot/index.cache.bz2 -share/doc/HTML/sv/ksnapshot/index.docbook -share/doc/HTML/sv/ksnapshot/preview.png -share/doc/HTML/sv/ksnapshot/window.png -share/doc/HTML/sv/ksokoban/common -share/doc/HTML/sv/ksokoban/index.cache.bz2 -share/doc/HTML/sv/ksokoban/index.docbook -share/doc/HTML/sv/kspaceduel/common -share/doc/HTML/sv/kspaceduel/index.cache.bz2 -share/doc/HTML/sv/kspaceduel/index.docbook -share/doc/HTML/sv/kspaceduel/kspaceduel1.png -share/doc/HTML/sv/kspaceduel/kspaceduel2.png -share/doc/HTML/sv/kspaceduel/kspaceduel3.png -share/doc/HTML/sv/kspell/common -share/doc/HTML/sv/kspell/index.cache.bz2 -share/doc/HTML/sv/kspell/index.docbook -share/doc/HTML/sv/ksplashml/common -share/doc/HTML/sv/ksplashml/index.cache.bz2 -share/doc/HTML/sv/ksplashml/index.docbook -share/doc/HTML/sv/kstars/aavso.png -share/doc/HTML/sv/kstars/ai-contents.docbook -share/doc/HTML/sv/kstars/altvstime.docbook -share/doc/HTML/sv/kstars/altvstime.png -share/doc/HTML/sv/kstars/astroinfo.docbook -share/doc/HTML/sv/kstars/blackbody.docbook -share/doc/HTML/sv/kstars/blackbody.png -share/doc/HTML/sv/kstars/calc-angdist.docbook -share/doc/HTML/sv/kstars/calc-angdist.png -share/doc/HTML/sv/kstars/calc-apcoords.docbook -share/doc/HTML/sv/kstars/calc-apcoords.png -share/doc/HTML/sv/kstars/calc-dayduration.docbook -share/doc/HTML/sv/kstars/calc-daylength.png -share/doc/HTML/sv/kstars/calc-ecliptic.docbook -share/doc/HTML/sv/kstars/calc-ecliptic.png -share/doc/HTML/sv/kstars/calc-eqgal.docbook -share/doc/HTML/sv/kstars/calc-eqgal.png -share/doc/HTML/sv/kstars/calc-equinox.docbook -share/doc/HTML/sv/kstars/calc-equinox.png -share/doc/HTML/sv/kstars/calc-geodetic.docbook -share/doc/HTML/sv/kstars/calc-geodetic.png -share/doc/HTML/sv/kstars/calc-horizontal.docbook -share/doc/HTML/sv/kstars/calc-horizontal.png -share/doc/HTML/sv/kstars/calc-julian.png -share/doc/HTML/sv/kstars/calc-julianday.docbook -share/doc/HTML/sv/kstars/calc-planetcoords.docbook -share/doc/HTML/sv/kstars/calc-planetcoords.png -share/doc/HTML/sv/kstars/calc-precess.docbook -share/doc/HTML/sv/kstars/calc-precess.png -share/doc/HTML/sv/kstars/calc-sidereal.docbook -share/doc/HTML/sv/kstars/calc-sidereal.png -share/doc/HTML/sv/kstars/calculator.docbook -share/doc/HTML/sv/kstars/cequator.docbook -share/doc/HTML/sv/kstars/color_indices.png -share/doc/HTML/sv/kstars/colorandtemp.docbook -share/doc/HTML/sv/kstars/commands.docbook -share/doc/HTML/sv/kstars/common -share/doc/HTML/sv/kstars/config.docbook -share/doc/HTML/sv/kstars/cpoles.docbook -share/doc/HTML/sv/kstars/credits.docbook -share/doc/HTML/sv/kstars/csphere.docbook -share/doc/HTML/sv/kstars/darkmatter.docbook -share/doc/HTML/sv/kstars/dcop.docbook -share/doc/HTML/sv/kstars/detaildialog.png -share/doc/HTML/sv/kstars/details.docbook -share/doc/HTML/sv/kstars/devicemanager.png -share/doc/HTML/sv/kstars/dumpmode.docbook -share/doc/HTML/sv/kstars/ecliptic.docbook -share/doc/HTML/sv/kstars/ellipticalgalaxies.docbook -share/doc/HTML/sv/kstars/equinox.docbook -share/doc/HTML/sv/kstars/faq.docbook -share/doc/HTML/sv/kstars/find.png -share/doc/HTML/sv/kstars/flux.docbook -share/doc/HTML/sv/kstars/fovdialog.png -share/doc/HTML/sv/kstars/geocoords.docbook -share/doc/HTML/sv/kstars/geolocator.png -share/doc/HTML/sv/kstars/greatcircle.docbook -share/doc/HTML/sv/kstars/horizon.docbook -share/doc/HTML/sv/kstars/hourangle.docbook -share/doc/HTML/sv/kstars/index.cache.bz2 -share/doc/HTML/sv/kstars/index.docbook -share/doc/HTML/sv/kstars/indi.docbook -share/doc/HTML/sv/kstars/indiclient.png -share/doc/HTML/sv/kstars/indicontrolpanel.png -share/doc/HTML/sv/kstars/indiscript.png -share/doc/HTML/sv/kstars/install.docbook -share/doc/HTML/sv/kstars/jmoons.docbook -share/doc/HTML/sv/kstars/jmoons.png -share/doc/HTML/sv/kstars/julianday.docbook -share/doc/HTML/sv/kstars/leapyear.docbook -share/doc/HTML/sv/kstars/lightcurve.png -share/doc/HTML/sv/kstars/lightcurves.docbook -share/doc/HTML/sv/kstars/luminosity.docbook -share/doc/HTML/sv/kstars/magnitude.docbook -share/doc/HTML/sv/kstars/meridian.docbook -share/doc/HTML/sv/kstars/newfov.png -share/doc/HTML/sv/kstars/observinglist.docbook -share/doc/HTML/sv/kstars/observinglist.png -share/doc/HTML/sv/kstars/parallax.docbook -share/doc/HTML/sv/kstars/popup.png -share/doc/HTML/sv/kstars/precession.docbook -share/doc/HTML/sv/kstars/quicktour.docbook -share/doc/HTML/sv/kstars/retrograde.docbook -share/doc/HTML/sv/kstars/screen1.png -share/doc/HTML/sv/kstars/scriptbuilder.docbook -share/doc/HTML/sv/kstars/scriptbuilder.png -share/doc/HTML/sv/kstars/sidereal.docbook -share/doc/HTML/sv/kstars/skycoords.docbook -share/doc/HTML/sv/kstars/skymapdevice.png -share/doc/HTML/sv/kstars/solarsys.docbook -share/doc/HTML/sv/kstars/solarsystem.png -share/doc/HTML/sv/kstars/spiralgalaxies.docbook -share/doc/HTML/sv/kstars/star_colors.png -share/doc/HTML/sv/kstars/stars.docbook -share/doc/HTML/sv/kstars/timezones.docbook -share/doc/HTML/sv/kstars/tools.docbook -share/doc/HTML/sv/kstars/utime.docbook -share/doc/HTML/sv/kstars/viewops.png -share/doc/HTML/sv/kstars/wut.docbook -share/doc/HTML/sv/kstars/wut.png -share/doc/HTML/sv/kstars/zenith.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/ksysv/common -share/doc/HTML/sv/ksysv/index.cache.bz2 -share/doc/HTML/sv/ksysv/index.docbook -share/doc/HTML/sv/ktalkd/common -share/doc/HTML/sv/ktalkd/index.cache.bz2 -share/doc/HTML/sv/ktalkd/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/ktimer/common -share/doc/HTML/sv/ktimer/index.cache.bz2 -share/doc/HTML/sv/ktimer/index.docbook -share/doc/HTML/sv/ktnef/common -share/doc/HTML/sv/ktnef/index.cache.bz2 -share/doc/HTML/sv/ktnef/index.docbook -share/doc/HTML/sv/ktouch/common -share/doc/HTML/sv/ktouch/index.cache.bz2 -share/doc/HTML/sv/ktouch/index.docbook -share/doc/HTML/sv/ktouch/screenshot1.png -share/doc/HTML/sv/ktouch/screenshot2.png -share/doc/HTML/sv/ktouch/screenshot3.png -share/doc/HTML/sv/ktron/common -share/doc/HTML/sv/ktron/index.cache.bz2 -share/doc/HTML/sv/ktron/index.docbook -share/doc/HTML/sv/kttsd/common -share/doc/HTML/sv/kttsd/index.cache.bz2 -share/doc/HTML/sv/kttsd/index.docbook -share/doc/HTML/sv/ktuberling/common -share/doc/HTML/sv/ktuberling/index.cache.bz2 -share/doc/HTML/sv/ktuberling/index.docbook -share/doc/HTML/sv/ktuberling/menu.edit.png -share/doc/HTML/sv/ktuberling/menu.file.png -share/doc/HTML/sv/ktuberling/menu.game.png -share/doc/HTML/sv/ktuberling/menu.help.png -share/doc/HTML/sv/ktuberling/menu.option.png -share/doc/HTML/sv/ktuberling/menu.playground.png -share/doc/HTML/sv/ktuberling/menu.raw.png -share/doc/HTML/sv/ktuberling/menu.speech.png -share/doc/HTML/sv/ktuberling/technical-reference.docbook -share/doc/HTML/sv/kturtle/common -share/doc/HTML/sv/kturtle/getting-started.docbook -share/doc/HTML/sv/kturtle/glossary.docbook -share/doc/HTML/sv/kturtle/index.cache.bz2 -share/doc/HTML/sv/kturtle/index.docbook -share/doc/HTML/sv/kturtle/mainwindow.png -share/doc/HTML/sv/kturtle/mainwindow_flower_nrs.png -share/doc/HTML/sv/kturtle/programming-reference.docbook -share/doc/HTML/sv/kturtle/translator-guide.docbook -share/doc/HTML/sv/kturtle/using-kturtle.docbook -share/doc/HTML/sv/kturtle/wrapping.png -share/doc/HTML/sv/kuickshow/common -share/doc/HTML/sv/kuickshow/index.cache.bz2 -share/doc/HTML/sv/kuickshow/index.docbook -share/doc/HTML/sv/kuickshow/screenshot.png -share/doc/HTML/sv/kuser/common -share/doc/HTML/sv/kuser/index.cache.bz2 -share/doc/HTML/sv/kuser/index.docbook -share/doc/HTML/sv/kverbos/common -share/doc/HTML/sv/kverbos/index.cache.bz2 -share/doc/HTML/sv/kverbos/index.docbook -share/doc/HTML/sv/kverbos/input.png -share/doc/HTML/sv/kverbos/mainscreen-leer.png -share/doc/HTML/sv/kverbos/mainscreen1.png -share/doc/HTML/sv/kverbos/newverb.png -share/doc/HTML/sv/kverbos/options.png -share/doc/HTML/sv/kverbos/result.png -share/doc/HTML/sv/kverbos/type.png -share/doc/HTML/sv/kverbos/username.png -share/doc/HTML/sv/kverbos/verblist.png -share/doc/HTML/sv/kview/common -share/doc/HTML/sv/kview/index.cache.bz2 -share/doc/HTML/sv/kview/index.docbook -share/doc/HTML/sv/kview/snapshot1.png -share/doc/HTML/sv/kview/snapshot2.png -share/doc/HTML/sv/kview/snapshot3.png -share/doc/HTML/sv/kview/snapshot4.png -share/doc/HTML/sv/kview/snapshot5.png -share/doc/HTML/sv/kview/snapshot6.png -share/doc/HTML/sv/kview/snapshot7.png -share/doc/HTML/sv/kview/snapshot8.png -share/doc/HTML/sv/kview/snapshot9.png -share/doc/HTML/sv/kvoctrain/art-query-dlg.png -share/doc/HTML/sv/kvoctrain/common -share/doc/HTML/sv/kvoctrain/comp-query-dlg.png -share/doc/HTML/sv/kvoctrain/docprop1-dlg.png -share/doc/HTML/sv/kvoctrain/docprop2-dlg.png -share/doc/HTML/sv/kvoctrain/docprop6-dlg.png -share/doc/HTML/sv/kvoctrain/entry1-dlg.png -share/doc/HTML/sv/kvoctrain/entry2-dlg.png -share/doc/HTML/sv/kvoctrain/entry3-dlg.png -share/doc/HTML/sv/kvoctrain/entry4-dlg.png -share/doc/HTML/sv/kvoctrain/entry5-dlg.png -share/doc/HTML/sv/kvoctrain/entry6-dlg.png -share/doc/HTML/sv/kvoctrain/index.cache.bz2 -share/doc/HTML/sv/kvoctrain/index.docbook -share/doc/HTML/sv/kvoctrain/lang1-dlg.png -share/doc/HTML/sv/kvoctrain/mainview.png -share/doc/HTML/sv/kvoctrain/man-spotlight2kvtml.1.docbook -share/doc/HTML/sv/kvoctrain/mu-query-dlg.png -share/doc/HTML/sv/kvoctrain/options1-dlg.png -share/doc/HTML/sv/kvoctrain/options2-dlg.png -share/doc/HTML/sv/kvoctrain/options3-dlg.png -share/doc/HTML/sv/kvoctrain/options4-dlg.png -share/doc/HTML/sv/kvoctrain/pron-dlg.png -share/doc/HTML/sv/kvoctrain/q-opt1-dlg.png -share/doc/HTML/sv/kvoctrain/q-opt2-dlg.png -share/doc/HTML/sv/kvoctrain/q-opt3-dlg.png -share/doc/HTML/sv/kvoctrain/q-opt4-dlg.png -share/doc/HTML/sv/kvoctrain/query-dlg.png -share/doc/HTML/sv/kvoctrain/stat1-dlg.png -share/doc/HTML/sv/kvoctrain/stat2-dlg.png -share/doc/HTML/sv/kvoctrain/syn-query-dlg.png -share/doc/HTML/sv/kvoctrain/verb-query-dlg.png -share/doc/HTML/sv/kwallet/common -share/doc/HTML/sv/kwallet/index.cache.bz2 -share/doc/HTML/sv/kwallet/index.docbook -share/doc/HTML/sv/kwatchgnupg/common -share/doc/HTML/sv/kwatchgnupg/index.cache.bz2 -share/doc/HTML/sv/kwatchgnupg/index.docbook -share/doc/HTML/sv/kweather/common -share/doc/HTML/sv/kweather/index.cache.bz2 -share/doc/HTML/sv/kweather/index.docbook -share/doc/HTML/sv/kwifimanager/common -share/doc/HTML/sv/kwifimanager/index.cache.bz2 -share/doc/HTML/sv/kwifimanager/index.docbook -share/doc/HTML/sv/kwin4/common -share/doc/HTML/sv/kwin4/index.cache.bz2 -share/doc/HTML/sv/kwin4/index.docbook -share/doc/HTML/sv/kwordquiz/common -share/doc/HTML/sv/kwordquiz/index.cache.bz2 -share/doc/HTML/sv/kwordquiz/index.docbook -share/doc/HTML/sv/kwordquiz/kwq-dlg-characters.png -share/doc/HTML/sv/kwordquiz/kwq-dlg-configure-characters.png -share/doc/HTML/sv/kwordquiz/kwq-dlg-configure-editor.png -share/doc/HTML/sv/kwordquiz/kwq-dlg-configure-quiz.png -share/doc/HTML/sv/kwordquiz/kwq-dlg-languages.png -share/doc/HTML/sv/kwordquiz/kwq-dlg-print-exam.png -share/doc/HTML/sv/kwordquiz/kwq-dlg-print-flashcard.png -share/doc/HTML/sv/kwordquiz/kwq-dlg-print-list.png -share/doc/HTML/sv/kwordquiz/kwq-dlg-print-type.png -share/doc/HTML/sv/kwordquiz/kwq-dlg-rowscolumns.png -share/doc/HTML/sv/kwordquiz/kwq-dlg-sort.png -share/doc/HTML/sv/kwordquiz/kwq-editor.png -share/doc/HTML/sv/kwordquiz/kwq-flashcard.png -share/doc/HTML/sv/kwordquiz/kwq-multiple.png -share/doc/HTML/sv/kwordquiz/kwq-qanda.png -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/kworldclock/man-kworldclock.1.docbook -share/doc/HTML/sv/kworldclock/screenshot-clock-dialog.png -share/doc/HTML/sv/kworldclock/screenshot-mlb.png -share/doc/HTML/sv/kworldclock/screenshot-quairading-clock.png -share/doc/HTML/sv/kworldclock/screenshot-quairading-dialog.png -share/doc/HTML/sv/kworldclock/screenshot-rmb-cities.png -share/doc/HTML/sv/kworldclock/screenshot-rmb-clock.png -share/doc/HTML/sv/kworldclock/screenshot-rmb-daylight.png -share/doc/HTML/sv/kworldclock/screenshot-rmb-flags.png -share/doc/HTML/sv/kworldclock/screenshot-withclocks.png -share/doc/HTML/sv/kworldclock/screenshot-withflags.png -share/doc/HTML/sv/kworldclock/screenshot.png -share/doc/HTML/sv/kwrite/common -share/doc/HTML/sv/kwrite/index.cache.bz2 -share/doc/HTML/sv/kwrite/index.docbook -share/doc/HTML/sv/kwuftpd/common -share/doc/HTML/sv/kwuftpd/directories.png -share/doc/HTML/sv/kwuftpd/index.cache.bz2 -share/doc/HTML/sv/kwuftpd/index.docbook -share/doc/HTML/sv/kwuftpd/logging.png -share/doc/HTML/sv/kwuftpd/messages.png -share/doc/HTML/sv/kwuftpd/ratios.png -share/doc/HTML/sv/kwuftpd/security.png -share/doc/HTML/sv/kwuftpd/uploads.png -share/doc/HTML/sv/kwuftpd/user_classes.png -share/doc/HTML/sv/kwuftpd/virtual.png -share/doc/HTML/sv/kxconfig/common -share/doc/HTML/sv/kxconfig/index.cache.bz2 -share/doc/HTML/sv/kxconfig/index.docbook -share/doc/HTML/sv/kxkb/common -share/doc/HTML/sv/kxkb/index.cache.bz2 -share/doc/HTML/sv/kxkb/index.docbook -share/doc/HTML/sv/kxsldbg/breakpoints_window.png -share/doc/HTML/sv/kxsldbg/callstack.docbook -share/doc/HTML/sv/kxsldbg/callstack_window.png -share/doc/HTML/sv/kxsldbg/common -share/doc/HTML/sv/kxsldbg/configure_window.png -share/doc/HTML/sv/kxsldbg/credits.docbook -share/doc/HTML/sv/kxsldbg/entities.docbook -share/doc/HTML/sv/kxsldbg/entities_window.png -share/doc/HTML/sv/kxsldbg/glossary.docbook -share/doc/HTML/sv/kxsldbg/index.cache.bz2 -share/doc/HTML/sv/kxsldbg/index.docbook -share/doc/HTML/sv/kxsldbg/kxsldbg_configure.docbook -share/doc/HTML/sv/kxsldbg/kxsldbg_inspector.docbook -share/doc/HTML/sv/kxsldbg/kxsldbg_mainwindow.docbook -share/doc/HTML/sv/kxsldbg/kxsldbg_tools.docbook -share/doc/HTML/sv/kxsldbg/main_window.png -share/doc/HTML/sv/kxsldbg/publicid_window.png -share/doc/HTML/sv/kxsldbg/sources.docbook -share/doc/HTML/sv/kxsldbg/sources_window.png -share/doc/HTML/sv/kxsldbg/systemid_window.png -share/doc/HTML/sv/kxsldbg/templates.docbook -share/doc/HTML/sv/kxsldbg/templates_window.png -share/doc/HTML/sv/kxsldbg/variables.docbook -share/doc/HTML/sv/kxsldbg/variables_window.png -share/doc/HTML/sv/kxsldbg/walk_window.png -share/doc/HTML/sv/lisa/common -share/doc/HTML/sv/lisa/index.cache.bz2 -share/doc/HTML/sv/lisa/index.docbook -share/doc/HTML/sv/lskat/common -share/doc/HTML/sv/lskat/index.cache.bz2 -share/doc/HTML/sv/lskat/index.docbook -share/doc/HTML/sv/megami/common -share/doc/HTML/sv/megami/index.cache.bz2 -share/doc/HTML/sv/megami/index.docbook -share/doc/HTML/sv/multisynk/common -share/doc/HTML/sv/multisynk/editdialog-conflicts.png -share/doc/HTML/sv/multisynk/editdialog.png -share/doc/HTML/sv/multisynk/index.cache.bz2 -share/doc/HTML/sv/multisynk/index.docbook -share/doc/HTML/sv/multisynk/konnectors-chapter.docbook -share/doc/HTML/sv/multisynk/logdialog.png -share/doc/HTML/sv/multisynk/mainwin.png -share/doc/HTML/sv/noatun/common -share/doc/HTML/sv/noatun/index.cache.bz2 -share/doc/HTML/sv/noatun/index.docbook -share/doc/HTML/sv/quanta/adv-quanta.docbook -share/doc/HTML/sv/quanta/attribute_tree.png -share/doc/HTML/sv/quanta/common -share/doc/HTML/sv/quanta/conf-action.png -share/doc/HTML/sv/quanta/conf-action1.png -share/doc/HTML/sv/quanta/conf-action2.png -share/doc/HTML/sv/quanta/config-quanta.docbook -share/doc/HTML/sv/quanta/credits-license.docbook -share/doc/HTML/sv/quanta/debugging-quanta.docbook -share/doc/HTML/sv/quanta/doc-view1.png -share/doc/HTML/sv/quanta/dtd-conversion.png -share/doc/HTML/sv/quanta/dtep_doc_img15.png -share/doc/HTML/sv/quanta/dtep_doc_img18.png -share/doc/HTML/sv/quanta/dtep_doc_img21.png -share/doc/HTML/sv/quanta/dtep_doc_img22.png -share/doc/HTML/sv/quanta/dtep_doc_img23.png -share/doc/HTML/sv/quanta/dtep_doc_img24.png -share/doc/HTML/sv/quanta/dtep_doc_img25.png -share/doc/HTML/sv/quanta/dtep_doc_img7.png -share/doc/HTML/sv/quanta/dtep_doc_img8.png -share/doc/HTML/sv/quanta/edit-upload-profile.png -share/doc/HTML/sv/quanta/event-editing.png -share/doc/HTML/sv/quanta/extending-quanta.docbook -share/doc/HTML/sv/quanta/fundamentals.docbook -share/doc/HTML/sv/quanta/glossary.docbook -share/doc/HTML/sv/quanta/index.cache.bz2 -share/doc/HTML/sv/quanta/index.docbook -share/doc/HTML/sv/quanta/installation.docbook -share/doc/HTML/sv/quanta/introduction.docbook -share/doc/HTML/sv/quanta/man-quanta.1.docbook -share/doc/HTML/sv/quanta/plugin-edit.png -share/doc/HTML/sv/quanta/project-1.png -share/doc/HTML/sv/quanta/project-properties.png -share/doc/HTML/sv/quanta/project-tree-view-dir-rmb-menu.png -share/doc/HTML/sv/quanta/project-tree-view-file-rmb-menu.png -share/doc/HTML/sv/quanta/project-upload-dialog.png -share/doc/HTML/sv/quanta/q-and-a.docbook -share/doc/HTML/sv/quanta/quanta-menus.docbook -share/doc/HTML/sv/quanta/quanta-projects.docbook -share/doc/HTML/sv/quanta/quantamdi-editor.png -share/doc/HTML/sv/quanta/quantamdi-treeview.png -share/doc/HTML/sv/quanta/quantamdi.png -share/doc/HTML/sv/quanta/script-action.png -share/doc/HTML/sv/quanta/tag-actions.png -share/doc/HTML/sv/quanta/taginputex.png -share/doc/HTML/sv/quanta/team-editing.png -share/doc/HTML/sv/quanta/template-rmb.png -share/doc/HTML/sv/quanta/text-action.png -share/doc/HTML/sv/quanta/toolbars.png -share/doc/HTML/sv/quanta/using-quanta.docbook -share/doc/HTML/sv/quanta/vplsourceview.png -share/doc/HTML/sv/quanta/working-with-quanta.docbook -share/doc/HTML/sv/scripts/man-adddebug.1.docbook -share/doc/HTML/sv/scripts/man-cheatmake.1.docbook -share/doc/HTML/sv/scripts/man-create_cvsignore.1.docbook -share/doc/HTML/sv/scripts/man-create_makefile.1.docbook -share/doc/HTML/sv/scripts/man-create_makefiles.1.docbook -share/doc/HTML/sv/scripts/man-cvscheck.1.docbook -share/doc/HTML/sv/scripts/man-cvslastchange.1.docbook -share/doc/HTML/sv/scripts/man-cvslastlog.1.docbook -share/doc/HTML/sv/scripts/man-cvsrevertlast.1.docbook -share/doc/HTML/sv/scripts/man-cxxmetric.1.docbook -share/doc/HTML/sv/scripts/man-demangle.1.docbook -share/doc/HTML/sv/scripts/man-extend_dmalloc.1.docbook -share/doc/HTML/sv/scripts/man-extractrc.1.docbook -share/doc/HTML/sv/scripts/man-fixincludes.1.docbook -share/doc/HTML/sv/scripts/man-po2xml.1.docbook -share/doc/HTML/sv/scripts/man-pruneemptydirs.1.docbook -share/doc/HTML/sv/scripts/man-qtdoc.1.docbook -share/doc/HTML/sv/scripts/man-reportview.1.docbook -share/doc/HTML/sv/scripts/man-split2po.1.docbook -share/doc/HTML/sv/scripts/man-swappo.1.docbook -share/doc/HTML/sv/scripts/man-transxx.1.docbook -share/doc/HTML/sv/scripts/man-xml2pot.1.docbook -share/doc/HTML/sv/scripts/man-zonetab2pot.1.docbook -share/doc/HTML/sv/umbrello/authors.docbook -share/doc/HTML/sv/umbrello/code_import_and_generation.docbook -share/doc/HTML/sv/umbrello/common -share/doc/HTML/sv/umbrello/credits.docbook -share/doc/HTML/sv/umbrello/faq.docbook -share/doc/HTML/sv/umbrello/index.cache.bz2 -share/doc/HTML/sv/umbrello/index.docbook -share/doc/HTML/sv/umbrello/installation.docbook -share/doc/HTML/sv/umbrello/introduction.docbook -share/doc/HTML/sv/umbrello/other_features.docbook -share/doc/HTML/sv/umbrello/pics/activity-diagram.png -share/doc/HTML/sv/umbrello/pics/add-remove-languages.png -share/doc/HTML/sv/umbrello/pics/aggregation.png -share/doc/HTML/sv/umbrello/pics/association.png -share/doc/HTML/sv/umbrello/pics/class-diagram.png -share/doc/HTML/sv/umbrello/pics/class.png -share/doc/HTML/sv/umbrello/pics/code-import.png -share/doc/HTML/sv/umbrello/pics/collaboration-diagram.png -share/doc/HTML/sv/umbrello/pics/composition.png -share/doc/HTML/sv/umbrello/pics/folders.png -share/doc/HTML/sv/umbrello/pics/generalization.png -share/doc/HTML/sv/umbrello/pics/generation-options.png -share/doc/HTML/sv/umbrello/pics/sequence-diagram.png -share/doc/HTML/sv/umbrello/pics/state-diagram.png -share/doc/HTML/sv/umbrello/pics/umbrello-main-screen.png -share/doc/HTML/sv/umbrello/pics/umbrello-ui.png -share/doc/HTML/sv/umbrello/pics/use-case-diagram.png -share/doc/HTML/sv/umbrello/uml_basics.docbook -share/doc/HTML/sv/umbrello/working_with_umbrello.docbook -share/doc/HTML/sv/xsldbg/commands.docbook -share/doc/HTML/sv/xsldbg/common -share/doc/HTML/sv/xsldbg/credits.docbook -share/doc/HTML/sv/xsldbg/index.cache.bz2 -share/doc/HTML/sv/xsldbg/index.docbook -share/doc/HTML/sv/xsldbg/introduction.docbook -share/doc/HTML/sv/xsldbg/usage.docbook -share/locale/sv/LC_MESSAGES/akregator.mo -share/locale/sv/LC_MESSAGES/akregator_konqplugin.mo -share/locale/sv/LC_MESSAGES/alsaplayerui.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/ark_plugin.mo -share/locale/sv/LC_MESSAGES/artsbuilder.mo -share/locale/sv/LC_MESSAGES/artscontrol.mo -share/locale/sv/LC_MESSAGES/artsmodules.mo -share/locale/sv/LC_MESSAGES/atlantik.mo -share/locale/sv/LC_MESSAGES/atlantikdesigner.mo -share/locale/sv/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/sv/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/sv/LC_MESSAGES/audiorename_plugin.mo -share/locale/sv/LC_MESSAGES/autorefresh.mo -share/locale/sv/LC_MESSAGES/babelfish.mo -share/locale/sv/LC_MESSAGES/cervisia.mo -share/locale/sv/LC_MESSAGES/charlatanui.mo -share/locale/sv/LC_MESSAGES/childpanelextension.mo -share/locale/sv/LC_MESSAGES/clockapplet.mo -share/locale/sv/LC_MESSAGES/crashesplugin.mo -share/locale/sv/LC_MESSAGES/cupsdconf.mo -share/locale/sv/LC_MESSAGES/cvsservice.mo -share/locale/sv/LC_MESSAGES/dcoprss.mo -share/locale/sv/LC_MESSAGES/devicesapplet.mo -share/locale/sv/LC_MESSAGES/dirfilterplugin.mo -share/locale/sv/LC_MESSAGES/display.mo -share/locale/sv/LC_MESSAGES/dockbarextension.mo -share/locale/sv/LC_MESSAGES/domtreeviewer.mo -share/locale/sv/LC_MESSAGES/drkonqi.mo -share/locale/sv/LC_MESSAGES/dub.mo -share/locale/sv/LC_MESSAGES/extensionproxy.mo -share/locale/sv/LC_MESSAGES/ffrs.mo -share/locale/sv/LC_MESSAGES/filetypes.mo -share/locale/sv/LC_MESSAGES/fontinst.mo -share/locale/sv/LC_MESSAGES/fsview.mo -share/locale/sv/LC_MESSAGES/htmlsearch.mo -share/locale/sv/LC_MESSAGES/imagerename_plugin.mo -share/locale/sv/LC_MESSAGES/imgalleryplugin.mo -share/locale/sv/LC_MESSAGES/irkick.mo -share/locale/sv/LC_MESSAGES/jefferson.mo -share/locale/sv/LC_MESSAGES/joystick.mo -share/locale/sv/LC_MESSAGES/juk.mo -share/locale/sv/LC_MESSAGES/kabc2mutt.mo -share/locale/sv/LC_MESSAGES/kabc_dir.mo -share/locale/sv/LC_MESSAGES/kabc_file.mo -share/locale/sv/LC_MESSAGES/kabc_ldap.mo -share/locale/sv/LC_MESSAGES/kabc_ldapkio.mo -share/locale/sv/LC_MESSAGES/kabc_net.mo -share/locale/sv/LC_MESSAGES/kabc_slox.mo -share/locale/sv/LC_MESSAGES/kabc_sql.mo -share/locale/sv/LC_MESSAGES/kabcformat_binary.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/kalarm.mo -share/locale/sv/LC_MESSAGES/kalzium.mo -share/locale/sv/LC_MESSAGES/kandy.mo -share/locale/sv/LC_MESSAGES/kappfinder.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/kate.mo -share/locale/sv/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/sv/LC_MESSAGES/katedefaultproject.mo -share/locale/sv/LC_MESSAGES/katefiletemplates.mo -share/locale/sv/LC_MESSAGES/katefll_initplugin.mo -share/locale/sv/LC_MESSAGES/katefll_plugin.mo -share/locale/sv/LC_MESSAGES/katehelloworld.mo -share/locale/sv/LC_MESSAGES/katehtmltools.mo -share/locale/sv/LC_MESSAGES/kateinsertcommand.mo -share/locale/sv/LC_MESSAGES/katekjswrapper.mo -share/locale/sv/LC_MESSAGES/katekttsd.mo -share/locale/sv/LC_MESSAGES/katemake.mo -share/locale/sv/LC_MESSAGES/katemodeline.mo -share/locale/sv/LC_MESSAGES/kateopenheader.mo -share/locale/sv/LC_MESSAGES/katepart.mo -share/locale/sv/LC_MESSAGES/katepartkttsd.mo -share/locale/sv/LC_MESSAGES/kateprojectmanager.mo -share/locale/sv/LC_MESSAGES/katepybrowse.mo -share/locale/sv/LC_MESSAGES/katesnippets.mo -share/locale/sv/LC_MESSAGES/katespell.mo -share/locale/sv/LC_MESSAGES/katetabbarextension.mo -share/locale/sv/LC_MESSAGES/katetextfilter.mo -share/locale/sv/LC_MESSAGES/katexmlcheck.mo -share/locale/sv/LC_MESSAGES/katexmltools.mo -share/locale/sv/LC_MESSAGES/katomic.mo -share/locale/sv/LC_MESSAGES/kaudiocreator.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/kbinaryclock.mo -share/locale/sv/LC_MESSAGES/kblackbox.mo -share/locale/sv/LC_MESSAGES/kbounce.mo -share/locale/sv/LC_MESSAGES/kbruch.mo -share/locale/sv/LC_MESSAGES/kbstateapplet.mo -share/locale/sv/LC_MESSAGES/kbugbuster.mo -share/locale/sv/LC_MESSAGES/kcachegrind.mo -share/locale/sv/LC_MESSAGES/kcalc.mo -share/locale/sv/LC_MESSAGES/kcharselect.mo -share/locale/sv/LC_MESSAGES/kcharselectapplet.mo -share/locale/sv/LC_MESSAGES/kcm_krfb.mo -share/locale/sv/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/sv/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/sv/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/sv/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/sv/LC_MESSAGES/kcmaccess.mo -share/locale/sv/LC_MESSAGES/kcmaccessibility.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/kcmcddb.mo -share/locale/sv/LC_MESSAGES/kcmcgi.mo -share/locale/sv/LC_MESSAGES/kcmcolors.mo -share/locale/sv/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/sv/LC_MESSAGES/kcmcrypto.mo -share/locale/sv/LC_MESSAGES/kcmcss.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/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/kcmkabconfig.mo -share/locale/sv/LC_MESSAGES/kcmkamera.mo -share/locale/sv/LC_MESSAGES/kcmkclock.mo -share/locale/sv/LC_MESSAGES/kcmkded.mo -share/locale/sv/LC_MESSAGES/kcmkdnssd.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/kcmkontactnt.mo -share/locale/sv/LC_MESSAGES/kcmktalkd.mo -share/locale/sv/LC_MESSAGES/kcmkttsd.mo -share/locale/sv/LC_MESSAGES/kcmkuick.mo -share/locale/sv/LC_MESSAGES/kcmkurifilt.mo -share/locale/sv/LC_MESSAGES/kcmkvaio.mo -share/locale/sv/LC_MESSAGES/kcmkwallet.mo -share/locale/sv/LC_MESSAGES/kcmkwindecoration.mo -share/locale/sv/LC_MESSAGES/kcmkwinrules.mo -share/locale/sv/LC_MESSAGES/kcmkwintheme.mo -share/locale/sv/LC_MESSAGES/kcmkwm.mo -share/locale/sv/LC_MESSAGES/kcmkxmlrpcd.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/kcmlirc.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/kcmnic.mo -share/locale/sv/LC_MESSAGES/kcmnotify.mo -share/locale/sv/LC_MESSAGES/kcmperformance.mo -share/locale/sv/LC_MESSAGES/kcmprintmgr.mo -share/locale/sv/LC_MESSAGES/kcmsamba.mo -share/locale/sv/LC_MESSAGES/kcmscreensaver.mo -share/locale/sv/LC_MESSAGES/kcmshell.mo -share/locale/sv/LC_MESSAGES/kcmsmartcard.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/kcmthinkpad.mo -share/locale/sv/LC_MESSAGES/kcmusb.mo -share/locale/sv/LC_MESSAGES/kcmview1394.mo -share/locale/sv/LC_MESSAGES/kcmvim.mo -share/locale/sv/LC_MESSAGES/kcmwifi.mo -share/locale/sv/LC_MESSAGES/kcmxinerama.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/kdat.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/kdelibs_colors.mo -share/locale/sv/LC_MESSAGES/kdelirc.mo -share/locale/sv/LC_MESSAGES/kdepasswd.mo -share/locale/sv/LC_MESSAGES/kdepimresources.mo -share/locale/sv/LC_MESSAGES/kdepimwizards.mo -share/locale/sv/LC_MESSAGES/kdeprint.mo -share/locale/sv/LC_MESSAGES/kdeprint_part.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/kdesu.mo -share/locale/sv/LC_MESSAGES/kdesud.mo -share/locale/sv/LC_MESSAGES/kdevdesigner.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/kdgantt.mo -share/locale/sv/LC_MESSAGES/kdialog.mo -share/locale/sv/LC_MESSAGES/kdict.mo -share/locale/sv/LC_MESSAGES/kdictapplet.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/keduca.mo -share/locale/sv/LC_MESSAGES/kenolaba.mo -share/locale/sv/LC_MESSAGES/kfax.mo -share/locale/sv/LC_MESSAGES/kfifteenapplet.mo -share/locale/sv/LC_MESSAGES/kfile_au.mo -share/locale/sv/LC_MESSAGES/kfile_avi.mo -share/locale/sv/LC_MESSAGES/kfile_bmp.mo -share/locale/sv/LC_MESSAGES/kfile_cert.mo -share/locale/sv/LC_MESSAGES/kfile_cpp.mo -share/locale/sv/LC_MESSAGES/kfile_dds.mo -share/locale/sv/LC_MESSAGES/kfile_deb.mo -share/locale/sv/LC_MESSAGES/kfile_desktop.mo -share/locale/sv/LC_MESSAGES/kfile_diff.mo -share/locale/sv/LC_MESSAGES/kfile_drgeo.mo -share/locale/sv/LC_MESSAGES/kfile_dvi.mo -share/locale/sv/LC_MESSAGES/kfile_exr.mo -share/locale/sv/LC_MESSAGES/kfile_flac.mo -share/locale/sv/LC_MESSAGES/kfile_folder.mo -share/locale/sv/LC_MESSAGES/kfile_font.mo -share/locale/sv/LC_MESSAGES/kfile_gif.mo -share/locale/sv/LC_MESSAGES/kfile_html.mo -share/locale/sv/LC_MESSAGES/kfile_ico.mo -share/locale/sv/LC_MESSAGES/kfile_ics.mo -share/locale/sv/LC_MESSAGES/kfile_jpeg.mo -share/locale/sv/LC_MESSAGES/kfile_kig.mo -share/locale/sv/LC_MESSAGES/kfile_lnk.mo -share/locale/sv/LC_MESSAGES/kfile_m3u.mo -share/locale/sv/LC_MESSAGES/kfile_mhtml.mo -share/locale/sv/LC_MESSAGES/kfile_mp3.mo -share/locale/sv/LC_MESSAGES/kfile_mpc.mo -share/locale/sv/LC_MESSAGES/kfile_ogg.mo -share/locale/sv/LC_MESSAGES/kfile_palm.mo -share/locale/sv/LC_MESSAGES/kfile_pcx.mo -share/locale/sv/LC_MESSAGES/kfile_pdf.mo -share/locale/sv/LC_MESSAGES/kfile_png.mo -share/locale/sv/LC_MESSAGES/kfile_pnm.mo -share/locale/sv/LC_MESSAGES/kfile_po.mo -share/locale/sv/LC_MESSAGES/kfile_ps.mo -share/locale/sv/LC_MESSAGES/kfile_rfc822.mo -share/locale/sv/LC_MESSAGES/kfile_rgb.mo -share/locale/sv/LC_MESSAGES/kfile_rpm.mo -share/locale/sv/LC_MESSAGES/kfile_sid.mo -share/locale/sv/LC_MESSAGES/kfile_tga.mo -share/locale/sv/LC_MESSAGES/kfile_theora.mo -share/locale/sv/LC_MESSAGES/kfile_tiff.mo -share/locale/sv/LC_MESSAGES/kfile_torrent.mo -share/locale/sv/LC_MESSAGES/kfile_ts.mo -share/locale/sv/LC_MESSAGES/kfile_txt.mo -share/locale/sv/LC_MESSAGES/kfile_vcf.mo -share/locale/sv/LC_MESSAGES/kfile_wav.mo -share/locale/sv/LC_MESSAGES/kfile_xbm.mo -share/locale/sv/LC_MESSAGES/kfile_xpm.mo -share/locale/sv/LC_MESSAGES/kfileaudiopreview.mo -share/locale/sv/LC_MESSAGES/kfilereplace.mo -share/locale/sv/LC_MESSAGES/kfileshare.mo -share/locale/sv/LC_MESSAGES/kfindpart.mo -share/locale/sv/LC_MESSAGES/kfloppy.mo -share/locale/sv/LC_MESSAGES/kfmclient.mo -share/locale/sv/LC_MESSAGES/kfontinst.mo -share/locale/sv/LC_MESSAGES/kfouleggs.mo -share/locale/sv/LC_MESSAGES/kgamma.mo -share/locale/sv/LC_MESSAGES/kgantt.mo -share/locale/sv/LC_MESSAGES/kget.mo -share/locale/sv/LC_MESSAGES/kghostview.mo -share/locale/sv/LC_MESSAGES/kgoldrunner.mo -share/locale/sv/LC_MESSAGES/kgpg.mo -share/locale/sv/LC_MESSAGES/kgreet_classic.mo -share/locale/sv/LC_MESSAGES/kgreet_winbind.mo -share/locale/sv/LC_MESSAGES/khangman.mo -share/locale/sv/LC_MESSAGES/khelpcenter.mo -share/locale/sv/LC_MESSAGES/khexedit.mo -share/locale/sv/LC_MESSAGES/khexedit2part.mo -share/locale/sv/LC_MESSAGES/khotkeys.mo -share/locale/sv/LC_MESSAGES/khtmlkttsd.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/kig.mo -share/locale/sv/LC_MESSAGES/kimagemapeditor.mo -share/locale/sv/LC_MESSAGES/kinetd.mo -share/locale/sv/LC_MESSAGES/kio.mo -share/locale/sv/LC_MESSAGES/kio_audiocd.mo -share/locale/sv/LC_MESSAGES/kio_devices.mo -share/locale/sv/LC_MESSAGES/kio_finger.mo -share/locale/sv/LC_MESSAGES/kio_fish.mo -share/locale/sv/LC_MESSAGES/kio_floppy.mo -share/locale/sv/LC_MESSAGES/kio_groupwise.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_ldap.mo -share/locale/sv/LC_MESSAGES/kio_mac.mo -share/locale/sv/LC_MESSAGES/kio_man.mo -share/locale/sv/LC_MESSAGES/kio_media.mo -share/locale/sv/LC_MESSAGES/kio_mobile.mo -share/locale/sv/LC_MESSAGES/kio_newimap4.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_print.mo -share/locale/sv/LC_MESSAGES/kio_remote.mo -share/locale/sv/LC_MESSAGES/kio_settings.mo -share/locale/sv/LC_MESSAGES/kio_sftp.mo -share/locale/sv/LC_MESSAGES/kio_sieve.mo -share/locale/sv/LC_MESSAGES/kio_smb.mo -share/locale/sv/LC_MESSAGES/kio_smtp.mo -share/locale/sv/LC_MESSAGES/kio_svn.mo -share/locale/sv/LC_MESSAGES/kio_system.mo -share/locale/sv/LC_MESSAGES/kio_trash.mo -share/locale/sv/LC_MESSAGES/kio_zeroconf.mo -share/locale/sv/LC_MESSAGES/kioexec.mo -share/locale/sv/LC_MESSAGES/kiten.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/klatin.mo -share/locale/sv/LC_MESSAGES/klegacyimport.mo -share/locale/sv/LC_MESSAGES/kleopatra.mo -share/locale/sv/LC_MESSAGES/klettres.mo -share/locale/sv/LC_MESSAGES/klickety.mo -share/locale/sv/LC_MESSAGES/klines.mo -share/locale/sv/LC_MESSAGES/klinkstatus.mo -share/locale/sv/LC_MESSAGES/klipper.mo -share/locale/sv/LC_MESSAGES/klock.mo -share/locale/sv/LC_MESSAGES/kmag.mo -share/locale/sv/LC_MESSAGES/kmahjongg.mo -share/locale/sv/LC_MESSAGES/kmail.mo -share/locale/sv/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/sv/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/sv/LC_MESSAGES/kmailcvt.mo -share/locale/sv/LC_MESSAGES/kmathapplet.mo -share/locale/sv/LC_MESSAGES/kmathtool.mo -share/locale/sv/LC_MESSAGES/kmcop.mo -share/locale/sv/LC_MESSAGES/kmenuapplet.mo -share/locale/sv/LC_MESSAGES/kmenuedit.mo -share/locale/sv/LC_MESSAGES/kmessedwords.mo -share/locale/sv/LC_MESSAGES/kmid.mo -share/locale/sv/LC_MESSAGES/kmilo_delli8k.mo -share/locale/sv/LC_MESSAGES/kmilo_generic.mo -share/locale/sv/LC_MESSAGES/kmilo_kvaio.mo -share/locale/sv/LC_MESSAGES/kmilo_powerbook.mo -share/locale/sv/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/sv/LC_MESSAGES/kmilod.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/kmobile.mo -share/locale/sv/LC_MESSAGES/kmoon.mo -share/locale/sv/LC_MESSAGES/kmousetool.mo -share/locale/sv/LC_MESSAGES/kmouth.mo -share/locale/sv/LC_MESSAGES/kmplot.mo -share/locale/sv/LC_MESSAGES/kmrml.mo -share/locale/sv/LC_MESSAGES/knetattach.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/kodo.mo -share/locale/sv/LC_MESSAGES/kolf.mo -share/locale/sv/LC_MESSAGES/kolourpaint.mo -share/locale/sv/LC_MESSAGES/kolourpicker.mo -share/locale/sv/LC_MESSAGES/kommander.mo -share/locale/sv/LC_MESSAGES/kompare.mo -share/locale/sv/LC_MESSAGES/konnector_dummy.mo -share/locale/sv/LC_MESSAGES/konnector_kabc.mo -share/locale/sv/LC_MESSAGES/konnector_kcal.mo -share/locale/sv/LC_MESSAGES/konnector_local.mo -share/locale/sv/LC_MESSAGES/konnector_qtopia.mo -share/locale/sv/LC_MESSAGES/konnector_remote.mo -share/locale/sv/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/sv/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/sv/LC_MESSAGES/konqsidebar_news.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/konsolekalendar.mo -share/locale/sv/LC_MESSAGES/kontact.mo -share/locale/sv/LC_MESSAGES/kooka.mo -share/locale/sv/LC_MESSAGES/kopete.mo -share/locale/sv/LC_MESSAGES/korganizer.mo -share/locale/sv/LC_MESSAGES/korn.mo -share/locale/sv/LC_MESSAGES/kpackage.mo -share/locale/sv/LC_MESSAGES/kpager.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/kpdf.mo -share/locale/sv/LC_MESSAGES/kpercentage.mo -share/locale/sv/LC_MESSAGES/kpersonalizer.mo -share/locale/sv/LC_MESSAGES/kpf.mo -share/locale/sv/LC_MESSAGES/kpilot.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/krandr.mo -share/locale/sv/LC_MESSAGES/krdb.mo -share/locale/sv/LC_MESSAGES/krdc.mo -share/locale/sv/LC_MESSAGES/kreadconfig.mo -share/locale/sv/LC_MESSAGES/krec.mo -share/locale/sv/LC_MESSAGES/kregexpeditor.mo -share/locale/sv/LC_MESSAGES/kres_blogging.mo -share/locale/sv/LC_MESSAGES/kres_bugzilla.mo -share/locale/sv/LC_MESSAGES/kres_exchange.mo -share/locale/sv/LC_MESSAGES/kres_featureplan.mo -share/locale/sv/LC_MESSAGES/kres_groupwise.mo -share/locale/sv/LC_MESSAGES/kres_kolab.mo -share/locale/sv/LC_MESSAGES/kres_opengroupware.mo -share/locale/sv/LC_MESSAGES/kres_remote.mo -share/locale/sv/LC_MESSAGES/kres_xmlrpc.mo -share/locale/sv/LC_MESSAGES/kreversi.mo -share/locale/sv/LC_MESSAGES/krfb.mo -share/locale/sv/LC_MESSAGES/kruler.mo -share/locale/sv/LC_MESSAGES/krunapplet.mo -share/locale/sv/LC_MESSAGES/ksame.mo -share/locale/sv/LC_MESSAGES/ksayit.mo -share/locale/sv/LC_MESSAGES/kscd.mo -share/locale/sv/LC_MESSAGES/kscreensaver.mo -share/locale/sv/LC_MESSAGES/kshisen.mo -share/locale/sv/LC_MESSAGES/ksig.mo -share/locale/sv/LC_MESSAGES/ksim.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/ksplashthemes.mo -share/locale/sv/LC_MESSAGES/kstars.mo -share/locale/sv/LC_MESSAGES/kstart.mo -share/locale/sv/LC_MESSAGES/kstartperf.mo -share/locale/sv/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/sv/LC_MESSAGES/kstyle_phase_config.mo -share/locale/sv/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/sv/LC_MESSAGES/ksvgplugin.mo -share/locale/sv/LC_MESSAGES/ksync.mo -share/locale/sv/LC_MESSAGES/ksysguard.mo -share/locale/sv/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/sv/LC_MESSAGES/ksystraycmd.mo -share/locale/sv/LC_MESSAGES/ksysv.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/ktexteditor_autobookmarker.mo -share/locale/sv/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/sv/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/sv/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/sv/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/sv/LC_MESSAGES/ktexteditor_kttsd.mo -share/locale/sv/LC_MESSAGES/kthememanager.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/ktnef.mo -share/locale/sv/LC_MESSAGES/ktouch.mo -share/locale/sv/LC_MESSAGES/ktron.mo -share/locale/sv/LC_MESSAGES/kttsd.mo -share/locale/sv/LC_MESSAGES/kttsd_commandplugin.mo -share/locale/sv/LC_MESSAGES/kttsd_eposplugin.mo -share/locale/sv/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/sv/LC_MESSAGES/kttsd_fliteplugin.mo -share/locale/sv/LC_MESSAGES/kttsd_freettsplugin.mo -share/locale/sv/LC_MESSAGES/kttsd_hadifixplugin.mo -share/locale/sv/LC_MESSAGES/kttsd_sbdplugin.mo -share/locale/sv/LC_MESSAGES/kttsd_stringreplacerplugin.mo -share/locale/sv/LC_MESSAGES/kttsd_talkerchooserplugin.mo -share/locale/sv/LC_MESSAGES/kttsd_xmltransformerplugin.mo -share/locale/sv/LC_MESSAGES/kttsjobmgr.mo -share/locale/sv/LC_MESSAGES/kttsmgr.mo -share/locale/sv/LC_MESSAGES/ktuberling.mo -share/locale/sv/LC_MESSAGES/kturtle.mo -share/locale/sv/LC_MESSAGES/ktux.mo -share/locale/sv/LC_MESSAGES/kuick_plugin.mo -share/locale/sv/LC_MESSAGES/kuickshow.mo -share/locale/sv/LC_MESSAGES/kuiviewer.mo -share/locale/sv/LC_MESSAGES/kuser.mo -share/locale/sv/LC_MESSAGES/kverbos.mo -share/locale/sv/LC_MESSAGES/kview.mo -share/locale/sv/LC_MESSAGES/kview_scale.mo -share/locale/sv/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/sv/LC_MESSAGES/kviewcanvas.mo -share/locale/sv/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/sv/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/sv/LC_MESSAGES/kviewscannerplugin.mo -share/locale/sv/LC_MESSAGES/kviewshell.mo -share/locale/sv/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/sv/LC_MESSAGES/kviewviewer.mo -share/locale/sv/LC_MESSAGES/kvoctrain.mo -share/locale/sv/LC_MESSAGES/kwalletmanager.mo -share/locale/sv/LC_MESSAGES/kwatchgnupg.mo -share/locale/sv/LC_MESSAGES/kweather.mo -share/locale/sv/LC_MESSAGES/kwifimanager.mo -share/locale/sv/LC_MESSAGES/kwin.mo -share/locale/sv/LC_MESSAGES/kwin4.mo -share/locale/sv/LC_MESSAGES/kwin_art_clients.mo -share/locale/sv/LC_MESSAGES/kwin_clients.mo -share/locale/sv/LC_MESSAGES/kwireless.mo -share/locale/sv/LC_MESSAGES/kwordquiz.mo -share/locale/sv/LC_MESSAGES/kworldclock.mo -share/locale/sv/LC_MESSAGES/kwriteconfig.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/kxsldbg.mo -share/locale/sv/LC_MESSAGES/libKTTSD.mo -share/locale/sv/LC_MESSAGES/libcalendarresources.mo -share/locale/sv/LC_MESSAGES/libdmctl.mo -share/locale/sv/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/sv/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/sv/LC_MESSAGES/libkcal.mo -share/locale/sv/LC_MESSAGES/libkcalsystem.mo -share/locale/sv/LC_MESSAGES/libkcddb.mo -share/locale/sv/LC_MESSAGES/libkdegames.mo -share/locale/sv/LC_MESSAGES/libkdehighscores.mo -share/locale/sv/LC_MESSAGES/libkdenetwork.mo -share/locale/sv/LC_MESSAGES/libkdepim.mo -share/locale/sv/LC_MESSAGES/libkholidays.mo -share/locale/sv/LC_MESSAGES/libkicker.mo -share/locale/sv/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/sv/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/sv/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/sv/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/sv/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/sv/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/sv/LC_MESSAGES/libkickermenu_tom.mo -share/locale/sv/LC_MESSAGES/libkleopatra.mo -share/locale/sv/LC_MESSAGES/libkmime.mo -share/locale/sv/LC_MESSAGES/libkonq.mo -share/locale/sv/LC_MESSAGES/libkpgp.mo -share/locale/sv/LC_MESSAGES/libkpimexchange.mo -share/locale/sv/LC_MESSAGES/libkscan.mo -share/locale/sv/LC_MESSAGES/libkscreensaver.mo -share/locale/sv/LC_MESSAGES/libksieve.mo -share/locale/sv/LC_MESSAGES/libksirtet.mo -share/locale/sv/LC_MESSAGES/libksync.mo -share/locale/sv/LC_MESSAGES/libtaskbar.mo -share/locale/sv/LC_MESSAGES/libtaskmanager.mo -share/locale/sv/LC_MESSAGES/lockout.mo -share/locale/sv/LC_MESSAGES/lskat.mo -share/locale/sv/LC_MESSAGES/lyrics.mo -share/locale/sv/LC_MESSAGES/mediaapplet.mo -share/locale/sv/LC_MESSAGES/mediacontrol.mo -share/locale/sv/LC_MESSAGES/minitoolsplugin.mo -share/locale/sv/LC_MESSAGES/multisynk.mo -share/locale/sv/LC_MESSAGES/naughtyapplet.mo -share/locale/sv/LC_MESSAGES/nexscope.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/pitchablespeed.mo -share/locale/sv/LC_MESSAGES/ppdtranslations.mo -share/locale/sv/LC_MESSAGES/privacy.mo -share/locale/sv/LC_MESSAGES/qeditor.mo -share/locale/sv/LC_MESSAGES/quanta.mo -share/locale/sv/LC_MESSAGES/quicklauncher.mo -share/locale/sv/LC_MESSAGES/rellinks.mo -share/locale/sv/LC_MESSAGES/searchbarplugin.mo -share/locale/sv/LC_MESSAGES/secpolicy.mo -share/locale/sv/LC_MESSAGES/spy.mo -share/locale/sv/LC_MESSAGES/synaescope.mo -share/locale/sv/LC_MESSAGES/taskbarextension.mo -share/locale/sv/LC_MESSAGES/timezones.mo -share/locale/sv/LC_MESSAGES/tippecanoe.mo -share/locale/sv/LC_MESSAGES/trashapplet.mo -share/locale/sv/LC_MESSAGES/tyler.mo -share/locale/sv/LC_MESSAGES/uachangerplugin.mo -share/locale/sv/LC_MESSAGES/umbrello.mo -share/locale/sv/LC_MESSAGES/useraccount.mo -share/locale/sv/LC_MESSAGES/validatorsplugin.mo -share/locale/sv/LC_MESSAGES/vimpart.mo -share/locale/sv/LC_MESSAGES/wakeup.mo -share/locale/sv/LC_MESSAGES/wavecapture.mo -share/locale/sv/LC_MESSAGES/webarchiver.mo -share/locale/sv/charset -share/locale/sv/entry.desktop -share/locale/sv/flag.png -@dirrm share/doc/HTML/sv/xsldbg -@dirrm share/doc/HTML/sv/umbrello/pics -@dirrm share/doc/HTML/sv/umbrello -@dirrm share/doc/HTML/sv/scripts -@dirrm share/doc/HTML/sv/quanta -@dirrm share/doc/HTML/sv/noatun -@dirrm share/doc/HTML/sv/multisynk -@dirrm share/doc/HTML/sv/megami -@dirrm share/doc/HTML/sv/lskat -@dirrm share/doc/HTML/sv/lisa -@dirrm share/doc/HTML/sv/kxsldbg -@dirrm share/doc/HTML/sv/kxkb -@dirrm share/doc/HTML/sv/kxconfig -@dirrm share/doc/HTML/sv/kwuftpd -@dirrm share/doc/HTML/sv/kwrite -@dirrm share/doc/HTML/sv/kworldclock -@dirrm share/doc/HTML/sv/kwordquiz -@dirrm share/doc/HTML/sv/kwin4 -@dirrm share/doc/HTML/sv/kwifimanager -@dirrm share/doc/HTML/sv/kweather -@dirrm share/doc/HTML/sv/kwatchgnupg -@dirrm share/doc/HTML/sv/kwallet -@dirrm share/doc/HTML/sv/kvoctrain -@dirrm share/doc/HTML/sv/kview -@dirrm share/doc/HTML/sv/kverbos -@dirrm share/doc/HTML/sv/kuser -@dirrm share/doc/HTML/sv/kuickshow -@dirrm share/doc/HTML/sv/kturtle -@dirrm share/doc/HTML/sv/ktuberling -@dirrm share/doc/HTML/sv/kttsd -@dirrm share/doc/HTML/sv/ktron -@dirrm share/doc/HTML/sv/ktouch -@dirrm share/doc/HTML/sv/ktnef -@dirrm share/doc/HTML/sv/ktimer -@dirrm share/doc/HTML/sv/kteatime -@dirrm share/doc/HTML/sv/ktalkd -@dirrm share/doc/HTML/sv/ksysv -@dirrm share/doc/HTML/sv/ksysguard -@dirrm share/doc/HTML/sv/kstars -@dirrm share/doc/HTML/sv/ksplashml -@dirrm share/doc/HTML/sv/kspell -@dirrm share/doc/HTML/sv/kspaceduel -@dirrm share/doc/HTML/sv/ksokoban -@dirrm share/doc/HTML/sv/ksnapshot -@dirrm share/doc/HTML/sv/ksnake -@dirrm share/doc/HTML/sv/ksirtet -@dirrm share/doc/HTML/sv/ksirc -@dirrm share/doc/HTML/sv/ksim -@dirrm share/doc/HTML/sv/kshisen -@dirrm share/doc/HTML/sv/kscd -@dirrm share/doc/HTML/sv/ksame -@dirrm share/doc/HTML/sv/kruler -@dirrm share/doc/HTML/sv/krfb -@dirrm share/doc/HTML/sv/kreversi -@dirrm share/doc/HTML/sv/krec -@dirrm share/doc/HTML/sv/krdc -@dirrm share/doc/HTML/sv/kppp -@dirrm share/doc/HTML/sv/kpovmodeler -@dirrm share/doc/HTML/sv/kpoker -@dirrm share/doc/HTML/sv/kpilot -@dirrm share/doc/HTML/sv/kpf -@dirrm share/doc/HTML/sv/kpercentage -@dirrm share/doc/HTML/sv/kpdf -@dirrm share/doc/HTML/sv/kpat -@dirrm share/doc/HTML/sv/kpager -@dirrm share/doc/HTML/sv/kpackage -@dirrm share/doc/HTML/sv/korn -@dirrm share/doc/HTML/sv/korganizer -@dirrm share/doc/HTML/sv/kopete -@dirrm share/doc/HTML/sv/kooka -@dirrm share/doc/HTML/sv/kontact -@dirrm share/doc/HTML/sv/konsolekalendar -@dirrm share/doc/HTML/sv/konsole -@dirrm share/doc/HTML/sv/konquest -@dirrm share/doc/HTML/sv/konqueror -@dirrm share/doc/HTML/sv/konq-plugins/webarchiver -@dirrm share/doc/HTML/sv/konq-plugins/validators -@dirrm share/doc/HTML/sv/konq-plugins/uachanger -@dirrm share/doc/HTML/sv/konq-plugins/smbmounter -@dirrm share/doc/HTML/sv/konq-plugins/mediaplayer -@dirrm share/doc/HTML/sv/konq-plugins/kuick -@dirrm share/doc/HTML/sv/konq-plugins/khtmlsettings -@dirrm share/doc/HTML/sv/konq-plugins/imgallery -@dirrm share/doc/HTML/sv/konq-plugins/fsview -@dirrm share/doc/HTML/sv/konq-plugins/domtreeviewer -@dirrm share/doc/HTML/sv/konq-plugins/dirfilter -@dirrm share/doc/HTML/sv/konq-plugins/crashes -@dirrm share/doc/HTML/sv/konq-plugins/babel -@dirrm share/doc/HTML/sv/konq-plugins -@dirrm share/doc/HTML/sv/kompare -@dirrm share/doc/HTML/sv/kommander -@dirrm share/doc/HTML/sv/kolourpaint -@dirrm share/doc/HTML/sv/kolf -@dirrm share/doc/HTML/sv/kodo -@dirrm share/doc/HTML/sv/knotes -@dirrm share/doc/HTML/sv/knode -@dirrm share/doc/HTML/sv/knewsticker -@dirrm share/doc/HTML/sv/kmplot -@dirrm share/doc/HTML/sv/kmouth -@dirrm share/doc/HTML/sv/kmousetool -@dirrm share/doc/HTML/sv/kmoon -@dirrm share/doc/HTML/sv/kmix -@dirrm share/doc/HTML/sv/kmines -@dirrm share/doc/HTML/sv/kmidi -@dirrm share/doc/HTML/sv/kmid -@dirrm share/doc/HTML/sv/kmessedwords -@dirrm share/doc/HTML/sv/kmenuedit -@dirrm share/doc/HTML/sv/kmathtool -@dirrm share/doc/HTML/sv/kmail -@dirrm share/doc/HTML/sv/kmahjongg -@dirrm share/doc/HTML/sv/kmag/images -@dirrm share/doc/HTML/sv/kmag -@dirrm share/doc/HTML/sv/klipper -@dirrm share/doc/HTML/sv/klinkstatus -@dirrm share/doc/HTML/sv/klines -@dirrm share/doc/HTML/sv/klickety -@dirrm share/doc/HTML/sv/klettres -@dirrm share/doc/HTML/sv/kleopatra -@dirrm share/doc/HTML/sv/klatin -@dirrm share/doc/HTML/sv/kjumpingcube -@dirrm share/doc/HTML/sv/kjots -@dirrm share/doc/HTML/sv/kiten -@dirrm share/doc/HTML/sv/kioslave -@dirrm share/doc/HTML/sv/kio_audiocd -@dirrm share/doc/HTML/sv/kinfocenter/xserver -@dirrm share/doc/HTML/sv/kinfocenter/usb -@dirrm share/doc/HTML/sv/kinfocenter/sound -@dirrm share/doc/HTML/sv/kinfocenter/scsi -@dirrm share/doc/HTML/sv/kinfocenter/samba -@dirrm share/doc/HTML/sv/kinfocenter/protocols -@dirrm share/doc/HTML/sv/kinfocenter/processor -@dirrm share/doc/HTML/sv/kinfocenter/pcmcia -@dirrm share/doc/HTML/sv/kinfocenter/pci -@dirrm share/doc/HTML/sv/kinfocenter/partitions -@dirrm share/doc/HTML/sv/kinfocenter/nics -@dirrm share/doc/HTML/sv/kinfocenter/memory -@dirrm share/doc/HTML/sv/kinfocenter/ioports -@dirrm share/doc/HTML/sv/kinfocenter/interrupts -@dirrm share/doc/HTML/sv/kinfocenter/dma -@dirrm share/doc/HTML/sv/kinfocenter/devices -@dirrm share/doc/HTML/sv/kinfocenter/blockdevices -@dirrm share/doc/HTML/sv/kinfocenter -@dirrm share/doc/HTML/sv/kig -@dirrm share/doc/HTML/sv/kiconedit -@dirrm share/doc/HTML/sv/kicker-applets -@dirrm share/doc/HTML/sv/kicker -@dirrm share/doc/HTML/sv/khexedit -@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/khangman -@dirrm share/doc/HTML/sv/kgpg -@dirrm share/doc/HTML/sv/kgoldrunner -@dirrm share/doc/HTML/sv/kghostview -@dirrm share/doc/HTML/sv/kget -@dirrm share/doc/HTML/sv/kgamma -@dirrm share/doc/HTML/sv/kfouleggs -@dirrm share/doc/HTML/sv/kfloppy -@dirrm share/doc/HTML/sv/kfind -@dirrm share/doc/HTML/sv/kfilereplace -@dirrm share/doc/HTML/sv/kenolaba -@dirrm share/doc/HTML/sv/keduca -@dirrm share/doc/HTML/sv/kedit -@dirrm share/doc/HTML/sv/kdvi -@dirrm share/doc/HTML/sv/kdm -@dirrm share/doc/HTML/sv/kdict -@dirrm share/doc/HTML/sv/kdf -@dirrm share/doc/HTML/sv/kdevelop -@dirrm share/doc/HTML/sv/kdesu -@dirrm share/doc/HTML/sv/kdeprint -@dirrm share/doc/HTML/sv/kdelirc/kcmlirc -@dirrm share/doc/HTML/sv/kdelirc/irkick -@dirrm share/doc/HTML/sv/kdelirc -@dirrm share/doc/HTML/sv/kdelibs -@dirrm share/doc/HTML/sv/kdebugdialog -@dirrm share/doc/HTML/sv/kdearch -@dirrm share/doc/HTML/sv/kde_app_devel -@dirrm share/doc/HTML/sv/kdcop -@dirrm share/doc/HTML/sv/kdat -@dirrm share/doc/HTML/sv/kcron -@dirrm share/doc/HTML/sv/kcontrol/windowmanagement -@dirrm share/doc/HTML/sv/kcontrol/useragent -@dirrm share/doc/HTML/sv/kcontrol/spellchecking -@dirrm share/doc/HTML/sv/kcontrol/smb -@dirrm share/doc/HTML/sv/kcontrol/screensaver -@dirrm share/doc/HTML/sv/kcontrol/proxy -@dirrm share/doc/HTML/sv/kcontrol/powerctrl -@dirrm share/doc/HTML/sv/kcontrol/passwords -@dirrm share/doc/HTML/sv/kcontrol/panelappearance -@dirrm share/doc/HTML/sv/kcontrol/panel -@dirrm share/doc/HTML/sv/kcontrol/netpref -@dirrm share/doc/HTML/sv/kcontrol/mouse -@dirrm share/doc/HTML/sv/kcontrol/laptop -@dirrm share/doc/HTML/sv/kcontrol/language -@dirrm share/doc/HTML/sv/kcontrol/lanbrowser -@dirrm share/doc/HTML/sv/kcontrol/kwindecoration -@dirrm share/doc/HTML/sv/kcontrol/kthememgr -@dirrm share/doc/HTML/sv/kcontrol/kmixcfg -@dirrm share/doc/HTML/sv/kcontrol/khtml -@dirrm share/doc/HTML/sv/kcontrol/keys -@dirrm share/doc/HTML/sv/kcontrol/keyboard -@dirrm share/doc/HTML/sv/kcontrol/kdm -@dirrm share/doc/HTML/sv/kcontrol/kcmtaskbar -@dirrm share/doc/HTML/sv/kcontrol/kcmstyle -@dirrm share/doc/HTML/sv/kcontrol/kcmsmserver -@dirrm share/doc/HTML/sv/kcontrol/kcmnotify -@dirrm share/doc/HTML/sv/kcontrol/kcmlowbatwarn -@dirrm share/doc/HTML/sv/kcontrol/kcmlowbatcrit -@dirrm share/doc/HTML/sv/kcontrol/kcmlaunch -@dirrm share/doc/HTML/sv/kcontrol/kcmktalkd -@dirrm share/doc/HTML/sv/kcontrol/kcmkonsole -@dirrm share/doc/HTML/sv/kcontrol/kcmfontinst -@dirrm share/doc/HTML/sv/kcontrol/kcmcss -@dirrm share/doc/HTML/sv/kcontrol/kcmaccess -@dirrm share/doc/HTML/sv/kcontrol/kalarmd -@dirrm share/doc/HTML/sv/kcontrol/icons -@dirrm share/doc/HTML/sv/kcontrol/helpindex -@dirrm share/doc/HTML/sv/kcontrol/fonts -@dirrm share/doc/HTML/sv/kcontrol/filetypes -@dirrm share/doc/HTML/sv/kcontrol/filemanager -@dirrm share/doc/HTML/sv/kcontrol/energy -@dirrm share/doc/HTML/sv/kcontrol/email -@dirrm share/doc/HTML/sv/kcontrol/ebrowsing -@dirrm share/doc/HTML/sv/kcontrol/desktopbehavior -@dirrm share/doc/HTML/sv/kcontrol/desktop -@dirrm share/doc/HTML/sv/kcontrol/crypto -@dirrm share/doc/HTML/sv/kcontrol/cookies -@dirrm share/doc/HTML/sv/kcontrol/colors -@dirrm share/doc/HTML/sv/kcontrol/clock -@dirrm share/doc/HTML/sv/kcontrol/cache -@dirrm share/doc/HTML/sv/kcontrol/bell -@dirrm share/doc/HTML/sv/kcontrol/background -@dirrm share/doc/HTML/sv/kcontrol/arts -@dirrm share/doc/HTML/sv/kcontrol -@dirrm share/doc/HTML/sv/kcoloredit -@dirrm share/doc/HTML/sv/kcharselect -@dirrm share/doc/HTML/sv/kcalc -@dirrm share/doc/HTML/sv/kcachegrind -@dirrm share/doc/HTML/sv/kbugbuster -@dirrm share/doc/HTML/sv/kbruch -@dirrm share/doc/HTML/sv/kbounce -@dirrm share/doc/HTML/sv/kblackbox -@dirrm share/doc/HTML/sv/kbattleship -@dirrm share/doc/HTML/sv/kbackgammon -@dirrm share/doc/HTML/sv/kbabel -@dirrm share/doc/HTML/sv/katomic -@dirrm share/doc/HTML/sv/kate-plugins -@dirrm share/doc/HTML/sv/kate -@dirrm share/doc/HTML/sv/kasteroids -@dirrm share/doc/HTML/sv/karm -@dirrm share/doc/HTML/sv/kappfinder -@dirrm share/doc/HTML/sv/kandy -@dirrm share/doc/HTML/sv/kamera -@dirrm share/doc/HTML/sv/kalzium -@dirrm share/doc/HTML/sv/kalarm -@dirrm share/doc/HTML/sv/kaddressbook -@dirrm share/doc/HTML/sv/kaboodle -@dirrm share/doc/HTML/sv/juk -@dirrm share/doc/HTML/sv/common -@dirrm share/doc/HTML/sv/cervisia -@dirrm share/doc/HTML/sv/atlantik -@dirrm share/doc/HTML/sv/artsbuilder/images -@dirrm share/doc/HTML/sv/artsbuilder -@dirrm share/doc/HTML/sv/ark -@dirrm share/doc/HTML/sv/amor -@dirrm share/doc/HTML/sv/akregator -@dirrm share/doc/HTML/sv/KRegExpEditor -@dirrm share/apps/kturtle/examples/sv -@dirrm share/apps/kturtle/examples -@dirrm share/apps/kturtle/data -@dirrm share/apps/kturtle -@dirrm share/apps/ktuberling/sounds/sv -@dirrm share/apps/ktuberling/sounds -@dirrm share/apps/ktuberling -@dirrm share/apps/khangman/data/sv -@dirrm share/apps/khangman/data -@dirrm share/apps/khangman diff --git a/misc/kde4-l10n-ta/Makefile b/misc/kde4-l10n-ta/Makefile deleted file mode 100644 index 8a2737ae5229..000000000000 --- a/misc/kde4-l10n-ta/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-ta -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= ta- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Tamil messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-ta/distinfo b/misc/kde4-l10n-ta/distinfo deleted file mode 100644 index 443ee4f6842f..000000000000 --- a/misc/kde4-l10n-ta/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-ta-3.4.2.tar.bz2) = c92b95f128530b14d141d786c3c48b97 -SIZE (KDE/kde-i18n/kde-i18n-ta-3.4.2.tar.bz2) = 2003250 diff --git a/misc/kde4-l10n-ta/pkg-descr b/misc/kde4-l10n-ta/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-ta/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-ta/pkg-plist b/misc/kde4-l10n-ta/pkg-plist deleted file mode 100644 index 8162c8804678..000000000000 --- a/misc/kde4-l10n-ta/pkg-plist +++ /dev/null @@ -1,585 +0,0 @@ -share/locale/ta/LC_MESSAGES/akregator.mo -share/locale/ta/LC_MESSAGES/akregator_konqplugin.mo -share/locale/ta/LC_MESSAGES/alsaplayerui.mo -share/locale/ta/LC_MESSAGES/amor.mo -share/locale/ta/LC_MESSAGES/appletproxy.mo -share/locale/ta/LC_MESSAGES/ark.mo -share/locale/ta/LC_MESSAGES/ark_plugin.mo -share/locale/ta/LC_MESSAGES/artsbuilder.mo -share/locale/ta/LC_MESSAGES/artscontrol.mo -share/locale/ta/LC_MESSAGES/artsmodules.mo -share/locale/ta/LC_MESSAGES/atlantik.mo -share/locale/ta/LC_MESSAGES/atlantikdesigner.mo -share/locale/ta/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/ta/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/ta/LC_MESSAGES/audiorename_plugin.mo -share/locale/ta/LC_MESSAGES/autorefresh.mo -share/locale/ta/LC_MESSAGES/babelfish.mo -share/locale/ta/LC_MESSAGES/cervisia.mo -share/locale/ta/LC_MESSAGES/charlatanui.mo -share/locale/ta/LC_MESSAGES/childpanelextension.mo -share/locale/ta/LC_MESSAGES/clockapplet.mo -share/locale/ta/LC_MESSAGES/crashesplugin.mo -share/locale/ta/LC_MESSAGES/cupsdconf.mo -share/locale/ta/LC_MESSAGES/cvsservice.mo -share/locale/ta/LC_MESSAGES/dcoprss.mo -share/locale/ta/LC_MESSAGES/devicesapplet.mo -share/locale/ta/LC_MESSAGES/dirfilterplugin.mo -share/locale/ta/LC_MESSAGES/display.mo -share/locale/ta/LC_MESSAGES/dockbarextension.mo -share/locale/ta/LC_MESSAGES/domtreeviewer.mo -share/locale/ta/LC_MESSAGES/drkonqi.mo -share/locale/ta/LC_MESSAGES/dub.mo -share/locale/ta/LC_MESSAGES/extensionproxy.mo -share/locale/ta/LC_MESSAGES/ffrs.mo -share/locale/ta/LC_MESSAGES/filetypes.mo -share/locale/ta/LC_MESSAGES/fontinst.mo -share/locale/ta/LC_MESSAGES/fsview.mo -share/locale/ta/LC_MESSAGES/htmlsearch.mo -share/locale/ta/LC_MESSAGES/imagerename_plugin.mo -share/locale/ta/LC_MESSAGES/imgalleryplugin.mo -share/locale/ta/LC_MESSAGES/irkick.mo -share/locale/ta/LC_MESSAGES/jefferson.mo -share/locale/ta/LC_MESSAGES/joystick.mo -share/locale/ta/LC_MESSAGES/juk.mo -share/locale/ta/LC_MESSAGES/kabc2mutt.mo -share/locale/ta/LC_MESSAGES/kabc_dir.mo -share/locale/ta/LC_MESSAGES/kabc_file.mo -share/locale/ta/LC_MESSAGES/kabc_ldap.mo -share/locale/ta/LC_MESSAGES/kabc_ldapkio.mo -share/locale/ta/LC_MESSAGES/kabc_net.mo -share/locale/ta/LC_MESSAGES/kabc_slox.mo -share/locale/ta/LC_MESSAGES/kabc_sql.mo -share/locale/ta/LC_MESSAGES/kabcformat_binary.mo -share/locale/ta/LC_MESSAGES/kaboodle.mo -share/locale/ta/LC_MESSAGES/kaccess.mo -share/locale/ta/LC_MESSAGES/kaddressbook.mo -share/locale/ta/LC_MESSAGES/kalarm.mo -share/locale/ta/LC_MESSAGES/kalzium.mo -share/locale/ta/LC_MESSAGES/kandy.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/kasteroids.mo -share/locale/ta/LC_MESSAGES/kate.mo -share/locale/ta/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/ta/LC_MESSAGES/katedefaultproject.mo -share/locale/ta/LC_MESSAGES/katefiletemplates.mo -share/locale/ta/LC_MESSAGES/katefll_initplugin.mo -share/locale/ta/LC_MESSAGES/katefll_plugin.mo -share/locale/ta/LC_MESSAGES/katehelloworld.mo -share/locale/ta/LC_MESSAGES/katehtmltools.mo -share/locale/ta/LC_MESSAGES/kateinsertcommand.mo -share/locale/ta/LC_MESSAGES/katekjswrapper.mo -share/locale/ta/LC_MESSAGES/katekttsd.mo -share/locale/ta/LC_MESSAGES/katemake.mo -share/locale/ta/LC_MESSAGES/katemodeline.mo -share/locale/ta/LC_MESSAGES/kateopenheader.mo -share/locale/ta/LC_MESSAGES/katepart.mo -share/locale/ta/LC_MESSAGES/katepartkttsd.mo -share/locale/ta/LC_MESSAGES/kateprojectmanager.mo -share/locale/ta/LC_MESSAGES/katepybrowse.mo -share/locale/ta/LC_MESSAGES/katesnippets.mo -share/locale/ta/LC_MESSAGES/katespell.mo -share/locale/ta/LC_MESSAGES/katetabbarextension.mo -share/locale/ta/LC_MESSAGES/katetextfilter.mo -share/locale/ta/LC_MESSAGES/katexmlcheck.mo -share/locale/ta/LC_MESSAGES/katexmltools.mo -share/locale/ta/LC_MESSAGES/katomic.mo -share/locale/ta/LC_MESSAGES/kaudiocreator.mo -share/locale/ta/LC_MESSAGES/kbabel.mo -share/locale/ta/LC_MESSAGES/kbackgammon.mo -share/locale/ta/LC_MESSAGES/kbattleship.mo -share/locale/ta/LC_MESSAGES/kbinaryclock.mo -share/locale/ta/LC_MESSAGES/kblackbox.mo -share/locale/ta/LC_MESSAGES/kbounce.mo -share/locale/ta/LC_MESSAGES/kbruch.mo -share/locale/ta/LC_MESSAGES/kbstateapplet.mo -share/locale/ta/LC_MESSAGES/kbugbuster.mo -share/locale/ta/LC_MESSAGES/kcachegrind.mo -share/locale/ta/LC_MESSAGES/kcalc.mo -share/locale/ta/LC_MESSAGES/kcharselect.mo -share/locale/ta/LC_MESSAGES/kcharselectapplet.mo -share/locale/ta/LC_MESSAGES/kcm_krfb.mo -share/locale/ta/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/ta/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/ta/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/ta/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/ta/LC_MESSAGES/kcmaccess.mo -share/locale/ta/LC_MESSAGES/kcmaccessibility.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/kcmcddb.mo -share/locale/ta/LC_MESSAGES/kcmcgi.mo -share/locale/ta/LC_MESSAGES/kcmcolors.mo -share/locale/ta/LC_MESSAGES/kcmcomponentchooser.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/kcmkabconfig.mo -share/locale/ta/LC_MESSAGES/kcmkamera.mo -share/locale/ta/LC_MESSAGES/kcmkclock.mo -share/locale/ta/LC_MESSAGES/kcmkded.mo -share/locale/ta/LC_MESSAGES/kcmkdnssd.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/kcmkmix.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/kcmkontactnt.mo -share/locale/ta/LC_MESSAGES/kcmktalkd.mo -share/locale/ta/LC_MESSAGES/kcmkttsd.mo -share/locale/ta/LC_MESSAGES/kcmkuick.mo -share/locale/ta/LC_MESSAGES/kcmkurifilt.mo -share/locale/ta/LC_MESSAGES/kcmkvaio.mo -share/locale/ta/LC_MESSAGES/kcmkwallet.mo -share/locale/ta/LC_MESSAGES/kcmkwindecoration.mo -share/locale/ta/LC_MESSAGES/kcmkwinrules.mo -share/locale/ta/LC_MESSAGES/kcmkwintheme.mo -share/locale/ta/LC_MESSAGES/kcmkwm.mo -share/locale/ta/LC_MESSAGES/kcmkxmlrpcd.mo -share/locale/ta/LC_MESSAGES/kcmlanbrowser.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/kcmlilo.mo -share/locale/ta/LC_MESSAGES/kcmlirc.mo -share/locale/ta/LC_MESSAGES/kcmlocale.mo -share/locale/ta/LC_MESSAGES/kcmmediacontrol.mo -share/locale/ta/LC_MESSAGES/kcmmidi.mo -share/locale/ta/LC_MESSAGES/kcmnic.mo -share/locale/ta/LC_MESSAGES/kcmnotify.mo -share/locale/ta/LC_MESSAGES/kcmperformance.mo -share/locale/ta/LC_MESSAGES/kcmprintmgr.mo -share/locale/ta/LC_MESSAGES/kcmsamba.mo -share/locale/ta/LC_MESSAGES/kcmscreensaver.mo -share/locale/ta/LC_MESSAGES/kcmshell.mo -share/locale/ta/LC_MESSAGES/kcmsmartcard.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/kcmthinkpad.mo -share/locale/ta/LC_MESSAGES/kcmusb.mo -share/locale/ta/LC_MESSAGES/kcmview1394.mo -share/locale/ta/LC_MESSAGES/kcmvim.mo -share/locale/ta/LC_MESSAGES/kcmwifi.mo -share/locale/ta/LC_MESSAGES/kcmxinerama.mo -share/locale/ta/LC_MESSAGES/kcoloredit.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/kdelibs_colors.mo -share/locale/ta/LC_MESSAGES/kdelirc.mo -share/locale/ta/LC_MESSAGES/kdepasswd.mo -share/locale/ta/LC_MESSAGES/kdepimresources.mo -share/locale/ta/LC_MESSAGES/kdepimwizards.mo -share/locale/ta/LC_MESSAGES/kdeprint.mo -share/locale/ta/LC_MESSAGES/kdeprint_part.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/kdevdesigner.mo -share/locale/ta/LC_MESSAGES/kdevelop.mo -share/locale/ta/LC_MESSAGES/kdevtipofday.mo -share/locale/ta/LC_MESSAGES/kdf.mo -share/locale/ta/LC_MESSAGES/kdgantt.mo -share/locale/ta/LC_MESSAGES/kdialog.mo -share/locale/ta/LC_MESSAGES/kdict.mo -share/locale/ta/LC_MESSAGES/kdictapplet.mo -share/locale/ta/LC_MESSAGES/kdmchooser.mo -share/locale/ta/LC_MESSAGES/kdmconfig.mo -share/locale/ta/LC_MESSAGES/kdmgreet.mo -share/locale/ta/LC_MESSAGES/kdvi.mo -share/locale/ta/LC_MESSAGES/kedit.mo -share/locale/ta/LC_MESSAGES/keduca.mo -share/locale/ta/LC_MESSAGES/kenolaba.mo -share/locale/ta/LC_MESSAGES/kfax.mo -share/locale/ta/LC_MESSAGES/kfifteenapplet.mo -share/locale/ta/LC_MESSAGES/kfile_au.mo -share/locale/ta/LC_MESSAGES/kfile_avi.mo -share/locale/ta/LC_MESSAGES/kfile_bmp.mo -share/locale/ta/LC_MESSAGES/kfile_cert.mo -share/locale/ta/LC_MESSAGES/kfile_cpp.mo -share/locale/ta/LC_MESSAGES/kfile_dds.mo -share/locale/ta/LC_MESSAGES/kfile_deb.mo -share/locale/ta/LC_MESSAGES/kfile_desktop.mo -share/locale/ta/LC_MESSAGES/kfile_diff.mo -share/locale/ta/LC_MESSAGES/kfile_drgeo.mo -share/locale/ta/LC_MESSAGES/kfile_dvi.mo -share/locale/ta/LC_MESSAGES/kfile_exr.mo -share/locale/ta/LC_MESSAGES/kfile_flac.mo -share/locale/ta/LC_MESSAGES/kfile_folder.mo -share/locale/ta/LC_MESSAGES/kfile_font.mo -share/locale/ta/LC_MESSAGES/kfile_gif.mo -share/locale/ta/LC_MESSAGES/kfile_html.mo -share/locale/ta/LC_MESSAGES/kfile_ico.mo -share/locale/ta/LC_MESSAGES/kfile_ics.mo -share/locale/ta/LC_MESSAGES/kfile_jpeg.mo -share/locale/ta/LC_MESSAGES/kfile_kig.mo -share/locale/ta/LC_MESSAGES/kfile_lnk.mo -share/locale/ta/LC_MESSAGES/kfile_m3u.mo -share/locale/ta/LC_MESSAGES/kfile_mhtml.mo -share/locale/ta/LC_MESSAGES/kfile_mp3.mo -share/locale/ta/LC_MESSAGES/kfile_mpc.mo -share/locale/ta/LC_MESSAGES/kfile_ogg.mo -share/locale/ta/LC_MESSAGES/kfile_palm.mo -share/locale/ta/LC_MESSAGES/kfile_pcx.mo -share/locale/ta/LC_MESSAGES/kfile_pdf.mo -share/locale/ta/LC_MESSAGES/kfile_png.mo -share/locale/ta/LC_MESSAGES/kfile_pnm.mo -share/locale/ta/LC_MESSAGES/kfile_po.mo -share/locale/ta/LC_MESSAGES/kfile_ps.mo -share/locale/ta/LC_MESSAGES/kfile_rfc822.mo -share/locale/ta/LC_MESSAGES/kfile_rgb.mo -share/locale/ta/LC_MESSAGES/kfile_rpm.mo -share/locale/ta/LC_MESSAGES/kfile_sid.mo -share/locale/ta/LC_MESSAGES/kfile_tga.mo -share/locale/ta/LC_MESSAGES/kfile_theora.mo -share/locale/ta/LC_MESSAGES/kfile_tiff.mo -share/locale/ta/LC_MESSAGES/kfile_torrent.mo -share/locale/ta/LC_MESSAGES/kfile_ts.mo -share/locale/ta/LC_MESSAGES/kfile_txt.mo -share/locale/ta/LC_MESSAGES/kfile_vcf.mo -share/locale/ta/LC_MESSAGES/kfile_wav.mo -share/locale/ta/LC_MESSAGES/kfile_xbm.mo -share/locale/ta/LC_MESSAGES/kfile_xpm.mo -share/locale/ta/LC_MESSAGES/kfileaudiopreview.mo -share/locale/ta/LC_MESSAGES/kfilereplace.mo -share/locale/ta/LC_MESSAGES/kfileshare.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/kfontinst.mo -share/locale/ta/LC_MESSAGES/kfouleggs.mo -share/locale/ta/LC_MESSAGES/kgamma.mo -share/locale/ta/LC_MESSAGES/kgantt.mo -share/locale/ta/LC_MESSAGES/kget.mo -share/locale/ta/LC_MESSAGES/kghostview.mo -share/locale/ta/LC_MESSAGES/kgoldrunner.mo -share/locale/ta/LC_MESSAGES/kgpg.mo -share/locale/ta/LC_MESSAGES/kgreet_classic.mo -share/locale/ta/LC_MESSAGES/khangman.mo -share/locale/ta/LC_MESSAGES/khelpcenter.mo -share/locale/ta/LC_MESSAGES/khexedit.mo -share/locale/ta/LC_MESSAGES/khexedit2part.mo -share/locale/ta/LC_MESSAGES/khotkeys.mo -share/locale/ta/LC_MESSAGES/khtmlkttsd.mo -share/locale/ta/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/ta/LC_MESSAGES/kicker.mo -share/locale/ta/LC_MESSAGES/kiconedit.mo -share/locale/ta/LC_MESSAGES/kig.mo -share/locale/ta/LC_MESSAGES/kimagemapeditor.mo -share/locale/ta/LC_MESSAGES/kinetd.mo -share/locale/ta/LC_MESSAGES/kio.mo -share/locale/ta/LC_MESSAGES/kio_audiocd.mo -share/locale/ta/LC_MESSAGES/kio_devices.mo -share/locale/ta/LC_MESSAGES/kio_finger.mo -share/locale/ta/LC_MESSAGES/kio_fish.mo -share/locale/ta/LC_MESSAGES/kio_floppy.mo -share/locale/ta/LC_MESSAGES/kio_groupwise.mo -share/locale/ta/LC_MESSAGES/kio_help.mo -share/locale/ta/LC_MESSAGES/kio_imap4.mo -share/locale/ta/LC_MESSAGES/kio_lan.mo -share/locale/ta/LC_MESSAGES/kio_ldap.mo -share/locale/ta/LC_MESSAGES/kio_mac.mo -share/locale/ta/LC_MESSAGES/kio_man.mo -share/locale/ta/LC_MESSAGES/kio_media.mo -share/locale/ta/LC_MESSAGES/kio_mobile.mo -share/locale/ta/LC_MESSAGES/kio_newimap4.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_print.mo -share/locale/ta/LC_MESSAGES/kio_remote.mo -share/locale/ta/LC_MESSAGES/kio_settings.mo -share/locale/ta/LC_MESSAGES/kio_sftp.mo -share/locale/ta/LC_MESSAGES/kio_sieve.mo -share/locale/ta/LC_MESSAGES/kio_smb.mo -share/locale/ta/LC_MESSAGES/kio_smtp.mo -share/locale/ta/LC_MESSAGES/kio_svn.mo -share/locale/ta/LC_MESSAGES/kio_system.mo -share/locale/ta/LC_MESSAGES/kio_trash.mo -share/locale/ta/LC_MESSAGES/kio_zeroconf.mo -share/locale/ta/LC_MESSAGES/kioexec.mo -share/locale/ta/LC_MESSAGES/kiten.mo -share/locale/ta/LC_MESSAGES/kjobviewer.mo -share/locale/ta/LC_MESSAGES/kjots.mo -share/locale/ta/LC_MESSAGES/kjumpingcube.mo -share/locale/ta/LC_MESSAGES/klaptopdaemon.mo -share/locale/ta/LC_MESSAGES/klatin.mo -share/locale/ta/LC_MESSAGES/klegacyimport.mo -share/locale/ta/LC_MESSAGES/kleopatra.mo -share/locale/ta/LC_MESSAGES/klettres.mo -share/locale/ta/LC_MESSAGES/klickety.mo -share/locale/ta/LC_MESSAGES/klines.mo -share/locale/ta/LC_MESSAGES/klinkstatus.mo -share/locale/ta/LC_MESSAGES/klipper.mo -share/locale/ta/LC_MESSAGES/klock.mo -share/locale/ta/LC_MESSAGES/kmag.mo -share/locale/ta/LC_MESSAGES/kmahjongg.mo -share/locale/ta/LC_MESSAGES/kmail.mo -share/locale/ta/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/ta/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/ta/LC_MESSAGES/kmailcvt.mo -share/locale/ta/LC_MESSAGES/kmathapplet.mo -share/locale/ta/LC_MESSAGES/kmathtool.mo -share/locale/ta/LC_MESSAGES/kmcop.mo -share/locale/ta/LC_MESSAGES/kmenuapplet.mo -share/locale/ta/LC_MESSAGES/kmenuedit.mo -share/locale/ta/LC_MESSAGES/kmessedwords.mo -share/locale/ta/LC_MESSAGES/kmid.mo -share/locale/ta/LC_MESSAGES/kmilo_delli8k.mo -share/locale/ta/LC_MESSAGES/kmilo_generic.mo -share/locale/ta/LC_MESSAGES/kmilo_kvaio.mo -share/locale/ta/LC_MESSAGES/kmilo_powerbook.mo -share/locale/ta/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/ta/LC_MESSAGES/kmilod.mo -share/locale/ta/LC_MESSAGES/kmines.mo -share/locale/ta/LC_MESSAGES/kminipagerapplet.mo -share/locale/ta/LC_MESSAGES/kmix.mo -share/locale/ta/LC_MESSAGES/kmobile.mo -share/locale/ta/LC_MESSAGES/kmoon.mo -share/locale/ta/LC_MESSAGES/kmousetool.mo -share/locale/ta/LC_MESSAGES/kmouth.mo -share/locale/ta/LC_MESSAGES/kmplot.mo -share/locale/ta/LC_MESSAGES/kmrml.mo -share/locale/ta/LC_MESSAGES/knetattach.mo -share/locale/ta/LC_MESSAGES/knewsticker.mo -share/locale/ta/LC_MESSAGES/knode.mo -share/locale/ta/LC_MESSAGES/knotes.mo -share/locale/ta/LC_MESSAGES/knotify.mo -share/locale/ta/LC_MESSAGES/kodo.mo -share/locale/ta/LC_MESSAGES/kolf.mo -share/locale/ta/LC_MESSAGES/kolourpaint.mo -share/locale/ta/LC_MESSAGES/kolourpicker.mo -share/locale/ta/LC_MESSAGES/kommander.mo -share/locale/ta/LC_MESSAGES/kompare.mo -share/locale/ta/LC_MESSAGES/konnector_dummy.mo -share/locale/ta/LC_MESSAGES/konnector_kabc.mo -share/locale/ta/LC_MESSAGES/konnector_kcal.mo -share/locale/ta/LC_MESSAGES/konnector_local.mo -share/locale/ta/LC_MESSAGES/konnector_qtopia.mo -share/locale/ta/LC_MESSAGES/konnector_remote.mo -share/locale/ta/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/ta/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/ta/LC_MESSAGES/konqsidebar_news.mo -share/locale/ta/LC_MESSAGES/konqueror.mo -share/locale/ta/LC_MESSAGES/konquest.mo -share/locale/ta/LC_MESSAGES/konsole.mo -share/locale/ta/LC_MESSAGES/konsolekalendar.mo -share/locale/ta/LC_MESSAGES/kontact.mo -share/locale/ta/LC_MESSAGES/kooka.mo -share/locale/ta/LC_MESSAGES/kopete.mo -share/locale/ta/LC_MESSAGES/korganizer.mo -share/locale/ta/LC_MESSAGES/korn.mo -share/locale/ta/LC_MESSAGES/kpackage.mo -share/locale/ta/LC_MESSAGES/kpager.mo -share/locale/ta/LC_MESSAGES/kpartapp.mo -share/locale/ta/LC_MESSAGES/kpartsaver.mo -share/locale/ta/LC_MESSAGES/kpat.mo -share/locale/ta/LC_MESSAGES/kpdf.mo -share/locale/ta/LC_MESSAGES/kpercentage.mo -share/locale/ta/LC_MESSAGES/kpersonalizer.mo -share/locale/ta/LC_MESSAGES/kpf.mo -share/locale/ta/LC_MESSAGES/kpilot.mo -share/locale/ta/LC_MESSAGES/kpoker.mo -share/locale/ta/LC_MESSAGES/kpovmodeler.mo -share/locale/ta/LC_MESSAGES/kppp.mo -share/locale/ta/LC_MESSAGES/kppplogview.mo -share/locale/ta/LC_MESSAGES/kprinter.mo -share/locale/ta/LC_MESSAGES/krandr.mo -share/locale/ta/LC_MESSAGES/krdb.mo -share/locale/ta/LC_MESSAGES/krdc.mo -share/locale/ta/LC_MESSAGES/kreadconfig.mo -share/locale/ta/LC_MESSAGES/krec.mo -share/locale/ta/LC_MESSAGES/kregexpeditor.mo -share/locale/ta/LC_MESSAGES/kres_blogging.mo -share/locale/ta/LC_MESSAGES/kres_bugzilla.mo -share/locale/ta/LC_MESSAGES/kres_exchange.mo -share/locale/ta/LC_MESSAGES/kres_featureplan.mo -share/locale/ta/LC_MESSAGES/kres_groupwise.mo -share/locale/ta/LC_MESSAGES/kres_kolab.mo -share/locale/ta/LC_MESSAGES/kres_opengroupware.mo -share/locale/ta/LC_MESSAGES/kres_remote.mo -share/locale/ta/LC_MESSAGES/kres_xmlrpc.mo -share/locale/ta/LC_MESSAGES/kreversi.mo -share/locale/ta/LC_MESSAGES/krfb.mo -share/locale/ta/LC_MESSAGES/kruler.mo -share/locale/ta/LC_MESSAGES/krunapplet.mo -share/locale/ta/LC_MESSAGES/ksame.mo -share/locale/ta/LC_MESSAGES/ksayit.mo -share/locale/ta/LC_MESSAGES/kscd.mo -share/locale/ta/LC_MESSAGES/kscreensaver.mo -share/locale/ta/LC_MESSAGES/kshisen.mo -share/locale/ta/LC_MESSAGES/ksig.mo -share/locale/ta/LC_MESSAGES/ksim.mo -share/locale/ta/LC_MESSAGES/ksirc.mo -share/locale/ta/LC_MESSAGES/ksirtet.mo -share/locale/ta/LC_MESSAGES/ksmiletris.mo -share/locale/ta/LC_MESSAGES/ksmserver.mo -share/locale/ta/LC_MESSAGES/ksnake.mo -share/locale/ta/LC_MESSAGES/ksnapshot.mo -share/locale/ta/LC_MESSAGES/ksokoban.mo -share/locale/ta/LC_MESSAGES/kspaceduel.mo -share/locale/ta/LC_MESSAGES/ksplash.mo -share/locale/ta/LC_MESSAGES/ksplashthemes.mo -share/locale/ta/LC_MESSAGES/kstars.mo -share/locale/ta/LC_MESSAGES/kstart.mo -share/locale/ta/LC_MESSAGES/kstartperf.mo -share/locale/ta/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/ta/LC_MESSAGES/kstyle_phase_config.mo -share/locale/ta/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/ta/LC_MESSAGES/ksvgplugin.mo -share/locale/ta/LC_MESSAGES/ksync.mo -share/locale/ta/LC_MESSAGES/ksysguard.mo -share/locale/ta/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/ta/LC_MESSAGES/ksystraycmd.mo -share/locale/ta/LC_MESSAGES/ksysv.mo -share/locale/ta/LC_MESSAGES/ktalkd.mo -share/locale/ta/LC_MESSAGES/ktaskbarapplet.mo -share/locale/ta/LC_MESSAGES/kteatime.mo -share/locale/ta/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/ta/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/ta/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/ta/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/ta/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/ta/LC_MESSAGES/ktexteditor_kttsd.mo -share/locale/ta/LC_MESSAGES/kthememanager.mo -share/locale/ta/LC_MESSAGES/ktimemon.mo -share/locale/ta/LC_MESSAGES/ktimer.mo -share/locale/ta/LC_MESSAGES/ktip.mo -share/locale/ta/LC_MESSAGES/ktnef.mo -share/locale/ta/LC_MESSAGES/ktouch.mo -share/locale/ta/LC_MESSAGES/ktron.mo -share/locale/ta/LC_MESSAGES/kttsd.mo -share/locale/ta/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/ta/LC_MESSAGES/kttsd_sbdplugin.mo -share/locale/ta/LC_MESSAGES/kttsd_stringreplacerplugin.mo -share/locale/ta/LC_MESSAGES/kttsd_talkerchooserplugin.mo -share/locale/ta/LC_MESSAGES/kttsd_xmltransformerplugin.mo -share/locale/ta/LC_MESSAGES/kttsjobmgr.mo -share/locale/ta/LC_MESSAGES/kttsmgr.mo -share/locale/ta/LC_MESSAGES/ktuberling.mo -share/locale/ta/LC_MESSAGES/kturtle.mo -share/locale/ta/LC_MESSAGES/ktux.mo -share/locale/ta/LC_MESSAGES/kuick_plugin.mo -share/locale/ta/LC_MESSAGES/kuickshow.mo -share/locale/ta/LC_MESSAGES/kuiviewer.mo -share/locale/ta/LC_MESSAGES/kuser.mo -share/locale/ta/LC_MESSAGES/kverbos.mo -share/locale/ta/LC_MESSAGES/kview.mo -share/locale/ta/LC_MESSAGES/kview_scale.mo -share/locale/ta/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/ta/LC_MESSAGES/kviewcanvas.mo -share/locale/ta/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/ta/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/ta/LC_MESSAGES/kviewscannerplugin.mo -share/locale/ta/LC_MESSAGES/kviewshell.mo -share/locale/ta/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/ta/LC_MESSAGES/kviewviewer.mo -share/locale/ta/LC_MESSAGES/kvoctrain.mo -share/locale/ta/LC_MESSAGES/kwalletmanager.mo -share/locale/ta/LC_MESSAGES/kwatchgnupg.mo -share/locale/ta/LC_MESSAGES/kweather.mo -share/locale/ta/LC_MESSAGES/kwifimanager.mo -share/locale/ta/LC_MESSAGES/kwin.mo -share/locale/ta/LC_MESSAGES/kwin4.mo -share/locale/ta/LC_MESSAGES/kwin_art_clients.mo -share/locale/ta/LC_MESSAGES/kwin_clients.mo -share/locale/ta/LC_MESSAGES/kwireless.mo -share/locale/ta/LC_MESSAGES/kwordquiz.mo -share/locale/ta/LC_MESSAGES/kworldclock.mo -share/locale/ta/LC_MESSAGES/kwriteconfig.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/kxsldbg.mo -share/locale/ta/LC_MESSAGES/libKTTSD.mo -share/locale/ta/LC_MESSAGES/libcalendarresources.mo -share/locale/ta/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/ta/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/ta/LC_MESSAGES/libkcal.mo -share/locale/ta/LC_MESSAGES/libkcalsystem.mo -share/locale/ta/LC_MESSAGES/libkcddb.mo -share/locale/ta/LC_MESSAGES/libkdegames.mo -share/locale/ta/LC_MESSAGES/libkdehighscores.mo -share/locale/ta/LC_MESSAGES/libkdenetwork.mo -share/locale/ta/LC_MESSAGES/libkdepim.mo -share/locale/ta/LC_MESSAGES/libkholidays.mo -share/locale/ta/LC_MESSAGES/libkicker.mo -share/locale/ta/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/ta/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/ta/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/ta/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/ta/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/ta/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/ta/LC_MESSAGES/libkickermenu_tom.mo -share/locale/ta/LC_MESSAGES/libkleopatra.mo -share/locale/ta/LC_MESSAGES/libkmime.mo -share/locale/ta/LC_MESSAGES/libkonq.mo -share/locale/ta/LC_MESSAGES/libkpgp.mo -share/locale/ta/LC_MESSAGES/libkpimexchange.mo -share/locale/ta/LC_MESSAGES/libkscan.mo -share/locale/ta/LC_MESSAGES/libkscreensaver.mo -share/locale/ta/LC_MESSAGES/libksieve.mo -share/locale/ta/LC_MESSAGES/libksirtet.mo -share/locale/ta/LC_MESSAGES/libksync.mo -share/locale/ta/LC_MESSAGES/libtaskbar.mo -share/locale/ta/LC_MESSAGES/libtaskmanager.mo -share/locale/ta/LC_MESSAGES/lockout.mo -share/locale/ta/LC_MESSAGES/lskat.mo -share/locale/ta/LC_MESSAGES/lyrics.mo -share/locale/ta/LC_MESSAGES/mediaapplet.mo -share/locale/ta/LC_MESSAGES/mediacontrol.mo -share/locale/ta/LC_MESSAGES/minitoolsplugin.mo -share/locale/ta/LC_MESSAGES/multisynk.mo -share/locale/ta/LC_MESSAGES/naughtyapplet.mo -share/locale/ta/LC_MESSAGES/nexscope.mo -share/locale/ta/LC_MESSAGES/noatun.mo -share/locale/ta/LC_MESSAGES/nsplugin.mo -share/locale/ta/LC_MESSAGES/passwords.mo -share/locale/ta/LC_MESSAGES/pitchablespeed.mo -share/locale/ta/LC_MESSAGES/ppdtranslations.mo -share/locale/ta/LC_MESSAGES/privacy.mo -share/locale/ta/LC_MESSAGES/qeditor.mo -share/locale/ta/LC_MESSAGES/quanta.mo -share/locale/ta/LC_MESSAGES/quicklauncher.mo -share/locale/ta/LC_MESSAGES/rellinks.mo -share/locale/ta/LC_MESSAGES/searchbarplugin.mo -share/locale/ta/LC_MESSAGES/secpolicy.mo -share/locale/ta/LC_MESSAGES/spy.mo -share/locale/ta/LC_MESSAGES/synaescope.mo -share/locale/ta/LC_MESSAGES/taskbarextension.mo -share/locale/ta/LC_MESSAGES/timezones.mo -share/locale/ta/LC_MESSAGES/tippecanoe.mo -share/locale/ta/LC_MESSAGES/trashapplet.mo -share/locale/ta/LC_MESSAGES/tyler.mo -share/locale/ta/LC_MESSAGES/uachangerplugin.mo -share/locale/ta/LC_MESSAGES/umbrello.mo -share/locale/ta/LC_MESSAGES/useraccount.mo -share/locale/ta/LC_MESSAGES/validatorsplugin.mo -share/locale/ta/LC_MESSAGES/vimpart.mo -share/locale/ta/LC_MESSAGES/wakeup.mo -share/locale/ta/LC_MESSAGES/wavecapture.mo -share/locale/ta/LC_MESSAGES/webarchiver.mo -share/locale/ta/charset -share/locale/ta/entry.desktop -share/locale/ta/flag.png diff --git a/misc/kde4-l10n-tg/Makefile b/misc/kde4-l10n-tg/Makefile deleted file mode 100644 index fbe344b97667..000000000000 --- a/misc/kde4-l10n-tg/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-tg -# Date created: 01 March 2004 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= tg- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Tajik messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-tg/distinfo b/misc/kde4-l10n-tg/distinfo deleted file mode 100644 index b9159d297d08..000000000000 --- a/misc/kde4-l10n-tg/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-tg-3.4.2.tar.bz2) = 484588e6d100c642cba625386e9216fc -SIZE (KDE/kde-i18n/kde-i18n-tg-3.4.2.tar.bz2) = 1977853 diff --git a/misc/kde4-l10n-tg/pkg-descr b/misc/kde4-l10n-tg/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-tg/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-tg/pkg-plist b/misc/kde4-l10n-tg/pkg-plist deleted file mode 100644 index e99a92749a82..000000000000 --- a/misc/kde4-l10n-tg/pkg-plist +++ /dev/null @@ -1,526 +0,0 @@ -share/apps/khangman/data/tg/animals.kvtml -share/apps/khangman/data/tg/easy.kvtml -share/apps/khangman/data/tg/hard.kvtml -share/apps/khangman/data/tg/medium.kvtml -share/apps/khangman/tg.txt -share/locale/tg/LC_MESSAGES/alsaplayerui.mo -share/locale/tg/LC_MESSAGES/amor.mo -share/locale/tg/LC_MESSAGES/appletproxy.mo -share/locale/tg/LC_MESSAGES/ark.mo -share/locale/tg/LC_MESSAGES/ark_plugin.mo -share/locale/tg/LC_MESSAGES/artsbuilder.mo -share/locale/tg/LC_MESSAGES/artscontrol.mo -share/locale/tg/LC_MESSAGES/artsmodules.mo -share/locale/tg/LC_MESSAGES/atlantik.mo -share/locale/tg/LC_MESSAGES/atlantikdesigner.mo -share/locale/tg/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/tg/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/tg/LC_MESSAGES/audiorename_plugin.mo -share/locale/tg/LC_MESSAGES/autorefresh.mo -share/locale/tg/LC_MESSAGES/babelfish.mo -share/locale/tg/LC_MESSAGES/cervisia.mo -share/locale/tg/LC_MESSAGES/charlatanui.mo -share/locale/tg/LC_MESSAGES/childpanelextension.mo -share/locale/tg/LC_MESSAGES/clockapplet.mo -share/locale/tg/LC_MESSAGES/crashesplugin.mo -share/locale/tg/LC_MESSAGES/cupsdconf.mo -share/locale/tg/LC_MESSAGES/cvsservice.mo -share/locale/tg/LC_MESSAGES/dcoprss.mo -share/locale/tg/LC_MESSAGES/devicesapplet.mo -share/locale/tg/LC_MESSAGES/dirfilterplugin.mo -share/locale/tg/LC_MESSAGES/display.mo -share/locale/tg/LC_MESSAGES/dockbarextension.mo -share/locale/tg/LC_MESSAGES/domtreeviewer.mo -share/locale/tg/LC_MESSAGES/drkonqi.mo -share/locale/tg/LC_MESSAGES/dub.mo -share/locale/tg/LC_MESSAGES/extensionproxy.mo -share/locale/tg/LC_MESSAGES/ffrs.mo -share/locale/tg/LC_MESSAGES/filetypes.mo -share/locale/tg/LC_MESSAGES/fontinst.mo -share/locale/tg/LC_MESSAGES/fsview.mo -share/locale/tg/LC_MESSAGES/htmlsearch.mo -share/locale/tg/LC_MESSAGES/imagerename_plugin.mo -share/locale/tg/LC_MESSAGES/imgalleryplugin.mo -share/locale/tg/LC_MESSAGES/irkick.mo -share/locale/tg/LC_MESSAGES/jefferson.mo -share/locale/tg/LC_MESSAGES/joystick.mo -share/locale/tg/LC_MESSAGES/juk.mo -share/locale/tg/LC_MESSAGES/kabc2mutt.mo -share/locale/tg/LC_MESSAGES/kabc_dir.mo -share/locale/tg/LC_MESSAGES/kabc_file.mo -share/locale/tg/LC_MESSAGES/kabc_ldap.mo -share/locale/tg/LC_MESSAGES/kabc_ldapkio.mo -share/locale/tg/LC_MESSAGES/kabc_net.mo -share/locale/tg/LC_MESSAGES/kabc_slox.mo -share/locale/tg/LC_MESSAGES/kabc_sql.mo -share/locale/tg/LC_MESSAGES/kabcformat_binary.mo -share/locale/tg/LC_MESSAGES/kaboodle.mo -share/locale/tg/LC_MESSAGES/kaccess.mo -share/locale/tg/LC_MESSAGES/kaddressbook.mo -share/locale/tg/LC_MESSAGES/kalarm.mo -share/locale/tg/LC_MESSAGES/kalzium.mo -share/locale/tg/LC_MESSAGES/kandy.mo -share/locale/tg/LC_MESSAGES/kappfinder.mo -share/locale/tg/LC_MESSAGES/karm.mo -share/locale/tg/LC_MESSAGES/kasbarextension.mo -share/locale/tg/LC_MESSAGES/kasteroids.mo -share/locale/tg/LC_MESSAGES/kate.mo -share/locale/tg/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/tg/LC_MESSAGES/katedefaultproject.mo -share/locale/tg/LC_MESSAGES/katefiletemplates.mo -share/locale/tg/LC_MESSAGES/katefll_initplugin.mo -share/locale/tg/LC_MESSAGES/katefll_plugin.mo -share/locale/tg/LC_MESSAGES/katehelloworld.mo -share/locale/tg/LC_MESSAGES/katehtmltools.mo -share/locale/tg/LC_MESSAGES/kateinsertcommand.mo -share/locale/tg/LC_MESSAGES/katekjswrapper.mo -share/locale/tg/LC_MESSAGES/katemake.mo -share/locale/tg/LC_MESSAGES/katemodeline.mo -share/locale/tg/LC_MESSAGES/kateopenheader.mo -share/locale/tg/LC_MESSAGES/katepart.mo -share/locale/tg/LC_MESSAGES/kateprojectmanager.mo -share/locale/tg/LC_MESSAGES/katepybrowse.mo -share/locale/tg/LC_MESSAGES/katespell.mo -share/locale/tg/LC_MESSAGES/katetabbarextension.mo -share/locale/tg/LC_MESSAGES/katetextfilter.mo -share/locale/tg/LC_MESSAGES/katexmlcheck.mo -share/locale/tg/LC_MESSAGES/katexmltools.mo -share/locale/tg/LC_MESSAGES/katomic.mo -share/locale/tg/LC_MESSAGES/kaudiocreator.mo -share/locale/tg/LC_MESSAGES/kbabel.mo -share/locale/tg/LC_MESSAGES/kbackgammon.mo -share/locale/tg/LC_MESSAGES/kbattleship.mo -share/locale/tg/LC_MESSAGES/kbinaryclock.mo -share/locale/tg/LC_MESSAGES/kblackbox.mo -share/locale/tg/LC_MESSAGES/kbounce.mo -share/locale/tg/LC_MESSAGES/kbruch.mo -share/locale/tg/LC_MESSAGES/kbugbuster.mo -share/locale/tg/LC_MESSAGES/kcachegrind.mo -share/locale/tg/LC_MESSAGES/kcalc.mo -share/locale/tg/LC_MESSAGES/kcharselect.mo -share/locale/tg/LC_MESSAGES/kcharselectapplet.mo -share/locale/tg/LC_MESSAGES/kcm_krfb.mo -share/locale/tg/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/tg/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/tg/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/tg/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/tg/LC_MESSAGES/kcmaccess.mo -share/locale/tg/LC_MESSAGES/kcmaccessibility.mo -share/locale/tg/LC_MESSAGES/kcmarts.mo -share/locale/tg/LC_MESSAGES/kcmaudiocd.mo -share/locale/tg/LC_MESSAGES/kcmbackground.mo -share/locale/tg/LC_MESSAGES/kcmbell.mo -share/locale/tg/LC_MESSAGES/kcmcddb.mo -share/locale/tg/LC_MESSAGES/kcmcgi.mo -share/locale/tg/LC_MESSAGES/kcmcolors.mo -share/locale/tg/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/tg/LC_MESSAGES/kcmcrypto.mo -share/locale/tg/LC_MESSAGES/kcmcss.mo -share/locale/tg/LC_MESSAGES/kcmemail.mo -share/locale/tg/LC_MESSAGES/kcmenergy.mo -share/locale/tg/LC_MESSAGES/kcmfonts.mo -share/locale/tg/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/tg/LC_MESSAGES/kcmicons.mo -share/locale/tg/LC_MESSAGES/kcminfo.mo -share/locale/tg/LC_MESSAGES/kcminput.mo -share/locale/tg/LC_MESSAGES/kcmioslaveinfo.mo -share/locale/tg/LC_MESSAGES/kcmkabconfig.mo -share/locale/tg/LC_MESSAGES/kcmkamera.mo -share/locale/tg/LC_MESSAGES/kcmkclock.mo -share/locale/tg/LC_MESSAGES/kcmkded.mo -share/locale/tg/LC_MESSAGES/kcmkeys.mo -share/locale/tg/LC_MESSAGES/kcmkicker.mo -share/locale/tg/LC_MESSAGES/kcmkio.mo -share/locale/tg/LC_MESSAGES/kcmkmix.mo -share/locale/tg/LC_MESSAGES/kcmkonq.mo -share/locale/tg/LC_MESSAGES/kcmkonqhtml.mo -share/locale/tg/LC_MESSAGES/kcmkonsole.mo -share/locale/tg/LC_MESSAGES/kcmkontactnt.mo -share/locale/tg/LC_MESSAGES/kcmktalkd.mo -share/locale/tg/LC_MESSAGES/kcmkuick.mo -share/locale/tg/LC_MESSAGES/kcmkurifilt.mo -share/locale/tg/LC_MESSAGES/kcmkvaio.mo -share/locale/tg/LC_MESSAGES/kcmkwallet.mo -share/locale/tg/LC_MESSAGES/kcmkwindecoration.mo -share/locale/tg/LC_MESSAGES/kcmkwinrules.mo -share/locale/tg/LC_MESSAGES/kcmkwintheme.mo -share/locale/tg/LC_MESSAGES/kcmkwm.mo -share/locale/tg/LC_MESSAGES/kcmkxmlrpcd.mo -share/locale/tg/LC_MESSAGES/kcmlanbrowser.mo -share/locale/tg/LC_MESSAGES/kcmlaptop.mo -share/locale/tg/LC_MESSAGES/kcmlaunch.mo -share/locale/tg/LC_MESSAGES/kcmlayout.mo -share/locale/tg/LC_MESSAGES/kcmlilo.mo -share/locale/tg/LC_MESSAGES/kcmlirc.mo -share/locale/tg/LC_MESSAGES/kcmlocale.mo -share/locale/tg/LC_MESSAGES/kcmmediacontrol.mo -share/locale/tg/LC_MESSAGES/kcmmidi.mo -share/locale/tg/LC_MESSAGES/kcmnic.mo -share/locale/tg/LC_MESSAGES/kcmnotify.mo -share/locale/tg/LC_MESSAGES/kcmperformance.mo -share/locale/tg/LC_MESSAGES/kcmprintmgr.mo -share/locale/tg/LC_MESSAGES/kcmsamba.mo -share/locale/tg/LC_MESSAGES/kcmscreensaver.mo -share/locale/tg/LC_MESSAGES/kcmsmartcard.mo -share/locale/tg/LC_MESSAGES/kcmsmserver.mo -share/locale/tg/LC_MESSAGES/kcmsocks.mo -share/locale/tg/LC_MESSAGES/kcmspellchecking.mo -share/locale/tg/LC_MESSAGES/kcmstyle.mo -share/locale/tg/LC_MESSAGES/kcmtaskbar.mo -share/locale/tg/LC_MESSAGES/kcmthinkpad.mo -share/locale/tg/LC_MESSAGES/kcmusb.mo -share/locale/tg/LC_MESSAGES/kcmview1394.mo -share/locale/tg/LC_MESSAGES/kcmvim.mo -share/locale/tg/LC_MESSAGES/kcmwifi.mo -share/locale/tg/LC_MESSAGES/kcmxinerama.mo -share/locale/tg/LC_MESSAGES/kcoloredit.mo -share/locale/tg/LC_MESSAGES/kcontrol.mo -share/locale/tg/LC_MESSAGES/kcron.mo -share/locale/tg/LC_MESSAGES/kdat.mo -share/locale/tg/LC_MESSAGES/kdcop.mo -share/locale/tg/LC_MESSAGES/kdebugdialog.mo -share/locale/tg/LC_MESSAGES/kdelibs.mo -share/locale/tg/LC_MESSAGES/kdelibs_colors.mo -share/locale/tg/LC_MESSAGES/kdelirc.mo -share/locale/tg/LC_MESSAGES/kdepasswd.mo -share/locale/tg/LC_MESSAGES/kdepimwizards.mo -share/locale/tg/LC_MESSAGES/kdeprint.mo -share/locale/tg/LC_MESSAGES/kdeprint_part.mo -share/locale/tg/LC_MESSAGES/kdeprintfax.mo -share/locale/tg/LC_MESSAGES/kdesktop.mo -share/locale/tg/LC_MESSAGES/kdessh.mo -share/locale/tg/LC_MESSAGES/kdesu.mo -share/locale/tg/LC_MESSAGES/kdesud.mo -share/locale/tg/LC_MESSAGES/kdevdesigner.mo -share/locale/tg/LC_MESSAGES/kdevelop.mo -share/locale/tg/LC_MESSAGES/kdevtipofday.mo -share/locale/tg/LC_MESSAGES/kdf.mo -share/locale/tg/LC_MESSAGES/kdgantt.mo -share/locale/tg/LC_MESSAGES/kdialog.mo -share/locale/tg/LC_MESSAGES/kdict.mo -share/locale/tg/LC_MESSAGES/kdictapplet.mo -share/locale/tg/LC_MESSAGES/kdmchooser.mo -share/locale/tg/LC_MESSAGES/kdmconfig.mo -share/locale/tg/LC_MESSAGES/kdmgreet.mo -share/locale/tg/LC_MESSAGES/kdvi.mo -share/locale/tg/LC_MESSAGES/kedit.mo -share/locale/tg/LC_MESSAGES/keduca.mo -share/locale/tg/LC_MESSAGES/kenolaba.mo -share/locale/tg/LC_MESSAGES/kfax.mo -share/locale/tg/LC_MESSAGES/kfifteenapplet.mo -share/locale/tg/LC_MESSAGES/kfile_au.mo -share/locale/tg/LC_MESSAGES/kfile_avi.mo -share/locale/tg/LC_MESSAGES/kfile_bmp.mo -share/locale/tg/LC_MESSAGES/kfile_cpp.mo -share/locale/tg/LC_MESSAGES/kfile_deb.mo -share/locale/tg/LC_MESSAGES/kfile_desktop.mo -share/locale/tg/LC_MESSAGES/kfile_diff.mo -share/locale/tg/LC_MESSAGES/kfile_drgeo.mo -share/locale/tg/LC_MESSAGES/kfile_dvi.mo -share/locale/tg/LC_MESSAGES/kfile_exr.mo -share/locale/tg/LC_MESSAGES/kfile_flac.mo -share/locale/tg/LC_MESSAGES/kfile_folder.mo -share/locale/tg/LC_MESSAGES/kfile_font.mo -share/locale/tg/LC_MESSAGES/kfile_gif.mo -share/locale/tg/LC_MESSAGES/kfile_html.mo -share/locale/tg/LC_MESSAGES/kfile_ico.mo -share/locale/tg/LC_MESSAGES/kfile_jpeg.mo -share/locale/tg/LC_MESSAGES/kfile_kig.mo -share/locale/tg/LC_MESSAGES/kfile_lnk.mo -share/locale/tg/LC_MESSAGES/kfile_m3u.mo -share/locale/tg/LC_MESSAGES/kfile_mp3.mo -share/locale/tg/LC_MESSAGES/kfile_ogg.mo -share/locale/tg/LC_MESSAGES/kfile_palm.mo -share/locale/tg/LC_MESSAGES/kfile_pcx.mo -share/locale/tg/LC_MESSAGES/kfile_pdf.mo -share/locale/tg/LC_MESSAGES/kfile_png.mo -share/locale/tg/LC_MESSAGES/kfile_pnm.mo -share/locale/tg/LC_MESSAGES/kfile_po.mo -share/locale/tg/LC_MESSAGES/kfile_ps.mo -share/locale/tg/LC_MESSAGES/kfile_rfc822.mo -share/locale/tg/LC_MESSAGES/kfile_rgb.mo -share/locale/tg/LC_MESSAGES/kfile_rpm.mo -share/locale/tg/LC_MESSAGES/kfile_sid.mo -share/locale/tg/LC_MESSAGES/kfile_tga.mo -share/locale/tg/LC_MESSAGES/kfile_tiff.mo -share/locale/tg/LC_MESSAGES/kfile_ts.mo -share/locale/tg/LC_MESSAGES/kfile_txt.mo -share/locale/tg/LC_MESSAGES/kfile_vcf.mo -share/locale/tg/LC_MESSAGES/kfile_wav.mo -share/locale/tg/LC_MESSAGES/kfile_xbm.mo -share/locale/tg/LC_MESSAGES/kfileaudiopreview.mo -share/locale/tg/LC_MESSAGES/kfilereplace.mo -share/locale/tg/LC_MESSAGES/kfileshare.mo -share/locale/tg/LC_MESSAGES/kfindpart.mo -share/locale/tg/LC_MESSAGES/kfloppy.mo -share/locale/tg/LC_MESSAGES/kfmclient.mo -share/locale/tg/LC_MESSAGES/kfontinst.mo -share/locale/tg/LC_MESSAGES/kfouleggs.mo -share/locale/tg/LC_MESSAGES/kgamma.mo -share/locale/tg/LC_MESSAGES/kgantt.mo -share/locale/tg/LC_MESSAGES/kget.mo -share/locale/tg/LC_MESSAGES/kghostview.mo -share/locale/tg/LC_MESSAGES/kgoldrunner.mo -share/locale/tg/LC_MESSAGES/kgpg.mo -share/locale/tg/LC_MESSAGES/kgreet_classic.mo -share/locale/tg/LC_MESSAGES/khangman.mo -share/locale/tg/LC_MESSAGES/khelpcenter.mo -share/locale/tg/LC_MESSAGES/khexedit.mo -share/locale/tg/LC_MESSAGES/khotkeys.mo -share/locale/tg/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/tg/LC_MESSAGES/kicker.mo -share/locale/tg/LC_MESSAGES/kiconedit.mo -share/locale/tg/LC_MESSAGES/kig.mo -share/locale/tg/LC_MESSAGES/kimagemapeditor.mo -share/locale/tg/LC_MESSAGES/kinetd.mo -share/locale/tg/LC_MESSAGES/kio.mo -share/locale/tg/LC_MESSAGES/kio_audiocd.mo -share/locale/tg/LC_MESSAGES/kio_devices.mo -share/locale/tg/LC_MESSAGES/kio_finger.mo -share/locale/tg/LC_MESSAGES/kio_fish.mo -share/locale/tg/LC_MESSAGES/kio_floppy.mo -share/locale/tg/LC_MESSAGES/kio_help.mo -share/locale/tg/LC_MESSAGES/kio_imap4.mo -share/locale/tg/LC_MESSAGES/kio_lan.mo -share/locale/tg/LC_MESSAGES/kio_mac.mo -share/locale/tg/LC_MESSAGES/kio_man.mo -share/locale/tg/LC_MESSAGES/kio_mobile.mo -share/locale/tg/LC_MESSAGES/kio_newimap4.mo -share/locale/tg/LC_MESSAGES/kio_nfs.mo -share/locale/tg/LC_MESSAGES/kio_nntp.mo -share/locale/tg/LC_MESSAGES/kio_pop3.mo -share/locale/tg/LC_MESSAGES/kio_print.mo -share/locale/tg/LC_MESSAGES/kio_settings.mo -share/locale/tg/LC_MESSAGES/kio_sftp.mo -share/locale/tg/LC_MESSAGES/kio_sieve.mo -share/locale/tg/LC_MESSAGES/kio_smb.mo -share/locale/tg/LC_MESSAGES/kio_smtp.mo -share/locale/tg/LC_MESSAGES/kioexec.mo -share/locale/tg/LC_MESSAGES/kiten.mo -share/locale/tg/LC_MESSAGES/kjobviewer.mo -share/locale/tg/LC_MESSAGES/kjots.mo -share/locale/tg/LC_MESSAGES/kjumpingcube.mo -share/locale/tg/LC_MESSAGES/klaptopdaemon.mo -share/locale/tg/LC_MESSAGES/klatin.mo -share/locale/tg/LC_MESSAGES/klegacyimport.mo -share/locale/tg/LC_MESSAGES/kleopatra.mo -share/locale/tg/LC_MESSAGES/klettres.mo -share/locale/tg/LC_MESSAGES/klickety.mo -share/locale/tg/LC_MESSAGES/klines.mo -share/locale/tg/LC_MESSAGES/klinkstatus.mo -share/locale/tg/LC_MESSAGES/klipper.mo -share/locale/tg/LC_MESSAGES/klock.mo -share/locale/tg/LC_MESSAGES/kmag.mo -share/locale/tg/LC_MESSAGES/kmahjongg.mo -share/locale/tg/LC_MESSAGES/kmail.mo -share/locale/tg/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/tg/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/tg/LC_MESSAGES/kmailcvt.mo -share/locale/tg/LC_MESSAGES/kmathapplet.mo -share/locale/tg/LC_MESSAGES/kmathtool.mo -share/locale/tg/LC_MESSAGES/kmcop.mo -share/locale/tg/LC_MESSAGES/kmenuapplet.mo -share/locale/tg/LC_MESSAGES/kmenuedit.mo -share/locale/tg/LC_MESSAGES/kmessedwords.mo -share/locale/tg/LC_MESSAGES/kmid.mo -share/locale/tg/LC_MESSAGES/kmilo_generic.mo -share/locale/tg/LC_MESSAGES/kmilo_kvaio.mo -share/locale/tg/LC_MESSAGES/kmilo_powerbook.mo -share/locale/tg/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/tg/LC_MESSAGES/kmilod.mo -share/locale/tg/LC_MESSAGES/kmines.mo -share/locale/tg/LC_MESSAGES/kminipagerapplet.mo -share/locale/tg/LC_MESSAGES/kmix.mo -share/locale/tg/LC_MESSAGES/kmobile.mo -share/locale/tg/LC_MESSAGES/kmoon.mo -share/locale/tg/LC_MESSAGES/kmousetool.mo -share/locale/tg/LC_MESSAGES/kmouth.mo -share/locale/tg/LC_MESSAGES/kmplot.mo -share/locale/tg/LC_MESSAGES/kmrml.mo -share/locale/tg/LC_MESSAGES/knewsticker.mo -share/locale/tg/LC_MESSAGES/knode.mo -share/locale/tg/LC_MESSAGES/knotes.mo -share/locale/tg/LC_MESSAGES/knotify.mo -share/locale/tg/LC_MESSAGES/kodo.mo -share/locale/tg/LC_MESSAGES/kolf.mo -share/locale/tg/LC_MESSAGES/kolourpaint.mo -share/locale/tg/LC_MESSAGES/kolourpicker.mo -share/locale/tg/LC_MESSAGES/kommander.mo -share/locale/tg/LC_MESSAGES/kompare.mo -share/locale/tg/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/tg/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/tg/LC_MESSAGES/konqsidebar_news.mo -share/locale/tg/LC_MESSAGES/konqueror.mo -share/locale/tg/LC_MESSAGES/konquest.mo -share/locale/tg/LC_MESSAGES/konsole.mo -share/locale/tg/LC_MESSAGES/konsolekalendar.mo -share/locale/tg/LC_MESSAGES/kontact.mo -share/locale/tg/LC_MESSAGES/kooka.mo -share/locale/tg/LC_MESSAGES/kopete.mo -share/locale/tg/LC_MESSAGES/korganizer.mo -share/locale/tg/LC_MESSAGES/korn.mo -share/locale/tg/LC_MESSAGES/kpackage.mo -share/locale/tg/LC_MESSAGES/kpager.mo -share/locale/tg/LC_MESSAGES/kpartapp.mo -share/locale/tg/LC_MESSAGES/kpartsaver.mo -share/locale/tg/LC_MESSAGES/kpat.mo -share/locale/tg/LC_MESSAGES/kpdf.mo -share/locale/tg/LC_MESSAGES/kpercentage.mo -share/locale/tg/LC_MESSAGES/kpersonalizer.mo -share/locale/tg/LC_MESSAGES/kpf.mo -share/locale/tg/LC_MESSAGES/kpilot.mo -share/locale/tg/LC_MESSAGES/kpoker.mo -share/locale/tg/LC_MESSAGES/kpovmodeler.mo -share/locale/tg/LC_MESSAGES/kppp.mo -share/locale/tg/LC_MESSAGES/kppplogview.mo -share/locale/tg/LC_MESSAGES/kprinter.mo -share/locale/tg/LC_MESSAGES/krandr.mo -share/locale/tg/LC_MESSAGES/krdb.mo -share/locale/tg/LC_MESSAGES/krdc.mo -share/locale/tg/LC_MESSAGES/kreadconfig.mo -share/locale/tg/LC_MESSAGES/krec.mo -share/locale/tg/LC_MESSAGES/kregexpeditor.mo -share/locale/tg/LC_MESSAGES/kres_exchange.mo -share/locale/tg/LC_MESSAGES/kres_remote.mo -share/locale/tg/LC_MESSAGES/kres_xmlrpc.mo -share/locale/tg/LC_MESSAGES/kreversi.mo -share/locale/tg/LC_MESSAGES/krfb.mo -share/locale/tg/LC_MESSAGES/kruler.mo -share/locale/tg/LC_MESSAGES/krunapplet.mo -share/locale/tg/LC_MESSAGES/ksame.mo -share/locale/tg/LC_MESSAGES/kscd.mo -share/locale/tg/LC_MESSAGES/kscreensaver.mo -share/locale/tg/LC_MESSAGES/kshisen.mo -share/locale/tg/LC_MESSAGES/ksig.mo -share/locale/tg/LC_MESSAGES/ksim.mo -share/locale/tg/LC_MESSAGES/ksirc.mo -share/locale/tg/LC_MESSAGES/ksirtet.mo -share/locale/tg/LC_MESSAGES/ksmiletris.mo -share/locale/tg/LC_MESSAGES/ksmserver.mo -share/locale/tg/LC_MESSAGES/ksnake.mo -share/locale/tg/LC_MESSAGES/ksnapshot.mo -share/locale/tg/LC_MESSAGES/kspaceduel.mo -share/locale/tg/LC_MESSAGES/ksplash.mo -share/locale/tg/LC_MESSAGES/ksplashthemes.mo -share/locale/tg/LC_MESSAGES/kstars.mo -share/locale/tg/LC_MESSAGES/kstart.mo -share/locale/tg/LC_MESSAGES/kstartperf.mo -share/locale/tg/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/tg/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/tg/LC_MESSAGES/ksvgplugin.mo -share/locale/tg/LC_MESSAGES/ksync.mo -share/locale/tg/LC_MESSAGES/ksysguard.mo -share/locale/tg/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/tg/LC_MESSAGES/ksystraycmd.mo -share/locale/tg/LC_MESSAGES/ksysv.mo -share/locale/tg/LC_MESSAGES/ktalkd.mo -share/locale/tg/LC_MESSAGES/ktaskbarapplet.mo -share/locale/tg/LC_MESSAGES/kteatime.mo -share/locale/tg/LC_MESSAGES/ktexteditor_autobookmarker.mo -share/locale/tg/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/tg/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/tg/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/tg/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/tg/LC_MESSAGES/ktimemon.mo -share/locale/tg/LC_MESSAGES/ktimer.mo -share/locale/tg/LC_MESSAGES/ktip.mo -share/locale/tg/LC_MESSAGES/ktnef.mo -share/locale/tg/LC_MESSAGES/ktouch.mo -share/locale/tg/LC_MESSAGES/ktron.mo -share/locale/tg/LC_MESSAGES/ktuberling.mo -share/locale/tg/LC_MESSAGES/kturtle.mo -share/locale/tg/LC_MESSAGES/ktux.mo -share/locale/tg/LC_MESSAGES/kuick_plugin.mo -share/locale/tg/LC_MESSAGES/kuickshow.mo -share/locale/tg/LC_MESSAGES/kuiviewer.mo -share/locale/tg/LC_MESSAGES/kuser.mo -share/locale/tg/LC_MESSAGES/kverbos.mo -share/locale/tg/LC_MESSAGES/kview.mo -share/locale/tg/LC_MESSAGES/kview_scale.mo -share/locale/tg/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/tg/LC_MESSAGES/kviewcanvas.mo -share/locale/tg/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/tg/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/tg/LC_MESSAGES/kviewscannerplugin.mo -share/locale/tg/LC_MESSAGES/kviewshell.mo -share/locale/tg/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/tg/LC_MESSAGES/kviewviewer.mo -share/locale/tg/LC_MESSAGES/kvoctrain.mo -share/locale/tg/LC_MESSAGES/kwalletmanager.mo -share/locale/tg/LC_MESSAGES/kwatchgnupg.mo -share/locale/tg/LC_MESSAGES/kweather.mo -share/locale/tg/LC_MESSAGES/kwifimanager.mo -share/locale/tg/LC_MESSAGES/kwin.mo -share/locale/tg/LC_MESSAGES/kwin4.mo -share/locale/tg/LC_MESSAGES/kwin_art_clients.mo -share/locale/tg/LC_MESSAGES/kwireless.mo -share/locale/tg/LC_MESSAGES/kwordquiz.mo -share/locale/tg/LC_MESSAGES/kworldclock.mo -share/locale/tg/LC_MESSAGES/kwriteconfig.mo -share/locale/tg/LC_MESSAGES/kxkb.mo -share/locale/tg/LC_MESSAGES/kxmlrpcd.mo -share/locale/tg/LC_MESSAGES/kxsconfig.mo -share/locale/tg/LC_MESSAGES/kxsldbg.mo -share/locale/tg/LC_MESSAGES/libcalendarresources.mo -share/locale/tg/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/tg/LC_MESSAGES/libkcal.mo -share/locale/tg/LC_MESSAGES/libkcalsystem.mo -share/locale/tg/LC_MESSAGES/libkcddb.mo -share/locale/tg/LC_MESSAGES/libkdegames.mo -share/locale/tg/LC_MESSAGES/libkdehighscores.mo -share/locale/tg/LC_MESSAGES/libkdenetwork.mo -share/locale/tg/LC_MESSAGES/libkdepim.mo -share/locale/tg/LC_MESSAGES/libkicker.mo -share/locale/tg/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/tg/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/tg/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/tg/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/tg/LC_MESSAGES/libkickermenu_tom.mo -share/locale/tg/LC_MESSAGES/libkleopatra.mo -share/locale/tg/LC_MESSAGES/libkonq.mo -share/locale/tg/LC_MESSAGES/libkpimexchange.mo -share/locale/tg/LC_MESSAGES/libkscan.mo -share/locale/tg/LC_MESSAGES/libkscreensaver.mo -share/locale/tg/LC_MESSAGES/libksieve.mo -share/locale/tg/LC_MESSAGES/libksirtet.mo -share/locale/tg/LC_MESSAGES/libksync.mo -share/locale/tg/LC_MESSAGES/libtaskbar.mo -share/locale/tg/LC_MESSAGES/libtaskmanager.mo -share/locale/tg/LC_MESSAGES/lockout.mo -share/locale/tg/LC_MESSAGES/lskat.mo -share/locale/tg/LC_MESSAGES/lyrics.mo -share/locale/tg/LC_MESSAGES/mediacontrol.mo -share/locale/tg/LC_MESSAGES/minitoolsplugin.mo -share/locale/tg/LC_MESSAGES/naughtyapplet.mo -share/locale/tg/LC_MESSAGES/nexscope.mo -share/locale/tg/LC_MESSAGES/noatun.mo -share/locale/tg/LC_MESSAGES/nsplugin.mo -share/locale/tg/LC_MESSAGES/passwords.mo -share/locale/tg/LC_MESSAGES/pitchablespeed.mo -share/locale/tg/LC_MESSAGES/ppdtranslations.mo -share/locale/tg/LC_MESSAGES/privacy.mo -share/locale/tg/LC_MESSAGES/qeditor.mo -share/locale/tg/LC_MESSAGES/quanta.mo -share/locale/tg/LC_MESSAGES/quicklauncher.mo -share/locale/tg/LC_MESSAGES/rellinks.mo -share/locale/tg/LC_MESSAGES/searchbarplugin.mo -share/locale/tg/LC_MESSAGES/secpolicy.mo -share/locale/tg/LC_MESSAGES/spy.mo -share/locale/tg/LC_MESSAGES/synaescope.mo -share/locale/tg/LC_MESSAGES/taskbarextension.mo -share/locale/tg/LC_MESSAGES/timezones.mo -share/locale/tg/LC_MESSAGES/tippecanoe.mo -share/locale/tg/LC_MESSAGES/tyler.mo -share/locale/tg/LC_MESSAGES/uachangerplugin.mo -share/locale/tg/LC_MESSAGES/umbrello.mo -share/locale/tg/LC_MESSAGES/useraccount.mo -share/locale/tg/LC_MESSAGES/validatorsplugin.mo -share/locale/tg/LC_MESSAGES/vimpart.mo -share/locale/tg/LC_MESSAGES/wakeup.mo -share/locale/tg/LC_MESSAGES/wavecapture.mo -share/locale/tg/LC_MESSAGES/webarchiver.mo -share/locale/tg/charset -share/locale/tg/entry.desktop -@dirrm share/apps/khangman/data/tg -@dirrm share/apps/khangman/data -@dirrm share/apps/khangman diff --git a/misc/kde4-l10n-th/Makefile b/misc/kde4-l10n-th/Makefile deleted file mode 100644 index 46ad62e9479f..000000000000 --- a/misc/kde4-l10n-th/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# New ports collection makefile for: kde3-i18n-th -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -# PORTVERSION= ${KDE_VERSION} -PORTVERSION= 3.1.5 -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= Attic/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= th- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Thai messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-th/distinfo b/misc/kde4-l10n-th/distinfo deleted file mode 100644 index e66fec0f0a1b..000000000000 --- a/misc/kde4-l10n-th/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-th-3.1.5.tar.bz2) = 10e86d81c0e35acf331be084aeaf6459 -SIZE (KDE/kde-i18n/kde-i18n-th-3.1.5.tar.bz2) = 1992033 diff --git a/misc/kde4-l10n-th/pkg-descr b/misc/kde4-l10n-th/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-th/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-th/pkg-plist b/misc/kde4-l10n-th/pkg-plist deleted file mode 100644 index 40bdcbf13dc5..000000000000 --- a/misc/kde4-l10n-th/pkg-plist +++ /dev/null @@ -1,341 +0,0 @@ -share/locale/th/LC_MESSAGES/aktion.mo -share/locale/th/LC_MESSAGES/alsaplayerui.mo -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/artsbuilder.mo -share/locale/th/LC_MESSAGES/artscontrol.mo -share/locale/th/LC_MESSAGES/atlantik.mo -share/locale/th/LC_MESSAGES/atlantikdesigner.mo -share/locale/th/LC_MESSAGES/babelfish.mo -share/locale/th/LC_MESSAGES/charlatanui.mo -share/locale/th/LC_MESSAGES/childpanelextension.mo -share/locale/th/LC_MESSAGES/clockapplet.mo -share/locale/th/LC_MESSAGES/crashesplugin.mo -share/locale/th/LC_MESSAGES/cupsdconf.mo -share/locale/th/LC_MESSAGES/desktop_kde-i18n.mo -share/locale/th/LC_MESSAGES/desktop_kdeaddons.mo -share/locale/th/LC_MESSAGES/desktop_kdeadmin.mo -share/locale/th/LC_MESSAGES/desktop_kdeartwork.mo -share/locale/th/LC_MESSAGES/desktop_kdebase.mo -share/locale/th/LC_MESSAGES/desktop_kdegames.mo -share/locale/th/LC_MESSAGES/desktop_kdegraphics.mo -share/locale/th/LC_MESSAGES/desktop_kdelibs.mo -share/locale/th/LC_MESSAGES/desktop_kdemultimedia.mo -share/locale/th/LC_MESSAGES/desktop_kdenetwork.mo -share/locale/th/LC_MESSAGES/desktop_kdepim.mo -share/locale/th/LC_MESSAGES/desktop_kdesdk.mo -share/locale/th/LC_MESSAGES/desktop_kdetoys.mo -share/locale/th/LC_MESSAGES/desktop_kdeutils.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/dub.mo -share/locale/th/LC_MESSAGES/extensionproxy.mo -share/locale/th/LC_MESSAGES/ffrs.mo -share/locale/th/LC_MESSAGES/filetypes.mo -share/locale/th/LC_MESSAGES/fontinst.mo -share/locale/th/LC_MESSAGES/htmlsearch.mo -share/locale/th/LC_MESSAGES/imagerename_plugin.mo -share/locale/th/LC_MESSAGES/imgalleryplugin.mo -share/locale/th/LC_MESSAGES/jefferson.mo -share/locale/th/LC_MESSAGES/kabc_dir.mo -share/locale/th/LC_MESSAGES/kabc_ldap.mo -share/locale/th/LC_MESSAGES/kabc_net.mo -share/locale/th/LC_MESSAGES/kabc_sql.mo -share/locale/th/LC_MESSAGES/kabcformat_binary.mo -share/locale/th/LC_MESSAGES/kaccess.mo -share/locale/th/LC_MESSAGES/kaddressbook.mo -share/locale/th/LC_MESSAGES/kaphorism.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/kasteroids.mo -share/locale/th/LC_MESSAGES/kate.mo -share/locale/th/LC_MESSAGES/katefll_initplugin.mo -share/locale/th/LC_MESSAGES/katefll_plugin.mo -share/locale/th/LC_MESSAGES/katehelloworld.mo -share/locale/th/LC_MESSAGES/katehtmltools.mo -share/locale/th/LC_MESSAGES/kateinsertcommand.mo -share/locale/th/LC_MESSAGES/katemodeline.mo -share/locale/th/LC_MESSAGES/kateopenheader.mo -share/locale/th/LC_MESSAGES/katepart.mo -share/locale/th/LC_MESSAGES/kateprojectmanager.mo -share/locale/th/LC_MESSAGES/katepybrowse.mo -share/locale/th/LC_MESSAGES/katespell.mo -share/locale/th/LC_MESSAGES/katetextfilter.mo -share/locale/th/LC_MESSAGES/katexmlcheck.mo -share/locale/th/LC_MESSAGES/katexmltools.mo -share/locale/th/LC_MESSAGES/kblackbox.mo -share/locale/th/LC_MESSAGES/kbounce.mo -share/locale/th/LC_MESSAGES/kcalc.mo -share/locale/th/LC_MESSAGES/kcardchooser.mo -share/locale/th/LC_MESSAGES/kcharselect.mo -share/locale/th/LC_MESSAGES/kcharselectapplet.mo -share/locale/th/LC_MESSAGES/kcm_krfb.mo -share/locale/th/LC_MESSAGES/kcmaccess.mo -share/locale/th/LC_MESSAGES/kcmarts.mo -share/locale/th/LC_MESSAGES/kcmbackground.mo -share/locale/th/LC_MESSAGES/kcmbell.mo -share/locale/th/LC_MESSAGES/kcmcgi.mo -share/locale/th/LC_MESSAGES/kcmcolors.mo -share/locale/th/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/th/LC_MESSAGES/kcmcrypto.mo -share/locale/th/LC_MESSAGES/kcmcss.mo -share/locale/th/LC_MESSAGES/kcmemail.mo -share/locale/th/LC_MESSAGES/kcmenergy.mo -share/locale/th/LC_MESSAGES/kcmfileshare.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/kcmkamera.mo -share/locale/th/LC_MESSAGES/kcmkclock.mo -share/locale/th/LC_MESSAGES/kcmkded.mo -share/locale/th/LC_MESSAGES/kcmkeys.mo -share/locale/th/LC_MESSAGES/kcmkicker.mo -share/locale/th/LC_MESSAGES/kcmkio.mo -share/locale/th/LC_MESSAGES/kcmkmix.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/kcmktalkd.mo -share/locale/th/LC_MESSAGES/kcmkuick.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/kcmkxmlrpcd.mo -share/locale/th/LC_MESSAGES/kcmlanbrowser.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/kcmmediacontrol.mo -share/locale/th/LC_MESSAGES/kcmmidi.mo -share/locale/th/LC_MESSAGES/kcmnewsticker.mo -share/locale/th/LC_MESSAGES/kcmnic.mo -share/locale/th/LC_MESSAGES/kcmnotify.mo -share/locale/th/LC_MESSAGES/kcmprintmgr.mo -share/locale/th/LC_MESSAGES/kcmsamba.mo -share/locale/th/LC_MESSAGES/kcmscreensaver.mo -share/locale/th/LC_MESSAGES/kcmsmartcard.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/kcmtaskbar.mo -share/locale/th/LC_MESSAGES/kcmthemes.mo -share/locale/th/LC_MESSAGES/kcmusb.mo -share/locale/th/LC_MESSAGES/kcoloredit.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/kdelibs.mo -share/locale/th/LC_MESSAGES/kdepasswd.mo -share/locale/th/LC_MESSAGES/kdeprint_part.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/kdevtipofday.mo -share/locale/th/LC_MESSAGES/kdf.mo -share/locale/th/LC_MESSAGES/kdialog.mo -share/locale/th/LC_MESSAGES/kdict.mo -share/locale/th/LC_MESSAGES/kdictapplet.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/kdvi.mo -share/locale/th/LC_MESSAGES/kedit.mo -share/locale/th/LC_MESSAGES/kfax.mo -share/locale/th/LC_MESSAGES/kfifteenapplet.mo -share/locale/th/LC_MESSAGES/kfile_bmp.mo -share/locale/th/LC_MESSAGES/kfile_deb.mo -share/locale/th/LC_MESSAGES/kfile_desktop.mo -share/locale/th/LC_MESSAGES/kfile_folder.mo -share/locale/th/LC_MESSAGES/kfile_font.mo -share/locale/th/LC_MESSAGES/kfile_gif.mo -share/locale/th/LC_MESSAGES/kfile_html.mo -share/locale/th/LC_MESSAGES/kfile_ico.mo -share/locale/th/LC_MESSAGES/kfile_m3u.mo -share/locale/th/LC_MESSAGES/kfile_mp3.mo -share/locale/th/LC_MESSAGES/kfile_ogg.mo -share/locale/th/LC_MESSAGES/kfile_pdf.mo -share/locale/th/LC_MESSAGES/kfile_png.mo -share/locale/th/LC_MESSAGES/kfile_ps.mo -share/locale/th/LC_MESSAGES/kfile_rfc822.mo -share/locale/th/LC_MESSAGES/kfile_rpm.mo -share/locale/th/LC_MESSAGES/kfile_tga.mo -share/locale/th/LC_MESSAGES/kfile_txt.mo -share/locale/th/LC_MESSAGES/kfile_vcf.mo -share/locale/th/LC_MESSAGES/kfile_wav.mo -share/locale/th/LC_MESSAGES/kfile_xbm.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/kfontviewpart.mo -share/locale/th/LC_MESSAGES/kfouleggs.mo -share/locale/th/LC_MESSAGES/kget.mo -share/locale/th/LC_MESSAGES/kghostview.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/kiconedit.mo -share/locale/th/LC_MESSAGES/kinetd.mo -share/locale/th/LC_MESSAGES/kio_devices.mo -share/locale/th/LC_MESSAGES/kio_finger.mo -share/locale/th/LC_MESSAGES/kio_floppy.mo -share/locale/th/LC_MESSAGES/kio_imap4.mo -share/locale/th/LC_MESSAGES/kio_lan.mo -share/locale/th/LC_MESSAGES/kio_mac.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_print.mo -share/locale/th/LC_MESSAGES/kio_sftp.mo -share/locale/th/LC_MESSAGES/kio_smb.mo -share/locale/th/LC_MESSAGES/kio_smbro.mo -share/locale/th/LC_MESSAGES/kio_smtp.mo -share/locale/th/LC_MESSAGES/kioexec.mo -share/locale/th/LC_MESSAGES/kit.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/kless.mo -share/locale/th/LC_MESSAGES/klickety.mo -share/locale/th/LC_MESSAGES/klines.mo -share/locale/th/LC_MESSAGES/klipper.mo -share/locale/th/LC_MESSAGES/klock.mo -share/locale/th/LC_MESSAGES/kmail.mo -share/locale/th/LC_MESSAGES/kmailcvt.mo -share/locale/th/LC_MESSAGES/kmcop.mo -share/locale/th/LC_MESSAGES/kmenuedit.mo -share/locale/th/LC_MESSAGES/kmines.mo -share/locale/th/LC_MESSAGES/kminipagerapplet.mo -share/locale/th/LC_MESSAGES/kmix.mo -share/locale/th/LC_MESSAGES/kmoon.mo -share/locale/th/LC_MESSAGES/knewsticker.mo -share/locale/th/LC_MESSAGES/knode.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/konqsidebar_mediaplayer.mo -share/locale/th/LC_MESSAGES/konqueror.mo -share/locale/th/LC_MESSAGES/konsole.mo -share/locale/th/LC_MESSAGES/kooka.mo -share/locale/th/LC_MESSAGES/korn.mo -share/locale/th/LC_MESSAGES/kpackage.mo -share/locale/th/LC_MESSAGES/kpager.mo -share/locale/th/LC_MESSAGES/kpaint.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/kpf.mo -share/locale/th/LC_MESSAGES/kpixmap2bitmap.mo -share/locale/th/LC_MESSAGES/kppp.mo -share/locale/th/LC_MESSAGES/kppplogview.mo -share/locale/th/LC_MESSAGES/kprinter.mo -share/locale/th/LC_MESSAGES/krdb.mo -share/locale/th/LC_MESSAGES/krdc.mo -share/locale/th/LC_MESSAGES/kreadconfig.mo -share/locale/th/LC_MESSAGES/krfb.mo -share/locale/th/LC_MESSAGES/kruler.mo -share/locale/th/LC_MESSAGES/krunapplet.mo -share/locale/th/LC_MESSAGES/ksame.mo -share/locale/th/LC_MESSAGES/kscoreapplet.mo -share/locale/th/LC_MESSAGES/kscreensaver.mo -share/locale/th/LC_MESSAGES/ksirtet.mo -share/locale/th/LC_MESSAGES/ksmiletris.mo -share/locale/th/LC_MESSAGES/ksmserver.mo -share/locale/th/LC_MESSAGES/ksnake.mo -share/locale/th/LC_MESSAGES/ksnapshot.mo -share/locale/th/LC_MESSAGES/ksokoban.mo -share/locale/th/LC_MESSAGES/ksplash.mo -share/locale/th/LC_MESSAGES/kstart.mo -share/locale/th/LC_MESSAGES/kstartperf.mo -share/locale/th/LC_MESSAGES/ksysguard.mo -share/locale/th/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/th/LC_MESSAGES/ksystraycmd.mo -share/locale/th/LC_MESSAGES/ksysv.mo -share/locale/th/LC_MESSAGES/ktalkd.mo -share/locale/th/LC_MESSAGES/ktaskbarapplet.mo -share/locale/th/LC_MESSAGES/kteatime.mo -share/locale/th/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/th/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/th/LC_MESSAGES/ktexteditor_kdatatool.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/kuick_plugin.mo -share/locale/th/LC_MESSAGES/kuser.mo -share/locale/th/LC_MESSAGES/kview.mo -share/locale/th/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/th/LC_MESSAGES/kviewscannerplugin.mo -share/locale/th/LC_MESSAGES/kviewshell.mo -share/locale/th/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/th/LC_MESSAGES/kwin.mo -share/locale/th/LC_MESSAGES/kwin4.mo -share/locale/th/LC_MESSAGES/kwin_b2_config.mo -share/locale/th/LC_MESSAGES/kwin_cde_config.mo -share/locale/th/LC_MESSAGES/kwin_default_config.mo -share/locale/th/LC_MESSAGES/kwin_glow_config.mo -share/locale/th/LC_MESSAGES/kwin_icewm_config.mo -share/locale/th/LC_MESSAGES/kwin_keramik_config.mo -share/locale/th/LC_MESSAGES/kwin_modernsys_config.mo -share/locale/th/LC_MESSAGES/kwin_quartz_config.mo -share/locale/th/LC_MESSAGES/kworldclock.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/libkdegames.mo -share/locale/th/LC_MESSAGES/libkdehighscores.mo -share/locale/th/LC_MESSAGES/libkdenetwork.mo -share/locale/th/LC_MESSAGES/libkicker.mo -share/locale/th/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/th/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/th/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/th/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/th/LC_MESSAGES/libkonq.mo -share/locale/th/LC_MESSAGES/libkscan.mo -share/locale/th/LC_MESSAGES/libkscreensaver.mo -share/locale/th/LC_MESSAGES/libtaskbar.mo -share/locale/th/LC_MESSAGES/libtaskmanager.mo -share/locale/th/LC_MESSAGES/lockout.mo -share/locale/th/LC_MESSAGES/lyrics.mo -share/locale/th/LC_MESSAGES/mediacontrol.mo -share/locale/th/LC_MESSAGES/naughtyapplet.mo -share/locale/th/LC_MESSAGES/nexscope.mo -share/locale/th/LC_MESSAGES/nsplugin.mo -share/locale/th/LC_MESSAGES/passwords.mo -share/locale/th/LC_MESSAGES/pitchablespeed.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/spy.mo -share/locale/th/LC_MESSAGES/synaescope.mo -share/locale/th/LC_MESSAGES/taskbarextension.mo -share/locale/th/LC_MESSAGES/tippecanoe.mo -share/locale/th/LC_MESSAGES/tyler.mo -share/locale/th/LC_MESSAGES/uachangerplugin.mo -share/locale/th/LC_MESSAGES/validatorsplugin.mo -share/locale/th/LC_MESSAGES/wakeup.mo -share/locale/th/LC_MESSAGES/wavecapture.mo -share/locale/th/LC_MESSAGES/webarchiver.mo -share/locale/th/charset -share/locale/th/entry.desktop -share/locale/th/flag.png diff --git a/misc/kde4-l10n-tr/Makefile b/misc/kde4-l10n-tr/Makefile deleted file mode 100644 index 5184a48ed9c7..000000000000 --- a/misc/kde4-l10n-tr/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: kde3-i18n-tr -# Date created: 05 April 2002 -# Whom: Lauri Watts <lauri@kde.org> -# -# $FreeBSD$ -# - -PORTNAME= kde-i18n -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n -PKGNAMEPREFIX= tr- -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Turkish messages and documentation for KDE3 - -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext - -USE_KDELIBS_VER=3 -USE_BZIP2= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -KDE_I18N= yes - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n-tr/distinfo b/misc/kde4-l10n-tr/distinfo deleted file mode 100644 index 1c5ee2565a73..000000000000 --- a/misc/kde4-l10n-tr/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kde-i18n/kde-i18n-tr-3.4.2.tar.bz2) = d39e731444cd310c67206eb2875a0b67 -SIZE (KDE/kde-i18n/kde-i18n-tr-3.4.2.tar.bz2) = 1918265 diff --git a/misc/kde4-l10n-tr/pkg-descr b/misc/kde4-l10n-tr/pkg-descr deleted file mode 100644 index 3354ca873ecc..000000000000 --- a/misc/kde4-l10n-tr/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE3. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-l10n-tr/pkg-plist b/misc/kde4-l10n-tr/pkg-plist deleted file mode 100644 index b18411bb5d4f..000000000000 --- a/misc/kde4-l10n-tr/pkg-plist +++ /dev/null @@ -1,711 +0,0 @@ -share/apps/khangman/data/tr/animals.kvtml -share/apps/khangman/data/tr/easy.kvtml -share/apps/khangman/data/tr/hard.kvtml -share/apps/khangman/data/tr/medium.kvtml -share/apps/khangman/tr.txt -share/doc/HTML/tr/common/1.png -share/doc/HTML/tr/common/10.png -share/doc/HTML/tr/common/2.png -share/doc/HTML/tr/common/3.png -share/doc/HTML/tr/common/4.png -share/doc/HTML/tr/common/5.png -share/doc/HTML/tr/common/6.png -share/doc/HTML/tr/common/7.png -share/doc/HTML/tr/common/8.png -share/doc/HTML/tr/common/9.png -share/doc/HTML/tr/common/appheader.html -share/doc/HTML/tr/common/artistic-license.html -share/doc/HTML/tr/common/bottom-left.png -share/doc/HTML/tr/common/bottom-middle.png -share/doc/HTML/tr/common/bottom-right.png -share/doc/HTML/tr/common/bottom1.png -share/doc/HTML/tr/common/bottom2.png -share/doc/HTML/tr/common/bsd-license.html -share/doc/HTML/tr/common/docheadergears.png -share/doc/HTML/tr/common/doctop1.png -share/doc/HTML/tr/common/doctop1a.png -share/doc/HTML/tr/common/doctop1b.png -share/doc/HTML/tr/common/doctop2.png -share/doc/HTML/tr/common/doxygen.css -share/doc/HTML/tr/common/fdl-license -share/doc/HTML/tr/common/fdl-license.html -share/doc/HTML/tr/common/footer.html -share/doc/HTML/tr/common/gpl-license -share/doc/HTML/tr/common/gpl-license.html -share/doc/HTML/tr/common/gpl-translated.html -share/doc/HTML/tr/common/grad.png -share/doc/HTML/tr/common/header.html -share/doc/HTML/tr/common/headerbg.png -share/doc/HTML/tr/common/kde-common.css -share/doc/HTML/tr/common/kde-default.css -share/doc/HTML/tr/common/kde-localised.css -share/doc/HTML/tr/common/kde-localised.css.template -share/doc/HTML/tr/common/kde-web.css -share/doc/HTML/tr/common/kde_logo.png -share/doc/HTML/tr/common/kde_logo_bg.png -share/doc/HTML/tr/common/kmenu.png -share/doc/HTML/tr/common/lgpl-license -share/doc/HTML/tr/common/lgpl-license.html -share/doc/HTML/tr/common/mainfooter.html -share/doc/HTML/tr/common/mainheader.html -share/doc/HTML/tr/common/qpl-license.html -share/doc/HTML/tr/common/shadow.png -share/doc/HTML/tr/common/top-left.png -share/doc/HTML/tr/common/top-middle.png -share/doc/HTML/tr/common/top-right-konqueror.png -share/doc/HTML/tr/common/web-docbottom.png -share/doc/HTML/tr/common/web-doctop.png -share/doc/HTML/tr/common/x11-license.html -share/doc/HTML/tr/common/xml.dcl -share/doc/HTML/tr/khelpcenter/common -share/doc/HTML/tr/khelpcenter/contact.docbook -share/doc/HTML/tr/khelpcenter/faq/about.docbook -share/doc/HTML/tr/khelpcenter/faq/nonkdeapps.docbook -share/doc/HTML/tr/khelpcenter/faq/panel.docbook -share/doc/HTML/tr/khelpcenter/help.docbook -share/doc/HTML/tr/khelpcenter/index.cache.bz2 -share/doc/HTML/tr/khelpcenter/index.docbook -share/doc/HTML/tr/khelpcenter/links.docbook -share/doc/HTML/tr/khelpcenter/support.docbook -share/doc/HTML/tr/khelpcenter/welcome.docbook -share/doc/HTML/tr/khelpcenter/whatiskde.docbook -share/doc/HTML/tr/kinfocenter/protocols/common -share/doc/HTML/tr/kinfocenter/protocols/index.cache.bz2 -share/doc/HTML/tr/kinfocenter/protocols/index.docbook -share/doc/HTML/tr/kioslave/audiocd.docbook -share/doc/HTML/tr/kioslave/bzip.docbook -share/doc/HTML/tr/kioslave/bzip2.docbook -share/doc/HTML/tr/kioslave/cgi.docbook -share/doc/HTML/tr/kioslave/file.docbook -share/doc/HTML/tr/kioslave/finger.docbook -share/doc/HTML/tr/kioslave/fish.docbook -share/doc/HTML/tr/kioslave/floppy.docbook -share/doc/HTML/tr/kioslave/ftp.docbook -share/doc/HTML/tr/kioslave/gopher.docbook -share/doc/HTML/tr/kioslave/gzip.docbook -share/doc/HTML/tr/kioslave/help.docbook -share/doc/HTML/tr/kioslave/http.docbook -share/doc/HTML/tr/kioslave/https.docbook -share/doc/HTML/tr/kioslave/imap.docbook -share/doc/HTML/tr/kioslave/imaps.docbook -share/doc/HTML/tr/kioslave/info.docbook -share/doc/HTML/tr/kioslave/lan.docbook -share/doc/HTML/tr/kioslave/ldap.docbook -share/doc/HTML/tr/kioslave/mac.docbook -share/doc/HTML/tr/kioslave/mailto.docbook -share/doc/HTML/tr/kioslave/man.docbook -share/doc/HTML/tr/kioslave/news.docbook -share/doc/HTML/tr/kioslave/nfs.docbook -share/doc/HTML/tr/kioslave/nntp.docbook -share/doc/HTML/tr/kioslave/pop3.docbook -share/doc/HTML/tr/kioslave/pop3s.docbook -share/doc/HTML/tr/kioslave/print.docbook -share/doc/HTML/tr/kioslave/rlan.docbook -share/doc/HTML/tr/kioslave/rlogin.docbook -share/doc/HTML/tr/kioslave/sftp.docbook -share/doc/HTML/tr/kioslave/smb.docbook -share/doc/HTML/tr/kioslave/smtp.docbook -share/doc/HTML/tr/kioslave/tar.docbook -share/doc/HTML/tr/kioslave/telnet.docbook -share/doc/HTML/tr/kioslave/thumbnail.docbook -share/doc/HTML/tr/kioslave/webdav.docbook -share/doc/HTML/tr/kioslave/webdavs.docbook -share/locale/tr/LC_MESSAGES/akregator.mo -share/locale/tr/LC_MESSAGES/akregator_konqplugin.mo -share/locale/tr/LC_MESSAGES/alsaplayerui.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/ark_plugin.mo -share/locale/tr/LC_MESSAGES/artsbuilder.mo -share/locale/tr/LC_MESSAGES/artscontrol.mo -share/locale/tr/LC_MESSAGES/artsmodules.mo -share/locale/tr/LC_MESSAGES/atlantik.mo -share/locale/tr/LC_MESSAGES/atlantikdesigner.mo -share/locale/tr/LC_MESSAGES/audiocd_encoder_lame.mo -share/locale/tr/LC_MESSAGES/audiocd_encoder_vorbis.mo -share/locale/tr/LC_MESSAGES/audiorename_plugin.mo -share/locale/tr/LC_MESSAGES/autorefresh.mo -share/locale/tr/LC_MESSAGES/babelfish.mo -share/locale/tr/LC_MESSAGES/cervisia.mo -share/locale/tr/LC_MESSAGES/charlatanui.mo -share/locale/tr/LC_MESSAGES/childpanelextension.mo -share/locale/tr/LC_MESSAGES/clockapplet.mo -share/locale/tr/LC_MESSAGES/crashesplugin.mo -share/locale/tr/LC_MESSAGES/cupsdconf.mo -share/locale/tr/LC_MESSAGES/cvsservice.mo -share/locale/tr/LC_MESSAGES/dcoprss.mo -share/locale/tr/LC_MESSAGES/devicesapplet.mo -share/locale/tr/LC_MESSAGES/dirfilterplugin.mo -share/locale/tr/LC_MESSAGES/display.mo -share/locale/tr/LC_MESSAGES/dockbarextension.mo -share/locale/tr/LC_MESSAGES/domtreeviewer.mo -share/locale/tr/LC_MESSAGES/drkonqi.mo -share/locale/tr/LC_MESSAGES/dub.mo -share/locale/tr/LC_MESSAGES/extensionproxy.mo -share/locale/tr/LC_MESSAGES/ffrs.mo -share/locale/tr/LC_MESSAGES/filetypes.mo -share/locale/tr/LC_MESSAGES/fontinst.mo -share/locale/tr/LC_MESSAGES/fsview.mo -share/locale/tr/LC_MESSAGES/htmlsearch.mo -share/locale/tr/LC_MESSAGES/imagerename_plugin.mo -share/locale/tr/LC_MESSAGES/imgalleryplugin.mo -share/locale/tr/LC_MESSAGES/irkick.mo -share/locale/tr/LC_MESSAGES/jefferson.mo -share/locale/tr/LC_MESSAGES/joystick.mo -share/locale/tr/LC_MESSAGES/juk.mo -share/locale/tr/LC_MESSAGES/kabc2mutt.mo -share/locale/tr/LC_MESSAGES/kabc_dir.mo -share/locale/tr/LC_MESSAGES/kabc_file.mo -share/locale/tr/LC_MESSAGES/kabc_ldap.mo -share/locale/tr/LC_MESSAGES/kabc_ldapkio.mo -share/locale/tr/LC_MESSAGES/kabc_net.mo -share/locale/tr/LC_MESSAGES/kabc_slox.mo -share/locale/tr/LC_MESSAGES/kabc_sql.mo -share/locale/tr/LC_MESSAGES/kabcformat_binary.mo -share/locale/tr/LC_MESSAGES/kaboodle.mo -share/locale/tr/LC_MESSAGES/kaccess.mo -share/locale/tr/LC_MESSAGES/kaddressbook.mo -share/locale/tr/LC_MESSAGES/kalarm.mo -share/locale/tr/LC_MESSAGES/kalzium.mo -share/locale/tr/LC_MESSAGES/kandy.mo -share/locale/tr/LC_MESSAGES/kappfinder.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/kate.mo -share/locale/tr/LC_MESSAGES/katecppsymbolviewer.mo -share/locale/tr/LC_MESSAGES/katedefaultproject.mo -share/locale/tr/LC_MESSAGES/katefiletemplates.mo -share/locale/tr/LC_MESSAGES/katefll_initplugin.mo -share/locale/tr/LC_MESSAGES/katefll_plugin.mo -share/locale/tr/LC_MESSAGES/katehelloworld.mo -share/locale/tr/LC_MESSAGES/katehtmltools.mo -share/locale/tr/LC_MESSAGES/kateinsertcommand.mo -share/locale/tr/LC_MESSAGES/katekjswrapper.mo -share/locale/tr/LC_MESSAGES/katekttsd.mo -share/locale/tr/LC_MESSAGES/katemake.mo -share/locale/tr/LC_MESSAGES/katemodeline.mo -share/locale/tr/LC_MESSAGES/kateopenheader.mo -share/locale/tr/LC_MESSAGES/katepart.mo -share/locale/tr/LC_MESSAGES/katepartkttsd.mo -share/locale/tr/LC_MESSAGES/kateprojectmanager.mo -share/locale/tr/LC_MESSAGES/katepybrowse.mo -share/locale/tr/LC_MESSAGES/katesnippets.mo -share/locale/tr/LC_MESSAGES/katespell.mo -share/locale/tr/LC_MESSAGES/katetabbarextension.mo -share/locale/tr/LC_MESSAGES/katetextfilter.mo -share/locale/tr/LC_MESSAGES/katexmlcheck.mo -share/locale/tr/LC_MESSAGES/katexmltools.mo -share/locale/tr/LC_MESSAGES/katomic.mo -share/locale/tr/LC_MESSAGES/kaudiocreator.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/kbinaryclock.mo -share/locale/tr/LC_MESSAGES/kblackbox.mo -share/locale/tr/LC_MESSAGES/kbounce.mo -share/locale/tr/LC_MESSAGES/kbruch.mo -share/locale/tr/LC_MESSAGES/kbstateapplet.mo -share/locale/tr/LC_MESSAGES/kbugbuster.mo -share/locale/tr/LC_MESSAGES/kcachegrind.mo -share/locale/tr/LC_MESSAGES/kcalc.mo -share/locale/tr/LC_MESSAGES/kcharselect.mo -share/locale/tr/LC_MESSAGES/kcharselectapplet.mo -share/locale/tr/LC_MESSAGES/kcm_krfb.mo -share/locale/tr/LC_MESSAGES/kcm_kviewcanvasconfig.mo -share/locale/tr/LC_MESSAGES/kcm_kviewgeneralconfig.mo -share/locale/tr/LC_MESSAGES/kcm_kviewpluginsconfig.mo -share/locale/tr/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo -share/locale/tr/LC_MESSAGES/kcmaccess.mo -share/locale/tr/LC_MESSAGES/kcmaccessibility.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/kcmcddb.mo -share/locale/tr/LC_MESSAGES/kcmcgi.mo -share/locale/tr/LC_MESSAGES/kcmcolors.mo -share/locale/tr/LC_MESSAGES/kcmcomponentchooser.mo -share/locale/tr/LC_MESSAGES/kcmcrypto.mo -share/locale/tr/LC_MESSAGES/kcmcss.mo -share/locale/tr/LC_MESSAGES/kcmemail.mo -share/locale/tr/LC_MESSAGES/kcmenergy.mo -share/locale/tr/LC_MESSAGES/kcmfonts.mo -share/locale/tr/LC_MESSAGES/kcmhtmlsearch.mo -share/locale/tr/LC_MESSAGES/kcmicons.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/kcmkabconfig.mo -share/locale/tr/LC_MESSAGES/kcmkamera.mo -share/locale/tr/LC_MESSAGES/kcmkclock.mo -share/locale/tr/LC_MESSAGES/kcmkded.mo -share/locale/tr/LC_MESSAGES/kcmkdnssd.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/kcmkontactnt.mo -share/locale/tr/LC_MESSAGES/kcmktalkd.mo -share/locale/tr/LC_MESSAGES/kcmkttsd.mo -share/locale/tr/LC_MESSAGES/kcmkuick.mo -share/locale/tr/LC_MESSAGES/kcmkurifilt.mo -share/locale/tr/LC_MESSAGES/kcmkvaio.mo -share/locale/tr/LC_MESSAGES/kcmkwallet.mo -share/locale/tr/LC_MESSAGES/kcmkwindecoration.mo -share/locale/tr/LC_MESSAGES/kcmkwinrules.mo -share/locale/tr/LC_MESSAGES/kcmkwintheme.mo -share/locale/tr/LC_MESSAGES/kcmkwm.mo -share/locale/tr/LC_MESSAGES/kcmkxmlrpcd.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/kcmlirc.mo -share/locale/tr/LC_MESSAGES/kcmlocale.mo -share/locale/tr/LC_MESSAGES/kcmmediacontrol.mo -share/locale/tr/LC_MESSAGES/kcmmidi.mo -share/locale/tr/LC_MESSAGES/kcmnic.mo -share/locale/tr/LC_MESSAGES/kcmnotify.mo -share/locale/tr/LC_MESSAGES/kcmperformance.mo -share/locale/tr/LC_MESSAGES/kcmprintmgr.mo -share/locale/tr/LC_MESSAGES/kcmsamba.mo -share/locale/tr/LC_MESSAGES/kcmscreensaver.mo -share/locale/tr/LC_MESSAGES/kcmshell.mo -share/locale/tr/LC_MESSAGES/kcmsmartcard.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/kcmtaskbar.mo -share/locale/tr/LC_MESSAGES/kcmthinkpad.mo -share/locale/tr/LC_MESSAGES/kcmusb.mo -share/locale/tr/LC_MESSAGES/kcmview1394.mo -share/locale/tr/LC_MESSAGES/kcmvim.mo -share/locale/tr/LC_MESSAGES/kcmwifi.mo -share/locale/tr/LC_MESSAGES/kcmxinerama.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/kdat.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/kdelibs_colors.mo -share/locale/tr/LC_MESSAGES/kdelirc.mo -share/locale/tr/LC_MESSAGES/kdepasswd.mo -share/locale/tr/LC_MESSAGES/kdepimresources.mo -share/locale/tr/LC_MESSAGES/kdepimwizards.mo -share/locale/tr/LC_MESSAGES/kdeprint.mo -share/locale/tr/LC_MESSAGES/kdeprint_part.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/kdevdesigner.mo -share/locale/tr/LC_MESSAGES/kdevelop.mo -share/locale/tr/LC_MESSAGES/kdevtipofday.mo -share/locale/tr/LC_MESSAGES/kdf.mo -share/locale/tr/LC_MESSAGES/kdgantt.mo -share/locale/tr/LC_MESSAGES/kdialog.mo -share/locale/tr/LC_MESSAGES/kdict.mo -share/locale/tr/LC_MESSAGES/kdictapplet.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/keduca.mo -share/locale/tr/LC_MESSAGES/kenolaba.mo -share/locale/tr/LC_MESSAGES/kfax.mo -share/locale/tr/LC_MESSAGES/kfifteenapplet.mo -share/locale/tr/LC_MESSAGES/kfile_au.mo -share/locale/tr/LC_MESSAGES/kfile_avi.mo -share/locale/tr/LC_MESSAGES/kfile_bmp.mo -share/locale/tr/LC_MESSAGES/kfile_cert.mo -share/locale/tr/LC_MESSAGES/kfile_cpp.mo -share/locale/tr/LC_MESSAGES/kfile_dds.mo -share/locale/tr/LC_MESSAGES/kfile_deb.mo -share/locale/tr/LC_MESSAGES/kfile_desktop.mo -share/locale/tr/LC_MESSAGES/kfile_diff.mo -share/locale/tr/LC_MESSAGES/kfile_drgeo.mo -share/locale/tr/LC_MESSAGES/kfile_dvi.mo -share/locale/tr/LC_MESSAGES/kfile_exr.mo -share/locale/tr/LC_MESSAGES/kfile_flac.mo -share/locale/tr/LC_MESSAGES/kfile_folder.mo -share/locale/tr/LC_MESSAGES/kfile_font.mo -share/locale/tr/LC_MESSAGES/kfile_gif.mo -share/locale/tr/LC_MESSAGES/kfile_html.mo -share/locale/tr/LC_MESSAGES/kfile_ico.mo -share/locale/tr/LC_MESSAGES/kfile_ics.mo -share/locale/tr/LC_MESSAGES/kfile_jpeg.mo -share/locale/tr/LC_MESSAGES/kfile_kig.mo -share/locale/tr/LC_MESSAGES/kfile_lnk.mo -share/locale/tr/LC_MESSAGES/kfile_m3u.mo -share/locale/tr/LC_MESSAGES/kfile_mhtml.mo -share/locale/tr/LC_MESSAGES/kfile_mp3.mo -share/locale/tr/LC_MESSAGES/kfile_mpc.mo -share/locale/tr/LC_MESSAGES/kfile_ogg.mo -share/locale/tr/LC_MESSAGES/kfile_palm.mo -share/locale/tr/LC_MESSAGES/kfile_pcx.mo -share/locale/tr/LC_MESSAGES/kfile_pdf.mo -share/locale/tr/LC_MESSAGES/kfile_png.mo -share/locale/tr/LC_MESSAGES/kfile_pnm.mo -share/locale/tr/LC_MESSAGES/kfile_po.mo -share/locale/tr/LC_MESSAGES/kfile_ps.mo -share/locale/tr/LC_MESSAGES/kfile_rfc822.mo -share/locale/tr/LC_MESSAGES/kfile_rgb.mo -share/locale/tr/LC_MESSAGES/kfile_rpm.mo -share/locale/tr/LC_MESSAGES/kfile_sid.mo -share/locale/tr/LC_MESSAGES/kfile_tga.mo -share/locale/tr/LC_MESSAGES/kfile_theora.mo -share/locale/tr/LC_MESSAGES/kfile_tiff.mo -share/locale/tr/LC_MESSAGES/kfile_torrent.mo -share/locale/tr/LC_MESSAGES/kfile_ts.mo -share/locale/tr/LC_MESSAGES/kfile_txt.mo -share/locale/tr/LC_MESSAGES/kfile_vcf.mo -share/locale/tr/LC_MESSAGES/kfile_wav.mo -share/locale/tr/LC_MESSAGES/kfile_xbm.mo -share/locale/tr/LC_MESSAGES/kfile_xpm.mo -share/locale/tr/LC_MESSAGES/kfileaudiopreview.mo -share/locale/tr/LC_MESSAGES/kfilereplace.mo -share/locale/tr/LC_MESSAGES/kfileshare.mo -share/locale/tr/LC_MESSAGES/kfindpart.mo -share/locale/tr/LC_MESSAGES/kfloppy.mo -share/locale/tr/LC_MESSAGES/kfmclient.mo -share/locale/tr/LC_MESSAGES/kfontinst.mo -share/locale/tr/LC_MESSAGES/kfouleggs.mo -share/locale/tr/LC_MESSAGES/kgamma.mo -share/locale/tr/LC_MESSAGES/kgantt.mo -share/locale/tr/LC_MESSAGES/kget.mo -share/locale/tr/LC_MESSAGES/kghostview.mo -share/locale/tr/LC_MESSAGES/kgoldrunner.mo -share/locale/tr/LC_MESSAGES/kgpg.mo -share/locale/tr/LC_MESSAGES/kgreet_classic.mo -share/locale/tr/LC_MESSAGES/khangman.mo -share/locale/tr/LC_MESSAGES/khelpcenter.mo -share/locale/tr/LC_MESSAGES/khexedit.mo -share/locale/tr/LC_MESSAGES/khexedit2part.mo -share/locale/tr/LC_MESSAGES/khotkeys.mo -share/locale/tr/LC_MESSAGES/khtmlkttsd.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/kig.mo -share/locale/tr/LC_MESSAGES/kimagemapeditor.mo -share/locale/tr/LC_MESSAGES/kinetd.mo -share/locale/tr/LC_MESSAGES/kio.mo -share/locale/tr/LC_MESSAGES/kio_audiocd.mo -share/locale/tr/LC_MESSAGES/kio_devices.mo -share/locale/tr/LC_MESSAGES/kio_finger.mo -share/locale/tr/LC_MESSAGES/kio_fish.mo -share/locale/tr/LC_MESSAGES/kio_floppy.mo -share/locale/tr/LC_MESSAGES/kio_groupwise.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_ldap.mo -share/locale/tr/LC_MESSAGES/kio_mac.mo -share/locale/tr/LC_MESSAGES/kio_man.mo -share/locale/tr/LC_MESSAGES/kio_media.mo -share/locale/tr/LC_MESSAGES/kio_mobile.mo -share/locale/tr/LC_MESSAGES/kio_newimap4.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_print.mo -share/locale/tr/LC_MESSAGES/kio_remote.mo -share/locale/tr/LC_MESSAGES/kio_settings.mo -share/locale/tr/LC_MESSAGES/kio_sftp.mo -share/locale/tr/LC_MESSAGES/kio_sieve.mo -share/locale/tr/LC_MESSAGES/kio_smb.mo -share/locale/tr/LC_MESSAGES/kio_smtp.mo -share/locale/tr/LC_MESSAGES/kio_svn.mo -share/locale/tr/LC_MESSAGES/kio_system.mo -share/locale/tr/LC_MESSAGES/kio_trash.mo -share/locale/tr/LC_MESSAGES/kio_zeroconf.mo -share/locale/tr/LC_MESSAGES/kioexec.mo -share/locale/tr/LC_MESSAGES/kiten.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/klatin.mo -share/locale/tr/LC_MESSAGES/klegacyimport.mo -share/locale/tr/LC_MESSAGES/kleopatra.mo -share/locale/tr/LC_MESSAGES/klettres.mo -share/locale/tr/LC_MESSAGES/klickety.mo -share/locale/tr/LC_MESSAGES/klines.mo -share/locale/tr/LC_MESSAGES/klinkstatus.mo -share/locale/tr/LC_MESSAGES/klipper.mo -share/locale/tr/LC_MESSAGES/klock.mo -share/locale/tr/LC_MESSAGES/kmag.mo -share/locale/tr/LC_MESSAGES/kmahjongg.mo -share/locale/tr/LC_MESSAGES/kmail.mo -share/locale/tr/LC_MESSAGES/kmail_text_calendar_plugin.mo -share/locale/tr/LC_MESSAGES/kmail_text_vcard_plugin.mo -share/locale/tr/LC_MESSAGES/kmailcvt.mo -share/locale/tr/LC_MESSAGES/kmathapplet.mo -share/locale/tr/LC_MESSAGES/kmathtool.mo -share/locale/tr/LC_MESSAGES/kmcop.mo -share/locale/tr/LC_MESSAGES/kmenuapplet.mo -share/locale/tr/LC_MESSAGES/kmenuedit.mo -share/locale/tr/LC_MESSAGES/kmessedwords.mo -share/locale/tr/LC_MESSAGES/kmid.mo -share/locale/tr/LC_MESSAGES/kmilo_delli8k.mo -share/locale/tr/LC_MESSAGES/kmilo_generic.mo -share/locale/tr/LC_MESSAGES/kmilo_kvaio.mo -share/locale/tr/LC_MESSAGES/kmilo_powerbook.mo -share/locale/tr/LC_MESSAGES/kmilo_thinkpad.mo -share/locale/tr/LC_MESSAGES/kmilod.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/kmobile.mo -share/locale/tr/LC_MESSAGES/kmoon.mo -share/locale/tr/LC_MESSAGES/kmousetool.mo -share/locale/tr/LC_MESSAGES/kmouth.mo -share/locale/tr/LC_MESSAGES/kmplot.mo -share/locale/tr/LC_MESSAGES/kmrml.mo -share/locale/tr/LC_MESSAGES/knetattach.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/kodo.mo -share/locale/tr/LC_MESSAGES/kolf.mo -share/locale/tr/LC_MESSAGES/kolourpaint.mo -share/locale/tr/LC_MESSAGES/kolourpicker.mo -share/locale/tr/LC_MESSAGES/kommander.mo -share/locale/tr/LC_MESSAGES/kompare.mo -share/locale/tr/LC_MESSAGES/konnector_dummy.mo -share/locale/tr/LC_MESSAGES/konnector_kabc.mo -share/locale/tr/LC_MESSAGES/konnector_kcal.mo -share/locale/tr/LC_MESSAGES/konnector_local.mo -share/locale/tr/LC_MESSAGES/konnector_qtopia.mo -share/locale/tr/LC_MESSAGES/konnector_remote.mo -share/locale/tr/LC_MESSAGES/konq_smbmounterplugin.mo -share/locale/tr/LC_MESSAGES/konqsidebar_mediaplayer.mo -share/locale/tr/LC_MESSAGES/konqsidebar_news.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/konsolekalendar.mo -share/locale/tr/LC_MESSAGES/kontact.mo -share/locale/tr/LC_MESSAGES/kooka.mo -share/locale/tr/LC_MESSAGES/kopete.mo -share/locale/tr/LC_MESSAGES/korganizer.mo -share/locale/tr/LC_MESSAGES/korn.mo -share/locale/tr/LC_MESSAGES/kpackage.mo -share/locale/tr/LC_MESSAGES/kpager.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/kpdf.mo -share/locale/tr/LC_MESSAGES/kpercentage.mo -share/locale/tr/LC_MESSAGES/kpersonalizer.mo -share/locale/tr/LC_MESSAGES/kpf.mo -share/locale/tr/LC_MESSAGES/kpilot.mo -share/locale/tr/LC_MESSAGES/kpoker.mo -share/locale/tr/LC_MESSAGES/kpovmodeler.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/krandr.mo -share/locale/tr/LC_MESSAGES/krdb.mo -share/locale/tr/LC_MESSAGES/krdc.mo -share/locale/tr/LC_MESSAGES/kreadconfig.mo -share/locale/tr/LC_MESSAGES/krec.mo -share/locale/tr/LC_MESSAGES/kregexpeditor.mo -share/locale/tr/LC_MESSAGES/kres_blogging.mo -share/locale/tr/LC_MESSAGES/kres_bugzilla.mo -share/locale/tr/LC_MESSAGES/kres_exchange.mo -share/locale/tr/LC_MESSAGES/kres_featureplan.mo -share/locale/tr/LC_MESSAGES/kres_groupwise.mo -share/locale/tr/LC_MESSAGES/kres_kolab.mo -share/locale/tr/LC_MESSAGES/kres_opengroupware.mo -share/locale/tr/LC_MESSAGES/kres_remote.mo -share/locale/tr/LC_MESSAGES/kres_xmlrpc.mo -share/locale/tr/LC_MESSAGES/kreversi.mo -share/locale/tr/LC_MESSAGES/krfb.mo -share/locale/tr/LC_MESSAGES/kruler.mo -share/locale/tr/LC_MESSAGES/krunapplet.mo -share/locale/tr/LC_MESSAGES/ksame.mo -share/locale/tr/LC_MESSAGES/ksayit.mo -share/locale/tr/LC_MESSAGES/kscd.mo -share/locale/tr/LC_MESSAGES/kscreensaver.mo -share/locale/tr/LC_MESSAGES/kshisen.mo -share/locale/tr/LC_MESSAGES/ksig.mo -share/locale/tr/LC_MESSAGES/ksim.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/ksplashthemes.mo -share/locale/tr/LC_MESSAGES/kstars.mo -share/locale/tr/LC_MESSAGES/kstart.mo -share/locale/tr/LC_MESSAGES/kstartperf.mo -share/locale/tr/LC_MESSAGES/kstyle_keramik_config.mo -share/locale/tr/LC_MESSAGES/kstyle_phase_config.mo -share/locale/tr/LC_MESSAGES/kstyle_plastik_config.mo -share/locale/tr/LC_MESSAGES/ksvgplugin.mo -share/locale/tr/LC_MESSAGES/ksync.mo -share/locale/tr/LC_MESSAGES/ksysguard.mo -share/locale/tr/LC_MESSAGES/ksystemtrayapplet.mo -share/locale/tr/LC_MESSAGES/ksystraycmd.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/ktexteditor_autobookmarker.mo -share/locale/tr/LC_MESSAGES/ktexteditor_docwordcompletion.mo -share/locale/tr/LC_MESSAGES/ktexteditor_insertfile.mo -share/locale/tr/LC_MESSAGES/ktexteditor_isearch.mo -share/locale/tr/LC_MESSAGES/ktexteditor_kdatatool.mo -share/locale/tr/LC_MESSAGES/ktexteditor_kttsd.mo -share/locale/tr/LC_MESSAGES/kthememanager.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/ktnef.mo -share/locale/tr/LC_MESSAGES/ktouch.mo -share/locale/tr/LC_MESSAGES/ktron.mo -share/locale/tr/LC_MESSAGES/kttsd.mo -share/locale/tr/LC_MESSAGES/kttsd_commandplugin.mo -share/locale/tr/LC_MESSAGES/kttsd_eposplugin.mo -share/locale/tr/LC_MESSAGES/kttsd_festivalintplugin.mo -share/locale/tr/LC_MESSAGES/kttsd_fliteplugin.mo -share/locale/tr/LC_MESSAGES/kttsd_freettsplugin.mo -share/locale/tr/LC_MESSAGES/kttsd_hadifixplugin.mo -share/locale/tr/LC_MESSAGES/kttsd_sbdplugin.mo -share/locale/tr/LC_MESSAGES/kttsd_stringreplacerplugin.mo -share/locale/tr/LC_MESSAGES/kttsd_talkerchooserplugin.mo -share/locale/tr/LC_MESSAGES/kttsd_xmltransformerplugin.mo -share/locale/tr/LC_MESSAGES/kttsjobmgr.mo -share/locale/tr/LC_MESSAGES/kttsmgr.mo -share/locale/tr/LC_MESSAGES/ktuberling.mo -share/locale/tr/LC_MESSAGES/kturtle.mo -share/locale/tr/LC_MESSAGES/ktux.mo -share/locale/tr/LC_MESSAGES/kuick_plugin.mo -share/locale/tr/LC_MESSAGES/kuickshow.mo -share/locale/tr/LC_MESSAGES/kuiviewer.mo -share/locale/tr/LC_MESSAGES/kuser.mo -share/locale/tr/LC_MESSAGES/kverbos.mo -share/locale/tr/LC_MESSAGES/kview.mo -share/locale/tr/LC_MESSAGES/kview_scale.mo -share/locale/tr/LC_MESSAGES/kviewbrowserplugin.mo -share/locale/tr/LC_MESSAGES/kviewcanvas.mo -share/locale/tr/LC_MESSAGES/kvieweffectsplugin.mo -share/locale/tr/LC_MESSAGES/kviewpresenterplugin.mo -share/locale/tr/LC_MESSAGES/kviewscannerplugin.mo -share/locale/tr/LC_MESSAGES/kviewshell.mo -share/locale/tr/LC_MESSAGES/kviewtemplateplugin.mo -share/locale/tr/LC_MESSAGES/kviewviewer.mo -share/locale/tr/LC_MESSAGES/kvoctrain.mo -share/locale/tr/LC_MESSAGES/kwalletmanager.mo -share/locale/tr/LC_MESSAGES/kwatchgnupg.mo -share/locale/tr/LC_MESSAGES/kweather.mo -share/locale/tr/LC_MESSAGES/kwifimanager.mo -share/locale/tr/LC_MESSAGES/kwin.mo -share/locale/tr/LC_MESSAGES/kwin4.mo -share/locale/tr/LC_MESSAGES/kwin_art_clients.mo -share/locale/tr/LC_MESSAGES/kwin_clients.mo -share/locale/tr/LC_MESSAGES/kwireless.mo -share/locale/tr/LC_MESSAGES/kwordquiz.mo -share/locale/tr/LC_MESSAGES/kworldclock.mo -share/locale/tr/LC_MESSAGES/kwriteconfig.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/kxsldbg.mo -share/locale/tr/LC_MESSAGES/libKTTSD.mo -share/locale/tr/LC_MESSAGES/libcalendarresources.mo -share/locale/tr/LC_MESSAGES/libkaddrbk_geo_xxport.mo -share/locale/tr/LC_MESSAGES/libkaddrbk_gmx_xxport.mo -share/locale/tr/LC_MESSAGES/libkcal.mo -share/locale/tr/LC_MESSAGES/libkcalsystem.mo -share/locale/tr/LC_MESSAGES/libkcddb.mo -share/locale/tr/LC_MESSAGES/libkdegames.mo -share/locale/tr/LC_MESSAGES/libkdehighscores.mo -share/locale/tr/LC_MESSAGES/libkdenetwork.mo -share/locale/tr/LC_MESSAGES/libkdepim.mo -share/locale/tr/LC_MESSAGES/libkholidays.mo -share/locale/tr/LC_MESSAGES/libkicker.mo -share/locale/tr/LC_MESSAGES/libkickermenu_kdeprint.mo -share/locale/tr/LC_MESSAGES/libkickermenu_konsole.mo -share/locale/tr/LC_MESSAGES/libkickermenu_prefmenu.mo -share/locale/tr/LC_MESSAGES/libkickermenu_recentdocs.mo -share/locale/tr/LC_MESSAGES/libkickermenu_remotemenu.mo -share/locale/tr/LC_MESSAGES/libkickermenu_systemmenu.mo -share/locale/tr/LC_MESSAGES/libkickermenu_tom.mo -share/locale/tr/LC_MESSAGES/libkleopatra.mo -share/locale/tr/LC_MESSAGES/libkmime.mo -share/locale/tr/LC_MESSAGES/libkonq.mo -share/locale/tr/LC_MESSAGES/libkpgp.mo -share/locale/tr/LC_MESSAGES/libkpimexchange.mo -share/locale/tr/LC_MESSAGES/libkscan.mo -share/locale/tr/LC_MESSAGES/libkscreensaver.mo -share/locale/tr/LC_MESSAGES/libksieve.mo -share/locale/tr/LC_MESSAGES/libksirtet.mo -share/locale/tr/LC_MESSAGES/libksync.mo -share/locale/tr/LC_MESSAGES/libtaskbar.mo -share/locale/tr/LC_MESSAGES/libtaskmanager.mo -share/locale/tr/LC_MESSAGES/lockout.mo -share/locale/tr/LC_MESSAGES/lskat.mo -share/locale/tr/LC_MESSAGES/lyrics.mo -share/locale/tr/LC_MESSAGES/mediaapplet.mo -share/locale/tr/LC_MESSAGES/mediacontrol.mo -share/locale/tr/LC_MESSAGES/minitoolsplugin.mo -share/locale/tr/LC_MESSAGES/multisynk.mo -share/locale/tr/LC_MESSAGES/naughtyapplet.mo -share/locale/tr/LC_MESSAGES/nexscope.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/pitchablespeed.mo -share/locale/tr/LC_MESSAGES/ppdtranslations.mo -share/locale/tr/LC_MESSAGES/privacy.mo -share/locale/tr/LC_MESSAGES/qeditor.mo -share/locale/tr/LC_MESSAGES/quanta.mo -share/locale/tr/LC_MESSAGES/quicklauncher.mo -share/locale/tr/LC_MESSAGES/rellinks.mo -share/locale/tr/LC_MESSAGES/searchbarplugin.mo -share/locale/tr/LC_MESSAGES/secpolicy.mo -share/locale/tr/LC_MESSAGES/spy.mo -share/locale/tr/LC_MESSAGES/synaescope.mo -share/locale/tr/LC_MESSAGES/taskbarextension.mo -share/locale/tr/LC_MESSAGES/timezones.mo -share/locale/tr/LC_MESSAGES/tippecanoe.mo -share/locale/tr/LC_MESSAGES/trashapplet.mo -share/locale/tr/LC_MESSAGES/tyler.mo -share/locale/tr/LC_MESSAGES/uachangerplugin.mo -share/locale/tr/LC_MESSAGES/umbrello.mo -share/locale/tr/LC_MESSAGES/useraccount.mo -share/locale/tr/LC_MESSAGES/validatorsplugin.mo -share/locale/tr/LC_MESSAGES/vimpart.mo -share/locale/tr/LC_MESSAGES/wakeup.mo -share/locale/tr/LC_MESSAGES/wavecapture.mo -share/locale/tr/LC_MESSAGES/webarchiver.mo -share/locale/tr/charset -share/locale/tr/entry.desktop -share/locale/tr/flag.png -@dirrm share/doc/HTML/tr/kioslave -@dirrm share/doc/HTML/tr/kinfocenter/protocols -@dirrm share/doc/HTML/tr/kinfocenter -@dirrm share/doc/HTML/tr/khelpcenter/faq -@dirrm share/doc/HTML/tr/khelpcenter -@dirrm share/doc/HTML/tr/common -@dirrm share/apps/khangman/data/tr -@dirrm share/apps/khangman/data -@dirrm share/apps/khangman diff --git a/misc/kde4-l10n/Makefile b/misc/kde4-l10n/Makefile deleted file mode 100644 index f451380a189c..000000000000 --- a/misc/kde4-l10n/Makefile +++ /dev/null @@ -1,51 +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= ${KDE_VERSION} -CATEGORIES= misc kde -MASTER_SITES= # none -DISTFILES= # none -EXTRACT_ONLY= # none - -MAINTAINER= kde@FreeBSD.org -COMMENT= Localized messages and documentation for KDE - -RUN_DEPENDS+=\ - ${LOCALBASE}/share/locale/ar/entry.desktop:${PORTSDIR}/arabic/kde3-i18n \ - ${LOCALBASE}/share/locale/ja/entry.desktop:${PORTSDIR}/japanese/kde3-i18n \ - ${LOCALBASE}/share/locale/fr/entry.desktop:${PORTSDIR}/french/kde3-i18n \ - ${LOCALBASE}/share/locale/de/entry.desktop:${PORTSDIR}/german/kde3-i18n \ - ${LOCALBASE}/share/locale/he/entry.desktop:${PORTSDIR}/hebrew/kde3-i18n \ - ${LOCALBASE}/share/locale/hu/entry.desktop:${PORTSDIR}/hungarian/kde3-i18n \ - ${LOCALBASE}/share/locale/ko/entry.desktop:${PORTSDIR}/korean/kde3-i18n \ - ${LOCALBASE}/share/locale/ru/entry.desktop:${PORTSDIR}/russian/kde3-i18n \ - ${LOCALBASE}/share/locale/uk/entry.desktop:${PORTSDIR}/ukrainian/kde3-i18n \ - ${LOCALBASE}/share/locale/vi/entry.desktop:${PORTSDIR}/vietnamese/kde3-i18n \ - ${LOCALBASE}/share/locale/pl/entry.desktop:${PORTSDIR}/polish/kde3-i18n - -.for LANG in af az bg bn bs ca cs cy da el en_GB eo es et eu fa fi hr hsb id \ - is it lt lv mk mn ms mt nb nds nl nn nso pa ro se sk sl sr sr@Latn ss \ - sv ta tg th tr uz ven xh zu -RUN_DEPENDS+=\ -${LOCALBASE}/share/locale/${LANG}/entry.desktop:${PORTSDIR}/misc/kde3-i18n-${LANG} -.endfor -RUN_DEPENDS+=\ -${LOCALBASE}/share/locale/pt/entry.desktop:${PORTSDIR}/portuguese/kde3-i18n \ -${LOCALBASE}/share/locale/pt_BR/entry.desktop:${PORTSDIR}/portuguese/kde3-i18n-pt_BR -.for ZH in zh_CN zh_TW -RUN_DEPENDS+=\ -${LOCALBASE}/share/locale/${ZH}/entry.desktop:${PORTSDIR}/chinese/kde3-i18n-${ZH} -.endfor - -USE_KDELIBS_VER=3 -NO_BUILD= yes -KDE_I18N= yes - -do-install: # none - -.include <bsd.port.mk> diff --git a/misc/kde4-l10n/pkg-descr b/misc/kde4-l10n/pkg-descr deleted file mode 100644 index 6401fc5109d0..000000000000 --- a/misc/kde4-l10n/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Localized messages and documentation for KDE. - -WWW: http://i18n.kde.org/ diff --git a/misc/kde4-xdg-env/Makefile b/misc/kde4-xdg-env/Makefile deleted file mode 100644 index 4d1b56901273..000000000000 --- a/misc/kde4-xdg-env/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# New ports collection makefile for: kde-xdg-env -# Date created: April 03 2005 -# Whom: Michael Nottebrock <lofi@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= xdg -PORTVERSION= ${KDE_VERSION} -CATEGORIES= misc kde -MASTER_SITES= # none -PKGNAMEPREFIX= kde- -PKGNAMESUFFIX= -env -DISTNAME= # none -EXTRACT_SUFX= # none - -MAINTAINER= kde@FreeBSD.org -COMMENT= Script which hooks into startkde and helps KDE pick up XDG apps/menus - -USE_KDEBASE_VER=3 -PREFIX= ${KDE_PREFIX} - -NO_BUILD= yes - -SUB_FILES= xdg-env.sh - -PLIST_FILES= env/xdg-env.sh -PLIST_DIRS= env - -do-install: - ${MKDIR} ${PREFIX}/env - ${INSTALL_SCRIPT} ${WRKDIR}/xdg-env.sh ${PREFIX}/env - -.include <bsd.port.mk> diff --git a/misc/kde4-xdg-env/files/xdg-env.sh.in b/misc/kde4-xdg-env/files/xdg-env.sh.in deleted file mode 100644 index f0373906ed35..000000000000 --- a/misc/kde4-xdg-env/files/xdg-env.sh.in +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# Submit missing XDG-file locations to kde@freebsd.org! - -export XDG_CONFIG_DIRS=\ -${XDG_CONFIG_DIRS}:/etc/xdg:%%LOCALBASE%%/etc/xdg:%%X11BASE%%/etc/xdg:\ -%%LOCALBASE%%/etc/xdg/xfce4 - -export XDG_DATA_DIRS=\ -${XDG_DATA_DIRS}:/usr/share:%%LOCALBASE%%/share:\ -%%X11BASE%%/share:%%X11BASE%%/share/gnome - -kbuildsycoca diff --git a/misc/kde4-xdg-env/pkg-descr b/misc/kde4-xdg-env/pkg-descr deleted file mode 100644 index 9df54024f1ff..000000000000 --- a/misc/kde4-xdg-env/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -This is a tiny script that gets executed by startkde and sets the XDG_DATA_DIRS -and XDG_CONFIG_DIRS variables so KDE can pick up GNOME and XFCE-4 applications -and menus. diff --git a/misc/kdeedu4/Makefile b/misc/kdeedu4/Makefile deleted file mode 100644 index 28284dbc46a7..000000000000 --- a/misc/kdeedu4/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# New ports collection makefile for: kdeedu3 -# Date created: 2 November 2001 -# Whom: will@cvs.kde.org -# -# $FreeBSD$ -# - -PORTNAME= kdeedu -PORTVERSION= ${KDE_VERSION} -PORTREVISION= 1 -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src -DIST_SUBDIR= KDE - -MAINTAINER?= kde@FreeBSD.org -COMMENT= Collection of entertaining, educational programs for KDE - -CONFLICTS= kwordquiz-[0-9]* - -USE_KDELIBS_VER=3 -PREFIX= ${KDE_PREFIX} - -USE_BZIP2= yes -USE_XPM= yes -USE_GMAKE= yes -USE_REINPLACE= yes -GNU_CONFIGURE= yes - -INSTALLS_SHLIB= yes -LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3 - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" -.include <bsd.port.pre.mk> - -.if ${OSVERSION} > 500035 -LIB_DEPENDS+= boost_python:${PORTSDIR}/devel/boost-python -PLIST_SUB+= BOOST_PYTHON="" -.else -CONFIGURE_ARGS+=--disable-kig-python-scripting -PLIST_SUB+= BOOST_PYTHON="@comment " -.endif - -.include <bsd.port.post.mk> diff --git a/misc/kdeedu4/distinfo b/misc/kdeedu4/distinfo deleted file mode 100644 index 7b1af93ad29c..000000000000 --- a/misc/kdeedu4/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kdeedu-3.4.2.tar.bz2) = e2c5cc083868dd4c35c1b50e04eb40eb -SIZE (KDE/kdeedu-3.4.2.tar.bz2) = 24028133 diff --git a/misc/kdeedu4/files/patch-kstars_kstars_tools_planetviewer.cpp b/misc/kdeedu4/files/patch-kstars_kstars_tools_planetviewer.cpp deleted file mode 100644 index 46d9e207c9d6..000000000000 --- a/misc/kdeedu4/files/patch-kstars_kstars_tools_planetviewer.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- kstars/kstars/tools/planetviewer.cpp.orig Fri Mar 18 21:59:32 2005 -+++ kstars/kstars/tools/planetviewer.cpp Fri Mar 18 22:02:06 2005 -@@ -14,6 +14,8 @@ - * * - ***************************************************************************/ - -+#include <stdlib.h> -+ - #include <qfile.h> - #include <qlayout.h> - #include <kdebug.h> diff --git a/misc/kdeedu4/files/patch-post-3.4.2-kdeedu.diff b/misc/kdeedu4/files/patch-post-3.4.2-kdeedu.diff deleted file mode 100644 index 1d75c63bac18..000000000000 --- a/misc/kdeedu4/files/patch-post-3.4.2-kdeedu.diff +++ /dev/null @@ -1,63 +0,0 @@ -Index: kvoctrain/kvoctrain/langen2kvtml -=================================================================== ---- kvoctrain/kvoctrain/langen2kvtml (revision 443975) -+++ kvoctrain/kvoctrain/langen2kvtml (working copy) -@@ -89,6 +89,9 @@ - - require "flush.pl"; - use Getopt::Long; -+use File::Temp qw(tempdir); -+my $tmpdir = tempdir(TEMPDIR => 1, CLEANUP => 1 ); -+ - $/="\r\n"; # we work with dos files - - # -@@ -165,10 +168,6 @@ - $country="GB"; - } - --# All logging information goes into this file --$logfile = "/tmp/langen2kvtml.log"; --open(LOG, ">$logfile") || die "Cannot create $logfile: $!"; -- - &printflush(STDOUT,"Waiting for generating files ...\n"); - $tmp1=$#ARGV+1; - &printflush(STDOUT,"... $tmp1 files given via command line ...\n"); -@@ -178,13 +177,11 @@ - if ($proxy) { - &printflush(STDOUT,"... using proxy service $proxy ...\n"); - } -- `lwp-request $proxy http://www.vokabeln.de/files/Voc-$country.zip >/tmp/Voc-$country.zip`; -- # unzip -u update only! -- # unzip -o overwrite! -- `unzip -u /tmp/Voc-$country.zip >/tmp/unzip.log`; -+ `lwp-request $proxy http://www.vokabeln.de/files/Voc-$country.zip >$tmpdir/Voc-$country.zip`; - &printflush(STDOUT,"... updating Voc-$country.zip ...\n"); - $/="\n"; # we work with a unix file -- open(ZIP,"</tmp/unzip.log"); -+ # unzip -u update only! -+ open(ZIP,"unzip -u $tmpdir/Voc-$country.zip |"); - while(<ZIP>) { - chomp; - if( /voc/ ) { -@@ -194,20 +191,16 @@ - } - } - close(ZIP); -- unlink("/tmp/unzip.log"); - $/="\r\n"; # we work with a dos file - } - - for my $file (@res, @ARGV) { - $vocfile = $file; -- &printflush(LOG,"... generating \"$kvtfile\"...\n"); - $lang = ""; # initially unset - $filestage = 0; # file stage - &process_vocfile($vocfile); - } - print STDERR "...\tAll Complete.\n"; --&printflush(LOG,"\nAll Complete.\n"); --close(LOG); - - exit; - diff --git a/misc/kdeedu4/pkg-descr b/misc/kdeedu4/pkg-descr deleted file mode 100644 index c7e280d06aa4..000000000000 --- a/misc/kdeedu4/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Kdeedu is a collection of entertaining, educational programs for KDE - -WWW: http://www.kde.org/ diff --git a/misc/kdeedu4/pkg-plist b/misc/kdeedu4/pkg-plist deleted file mode 100644 index f2749e8f1092..000000000000 --- a/misc/kdeedu4/pkg-plist +++ /dev/null @@ -1,1962 +0,0 @@ -bin/celestrongps -bin/fliccd -bin/indiserver -bin/kalzium -bin/kbruch -bin/keduca -bin/keducabuilder -bin/khangman -bin/kig -bin/kiten -bin/kitengen -bin/klatin -bin/klettres -bin/kmessedwords -bin/kmplot -bin/kpercentage -bin/kstars -bin/ktouch -bin/kturtle -bin/kverbos -bin/kvoctrain -bin/kwordquiz -bin/langen2kvtml -bin/lx200_16 -bin/lx200autostar -bin/lx200classic -bin/lx200generic -bin/lx200gps -bin/spotlight2kvtml -bin/temma -bin/test_extdate -bin/test_extdatepicker -include/kstarsinterface.h -include/libkiten/asyndeta.h -include/libkiten/deinf.h -include/libkiten/dict.h -include/libkiten/kromajiedit.h -include/libkiten/rad.h -include/libkiten/widgets.h -include/simclockinterface.h -lib/kde3/kfile_drgeo.la -lib/kde3/kfile_drgeo.so -lib/kde3/kfile_kig.la -lib/kde3/kfile_kig.so -lib/kde3/libkeducapart.la -lib/kde3/libkeducapart.so -lib/kde3/libkigpart.la -lib/kde3/libkigpart.so -lib/kde3/libkmplotpart.la -lib/kde3/libkmplotpart.so -lib/libextdate.la -lib/libextdate.so -lib/libextdate.so.3 -lib/libkdeeducore.la -lib/libkdeeducore.so -lib/libkdeeducore.so.3 -lib/libkdeeduplot.la -lib/libkdeeduplot.so -lib/libkdeeduplot.so.3 -lib/libkdeeduui.la -lib/libkdeeduui.so -lib/libkdeeduui.so.3 -lib/libkiten.la -lib/libkiten.so -lib/libkiten.so.1 -share/applications/kde/kalzium.desktop -share/applications/kde/kbruch.desktop -share/applications/kde/keduca.desktop -share/applications/kde/keducabuilder.desktop -share/applications/kde/khangman.desktop -share/applications/kde/kig.desktop -share/applications/kde/kiten.desktop -share/applications/kde/klatin.desktop -share/applications/kde/klettres.desktop -share/applications/kde/kmessedwords.desktop -share/applications/kde/kmplot.desktop -share/applications/kde/kpercentage.desktop -share/applications/kde/kstars.desktop -share/applications/kde/ktouch.desktop -share/applications/kde/kturtle.desktop -share/applications/kde/kverbos.desktop -share/applications/kde/kvoctrain.desktop -share/applnk/Edutainment/Languages/.directory -share/applnk/Edutainment/Mathematics/.directory -share/applnk/Edutainment/Miscellaneous/.directory -share/applnk/Edutainment/Miscellaneous/kwordquiz.desktop -share/applnk/Edutainment/Science/.directory -share/applnk/Edutainment/Tools/.directory -share/apps/kalzium/data/questions.xml -share/apps/kalzium/elempics/Al.jpg -share/apps/kalzium/elempics/As.jpg -share/apps/kalzium/elempics/Au.jpg -share/apps/kalzium/elempics/B.jpg -share/apps/kalzium/elempics/Be.jpg -share/apps/kalzium/elempics/Bi.jpg -share/apps/kalzium/elempics/Br.jpg -share/apps/kalzium/elempics/C.jpg -share/apps/kalzium/elempics/Ca.jpg -share/apps/kalzium/elempics/Cd.jpg -share/apps/kalzium/elempics/Cl.jpg -share/apps/kalzium/elempics/Co.jpg -share/apps/kalzium/elempics/Cr.jpg -share/apps/kalzium/elempics/Cu.jpg -share/apps/kalzium/elempics/F.jpg -share/apps/kalzium/elempics/Fe.jpg -share/apps/kalzium/elempics/Ga.jpg -share/apps/kalzium/elempics/Ge.jpg -share/apps/kalzium/elempics/H.jpg -share/apps/kalzium/elempics/He.jpg -share/apps/kalzium/elempics/Hg.jpg -share/apps/kalzium/elempics/I.jpg -share/apps/kalzium/elempics/In.jpg -share/apps/kalzium/elempics/K.jpg -share/apps/kalzium/elempics/Kr.jpg -share/apps/kalzium/elempics/Li.jpg -share/apps/kalzium/elempics/Mg.jpg -share/apps/kalzium/elempics/Mn.jpg -share/apps/kalzium/elempics/Mo.jpg -share/apps/kalzium/elempics/N.jpg -share/apps/kalzium/elempics/Na.jpg -share/apps/kalzium/elempics/Nb.jpg -share/apps/kalzium/elempics/Ne.jpg -share/apps/kalzium/elempics/Ni.jpg -share/apps/kalzium/elempics/O.jpg -share/apps/kalzium/elempics/P.jpg -share/apps/kalzium/elempics/Pb.jpg -share/apps/kalzium/elempics/Pd.jpg -share/apps/kalzium/elempics/Pt.jpg -share/apps/kalzium/elempics/Re.jpg -share/apps/kalzium/elempics/Rh.jpg -share/apps/kalzium/elempics/S.jpg -share/apps/kalzium/elempics/Sb.jpg -share/apps/kalzium/elempics/Se.jpg -share/apps/kalzium/elempics/Si.jpg -share/apps/kalzium/elempics/Sn.jpg -share/apps/kalzium/elempics/Ta.jpg -share/apps/kalzium/elempics/Te.jpg -share/apps/kalzium/elempics/Th.jpg -share/apps/kalzium/elempics/Ti.jpg -share/apps/kalzium/elempics/U.jpg -share/apps/kalzium/elempics/V.jpg -share/apps/kalzium/elempics/W.jpg -share/apps/kalzium/elempics/Xe.jpg -share/apps/kalzium/elempics/Zn.jpg -share/apps/kalzium/elempics/Zr.jpg -share/apps/kalzium/icons/crystalsvg/128x128/actions/chemical.png -share/apps/kalzium/icons/crystalsvg/128x128/actions/elempic.png -share/apps/kalzium/icons/crystalsvg/128x128/actions/energies.png -share/apps/kalzium/icons/crystalsvg/128x128/actions/legend.png -share/apps/kalzium/icons/crystalsvg/128x128/actions/misc.png -share/apps/kalzium/icons/crystalsvg/128x128/actions/orbits.png -share/apps/kalzium/icons/crystalsvg/128x128/actions/overview.png -share/apps/kalzium/icons/crystalsvg/128x128/actions/timeline.png -share/apps/kalzium/icons/crystalsvg/16x16/actions/chemical.png -share/apps/kalzium/icons/crystalsvg/16x16/actions/elempic.png -share/apps/kalzium/icons/crystalsvg/16x16/actions/energies.png -share/apps/kalzium/icons/crystalsvg/16x16/actions/legend.png -share/apps/kalzium/icons/crystalsvg/16x16/actions/misc.png -share/apps/kalzium/icons/crystalsvg/16x16/actions/orbits.png -share/apps/kalzium/icons/crystalsvg/16x16/actions/overview.png -share/apps/kalzium/icons/crystalsvg/16x16/actions/timeline.png -share/apps/kalzium/icons/crystalsvg/22x22/actions/chemical.png -share/apps/kalzium/icons/crystalsvg/22x22/actions/elempic.png -share/apps/kalzium/icons/crystalsvg/22x22/actions/energies.png -share/apps/kalzium/icons/crystalsvg/22x22/actions/legend.png -share/apps/kalzium/icons/crystalsvg/22x22/actions/orbits.png -share/apps/kalzium/icons/crystalsvg/22x22/actions/overview.png -share/apps/kalzium/icons/crystalsvg/22x22/actions/timeline.png -share/apps/kalzium/icons/crystalsvg/32x32/actions/chemical.png -share/apps/kalzium/icons/crystalsvg/32x32/actions/elempic.png -share/apps/kalzium/icons/crystalsvg/32x32/actions/energies.png -share/apps/kalzium/icons/crystalsvg/32x32/actions/legend.png -share/apps/kalzium/icons/crystalsvg/32x32/actions/misc.png -share/apps/kalzium/icons/crystalsvg/32x32/actions/orbits.png -share/apps/kalzium/icons/crystalsvg/32x32/actions/overview.png -share/apps/kalzium/icons/crystalsvg/32x32/actions/timeline.png -share/apps/kalzium/icons/crystalsvg/48x48/actions/chemical.png -share/apps/kalzium/icons/crystalsvg/48x48/actions/elempic.png -share/apps/kalzium/icons/crystalsvg/48x48/actions/energies.png -share/apps/kalzium/icons/crystalsvg/48x48/actions/legend.png -share/apps/kalzium/icons/crystalsvg/48x48/actions/misc.png -share/apps/kalzium/icons/crystalsvg/48x48/actions/orbits.png -share/apps/kalzium/icons/crystalsvg/48x48/actions/overview.png -share/apps/kalzium/icons/crystalsvg/48x48/actions/timeline.png -share/apps/kalzium/icons/crystalsvg/64x64/actions/elempic.png -share/apps/kalzium/icons/crystalsvg/64x64/actions/legend.png -share/apps/kalzium/icons/crystalsvg/64x64/actions/timeline.png -share/apps/kalzium/icons/crystalsvg/scalable/actions/chemical.svgz -share/apps/kalzium/icons/crystalsvg/scalable/actions/elempic.svgz -share/apps/kalzium/icons/crystalsvg/scalable/actions/energies.svgz -share/apps/kalzium/icons/crystalsvg/scalable/actions/legend.svgz -share/apps/kalzium/icons/crystalsvg/scalable/actions/misc.svgz -share/apps/kalzium/icons/crystalsvg/scalable/actions/orbits.svgz -share/apps/kalzium/icons/crystalsvg/scalable/actions/overview.svgz -share/apps/kalzium/icons/crystalsvg/scalable/actions/timeline.svgz -share/apps/kalzium/kalziumrc -share/apps/kalzium/kalziumui.rc -share/apps/katepart/syntax/logohighlightstyle.en_US.xml -%%BOOST_PYTHON%%share/apps/katepart/syntax/python-kig.xml -share/apps/kbruch/kbruchui.rc -share/apps/keduca/icons/crystalsvg/16x16/actions/addquestion.png -share/apps/keduca/icons/crystalsvg/16x16/actions/control.png -share/apps/keduca/icons/crystalsvg/16x16/actions/delquestion.png -share/apps/keduca/icons/crystalsvg/16x16/actions/editquestion.png -share/apps/keduca/icons/crystalsvg/22x22/actions/addquestion.png -share/apps/keduca/icons/crystalsvg/22x22/actions/control.png -share/apps/keduca/icons/crystalsvg/22x22/actions/delquestion.png -share/apps/keduca/icons/crystalsvg/22x22/actions/editquestion.png -share/apps/keduca/keduca_partui.rc -share/apps/keduca/keducabuilderui.rc -share/apps/keduca/keducaui.rc -share/apps/keduca/pics/alert.png -share/apps/keduca/pics/bk_frame.png -share/apps/keduca/pics/clock.png -share/apps/keduca/pics/default.png -share/apps/keduca/pics/info.png -share/apps/keduca/pics/keduca_correct_64.png -share/apps/keduca/pics/keduca_incorrect_64.png -share/apps/keduca/pics/keduca_init.png -share/apps/keduca/pics/statistics.png -share/apps/khangman/data/en/animals.kvtml -share/apps/khangman/data/en/easy.kvtml -share/apps/khangman/data/en/hard.kvtml -share/apps/khangman/data/en/medium.kvtml -share/apps/khangman/khangmanui.rc -share/apps/khangman/pics/blue.png -share/apps/khangman/pics/hg1.png -share/apps/khangman/pics/hg10.png -share/apps/khangman/pics/hg10c.png -share/apps/khangman/pics/hg12.png -share/apps/khangman/pics/hg2.png -share/apps/khangman/pics/hg3.png -share/apps/khangman/pics/hg4.png -share/apps/khangman/pics/hg5.png -share/apps/khangman/pics/hg6.png -share/apps/khangman/pics/hg7.png -share/apps/khangman/pics/hg7c.png -share/apps/khangman/pics/hg8.png -share/apps/khangman/pics/hg8c.png -share/apps/khangman/pics/hg9.png -share/apps/khangman/pics/hg9c.png -share/apps/khangman/pics/nature.png -share/apps/khangman/sounds/EW_Dialogue_Appear.ogg -share/apps/khangman/sounds/new_game.ogg -share/apps/kig/builtin-macros/circle_by_center_and_line.kigt -share/apps/kig/builtin-macros/circle_by_point_and_diameter.kigt -share/apps/kig/builtin-macros/circle_by_point_and_segment.kigt -share/apps/kig/builtin-macros/equitriangle.kigt -share/apps/kig/builtin-macros/evolute.kigt -share/apps/kig/builtin-macros/osculating_circle.kigt -share/apps/kig/builtin-macros/segment_axis.kigt -share/apps/kig/builtin-macros/square.kigt -share/apps/kig/builtin-macros/vector_difference.kigt -share/apps/kig/kigpartui.rc -share/apps/kig/kigui.rc -share/apps/kig/pics/angle-bisector.png -share/apps/kig/pics/angle-size.png -share/apps/kig/pics/angle.png -share/apps/kig/pics/arc-center.png -share/apps/kig/pics/arc.png -share/apps/kig/pics/areaCircle.png -share/apps/kig/pics/attacher.png -share/apps/kig/pics/baseCircle.png -share/apps/kig/pics/bisection.png -share/apps/kig/pics/centerofcurvature.png -share/apps/kig/pics/centralsymmetry.png -share/apps/kig/pics/circlebcl.png -share/apps/kig/pics/circlebcp.png -share/apps/kig/pics/circlebpd.png -share/apps/kig/pics/circlebps.png -share/apps/kig/pics/circlebtp.png -share/apps/kig/pics/circlelineintersection.png -share/apps/kig/pics/circumference.png -share/apps/kig/pics/conicb5p.png -share/apps/kig/pics/coniclineintersection.png -share/apps/kig/pics/conicsradicalline.png -share/apps/kig/pics/convexhull.png -share/apps/kig/pics/curvelineintersection.png -share/apps/kig/pics/directrix.png -share/apps/kig/pics/distance.png -share/apps/kig/pics/ellipsebffp.png -share/apps/kig/pics/en.png -share/apps/kig/pics/equitriangle.png -share/apps/kig/pics/genericaffinity.png -share/apps/kig/pics/genericprojectivity.png -share/apps/kig/pics/halflinebyvector.png -share/apps/kig/pics/harmonichomology.png -share/apps/kig/pics/hexagonbcv.png -share/apps/kig/pics/hyperbolabffp.png -share/apps/kig/pics/intersection.png -share/apps/kig/pics/inversion.png -share/apps/kig/pics/line.png -share/apps/kig/pics/linebyvector.png -share/apps/kig/pics/locus.png -share/apps/kig/pics/mirrorpoint.png -share/apps/kig/pics/move.png -share/apps/kig/pics/paint.png -share/apps/kig/pics/parabolabtp.png -share/apps/kig/pics/parallel.png -share/apps/kig/pics/perpendicular.png -share/apps/kig/pics/point.png -share/apps/kig/pics/pointOnLine.png -share/apps/kig/pics/pointxy.png -share/apps/kig/pics/polygon.png -share/apps/kig/pics/polygonsides.png -share/apps/kig/pics/polygonvertices.png -share/apps/kig/pics/radicalline.png -share/apps/kig/pics/ray.png -share/apps/kig/pics/rotation.png -share/apps/kig/pics/scale.png -share/apps/kig/pics/script-python.png -share/apps/kig/pics/script.png -share/apps/kig/pics/segment-midpoint.png -share/apps/kig/pics/segment.png -share/apps/kig/pics/segmentaxis.png -share/apps/kig/pics/sizer.png -share/apps/kig/pics/slope.png -share/apps/kig/pics/square.png -share/apps/kig/pics/stretch.png -share/apps/kig/pics/tangent.png -share/apps/kig/pics/test.png -share/apps/kig/pics/testcollinear.png -share/apps/kig/pics/testcontains.png -share/apps/kig/pics/testorthogonal.png -share/apps/kig/pics/testparallel.png -share/apps/kig/pics/text.png -share/apps/kig/pics/translation.png -share/apps/kig/pics/triangle.png -share/apps/kig/pics/vector.png -share/apps/kig/pics/vectordifference.png -share/apps/kig/pics/vectorsum.png -share/apps/kig/pics/view_fit_to_page.png -share/apps/kig/pics/w.png -share/apps/kig/pics/window_fullscreen.png -share/apps/kig/pics/xfig.png -share/apps/kig/tips -share/apps/kiten/edict -share/apps/kiten/eeditui.rc -share/apps/kiten/kanjidic -share/apps/kiten/kitenui.rc -share/apps/kiten/learnui.rc -share/apps/kiten/radkfile -share/apps/kiten/romkana.cnv -share/apps/kiten/vconj -share/apps/klatin/data/grammar/bellum.klat -share/apps/klatin/data/grammar/genu.klat -share/apps/klatin/data/grammar/gradus.klat -share/apps/klatin/data/grammar/opus.klat -share/apps/klatin/data/grammar/puella.klat -share/apps/klatin/data/grammar/res.klat -share/apps/klatin/data/grammar/rex.klat -share/apps/klatin/data/grammar/servus.klat -share/apps/klatin/data/verbs/amo-indicative-active.klat -share/apps/klatin/data/verbs/amo-indicative-passive.klat -share/apps/klatin/data/verbs/amo-subjunctive-active.klat -share/apps/klatin/data/verbs/amo-subjunctive-passive.klat -share/apps/klatin/data/verbs/audio-indicative-active.klat -share/apps/klatin/data/verbs/audio-indicative-passive.klat -share/apps/klatin/data/verbs/audio-subjunctive-active.klat -share/apps/klatin/data/verbs/audio-subjunctive-passive.klat -share/apps/klatin/data/verbs/moneo-indicative-active.klat -share/apps/klatin/data/verbs/moneo-indicative-passive.klat -share/apps/klatin/data/verbs/moneo-subjunctive-active.klat -share/apps/klatin/data/verbs/moneo-subjunctive-passive.klat -share/apps/klatin/data/verbs/rego-indicative-active.klat -share/apps/klatin/data/verbs/rego-indicative-passive.klat -share/apps/klatin/data/verbs/rego-subjunctive-active.klat -share/apps/klatin/data/verbs/rego-subjunctive-passive.klat -share/apps/klatin/data/verbs/sum-indicative-active.klat -share/apps/klatin/data/verbs/sum-subjunctive-active.klat -share/apps/klatin/data/vocabs/de/A.kvtml -share/apps/klatin/data/vocabs/de/BC.kvtml -share/apps/klatin/data/vocabs/de/D.kvtml -share/apps/klatin/data/vocabs/de/EF.kvtml -share/apps/klatin/data/vocabs/de/GHI1.kvtml -share/apps/klatin/data/vocabs/de/I2L.kvtml -share/apps/klatin/data/vocabs/de/M.kvtml -share/apps/klatin/data/vocabs/de/N.kvtml -share/apps/klatin/data/vocabs/de/OP1.kvtml -share/apps/klatin/data/vocabs/de/P2.kvtml -share/apps/klatin/data/vocabs/de/QR.kvtml -share/apps/klatin/data/vocabs/de/S.kvtml -share/apps/klatin/data/vocabs/de/TU.kvtml -share/apps/klatin/data/vocabs/de/V.kvtml -share/apps/klatin/data/vocabs/en/A.kvtml -share/apps/klatin/data/vocabs/en/BC.kvtml -share/apps/klatin/data/vocabs/en/D.kvtml -share/apps/klatin/data/vocabs/en/EF.kvtml -share/apps/klatin/data/vocabs/en/GHI1.kvtml -share/apps/klatin/data/vocabs/en/I2L.kvtml -share/apps/klatin/data/vocabs/en/M.kvtml -share/apps/klatin/data/vocabs/en/N.kvtml -share/apps/klatin/data/vocabs/en/OP1.kvtml -share/apps/klatin/data/vocabs/en/P2.kvtml -share/apps/klatin/data/vocabs/en/QR.kvtml -share/apps/klatin/data/vocabs/en/S.kvtml -share/apps/klatin/data/vocabs/en/TU.kvtml -share/apps/klatin/data/vocabs/en/V.kvtml -share/apps/klatin/data/vocabs/pl/A.kvtml -share/apps/klatin/data/vocabs/pl/BC.kvtml -share/apps/klatin/data/vocabs/pl/D.kvtml -share/apps/klatin/data/vocabs/pl/EF.kvtml -share/apps/klatin/data/vocabs/pl/GHI1.kvtml -share/apps/klatin/data/vocabs/pl/I2L.kvtml -share/apps/klatin/data/vocabs/pl/M.kvtml -share/apps/klatin/data/vocabs/pl/N.kvtml -share/apps/klatin/data/vocabs/pl/OP1.kvtml -share/apps/klatin/data/vocabs/pl/P2.kvtml -share/apps/klatin/data/vocabs/pl/QR.kvtml -share/apps/klatin/data/vocabs/pl/S.kvtml -share/apps/klatin/data/vocabs/pl/TU.kvtml -share/apps/klatin/data/vocabs/pl/V.kvtml -share/apps/klatin/klatinui.rc -share/apps/klettres/cs.txt -share/apps/klettres/da.txt -share/apps/klettres/data/sounds.xml -share/apps/klettres/en/alpha/A.ogg -share/apps/klettres/en/alpha/B.ogg -share/apps/klettres/en/alpha/C.ogg -share/apps/klettres/en/alpha/D.ogg -share/apps/klettres/en/alpha/E.ogg -share/apps/klettres/en/alpha/F.ogg -share/apps/klettres/en/alpha/G.ogg -share/apps/klettres/en/alpha/H.ogg -share/apps/klettres/en/alpha/I.ogg -share/apps/klettres/en/alpha/J.ogg -share/apps/klettres/en/alpha/K.ogg -share/apps/klettres/en/alpha/L.ogg -share/apps/klettres/en/alpha/M.ogg -share/apps/klettres/en/alpha/N.ogg -share/apps/klettres/en/alpha/O.ogg -share/apps/klettres/en/alpha/P.ogg -share/apps/klettres/en/alpha/Q.ogg -share/apps/klettres/en/alpha/R.ogg -share/apps/klettres/en/alpha/S.ogg -share/apps/klettres/en/alpha/T.ogg -share/apps/klettres/en/alpha/U.ogg -share/apps/klettres/en/alpha/V.ogg -share/apps/klettres/en/alpha/W.ogg -share/apps/klettres/en/alpha/X.ogg -share/apps/klettres/en/alpha/Y.ogg -share/apps/klettres/en/alpha/Z.ogg -share/apps/klettres/en/syllab/aw.ogg -share/apps/klettres/en/syllab/car.ogg -share/apps/klettres/en/syllab/ch.ogg -share/apps/klettres/en/syllab/dog.ogg -share/apps/klettres/en/syllab/fix.ogg -share/apps/klettres/en/syllab/gas.ogg -share/apps/klettres/en/syllab/gem.ogg -share/apps/klettres/en/syllab/hot.ogg -share/apps/klettres/en/syllab/jet.ogg -share/apps/klettres/en/syllab/key.ogg -share/apps/klettres/en/syllab/me.ogg -share/apps/klettres/en/syllab/my.ogg -share/apps/klettres/en/syllab/no.ogg -share/apps/klettres/en/syllab/pet.ogg -share/apps/klettres/en/syllab/saw.ogg -share/apps/klettres/en/syllab/say.ogg -share/apps/klettres/en/syllab/sit.ogg -share/apps/klettres/en/syllab/sky.ogg -share/apps/klettres/en/syllab/th.ogg -share/apps/klettres/es.txt -share/apps/klettres/fr/alpha/a-0.ogg -share/apps/klettres/fr/alpha/a-1.ogg -share/apps/klettres/fr/alpha/a-10.ogg -share/apps/klettres/fr/alpha/a-11.ogg -share/apps/klettres/fr/alpha/a-12.ogg -share/apps/klettres/fr/alpha/a-13.ogg -share/apps/klettres/fr/alpha/a-14.ogg -share/apps/klettres/fr/alpha/a-15.ogg -share/apps/klettres/fr/alpha/a-16.ogg -share/apps/klettres/fr/alpha/a-17.ogg -share/apps/klettres/fr/alpha/a-18.ogg -share/apps/klettres/fr/alpha/a-19.ogg -share/apps/klettres/fr/alpha/a-2.ogg -share/apps/klettres/fr/alpha/a-20.ogg -share/apps/klettres/fr/alpha/a-21.ogg -share/apps/klettres/fr/alpha/a-22.ogg -share/apps/klettres/fr/alpha/a-23.ogg -share/apps/klettres/fr/alpha/a-24.ogg -share/apps/klettres/fr/alpha/a-25.ogg -share/apps/klettres/fr/alpha/a-3.ogg -share/apps/klettres/fr/alpha/a-4.ogg -share/apps/klettres/fr/alpha/a-5.ogg -share/apps/klettres/fr/alpha/a-6.ogg -share/apps/klettres/fr/alpha/a-7.ogg -share/apps/klettres/fr/alpha/a-8.ogg -share/apps/klettres/fr/alpha/a-9.ogg -share/apps/klettres/fr/syllab/ad-0.ogg -share/apps/klettres/fr/syllab/ad-1.ogg -share/apps/klettres/fr/syllab/ad-10.ogg -share/apps/klettres/fr/syllab/ad-11.ogg -share/apps/klettres/fr/syllab/ad-12.ogg -share/apps/klettres/fr/syllab/ad-13.ogg -share/apps/klettres/fr/syllab/ad-14.ogg -share/apps/klettres/fr/syllab/ad-15.ogg -share/apps/klettres/fr/syllab/ad-16.ogg -share/apps/klettres/fr/syllab/ad-17.ogg -share/apps/klettres/fr/syllab/ad-18.ogg -share/apps/klettres/fr/syllab/ad-19.ogg -share/apps/klettres/fr/syllab/ad-2.ogg -share/apps/klettres/fr/syllab/ad-20.ogg -share/apps/klettres/fr/syllab/ad-21.ogg -share/apps/klettres/fr/syllab/ad-22.ogg -share/apps/klettres/fr/syllab/ad-23.ogg -share/apps/klettres/fr/syllab/ad-24.ogg -share/apps/klettres/fr/syllab/ad-25.ogg -share/apps/klettres/fr/syllab/ad-26.ogg -share/apps/klettres/fr/syllab/ad-27.ogg -share/apps/klettres/fr/syllab/ad-3.ogg -share/apps/klettres/fr/syllab/ad-4.ogg -share/apps/klettres/fr/syllab/ad-5.ogg -share/apps/klettres/fr/syllab/ad-6.ogg -share/apps/klettres/fr/syllab/ad-7.ogg -share/apps/klettres/fr/syllab/ad-8.ogg -share/apps/klettres/fr/syllab/ad-9.ogg -share/apps/klettres/icons/crystalsvg/128x128/actions/klettres_desert.png -share/apps/klettres/icons/crystalsvg/128x128/actions/klettres_grownup.png -share/apps/klettres/icons/crystalsvg/128x128/actions/klettres_kids.png -share/apps/klettres/icons/crystalsvg/16x16/actions/klettres_desert.png -share/apps/klettres/icons/crystalsvg/16x16/actions/klettres_grownup.png -share/apps/klettres/icons/crystalsvg/16x16/actions/klettres_kids.png -share/apps/klettres/icons/crystalsvg/22x22/actions/klettres_desert.png -share/apps/klettres/icons/crystalsvg/22x22/actions/klettres_grownup.png -share/apps/klettres/icons/crystalsvg/22x22/actions/klettres_kids.png.png -share/apps/klettres/icons/crystalsvg/32x32/actions/klettres_desert.png -share/apps/klettres/icons/crystalsvg/32x32/actions/klettres_grownup.png -share/apps/klettres/icons/crystalsvg/32x32/actions/klettres_kids.png -share/apps/klettres/icons/crystalsvg/48x48/actions/klettres_desert.png -share/apps/klettres/icons/crystalsvg/48x48/actions/klettres_grownup.png -share/apps/klettres/icons/crystalsvg/48x48/actions/klettres_kids.png -share/apps/klettres/icons/crystalsvg/64x64/actions/klettres_desert.png -share/apps/klettres/icons/crystalsvg/64x64/actions/klettres_grownup.png.png -share/apps/klettres/icons/crystalsvg/64x64/actions/klettres_kids.png -share/apps/klettres/icons/crystalsvg/scalable/actions/klettres_desert.svgz -share/apps/klettres/icons/crystalsvg/scalable/actions/klettres_grownup.svgz -share/apps/klettres/icons/crystalsvg/scalable/actions/klettres_kids.svgz -share/apps/klettres/klettresui.rc -share/apps/klettres/pics/background1.png -share/apps/klettres/pics/klettres_back.jpeg -share/apps/klettres/sk.txt -share/apps/kmessedwords/book.png -share/apps/kmessedwords/dict.png -share/apps/kmessedwords/dudeoh.png -share/apps/kmessedwords/dudeyes.png -share/apps/kmessedwords/easy.txt -share/apps/kmessedwords/hard.txt -share/apps/kmessedwords/kmessedwordsui.rc -share/apps/kmessedwords/medium.txt -share/apps/kmessedwords/themes/bubbly_crystal/btnbye.png -share/apps/kmessedwords/themes/bubbly_crystal/btnconf.png -share/apps/kmessedwords/themes/bubbly_crystal/btnhelp.png -share/apps/kmessedwords/themes/bubbly_crystal/btnmess.png -share/apps/kmessedwords/themes/bubbly_crystal/btnscore.png -share/apps/kmessedwords/themes/bubbly_crystal/btntry.png -share/apps/kmessedwords/themes/bubbly_crystal/kmessedbg.png -share/apps/kmessedwords/themes/default/btnbye.png -share/apps/kmessedwords/themes/default/btnconf.png -share/apps/kmessedwords/themes/default/btnhelp.png -share/apps/kmessedwords/themes/default/btnmess.png -share/apps/kmessedwords/themes/default/btnscore.png -share/apps/kmessedwords/themes/default/btntry.png -share/apps/kmessedwords/themes/default/kmessedbg.png -share/apps/kmessedwords/wrench_small.png -share/apps/kmplot/icons/crystalsvg/16x16/actions/editplots.png -share/apps/kmplot/icons/crystalsvg/16x16/actions/functionhelp.png -share/apps/kmplot/icons/crystalsvg/16x16/actions/ksys1.png -share/apps/kmplot/icons/crystalsvg/16x16/actions/ksys2.png -share/apps/kmplot/icons/crystalsvg/16x16/actions/ksys3.png -share/apps/kmplot/icons/crystalsvg/16x16/actions/maximum.png -share/apps/kmplot/icons/crystalsvg/16x16/actions/minimum.png -share/apps/kmplot/icons/crystalsvg/16x16/actions/newfunction.png -share/apps/kmplot/icons/crystalsvg/16x16/actions/newparametric.png -share/apps/kmplot/icons/crystalsvg/16x16/actions/newpolar.png -share/apps/kmplot/icons/crystalsvg/22x22/actions/editplots.png -share/apps/kmplot/icons/crystalsvg/22x22/actions/functionhelp.png -share/apps/kmplot/icons/crystalsvg/22x22/actions/ksys1.png -share/apps/kmplot/icons/crystalsvg/22x22/actions/ksys2.png -share/apps/kmplot/icons/crystalsvg/22x22/actions/ksys3.png -share/apps/kmplot/icons/crystalsvg/22x22/actions/maximum.png -share/apps/kmplot/icons/crystalsvg/22x22/actions/minimum.png -share/apps/kmplot/icons/crystalsvg/22x22/actions/newfunction.png -share/apps/kmplot/icons/crystalsvg/22x22/actions/newparametric.png -share/apps/kmplot/icons/crystalsvg/22x22/actions/newpolar.png -share/apps/kmplot/icons/crystalsvg/32x32/actions/coords.png -share/apps/kmplot/icons/crystalsvg/32x32/actions/deriv_func.png -share/apps/kmplot/icons/crystalsvg/32x32/actions/editconstants.png -share/apps/kmplot/icons/crystalsvg/32x32/actions/editplots.png -share/apps/kmplot/icons/crystalsvg/32x32/actions/func.png -share/apps/kmplot/icons/crystalsvg/32x32/actions/functionhelp.png -share/apps/kmplot/icons/crystalsvg/32x32/actions/integral_func.png -share/apps/kmplot/icons/crystalsvg/32x32/actions/ksys1.png -share/apps/kmplot/icons/crystalsvg/32x32/actions/ksys2.png -share/apps/kmplot/icons/crystalsvg/32x32/actions/ksys3.png -share/apps/kmplot/icons/crystalsvg/32x32/actions/lessen.png -share/apps/kmplot/icons/crystalsvg/32x32/actions/magnify.png -share/apps/kmplot/icons/crystalsvg/32x32/actions/maximum.png -share/apps/kmplot/icons/crystalsvg/32x32/actions/minimum.png -share/apps/kmplot/icons/crystalsvg/32x32/actions/newfunction.png -share/apps/kmplot/icons/crystalsvg/32x32/actions/newparametric.png -share/apps/kmplot/icons/crystalsvg/32x32/actions/newpolar.png -share/apps/kmplot/icons/crystalsvg/32x32/actions/scaling.png -share/apps/kmplot/icons/crystalsvg/48x48/actions/editplots.png -share/apps/kmplot/icons/crystalsvg/48x48/actions/functionhelp.png -share/apps/kmplot/icons/crystalsvg/48x48/actions/integral_func.png -share/apps/kmplot/icons/crystalsvg/48x48/actions/ksys1.png -share/apps/kmplot/icons/crystalsvg/48x48/actions/ksys2.png -share/apps/kmplot/icons/crystalsvg/48x48/actions/ksys3.png -share/apps/kmplot/icons/crystalsvg/48x48/actions/maximum.png -share/apps/kmplot/icons/crystalsvg/48x48/actions/minimum.png -share/apps/kmplot/icons/crystalsvg/48x48/actions/newfunction.png -share/apps/kmplot/icons/crystalsvg/48x48/actions/newparametric.png -share/apps/kmplot/icons/crystalsvg/48x48/actions/newpolar.png -share/apps/kmplot/icons/crystalsvg/64x64/actions/maximum.png -share/apps/kmplot/icons/crystalsvg/64x64/actions/minimum.png -share/apps/kmplot/icons/crystalsvg/scalable/actions/deriv_func.svgz -share/apps/kmplot/icons/crystalsvg/scalable/actions/editconstants.svgz -share/apps/kmplot/icons/crystalsvg/scalable/actions/editplots.svgz -share/apps/kmplot/icons/crystalsvg/scalable/actions/functionhelp.svgz -share/apps/kmplot/icons/crystalsvg/scalable/actions/integral_func.svgz -share/apps/kmplot/icons/crystalsvg/scalable/actions/ksys1.svgz -share/apps/kmplot/icons/crystalsvg/scalable/actions/ksys2.svgz -share/apps/kmplot/icons/crystalsvg/scalable/actions/ksys3.svgz -share/apps/kmplot/icons/crystalsvg/scalable/actions/maximum.svgz -share/apps/kmplot/icons/crystalsvg/scalable/actions/minimum.svgz -share/apps/kmplot/icons/crystalsvg/scalable/actions/newfunction.svgz -share/apps/kmplot/icons/crystalsvg/scalable/actions/newparametric.svgz -share/apps/kmplot/icons/crystalsvg/scalable/actions/newpolar.svgz -share/apps/kmplot/kmplot_part.rc -share/apps/kmplot/kmplot_part_readonly.rc -share/apps/kmplot/kmplot_shell.rc -share/apps/kpercentage/icons/crystalsvg/22x22/actions/button_cancel.png -share/apps/kpercentage/icons/crystalsvg/22x22/actions/button_ok.png -share/apps/kpercentage/icons/crystalsvg/32x32/actions/button_cancel.png -share/apps/kpercentage/icons/crystalsvg/32x32/actions/button_ok.png -share/apps/kpercentage/icons/locolor/32x32/actions/button_cancel.png -share/apps/kpercentage/icons/locolor/32x32/actions/button_ok.png -share/apps/kpercentage/pics/kanswer_bg.png -share/apps/kpercentage/pics/kpercentage_bg.png -share/apps/kpercentage/pics/kpercentage_bg_rtl.png -share/apps/kpercentage/pics/kpercentmain_bg.png -share/apps/kpercentage/pics/kpercentmain_bg_rtl.png -share/apps/kpercentage/pics/smily0000.png -share/apps/kpercentage/pics/smily0001.png -share/apps/kpercentage/pics/smily0002.png -share/apps/kpercentage/pics/smily0003.png -share/apps/kpercentage/pics/smily0004.png -share/apps/kpercentage/pics/smily0005.png -share/apps/kpercentage/pics/smily0006.png -share/apps/kpercentage/pics/smily_medium.png -share/apps/kpercentage/pics/smily_right.png -share/apps/kpercentage/pics/smily_wrong.png -share/apps/kpercentage/pics/splash.png -share/apps/kpercentage/right.txt -share/apps/kpercentage/story/right.story -share/apps/kpercentage/story/wrong.story -share/apps/kpercentage/wrong.txt -share/apps/kstars/Cities.dat -share/apps/kstars/TZrules.dat -share/apps/kstars/advinterface.dat -share/apps/kstars/asteroids.dat -share/apps/kstars/cbound.dat -share/apps/kstars/chart.colors -share/apps/kstars/clines.dat -share/apps/kstars/cnames.dat -share/apps/kstars/comets.dat -share/apps/kstars/default.colors -share/apps/kstars/drivers.xml -share/apps/kstars/earth.B0.vsop -share/apps/kstars/earth.B1.vsop -share/apps/kstars/earth.B2.vsop -share/apps/kstars/earth.B3.vsop -share/apps/kstars/earth.B4.vsop -share/apps/kstars/earth.L0.vsop -share/apps/kstars/earth.L1.vsop -share/apps/kstars/earth.L2.vsop -share/apps/kstars/earth.L3.vsop -share/apps/kstars/earth.L4.vsop -share/apps/kstars/earth.L5.vsop -share/apps/kstars/earth.R0.vsop -share/apps/kstars/earth.R1.vsop -share/apps/kstars/earth.R2.vsop -share/apps/kstars/earth.R3.vsop -share/apps/kstars/earth.R4.vsop -share/apps/kstars/earth.R5.vsop -share/apps/kstars/earth.orbit -share/apps/kstars/earth.png -share/apps/kstars/fitsviewer.rc -share/apps/kstars/geomap.png -share/apps/kstars/hip001.dat -share/apps/kstars/hip002.dat -share/apps/kstars/hip003.dat -share/apps/kstars/hip004.dat -share/apps/kstars/hip005.dat -share/apps/kstars/hip006.dat -share/apps/kstars/hip007.dat -share/apps/kstars/hip008.dat -share/apps/kstars/hip009.dat -share/apps/kstars/hip010.dat -share/apps/kstars/hip011.dat -share/apps/kstars/hip012.dat -share/apps/kstars/hip013.dat -share/apps/kstars/hip014.dat -share/apps/kstars/hip015.dat -share/apps/kstars/hip016.dat -share/apps/kstars/hip017.dat -share/apps/kstars/hip018.dat -share/apps/kstars/hip019.dat -share/apps/kstars/hip020.dat -share/apps/kstars/hip021.dat -share/apps/kstars/hip022.dat -share/apps/kstars/hip023.dat -share/apps/kstars/hip024.dat -share/apps/kstars/hip025.dat -share/apps/kstars/hip026.dat -share/apps/kstars/hip027.dat -share/apps/kstars/hip028.dat -share/apps/kstars/hip029.dat -share/apps/kstars/hip030.dat -share/apps/kstars/hip031.dat -share/apps/kstars/hip032.dat -share/apps/kstars/hip033.dat -share/apps/kstars/hip034.dat -share/apps/kstars/hip035.dat -share/apps/kstars/hip036.dat -share/apps/kstars/hip037.dat -share/apps/kstars/hip038.dat -share/apps/kstars/hip039.dat -share/apps/kstars/hip040.dat -share/apps/kstars/hip041.dat -share/apps/kstars/hip042.dat -share/apps/kstars/hip043.dat -share/apps/kstars/hip044.dat -share/apps/kstars/hip045.dat -share/apps/kstars/hip046.dat -share/apps/kstars/hip047.dat -share/apps/kstars/hip048.dat -share/apps/kstars/hip049.dat -share/apps/kstars/hip050.dat -share/apps/kstars/hip051.dat -share/apps/kstars/hip052.dat -share/apps/kstars/hip053.dat -share/apps/kstars/hip054.dat -share/apps/kstars/hip055.dat -share/apps/kstars/hip056.dat -share/apps/kstars/hip057.dat -share/apps/kstars/hip058.dat -share/apps/kstars/hip059.dat -share/apps/kstars/hip060.dat -share/apps/kstars/hip061.dat -share/apps/kstars/hip062.dat -share/apps/kstars/hip063.dat -share/apps/kstars/hip064.dat -share/apps/kstars/hip065.dat -share/apps/kstars/hip066.dat -share/apps/kstars/hip067.dat -share/apps/kstars/hip068.dat -share/apps/kstars/hip069.dat -share/apps/kstars/hip070.dat -share/apps/kstars/hip071.dat -share/apps/kstars/hip072.dat -share/apps/kstars/hip073.dat -share/apps/kstars/hip074.dat -share/apps/kstars/hip075.dat -share/apps/kstars/hip076.dat -share/apps/kstars/hip077.dat -share/apps/kstars/hip078.dat -share/apps/kstars/hip079.dat -share/apps/kstars/hip080.dat -share/apps/kstars/hip081.dat -share/apps/kstars/hip082.dat -share/apps/kstars/hip083.dat -share/apps/kstars/hip084.dat -share/apps/kstars/hip085.dat -share/apps/kstars/hip086.dat -share/apps/kstars/hip087.dat -share/apps/kstars/hip088.dat -share/apps/kstars/hip089.dat -share/apps/kstars/hip090.dat -share/apps/kstars/hip091.dat -share/apps/kstars/hip092.dat -share/apps/kstars/hip093.dat -share/apps/kstars/hip094.dat -share/apps/kstars/hip095.dat -share/apps/kstars/hip096.dat -share/apps/kstars/hip097.dat -share/apps/kstars/hip098.dat -share/apps/kstars/hip099.dat -share/apps/kstars/hip100.dat -share/apps/kstars/hip101.dat -share/apps/kstars/hip102.dat -share/apps/kstars/hip103.dat -share/apps/kstars/hip104.dat -share/apps/kstars/hip105.dat -share/apps/kstars/hip106.dat -share/apps/kstars/hip107.dat -share/apps/kstars/hip108.dat -share/apps/kstars/hip109.dat -share/apps/kstars/hip110.dat -share/apps/kstars/hip111.dat -share/apps/kstars/hip112.dat -share/apps/kstars/hip113.dat -share/apps/kstars/hip114.dat -share/apps/kstars/hip115.dat -share/apps/kstars/hip116.dat -share/apps/kstars/hip117.dat -share/apps/kstars/hip118.dat -share/apps/kstars/hip119.dat -share/apps/kstars/hip120.dat -share/apps/kstars/hip121.dat -share/apps/kstars/hip122.dat -share/apps/kstars/hip123.dat -share/apps/kstars/hip124.dat -share/apps/kstars/hip125.dat -share/apps/kstars/hip126.dat -share/apps/kstars/hip127.dat -share/apps/kstars/histogram.png -share/apps/kstars/image_url.dat -share/apps/kstars/imgreduction.png -share/apps/kstars/info_url.dat -share/apps/kstars/jupiter.B0.vsop -share/apps/kstars/jupiter.B1.vsop -share/apps/kstars/jupiter.B2.vsop -share/apps/kstars/jupiter.B3.vsop -share/apps/kstars/jupiter.B4.vsop -share/apps/kstars/jupiter.B5.vsop -share/apps/kstars/jupiter.L0.vsop -share/apps/kstars/jupiter.L1.vsop -share/apps/kstars/jupiter.L2.vsop -share/apps/kstars/jupiter.L3.vsop -share/apps/kstars/jupiter.L4.vsop -share/apps/kstars/jupiter.L5.vsop -share/apps/kstars/jupiter.R0.vsop -share/apps/kstars/jupiter.R1.vsop -share/apps/kstars/jupiter.R2.vsop -share/apps/kstars/jupiter.R3.vsop -share/apps/kstars/jupiter.R4.vsop -share/apps/kstars/jupiter.R5.vsop -share/apps/kstars/jupiter.orbit -share/apps/kstars/jupiter.png -share/apps/kstars/kstars.png -share/apps/kstars/kstarsui.rc -share/apps/kstars/mars.B0.vsop -share/apps/kstars/mars.B1.vsop -share/apps/kstars/mars.B2.vsop -share/apps/kstars/mars.B3.vsop -share/apps/kstars/mars.B4.vsop -share/apps/kstars/mars.B5.vsop -share/apps/kstars/mars.L0.vsop -share/apps/kstars/mars.L1.vsop -share/apps/kstars/mars.L2.vsop -share/apps/kstars/mars.L3.vsop -share/apps/kstars/mars.L4.vsop -share/apps/kstars/mars.L5.vsop -share/apps/kstars/mars.R0.vsop -share/apps/kstars/mars.R1.vsop -share/apps/kstars/mars.R2.vsop -share/apps/kstars/mars.R3.vsop -share/apps/kstars/mars.R4.vsop -share/apps/kstars/mars.R5.vsop -share/apps/kstars/mars.orbit -share/apps/kstars/mars.png -share/apps/kstars/mercury.B0.vsop -share/apps/kstars/mercury.B1.vsop -share/apps/kstars/mercury.B2.vsop -share/apps/kstars/mercury.B3.vsop -share/apps/kstars/mercury.B4.vsop -share/apps/kstars/mercury.B5.vsop -share/apps/kstars/mercury.L0.vsop -share/apps/kstars/mercury.L1.vsop -share/apps/kstars/mercury.L2.vsop -share/apps/kstars/mercury.L3.vsop -share/apps/kstars/mercury.L4.vsop -share/apps/kstars/mercury.L5.vsop -share/apps/kstars/mercury.R0.vsop -share/apps/kstars/mercury.R1.vsop -share/apps/kstars/mercury.R2.vsop -share/apps/kstars/mercury.R3.vsop -share/apps/kstars/mercury.R4.vsop -share/apps/kstars/mercury.R5.vsop -share/apps/kstars/mercury.orbit -share/apps/kstars/mercury.png -share/apps/kstars/moon00.png -share/apps/kstars/moon01.png -share/apps/kstars/moon02.png -share/apps/kstars/moon03.png -share/apps/kstars/moon04.png -share/apps/kstars/moon05.png -share/apps/kstars/moon06.png -share/apps/kstars/moon07.png -share/apps/kstars/moon08.png -share/apps/kstars/moon09.png -share/apps/kstars/moon10.png -share/apps/kstars/moon11.png -share/apps/kstars/moon12.png -share/apps/kstars/moon13.png -share/apps/kstars/moon14.png -share/apps/kstars/moon15.png -share/apps/kstars/moon16.png -share/apps/kstars/moon17.png -share/apps/kstars/moon18.png -share/apps/kstars/moon19.png -share/apps/kstars/moon20.png -share/apps/kstars/moon21.png -share/apps/kstars/moon22.png -share/apps/kstars/moon23.png -share/apps/kstars/moon24.png -share/apps/kstars/moon25.png -share/apps/kstars/moon26.png -share/apps/kstars/moon27.png -share/apps/kstars/moon28.png -share/apps/kstars/moon29.png -share/apps/kstars/moon30.png -share/apps/kstars/moon31.png -share/apps/kstars/moon32.png -share/apps/kstars/moon33.png -share/apps/kstars/moon34.png -share/apps/kstars/moon35.png -share/apps/kstars/moonB.dat -share/apps/kstars/moonLR.dat -share/apps/kstars/moonless-night.colors -share/apps/kstars/mw01.dat -share/apps/kstars/mw02.dat -share/apps/kstars/mw03.dat -share/apps/kstars/mw04.dat -share/apps/kstars/mw05.dat -share/apps/kstars/mw06.dat -share/apps/kstars/mw07.dat -share/apps/kstars/mw08.dat -share/apps/kstars/mw09.dat -share/apps/kstars/mw10.dat -share/apps/kstars/mw11.dat -share/apps/kstars/neptune.B0.vsop -share/apps/kstars/neptune.B1.vsop -share/apps/kstars/neptune.B2.vsop -share/apps/kstars/neptune.B3.vsop -share/apps/kstars/neptune.B4.vsop -share/apps/kstars/neptune.B5.vsop -share/apps/kstars/neptune.L0.vsop -share/apps/kstars/neptune.L1.vsop -share/apps/kstars/neptune.L2.vsop -share/apps/kstars/neptune.L3.vsop -share/apps/kstars/neptune.L4.vsop -share/apps/kstars/neptune.L5.vsop -share/apps/kstars/neptune.R0.vsop -share/apps/kstars/neptune.R1.vsop -share/apps/kstars/neptune.R2.vsop -share/apps/kstars/neptune.R3.vsop -share/apps/kstars/neptune.R4.vsop -share/apps/kstars/neptune.orbit -share/apps/kstars/neptune.png -share/apps/kstars/ngcic01.dat -share/apps/kstars/ngcic02.dat -share/apps/kstars/ngcic03.dat -share/apps/kstars/ngcic04.dat -share/apps/kstars/ngcic05.dat -share/apps/kstars/ngcic06.dat -share/apps/kstars/ngcic07.dat -share/apps/kstars/ngcic08.dat -share/apps/kstars/ngcic09.dat -share/apps/kstars/ngcic10.dat -share/apps/kstars/ngcic11.dat -share/apps/kstars/ngcic12.dat -share/apps/kstars/ngcic13.dat -share/apps/kstars/ngcic14.dat -share/apps/kstars/night.colors -share/apps/kstars/opsadvanced.png -share/apps/kstars/opscatalog.png -share/apps/kstars/opscolors.png -share/apps/kstars/opsguides.png -share/apps/kstars/opssolarsystem.png -share/apps/kstars/pluto.freq -share/apps/kstars/pluto.orbit -share/apps/kstars/pluto.png -share/apps/kstars/pluto.x -share/apps/kstars/pluto.y -share/apps/kstars/pluto.z -share/apps/kstars/saturn.B0.vsop -share/apps/kstars/saturn.B1.vsop -share/apps/kstars/saturn.B2.vsop -share/apps/kstars/saturn.B3.vsop -share/apps/kstars/saturn.B4.vsop -share/apps/kstars/saturn.B5.vsop -share/apps/kstars/saturn.L0.vsop -share/apps/kstars/saturn.L1.vsop -share/apps/kstars/saturn.L2.vsop -share/apps/kstars/saturn.L3.vsop -share/apps/kstars/saturn.L4.vsop -share/apps/kstars/saturn.L5.vsop -share/apps/kstars/saturn.R0.vsop -share/apps/kstars/saturn.R1.vsop -share/apps/kstars/saturn.R2.vsop -share/apps/kstars/saturn.R3.vsop -share/apps/kstars/saturn.R4.vsop -share/apps/kstars/saturn.R5.vsop -share/apps/kstars/saturn.orbit -share/apps/kstars/saturn.png -share/apps/kstars/show_cbound.png -share/apps/kstars/show_clines.png -share/apps/kstars/show_cnames.png -share/apps/kstars/show_deepsky.png -share/apps/kstars/show_grid.png -share/apps/kstars/show_horiz.png -share/apps/kstars/show_mw.png -share/apps/kstars/show_planets.png -share/apps/kstars/show_stars.png -share/apps/kstars/sun.png -share/apps/kstars/tips -share/apps/kstars/uranus.B0.vsop -share/apps/kstars/uranus.B1.vsop -share/apps/kstars/uranus.B2.vsop -share/apps/kstars/uranus.B3.vsop -share/apps/kstars/uranus.B4.vsop -share/apps/kstars/uranus.L0.vsop -share/apps/kstars/uranus.L1.vsop -share/apps/kstars/uranus.L2.vsop -share/apps/kstars/uranus.L3.vsop -share/apps/kstars/uranus.L4.vsop -share/apps/kstars/uranus.L5.vsop -share/apps/kstars/uranus.R0.vsop -share/apps/kstars/uranus.R1.vsop -share/apps/kstars/uranus.R2.vsop -share/apps/kstars/uranus.R3.vsop -share/apps/kstars/uranus.R4.vsop -share/apps/kstars/uranus.orbit -share/apps/kstars/uranus.png -share/apps/kstars/valaav.txt -share/apps/kstars/venus.B0.vsop -share/apps/kstars/venus.B1.vsop -share/apps/kstars/venus.B2.vsop -share/apps/kstars/venus.B3.vsop -share/apps/kstars/venus.B4.vsop -share/apps/kstars/venus.B5.vsop -share/apps/kstars/venus.L0.vsop -share/apps/kstars/venus.L1.vsop -share/apps/kstars/venus.L2.vsop -share/apps/kstars/venus.L3.vsop -share/apps/kstars/venus.L4.vsop -share/apps/kstars/venus.L5.vsop -share/apps/kstars/venus.R0.vsop -share/apps/kstars/venus.R1.vsop -share/apps/kstars/venus.R2.vsop -share/apps/kstars/venus.R3.vsop -share/apps/kstars/venus.R4.vsop -share/apps/kstars/venus.R5.vsop -share/apps/kstars/venus.orbit -share/apps/kstars/venus.png -share/apps/kstars/wizardside.png -share/apps/kstars/wzdownload.png -share/apps/kstars/wzgeo.png -share/apps/kstars/wzscope.png -share/apps/kstars/wzstars.png -share/apps/ktouch/be.keyboard -share/apps/ktouch/catalan.ktouch.xml -share/apps/ktouch/danish.ktouch.xml -share/apps/ktouch/danish2.ktouch.xml -share/apps/ktouch/de-ch2.keyboard -share/apps/ktouch/de.keyboard -share/apps/ktouch/dk.keyboard -share/apps/ktouch/down.wav -share/apps/ktouch/dvorak.keyboard -share/apps/ktouch/dvorak.ktouch.xml -share/apps/ktouch/dvorak_ABCD.ktouch.xml -share/apps/ktouch/dvorak_se.keyboard -share/apps/ktouch/ee.keyboard -share/apps/ktouch/en.keyboard -share/apps/ktouch/english.ktouch.xml -share/apps/ktouch/es.keyboard -share/apps/ktouch/fi.keyboard -share/apps/ktouch/fr.keyboard -share/apps/ktouch/fr_ch.keyboard -share/apps/ktouch/french.ktouch.xml -share/apps/ktouch/french2.ktouch.xml -share/apps/ktouch/german.ktouch.xml -share/apps/ktouch/german2.ktouch.xml -share/apps/ktouch/german3.ktouch.xml -share/apps/ktouch/he.keyboard -share/apps/ktouch/it.keyboard -share/apps/ktouch/italian.ktouch.xml -share/apps/ktouch/ktouchui.rc -share/apps/ktouch/la.keyboard -share/apps/ktouch/nederlands.ktouch.xml -share/apps/ktouch/nederlands_junior.ktouch.xml -share/apps/ktouch/no.keyboard -share/apps/ktouch/norwegian.ktouch.xml -share/apps/ktouch/number.keyboard -share/apps/ktouch/pl.keyboard -share/apps/ktouch/pt.keyboard -share/apps/ktouch/se.keyboard -share/apps/ktouch/spanish.ktouch.xml -share/apps/ktouch/splash.png -share/apps/ktouch/up.wav -share/apps/kturtle/data/logokeywords.en_US.xml -share/apps/kturtle/examples/en_US/ad.logo -share/apps/kturtle/examples/en_US/arrow.logo -share/apps/kturtle/examples/en_US/canvascolors.logo -share/apps/kturtle/examples/en_US/curly.logo -share/apps/kturtle/examples/en_US/flower.logo -share/apps/kturtle/examples/en_US/randomname.logo -share/apps/kturtle/examples/en_US/square.logo -share/apps/kturtle/examples/en_US/squaresss.logo -share/apps/kturtle/examples/en_US/timestables.logo -share/apps/kturtle/examples/en_US/triangle.logo -share/apps/kturtle/examples/en_US/trianglesss.logo -share/apps/kturtle/kturtleui.rc -share/apps/kturtle/pics/turtle.0000.png -share/apps/kturtle/pics/turtle.0001.png -share/apps/kturtle/pics/turtle.0002.png -share/apps/kturtle/pics/turtle.0003.png -share/apps/kturtle/pics/turtle.0004.png -share/apps/kturtle/pics/turtle.0005.png -share/apps/kturtle/pics/turtle.0006.png -share/apps/kturtle/pics/turtle.0007.png -share/apps/kturtle/pics/turtle.0008.png -share/apps/kturtle/pics/turtle.0009.png -share/apps/kturtle/pics/turtle.0010.png -share/apps/kturtle/pics/turtle.0011.png -share/apps/kturtle/pics/turtle.0012.png -share/apps/kturtle/pics/turtle.0013.png -share/apps/kturtle/pics/turtle.0014.png -share/apps/kturtle/pics/turtle.0015.png -share/apps/kturtle/pics/turtle.0016.png -share/apps/kturtle/pics/turtle.0017.png -share/apps/kturtle/pics/turtle.0018.png -share/apps/kturtle/pics/turtle.0019.png -share/apps/kturtle/pics/turtle.0020.png -share/apps/kturtle/pics/turtle.0021.png -share/apps/kturtle/pics/turtle.0022.png -share/apps/kturtle/pics/turtle.0023.png -share/apps/kturtle/pics/turtle.0024.png -share/apps/kturtle/pics/turtle.0025.png -share/apps/kturtle/pics/turtle.0026.png -share/apps/kturtle/pics/turtle.0027.png -share/apps/kturtle/pics/turtle.0028.png -share/apps/kturtle/pics/turtle.0029.png -share/apps/kturtle/pics/turtle.0030.png -share/apps/kturtle/pics/turtle.0031.png -share/apps/kturtle/pics/turtle.0032.png -share/apps/kturtle/pics/turtle.0033.png -share/apps/kturtle/pics/turtle.0034.png -share/apps/kturtle/pics/turtle.0035.png -share/apps/kverbos/data/de/verbos.verbos -share/apps/kverbos/data/en/verbos.verbos -share/apps/kverbos/kverbosui.rc -share/apps/kverbos/pics/startuplogo.png -share/apps/kvoctrain/examples/sample-de.kvtml -share/apps/kvoctrain/examples/sample-en.kvtml -share/apps/kvoctrain/icons/crystalsvg/16x16/actions/cleanup.png -share/apps/kvoctrain/icons/crystalsvg/16x16/actions/configure_query.png -share/apps/kvoctrain/icons/crystalsvg/16x16/actions/delete_table_col.png -share/apps/kvoctrain/icons/crystalsvg/16x16/actions/delete_table_row.png -share/apps/kvoctrain/icons/crystalsvg/16x16/actions/edit_table_row.png -share/apps/kvoctrain/icons/crystalsvg/16x16/actions/insert_table_col.png -share/apps/kvoctrain/icons/crystalsvg/16x16/actions/insert_table_row.png -share/apps/kvoctrain/icons/crystalsvg/16x16/actions/rand_less.png -share/apps/kvoctrain/icons/crystalsvg/16x16/actions/run_multi.png -share/apps/kvoctrain/icons/crystalsvg/16x16/actions/run_query.png -share/apps/kvoctrain/icons/crystalsvg/16x16/actions/set_language.png -share/apps/kvoctrain/icons/crystalsvg/16x16/actions/sort_incr.png -share/apps/kvoctrain/icons/crystalsvg/16x16/actions/sort_num.png -share/apps/kvoctrain/icons/crystalsvg/16x16/actions/statistics.png -share/apps/kvoctrain/icons/crystalsvg/16x16/apps/kvoctrain.png -share/apps/kvoctrain/icons/crystalsvg/22x22/actions/cleanup.png -share/apps/kvoctrain/icons/crystalsvg/22x22/actions/configure_query.png -share/apps/kvoctrain/icons/crystalsvg/22x22/actions/delete_table_col.png -share/apps/kvoctrain/icons/crystalsvg/22x22/actions/delete_table_row.png -share/apps/kvoctrain/icons/crystalsvg/22x22/actions/edit_table_row.png -share/apps/kvoctrain/icons/crystalsvg/22x22/actions/insert_table_col.png -share/apps/kvoctrain/icons/crystalsvg/22x22/actions/insert_table_row.png -share/apps/kvoctrain/icons/crystalsvg/22x22/actions/rand_less.png -share/apps/kvoctrain/icons/crystalsvg/22x22/actions/run_multi.png -share/apps/kvoctrain/icons/crystalsvg/22x22/actions/run_query.png -share/apps/kvoctrain/icons/crystalsvg/22x22/actions/set_language.png -share/apps/kvoctrain/icons/crystalsvg/22x22/actions/sort_incr.png -share/apps/kvoctrain/icons/crystalsvg/22x22/actions/sort_num.png -share/apps/kvoctrain/icons/crystalsvg/22x22/actions/statistics.png -share/apps/kvoctrain/icons/crystalsvg/22x22/apps/kvoctrain.png -share/apps/kvoctrain/icons/crystalsvg/32x32/actions/cleanup.png -share/apps/kvoctrain/icons/crystalsvg/32x32/actions/configure_query.png -share/apps/kvoctrain/icons/crystalsvg/32x32/actions/delete_table_col.png -share/apps/kvoctrain/icons/crystalsvg/32x32/actions/delete_table_row.png -share/apps/kvoctrain/icons/crystalsvg/32x32/actions/edit_table_row.png -share/apps/kvoctrain/icons/crystalsvg/32x32/actions/insert_table_col.png -share/apps/kvoctrain/icons/crystalsvg/32x32/actions/insert_table_row.png -share/apps/kvoctrain/icons/crystalsvg/32x32/actions/rand_less.png -share/apps/kvoctrain/icons/crystalsvg/32x32/actions/run_multi.png -share/apps/kvoctrain/icons/crystalsvg/32x32/actions/run_query.png -share/apps/kvoctrain/icons/crystalsvg/32x32/actions/set_language.png -share/apps/kvoctrain/icons/crystalsvg/32x32/actions/sort_incr.png -share/apps/kvoctrain/icons/crystalsvg/32x32/actions/sort_num.png -share/apps/kvoctrain/icons/crystalsvg/32x32/actions/statistics.png -share/apps/kvoctrain/icons/crystalsvg/32x32/apps/kvoctrain.png -share/apps/kvoctrain/icons/crystalsvg/48x48/apps/kvoctrain.png -share/apps/kvoctrain/kvoctrainui.rc -share/apps/kwordquiz/eventsrc -share/apps/kwordquiz/examples/example.kvtml -share/apps/kwordquiz/examples/fill_in_the_blank.kvtml -share/apps/kwordquiz/examples/french_verbs.kvtml -share/apps/kwordquiz/examples/us_states_and_capitals.kvtml -share/apps/kwordquiz/icons/crystalsvg/128x128/apps/kwordquiz.png -share/apps/kwordquiz/icons/crystalsvg/128x128/mimetypes/kwordquiz_doc.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/answer.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/check.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/delete_table_row.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/dontknow.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/editor.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/flash.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/hint.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/insert_table_row.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/know.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/languages.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/markasblank.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/mode1.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/mode2.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/mode3.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/mode4.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/mode5.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/multiple.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/qa.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/question.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/repeat.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/restart.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/rowcol.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/shuffle.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/sort_incr.png -share/apps/kwordquiz/icons/crystalsvg/16x16/actions/unmarkasblank.png -share/apps/kwordquiz/icons/crystalsvg/16x16/apps/kwordquiz.png -share/apps/kwordquiz/icons/crystalsvg/16x16/mimetypes/kwordquiz_doc.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/answer.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/check.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/delete_table_row.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/dontknow.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/editor.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/flash.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/hint.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/insert_table_row.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/know.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/languages.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/markasblank.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/mode1.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/mode2.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/mode3.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/mode4.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/mode5.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/multiple.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/qa.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/question.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/repeat.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/restart.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/rowcol.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/shuffle.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/sort_incr.png -share/apps/kwordquiz/icons/crystalsvg/22x22/actions/unmarkasblank.png -share/apps/kwordquiz/icons/crystalsvg/22x22/apps/kwordquiz.png -share/apps/kwordquiz/icons/crystalsvg/22x22/mimetypes/kwordquiz_doc.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/answer.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/check.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/delete_table_row.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/dontknow.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/editor.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/error.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/flash.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/hint.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/insert_table_row.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/know.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/languages.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/markasblank.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/mode1.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/mode2.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/mode3.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/mode4.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/mode5.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/multiple.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/qa.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/question.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/question_mark.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/repeat.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/restart.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/rowcol.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/shuffle.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/sort_incr.png -share/apps/kwordquiz/icons/crystalsvg/32x32/actions/unmarkasblank.png -share/apps/kwordquiz/icons/crystalsvg/32x32/apps/kwordquiz.png -share/apps/kwordquiz/icons/crystalsvg/32x32/mimetypes/kwordquiz_doc.png -share/apps/kwordquiz/icons/crystalsvg/48x48/apps/kwordquiz.png -share/apps/kwordquiz/icons/crystalsvg/48x48/mimetypes/kwordquiz_doc.png -share/apps/kwordquiz/icons/crystalsvg/scalable/apps/kwordquiz.svg -share/apps/kwordquiz/icons/crystalsvg/scalable/mimetypes/kwordquiz_doc.svg -share/apps/kwordquiz/kwordquizui.rc -share/config.kcfg/kalzium.kcfg -share/config.kcfg/kbruch.kcfg -share/config.kcfg/keduca.kcfg -share/config.kcfg/khangman.kcfg -share/config.kcfg/kiten.kcfg -share/config.kcfg/klatin.kcfg -share/config.kcfg/klettres.kcfg -share/config.kcfg/kmessedwords.kcfg -share/config.kcfg/kmplot.kcfg -share/config.kcfg/kstars.kcfg -share/config.kcfg/ktouch.kcfg -share/config.kcfg/kturtle.kcfg -share/config.kcfg/kverbos.kcfg -share/config.kcfg/kvoctrain.kcfg -share/config.kcfg/kwordquiz.kcfg -share/config/khangmanrc -share/config/klettresrc -share/config/kstarsrc -share/config/magic/cabri.magic -share/config/magic/drgeo.magic -share/doc/HTML/en/kalzium/common -share/doc/HTML/en/kalzium/index.cache.bz2 -share/doc/HTML/en/kalzium/index.docbook -share/doc/HTML/en/kalzium/man-kalzium.1.docbook -share/doc/HTML/en/kalzium/screenshot1.png -share/doc/HTML/en/kalzium/screenshot2.png -share/doc/HTML/en/kalzium/screenshot3.png -share/doc/HTML/en/kalzium/screenshot4.png -share/doc/HTML/en/kalzium/screenshot5.png -share/doc/HTML/en/kalzium/screenshot6.png -share/doc/HTML/en/kalzium/settings.png -share/doc/HTML/en/kbruch/checked.png -share/doc/HTML/en/kbruch/common -share/doc/HTML/en/kbruch/compare.png -share/doc/HTML/en/kbruch/convert.png -share/doc/HTML/en/kbruch/factorize.png -share/doc/HTML/en/kbruch/gui_main.png -share/doc/HTML/en/kbruch/index.cache.bz2 -share/doc/HTML/en/kbruch/index.docbook -share/doc/HTML/en/kbruch/reduced.png -share/doc/HTML/en/kbruch/settings.png -share/doc/HTML/en/keduca/common -share/doc/HTML/en/keduca/index.cache.bz2 -share/doc/HTML/en/keduca/index.docbook -share/doc/HTML/en/keduca/screenshot.png -share/doc/HTML/en/khangman/advancedsettings.png -share/doc/HTML/en/khangman/common -share/doc/HTML/en/khangman/getnewstuff.png -share/doc/HTML/en/khangman/index.cache.bz2 -share/doc/HTML/en/khangman/index.docbook -share/doc/HTML/en/khangman/khangman1.png -share/doc/HTML/en/khangman/khangman2.png -share/doc/HTML/en/khangman/normalsettings.png -share/doc/HTML/en/kig/common -share/doc/HTML/en/kig/constructed_a_point.png -share/doc/HTML/en/kig/constructed_script_object.png -share/doc/HTML/en/kig/constructing_a_circle.png -share/doc/HTML/en/kig/constructing_a_circle_2.png -share/doc/HTML/en/kig/edit_types_dialog.png -share/doc/HTML/en/kig/index.cache.bz2 -share/doc/HTML/en/kig/index.docbook -share/doc/HTML/en/kig/macro_wizard.png -share/doc/HTML/en/kig/macros_at_work.png -share/doc/HTML/en/kig/script_wizard.png -share/doc/HTML/en/kig/script_wizard_entering_code.png -share/doc/HTML/en/kig/selecting_objects.png -share/doc/HTML/en/kig/simple_locus_construction.png -share/doc/HTML/en/kig/test_run_macro.png -share/doc/HTML/en/kig/text_label_attaching.png -share/doc/HTML/en/kig/text_label_wizard.png -share/doc/HTML/en/kig/text_label_wizard__select_property.png -share/doc/HTML/en/kiten/common -share/doc/HTML/en/kiten/index.cache.bz2 -share/doc/HTML/en/kiten/index.docbook -share/doc/HTML/en/kiten/kiten1.png -share/doc/HTML/en/kiten/kiten2.png -share/doc/HTML/en/klatin/README -share/doc/HTML/en/klatin/adjectives.docbook -share/doc/HTML/en/klatin/common -share/doc/HTML/en/klatin/index.cache.bz2 -share/doc/HTML/en/klatin/index.docbook -share/doc/HTML/en/klatin/klatin1.png -share/doc/HTML/en/klatin/klatin2.png -share/doc/HTML/en/klatin/klatin3.png -share/doc/HTML/en/klatin/klatin4.png -share/doc/HTML/en/klatin/nouns.docbook -share/doc/HTML/en/klatin/numbers.docbook -share/doc/HTML/en/klatin/pronouns.docbook -share/doc/HTML/en/klatin/results.png -share/doc/HTML/en/klatin/verbs.docbook -share/doc/HTML/en/klettres/common -share/doc/HTML/en/klettres/index.cache.bz2 -share/doc/HTML/en/klettres/index.docbook -share/doc/HTML/en/klettres/klettres1.png -share/doc/HTML/en/klettres/klettres2.png -share/doc/HTML/en/klettres/klettres3.png -share/doc/HTML/en/klettres/klettres4.png -share/doc/HTML/en/klettres/klettres5.png -share/doc/HTML/en/kmathtool/common -share/doc/HTML/en/kmathtool/index.cache.bz2 -share/doc/HTML/en/kmathtool/index.docbook -share/doc/HTML/en/kmessedwords/common -share/doc/HTML/en/kmessedwords/index.cache.bz2 -share/doc/HTML/en/kmessedwords/index.docbook -share/doc/HTML/en/kmessedwords/kmw1.png -share/doc/HTML/en/kmessedwords/kmw1bis.png -share/doc/HTML/en/kmessedwords/kmw2.png -share/doc/HTML/en/kmessedwords/kmw3.png -share/doc/HTML/en/kmessedwords/kmw4.png -share/doc/HTML/en/kmplot/axesdlg.png -share/doc/HTML/en/kmplot/axesopt.png -share/doc/HTML/en/kmplot/commands.docbook -share/doc/HTML/en/kmplot/common -share/doc/HTML/en/kmplot/configuration.docbook -share/doc/HTML/en/kmplot/credits.docbook -share/doc/HTML/en/kmplot/dcop.docbook -share/doc/HTML/en/kmplot/developer.docbook -share/doc/HTML/en/kmplot/edu-logo.png -share/doc/HTML/en/kmplot/firststeps.docbook -share/doc/HTML/en/kmplot/functionsdlg.png -share/doc/HTML/en/kmplot/griddlg.png -share/doc/HTML/en/kmplot/index.cache.bz2 -share/doc/HTML/en/kmplot/index.docbook -share/doc/HTML/en/kmplot/install.docbook -share/doc/HTML/en/kmplot/introduction.docbook -share/doc/HTML/en/kmplot/kfkt.png -share/doc/HTML/en/kmplot/ksys1.png -share/doc/HTML/en/kmplot/ksys2.png -share/doc/HTML/en/kmplot/ksys3.png -share/doc/HTML/en/kmplot/lo32-app-kmplot.png -share/doc/HTML/en/kmplot/main.png -share/doc/HTML/en/kmplot/menu.docbook -share/doc/HTML/en/kmplot/namesdlg.png -share/doc/HTML/en/kmplot/reference.docbook -share/doc/HTML/en/kmplot/scaledlg.png -share/doc/HTML/en/kmplot/settingsdlg.png -share/doc/HTML/en/kmplot/stepdlg.png -share/doc/HTML/en/kmplot/threeplots.png -share/doc/HTML/en/kmplot/toolbar.png -share/doc/HTML/en/kmplot/using.docbook -share/doc/HTML/en/kpercentage/answer.png -share/doc/HTML/en/kpercentage/commands.docbook -share/doc/HTML/en/kpercentage/common -share/doc/HTML/en/kpercentage/credits.docbook -share/doc/HTML/en/kpercentage/devel.docbook -share/doc/HTML/en/kpercentage/edu-logo.png -share/doc/HTML/en/kpercentage/faq.docbook -share/doc/HTML/en/kpercentage/help.png -share/doc/HTML/en/kpercentage/index.cache.bz2 -share/doc/HTML/en/kpercentage/index.docbook -share/doc/HTML/en/kpercentage/install.docbook -share/doc/HTML/en/kpercentage/introduction.docbook -share/doc/HTML/en/kpercentage/main.png -share/doc/HTML/en/kpercentage/using.docbook -share/doc/HTML/en/kpercentage/welcome.png -share/doc/HTML/en/kstars/aavso.png -share/doc/HTML/en/kstars/ai-contents.docbook -share/doc/HTML/en/kstars/alpha.png -share/doc/HTML/en/kstars/altvstime.docbook -share/doc/HTML/en/kstars/altvstime.png -share/doc/HTML/en/kstars/astroinfo.docbook -share/doc/HTML/en/kstars/blackbody.docbook -share/doc/HTML/en/kstars/blackbody.png -share/doc/HTML/en/kstars/calc-angdist.docbook -share/doc/HTML/en/kstars/calc-angdist.png -share/doc/HTML/en/kstars/calc-apcoords.docbook -share/doc/HTML/en/kstars/calc-apcoords.png -share/doc/HTML/en/kstars/calc-dayduration.docbook -share/doc/HTML/en/kstars/calc-daylength.png -share/doc/HTML/en/kstars/calc-ecliptic.docbook -share/doc/HTML/en/kstars/calc-ecliptic.png -share/doc/HTML/en/kstars/calc-eqgal.docbook -share/doc/HTML/en/kstars/calc-eqgal.png -share/doc/HTML/en/kstars/calc-equinox.docbook -share/doc/HTML/en/kstars/calc-equinox.png -share/doc/HTML/en/kstars/calc-geodetic.docbook -share/doc/HTML/en/kstars/calc-geodetic.png -share/doc/HTML/en/kstars/calc-horizontal.docbook -share/doc/HTML/en/kstars/calc-horizontal.png -share/doc/HTML/en/kstars/calc-julian.png -share/doc/HTML/en/kstars/calc-julianday.docbook -share/doc/HTML/en/kstars/calc-planetcoords.docbook -share/doc/HTML/en/kstars/calc-planetcoords.png -share/doc/HTML/en/kstars/calc-precess.docbook -share/doc/HTML/en/kstars/calc-precess.png -share/doc/HTML/en/kstars/calc-sidereal.docbook -share/doc/HTML/en/kstars/calc-sidereal.png -share/doc/HTML/en/kstars/calculator.docbook -share/doc/HTML/en/kstars/cequator.docbook -share/doc/HTML/en/kstars/color_indices.png -share/doc/HTML/en/kstars/colorandtemp.docbook -share/doc/HTML/en/kstars/commands.docbook -share/doc/HTML/en/kstars/common -share/doc/HTML/en/kstars/config.docbook -share/doc/HTML/en/kstars/cpoles.docbook -share/doc/HTML/en/kstars/credits.docbook -share/doc/HTML/en/kstars/csphere.docbook -share/doc/HTML/en/kstars/darkmatter.docbook -share/doc/HTML/en/kstars/dcop.docbook -share/doc/HTML/en/kstars/detaildialog.png -share/doc/HTML/en/kstars/details.docbook -share/doc/HTML/en/kstars/devicemanager.png -share/doc/HTML/en/kstars/dumpmode.docbook -share/doc/HTML/en/kstars/ecliptic.docbook -share/doc/HTML/en/kstars/ellipticalgalaxies.docbook -share/doc/HTML/en/kstars/equinox.docbook -share/doc/HTML/en/kstars/faq.docbook -share/doc/HTML/en/kstars/find.png -share/doc/HTML/en/kstars/flux.docbook -share/doc/HTML/en/kstars/flux.png -share/doc/HTML/en/kstars/flux1.png -share/doc/HTML/en/kstars/flux2.png -share/doc/HTML/en/kstars/fovdialog.png -share/doc/HTML/en/kstars/geocoords.docbook -share/doc/HTML/en/kstars/geolocator.png -share/doc/HTML/en/kstars/greatcircle.docbook -share/doc/HTML/en/kstars/horizon.docbook -share/doc/HTML/en/kstars/hourangle.docbook -share/doc/HTML/en/kstars/index.cache.bz2 -share/doc/HTML/en/kstars/index.docbook -share/doc/HTML/en/kstars/indi.docbook -share/doc/HTML/en/kstars/indiclient.png -share/doc/HTML/en/kstars/indicontrolpanel.png -share/doc/HTML/en/kstars/indiscript.png -share/doc/HTML/en/kstars/install.docbook -share/doc/HTML/en/kstars/jmoons.docbook -share/doc/HTML/en/kstars/jmoons.png -share/doc/HTML/en/kstars/julianday.docbook -share/doc/HTML/en/kstars/kepler2nd.png -share/doc/HTML/en/kstars/kepler3d.png -share/doc/HTML/en/kstars/lambda_ex.png -share/doc/HTML/en/kstars/lambda_max.png -share/doc/HTML/en/kstars/leapyear.docbook -share/doc/HTML/en/kstars/lightcurve.png -share/doc/HTML/en/kstars/lightcurves.docbook -share/doc/HTML/en/kstars/luminosity.docbook -share/doc/HTML/en/kstars/luminosity.png -share/doc/HTML/en/kstars/luminosity_ex.png -share/doc/HTML/en/kstars/magnitude.docbook -share/doc/HTML/en/kstars/meridian.docbook -share/doc/HTML/en/kstars/newfov.png -share/doc/HTML/en/kstars/observinglist.docbook -share/doc/HTML/en/kstars/observinglist.png -share/doc/HTML/en/kstars/parallax.docbook -share/doc/HTML/en/kstars/popup.png -share/doc/HTML/en/kstars/precession.docbook -share/doc/HTML/en/kstars/quicktour.docbook -share/doc/HTML/en/kstars/retrograde.docbook -share/doc/HTML/en/kstars/screen1.png -share/doc/HTML/en/kstars/scriptbuilder.docbook -share/doc/HTML/en/kstars/scriptbuilder.png -share/doc/HTML/en/kstars/sidereal.docbook -share/doc/HTML/en/kstars/skycoords.docbook -share/doc/HTML/en/kstars/skymapdevice.png -share/doc/HTML/en/kstars/solarsys.docbook -share/doc/HTML/en/kstars/solarsystem.png -share/doc/HTML/en/kstars/spiralgalaxies.docbook -share/doc/HTML/en/kstars/star_colors.png -share/doc/HTML/en/kstars/stars.docbook -share/doc/HTML/en/kstars/timezones.docbook -share/doc/HTML/en/kstars/tools.docbook -share/doc/HTML/en/kstars/utime.docbook -share/doc/HTML/en/kstars/viewops.png -share/doc/HTML/en/kstars/wut.docbook -share/doc/HTML/en/kstars/wut.png -share/doc/HTML/en/kstars/zenith.docbook -share/doc/HTML/en/ktouch/common -share/doc/HTML/en/ktouch/index.cache.bz2 -share/doc/HTML/en/ktouch/index.docbook -share/doc/HTML/en/ktouch/screenshot1.png -share/doc/HTML/en/ktouch/screenshot2.png -share/doc/HTML/en/ktouch/screenshot3.png -share/doc/HTML/en/kturtle/common -share/doc/HTML/en/kturtle/forward.png -share/doc/HTML/en/kturtle/getting-started.docbook -share/doc/HTML/en/kturtle/glossary.docbook -share/doc/HTML/en/kturtle/index.cache.bz2 -share/doc/HTML/en/kturtle/index.docbook -share/doc/HTML/en/kturtle/mainwindow.png -share/doc/HTML/en/kturtle/mainwindow_flower_nrs.png -share/doc/HTML/en/kturtle/print.png -share/doc/HTML/en/kturtle/programming-reference.docbook -share/doc/HTML/en/kturtle/translator-guide.docbook -share/doc/HTML/en/kturtle/using-kturtle.docbook -share/doc/HTML/en/kturtle/wrapping.png -share/doc/HTML/en/kverbos/anterior.png -share/doc/HTML/en/kverbos/borrar.png -share/doc/HTML/en/kverbos/cancelar.png -share/doc/HTML/en/kverbos/cerrar.png -share/doc/HTML/en/kverbos/common -share/doc/HTML/en/kverbos/continuar.png -share/doc/HTML/en/kverbos/corregir.png -share/doc/HTML/en/kverbos/editar.png -share/doc/HTML/en/kverbos/index.cache.bz2 -share/doc/HTML/en/kverbos/index.docbook -share/doc/HTML/en/kverbos/input.png -share/doc/HTML/en/kverbos/letters.png -share/doc/HTML/en/kverbos/limpiar.png -share/doc/HTML/en/kverbos/limpiarpagina.png -share/doc/HTML/en/kverbos/mainscreen-leer.png -share/doc/HTML/en/kverbos/mainscreen1.png -share/doc/HTML/en/kverbos/newverb.png -share/doc/HTML/en/kverbos/options.png -share/doc/HTML/en/kverbos/result.png -share/doc/HTML/en/kverbos/siguiente.png -share/doc/HTML/en/kverbos/solucion.png -share/doc/HTML/en/kverbos/times.png -share/doc/HTML/en/kverbos/type.png -share/doc/HTML/en/kverbos/username.png -share/doc/HTML/en/kverbos/verblist.png -share/doc/HTML/en/kvoctrain/art-query-dlg.png -share/doc/HTML/en/kvoctrain/common -share/doc/HTML/en/kvoctrain/comp-query-dlg.png -share/doc/HTML/en/kvoctrain/docprop1-dlg.png -share/doc/HTML/en/kvoctrain/docprop2-dlg.png -share/doc/HTML/en/kvoctrain/docprop6-dlg.png -share/doc/HTML/en/kvoctrain/entry1-dlg.png -share/doc/HTML/en/kvoctrain/entry2-dlg.png -share/doc/HTML/en/kvoctrain/entry3-dlg.png -share/doc/HTML/en/kvoctrain/entry4-dlg.png -share/doc/HTML/en/kvoctrain/entry5-dlg.png -share/doc/HTML/en/kvoctrain/entry6-dlg.png -share/doc/HTML/en/kvoctrain/index.cache.bz2 -share/doc/HTML/en/kvoctrain/index.docbook -share/doc/HTML/en/kvoctrain/lang1-dlg.png -share/doc/HTML/en/kvoctrain/logo-kvoctrain.png -share/doc/HTML/en/kvoctrain/mainview.png -share/doc/HTML/en/kvoctrain/man-spotlight2kvtml.1.docbook -share/doc/HTML/en/kvoctrain/mu-query-dlg.png -share/doc/HTML/en/kvoctrain/options1-dlg.png -share/doc/HTML/en/kvoctrain/options2-dlg.png -share/doc/HTML/en/kvoctrain/options3-dlg.png -share/doc/HTML/en/kvoctrain/options4-dlg.png -share/doc/HTML/en/kvoctrain/pron-dlg.png -share/doc/HTML/en/kvoctrain/q-opt1-dlg.png -share/doc/HTML/en/kvoctrain/q-opt2-dlg.png -share/doc/HTML/en/kvoctrain/q-opt3-dlg.png -share/doc/HTML/en/kvoctrain/q-opt4-dlg.png -share/doc/HTML/en/kvoctrain/query-dlg.png -share/doc/HTML/en/kvoctrain/stat1-dlg.png -share/doc/HTML/en/kvoctrain/stat2-dlg.png -share/doc/HTML/en/kvoctrain/syn-query-dlg.png -share/doc/HTML/en/kvoctrain/verb-query-dlg.png -share/doc/HTML/en/kwordquiz/common -share/doc/HTML/en/kwordquiz/index.cache.bz2 -share/doc/HTML/en/kwordquiz/index.docbook -share/doc/HTML/en/kwordquiz/kwq-dlg-characters.png -share/doc/HTML/en/kwordquiz/kwq-dlg-configure-characters.png -share/doc/HTML/en/kwordquiz/kwq-dlg-configure-editor.png -share/doc/HTML/en/kwordquiz/kwq-dlg-configure-quiz.png -share/doc/HTML/en/kwordquiz/kwq-dlg-languages.png -share/doc/HTML/en/kwordquiz/kwq-dlg-print-exam.png -share/doc/HTML/en/kwordquiz/kwq-dlg-print-flashcard.png -share/doc/HTML/en/kwordquiz/kwq-dlg-print-list.png -share/doc/HTML/en/kwordquiz/kwq-dlg-print-type.png -share/doc/HTML/en/kwordquiz/kwq-dlg-rowscolumns.png -share/doc/HTML/en/kwordquiz/kwq-dlg-sort.png -share/doc/HTML/en/kwordquiz/kwq-editor.png -share/doc/HTML/en/kwordquiz/kwq-flashcard.png -share/doc/HTML/en/kwordquiz/kwq-multiple.png -share/doc/HTML/en/kwordquiz/kwq-qanda.png -share/icons/crystalsvg/128x128/apps/kalzium.png -share/icons/crystalsvg/128x128/apps/kbruch.png -share/icons/crystalsvg/128x128/apps/keduca.png -share/icons/crystalsvg/128x128/apps/khangman.png -share/icons/crystalsvg/128x128/apps/kig.png -share/icons/crystalsvg/128x128/apps/kiten.png -share/icons/crystalsvg/128x128/apps/klatin.png -share/icons/crystalsvg/128x128/apps/klettres.png -share/icons/crystalsvg/128x128/apps/kmessedwords.png -share/icons/crystalsvg/128x128/apps/kmplot.png -share/icons/crystalsvg/128x128/apps/kpercentage.png -share/icons/crystalsvg/128x128/apps/kstars.png -share/icons/crystalsvg/128x128/apps/ktouch.png -share/icons/crystalsvg/128x128/apps/kverbos.png -share/icons/crystalsvg/128x128/apps/kwordquiz.png -share/icons/crystalsvg/128x128/mimetypes/kig_doc.png -share/icons/crystalsvg/128x128/mimetypes/kwordquiz_doc.png -share/icons/crystalsvg/16x16/actions/kanjidic.png -share/icons/crystalsvg/16x16/actions/kverbosuser.png -share/icons/crystalsvg/16x16/apps/kalzium.png -share/icons/crystalsvg/16x16/apps/kbruch.png -share/icons/crystalsvg/16x16/apps/keduca.png -share/icons/crystalsvg/16x16/apps/khangman.png -share/icons/crystalsvg/16x16/apps/kig.png -share/icons/crystalsvg/16x16/apps/kiten.png -share/icons/crystalsvg/16x16/apps/klatin.png -share/icons/crystalsvg/16x16/apps/klettres.png -share/icons/crystalsvg/16x16/apps/kmessedwords.png -share/icons/crystalsvg/16x16/apps/kmplot.png -share/icons/crystalsvg/16x16/apps/kpercentage.png -share/icons/crystalsvg/16x16/apps/kstars.png -share/icons/crystalsvg/16x16/apps/ktouch.png -share/icons/crystalsvg/16x16/apps/kverbos.png -share/icons/crystalsvg/16x16/apps/kvoctrain.png -share/icons/crystalsvg/16x16/apps/kwordquiz.png -share/icons/crystalsvg/16x16/mimetypes/kig_doc.png -share/icons/crystalsvg/16x16/mimetypes/kwordquiz_doc.png -share/icons/crystalsvg/22x22/actions/edit_add.png -share/icons/crystalsvg/22x22/actions/edit_remove.png -share/icons/crystalsvg/22x22/actions/kanjidic.png -share/icons/crystalsvg/22x22/apps/kbruch.png -share/icons/crystalsvg/22x22/apps/khangman.png -share/icons/crystalsvg/22x22/apps/kig.png -share/icons/crystalsvg/22x22/apps/klatin.png -share/icons/crystalsvg/22x22/apps/kmplot.png -share/icons/crystalsvg/22x22/apps/kvoctrain.png -share/icons/crystalsvg/22x22/apps/kwordquiz.png -share/icons/crystalsvg/22x22/mimetypes/kig_doc.png -share/icons/crystalsvg/22x22/mimetypes/kwordquiz_doc.png -share/icons/crystalsvg/32x32/actions/kbruch_exercise_common.png -share/icons/crystalsvg/32x32/actions/kbruch_exercise_compare.png -share/icons/crystalsvg/32x32/actions/kbruch_exercise_conversion.png -share/icons/crystalsvg/32x32/actions/kbruch_exercise_factorisation.png -share/icons/crystalsvg/32x32/apps/kalzium.png -share/icons/crystalsvg/32x32/apps/kbruch.png -share/icons/crystalsvg/32x32/apps/keduca.png -share/icons/crystalsvg/32x32/apps/khangman.png -share/icons/crystalsvg/32x32/apps/kig.png -share/icons/crystalsvg/32x32/apps/kiten.png -share/icons/crystalsvg/32x32/apps/klatin.png -share/icons/crystalsvg/32x32/apps/klettres.png -share/icons/crystalsvg/32x32/apps/kmessedwords.png -share/icons/crystalsvg/32x32/apps/kmplot.png -share/icons/crystalsvg/32x32/apps/kpercentage.png -share/icons/crystalsvg/32x32/apps/kstars.png -share/icons/crystalsvg/32x32/apps/ktouch.png -share/icons/crystalsvg/32x32/apps/kverbos.png -share/icons/crystalsvg/32x32/apps/kvoctrain.png -share/icons/crystalsvg/32x32/apps/kwordquiz.png -share/icons/crystalsvg/32x32/mimetypes/kig_doc.png -share/icons/crystalsvg/32x32/mimetypes/kwordquiz_doc.png -share/icons/crystalsvg/48x48/apps/kalzium.png -share/icons/crystalsvg/48x48/apps/kbruch.png -share/icons/crystalsvg/48x48/apps/keduca.png -share/icons/crystalsvg/48x48/apps/khangman.png -share/icons/crystalsvg/48x48/apps/kig.png -share/icons/crystalsvg/48x48/apps/kiten.png -share/icons/crystalsvg/48x48/apps/klatin.png -share/icons/crystalsvg/48x48/apps/klettres.png -share/icons/crystalsvg/48x48/apps/kmessedwords.png -share/icons/crystalsvg/48x48/apps/kmplot.png -share/icons/crystalsvg/48x48/apps/kpercentage.png -share/icons/crystalsvg/48x48/apps/kstars.png -share/icons/crystalsvg/48x48/apps/ktouch.png -share/icons/crystalsvg/48x48/apps/kverbos.png -share/icons/crystalsvg/48x48/apps/kvoctrain.png -share/icons/crystalsvg/48x48/apps/kwordquiz.png -share/icons/crystalsvg/48x48/mimetypes/kig_doc.png -share/icons/crystalsvg/48x48/mimetypes/kwordquiz_doc.png -share/icons/crystalsvg/64x64/actions/kbruch_exercise_common.png -share/icons/crystalsvg/64x64/actions/kbruch_exercise_compare.png -share/icons/crystalsvg/64x64/actions/kbruch_exercise_conversion.png -share/icons/crystalsvg/64x64/actions/kbruch_exercise_factorisation.png -share/icons/crystalsvg/64x64/apps/kbruch.png -share/icons/crystalsvg/64x64/apps/keduca.png -share/icons/crystalsvg/64x64/apps/khangman.png -share/icons/crystalsvg/64x64/apps/kig.png -share/icons/crystalsvg/64x64/apps/klatin.png -share/icons/crystalsvg/64x64/apps/kmplot.png -share/icons/crystalsvg/64x64/mimetypes/kig_doc.png -share/icons/crystalsvg/scalable/apps/kalzium.svgz -share/icons/crystalsvg/scalable/apps/kbruch.svgz -share/icons/crystalsvg/scalable/apps/khangman.svgz -share/icons/crystalsvg/scalable/apps/kig.svgz -share/icons/crystalsvg/scalable/apps/kiten.svgz -share/icons/crystalsvg/scalable/apps/klatin.svgz -share/icons/crystalsvg/scalable/apps/klettres.svgz -share/icons/crystalsvg/scalable/apps/kmessedwords.svgz -share/icons/crystalsvg/scalable/apps/kmplot.svgz -share/icons/crystalsvg/scalable/apps/kpercentage.svgz -share/icons/crystalsvg/scalable/apps/kstars.svgz -share/icons/crystalsvg/scalable/apps/ktouch.svgz -share/icons/crystalsvg/scalable/apps/kverbos.svgz -share/icons/crystalsvg/scalable/apps/kwordquiz.svg -share/icons/crystalsvg/scalable/mimetypes/kig_doc.svgz -share/icons/crystalsvg/scalable/mimetypes/kwordquiz_doc.svg -share/icons/hicolor/16x16/apps/kturtle.png -share/icons/hicolor/32x32/apps/kturtle.png -share/icons/locolor/16x16/actions/edit_add.png -share/icons/locolor/16x16/actions/edit_remove.png -share/mimelnk/application/x-cabri.desktop -share/mimelnk/application/x-drgeo.desktop -share/mimelnk/application/x-edu.desktop -share/mimelnk/application/x-edugallery.desktop -share/mimelnk/application/x-kgeo.desktop -share/mimelnk/application/x-kig.desktop -share/mimelnk/application/x-kmplot.desktop -share/mimelnk/application/x-kseg.desktop -share/mimelnk/application/x-kwordquiz.desktop -share/services/keduca_part.desktop -share/services/kfile_drgeo.desktop -share/services/kfile_kig.desktop -share/services/kig_part.desktop -share/services/kmplot_part.desktop -@dirrm share/doc/HTML/en/kwordquiz -@dirrm share/doc/HTML/en/kvoctrain -@dirrm share/doc/HTML/en/kverbos -@dirrm share/doc/HTML/en/kturtle -@dirrm share/doc/HTML/en/ktouch -@dirrm share/doc/HTML/en/kstars -@dirrm share/doc/HTML/en/kpercentage -@dirrm share/doc/HTML/en/kmplot -@dirrm share/doc/HTML/en/kmessedwords -@dirrm share/doc/HTML/en/kmathtool -@dirrm share/doc/HTML/en/klettres -@dirrm share/doc/HTML/en/klatin -@dirrm share/doc/HTML/en/kiten -@dirrm share/doc/HTML/en/kig -@dirrm share/doc/HTML/en/khangman -@dirrm share/doc/HTML/en/keduca -@dirrm share/doc/HTML/en/kbruch -@dirrm share/doc/HTML/en/kalzium -@dirrm share/config/magic -@dirrm share/apps/kwordquiz/icons/crystalsvg/scalable/mimetypes -@dirrm share/apps/kwordquiz/icons/crystalsvg/scalable/apps -@dirrm share/apps/kwordquiz/icons/crystalsvg/scalable -@dirrm share/apps/kwordquiz/icons/crystalsvg/48x48/mimetypes -@dirrm share/apps/kwordquiz/icons/crystalsvg/48x48/apps -@dirrm share/apps/kwordquiz/icons/crystalsvg/48x48 -@dirrm share/apps/kwordquiz/icons/crystalsvg/32x32/mimetypes -@dirrm share/apps/kwordquiz/icons/crystalsvg/32x32/apps -@dirrm share/apps/kwordquiz/icons/crystalsvg/32x32/actions -@dirrm share/apps/kwordquiz/icons/crystalsvg/32x32 -@dirrm share/apps/kwordquiz/icons/crystalsvg/22x22/mimetypes -@dirrm share/apps/kwordquiz/icons/crystalsvg/22x22/apps -@dirrm share/apps/kwordquiz/icons/crystalsvg/22x22/actions -@dirrm share/apps/kwordquiz/icons/crystalsvg/22x22 -@dirrm share/apps/kwordquiz/icons/crystalsvg/16x16/mimetypes -@dirrm share/apps/kwordquiz/icons/crystalsvg/16x16/apps -@dirrm share/apps/kwordquiz/icons/crystalsvg/16x16/actions -@dirrm share/apps/kwordquiz/icons/crystalsvg/16x16 -@dirrm share/apps/kwordquiz/icons/crystalsvg/128x128/mimetypes -@dirrm share/apps/kwordquiz/icons/crystalsvg/128x128/apps -@dirrm share/apps/kwordquiz/icons/crystalsvg/128x128 -@dirrm share/apps/kwordquiz/icons/crystalsvg -@dirrm share/apps/kwordquiz/icons -@dirrm share/apps/kwordquiz/examples -@dirrm share/apps/kwordquiz -@dirrm share/apps/kvoctrain/icons/crystalsvg/48x48/apps -@dirrm share/apps/kvoctrain/icons/crystalsvg/48x48 -@dirrm share/apps/kvoctrain/icons/crystalsvg/32x32/apps -@dirrm share/apps/kvoctrain/icons/crystalsvg/32x32/actions -@dirrm share/apps/kvoctrain/icons/crystalsvg/32x32 -@dirrm share/apps/kvoctrain/icons/crystalsvg/22x22/apps -@dirrm share/apps/kvoctrain/icons/crystalsvg/22x22/actions -@dirrm share/apps/kvoctrain/icons/crystalsvg/22x22 -@dirrm share/apps/kvoctrain/icons/crystalsvg/16x16/apps -@dirrm share/apps/kvoctrain/icons/crystalsvg/16x16/actions -@dirrm share/apps/kvoctrain/icons/crystalsvg/16x16 -@dirrm share/apps/kvoctrain/icons/crystalsvg -@dirrm share/apps/kvoctrain/icons -@dirrm share/apps/kvoctrain/examples -@dirrm share/apps/kvoctrain -@dirrm share/apps/kverbos/pics -@dirrm share/apps/kverbos/data/en -@dirrm share/apps/kverbos/data/de -@dirrm share/apps/kverbos/data -@dirrm share/apps/kverbos -@dirrm share/apps/kturtle/pics -@dirrm share/apps/kturtle/examples/en_US -@dirrm share/apps/kturtle/examples -@dirrm share/apps/kturtle/data -@dirrm share/apps/kturtle -@dirrm share/apps/ktouch -@dirrm share/apps/kstars -@dirrm share/apps/kpercentage/story -@dirrm share/apps/kpercentage/pics -@dirrm share/apps/kpercentage/icons/locolor/32x32/actions -@dirrm share/apps/kpercentage/icons/locolor/32x32 -@dirrm share/apps/kpercentage/icons/locolor -@dirrm share/apps/kpercentage/icons/crystalsvg/32x32/actions -@dirrm share/apps/kpercentage/icons/crystalsvg/32x32 -@dirrm share/apps/kpercentage/icons/crystalsvg/22x22/actions -@dirrm share/apps/kpercentage/icons/crystalsvg/22x22 -@dirrm share/apps/kpercentage/icons/crystalsvg -@dirrm share/apps/kpercentage/icons -@dirrm share/apps/kpercentage -@dirrm share/apps/kmplot/icons/crystalsvg/scalable/actions -@dirrm share/apps/kmplot/icons/crystalsvg/scalable -@dirrm share/apps/kmplot/icons/crystalsvg/64x64/actions -@dirrm share/apps/kmplot/icons/crystalsvg/64x64 -@dirrm share/apps/kmplot/icons/crystalsvg/48x48/actions -@dirrm share/apps/kmplot/icons/crystalsvg/48x48 -@dirrm share/apps/kmplot/icons/crystalsvg/32x32/actions -@dirrm share/apps/kmplot/icons/crystalsvg/32x32 -@dirrm share/apps/kmplot/icons/crystalsvg/22x22/actions -@dirrm share/apps/kmplot/icons/crystalsvg/22x22 -@dirrm share/apps/kmplot/icons/crystalsvg/16x16/actions -@dirrm share/apps/kmplot/icons/crystalsvg/16x16 -@dirrm share/apps/kmplot/icons/crystalsvg -@dirrm share/apps/kmplot/icons -@dirrm share/apps/kmplot -@dirrm share/apps/kmessedwords/themes/default -@dirrm share/apps/kmessedwords/themes/bubbly_crystal -@dirrm share/apps/kmessedwords/themes -@dirrm share/apps/kmessedwords -@dirrm share/apps/klettres/pics -@dirrm share/apps/klettres/icons/crystalsvg/scalable/actions -@dirrm share/apps/klettres/icons/crystalsvg/scalable -@dirrm share/apps/klettres/icons/crystalsvg/64x64/actions -@dirrm share/apps/klettres/icons/crystalsvg/64x64 -@dirrm share/apps/klettres/icons/crystalsvg/48x48/actions -@dirrm share/apps/klettres/icons/crystalsvg/48x48 -@dirrm share/apps/klettres/icons/crystalsvg/32x32/actions -@dirrm share/apps/klettres/icons/crystalsvg/32x32 -@dirrm share/apps/klettres/icons/crystalsvg/22x22/actions -@dirrm share/apps/klettres/icons/crystalsvg/22x22 -@dirrm share/apps/klettres/icons/crystalsvg/16x16/actions -@dirrm share/apps/klettres/icons/crystalsvg/16x16 -@dirrm share/apps/klettres/icons/crystalsvg/128x128/actions -@dirrm share/apps/klettres/icons/crystalsvg/128x128 -@dirrm share/apps/klettres/icons/crystalsvg -@dirrm share/apps/klettres/icons -@dirrm share/apps/klettres/fr/syllab -@dirrm share/apps/klettres/fr/alpha -@dirrm share/apps/klettres/fr -@dirrm share/apps/klettres/en/syllab -@dirrm share/apps/klettres/en/alpha -@dirrm share/apps/klettres/en -@dirrm share/apps/klettres/data -@dirrm share/apps/klettres -@dirrm share/apps/klatin/data/vocabs/pl -@dirrm share/apps/klatin/data/vocabs/en -@dirrm share/apps/klatin/data/vocabs/de -@dirrm share/apps/klatin/data/vocabs -@dirrm share/apps/klatin/data/verbs -@dirrm share/apps/klatin/data/grammar -@dirrm share/apps/klatin/data -@dirrm share/apps/klatin -@dirrm share/apps/kiten -@dirrm share/apps/kig/pics -@dirrm share/apps/kig/builtin-macros -@dirrm share/apps/kig -@dirrm share/apps/khangman/sounds -@dirrm share/apps/khangman/pics -@dirrm share/apps/khangman/data/en -@dirrm share/apps/khangman/data -@dirrm share/apps/khangman -@dirrm share/apps/keduca/pics -@dirrm share/apps/keduca/icons/crystalsvg/22x22/actions -@dirrm share/apps/keduca/icons/crystalsvg/22x22 -@dirrm share/apps/keduca/icons/crystalsvg/16x16/actions -@dirrm share/apps/keduca/icons/crystalsvg/16x16 -@dirrm share/apps/keduca/icons/crystalsvg -@dirrm share/apps/keduca/icons -@dirrm share/apps/keduca -@dirrm share/apps/kbruch -@dirrm share/apps/kalzium/icons/crystalsvg/scalable/actions -@dirrm share/apps/kalzium/icons/crystalsvg/scalable -@dirrm share/apps/kalzium/icons/crystalsvg/64x64/actions -@dirrm share/apps/kalzium/icons/crystalsvg/64x64 -@dirrm share/apps/kalzium/icons/crystalsvg/48x48/actions -@dirrm share/apps/kalzium/icons/crystalsvg/48x48 -@dirrm share/apps/kalzium/icons/crystalsvg/32x32/actions -@dirrm share/apps/kalzium/icons/crystalsvg/32x32 -@dirrm share/apps/kalzium/icons/crystalsvg/22x22/actions -@dirrm share/apps/kalzium/icons/crystalsvg/22x22 -@dirrm share/apps/kalzium/icons/crystalsvg/16x16/actions -@dirrm share/apps/kalzium/icons/crystalsvg/16x16 -@dirrm share/apps/kalzium/icons/crystalsvg/128x128/actions -@dirrm share/apps/kalzium/icons/crystalsvg/128x128 -@dirrm share/apps/kalzium/icons/crystalsvg -@dirrm share/apps/kalzium/icons -@dirrm share/apps/kalzium/elempics -@dirrm share/apps/kalzium/data -@dirrm share/apps/kalzium -@dirrm share/applnk/Edutainment/Tools -@dirrm share/applnk/Edutainment/Science -@dirrm share/applnk/Edutainment/Miscellaneous -@dirrm share/applnk/Edutainment/Mathematics -@dirrm share/applnk/Edutainment/Languages -@dirrm include/libkiten diff --git a/misc/kdehier4/Makefile b/misc/kdehier4/Makefile deleted file mode 100644 index 10b59a14c192..000000000000 --- a/misc/kdehier4/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: kdehier -# Date created: 4 May 2003 -# Whom: Frerich Raabe <frerich.raabe@gmx.de> -# -# $FreeBSD$ -# - -PORTNAME= kdehier -PORTVERSION= 1.0 -PORTREVISION= 6 -CATEGORIES= misc kde -MASTER_SITES= # none -DISTFILES= # none - -MAINTAINER= kde@FreeBSD.org -COMMENT= Utility port which installs a hierarchy of shared KDE directories - -NO_BUILD= yes -NO_WRKSUBDIR= yes - -do-fetch: - @${DO_NADA} - -do-install: - @for dir in `${GREP} -v "^@comment" ${FILESDIR}/dirlist`; \ - do \ - ${MKDIR} ${PREFIX}/$${dir}; \ - ${TOUCH} ${PREFIX}/$${dir}/.keep_me; \ - done - -.include <bsd.port.mk> diff --git a/misc/kdehier4/files/dirlist b/misc/kdehier4/files/dirlist deleted file mode 100644 index 3c5211039acb..000000000000 --- a/misc/kdehier4/files/dirlist +++ /dev/null @@ -1,593 +0,0 @@ -@comment include/ksgrd -@comment include/kwin -@comment -------------------------------------------------------------------- -@comment -- We want applnk files, programs might install stuff into the K-Menu -share/applications -share/applnk -share/applnk/.hidden -share/applnk/Applications -share/applnk/Development -share/applnk/Editors -share/applnk/Edutainment -share/applnk/Games -share/applnk/Games/Arcade -share/applnk/Games/Board -share/applnk/Games/Card -share/applnk/Games/Kidsgames -share/applnk/Games/Roguelikes -share/applnk/Games/TacticStrategy -share/applnk/Graphics -share/applnk/Graphics/More -share/applnk/Internet -share/applnk/Internet/More -share/applnk/Internet/Terminal -share/applnk/Multimedia -share/applnk/Multimedia/More -share/applnk/Office -share/applnk/Settings -share/applnk/Settings/Accessibility -share/applnk/Settings/Desktop -share/applnk/Settings/Information -share/applnk/Settings/LookNFeel -share/applnk/Settings/LookNFeel/Themes -share/applnk/Settings/LookNFeel/Windows -share/applnk/Settings/Network -share/applnk/Settings/Network/WebBrowsing -share/applnk/Settings/Peripherals -share/applnk/Settings/Personalization -share/applnk/Settings/PowerControl -share/applnk/Settings/Security -share/applnk/Settings/Sound -share/applnk/Settings/System -share/applnk/Settings/WebBrowsing -share/applnk/Settingsmenu -share/applnk/System -share/applnk/System/More -share/applnk/System/ScreenSavers -share/applnk/System/Terminal -share/applnk/Toys -share/applnk/Utilities -share/applnk/Utilities/More -share/applnk/Utilities/XUtilities -@comment share/apps/clockapplet/pics -@comment share/apps/drkonqi/debuggers -@comment share/apps/drkonqi/pics -@comment share/apps/drkonqi/presets -@comment share/apps/kappfinder/apps/Development -@comment share/apps/kappfinder/apps/Editors -@comment share/apps/kappfinder/apps/Games -@comment share/apps/kappfinder/apps/Games/Arcade -@comment share/apps/kappfinder/apps/Games/Board -@comment share/apps/kappfinder/apps/Games/Card -@comment share/apps/kappfinder/apps/Games/Emulators -@comment share/apps/kappfinder/apps/Games/Roguelikes -@comment share/apps/kappfinder/apps/Games/TacticStrategy -@comment share/apps/kappfinder/apps/Graphics -@comment share/apps/kappfinder/apps/Internet -@comment share/apps/kappfinder/apps/Internet/Terminal -@comment share/apps/kappfinder/apps/Multimedia -@comment share/apps/kappfinder/apps/Office -@comment share/apps/kappfinder/apps/System -@comment share/apps/kappfinder/apps/System/Terminal -@comment share/apps/kappfinder/apps/Toys -@comment share/apps/kappfinder/apps/Utilities -@comment share/apps/kappfinder/apps/Utilities/XUtilities -@comment share/apps/kate -@comment share/apps/kate/icons/crystalsvg/16x16/actions -@comment share/apps/kate/icons/crystalsvg/22x22/actions -@comment share/apps/kate/icons/crystalsvg/32x32/actions -@comment share/apps/kate/icons/locolor/16x16/actions -@comment share/apps/kate/icons/locolor/22x22/actions -@comment share/apps/kate/pics -@comment -------------------------------------------------------------------- -@comment -- There might be ports which install Kate scripts -share/apps -share/apps/kate -share/apps/kate/scripts -@comment share/apps/kbookmark -@comment share/apps/kcmcss -@comment share/apps/kcmfontinst -@comment share/apps/kcmfontinst/StarOffice -@comment share/apps/kcmfontinst/pics -@comment share/apps/kcminput -@comment share/apps/kcminput/pics -@comment share/apps/kcmkeys -@comment share/apps/kcmlocale/pics -@comment share/apps/kcontrol -@comment share/apps/kcontrol/pics -@comment share/apps/kdcop -@comment share/apps/kdeprint/template -@comment share/apps/kdeprint_part -@comment share/apps/kdeprintfax -@comment share/apps/kdeprintfax/icons/crystalsvg/16x16/actions -@comment -------------------------------------------------------------------- -@comment -- Some ports *might* install stuff directly here, system-wide -@comment -- desktop links. -share/apps/kdesktop -share/apps/kdesktop/DesktopLinks -share/apps/kdesktop/patterns -share/apps/kdesktop/pics -share/apps/kdesktop/programs -@comment share/apps/kdewizard -@comment share/apps/kdewizard/pics -@comment share/apps/kdisplay/app-defaults -@comment share/apps/kdisplay/color-schemes -@comment share/apps/kdm/pics -@comment share/apps/kdm/pics/users -@comment share/apps/keditbookmarks -@comment share/apps/kfindpart/icons/locolor/22x22/actions -@comment share/apps/khelpcenter -@comment ------------------------------------------------------------------- -@comment -- Hopefully we get more KHelpCenter plugins :-) -share/apps/khelpcenter -share/apps/khelpcenter/plugins -@comment share/apps/khelpcenter/plugins/Applications -@comment share/apps/khelpcenter/plugins/Manpages -@comment share/apps/khelpcenter/plugins/Tutorials -@comment ------------------------------------------------------------------- -@comment -- There can be kicker applets, extensions of course. -share/apps/kicker -share/apps/kicker/applets -share/apps/kicker/extensions -@comment share/apps/kicker/icons/crystalsvg/16x16/actions -@comment share/apps/kicker/icons/locolor/16x16/actions -share/apps/kicker/menuext -share/apps/kicker/pics -share/apps/kicker/tiles -share/apps/kicker/wallpapers -@comment share/apps/kinfocenter -@comment share/apps/kio_finger -@comment share/apps/kio_info -@comment share/apps/kjobviewer -@comment share/apps/kmenuedit -@comment share/apps/kmenuedit/icons/crystalsvg/22x22/actions -@comment share/apps/kmenuedit/icons/crystalsvg/32x32/actions -@comment share/apps/kmenuedit/icons/locolor/16x16/actions -@comment share/apps/konqiconview -@comment share/apps/konqiconview/kpartplugins -@comment share/apps/konqlistview -@comment share/apps/konqlistview/kpartplugins -@comment ------------------------------------------------------------------- -@comment -- Konqueror sidebar plugins could install stuff here. -share/apps/konqsidebartng -share/apps/konqsidebartng/add -share/apps/konqsidebartng/dirtree -share/apps/konqsidebartng/entries -share/apps/konqsidebartng/virtual_folders -share/apps/konqsidebartng/virtual_folders/remote -share/apps/konqsidebartng/virtual_folders/remote/ftp -share/apps/konqsidebartng/virtual_folders/remote/web -share/apps/konqsidebartng/virtual_folders/services -@comment share/apps/konqueror -@comment share/apps/konqueror/about -@comment share/apps/konqueror/icons/crystalsvg/16x16/actions -@comment share/apps/konqueror/pic -@comment ------------------------------------------------------------------- -@comment -- Konqueror profiles maybe, and additional service menus. -share/apps/konqueror -share/apps/konqueror/profiles -share/apps/konqueror/servicemenus -@comment share/apps/konqueror/tiles -share/apps/konsole -@comment ------------------------------------------------------------------- -@comment -- Extra third party Konsole profiles could get installed. -share/apps/konsole/profiles -@comment share/apps/kpersonalizer/pics -@comment share/apps/ksmserver/pics -@comment share/apps/ksplash/pics -@comment share/apps/ksplash/pics/locolor -@comment share/apps/ksysguard -@comment share/apps/ksysguard/pics -@comment share/apps/kthememgr -@comment ------------------------------------------------------------------- -@comment -- Additional kthememgr and kwin themes - not sure about kwin/pics -share/apps/kthememgr -share/apps/kthememgr/Themes -share/apps/kwin -share/apps/kwin/icewm-themes -share/apps/kwin/pics -@comment share/apps/kwrite -@comment share/apps/naughtyapplet/pics -@comment share/config/kdm -@comment ------------------------------------------------------------------ -@comment -- Lauri wouldn't tell me what those are, said I would get grumpy. -share/config.kcfg -@comment share/desktop-directories -@comment share/doc/HTML/en/kate -@comment ------------------------------------------------------------------- -@comment -- Various language subdirs for application docs. KDE by default -@comment -- only ships english docs, but some third party apps ship their -@comment -- i18nized set. -share/doc/HTML -share/doc/HTML/cs -share/doc/HTML/da -share/doc/HTML/de -share/doc/HTML/en -@comment ------------------------------------------------------------------- -@comment -- Documentation for additional kcontrol modules could go here. -share/doc/HTML/en/kcontrol -share/doc/HTML/en_GB -share/doc/HTML/es -share/doc/HTML/et -share/doc/HTML/eu -share/doc/HTML/fi -share/doc/HTML/fr -share/doc/HTML/he -share/doc/HTML/hr -share/doc/HTML/hu -share/doc/HTML/it -share/doc/HTML/ja -share/doc/HTML/ko -share/doc/HTML/nl -share/doc/HTML/pl -share/doc/HTML/pt -share/doc/HTML/pt_BR -share/doc/HTML/ro -share/doc/HTML/ru -share/doc/HTML/sk -share/doc/HTML/sl -share/doc/HTML/sr -share/doc/HTML/sv -share/doc/HTML/tr -share/doc/HTML/uk -share/doc/HTML/xh -share/doc/HTML/zh_CN -share/doc/HTML/zh_TW -@comment share/doc/HTML/en/kcontrol/arts -@comment share/doc/HTML/en/kcontrol/background -@comment share/doc/HTML/en/kcontrol/bell -@comment share/doc/HTML/en/kcontrol/cache -@comment share/doc/HTML/en/kcontrol/clock -@comment share/doc/HTML/en/kcontrol/colors -@comment share/doc/HTML/en/kcontrol/cookies -@comment share/doc/HTML/en/kcontrol/crypto -@comment share/doc/HTML/en/kcontrol/desktop -@comment share/doc/HTML/en/kcontrol/ebrowsing -@comment share/doc/HTML/en/kcontrol/email -@comment share/doc/HTML/en/kcontrol/energy -@comment share/doc/HTML/en/kcontrol/filemanager -@comment share/doc/HTML/en/kcontrol/filetypes -@comment share/doc/HTML/en/kcontrol/fonts -@comment share/doc/HTML/en/kcontrol/helpindex.html -@comment share/doc/HTML/en/kcontrol/icons -@comment share/doc/HTML/en/kcontrol/kcmaccess -@comment share/doc/HTML/en/kcontrol/kcmcss -@comment share/doc/HTML/en/kcontrol/kcmfontinst -@comment share/doc/HTML/en/kcontrol/kcmkonsole -@comment share/doc/HTML/en/kcontrol/kcmlaunch -@comment share/doc/HTML/en/kcontrol/kcmnotify -@comment share/doc/HTML/en/kcontrol/kcmsmserver -@comment share/doc/HTML/en/kcontrol/kcmstyle -@comment share/doc/HTML/en/kcontrol/kcmtaskbar -@comment share/doc/HTML/en/kcontrol/kdm -@comment share/doc/HTML/en/kcontrol/keyboard -@comment share/doc/HTML/en/kcontrol/keys -@comment share/doc/HTML/en/kcontrol/khtml -@comment share/doc/HTML/en/kcontrol/kthememgr -@comment share/doc/HTML/en/kcontrol/kwindecoration -@comment share/doc/HTML/en/kcontrol/language -@comment share/doc/HTML/en/kcontrol/mouse -@comment share/doc/HTML/en/kcontrol/netpref -@comment share/doc/HTML/en/kcontrol/panel -@comment share/doc/HTML/en/kcontrol/passwords -@comment share/doc/HTML/en/kcontrol/proxy -@comment share/doc/HTML/en/kcontrol/screensaver -@comment share/doc/HTML/en/kcontrol/smb -@comment share/doc/HTML/en/kcontrol/spellchecking -@comment share/doc/HTML/en/kcontrol/useragent -@comment share/doc/HTML/en/kcontrol/windowmanagement -@comment share/doc/HTML/en/kdebase-apidocs -@comment share/doc/HTML/en/kdebugdialog -@comment share/doc/HTML/en/kdeprint -@comment share/doc/HTML/en/kdesu -@comment share/doc/HTML/en/kdm -@comment share/doc/HTML/en/kfind -@comment share/doc/HTML/en/khelpcenter -@comment share/doc/HTML/en/khelpcenter/faq -@comment share/doc/HTML/en/khelpcenter/glossary -@comment share/doc/HTML/en/khelpcenter/quickstart -@comment share/doc/HTML/en/khelpcenter/userguide -@comment share/doc/HTML/en/khelpcenter/visualdict -@comment share/doc/HTML/en/kicker -@comment share/doc/HTML/en/kinfocenter -@comment share/doc/HTML/en/kinfocenter/devices -@comment share/doc/HTML/en/kinfocenter/dma -@comment share/doc/HTML/en/kinfocenter/interrupts -@comment share/doc/HTML/en/kinfocenter/ioports -@comment share/doc/HTML/en/kinfocenter/memory -@comment share/doc/HTML/en/kinfocenter/nics -@comment share/doc/HTML/en/kinfocenter/partitions -@comment share/doc/HTML/en/kinfocenter/pci -@comment share/doc/HTML/en/kinfocenter/pcmcia -@comment share/doc/HTML/en/kinfocenter/processor -@comment share/doc/HTML/en/kinfocenter/protocols -@comment share/doc/HTML/en/kinfocenter/samba -@comment share/doc/HTML/en/kinfocenter/scsi -@comment share/doc/HTML/en/kinfocenter/sound -@comment share/doc/HTML/en/kinfocenter/usb -@comment share/doc/HTML/en/kinfocenter/xserver -@comment share/doc/HTML/en/kioslave -@comment share/doc/HTML/en/klipper -@comment share/doc/HTML/en/kmenuedit -@comment share/doc/HTML/en/konqueror -@comment share/doc/HTML/en/konsole -@comment share/doc/HTML/en/kpager -@comment share/doc/HTML/en/ksysguard -@comment share/doc/HTML/en/kwrite -@comment --------------------------------------------------------------------- -@comment -- Additional fonts could go here, I think. -@comment share/fonts -@comment share/fonts/override -@comment share/icons/crystalsvg/128x128/apps -@comment share/icons/crystalsvg/16x16/apps -@comment share/icons/crystalsvg/16x16/apps/gnome -@comment share/icons/crystalsvg/16x16/apps/mozilla -@comment share/icons/crystalsvg/22x22/apps -@comment share/icons/crystalsvg/32x32/apps -@comment share/icons/crystalsvg/32x32/apps/gnome -@comment share/icons/crystalsvg/32x32/apps/mozilla -@comment share/icons/crystalsvg/48x48/apps -@comment share/icons/crystalsvg/48x48/apps/gnome -@comment share/icons/crystalsvg/48x48/apps/mozilla -@comment share/icons/crystalsvg/64x64/apps -@comment share/icons/locolor/16x16/apps -@comment share/icons/locolor/32x32/apps -@comment share/locale/en_US -@comment share/locale/l10n -@comment share/locale/l10n/C -@comment share/locale/l10n/ae -@comment share/locale/l10n/ag -@comment share/locale/l10n/ar -@comment share/locale/l10n/at -@comment share/locale/l10n/au -@comment share/locale/l10n/az -@comment share/locale/l10n/ba -@comment share/locale/l10n/bb -@comment share/locale/l10n/bd -@comment share/locale/l10n/be -@comment share/locale/l10n/bg -@comment share/locale/l10n/bh -@comment share/locale/l10n/bo -@comment share/locale/l10n/br -@comment share/locale/l10n/by -@comment share/locale/l10n/ca -@comment share/locale/l10n/ch -@comment share/locale/l10n/cl -@comment share/locale/l10n/cn -@comment share/locale/l10n/co -@comment share/locale/l10n/cr -@comment share/locale/l10n/cu -@comment share/locale/l10n/cz -@comment share/locale/l10n/de -@comment share/locale/l10n/dj -@comment share/locale/l10n/dk -@comment share/locale/l10n/do -@comment share/locale/l10n/dz -@comment share/locale/l10n/ec -@comment share/locale/l10n/ee -@comment share/locale/l10n/eg -@comment share/locale/l10n/es -@comment share/locale/l10n/fi -@comment share/locale/l10n/fr -@comment share/locale/l10n/gb -@comment share/locale/l10n/gd -@comment share/locale/l10n/gh -@comment share/locale/l10n/gr -@comment share/locale/l10n/gt -@comment share/locale/l10n/hn -@comment share/locale/l10n/hr -@comment share/locale/l10n/hu -@comment share/locale/l10n/id -@comment share/locale/l10n/ie -@comment share/locale/l10n/il -@comment share/locale/l10n/in -@comment share/locale/l10n/iq -@comment share/locale/l10n/ir -@comment share/locale/l10n/is -@comment share/locale/l10n/it -@comment share/locale/l10n/jm -@comment share/locale/l10n/jo -@comment share/locale/l10n/jp -@comment share/locale/l10n/kn -@comment share/locale/l10n/kp -@comment share/locale/l10n/kr -@comment share/locale/l10n/kw -@comment share/locale/l10n/lb -@comment share/locale/l10n/lc -@comment share/locale/l10n/lt -@comment share/locale/l10n/lu -@comment share/locale/l10n/lv -@comment share/locale/l10n/ly -@comment share/locale/l10n/ma -@comment share/locale/l10n/mk -@comment share/locale/l10n/mt -@comment share/locale/l10n/mx -@comment share/locale/l10n/ni -@comment share/locale/l10n/nl -@comment share/locale/l10n/no -@comment share/locale/l10n/nz -@comment share/locale/l10n/om -@comment share/locale/l10n/pa -@comment share/locale/l10n/pe -@comment share/locale/l10n/pl -@comment share/locale/l10n/ps -@comment share/locale/l10n/pt -@comment share/locale/l10n/py -@comment share/locale/l10n/qa -@comment share/locale/l10n/ro -@comment share/locale/l10n/ru -@comment share/locale/l10n/sa -@comment share/locale/l10n/sd -@comment share/locale/l10n/se -@comment share/locale/l10n/si -@comment share/locale/l10n/sk -@comment share/locale/l10n/so -@comment share/locale/l10n/sr -@comment share/locale/l10n/sv -@comment share/locale/l10n/sy -@comment share/locale/l10n/th -@comment share/locale/l10n/tn -@comment share/locale/l10n/tr -@comment share/locale/l10n/tt -@comment share/locale/l10n/tw -@comment share/locale/l10n/ua -@comment share/locale/l10n/us -@comment share/locale/l10n/uy -@comment share/locale/l10n/vc -@comment share/locale/l10n/ve -@comment share/locale/l10n/vn -@comment share/locale/l10n/ye -@comment share/locale/l10n/za -@comment share/mimelnk/kdedevice -@comment share/mimelnk/print -@comment --------------------------------------------------------------------- -@comment -- Ports could install search providers, UA strings, sounds, templates -@comment -- and of course wallpapers. -share/services/searchproviders -share/services/useragentstrings -share/sounds -share/templates -share/templates/.source -share/wallpapers -@comment --------------------------------------------------------------------- -@comment -- Directories handpicked out of kdelibs -lib/kde3 -share/applnk/Settings/Components -share/apps -share/apps/kabc -share/apps/kabc/formats -share/apps/kabc/plugins -@comment --------------------------------------------------------------------- -@comment -- KDE-LIRc profiles -share/apps/profiles -share/icons -share/icons/crystalsvg -share/icons/crystalsvg/128x128 -share/icons/crystalsvg/128x128/actions -share/icons/crystalsvg/128x128/apps -share/icons/crystalsvg/128x128/devices -share/icons/crystalsvg/128x128/filesystems -share/icons/crystalsvg/128x128/mimetypes -share/icons/crystalsvg/16x16 -share/icons/crystalsvg/16x16/actions -share/icons/crystalsvg/16x16/apps -share/icons/crystalsvg/16x16/devices -share/icons/crystalsvg/16x16/filesystems -share/icons/crystalsvg/16x16/mimetypes -share/icons/crystalsvg/22x22 -share/icons/crystalsvg/22x22/actions -share/icons/crystalsvg/22x22/apps -share/icons/crystalsvg/22x22/devices -share/icons/crystalsvg/22x22/filesystems -share/icons/crystalsvg/22x22/mimetypes -share/icons/crystalsvg/32x32 -share/icons/crystalsvg/32x32/actions -share/icons/crystalsvg/32x32/apps -share/icons/crystalsvg/32x32/devices -share/icons/crystalsvg/32x32/filesystems -share/icons/crystalsvg/32x32/mimetypes -share/icons/crystalsvg/48x48 -share/icons/crystalsvg/48x48/actions -share/icons/crystalsvg/48x48/apps -share/icons/crystalsvg/48x48/devices -share/icons/crystalsvg/48x48/filesystems -share/icons/crystalsvg/48x48/mimetypes -share/icons/crystalsvg/64x64 -share/icons/crystalsvg/64x64/actions -share/icons/crystalsvg/64x64/apps -share/icons/crystalsvg/64x64/devices -share/icons/crystalsvg/64x64/filesystems -share/icons/crystalsvg/64x64/mimetypes -share/icons/crystalsvg/scalable -share/icons/crystalsvg/scalable/actions -share/icons/crystalsvg/scalable/apps -share/icons/crystalsvg/scalable/devices -share/icons/crystalsvg/scalable/filesystems -share/icons/crystalsvg/scalable/mimetype -share/icons/hicolor -share/icons/hicolor/128x128 -share/icons/hicolor/128x128/actions -share/icons/hicolor/128x128/apps -share/icons/hicolor/128x128/devices -share/icons/hicolor/128x128/filesystems -share/icons/hicolor/128x128/mimetypes -share/icons/hicolor/16x16 -share/icons/hicolor/16x16/actions -share/icons/hicolor/16x16/apps -share/icons/hicolor/16x16/devices -share/icons/hicolor/16x16/filesystems -share/icons/hicolor/16x16/mimetypes -share/icons/hicolor/22x22 -share/icons/hicolor/22x22/actions -share/icons/hicolor/22x22/apps -share/icons/hicolor/22x22/devices -share/icons/hicolor/22x22/filesystems -share/icons/hicolor/22x22/mimetypes -share/icons/hicolor/32x32 -share/icons/hicolor/32x32/actions -share/icons/hicolor/32x32/apps -share/icons/hicolor/32x32/devices -share/icons/hicolor/32x32/filesystems -share/icons/hicolor/32x32/mimetypes -share/icons/hicolor/48x48 -share/icons/hicolor/48x48/actions -share/icons/hicolor/48x48/apps -share/icons/hicolor/48x48/devices -share/icons/hicolor/48x48/filesystems -share/icons/hicolor/48x48/mimetypes -share/icons/hicolor/64x64 -share/icons/hicolor/64x64/actions -share/icons/hicolor/64x64/apps -share/icons/hicolor/64x64/devices -share/icons/hicolor/64x64/filesystems -share/icons/hicolor/64x64/mimetypes -share/icons/locolor -share/icons/locolor/128x128 -share/icons/locolor/128x128/actions -share/icons/locolor/128x128/apps -share/icons/locolor/128x128/devices -share/icons/locolor/128x128/filesystem -share/icons/locolor/128x128/mimetypes -share/icons/locolor/16x16 -share/icons/locolor/16x16/actions -share/icons/locolor/16x16/apps -share/icons/locolor/16x16/devices -share/icons/locolor/16x16/filesystems -share/icons/locolor/16x16/mimetypes -share/icons/locolor/22x22 -share/icons/locolor/22x22/actions -share/icons/locolor/22x22/apps -share/icons/locolor/22x22/devices -share/icons/locolor/22x22/filesystems -share/icons/locolor/22x22/mimetypes -share/icons/locolor/32x32 -share/icons/locolor/32x32/actions -share/icons/locolor/32x32/apps -share/icons/locolor/32x32/devices -share/icons/locolor/32x32/filesystems -share/icons/locolor/32x32/mimetypes -share/icons/locolor/48x48 -share/icons/locolor/48x48/actions -share/icons/locolor/48x48/apps -share/icons/locolor/48x48/devices -share/icons/locolor/48x48/filesystems -share/icons/locolor/48x48/mimetypes -share/icons/locolor/64x64 -share/icons/locolor/64x64/actions -share/icons/locolor/64x64/apps -share/icons/locolor/64x64/devices -share/icons/locolor/64x64/filesystems -share/icons/locolor/64x64/mimetypes -share/mimelnk -share/mimelnk/all -share/mimelnk/application -share/mimelnk/audio -share/mimelnk/image -share/mimelnk/inode -share/mimelnk/message -share/mimelnk/model -share/mimelnk/multipart -share/mimelnk/text -share/mimelnk/video -share/services -share/servicetypes diff --git a/misc/kdehier4/files/make-plist.sh b/misc/kdehier4/files/make-plist.sh deleted file mode 100644 index a0dd2da4f2a7..000000000000 --- a/misc/kdehier4/files/make-plist.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh -if [ ! -e dirlist -o ! -e ../Makefile ]; then - echo "Wrong directory; this script needs to be called from" - echo "/usr/ports/misc/kdehier/files !" - exit 1 -fi - -grep -v "^@comment" dirlist | sed -e "s,$,/.keep_me," | sort | uniq > ../pkg-plist -grep -v "^@comment" dirlist | sed -e "s,^,@dirrm ," | sort -r | uniq >> ../pkg-plist diff --git a/misc/kdehier4/pkg-descr b/misc/kdehier4/pkg-descr deleted file mode 100644 index be826b77ba31..000000000000 --- a/misc/kdehier4/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -Utility port which installs a hierarchy of common KDE directories. diff --git a/misc/kdehier4/pkg-plist b/misc/kdehier4/pkg-plist deleted file mode 100644 index 726e5e9f192d..000000000000 --- a/misc/kdehier4/pkg-plist +++ /dev/null @@ -1,520 +0,0 @@ -lib/kde3/.keep_me -share/applications/.keep_me -share/applnk/.hidden/.keep_me -share/applnk/.keep_me -share/applnk/Applications/.keep_me -share/applnk/Development/.keep_me -share/applnk/Editors/.keep_me -share/applnk/Edutainment/.keep_me -share/applnk/Games/.keep_me -share/applnk/Games/Arcade/.keep_me -share/applnk/Games/Board/.keep_me -share/applnk/Games/Card/.keep_me -share/applnk/Games/Kidsgames/.keep_me -share/applnk/Games/Roguelikes/.keep_me -share/applnk/Games/TacticStrategy/.keep_me -share/applnk/Graphics/.keep_me -share/applnk/Graphics/More/.keep_me -share/applnk/Internet/.keep_me -share/applnk/Internet/More/.keep_me -share/applnk/Internet/Terminal/.keep_me -share/applnk/Multimedia/.keep_me -share/applnk/Multimedia/More/.keep_me -share/applnk/Office/.keep_me -share/applnk/Settings/.keep_me -share/applnk/Settings/Accessibility/.keep_me -share/applnk/Settings/Components/.keep_me -share/applnk/Settings/Desktop/.keep_me -share/applnk/Settings/Information/.keep_me -share/applnk/Settings/LookNFeel/.keep_me -share/applnk/Settings/LookNFeel/Themes/.keep_me -share/applnk/Settings/LookNFeel/Windows/.keep_me -share/applnk/Settings/Network/.keep_me -share/applnk/Settings/Network/WebBrowsing/.keep_me -share/applnk/Settings/Peripherals/.keep_me -share/applnk/Settings/Personalization/.keep_me -share/applnk/Settings/PowerControl/.keep_me -share/applnk/Settings/Security/.keep_me -share/applnk/Settings/Sound/.keep_me -share/applnk/Settings/System/.keep_me -share/applnk/Settings/WebBrowsing/.keep_me -share/applnk/Settingsmenu/.keep_me -share/applnk/System/.keep_me -share/applnk/System/More/.keep_me -share/applnk/System/ScreenSavers/.keep_me -share/applnk/System/Terminal/.keep_me -share/applnk/Toys/.keep_me -share/applnk/Utilities/.keep_me -share/applnk/Utilities/More/.keep_me -share/applnk/Utilities/XUtilities/.keep_me -share/apps/.keep_me -share/apps/kabc/.keep_me -share/apps/kabc/formats/.keep_me -share/apps/kabc/plugins/.keep_me -share/apps/kate/.keep_me -share/apps/kate/scripts/.keep_me -share/apps/kdesktop/.keep_me -share/apps/kdesktop/DesktopLinks/.keep_me -share/apps/kdesktop/patterns/.keep_me -share/apps/kdesktop/pics/.keep_me -share/apps/kdesktop/programs/.keep_me -share/apps/khelpcenter/.keep_me -share/apps/khelpcenter/plugins/.keep_me -share/apps/kicker/.keep_me -share/apps/kicker/applets/.keep_me -share/apps/kicker/extensions/.keep_me -share/apps/kicker/menuext/.keep_me -share/apps/kicker/pics/.keep_me -share/apps/kicker/tiles/.keep_me -share/apps/kicker/wallpapers/.keep_me -share/apps/konqsidebartng/.keep_me -share/apps/konqsidebartng/add/.keep_me -share/apps/konqsidebartng/dirtree/.keep_me -share/apps/konqsidebartng/entries/.keep_me -share/apps/konqsidebartng/virtual_folders/.keep_me -share/apps/konqsidebartng/virtual_folders/remote/.keep_me -share/apps/konqsidebartng/virtual_folders/remote/ftp/.keep_me -share/apps/konqsidebartng/virtual_folders/remote/web/.keep_me -share/apps/konqsidebartng/virtual_folders/services/.keep_me -share/apps/konqueror/.keep_me -share/apps/konqueror/profiles/.keep_me -share/apps/konqueror/servicemenus/.keep_me -share/apps/konsole/.keep_me -share/apps/konsole/profiles/.keep_me -share/apps/kthememgr/.keep_me -share/apps/kthememgr/Themes/.keep_me -share/apps/kwin/.keep_me -share/apps/kwin/icewm-themes/.keep_me -share/apps/kwin/pics/.keep_me -share/apps/profiles/.keep_me -share/config.kcfg/.keep_me -share/doc/HTML/.keep_me -share/doc/HTML/cs/.keep_me -share/doc/HTML/da/.keep_me -share/doc/HTML/de/.keep_me -share/doc/HTML/en/.keep_me -share/doc/HTML/en/kcontrol/.keep_me -share/doc/HTML/en_GB/.keep_me -share/doc/HTML/es/.keep_me -share/doc/HTML/et/.keep_me -share/doc/HTML/eu/.keep_me -share/doc/HTML/fi/.keep_me -share/doc/HTML/fr/.keep_me -share/doc/HTML/he/.keep_me -share/doc/HTML/hr/.keep_me -share/doc/HTML/hu/.keep_me -share/doc/HTML/it/.keep_me -share/doc/HTML/ja/.keep_me -share/doc/HTML/ko/.keep_me -share/doc/HTML/nl/.keep_me -share/doc/HTML/pl/.keep_me -share/doc/HTML/pt/.keep_me -share/doc/HTML/pt_BR/.keep_me -share/doc/HTML/ro/.keep_me -share/doc/HTML/ru/.keep_me -share/doc/HTML/sk/.keep_me -share/doc/HTML/sl/.keep_me -share/doc/HTML/sr/.keep_me -share/doc/HTML/sv/.keep_me -share/doc/HTML/tr/.keep_me -share/doc/HTML/uk/.keep_me -share/doc/HTML/xh/.keep_me -share/doc/HTML/zh_CN/.keep_me -share/doc/HTML/zh_TW/.keep_me -share/icons/.keep_me -share/icons/crystalsvg/.keep_me -share/icons/crystalsvg/128x128/.keep_me -share/icons/crystalsvg/128x128/actions/.keep_me -share/icons/crystalsvg/128x128/apps/.keep_me -share/icons/crystalsvg/128x128/devices/.keep_me -share/icons/crystalsvg/128x128/filesystems/.keep_me -share/icons/crystalsvg/128x128/mimetypes/.keep_me -share/icons/crystalsvg/16x16/.keep_me -share/icons/crystalsvg/16x16/actions/.keep_me -share/icons/crystalsvg/16x16/apps/.keep_me -share/icons/crystalsvg/16x16/devices/.keep_me -share/icons/crystalsvg/16x16/filesystems/.keep_me -share/icons/crystalsvg/16x16/mimetypes/.keep_me -share/icons/crystalsvg/22x22/.keep_me -share/icons/crystalsvg/22x22/actions/.keep_me -share/icons/crystalsvg/22x22/apps/.keep_me -share/icons/crystalsvg/22x22/devices/.keep_me -share/icons/crystalsvg/22x22/filesystems/.keep_me -share/icons/crystalsvg/22x22/mimetypes/.keep_me -share/icons/crystalsvg/32x32/.keep_me -share/icons/crystalsvg/32x32/actions/.keep_me -share/icons/crystalsvg/32x32/apps/.keep_me -share/icons/crystalsvg/32x32/devices/.keep_me -share/icons/crystalsvg/32x32/filesystems/.keep_me -share/icons/crystalsvg/32x32/mimetypes/.keep_me -share/icons/crystalsvg/48x48/.keep_me -share/icons/crystalsvg/48x48/actions/.keep_me -share/icons/crystalsvg/48x48/apps/.keep_me -share/icons/crystalsvg/48x48/devices/.keep_me -share/icons/crystalsvg/48x48/filesystems/.keep_me -share/icons/crystalsvg/48x48/mimetypes/.keep_me -share/icons/crystalsvg/64x64/.keep_me -share/icons/crystalsvg/64x64/actions/.keep_me -share/icons/crystalsvg/64x64/apps/.keep_me -share/icons/crystalsvg/64x64/devices/.keep_me -share/icons/crystalsvg/64x64/filesystems/.keep_me -share/icons/crystalsvg/64x64/mimetypes/.keep_me -share/icons/crystalsvg/scalable/.keep_me -share/icons/crystalsvg/scalable/actions/.keep_me -share/icons/crystalsvg/scalable/apps/.keep_me -share/icons/crystalsvg/scalable/devices/.keep_me -share/icons/crystalsvg/scalable/filesystems/.keep_me -share/icons/crystalsvg/scalable/mimetype/.keep_me -share/icons/hicolor/.keep_me -share/icons/hicolor/128x128/.keep_me -share/icons/hicolor/128x128/actions/.keep_me -share/icons/hicolor/128x128/apps/.keep_me -share/icons/hicolor/128x128/devices/.keep_me -share/icons/hicolor/128x128/filesystems/.keep_me -share/icons/hicolor/128x128/mimetypes/.keep_me -share/icons/hicolor/16x16/.keep_me -share/icons/hicolor/16x16/actions/.keep_me -share/icons/hicolor/16x16/apps/.keep_me -share/icons/hicolor/16x16/devices/.keep_me -share/icons/hicolor/16x16/filesystems/.keep_me -share/icons/hicolor/16x16/mimetypes/.keep_me -share/icons/hicolor/22x22/.keep_me -share/icons/hicolor/22x22/actions/.keep_me -share/icons/hicolor/22x22/apps/.keep_me -share/icons/hicolor/22x22/devices/.keep_me -share/icons/hicolor/22x22/filesystems/.keep_me -share/icons/hicolor/22x22/mimetypes/.keep_me -share/icons/hicolor/32x32/.keep_me -share/icons/hicolor/32x32/actions/.keep_me -share/icons/hicolor/32x32/apps/.keep_me -share/icons/hicolor/32x32/devices/.keep_me -share/icons/hicolor/32x32/filesystems/.keep_me -share/icons/hicolor/32x32/mimetypes/.keep_me -share/icons/hicolor/48x48/.keep_me -share/icons/hicolor/48x48/actions/.keep_me -share/icons/hicolor/48x48/apps/.keep_me -share/icons/hicolor/48x48/devices/.keep_me -share/icons/hicolor/48x48/filesystems/.keep_me -share/icons/hicolor/48x48/mimetypes/.keep_me -share/icons/hicolor/64x64/.keep_me -share/icons/hicolor/64x64/actions/.keep_me -share/icons/hicolor/64x64/apps/.keep_me -share/icons/hicolor/64x64/devices/.keep_me -share/icons/hicolor/64x64/filesystems/.keep_me -share/icons/hicolor/64x64/mimetypes/.keep_me -share/icons/locolor/.keep_me -share/icons/locolor/128x128/.keep_me -share/icons/locolor/128x128/actions/.keep_me -share/icons/locolor/128x128/apps/.keep_me -share/icons/locolor/128x128/devices/.keep_me -share/icons/locolor/128x128/filesystem/.keep_me -share/icons/locolor/128x128/mimetypes/.keep_me -share/icons/locolor/16x16/.keep_me -share/icons/locolor/16x16/actions/.keep_me -share/icons/locolor/16x16/apps/.keep_me -share/icons/locolor/16x16/devices/.keep_me -share/icons/locolor/16x16/filesystems/.keep_me -share/icons/locolor/16x16/mimetypes/.keep_me -share/icons/locolor/22x22/.keep_me -share/icons/locolor/22x22/actions/.keep_me -share/icons/locolor/22x22/apps/.keep_me -share/icons/locolor/22x22/devices/.keep_me -share/icons/locolor/22x22/filesystems/.keep_me -share/icons/locolor/22x22/mimetypes/.keep_me -share/icons/locolor/32x32/.keep_me -share/icons/locolor/32x32/actions/.keep_me -share/icons/locolor/32x32/apps/.keep_me -share/icons/locolor/32x32/devices/.keep_me -share/icons/locolor/32x32/filesystems/.keep_me -share/icons/locolor/32x32/mimetypes/.keep_me -share/icons/locolor/48x48/.keep_me -share/icons/locolor/48x48/actions/.keep_me -share/icons/locolor/48x48/apps/.keep_me -share/icons/locolor/48x48/devices/.keep_me -share/icons/locolor/48x48/filesystems/.keep_me -share/icons/locolor/48x48/mimetypes/.keep_me -share/icons/locolor/64x64/.keep_me -share/icons/locolor/64x64/actions/.keep_me -share/icons/locolor/64x64/apps/.keep_me -share/icons/locolor/64x64/devices/.keep_me -share/icons/locolor/64x64/filesystems/.keep_me -share/icons/locolor/64x64/mimetypes/.keep_me -share/mimelnk/.keep_me -share/mimelnk/all/.keep_me -share/mimelnk/application/.keep_me -share/mimelnk/audio/.keep_me -share/mimelnk/image/.keep_me -share/mimelnk/inode/.keep_me -share/mimelnk/message/.keep_me -share/mimelnk/model/.keep_me -share/mimelnk/multipart/.keep_me -share/mimelnk/text/.keep_me -share/mimelnk/video/.keep_me -share/services/.keep_me -share/services/searchproviders/.keep_me -share/services/useragentstrings/.keep_me -share/servicetypes/.keep_me -share/sounds/.keep_me -share/templates/.keep_me -share/templates/.source/.keep_me -share/wallpapers/.keep_me -@dirrm share/wallpapers -@dirrm share/templates/.source -@dirrm share/templates -@dirrm share/sounds -@dirrm share/servicetypes -@dirrm share/services/useragentstrings -@dirrm share/services/searchproviders -@dirrm share/services -@dirrm share/mimelnk/video -@dirrm share/mimelnk/text -@dirrm share/mimelnk/multipart -@dirrm share/mimelnk/model -@dirrm share/mimelnk/message -@dirrm share/mimelnk/inode -@dirrm share/mimelnk/image -@dirrm share/mimelnk/audio -@dirrm share/mimelnk/application -@dirrm share/mimelnk/all -@dirrm share/mimelnk -@dirrm share/icons/locolor/64x64/mimetypes -@dirrm share/icons/locolor/64x64/filesystems -@dirrm share/icons/locolor/64x64/devices -@dirrm share/icons/locolor/64x64/apps -@dirrm share/icons/locolor/64x64/actions -@dirrm share/icons/locolor/64x64 -@dirrm share/icons/locolor/48x48/mimetypes -@dirrm share/icons/locolor/48x48/filesystems -@dirrm share/icons/locolor/48x48/devices -@dirrm share/icons/locolor/48x48/apps -@dirrm share/icons/locolor/48x48/actions -@dirrm share/icons/locolor/48x48 -@dirrm share/icons/locolor/32x32/mimetypes -@dirrm share/icons/locolor/32x32/filesystems -@dirrm share/icons/locolor/32x32/devices -@dirrm share/icons/locolor/32x32/apps -@dirrm share/icons/locolor/32x32/actions -@dirrm share/icons/locolor/32x32 -@dirrm share/icons/locolor/22x22/mimetypes -@dirrm share/icons/locolor/22x22/filesystems -@dirrm share/icons/locolor/22x22/devices -@dirrm share/icons/locolor/22x22/apps -@dirrm share/icons/locolor/22x22/actions -@dirrm share/icons/locolor/22x22 -@dirrm share/icons/locolor/16x16/mimetypes -@dirrm share/icons/locolor/16x16/filesystems -@dirrm share/icons/locolor/16x16/devices -@dirrm share/icons/locolor/16x16/apps -@dirrm share/icons/locolor/16x16/actions -@dirrm share/icons/locolor/16x16 -@dirrm share/icons/locolor/128x128/mimetypes -@dirrm share/icons/locolor/128x128/filesystem -@dirrm share/icons/locolor/128x128/devices -@dirrm share/icons/locolor/128x128/apps -@dirrm share/icons/locolor/128x128/actions -@dirrm share/icons/locolor/128x128 -@dirrm share/icons/locolor -@dirrm share/icons/hicolor/64x64/mimetypes -@dirrm share/icons/hicolor/64x64/filesystems -@dirrm share/icons/hicolor/64x64/devices -@dirrm share/icons/hicolor/64x64/apps -@dirrm share/icons/hicolor/64x64/actions -@dirrm share/icons/hicolor/64x64 -@dirrm share/icons/hicolor/48x48/mimetypes -@dirrm share/icons/hicolor/48x48/filesystems -@dirrm share/icons/hicolor/48x48/devices -@dirrm share/icons/hicolor/48x48/apps -@dirrm share/icons/hicolor/48x48/actions -@dirrm share/icons/hicolor/48x48 -@dirrm share/icons/hicolor/32x32/mimetypes -@dirrm share/icons/hicolor/32x32/filesystems -@dirrm share/icons/hicolor/32x32/devices -@dirrm share/icons/hicolor/32x32/apps -@dirrm share/icons/hicolor/32x32/actions -@dirrm share/icons/hicolor/32x32 -@dirrm share/icons/hicolor/22x22/mimetypes -@dirrm share/icons/hicolor/22x22/filesystems -@dirrm share/icons/hicolor/22x22/devices -@dirrm share/icons/hicolor/22x22/apps -@dirrm share/icons/hicolor/22x22/actions -@dirrm share/icons/hicolor/22x22 -@dirrm share/icons/hicolor/16x16/mimetypes -@dirrm share/icons/hicolor/16x16/filesystems -@dirrm share/icons/hicolor/16x16/devices -@dirrm share/icons/hicolor/16x16/apps -@dirrm share/icons/hicolor/16x16/actions -@dirrm share/icons/hicolor/16x16 -@dirrm share/icons/hicolor/128x128/mimetypes -@dirrm share/icons/hicolor/128x128/filesystems -@dirrm share/icons/hicolor/128x128/devices -@dirrm share/icons/hicolor/128x128/apps -@dirrm share/icons/hicolor/128x128/actions -@dirrm share/icons/hicolor/128x128 -@dirrm share/icons/hicolor -@dirrm share/icons/crystalsvg/scalable/mimetype -@dirrm share/icons/crystalsvg/scalable/filesystems -@dirrm share/icons/crystalsvg/scalable/devices -@dirrm share/icons/crystalsvg/scalable/apps -@dirrm share/icons/crystalsvg/scalable/actions -@dirrm share/icons/crystalsvg/scalable -@dirrm share/icons/crystalsvg/64x64/mimetypes -@dirrm share/icons/crystalsvg/64x64/filesystems -@dirrm share/icons/crystalsvg/64x64/devices -@dirrm share/icons/crystalsvg/64x64/apps -@dirrm share/icons/crystalsvg/64x64/actions -@dirrm share/icons/crystalsvg/64x64 -@dirrm share/icons/crystalsvg/48x48/mimetypes -@dirrm share/icons/crystalsvg/48x48/filesystems -@dirrm share/icons/crystalsvg/48x48/devices -@dirrm share/icons/crystalsvg/48x48/apps -@dirrm share/icons/crystalsvg/48x48/actions -@dirrm share/icons/crystalsvg/48x48 -@dirrm share/icons/crystalsvg/32x32/mimetypes -@dirrm share/icons/crystalsvg/32x32/filesystems -@dirrm share/icons/crystalsvg/32x32/devices -@dirrm share/icons/crystalsvg/32x32/apps -@dirrm share/icons/crystalsvg/32x32/actions -@dirrm share/icons/crystalsvg/32x32 -@dirrm share/icons/crystalsvg/22x22/mimetypes -@dirrm share/icons/crystalsvg/22x22/filesystems -@dirrm share/icons/crystalsvg/22x22/devices -@dirrm share/icons/crystalsvg/22x22/apps -@dirrm share/icons/crystalsvg/22x22/actions -@dirrm share/icons/crystalsvg/22x22 -@dirrm share/icons/crystalsvg/16x16/mimetypes -@dirrm share/icons/crystalsvg/16x16/filesystems -@dirrm share/icons/crystalsvg/16x16/devices -@dirrm share/icons/crystalsvg/16x16/apps -@dirrm share/icons/crystalsvg/16x16/actions -@dirrm share/icons/crystalsvg/16x16 -@dirrm share/icons/crystalsvg/128x128/mimetypes -@dirrm share/icons/crystalsvg/128x128/filesystems -@dirrm share/icons/crystalsvg/128x128/devices -@dirrm share/icons/crystalsvg/128x128/apps -@dirrm share/icons/crystalsvg/128x128/actions -@dirrm share/icons/crystalsvg/128x128 -@dirrm share/icons/crystalsvg -@dirrm share/icons -@dirrm share/doc/HTML/zh_TW -@dirrm share/doc/HTML/zh_CN -@dirrm share/doc/HTML/xh -@dirrm share/doc/HTML/uk -@dirrm share/doc/HTML/tr -@dirrm share/doc/HTML/sv -@dirrm share/doc/HTML/sr -@dirrm share/doc/HTML/sl -@dirrm share/doc/HTML/sk -@dirrm share/doc/HTML/ru -@dirrm share/doc/HTML/ro -@dirrm share/doc/HTML/pt_BR -@dirrm share/doc/HTML/pt -@dirrm share/doc/HTML/pl -@dirrm share/doc/HTML/nl -@dirrm share/doc/HTML/ko -@dirrm share/doc/HTML/ja -@dirrm share/doc/HTML/it -@dirrm share/doc/HTML/hu -@dirrm share/doc/HTML/hr -@dirrm share/doc/HTML/he -@dirrm share/doc/HTML/fr -@dirrm share/doc/HTML/fi -@dirrm share/doc/HTML/eu -@dirrm share/doc/HTML/et -@dirrm share/doc/HTML/es -@dirrm share/doc/HTML/en_GB -@dirrm share/doc/HTML/en/kcontrol -@dirrm share/doc/HTML/en -@dirrm share/doc/HTML/de -@dirrm share/doc/HTML/da -@dirrm share/doc/HTML/cs -@dirrm share/doc/HTML -@dirrm share/config.kcfg -@dirrm share/apps/profiles -@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/konsole/profiles -@dirrm share/apps/konsole -@dirrm share/apps/konqueror/servicemenus -@dirrm share/apps/konqueror/profiles -@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/kicker/wallpapers -@dirrm share/apps/kicker/tiles -@dirrm share/apps/kicker/pics -@dirrm share/apps/kicker/menuext -@dirrm share/apps/kicker/extensions -@dirrm share/apps/kicker/applets -@dirrm share/apps/kicker -@dirrm share/apps/khelpcenter/plugins -@dirrm share/apps/khelpcenter -@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/kate/scripts -@dirrm share/apps/kate -@dirrm share/apps/kabc/plugins -@dirrm share/apps/kabc/formats -@dirrm share/apps/kabc -@dirrm share/apps -@dirrm share/applnk/Utilities/XUtilities -@dirrm share/applnk/Utilities/More -@dirrm share/applnk/Utilities -@dirrm share/applnk/Toys -@dirrm share/applnk/System/Terminal -@dirrm share/applnk/System/ScreenSavers -@dirrm share/applnk/System/More -@dirrm share/applnk/System -@dirrm share/applnk/Settingsmenu -@dirrm share/applnk/Settings/WebBrowsing -@dirrm share/applnk/Settings/System -@dirrm share/applnk/Settings/Sound -@dirrm share/applnk/Settings/Security -@dirrm share/applnk/Settings/PowerControl -@dirrm share/applnk/Settings/Personalization -@dirrm share/applnk/Settings/Peripherals -@dirrm share/applnk/Settings/Network/WebBrowsing -@dirrm share/applnk/Settings/Network -@dirrm share/applnk/Settings/LookNFeel/Windows -@dirrm share/applnk/Settings/LookNFeel/Themes -@dirrm share/applnk/Settings/LookNFeel -@dirrm share/applnk/Settings/Information -@dirrm share/applnk/Settings/Desktop -@dirrm share/applnk/Settings/Components -@dirrm share/applnk/Settings/Accessibility -@dirrm share/applnk/Settings -@dirrm share/applnk/Office -@dirrm share/applnk/Multimedia/More -@dirrm share/applnk/Multimedia -@dirrm share/applnk/Internet/Terminal -@dirrm share/applnk/Internet/More -@dirrm share/applnk/Internet -@dirrm share/applnk/Graphics/More -@dirrm share/applnk/Graphics -@dirrm share/applnk/Games/TacticStrategy -@dirrm share/applnk/Games/Roguelikes -@dirrm share/applnk/Games/Kidsgames -@dirrm share/applnk/Games/Card -@dirrm share/applnk/Games/Board -@dirrm share/applnk/Games/Arcade -@dirrm share/applnk/Games -@dirrm share/applnk/Edutainment -@dirrm share/applnk/Editors -@dirrm share/applnk/Development -@dirrm share/applnk/Applications -@dirrm share/applnk/.hidden -@dirrm share/applnk -@dirrm share/applications -@dirrm lib/kde3 diff --git a/misc/kdeutils4/Makefile b/misc/kdeutils4/Makefile deleted file mode 100644 index e465f3ebecf1..000000000000 --- a/misc/kdeutils4/Makefile +++ /dev/null @@ -1,51 +0,0 @@ -# New ports collection makefile for: kdeutils3 -# Date created: 3 November 2001 -# Whom: will@cvs.kde.org -# -# $FreeBSD$ -# - -PORTNAME= kdeutils -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src -DIST_SUBDIR= KDE - -MAINTAINER?= kde@FreeBSD.org -COMMENT= Utilities for the KDE integrated X11 desktop - -LIB_DEPENDS= netsnmp:${PORTSDIR}/net-mgmt/net-snmp -RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg - -CONFLICTS= kgpg-* - -USE_KDELIBS_VER=3 -USE_KDEBASE_VER=3 -PREFIX= ${KDE_PREFIX} - -USE_BZIP2= yes -USE_GMAKE= yes -USE_GETOPT_LONG=yes -GNU_CONFIGURE= yes -USE_REINPLACE= yes -DO_NOT_COMPILE+=klaptopdaemon kmilo -CONFIGURE_ENV+= DO_NOT_COMPILE="${DO_NOT_COMPILE}" - -CONFLICTS= kgpg-[0-9]* - -INSTALLS_SHLIB= yes -LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3 - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" -.include <bsd.port.pre.mk> - -.if ${OSVERSION} > 501102 -. if ${OSVERSION} > 600021 -RUN_DEPENDS+= gtar:${PORTSDIR}/archivers/gtar -. endif -post-patch: - ${REINPLACE_CMD} -e 's|>tar<|>gtar<|g' ${WRKSRC}/ark/ark.kcfg -.endif - -.include <bsd.port.post.mk> diff --git a/misc/kdeutils4/distinfo b/misc/kdeutils4/distinfo deleted file mode 100644 index 2f9b08e96a62..000000000000 --- a/misc/kdeutils4/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kdeutils-3.4.2.tar.bz2) = 62500e5ee043937592ebc6ad91dd670d -SIZE (KDE/kdeutils-3.4.2.tar.bz2) = 2290150 diff --git a/misc/kdeutils4/pkg-descr b/misc/kdeutils4/pkg-descr deleted file mode 100644 index 90ae45773bea..000000000000 --- a/misc/kdeutils4/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -KDE provides an integrated X11 based environment, much like CDE. diff --git a/misc/kdeutils4/pkg-plist b/misc/kdeutils4/pkg-plist deleted file mode 100644 index cdd7fe070be2..000000000000 --- a/misc/kdeutils4/pkg-plist +++ /dev/null @@ -1,491 +0,0 @@ -bin/ark -bin/irkick -bin/kcalc -bin/kcharselect -bin/kdessh -bin/kdf -bin/kedit -bin/kfloppy -bin/kgpg -bin/khexedit -bin/kjots -bin/kregexpeditor -bin/ktimer -bin/kwalletmanager -bin/kwikdisk -include/kmultiformlistbox.h -include/kmultiformlistboxentry.h -include/kmultiformlistboxfactory.h -include/ksim/chart.h -include/ksim/common.h -include/ksim/ksimconfig.h -include/ksim/label.h -include/ksim/led.h -include/ksim/pluginglobal.h -include/ksim/pluginloader.h -include/ksim/pluginmodule.h -include/ksim/progress.h -include/ksim/themeloader.h -include/ksim/themetypes.h -include/kwidgetstreamer.h -lib/kde3/ark.la -lib/kde3/ark.so -lib/kde3/irkick.la -lib/kde3/irkick.so -lib/kde3/kcalc.la -lib/kde3/kcalc.so -lib/kde3/kcharselect_panelapplet.la -lib/kde3/kcharselect_panelapplet.so -lib/kde3/kcm_kcmlirc.la -lib/kde3/kcm_kcmlirc.so -lib/kde3/kcm_kdf.la -lib/kde3/kcm_kdf.so -lib/kde3/kcm_kwallet.la -lib/kde3/kcm_kwallet.so -lib/kde3/kedit.la -lib/kde3/kedit.so -lib/kde3/ksim_cpu.la -lib/kde3/ksim_cpu.so -lib/kde3/ksim_disk.la -lib/kde3/ksim_disk.so -lib/kde3/ksim_filesystem.la -lib/kde3/ksim_filesystem.so -lib/kde3/ksim_net.la -lib/kde3/ksim_net.so -lib/kde3/ksim_panelextension.la -lib/kde3/ksim_panelextension.so -lib/kde3/ksim_sensors.la -lib/kde3/ksim_sensors.so -lib/kde3/ksim_snmp.la -lib/kde3/ksim_snmp.so -lib/kde3/libarkpart.la -lib/kde3/libarkpart.so -lib/kde3/libkbyteseditwidget.la -lib/kde3/libkbyteseditwidget.so -lib/kde3/libkhexedit2part.la -lib/kde3/libkhexedit2part.so -lib/kde3/libkregexpeditorgui.la -lib/kde3/libkregexpeditorgui.so -lib/libkdeinit_ark.la -lib/libkdeinit_ark.so -lib/libkdeinit_irkick.la -lib/libkdeinit_irkick.so -lib/libkdeinit_kcalc.la -lib/libkdeinit_kcalc.so -lib/libkdeinit_kedit.la -lib/libkdeinit_kedit.so -lib/libkhexeditcommon.la -lib/libkhexeditcommon.so -lib/libkhexeditcommon.so.0 -lib/libkregexpeditorcommon.la -lib/libkregexpeditorcommon.so -lib/libkregexpeditorcommon.so.1 -lib/libksimcore.la -lib/libksimcore.so -lib/libksimcore.so.1 -share/applications/kde/KCharSelect.desktop -share/applications/kde/KEdit.desktop -share/applications/kde/KFloppy.desktop -share/applications/kde/Kjots.desktop -share/applications/kde/ark.desktop -share/applications/kde/irkick.desktop -share/applications/kde/kcalc.desktop -share/applications/kde/kcmdf.desktop -share/applications/kde/kcmlirc.desktop -share/applications/kde/kdf.desktop -share/applications/kde/kgpg.desktop -share/applications/kde/khexedit.desktop -share/applications/kde/kregexpeditor.desktop -share/applications/kde/ksim.desktop -share/applications/kde/ktimer.desktop -share/applications/kde/kwalletconfig.desktop -share/applications/kde/kwalletmanager-kwalletd.desktop -share/applications/kde/kwalletmanager.desktop -share/applications/kde/kwikdisk.desktop -share/apps/ark/ark_part.rc -share/apps/ark/ark_part_readonly.rc -share/apps/ark/arkui.rc -share/apps/ark/icons/crystalsvg/22x22/actions/ark_adddir.png -share/apps/ark/icons/crystalsvg/22x22/actions/ark_addfile.png -share/apps/ark/icons/crystalsvg/22x22/actions/ark_delete.png -share/apps/ark/icons/crystalsvg/22x22/actions/ark_extract.png -share/apps/ark/icons/crystalsvg/22x22/actions/ark_help.png -share/apps/ark/icons/crystalsvg/22x22/actions/ark_new.png -share/apps/ark/icons/crystalsvg/22x22/actions/ark_open.png -share/apps/ark/icons/crystalsvg/22x22/actions/ark_options.png -share/apps/ark/icons/crystalsvg/22x22/actions/ark_selectall.png -share/apps/ark/icons/crystalsvg/22x22/actions/ark_view.png -share/apps/ark/icons/crystalsvg/32x32/actions/ark_adddir.png -share/apps/ark/icons/crystalsvg/32x32/actions/ark_addfile.png -share/apps/ark/icons/crystalsvg/32x32/actions/ark_delete.png -share/apps/ark/icons/crystalsvg/32x32/actions/ark_extract.png -share/apps/ark/icons/crystalsvg/32x32/actions/ark_view.png -share/apps/irkick/icons/hicolor/16x16/actions/irkick.png -share/apps/irkick/icons/hicolor/16x16/actions/irkickflash.png -share/apps/irkick/icons/hicolor/16x16/actions/irkickoff.png -share/apps/irkick/icons/hicolor/16x16/actions/ledblue.png -share/apps/irkick/icons/hicolor/16x16/actions/ledgreen.png -share/apps/irkick/icons/hicolor/16x16/actions/ledlightblue.png -share/apps/irkick/icons/hicolor/16x16/actions/ledlightgreen.png -share/apps/irkick/icons/hicolor/16x16/actions/ledorange.png -share/apps/irkick/icons/hicolor/16x16/actions/ledpurple.png -share/apps/irkick/icons/hicolor/16x16/actions/ledred.png -share/apps/irkick/icons/hicolor/16x16/actions/ledyellow.png -share/apps/irkick/icons/hicolor/32x32/actions/ledblue.png -share/apps/irkick/icons/hicolor/32x32/actions/ledgreen.png -share/apps/irkick/icons/hicolor/32x32/actions/ledlightblue.png -share/apps/irkick/icons/hicolor/32x32/actions/ledlightgreen.png -share/apps/irkick/icons/hicolor/32x32/actions/ledorange.png -share/apps/irkick/icons/hicolor/32x32/actions/ledpurple.png -share/apps/irkick/icons/hicolor/32x32/actions/ledred.png -share/apps/irkick/icons/hicolor/32x32/actions/ledyellow.png -share/apps/kcalc/kcalcui.rc -share/apps/kcharselect/kcharselectui.rc -share/apps/kconf_update/kcalcrc.upd -share/apps/kconf_update/kcharselect.upd -share/apps/kdf/kdfui.rc -share/apps/kdf/pics/delete.png -share/apps/kdf/pics/tick.png -share/apps/kedit/keditui.rc -share/apps/kgpg/icons/crystalsvg/16x16/actions/kgpg_key1.png -share/apps/kgpg/icons/crystalsvg/16x16/actions/kgpg_key2.png -share/apps/kgpg/icons/crystalsvg/16x16/actions/kgpg_key3.png -share/apps/kgpg/icons/crystalsvg/16x16/actions/kgpg_key4.png -share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_edit.png -share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_export.png -share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_gen.png -share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_identity.png -share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_import.png -share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_info.png -share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_photo.png -share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_show.png -share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_sign.png -share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_term.png -share/apps/kgpg/kgpg.rc -share/apps/kgpg/listkeys.rc -share/apps/kgpg/pics/kgpg_anim.gif -share/apps/kgpg/pics/kgpg_blank.png -share/apps/kgpg/pics/kgpg_docked.gif -share/apps/kgpg/pics/kgpg_docked.png -share/apps/kgpg/pics/kgpg_fill.png -share/apps/kgpg/tips -share/apps/khexedit/khexeditui.rc -share/apps/khexedit/pics/hexdrag.png -share/apps/khexedit/pics/hexmask.png -share/apps/khexedit/pics/hexwrite.png -share/apps/khexedit2part/khexedit2partui.rc -share/apps/kicker/applets/kcharselectapplet.desktop -share/apps/kicker/extensions/ksim.desktop -share/apps/kjots/kjotsui.rc -share/apps/kjots/pics/filedel.png -share/apps/konqueror/servicemenus/encryptfile.desktop -share/apps/konqueror/servicemenus/encryptfolder.desktop -share/apps/kregexpeditor/pics/altn.png -share/apps/kregexpeditor/pics/anychar.png -share/apps/kregexpeditor/pics/autoverify.png -share/apps/kregexpeditor/pics/begline.png -share/apps/kregexpeditor/pics/characters.png -share/apps/kregexpeditor/pics/compound.png -share/apps/kregexpeditor/pics/endline.png -share/apps/kregexpeditor/pics/error.png -share/apps/kregexpeditor/pics/neglookahead.png -share/apps/kregexpeditor/pics/nonwordboundary.png -share/apps/kregexpeditor/pics/poslookahead.png -share/apps/kregexpeditor/pics/repeat.png -share/apps/kregexpeditor/pics/select.png -share/apps/kregexpeditor/pics/text.png -share/apps/kregexpeditor/pics/verify.png -share/apps/kregexpeditor/pics/wordboundary.png -share/apps/kregexpeditor/predefined/general/anything.regexp -share/apps/kregexpeditor/predefined/general/spaces.regexp -share/apps/ksim/monitors/DFree.desktop -share/apps/ksim/monitors/Lm_sensors.desktop -share/apps/ksim/monitors/Net.desktop -share/apps/ksim/monitors/Snmp.desktop -share/apps/ksim/monitors/cpu.desktop -share/apps/ksim/monitors/disk.desktop -share/apps/ksim/pics/clock.png -share/apps/ksim/pics/uptime.png -share/apps/ksim/themes/ksim/bg_chart.png -share/apps/ksim/themes/ksim/bg_grid.png -share/apps/ksim/themes/ksim/bg_meter.png -share/apps/ksim/themes/ksim/bg_panel.png -share/apps/ksim/themes/ksim/frame_bottom.png -share/apps/ksim/themes/ksim/frame_left.png -share/apps/ksim/themes/ksim/frame_right.png -share/apps/ksim/themes/ksim/frame_top.png -share/apps/ksim/themes/ksim/gkrellmrc -share/apps/ksim/themes/ksim/gkrellmrc_ksim -share/apps/ksim/themes/ksim/host/bg_meter.png -share/apps/ksim/themes/ksim/krell_meter.png -share/apps/ksim/themes/ksim/krell_panel.png -share/apps/ksim/themes/ksim/krell_slider.png -share/apps/ksim/themes/ksim/mail/decal_mail.png -share/apps/ksim/themes/ksim/mail/krell_mail.png -share/apps/ksim/themes/ksim/mail/krell_mail_daemon.png -share/apps/ksim/themes/ksim/net/decal_net_leds.png -share/apps/kwalletmanager/icons/crystalsvg/22x22/actions/folder_closed.png -share/apps/kwalletmanager/icons/crystalsvg/22x22/actions/folder_open.png -share/apps/kwalletmanager/icons/crystalsvg/22x22/actions/wallet_closed.png -share/apps/kwalletmanager/icons/crystalsvg/22x22/actions/wallet_open.png -share/apps/kwalletmanager/kwalleteditor.rc -share/apps/kwalletmanager/kwalletmanager.rc -share/apps/profiles/klauncher.profile.xml -share/apps/profiles/konqueror.profile.xml -share/apps/profiles/noatun.profile.xml -share/apps/profiles/profile.dtd -share/apps/remotes/RM-0010.remote.xml -share/apps/remotes/cimr100.remote.xml -share/apps/remotes/hauppauge.remote.xml -share/apps/remotes/remote.dtd -share/apps/remotes/sherwood.remote.xml -share/apps/remotes/sonytv.remote.xml -share/autostart/irkick.desktop -share/autostart/kgpg.desktop -share/config.kcfg/ark.kcfg -share/config.kcfg/kcalc.kcfg -share/config.kcfg/kedit.kcfg -share/config.kcfg/kgpg.kcfg -share/config.kcfg/kjots.kcfg -share/config/ksim_panelextensionrc -share/doc/HTML/en/KRegExpEditor/altn.png -share/doc/HTML/en/KRegExpEditor/altntool.png -share/doc/HTML/en/KRegExpEditor/anychar.png -share/doc/HTML/en/KRegExpEditor/anychartool.png -share/doc/HTML/en/KRegExpEditor/begline.png -share/doc/HTML/en/KRegExpEditor/boundarytools.png -share/doc/HTML/en/KRegExpEditor/characters.png -share/doc/HTML/en/KRegExpEditor/charactertool.png -share/doc/HTML/en/KRegExpEditor/common -share/doc/HTML/en/KRegExpEditor/compound.png -share/doc/HTML/en/KRegExpEditor/compoundtool.png -share/doc/HTML/en/KRegExpEditor/endline.png -share/doc/HTML/en/KRegExpEditor/index.cache.bz2 -share/doc/HTML/en/KRegExpEditor/index.docbook -share/doc/HTML/en/KRegExpEditor/linestartendtool.png -share/doc/HTML/en/KRegExpEditor/lookaheadtools.png -share/doc/HTML/en/KRegExpEditor/neglookahead.png -share/doc/HTML/en/KRegExpEditor/nonwordboundary.png -share/doc/HTML/en/KRegExpEditor/poslookahead.png -share/doc/HTML/en/KRegExpEditor/repeat.png -share/doc/HTML/en/KRegExpEditor/repeattool.png -share/doc/HTML/en/KRegExpEditor/select.png -share/doc/HTML/en/KRegExpEditor/text.png -share/doc/HTML/en/KRegExpEditor/texttool.png -share/doc/HTML/en/KRegExpEditor/theEditor.png -share/doc/HTML/en/KRegExpEditor/wordboundary.png -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/irkick/common -share/doc/HTML/en/irkick/index.cache.bz2 -share/doc/HTML/en/irkick/index.docbook -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/kcharselect/common -share/doc/HTML/en/kcharselect/index.cache.bz2 -share/doc/HTML/en/kcharselect/index.docbook -share/doc/HTML/en/kcmlirc/common -share/doc/HTML/en/kcmlirc/index.cache.bz2 -share/doc/HTML/en/kcmlirc/index.docbook -share/doc/HTML/en/kcontrol/kcmlowbatcrit/common -share/doc/HTML/en/kcontrol/kcmlowbatcrit/index.cache.bz2 -share/doc/HTML/en/kcontrol/kcmlowbatcrit/index.docbook -share/doc/HTML/en/kcontrol/kcmlowbatwarn/common -share/doc/HTML/en/kcontrol/kcmlowbatwarn/index.cache.bz2 -share/doc/HTML/en/kcontrol/kcmlowbatwarn/index.docbook -share/doc/HTML/en/kcontrol/laptop/common -share/doc/HTML/en/kcontrol/laptop/index.cache.bz2 -share/doc/HTML/en/kcontrol/laptop/index.docbook -share/doc/HTML/en/kcontrol/powerctrl/common -share/doc/HTML/en/kcontrol/powerctrl/index.cache.bz2 -share/doc/HTML/en/kcontrol/powerctrl/index.docbook -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/kfloppy/common -share/doc/HTML/en/kfloppy/index.cache.bz2 -share/doc/HTML/en/kfloppy/index.docbook -share/doc/HTML/en/kgpg/common -share/doc/HTML/en/kgpg/editor.png -share/doc/HTML/en/kgpg/index.cache.bz2 -share/doc/HTML/en/kgpg/index.docbook -share/doc/HTML/en/kgpg/keygen.png -share/doc/HTML/en/kgpg/keymanage.png -share/doc/HTML/en/kgpg/keys.png -share/doc/HTML/en/kgpg/kicker.png -share/doc/HTML/en/kgpg/options.png -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/kinfocenter/blockdevices/common -share/doc/HTML/en/kinfocenter/blockdevices/index.cache.bz2 -share/doc/HTML/en/kinfocenter/blockdevices/index.docbook -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/ksim/common -share/doc/HTML/en/ksim/index.cache.bz2 -share/doc/HTML/en/ksim/index.docbook -share/doc/HTML/en/ktimer/common -share/doc/HTML/en/ktimer/index.cache.bz2 -share/doc/HTML/en/ktimer/index.docbook -share/doc/HTML/en/kwallet/common -share/doc/HTML/en/kwallet/index.cache.bz2 -share/doc/HTML/en/kwallet/index.docbook -share/icons/crystalsvg/128x128/apps/ark.png -share/icons/crystalsvg/128x128/apps/kdf.png -share/icons/crystalsvg/128x128/apps/kfloppy.png -share/icons/crystalsvg/128x128/apps/kregexpeditor.png -share/icons/crystalsvg/128x128/apps/ktimer.png -share/icons/crystalsvg/128x128/apps/kwalletmanager.png -share/icons/crystalsvg/128x128/apps/kwikdisk.png -share/icons/crystalsvg/16x16/apps/ark.png -share/icons/crystalsvg/16x16/apps/kcalc.png -share/icons/crystalsvg/16x16/apps/kcharselect.png -share/icons/crystalsvg/16x16/apps/kcmdf.png -share/icons/crystalsvg/16x16/apps/kdf.png -share/icons/crystalsvg/16x16/apps/kedit.png -share/icons/crystalsvg/16x16/apps/kfloppy.png -share/icons/crystalsvg/16x16/apps/kgpg.png -share/icons/crystalsvg/16x16/apps/khexedit.png -share/icons/crystalsvg/16x16/apps/kjots.png -share/icons/crystalsvg/16x16/apps/kregexpeditor.png -share/icons/crystalsvg/16x16/apps/ksim.png -share/icons/crystalsvg/16x16/apps/ktimer.png -share/icons/crystalsvg/16x16/apps/kwalletmanager.png -share/icons/crystalsvg/16x16/apps/kwikdisk.png -share/icons/crystalsvg/16x16/devices/ksim_cpu.png -share/icons/crystalsvg/22x22/apps/kgpg.png -share/icons/crystalsvg/22x22/apps/kwalletmanager.png -share/icons/crystalsvg/22x22/apps/kwikdisk.png -share/icons/crystalsvg/32x32/apps/ark.png -share/icons/crystalsvg/32x32/apps/kcalc.png -share/icons/crystalsvg/32x32/apps/kcmdf.png -share/icons/crystalsvg/32x32/apps/kdf.png -share/icons/crystalsvg/32x32/apps/kedit.png -share/icons/crystalsvg/32x32/apps/kfloppy.png -share/icons/crystalsvg/32x32/apps/kgpg.png -share/icons/crystalsvg/32x32/apps/khexedit.png -share/icons/crystalsvg/32x32/apps/kjots.png -share/icons/crystalsvg/32x32/apps/kregexpeditor.png -share/icons/crystalsvg/32x32/apps/ksim.png -share/icons/crystalsvg/32x32/apps/ktimer.png -share/icons/crystalsvg/32x32/apps/kwalletmanager.png -share/icons/crystalsvg/32x32/apps/kwikdisk.png -share/icons/crystalsvg/48x48/apps/ark.png -share/icons/crystalsvg/48x48/apps/kcalc.png -share/icons/crystalsvg/48x48/apps/kcharselect.png -share/icons/crystalsvg/48x48/apps/kdf.png -share/icons/crystalsvg/48x48/apps/kedit.png -share/icons/crystalsvg/48x48/apps/kfloppy.png -share/icons/crystalsvg/48x48/apps/kgpg.png -share/icons/crystalsvg/48x48/apps/khexedit.png -share/icons/crystalsvg/48x48/apps/kjots.png -share/icons/crystalsvg/48x48/apps/kregexpeditor.png -share/icons/crystalsvg/48x48/apps/ksim.png -share/icons/crystalsvg/48x48/apps/ktimer.png -share/icons/crystalsvg/48x48/apps/kwalletmanager.png -share/icons/crystalsvg/48x48/apps/kwikdisk.png -share/icons/crystalsvg/64x64/apps/ark.png -share/icons/crystalsvg/64x64/apps/kcalc.png -share/icons/crystalsvg/64x64/apps/kdf.png -share/icons/crystalsvg/64x64/apps/kedit.png -share/icons/crystalsvg/64x64/apps/kfloppy.png -share/icons/crystalsvg/64x64/apps/kjots.png -share/icons/crystalsvg/64x64/apps/kregexpeditor.png -share/icons/crystalsvg/64x64/apps/kwalletmanager.png -share/icons/crystalsvg/64x64/apps/kwikdisk.png -share/icons/crystalsvg/scalable/apps/ark.svgz -share/icons/crystalsvg/scalable/apps/kcalc.svgz -share/icons/hicolor/16x16/apps/irkick.png -share/icons/hicolor/22x22/apps/irkick.png -share/icons/hicolor/32x32/apps/irkick.png -share/icons/locolor/16x16/apps/irkick.png -share/icons/locolor/32x32/apps/irkick.png -share/services/ark_part.desktop -share/services/kbyteseditwidget.desktop -share/services/khexedit2part.desktop -share/services/kregexpeditorgui.desktop -share/services/kwallet_config.desktop -share/services/kwalletmanager_show.desktop -@dirrm share/doc/HTML/en/kwallet -@dirrm share/doc/HTML/en/ktimer -@dirrm share/doc/HTML/en/ksim -@dirrm share/doc/HTML/en/kjots -@dirrm share/doc/HTML/en/kinfocenter/blockdevices -@dirrm share/doc/HTML/en/khexedit -@dirrm share/doc/HTML/en/kgpg -@dirrm share/doc/HTML/en/kfloppy -@dirrm share/doc/HTML/en/kedit -@dirrm share/doc/HTML/en/kdf -@dirrm share/doc/HTML/en/kcontrol/powerctrl -@dirrm share/doc/HTML/en/kcontrol/laptop -@dirrm share/doc/HTML/en/kcontrol/kcmlowbatwarn -@dirrm share/doc/HTML/en/kcontrol/kcmlowbatcrit -@dirrm share/doc/HTML/en/kcmlirc -@dirrm share/doc/HTML/en/kcharselect -@dirrm share/doc/HTML/en/kcalc -@dirrm share/doc/HTML/en/irkick -@dirrm share/doc/HTML/en/ark -@dirrm share/doc/HTML/en/KRegExpEditor -@dirrm share/apps/remotes -@dirrm share/apps/kwalletmanager/icons/crystalsvg/22x22/actions -@dirrm share/apps/kwalletmanager/icons/crystalsvg/22x22 -@dirrm share/apps/kwalletmanager/icons/crystalsvg -@dirrm share/apps/kwalletmanager/icons -@dirrm share/apps/kwalletmanager -@dirrm share/apps/ksim/themes/ksim/net -@dirrm share/apps/ksim/themes/ksim/mail -@dirrm share/apps/ksim/themes/ksim/host -@dirrm share/apps/ksim/themes/ksim -@dirrm share/apps/ksim/themes -@dirrm share/apps/ksim/pics -@dirrm share/apps/ksim/monitors -@dirrm share/apps/ksim -@dirrm share/apps/kregexpeditor/predefined/general -@dirrm share/apps/kregexpeditor/predefined -@dirrm share/apps/kregexpeditor/pics -@dirrm share/apps/kregexpeditor -@dirrm share/apps/kjots/pics -@dirrm share/apps/kjots -@dirrm share/apps/khexedit2part -@dirrm share/apps/khexedit/pics -@dirrm share/apps/khexedit -@dirrm share/apps/kgpg/pics -@dirrm share/apps/kgpg/icons/crystalsvg/22x22/actions -@dirrm share/apps/kgpg/icons/crystalsvg/22x22 -@dirrm share/apps/kgpg/icons/crystalsvg/16x16/actions -@dirrm share/apps/kgpg/icons/crystalsvg/16x16 -@dirrm share/apps/kgpg/icons/crystalsvg -@dirrm share/apps/kgpg/icons -@dirrm share/apps/kgpg -@dirrm share/apps/kedit -@dirrm share/apps/kdf/pics -@dirrm share/apps/kdf -@dirrm share/apps/kcharselect -@dirrm share/apps/kcalc -@dirrm share/apps/irkick/icons/hicolor/32x32/actions -@dirrm share/apps/irkick/icons/hicolor/32x32 -@dirrm share/apps/irkick/icons/hicolor/16x16/actions -@dirrm share/apps/irkick/icons/hicolor/16x16 -@dirrm share/apps/irkick/icons/hicolor -@dirrm share/apps/irkick/icons -@dirrm share/apps/irkick -@dirrm share/apps/ark/icons/crystalsvg/32x32/actions -@dirrm share/apps/ark/icons/crystalsvg/32x32 -@dirrm share/apps/ark/icons/crystalsvg/22x22/actions -@dirrm share/apps/ark/icons/crystalsvg/22x22 -@dirrm share/apps/ark/icons/crystalsvg -@dirrm share/apps/ark/icons -@dirrm share/apps/ark -@dirrm include/ksim diff --git a/misc/konq-plugins-kde4/Makefile b/misc/konq-plugins-kde4/Makefile deleted file mode 100644 index eec9a7ecfee7..000000000000 --- a/misc/konq-plugins-kde4/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -# New ports collection makefile for: konq-plugins -# Date created: 11 February 2004 -# Whom: Michael Nottebrock <lofi@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= ${KONQPLUGINS_PORTNAME} -PORTVERSION= ${KONQPLUGINS_PORTVERSION} -PORTREVISION= ${KONQPLUGINS_PORTREVISION} -CATEGORIES= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Additonal plugins and features for Konqueror - -KDE_SPLIT= ${KONQPLUGINS_PORTNAME:S/${KDE_SPLIT_DIST}-//} -USE_KDEBASE_VER=3 -USE_KDELIBS_VER=3 - -USE_BZIP2= yes -PREFIX= ${KDE_PREFIX} -GNU_CONFIGURE= yes -USE_GMAKE= yes - -INSTALLS_SHLIB= yes -LDCONFIG_DIRS+= %%PREFIX%%/lib/kde3 - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" -.include "${.CURDIR}/../../misc/kdeaddons3/Makefile.split" -.include <bsd.port.mk> diff --git a/misc/konq-plugins-kde4/distinfo b/misc/konq-plugins-kde4/distinfo deleted file mode 100644 index 69acc35f4900..000000000000 --- a/misc/konq-plugins-kde4/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kdeaddons-3.4.2.tar.bz2) = af4fc7fa0dde8894b9d9582ecef7df2a -SIZE (KDE/kdeaddons-3.4.2.tar.bz2) = 1591335 diff --git a/misc/konq-plugins-kde4/pkg-descr b/misc/konq-plugins-kde4/pkg-descr deleted file mode 100644 index 2d5dcc9c4278..000000000000 --- a/misc/konq-plugins-kde4/pkg-descr +++ /dev/null @@ -1,20 +0,0 @@ -Additional plugins and features for Konqueror: - -- Autorefresh (webbrowser mode) -- Automatic page translation via altavista(tm) Babel Fish (webbrowser mode) -- Recovery of previously opened pages from browser crashes (webbrowser mode) -- Filter display by filetype (filemanager mode) -- DOM tree display of webpages (webbrowser mode) -- FSView - Graphical representation of files/directories for easier relative size - assessment (filemanager mode) -- Image format conversion via context menu (requires python, ImageMagick) (filemanager mode) -- Quick menu access to khtml engine settings (webbrowser mode) -- HTML image gallery creation (filemanager mode) -- 'Kuick' copy/move context menu (filemanager mode) -- Minitools (bookmarklets) support (webbrowser mode) -- Sidebar mediaplayer (filemanager mode) -- Customizable user agent string (webbrowser mode) -- Automatic HTML/CSS/Link validation via w3c services -- Webpage archiving (webbrowser mode) - -WWW: http://www.kde.org/ diff --git a/misc/konq-plugins-kde4/pkg-plist b/misc/konq-plugins-kde4/pkg-plist deleted file mode 100644 index ab7ff1a8ba05..000000000000 --- a/misc/konq-plugins-kde4/pkg-plist +++ /dev/null @@ -1,191 +0,0 @@ -bin/exif.py -bin/fsview -bin/jpegorient -bin/orient.py -lib/kde3/kcm_kuick.la -lib/kde3/kcm_kuick.so -lib/kde3/konq_sidebarnews.la -lib/kde3/konq_sidebarnews.so -lib/kde3/konqsidebar_mediaplayer.la -lib/kde3/konqsidebar_mediaplayer.so -lib/kde3/libakregatorkonqfeedicon.la -lib/kde3/libakregatorkonqfeedicon.so -lib/kde3/libakregatorkonqplugin.la -lib/kde3/libakregatorkonqplugin.so -lib/kde3/libarkplugin.la -lib/kde3/libarkplugin.so -lib/kde3/libautorefresh.la -lib/kde3/libautorefresh.so -lib/kde3/libbabelfishplugin.la -lib/kde3/libbabelfishplugin.so -lib/kde3/libcrashesplugin.la -lib/kde3/libcrashesplugin.so -lib/kde3/libdirfilterplugin.la -lib/kde3/libdirfilterplugin.so -lib/kde3/libdomtreeviewerplugin.la -lib/kde3/libdomtreeviewerplugin.so -lib/kde3/libfsviewpart.la -lib/kde3/libfsviewpart.so -lib/kde3/libkhtmlsettingsplugin.la -lib/kde3/libkhtmlsettingsplugin.so -lib/kde3/libkimgallery.la -lib/kde3/libkimgallery.so -lib/kde3/libkuickplugin.la -lib/kde3/libkuickplugin.so -lib/kde3/libminitoolsplugin.la -lib/kde3/libminitoolsplugin.so -lib/kde3/librellinksplugin.la -lib/kde3/librellinksplugin.so -lib/kde3/libsearchbarplugin.la -lib/kde3/libsearchbarplugin.so -lib/kde3/libuachangerplugin.la -lib/kde3/libuachangerplugin.so -lib/kde3/libvalidatorsplugin.la -lib/kde3/libvalidatorsplugin.so -lib/kde3/libwebarchiverplugin.la -lib/kde3/libwebarchiverplugin.so -lib/kde3/webarchivethumbnail.la -lib/kde3/webarchivethumbnail.so -share/applications/kdeaddons-konq-plugins-3.4.2 -share/applnk/.hidden/arkplugin.desktop -share/applnk/.hidden/kcmkuick.desktop -share/applnk/.hidden/kimgalleryplugin.desktop -share/applnk/.hidden/kuickplugin.desktop -share/applnk/.hidden/mediaplayerplugin.desktop -share/apps/akregator/pics/rss.png -share/apps/domtreeviewer/domtreeviewerui.rc -share/apps/fsview/fsview_part.rc -share/apps/khtml/kpartplugins/akregator_konqfeedicon.desktop -share/apps/khtml/kpartplugins/akregator_konqfeedicon.rc -share/apps/khtml/kpartplugins/autorefresh.desktop -share/apps/khtml/kpartplugins/autorefresh.rc -share/apps/khtml/kpartplugins/babelfishplugin.desktop -share/apps/khtml/kpartplugins/crashesplugin.desktop -share/apps/khtml/kpartplugins/crashesplugin.rc -share/apps/khtml/kpartplugins/domtreeviewerplugin.desktop -share/apps/khtml/kpartplugins/khtmlsettingsplugin.desktop -share/apps/khtml/kpartplugins/khtmlsettingsplugin.rc -share/apps/khtml/kpartplugins/minitoolsplugin.desktop -share/apps/khtml/kpartplugins/minitoolsplugin.rc -share/apps/khtml/kpartplugins/plugin_babelfish.desktop -share/apps/khtml/kpartplugins/plugin_babelfish.rc -share/apps/khtml/kpartplugins/plugin_domtreeviewer.desktop -share/apps/khtml/kpartplugins/plugin_domtreeviewer.rc -share/apps/khtml/kpartplugins/plugin_rellinks.desktop -share/apps/khtml/kpartplugins/plugin_rellinks.rc -share/apps/khtml/kpartplugins/plugin_validators.desktop -share/apps/khtml/kpartplugins/plugin_validators.rc -share/apps/khtml/kpartplugins/plugin_webarchiver.desktop -share/apps/khtml/kpartplugins/plugin_webarchiver.rc -share/apps/khtml/kpartplugins/uachangerplugin.desktop -share/apps/khtml/kpartplugins/uachangerplugin.rc -share/apps/khtml/kpartplugins/validatorsplugin.desktop -share/apps/khtml/kpartplugins/webarchiverplugin.desktop -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/konqsidebartng/add/mplayer_add.desktop -share/apps/konqsidebartng/add/news_add.desktop -share/apps/konqueror/icons/crystalsvg/16x16/actions/google.png -share/apps/konqueror/kpartplugins/searchbar.desktop -share/apps/konqueror/kpartplugins/searchbar.rc -share/apps/konqueror/kpartplugins/searchbarplugin.desktop -share/apps/konqueror/servicemenus/imageconverter.desktop -share/apps/konqueror/servicemenus/jpegorient.desktop -share/config.kcfg/konq_sidebarnews.kcfg -share/config/translaterc -share/doc/HTML/en/konq-plugins/babel/common -share/doc/HTML/en/konq-plugins/babel/cr16-action-babelfish.png -share/doc/HTML/en/konq-plugins/babel/index.cache.bz2 -share/doc/HTML/en/konq-plugins/babel/index.docbook -share/doc/HTML/en/konq-plugins/common -share/doc/HTML/en/konq-plugins/crashes/common -share/doc/HTML/en/konq-plugins/crashes/index.cache.bz2 -share/doc/HTML/en/konq-plugins/crashes/index.docbook -share/doc/HTML/en/konq-plugins/dirfilter/common -share/doc/HTML/en/konq-plugins/dirfilter/index.cache.bz2 -share/doc/HTML/en/konq-plugins/dirfilter/index.docbook -share/doc/HTML/en/konq-plugins/domtreeviewer/common -share/doc/HTML/en/konq-plugins/domtreeviewer/index.cache.bz2 -share/doc/HTML/en/konq-plugins/domtreeviewer/index.docbook -share/doc/HTML/en/konq-plugins/fsview/common -share/doc/HTML/en/konq-plugins/fsview/index.cache.bz2 -share/doc/HTML/en/konq-plugins/fsview/index.docbook -share/doc/HTML/en/konq-plugins/imgallery/common -share/doc/HTML/en/konq-plugins/imgallery/folders.png -share/doc/HTML/en/konq-plugins/imgallery/index.cache.bz2 -share/doc/HTML/en/konq-plugins/imgallery/index.docbook -share/doc/HTML/en/konq-plugins/imgallery/look.png -share/doc/HTML/en/konq-plugins/imgallery/thumbnails.png -share/doc/HTML/en/konq-plugins/index.cache.bz2 -share/doc/HTML/en/konq-plugins/index.docbook -share/doc/HTML/en/konq-plugins/khtmlsettings/common -share/doc/HTML/en/konq-plugins/khtmlsettings/index.cache.bz2 -share/doc/HTML/en/konq-plugins/khtmlsettings/index.docbook -share/doc/HTML/en/konq-plugins/kuick/common -share/doc/HTML/en/konq-plugins/kuick/index.cache.bz2 -share/doc/HTML/en/konq-plugins/kuick/index.docbook -share/doc/HTML/en/konq-plugins/mediaplayer/common -share/doc/HTML/en/konq-plugins/mediaplayer/index.cache.bz2 -share/doc/HTML/en/konq-plugins/mediaplayer/index.docbook -share/doc/HTML/en/konq-plugins/smbmounter/common -share/doc/HTML/en/konq-plugins/smbmounter/index.cache.bz2 -share/doc/HTML/en/konq-plugins/smbmounter/index.docbook -share/doc/HTML/en/konq-plugins/uachanger/common -share/doc/HTML/en/konq-plugins/uachanger/index.cache.bz2 -share/doc/HTML/en/konq-plugins/uachanger/index.docbook -share/doc/HTML/en/konq-plugins/validators/common -share/doc/HTML/en/konq-plugins/validators/index.cache.bz2 -share/doc/HTML/en/konq-plugins/validators/index.docbook -share/doc/HTML/en/konq-plugins/webarchiver/common -share/doc/HTML/en/konq-plugins/webarchiver/index.cache.bz2 -share/doc/HTML/en/konq-plugins/webarchiver/index.docbook -share/icons/crystalsvg/16x16/actions/babelfish.png -share/icons/crystalsvg/16x16/actions/cssvalidator.png -share/icons/crystalsvg/16x16/actions/domtreeviewer.png -share/icons/crystalsvg/16x16/actions/htmlvalidator.png -share/icons/crystalsvg/16x16/actions/imagegallery.png -share/icons/crystalsvg/16x16/actions/validators.png -share/icons/crystalsvg/16x16/actions/webarchiver.png -share/icons/crystalsvg/16x16/apps/konqsidebar_mediaplayer.png -share/icons/crystalsvg/16x16/apps/konqsidebar_news.png -share/icons/crystalsvg/22x22/actions/babelfish.png -share/icons/crystalsvg/22x22/actions/cssvalidator.png -share/icons/crystalsvg/22x22/actions/domtreeviewer.png -share/icons/crystalsvg/22x22/actions/htmlvalidator.png -share/icons/crystalsvg/22x22/actions/imagegallery.png -share/icons/crystalsvg/22x22/actions/validators.png -share/icons/crystalsvg/22x22/actions/webarchiver.png -share/icons/crystalsvg/22x22/apps/konqsidebar_mediaplayer.png -share/icons/crystalsvg/32x32/apps/konqsidebar_mediaplayer.png -share/icons/crystalsvg/48x48/apps/konqsidebar_mediaplayer.png -share/icons/hicolor/22x22/apps/fsview.png -share/icons/hicolor/32x32/apps/fsview.png -share/icons/locolor/16x16/apps/autorefresh.png -share/icons/locolor/32x32/apps/konqsidebar_mediaplayer.png -share/services/akregator_konqplugin.desktop -share/services/ark_plugin.desktop -share/services/dirfilterplugin.desktop -share/services/fsview_part.desktop -share/services/kuick_plugin.desktop -share/services/webarchivethumbnail.desktop -@dirrm share/doc/HTML/en/konq-plugins/webarchiver -@dirrm share/doc/HTML/en/konq-plugins/validators -@dirrm share/doc/HTML/en/konq-plugins/uachanger -@dirrm share/doc/HTML/en/konq-plugins/smbmounter -@dirrm share/doc/HTML/en/konq-plugins/mediaplayer -@dirrm share/doc/HTML/en/konq-plugins/kuick -@dirrm share/doc/HTML/en/konq-plugins/khtmlsettings -@dirrm share/doc/HTML/en/konq-plugins/imgallery -@dirrm share/doc/HTML/en/konq-plugins/fsview -@dirrm share/doc/HTML/en/konq-plugins/domtreeviewer -@dirrm share/doc/HTML/en/konq-plugins/dirfilter -@dirrm share/doc/HTML/en/konq-plugins/crashes -@dirrm share/doc/HTML/en/konq-plugins/babel -@dirrm share/doc/HTML/en/konq-plugins -@dirrm share/apps/konqueror/kpartplugins -@dirrm share/apps/fsview -@dirrm share/apps/domtreeviewer -@dirrm share/apps/akregator/pics -@dirrm share/apps/akregator diff --git a/misc/krecipes-kde4/Makefile b/misc/krecipes-kde4/Makefile deleted file mode 100644 index 850cd926900b..000000000000 --- a/misc/krecipes-kde4/Makefile +++ /dev/null @@ -1,57 +0,0 @@ -# ports collection makefile for: krecipies -# Date created: 19 March 2005 -# Whom: hank -# -# $FreeBSD$ -# - -PORTNAME= krecipes -PORTVERSION= 0.7.1 -CATEGORIES= misc kde -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} -DISTNAME= krecipes_beta_0.7.1 - -MAINTAINER= hank@millerfarm.com -COMMENT= Recipe database for cooks - -OPTIONS+= SQLITE "Support for sqlite backend" on -OPTIONS+= MYSQL "Support for MySQL backend" off -OPTIONS+= POSTGRESQL "Support for PostgreSQL backend" off - -USE_KDELIBS_VER= 3 -GNU_CONFIGURE= yes - -WRKSRC= ${WRKDIR}/krecipes-0.7.1 - -INSTALLS_SHLIB= yes - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 500000 -BROKEN= Does not compile. -.endif - -.if defined(WITHOUT_SQLITE) -CONFIGURE_ARGS+= --without-sqlite -PLIST_SUB+= SQLITE="@comment " -.else -LIB_DEPENDS+= sqlite3:${PORTSDIR}/databases/sqlite3 -PLIST_SUB+= SQLITE="" -.endif - -.if defined(WITH_MYSQL) -RUN_DEPENDS+= ${X11BASE}/lib/plugins/sqldrivers/libqsqlmysql.so:${PORTSDIR}/databases/qt-mysql-plugin -.endif - -.if defined(WITH_POSTGRESQL) -RUN_DEPENDS+= ${X11BASE}/lib/plugins/sqldrivers/libqsqlpsql.so:${PORTSDIR}/databases/qt-pgsql-plugin -.endif - -pre-configure: -. if defined(WITHOUT_SQLITE) && !defined(WITH_MYSQL) && !defined(WITH_POSTGRESQL) - @${ECHO} "You must have at least one database backend" - @exit 1 -. endif - -.include <bsd.port.post.mk> diff --git a/misc/krecipes-kde4/distinfo b/misc/krecipes-kde4/distinfo deleted file mode 100644 index 976ee22e750e..000000000000 --- a/misc/krecipes-kde4/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (krecipes_beta_0.7.1.tar.gz) = 6cb93fd1e055b814e9eff784987d831b -SIZE (krecipes_beta_0.7.1.tar.gz) = 5587596 diff --git a/misc/krecipes-kde4/pkg-descr b/misc/krecipes-kde4/pkg-descr deleted file mode 100644 index de0bdd74b866..000000000000 --- a/misc/krecipes-kde4/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -Port of krecipes, a program that lets you to manage your recipes, create -shopping lists, choose a recipe based on available ingredients and plan -your menu/diet in advance. - -WWW: http://krecipes.sourceforge.net/ - -- Hank -hank@millerfarm.com diff --git a/misc/krecipes-kde4/pkg-plist b/misc/krecipes-kde4/pkg-plist deleted file mode 100644 index 417ec6932271..000000000000 --- a/misc/krecipes-kde4/pkg-plist +++ /dev/null @@ -1,177 +0,0 @@ -bin/krecipes -%%SQLITE%%include/krecqsqlitedb.h -%%SQLITE%%include/krecqsqliteresult.h -lib/libkrecipesexporters.la -lib/libkrecipesexporters.so -lib/libkrecipesexporters.so.0 -%%SQLITE%%lib/libkrecqsqlite.la -%%SQLITE%%lib/libkrecqsqlite.so -%%SQLITE%%lib/libkrecqsqlite.so.0 -share/applnk/Utilities/krecipes.desktop -share/apps/krecipes/data/abbrev.txt -share/apps/krecipes/data/data.sql -share/apps/krecipes/data/samples-en_US.kreml -share/apps/krecipes/icons/crystalsvg/16x16/actions/categories.png -share/apps/krecipes/icons/crystalsvg/16x16/actions/diet.png -share/apps/krecipes/icons/crystalsvg/16x16/actions/ingredients.png -share/apps/krecipes/icons/crystalsvg/16x16/actions/properties.png -share/apps/krecipes/icons/crystalsvg/16x16/actions/trolley.png -share/apps/krecipes/icons/crystalsvg/16x16/actions/units.png -share/apps/krecipes/icons/crystalsvg/22x22/actions/categories.png -share/apps/krecipes/icons/crystalsvg/22x22/actions/diet.png -share/apps/krecipes/icons/crystalsvg/22x22/actions/ingredients.png -share/apps/krecipes/icons/crystalsvg/22x22/actions/properties.png -share/apps/krecipes/icons/crystalsvg/22x22/actions/trolley.png -share/apps/krecipes/icons/crystalsvg/22x22/actions/units.png -share/apps/krecipes/icons/crystalsvg/32x32/actions/categories.png -share/apps/krecipes/icons/crystalsvg/32x32/actions/diet.png -share/apps/krecipes/icons/crystalsvg/32x32/actions/ingredients.png -share/apps/krecipes/icons/crystalsvg/32x32/actions/krectip.png -share/apps/krecipes/icons/crystalsvg/32x32/actions/properties.png -share/apps/krecipes/icons/crystalsvg/32x32/actions/trolley.png -share/apps/krecipes/icons/crystalsvg/32x32/actions/units.png -share/apps/krecipes/icons/crystalsvg/48x48/actions/categories.png -share/apps/krecipes/icons/crystalsvg/48x48/actions/diet.png -share/apps/krecipes/icons/crystalsvg/48x48/actions/ingredients.png -share/apps/krecipes/icons/crystalsvg/48x48/actions/properties.png -share/apps/krecipes/icons/crystalsvg/48x48/actions/trolley.png -share/apps/krecipes/icons/crystalsvg/48x48/actions/units.png -share/apps/krecipes/krecipesui.rc -share/apps/krecipes/layouts/default.klo -share/apps/krecipes/layouts/one_column.klo -share/apps/krecipes/pics/dbpermissions.png -share/apps/krecipes/pics/menubg.png -share/apps/krecipes/pics/network.png -share/apps/krecipes/pics/recipes.png -share/apps/krecipes/pics/save.png -share/apps/krecipes/pics/startlogo.png -share/apps/krecipes/pics/wizard.png -share/doc/HTML/en/krecipes/adv-recipe-found.png -share/doc/HTML/en/krecipes/authors-adding.png -share/doc/HTML/en/krecipes/back.png -share/doc/HTML/en/krecipes/categories.png -share/doc/HTML/en/krecipes/clear_left.png -share/doc/HTML/en/krecipes/common -share/doc/HTML/en/krecipes/computer3.png -share/doc/HTML/en/krecipes/configure-shortcuts-adv.png -share/doc/HTML/en/krecipes/configure-shortcuts-basic.png -share/doc/HTML/en/krecipes/configure-shortcuts.png -share/doc/HTML/en/krecipes/configure-toolbars.png -share/doc/HTML/en/krecipes/diet-help.png -share/doc/HTML/en/krecipes/down.png -share/doc/HTML/en/krecipes/enter-recipe-tabs.png -share/doc/HTML/en/krecipes/filenew.png -share/doc/HTML/en/krecipes/formatting.png -share/doc/HTML/en/krecipes/forward.png -share/doc/HTML/en/krecipes/import-other-sql.png -share/doc/HTML/en/krecipes/import-recipe-screen.png -share/doc/HTML/en/krecipes/import-settings.png -share/doc/HTML/en/krecipes/import-sqlite.png -share/doc/HTML/en/krecipes/index.cache.bz2 -share/doc/HTML/en/krecipes/index.docbook -share/doc/HTML/en/krecipes/ingredient-match.png -share/doc/HTML/en/krecipes/ingredients.png -share/doc/HTML/en/krecipes/krecipes-main.png -share/doc/HTML/en/krecipes/krectip.png -share/doc/HTML/en/krecipes/locationbar_erase.png -share/doc/HTML/en/krecipes/menu.png -share/doc/HTML/en/krecipes/no.png -share/doc/HTML/en/krecipes/page-setup.png -share/doc/HTML/en/krecipes/prep-method.png -share/doc/HTML/en/krecipes/properties.png -share/doc/HTML/en/krecipes/recipe-description-tab.png -share/doc/HTML/en/krecipes/recipe-ingredients-tab.png -share/doc/HTML/en/krecipes/recipe-instructions-tab.png -share/doc/HTML/en/krecipes/server-settings.png -share/doc/HTML/en/krecipes/shop-list.png -share/doc/HTML/en/krecipes/unit-conversions.png -share/doc/HTML/en/krecipes/units.png -share/doc/HTML/en/krecipes/up.png -share/doc/HTML/pt/krecipes/common -share/doc/HTML/pt/krecipes/index.cache.bz2 -share/doc/HTML/pt/krecipes/index.docbook -share/doc/HTML/sv/krecipes/adv-recipe-found.png -share/doc/HTML/sv/krecipes/authors-adding.png -share/doc/HTML/sv/krecipes/categories.png -share/doc/HTML/sv/krecipes/common -share/doc/HTML/sv/krecipes/configure-shortcuts-adv.png -share/doc/HTML/sv/krecipes/configure-shortcuts-basic.png -share/doc/HTML/sv/krecipes/configure-shortcuts.png -share/doc/HTML/sv/krecipes/configure-toolbars.png -share/doc/HTML/sv/krecipes/diet-help.png -share/doc/HTML/sv/krecipes/enter-recipe-tabs.png -share/doc/HTML/sv/krecipes/formatting.png -share/doc/HTML/sv/krecipes/import-other-sql.png -share/doc/HTML/sv/krecipes/import-recipe-screen.png -share/doc/HTML/sv/krecipes/import-settings.png -share/doc/HTML/sv/krecipes/import-sqlite.png -share/doc/HTML/sv/krecipes/index.cache.bz2 -share/doc/HTML/sv/krecipes/index.docbook -share/doc/HTML/sv/krecipes/ingredient-match.png -share/doc/HTML/sv/krecipes/ingredients.png -share/doc/HTML/sv/krecipes/krecipes-main.png -share/doc/HTML/sv/krecipes/menu.png -share/doc/HTML/sv/krecipes/page-setup.png -share/doc/HTML/sv/krecipes/prep-method.png -share/doc/HTML/sv/krecipes/properties.png -share/doc/HTML/sv/krecipes/recipe-description-tab.png -share/doc/HTML/sv/krecipes/recipe-ingredients-tab.png -share/doc/HTML/sv/krecipes/recipe-instructions-tab.png -share/doc/HTML/sv/krecipes/server-settings.png -share/doc/HTML/sv/krecipes/shop-list.png -share/doc/HTML/sv/krecipes/unit-conversions.png -share/doc/HTML/sv/krecipes/units.png -share/icons/hicolor/128x128/apps/krecipes.png -share/icons/hicolor/16x16/apps/krecipes.png -share/icons/hicolor/22x22/apps/krecipes.png -share/icons/hicolor/32x32/apps/krecipes.png -share/icons/hicolor/48x48/apps/krecipes.png -share/icons/hicolor/64x64/apps/krecipes.png -share/locale/az/LC_MESSAGES/krecipes.mo -share/locale/bg/LC_MESSAGES/krecipes.mo -share/locale/br/LC_MESSAGES/krecipes.mo -share/locale/ca/LC_MESSAGES/krecipes.mo -share/locale/cy/LC_MESSAGES/krecipes.mo -share/locale/da/LC_MESSAGES/krecipes.mo -share/locale/de/LC_MESSAGES/krecipes.mo -share/locale/en_GB/LC_MESSAGES/krecipes.mo -share/locale/es/LC_MESSAGES/krecipes.mo -share/locale/et/LC_MESSAGES/krecipes.mo -share/locale/fi/LC_MESSAGES/krecipes.mo -share/locale/fr/LC_MESSAGES/krecipes.mo -share/locale/ga/LC_MESSAGES/krecipes.mo -share/locale/is/LC_MESSAGES/krecipes.mo -share/locale/it/LC_MESSAGES/krecipes.mo -share/locale/lt/LC_MESSAGES/krecipes.mo -share/locale/mt/LC_MESSAGES/krecipes.mo -share/locale/nb/LC_MESSAGES/krecipes.mo -share/locale/nl/LC_MESSAGES/krecipes.mo -share/locale/pl/LC_MESSAGES/krecipes.mo -share/locale/pt/LC_MESSAGES/krecipes.mo -share/locale/pt_BR/LC_MESSAGES/krecipes.mo -share/locale/ro/LC_MESSAGES/krecipes.mo -share/locale/ru/LC_MESSAGES/krecipes.mo -share/locale/sl/LC_MESSAGES/krecipes.mo -share/locale/sr/LC_MESSAGES/krecipes.mo -share/locale/sv/LC_MESSAGES/krecipes.mo -share/locale/ta/LC_MESSAGES/krecipes.mo -share/locale/tr/LC_MESSAGES/krecipes.mo -share/nls/POSIX -share/nls/en_US.US-ASCII -@dirrm /share/doc/HTML/sv/krecipes -@dirrm /share/doc/HTML/pt/krecipes -@dirrm /share/doc/HTML/en/krecipes -@dirrm /share/apps/krecipes/pics -@dirrm /share/apps/krecipes/layouts -@dirrm /share/apps/krecipes/icons/crystalsvg/48x48/actions -@dirrm /share/apps/krecipes/icons/crystalsvg/48x48 -@dirrm /share/apps/krecipes/icons/crystalsvg/32x32/actions -@dirrm /share/apps/krecipes/icons/crystalsvg/32x32 -@dirrm /share/apps/krecipes/icons/crystalsvg/22x22/actions -@dirrm /share/apps/krecipes/icons/crystalsvg/22x22 -@dirrm /share/apps/krecipes/icons/crystalsvg/16x16/actions -@dirrm /share/apps/krecipes/icons/crystalsvg/16x16 -@dirrm /share/apps/krecipes/icons/crystalsvg -@dirrm /share/apps/krecipes/icons -@dirrm /share/apps/krecipes/data -@dirrm /share/apps/krecipes diff --git a/misc/libpri-bristuff/Makefile b/misc/libpri-bristuff/Makefile deleted file mode 100644 index 24ae218b760e..000000000000 --- a/misc/libpri-bristuff/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -# New ports collection makefile for: libpri -# Date created: 25 Oct 2004 -# Whom: Alexander Timoshenko <gonzo@univ.kiev.ua> -# -# $FreeBSD$ -# - -PORTNAME= libpri -PORTVERSION= 1.0.9 -CATEGORIES= misc -MASTER_SITES= ftp://ftp.asterisk.org/pub/libpri/ \ - ftp://ftp.asterisk.org/pub/libpri/old/ - -PATCHFILES= ${PORTNAME}-1.0.8-${BRIVER}.patch.gz -PATCH_SITES= ${MASTER_SITE_LOCAL} -PATCH_SITE_SUBDIR= fjoe -PATCH_DIST_STRIP= -p1 - -MAINTAINER= gonzo@univ.kiev.ua -COMMENT= A C implementation of the Primary Rate ISDN specification - -BRIVER= bristuff-0.2.0-RC8h -USE_GMAKE= yes -INSTALLS_SHLIB= yes - -.include <bsd.port.pre.mk> - -.if ${ARCH} == "alpha" -BROKEN= "Does not compile on alpha" -.endif - -.include <bsd.port.post.mk> diff --git a/misc/libpri-bristuff/distinfo b/misc/libpri-bristuff/distinfo deleted file mode 100644 index 9941df0e5ed5..000000000000 --- a/misc/libpri-bristuff/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -MD5 (libpri-1.0.9.tar.gz) = c0652944376f6bbe035ec578ff445625 -SIZE (libpri-1.0.9.tar.gz) = 55801 -MD5 (libpri-1.0.8-bristuff-0.2.0-RC8h.patch.gz) = 681ad82dfc6565e61c11467199ab987b -SIZE (libpri-1.0.8-bristuff-0.2.0-RC8h.patch.gz) = 30486 diff --git a/misc/libpri-bristuff/files/patch-Makefile b/misc/libpri-bristuff/files/patch-Makefile deleted file mode 100644 index 6ab85c668787..000000000000 --- a/misc/libpri-bristuff/files/patch-Makefile +++ /dev/null @@ -1,63 +0,0 @@ ---- Makefile.orig Fri Feb 25 06:05:47 2005 -+++ Makefile Fri Feb 25 06:08:51 2005 -@@ -33,11 +33,11 @@ - TOBJS=testpri.o - T2OBJS=testprilib.o - STATIC_LIBRARY=libpri.a --DYNAMIC_LIBRARY=libpri.so.1.0 -+DYNAMIC_LIBRARY=libpri.so.1 - STATIC_OBJS=pri.o q921.o prisched.o q931.o - DYNAMIC_OBJS=pri.lo q921.lo prisched.lo q931.lo --CFLAGS=-Wall -Wstrict-prototypes -Wmissing-prototypes -g $(ALERTING) $(LIBPRI_COUNTERS) --INSTALL_PREFIX= -+CFLAGS+=-Wall -Wstrict-prototypes -Wmissing-prototypes $(ALERTING) $(LIBPRI_COUNTERS) -+INSTALL_PREFIX=$(PREFIX) - ifeq (${OSARCH},Linux) - LDCONFIG_FLAGS=-n - else -@@ -62,21 +62,19 @@ - @cvs update -d - - install: $(STATIC_LIBRARY) $(DYNAMIC_LIBRARY) -- mkdir -p $(INSTALL_PREFIX)/usr/lib -- mkdir -p $(INSTALL_PREFIX)/usr/include -- install -m 644 libpri.h $(INSTALL_PREFIX)/usr/include -- install -m 755 $(DYNAMIC_LIBRARY) $(INSTALL_PREFIX)/usr/lib -- if [ -x /usr/sbin/sestatus ] && ( /usr/sbin/sestatus | grep "SELinux status:" | grep -q "enabled"); then restorecon -v $(INSTALL_PREFIX)/$(INSTALL_BASE)/lib/$(DYNAMIC_LIBRARY); fi -- ( cd $(INSTALL_PREFIX)/usr/lib ; ln -sf libpri.so.1 libpri.so ) -- install -m 644 $(STATIC_LIBRARY) $(INSTALL_PREFIX)/usr/lib -- /sbin/ldconfig -+ mkdir -p $(INSTALL_PREFIX)/lib -+ mkdir -p $(INSTALL_PREFIX)/include -+ $(BSD_INSTALL_DATA) libpri.h $(INSTALL_PREFIX)/include -+ $(BSD_INSTALL_PROGRAM) $(DYNAMIC_LIBRARY) $(INSTALL_PREFIX)/lib -+ ( cd $(INSTALL_PREFIX)/lib ; ln -sf libpri.so.1 libpri.so ) -+ $(BSD_INSTALL_DATA) $(STATIC_LIBRARY) $(INSTALL_PREFIX)/lib - - uninstall: - @echo "Removing Libpri" -- rm -f $(INSTALL_PREFIX)/usr/lib/libpri.so.1.0 -- rm -f $(INSTALL_PREFIX)/usr/lib/libpri.so -- rm -f $(INSTALL_PREFIX)/usr/lib/libpri.a -- rm -f $(INSTALL_PREFIX)/usr/include/libpri.h -+ rm -f $(INSTALL_PREFIX)/lib/libpri.so.1 -+ rm -f $(INSTALL_PREFIX)/lib/libpri.so -+ rm -f $(INSTALL_PREFIX)/lib/libpri.a -+ rm -f $(INSTALL_PREFIX)/include/libpri.h - - pritest: pritest.o - $(CC) -o pritest pritest.o -L. -lpri -lzap $(CFLAGS) -@@ -101,11 +99,11 @@ - - $(DYNAMIC_LIBRARY): $(DYNAMIC_OBJS) - $(CC) -shared -Wl,-soname,libpri.so.1 -o $@ $(DYNAMIC_OBJS) -- /sbin/ldconfig $(LDCONFIG_FLAGS) . -+ #/sbin/ldconfig $(LDCONFIG_FLAGS) . - ln -sf libpri.so.1 libpri.so - - clean: -- rm -f *.o *.so *.lo *.so.1 *.so.1.0 -+ rm -f *.o *.so *.lo *.so.1 - rm -f testpri testprilib $(STATIC_LIBRARY) $(DYNAMIC_LIBRARY) - rm -f pritest pridump - rm -f .depend diff --git a/misc/libpri-bristuff/pkg-descr b/misc/libpri-bristuff/pkg-descr deleted file mode 100644 index 22991e0164ee..000000000000 --- a/misc/libpri-bristuff/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -The libpri is a C implementation of the Primary Rate ISDN specification. -It was based on the Bellcore specification SR-NWT-002343 for National -ISDN. As of May 12, 2001, it has been tested work with NI-2, Nortel DMS-100, -and Lucent 5E C ustom protocols on switches from Nortel and Lucent. diff --git a/misc/libpri-bristuff/pkg-plist b/misc/libpri-bristuff/pkg-plist deleted file mode 100644 index ccbeae646ef3..000000000000 --- a/misc/libpri-bristuff/pkg-plist +++ /dev/null @@ -1,4 +0,0 @@ -include/libpri.h -lib/libpri.a -lib/libpri.so.1 -lib/libpri.so diff --git a/misc/libpri2/Makefile b/misc/libpri2/Makefile deleted file mode 100644 index 24ae218b760e..000000000000 --- a/misc/libpri2/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -# New ports collection makefile for: libpri -# Date created: 25 Oct 2004 -# Whom: Alexander Timoshenko <gonzo@univ.kiev.ua> -# -# $FreeBSD$ -# - -PORTNAME= libpri -PORTVERSION= 1.0.9 -CATEGORIES= misc -MASTER_SITES= ftp://ftp.asterisk.org/pub/libpri/ \ - ftp://ftp.asterisk.org/pub/libpri/old/ - -PATCHFILES= ${PORTNAME}-1.0.8-${BRIVER}.patch.gz -PATCH_SITES= ${MASTER_SITE_LOCAL} -PATCH_SITE_SUBDIR= fjoe -PATCH_DIST_STRIP= -p1 - -MAINTAINER= gonzo@univ.kiev.ua -COMMENT= A C implementation of the Primary Rate ISDN specification - -BRIVER= bristuff-0.2.0-RC8h -USE_GMAKE= yes -INSTALLS_SHLIB= yes - -.include <bsd.port.pre.mk> - -.if ${ARCH} == "alpha" -BROKEN= "Does not compile on alpha" -.endif - -.include <bsd.port.post.mk> diff --git a/misc/libpri2/distinfo b/misc/libpri2/distinfo deleted file mode 100644 index 9941df0e5ed5..000000000000 --- a/misc/libpri2/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -MD5 (libpri-1.0.9.tar.gz) = c0652944376f6bbe035ec578ff445625 -SIZE (libpri-1.0.9.tar.gz) = 55801 -MD5 (libpri-1.0.8-bristuff-0.2.0-RC8h.patch.gz) = 681ad82dfc6565e61c11467199ab987b -SIZE (libpri-1.0.8-bristuff-0.2.0-RC8h.patch.gz) = 30486 diff --git a/misc/libpri2/files/patch-Makefile b/misc/libpri2/files/patch-Makefile deleted file mode 100644 index 6ab85c668787..000000000000 --- a/misc/libpri2/files/patch-Makefile +++ /dev/null @@ -1,63 +0,0 @@ ---- Makefile.orig Fri Feb 25 06:05:47 2005 -+++ Makefile Fri Feb 25 06:08:51 2005 -@@ -33,11 +33,11 @@ - TOBJS=testpri.o - T2OBJS=testprilib.o - STATIC_LIBRARY=libpri.a --DYNAMIC_LIBRARY=libpri.so.1.0 -+DYNAMIC_LIBRARY=libpri.so.1 - STATIC_OBJS=pri.o q921.o prisched.o q931.o - DYNAMIC_OBJS=pri.lo q921.lo prisched.lo q931.lo --CFLAGS=-Wall -Wstrict-prototypes -Wmissing-prototypes -g $(ALERTING) $(LIBPRI_COUNTERS) --INSTALL_PREFIX= -+CFLAGS+=-Wall -Wstrict-prototypes -Wmissing-prototypes $(ALERTING) $(LIBPRI_COUNTERS) -+INSTALL_PREFIX=$(PREFIX) - ifeq (${OSARCH},Linux) - LDCONFIG_FLAGS=-n - else -@@ -62,21 +62,19 @@ - @cvs update -d - - install: $(STATIC_LIBRARY) $(DYNAMIC_LIBRARY) -- mkdir -p $(INSTALL_PREFIX)/usr/lib -- mkdir -p $(INSTALL_PREFIX)/usr/include -- install -m 644 libpri.h $(INSTALL_PREFIX)/usr/include -- install -m 755 $(DYNAMIC_LIBRARY) $(INSTALL_PREFIX)/usr/lib -- if [ -x /usr/sbin/sestatus ] && ( /usr/sbin/sestatus | grep "SELinux status:" | grep -q "enabled"); then restorecon -v $(INSTALL_PREFIX)/$(INSTALL_BASE)/lib/$(DYNAMIC_LIBRARY); fi -- ( cd $(INSTALL_PREFIX)/usr/lib ; ln -sf libpri.so.1 libpri.so ) -- install -m 644 $(STATIC_LIBRARY) $(INSTALL_PREFIX)/usr/lib -- /sbin/ldconfig -+ mkdir -p $(INSTALL_PREFIX)/lib -+ mkdir -p $(INSTALL_PREFIX)/include -+ $(BSD_INSTALL_DATA) libpri.h $(INSTALL_PREFIX)/include -+ $(BSD_INSTALL_PROGRAM) $(DYNAMIC_LIBRARY) $(INSTALL_PREFIX)/lib -+ ( cd $(INSTALL_PREFIX)/lib ; ln -sf libpri.so.1 libpri.so ) -+ $(BSD_INSTALL_DATA) $(STATIC_LIBRARY) $(INSTALL_PREFIX)/lib - - uninstall: - @echo "Removing Libpri" -- rm -f $(INSTALL_PREFIX)/usr/lib/libpri.so.1.0 -- rm -f $(INSTALL_PREFIX)/usr/lib/libpri.so -- rm -f $(INSTALL_PREFIX)/usr/lib/libpri.a -- rm -f $(INSTALL_PREFIX)/usr/include/libpri.h -+ rm -f $(INSTALL_PREFIX)/lib/libpri.so.1 -+ rm -f $(INSTALL_PREFIX)/lib/libpri.so -+ rm -f $(INSTALL_PREFIX)/lib/libpri.a -+ rm -f $(INSTALL_PREFIX)/include/libpri.h - - pritest: pritest.o - $(CC) -o pritest pritest.o -L. -lpri -lzap $(CFLAGS) -@@ -101,11 +99,11 @@ - - $(DYNAMIC_LIBRARY): $(DYNAMIC_OBJS) - $(CC) -shared -Wl,-soname,libpri.so.1 -o $@ $(DYNAMIC_OBJS) -- /sbin/ldconfig $(LDCONFIG_FLAGS) . -+ #/sbin/ldconfig $(LDCONFIG_FLAGS) . - ln -sf libpri.so.1 libpri.so - - clean: -- rm -f *.o *.so *.lo *.so.1 *.so.1.0 -+ rm -f *.o *.so *.lo *.so.1 - rm -f testpri testprilib $(STATIC_LIBRARY) $(DYNAMIC_LIBRARY) - rm -f pritest pridump - rm -f .depend diff --git a/misc/libpri2/pkg-descr b/misc/libpri2/pkg-descr deleted file mode 100644 index 22991e0164ee..000000000000 --- a/misc/libpri2/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -The libpri is a C implementation of the Primary Rate ISDN specification. -It was based on the Bellcore specification SR-NWT-002343 for National -ISDN. As of May 12, 2001, it has been tested work with NI-2, Nortel DMS-100, -and Lucent 5E C ustom protocols on switches from Nortel and Lucent. diff --git a/misc/libpri2/pkg-plist b/misc/libpri2/pkg-plist deleted file mode 100644 index ccbeae646ef3..000000000000 --- a/misc/libpri2/pkg-plist +++ /dev/null @@ -1,4 +0,0 @@ -include/libpri.h -lib/libpri.a -lib/libpri.so.1 -lib/libpri.so diff --git a/misc/logsurfer+/Makefile b/misc/logsurfer+/Makefile deleted file mode 100644 index accb8a9b33c3..000000000000 --- a/misc/logsurfer+/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: logsurfer -# Date created: 28 Jul 1996 -# Whom: shanee@augusta.de -# -# $FreeBSD$ -# - -PORTNAME= logsurfer -PORTVERSION= 1.5b -CATEGORIES= misc -MASTER_SITES= ftp://ftp.cert.dfn.de/pub/tools/audit/logsurfer/%SUBDIR%/ \ - ftp://ftp.tuwien.ac.at/infosys/security/dfn/tools/audit/logsurfer/%SUBDIR%/ -MASTER_SITE_SUBDIR= . old -EXTRACT_SUFX= .tar - -MAINTAINER= ports@FreeBSD.org -COMMENT= Process logfiles and conditionally perform certain actions - -GNU_CONFIGURE= YES -CONFIGURE_ARGS+= --with-etc-dir=${PREFIX}/etc - -MAN1= logsurfer.1 -MAN4= logsurfer.conf.4 - -post-install: - @${MKDIR} ${PREFIX}/share/examples/logsurfer - ${INSTALL_DATA} ${WRKSRC}/config-examples/README \ - ${PREFIX}/share/examples/logsurfer -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for file in ChangeLog README - ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/misc/logsurfer+/distinfo b/misc/logsurfer+/distinfo deleted file mode 100644 index 9ca759bad49b..000000000000 --- a/misc/logsurfer+/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (logsurfer-1.5b.tar) = ade77bed7bc3c73fd26039e69c4937f4 -SIZE (logsurfer-1.5b.tar) = 703488 diff --git a/misc/logsurfer+/files/patch-ac b/misc/logsurfer+/files/patch-ac deleted file mode 100644 index 4bcb1e4a400a..000000000000 --- a/misc/logsurfer+/files/patch-ac +++ /dev/null @@ -1,10 +0,0 @@ ---- src/logsurfer.c.orig Mon Apr 8 10:15:53 1996 -+++ src/logsurfer.c Fri May 28 14:28:06 1999 -@@ -382,6 +382,7 @@ - (void) fprintf(stderr, "unable to allocate memory for logline_buffer\n"); - exit(99); - } -+ logline_buffer[0]='\0'; - - while ( (opt = getopt(argc, argv, "fc:d:l:p:r:s")) != EOF ) - switch(opt) { diff --git a/misc/logsurfer+/pkg-descr b/misc/logsurfer+/pkg-descr deleted file mode 100644 index 55333f8a7359..000000000000 --- a/misc/logsurfer+/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Logsurfer is a program that works on single textlines from -a logfile (or from standard input). It compares each line -against regular expressions of a set of "rules" and per- -forms certain actions that are defined for this match. - -WWW: http://www.cert.dfn.de/eng/logsurf/ diff --git a/misc/logsurfer+/pkg-plist b/misc/logsurfer+/pkg-plist deleted file mode 100644 index 8d527a7b5130..000000000000 --- a/misc/logsurfer+/pkg-plist +++ /dev/null @@ -1,6 +0,0 @@ -bin/logsurfer -%%PORTDOCS%%share/doc/logsurfer/ChangeLog -%%PORTDOCS%%share/doc/logsurfer/README -%%PORTDOCS%%@dirrm share/doc/logsurfer -share/examples/logsurfer/README -@dirrm share/examples/logsurfer diff --git a/misc/sword15/Makefile b/misc/sword15/Makefile deleted file mode 100644 index 54057b5daf8e..000000000000 --- a/misc/sword15/Makefile +++ /dev/null @@ -1,60 +0,0 @@ -# New ports collection makefile for: sword -# Date created: 22 may 2001 -# Whom: Willem van Engen <wvengen@stack.nl> -# -# $FreeBSD$ -# - -PORTNAME= sword -PORTVERSION= 1.5.7 -CATEGORIES= misc -MASTER_SITES= ftp://ftp.crosswire.org/pub/sword/source/v1.5/ \ - ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} -# 1.5.7a version fixes some build problems. Since there was no FreeBSD -# version of 1.5.7 it's really no problem to put the a here. WRKSRC is also -# just work/sword-1.5.7 -DISTFILES= ${DISTNAME}a${EXTRACT_SUFX} - -MAINTAINER= wvengen@stack.nl -COMMENT= A project framework for manipulating Bible texts - -USE_GNOME= pkgconfig -USE_GMAKE= yes -USE_REINPLACE= yes -GNU_CONFIGURE= yes -CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ARGS+= --without-conf -INSTALLS_SHLIB= yes - -.if defined(WITHOUT_CURL) -CONFIGURE_ARGS+= --without-curl -PLIST_SUB+= INSTALLMGR="@comment " -.else -LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl -CONFIGURE_ARGS+= --with-curl -PLIST_SUB+= INSTALLMGR="" - -pre-everything:: - @${ECHO_CMD} "Define WITHOUT_CURL to disable remote fetch (curl) support in the installmanager" -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|$$(libdir)/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ - ${WRKSRC}/Makefile.in - -post-install: - @${MKDIR} -p ${PREFIX}/share/sword/mods.d -.if !exists(${PREFIX}/etc/sword.conf) - @(cd ${WRKSRC} && make install_config) -.else - @${ECHO_CMD} "Config file not installed since ${PREFIX}/etc/sword.conf already exists." - @${ECHO_CMD} "Please check that DataPath points to your modules (default ${DATADIR})."; -.endif - @${ECHO_CMD} "" - @${CAT} ${PKGMESSAGE} - -register: - @(cd ${WRKSRC} && make register) - -.include <bsd.port.mk> diff --git a/misc/sword15/distinfo b/misc/sword15/distinfo deleted file mode 100644 index d1c91c5f93db..000000000000 --- a/misc/sword15/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (sword-1.5.7a.tar.gz) = e77801ac7abb7a940eb8a75d725e346f -SIZE (sword-1.5.7a.tar.gz) = 1535217 diff --git a/misc/sword15/files/patch-configure b/misc/sword15/files/patch-configure deleted file mode 100644 index aa6514ab106b..000000000000 --- a/misc/sword15/files/patch-configure +++ /dev/null @@ -1,13 +0,0 @@ ---- configure.orig Tue Aug 17 13:48:32 2004 -+++ configure Tue Aug 17 13:49:13 2004 -@@ -20183,8 +20183,8 @@ - echo "curl found - remote install options available" - CURL_CFLAGS=`$CURL_CONFIG --cflags` - CURL_LIBS=`$CURL_CONFIG --libs` -- CXXFLAGS="$CXXFLAGS -DCURLAVAILABLE" -- CFLAGS="$CFLAGS -DCURLAVAILABLE" -+ CXXFLAGS="$CXXFLAGS -DCURLAVAILABLE $CURL_CFLAGS" -+ CFLAGS="$CFLAGS -DCURLAVAILABLE $CURL_CFLAGS" - fi - fi - diff --git a/misc/sword15/files/patch-configure.ac b/misc/sword15/files/patch-configure.ac deleted file mode 100644 index 64a367923b83..000000000000 --- a/misc/sword15/files/patch-configure.ac +++ /dev/null @@ -1,13 +0,0 @@ ---- configure.ac.orig Tue Aug 17 13:48:26 2004 -+++ configure.ac Tue Aug 17 13:48:53 2004 -@@ -151,8 +151,8 @@ - echo "curl found - remote install options available" - CURL_CFLAGS=`$CURL_CONFIG --cflags` - CURL_LIBS=`$CURL_CONFIG --libs` -- CXXFLAGS="$CXXFLAGS -DCURLAVAILABLE" -- CFLAGS="$CFLAGS -DCURLAVAILABLE" -+ CXXFLAGS="$CXXFLAGS -DCURLAVAILABLE $CURL_CFLAGS" -+ CFLAGS="$CFLAGS -DCURLAVAILABLE $CURL_CFLAGS" - fi - fi - diff --git a/misc/sword15/files/patch-include::ftpparse.h b/misc/sword15/files/patch-include::ftpparse.h deleted file mode 100644 index e135d22a25e8..000000000000 --- a/misc/sword15/files/patch-include::ftpparse.h +++ /dev/null @@ -1,19 +0,0 @@ ---- include/ftpparse.h.orig Tue Aug 17 10:49:11 2004 -+++ include/ftpparse.h Tue Aug 17 10:49:24 2004 -@@ -1,7 +1,6 @@ - #ifndef FTPPARSE_H - #define FTPPARSE_H - --#include <time.h> - - /* - ftpparse(&fp,buf,len) tries to parse one line of LIST output. -@@ -25,7 +24,7 @@ - int sizetype; - long size; /* number of octets */ - int mtimetype; -- time_t mtime; /* modification time */ -+ long mtime; /* modification time */ - int idtype; - char *id; /* not necessarily 0-terminated */ - int idlen; diff --git a/misc/sword15/files/patch-src::utilfuns::ftpparse.c b/misc/sword15/files/patch-src::utilfuns::ftpparse.c deleted file mode 100644 index ab8a3eab8e85..000000000000 --- a/misc/sword15/files/patch-src::utilfuns::ftpparse.c +++ /dev/null @@ -1,10 +0,0 @@ ---- src/utilfuns/ftpparse.c.orig Thu Feb 19 23:22:11 2004 -+++ src/utilfuns/ftpparse.c Thu Feb 19 23:22:19 2004 -@@ -21,6 +21,7 @@ - NCSA Telnet FTP server. Has LIST = NLST (and bad NLST for directories). - */ - -+#include <time.h> - #include <ftpparse.h> - - static long totai(long year,long month,long mday) diff --git a/misc/sword15/pkg-descr b/misc/sword15/pkg-descr deleted file mode 100644 index 288424dfcb59..000000000000 --- a/misc/sword15/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -The SWORD Project is an effort to create an ever expanding software package -for research and study of God and His Word. The SWORD Bible Framework allows -easy manipulation of Bible texts, commentaries, lexicons, dictionaries, etc. -Many frontends are build using this framework. An installed module set may be -shared between any frontend using the framework. - -WWW: http://www.crosswire.org/ - -- Willem van Engen <wvengen@stack.nl> diff --git a/misc/sword15/pkg-message b/misc/sword15/pkg-message deleted file mode 100644 index 541b0da7b4d2..000000000000 --- a/misc/sword15/pkg-message +++ /dev/null @@ -1,15 +0,0 @@ -To use sword, you need to have bible, commentary and/or lexicon modules. You -can install those from the crosswire website in two ways. If you live in a -persecuted country however and do not wish to risk detection, you should *not* -try this. - 1. Use installmgr (doesn't work when port is built WITHOUT_CURL). E.g.: - # installmgr -init - # installmgr -r crosswire - # installmgr -ri crosswire ASV - See `installmgr --help` for details. - 2. Download raw zip-archives from - http://www.crosswire.org/sword/modules/ - and unpack them in PREFIX/share/sword. - -You probabely want to install a bible-application that uses sword, like -cheatah, bibletime or gnomesword. diff --git a/misc/sword15/pkg-plist b/misc/sword15/pkg-plist deleted file mode 100644 index a236dc5b2e96..000000000000 --- a/misc/sword15/pkg-plist +++ /dev/null @@ -1,191 +0,0 @@ -etc/sword.conf -bin/addld -bin/diatheke -bin/imp2ld -bin/imp2vs -bin/installmgr -bin/mod2imp -bin/mod2osis -bin/mod2vpl -bin/mod2zmod -bin/osis2mod -bin/vpl2mod -bin/vs2osisref -include/sword/Greek2Greek.h -include/sword/GreekChars.h -include/sword/canon.h -include/sword/cipherfil.h -include/sword/defs.h -include/sword/echomod.h -include/sword/encfiltmgr.h -include/sword/entriesblk.h -include/sword/femain.h -include/sword/filemgr.h -include/sword/flatapi.h -include/sword/ftpparse.h -include/sword/gbffootnotes.h -include/sword/gbfheadings.h -include/sword/gbfhtml.h -include/sword/gbfhtmlhref.h -include/sword/gbfmorph.h -include/sword/gbfosis.h -include/sword/gbfplain.h -include/sword/gbfredletterwords.h -include/sword/gbfrtf.h -include/sword/gbfstrongs.h -include/sword/gbfthml.h -include/sword/gbfwebif.h -include/sword/greeklexattribs.h -include/sword/hebrewmcim.h -include/sword/hrefcom.h -include/sword/installmgr.h -include/sword/latin1utf16.h -include/sword/latin1utf8.h -include/sword/listkey.h -include/sword/localemgr.h -include/sword/lzsscomprs.h -include/sword/markupfiltmgr.h -include/sword/multimapwdef.h -include/sword/nullim.h -include/sword/osisfootnotes.h -include/sword/osisheadings.h -include/sword/osishtmlhref.h -include/sword/osislemma.h -include/sword/osismorph.h -include/sword/osisplain.h -include/sword/osisredletterwords.h -include/sword/osisrtf.h -include/sword/osisscripref.h -include/sword/osisstrongs.h -include/sword/osiswebif.h -include/sword/plainfootnotes.h -include/sword/plainhtml.h -include/sword/rawcom.h -include/sword/rawfiles.h -include/sword/rawgbf.h -include/sword/rawgenbook.h -include/sword/rawld.h -include/sword/rawld4.h -include/sword/rawstr.h -include/sword/rawstr4.h -include/sword/rawtext.h -include/sword/rawverse.h -include/sword/regex.h -include/sword/roman.h -include/sword/rtfhtml.h -include/sword/sapphire.h -include/sword/scsuutf8.h -include/sword/strkey.h -include/sword/swbasicfilter.h -include/sword/swbuf.h -include/sword/swcacher.h -include/sword/swcipher.h -include/sword/swcom.h -include/sword/swcomprs.h -include/sword/swconfig.h -include/sword/swdisp.h -include/sword/swdisprtf.h -include/sword/swdisprtfchap.h -include/sword/swfilter.h -include/sword/swfiltermgr.h -include/sword/swgenbook.h -include/sword/swinputmeth.h -%%INSTALLMGR%%include/sword/swinstallmgr.h -include/sword/swkey.h -include/sword/swld.h -include/sword/swlocale.h -include/sword/swlog.h -include/sword/swmacs.h -include/sword/swmgr.h -include/sword/swmodule.h -include/sword/swobject.h -include/sword/swoptfilter.h -%%INSTALLMGR%%include/sword/swremotemgr.h -include/sword/swsearchable.h -include/sword/swtext.h -include/sword/swunicod.h -include/sword/swversion.h -include/sword/swwinlog.h -include/sword/sysdata.h -include/sword/tbdisp.h -include/sword/thmlfootnotes.h -include/sword/thmlgbf.h -include/sword/thmlheadings.h -include/sword/thmlhtml.h -include/sword/thmlhtmlhref.h -include/sword/thmllemma.h -include/sword/thmlmorph.h -include/sword/thmlosis.h -include/sword/thmlplain.h -include/sword/thmlrtf.h -include/sword/thmlscripref.h -include/sword/thmlstrongs.h -include/sword/thmlvariants.h -include/sword/thmlwebif.h -include/sword/treekey.h -include/sword/treekeyidx.h -include/sword/unicodertf.h -include/sword/unixstr.h -include/sword/untgz.h -include/sword/utf16utf8.h -include/sword/utf8arshaping.h -include/sword/utf8bidireorder.h -include/sword/utf8cantillation.h -include/sword/utf8greekaccents.h -include/sword/utf8hebrewpoints.h -include/sword/utf8html.h -include/sword/utf8latin1.h -include/sword/utf8nfc.h -include/sword/utf8nfkd.h -include/sword/utf8transliterator.h -include/sword/utf8utf16.h -include/sword/utilconf.h -include/sword/utilfuns.h -include/sword/utilstr.h -include/sword/utilweb.h -include/sword/utilxml.h -include/sword/versekey.h -include/sword/zcom.h -include/sword/zconf.h -include/sword/zipcomprs.h -include/sword/zld.h -include/sword/zlib.h -include/sword/zstr.h -include/sword/ztext.h -include/sword/zverse.h -lib/libsword.a -lib/libsword.la -lib/libsword.so -lib/libsword.so.4 -libdata/pkgconfig/sword.pc -share/sword/locales.d/abbr.conf -share/sword/locales.d/bg_BG-cp1251.conf -share/sword/locales.d/cs.conf -share/sword/locales.d/da.conf -share/sword/locales.d/de.conf -share/sword/locales.d/de_abbrev.conf -share/sword/locales.d/en_GB.conf -share/sword/locales.d/es.conf -share/sword/locales.d/et.conf -share/sword/locales.d/et_abbr.conf -share/sword/locales.d/fi.conf -share/sword/locales.d/fr.conf -share/sword/locales.d/id.conf -share/sword/locales.d/it.conf -share/sword/locales.d/la.conf -share/sword/locales.d/nl.conf -share/sword/locales.d/no.conf -share/sword/locales.d/pl.conf -share/sword/locales.d/pt.conf -share/sword/locales.d/pt_BR.conf -share/sword/locales.d/ro.conf -share/sword/locales.d/ru_RU-cp1251.conf -share/sword/locales.d/ru_RU-koi8-r.conf -share/sword/locales.d/sk.conf -share/sword/locales.d/uk_UA-cp1251.conf -share/sword/locales.d/uk_UA-koi8-u.conf -@dirrm share/sword/locales.d -@dirrm share/sword/mods.d -@dirrm share/sword -@dirrm lib/sword -@dirrm include/sword diff --git a/misc/tellico-kde4/Makefile b/misc/tellico-kde4/Makefile deleted file mode 100644 index b581f067157e..000000000000 --- a/misc/tellico-kde4/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# New ports collection makefile for: bookcase -# Date created: 11 May 2003 -# Whom: Kirill Ponomarew <ponomarew@oberon.net> -# -# $FreeBSD$ -# - -PORTNAME= tellico -PORTVERSION= 0.13.8 -CATEGORIES= misc kde -MASTER_SITES= http://www.periapsis.org/tellico/download/ - -MAINTAINER= markus@FreeBSD.org -COMMENT= Collection manager for KDE - -LIB_DEPENDS= tag:${PORTSDIR}/audio/taglib \ - kcddb:${PORTSDIR}/multimedia/kdemultimedia3 \ - yaz.2:${PORTSDIR}/net/yaz - -EXTRA_PATCHES= ${.CURDIR}/../../x11/kde3/files/extrapatch-old_configure - -USE_KDELIBS_VER=3 -GNU_CONFIGURE= yes -USE_REINPLACE= yes - -post-patch: - @${REINPLACE_CMD} -e 's|-O2||g' ${WRKSRC}/${CONFIGURE_SCRIPT} - -.include <bsd.port.mk> diff --git a/misc/tellico-kde4/distinfo b/misc/tellico-kde4/distinfo deleted file mode 100644 index fdaca9cfc5a2..000000000000 --- a/misc/tellico-kde4/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (tellico-0.13.8.tar.gz) = 4fd4debd405ed031df9c454ac5634c02 -SIZE (tellico-0.13.8.tar.gz) = 2474416 diff --git a/misc/tellico-kde4/pkg-descr b/misc/tellico-kde4/pkg-descr deleted file mode 100644 index 54d0a1573045..000000000000 --- a/misc/tellico-kde4/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -Tellico is an KDE application for organizing your collections. It provides -default templates for books, bibliographies, videos, music, coins, stamps, -trading cards, comic books, and wines. - -Capabilities: - - Supports default collections of books, bibliographic entries, videos, - music, comic books, coins, stamps, trading cards, and wines. - - Supports user-defined custom collections, as well. - - Supports any number of user-defined fields, of eleven different types - - Handles entries with multiple authors, genres, keywords, etc. - - Automatically formats titles and names - - Supports collection searching and view filtering - - Sorts and groups collection by various properties - - Automatically validates ISBN - - Allows customizable entry templates through XSLT - - Imports Bibtex, Bibtexml, CSV, and XSLT-filtered data - - Exports to Bibtex, Bibtexml, CSV, HTML, PilotDB, and XSLT-filtered data - - Includes translations for more than nine languages, other than English - - Imports information directly from Amazon.com - - Imports CDDB data - - Scans and imports audio file collections, such as mp3 or ogg - - Imports and exports to Alexandria libraries - -WWW: http://www.periapsis.org/tellico/ diff --git a/misc/tellico-kde4/pkg-plist b/misc/tellico-kde4/pkg-plist deleted file mode 100644 index 45fa9ce939a1..000000000000 --- a/misc/tellico-kde4/pkg-plist +++ /dev/null @@ -1,155 +0,0 @@ -bin/tellico -share/applnk/Applications/tellico.desktop -share/apps/kconf_update/tellico-rename.upd -share/apps/tellico/MARC21slim2MODS3.xsl -share/apps/tellico/MARC21slimUtils.xsl -share/apps/tellico/amazon2tellico.xsl -share/apps/tellico/bibtex-translation.xml -share/apps/tellico/cassette-logo.png -share/apps/tellico/cd-logo.png -share/apps/tellico/dvd-logo.png -share/apps/tellico/entry-templates/Album.xsl -share/apps/tellico/entry-templates/Compact.xsl -share/apps/tellico/entry-templates/Default.xsl -share/apps/tellico/entry-templates/Fancy.xsl -share/apps/tellico/entry-templates/Video.xsl -share/apps/tellico/mods2tellico.xsl -share/apps/tellico/pics/README.icons -share/apps/tellico/pics/README.quesnay -share/apps/tellico/pics/album.png -share/apps/tellico/pics/bibtex.png -share/apps/tellico/pics/book.png -share/apps/tellico/pics/card.png -share/apps/tellico/pics/checkmark.png -share/apps/tellico/pics/coin.png -share/apps/tellico/pics/comic.png -share/apps/tellico/pics/person-open.png -share/apps/tellico/pics/person.png -share/apps/tellico/pics/stamp.png -share/apps/tellico/pics/star_off.png -share/apps/tellico/pics/star_on.png -share/apps/tellico/pics/stars1.png -share/apps/tellico/pics/stars10.png -share/apps/tellico/pics/stars2.png -share/apps/tellico/pics/stars3.png -share/apps/tellico/pics/stars4.png -share/apps/tellico/pics/stars5.png -share/apps/tellico/pics/stars6.png -share/apps/tellico/pics/stars7.png -share/apps/tellico/pics/stars8.png -share/apps/tellico/pics/stars9.png -share/apps/tellico/pics/tellico.png -share/apps/tellico/pics/tellico.svg -share/apps/tellico/pics/tellico_mime.svg -share/apps/tellico/pics/video.png -share/apps/tellico/pics/wine.png -share/apps/tellico/record-logo.png -share/apps/tellico/shadowAlpha.png -share/apps/tellico/tellico-by-author.xsl -share/apps/tellico/tellico-by-title.xsl -share/apps/tellico/tellico-common.xsl -share/apps/tellico/tellico-printing.xsl -share/apps/tellico/tellico.dtd -share/apps/tellico/tellico.tips -share/apps/tellico/tellico2html.xsl -share/apps/tellico/tellicoui.rc -share/apps/tellico/vhs-logo.png -share/doc/HTML/en/tellico/amazon-options.png -share/doc/HTML/en/tellico/common -share/doc/HTML/en/tellico/configuration.docbook -share/doc/HTML/en/tellico/csv-dialog.png -share/doc/HTML/en/tellico/details.docbook -share/doc/HTML/en/tellico/entry-editor1.png -share/doc/HTML/en/tellico/entry-editor2.png -share/doc/HTML/en/tellico/entry-editor3.png -share/doc/HTML/en/tellico/entry-editor4.png -share/doc/HTML/en/tellico/entry-editor5.png -share/doc/HTML/en/tellico/export-csv.png -share/doc/HTML/en/tellico/export-html.png -share/doc/HTML/en/tellico/export-options.png -share/doc/HTML/en/tellico/faqs.docbook -share/doc/HTML/en/tellico/fetch-dialog.png -share/doc/HTML/en/tellico/fields-dialog.png -share/doc/HTML/en/tellico/filter-dialog.png -share/doc/HTML/en/tellico/fundamentals.docbook -share/doc/HTML/en/tellico/general-options.png -share/doc/HTML/en/tellico/hacking.docbook -share/doc/HTML/en/tellico/importing-exporting.docbook -share/doc/HTML/en/tellico/index.cache.bz2 -share/doc/HTML/en/tellico/index.docbook -share/doc/HTML/en/tellico/main-window.png -share/doc/HTML/en/tellico/menus.docbook -share/doc/HTML/en/tellico/print-options.png -share/doc/HTML/en/tellico/source-options.png -share/doc/HTML/en/tellico/template-options.png -share/doc/HTML/en/tellico/z3950-options.png -share/icons/hicolor/128x128/apps/tellico.png -share/icons/hicolor/128x128/mimetypes/tellico.png -share/icons/hicolor/16x16/apps/tellico.png -share/icons/hicolor/16x16/mimetypes/tellico.png -share/icons/hicolor/22x22/apps/tellico.png -share/icons/hicolor/22x22/mimetypes/tellico.png -share/icons/hicolor/32x32/apps/tellico.png -share/icons/hicolor/32x32/mimetypes/tellico.png -share/icons/hicolor/48x48/apps/tellico.png -share/icons/hicolor/48x48/mimetypes/tellico.png -share/icons/hicolor/64x64/apps/tellico.png -share/icons/hicolor/64x64/mimetypes/tellico.png -share/locale/bg/LC_MESSAGES/tellico.mo -share/locale/ca/LC_MESSAGES/tellico.mo -share/locale/cs/LC_MESSAGES/tellico.mo -share/locale/de/LC_MESSAGES/tellico.mo -share/locale/ee/LC_MESSAGES/tellico.mo -share/locale/es/LC_MESSAGES/tellico.mo -share/locale/fi/LC_MESSAGES/tellico.mo -share/locale/fr/LC_MESSAGES/tellico.mo -share/locale/hu/LC_MESSAGES/tellico.mo -share/locale/it/LC_MESSAGES/tellico.mo -share/locale/nb/LC_MESSAGES/tellico.mo -share/locale/nl/LC_MESSAGES/tellico.mo -share/locale/pt/LC_MESSAGES/tellico.mo -share/locale/ro/LC_MESSAGES/tellico.mo -share/locale/sv/LC_MESSAGES/tellico.mo -share/mimelnk/application/x-tellico.desktop -@unexec rmdir %D/share/mimelnk/application 2>/dev/null || true -@unexec rmdir %D/share/mimelnk 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/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/pt 2>/dev/null || true -@unexec rmdir %D/share/locale/fi/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/fi 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/ca/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ca 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/64x64/mimetypes 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/64x64/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/64x64 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/48x48/mimetypes 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/48x48/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/48x48 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/32x32/mimetypes 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/32x32/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/32x32 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/22x22/mimetypes 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/22x22/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/22x22 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/16x16/mimetypes 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/16x16/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/16x16 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/128x128/mimetypes 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/128x128/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/128x128 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor 2>/dev/null || true -@unexec rmdir %D/share/icons 2>/dev/null || true -@dirrm share/doc/HTML/en/tellico -@unexec rmdir %D/share/doc/HTML/en 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML 2>/dev/null || true -@dirrm share/apps/tellico/pics -@dirrm share/apps/tellico/entry-templates -@dirrm share/apps/tellico -@unexec rmdir %D/share/apps/kconf_update 2>/dev/null || true -@unexec rmdir %D/share/apps 2>/dev/null || true -@unexec rmdir %D/share/applnk/Applications 2>/dev/null || true -@unexec rmdir %D/share/applnk 2>/dev/null || true diff --git a/misc/xiphos/Makefile b/misc/xiphos/Makefile deleted file mode 100644 index 00781741aeb1..000000000000 --- a/misc/xiphos/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# New ports collection makefile for: gnomesword -# Date created: Oct 26, 2002 -# Whom: J Shoemaker <shoemaker@softhome.net> -# -# $FreeBSD$ -# - -PORTNAME= gnomesword -PORTVERSION= 2.1.1 -PORTREVISION= 4 -CATEGORIES= misc gnome -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= dboudrot@yahoo.com -COMMENT= A bible interface utilizing the sword framework - -BUILD_DEPENDS= ${X11BASE}/lib/gnome-spell/libgnome-spell-component-0.3.so:${PORTSDIR}/textproc/gnomespell -LIB_DEPENDS= sword.4:${PORTSDIR}/misc/sword -RUN_DEPENDS= ${X11BASE}/lib/gnome-spell/libgnome-spell-component-0.3.so:${PORTSDIR}/textproc/gnomespell - -USE_X_PREFIX= yes -INSTALLS_OMF= yes -USE_GNOME= gnomehack gnomeprefix gnometarget gal2 gtkhtml3 intlhack -USE_REINPLACE= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -post-patch: - @${REINPLACE_CMD} -e 's|=share/pix|=share/gnome/pix|g ; \ - s|=share/app|=share/gnome/app|g' ${WRKSRC}/configure - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for file in AUTHORS ChangeLog INSTALL NEWS README TODO - ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/misc/xiphos/distinfo b/misc/xiphos/distinfo deleted file mode 100644 index 45bceac835a4..000000000000 --- a/misc/xiphos/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (gnomesword-2.1.1.tar.gz) = 46b0c941e4f5780aaf8a72da87d0d045 -SIZE (gnomesword-2.1.1.tar.gz) = 1758480 diff --git a/misc/xiphos/files/patch-Makefile.in b/misc/xiphos/files/patch-Makefile.in deleted file mode 100644 index b629c1eae92d..000000000000 --- a/misc/xiphos/files/patch-Makefile.in +++ /dev/null @@ -1,30 +0,0 @@ ---- Makefile.in.orig Wed Jul 14 23:34:10 2004 -+++ Makefile.in Sat Aug 21 16:34:24 2004 -@@ -61,7 +61,7 @@ - install-recursive installcheck-recursive installdirs-recursive \ - pdf-recursive ps-recursive uninstall-info-recursive \ - uninstall-recursive --am__installdirs = "$(DESTDIR)$(gnomemenudir)" "$(DESTDIR)$(gnomesworddocdir)" -+am__installdirs = "$(DESTDIR)$(gnomemenudir)" - gnomemenuDATA_INSTALL = $(INSTALL_DATA) - gnomesworddocDATA_INSTALL = $(INSTALL_DATA) - DATA = $(gnomemenu_DATA) $(gnomesworddoc_DATA) -@@ -627,7 +627,7 @@ - all-am: Makefile $(DATA) config.h - installdirs: installdirs-recursive - installdirs-am: -- for dir in "$(DESTDIR)$(gnomemenudir)" "$(DESTDIR)$(gnomesworddocdir)"; do \ -+ for dir in "$(DESTDIR)$(gnomemenudir)"; do \ - test -z "$$dir" || $(mkdir_p) "$$dir"; \ - done - install: install-recursive -@@ -674,8 +674,7 @@ - - info-am: - --install-data-am: install-data-local install-gnomemenuDATA \ -- install-gnomesworddocDATA -+install-data-am: install-data-local install-gnomemenuDATA - - install-exec-am: - diff --git a/misc/xiphos/files/patch-configure b/misc/xiphos/files/patch-configure deleted file mode 100644 index 57de0a0ae95a..000000000000 --- a/misc/xiphos/files/patch-configure +++ /dev/null @@ -1,60 +0,0 @@ ---- configure.orig Wed Jul 14 09:34:14 2004 -+++ configure Thu Feb 17 15:43:03 2005 -@@ -2033,35 +2033,35 @@ - echo "*** to the full path to pkg-config." - echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." - else - PKG_CONFIG_MIN_VERSION=0.9.0 - if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then -- echo "$as_me:$LINENO: checking for libgnomeui-2.0 gtk+-2.0 libgtkhtml-3.0 gal-2.0 libxml-2.0 sword" >&5 --echo $ECHO_N "checking for libgnomeui-2.0 gtk+-2.0 libgtkhtml-3.0 gal-2.0 libxml-2.0 sword... $ECHO_C" >&6 -+ echo "$as_me:$LINENO: checking for libgnomeui-2.0 gtk+-2.0 libgtkhtml-3.6 gal-2.4 libxml-2.0 sword" >&5 -+echo $ECHO_N "checking for libgnomeui-2.0 gtk+-2.0 libgtkhtml-3.6 gal-2.4 libxml-2.0 sword... $ECHO_C" >&6 - -- if $PKG_CONFIG --exists "libgnomeui-2.0 gtk+-2.0 libgtkhtml-3.0 gal-2.0 libxml-2.0 sword" ; then -+ if $PKG_CONFIG --exists "libgnomeui-2.0 gtk+-2.0 libgtkhtml-3.6 gal-2.4 libxml-2.0 sword" ; then - echo "$as_me:$LINENO: result: yes" >&5 - echo "${ECHO_T}yes" >&6 - succeeded=yes - - echo "$as_me:$LINENO: checking GNOME_CFLAGS" >&5 - echo $ECHO_N "checking GNOME_CFLAGS... $ECHO_C" >&6 -- GNOME_CFLAGS=`$PKG_CONFIG --cflags "libgnomeui-2.0 gtk+-2.0 libgtkhtml-3.0 gal-2.0 libxml-2.0 sword"` -+ GNOME_CFLAGS=`$PKG_CONFIG --cflags "libgnomeui-2.0 gtk+-2.0 libgtkhtml-3.6 gal-2.4 libxml-2.0 sword"` - echo "$as_me:$LINENO: result: $GNOME_CFLAGS" >&5 - echo "${ECHO_T}$GNOME_CFLAGS" >&6 - - echo "$as_me:$LINENO: checking GNOME_LIBS" >&5 - echo $ECHO_N "checking GNOME_LIBS... $ECHO_C" >&6 -- GNOME_LIBS=`$PKG_CONFIG --libs "libgnomeui-2.0 gtk+-2.0 libgtkhtml-3.0 gal-2.0 libxml-2.0 sword"` -+ GNOME_LIBS=`$PKG_CONFIG --libs "libgnomeui-2.0 gtk+-2.0 libgtkhtml-3.6 gal-2.4 libxml-2.0 sword"` - echo "$as_me:$LINENO: result: $GNOME_LIBS" >&5 - echo "${ECHO_T}$GNOME_LIBS" >&6 - else - GNOME_CFLAGS="" - GNOME_LIBS="" - ## If we have a custom action on failure, don't print errors, but - ## do set a variable so people can do so. -- GNOME_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libgnomeui-2.0 gtk+-2.0 libgtkhtml-3.0 gal-2.0 libxml-2.0 sword"` -+ GNOME_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libgnomeui-2.0 gtk+-2.0 libgtkhtml-3.6 gal-2.4 libxml-2.0 sword"` - - fi - - - -@@ -23854,13 +23854,13 @@ - fi - - packagedatadir=share/${PACKAGE} - packagedocdir=share/doc/${PACKAGE} - --packagepixmapsdir=share/pixmaps/${PACKAGE} -+packagepixmapsdir=share/gnome/pixmaps/${PACKAGE} - packagehelpdir=share/gnome/help/${PACKAGE} --packagemenudir=share/applications -+packagemenudir=share/gnome/applications - - NO_PREFIX_PACKAGE_DATA_DIR="${packagedatadir}" - - PACKAGE_DATA_DIR="${packageprefix}/${packagedatadir}" - diff --git a/misc/xiphos/files/patch-src-backend-sword_main.diff b/misc/xiphos/files/patch-src-backend-sword_main.diff deleted file mode 100644 index 35e1cb29d547..000000000000 --- a/misc/xiphos/files/patch-src-backend-sword_main.diff +++ /dev/null @@ -1,13 +0,0 @@ ---- src/backend/sword_main.cc.orig Thu Jul 1 15:45:30 2004 -+++ src/backend/sword_main.cc Thu Jun 2 16:47:23 2005 -@@ -190,8 +190,8 @@ - VerseKey key; - GList *retlist = NULL; - char *book = NULL; -- unsigned int bytes_read; -- unsigned int bytes_written; -+ gsize bytes_read; -+ gsize bytes_written; - GError *error; - int i = 0, j = 0, x = 2; - diff --git a/misc/xiphos/files/patch-src::gnome2::editor_menu.c b/misc/xiphos/files/patch-src::gnome2::editor_menu.c deleted file mode 100644 index 5ca9a49a6be1..000000000000 --- a/misc/xiphos/files/patch-src::gnome2::editor_menu.c +++ /dev/null @@ -1,49 +0,0 @@ ---- src/gnome2/editor_menu.c.orig Fri Apr 2 17:28:07 2004 -+++ src/gnome2/editor_menu.c Mon Feb 14 15:08:42 2005 -@@ -29,11 +29,11 @@ - #include <gtkhtml/htmlform.h> - #include <gtkhtml/htmlenums.h> - #include <gtkhtml/htmlsettings.h> - #include <gtkhtml/htmlcolor.h> - #include <gtkhtml/htmlcolorset.h> --#include <gtkhtml/htmllinktext.h> -+//#include <gtkhtml/htmllinktext.h> - #include <gtkhtml/htmlengine-edit.h> - #include <gtkhtml/htmlengine-edit-fontstyle.h> - #include <gtkhtml/htmlengine-edit-cut-and-paste.h> - #include <gtkhtml/htmlselection.h> - #include <gtkhtml/htmlengine-search.h> -@@ -491,17 +491,33 @@ - target = strchr(url, '#'); - url_copy = - target ? g_strndup(url, - target - url) : g_strdup(url); - new_link = -+ html_text_new(text, -+ GTK_HTML_FONT_STYLE_DEFAULT, -+ html_colorset_get_color(e-> -+ settings-> -+ color_set, -+ HTMLLinkColor)); -+ new_link = -+ html_object_set_link(new_link, -+ html_colorset_get_color(e-> -+ settings-> -+ color_set, -+ HTMLLinkColor), -+ url_copy, target); -+/* -+ new_link = - html_link_text_new(text, - GTK_HTML_FONT_STYLE_DEFAULT, - html_colorset_get_color(e-> - settings-> - color_set, - HTMLLinkColor), - url_copy, target); -+*/ - html_engine_paste_object(e, new_link, - g_utf8_strlen(text, -1)); - g_free(url_copy); - } - } diff --git a/misc/xiphos/files/patch-src::gnome2::mod_mgr.c b/misc/xiphos/files/patch-src::gnome2::mod_mgr.c deleted file mode 100644 index 15d85dbfb7b7..000000000000 --- a/misc/xiphos/files/patch-src::gnome2::mod_mgr.c +++ /dev/null @@ -1,12 +0,0 @@ ---- src/gnome2/mod_mgr.c.orig Sun Mar 28 04:39:23 2004 -+++ src/gnome2/mod_mgr.c Sat Aug 21 15:56:12 2004 -@@ -1910,8 +1910,7 @@ - - GtkTreeModel *model; - GError *error = NULL; -- GtkTooltips *tooltips; -- tooltips = gtk_tooltips_new(); -+ GtkTooltips *tooltips = gtk_tooltips_new(); - GString *str = g_string_new(NULL); - GtkCellRenderer *renderer; - GtkTreeViewColumn *column; diff --git a/misc/xiphos/files/patch-src::gnome2::note_editor.c b/misc/xiphos/files/patch-src::gnome2::note_editor.c deleted file mode 100644 index 298dd5532e6f..000000000000 --- a/misc/xiphos/files/patch-src::gnome2::note_editor.c +++ /dev/null @@ -1,49 +0,0 @@ ---- src/gnome2/note_editor.c.orig Thu May 6 19:10:00 2004 -+++ src/gnome2/note_editor.c Mon Feb 14 15:12:22 2005 -@@ -29,11 +29,11 @@ - #include <gtkhtml/htmlform.h> - #include <gtkhtml/htmlenums.h> - #include <gtkhtml/htmlsettings.h> - #include <gtkhtml/htmlcolor.h> - #include <gtkhtml/htmlcolorset.h> --#include <gtkhtml/htmllinktext.h> -+//#include <gtkhtml/htmllinktext.h> - #include <gtkhtml/htmlengine-edit.h> - #include <gtkhtml/htmlengine-edit-fontstyle.h> - #include <gtkhtml/htmlengine-edit-cut-and-paste.h> - #include <gtkhtml/htmlselection.h> - #include <gtkhtml/htmlengine-search.h> -@@ -1185,17 +1185,33 @@ - target = strchr(url, '#'); - url_copy = - target ? g_strndup(url, - target - url) : g_strdup(url); - new_link = -+ html_text_new(text, -+ GTK_HTML_FONT_STYLE_DEFAULT, -+ html_colorset_get_color(e-> -+ settings-> -+ color_set, -+ HTMLLinkColor)); -+ new_link = -+ html_object_set_link(new_link, -+ html_colorset_get_color(e-> -+ settings-> -+ color_set, -+ HTMLLinkColor), -+ url_copy, target); -+/* -+ new_link = - html_link_text_new(text, - GTK_HTML_FONT_STYLE_DEFAULT, - html_colorset_get_color(e-> - settings-> - color_set, - HTMLLinkColor), - url_copy, target); -+*/ - html_engine_paste_object(e, new_link, - g_utf8_strlen(text, -1)); - g_free(url_copy); - } - } diff --git a/misc/xiphos/files/patch-src::gnome2::note_toolbar_style.c b/misc/xiphos/files/patch-src::gnome2::note_toolbar_style.c deleted file mode 100644 index 014a022c06c0..000000000000 --- a/misc/xiphos/files/patch-src::gnome2::note_toolbar_style.c +++ /dev/null @@ -1,16 +0,0 @@ ---- src/gnome2/note_toolbar_style.c.orig Thu Apr 22 14:12:43 2004 -+++ src/gnome2/note_toolbar_style.c Mon Feb 14 15:20:54 2005 -@@ -469,11 +469,12 @@ - DIALOG_DATA * d) - { - GSHTMLEditorControlData *cd = d->editor; - color_combo_set_color(COLOR_COMBO(cd->combo), - &html_colorset_get_color_allocated -- (html->engine->painter, -+ (cd->html->engine->settings->color_set, -+ html->engine->painter, - HTMLTextColor)->color); - - } - - /****************************************************************************** diff --git a/misc/xiphos/files/patch-src::gnome2::tabbed_browser.c b/misc/xiphos/files/patch-src::gnome2::tabbed_browser.c deleted file mode 100644 index 52dd1d8f7527..000000000000 --- a/misc/xiphos/files/patch-src::gnome2::tabbed_browser.c +++ /dev/null @@ -1,17 +0,0 @@ ---- src/gnome2/tabbed_browser.c.orig Thu Jun 17 04:53:24 2004 -+++ src/gnome2/tabbed_browser.c Sat Aug 21 15:59:13 2004 -@@ -664,11 +664,13 @@ - */ - void gui_close_passage_tab(gint pagenum) - { -+ PASSAGE_TAB_INFO *pt; -+ - if (-1 == pagenum) - pagenum = gtk_notebook_get_current_page(GTK_NOTEBOOK(widgets.notebook_main)); - if (1 == gtk_notebook_get_n_pages(GTK_NOTEBOOK(widgets.notebook_main))) - return; -- PASSAGE_TAB_INFO *pt = (PASSAGE_TAB_INFO*)g_list_nth_data(passage_list, (guint)pagenum); -+ pt = (PASSAGE_TAB_INFO*)g_list_nth_data(passage_list, (guint)pagenum); - passage_list = g_list_remove(passage_list, pt); - if(pt->text_mod) g_free(pt->text_mod); - if(pt->commentary_mod) g_free(pt->commentary_mod); diff --git a/misc/xiphos/files/patch-src::gnome2::toolbar_style.c b/misc/xiphos/files/patch-src::gnome2::toolbar_style.c deleted file mode 100644 index ae8c6cd1c6c3..000000000000 --- a/misc/xiphos/files/patch-src::gnome2::toolbar_style.c +++ /dev/null @@ -1,16 +0,0 @@ ---- src/gnome2/toolbar_style.c.orig Thu Apr 22 14:12:43 2004 -+++ src/gnome2/toolbar_style.c Mon Feb 14 15:23:28 2005 -@@ -460,11 +460,12 @@ - static void set_color_combo(GtkHTML * html, - GSHTMLEditorControlData * cd) - { - color_combo_set_color(COLOR_COMBO(cd->combo), - &html_colorset_get_color_allocated -- (html->engine->painter, -+ (cd->html->engine->settings->color_set, -+ html->engine->painter, - HTMLTextColor)->color); - - } - - /****************************************************************************** diff --git a/misc/xiphos/pkg-descr b/misc/xiphos/pkg-descr deleted file mode 100644 index b4df0ae732f5..000000000000 --- a/misc/xiphos/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -The GnomeSword GUI is a frontend to the SWORD project. - -The SWORD Project is an effort to create an ever expanding software package -for research and study of God and His Word. The SWORD Bible Framework allows -easy manipulation of Bible texts, commentaries, lexicons, dictionaries, etc. -Many frontends are build using this framework. An installed module set may be -shared between any frontend using the framework. - -WWW: http://www.crosswire.org/ - -// J Shoemaker <shoemaker@softhome.net> diff --git a/misc/xiphos/pkg-plist b/misc/xiphos/pkg-plist deleted file mode 100644 index b08c8a0b7ee8..000000000000 --- a/misc/xiphos/pkg-plist +++ /dev/null @@ -1,68 +0,0 @@ -bin/gnomesword2 -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/ChangeLog -%%PORTDOCS%%%%DOCSDIR%%/INSTALL -%%PORTDOCS%%%%DOCSDIR%%/NEWS -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/TODO -share/gnome/applications/gnomesword.desktop -share/gnome/help/gnomesword/C/figures/gnomesword_interface.png -share/gnome/help/gnomesword/C/figures/gnomesword_interface_biblepane.png -share/gnome/help/gnomesword/C/figures/gnomesword_interface_commentarypane.png -share/gnome/help/gnomesword/C/figures/gnomesword_interface_sidepane.png -share/gnome/help/gnomesword/C/figures/gnomesword_interface_toolbar.png -share/gnome/help/gnomesword/C/figures/gnomesword_preferences_font_colors.png -share/gnome/help/gnomesword/C/figures/gnomesword_preferences_general.png -share/gnome/help/gnomesword/C/figures/gnomesword_preferences_sword_config.png -share/gnome/help/gnomesword/C/figures/gnomesword_studypad.png -share/gnome/help/gnomesword/C/gnomesword.xml -share/gnome/help/gnomesword/C/legal.xml -share/gnome/help/gnomesword/fr/figures/gnomesword_interface.png -share/gnome/help/gnomesword/fr/figures/gnomesword_interface_bible.png -share/gnome/help/gnomesword/fr/figures/gnomesword_interface_commentarypane.png -share/gnome/help/gnomesword/fr/figures/gnomesword_interface_shortcutbar.png -share/gnome/help/gnomesword/fr/figures/gnomesword_interface_toolbar.png -share/gnome/help/gnomesword/fr/figures/gnomesword_preferences_font_colors.png -share/gnome/help/gnomesword/fr/figures/gnomesword_preferences_misc_settings.png -share/gnome/help/gnomesword/fr/figures/gnomesword_preferences_sword_config.png -share/gnome/help/gnomesword/fr/figures/gnomesword_studypad.png -share/gnome/help/gnomesword/fr/gnomesword.xml -share/gnome/help/gnomesword/fr/legal.xml -share/gnome/omf/gnomesword/gnomesword-C.omf -share/gnome/omf/gnomesword/gnomesword-fr.omf -share/gnome/pixmaps/gnomesword/about.png -share/gnome/pixmaps/gnomesword/book-bl.png -share/gnome/pixmaps/gnomesword/book-gold.png -share/gnome/pixmaps/gnomesword/book-green.png -share/gnome/pixmaps/gnomesword/book-un.png -share/gnome/pixmaps/gnomesword/dlg-bl.png -share/gnome/pixmaps/gnomesword/dlg-un.png -share/gnome/pixmaps/gnomesword/dock.png -share/gnome/pixmaps/gnomesword/epiphany-bookmark-page.png -share/gnome/pixmaps/gnomesword/epiphany-bookmarks.png -share/gnome/pixmaps/gnomesword/epiphany-secure.png -share/gnome/pixmaps/gnomesword/epiphany-unsecure.png -share/gnome/pixmaps/gnomesword/gs2-48x48.png -share/gnome/pixmaps/gnomesword/logo.png -share/gnome/pixmaps/gnomesword/new_tab_button.png -share/gnome/pixmaps/gnomesword/splash.png -share/gnome/pixmaps/gnomesword/sword.png -share/gnome/pixmaps/gnomesword/sword3.png -share/gnome/pixmaps/gnomesword/tt.png -share/gnome/pixmaps/gnomesword/tt.xpm -share/locale/de/LC_MESSAGES/gnomesword.mo -share/locale/de_DE/LC_MESSAGES/gnomesword.mo -share/locale/en_GB/LC_MESSAGES/gnomesword.mo -share/locale/fr_FR/LC_MESSAGES/gnomesword.mo -share/locale/ru/LC_MESSAGES/gnomesword.mo -share/locale/uk/LC_MESSAGES/gnomesword.mo -@dirrm share/gnome/pixmaps/gnomesword -@dirrm share/gnome/omf/gnomesword -@dirrm share/gnome/help/gnomesword/fr/figures -@dirrm share/gnome/help/gnomesword/fr -@dirrm share/gnome/help/gnomesword/C/figures -@dirrm share/gnome/help/gnomesword/C -@dirrm share/gnome/help/gnomesword -@unexec rmdir %D/share/locale/de_DE/LC_MESSAGES 2> /dev/null || true -@unexec rmdir %D/share/locale/de_DE 2> /dev/null || true -%%PORTDOCS%%@dirrm %%DOCSDIR%% |