Re: Translation Source files



On Thu,  1 Apr 2004 03:37:16 -0500
shaz@linux.net.pk wrote:

> Hi All.
> 
> Simple question, where and how do I download the translation source
> files in order to begin translating?
> 
you can download all latest POTs from status pages with a simple
script like
----------->
#!/bin/bash

# change gnome-2.6 to gnome-2.4 for gnome 2.4
BASE=http://developer.gnome.org/projects/gtp/status/gnome-2.6/PO
rm -f index.html potlist 
wget -c $BASE/

# cut field no may change
cat index.html | cut -f 6 -d\" | grep pot > potlist

for i in `cat potlist` ; do
        echo $i
        wget -c -q $BASE/$i
done
----------<

Regards,
Karunakar

-- 
Dream, Dream, Dream
Dreams transform into thoughts
And thoughts result in action.   -- Kalam

---------------------------
* Indian Linux project    *
* http://www.indlinux.org *
---------------------------



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]