all repos — tint2 @ 7162c5dea18cf5e513e6b5fa4288f8ba0e9e51f3

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

src/tint2conf/po/readme.txt (raw)

1
2
3
4
5
6
7
8
9
10
11
Updating pot file:

find .. -name '*.c' | xargs xgettext --keyword=_ --language=C --output=updated.pot -

Followed by manual editing of updated.pot to make sure the header is OK. Then:

cat updated.pot > tint2conf.pot && rm -f updated.pot

Then update the po files:

for f in *.po ; do lang=$(basename $f .po); echo $lang ; msgmerge -i -o $lang.pox $lang.po tint2conf.pot ; cat ${lang}.pox > ${lang}.po ; rm ${lang}.pox ; done