1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-22 23:25:21 +02:00

*** empty log message ***

This commit is contained in:
Jim Meyering
2002-08-03 14:01:20 +00:00
parent 1a15d841b8
commit 515fe7d138

39
TODO
View File

@@ -13,3 +13,42 @@ Make bug-reporting address bug-coreutils@gnu.org work.
grep 'bug-.*utils' src/*.c
merge .po files
******************8
LINGUAS:
sort -u ../[fst]u/po/LINGUAS > po/LINGUAS
all=$(sort -u ../[fst]u/po/LINGUAS)
d=../fu/po
for i in $(cd $d && echo *.po); do
msgmerge $d/$i po/coreutils.pot --output=po/$i
done
for i in $all; do
args=$(echo ../[fst]u/po/$i.po)
echo $i... :$args:
case "$args" in
*' '*)
echo merging
msgcomm ../[fst]u/po/$i.po > po/$i.po
msgcomm --less-than=2 ../[fst]u/po/$i.po >> po/$i.po
;;
*)
echo copying
cat ../[fst]u/po/$i.po > po/$i.po
;;
esac
done
=====================
Sat 2002-08-03 15:57:50 +0200
go cu
cd po
for i in f s t; do
echo $i:
xu=${i}u
for j in $(cat ../../$xu/po/LINGUAS); do
echo " $j"
msgmerge -o k ../../$xu/po/$j.po $j.po && mv k $j.po
done
done