File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,8 @@ table.sort (files)
44
44
45
45
fo = assert (io.open (" all_files_list.txt" , " w" ))
46
46
for _ , name in ipairs (files ) do
47
+ name = string.gsub (name , " ^C:\\ source\\ mushclient\\ " , " /cygdrive/c/source/mushclient/" )
48
+ name = string.gsub (name , " \\ " , " /" )
47
49
fo :write (name .. " \n " )
48
50
end -- for
49
51
Original file line number Diff line number Diff line change 1
1
cd \source\mushclient\
2
2
3
+ echo Converting documentation file ...
4
+ lua5.1.exe generate_documentation.lua
5
+
6
+ echo Creating documentation help.db file ...
7
+ del help.db
8
+ sqlite3 help.db < documentation_fixed.sql
9
+
10
+ echo Building list of files to process ...
3
11
lua5.1.exe build_files_list.lua
4
12
13
+ echo Generating internationalization files ...
5
14
xgettext -kTMessageBox -kTranslate -kTranslate_NoOp -o mushclient_static.po --files-from=all_files_list.txt
6
15
xgettext -kTFormat -o mushclient_formatted.po --files-from=all_files_list.txt
7
16
xgettext -kTranslateTime -o mushclient_time.po --files-from=all_files_list.txt
8
17
xgettext -kTranslateHeading -o mushclient_heading.po --files-from=all_files_list.txt
9
18
19
+ echo Running localize.lua ...
10
20
lua5.1.exe localize.lua
You can’t perform that action at this time.
0 commit comments