summaryrefslogtreecommitdiff
path: root/TODO
blob: 3cdc528eedbd8f5aa9e18230faafe08d27402b0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
Fix README
fix AUTHORS

restore djgpp, eventually

put old ChangeLog files somewhere...
Add them to EXTRA_DIST

Move things so there are no symlinks from repository to
any directory other than common

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