Remove sed hacks from backport script.

This commit is contained in:
Andrius Štikonas 2011-08-28 23:25:41 +03:00
parent b3588e3314
commit 58c5cb9822
1 changed files with 0 additions and 10 deletions

View File

@ -25,13 +25,3 @@ for JOB in $JOBLIST ; do
wait %$JOB
done
echo -e $BLUE"Running sed script..."$ENDCOLOR
for po in `find stable doc-stable -follow -name "*.po"`; do
sed -ie 's/\"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10==1 \&\& n%100!=11 ? 1 : n\"/\"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10==1 \&\& n%100!=11 ? 1 : n%\"/
s/\"%10>=2 \&\& (n%100<10 || n%100>=20) ? 2 \: 3);\\n\"/\"10>=2 \&\& (n%100<10 || n%100>=20) ? 2 \: 3);\\n\"/
/\"Language: lt\\n\"/d
/\"Content-Transfer-Encoding: 8bit\\n\"/ a\
\"Language: lt\\n\"' "$po"
rm "$po"e
done