all repos — tint2 @ 93c9830c2368c93dee1713e59c632ea32c2df4cb

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' | sort -r | 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