20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
LANG is the lang code (ISO 639).
This script uses the file `config.ini` in the folder `gc_lang/LANG`.
== First build ==
Type:
make.py LANG -b -d -js
This command is required to generate all necessary files.
== options ==
-b --build_data
Launch the script `build_data.py` in the folder `gc_lang/LANG`.
|
|
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
LANG is the lang code (ISO 639).
This script uses the file `config.ini` in the folder `gc_lang/LANG`.
== First build ==
Type:
make.py LANG -js
This command is required to generate all necessary files.
== options ==
-b --build_data
Launch the script `build_data.py` in the folder `gc_lang/LANG`.
|
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
-tb --thunderbird
Launch Thunderbird.
= Examples =
First build:
make.py LANG -b -d -js
After modifying grammar rules:
make.py LANG -t
If you modify the lexicon:
make.py LANG -d -js
If you modify your script build_data.py:
make.py LANG -b -js
|
|
|
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
-tb --thunderbird
Launch Thunderbird.
= Examples =
Full rebuild:
make.py LANG -b -d -js
After modifying grammar rules:
make.py LANG -t
If you modify the lexicon:
make.py LANG -d -js
If you modify your script build_data.py:
make.py LANG -b -js
|