|
From: Olivier S. <ob...@us...> - 2004-12-18 15:47:43
|
Update of /cvsroot/jvcl/dev/JVCL3/locale In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23893/dev/JVCL3/locale Modified Files: UpdatePOs.bat Log Message: doesn't extract in ..\\common, nothing there to see Index: UpdatePOs.bat =================================================================== RCS file: /cvsroot/jvcl/dev/JVCL3/locale/UpdatePOs.bat,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** UpdatePOs.bat 29 Sep 2004 20:58:44 -0000 1.7 --- UpdatePOs.bat 18 Dec 2004 15:47:33 -0000 1.8 *************** *** 8,12 **** : test the existence of dxgettext ! dxgettext -q -b .\ 1>tmp1.txt 2>tmp2.txt if errorlevel 1 goto nodxgettext --- 8,12 ---- : test the existence of dxgettext ! dxgettext -q -b. >tmp1.txt 2>tmp2.txt if errorlevel 1 goto nodxgettext *************** *** 22,39 **** : first, extract all strings echo Extracting strings... ! dxgettext -q -o ..\common -b ..\common --delphi dxgettext -q -o ..\run -b ..\run --delphi : then merge all the generated po files into one echo Merging files... ! msgcat ..\run\default.po ..\common\default.po -o default.po : ensure uniqueness ! msguniq -u --use-first default.po -o jvcl.po : remove translations that needs to be ignored echo Removing strings that do not require translation... if not exist ignore.po msgmkignore jvcl.po -o ignore.po ! msgremove jvcl.po -i ignore.po -o default.po : merge with existing jvcl.po file --- 22,40 ---- : first, extract all strings echo Extracting strings... ! : dxgettext -q -o ..\common -b ..\common --delphi dxgettext -q -o ..\run -b ..\run --delphi : then merge all the generated po files into one echo Merging files... ! copy ..\run\default.po default.po ! : msgcat ..\run\default.po ..\common\default.po -o default.po : ensure uniqueness ! msguniq -u --no-wrap default.po -o jvcl.po : remove translations that needs to be ignored echo Removing strings that do not require translation... if not exist ignore.po msgmkignore jvcl.po -o ignore.po ! msgremove --no-wrap jvcl.po -i ignore.po -o default.po : merge with existing jvcl.po file *************** *** 52,56 **** : cleanup echo Cleaning up... ! del ..\common\default.po ..\run\default.po default.po goto end --- 53,58 ---- : cleanup echo Cleaning up... ! del ..\run\default.po default.po ! : del ..\common\default.po ..\run\default.po default.po goto end |