forked from rwiki/rwiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
68 lines (36 loc) · 1.05 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
= README
RWiki is Yet Another Wiki Clone.
== Useful links
* Official page: ((<URL:http://pub.cozmixng.org/~the-rwiki/rw-cgi.rb>))
== INSTALL
* How to install (English): rd/install.rd
* How to install (Japanese): rd/install%2Eja.rd
== Included liblaries
=== RTtool
((<URL:http://raa.ruby-lang.org/project/rttool/>))
RWiki includes a part of modified rubikitch's RTtool in lib/rt/.
== gettext message
=== Updating *.po
Execute the following script in top directory of RWiki.
% po/gettext.rb
=== Updateing *.mo
Execute the following script in top directory of RWiki.
% po/update_mo.rb
=== Updating *.po and *.mo
Execute the following script in top directory of RWiki.
% po/update.rb
=== Adding new language message
(1) Add new language code to LANGS in po/config.rb.
e.g.) new language is French.
# _
# before
LANGS = %w(ja en)
# after
LANGS = %w(ja en fr)
(2) Update *.po.
% po/gettext.rb
It generates po/fr.po.
(3) Edit po/fr.po.
(4) Update *.mo.
% po/update_mo.rb
It generates po/fr.mo.