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

[CVS] doc generate-wordlist,NONE,1.1 convert_wordlist,1.1,NONE



Update of /cvsroot/l10n-russian/doc
In directory haydn:/tmp/cvs-serv17892

Added Files:
	generate-wordlist 
Removed Files:
	convert_wordlist 
Log Message:


--- NEW FILE: generate-wordlist ---
#!/bin/sh

WORDLIST=wordlist.txt
POT=wordlist.pot
PO=wordlist.po

cat > $POT <<EOF
msgid ""
msgstr ""
"Project-Id-Version: wordlist\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: `stat $WORDLIST -c %y`\n"
"PO-Revision-Date: DATE "
"Last-Translator: Nikolai Prokoschenko <nikolai@prokoschenko.de>\n"
"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"

EOF


while read word1
do
    echo "msgid \"$word1\""
    echo "msgstr \"\""
done < $WORDLIST >> $POT

msgmerge --update --backup=off $PO $POT

--- convert_wordlist DELETED ---



Reply to: