Re: [FYI] current translation status



Hi,

> Next: it will be good convert all .po files to UTF-8 encoding
> One line script like:
> for i in *po; do iconv -f`awk -F\; '/^"Content-Type/
> {sub("\"Content-Type: text/plain; charset=", ""); gsub(/\\\n\"/, "");
> {print $0 }}' $i` -t UTF-8 $i> $i.tmp; mv $i.tmp $i; done
> and place in UTF-8 in charset= will help on this.

Or you could use msgconv so that you don't have to modify anything
by hand:

for i in *.po;do mv "$i" "$i.orig";msgconv -t UTF-8 "$i.orig"
>"$i";done


Arpad Biro


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 



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