2011-09-21 3 views

답변

12

this script에 새로운 코드로 po 파일을 업데이트 할 수 있습니다. xgettextmsgmerge을 사용합니다.

make update-po 

또는 : 당신은 단순히 po 서브 디렉토리로 변경하고 실행할 수 있습니다 autoconfautomake를 사용

echo '' > messages.po # xgettext needs that file, and we need it empty 
find . -type f -iname "*.py" | xgettext -j -f - # this modifies messages.po 
msgmerge -N existing.po messages.po > new.po 
mv new.po existing.po 
rm messages.po 
+0

이 당신은 내가 하나에 필요한 두 가지 명령을 결합한다는 중대하다 . +1 –

+0

창문은 어떨까요? – Manu

+0

@Manu : 윈도우 용 gettext (http://gnuwin32.sourceforge.net/packages/gettext.htm)가 있습니다. –