blob: 2a0775dd660124d6856cacca108f9f2d44f64f21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
To update the .pot and existing translations use:
bash updatepo.sh
-----
update .pot :
--don't!-- make pot in build/
absolute paths will appear in the .pot
try :
xgettext -d hardinfo -o hardinfo.pot -k_ -kN_ -kC_:1c,2 -kNC_:1c,2 -c/ --from-code=UTF-8 ...
update .po files after .pot update :
msgmerge -N XX.po hardinfo.pot > XX_.po && mv XX_.po XX.po
|