ofm_gettext 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/COPYING +56 -0
- data/ChangeLog-1 +2016 -0
- data/NEWS-1 +414 -0
- data/gettext.gemspec +7 -8
- data/lib/gettext/runtime/class_info.rb +69 -0
- data/lib/gettext/runtime/locale_path.rb +123 -0
- data/lib/gettext/runtime/mofile.rb +332 -0
- data/lib/gettext/runtime/textdomain.rb +179 -0
- data/lib/gettext/runtime/textdomain_group.rb +26 -0
- data/lib/gettext/runtime/textdomain_manager.rb +214 -0
- data/lib/gettext/tools/parser/erb.rb +54 -0
- data/lib/gettext/tools/parser/glade.rb +100 -0
- data/lib/gettext/tools/parser/ruby.rb +226 -0
- data/lib/gettext/tools/pomessage.rb +199 -0
- data/lib/gettext/tools/poparser.rb +358 -0
- data/po/uk/rgettext.po +143 -0
- data/samples/cgi/po/uk/helloerb1.po +62 -0
- data/samples/cgi/po/uk/helloerb2.po +54 -0
- data/samples/cgi/po/uk/hellolib.po +26 -0
- data/samples/cgi/po/uk/main.po +84 -0
- data/samples/po/uk/hello.po +22 -0
- data/samples/po/uk/hello2.po +30 -0
- data/samples/po/uk/hello_glade2.po +34 -0
- data/samples/po/uk/hello_gtk.po +22 -0
- data/samples/po/uk/hello_noop.po +26 -0
- data/samples/po/uk/hello_plural.po +29 -0
- data/samples/po/uk/hello_tk.po +26 -0
- data/test/po/ja/test3.po +19 -0
- data/test/po/li/plural_error.po +27 -0
- data/test/test_locale_path.rb +76 -0
- data/test/test_po_generation.rb +22 -0
- data/test/test_pomessage.rb +101 -0
- data/test/test_textdomain_bind.rb +39 -0
- data/test/test_thread.rb +43 -0
- data/test/tools/files/app.pot +0 -0
- data/test/tools/files/de/app.po +0 -0
- data/test/tools/files/en/app.po +0 -0
- data/test/tools/files/en/test.po +21 -0
- data/test/tools/files/simple_1.po +2 -0
- data/test/tools/files/simple_2.po +2 -0
- data/test/tools/files/simple_translation.rb +3 -0
- data/test/tools/files/version.po +7 -0
- data/test/tools/test.pot +21 -0
- data/test/tools/test_tools.rb +63 -0
- metadata +380 -335
metadata
CHANGED
@@ -2,15 +2,16 @@
|
|
2
2
|
name: ofm_gettext
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 2.0.
|
5
|
+
version: 2.0.1
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Masao Mutoh
|
9
|
+
- Vincent Pochet
|
9
10
|
autorequire:
|
10
11
|
bindir: bin
|
11
12
|
cert_chain: []
|
12
13
|
|
13
|
-
date:
|
14
|
+
date: 2011-05-26 00:00:00 +02:00
|
14
15
|
default_executable:
|
15
16
|
dependencies:
|
16
17
|
- !ruby/object:Gem::Dependency
|
@@ -35,8 +36,8 @@ dependencies:
|
|
35
36
|
version: "0"
|
36
37
|
type: :development
|
37
38
|
version_requirements: *id002
|
38
|
-
description: Ruby-GetText-Package is a GNU GetText-like program for Ruby. The catalog file(po-file) is same format with GNU GetText.
|
39
|
-
email:
|
39
|
+
description: Ruby-GetText-Package is a GNU GetText-like program for Ruby. The catalog file(po-file) is same format with GNU GetText. This package allows private and public translations.
|
40
|
+
email: vincent dot pochet at gmail.com
|
40
41
|
executables:
|
41
42
|
- rgettext
|
42
43
|
- rmsgmerge
|
@@ -50,391 +51,435 @@ extra_rdoc_files:
|
|
50
51
|
- lib/gettext/version.rb
|
51
52
|
- README.rdoc
|
52
53
|
files:
|
53
|
-
-
|
54
|
-
-
|
55
|
-
-
|
56
|
-
-
|
57
|
-
-
|
58
|
-
-
|
59
|
-
-
|
60
|
-
-
|
61
|
-
-
|
62
|
-
-
|
63
|
-
-
|
64
|
-
-
|
65
|
-
-
|
66
|
-
-
|
67
|
-
-
|
68
|
-
-
|
69
|
-
- po/
|
70
|
-
- po/nl/rgettext.po
|
71
|
-
- po/sr/rgettext.po
|
72
|
-
- po/hu/rgettext.po
|
73
|
-
- po/zh/rgettext.po
|
74
|
-
- po/ja/rgettext.po
|
75
|
-
- po/bg/rgettext.po
|
76
|
-
- po/fr/rgettext.po
|
77
|
-
- po/sv/rgettext.po
|
78
|
-
- po/it/rgettext.po
|
79
|
-
- lib/gettext.rb
|
80
|
-
- lib/gettext/cgi.rb
|
81
|
-
- lib/gettext/utils.rb
|
82
|
-
- lib/gettext/tools.rb
|
83
|
-
- lib/gettext/core_ext/iconv.rb
|
84
|
-
- lib/gettext/core_ext/string.rb
|
85
|
-
- lib/gettext/version.rb
|
86
|
-
- lib/gettext/parser/glade.rb
|
87
|
-
- lib/gettext/parser/erb.rb
|
88
|
-
- lib/gettext/parser/ruby.rb
|
89
|
-
- lib/gettext/tools/rgettext.rb
|
90
|
-
- lib/gettext/tools/rmsgmerge.rb
|
91
|
-
- lib/gettext/tools/rmsgfmt.rb
|
92
|
-
- test/po/po/plural.po
|
93
|
-
- test/po/cr/plural.po
|
94
|
-
- test/po/sl/plural.po
|
95
|
-
- test/po/li/plural.po
|
96
|
-
- test/po/ir/plural.po
|
97
|
-
- test/po/ja/sgettext.po
|
98
|
-
- test/po/ja/test2.po
|
99
|
-
- test/po/ja/pgettext.po
|
100
|
-
- test/po/ja/test1.po
|
101
|
-
- test/po/ja/nsgettext.po
|
102
|
-
- test/po/ja/plural_error.po
|
103
|
-
- test/po/ja/plural.po
|
104
|
-
- test/po/ja/rubyparser.po
|
105
|
-
- test/po/ja/npgettext.po
|
106
|
-
- test/po/fr/test2.po
|
107
|
-
- test/po/fr/test1.po
|
108
|
-
- test/po/fr/plural_error.po
|
109
|
-
- test/po/fr/plural.po
|
110
|
-
- test/po/la/plural_error.po
|
111
|
-
- test/po/la/plural.po
|
112
|
-
- test/po/da/plural_error.po
|
113
|
-
- test/po/da/plural.po
|
114
|
-
- test/test_textdomain_toplevel.rb
|
115
|
-
- test/test_gettext.rb
|
116
|
-
- test/test_parser.rb
|
117
|
-
- test/README
|
118
|
-
- test/test_string.rb
|
119
|
-
- test/Rakefile
|
120
|
-
- test/test_class_info.rb
|
121
|
-
- test/test_textdomain_multi.rb
|
122
|
-
- test/testlib/simple.rb
|
123
|
-
- test/testlib/gettext.rb
|
124
|
-
- test/testlib/gladeparser.glade
|
125
|
-
- test/testlib/npgettext.rb
|
126
|
-
- test/testlib/multi_textdomain.rb
|
127
|
-
- test/testlib/erb.rhtml
|
128
|
-
- test/testlib/nsgettext.rb
|
129
|
-
- test/testlib/erb.rxml
|
130
|
-
- test/testlib/pgettext.rb
|
131
|
-
- test/testlib/helper.rb
|
132
|
-
- test/testlib/N_.rb
|
133
|
-
- test/testlib/ngettext.rb
|
134
|
-
- test/testlib/sgettext.rb
|
135
|
-
- bin/rgettext
|
136
|
-
- bin/rmsgmerge
|
137
|
-
- bin/rmsgfmt
|
138
|
-
- Rakefile
|
139
|
-
- README.rdoc
|
140
|
-
- ChangeLog
|
141
|
-
- src/poparser.ry
|
142
|
-
- samples/cgi/po/hr/main.po
|
143
|
-
- samples/cgi/po/hr/hellolib.po
|
144
|
-
- samples/cgi/po/hr/helloerb1.po
|
145
|
-
- samples/cgi/po/hr/helloerb2.po
|
146
|
-
- samples/cgi/po/cs/main.po
|
147
|
-
- samples/cgi/po/cs/hellolib.po
|
148
|
-
- samples/cgi/po/cs/helloerb1.po
|
149
|
-
- samples/cgi/po/cs/helloerb2.po
|
150
|
-
- samples/cgi/po/hellolib.pot
|
151
|
-
- samples/cgi/po/el/main.po
|
152
|
-
- samples/cgi/po/el/hellolib.po
|
153
|
-
- samples/cgi/po/el/helloerb1.po
|
154
|
-
- samples/cgi/po/el/helloerb2.po
|
155
|
-
- samples/cgi/po/bs/main.po
|
156
|
-
- samples/cgi/po/bs/hellolib.po
|
157
|
-
- samples/cgi/po/bs/helloerb1.po
|
158
|
-
- samples/cgi/po/bs/helloerb2.po
|
54
|
+
- COPYING
|
55
|
+
- samples/hello_tk.rb
|
56
|
+
- samples/hello_plural.rb
|
57
|
+
- samples/hello_noop.rb
|
58
|
+
- samples/hello_glade2.glade
|
59
|
+
- samples/hello.rb
|
60
|
+
- samples/hello2.rb
|
61
|
+
- samples/hello_glade2.rb
|
62
|
+
- samples/cgi/index.cgi
|
63
|
+
- samples/cgi/cookie.cgi
|
64
|
+
- samples/cgi/Rakefile
|
65
|
+
- samples/cgi/helloerb.rhtml
|
66
|
+
- samples/cgi/http.rb
|
67
|
+
- samples/cgi/other.rhtml
|
68
|
+
- samples/cgi/README
|
69
|
+
- samples/cgi/gettext.css
|
70
|
+
- samples/cgi/po/vi/helloerb2.po
|
159
71
|
- samples/cgi/po/vi/main.po
|
160
|
-
- samples/cgi/po/vi/hellolib.po
|
161
72
|
- samples/cgi/po/vi/helloerb1.po
|
162
|
-
- samples/cgi/po/vi/
|
163
|
-
- samples/cgi/po/
|
164
|
-
- samples/cgi/po/
|
165
|
-
- samples/cgi/po/
|
166
|
-
- samples/cgi/po/
|
167
|
-
- samples/cgi/po/
|
168
|
-
- samples/cgi/po/
|
169
|
-
- samples/cgi/po/
|
170
|
-
- samples/cgi/po/
|
171
|
-
- samples/cgi/po/
|
172
|
-
- samples/cgi/po/
|
173
|
-
- samples/cgi/po/
|
174
|
-
- samples/cgi/po/
|
175
|
-
- samples/cgi/po/
|
176
|
-
- samples/cgi/po/
|
177
|
-
- samples/cgi/po/
|
178
|
-
- samples/cgi/po/
|
73
|
+
- samples/cgi/po/vi/hellolib.po
|
74
|
+
- samples/cgi/po/eo/helloerb2.po
|
75
|
+
- samples/cgi/po/eo/main.po
|
76
|
+
- samples/cgi/po/eo/helloerb1.po
|
77
|
+
- samples/cgi/po/eo/hellolib.po
|
78
|
+
- samples/cgi/po/sr/helloerb2.po
|
79
|
+
- samples/cgi/po/sr/main.po
|
80
|
+
- samples/cgi/po/sr/helloerb1.po
|
81
|
+
- samples/cgi/po/sr/hellolib.po
|
82
|
+
- samples/cgi/po/fr/helloerb2.po
|
83
|
+
- samples/cgi/po/fr/main.po
|
84
|
+
- samples/cgi/po/fr/helloerb1.po
|
85
|
+
- samples/cgi/po/fr/hellolib.po
|
86
|
+
- samples/cgi/po/helloerb2.pot
|
87
|
+
- samples/cgi/po/bg/helloerb2.po
|
88
|
+
- samples/cgi/po/bg/main.po
|
89
|
+
- samples/cgi/po/bg/helloerb1.po
|
90
|
+
- samples/cgi/po/bg/hellolib.po
|
91
|
+
- samples/cgi/po/ru/helloerb2.po
|
179
92
|
- samples/cgi/po/ru/main.po
|
180
|
-
- samples/cgi/po/ru/hellolib.po
|
181
93
|
- samples/cgi/po/ru/helloerb1.po
|
182
|
-
- samples/cgi/po/ru/
|
94
|
+
- samples/cgi/po/ru/hellolib.po
|
95
|
+
- samples/cgi/po/zh_TW/helloerb2.po
|
183
96
|
- samples/cgi/po/zh_TW/main.po
|
184
|
-
- samples/cgi/po/zh_TW/hellolib.po
|
185
97
|
- samples/cgi/po/zh_TW/helloerb1.po
|
186
|
-
- samples/cgi/po/zh_TW/
|
98
|
+
- samples/cgi/po/zh_TW/hellolib.po
|
99
|
+
- samples/cgi/po/ja/helloerb2.po
|
100
|
+
- samples/cgi/po/ja/main.po
|
101
|
+
- samples/cgi/po/ja/helloerb1.po
|
102
|
+
- samples/cgi/po/ja/hellolib.po
|
103
|
+
- samples/cgi/po/cs/helloerb2.po
|
104
|
+
- samples/cgi/po/cs/main.po
|
105
|
+
- samples/cgi/po/cs/helloerb1.po
|
106
|
+
- samples/cgi/po/cs/hellolib.po
|
107
|
+
- samples/cgi/po/lv/helloerb2.po
|
108
|
+
- samples/cgi/po/lv/main.po
|
109
|
+
- samples/cgi/po/lv/helloerb1.po
|
110
|
+
- samples/cgi/po/lv/hellolib.po
|
111
|
+
- samples/cgi/po/ko/helloerb2.po
|
112
|
+
- samples/cgi/po/ko/main.po
|
113
|
+
- samples/cgi/po/ko/helloerb1.po
|
114
|
+
- samples/cgi/po/ko/hellolib.po
|
115
|
+
- samples/cgi/po/nb/helloerb2.po
|
116
|
+
- samples/cgi/po/nb/main.po
|
117
|
+
- samples/cgi/po/nb/helloerb1.po
|
118
|
+
- samples/cgi/po/nb/hellolib.po
|
119
|
+
- samples/cgi/po/hellolib.pot
|
120
|
+
- samples/cgi/po/nl/helloerb2.po
|
121
|
+
- samples/cgi/po/nl/main.po
|
122
|
+
- samples/cgi/po/nl/helloerb1.po
|
123
|
+
- samples/cgi/po/nl/hellolib.po
|
124
|
+
- samples/cgi/po/it/helloerb2.po
|
125
|
+
- samples/cgi/po/it/main.po
|
126
|
+
- samples/cgi/po/it/helloerb1.po
|
127
|
+
- samples/cgi/po/it/hellolib.po
|
128
|
+
- samples/cgi/po/ca/helloerb2.po
|
187
129
|
- samples/cgi/po/ca/main.po
|
188
|
-
- samples/cgi/po/ca/hellolib.po
|
189
130
|
- samples/cgi/po/ca/helloerb1.po
|
190
|
-
- samples/cgi/po/ca/
|
131
|
+
- samples/cgi/po/ca/hellolib.po
|
132
|
+
- samples/cgi/po/uk/helloerb2.po
|
133
|
+
- samples/cgi/po/uk/main.po
|
134
|
+
- samples/cgi/po/uk/helloerb1.po
|
135
|
+
- samples/cgi/po/uk/hellolib.po
|
136
|
+
- samples/cgi/po/bs/helloerb2.po
|
137
|
+
- samples/cgi/po/bs/main.po
|
138
|
+
- samples/cgi/po/bs/helloerb1.po
|
139
|
+
- samples/cgi/po/bs/hellolib.po
|
140
|
+
- samples/cgi/po/hr/helloerb2.po
|
141
|
+
- samples/cgi/po/hr/main.po
|
142
|
+
- samples/cgi/po/hr/helloerb1.po
|
143
|
+
- samples/cgi/po/hr/hellolib.po
|
144
|
+
- samples/cgi/po/de/helloerb2.po
|
191
145
|
- samples/cgi/po/de/main.po
|
192
|
-
- samples/cgi/po/de/hellolib.po
|
193
146
|
- samples/cgi/po/de/helloerb1.po
|
194
|
-
- samples/cgi/po/de/
|
147
|
+
- samples/cgi/po/de/hellolib.po
|
148
|
+
- samples/cgi/po/helloerb1.pot
|
149
|
+
- samples/cgi/po/main.pot
|
150
|
+
- samples/cgi/po/es/helloerb2.po
|
195
151
|
- samples/cgi/po/es/main.po
|
196
|
-
- samples/cgi/po/es/hellolib.po
|
197
152
|
- samples/cgi/po/es/helloerb1.po
|
198
|
-
- samples/cgi/po/es/
|
199
|
-
- samples/cgi/po/
|
200
|
-
- samples/cgi/po/
|
201
|
-
- samples/cgi/po/
|
202
|
-
- samples/cgi/po/
|
203
|
-
- samples/cgi/po/
|
204
|
-
- samples/cgi/po/
|
205
|
-
- samples/cgi/po/
|
206
|
-
- samples/cgi/po/
|
207
|
-
- samples/cgi/po/
|
208
|
-
- samples/cgi/po/sr/hellolib.po
|
209
|
-
- samples/cgi/po/sr/helloerb1.po
|
210
|
-
- samples/cgi/po/sr/helloerb2.po
|
153
|
+
- samples/cgi/po/es/hellolib.po
|
154
|
+
- samples/cgi/po/el/helloerb2.po
|
155
|
+
- samples/cgi/po/el/main.po
|
156
|
+
- samples/cgi/po/el/helloerb1.po
|
157
|
+
- samples/cgi/po/el/hellolib.po
|
158
|
+
- samples/cgi/po/pt_BR/helloerb2.po
|
159
|
+
- samples/cgi/po/pt_BR/main.po
|
160
|
+
- samples/cgi/po/pt_BR/helloerb1.po
|
161
|
+
- samples/cgi/po/pt_BR/hellolib.po
|
162
|
+
- samples/cgi/po/hu/helloerb2.po
|
211
163
|
- samples/cgi/po/hu/main.po
|
212
|
-
- samples/cgi/po/hu/hellolib.po
|
213
164
|
- samples/cgi/po/hu/helloerb1.po
|
214
|
-
- samples/cgi/po/hu/
|
215
|
-
- samples/cgi/po/
|
216
|
-
- samples/cgi/po/helloerb2.pot
|
165
|
+
- samples/cgi/po/hu/hellolib.po
|
166
|
+
- samples/cgi/po/zh/helloerb2.po
|
217
167
|
- samples/cgi/po/zh/main.po
|
218
|
-
- samples/cgi/po/zh/hellolib.po
|
219
168
|
- samples/cgi/po/zh/helloerb1.po
|
220
|
-
- samples/cgi/po/zh/
|
221
|
-
- samples/cgi/
|
222
|
-
- samples/cgi/po/ja/hellolib.po
|
223
|
-
- samples/cgi/po/ja/helloerb1.po
|
224
|
-
- samples/cgi/po/ja/helloerb2.po
|
225
|
-
- samples/cgi/po/bg/main.po
|
226
|
-
- samples/cgi/po/bg/hellolib.po
|
227
|
-
- samples/cgi/po/bg/helloerb1.po
|
228
|
-
- samples/cgi/po/bg/helloerb2.po
|
229
|
-
- samples/cgi/po/main.pot
|
230
|
-
- samples/cgi/po/fr/main.po
|
231
|
-
- samples/cgi/po/fr/hellolib.po
|
232
|
-
- samples/cgi/po/fr/helloerb1.po
|
233
|
-
- samples/cgi/po/fr/helloerb2.po
|
234
|
-
- samples/cgi/po/it/main.po
|
235
|
-
- samples/cgi/po/it/hellolib.po
|
236
|
-
- samples/cgi/po/it/helloerb1.po
|
237
|
-
- samples/cgi/po/it/helloerb2.po
|
169
|
+
- samples/cgi/po/zh/hellolib.po
|
170
|
+
- samples/cgi/helloerb2.cgi
|
238
171
|
- samples/cgi/hellolib.rb
|
239
172
|
- samples/cgi/helloerb1.cgi
|
240
|
-
- samples/
|
241
|
-
- samples/
|
242
|
-
- samples/
|
243
|
-
- samples/
|
244
|
-
- samples/
|
245
|
-
- samples/cgi/helloerb2.cgi
|
246
|
-
- samples/cgi/http.rb
|
247
|
-
- samples/cgi/helloerb.rhtml
|
248
|
-
- samples/cgi/index.cgi
|
249
|
-
- samples/po/hello_plural.pot
|
250
|
-
- samples/po/hr/hello_glade2.po
|
251
|
-
- samples/po/hr/hello_plural.po
|
252
|
-
- samples/po/hr/hello_noop.po
|
253
|
-
- samples/po/hr/hello.po
|
254
|
-
- samples/po/hr/hello2.po
|
255
|
-
- samples/po/hr/hello_tk.po
|
256
|
-
- samples/po/hr/hello_gtk.po
|
257
|
-
- samples/po/cs/hello_glade2.po
|
258
|
-
- samples/po/cs/hello_plural.po
|
259
|
-
- samples/po/cs/hello_noop.po
|
260
|
-
- samples/po/cs/hello.po
|
261
|
-
- samples/po/cs/hello2.po
|
262
|
-
- samples/po/cs/hello_tk.po
|
263
|
-
- samples/po/cs/hello_gtk.po
|
264
|
-
- samples/po/el/hello_glade2.po
|
265
|
-
- samples/po/el/hello_plural.po
|
266
|
-
- samples/po/el/hello_noop.po
|
267
|
-
- samples/po/el/hello.po
|
268
|
-
- samples/po/el/hello2.po
|
269
|
-
- samples/po/el/hello_tk.po
|
270
|
-
- samples/po/el/hello_gtk.po
|
271
|
-
- samples/po/bs/hello_glade2.po
|
272
|
-
- samples/po/bs/hello_plural.po
|
273
|
-
- samples/po/bs/hello_noop.po
|
274
|
-
- samples/po/bs/hello.po
|
275
|
-
- samples/po/bs/hello2.po
|
276
|
-
- samples/po/bs/hello_tk.po
|
277
|
-
- samples/po/bs/hello_gtk.po
|
173
|
+
- samples/README
|
174
|
+
- samples/makemo.rb
|
175
|
+
- samples/hello_gtk2.rb
|
176
|
+
- samples/po/hello2.pot
|
177
|
+
- samples/po/vi/hello_gtk.po
|
278
178
|
- samples/po/vi/hello_glade2.po
|
279
179
|
- samples/po/vi/hello_plural.po
|
280
|
-
- samples/po/vi/hello_noop.po
|
281
180
|
- samples/po/vi/hello.po
|
282
|
-
- samples/po/vi/
|
181
|
+
- samples/po/vi/hello_noop.po
|
283
182
|
- samples/po/vi/hello_tk.po
|
284
|
-
- samples/po/vi/
|
285
|
-
- samples/po/
|
286
|
-
- samples/po/
|
287
|
-
- samples/po/
|
288
|
-
- samples/po/
|
289
|
-
- samples/po/
|
290
|
-
- samples/po/
|
291
|
-
- samples/po/
|
292
|
-
- samples/po/
|
293
|
-
- samples/po/
|
294
|
-
- samples/po/nb/hello_noop.po
|
295
|
-
- samples/po/nb/hello.po
|
296
|
-
- samples/po/nb/hello2.po
|
297
|
-
- samples/po/nb/hello_tk.po
|
298
|
-
- samples/po/nb/hello_gtk.po
|
183
|
+
- samples/po/vi/hello2.po
|
184
|
+
- samples/po/hello.pot
|
185
|
+
- samples/po/eo/hello_gtk.po
|
186
|
+
- samples/po/eo/hello_glade2.po
|
187
|
+
- samples/po/eo/hello_plural.po
|
188
|
+
- samples/po/eo/hello.po
|
189
|
+
- samples/po/eo/hello_noop.po
|
190
|
+
- samples/po/eo/hello_tk.po
|
191
|
+
- samples/po/eo/hello2.po
|
192
|
+
- samples/po/hello_gtk.pot
|
299
193
|
- samples/po/hello_noop.pot
|
300
|
-
- samples/po/
|
301
|
-
- samples/po/
|
302
|
-
- samples/po/
|
303
|
-
- samples/po/
|
304
|
-
- samples/po/
|
305
|
-
- samples/po/
|
306
|
-
- samples/po/
|
307
|
-
- samples/po/
|
308
|
-
- samples/po/
|
309
|
-
- samples/po/
|
310
|
-
- samples/po/
|
311
|
-
- samples/po/
|
312
|
-
- samples/po/
|
313
|
-
- samples/po/
|
194
|
+
- samples/po/sr/hello_gtk.po
|
195
|
+
- samples/po/sr/hello_glade2.po
|
196
|
+
- samples/po/sr/hello_plural.po
|
197
|
+
- samples/po/sr/hello.po
|
198
|
+
- samples/po/sr/hello_noop.po
|
199
|
+
- samples/po/sr/hello_tk.po
|
200
|
+
- samples/po/sr/hello2.po
|
201
|
+
- samples/po/fr/hello_gtk.po
|
202
|
+
- samples/po/fr/hello_glade2.po
|
203
|
+
- samples/po/fr/hello_plural.po
|
204
|
+
- samples/po/fr/hello.po
|
205
|
+
- samples/po/fr/hello_noop.po
|
206
|
+
- samples/po/fr/hello_tk.po
|
207
|
+
- samples/po/fr/hello2.po
|
208
|
+
- samples/po/sv/hello_gtk.po
|
209
|
+
- samples/po/sv/hello_glade2.po
|
210
|
+
- samples/po/sv/hello_plural.po
|
211
|
+
- samples/po/sv/hello.po
|
212
|
+
- samples/po/sv/hello_noop.po
|
213
|
+
- samples/po/sv/hello_tk.po
|
214
|
+
- samples/po/sv/hello2.po
|
215
|
+
- samples/po/bg/hello_gtk.po
|
216
|
+
- samples/po/bg/hello_glade2.po
|
217
|
+
- samples/po/bg/hello_plural.po
|
218
|
+
- samples/po/bg/hello.po
|
219
|
+
- samples/po/bg/hello_noop.po
|
220
|
+
- samples/po/bg/hello_tk.po
|
221
|
+
- samples/po/bg/hello2.po
|
222
|
+
- samples/po/ru/hello_gtk.po
|
314
223
|
- samples/po/ru/hello_glade2.po
|
315
224
|
- samples/po/ru/hello_plural.po
|
316
|
-
- samples/po/ru/hello_noop.po
|
317
225
|
- samples/po/ru/hello.po
|
318
|
-
- samples/po/ru/
|
226
|
+
- samples/po/ru/hello_noop.po
|
319
227
|
- samples/po/ru/hello_tk.po
|
320
|
-
- samples/po/ru/
|
228
|
+
- samples/po/ru/hello2.po
|
229
|
+
- samples/po/zh_TW/hello_gtk.po
|
321
230
|
- samples/po/zh_TW/hello_glade2.po
|
322
231
|
- samples/po/zh_TW/hello_plural.po
|
323
|
-
- samples/po/zh_TW/hello_noop.po
|
324
232
|
- samples/po/zh_TW/hello.po
|
325
|
-
- samples/po/zh_TW/
|
233
|
+
- samples/po/zh_TW/hello_noop.po
|
326
234
|
- samples/po/zh_TW/hello_tk.po
|
327
|
-
- samples/po/zh_TW/
|
235
|
+
- samples/po/zh_TW/hello2.po
|
236
|
+
- samples/po/ja/hello_gtk.po
|
237
|
+
- samples/po/ja/hello_glade2.po
|
238
|
+
- samples/po/ja/hello_plural.po
|
239
|
+
- samples/po/ja/hello.po
|
240
|
+
- samples/po/ja/hello_noop.po
|
241
|
+
- samples/po/ja/hello_tk.po
|
242
|
+
- samples/po/ja/hello2.po
|
243
|
+
- samples/po/cs/hello_gtk.po
|
244
|
+
- samples/po/cs/hello_glade2.po
|
245
|
+
- samples/po/cs/hello_plural.po
|
246
|
+
- samples/po/cs/hello.po
|
247
|
+
- samples/po/cs/hello_noop.po
|
248
|
+
- samples/po/cs/hello_tk.po
|
249
|
+
- samples/po/cs/hello2.po
|
250
|
+
- samples/po/lv/hello_gtk.po
|
251
|
+
- samples/po/lv/hello_glade2.po
|
252
|
+
- samples/po/lv/hello_plural.po
|
253
|
+
- samples/po/lv/hello.po
|
254
|
+
- samples/po/lv/hello_noop.po
|
255
|
+
- samples/po/lv/hello_tk.po
|
256
|
+
- samples/po/lv/hello2.po
|
257
|
+
- samples/po/ko/hello_gtk.po
|
258
|
+
- samples/po/ko/hello_glade2.po
|
259
|
+
- samples/po/ko/hello_plural.po
|
260
|
+
- samples/po/ko/hello.po
|
261
|
+
- samples/po/ko/hello_noop.po
|
262
|
+
- samples/po/ko/hello_tk.po
|
263
|
+
- samples/po/ko/hello2.po
|
264
|
+
- samples/po/nb/hello_gtk.po
|
265
|
+
- samples/po/nb/hello_glade2.po
|
266
|
+
- samples/po/nb/hello_plural.po
|
267
|
+
- samples/po/nb/hello.po
|
268
|
+
- samples/po/nb/hello_noop.po
|
269
|
+
- samples/po/nb/hello_tk.po
|
270
|
+
- samples/po/nb/hello2.po
|
271
|
+
- samples/po/nl/hello_gtk.po
|
272
|
+
- samples/po/nl/hello_glade2.po
|
273
|
+
- samples/po/nl/hello_plural.po
|
274
|
+
- samples/po/nl/hello.po
|
275
|
+
- samples/po/nl/hello_noop.po
|
276
|
+
- samples/po/nl/hello_tk.po
|
277
|
+
- samples/po/nl/hello2.po
|
278
|
+
- samples/po/it/hello_gtk.po
|
279
|
+
- samples/po/it/hello_glade2.po
|
280
|
+
- samples/po/it/hello_plural.po
|
281
|
+
- samples/po/it/hello.po
|
282
|
+
- samples/po/it/hello_noop.po
|
283
|
+
- samples/po/it/hello_tk.po
|
284
|
+
- samples/po/it/hello2.po
|
285
|
+
- samples/po/ca/hello_gtk.po
|
328
286
|
- samples/po/ca/hello_glade2.po
|
329
287
|
- samples/po/ca/hello_plural.po
|
330
|
-
- samples/po/ca/hello_noop.po
|
331
288
|
- samples/po/ca/hello.po
|
332
|
-
- samples/po/ca/
|
289
|
+
- samples/po/ca/hello_noop.po
|
333
290
|
- samples/po/ca/hello_tk.po
|
334
|
-
- samples/po/ca/
|
335
|
-
- samples/po/
|
291
|
+
- samples/po/ca/hello2.po
|
292
|
+
- samples/po/uk/hello_gtk.po
|
293
|
+
- samples/po/uk/hello_glade2.po
|
294
|
+
- samples/po/uk/hello_plural.po
|
295
|
+
- samples/po/uk/hello.po
|
296
|
+
- samples/po/uk/hello_noop.po
|
297
|
+
- samples/po/uk/hello_tk.po
|
298
|
+
- samples/po/uk/hello2.po
|
299
|
+
- samples/po/hello_plural.pot
|
300
|
+
- samples/po/bs/hello_gtk.po
|
301
|
+
- samples/po/bs/hello_glade2.po
|
302
|
+
- samples/po/bs/hello_plural.po
|
303
|
+
- samples/po/bs/hello.po
|
304
|
+
- samples/po/bs/hello_noop.po
|
305
|
+
- samples/po/bs/hello_tk.po
|
306
|
+
- samples/po/bs/hello2.po
|
307
|
+
- samples/po/hr/hello_gtk.po
|
308
|
+
- samples/po/hr/hello_glade2.po
|
309
|
+
- samples/po/hr/hello_plural.po
|
310
|
+
- samples/po/hr/hello.po
|
311
|
+
- samples/po/hr/hello_noop.po
|
312
|
+
- samples/po/hr/hello_tk.po
|
313
|
+
- samples/po/hr/hello2.po
|
314
|
+
- samples/po/de/hello_gtk.po
|
336
315
|
- samples/po/de/hello_glade2.po
|
337
316
|
- samples/po/de/hello_plural.po
|
338
|
-
- samples/po/de/hello_noop.po
|
339
317
|
- samples/po/de/hello.po
|
340
|
-
- samples/po/de/
|
318
|
+
- samples/po/de/hello_noop.po
|
341
319
|
- samples/po/de/hello_tk.po
|
342
|
-
- samples/po/de/
|
320
|
+
- samples/po/de/hello2.po
|
321
|
+
- samples/po/es/hello_gtk.po
|
343
322
|
- samples/po/es/hello_glade2.po
|
344
323
|
- samples/po/es/hello_plural.po
|
345
|
-
- samples/po/es/hello_noop.po
|
346
324
|
- samples/po/es/hello.po
|
347
|
-
- samples/po/es/
|
325
|
+
- samples/po/es/hello_noop.po
|
348
326
|
- samples/po/es/hello_tk.po
|
349
|
-
- samples/po/es/
|
350
|
-
- samples/po/hello_gtk.
|
351
|
-
- samples/po/
|
352
|
-
- samples/po/
|
353
|
-
- samples/po/
|
354
|
-
- samples/po/
|
355
|
-
- samples/po/
|
356
|
-
- samples/po/
|
357
|
-
- samples/po/
|
358
|
-
- samples/po/
|
359
|
-
- samples/po/
|
360
|
-
- samples/po/
|
361
|
-
- samples/po/
|
362
|
-
- samples/po/
|
363
|
-
- samples/po/
|
364
|
-
- samples/po/
|
365
|
-
- samples/po/
|
366
|
-
- samples/po/sr/hello_plural.po
|
367
|
-
- samples/po/sr/hello_noop.po
|
368
|
-
- samples/po/sr/hello.po
|
369
|
-
- samples/po/sr/hello2.po
|
370
|
-
- samples/po/sr/hello_tk.po
|
371
|
-
- samples/po/sr/hello_gtk.po
|
372
|
-
- samples/po/hello.pot
|
327
|
+
- samples/po/es/hello2.po
|
328
|
+
- samples/po/el/hello_gtk.po
|
329
|
+
- samples/po/el/hello_glade2.po
|
330
|
+
- samples/po/el/hello_plural.po
|
331
|
+
- samples/po/el/hello.po
|
332
|
+
- samples/po/el/hello_noop.po
|
333
|
+
- samples/po/el/hello_tk.po
|
334
|
+
- samples/po/el/hello2.po
|
335
|
+
- samples/po/hello_glade2.pot
|
336
|
+
- samples/po/pt_BR/hello_gtk.po
|
337
|
+
- samples/po/pt_BR/hello_glade2.po
|
338
|
+
- samples/po/pt_BR/hello_plural.po
|
339
|
+
- samples/po/pt_BR/hello.po
|
340
|
+
- samples/po/pt_BR/hello_noop.po
|
341
|
+
- samples/po/pt_BR/hello_tk.po
|
342
|
+
- samples/po/pt_BR/hello2.po
|
343
|
+
- samples/po/hu/hello_gtk.po
|
373
344
|
- samples/po/hu/hello_glade2.po
|
374
345
|
- samples/po/hu/hello_plural.po
|
375
|
-
- samples/po/hu/hello_noop.po
|
376
346
|
- samples/po/hu/hello.po
|
377
|
-
- samples/po/hu/
|
347
|
+
- samples/po/hu/hello_noop.po
|
378
348
|
- samples/po/hu/hello_tk.po
|
379
|
-
- samples/po/hu/
|
349
|
+
- samples/po/hu/hello2.po
|
350
|
+
- samples/po/test.rb
|
351
|
+
- samples/po/zh/hello_gtk.po
|
380
352
|
- samples/po/zh/hello_glade2.po
|
381
353
|
- samples/po/zh/hello_plural.po
|
382
|
-
- samples/po/zh/hello_noop.po
|
383
354
|
- samples/po/zh/hello.po
|
384
|
-
- samples/po/zh/
|
355
|
+
- samples/po/zh/hello_noop.po
|
385
356
|
- samples/po/zh/hello_tk.po
|
386
|
-
- samples/po/zh/
|
387
|
-
- samples/po/test.rb
|
388
|
-
- samples/po/ja/hello_glade2.po
|
389
|
-
- samples/po/ja/hello_plural.po
|
390
|
-
- samples/po/ja/hello_noop.po
|
391
|
-
- samples/po/ja/hello.po
|
392
|
-
- samples/po/ja/hello2.po
|
393
|
-
- samples/po/ja/hello_tk.po
|
394
|
-
- samples/po/ja/hello_gtk.po
|
395
|
-
- samples/po/bg/hello_glade2.po
|
396
|
-
- samples/po/bg/hello_plural.po
|
397
|
-
- samples/po/bg/hello_noop.po
|
398
|
-
- samples/po/bg/hello.po
|
399
|
-
- samples/po/bg/hello2.po
|
400
|
-
- samples/po/bg/hello_tk.po
|
401
|
-
- samples/po/bg/hello_gtk.po
|
402
|
-
- samples/po/fr/hello_glade2.po
|
403
|
-
- samples/po/fr/hello_plural.po
|
404
|
-
- samples/po/fr/hello_noop.po
|
405
|
-
- samples/po/fr/hello.po
|
406
|
-
- samples/po/fr/hello2.po
|
407
|
-
- samples/po/fr/hello_tk.po
|
408
|
-
- samples/po/fr/hello_gtk.po
|
357
|
+
- samples/po/zh/hello2.po
|
409
358
|
- samples/po/hello_tk.pot
|
410
|
-
- samples/po/sv/hello_glade2.po
|
411
|
-
- samples/po/sv/hello_plural.po
|
412
|
-
- samples/po/sv/hello_noop.po
|
413
|
-
- samples/po/sv/hello.po
|
414
|
-
- samples/po/sv/hello2.po
|
415
|
-
- samples/po/sv/hello_tk.po
|
416
|
-
- samples/po/sv/hello_gtk.po
|
417
|
-
- samples/po/hello_glade2.pot
|
418
|
-
- samples/po/it/hello_glade2.po
|
419
|
-
- samples/po/it/hello_plural.po
|
420
|
-
- samples/po/it/hello_noop.po
|
421
|
-
- samples/po/it/hello.po
|
422
|
-
- samples/po/it/hello2.po
|
423
|
-
- samples/po/it/hello_tk.po
|
424
|
-
- samples/po/it/hello_gtk.po
|
425
|
-
- samples/hello_noop.rb
|
426
|
-
- samples/hello_plural.rb
|
427
|
-
- samples/makemo.rb
|
428
|
-
- samples/hello_glade2.glade
|
429
|
-
- samples/hello.rb
|
430
|
-
- samples/hello_gtk2.rb
|
431
|
-
- samples/README
|
432
|
-
- samples/hello_glade2.rb
|
433
|
-
- samples/hello2.rb
|
434
|
-
- samples/hello_tk.rb
|
435
359
|
- gettext.gemspec
|
360
|
+
- README.rdoc
|
361
|
+
- Rakefile
|
362
|
+
- ChangeLog
|
363
|
+
- ChangeLog-1
|
364
|
+
- lib/gettext/version.rb
|
365
|
+
- lib/gettext/tools.rb
|
366
|
+
- lib/gettext/cgi.rb
|
367
|
+
- lib/gettext/runtime/mofile.rb
|
368
|
+
- lib/gettext/runtime/textdomain_manager.rb
|
369
|
+
- lib/gettext/runtime/locale_path.rb
|
370
|
+
- lib/gettext/runtime/class_info.rb
|
371
|
+
- lib/gettext/runtime/textdomain_group.rb
|
372
|
+
- lib/gettext/runtime/textdomain.rb
|
373
|
+
- lib/gettext/utils.rb
|
374
|
+
- lib/gettext/parser/ruby.rb
|
375
|
+
- lib/gettext/parser/erb.rb
|
376
|
+
- lib/gettext/parser/glade.rb
|
377
|
+
- lib/gettext/core_ext/string.rb
|
378
|
+
- lib/gettext/core_ext/iconv.rb
|
379
|
+
- lib/gettext/tools/poparser.rb
|
380
|
+
- lib/gettext/tools/rmsgmerge.rb
|
381
|
+
- lib/gettext/tools/pomessage.rb
|
382
|
+
- lib/gettext/tools/rmsgfmt.rb
|
383
|
+
- lib/gettext/tools/rgettext.rb
|
384
|
+
- lib/gettext/tools/parser/ruby.rb
|
385
|
+
- lib/gettext/tools/parser/erb.rb
|
386
|
+
- lib/gettext/tools/parser/glade.rb
|
387
|
+
- lib/gettext.rb
|
388
|
+
- bin/rgettext
|
389
|
+
- bin/rmsgmerge
|
390
|
+
- bin/rmsgfmt
|
391
|
+
- test/testlib/pgettext.rb
|
392
|
+
- test/testlib/erb.rxml
|
393
|
+
- test/testlib/nsgettext.rb
|
394
|
+
- test/testlib/npgettext.rb
|
395
|
+
- test/testlib/multi_textdomain.rb
|
396
|
+
- test/testlib/ngettext.rb
|
397
|
+
- test/testlib/sgettext.rb
|
398
|
+
- test/testlib/gettext.rb
|
399
|
+
- test/testlib/simple.rb
|
400
|
+
- test/testlib/helper.rb
|
401
|
+
- test/testlib/erb.rhtml
|
402
|
+
- test/testlib/N_.rb
|
403
|
+
- test/testlib/gladeparser.glade
|
404
|
+
- test/test_textdomain_multi.rb
|
405
|
+
- test/test_po_generation.rb
|
406
|
+
- test/test_locale_path.rb
|
407
|
+
- test/test_thread.rb
|
408
|
+
- test/Rakefile
|
409
|
+
- test/README
|
410
|
+
- test/test_textdomain_toplevel.rb
|
411
|
+
- test/test_pomessage.rb
|
412
|
+
- test/po/ir/plural.po
|
413
|
+
- test/po/cr/plural.po
|
414
|
+
- test/po/fr/plural.po
|
415
|
+
- test/po/fr/test1.po
|
416
|
+
- test/po/fr/plural_error.po
|
417
|
+
- test/po/fr/test2.po
|
418
|
+
- test/po/ja/nsgettext.po
|
419
|
+
- test/po/ja/rubyparser.po
|
420
|
+
- test/po/ja/plural.po
|
421
|
+
- test/po/ja/test1.po
|
422
|
+
- test/po/ja/plural_error.po
|
423
|
+
- test/po/ja/sgettext.po
|
424
|
+
- test/po/ja/npgettext.po
|
425
|
+
- test/po/ja/pgettext.po
|
426
|
+
- test/po/ja/test2.po
|
427
|
+
- test/po/ja/test3.po
|
428
|
+
- test/po/la/plural.po
|
429
|
+
- test/po/la/plural_error.po
|
430
|
+
- test/po/li/plural.po
|
431
|
+
- test/po/li/plural_error.po
|
432
|
+
- test/po/da/plural.po
|
433
|
+
- test/po/da/plural_error.po
|
434
|
+
- test/po/po/plural.po
|
435
|
+
- test/po/sl/plural.po
|
436
|
+
- test/test_gettext.rb
|
437
|
+
- test/test_class_info.rb
|
438
|
+
- test/test_string.rb
|
439
|
+
- test/test_textdomain_bind.rb
|
440
|
+
- test/tools/test_tools.rb
|
441
|
+
- test/tools/files/app.pot
|
442
|
+
- test/tools/files/simple_1.po
|
443
|
+
- test/tools/files/simple_2.po
|
444
|
+
- test/tools/files/simple_translation.rb
|
445
|
+
- test/tools/files/en/app.po
|
446
|
+
- test/tools/files/en/test.po
|
447
|
+
- test/tools/files/version.po
|
448
|
+
- test/tools/files/de/app.po
|
449
|
+
- test/tools/test.pot
|
450
|
+
- test/test_parser.rb
|
451
|
+
- ofm_gettext-2.0.1.gem
|
452
|
+
- po/vi/rgettext.po
|
453
|
+
- po/eo/rgettext.po
|
454
|
+
- po/sr/rgettext.po
|
455
|
+
- po/fr/rgettext.po
|
456
|
+
- po/et/rgettext.po
|
457
|
+
- po/sv/rgettext.po
|
458
|
+
- po/bg/rgettext.po
|
459
|
+
- po/ru/rgettext.po
|
460
|
+
- po/zh_TW/rgettext.po
|
461
|
+
- po/ja/rgettext.po
|
462
|
+
- po/cs/rgettext.po
|
463
|
+
- po/lv/rgettext.po
|
464
|
+
- po/ko/rgettext.po
|
465
|
+
- po/nb/rgettext.po
|
466
|
+
- po/nl/rgettext.po
|
467
|
+
- po/it/rgettext.po
|
468
|
+
- po/ca/rgettext.po
|
469
|
+
- po/uk/rgettext.po
|
470
|
+
- po/bs/rgettext.po
|
471
|
+
- po/hr/rgettext.po
|
472
|
+
- po/de/rgettext.po
|
473
|
+
- po/rgettext.pot
|
474
|
+
- po/es/rgettext.po
|
475
|
+
- po/el/rgettext.po
|
476
|
+
- po/pt_BR/rgettext.po
|
477
|
+
- po/hu/rgettext.po
|
478
|
+
- po/zh/rgettext.po
|
479
|
+
- src/poparser.ry
|
480
|
+
- NEWS-1
|
436
481
|
has_rdoc: true
|
437
|
-
homepage:
|
482
|
+
homepage: https://github.com/vincent-pochet/gettext
|
438
483
|
licenses: []
|
439
484
|
|
440
485
|
post_install_message:
|