diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2009-08-26 10:00:38 -0500 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2018-05-31 22:41:17 +0200 |
commit | 5a12e7c134274dba706667107d10d231517d3e05 (patch) | |
tree | 55718d5acb710fde798d9f38d0bbaf594ed4b296 /source/kdei/koffice | |
download | current-5a12e7c134274dba706667107d10d231517d3e05.tar.gz |
Slackware 13.0slackware-13.0
Wed Aug 26 10:00:38 CDT 2009
Slackware 13.0 x86_64 is released as stable! Thanks to everyone who
helped make this release possible -- see the RELEASE_NOTES for the
credits. The ISOs are off to the replicator. This time it will be a
6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD.
We're taking pre-orders now at store.slackware.com. Please consider
picking up a copy to help support the project. Once again, thanks to
the entire Slackware community for all the help testing and fixing
things and offering suggestions during this development cycle.
As always, have fun and enjoy! -P.
Diffstat (limited to 'source/kdei/koffice')
70 files changed, 1201 insertions, 0 deletions
diff --git a/source/kdei/koffice/koffice-l10n.SlackBuild b/source/kdei/koffice/koffice-l10n.SlackBuild new file mode 100755 index 00000000..03645f2f --- /dev/null +++ b/source/kdei/koffice/koffice-l10n.SlackBuild @@ -0,0 +1,114 @@ +#!/bin/sh + +# Copyright 2008 Robby Workman Northport, AL, USA +# Copyright 2009 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 ./koffice-l10n.SlackBuild +# You should be able to build all of them with something like this: +# for i in $(cat languages) ; do PKGLANG=$i ./koffice-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. + +if [ ! -r ./languages ]; then + for file in koffice-l10n*bz2 ; do + echo $file | cut -f 3 -d - >> ./languages + done +fi + +[ -z $VERSION ] && export VERSION=2.0.2 +[ -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" + 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 + +CWD=$(pwd) +TMP=${TMP:-/tmp} + +make_language_pack() { +rm -rf $PKG +mkdir -p $TMP $PKG +cd $TMP +rm -rf $PKGNAM-$VERSION +tar xvf $CWD/$PKGNAM-$VERSION.tar.bz2 || 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.koffice-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=koffice-l10n-$PKGLANG + PKG=$TMP/package-koffice-l10n-$PKGLANG + # The global options may be overridden here (if needed): + [ -r ./local.options/$PKGLANG ] && . ./local.options/$PKGLANG + make_language_pack; + done +else + PKGNAM=koffice-l10n-$PKGLANG + PKG=$TMP/package-koffice-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/koffice/languages b/source/kdei/koffice/languages new file mode 100644 index 00000000..5449c176 --- /dev/null +++ b/source/kdei/koffice/languages @@ -0,0 +1,27 @@ +ca +cs +da +de +el +en_GB +es +et +fr +fy +gl +hi +it +ja +kk +nb +nds +nl +pl +pt +pt_BR +sv +tr +uk +wa +zh_CN +zh_TW diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-af b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-af new file mode 100644 index 00000000..2159ffe9 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-af @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-af: koffice-l10n-af +koffice-l10n-af: +koffice-l10n-af: Afrikaans language support for KOffice. +koffice-l10n-af: +koffice-l10n-af: +koffice-l10n-af: +koffice-l10n-af: +koffice-l10n-af: +koffice-l10n-af: +koffice-l10n-af: +koffice-l10n-af: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ar b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ar new file mode 100644 index 00000000..f1135341 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ar @@ -0,0 +1,11 @@ +koffice-l10n-ar: koffice-l10n-ar +koffice-l10n-ar: +koffice-l10n-ar: Arabic language support for KOffice. +koffice-l10n-ar: +koffice-l10n-ar: +koffice-l10n-ar: +koffice-l10n-ar: +koffice-l10n-ar: +koffice-l10n-ar: +koffice-l10n-ar: +koffice-l10n-ar: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-az b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-az new file mode 100644 index 00000000..e7b49933 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-az @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-az: koffice-l10n-az +koffice-l10n-az: +koffice-l10n-az: Azerbaijani language support for KOffice. +koffice-l10n-az: +koffice-l10n-az: +koffice-l10n-az: +koffice-l10n-az: +koffice-l10n-az: +koffice-l10n-az: +koffice-l10n-az: +koffice-l10n-az: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-bg b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-bg new file mode 100644 index 00000000..a45db37d --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-bg @@ -0,0 +1,11 @@ +koffice-l10n-bg: koffice-l10n-bg +koffice-l10n-bg: +koffice-l10n-bg: Bulgarian language support for KOffice. +koffice-l10n-bg: +koffice-l10n-bg: +koffice-l10n-bg: +koffice-l10n-bg: +koffice-l10n-bg: +koffice-l10n-bg: +koffice-l10n-bg: +koffice-l10n-bg: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-br b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-br new file mode 100644 index 00000000..51dde265 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-br @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-br: koffice-l10n-br +koffice-l10n-br: +koffice-l10n-br: Breton language support for KOffice. +koffice-l10n-br: +koffice-l10n-br: +koffice-l10n-br: +koffice-l10n-br: +koffice-l10n-br: +koffice-l10n-br: +koffice-l10n-br: +koffice-l10n-br: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-bs b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-bs new file mode 100644 index 00000000..66888376 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-bs @@ -0,0 +1,11 @@ +koffice-l10n-bs: koffice-l10n-bs +koffice-l10n-bs: +koffice-l10n-bs: Bosnian language support for KOffice. +koffice-l10n-bs: +koffice-l10n-bs: +koffice-l10n-bs: +koffice-l10n-bs: +koffice-l10n-bs: +koffice-l10n-bs: +koffice-l10n-bs: +koffice-l10n-bs: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ca b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ca new file mode 100644 index 00000000..29cf70d6 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ca @@ -0,0 +1,11 @@ +koffice-l10n-ca: koffice-l10n-ca +koffice-l10n-ca: +koffice-l10n-ca: Catalan language support for KOffice. +koffice-l10n-ca: +koffice-l10n-ca: +koffice-l10n-ca: +koffice-l10n-ca: +koffice-l10n-ca: +koffice-l10n-ca: +koffice-l10n-ca: +koffice-l10n-ca: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-cs b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-cs new file mode 100644 index 00000000..3a26b06e --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-cs @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-cs: koffice-l10n-cs +koffice-l10n-cs: +koffice-l10n-cs: Czech language support for KOffice. +koffice-l10n-cs: +koffice-l10n-cs: +koffice-l10n-cs: +koffice-l10n-cs: +koffice-l10n-cs: +koffice-l10n-cs: +koffice-l10n-cs: +koffice-l10n-cs: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-cy b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-cy new file mode 100644 index 00000000..7e62677f --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-cy @@ -0,0 +1,11 @@ +koffice-l10n-cy: koffice-l10n-cy +koffice-l10n-cy: +koffice-l10n-cy: Welsh language support for KOffice. +koffice-l10n-cy: +koffice-l10n-cy: +koffice-l10n-cy: +koffice-l10n-cy: +koffice-l10n-cy: +koffice-l10n-cy: +koffice-l10n-cy: +koffice-l10n-cy: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-da b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-da new file mode 100644 index 00000000..4727b048 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-da @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-da: koffice-l10n-da +koffice-l10n-da: +koffice-l10n-da: Danish language support for KOffice. +koffice-l10n-da: +koffice-l10n-da: +koffice-l10n-da: +koffice-l10n-da: +koffice-l10n-da: +koffice-l10n-da: +koffice-l10n-da: +koffice-l10n-da: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-de b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-de new file mode 100644 index 00000000..f24cbd9f --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-de @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-de: koffice-l10n-de +koffice-l10n-de: +koffice-l10n-de: German language support for KOffice. +koffice-l10n-de: +koffice-l10n-de: +koffice-l10n-de: +koffice-l10n-de: +koffice-l10n-de: +koffice-l10n-de: +koffice-l10n-de: +koffice-l10n-de: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-el b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-el new file mode 100644 index 00000000..f7e3f21c --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-el @@ -0,0 +1,11 @@ +koffice-l10n-el: koffice-l10n-el +koffice-l10n-el: +koffice-l10n-el: Greek language support for KOffice. +koffice-l10n-el: +koffice-l10n-el: +koffice-l10n-el: +koffice-l10n-el: +koffice-l10n-el: +koffice-l10n-el: +koffice-l10n-el: +koffice-l10n-el: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-en_GB b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-en_GB new file mode 100644 index 00000000..529c204f --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-en_GB @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-en_GB: koffice-l10n-en_GB +koffice-l10n-en_GB: +koffice-l10n-en_GB: English (UK) language support for KOffice. +koffice-l10n-en_GB: +koffice-l10n-en_GB: +koffice-l10n-en_GB: +koffice-l10n-en_GB: +koffice-l10n-en_GB: +koffice-l10n-en_GB: +koffice-l10n-en_GB: +koffice-l10n-en_GB: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-eo b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-eo new file mode 100644 index 00000000..4cb444f9 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-eo @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-eo: koffice-l10n-eo +koffice-l10n-eo: +koffice-l10n-eo: Esperanto language support for KOffice. +koffice-l10n-eo: +koffice-l10n-eo: +koffice-l10n-eo: +koffice-l10n-eo: +koffice-l10n-eo: +koffice-l10n-eo: +koffice-l10n-eo: +koffice-l10n-eo: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-es b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-es new file mode 100644 index 00000000..da24c7cc --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-es @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-es: koffice-l10n-es +koffice-l10n-es: +koffice-l10n-es: Spanish language support for KOffice. +koffice-l10n-es: +koffice-l10n-es: +koffice-l10n-es: +koffice-l10n-es: +koffice-l10n-es: +koffice-l10n-es: +koffice-l10n-es: +koffice-l10n-es: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-et b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-et new file mode 100644 index 00000000..e5f433b9 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-et @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-et: koffice-l10n-et +koffice-l10n-et: +koffice-l10n-et: Estonian language support for KOffice. +koffice-l10n-et: +koffice-l10n-et: +koffice-l10n-et: +koffice-l10n-et: +koffice-l10n-et: +koffice-l10n-et: +koffice-l10n-et: +koffice-l10n-et: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-eu b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-eu new file mode 100644 index 00000000..993f3ace --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-eu @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-eu: koffice-l10n-eu +koffice-l10n-eu: +koffice-l10n-eu: Basque language support for KOffice. +koffice-l10n-eu: +koffice-l10n-eu: +koffice-l10n-eu: +koffice-l10n-eu: +koffice-l10n-eu: +koffice-l10n-eu: +koffice-l10n-eu: +koffice-l10n-eu: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-fa b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-fa new file mode 100644 index 00000000..82521df0 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-fa @@ -0,0 +1,11 @@ +koffice-l10n-fa: koffice-l10n-fa +koffice-l10n-fa: +koffice-l10n-fa: Persian (Farsi) language support for KOffice. +koffice-l10n-fa: +koffice-l10n-fa: +koffice-l10n-fa: +koffice-l10n-fa: +koffice-l10n-fa: +koffice-l10n-fa: +koffice-l10n-fa: +koffice-l10n-fa: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-fi b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-fi new file mode 100644 index 00000000..f28aaa04 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-fi @@ -0,0 +1,11 @@ +koffice-l10n-fi: koffice-l10n-fi +koffice-l10n-fi: +koffice-l10n-fi: Finnish language support for KOffice. +koffice-l10n-fi: +koffice-l10n-fi: +koffice-l10n-fi: +koffice-l10n-fi: +koffice-l10n-fi: +koffice-l10n-fi: +koffice-l10n-fi: +koffice-l10n-fi: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-fr b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-fr new file mode 100644 index 00000000..f05abb62 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-fr @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-fr: koffice-l10n-fr +koffice-l10n-fr: +koffice-l10n-fr: French language support for KOffice. +koffice-l10n-fr: +koffice-l10n-fr: +koffice-l10n-fr: +koffice-l10n-fr: +koffice-l10n-fr: +koffice-l10n-fr: +koffice-l10n-fr: +koffice-l10n-fr: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-fy b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-fy new file mode 100644 index 00000000..6ca3bd25 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-fy @@ -0,0 +1,11 @@ +koffice-l10n-fy: koffice-l10n-fy +koffice-l10n-fy: +koffice-l10n-fy: Abkhasysk language support for KOffice. +koffice-l10n-fy: +koffice-l10n-fy: +koffice-l10n-fy: +koffice-l10n-fy: +koffice-l10n-fy: +koffice-l10n-fy: +koffice-l10n-fy: +koffice-l10n-fy: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ga b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ga new file mode 100644 index 00000000..4f0e492b --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ga @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-ga: koffice-l10n-ga +koffice-l10n-ga: +koffice-l10n-ga: Irish Gaelic language support for KOffice. +koffice-l10n-ga: +koffice-l10n-ga: +koffice-l10n-ga: +koffice-l10n-ga: +koffice-l10n-ga: +koffice-l10n-ga: +koffice-l10n-ga: +koffice-l10n-ga: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-gl b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-gl new file mode 100644 index 00000000..10005a9a --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-gl @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-gl: koffice-l10n-gl +koffice-l10n-gl: +koffice-l10n-gl: Galician language support for KOffice. +koffice-l10n-gl: +koffice-l10n-gl: +koffice-l10n-gl: +koffice-l10n-gl: +koffice-l10n-gl: +koffice-l10n-gl: +koffice-l10n-gl: +koffice-l10n-gl: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-he b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-he new file mode 100644 index 00000000..40f3eeea --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-he @@ -0,0 +1,11 @@ +koffice-l10n-he: koffice-l10n-he +koffice-l10n-he: +koffice-l10n-he: Hebrew language support for KOffice. +koffice-l10n-he: +koffice-l10n-he: +koffice-l10n-he: +koffice-l10n-he: +koffice-l10n-he: +koffice-l10n-he: +koffice-l10n-he: +koffice-l10n-he: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-hi b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-hi new file mode 100644 index 00000000..712c9a63 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-hi @@ -0,0 +1,11 @@ +koffice-l10n-hi: koffice-l10n-hi +koffice-l10n-hi: +koffice-l10n-hi: Hindi language support for KOffice. +koffice-l10n-hi: +koffice-l10n-hi: +koffice-l10n-hi: +koffice-l10n-hi: +koffice-l10n-hi: +koffice-l10n-hi: +koffice-l10n-hi: +koffice-l10n-hi: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-hsb b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-hsb new file mode 100644 index 00000000..ea1bcb7f --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-hsb @@ -0,0 +1,11 @@ +koffice-l10n-hsb: koffice-l10n-hsb +koffice-l10n-hsb: +koffice-l10n-hsb: Upper Sorbian language support for KOffice. +koffice-l10n-hsb: +koffice-l10n-hsb: +koffice-l10n-hsb: +koffice-l10n-hsb: +koffice-l10n-hsb: +koffice-l10n-hsb: +koffice-l10n-hsb: +koffice-l10n-hsb: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-hu b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-hu new file mode 100644 index 00000000..251091b9 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-hu @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-hu: koffice-l10n-hu +koffice-l10n-hu: +koffice-l10n-hu: Hungarian language support for KOffice. +koffice-l10n-hu: +koffice-l10n-hu: +koffice-l10n-hu: +koffice-l10n-hu: +koffice-l10n-hu: +koffice-l10n-hu: +koffice-l10n-hu: +koffice-l10n-hu: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-is b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-is new file mode 100644 index 00000000..4a11c148 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-is @@ -0,0 +1,11 @@ +koffice-l10n-is: koffice-l10n-is +koffice-l10n-is: +koffice-l10n-is: Icelandic language support for KOffice. +koffice-l10n-is: +koffice-l10n-is: +koffice-l10n-is: +koffice-l10n-is: +koffice-l10n-is: +koffice-l10n-is: +koffice-l10n-is: +koffice-l10n-is: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-it b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-it new file mode 100644 index 00000000..85fa5c7b --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-it @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-it: koffice-l10n-it +koffice-l10n-it: +koffice-l10n-it: Italian language support for KOffice. +koffice-l10n-it: +koffice-l10n-it: +koffice-l10n-it: +koffice-l10n-it: +koffice-l10n-it: +koffice-l10n-it: +koffice-l10n-it: +koffice-l10n-it: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ja b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ja new file mode 100644 index 00000000..4da23a0d --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ja @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-ja: koffice-l10n-ja +koffice-l10n-ja: +koffice-l10n-ja: Japanese language support for KOffice. +koffice-l10n-ja: +koffice-l10n-ja: +koffice-l10n-ja: +koffice-l10n-ja: +koffice-l10n-ja: +koffice-l10n-ja: +koffice-l10n-ja: +koffice-l10n-ja: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-kk b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-kk new file mode 100644 index 00000000..4014fdfb --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-kk @@ -0,0 +1,11 @@ +koffice-l10n-kk: koffice-l10n-kk +koffice-l10n-kk: +koffice-l10n-kk: Kazakh language support for KOffice. +koffice-l10n-kk: +koffice-l10n-kk: +koffice-l10n-kk: +koffice-l10n-kk: +koffice-l10n-kk: +koffice-l10n-kk: +koffice-l10n-kk: +koffice-l10n-kk: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-km b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-km new file mode 100644 index 00000000..4caa9431 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-km @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-km: koffice-l10n-km +koffice-l10n-km: +koffice-l10n-km: Khmer language support for KOffice. +koffice-l10n-km: +koffice-l10n-km: +koffice-l10n-km: +koffice-l10n-km: +koffice-l10n-km: +koffice-l10n-km: +koffice-l10n-km: +koffice-l10n-km: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-lo b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-lo new file mode 100644 index 00000000..ff2f1ea9 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-lo @@ -0,0 +1,11 @@ +koffice-l10n-lo: koffice-l10n-lo +koffice-l10n-lo: +koffice-l10n-lo: Lao language support for KOffice. +koffice-l10n-lo: +koffice-l10n-lo: +koffice-l10n-lo: +koffice-l10n-lo: +koffice-l10n-lo: +koffice-l10n-lo: +koffice-l10n-lo: +koffice-l10n-lo: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-lt b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-lt new file mode 100644 index 00000000..14d3fdb0 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-lt @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-lt: koffice-l10n-lt +koffice-l10n-lt: +koffice-l10n-lt: Lithuanian language support for KOffice. +koffice-l10n-lt: +koffice-l10n-lt: +koffice-l10n-lt: +koffice-l10n-lt: +koffice-l10n-lt: +koffice-l10n-lt: +koffice-l10n-lt: +koffice-l10n-lt: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-lv b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-lv new file mode 100644 index 00000000..a6bdadd3 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-lv @@ -0,0 +1,11 @@ +koffice-l10n-lv: koffice-l10n-lv +koffice-l10n-lv: +koffice-l10n-lv: Latvian language support for KOffice. +koffice-l10n-lv: +koffice-l10n-lv: +koffice-l10n-lv: +koffice-l10n-lv: +koffice-l10n-lv: +koffice-l10n-lv: +koffice-l10n-lv: +koffice-l10n-lv: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-mk b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-mk new file mode 100644 index 00000000..af7d02c4 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-mk @@ -0,0 +1,11 @@ +koffice-l10n-mk: koffice-l10n-mk +koffice-l10n-mk: +koffice-l10n-mk: Macedonian language support for KOffice. +koffice-l10n-mk: +koffice-l10n-mk: +koffice-l10n-mk: +koffice-l10n-mk: +koffice-l10n-mk: +koffice-l10n-mk: +koffice-l10n-mk: +koffice-l10n-mk: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ms b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ms new file mode 100644 index 00000000..74868e07 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ms @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-ms: koffice-l10n-ms +koffice-l10n-ms: +koffice-l10n-ms: Malay language support for KOffice. +koffice-l10n-ms: +koffice-l10n-ms: +koffice-l10n-ms: +koffice-l10n-ms: +koffice-l10n-ms: +koffice-l10n-ms: +koffice-l10n-ms: +koffice-l10n-ms: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-mt b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-mt new file mode 100644 index 00000000..1b35b168 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-mt @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-mt: koffice-l10n-mt +koffice-l10n-mt: +koffice-l10n-mt: Maltese language support for KOffice. +koffice-l10n-mt: +koffice-l10n-mt: +koffice-l10n-mt: +koffice-l10n-mt: +koffice-l10n-mt: +koffice-l10n-mt: +koffice-l10n-mt: +koffice-l10n-mt: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-nb b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-nb new file mode 100644 index 00000000..bb8c5889 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-nb @@ -0,0 +1,11 @@ +koffice-l10n-nb: koffice-l10n-nb +koffice-l10n-nb: +koffice-l10n-nb: Norwegian (Bokmaal) language support for KOffice. +koffice-l10n-nb: +koffice-l10n-nb: +koffice-l10n-nb: +koffice-l10n-nb: +koffice-l10n-nb: +koffice-l10n-nb: +koffice-l10n-nb: +koffice-l10n-nb: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-nds b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-nds new file mode 100644 index 00000000..5f26d82f --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-nds @@ -0,0 +1,11 @@ +koffice-l10n-nds: koffice-l10n-nds +koffice-l10n-nds: +koffice-l10n-nds: Low Saxon language support for KOffice. +koffice-l10n-nds: +koffice-l10n-nds: +koffice-l10n-nds: +koffice-l10n-nds: +koffice-l10n-nds: +koffice-l10n-nds: +koffice-l10n-nds: +koffice-l10n-nds: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ne b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ne new file mode 100644 index 00000000..811d8eeb --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ne @@ -0,0 +1,11 @@ +koffice-l10n-ne: koffice-l10n-ne +koffice-l10n-ne: +koffice-l10n-ne: Nepali language support for KOffice. +koffice-l10n-ne: +koffice-l10n-ne: +koffice-l10n-ne: +koffice-l10n-ne: +koffice-l10n-ne: +koffice-l10n-ne: +koffice-l10n-ne: +koffice-l10n-ne: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-nl b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-nl new file mode 100644 index 00000000..71698789 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-nl @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-nl: koffice-l10n-nl +koffice-l10n-nl: +koffice-l10n-nl: Dutch language support for KOffice. +koffice-l10n-nl: +koffice-l10n-nl: +koffice-l10n-nl: +koffice-l10n-nl: +koffice-l10n-nl: +koffice-l10n-nl: +koffice-l10n-nl: +koffice-l10n-nl: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-nn b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-nn new file mode 100644 index 00000000..d2c0b300 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-nn @@ -0,0 +1,11 @@ +koffice-l10n-nn: koffice-l10n-nn +koffice-l10n-nn: +koffice-l10n-nn: Norwegian (Nynorsk) language support for KOffice. +koffice-l10n-nn: +koffice-l10n-nn: +koffice-l10n-nn: +koffice-l10n-nn: +koffice-l10n-nn: +koffice-l10n-nn: +koffice-l10n-nn: +koffice-l10n-nn: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-no b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-no new file mode 100644 index 00000000..df9e73ce --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-no @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-no: koffice-l10n-no +koffice-l10n-no: +koffice-l10n-no: Norwegian (Bokmaal) language support for KOffice. +koffice-l10n-no: +koffice-l10n-no: +koffice-l10n-no: +koffice-l10n-no: +koffice-l10n-no: +koffice-l10n-no: +koffice-l10n-no: +koffice-l10n-no: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-no_NY b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-no_NY new file mode 100644 index 00000000..e86be3ba --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-no_NY @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-no_NY: koffice-l10n-no_NY +koffice-l10n-no_NY: +koffice-l10n-no_NY: Norwegian (Nynorsk) language support for KOffice. +koffice-l10n-no_NY: +koffice-l10n-no_NY: +koffice-l10n-no_NY: +koffice-l10n-no_NY: +koffice-l10n-no_NY: +koffice-l10n-no_NY: +koffice-l10n-no_NY: +koffice-l10n-no_NY: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-pl b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-pl new file mode 100644 index 00000000..1ba2d560 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-pl @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-pl: koffice-l10n-pl +koffice-l10n-pl: +koffice-l10n-pl: Polish language support for KOffice. +koffice-l10n-pl: +koffice-l10n-pl: +koffice-l10n-pl: +koffice-l10n-pl: +koffice-l10n-pl: +koffice-l10n-pl: +koffice-l10n-pl: +koffice-l10n-pl: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-pt b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-pt new file mode 100644 index 00000000..871f589e --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-pt @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-pt: koffice-l10n-pt +koffice-l10n-pt: +koffice-l10n-pt: Portuguese language support for KOffice. +koffice-l10n-pt: +koffice-l10n-pt: +koffice-l10n-pt: +koffice-l10n-pt: +koffice-l10n-pt: +koffice-l10n-pt: +koffice-l10n-pt: +koffice-l10n-pt: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-pt_BR b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-pt_BR new file mode 100644 index 00000000..68adcd39 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-pt_BR @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-pt_BR: koffice-l10n-pt_BR +koffice-l10n-pt_BR: +koffice-l10n-pt_BR: Brazil portuguese language support for KOffice. +koffice-l10n-pt_BR: +koffice-l10n-pt_BR: +koffice-l10n-pt_BR: +koffice-l10n-pt_BR: +koffice-l10n-pt_BR: +koffice-l10n-pt_BR: +koffice-l10n-pt_BR: +koffice-l10n-pt_BR: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ro b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ro new file mode 100644 index 00000000..3e67a3a8 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ro @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-ro: koffice-l10n-ro +koffice-l10n-ro: +koffice-l10n-ro: Romanian language support for KOffice. +koffice-l10n-ro: +koffice-l10n-ro: +koffice-l10n-ro: +koffice-l10n-ro: +koffice-l10n-ro: +koffice-l10n-ro: +koffice-l10n-ro: +koffice-l10n-ro: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ru b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ru new file mode 100644 index 00000000..8d72bd4b --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ru @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-ru: koffice-l10n-ru +koffice-l10n-ru: +koffice-l10n-ru: Russian language support for KOffice. +koffice-l10n-ru: +koffice-l10n-ru: +koffice-l10n-ru: +koffice-l10n-ru: +koffice-l10n-ru: +koffice-l10n-ru: +koffice-l10n-ru: +koffice-l10n-ru: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-se b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-se new file mode 100644 index 00000000..1798892e --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-se @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-se: koffice-l10n-se +koffice-l10n-se: +koffice-l10n-se: Northern Sami language support for KOffice. +koffice-l10n-se: +koffice-l10n-se: +koffice-l10n-se: +koffice-l10n-se: +koffice-l10n-se: +koffice-l10n-se: +koffice-l10n-se: +koffice-l10n-se: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-sk b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-sk new file mode 100644 index 00000000..d259bbc5 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-sk @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-sk: koffice-l10n-sk +koffice-l10n-sk: +koffice-l10n-sk: Slovak language support for KOffice. +koffice-l10n-sk: +koffice-l10n-sk: +koffice-l10n-sk: +koffice-l10n-sk: +koffice-l10n-sk: +koffice-l10n-sk: +koffice-l10n-sk: +koffice-l10n-sk: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-sl b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-sl new file mode 100644 index 00000000..79d9786c --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-sl @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-sl: koffice-l10n-sl +koffice-l10n-sl: +koffice-l10n-sl: Slovenian language support for KOffice. +koffice-l10n-sl: +koffice-l10n-sl: +koffice-l10n-sl: +koffice-l10n-sl: +koffice-l10n-sl: +koffice-l10n-sl: +koffice-l10n-sl: +koffice-l10n-sl: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-sr b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-sr new file mode 100644 index 00000000..97b2d1ad --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-sr @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-sr: koffice-l10n-sr +koffice-l10n-sr: +koffice-l10n-sr: Serbian language support for KOffice. +koffice-l10n-sr: +koffice-l10n-sr: +koffice-l10n-sr: +koffice-l10n-sr: +koffice-l10n-sr: +koffice-l10n-sr: +koffice-l10n-sr: +koffice-l10n-sr: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-sr@Latn b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-sr@Latn new file mode 100644 index 00000000..7c90acc3 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-sr@Latn @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-sr@Latn: koffice-l10n-sr@Latn +koffice-l10n-sr@Latn: +koffice-l10n-sr@Latn: Serbian in Latin script language support for KOffice. +koffice-l10n-sr@Latn: +koffice-l10n-sr@Latn: +koffice-l10n-sr@Latn: +koffice-l10n-sr@Latn: +koffice-l10n-sr@Latn: +koffice-l10n-sr@Latn: +koffice-l10n-sr@Latn: +koffice-l10n-sr@Latn: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-sv b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-sv new file mode 100644 index 00000000..01be9831 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-sv @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-sv: koffice-l10n-sv +koffice-l10n-sv: +koffice-l10n-sv: Swedish language support for KOffice. +koffice-l10n-sv: +koffice-l10n-sv: +koffice-l10n-sv: +koffice-l10n-sv: +koffice-l10n-sv: +koffice-l10n-sv: +koffice-l10n-sv: +koffice-l10n-sv: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ta b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ta new file mode 100644 index 00000000..bb8a36d2 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ta @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-ta: koffice-l10n-ta +koffice-l10n-ta: +koffice-l10n-ta: Tamil language support for KOffice. +koffice-l10n-ta: +koffice-l10n-ta: +koffice-l10n-ta: +koffice-l10n-ta: +koffice-l10n-ta: +koffice-l10n-ta: +koffice-l10n-ta: +koffice-l10n-ta: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-tg b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-tg new file mode 100644 index 00000000..f5b5913b --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-tg @@ -0,0 +1,11 @@ +koffice-l10n-tg: koffice-l10n-tg +koffice-l10n-tg: +koffice-l10n-tg: Tajik language support for KOffice. +koffice-l10n-tg: +koffice-l10n-tg: +koffice-l10n-tg: +koffice-l10n-tg: +koffice-l10n-tg: +koffice-l10n-tg: +koffice-l10n-tg: +koffice-l10n-tg: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-th b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-th new file mode 100644 index 00000000..58e1e3b0 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-th @@ -0,0 +1,11 @@ +koffice-l10n-th: koffice-l10n-th +koffice-l10n-th: +koffice-l10n-th: Thai language support for KOffice. +koffice-l10n-th: +koffice-l10n-th: +koffice-l10n-th: +koffice-l10n-th: +koffice-l10n-th: +koffice-l10n-th: +koffice-l10n-th: +koffice-l10n-th: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-tr b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-tr new file mode 100644 index 00000000..e7543d62 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-tr @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-tr: koffice-l10n-tr +koffice-l10n-tr: +koffice-l10n-tr: Turkish language support for KOffice. +koffice-l10n-tr: +koffice-l10n-tr: +koffice-l10n-tr: +koffice-l10n-tr: +koffice-l10n-tr: +koffice-l10n-tr: +koffice-l10n-tr: +koffice-l10n-tr: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-uk b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-uk new file mode 100644 index 00000000..87103ead --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-uk @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-uk: koffice-l10n-uk +koffice-l10n-uk: +koffice-l10n-uk: Ukrainian language support for KOffice. +koffice-l10n-uk: +koffice-l10n-uk: +koffice-l10n-uk: +koffice-l10n-uk: +koffice-l10n-uk: +koffice-l10n-uk: +koffice-l10n-uk: +koffice-l10n-uk: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-uz b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-uz new file mode 100644 index 00000000..d2d7cedb --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-uz @@ -0,0 +1,11 @@ +koffice-l10n-uz: koffice-l10n-uz +koffice-l10n-uz: +koffice-l10n-uz: Uzbek language support for KOffice. +koffice-l10n-uz: +koffice-l10n-uz: +koffice-l10n-uz: +koffice-l10n-uz: +koffice-l10n-uz: +koffice-l10n-uz: +koffice-l10n-uz: +koffice-l10n-uz: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ven b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ven new file mode 100644 index 00000000..bd67d437 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-ven @@ -0,0 +1,11 @@ +koffice-l10n-ven: koffice-l10n-ven +koffice-l10n-ven: +koffice-l10n-ven: Venda language support for KOffice. +koffice-l10n-ven: +koffice-l10n-ven: +koffice-l10n-ven: +koffice-l10n-ven: +koffice-l10n-ven: +koffice-l10n-ven: +koffice-l10n-ven: +koffice-l10n-ven: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-wa b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-wa new file mode 100644 index 00000000..e88ee5e3 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-wa @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +koffice-l10n-wa: koffice-l10n-wa +koffice-l10n-wa: +koffice-l10n-wa: Walloon language support for KOffice. +koffice-l10n-wa: +koffice-l10n-wa: +koffice-l10n-wa: +koffice-l10n-wa: +koffice-l10n-wa: +koffice-l10n-wa: +koffice-l10n-wa: +koffice-l10n-wa: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-xh b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-xh new file mode 100644 index 00000000..5bd52a1d --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-xh @@ -0,0 +1,11 @@ +koffice-l10n-xh: koffice-l10n-xh +koffice-l10n-xh: +koffice-l10n-xh: Xhosa language support for KOffice. +koffice-l10n-xh: +koffice-l10n-xh: +koffice-l10n-xh: +koffice-l10n-xh: +koffice-l10n-xh: +koffice-l10n-xh: +koffice-l10n-xh: +koffice-l10n-xh: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-zh_CN b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-zh_CN new file mode 100644 index 00000000..52bf8770 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-zh_CN @@ -0,0 +1,11 @@ +koffice-l10n-zh_CN: koffice-l10n-zh_CN +koffice-l10n-zh_CN: +koffice-l10n-zh_CN: Simplified Chinese language support for KOffice. +koffice-l10n-zh_CN: +koffice-l10n-zh_CN: +koffice-l10n-zh_CN: +koffice-l10n-zh_CN: +koffice-l10n-zh_CN: +koffice-l10n-zh_CN: +koffice-l10n-zh_CN: +koffice-l10n-zh_CN: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-zh_TW b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-zh_TW new file mode 100644 index 00000000..233fb2f9 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-zh_TW @@ -0,0 +1,11 @@ +koffice-l10n-zh_TW: koffice-l10n-zh_TW +koffice-l10n-zh_TW: +koffice-l10n-zh_TW: Chinese language support for KOffice. +koffice-l10n-zh_TW: +koffice-l10n-zh_TW: +koffice-l10n-zh_TW: +koffice-l10n-zh_TW: +koffice-l10n-zh_TW: +koffice-l10n-zh_TW: +koffice-l10n-zh_TW: +koffice-l10n-zh_TW: diff --git a/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-zu b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-zu new file mode 100644 index 00000000..72828f01 --- /dev/null +++ b/source/kdei/koffice/slack-desc/slack-desc.koffice-l10n-zu @@ -0,0 +1,11 @@ +koffice-l10n-zu: koffice-l10n-zu +koffice-l10n-zu: +koffice-l10n-zu: Zulu language support for KOffice. +koffice-l10n-zu: +koffice-l10n-zu: +koffice-l10n-zu: +koffice-l10n-zu: +koffice-l10n-zu: +koffice-l10n-zu: +koffice-l10n-zu: +koffice-l10n-zu: |