gettext 1.4.0-mswin32 → 1.5.0-mswin32
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/ChangeLog +46 -0
- data/NEWS +9 -0
- data/README +28 -25
- data/data/locale/cs/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/cs/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/de/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/de/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/el/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/el/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/es/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/es/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/fr/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/fr/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/it/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/ja/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/ja/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/ko/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/ko/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/nl/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/nl/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/pt_BR/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/pt_BR/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/ru/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/ru/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/sv/LC_MESSAGES/rgettext.mo +0 -0
- data/ext/gettext/Makefile +178 -0
- data/ext/gettext/locale_system-i386-mswin32.def +2 -0
- data/ext/gettext/locale_system.exp +0 -0
- data/ext/gettext/locale_system.lib +0 -0
- data/ext/gettext/locale_system.obj +0 -0
- data/ext/gettext/locale_system.pdb +0 -0
- data/ext/gettext/locale_system.so +0 -0
- data/ext/gettext/mkmf.log +16 -0
- data/ext/gettext/vc70.pdb +0 -0
- data/lib/gettext/mo.rb +31 -10
- data/lib/gettext/parser/activerecord.rb +15 -4
- data/lib/gettext/poparser.rb +2 -2
- data/lib/gettext/rails.rb +14 -5
- data/lib/gettext/string.rb +6 -1
- data/lib/gettext/textdomain.rb +33 -4
- data/lib/gettext/version.rb +1 -1
- data/po/cs/rails.po +16 -16
- data/po/cs/rgettext.po +2 -2
- data/po/de/rails.po +16 -16
- data/po/de/rgettext.po +2 -2
- data/po/el/rails.po +16 -16
- data/po/el/rgettext.po +2 -2
- data/po/es/rails.po +16 -16
- data/po/es/rgettext.po +2 -2
- data/po/fr/rails.po +16 -16
- data/po/fr/rgettext.po +2 -2
- data/po/it/rgettext.po +2 -2
- data/po/ja/rails.po +16 -16
- data/po/ja/rgettext.po +2 -2
- data/po/ko/rails.po +16 -16
- data/po/ko/rgettext.po +2 -2
- data/po/nl/rails.po +16 -16
- data/po/nl/rgettext.po +2 -2
- data/po/pt_BR/rails.po +16 -16
- data/po/pt_BR/rgettext.po +2 -2
- data/po/rails.pot +16 -16
- data/po/rgettext.pot +2 -2
- data/po/ru/rails.po +82 -0
- data/po/ru/rgettext.po +103 -0
- data/po/sv/rgettext.po +2 -2
- data/samples/cgi/locale/ru/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/ru/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/ru/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/ru/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/po/ru/helloerb1.po +58 -0
- data/samples/cgi/po/ru/helloerb2.po +50 -0
- data/samples/cgi/po/ru/hellolib.po +22 -0
- data/samples/cgi/po/ru/main.po +82 -0
- data/samples/locale/ru/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/helloglade2.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hellogtk.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hellotk.mo +0 -0
- data/samples/po/ru/hello.po +22 -0
- data/samples/po/ru/hello2.po +30 -0
- data/samples/po/ru/hello_noop.po +26 -0
- data/samples/po/ru/hello_plural.po +25 -0
- data/samples/po/ru/helloglade2.po +30 -0
- data/samples/po/ru/hellogtk.po +22 -0
- data/samples/po/ru/hellotk.po +22 -0
- data/samples/rails/locale/ru/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ru/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/po/ru/blog.po +108 -0
- data/samples/rails/po/ru/gettext_plugin.po +26 -0
- data/test/gettext_test_locale.rb +1 -1
- data/test/gettext_test_rails.rb +1 -1
- metadata +781 -723
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# translation of gettext_plugin.po to Russian
|
|
2
|
+
# GetText Sample Blog on RoR.
|
|
3
|
+
# Copyright (C) 2005 Masao Mutoh#
|
|
4
|
+
# This file is distributed under the same license as the Ruby-GetText-Package.#
|
|
5
|
+
# Yuri Kozlov <kozlov.y@gmail.com>, 2006.
|
|
6
|
+
#
|
|
7
|
+
msgid ""
|
|
8
|
+
msgstr ""
|
|
9
|
+
"Project-Id-Version: gettext_plugin 1.1.0\n"
|
|
10
|
+
"POT-Creation-Date: 2006-01-19 16:49+0900\n"
|
|
11
|
+
"PO-Revision-Date: 2006-04-17 20:09+0300\n"
|
|
12
|
+
"Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\n"
|
|
13
|
+
"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
|
|
14
|
+
"MIME-Version: 1.0\n"
|
|
15
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
16
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
17
|
+
"X-Generator: KBabel 1.9.1\n"
|
|
18
|
+
|
|
19
|
+
#: vendor/plugins/gettext/lib/gettext_plugin.rb:25
|
|
20
|
+
msgid "Select locale"
|
|
21
|
+
msgstr "Выбор локали"
|
|
22
|
+
|
|
23
|
+
#: vendor/plugins/gettext/lib/gettext_plugin.rb:37
|
|
24
|
+
msgid "Cookie "lang" is set: %s"
|
|
25
|
+
msgstr "Для куки "lang" установлено значение: %s"
|
|
26
|
+
|
data/test/gettext_test_locale.rb
CHANGED
|
@@ -214,7 +214,7 @@ class TestLocale < Test::Unit::TestCase
|
|
|
214
214
|
assert_equal("CP932", Locale.get.charset)
|
|
215
215
|
Locale.clear
|
|
216
216
|
Locale.set("C")
|
|
217
|
-
assert_equal("
|
|
217
|
+
assert_equal("en", Locale.get.to_str)
|
|
218
218
|
assert_equal("CP1252", Locale.get.charset)
|
|
219
219
|
Locale.set_current("as-IN")
|
|
220
220
|
assert_equal("as_IN", Locale.get.to_str)
|
data/test/gettext_test_rails.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
|
-
rubygems_version: 0.8.
|
|
2
|
+
rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: gettext
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 1.
|
|
7
|
-
date: 2006-
|
|
6
|
+
version: 1.5.0
|
|
7
|
+
date: 2006-05-07 00:00:00 +09:00
|
|
8
8
|
summary: Ruby-GetText-Package is a libary and tools to localize messages.
|
|
9
9
|
require_paths:
|
|
10
|
-
|
|
10
|
+
- lib
|
|
11
11
|
email: mutoh@highway.ne.jp
|
|
12
12
|
homepage: http://www.yotabanana.com/hiki/ruby-gettext.html
|
|
13
13
|
rubyforge_project: gettext
|
|
@@ -18,732 +18,790 @@ bindir: bin
|
|
|
18
18
|
has_rdoc: false
|
|
19
19
|
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
20
20
|
requirements:
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
version: 0.0.0
|
|
21
|
+
- - ">"
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 0.0.0
|
|
25
24
|
version:
|
|
26
25
|
platform: mswin32
|
|
26
|
+
signing_key:
|
|
27
|
+
cert_chain:
|
|
27
28
|
authors:
|
|
28
|
-
|
|
29
|
+
- Masao Mutoh
|
|
29
30
|
files:
|
|
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
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
31
|
+
- bin
|
|
32
|
+
- ChangeLog
|
|
33
|
+
- COPYING
|
|
34
|
+
- COPYING.ja
|
|
35
|
+
- data
|
|
36
|
+
- ext
|
|
37
|
+
- lib
|
|
38
|
+
- NEWS
|
|
39
|
+
- po
|
|
40
|
+
- post-setup.rb
|
|
41
|
+
- pre-setup.rb
|
|
42
|
+
- Rakefile
|
|
43
|
+
- README
|
|
44
|
+
- samples
|
|
45
|
+
- setup.rb
|
|
46
|
+
- src
|
|
47
|
+
- test
|
|
48
|
+
- bin/rgettext
|
|
49
|
+
- bin/rmsgfmt
|
|
50
|
+
- bin/rmsgmerge
|
|
51
|
+
- data/locale
|
|
52
|
+
- data/locale/cs
|
|
53
|
+
- data/locale/de
|
|
54
|
+
- data/locale/el
|
|
55
|
+
- data/locale/es
|
|
56
|
+
- data/locale/fr
|
|
57
|
+
- data/locale/it
|
|
58
|
+
- data/locale/ja
|
|
59
|
+
- data/locale/ko
|
|
60
|
+
- data/locale/nl
|
|
61
|
+
- data/locale/pt_BR
|
|
62
|
+
- data/locale/ru
|
|
63
|
+
- data/locale/sv
|
|
64
|
+
- data/locale/cs/LC_MESSAGES
|
|
65
|
+
- data/locale/cs/LC_MESSAGES/rails.mo
|
|
66
|
+
- data/locale/cs/LC_MESSAGES/rgettext.mo
|
|
67
|
+
- data/locale/de/LC_MESSAGES
|
|
68
|
+
- data/locale/de/LC_MESSAGES/rails.mo
|
|
69
|
+
- data/locale/de/LC_MESSAGES/rgettext.mo
|
|
70
|
+
- data/locale/el/LC_MESSAGES
|
|
71
|
+
- data/locale/el/LC_MESSAGES/rails.mo
|
|
72
|
+
- data/locale/el/LC_MESSAGES/rgettext.mo
|
|
73
|
+
- data/locale/es/LC_MESSAGES
|
|
74
|
+
- data/locale/es/LC_MESSAGES/rails.mo
|
|
75
|
+
- data/locale/es/LC_MESSAGES/rgettext.mo
|
|
76
|
+
- data/locale/fr/LC_MESSAGES
|
|
77
|
+
- data/locale/fr/LC_MESSAGES/rails.mo
|
|
78
|
+
- data/locale/fr/LC_MESSAGES/rgettext.mo
|
|
79
|
+
- data/locale/it/LC_MESSAGES
|
|
80
|
+
- data/locale/it/LC_MESSAGES/rgettext.mo
|
|
81
|
+
- data/locale/ja/LC_MESSAGES
|
|
82
|
+
- data/locale/ja/LC_MESSAGES/rails.mo
|
|
83
|
+
- data/locale/ja/LC_MESSAGES/rgettext.mo
|
|
84
|
+
- data/locale/ko/LC_MESSAGES
|
|
85
|
+
- data/locale/ko/LC_MESSAGES/rails.mo
|
|
86
|
+
- data/locale/ko/LC_MESSAGES/rgettext.mo
|
|
87
|
+
- data/locale/nl/LC_MESSAGES
|
|
88
|
+
- data/locale/nl/LC_MESSAGES/rails.mo
|
|
89
|
+
- data/locale/nl/LC_MESSAGES/rgettext.mo
|
|
90
|
+
- data/locale/pt_BR/LC_MESSAGES
|
|
91
|
+
- data/locale/pt_BR/LC_MESSAGES/rails.mo
|
|
92
|
+
- data/locale/pt_BR/LC_MESSAGES/rgettext.mo
|
|
93
|
+
- data/locale/ru/LC_MESSAGES
|
|
94
|
+
- data/locale/ru/LC_MESSAGES/rails.mo
|
|
95
|
+
- data/locale/ru/LC_MESSAGES/rgettext.mo
|
|
96
|
+
- data/locale/sv/LC_MESSAGES
|
|
97
|
+
- data/locale/sv/LC_MESSAGES/rgettext.mo
|
|
98
|
+
- ext/gettext
|
|
99
|
+
- ext/gettext/extconf.rb
|
|
100
|
+
- ext/gettext/locale_system-i386-mswin32.def
|
|
101
|
+
- ext/gettext/locale_system.c
|
|
102
|
+
- ext/gettext/locale_system.exp
|
|
103
|
+
- ext/gettext/locale_system.lib
|
|
104
|
+
- ext/gettext/locale_system.obj
|
|
105
|
+
- ext/gettext/locale_system.pdb
|
|
106
|
+
- ext/gettext/locale_system.so
|
|
107
|
+
- ext/gettext/Makefile
|
|
108
|
+
- ext/gettext/mkmf.log
|
|
109
|
+
- ext/gettext/vc70.pdb
|
|
110
|
+
- lib/gettext
|
|
111
|
+
- lib/gettext.rb
|
|
112
|
+
- lib/locale_system.so
|
|
113
|
+
- lib/gettext/cgi.rb
|
|
114
|
+
- lib/gettext/container.rb
|
|
115
|
+
- lib/gettext/erb.rb
|
|
116
|
+
- lib/gettext/iconv.rb
|
|
117
|
+
- lib/gettext/locale.rb
|
|
118
|
+
- lib/gettext/locale_cgi.rb
|
|
119
|
+
- lib/gettext/locale_object.rb
|
|
120
|
+
- lib/gettext/locale_posix.rb
|
|
121
|
+
- lib/gettext/locale_table_win32.rb
|
|
122
|
+
- lib/gettext/locale_win32.rb
|
|
123
|
+
- lib/gettext/mo.rb
|
|
124
|
+
- lib/gettext/parser
|
|
125
|
+
- lib/gettext/poparser.rb
|
|
126
|
+
- lib/gettext/rails.rb
|
|
127
|
+
- lib/gettext/rgettext.rb
|
|
128
|
+
- lib/gettext/rmsgfmt.rb
|
|
129
|
+
- lib/gettext/rmsgmerge.rb
|
|
130
|
+
- lib/gettext/string.rb
|
|
131
|
+
- lib/gettext/textdomain.rb
|
|
132
|
+
- lib/gettext/utils.rb
|
|
133
|
+
- lib/gettext/version.rb
|
|
134
|
+
- lib/gettext/parser/activerecord.rb
|
|
135
|
+
- lib/gettext/parser/erb.rb
|
|
136
|
+
- lib/gettext/parser/glade.rb
|
|
137
|
+
- lib/gettext/parser/ruby.rb
|
|
138
|
+
- po/cs
|
|
139
|
+
- po/de
|
|
140
|
+
- po/el
|
|
141
|
+
- po/es
|
|
142
|
+
- po/fr
|
|
143
|
+
- po/it
|
|
144
|
+
- po/ja
|
|
145
|
+
- po/ko
|
|
146
|
+
- po/nl
|
|
147
|
+
- po/pt_BR
|
|
148
|
+
- po/rails.pot
|
|
149
|
+
- po/rgettext.pot
|
|
150
|
+
- po/ru
|
|
151
|
+
- po/sv
|
|
152
|
+
- po/cs/rails.po
|
|
153
|
+
- po/cs/rgettext.po
|
|
154
|
+
- po/de/rails.po
|
|
155
|
+
- po/de/rgettext.po
|
|
156
|
+
- po/el/rails.po
|
|
157
|
+
- po/el/rgettext.po
|
|
158
|
+
- po/es/rails.po
|
|
159
|
+
- po/es/rgettext.po
|
|
160
|
+
- po/fr/rails.po
|
|
161
|
+
- po/fr/rgettext.po
|
|
162
|
+
- po/it/rgettext.po
|
|
163
|
+
- po/ja/rails.po
|
|
164
|
+
- po/ja/rgettext.po
|
|
165
|
+
- po/ko/rails.po
|
|
166
|
+
- po/ko/rgettext.po
|
|
167
|
+
- po/nl/rails.po
|
|
168
|
+
- po/nl/rgettext.po
|
|
169
|
+
- po/pt_BR/rails.po
|
|
170
|
+
- po/pt_BR/rgettext.po
|
|
171
|
+
- po/ru/rails.po
|
|
172
|
+
- po/ru/rgettext.po
|
|
173
|
+
- po/sv/rgettext.po
|
|
174
|
+
- samples/cgi
|
|
175
|
+
- samples/hello.rb
|
|
176
|
+
- samples/hello2.rb
|
|
177
|
+
- samples/helloglade2.glade
|
|
178
|
+
- samples/helloglade2.rb
|
|
179
|
+
- samples/hellogtk.rb
|
|
180
|
+
- samples/hellogtk2.rb
|
|
181
|
+
- samples/hellotk.rb
|
|
182
|
+
- samples/hello_noop.rb
|
|
183
|
+
- samples/hello_plural.rb
|
|
184
|
+
- samples/hello_textdomain.rb
|
|
185
|
+
- samples/locale
|
|
186
|
+
- samples/makemo.rb
|
|
187
|
+
- samples/po
|
|
188
|
+
- samples/rails
|
|
189
|
+
- samples/README
|
|
190
|
+
- samples/cgi/cookie.cgi
|
|
191
|
+
- samples/cgi/gettext.css
|
|
192
|
+
- samples/cgi/helloerb.rhtml
|
|
193
|
+
- samples/cgi/helloerb1.cgi
|
|
194
|
+
- samples/cgi/helloerb2.cgi
|
|
195
|
+
- samples/cgi/hellolib.rb
|
|
196
|
+
- samples/cgi/http.rb
|
|
197
|
+
- samples/cgi/index.cgi
|
|
198
|
+
- samples/cgi/locale
|
|
199
|
+
- samples/cgi/other.rhtml
|
|
200
|
+
- samples/cgi/po
|
|
201
|
+
- samples/cgi/Rakefile
|
|
202
|
+
- samples/cgi/README
|
|
203
|
+
- samples/cgi/ruby.bat
|
|
204
|
+
- samples/cgi/locale/cs
|
|
205
|
+
- samples/cgi/locale/de
|
|
206
|
+
- samples/cgi/locale/el
|
|
207
|
+
- samples/cgi/locale/es
|
|
208
|
+
- samples/cgi/locale/fr
|
|
209
|
+
- samples/cgi/locale/it
|
|
210
|
+
- samples/cgi/locale/ja
|
|
211
|
+
- samples/cgi/locale/ko
|
|
212
|
+
- samples/cgi/locale/nl
|
|
213
|
+
- samples/cgi/locale/pt_BR
|
|
214
|
+
- samples/cgi/locale/ru
|
|
215
|
+
- samples/cgi/locale/cs/LC_MESSAGES
|
|
216
|
+
- samples/cgi/locale/cs/LC_MESSAGES/helloerb1.mo
|
|
217
|
+
- samples/cgi/locale/cs/LC_MESSAGES/helloerb2.mo
|
|
218
|
+
- samples/cgi/locale/cs/LC_MESSAGES/hellolib.mo
|
|
219
|
+
- samples/cgi/locale/cs/LC_MESSAGES/main.mo
|
|
220
|
+
- samples/cgi/locale/de/LC_MESSAGES
|
|
221
|
+
- samples/cgi/locale/de/LC_MESSAGES/helloerb1.mo
|
|
222
|
+
- samples/cgi/locale/de/LC_MESSAGES/helloerb2.mo
|
|
223
|
+
- samples/cgi/locale/de/LC_MESSAGES/hellolib.mo
|
|
224
|
+
- samples/cgi/locale/de/LC_MESSAGES/main.mo
|
|
225
|
+
- samples/cgi/locale/el/LC_MESSAGES
|
|
226
|
+
- samples/cgi/locale/el/LC_MESSAGES/helloerb1.mo
|
|
227
|
+
- samples/cgi/locale/el/LC_MESSAGES/helloerb2.mo
|
|
228
|
+
- samples/cgi/locale/el/LC_MESSAGES/hellolib.mo
|
|
229
|
+
- samples/cgi/locale/el/LC_MESSAGES/main.mo
|
|
230
|
+
- samples/cgi/locale/es/LC_MESSAGES
|
|
231
|
+
- samples/cgi/locale/es/LC_MESSAGES/helloerb1.mo
|
|
232
|
+
- samples/cgi/locale/es/LC_MESSAGES/helloerb2.mo
|
|
233
|
+
- samples/cgi/locale/es/LC_MESSAGES/hellolib.mo
|
|
234
|
+
- samples/cgi/locale/es/LC_MESSAGES/main.mo
|
|
235
|
+
- samples/cgi/locale/fr/LC_MESSAGES
|
|
236
|
+
- samples/cgi/locale/fr/LC_MESSAGES/helloerb1.mo
|
|
237
|
+
- samples/cgi/locale/fr/LC_MESSAGES/helloerb2.mo
|
|
238
|
+
- samples/cgi/locale/fr/LC_MESSAGES/hellolib.mo
|
|
239
|
+
- samples/cgi/locale/fr/LC_MESSAGES/main.mo
|
|
240
|
+
- samples/cgi/locale/it/LC_MESSAGES
|
|
241
|
+
- samples/cgi/locale/it/LC_MESSAGES/helloerb1.mo
|
|
242
|
+
- samples/cgi/locale/it/LC_MESSAGES/helloerb2.mo
|
|
243
|
+
- samples/cgi/locale/it/LC_MESSAGES/hellolib.mo
|
|
244
|
+
- samples/cgi/locale/it/LC_MESSAGES/main.mo
|
|
245
|
+
- samples/cgi/locale/ja/LC_MESSAGES
|
|
246
|
+
- samples/cgi/locale/ja/LC_MESSAGES/helloerb1.mo
|
|
247
|
+
- samples/cgi/locale/ja/LC_MESSAGES/helloerb2.mo
|
|
248
|
+
- samples/cgi/locale/ja/LC_MESSAGES/hellolib.mo
|
|
249
|
+
- samples/cgi/locale/ja/LC_MESSAGES/main.mo
|
|
250
|
+
- samples/cgi/locale/ko/LC_MESSAGES
|
|
251
|
+
- samples/cgi/locale/ko/LC_MESSAGES/helloerb1.mo
|
|
252
|
+
- samples/cgi/locale/ko/LC_MESSAGES/helloerb2.mo
|
|
253
|
+
- samples/cgi/locale/ko/LC_MESSAGES/hellolib.mo
|
|
254
|
+
- samples/cgi/locale/ko/LC_MESSAGES/main.mo
|
|
255
|
+
- samples/cgi/locale/nl/LC_MESSAGES
|
|
256
|
+
- samples/cgi/locale/nl/LC_MESSAGES/helloerb1.mo
|
|
257
|
+
- samples/cgi/locale/nl/LC_MESSAGES/helloerb2.mo
|
|
258
|
+
- samples/cgi/locale/nl/LC_MESSAGES/hellolib.mo
|
|
259
|
+
- samples/cgi/locale/nl/LC_MESSAGES/main.mo
|
|
260
|
+
- samples/cgi/locale/pt_BR/LC_MESSAGES
|
|
261
|
+
- samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb1.mo
|
|
262
|
+
- samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb2.mo
|
|
263
|
+
- samples/cgi/locale/pt_BR/LC_MESSAGES/hellolib.mo
|
|
264
|
+
- samples/cgi/locale/pt_BR/LC_MESSAGES/main.mo
|
|
265
|
+
- samples/cgi/locale/ru/LC_MESSAGES
|
|
266
|
+
- samples/cgi/locale/ru/LC_MESSAGES/helloerb1.mo
|
|
267
|
+
- samples/cgi/locale/ru/LC_MESSAGES/helloerb2.mo
|
|
268
|
+
- samples/cgi/locale/ru/LC_MESSAGES/hellolib.mo
|
|
269
|
+
- samples/cgi/locale/ru/LC_MESSAGES/main.mo
|
|
270
|
+
- samples/cgi/po/cs
|
|
271
|
+
- samples/cgi/po/de
|
|
272
|
+
- samples/cgi/po/el
|
|
273
|
+
- samples/cgi/po/es
|
|
274
|
+
- samples/cgi/po/fr
|
|
275
|
+
- samples/cgi/po/helloerb1.pot
|
|
276
|
+
- samples/cgi/po/helloerb2.pot
|
|
277
|
+
- samples/cgi/po/hellolib.pot
|
|
278
|
+
- samples/cgi/po/it
|
|
279
|
+
- samples/cgi/po/ja
|
|
280
|
+
- samples/cgi/po/ko
|
|
281
|
+
- samples/cgi/po/main.pot
|
|
282
|
+
- samples/cgi/po/nl
|
|
283
|
+
- samples/cgi/po/pt_BR
|
|
284
|
+
- samples/cgi/po/ru
|
|
285
|
+
- samples/cgi/po/cs/helloerb1.po
|
|
286
|
+
- samples/cgi/po/cs/helloerb2.po
|
|
287
|
+
- samples/cgi/po/cs/hellolib.po
|
|
288
|
+
- samples/cgi/po/cs/main.po
|
|
289
|
+
- samples/cgi/po/de/helloerb1.po
|
|
290
|
+
- samples/cgi/po/de/helloerb2.po
|
|
291
|
+
- samples/cgi/po/de/hellolib.po
|
|
292
|
+
- samples/cgi/po/de/main.po
|
|
293
|
+
- samples/cgi/po/el/helloerb1.po
|
|
294
|
+
- samples/cgi/po/el/helloerb2.po
|
|
295
|
+
- samples/cgi/po/el/hellolib.po
|
|
296
|
+
- samples/cgi/po/el/main.po
|
|
297
|
+
- samples/cgi/po/es/helloerb1.po
|
|
298
|
+
- samples/cgi/po/es/helloerb2.po
|
|
299
|
+
- samples/cgi/po/es/hellolib.po
|
|
300
|
+
- samples/cgi/po/es/main.po
|
|
301
|
+
- samples/cgi/po/fr/helloerb1.po
|
|
302
|
+
- samples/cgi/po/fr/helloerb2.po
|
|
303
|
+
- samples/cgi/po/fr/hellolib.po
|
|
304
|
+
- samples/cgi/po/fr/main.po
|
|
305
|
+
- samples/cgi/po/it/helloerb1.po
|
|
306
|
+
- samples/cgi/po/it/helloerb2.po
|
|
307
|
+
- samples/cgi/po/it/hellolib.po
|
|
308
|
+
- samples/cgi/po/it/main.po
|
|
309
|
+
- samples/cgi/po/ja/helloerb1.po
|
|
310
|
+
- samples/cgi/po/ja/helloerb2.po
|
|
311
|
+
- samples/cgi/po/ja/hellolib.po
|
|
312
|
+
- samples/cgi/po/ja/main.po
|
|
313
|
+
- samples/cgi/po/ko/helloerb1.po
|
|
314
|
+
- samples/cgi/po/ko/helloerb2.po
|
|
315
|
+
- samples/cgi/po/ko/hellolib.po
|
|
316
|
+
- samples/cgi/po/ko/main.po
|
|
317
|
+
- samples/cgi/po/nl/helloerb1.po
|
|
318
|
+
- samples/cgi/po/nl/helloerb2.po
|
|
319
|
+
- samples/cgi/po/nl/hellolib.po
|
|
320
|
+
- samples/cgi/po/nl/main.po
|
|
321
|
+
- samples/cgi/po/pt_BR/helloerb1.po
|
|
322
|
+
- samples/cgi/po/pt_BR/helloerb2.po
|
|
323
|
+
- samples/cgi/po/pt_BR/hellolib.po
|
|
324
|
+
- samples/cgi/po/pt_BR/main.po
|
|
325
|
+
- samples/cgi/po/ru/helloerb1.po
|
|
326
|
+
- samples/cgi/po/ru/helloerb2.po
|
|
327
|
+
- samples/cgi/po/ru/hellolib.po
|
|
328
|
+
- samples/cgi/po/ru/main.po
|
|
329
|
+
- samples/locale/cs
|
|
330
|
+
- samples/locale/de
|
|
331
|
+
- samples/locale/el
|
|
332
|
+
- samples/locale/es
|
|
333
|
+
- samples/locale/fr
|
|
334
|
+
- samples/locale/it
|
|
335
|
+
- samples/locale/ja
|
|
336
|
+
- samples/locale/ko
|
|
337
|
+
- samples/locale/nl
|
|
338
|
+
- samples/locale/pt_BR
|
|
339
|
+
- samples/locale/ru
|
|
340
|
+
- samples/locale/sv
|
|
341
|
+
- samples/locale/cs/LC_MESSAGES
|
|
342
|
+
- samples/locale/cs/LC_MESSAGES/hello.mo
|
|
343
|
+
- samples/locale/cs/LC_MESSAGES/hello2.mo
|
|
344
|
+
- samples/locale/cs/LC_MESSAGES/helloglade2.mo
|
|
345
|
+
- samples/locale/cs/LC_MESSAGES/hellogtk.mo
|
|
346
|
+
- samples/locale/cs/LC_MESSAGES/hellotk.mo
|
|
347
|
+
- samples/locale/cs/LC_MESSAGES/hello_noop.mo
|
|
348
|
+
- samples/locale/cs/LC_MESSAGES/hello_plural.mo
|
|
349
|
+
- samples/locale/de/LC_MESSAGES
|
|
350
|
+
- samples/locale/de/LC_MESSAGES/hello.mo
|
|
351
|
+
- samples/locale/de/LC_MESSAGES/hello2.mo
|
|
352
|
+
- samples/locale/de/LC_MESSAGES/helloglade2.mo
|
|
353
|
+
- samples/locale/de/LC_MESSAGES/hellogtk.mo
|
|
354
|
+
- samples/locale/de/LC_MESSAGES/hellotk.mo
|
|
355
|
+
- samples/locale/de/LC_MESSAGES/hello_noop.mo
|
|
356
|
+
- samples/locale/de/LC_MESSAGES/hello_plural.mo
|
|
357
|
+
- samples/locale/el/LC_MESSAGES
|
|
358
|
+
- samples/locale/el/LC_MESSAGES/hello.mo
|
|
359
|
+
- samples/locale/el/LC_MESSAGES/hello2.mo
|
|
360
|
+
- samples/locale/el/LC_MESSAGES/helloglade2.mo
|
|
361
|
+
- samples/locale/el/LC_MESSAGES/hellogtk.mo
|
|
362
|
+
- samples/locale/el/LC_MESSAGES/hellotk.mo
|
|
363
|
+
- samples/locale/el/LC_MESSAGES/hello_noop.mo
|
|
364
|
+
- samples/locale/el/LC_MESSAGES/hello_plural.mo
|
|
365
|
+
- samples/locale/es/LC_MESSAGES
|
|
366
|
+
- samples/locale/es/LC_MESSAGES/hello.mo
|
|
367
|
+
- samples/locale/es/LC_MESSAGES/hello2.mo
|
|
368
|
+
- samples/locale/es/LC_MESSAGES/helloglade2.mo
|
|
369
|
+
- samples/locale/es/LC_MESSAGES/hellogtk.mo
|
|
370
|
+
- samples/locale/es/LC_MESSAGES/hellotk.mo
|
|
371
|
+
- samples/locale/es/LC_MESSAGES/hello_noop.mo
|
|
372
|
+
- samples/locale/es/LC_MESSAGES/hello_plural.mo
|
|
373
|
+
- samples/locale/fr/LC_MESSAGES
|
|
374
|
+
- samples/locale/fr/LC_MESSAGES/hello.mo
|
|
375
|
+
- samples/locale/fr/LC_MESSAGES/hello2.mo
|
|
376
|
+
- samples/locale/fr/LC_MESSAGES/helloglade2.mo
|
|
377
|
+
- samples/locale/fr/LC_MESSAGES/hellogtk.mo
|
|
378
|
+
- samples/locale/fr/LC_MESSAGES/hellotk.mo
|
|
379
|
+
- samples/locale/fr/LC_MESSAGES/hello_noop.mo
|
|
380
|
+
- samples/locale/fr/LC_MESSAGES/hello_plural.mo
|
|
381
|
+
- samples/locale/it/LC_MESSAGES
|
|
382
|
+
- samples/locale/it/LC_MESSAGES/hello.mo
|
|
383
|
+
- samples/locale/it/LC_MESSAGES/hello2.mo
|
|
384
|
+
- samples/locale/it/LC_MESSAGES/helloglade2.mo
|
|
385
|
+
- samples/locale/it/LC_MESSAGES/hellogtk.mo
|
|
386
|
+
- samples/locale/it/LC_MESSAGES/hellotk.mo
|
|
387
|
+
- samples/locale/it/LC_MESSAGES/hello_noop.mo
|
|
388
|
+
- samples/locale/it/LC_MESSAGES/hello_plural.mo
|
|
389
|
+
- samples/locale/ja/LC_MESSAGES
|
|
390
|
+
- samples/locale/ja/LC_MESSAGES/hello.mo
|
|
391
|
+
- samples/locale/ja/LC_MESSAGES/hello2.mo
|
|
392
|
+
- samples/locale/ja/LC_MESSAGES/helloglade2.mo
|
|
393
|
+
- samples/locale/ja/LC_MESSAGES/hellogtk.mo
|
|
394
|
+
- samples/locale/ja/LC_MESSAGES/hellotk.mo
|
|
395
|
+
- samples/locale/ja/LC_MESSAGES/hello_noop.mo
|
|
396
|
+
- samples/locale/ja/LC_MESSAGES/hello_plural.mo
|
|
397
|
+
- samples/locale/ko/LC_MESSAGES
|
|
398
|
+
- samples/locale/ko/LC_MESSAGES/hello.mo
|
|
399
|
+
- samples/locale/ko/LC_MESSAGES/hello2.mo
|
|
400
|
+
- samples/locale/ko/LC_MESSAGES/helloglade2.mo
|
|
401
|
+
- samples/locale/ko/LC_MESSAGES/hellogtk.mo
|
|
402
|
+
- samples/locale/ko/LC_MESSAGES/hellotk.mo
|
|
403
|
+
- samples/locale/ko/LC_MESSAGES/hello_noop.mo
|
|
404
|
+
- samples/locale/ko/LC_MESSAGES/hello_plural.mo
|
|
405
|
+
- samples/locale/nl/LC_MESSAGES
|
|
406
|
+
- samples/locale/nl/LC_MESSAGES/hello.mo
|
|
407
|
+
- samples/locale/nl/LC_MESSAGES/hello2.mo
|
|
408
|
+
- samples/locale/nl/LC_MESSAGES/helloglade2.mo
|
|
409
|
+
- samples/locale/nl/LC_MESSAGES/hellogtk.mo
|
|
410
|
+
- samples/locale/nl/LC_MESSAGES/hellotk.mo
|
|
411
|
+
- samples/locale/nl/LC_MESSAGES/hello_noop.mo
|
|
412
|
+
- samples/locale/nl/LC_MESSAGES/hello_plural.mo
|
|
413
|
+
- samples/locale/pt_BR/LC_MESSAGES
|
|
414
|
+
- samples/locale/pt_BR/LC_MESSAGES/hello.mo
|
|
415
|
+
- samples/locale/pt_BR/LC_MESSAGES/hello2.mo
|
|
416
|
+
- samples/locale/pt_BR/LC_MESSAGES/helloglade2.mo
|
|
417
|
+
- samples/locale/pt_BR/LC_MESSAGES/hellogtk.mo
|
|
418
|
+
- samples/locale/pt_BR/LC_MESSAGES/hellotk.mo
|
|
419
|
+
- samples/locale/pt_BR/LC_MESSAGES/hello_noop.mo
|
|
420
|
+
- samples/locale/pt_BR/LC_MESSAGES/hello_plural.mo
|
|
421
|
+
- samples/locale/ru/LC_MESSAGES
|
|
422
|
+
- samples/locale/ru/LC_MESSAGES/hello.mo
|
|
423
|
+
- samples/locale/ru/LC_MESSAGES/hello2.mo
|
|
424
|
+
- samples/locale/ru/LC_MESSAGES/helloglade2.mo
|
|
425
|
+
- samples/locale/ru/LC_MESSAGES/hellogtk.mo
|
|
426
|
+
- samples/locale/ru/LC_MESSAGES/hellotk.mo
|
|
427
|
+
- samples/locale/ru/LC_MESSAGES/hello_noop.mo
|
|
428
|
+
- samples/locale/ru/LC_MESSAGES/hello_plural.mo
|
|
429
|
+
- samples/locale/sv/LC_MESSAGES
|
|
430
|
+
- samples/locale/sv/LC_MESSAGES/hello.mo
|
|
431
|
+
- samples/locale/sv/LC_MESSAGES/hello2.mo
|
|
432
|
+
- samples/locale/sv/LC_MESSAGES/helloglade2.mo
|
|
433
|
+
- samples/locale/sv/LC_MESSAGES/hellogtk.mo
|
|
434
|
+
- samples/locale/sv/LC_MESSAGES/hellotk.mo
|
|
435
|
+
- samples/locale/sv/LC_MESSAGES/hello_noop.mo
|
|
436
|
+
- samples/locale/sv/LC_MESSAGES/hello_plural.mo
|
|
437
|
+
- samples/po/cs
|
|
438
|
+
- samples/po/de
|
|
439
|
+
- samples/po/el
|
|
440
|
+
- samples/po/es
|
|
441
|
+
- samples/po/fr
|
|
442
|
+
- samples/po/hello.pot
|
|
443
|
+
- samples/po/hello2.pot
|
|
444
|
+
- samples/po/helloglade2.pot
|
|
445
|
+
- samples/po/hellogtk.pot
|
|
446
|
+
- samples/po/hellotk.pot
|
|
447
|
+
- samples/po/hello_noop.pot
|
|
448
|
+
- samples/po/hello_plural.pot
|
|
449
|
+
- samples/po/it
|
|
450
|
+
- samples/po/ja
|
|
451
|
+
- samples/po/ko
|
|
452
|
+
- samples/po/nl
|
|
453
|
+
- samples/po/pt_BR
|
|
454
|
+
- samples/po/ru
|
|
455
|
+
- samples/po/sv
|
|
456
|
+
- samples/po/cs/hello.po
|
|
457
|
+
- samples/po/cs/hello2.po
|
|
458
|
+
- samples/po/cs/helloglade2.po
|
|
459
|
+
- samples/po/cs/hellogtk.po
|
|
460
|
+
- samples/po/cs/hellotk.po
|
|
461
|
+
- samples/po/cs/hello_noop.po
|
|
462
|
+
- samples/po/cs/hello_plural.po
|
|
463
|
+
- samples/po/de/hello.po
|
|
464
|
+
- samples/po/de/hello2.po
|
|
465
|
+
- samples/po/de/helloglade2.po
|
|
466
|
+
- samples/po/de/hellogtk.po
|
|
467
|
+
- samples/po/de/hellotk.po
|
|
468
|
+
- samples/po/de/hello_noop.po
|
|
469
|
+
- samples/po/de/hello_plural.po
|
|
470
|
+
- samples/po/el/hello.po
|
|
471
|
+
- samples/po/el/hello2.po
|
|
472
|
+
- samples/po/el/helloglade2.po
|
|
473
|
+
- samples/po/el/hellogtk.po
|
|
474
|
+
- samples/po/el/hellotk.po
|
|
475
|
+
- samples/po/el/hello_noop.po
|
|
476
|
+
- samples/po/el/hello_plural.po
|
|
477
|
+
- samples/po/es/hello.po
|
|
478
|
+
- samples/po/es/hello2.po
|
|
479
|
+
- samples/po/es/helloglade2.po
|
|
480
|
+
- samples/po/es/hellogtk.po
|
|
481
|
+
- samples/po/es/hellotk.po
|
|
482
|
+
- samples/po/es/hello_noop.po
|
|
483
|
+
- samples/po/es/hello_plural.po
|
|
484
|
+
- samples/po/fr/hello.po
|
|
485
|
+
- samples/po/fr/hello2.po
|
|
486
|
+
- samples/po/fr/helloglade2.po
|
|
487
|
+
- samples/po/fr/hellogtk.po
|
|
488
|
+
- samples/po/fr/hellotk.po
|
|
489
|
+
- samples/po/fr/hello_noop.po
|
|
490
|
+
- samples/po/fr/hello_plural.po
|
|
491
|
+
- samples/po/it/hello.po
|
|
492
|
+
- samples/po/it/hello2.po
|
|
493
|
+
- samples/po/it/helloglade2.po
|
|
494
|
+
- samples/po/it/hellogtk.po
|
|
495
|
+
- samples/po/it/hellotk.po
|
|
496
|
+
- samples/po/it/hello_noop.po
|
|
497
|
+
- samples/po/it/hello_plural.po
|
|
498
|
+
- samples/po/ja/hello.po
|
|
499
|
+
- samples/po/ja/hello2.po
|
|
500
|
+
- samples/po/ja/helloglade2.po
|
|
501
|
+
- samples/po/ja/hellogtk.po
|
|
502
|
+
- samples/po/ja/hellotk.po
|
|
503
|
+
- samples/po/ja/hello_noop.po
|
|
504
|
+
- samples/po/ja/hello_plural.po
|
|
505
|
+
- samples/po/ko/hello.po
|
|
506
|
+
- samples/po/ko/hello2.po
|
|
507
|
+
- samples/po/ko/helloglade2.po
|
|
508
|
+
- samples/po/ko/hellogtk.po
|
|
509
|
+
- samples/po/ko/hellotk.po
|
|
510
|
+
- samples/po/ko/hello_noop.po
|
|
511
|
+
- samples/po/ko/hello_plural.po
|
|
512
|
+
- samples/po/nl/hello.po
|
|
513
|
+
- samples/po/nl/hello2.po
|
|
514
|
+
- samples/po/nl/helloglade2.po
|
|
515
|
+
- samples/po/nl/hellogtk.po
|
|
516
|
+
- samples/po/nl/hellotk.po
|
|
517
|
+
- samples/po/nl/hello_noop.po
|
|
518
|
+
- samples/po/nl/hello_plural.po
|
|
519
|
+
- samples/po/pt_BR/hello.po
|
|
520
|
+
- samples/po/pt_BR/hello2.po
|
|
521
|
+
- samples/po/pt_BR/helloglade2.po
|
|
522
|
+
- samples/po/pt_BR/hellogtk.po
|
|
523
|
+
- samples/po/pt_BR/hellotk.po
|
|
524
|
+
- samples/po/pt_BR/hello_noop.po
|
|
525
|
+
- samples/po/pt_BR/hello_plural.po
|
|
526
|
+
- samples/po/ru/hello.po
|
|
527
|
+
- samples/po/ru/hello2.po
|
|
528
|
+
- samples/po/ru/helloglade2.po
|
|
529
|
+
- samples/po/ru/hellogtk.po
|
|
530
|
+
- samples/po/ru/hellotk.po
|
|
531
|
+
- samples/po/ru/hello_noop.po
|
|
532
|
+
- samples/po/ru/hello_plural.po
|
|
533
|
+
- samples/po/sv/hello.po
|
|
534
|
+
- samples/po/sv/hello2.po
|
|
535
|
+
- samples/po/sv/helloglade2.po
|
|
536
|
+
- samples/po/sv/hellogtk.po
|
|
537
|
+
- samples/po/sv/hellotk.po
|
|
538
|
+
- samples/po/sv/hello_noop.po
|
|
539
|
+
- samples/po/sv/hello_plural.po
|
|
540
|
+
- samples/rails/app
|
|
541
|
+
- samples/rails/config
|
|
542
|
+
- samples/rails/db
|
|
543
|
+
- samples/rails/lib
|
|
544
|
+
- samples/rails/locale
|
|
545
|
+
- samples/rails/po
|
|
546
|
+
- samples/rails/public
|
|
547
|
+
- samples/rails/Rakefile
|
|
548
|
+
- samples/rails/README
|
|
549
|
+
- samples/rails/script
|
|
550
|
+
- samples/rails/test
|
|
551
|
+
- samples/rails/vendor
|
|
552
|
+
- samples/rails/app/controllers
|
|
553
|
+
- samples/rails/app/helpers
|
|
554
|
+
- samples/rails/app/models
|
|
555
|
+
- samples/rails/app/views
|
|
556
|
+
- samples/rails/app/controllers/application.rb
|
|
557
|
+
- samples/rails/app/controllers/blog_controller.rb
|
|
558
|
+
- samples/rails/app/helpers/application_helper.rb
|
|
559
|
+
- samples/rails/app/helpers/blog_helper.rb
|
|
560
|
+
- samples/rails/app/models/article.rb
|
|
561
|
+
- samples/rails/app/views/blog
|
|
562
|
+
- samples/rails/app/views/layouts
|
|
563
|
+
- samples/rails/app/views/blog/edit.rhtml
|
|
564
|
+
- samples/rails/app/views/blog/list.rhtml
|
|
565
|
+
- samples/rails/app/views/blog/new.rhtml
|
|
566
|
+
- samples/rails/app/views/blog/show.rhtml
|
|
567
|
+
- samples/rails/app/views/blog/_form.rhtml
|
|
568
|
+
- samples/rails/app/views/layouts/blog.rhtml
|
|
569
|
+
- samples/rails/config/boot.rb
|
|
570
|
+
- samples/rails/config/database.yml
|
|
571
|
+
- samples/rails/config/environment.rb
|
|
572
|
+
- samples/rails/config/environments
|
|
573
|
+
- samples/rails/config/routes.rb
|
|
574
|
+
- samples/rails/config/environments/development.rb
|
|
575
|
+
- samples/rails/config/environments/production.rb
|
|
576
|
+
- samples/rails/config/environments/test.rb
|
|
577
|
+
- samples/rails/db/mysql.sql
|
|
578
|
+
- samples/rails/db/postgresql.sql
|
|
579
|
+
- samples/rails/lib/tasks
|
|
580
|
+
- samples/rails/lib/tasks/gettext.rake
|
|
581
|
+
- samples/rails/locale/cs
|
|
582
|
+
- samples/rails/locale/de
|
|
583
|
+
- samples/rails/locale/el
|
|
584
|
+
- samples/rails/locale/en
|
|
585
|
+
- samples/rails/locale/es
|
|
586
|
+
- samples/rails/locale/fr
|
|
587
|
+
- samples/rails/locale/ja
|
|
588
|
+
- samples/rails/locale/ko
|
|
589
|
+
- samples/rails/locale/nl
|
|
590
|
+
- samples/rails/locale/pt_BR
|
|
591
|
+
- samples/rails/locale/ru
|
|
592
|
+
- samples/rails/locale/cs/LC_MESSAGES
|
|
593
|
+
- samples/rails/locale/cs/LC_MESSAGES/blog.mo
|
|
594
|
+
- samples/rails/locale/cs/LC_MESSAGES/gettext_plugin.mo
|
|
595
|
+
- samples/rails/locale/de/LC_MESSAGES
|
|
596
|
+
- samples/rails/locale/de/LC_MESSAGES/blog.mo
|
|
597
|
+
- samples/rails/locale/de/LC_MESSAGES/gettext_plugin.mo
|
|
598
|
+
- samples/rails/locale/el/LC_MESSAGES
|
|
599
|
+
- samples/rails/locale/el/LC_MESSAGES/blog.mo
|
|
600
|
+
- samples/rails/locale/el/LC_MESSAGES/gettext_plugin.mo
|
|
601
|
+
- samples/rails/locale/en/LC_MESSAGES
|
|
602
|
+
- samples/rails/locale/en/LC_MESSAGES/blog.mo
|
|
603
|
+
- samples/rails/locale/es/LC_MESSAGES
|
|
604
|
+
- samples/rails/locale/es/LC_MESSAGES/blog.mo
|
|
605
|
+
- samples/rails/locale/es/LC_MESSAGES/gettext_plugin.mo
|
|
606
|
+
- samples/rails/locale/fr/LC_MESSAGES
|
|
607
|
+
- samples/rails/locale/fr/LC_MESSAGES/blog.mo
|
|
608
|
+
- samples/rails/locale/fr/LC_MESSAGES/gettext_plugin.mo
|
|
609
|
+
- samples/rails/locale/ja/LC_MESSAGES
|
|
610
|
+
- samples/rails/locale/ja/LC_MESSAGES/blog.mo
|
|
611
|
+
- samples/rails/locale/ja/LC_MESSAGES/gettext_plugin.mo
|
|
612
|
+
- samples/rails/locale/ko/LC_MESSAGES
|
|
613
|
+
- samples/rails/locale/ko/LC_MESSAGES/blog.mo
|
|
614
|
+
- samples/rails/locale/ko/LC_MESSAGES/gettext_plugin.mo
|
|
615
|
+
- samples/rails/locale/nl/LC_MESSAGES
|
|
616
|
+
- samples/rails/locale/nl/LC_MESSAGES/blog.mo
|
|
617
|
+
- samples/rails/locale/nl/LC_MESSAGES/gettext_plugin.mo
|
|
618
|
+
- samples/rails/locale/pt_BR/LC_MESSAGES
|
|
619
|
+
- samples/rails/locale/pt_BR/LC_MESSAGES/blog.mo
|
|
620
|
+
- samples/rails/locale/pt_BR/LC_MESSAGES/gettext_plugin.mo
|
|
621
|
+
- samples/rails/locale/ru/LC_MESSAGES
|
|
622
|
+
- samples/rails/locale/ru/LC_MESSAGES/blog.mo
|
|
623
|
+
- samples/rails/locale/ru/LC_MESSAGES/gettext_plugin.mo
|
|
624
|
+
- samples/rails/po/blog.pot
|
|
625
|
+
- samples/rails/po/cs
|
|
626
|
+
- samples/rails/po/de
|
|
627
|
+
- samples/rails/po/el
|
|
628
|
+
- samples/rails/po/en
|
|
629
|
+
- samples/rails/po/es
|
|
630
|
+
- samples/rails/po/fr
|
|
631
|
+
- samples/rails/po/gettext_plugin.pot
|
|
632
|
+
- samples/rails/po/ja
|
|
633
|
+
- samples/rails/po/ko
|
|
634
|
+
- samples/rails/po/nl
|
|
635
|
+
- samples/rails/po/pt_BR
|
|
636
|
+
- samples/rails/po/ru
|
|
637
|
+
- samples/rails/po/cs/blog.po
|
|
638
|
+
- samples/rails/po/cs/gettext_plugin.po
|
|
639
|
+
- samples/rails/po/de/blog.po
|
|
640
|
+
- samples/rails/po/de/gettext_plugin.po
|
|
641
|
+
- samples/rails/po/el/blog.po
|
|
642
|
+
- samples/rails/po/el/gettext_plugin.po
|
|
643
|
+
- samples/rails/po/en/blog.po
|
|
644
|
+
- samples/rails/po/es/blog.po
|
|
645
|
+
- samples/rails/po/es/gettext_plugin.po
|
|
646
|
+
- samples/rails/po/fr/blog.po
|
|
647
|
+
- samples/rails/po/fr/gettext_plugin.po
|
|
648
|
+
- samples/rails/po/ja/blog.po
|
|
649
|
+
- samples/rails/po/ja/gettext_plugin.po
|
|
650
|
+
- samples/rails/po/ko/blog.po
|
|
651
|
+
- samples/rails/po/ko/gettext_plugin.po
|
|
652
|
+
- samples/rails/po/nl/blog.po
|
|
653
|
+
- samples/rails/po/nl/gettext_plugin.po
|
|
654
|
+
- samples/rails/po/pt_BR/blog.po
|
|
655
|
+
- samples/rails/po/pt_BR/gettext_plugin.po
|
|
656
|
+
- samples/rails/po/ru/blog.po
|
|
657
|
+
- samples/rails/po/ru/gettext_plugin.po
|
|
658
|
+
- samples/rails/public/404.html
|
|
659
|
+
- samples/rails/public/500.html
|
|
660
|
+
- samples/rails/public/dispatch.cgi
|
|
661
|
+
- samples/rails/public/dispatch.fcgi
|
|
662
|
+
- samples/rails/public/dispatch.rb
|
|
663
|
+
- samples/rails/public/favicon.ico
|
|
664
|
+
- samples/rails/public/images
|
|
665
|
+
- samples/rails/public/index.html
|
|
666
|
+
- samples/rails/public/javascripts
|
|
667
|
+
- samples/rails/public/robots.txt
|
|
668
|
+
- samples/rails/public/stylesheets
|
|
669
|
+
- samples/rails/public/images/rails.png
|
|
670
|
+
- samples/rails/public/javascripts/controls.js
|
|
671
|
+
- samples/rails/public/javascripts/dragdrop.js
|
|
672
|
+
- samples/rails/public/javascripts/effects.js
|
|
673
|
+
- samples/rails/public/javascripts/prototype.js
|
|
674
|
+
- samples/rails/public/stylesheets/blog.css
|
|
675
|
+
- samples/rails/public/stylesheets/scaffold.css
|
|
676
|
+
- samples/rails/script/about
|
|
677
|
+
- samples/rails/script/breakpointer
|
|
678
|
+
- samples/rails/script/console
|
|
679
|
+
- samples/rails/script/destroy
|
|
680
|
+
- samples/rails/script/generate
|
|
681
|
+
- samples/rails/script/performance
|
|
682
|
+
- samples/rails/script/plugin
|
|
683
|
+
- samples/rails/script/process
|
|
684
|
+
- samples/rails/script/runner
|
|
685
|
+
- samples/rails/script/server
|
|
686
|
+
- samples/rails/script/performance/benchmarker
|
|
687
|
+
- samples/rails/script/performance/profiler
|
|
688
|
+
- samples/rails/script/process/reaper
|
|
689
|
+
- samples/rails/script/process/spawner
|
|
690
|
+
- samples/rails/script/process/spinner
|
|
691
|
+
- samples/rails/test/fixtures
|
|
692
|
+
- samples/rails/test/functional
|
|
693
|
+
- samples/rails/test/test_helper.rb
|
|
694
|
+
- samples/rails/test/unit
|
|
695
|
+
- samples/rails/test/fixtures/articles.yml
|
|
696
|
+
- samples/rails/test/functional/blog_controller_test.rb
|
|
697
|
+
- samples/rails/test/unit/article_test.rb
|
|
698
|
+
- samples/rails/vendor/plugins
|
|
699
|
+
- samples/rails/vendor/plugins/gettext
|
|
700
|
+
- samples/rails/vendor/plugins/gettext/init.rb
|
|
701
|
+
- samples/rails/vendor/plugins/gettext/lib
|
|
702
|
+
- samples/rails/vendor/plugins/gettext/lib/gettext_plugin.rb
|
|
703
|
+
- src/poparser.ry
|
|
704
|
+
- test/gettext_runner.rb
|
|
705
|
+
- test/gettext_test.rb
|
|
706
|
+
- test/gettext_test_cgi.rb
|
|
707
|
+
- test/gettext_test_locale.rb
|
|
708
|
+
- test/gettext_test_parser.rb
|
|
709
|
+
- test/gettext_test_rails.rb
|
|
710
|
+
- test/gettext_test_string.rb
|
|
711
|
+
- test/locale
|
|
712
|
+
- test/po
|
|
713
|
+
- test/README
|
|
714
|
+
- test/test.bat
|
|
715
|
+
- test/test.sh
|
|
716
|
+
- test/testlib1.rb
|
|
717
|
+
- test/testlib2.rb
|
|
718
|
+
- test/testlib3.rb
|
|
719
|
+
- test/testlib4.rb
|
|
720
|
+
- test/test_erb.rhtml
|
|
721
|
+
- test/test_erb.rxml
|
|
722
|
+
- test/test_gladeparser.glade
|
|
723
|
+
- test/test_rubyparser.rb
|
|
724
|
+
- test/test_rubyparser_N.rb
|
|
725
|
+
- test/test_rubyparser_n_.rb
|
|
726
|
+
- test/test_sgettext.rb
|
|
727
|
+
- test/locale/cr
|
|
728
|
+
- test/locale/da
|
|
729
|
+
- test/locale/fr
|
|
730
|
+
- test/locale/ir
|
|
731
|
+
- test/locale/ja
|
|
732
|
+
- test/locale/la
|
|
733
|
+
- test/locale/li
|
|
734
|
+
- test/locale/po
|
|
735
|
+
- test/locale/sl
|
|
736
|
+
- test/locale/cr/LC_MESSAGES
|
|
737
|
+
- test/locale/cr/LC_MESSAGES/plural.mo
|
|
738
|
+
- test/locale/da/LC_MESSAGES
|
|
739
|
+
- test/locale/da/LC_MESSAGES/plural.mo
|
|
740
|
+
- test/locale/da/LC_MESSAGES/plural_error.mo
|
|
741
|
+
- test/locale/fr/LC_MESSAGES
|
|
742
|
+
- test/locale/fr/LC_MESSAGES/plural.mo
|
|
743
|
+
- test/locale/fr/LC_MESSAGES/plural_error.mo
|
|
744
|
+
- test/locale/fr/LC_MESSAGES/test1.mo
|
|
745
|
+
- test/locale/fr/LC_MESSAGES/test2.mo
|
|
746
|
+
- test/locale/ir/LC_MESSAGES
|
|
747
|
+
- test/locale/ir/LC_MESSAGES/plural.mo
|
|
748
|
+
- test/locale/ja/LC_MESSAGES
|
|
749
|
+
- test/locale/ja/LC_MESSAGES/plural.mo
|
|
750
|
+
- test/locale/ja/LC_MESSAGES/plural_error.mo
|
|
751
|
+
- test/locale/ja/LC_MESSAGES/test1.mo
|
|
752
|
+
- test/locale/ja/LC_MESSAGES/test2.mo
|
|
753
|
+
- test/locale/ja/LC_MESSAGES/test_rubyparser.mo
|
|
754
|
+
- test/locale/ja/LC_MESSAGES/test_sgettext.mo
|
|
755
|
+
- test/locale/la/LC_MESSAGES
|
|
756
|
+
- test/locale/la/LC_MESSAGES/plural.mo
|
|
757
|
+
- test/locale/la/LC_MESSAGES/plural_error.mo
|
|
758
|
+
- test/locale/li/LC_MESSAGES
|
|
759
|
+
- test/locale/li/LC_MESSAGES/plural.mo
|
|
760
|
+
- test/locale/po/LC_MESSAGES
|
|
761
|
+
- test/locale/po/LC_MESSAGES/plural.mo
|
|
762
|
+
- test/locale/sl/LC_MESSAGES
|
|
763
|
+
- test/locale/sl/LC_MESSAGES/plural.mo
|
|
764
|
+
- test/po/cr
|
|
765
|
+
- test/po/da
|
|
766
|
+
- test/po/fr
|
|
767
|
+
- test/po/ir
|
|
768
|
+
- test/po/ja
|
|
769
|
+
- test/po/la
|
|
770
|
+
- test/po/li
|
|
771
|
+
- test/po/po
|
|
772
|
+
- test/po/sl
|
|
773
|
+
- test/po/cr/plural.po
|
|
774
|
+
- test/po/da/plural.po
|
|
775
|
+
- test/po/da/plural_error.po
|
|
776
|
+
- test/po/fr/plural.po
|
|
777
|
+
- test/po/fr/plural_error.po
|
|
778
|
+
- test/po/fr/test1.po
|
|
779
|
+
- test/po/fr/test2.po
|
|
780
|
+
- test/po/ir/plural.po
|
|
781
|
+
- test/po/ja/plural.po
|
|
782
|
+
- test/po/ja/plural_error.po
|
|
783
|
+
- test/po/ja/test1.po
|
|
784
|
+
- test/po/ja/test2.po
|
|
785
|
+
- test/po/ja/test_rubyparser.po
|
|
786
|
+
- test/po/ja/test_sgettext.po
|
|
787
|
+
- test/po/la/plural.po
|
|
788
|
+
- test/po/la/plural_error.po
|
|
789
|
+
- test/po/li/plural.po
|
|
790
|
+
- test/po/po/plural.po
|
|
791
|
+
- test/po/sl/plural.po
|
|
740
792
|
test_files: []
|
|
793
|
+
|
|
741
794
|
rdoc_options: []
|
|
795
|
+
|
|
742
796
|
extra_rdoc_files: []
|
|
797
|
+
|
|
743
798
|
executables:
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
799
|
+
- rgettext
|
|
800
|
+
- rmsgfmt
|
|
801
|
+
- rmsgmerge
|
|
747
802
|
extensions: []
|
|
803
|
+
|
|
748
804
|
requirements: []
|
|
749
|
-
|
|
805
|
+
|
|
806
|
+
dependencies: []
|
|
807
|
+
|