diff options
Diffstat (limited to 'source/kdei')
147 files changed, 0 insertions, 3068 deletions
diff --git a/source/kdei/FTBFSlog b/source/kdei/FTBFSlog deleted file mode 100644 index c3989534..00000000 --- a/source/kdei/FTBFSlog +++ /dev/null @@ -1,2 +0,0 @@ -Wed Jan 31 05:38:38 UTC 2018 - All KDEI packages tested and found to build properly. diff --git a/source/kdei/calligra-l10n/calligra-l10n.SlackBuild b/source/kdei/calligra-l10n/calligra-l10n.SlackBuild deleted file mode 100755 index 22810b7b..00000000 --- a/source/kdei/calligra-l10n/calligra-l10n.SlackBuild +++ /dev/null @@ -1,134 +0,0 @@ -#!/bin/bash - -# Copyright 2008 Robby Workman Northport, AL, USA -# Copyright 2012, 2013 Eric Hameleers, Eindhoven, NL -# Copyright 2012, 2013, 2014, 2015, 2018 Patrick J. Volkerding, Sebeka, MN, USA -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -# This script should build any of the language packs if run with (for example): -# PKGLANG=de ./calligra-l10n.SlackBuild -# You should be able to build all of them with something like this: -# for i in $(cat languages) ; do PKGLANG=$i ./calligra-l10n.SlackBuild ; done -# If ./languages is missing and this script is called without options, the -# default is to create an up-to-date ./languages list and build all the -# language packs. - -cd $(dirname $0) ; CWD=$(pwd) - -if [ ! -r ./languages ]; then - for file in calligra-l10n*.xz ; do - echo $file | cut -f 3 -d - >> ./languages - done -fi - -[ -z $VERSION ] && export VERSION=2.9.11 -[ -z $ARCH ] && export ARCH=noarch -[ -z $BUILD ] && export BUILD=1 - -# Use this as CFLAGS and CXXFLAGS: -if [ -z "$SLKCFLAGS" ]; then - if [ "$ARCH" = "i486" ]; then - export SLKCFLAGS="-O2 -march=i486 -mtune=i686" - elif [ "$ARCH" = "i586" ]; then - export SLKCFLAGS="-O2 -march=i586 -mtune=i686" - elif [ "$ARCH" = "s390" ]; then - export SLKCFLAGS="-O2" - elif [ "$ARCH" = "x86_64" ]; then - export SLKCFLAGS="-O2 -fPIC" - elif [ "$ARCH" = "armv7hl" ]; then - export SLKCFLAGS="-O2 -march=armv7-a -mfpu=vfpv3-d16" - fi -fi - -# Get the kde environment variables -[ -d kdebase ] && . ./kdebase/profile.d/kde.sh - -# Set the config option variables if they are not already set: -[ -r ../KDE.options ] && . ../KDE.options - -TMP=${TMP:-/tmp/kde_build} - -make_language_pack() { -rm -rf $PKG -mkdir -p $TMP $PKG -cd $TMP -rm -rf $PKGNAM-$VERSION -tar xvf $CWD/$PKGNAM-$VERSION.tar.xz || exit 1 -cd $PKGNAM-$VERSION || exit 1 -chown -R root:root . -find . \ - \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \+ -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \+ -mkdir -p build -cd build - cmake \ - -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DMAN_INSTALL_DIR=/usr/man \ - -DSYSCONF_INSTALL_DIR=/etc/kde \ - -DLIB_SUFFIX=${LIBDIRSUFFIX} \ - .. - make || exit 1 - make install DESTDIR=$PKG || exit 1 -cd - -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null -) -mkdir -p $PKG/install -cat $CWD/slack-desc/slack-desc.calligra-l10n-$PKGLANG > $PKG/install/slack-desc -cd $PKG -/sbin/makepkg -l y -c n $TMP/$PKGNAM-$VERSION-$ARCH-$BUILD.txz -} - -if [ -z $PKGLANG ]; then - for PKGLANG in $(cat languages) ; do - PKGNAM=calligra-l10n-$PKGLANG - # If the variable PRINT_PACKAGE_NAME is set, then this script will report what - # the name of the created package would be, and then exit. This information - # could be useful to other scripts. - if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then - echo "$PKGNAM-$VERSION-$ARCH-$BUILD.txz" - continue - fi - PKG=$TMP/package-calligra-l10n-$PKGLANG - # The global options may be overridden here (if needed): - [ -r ./local.options/$PKGLANG ] && . ./local.options/$PKGLANG - make_language_pack; - done -else - PKGNAM=calligra-l10n-$PKGLANG - # If the variable PRINT_PACKAGE_NAME is set, then this script will report what - # the name of the created package would be, and then exit. This information - # could be useful to other scripts. - if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then - echo "$PKGNAM-$VERSION-$ARCH-$BUILD.txz" - exit 0 - fi - PKG=$TMP/package-calligra-l10n-$PKGLANG - # The global options may be overridden here (if needed): - [ -r ./local.options/$PKGLANG ] && . ./local.options/$PKGLANG - make_language_pack; -fi - diff --git a/source/kdei/calligra-l10n/languages b/source/kdei/calligra-l10n/languages deleted file mode 100644 index 98f24bbe..00000000 --- a/source/kdei/calligra-l10n/languages +++ /dev/null @@ -1,29 +0,0 @@ -bs -ca -ca@valencia -cs -da -de -el -en_GB -es -et -fi -fr -gl -hu -it -ja -kk -nb -nl -pl -pt -pt_BR -ru -sk -sv -tr -uk -zh_CN -zh_TW diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-af b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-af deleted file mode 100644 index b5bfc17f..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-af +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-af: calligra-l10n-af -calligra-l10n-af: -calligra-l10n-af: Afrikaans language support for Calligra. -calligra-l10n-af: -calligra-l10n-af: -calligra-l10n-af: -calligra-l10n-af: -calligra-l10n-af: -calligra-l10n-af: -calligra-l10n-af: -calligra-l10n-af: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ar b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ar deleted file mode 100644 index 0d63ba68..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ar +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-ar: calligra-l10n-ar -calligra-l10n-ar: -calligra-l10n-ar: Arabic language support for Calligra. -calligra-l10n-ar: -calligra-l10n-ar: -calligra-l10n-ar: -calligra-l10n-ar: -calligra-l10n-ar: -calligra-l10n-ar: -calligra-l10n-ar: -calligra-l10n-ar: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-az b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-az deleted file mode 100644 index 954dd8d2..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-az +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-az: calligra-l10n-az -calligra-l10n-az: -calligra-l10n-az: Azerbaijani language support for Calligra. -calligra-l10n-az: -calligra-l10n-az: -calligra-l10n-az: -calligra-l10n-az: -calligra-l10n-az: -calligra-l10n-az: -calligra-l10n-az: -calligra-l10n-az: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-bg b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-bg deleted file mode 100644 index b3cde322..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-bg +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-bg: calligra-l10n-bg -calligra-l10n-bg: -calligra-l10n-bg: Bulgarian language support for Calligra. -calligra-l10n-bg: -calligra-l10n-bg: -calligra-l10n-bg: -calligra-l10n-bg: -calligra-l10n-bg: -calligra-l10n-bg: -calligra-l10n-bg: -calligra-l10n-bg: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-br b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-br deleted file mode 100644 index e94f292f..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-br +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-br: calligra-l10n-br -calligra-l10n-br: -calligra-l10n-br: Breton language support for Calligra. -calligra-l10n-br: -calligra-l10n-br: -calligra-l10n-br: -calligra-l10n-br: -calligra-l10n-br: -calligra-l10n-br: -calligra-l10n-br: -calligra-l10n-br: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-bs b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-bs deleted file mode 100644 index cc8a5da7..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-bs +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-bs: calligra-l10n-bs -calligra-l10n-bs: -calligra-l10n-bs: Bosnian language support for Calligra. -calligra-l10n-bs: -calligra-l10n-bs: -calligra-l10n-bs: -calligra-l10n-bs: -calligra-l10n-bs: -calligra-l10n-bs: -calligra-l10n-bs: -calligra-l10n-bs: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ca b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ca deleted file mode 100644 index e384678a..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ca +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-ca: calligra-l10n-ca -calligra-l10n-ca: -calligra-l10n-ca: Catalan language support for Calligra. -calligra-l10n-ca: -calligra-l10n-ca: -calligra-l10n-ca: -calligra-l10n-ca: -calligra-l10n-ca: -calligra-l10n-ca: -calligra-l10n-ca: -calligra-l10n-ca: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ca@valencia b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ca@valencia deleted file mode 100644 index 541229b4..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ca@valencia +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-ca@valencia: calligra-l10n-ca@valencia -calligra-l10n-ca@valencia: -calligra-l10n-ca@valencia: Valencian (southern Catalan) language support for Calligra. -calligra-l10n-ca@valencia: -calligra-l10n-ca@valencia: -calligra-l10n-ca@valencia: -calligra-l10n-ca@valencia: -calligra-l10n-ca@valencia: -calligra-l10n-ca@valencia: -calligra-l10n-ca@valencia: -calligra-l10n-ca@valencia: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-cs b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-cs deleted file mode 100644 index 3283206d..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-cs +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-cs: calligra-l10n-cs -calligra-l10n-cs: -calligra-l10n-cs: Czech language support for Calligra. -calligra-l10n-cs: -calligra-l10n-cs: -calligra-l10n-cs: -calligra-l10n-cs: -calligra-l10n-cs: -calligra-l10n-cs: -calligra-l10n-cs: -calligra-l10n-cs: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-cy b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-cy deleted file mode 100644 index d2a082aa..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-cy +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-cy: calligra-l10n-cy -calligra-l10n-cy: -calligra-l10n-cy: Welsh language support for Calligra. -calligra-l10n-cy: -calligra-l10n-cy: -calligra-l10n-cy: -calligra-l10n-cy: -calligra-l10n-cy: -calligra-l10n-cy: -calligra-l10n-cy: -calligra-l10n-cy: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-da b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-da deleted file mode 100644 index f288a01a..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-da +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-da: calligra-l10n-da -calligra-l10n-da: -calligra-l10n-da: Danish language support for Calligra. -calligra-l10n-da: -calligra-l10n-da: -calligra-l10n-da: -calligra-l10n-da: -calligra-l10n-da: -calligra-l10n-da: -calligra-l10n-da: -calligra-l10n-da: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-de b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-de deleted file mode 100644 index a9fc19f6..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-de +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-de: calligra-l10n-de -calligra-l10n-de: -calligra-l10n-de: German language support for Calligra. -calligra-l10n-de: -calligra-l10n-de: -calligra-l10n-de: -calligra-l10n-de: -calligra-l10n-de: -calligra-l10n-de: -calligra-l10n-de: -calligra-l10n-de: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-el b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-el deleted file mode 100644 index f6277b33..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-el +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-el: calligra-l10n-el -calligra-l10n-el: -calligra-l10n-el: Greek language support for Calligra. -calligra-l10n-el: -calligra-l10n-el: -calligra-l10n-el: -calligra-l10n-el: -calligra-l10n-el: -calligra-l10n-el: -calligra-l10n-el: -calligra-l10n-el: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-en_GB b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-en_GB deleted file mode 100644 index 0890378a..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-en_GB +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-en_GB: calligra-l10n-en_GB -calligra-l10n-en_GB: -calligra-l10n-en_GB: English (UK) language support for Calligra. -calligra-l10n-en_GB: -calligra-l10n-en_GB: -calligra-l10n-en_GB: -calligra-l10n-en_GB: -calligra-l10n-en_GB: -calligra-l10n-en_GB: -calligra-l10n-en_GB: -calligra-l10n-en_GB: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-eo b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-eo deleted file mode 100644 index 4bc4edcd..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-eo +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-eo: calligra-l10n-eo -calligra-l10n-eo: -calligra-l10n-eo: Esperanto language support for Calligra. -calligra-l10n-eo: -calligra-l10n-eo: -calligra-l10n-eo: -calligra-l10n-eo: -calligra-l10n-eo: -calligra-l10n-eo: -calligra-l10n-eo: -calligra-l10n-eo: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-es b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-es deleted file mode 100644 index d95944b2..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-es +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-es: calligra-l10n-es -calligra-l10n-es: -calligra-l10n-es: Spanish language support for Calligra. -calligra-l10n-es: -calligra-l10n-es: -calligra-l10n-es: -calligra-l10n-es: -calligra-l10n-es: -calligra-l10n-es: -calligra-l10n-es: -calligra-l10n-es: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-et b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-et deleted file mode 100644 index 207237d2..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-et +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-et: calligra-l10n-et -calligra-l10n-et: -calligra-l10n-et: Estonian language support for Calligra. -calligra-l10n-et: -calligra-l10n-et: -calligra-l10n-et: -calligra-l10n-et: -calligra-l10n-et: -calligra-l10n-et: -calligra-l10n-et: -calligra-l10n-et: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-eu b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-eu deleted file mode 100644 index 1ab048b8..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-eu +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makeu it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lineu for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-eu: calligra-l10n-eu -calligra-l10n-eu: -calligra-l10n-eu: Basque language support for Calligra. -calligra-l10n-eu: -calligra-l10n-eu: -calligra-l10n-eu: -calligra-l10n-eu: -calligra-l10n-eu: -calligra-l10n-eu: -calligra-l10n-eu: -calligra-l10n-eu: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-fa b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-fa deleted file mode 100644 index 50228b34..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-fa +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-fa: calligra-l10n-fa -calligra-l10n-fa: -calligra-l10n-fa: Persian (Farsi) language support for Calligra. -calligra-l10n-fa: -calligra-l10n-fa: -calligra-l10n-fa: -calligra-l10n-fa: -calligra-l10n-fa: -calligra-l10n-fa: -calligra-l10n-fa: -calligra-l10n-fa: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-fi b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-fi deleted file mode 100644 index 400e5232..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-fi +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-fi: calligra-l10n-fi -calligra-l10n-fi: -calligra-l10n-fi: Finnish language support for Calligra. -calligra-l10n-fi: -calligra-l10n-fi: -calligra-l10n-fi: -calligra-l10n-fi: -calligra-l10n-fi: -calligra-l10n-fi: -calligra-l10n-fi: -calligra-l10n-fi: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-fr b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-fr deleted file mode 100644 index daf99176..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-fr +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-fr: calligra-l10n-fr -calligra-l10n-fr: -calligra-l10n-fr: French language support for Calligra. -calligra-l10n-fr: -calligra-l10n-fr: -calligra-l10n-fr: -calligra-l10n-fr: -calligra-l10n-fr: -calligra-l10n-fr: -calligra-l10n-fr: -calligra-l10n-fr: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-fy b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-fy deleted file mode 100644 index feaf9860..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-fy +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-fy: calligra-l10n-fy -calligra-l10n-fy: -calligra-l10n-fy: Abkhasysk language support for Calligra. -calligra-l10n-fy: -calligra-l10n-fy: -calligra-l10n-fy: -calligra-l10n-fy: -calligra-l10n-fy: -calligra-l10n-fy: -calligra-l10n-fy: -calligra-l10n-fy: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ga b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ga deleted file mode 100644 index 75165068..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ga +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makeu it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lineu for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-ga: calligra-l10n-ga -calligra-l10n-ga: -calligra-l10n-ga: Irish Gaelic language support for Calligra. -calligra-l10n-ga: -calligra-l10n-ga: -calligra-l10n-ga: -calligra-l10n-ga: -calligra-l10n-ga: -calligra-l10n-ga: -calligra-l10n-ga: -calligra-l10n-ga: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-gl b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-gl deleted file mode 100644 index aebbffda..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-gl +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-gl: calligra-l10n-gl -calligra-l10n-gl: -calligra-l10n-gl: Galician language support for Calligra. -calligra-l10n-gl: -calligra-l10n-gl: -calligra-l10n-gl: -calligra-l10n-gl: -calligra-l10n-gl: -calligra-l10n-gl: -calligra-l10n-gl: -calligra-l10n-gl: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-he b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-he deleted file mode 100644 index b3cb0bcb..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-he +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-he: calligra-l10n-he -calligra-l10n-he: -calligra-l10n-he: Hebrew language support for Calligra. -calligra-l10n-he: -calligra-l10n-he: -calligra-l10n-he: -calligra-l10n-he: -calligra-l10n-he: -calligra-l10n-he: -calligra-l10n-he: -calligra-l10n-he: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-hi b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-hi deleted file mode 100644 index 25af18e7..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-hi +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-hi: calligra-l10n-hi -calligra-l10n-hi: -calligra-l10n-hi: Hindi language support for Calligra. -calligra-l10n-hi: -calligra-l10n-hi: -calligra-l10n-hi: -calligra-l10n-hi: -calligra-l10n-hi: -calligra-l10n-hi: -calligra-l10n-hi: -calligra-l10n-hi: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-hne b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-hne deleted file mode 100644 index e13c3620..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-hne +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-hne: calligra-l10n-hne -calligra-l10n-hne: -calligra-l10n-hne: Chhattisgarhi language support for Calligra. -calligra-l10n-hne: -calligra-l10n-hne: -calligra-l10n-hne: -calligra-l10n-hne: -calligra-l10n-hne: -calligra-l10n-hne: -calligra-l10n-hne: -calligra-l10n-hne: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-hsb b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-hsb deleted file mode 100644 index e0b290c4..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-hsb +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-hsb: calligra-l10n-hsb -calligra-l10n-hsb: -calligra-l10n-hsb: Upper Sorbian language support for Calligra. -calligra-l10n-hsb: -calligra-l10n-hsb: -calligra-l10n-hsb: -calligra-l10n-hsb: -calligra-l10n-hsb: -calligra-l10n-hsb: -calligra-l10n-hsb: -calligra-l10n-hsb: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-hu b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-hu deleted file mode 100644 index 7029712d..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-hu +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-hu: calligra-l10n-hu -calligra-l10n-hu: -calligra-l10n-hu: Hungarian language support for Calligra. -calligra-l10n-hu: -calligra-l10n-hu: -calligra-l10n-hu: -calligra-l10n-hu: -calligra-l10n-hu: -calligra-l10n-hu: -calligra-l10n-hu: -calligra-l10n-hu: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ia b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ia deleted file mode 100644 index 7b055cf6..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ia +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-ia: calligra-l10n-ia -calligra-l10n-ia: -calligra-l10n-ia: Interlingua language support for Calligra. -calligra-l10n-ia: -calligra-l10n-ia: -calligra-l10n-ia: -calligra-l10n-ia: -calligra-l10n-ia: -calligra-l10n-ia: -calligra-l10n-ia: -calligra-l10n-ia: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-is b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-is deleted file mode 100644 index 3c528f8c..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-is +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-is: calligra-l10n-is -calligra-l10n-is: -calligra-l10n-is: Icelandic language support for Calligra. -calligra-l10n-is: -calligra-l10n-is: -calligra-l10n-is: -calligra-l10n-is: -calligra-l10n-is: -calligra-l10n-is: -calligra-l10n-is: -calligra-l10n-is: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-it b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-it deleted file mode 100644 index 6aecb994..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-it +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-it: calligra-l10n-it -calligra-l10n-it: -calligra-l10n-it: Italian language support for Calligra. -calligra-l10n-it: -calligra-l10n-it: -calligra-l10n-it: -calligra-l10n-it: -calligra-l10n-it: -calligra-l10n-it: -calligra-l10n-it: -calligra-l10n-it: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ja b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ja deleted file mode 100644 index 86eaeeb2..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ja +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-ja: calligra-l10n-ja -calligra-l10n-ja: -calligra-l10n-ja: Japanese language support for Calligra. -calligra-l10n-ja: -calligra-l10n-ja: -calligra-l10n-ja: -calligra-l10n-ja: -calligra-l10n-ja: -calligra-l10n-ja: -calligra-l10n-ja: -calligra-l10n-ja: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-kk b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-kk deleted file mode 100644 index 9724db2d..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-kk +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-kk: calligra-l10n-kk -calligra-l10n-kk: -calligra-l10n-kk: Kazakh language support for Calligra. -calligra-l10n-kk: -calligra-l10n-kk: -calligra-l10n-kk: -calligra-l10n-kk: -calligra-l10n-kk: -calligra-l10n-kk: -calligra-l10n-kk: -calligra-l10n-kk: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-km b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-km deleted file mode 100644 index 9d030e8f..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-km +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-km: calligra-l10n-km -calligra-l10n-km: -calligra-l10n-km: Khmer language support for Calligra. -calligra-l10n-km: -calligra-l10n-km: -calligra-l10n-km: -calligra-l10n-km: -calligra-l10n-km: -calligra-l10n-km: -calligra-l10n-km: -calligra-l10n-km: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-lo b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-lo deleted file mode 100644 index cf8a8a50..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-lo +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-lo: calligra-l10n-lo -calligra-l10n-lo: -calligra-l10n-lo: Lao language support for Calligra. -calligra-l10n-lo: -calligra-l10n-lo: -calligra-l10n-lo: -calligra-l10n-lo: -calligra-l10n-lo: -calligra-l10n-lo: -calligra-l10n-lo: -calligra-l10n-lo: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-lt b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-lt deleted file mode 100644 index 7a1fd26c..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-lt +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-lt: calligra-l10n-lt -calligra-l10n-lt: -calligra-l10n-lt: Lithuanian language support for Calligra. -calligra-l10n-lt: -calligra-l10n-lt: -calligra-l10n-lt: -calligra-l10n-lt: -calligra-l10n-lt: -calligra-l10n-lt: -calligra-l10n-lt: -calligra-l10n-lt: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-lv b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-lv deleted file mode 100644 index f6a031c1..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-lv +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-lv: calligra-l10n-lv -calligra-l10n-lv: -calligra-l10n-lv: Latvian language support for Calligra. -calligra-l10n-lv: -calligra-l10n-lv: -calligra-l10n-lv: -calligra-l10n-lv: -calligra-l10n-lv: -calligra-l10n-lv: -calligra-l10n-lv: -calligra-l10n-lv: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-mk b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-mk deleted file mode 100644 index 8bbe754a..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-mk +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-mk: calligra-l10n-mk -calligra-l10n-mk: -calligra-l10n-mk: Macedonian language support for Calligra. -calligra-l10n-mk: -calligra-l10n-mk: -calligra-l10n-mk: -calligra-l10n-mk: -calligra-l10n-mk: -calligra-l10n-mk: -calligra-l10n-mk: -calligra-l10n-mk: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ms b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ms deleted file mode 100644 index 3b86433d..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ms +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-ms: calligra-l10n-ms -calligra-l10n-ms: -calligra-l10n-ms: Malay language support for Calligra. -calligra-l10n-ms: -calligra-l10n-ms: -calligra-l10n-ms: -calligra-l10n-ms: -calligra-l10n-ms: -calligra-l10n-ms: -calligra-l10n-ms: -calligra-l10n-ms: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-mt b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-mt deleted file mode 100644 index 7fc7b0a2..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-mt +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-mt: calligra-l10n-mt -calligra-l10n-mt: -calligra-l10n-mt: Maltese language support for Calligra. -calligra-l10n-mt: -calligra-l10n-mt: -calligra-l10n-mt: -calligra-l10n-mt: -calligra-l10n-mt: -calligra-l10n-mt: -calligra-l10n-mt: -calligra-l10n-mt: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-nb b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-nb deleted file mode 100644 index e46faee9..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-nb +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-nb: calligra-l10n-nb -calligra-l10n-nb: -calligra-l10n-nb: Norwegian (Bokmaal) language support for Calligra. -calligra-l10n-nb: -calligra-l10n-nb: -calligra-l10n-nb: -calligra-l10n-nb: -calligra-l10n-nb: -calligra-l10n-nb: -calligra-l10n-nb: -calligra-l10n-nb: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-nds b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-nds deleted file mode 100644 index 65b04171..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-nds +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-nds: calligra-l10n-nds -calligra-l10n-nds: -calligra-l10n-nds: Low Saxon language support for Calligra. -calligra-l10n-nds: -calligra-l10n-nds: -calligra-l10n-nds: -calligra-l10n-nds: -calligra-l10n-nds: -calligra-l10n-nds: -calligra-l10n-nds: -calligra-l10n-nds: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ne b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ne deleted file mode 100644 index ce88c288..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ne +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-ne: calligra-l10n-ne -calligra-l10n-ne: -calligra-l10n-ne: Nepali language support for Calligra. -calligra-l10n-ne: -calligra-l10n-ne: -calligra-l10n-ne: -calligra-l10n-ne: -calligra-l10n-ne: -calligra-l10n-ne: -calligra-l10n-ne: -calligra-l10n-ne: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-nl b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-nl deleted file mode 100644 index 198d23cf..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-nl +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-nl: calligra-l10n-nl -calligra-l10n-nl: -calligra-l10n-nl: Dutch language support for Calligra. -calligra-l10n-nl: -calligra-l10n-nl: -calligra-l10n-nl: -calligra-l10n-nl: -calligra-l10n-nl: -calligra-l10n-nl: -calligra-l10n-nl: -calligra-l10n-nl: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-nn b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-nn deleted file mode 100644 index c6354d88..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-nn +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-nn: calligra-l10n-nn -calligra-l10n-nn: -calligra-l10n-nn: Norwegian (Nynorsk) language support for Calligra. -calligra-l10n-nn: -calligra-l10n-nn: -calligra-l10n-nn: -calligra-l10n-nn: -calligra-l10n-nn: -calligra-l10n-nn: -calligra-l10n-nn: -calligra-l10n-nn: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-no b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-no deleted file mode 100644 index 0097eff3..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-no +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-no: calligra-l10n-no -calligra-l10n-no: -calligra-l10n-no: Norwegian (Bokmaal) language support for Calligra. -calligra-l10n-no: -calligra-l10n-no: -calligra-l10n-no: -calligra-l10n-no: -calligra-l10n-no: -calligra-l10n-no: -calligra-l10n-no: -calligra-l10n-no: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-no_NY b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-no_NY deleted file mode 100644 index 512f6830..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-no_NY +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-no_NY: calligra-l10n-no_NY -calligra-l10n-no_NY: -calligra-l10n-no_NY: Norwegian (Nynorsk) language support for Calligra. -calligra-l10n-no_NY: -calligra-l10n-no_NY: -calligra-l10n-no_NY: -calligra-l10n-no_NY: -calligra-l10n-no_NY: -calligra-l10n-no_NY: -calligra-l10n-no_NY: -calligra-l10n-no_NY: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-pl b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-pl deleted file mode 100644 index a4256689..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-pl +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-pl: calligra-l10n-pl -calligra-l10n-pl: -calligra-l10n-pl: Polish language support for Calligra. -calligra-l10n-pl: -calligra-l10n-pl: -calligra-l10n-pl: -calligra-l10n-pl: -calligra-l10n-pl: -calligra-l10n-pl: -calligra-l10n-pl: -calligra-l10n-pl: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-pt b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-pt deleted file mode 100644 index 932c7d96..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-pt +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-pt: calligra-l10n-pt -calligra-l10n-pt: -calligra-l10n-pt: Portuguese language support for Calligra. -calligra-l10n-pt: -calligra-l10n-pt: -calligra-l10n-pt: -calligra-l10n-pt: -calligra-l10n-pt: -calligra-l10n-pt: -calligra-l10n-pt: -calligra-l10n-pt: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-pt_BR b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-pt_BR deleted file mode 100644 index 7226e076..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-pt_BR +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-pt_BR: calligra-l10n-pt_BR -calligra-l10n-pt_BR: -calligra-l10n-pt_BR: Brazil portuguese language support for Calligra. -calligra-l10n-pt_BR: -calligra-l10n-pt_BR: -calligra-l10n-pt_BR: -calligra-l10n-pt_BR: -calligra-l10n-pt_BR: -calligra-l10n-pt_BR: -calligra-l10n-pt_BR: -calligra-l10n-pt_BR: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ro b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ro deleted file mode 100644 index f04543d9..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ro +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-ro: calligra-l10n-ro -calligra-l10n-ro: -calligra-l10n-ro: Romanian language support for Calligra. -calligra-l10n-ro: -calligra-l10n-ro: -calligra-l10n-ro: -calligra-l10n-ro: -calligra-l10n-ro: -calligra-l10n-ro: -calligra-l10n-ro: -calligra-l10n-ro: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ru b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ru deleted file mode 100644 index 98b99dcc..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ru +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-ru: calligra-l10n-ru -calligra-l10n-ru: -calligra-l10n-ru: Russian language support for Calligra. -calligra-l10n-ru: -calligra-l10n-ru: -calligra-l10n-ru: -calligra-l10n-ru: -calligra-l10n-ru: -calligra-l10n-ru: -calligra-l10n-ru: -calligra-l10n-ru: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-se b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-se deleted file mode 100644 index c63ddaca..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-se +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-se: calligra-l10n-se -calligra-l10n-se: -calligra-l10n-se: Northern Sami language support for Calligra. -calligra-l10n-se: -calligra-l10n-se: -calligra-l10n-se: -calligra-l10n-se: -calligra-l10n-se: -calligra-l10n-se: -calligra-l10n-se: -calligra-l10n-se: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-sk b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-sk deleted file mode 100644 index 07844434..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-sk +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-sk: calligra-l10n-sk -calligra-l10n-sk: -calligra-l10n-sk: Slovak language support for Calligra. -calligra-l10n-sk: -calligra-l10n-sk: -calligra-l10n-sk: -calligra-l10n-sk: -calligra-l10n-sk: -calligra-l10n-sk: -calligra-l10n-sk: -calligra-l10n-sk: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-sl b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-sl deleted file mode 100644 index 2c733cde..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-sl +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-sl: calligra-l10n-sl -calligra-l10n-sl: -calligra-l10n-sl: Slovenian language support for Calligra. -calligra-l10n-sl: -calligra-l10n-sl: -calligra-l10n-sl: -calligra-l10n-sl: -calligra-l10n-sl: -calligra-l10n-sl: -calligra-l10n-sl: -calligra-l10n-sl: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-sr b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-sr deleted file mode 100644 index 0d632560..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-sr +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-sr: calligra-l10n-sr -calligra-l10n-sr: -calligra-l10n-sr: Serbian language support for Calligra. -calligra-l10n-sr: -calligra-l10n-sr: -calligra-l10n-sr: -calligra-l10n-sr: -calligra-l10n-sr: -calligra-l10n-sr: -calligra-l10n-sr: -calligra-l10n-sr: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-sr@Latn b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-sr@Latn deleted file mode 100644 index 3c3c4718..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-sr@Latn +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-sr@Latn: calligra-l10n-sr@Latn -calligra-l10n-sr@Latn: -calligra-l10n-sr@Latn: Serbian in Latin script language support for Calligra. -calligra-l10n-sr@Latn: -calligra-l10n-sr@Latn: -calligra-l10n-sr@Latn: -calligra-l10n-sr@Latn: -calligra-l10n-sr@Latn: -calligra-l10n-sr@Latn: -calligra-l10n-sr@Latn: -calligra-l10n-sr@Latn: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-sv b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-sv deleted file mode 100644 index 8a6c8a92..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-sv +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-sv: calligra-l10n-sv -calligra-l10n-sv: -calligra-l10n-sv: Swedish language support for Calligra. -calligra-l10n-sv: -calligra-l10n-sv: -calligra-l10n-sv: -calligra-l10n-sv: -calligra-l10n-sv: -calligra-l10n-sv: -calligra-l10n-sv: -calligra-l10n-sv: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ta b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ta deleted file mode 100644 index e3539b67..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ta +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-ta: calligra-l10n-ta -calligra-l10n-ta: -calligra-l10n-ta: Tamil language support for Calligra. -calligra-l10n-ta: -calligra-l10n-ta: -calligra-l10n-ta: -calligra-l10n-ta: -calligra-l10n-ta: -calligra-l10n-ta: -calligra-l10n-ta: -calligra-l10n-ta: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-tg b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-tg deleted file mode 100644 index ed6a6bf9..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-tg +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-tg: calligra-l10n-tg -calligra-l10n-tg: -calligra-l10n-tg: Tajik language support for Calligra. -calligra-l10n-tg: -calligra-l10n-tg: -calligra-l10n-tg: -calligra-l10n-tg: -calligra-l10n-tg: -calligra-l10n-tg: -calligra-l10n-tg: -calligra-l10n-tg: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-th b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-th deleted file mode 100644 index 22327ee1..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-th +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-th: calligra-l10n-th -calligra-l10n-th: -calligra-l10n-th: Thai language support for Calligra. -calligra-l10n-th: -calligra-l10n-th: -calligra-l10n-th: -calligra-l10n-th: -calligra-l10n-th: -calligra-l10n-th: -calligra-l10n-th: -calligra-l10n-th: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-tr b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-tr deleted file mode 100644 index 14467609..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-tr +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-tr: calligra-l10n-tr -calligra-l10n-tr: -calligra-l10n-tr: Turkish language support for Calligra. -calligra-l10n-tr: -calligra-l10n-tr: -calligra-l10n-tr: -calligra-l10n-tr: -calligra-l10n-tr: -calligra-l10n-tr: -calligra-l10n-tr: -calligra-l10n-tr: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-uk b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-uk deleted file mode 100644 index 1dc20514..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-uk +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-uk: calligra-l10n-uk -calligra-l10n-uk: -calligra-l10n-uk: Ukrainian language support for Calligra. -calligra-l10n-uk: -calligra-l10n-uk: -calligra-l10n-uk: -calligra-l10n-uk: -calligra-l10n-uk: -calligra-l10n-uk: -calligra-l10n-uk: -calligra-l10n-uk: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-uz b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-uz deleted file mode 100644 index 8628d79e..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-uz +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-uz: calligra-l10n-uz -calligra-l10n-uz: -calligra-l10n-uz: Uzbek language support for Calligra. -calligra-l10n-uz: -calligra-l10n-uz: -calligra-l10n-uz: -calligra-l10n-uz: -calligra-l10n-uz: -calligra-l10n-uz: -calligra-l10n-uz: -calligra-l10n-uz: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ven b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ven deleted file mode 100644 index c62947c0..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-ven +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-ven: calligra-l10n-ven -calligra-l10n-ven: -calligra-l10n-ven: Venda language support for Calligra. -calligra-l10n-ven: -calligra-l10n-ven: -calligra-l10n-ven: -calligra-l10n-ven: -calligra-l10n-ven: -calligra-l10n-ven: -calligra-l10n-ven: -calligra-l10n-ven: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-wa b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-wa deleted file mode 100644 index 4da625a8..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-wa +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-wa: calligra-l10n-wa -calligra-l10n-wa: -calligra-l10n-wa: Walloon language support for Calligra. -calligra-l10n-wa: -calligra-l10n-wa: -calligra-l10n-wa: -calligra-l10n-wa: -calligra-l10n-wa: -calligra-l10n-wa: -calligra-l10n-wa: -calligra-l10n-wa: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-xh b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-xh deleted file mode 100644 index 89ecfdfa..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-xh +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-xh: calligra-l10n-xh -calligra-l10n-xh: -calligra-l10n-xh: Xhosa language support for Calligra. -calligra-l10n-xh: -calligra-l10n-xh: -calligra-l10n-xh: -calligra-l10n-xh: -calligra-l10n-xh: -calligra-l10n-xh: -calligra-l10n-xh: -calligra-l10n-xh: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-zh_CN b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-zh_CN deleted file mode 100644 index 9fb17ead..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-zh_CN +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-zh_CN: calligra-l10n-zh_CN -calligra-l10n-zh_CN: -calligra-l10n-zh_CN: Simplified Chinese language support for Calligra. -calligra-l10n-zh_CN: -calligra-l10n-zh_CN: -calligra-l10n-zh_CN: -calligra-l10n-zh_CN: -calligra-l10n-zh_CN: -calligra-l10n-zh_CN: -calligra-l10n-zh_CN: -calligra-l10n-zh_CN: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-zh_TW b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-zh_TW deleted file mode 100644 index 42b10809..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-zh_TW +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-zh_TW: calligra-l10n-zh_TW -calligra-l10n-zh_TW: -calligra-l10n-zh_TW: Chinese language support for Calligra. -calligra-l10n-zh_TW: -calligra-l10n-zh_TW: -calligra-l10n-zh_TW: -calligra-l10n-zh_TW: -calligra-l10n-zh_TW: -calligra-l10n-zh_TW: -calligra-l10n-zh_TW: -calligra-l10n-zh_TW: diff --git a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-zu b/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-zu deleted file mode 100644 index fade4b03..00000000 --- a/source/kdei/calligra-l10n/slack-desc/slack-desc.calligra-l10n-zu +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -calligra-l10n-zu: calligra-l10n-zu -calligra-l10n-zu: -calligra-l10n-zu: Zulu language support for Calligra. -calligra-l10n-zu: -calligra-l10n-zu: -calligra-l10n-zu: -calligra-l10n-zu: -calligra-l10n-zu: -calligra-l10n-zu: -calligra-l10n-zu: -calligra-l10n-zu: diff --git a/source/kdei/kde-l10n/kde-l10n.SlackBuild b/source/kdei/kde-l10n/kde-l10n.SlackBuild deleted file mode 100755 index dda42058..00000000 --- a/source/kdei/kde-l10n/kde-l10n.SlackBuild +++ /dev/null @@ -1,167 +0,0 @@ -#!/bin/bash - -# Copyright 2008 Robby Workman Northport, AL, USA -# Copyright 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2018 Patrick J. Volkerding, Sebeka, MN, USA -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -# This script should build any of the language packs if run with (for example): -# PKGLANG=de ./kde-l10n.SlackBuild -# You should be able to build all of them with something like this: -# for i in $(cat languages) ; do PKGLANG=$i ./kde-l10n.SlackBuild ; done -# If ./languages is missing and this script is called without options, the -# default is to create an up-to-date ./languages list and build all the -# language packs. - -cd $(dirname $0) ; CWD=$(pwd) - -if [ ! -r ./languages ]; then - for file in kde-l10n*xz ; do - echo $file | cut -f 3 -d - >> ./languages - done -fi - -[ -z $VERSION ] && export VERSION=4.14.3 -[ -z $ARCH ] && export ARCH=noarch -[ -z $BUILD ] && export BUILD=1 - -# Use this as CFLAGS and CXXFLAGS: -if [ -z "$SLKCFLAGS" ]; then - if [ "$ARCH" = "i486" ]; then - export SLKCFLAGS="-O2 -march=i486 -mtune=i686" - elif [ "$ARCH" = "s390" ]; then - export SLKCFLAGS="-O2" - elif [ "$ARCH" = "x86_64" ]; then - export SLKCFLAGS="-O2 -fPIC" - elif [ "$ARCH" = "armv7hl" ]; then - export SLKCFLAGS="-O2 -march=armv7-a -mfpu=vfpv3-d16" - else - export SLKCFLAGS="-O2" - fi -fi - -# Get the kde environment variables -[ -d kdebase ] && . ./kdebase/profile.d/kde.sh - -# Set the config option variables if they are not already set: -[ -r ../KDE.options ] && . ../KDE.options - -TMP=${TMP:-/tmp/kde_build} - -# This function will insert missing kdepim translations from kde-l10n-4.4.5: -insert_kdepim() { - if [ -r $CWD/kdepim-l10n/kdepim-l10n-$(echo $PKGNAM | cut -f 3 -d -)-4.4.5.tar.xz ]; then - tar xvf $CWD/kdepim-l10n/kdepim-l10n-$(echo $PKGNAM | cut -f 3 -d -)-4.4.5.tar.xz - fi - for dir in $(find . -type d -name messages) $(find . -type d -name docs) ; do - ( cd $dir - if [ -d kdepim ]; then - echo "add_subdirectory( kdepim )" >> CMakeLists.txt.new - fi - if [ -r CMakeLists.txt ]; then - cat CMakeLists.txt >> CMakeLists.txt.new - mv CMakeLists.txt.new CMakeLists.txt - else - rm -f CMakeLists.txt.new - fi - ) - done - # Update DTD specification. This will fix some of the issues... - sed -i -e "s/V4.1.2-Based/V4.2-Based/g" $(grep -lr "V4.1.2-Based" *) - sed -i -e "s/V4.1-Based/V4.2-Based/g" $(grep -lr "V4.1-Based" *) - sed -i -e "s/V4.2-Based Variant V1.0/V4.2-Based Variant V1.1/g" $(grep -lr "V4.2-Based Variant V1.0" *) - if ls $CWD/kdepim-l10n/kdepim-l10n-$(echo $PKGNAM | cut -f 3 -d -)-4.4.5.*.diff.gz 1> /dev/null 2> /dev/null ; then - for patch in $CWD/kdepim-l10n/kdepim-l10n-$(echo $PKGNAM | cut -f 3 -d -)-4.4.5.*.diff.gz ; do - zcat $patch | patch -p1 --verbose || exit 1 - done - fi -} - -make_language_pack() { -rm -rf $PKG -mkdir -p $TMP $PKG -cd $TMP -rm -rf $PKGNAM-$VERSION -tar xvf $CWD/$PKGNAM-$VERSION.tar.xz || exit 1 -cd $PKGNAM-$VERSION || exit 1 -insert_kdepim; -chown -R root:root . -find . \ - \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \+ -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \+ -mkdir -p build -( cd build - cmake \ - -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DMAN_INSTALL_DIR=/usr/man \ - -DSYSCONF_INSTALL_DIR=/etc/kde \ - -DLIB_SUFFIX=${LIBDIRSUFFIX} \ - .. - make || exit 1 - make install DESTDIR=$PKG || exit 1 -) || touch $TMP/$PKGNAM.failed -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null -) -if [ -d $PKG/usr/man ]; then - ( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \+ - ) -fi -mkdir -p $PKG/install -cat $CWD/slack-desc/slack-desc.kde-l10n-$PKGLANG > $PKG/install/slack-desc -cd $PKG -/sbin/makepkg -l y -c n $TMP/$PKGNAM-$VERSION-$ARCH-$BUILD.txz -} - -if [ -z $PKGLANG ]; then - for PKGLANG in $(cat languages) ; do - PKGNAM=kde-l10n-$PKGLANG - # If the variable PRINT_PACKAGE_NAME is set, then this script will report what - # the name of the created package would be, and then exit. This information - # could be useful to other scripts. - if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then - echo "$PKGNAM-$VERSION-$ARCH-$BUILD.txz" - continue - fi - PKG=$TMP/package-kde-l10n-$PKGLANG - # The global options may be overridden here (if needed): - [ -r ./local.options/$PKGLANG ] && . ./local.options/$PKGLANG - make_language_pack; - done -else - PKGNAM=kde-l10n-$PKGLANG - # If the variable PRINT_PACKAGE_NAME is set, then this script will report what - # the name of the created package would be, and then exit. This information - # could be useful to other scripts. - if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then - echo "$PKGNAM-$VERSION-$ARCH-$BUILD.txz" - exit 0 - fi - PKG=$TMP/package-kde-l10n-$PKGLANG - # The global options may be overridden here (if needed): - [ -r ./local.options/$PKGLANG ] && . ./local.options/$PKGLANG - make_language_pack; -fi - diff --git a/source/kdei/kde-l10n/kdepim-l10n/extract-kdepim-goodness.sh b/source/kdei/kde-l10n/kdepim-l10n/extract-kdepim-goodness.sh deleted file mode 100644 index 1c916278..00000000 --- a/source/kdei/kde-l10n/kdepim-l10n/extract-kdepim-goodness.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# This script was used to extract the kdepim parts from the last kde-l10n -# release that contained them. The resulting kdepim-l10n sources will be -# merged into our language packages. - -# This should be run in the directory containing the kde-l10n-*-4.4.5 -# source tarballs that you wish to create kdepim-l10n archives from. - -for file in kde-l10n*.tar.bz2 ; do - rm -rf $(basename $file .tar.bz2) kdepim-l10n-$(echo $file | cut -f 3 -d -)-4.4.5 - echo "Extracting $file" - tar xf $file - mkdir kdepim-l10n-$(echo $file | cut -f 3 -d -)-4.4.5 - ( cd $(basename $file .tar.bz2) - find . -name "kdepim" -type d -exec cp -a --parents "{}" ../kdepim-l10n-$(echo $file | cut -f 3 -d -)-4.4.5 \; - ) - ( cd kdepim-l10n-$(echo $file | cut -f 3 -d -)-4.4.5 - tar cf ../kdepim-l10n-$(echo $file | cut -f 3 -d -)-4.4.5.tar . - ) - rm -f kdepim-l10n-$(echo $file | cut -f 3 -d -)-4.4.5.tar.bz2 - bzip2 -9 kdepim-l10n-$(echo $file | cut -f 3 -d -)-4.4.5.tar - rm -r $(basename $file .tar.bz2) kdepim-l10n-$(echo $file | cut -f 3 -d -)-4.4.5 -done diff --git a/source/kdei/kde-l10n/kdepim-l10n/kdepim-l10n-fr-4.4.5.korganizer.docbook.reorganize.diff.gz.defunct b/source/kdei/kde-l10n/kdepim-l10n/kdepim-l10n-fr-4.4.5.korganizer.docbook.reorganize.diff.gz.defunct Binary files differdeleted file mode 100644 index 2ccf131b..00000000 --- a/source/kdei/kde-l10n/kdepim-l10n/kdepim-l10n-fr-4.4.5.korganizer.docbook.reorganize.diff.gz.defunct +++ /dev/null diff --git a/source/kdei/kde-l10n/languages b/source/kdei/kde-l10n/languages deleted file mode 100644 index f4f96380..00000000 --- a/source/kdei/kde-l10n/languages +++ /dev/null @@ -1,53 +0,0 @@ -ar -bg -bs -ca -ca@valencia -cs -da -de -el -en_GB -es -et -eu -fa -fi -fr -ga -gl -he -hi -hr -hu -ia -id -is -it -ja -kk -km -ko -lt -lv -mr -nb -nds -nl -nn -pa -pl -pt -pt_BR -ro -ru -sk -sl -sr -sv -tr -ug -uk -wa -zh_CN -zh_TW diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ar b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ar deleted file mode 100644 index 2c2a240d..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ar +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-ar: kde-l10n-ar -kde-l10n-ar: -kde-l10n-ar: Arabic language support for KDE. -kde-l10n-ar: -kde-l10n-ar: -kde-l10n-ar: -kde-l10n-ar: -kde-l10n-ar: -kde-l10n-ar: -kde-l10n-ar: -kde-l10n-ar: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-bg b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-bg deleted file mode 100644 index 95e61673..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-bg +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-bg: kde-l10n-bg -kde-l10n-bg: -kde-l10n-bg: Bulgarian language support for KDE. -kde-l10n-bg: -kde-l10n-bg: -kde-l10n-bg: -kde-l10n-bg: -kde-l10n-bg: -kde-l10n-bg: -kde-l10n-bg: -kde-l10n-bg: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-bn_IN b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-bn_IN deleted file mode 100644 index cf11a21c..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-bn_IN +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-bn_IN: kde-l10n-bn_IN -kde-l10n-bn_IN: -kde-l10n-bn_IN: Bengali language support for KDE. -kde-l10n-bn_IN: -kde-l10n-bn_IN: -kde-l10n-bn_IN: -kde-l10n-bn_IN: -kde-l10n-bn_IN: -kde-l10n-bn_IN: -kde-l10n-bn_IN: -kde-l10n-bn_IN: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-bs b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-bs deleted file mode 100644 index 202f5a1b..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-bs +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-bs: kde-l10n-bs -kde-l10n-bs: -kde-l10n-bs: Bosnian language support for KDE. -kde-l10n-bs: -kde-l10n-bs: -kde-l10n-bs: -kde-l10n-bs: -kde-l10n-bs: -kde-l10n-bs: -kde-l10n-bs: -kde-l10n-bs: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ca b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ca deleted file mode 100644 index 300e8a03..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ca +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-ca: kde-l10n-ca -kde-l10n-ca: -kde-l10n-ca: Catalan language support for KDE. -kde-l10n-ca: -kde-l10n-ca: -kde-l10n-ca: -kde-l10n-ca: -kde-l10n-ca: -kde-l10n-ca: -kde-l10n-ca: -kde-l10n-ca: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ca@valencia b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ca@valencia deleted file mode 100644 index d66ecb12..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ca@valencia +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-ca@valencia: kde-l10n-ca@valencia -kde-l10n-ca@valencia: -kde-l10n-ca@valencia: Catalan (Valencian) language support for KDE. -kde-l10n-ca@valencia: -kde-l10n-ca@valencia: -kde-l10n-ca@valencia: -kde-l10n-ca@valencia: -kde-l10n-ca@valencia: -kde-l10n-ca@valencia: -kde-l10n-ca@valencia: -kde-l10n-ca@valencia: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-cs b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-cs deleted file mode 100644 index b8c78d69..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-cs +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-cs: kde-l10n-cs -kde-l10n-cs: -kde-l10n-cs: Czech language support for KDE. -kde-l10n-cs: -kde-l10n-cs: -kde-l10n-cs: -kde-l10n-cs: -kde-l10n-cs: -kde-l10n-cs: -kde-l10n-cs: -kde-l10n-cs: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-csb b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-csb deleted file mode 100644 index a1edbab7..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-csb +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-csb: kde-l10n-csb -kde-l10n-csb: -kde-l10n-csb: Kashubian language support for KDE. -kde-l10n-csb: -kde-l10n-csb: -kde-l10n-csb: -kde-l10n-csb: -kde-l10n-csb: -kde-l10n-csb: -kde-l10n-csb: -kde-l10n-csb: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-da b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-da deleted file mode 100644 index 24064640..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-da +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-da: kde-l10n-da -kde-l10n-da: -kde-l10n-da: Danish language support for KDE. -kde-l10n-da: -kde-l10n-da: -kde-l10n-da: -kde-l10n-da: -kde-l10n-da: -kde-l10n-da: -kde-l10n-da: -kde-l10n-da: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-de b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-de deleted file mode 100644 index 54ce431b..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-de +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-de: kde-l10n-de -kde-l10n-de: -kde-l10n-de: German language support for KDE. -kde-l10n-de: -kde-l10n-de: -kde-l10n-de: -kde-l10n-de: -kde-l10n-de: -kde-l10n-de: -kde-l10n-de: -kde-l10n-de: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-el b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-el deleted file mode 100644 index 1c77b14f..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-el +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-el: kde-l10n-el -kde-l10n-el: -kde-l10n-el: Greek language support for KDE. -kde-l10n-el: -kde-l10n-el: -kde-l10n-el: -kde-l10n-el: -kde-l10n-el: -kde-l10n-el: -kde-l10n-el: -kde-l10n-el: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-en_GB b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-en_GB deleted file mode 100644 index 3955cc43..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-en_GB +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-en_GB: kde-l10n-en_GB -kde-l10n-en_GB: -kde-l10n-en_GB: English (UK) language support for KDE. -kde-l10n-en_GB: -kde-l10n-en_GB: -kde-l10n-en_GB: -kde-l10n-en_GB: -kde-l10n-en_GB: -kde-l10n-en_GB: -kde-l10n-en_GB: -kde-l10n-en_GB: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-eo b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-eo deleted file mode 100644 index 0c259fa0..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-eo +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-eo: kde-l10n-eo -kde-l10n-eo: -kde-l10n-eo: Esperanto language support for KDE. -kde-l10n-eo: -kde-l10n-eo: -kde-l10n-eo: -kde-l10n-eo: -kde-l10n-eo: -kde-l10n-eo: -kde-l10n-eo: -kde-l10n-eo: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-es b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-es deleted file mode 100644 index d17fe01b..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-es +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-es: kde-l10n-es -kde-l10n-es: -kde-l10n-es: Spanish language support for KDE. -kde-l10n-es: -kde-l10n-es: -kde-l10n-es: -kde-l10n-es: -kde-l10n-es: -kde-l10n-es: -kde-l10n-es: -kde-l10n-es: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-et b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-et deleted file mode 100644 index fe77141d..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-et +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-et: kde-l10n-et -kde-l10n-et: -kde-l10n-et: Estonian language support for KDE. -kde-l10n-et: -kde-l10n-et: -kde-l10n-et: -kde-l10n-et: -kde-l10n-et: -kde-l10n-et: -kde-l10n-et: -kde-l10n-et: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-eu b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-eu deleted file mode 100644 index 033869cc..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-eu +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-eu: kde-l10n-eu -kde-l10n-eu: -kde-l10n-eu: Basque language support for KDE. -kde-l10n-eu: -kde-l10n-eu: -kde-l10n-eu: -kde-l10n-eu: -kde-l10n-eu: -kde-l10n-eu: -kde-l10n-eu: -kde-l10n-eu: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-fa b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-fa deleted file mode 100644 index 293f497d..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-fa +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-fa: kde-l10n-fa -kde-l10n-fa: -kde-l10n-fa: Farsi language support for KDE. -kde-l10n-fa: -kde-l10n-fa: -kde-l10n-fa: -kde-l10n-fa: -kde-l10n-fa: -kde-l10n-fa: -kde-l10n-fa: -kde-l10n-fa: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-fi b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-fi deleted file mode 100644 index d1a197fc..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-fi +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-fi: kde-l10n-fi -kde-l10n-fi: -kde-l10n-fi: Finnish language support for KDE. -kde-l10n-fi: -kde-l10n-fi: -kde-l10n-fi: -kde-l10n-fi: -kde-l10n-fi: -kde-l10n-fi: -kde-l10n-fi: -kde-l10n-fi: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-fr b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-fr deleted file mode 100644 index 4dd64318..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-fr +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-fr: kde-l10n-fr -kde-l10n-fr: -kde-l10n-fr: French language support for KDE. -kde-l10n-fr: -kde-l10n-fr: -kde-l10n-fr: -kde-l10n-fr: -kde-l10n-fr: -kde-l10n-fr: -kde-l10n-fr: -kde-l10n-fr: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-fy b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-fy deleted file mode 100644 index 3e046675..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-fy +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-fy: kde-l10n-fy -kde-l10n-fy: -kde-l10n-fy: Abkhasysk language support for KDE. -kde-l10n-fy: -kde-l10n-fy: -kde-l10n-fy: -kde-l10n-fy: -kde-l10n-fy: -kde-l10n-fy: -kde-l10n-fy: -kde-l10n-fy: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ga b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ga deleted file mode 100644 index b26424e6..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ga +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-ga: kde-l10n-ga -kde-l10n-ga: -kde-l10n-ga: Irish language support for KDE. -kde-l10n-ga: -kde-l10n-ga: -kde-l10n-ga: -kde-l10n-ga: -kde-l10n-ga: -kde-l10n-ga: -kde-l10n-ga: -kde-l10n-ga: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-gl b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-gl deleted file mode 100644 index 5e5503c7..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-gl +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-gl: kde-l10n-gl -kde-l10n-gl: -kde-l10n-gl: Galician language support for KDE. -kde-l10n-gl: -kde-l10n-gl: -kde-l10n-gl: -kde-l10n-gl: -kde-l10n-gl: -kde-l10n-gl: -kde-l10n-gl: -kde-l10n-gl: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-gu b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-gu deleted file mode 100644 index 20f4aca1..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-gu +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-gu: kde-l10n-gu -kde-l10n-gu: -kde-l10n-gu: Gujarati language support for KDE. -kde-l10n-gu: -kde-l10n-gu: -kde-l10n-gu: -kde-l10n-gu: -kde-l10n-gu: -kde-l10n-gu: -kde-l10n-gu: -kde-l10n-gu: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-he b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-he deleted file mode 100644 index c84dbe10..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-he +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-he: kde-l10n-he -kde-l10n-he: -kde-l10n-he: Hebrew language support for KDE. -kde-l10n-he: -kde-l10n-he: -kde-l10n-he: -kde-l10n-he: -kde-l10n-he: -kde-l10n-he: -kde-l10n-he: -kde-l10n-he: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-hi b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-hi deleted file mode 100644 index f2103a23..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-hi +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-hi: kde-l10n-hi -kde-l10n-hi: -kde-l10n-hi: Hindi language support for KDE. -kde-l10n-hi: -kde-l10n-hi: -kde-l10n-hi: -kde-l10n-hi: -kde-l10n-hi: -kde-l10n-hi: -kde-l10n-hi: -kde-l10n-hi: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-hne b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-hne deleted file mode 100644 index 627c110d..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-hne +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-hne: kde-l10n-hne -kde-l10n-hne: -kde-l10n-hne: Chhattisgarhi language support for KDE. -kde-l10n-hne: -kde-l10n-hne: -kde-l10n-hne: -kde-l10n-hne: -kde-l10n-hne: -kde-l10n-hne: -kde-l10n-hne: -kde-l10n-hne: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-hr b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-hr deleted file mode 100644 index bc9c6f99..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-hr +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-hr: kde-l10n-hr -kde-l10n-hr: -kde-l10n-hr: Croatian language support for KDE. -kde-l10n-hr: -kde-l10n-hr: -kde-l10n-hr: -kde-l10n-hr: -kde-l10n-hr: -kde-l10n-hr: -kde-l10n-hr: -kde-l10n-hr: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-hu b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-hu deleted file mode 100644 index fb8384be..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-hu +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-hu: kde-l10n-hu -kde-l10n-hu: -kde-l10n-hu: Hungarian language support for KDE. -kde-l10n-hu: -kde-l10n-hu: -kde-l10n-hu: -kde-l10n-hu: -kde-l10n-hu: -kde-l10n-hu: -kde-l10n-hu: -kde-l10n-hu: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ia b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ia deleted file mode 100644 index 3094e868..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ia +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-ia: kde-l10n-ia -kde-l10n-ia: -kde-l10n-ia: Interlingua language support for KDE. -kde-l10n-ia: -kde-l10n-ia: -kde-l10n-ia: -kde-l10n-ia: -kde-l10n-ia: -kde-l10n-ia: -kde-l10n-ia: -kde-l10n-ia: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-id b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-id deleted file mode 100644 index 1629bd84..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-id +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-id: kde-l10n-id -kde-l10n-id: -kde-l10n-id: Indonesian language support for KDE. -kde-l10n-id: -kde-l10n-id: -kde-l10n-id: -kde-l10n-id: -kde-l10n-id: -kde-l10n-id: -kde-l10n-id: -kde-l10n-id: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-is b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-is deleted file mode 100644 index 39ae8e8c..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-is +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-is: kde-l10n-is -kde-l10n-is: -kde-l10n-is: Icelandic language support for KDE. -kde-l10n-is: -kde-l10n-is: -kde-l10n-is: -kde-l10n-is: -kde-l10n-is: -kde-l10n-is: -kde-l10n-is: -kde-l10n-is: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-it b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-it deleted file mode 100644 index d6af3ae3..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-it +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-it: kde-l10n-it -kde-l10n-it: -kde-l10n-it: Italian language support for KDE. -kde-l10n-it: -kde-l10n-it: -kde-l10n-it: -kde-l10n-it: -kde-l10n-it: -kde-l10n-it: -kde-l10n-it: -kde-l10n-it: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ja b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ja deleted file mode 100644 index 94783bbd..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ja +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-ja: kde-l10n-ja -kde-l10n-ja: -kde-l10n-ja: Japanese language support for KDE. -kde-l10n-ja: -kde-l10n-ja: -kde-l10n-ja: -kde-l10n-ja: -kde-l10n-ja: -kde-l10n-ja: -kde-l10n-ja: -kde-l10n-ja: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-kk b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-kk deleted file mode 100644 index 3c23f859..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-kk +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-kk: kde-l10n-kk -kde-l10n-kk: -kde-l10n-kk: Kazakh language support for KDE. -kde-l10n-kk: -kde-l10n-kk: -kde-l10n-kk: -kde-l10n-kk: -kde-l10n-kk: -kde-l10n-kk: -kde-l10n-kk: -kde-l10n-kk: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-km b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-km deleted file mode 100644 index 87b31349..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-km +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-km: kde-l10n-km -kde-l10n-km: -kde-l10n-km: Khmer language support for KDE. -kde-l10n-km: -kde-l10n-km: -kde-l10n-km: -kde-l10n-km: -kde-l10n-km: -kde-l10n-km: -kde-l10n-km: -kde-l10n-km: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-kn b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-kn deleted file mode 100644 index 591684db..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-kn +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-kn: kde-l10n-kn -kde-l10n-kn: -kde-l10n-kn: Kannada language support for KDE. -kde-l10n-kn: -kde-l10n-kn: -kde-l10n-kn: -kde-l10n-kn: -kde-l10n-kn: -kde-l10n-kn: -kde-l10n-kn: -kde-l10n-kn: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ko b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ko deleted file mode 100644 index 063b5a6c..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ko +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-ko: kde-l10n-ko -kde-l10n-ko: -kde-l10n-ko: Korean language support for KDE. -kde-l10n-ko: -kde-l10n-ko: -kde-l10n-ko: -kde-l10n-ko: -kde-l10n-ko: -kde-l10n-ko: -kde-l10n-ko: -kde-l10n-ko: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ku b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ku deleted file mode 100644 index b1995425..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ku +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-ku: kde-l10n-ku -kde-l10n-ku: -kde-l10n-ku: Kurdish language support for KDE. -kde-l10n-ku: -kde-l10n-ku: -kde-l10n-ku: -kde-l10n-ku: -kde-l10n-ku: -kde-l10n-ku: -kde-l10n-ku: -kde-l10n-ku: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-lt b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-lt deleted file mode 100644 index 081514e1..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-lt +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-lt: kde-l10n-lt -kde-l10n-lt: -kde-l10n-lt: Lithuanian language support for KDE. -kde-l10n-lt: -kde-l10n-lt: -kde-l10n-lt: -kde-l10n-lt: -kde-l10n-lt: -kde-l10n-lt: -kde-l10n-lt: -kde-l10n-lt: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-lv b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-lv deleted file mode 100644 index fd39a8ba..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-lv +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-lv: kde-l10n-lv -kde-l10n-lv: -kde-l10n-lv: Latvian language support for KDE. -kde-l10n-lv: -kde-l10n-lv: -kde-l10n-lv: -kde-l10n-lv: -kde-l10n-lv: -kde-l10n-lv: -kde-l10n-lv: -kde-l10n-lv: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-mai b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-mai deleted file mode 100644 index 5926c595..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-mai +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-mai: kde-l10n-mai -kde-l10n-mai: -kde-l10n-mai: Maithili language support for KDE. -kde-l10n-mai: -kde-l10n-mai: -kde-l10n-mai: -kde-l10n-mai: -kde-l10n-mai: -kde-l10n-mai: -kde-l10n-mai: -kde-l10n-mai: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-mk b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-mk deleted file mode 100644 index e0eb2a72..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-mk +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-mk: kde-l10n-mk -kde-l10n-mk: -kde-l10n-mk: Macedonian language support for KDE. -kde-l10n-mk: -kde-l10n-mk: -kde-l10n-mk: -kde-l10n-mk: -kde-l10n-mk: -kde-l10n-mk: -kde-l10n-mk: -kde-l10n-mk: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ml b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ml deleted file mode 100644 index 233bce3e..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ml +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-ml: kde-l10n-ml -kde-l10n-ml: -kde-l10n-ml: Malayalam language support for KDE. -kde-l10n-ml: -kde-l10n-ml: -kde-l10n-ml: -kde-l10n-ml: -kde-l10n-ml: -kde-l10n-ml: -kde-l10n-ml: -kde-l10n-ml: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-mr b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-mr deleted file mode 100644 index 4c018c57..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-mr +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-mr: kde-l10n-mr -kde-l10n-mr: -kde-l10n-mr: Marathi language support for KDE. -kde-l10n-mr: -kde-l10n-mr: -kde-l10n-mr: -kde-l10n-mr: -kde-l10n-mr: -kde-l10n-mr: -kde-l10n-mr: -kde-l10n-mr: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-nb b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-nb deleted file mode 100644 index 26ed3d98..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-nb +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-nb: kde-l10n-nb -kde-l10n-nb: -kde-l10n-nb: Norwegian (Bokmaal) language support for KDE. -kde-l10n-nb: -kde-l10n-nb: -kde-l10n-nb: -kde-l10n-nb: -kde-l10n-nb: -kde-l10n-nb: -kde-l10n-nb: -kde-l10n-nb: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-nds b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-nds deleted file mode 100644 index 9416ab17..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-nds +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-nds: kde-l10n-nds -kde-l10n-nds: -kde-l10n-nds: Low Saxon language support for KDE. -kde-l10n-nds: -kde-l10n-nds: -kde-l10n-nds: -kde-l10n-nds: -kde-l10n-nds: -kde-l10n-nds: -kde-l10n-nds: -kde-l10n-nds: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-nl b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-nl deleted file mode 100644 index 182922bf..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-nl +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-nl: kde-l10n-nl -kde-l10n-nl: -kde-l10n-nl: Dutch language support for KDE. -kde-l10n-nl: -kde-l10n-nl: -kde-l10n-nl: -kde-l10n-nl: -kde-l10n-nl: -kde-l10n-nl: -kde-l10n-nl: -kde-l10n-nl: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-nn b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-nn deleted file mode 100644 index 661b8d08..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-nn +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-nn: kde-l10n-nn -kde-l10n-nn: -kde-l10n-nn: Norwegian (Nynorsk) language support for KDE. -kde-l10n-nn: -kde-l10n-nn: -kde-l10n-nn: -kde-l10n-nn: -kde-l10n-nn: -kde-l10n-nn: -kde-l10n-nn: -kde-l10n-nn: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-pa b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-pa deleted file mode 100644 index e79f2cfe..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-pa +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-pa: kde-l10n-pa -kde-l10n-pa: -kde-l10n-pa: Punjabi language support for KDE. -kde-l10n-pa: -kde-l10n-pa: -kde-l10n-pa: -kde-l10n-pa: -kde-l10n-pa: -kde-l10n-pa: -kde-l10n-pa: -kde-l10n-pa: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-pl b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-pl deleted file mode 100644 index b269c615..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-pl +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-pl: kde-l10n-pl -kde-l10n-pl: -kde-l10n-pl: Polish language support for KDE. -kde-l10n-pl: -kde-l10n-pl: -kde-l10n-pl: -kde-l10n-pl: -kde-l10n-pl: -kde-l10n-pl: -kde-l10n-pl: -kde-l10n-pl: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-pt b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-pt deleted file mode 100644 index f35e7e65..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-pt +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-pt: kde-l10n-pt -kde-l10n-pt: -kde-l10n-pt: Portuguese language support for KDE. -kde-l10n-pt: -kde-l10n-pt: -kde-l10n-pt: -kde-l10n-pt: -kde-l10n-pt: -kde-l10n-pt: -kde-l10n-pt: -kde-l10n-pt: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-pt_BR b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-pt_BR deleted file mode 100644 index dfb14476..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-pt_BR +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-pt_BR: kde-l10n-pt_BR -kde-l10n-pt_BR: -kde-l10n-pt_BR: Brazilian Portuguese language support for KDE. -kde-l10n-pt_BR: -kde-l10n-pt_BR: -kde-l10n-pt_BR: -kde-l10n-pt_BR: -kde-l10n-pt_BR: -kde-l10n-pt_BR: -kde-l10n-pt_BR: -kde-l10n-pt_BR: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ro b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ro deleted file mode 100644 index 64bf733a..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ro +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-ro: kde-l10n-ro -kde-l10n-ro: -kde-l10n-ro: Romanian language support for KDE. -kde-l10n-ro: -kde-l10n-ro: -kde-l10n-ro: -kde-l10n-ro: -kde-l10n-ro: -kde-l10n-ro: -kde-l10n-ro: -kde-l10n-ro: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ru b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ru deleted file mode 100644 index 6a3ff2f4..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ru +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-ru: kde-l10n-ru -kde-l10n-ru: -kde-l10n-ru: Russian language support for KDE. -kde-l10n-ru: -kde-l10n-ru: -kde-l10n-ru: -kde-l10n-ru: -kde-l10n-ru: -kde-l10n-ru: -kde-l10n-ru: -kde-l10n-ru: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-si b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-si deleted file mode 100644 index 526ea811..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-si +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-si: kde-l10n-si -kde-l10n-si: -kde-l10n-si: Sinhala language support for KDE. -kde-l10n-si: -kde-l10n-si: -kde-l10n-si: -kde-l10n-si: -kde-l10n-si: -kde-l10n-si: -kde-l10n-si: -kde-l10n-si: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-sk b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-sk deleted file mode 100644 index 710ecb9a..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-sk +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-sk: kde-l10n-sk -kde-l10n-sk: -kde-l10n-sk: Slovak language support for KDE. -kde-l10n-sk: -kde-l10n-sk: -kde-l10n-sk: -kde-l10n-sk: -kde-l10n-sk: -kde-l10n-sk: -kde-l10n-sk: -kde-l10n-sk: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-sl b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-sl deleted file mode 100644 index bbf62a4c..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-sl +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-sl: kde-l10n-sl -kde-l10n-sl: -kde-l10n-sl: Slovenian language support for KDE. -kde-l10n-sl: -kde-l10n-sl: -kde-l10n-sl: -kde-l10n-sl: -kde-l10n-sl: -kde-l10n-sl: -kde-l10n-sl: -kde-l10n-sl: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-sr b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-sr deleted file mode 100644 index c5605005..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-sr +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-sr: kde-l10n-sr -kde-l10n-sr: -kde-l10n-sr: Serbian language support for KDE. -kde-l10n-sr: -kde-l10n-sr: -kde-l10n-sr: -kde-l10n-sr: -kde-l10n-sr: -kde-l10n-sr: -kde-l10n-sr: -kde-l10n-sr: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-sv b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-sv deleted file mode 100644 index 6ada2deb..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-sv +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-sv: kde-l10n-sv -kde-l10n-sv: -kde-l10n-sv: Swedish language support for KDE. -kde-l10n-sv: -kde-l10n-sv: -kde-l10n-sv: -kde-l10n-sv: -kde-l10n-sv: -kde-l10n-sv: -kde-l10n-sv: -kde-l10n-sv: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ta b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ta deleted file mode 100644 index 1ef20a1e..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ta +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-ta: kde-l10n-ta -kde-l10n-ta: -kde-l10n-ta: Tamil language support for KDE. -kde-l10n-ta: -kde-l10n-ta: -kde-l10n-ta: -kde-l10n-ta: -kde-l10n-ta: -kde-l10n-ta: -kde-l10n-ta: -kde-l10n-ta: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-tg b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-tg deleted file mode 100644 index 39ac24c1..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-tg +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-tg: kde-l10n-tg -kde-l10n-tg: -kde-l10n-tg: Tajik language support for KDE. -kde-l10n-tg: -kde-l10n-tg: -kde-l10n-tg: -kde-l10n-tg: -kde-l10n-tg: -kde-l10n-tg: -kde-l10n-tg: -kde-l10n-tg: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-th b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-th deleted file mode 100644 index 33a82a80..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-th +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-th: kde-l10n-th -kde-l10n-th: -kde-l10n-th: Thai language support for KDE. -kde-l10n-th: -kde-l10n-th: -kde-l10n-th: -kde-l10n-th: -kde-l10n-th: -kde-l10n-th: -kde-l10n-th: -kde-l10n-th: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-tr b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-tr deleted file mode 100644 index c6e73b29..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-tr +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-tr: kde-l10n-tr -kde-l10n-tr: -kde-l10n-tr: Turkish language support for KDE. -kde-l10n-tr: -kde-l10n-tr: -kde-l10n-tr: -kde-l10n-tr: -kde-l10n-tr: -kde-l10n-tr: -kde-l10n-tr: -kde-l10n-tr: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ug b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ug deleted file mode 100644 index 1b141c57..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-ug +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-ug: kde-l10n-ug -kde-l10n-ug: -kde-l10n-ug: Uyghur language support for KDE. -kde-l10n-ug: -kde-l10n-ug: -kde-l10n-ug: -kde-l10n-ug: -kde-l10n-ug: -kde-l10n-ug: -kde-l10n-ug: -kde-l10n-ug: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-uk b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-uk deleted file mode 100644 index 66d64641..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-uk +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-uk: kde-l10n-uk -kde-l10n-uk: -kde-l10n-uk: Ukrainian language support for KDE. -kde-l10n-uk: -kde-l10n-uk: -kde-l10n-uk: -kde-l10n-uk: -kde-l10n-uk: -kde-l10n-uk: -kde-l10n-uk: -kde-l10n-uk: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-vi b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-vi deleted file mode 100644 index a86a62e8..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-vi +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-vi: kde-l10n-vi -kde-l10n-vi: -kde-l10n-vi: Vietnamese language support for KDE. -kde-l10n-vi: -kde-l10n-vi: -kde-l10n-vi: -kde-l10n-vi: -kde-l10n-vi: -kde-l10n-vi: -kde-l10n-vi: -kde-l10n-vi: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-wa b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-wa deleted file mode 100644 index 5522370e..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-wa +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-wa: kde-l10n-wa -kde-l10n-wa: -kde-l10n-wa: Walloon language support for KDE. -kde-l10n-wa: -kde-l10n-wa: -kde-l10n-wa: -kde-l10n-wa: -kde-l10n-wa: -kde-l10n-wa: -kde-l10n-wa: -kde-l10n-wa: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-zh_CN b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-zh_CN deleted file mode 100644 index 9246c015..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-zh_CN +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-zh_CN: kde-l10n-zh_CN -kde-l10n-zh_CN: -kde-l10n-zh_CN: Simplified Chinese language support for KDE. -kde-l10n-zh_CN: -kde-l10n-zh_CN: -kde-l10n-zh_CN: -kde-l10n-zh_CN: -kde-l10n-zh_CN: -kde-l10n-zh_CN: -kde-l10n-zh_CN: -kde-l10n-zh_CN: diff --git a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-zh_TW b/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-zh_TW deleted file mode 100644 index 1cd511aa..00000000 --- a/source/kdei/kde-l10n/slack-desc/slack-desc.kde-l10n-zh_TW +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -kde-l10n-zh_TW: kde-l10n-zh_TW -kde-l10n-zh_TW: -kde-l10n-zh_TW: Chinese language support for KDE. -kde-l10n-zh_TW: -kde-l10n-zh_TW: -kde-l10n-zh_TW: -kde-l10n-zh_TW: -kde-l10n-zh_TW: -kde-l10n-zh_TW: -kde-l10n-zh_TW: -kde-l10n-zh_TW: |