You are not logged in.

#1 2003-08-04 23:48:58

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

KDE --- Internationalization ... anyone interessted?

hi,

i wanted to experiment with some kde-i18n-packages from http://i18n.kde.org/index.php and i want your oppinion:
do we need some other languages in archlinux for kde?

i wanted to try originally the german-package, but it is 47MB so i think for the first experiment i start with a smaller one ... is a special language needed?

on ftp://ftp.kde.org/pub/kde/snapshots/kde-i18n/ you can find all available languages (the 2 letters indicate them)


The impossible missions are the only ones which succeed.

Offline

#2 2003-08-05 01:49:13

apeiro
Daddy
From: Victoria, BC, Canada
Registered: 2002-08-12
Posts: 771
Website

Re: KDE --- Internationalization ... anyone interessted?

KDE has support for a lot of different languages now.  If anybody wants to add special languages to their KDE system, here's a PKGBUILD to get you started:

pkgname=kde-i18n-de
pkgver=3.1.0
pkgrel=1
pkgdesc="German language support for KDE"
url="http://i18n.kde.org/index.php"
depends=('kdebase')
source=(ftp://ftp.kde.org/pub/kde/snapshots/kde-i18n/$pkgname-$pkgver.tar.bz2)

build() {
  cd $startdir/src/$pkgname-$pkgver
  ./configure
  make || return 1
  make prefix=$startdir/pkg/opt/kde install
}

Modify to suit your language.

Offline

#3 2003-08-05 15:45:20

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: KDE --- Internationalization ... anyone interessted?

thanx for the PKGBUILD ... i see it's the same for all KDE packages (i built kgpg a week ago -> in incoming)

now my question: should i --- after it works for me --- send such packages to incoming? is anybody (from the maintainers) interested to start a category "internationalization" in official or unofficial?


The impossible missions are the only ones which succeed.

Offline

#4 2003-08-05 16:44:43

sarah31
Member
From: Middle of Canada
Registered: 2002-08-20
Posts: 2,975
Website

Re: KDE --- Internationalization ... anyone interessted?

dp wrote:

now my question: should i --- after it works for me --- send such packages to incoming? is anybody (from the maintainers) interested to start a category "internationalization" in official or unofficial?

i would hold off for now on sending it to incoming.


AKA uknowme

I am not your friend

Offline

#5 2003-08-05 22:06:00

Guest
Guest

Re: KDE --- Internationalization ... anyone interessted?

sarah31 wrote:
dp wrote:

now my question: should i --- after it works for me --- send such packages to incoming? is anybody (from the maintainers) interested to start a category "internationalization" in official or unofficial?

i would hold off for now on sending it to incoming.

sorry, that i sent the german one already ... feel free to remove it if you like

#6 2003-08-05 22:07:31

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: KDE --- Internationalization ... anyone interessted?

Anonymous wrote:
sarah31 wrote:
dp wrote:

now my question: should i --- after it works for me --- send such packages to incoming? is anybody (from the maintainers) interested to start a category "internationalization" in official or unofficial?

i would hold off for now on sending it to incoming.

sorry, that i sent the german one already ... feel free to remove it if you like

ups, i forgot to login ... wow, didnt know that a guest can also post here --- i wrote the message above


The impossible missions are the only ones which succeed.

Offline

#7 2003-08-05 22:18:33

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: KDE --- Internationalization ... anyone interessted?

apeiro wrote:

KDE has support for a lot of different languages now.  If anybody wants to add special languages to their KDE system, here's a PKGBUILD to get you started:

pkgname=kde-i18n-de
pkgver=3.1.0
pkgrel=1
pkgdesc="German language support for KDE"
url="http://i18n.kde.org/index.php"
depends=('kdebase')
source=(ftp://ftp.kde.org/pub/kde/snapshots/kde-i18n/$pkgname-$pkgver.tar.bz2)

build() {
  cd $startdir/src/$pkgname-$pkgver
  ./configure
  make || return 1
  make prefix=$startdir/pkg/opt/kde install
}

Modify to suit your language.

-> you must set

kde_htmldir=/opt/kde/share/doc/HTML

because the kde_htmldir is in makefile dependend on prefix, but it needs some files from the working KDE-installation ... so the correct build() should look like this:

build() { 
   cd $startdir/src/$pkgname-$pkgver
   ./configure
   make || return 1
   make prefix=$startdir/pkg/opt/kde kde_htmldir=/opt/kde/share/doc/HTML install
 }

then you can build your own package without problems


The impossible missions are the only ones which succeed.

Offline

#8 2003-08-05 22:26:44

Guest
Guest

Re: KDE --- Internationalization ... anyone interessted?

one additional comment:

for the current kde 3.1.3 in archlinux, use

ftp://ftp.kde.org/pub/kde/stable/3.1.3/src/kde-i18n/

instead of

ftp://ftp.kde.org/pub/kde/snapshots/kde-i18n/

because it works better (the other is more difficult to build because of some other things you must specify and it is older (=less translations; not optimized to progs ...))

#9 2003-08-05 22:59:41

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: KDE --- Internationalization ... anyone interessted?

Anonymous wrote:

one additional comment:

for the current kde 3.1.3 in archlinux, use

ftp://ftp.kde.org/pub/kde/stable/3.1.3/src/kde-i18n/

instead of

ftp://ftp.kde.org/pub/kde/snapshots/kde-i18n/

because it works better (the other is more difficult to build because of some other things you must specify and it is older (=less translations; not optimized to progs ...))

again forgot to login


The impossible missions are the only ones which succeed.

Offline

#10 2003-08-07 10:33:08

nordlicht
Member
From: Hamburg/Germany
Registered: 2003-07-23
Posts: 62

Re: KDE --- Internationalization ... anyone interessted?

Hi

can anybody tell me step by step what I have to do to get my KDE in German?
I downloaded the languagepack and after a configure and make without any errors german was still not avalible.

thank you


chris

Offline

#11 2003-08-07 15:53:54

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: KDE --- Internationalization ... anyone interessted?

--- --- the short way --- ---

[1] --- download the tarball i posted in incoming

ftp://ftp.archlinux.org/incoming/kde-i18n-de.tgz

to your machine,

[2] --- extract the tarball: inside you will find 3 files

kde-i18n-de-3.1.3-1.pkg.tar.gz is the pacman-package für die deutsche oberfläche in KDE ...

[3] --- do as root simply:

pacman -A kde-i18n-de-3.1.3-1.pkg.tar.gz 

... when you start KDE next time, you can

[4] --- set in the Control Center | Regional Settings | Language the language German

that's it

--- --- the long way --- ---

if you want to build the package at your own, here the PKGBUILD i used (it is also in this tarball):

# Contributor : your name <your.email.address@isp.land>
pkgname=kde-i18n-de
 pkgver=3.1.3
 pkgrel=1 
 pkgdesc="German language support for KDE"
 url="http://i18n.kde.org/index.php"
 depends=('kdebase')
 source=(ftp://ftp.kde.org/pub/kde/stable/3.1.3/src/kde-i18n/$pkgname-$pkgver.tar.bz2)

 build() {
   cd $startdir/src/$pkgname-$pkgver
   ./configure 
   make || return 1
   make prefix=$startdir/pkg/opt/kde kde_htmldir=/opt/kde/share/doc/HTML install
 } 

noch fragen?


--------------------------------------------------
to the archers:

what about a new group called "internationalization" beside "official", "unofficial", "unstable" where we can put all packages for other languages than english: this may help a lot of users that are not used in working on an "en" computer (and dont want to build the package on their own == inventing the wheel a n-time) ... it will make archlinux more popular for the users


The impossible missions are the only ones which succeed.

Offline

Board footer

Powered by FluxBB