Changeset 12
- Timestamp:
- Jul 11, 2006, 9:11:24 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/i18n/makeall.cmd
r6 r12 21 21 nv_rc = SysMkDir(nv_build_dir) 22 22 23 /* copy changes.txt */ 24 copy Changes.txt nv_build_dir 25 26 23 27 /* compile the ipf file */ 24 28 ipfc NewView.ipf nv_build_dir||'\NewView.hlp' … … 26 30 call SysFileTree nv_i18n_dir||'\', subdirs, 'DO' 27 31 do i=1 to subdirs.0 28 if 0 = lastpos('images', subdirs.i) then32 if 0 = lastpos('images', subdirs.i) then 29 33 do 30 nv_locale = substr(subdirs.i, lastpos('\',subdirs.i) + 1) 34 if 0 = lastpos('.svn', subdirs.i) then 35 do 36 nv_locale = substr(subdirs.i, lastpos('\',subdirs.i) + 1) 31 37 32 /* compile the ipf file inside the dir */ 33 call SysFileTree subdirs.i || '\NewView_' || nv_locale || '.ipf', ipffiles, 'FO' 34 do j=1 to ipffiles.0 35 ipfc ipffiles.j nv_build_dir || '\NewView_' || nv_locale || '.hlp' 38 /* compile the ipf file inside the dir */ 39 call SysFileTree subdirs.i || '\NewView_' || nv_locale || '.ipf', ipffiles, 'FO' 40 do j=1 to ipffiles.0 41 ipfc ipffiles.j nv_build_dir || '\NewView_' || nv_locale || '.hlp' 42 end 43 44 /* copy the lang file */ 45 copy subdirs.i || '\newview_' || nv_locale || '.lng' nv_build_dir 36 46 end 37 38 /* copy the lang file */39 copy subdirs.i || '\newview_' || nv_locale || '.lng' nv_build_dir40 47 end 41 48 end
Note:
See TracChangeset
for help on using the changeset viewer.