gettext 3.1.1 → 3.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6741821529c4c4cc55c93e1efda37d839e71d0ca
4
- data.tar.gz: 6aa173269374194da509a0cde6780ec93a5f5136
3
+ metadata.gz: 8f3f4a12673f081a860813f30da662079d0edd77
4
+ data.tar.gz: bcd3e0248f466c79282b287735f574387d6340cd
5
5
  SHA512:
6
- metadata.gz: 6cbcf73043b03806e72f00c8e443d799a0ad39737fc3803113a8a56f71fb86dab1420d72f3c77b30cd394bb67c7a6b9c8c1154f7e2b83c89107957bdd724868b
7
- data.tar.gz: fdd63569ac73c011c194b7ecd1818a689c945466193e11e2023621833fede5fb5ada42b78c4ba31c98241a596bfe5ffdc402fb4d4f4eea8af4d286a452058853
6
+ metadata.gz: 7bbb867c029053591a6d2172f93fafdefd12daad5d11e85a89b3e6960cb3bd43050dc4b4f0a0d38fa3bf40b47128f99d80cb2dfaa3604161774725752d82b3ee
7
+ data.tar.gz: 57e18f09cc88fda408eedd4a965490d103d8e0c61a5da72e17e0f39a1e02b6dbc1357df4b93a8347e6983f4747f378093b86de82a641e7bd70e605a1ffc1efe7
data/doc/text/news.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # News
2
2
 
3
+ ## <a id="3-1-2">3.1.2</a>: 2014-04-24
4
+
5
+ ### Improvements
6
+
7
+ * Travis CI: Enabled Rubyinus again.
8
+ [GitHub#30] [Patch by Masafumi Yokoyama]
9
+ * `GetText::Tools::Task`: Added `msginit_options` to customize `msginit`
10
+ command line.
11
+ * `rmsginit`: Supported `--translator` option.
12
+ * `GetText::Tools::Task`: Changed to not set translator information
13
+ by default. [GitHub#31] [Reported by David Silva]
14
+
15
+ ### Thanks
16
+
17
+ * Masafumi Yokoyama
18
+ * David Silva
19
+
3
20
  ## <a id="3-1-1">3.1.1</a>: 2014-02-23
4
21
 
5
22
  ### Improvements
@@ -112,9 +112,10 @@ module GetText
112
112
  @locale = loc
113
113
  end
114
114
 
115
- parser.on("--no-translator",
116
- _("Don't set translator information")) do
117
- @set_translator = false
115
+ parser.on("--[no-]translator",
116
+ _("Whether set translator information or not"),
117
+ _("(set)")) do |boolean|
118
+ @set_translator = boolean
118
119
  end
119
120
 
120
121
  parser.on("--translator-name=NAME",
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  #
3
- # Copyright (C) 2012-2013 Kouhei Sutou <kou@clear-code.com>
3
+ # Copyright (C) 2012-2014 Kouhei Sutou <kou@clear-code.com>
4
4
  #
5
5
  # License: Ruby's or LGPL
6
6
  #
@@ -121,6 +121,11 @@ module GetText
121
121
  # @see `rxgettext --help`
122
122
  attr_accessor :xgettext_options
123
123
 
124
+ # @return [Array<String>] Command line options for creating PO from POT.
125
+ # @see GetText::Tools::MsgInit
126
+ # @see `rmsginit --help`
127
+ attr_accessor :msginit_options
128
+
124
129
  # @return [Array<String>] Command line options for merging PO with the
125
130
  # latest POT.
126
131
  # @see GetText::Tools::MsgMerge
@@ -217,6 +222,7 @@ module GetText
217
222
  @domain = nil
218
223
  @namespace_prefix = nil
219
224
  @xgettext_options = []
225
+ @msginit_options = []
220
226
  @msgmerge_options = []
221
227
  @enable_description = true
222
228
  @enable_po = true
@@ -297,9 +303,14 @@ module GetText
297
303
  command_line.concat([_po_file, pot_file])
298
304
  GetText::Tools::MsgMerge.run(*command_line)
299
305
  else
300
- GetText::Tools::MsgInit.run("--input", pot_file,
301
- "--output", _po_file,
302
- "--locale", locale.to_s)
306
+ command_line = [
307
+ "--input", pot_file,
308
+ "--output", _po_file,
309
+ "--locale", locale.to_s,
310
+ "--no-translator",
311
+ ]
312
+ command_line.concat(@msginit_options)
313
+ GetText::Tools::MsgInit.run(*command_line)
303
314
  end
304
315
  end
305
316
  end
@@ -9,5 +9,5 @@
9
9
  =end
10
10
 
11
11
  module GetText
12
- VERSION = "3.1.1"
12
+ VERSION = "3.1.2"
13
13
  end
data/po/gettext.pot CHANGED
@@ -6,10 +6,10 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: gettext 3.1.1\n"
9
+ "Project-Id-Version: gettext 3.1.2\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2014-02-23 22:20+0900\n"
12
- "PO-Revision-Date: 2014-02-23 22:20+0900\n"
11
+ "POT-Creation-Date: 2014-04-24 23:59+0900\n"
12
+ "PO-Revision-Date: 2014-04-24 23:59+0900\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
15
  "Language: \n"
@@ -157,48 +157,52 @@ msgid ""
157
157
  msgstr ""
158
158
 
159
159
  #: ../lib/gettext/tools/msginit.rb:116
160
- msgid "Don't set translator information"
160
+ msgid "Whether set translator information or not"
161
161
  msgstr ""
162
162
 
163
- #: ../lib/gettext/tools/msginit.rb:121
163
+ #: ../lib/gettext/tools/msginit.rb:117
164
+ msgid "(set)"
165
+ msgstr ""
166
+
167
+ #: ../lib/gettext/tools/msginit.rb:122
164
168
  msgid "Use NAME as translator name"
165
169
  msgstr ""
166
170
 
167
- #: ../lib/gettext/tools/msginit.rb:126
171
+ #: ../lib/gettext/tools/msginit.rb:127
168
172
  msgid "Use EMAIL as translator email address"
169
173
  msgstr ""
170
174
 
171
- #: ../lib/gettext/tools/msginit.rb:130 ../lib/gettext/tools/msgmerge.rb:403
175
+ #: ../lib/gettext/tools/msginit.rb:131 ../lib/gettext/tools/msgmerge.rb:403
172
176
  msgid "Display this help and exit"
173
177
  msgstr ""
174
178
 
175
- #: ../lib/gettext/tools/msginit.rb:135
179
+ #: ../lib/gettext/tools/msginit.rb:136
176
180
  msgid "Display version and exit"
177
181
  msgstr ""
178
182
 
179
- #: ../lib/gettext/tools/msginit.rb:153
183
+ #: ../lib/gettext/tools/msginit.rb:154
180
184
  msgid ".pot file does not exist in the current directory."
181
185
  msgstr ""
182
186
 
183
- #: ../lib/gettext/tools/msginit.rb:158
187
+ #: ../lib/gettext/tools/msginit.rb:159
184
188
  msgid "file '%s' does not exist."
185
189
  msgstr ""
186
190
 
187
- #: ../lib/gettext/tools/msginit.rb:170
191
+ #: ../lib/gettext/tools/msginit.rb:171
188
192
  msgid ""
189
193
  "\"Locale '#{language_tag}' is invalid. \"Please check if your specified locale i"
190
194
  "s usable."
191
195
  msgstr ""
192
196
 
193
- #: ../lib/gettext/tools/msginit.rb:179
197
+ #: ../lib/gettext/tools/msginit.rb:180
194
198
  msgid "file '%s' has already existed."
195
199
  msgstr ""
196
200
 
197
- #: ../lib/gettext/tools/msginit.rb:221
201
+ #: ../lib/gettext/tools/msginit.rb:222
198
202
  msgid "Please enter your full name"
199
203
  msgstr ""
200
204
 
201
- #: ../lib/gettext/tools/msginit.rb:250
205
+ #: ../lib/gettext/tools/msginit.rb:251
202
206
  msgid "Please enter your email address"
203
207
  msgstr ""
204
208
 
@@ -343,12 +347,12 @@ msgid ""
343
347
  msgstr ""
344
348
 
345
349
  #: ../samples/hello2.rb:20
346
- msgid "World"
350
+ msgid ""
351
+ "Hello %{world}\n"
347
352
  msgstr ""
348
353
 
349
354
  #: ../samples/hello2.rb:20
350
- msgid ""
351
- "Hello %{world}\n"
355
+ msgid "World"
352
356
  msgstr ""
353
357
 
354
358
  #: ../samples/hello_glade2.glade:9 ../test/fixtures/gladeparser.glade:8
@@ -368,11 +372,11 @@ msgid "hello, gtk world"
368
372
  msgstr ""
369
373
 
370
374
  #: ../samples/hello_noop.rb:13
371
- msgid "Hello World"
375
+ msgid "Hello World2"
372
376
  msgstr ""
373
377
 
374
378
  #: ../samples/hello_noop.rb:13
375
- msgid "Hello World2"
379
+ msgid "Hello World"
376
380
  msgstr ""
377
381
 
378
382
  #: ../samples/hello_plural.rb:20
@@ -522,11 +526,11 @@ msgid ""
522
526
  msgstr ""
523
527
 
524
528
  #: ../test/fixtures/_/multiple_messages_in_same_line.rb:28
525
- msgid "in same line"
529
+ msgid "multiple"
526
530
  msgstr ""
527
531
 
528
532
  #: ../test/fixtures/_/multiple_messages_in_same_line.rb:28
529
- msgid "multiple"
533
+ msgid "in same line"
530
534
  msgstr ""
531
535
 
532
536
  #: ../test/fixtures/_/multiple_same_messages.rb:28
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gettext
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.1
4
+ version: 3.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-02-23 00:00:00.000000000 Z
12
+ date: 2014-04-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: locale
@@ -145,847 +145,847 @@ email:
145
145
  - kou@clear-code.com
146
146
  - mutomasa at gmail.com
147
147
  executables:
148
- - rmsgmerge
149
- - rmsgfmt
148
+ - rmsginit
150
149
  - rmsgcat
150
+ - rmsgfmt
151
+ - rmsgmerge
151
152
  - rxgettext
152
- - rmsginit
153
153
  extensions: []
154
154
  extra_rdoc_files: []
155
155
  files:
156
- - locale/ko/LC_MESSAGES/gettext.mo
157
156
  - locale/nb/LC_MESSAGES/gettext.mo
158
- - locale/ru/LC_MESSAGES/gettext.mo
157
+ - locale/bg/LC_MESSAGES/gettext.mo
158
+ - locale/zh_TW/LC_MESSAGES/gettext.mo
159
+ - locale/cs/LC_MESSAGES/gettext.mo
160
+ - locale/bs/LC_MESSAGES/gettext.mo
161
+ - locale/vi/LC_MESSAGES/gettext.mo
162
+ - locale/lv/LC_MESSAGES/gettext.mo
163
+ - locale/zh/LC_MESSAGES/gettext.mo
159
164
  - locale/hu/LC_MESSAGES/gettext.mo
160
- - locale/ca/LC_MESSAGES/gettext.mo
165
+ - locale/ja/LC_MESSAGES/gettext.mo
161
166
  - locale/fr/LC_MESSAGES/gettext.mo
162
167
  - locale/it/LC_MESSAGES/gettext.mo
163
168
  - locale/pt_BR/LC_MESSAGES/gettext.mo
169
+ - locale/ko/LC_MESSAGES/gettext.mo
170
+ - locale/sr/LC_MESSAGES/gettext.mo
171
+ - locale/eo/LC_MESSAGES/gettext.mo
172
+ - locale/de/LC_MESSAGES/gettext.mo
164
173
  - locale/es/LC_MESSAGES/gettext.mo
174
+ - locale/ca/LC_MESSAGES/gettext.mo
175
+ - locale/nl/LC_MESSAGES/gettext.mo
176
+ - locale/hr/LC_MESSAGES/gettext.mo
165
177
  - locale/uk/LC_MESSAGES/gettext.mo
166
- - locale/lv/LC_MESSAGES/gettext.mo
167
178
  - locale/el/LC_MESSAGES/gettext.mo
168
- - locale/hr/LC_MESSAGES/gettext.mo
169
- - locale/bg/LC_MESSAGES/gettext.mo
170
- - locale/bs/LC_MESSAGES/gettext.mo
171
- - locale/eo/LC_MESSAGES/gettext.mo
172
- - locale/zh_TW/LC_MESSAGES/gettext.mo
173
- - locale/vi/LC_MESSAGES/gettext.mo
174
- - locale/ja/LC_MESSAGES/gettext.mo
175
- - locale/et/LC_MESSAGES/gettext.mo
176
179
  - locale/sv/LC_MESSAGES/gettext.mo
177
- - locale/cs/LC_MESSAGES/gettext.mo
178
- - locale/sr/LC_MESSAGES/gettext.mo
179
- - locale/nl/LC_MESSAGES/gettext.mo
180
- - locale/zh/LC_MESSAGES/gettext.mo
181
- - locale/de/LC_MESSAGES/gettext.mo
182
- - bin/rmsgmerge
183
- - bin/rmsgfmt
180
+ - locale/et/LC_MESSAGES/gettext.mo
181
+ - locale/ru/LC_MESSAGES/gettext.mo
182
+ - bin/rmsginit
184
183
  - bin/rmsgcat
184
+ - bin/rmsgfmt
185
+ - bin/rmsgmerge
185
186
  - bin/rxgettext
186
- - bin/rmsginit
187
+ - doc/text/ruby-license.txt
187
188
  - doc/text/news.md
188
189
  - doc/text/lgpl-3.0.txt
189
- - doc/text/ruby-license.txt
190
190
  - doc/text/gpl-2.0.txt
191
- - lib/gettext.rb
192
- - lib/gettext/text_domain_manager.rb
193
- - lib/gettext/version.rb
194
- - lib/gettext/cgi.rb
195
- - lib/gettext/text_domain.rb
191
+ - lib/gettext/po_entry.rb
192
+ - lib/gettext/mo.rb
193
+ - lib/gettext/tools.rb
194
+ - lib/gettext/locale_path.rb
196
195
  - lib/gettext/po_parser.rb
197
- - lib/gettext/tools/msgfmt.rb
196
+ - lib/gettext/text_domain.rb
197
+ - lib/gettext/text_domain_group.rb
198
+ - lib/gettext/po.rb
199
+ - lib/gettext/po_format.rb
200
+ - lib/gettext/cgi.rb
201
+ - lib/gettext/text_domain_manager.rb
202
+ - lib/gettext/class_info.rb
203
+ - lib/gettext/tools/xgettext.rb
198
204
  - lib/gettext/tools/msgcat.rb
199
- - lib/gettext/tools/msgmerge.rb
200
205
  - lib/gettext/tools/msginit.rb
201
- - lib/gettext/tools/xgettext.rb
206
+ - lib/gettext/tools/msgmerge.rb
207
+ - lib/gettext/tools/msgfmt.rb
202
208
  - lib/gettext/tools/task.rb
203
209
  - lib/gettext/tools/parser/glade.rb
204
210
  - lib/gettext/tools/parser/erb.rb
205
211
  - lib/gettext/tools/parser/ruby.rb
206
- - lib/gettext/text_domain_group.rb
207
- - lib/gettext/locale_path.rb
208
- - lib/gettext/po_format.rb
209
- - lib/gettext/po_entry.rb
210
- - lib/gettext/class_info.rb
211
- - lib/gettext/mo.rb
212
- - lib/gettext/tools.rb
213
- - lib/gettext/po.rb
214
- - po/ko/gettext.po
212
+ - lib/gettext/version.rb
213
+ - lib/gettext.rb
215
214
  - po/nb/gettext.po
216
- - po/ru/gettext.po
215
+ - po/bg/gettext.po
216
+ - po/zh_TW/gettext.po
217
+ - po/cs/gettext.po
218
+ - po/bs/gettext.po
219
+ - po/vi/gettext.po
220
+ - po/lv/gettext.po
221
+ - po/zh/gettext.po
217
222
  - po/hu/gettext.po
218
- - po/ca/gettext.po
223
+ - po/ja/gettext.po
219
224
  - po/fr/gettext.po
220
225
  - po/it/gettext.po
221
226
  - po/pt_BR/gettext.po
227
+ - po/ko/gettext.po
228
+ - po/sr/gettext.po
229
+ - po/eo/gettext.po
230
+ - po/de/gettext.po
222
231
  - po/es/gettext.po
232
+ - po/ca/gettext.po
233
+ - po/gettext.pot
234
+ - po/nl/gettext.po
235
+ - po/hr/gettext.po
223
236
  - po/uk/gettext.po
224
- - po/lv/gettext.po
225
237
  - po/el/gettext.po
226
- - po/hr/gettext.po
227
- - po/bg/gettext.po
228
- - po/bs/gettext.po
229
- - po/gettext.pot
230
- - po/eo/gettext.po
231
- - po/zh_TW/gettext.po
232
- - po/vi/gettext.po
233
- - po/ja/gettext.po
234
- - po/et/gettext.po
235
238
  - po/sv/gettext.po
236
- - po/cs/gettext.po
237
- - po/sr/gettext.po
238
- - po/nl/gettext.po
239
- - po/zh/gettext.po
240
- - po/de/gettext.po
241
- - samples/po/ko/hello2.po
242
- - samples/po/ko/hello_tk.po
243
- - samples/po/ko/hello.po
244
- - samples/po/ko/hello_gtk2.po
245
- - samples/po/ko/hello_gtk_builder.po
246
- - samples/po/ko/hello_noop.po
247
- - samples/po/ko/hello_glade2.po
248
- - samples/po/ko/hello_plural.po
249
- - samples/po/nb/hello2.po
250
- - samples/po/nb/hello_tk.po
251
- - samples/po/nb/hello.po
252
- - samples/po/nb/hello_gtk2.po
253
- - samples/po/nb/hello_gtk_builder.po
254
- - samples/po/nb/hello_noop.po
255
- - samples/po/nb/hello_glade2.po
256
- - samples/po/nb/hello_plural.po
257
- - samples/po/hello2.pot
258
- - samples/po/ru/hello2.po
259
- - samples/po/ru/hello_tk.po
260
- - samples/po/ru/hello.po
261
- - samples/po/ru/hello_gtk2.po
262
- - samples/po/ru/hello_gtk_builder.po
263
- - samples/po/ru/hello_noop.po
264
- - samples/po/ru/hello_glade2.po
265
- - samples/po/ru/hello_plural.po
266
- - samples/po/hu/hello2.po
267
- - samples/po/hu/hello_tk.po
268
- - samples/po/hu/hello.po
269
- - samples/po/hu/hello_gtk2.po
270
- - samples/po/hu/hello_gtk_builder.po
271
- - samples/po/hu/hello_noop.po
272
- - samples/po/hu/hello_glade2.po
273
- - samples/po/hu/hello_plural.po
274
- - samples/po/ca/hello2.po
275
- - samples/po/ca/hello_tk.po
276
- - samples/po/ca/hello.po
277
- - samples/po/ca/hello_gtk2.po
278
- - samples/po/ca/hello_gtk_builder.po
279
- - samples/po/ca/hello_noop.po
280
- - samples/po/ca/hello_glade2.po
281
- - samples/po/ca/hello_plural.po
282
- - samples/po/hello_gtk2.pot
283
- - samples/po/hello_noop.pot
284
- - samples/po/fr/hello2.po
285
- - samples/po/fr/hello_tk.po
286
- - samples/po/fr/hello.po
287
- - samples/po/fr/hello_gtk2.po
288
- - samples/po/fr/hello_gtk_builder.po
289
- - samples/po/fr/hello_noop.po
290
- - samples/po/fr/hello_glade2.po
291
- - samples/po/fr/hello_plural.po
292
- - samples/po/it/hello2.po
293
- - samples/po/it/hello_tk.po
294
- - samples/po/it/hello.po
295
- - samples/po/it/hello_gtk2.po
296
- - samples/po/it/hello_gtk_builder.po
297
- - samples/po/it/hello_noop.po
298
- - samples/po/it/hello_glade2.po
299
- - samples/po/it/hello_plural.po
300
- - samples/po/pt_BR/hello2.po
301
- - samples/po/pt_BR/hello_tk.po
302
- - samples/po/pt_BR/hello.po
303
- - samples/po/pt_BR/hello_gtk2.po
304
- - samples/po/pt_BR/hello_gtk_builder.po
305
- - samples/po/pt_BR/hello_noop.po
306
- - samples/po/pt_BR/hello_glade2.po
307
- - samples/po/pt_BR/hello_plural.po
308
- - samples/po/es/hello2.po
309
- - samples/po/es/hello_tk.po
310
- - samples/po/es/hello.po
311
- - samples/po/es/hello_gtk2.po
312
- - samples/po/es/hello_gtk_builder.po
313
- - samples/po/es/hello_noop.po
314
- - samples/po/es/hello_glade2.po
315
- - samples/po/es/hello_plural.po
316
- - samples/po/uk/hello2.po
317
- - samples/po/uk/hello_tk.po
318
- - samples/po/uk/hello.po
319
- - samples/po/uk/hello_gtk2.po
320
- - samples/po/uk/hello_gtk_builder.po
321
- - samples/po/uk/hello_noop.po
322
- - samples/po/uk/hello_glade2.po
323
- - samples/po/uk/hello_plural.po
324
- - samples/po/lv/hello2.po
325
- - samples/po/lv/hello_tk.po
326
- - samples/po/lv/hello.po
327
- - samples/po/lv/hello_gtk2.po
328
- - samples/po/lv/hello_gtk_builder.po
329
- - samples/po/lv/hello_noop.po
330
- - samples/po/lv/hello_glade2.po
331
- - samples/po/lv/hello_plural.po
332
- - samples/po/hello_plural.pot
333
- - samples/po/el/hello2.po
334
- - samples/po/el/hello_tk.po
335
- - samples/po/el/hello.po
336
- - samples/po/el/hello_gtk2.po
337
- - samples/po/el/hello_gtk_builder.po
338
- - samples/po/el/hello_noop.po
339
- - samples/po/el/hello_glade2.po
340
- - samples/po/el/hello_plural.po
341
- - samples/po/hello_gtk_builder.pot
342
- - samples/po/hr/hello2.po
343
- - samples/po/hr/hello_tk.po
344
- - samples/po/hr/hello.po
345
- - samples/po/hr/hello_gtk2.po
346
- - samples/po/hr/hello_gtk_builder.po
347
- - samples/po/hr/hello_noop.po
348
- - samples/po/hr/hello_glade2.po
349
- - samples/po/hr/hello_plural.po
350
- - samples/po/bg/hello2.po
351
- - samples/po/bg/hello_tk.po
352
- - samples/po/bg/hello.po
353
- - samples/po/bg/hello_gtk2.po
354
- - samples/po/bg/hello_gtk_builder.po
355
- - samples/po/bg/hello_noop.po
356
- - samples/po/bg/hello_glade2.po
357
- - samples/po/bg/hello_plural.po
358
- - samples/po/bs/hello2.po
359
- - samples/po/bs/hello_tk.po
360
- - samples/po/bs/hello.po
361
- - samples/po/bs/hello_gtk2.po
362
- - samples/po/bs/hello_gtk_builder.po
363
- - samples/po/bs/hello_noop.po
364
- - samples/po/bs/hello_glade2.po
365
- - samples/po/bs/hello_plural.po
366
- - samples/po/eo/hello2.po
367
- - samples/po/eo/hello_tk.po
368
- - samples/po/eo/hello.po
369
- - samples/po/eo/hello_gtk2.po
370
- - samples/po/eo/hello_gtk_builder.po
371
- - samples/po/eo/hello_noop.po
372
- - samples/po/eo/hello_glade2.po
373
- - samples/po/eo/hello_plural.po
374
- - samples/po/hello_tk.pot
375
- - samples/po/zh_TW/hello2.po
376
- - samples/po/zh_TW/hello_tk.po
377
- - samples/po/zh_TW/hello.po
378
- - samples/po/zh_TW/hello_gtk2.po
379
- - samples/po/zh_TW/hello_gtk_builder.po
380
- - samples/po/zh_TW/hello_noop.po
381
- - samples/po/zh_TW/hello_glade2.po
382
- - samples/po/zh_TW/hello_plural.po
383
- - samples/po/vi/hello2.po
384
- - samples/po/vi/hello_tk.po
385
- - samples/po/vi/hello.po
386
- - samples/po/vi/hello_gtk2.po
387
- - samples/po/vi/hello_gtk_builder.po
388
- - samples/po/vi/hello_noop.po
389
- - samples/po/vi/hello_glade2.po
390
- - samples/po/vi/hello_plural.po
391
- - samples/po/ja/hello2.po
392
- - samples/po/ja/hello_tk.po
393
- - samples/po/ja/hello.po
394
- - samples/po/ja/hello_gtk2.po
395
- - samples/po/ja/hello_gtk_builder.po
396
- - samples/po/ja/hello_noop.po
397
- - samples/po/ja/hello_glade2.po
398
- - samples/po/ja/hello_plural.po
399
- - samples/po/hello_glade2.pot
400
- - samples/po/hello.pot
401
- - samples/po/sv/hello2.po
402
- - samples/po/sv/hello_tk.po
403
- - samples/po/sv/hello.po
404
- - samples/po/sv/hello_gtk2.po
405
- - samples/po/sv/hello_gtk_builder.po
406
- - samples/po/sv/hello_noop.po
407
- - samples/po/sv/hello_glade2.po
408
- - samples/po/sv/hello_plural.po
409
- - samples/po/cs/hello2.po
410
- - samples/po/cs/hello_tk.po
411
- - samples/po/cs/hello.po
412
- - samples/po/cs/hello_gtk2.po
413
- - samples/po/cs/hello_gtk_builder.po
414
- - samples/po/cs/hello_noop.po
415
- - samples/po/cs/hello_glade2.po
416
- - samples/po/cs/hello_plural.po
417
- - samples/po/sr/hello2.po
418
- - samples/po/sr/hello_tk.po
419
- - samples/po/sr/hello.po
420
- - samples/po/sr/hello_gtk2.po
421
- - samples/po/sr/hello_gtk_builder.po
422
- - samples/po/sr/hello_noop.po
423
- - samples/po/sr/hello_glade2.po
424
- - samples/po/sr/hello_plural.po
425
- - samples/po/nl/hello2.po
426
- - samples/po/nl/hello_tk.po
427
- - samples/po/nl/hello.po
428
- - samples/po/nl/hello_gtk2.po
429
- - samples/po/nl/hello_gtk_builder.po
430
- - samples/po/nl/hello_noop.po
431
- - samples/po/nl/hello_glade2.po
432
- - samples/po/nl/hello_plural.po
433
- - samples/po/zh/hello2.po
434
- - samples/po/zh/hello_tk.po
435
- - samples/po/zh/hello.po
436
- - samples/po/zh/hello_gtk2.po
437
- - samples/po/zh/hello_gtk_builder.po
438
- - samples/po/zh/hello_noop.po
439
- - samples/po/zh/hello_glade2.po
440
- - samples/po/zh/hello_plural.po
441
- - samples/po/de/hello2.po
442
- - samples/po/de/hello_tk.po
443
- - samples/po/de/hello.po
444
- - samples/po/de/hello_gtk2.po
445
- - samples/po/de/hello_gtk_builder.po
446
- - samples/po/de/hello_noop.po
447
- - samples/po/de/hello_glade2.po
448
- - samples/po/de/hello_plural.po
449
- - samples/hello_glade2.rb
450
- - samples/README
451
- - samples/hello_gtk_builder.rb
452
- - samples/hello_gtk2.rb
453
- - samples/hello_tk.rb
454
- - samples/cgi/po/ko/helloerb2.po
455
- - samples/cgi/po/ko/hellolib.po
456
- - samples/cgi/po/ko/main.po
457
- - samples/cgi/po/ko/helloerb1.po
458
- - samples/cgi/po/nb/helloerb2.po
459
- - samples/cgi/po/nb/hellolib.po
239
+ - po/et/gettext.po
240
+ - po/ru/gettext.po
241
+ - samples/hello_noop.rb
242
+ - samples/cgi/helloerb.rhtml
243
+ - samples/cgi/index.cgi
244
+ - samples/cgi/helloerb2.cgi
245
+ - samples/cgi/other.rhtml
246
+ - samples/cgi/gettext.css
247
+ - samples/cgi/http.rb
460
248
  - samples/cgi/po/nb/main.po
249
+ - samples/cgi/po/nb/hellolib.po
250
+ - samples/cgi/po/nb/helloerb2.po
461
251
  - samples/cgi/po/nb/helloerb1.po
462
- - samples/cgi/po/ru/helloerb2.po
463
- - samples/cgi/po/ru/hellolib.po
464
- - samples/cgi/po/ru/main.po
465
- - samples/cgi/po/ru/helloerb1.po
466
- - samples/cgi/po/hu/helloerb2.po
467
- - samples/cgi/po/hu/hellolib.po
252
+ - samples/cgi/po/bg/main.po
253
+ - samples/cgi/po/bg/hellolib.po
254
+ - samples/cgi/po/bg/helloerb2.po
255
+ - samples/cgi/po/bg/helloerb1.po
256
+ - samples/cgi/po/helloerb2.pot
257
+ - samples/cgi/po/zh_TW/main.po
258
+ - samples/cgi/po/zh_TW/hellolib.po
259
+ - samples/cgi/po/zh_TW/helloerb2.po
260
+ - samples/cgi/po/zh_TW/helloerb1.po
261
+ - samples/cgi/po/cs/main.po
262
+ - samples/cgi/po/cs/hellolib.po
263
+ - samples/cgi/po/cs/helloerb2.po
264
+ - samples/cgi/po/cs/helloerb1.po
265
+ - samples/cgi/po/bs/main.po
266
+ - samples/cgi/po/bs/hellolib.po
267
+ - samples/cgi/po/bs/helloerb2.po
268
+ - samples/cgi/po/bs/helloerb1.po
269
+ - samples/cgi/po/hellolib.pot
270
+ - samples/cgi/po/vi/main.po
271
+ - samples/cgi/po/vi/hellolib.po
272
+ - samples/cgi/po/vi/helloerb2.po
273
+ - samples/cgi/po/vi/helloerb1.po
274
+ - samples/cgi/po/lv/main.po
275
+ - samples/cgi/po/lv/hellolib.po
276
+ - samples/cgi/po/lv/helloerb2.po
277
+ - samples/cgi/po/lv/helloerb1.po
278
+ - samples/cgi/po/zh/main.po
279
+ - samples/cgi/po/zh/hellolib.po
280
+ - samples/cgi/po/zh/helloerb2.po
281
+ - samples/cgi/po/zh/helloerb1.po
468
282
  - samples/cgi/po/hu/main.po
283
+ - samples/cgi/po/hu/hellolib.po
284
+ - samples/cgi/po/hu/helloerb2.po
469
285
  - samples/cgi/po/hu/helloerb1.po
470
- - samples/cgi/po/ca/helloerb2.po
471
- - samples/cgi/po/ca/hellolib.po
472
- - samples/cgi/po/ca/main.po
473
- - samples/cgi/po/ca/helloerb1.po
474
- - samples/cgi/po/hellolib.pot
475
- - samples/cgi/po/fr/helloerb2.po
476
- - samples/cgi/po/fr/hellolib.po
286
+ - samples/cgi/po/ja/main.po
287
+ - samples/cgi/po/ja/hellolib.po
288
+ - samples/cgi/po/ja/helloerb2.po
289
+ - samples/cgi/po/ja/helloerb1.po
477
290
  - samples/cgi/po/fr/main.po
291
+ - samples/cgi/po/fr/hellolib.po
292
+ - samples/cgi/po/fr/helloerb2.po
478
293
  - samples/cgi/po/fr/helloerb1.po
479
- - samples/cgi/po/it/helloerb2.po
480
- - samples/cgi/po/it/hellolib.po
481
294
  - samples/cgi/po/it/main.po
295
+ - samples/cgi/po/it/hellolib.po
296
+ - samples/cgi/po/it/helloerb2.po
482
297
  - samples/cgi/po/it/helloerb1.po
483
- - samples/cgi/po/helloerb1.pot
484
- - samples/cgi/po/pt_BR/helloerb2.po
485
- - samples/cgi/po/pt_BR/hellolib.po
486
298
  - samples/cgi/po/pt_BR/main.po
299
+ - samples/cgi/po/pt_BR/hellolib.po
300
+ - samples/cgi/po/pt_BR/helloerb2.po
487
301
  - samples/cgi/po/pt_BR/helloerb1.po
488
- - samples/cgi/po/es/helloerb2.po
489
- - samples/cgi/po/es/hellolib.po
302
+ - samples/cgi/po/ko/main.po
303
+ - samples/cgi/po/ko/hellolib.po
304
+ - samples/cgi/po/ko/helloerb2.po
305
+ - samples/cgi/po/ko/helloerb1.po
306
+ - samples/cgi/po/sr/main.po
307
+ - samples/cgi/po/sr/hellolib.po
308
+ - samples/cgi/po/sr/helloerb2.po
309
+ - samples/cgi/po/sr/helloerb1.po
310
+ - samples/cgi/po/helloerb1.pot
311
+ - samples/cgi/po/eo/main.po
312
+ - samples/cgi/po/eo/hellolib.po
313
+ - samples/cgi/po/eo/helloerb2.po
314
+ - samples/cgi/po/eo/helloerb1.po
315
+ - samples/cgi/po/de/main.po
316
+ - samples/cgi/po/de/hellolib.po
317
+ - samples/cgi/po/de/helloerb2.po
318
+ - samples/cgi/po/de/helloerb1.po
490
319
  - samples/cgi/po/es/main.po
320
+ - samples/cgi/po/es/hellolib.po
321
+ - samples/cgi/po/es/helloerb2.po
491
322
  - samples/cgi/po/es/helloerb1.po
492
- - samples/cgi/po/uk/helloerb2.po
493
- - samples/cgi/po/uk/hellolib.po
323
+ - samples/cgi/po/ca/main.po
324
+ - samples/cgi/po/ca/hellolib.po
325
+ - samples/cgi/po/ca/helloerb2.po
326
+ - samples/cgi/po/ca/helloerb1.po
327
+ - samples/cgi/po/nl/main.po
328
+ - samples/cgi/po/nl/hellolib.po
329
+ - samples/cgi/po/nl/helloerb2.po
330
+ - samples/cgi/po/nl/helloerb1.po
331
+ - samples/cgi/po/hr/main.po
332
+ - samples/cgi/po/hr/hellolib.po
333
+ - samples/cgi/po/hr/helloerb2.po
334
+ - samples/cgi/po/hr/helloerb1.po
494
335
  - samples/cgi/po/uk/main.po
336
+ - samples/cgi/po/uk/hellolib.po
337
+ - samples/cgi/po/uk/helloerb2.po
495
338
  - samples/cgi/po/uk/helloerb1.po
496
- - samples/cgi/po/lv/helloerb2.po
497
- - samples/cgi/po/lv/hellolib.po
498
- - samples/cgi/po/lv/main.po
499
- - samples/cgi/po/lv/helloerb1.po
500
- - samples/cgi/po/el/helloerb2.po
501
- - samples/cgi/po/el/hellolib.po
502
339
  - samples/cgi/po/el/main.po
340
+ - samples/cgi/po/el/hellolib.po
341
+ - samples/cgi/po/el/helloerb2.po
503
342
  - samples/cgi/po/el/helloerb1.po
504
- - samples/cgi/po/hr/helloerb2.po
505
- - samples/cgi/po/hr/hellolib.po
506
- - samples/cgi/po/hr/main.po
507
- - samples/cgi/po/hr/helloerb1.po
508
- - samples/cgi/po/bg/helloerb2.po
509
- - samples/cgi/po/bg/hellolib.po
510
- - samples/cgi/po/bg/main.po
511
- - samples/cgi/po/bg/helloerb1.po
512
- - samples/cgi/po/bs/helloerb2.po
513
- - samples/cgi/po/bs/hellolib.po
514
- - samples/cgi/po/bs/main.po
515
- - samples/cgi/po/bs/helloerb1.po
516
- - samples/cgi/po/eo/helloerb2.po
517
- - samples/cgi/po/eo/hellolib.po
518
- - samples/cgi/po/eo/main.po
519
- - samples/cgi/po/eo/helloerb1.po
520
- - samples/cgi/po/helloerb2.pot
521
343
  - samples/cgi/po/main.pot
522
- - samples/cgi/po/zh_TW/helloerb2.po
523
- - samples/cgi/po/zh_TW/hellolib.po
524
- - samples/cgi/po/zh_TW/main.po
525
- - samples/cgi/po/zh_TW/helloerb1.po
526
- - samples/cgi/po/vi/helloerb2.po
527
- - samples/cgi/po/vi/hellolib.po
528
- - samples/cgi/po/vi/main.po
529
- - samples/cgi/po/vi/helloerb1.po
530
- - samples/cgi/po/ja/helloerb2.po
531
- - samples/cgi/po/ja/hellolib.po
532
- - samples/cgi/po/ja/main.po
533
- - samples/cgi/po/ja/helloerb1.po
534
- - samples/cgi/po/cs/helloerb2.po
535
- - samples/cgi/po/cs/hellolib.po
536
- - samples/cgi/po/cs/main.po
537
- - samples/cgi/po/cs/helloerb1.po
538
- - samples/cgi/po/sr/helloerb2.po
539
- - samples/cgi/po/sr/hellolib.po
540
- - samples/cgi/po/sr/main.po
541
- - samples/cgi/po/sr/helloerb1.po
542
- - samples/cgi/po/nl/helloerb2.po
543
- - samples/cgi/po/nl/hellolib.po
544
- - samples/cgi/po/nl/main.po
545
- - samples/cgi/po/nl/helloerb1.po
546
- - samples/cgi/po/zh/helloerb2.po
547
- - samples/cgi/po/zh/hellolib.po
548
- - samples/cgi/po/zh/main.po
549
- - samples/cgi/po/zh/helloerb1.po
550
- - samples/cgi/po/de/helloerb2.po
551
- - samples/cgi/po/de/hellolib.po
552
- - samples/cgi/po/de/main.po
553
- - samples/cgi/po/de/helloerb1.po
554
- - samples/cgi/hellolib.rb
344
+ - samples/cgi/po/ru/main.po
345
+ - samples/cgi/po/ru/hellolib.po
346
+ - samples/cgi/po/ru/helloerb2.po
347
+ - samples/cgi/po/ru/helloerb1.po
555
348
  - samples/cgi/README
556
- - samples/cgi/index.cgi
557
349
  - samples/cgi/helloerb1.cgi
558
- - samples/cgi/locale/ko/LC_MESSAGES/hellolib.mo
559
- - samples/cgi/locale/ko/LC_MESSAGES/helloerb1.mo
560
- - samples/cgi/locale/ko/LC_MESSAGES/main.mo
561
- - samples/cgi/locale/ko/LC_MESSAGES/helloerb2.mo
562
- - samples/cgi/locale/nb/LC_MESSAGES/hellolib.mo
350
+ - samples/cgi/hellolib.rb
351
+ - samples/cgi/cookie.cgi
352
+ - samples/cgi/locale/nb/LC_MESSAGES/helloerb2.mo
563
353
  - samples/cgi/locale/nb/LC_MESSAGES/helloerb1.mo
564
354
  - samples/cgi/locale/nb/LC_MESSAGES/main.mo
565
- - samples/cgi/locale/nb/LC_MESSAGES/helloerb2.mo
566
- - samples/cgi/locale/ru/LC_MESSAGES/hellolib.mo
567
- - samples/cgi/locale/ru/LC_MESSAGES/helloerb1.mo
568
- - samples/cgi/locale/ru/LC_MESSAGES/main.mo
569
- - samples/cgi/locale/ru/LC_MESSAGES/helloerb2.mo
570
- - samples/cgi/locale/hu/LC_MESSAGES/hellolib.mo
355
+ - samples/cgi/locale/nb/LC_MESSAGES/hellolib.mo
356
+ - samples/cgi/locale/bg/LC_MESSAGES/helloerb2.mo
357
+ - samples/cgi/locale/bg/LC_MESSAGES/helloerb1.mo
358
+ - samples/cgi/locale/bg/LC_MESSAGES/main.mo
359
+ - samples/cgi/locale/bg/LC_MESSAGES/hellolib.mo
360
+ - samples/cgi/locale/zh_TW/LC_MESSAGES/helloerb2.mo
361
+ - samples/cgi/locale/zh_TW/LC_MESSAGES/helloerb1.mo
362
+ - samples/cgi/locale/zh_TW/LC_MESSAGES/main.mo
363
+ - samples/cgi/locale/zh_TW/LC_MESSAGES/hellolib.mo
364
+ - samples/cgi/locale/cs/LC_MESSAGES/helloerb2.mo
365
+ - samples/cgi/locale/cs/LC_MESSAGES/helloerb1.mo
366
+ - samples/cgi/locale/cs/LC_MESSAGES/main.mo
367
+ - samples/cgi/locale/cs/LC_MESSAGES/hellolib.mo
368
+ - samples/cgi/locale/bs/LC_MESSAGES/helloerb2.mo
369
+ - samples/cgi/locale/bs/LC_MESSAGES/helloerb1.mo
370
+ - samples/cgi/locale/bs/LC_MESSAGES/main.mo
371
+ - samples/cgi/locale/bs/LC_MESSAGES/hellolib.mo
372
+ - samples/cgi/locale/vi/LC_MESSAGES/helloerb2.mo
373
+ - samples/cgi/locale/vi/LC_MESSAGES/helloerb1.mo
374
+ - samples/cgi/locale/vi/LC_MESSAGES/main.mo
375
+ - samples/cgi/locale/vi/LC_MESSAGES/hellolib.mo
376
+ - samples/cgi/locale/lv/LC_MESSAGES/helloerb2.mo
377
+ - samples/cgi/locale/lv/LC_MESSAGES/helloerb1.mo
378
+ - samples/cgi/locale/lv/LC_MESSAGES/main.mo
379
+ - samples/cgi/locale/lv/LC_MESSAGES/hellolib.mo
380
+ - samples/cgi/locale/zh/LC_MESSAGES/helloerb2.mo
381
+ - samples/cgi/locale/zh/LC_MESSAGES/helloerb1.mo
382
+ - samples/cgi/locale/zh/LC_MESSAGES/main.mo
383
+ - samples/cgi/locale/zh/LC_MESSAGES/hellolib.mo
384
+ - samples/cgi/locale/hu/LC_MESSAGES/helloerb2.mo
571
385
  - samples/cgi/locale/hu/LC_MESSAGES/helloerb1.mo
572
386
  - samples/cgi/locale/hu/LC_MESSAGES/main.mo
573
- - samples/cgi/locale/hu/LC_MESSAGES/helloerb2.mo
574
- - samples/cgi/locale/ca/LC_MESSAGES/hellolib.mo
575
- - samples/cgi/locale/ca/LC_MESSAGES/helloerb1.mo
576
- - samples/cgi/locale/ca/LC_MESSAGES/main.mo
577
- - samples/cgi/locale/ca/LC_MESSAGES/helloerb2.mo
578
- - samples/cgi/locale/fr/LC_MESSAGES/hellolib.mo
387
+ - samples/cgi/locale/hu/LC_MESSAGES/hellolib.mo
388
+ - samples/cgi/locale/ja/LC_MESSAGES/helloerb2.mo
389
+ - samples/cgi/locale/ja/LC_MESSAGES/helloerb1.mo
390
+ - samples/cgi/locale/ja/LC_MESSAGES/main.mo
391
+ - samples/cgi/locale/ja/LC_MESSAGES/hellolib.mo
392
+ - samples/cgi/locale/fr/LC_MESSAGES/helloerb2.mo
579
393
  - samples/cgi/locale/fr/LC_MESSAGES/helloerb1.mo
580
394
  - samples/cgi/locale/fr/LC_MESSAGES/main.mo
581
- - samples/cgi/locale/fr/LC_MESSAGES/helloerb2.mo
582
- - samples/cgi/locale/it/LC_MESSAGES/hellolib.mo
395
+ - samples/cgi/locale/fr/LC_MESSAGES/hellolib.mo
396
+ - samples/cgi/locale/it/LC_MESSAGES/helloerb2.mo
583
397
  - samples/cgi/locale/it/LC_MESSAGES/helloerb1.mo
584
398
  - samples/cgi/locale/it/LC_MESSAGES/main.mo
585
- - samples/cgi/locale/it/LC_MESSAGES/helloerb2.mo
586
- - samples/cgi/locale/pt_BR/LC_MESSAGES/hellolib.mo
399
+ - samples/cgi/locale/it/LC_MESSAGES/hellolib.mo
400
+ - samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb2.mo
587
401
  - samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb1.mo
588
402
  - samples/cgi/locale/pt_BR/LC_MESSAGES/main.mo
589
- - samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb2.mo
590
- - samples/cgi/locale/es/LC_MESSAGES/hellolib.mo
403
+ - samples/cgi/locale/pt_BR/LC_MESSAGES/hellolib.mo
404
+ - samples/cgi/locale/ko/LC_MESSAGES/helloerb2.mo
405
+ - samples/cgi/locale/ko/LC_MESSAGES/helloerb1.mo
406
+ - samples/cgi/locale/ko/LC_MESSAGES/main.mo
407
+ - samples/cgi/locale/ko/LC_MESSAGES/hellolib.mo
408
+ - samples/cgi/locale/sr/LC_MESSAGES/helloerb2.mo
409
+ - samples/cgi/locale/sr/LC_MESSAGES/helloerb1.mo
410
+ - samples/cgi/locale/sr/LC_MESSAGES/main.mo
411
+ - samples/cgi/locale/sr/LC_MESSAGES/hellolib.mo
412
+ - samples/cgi/locale/eo/LC_MESSAGES/helloerb2.mo
413
+ - samples/cgi/locale/eo/LC_MESSAGES/helloerb1.mo
414
+ - samples/cgi/locale/eo/LC_MESSAGES/main.mo
415
+ - samples/cgi/locale/eo/LC_MESSAGES/hellolib.mo
416
+ - samples/cgi/locale/de/LC_MESSAGES/helloerb2.mo
417
+ - samples/cgi/locale/de/LC_MESSAGES/helloerb1.mo
418
+ - samples/cgi/locale/de/LC_MESSAGES/main.mo
419
+ - samples/cgi/locale/de/LC_MESSAGES/hellolib.mo
420
+ - samples/cgi/locale/es/LC_MESSAGES/helloerb2.mo
591
421
  - samples/cgi/locale/es/LC_MESSAGES/helloerb1.mo
592
422
  - samples/cgi/locale/es/LC_MESSAGES/main.mo
593
- - samples/cgi/locale/es/LC_MESSAGES/helloerb2.mo
594
- - samples/cgi/locale/uk/LC_MESSAGES/hellolib.mo
423
+ - samples/cgi/locale/es/LC_MESSAGES/hellolib.mo
424
+ - samples/cgi/locale/ca/LC_MESSAGES/helloerb2.mo
425
+ - samples/cgi/locale/ca/LC_MESSAGES/helloerb1.mo
426
+ - samples/cgi/locale/ca/LC_MESSAGES/main.mo
427
+ - samples/cgi/locale/ca/LC_MESSAGES/hellolib.mo
428
+ - samples/cgi/locale/nl/LC_MESSAGES/helloerb2.mo
429
+ - samples/cgi/locale/nl/LC_MESSAGES/helloerb1.mo
430
+ - samples/cgi/locale/nl/LC_MESSAGES/main.mo
431
+ - samples/cgi/locale/nl/LC_MESSAGES/hellolib.mo
432
+ - samples/cgi/locale/hr/LC_MESSAGES/helloerb2.mo
433
+ - samples/cgi/locale/hr/LC_MESSAGES/helloerb1.mo
434
+ - samples/cgi/locale/hr/LC_MESSAGES/main.mo
435
+ - samples/cgi/locale/hr/LC_MESSAGES/hellolib.mo
436
+ - samples/cgi/locale/uk/LC_MESSAGES/helloerb2.mo
595
437
  - samples/cgi/locale/uk/LC_MESSAGES/helloerb1.mo
596
438
  - samples/cgi/locale/uk/LC_MESSAGES/main.mo
597
- - samples/cgi/locale/uk/LC_MESSAGES/helloerb2.mo
598
- - samples/cgi/locale/lv/LC_MESSAGES/hellolib.mo
599
- - samples/cgi/locale/lv/LC_MESSAGES/helloerb1.mo
600
- - samples/cgi/locale/lv/LC_MESSAGES/main.mo
601
- - samples/cgi/locale/lv/LC_MESSAGES/helloerb2.mo
602
- - samples/cgi/locale/el/LC_MESSAGES/hellolib.mo
439
+ - samples/cgi/locale/uk/LC_MESSAGES/hellolib.mo
440
+ - samples/cgi/locale/el/LC_MESSAGES/helloerb2.mo
603
441
  - samples/cgi/locale/el/LC_MESSAGES/helloerb1.mo
604
442
  - samples/cgi/locale/el/LC_MESSAGES/main.mo
605
- - samples/cgi/locale/el/LC_MESSAGES/helloerb2.mo
606
- - samples/cgi/locale/hr/LC_MESSAGES/hellolib.mo
607
- - samples/cgi/locale/hr/LC_MESSAGES/helloerb1.mo
608
- - samples/cgi/locale/hr/LC_MESSAGES/main.mo
609
- - samples/cgi/locale/hr/LC_MESSAGES/helloerb2.mo
610
- - samples/cgi/locale/bg/LC_MESSAGES/hellolib.mo
611
- - samples/cgi/locale/bg/LC_MESSAGES/helloerb1.mo
612
- - samples/cgi/locale/bg/LC_MESSAGES/main.mo
613
- - samples/cgi/locale/bg/LC_MESSAGES/helloerb2.mo
614
- - samples/cgi/locale/bs/LC_MESSAGES/hellolib.mo
615
- - samples/cgi/locale/bs/LC_MESSAGES/helloerb1.mo
616
- - samples/cgi/locale/bs/LC_MESSAGES/main.mo
617
- - samples/cgi/locale/bs/LC_MESSAGES/helloerb2.mo
618
- - samples/cgi/locale/eo/LC_MESSAGES/hellolib.mo
619
- - samples/cgi/locale/eo/LC_MESSAGES/helloerb1.mo
620
- - samples/cgi/locale/eo/LC_MESSAGES/main.mo
621
- - samples/cgi/locale/eo/LC_MESSAGES/helloerb2.mo
622
- - samples/cgi/locale/zh_TW/LC_MESSAGES/hellolib.mo
623
- - samples/cgi/locale/zh_TW/LC_MESSAGES/helloerb1.mo
624
- - samples/cgi/locale/zh_TW/LC_MESSAGES/main.mo
625
- - samples/cgi/locale/zh_TW/LC_MESSAGES/helloerb2.mo
626
- - samples/cgi/locale/vi/LC_MESSAGES/hellolib.mo
627
- - samples/cgi/locale/vi/LC_MESSAGES/helloerb1.mo
628
- - samples/cgi/locale/vi/LC_MESSAGES/main.mo
629
- - samples/cgi/locale/vi/LC_MESSAGES/helloerb2.mo
630
- - samples/cgi/locale/ja/LC_MESSAGES/hellolib.mo
631
- - samples/cgi/locale/ja/LC_MESSAGES/helloerb1.mo
632
- - samples/cgi/locale/ja/LC_MESSAGES/main.mo
633
- - samples/cgi/locale/ja/LC_MESSAGES/helloerb2.mo
634
- - samples/cgi/locale/cs/LC_MESSAGES/hellolib.mo
635
- - samples/cgi/locale/cs/LC_MESSAGES/helloerb1.mo
636
- - samples/cgi/locale/cs/LC_MESSAGES/main.mo
637
- - samples/cgi/locale/cs/LC_MESSAGES/helloerb2.mo
638
- - samples/cgi/locale/sr/LC_MESSAGES/hellolib.mo
639
- - samples/cgi/locale/sr/LC_MESSAGES/helloerb1.mo
640
- - samples/cgi/locale/sr/LC_MESSAGES/main.mo
641
- - samples/cgi/locale/sr/LC_MESSAGES/helloerb2.mo
642
- - samples/cgi/locale/nl/LC_MESSAGES/hellolib.mo
643
- - samples/cgi/locale/nl/LC_MESSAGES/helloerb1.mo
644
- - samples/cgi/locale/nl/LC_MESSAGES/main.mo
645
- - samples/cgi/locale/nl/LC_MESSAGES/helloerb2.mo
646
- - samples/cgi/locale/zh/LC_MESSAGES/hellolib.mo
647
- - samples/cgi/locale/zh/LC_MESSAGES/helloerb1.mo
648
- - samples/cgi/locale/zh/LC_MESSAGES/main.mo
649
- - samples/cgi/locale/zh/LC_MESSAGES/helloerb2.mo
650
- - samples/cgi/locale/de/LC_MESSAGES/hellolib.mo
651
- - samples/cgi/locale/de/LC_MESSAGES/helloerb1.mo
652
- - samples/cgi/locale/de/LC_MESSAGES/main.mo
653
- - samples/cgi/locale/de/LC_MESSAGES/helloerb2.mo
654
- - samples/cgi/gettext.css
655
- - samples/cgi/http.rb
656
- - samples/cgi/cookie.cgi
657
- - samples/cgi/other.rhtml
658
- - samples/cgi/helloerb.rhtml
659
- - samples/cgi/helloerb2.cgi
660
- - samples/locale/ko/LC_MESSAGES/hello_plural.mo
661
- - samples/locale/ko/LC_MESSAGES/hello_tk.mo
662
- - samples/locale/ko/LC_MESSAGES/hello2.mo
663
- - samples/locale/ko/LC_MESSAGES/hello_glade2.mo
664
- - samples/locale/ko/LC_MESSAGES/hello_noop.mo
665
- - samples/locale/ko/LC_MESSAGES/hello.mo
666
- - samples/locale/ko/LC_MESSAGES/hello_gtk_builder.mo
667
- - samples/locale/ko/LC_MESSAGES/hello_gtk2.mo
668
- - samples/locale/nb/LC_MESSAGES/hello_plural.mo
669
- - samples/locale/nb/LC_MESSAGES/hello_tk.mo
670
- - samples/locale/nb/LC_MESSAGES/hello2.mo
671
- - samples/locale/nb/LC_MESSAGES/hello_glade2.mo
672
- - samples/locale/nb/LC_MESSAGES/hello_noop.mo
673
- - samples/locale/nb/LC_MESSAGES/hello.mo
674
- - samples/locale/nb/LC_MESSAGES/hello_gtk_builder.mo
675
- - samples/locale/nb/LC_MESSAGES/hello_gtk2.mo
676
- - samples/locale/ru/LC_MESSAGES/hello_plural.mo
677
- - samples/locale/ru/LC_MESSAGES/hello_tk.mo
678
- - samples/locale/ru/LC_MESSAGES/hello2.mo
679
- - samples/locale/ru/LC_MESSAGES/hello_glade2.mo
680
- - samples/locale/ru/LC_MESSAGES/hello_noop.mo
681
- - samples/locale/ru/LC_MESSAGES/hello.mo
682
- - samples/locale/ru/LC_MESSAGES/hello_gtk_builder.mo
683
- - samples/locale/ru/LC_MESSAGES/hello_gtk2.mo
684
- - samples/locale/hu/LC_MESSAGES/hello_plural.mo
685
- - samples/locale/hu/LC_MESSAGES/hello_tk.mo
686
- - samples/locale/hu/LC_MESSAGES/hello2.mo
687
- - samples/locale/hu/LC_MESSAGES/hello_glade2.mo
688
- - samples/locale/hu/LC_MESSAGES/hello_noop.mo
689
- - samples/locale/hu/LC_MESSAGES/hello.mo
690
- - samples/locale/hu/LC_MESSAGES/hello_gtk_builder.mo
691
- - samples/locale/hu/LC_MESSAGES/hello_gtk2.mo
692
- - samples/locale/ca/LC_MESSAGES/hello_plural.mo
693
- - samples/locale/ca/LC_MESSAGES/hello_tk.mo
694
- - samples/locale/ca/LC_MESSAGES/hello2.mo
695
- - samples/locale/ca/LC_MESSAGES/hello_glade2.mo
696
- - samples/locale/ca/LC_MESSAGES/hello_noop.mo
697
- - samples/locale/ca/LC_MESSAGES/hello.mo
698
- - samples/locale/ca/LC_MESSAGES/hello_gtk_builder.mo
699
- - samples/locale/ca/LC_MESSAGES/hello_gtk2.mo
700
- - samples/locale/fr/LC_MESSAGES/hello_plural.mo
701
- - samples/locale/fr/LC_MESSAGES/hello_tk.mo
702
- - samples/locale/fr/LC_MESSAGES/hello2.mo
703
- - samples/locale/fr/LC_MESSAGES/hello_glade2.mo
704
- - samples/locale/fr/LC_MESSAGES/hello_noop.mo
705
- - samples/locale/fr/LC_MESSAGES/hello.mo
706
- - samples/locale/fr/LC_MESSAGES/hello_gtk_builder.mo
707
- - samples/locale/fr/LC_MESSAGES/hello_gtk2.mo
708
- - samples/locale/it/LC_MESSAGES/hello_plural.mo
709
- - samples/locale/it/LC_MESSAGES/hello_tk.mo
710
- - samples/locale/it/LC_MESSAGES/hello2.mo
711
- - samples/locale/it/LC_MESSAGES/hello_glade2.mo
712
- - samples/locale/it/LC_MESSAGES/hello_noop.mo
713
- - samples/locale/it/LC_MESSAGES/hello.mo
714
- - samples/locale/it/LC_MESSAGES/hello_gtk_builder.mo
715
- - samples/locale/it/LC_MESSAGES/hello_gtk2.mo
716
- - samples/locale/pt_BR/LC_MESSAGES/hello_plural.mo
717
- - samples/locale/pt_BR/LC_MESSAGES/hello_tk.mo
718
- - samples/locale/pt_BR/LC_MESSAGES/hello2.mo
719
- - samples/locale/pt_BR/LC_MESSAGES/hello_glade2.mo
720
- - samples/locale/pt_BR/LC_MESSAGES/hello_noop.mo
721
- - samples/locale/pt_BR/LC_MESSAGES/hello.mo
722
- - samples/locale/pt_BR/LC_MESSAGES/hello_gtk_builder.mo
723
- - samples/locale/pt_BR/LC_MESSAGES/hello_gtk2.mo
724
- - samples/locale/es/LC_MESSAGES/hello_plural.mo
725
- - samples/locale/es/LC_MESSAGES/hello_tk.mo
726
- - samples/locale/es/LC_MESSAGES/hello2.mo
727
- - samples/locale/es/LC_MESSAGES/hello_glade2.mo
728
- - samples/locale/es/LC_MESSAGES/hello_noop.mo
729
- - samples/locale/es/LC_MESSAGES/hello.mo
730
- - samples/locale/es/LC_MESSAGES/hello_gtk_builder.mo
731
- - samples/locale/es/LC_MESSAGES/hello_gtk2.mo
732
- - samples/locale/uk/LC_MESSAGES/hello_plural.mo
733
- - samples/locale/uk/LC_MESSAGES/hello_tk.mo
734
- - samples/locale/uk/LC_MESSAGES/hello2.mo
735
- - samples/locale/uk/LC_MESSAGES/hello_glade2.mo
736
- - samples/locale/uk/LC_MESSAGES/hello_noop.mo
737
- - samples/locale/uk/LC_MESSAGES/hello.mo
738
- - samples/locale/uk/LC_MESSAGES/hello_gtk_builder.mo
739
- - samples/locale/uk/LC_MESSAGES/hello_gtk2.mo
740
- - samples/locale/lv/LC_MESSAGES/hello_plural.mo
741
- - samples/locale/lv/LC_MESSAGES/hello_tk.mo
742
- - samples/locale/lv/LC_MESSAGES/hello2.mo
743
- - samples/locale/lv/LC_MESSAGES/hello_glade2.mo
744
- - samples/locale/lv/LC_MESSAGES/hello_noop.mo
745
- - samples/locale/lv/LC_MESSAGES/hello.mo
746
- - samples/locale/lv/LC_MESSAGES/hello_gtk_builder.mo
747
- - samples/locale/lv/LC_MESSAGES/hello_gtk2.mo
748
- - samples/locale/el/LC_MESSAGES/hello_plural.mo
749
- - samples/locale/el/LC_MESSAGES/hello_tk.mo
750
- - samples/locale/el/LC_MESSAGES/hello2.mo
751
- - samples/locale/el/LC_MESSAGES/hello_glade2.mo
752
- - samples/locale/el/LC_MESSAGES/hello_noop.mo
753
- - samples/locale/el/LC_MESSAGES/hello.mo
754
- - samples/locale/el/LC_MESSAGES/hello_gtk_builder.mo
755
- - samples/locale/el/LC_MESSAGES/hello_gtk2.mo
756
- - samples/locale/hr/LC_MESSAGES/hello_plural.mo
757
- - samples/locale/hr/LC_MESSAGES/hello_tk.mo
758
- - samples/locale/hr/LC_MESSAGES/hello2.mo
759
- - samples/locale/hr/LC_MESSAGES/hello_glade2.mo
760
- - samples/locale/hr/LC_MESSAGES/hello_noop.mo
761
- - samples/locale/hr/LC_MESSAGES/hello.mo
762
- - samples/locale/hr/LC_MESSAGES/hello_gtk_builder.mo
763
- - samples/locale/hr/LC_MESSAGES/hello_gtk2.mo
764
- - samples/locale/bg/LC_MESSAGES/hello_plural.mo
443
+ - samples/cgi/locale/el/LC_MESSAGES/hellolib.mo
444
+ - samples/cgi/locale/ru/LC_MESSAGES/helloerb2.mo
445
+ - samples/cgi/locale/ru/LC_MESSAGES/helloerb1.mo
446
+ - samples/cgi/locale/ru/LC_MESSAGES/main.mo
447
+ - samples/cgi/locale/ru/LC_MESSAGES/hellolib.mo
448
+ - samples/hello_glade2.glade
449
+ - samples/hello_glade2.rb
450
+ - samples/hello_plural.rb
451
+ - samples/hello2.rb
452
+ - samples/hello.rb
453
+ - samples/hello_gtk_builder.ui
454
+ - samples/hello_tk.rb
455
+ - samples/hello_gtk2.rb
456
+ - samples/po/nb/hello_gtk2.po
457
+ - samples/po/nb/hello2.po
458
+ - samples/po/nb/hello.po
459
+ - samples/po/nb/hello_plural.po
460
+ - samples/po/nb/hello_glade2.po
461
+ - samples/po/nb/hello_noop.po
462
+ - samples/po/nb/hello_tk.po
463
+ - samples/po/nb/hello_gtk_builder.po
464
+ - samples/po/bg/hello_gtk2.po
465
+ - samples/po/bg/hello2.po
466
+ - samples/po/bg/hello.po
467
+ - samples/po/bg/hello_plural.po
468
+ - samples/po/bg/hello_glade2.po
469
+ - samples/po/bg/hello_noop.po
470
+ - samples/po/bg/hello_tk.po
471
+ - samples/po/bg/hello_gtk_builder.po
472
+ - samples/po/zh_TW/hello_gtk2.po
473
+ - samples/po/zh_TW/hello2.po
474
+ - samples/po/zh_TW/hello.po
475
+ - samples/po/zh_TW/hello_plural.po
476
+ - samples/po/zh_TW/hello_glade2.po
477
+ - samples/po/zh_TW/hello_noop.po
478
+ - samples/po/zh_TW/hello_tk.po
479
+ - samples/po/zh_TW/hello_gtk_builder.po
480
+ - samples/po/cs/hello_gtk2.po
481
+ - samples/po/cs/hello2.po
482
+ - samples/po/cs/hello.po
483
+ - samples/po/cs/hello_plural.po
484
+ - samples/po/cs/hello_glade2.po
485
+ - samples/po/cs/hello_noop.po
486
+ - samples/po/cs/hello_tk.po
487
+ - samples/po/cs/hello_gtk_builder.po
488
+ - samples/po/bs/hello_gtk2.po
489
+ - samples/po/bs/hello2.po
490
+ - samples/po/bs/hello.po
491
+ - samples/po/bs/hello_plural.po
492
+ - samples/po/bs/hello_glade2.po
493
+ - samples/po/bs/hello_noop.po
494
+ - samples/po/bs/hello_tk.po
495
+ - samples/po/bs/hello_gtk_builder.po
496
+ - samples/po/vi/hello_gtk2.po
497
+ - samples/po/vi/hello2.po
498
+ - samples/po/vi/hello.po
499
+ - samples/po/vi/hello_plural.po
500
+ - samples/po/vi/hello_glade2.po
501
+ - samples/po/vi/hello_noop.po
502
+ - samples/po/vi/hello_tk.po
503
+ - samples/po/vi/hello_gtk_builder.po
504
+ - samples/po/lv/hello_gtk2.po
505
+ - samples/po/lv/hello2.po
506
+ - samples/po/lv/hello.po
507
+ - samples/po/lv/hello_plural.po
508
+ - samples/po/lv/hello_glade2.po
509
+ - samples/po/lv/hello_noop.po
510
+ - samples/po/lv/hello_tk.po
511
+ - samples/po/lv/hello_gtk_builder.po
512
+ - samples/po/zh/hello_gtk2.po
513
+ - samples/po/zh/hello2.po
514
+ - samples/po/zh/hello.po
515
+ - samples/po/zh/hello_plural.po
516
+ - samples/po/zh/hello_glade2.po
517
+ - samples/po/zh/hello_noop.po
518
+ - samples/po/zh/hello_tk.po
519
+ - samples/po/zh/hello_gtk_builder.po
520
+ - samples/po/hu/hello_gtk2.po
521
+ - samples/po/hu/hello2.po
522
+ - samples/po/hu/hello.po
523
+ - samples/po/hu/hello_plural.po
524
+ - samples/po/hu/hello_glade2.po
525
+ - samples/po/hu/hello_noop.po
526
+ - samples/po/hu/hello_tk.po
527
+ - samples/po/hu/hello_gtk_builder.po
528
+ - samples/po/ja/hello_gtk2.po
529
+ - samples/po/ja/hello2.po
530
+ - samples/po/ja/hello.po
531
+ - samples/po/ja/hello_plural.po
532
+ - samples/po/ja/hello_glade2.po
533
+ - samples/po/ja/hello_noop.po
534
+ - samples/po/ja/hello_tk.po
535
+ - samples/po/ja/hello_gtk_builder.po
536
+ - samples/po/fr/hello_gtk2.po
537
+ - samples/po/fr/hello2.po
538
+ - samples/po/fr/hello.po
539
+ - samples/po/fr/hello_plural.po
540
+ - samples/po/fr/hello_glade2.po
541
+ - samples/po/fr/hello_noop.po
542
+ - samples/po/fr/hello_tk.po
543
+ - samples/po/fr/hello_gtk_builder.po
544
+ - samples/po/hello_plural.pot
545
+ - samples/po/hello2.pot
546
+ - samples/po/it/hello_gtk2.po
547
+ - samples/po/it/hello2.po
548
+ - samples/po/it/hello.po
549
+ - samples/po/it/hello_plural.po
550
+ - samples/po/it/hello_glade2.po
551
+ - samples/po/it/hello_noop.po
552
+ - samples/po/it/hello_tk.po
553
+ - samples/po/it/hello_gtk_builder.po
554
+ - samples/po/pt_BR/hello_gtk2.po
555
+ - samples/po/pt_BR/hello2.po
556
+ - samples/po/pt_BR/hello.po
557
+ - samples/po/pt_BR/hello_plural.po
558
+ - samples/po/pt_BR/hello_glade2.po
559
+ - samples/po/pt_BR/hello_noop.po
560
+ - samples/po/pt_BR/hello_tk.po
561
+ - samples/po/pt_BR/hello_gtk_builder.po
562
+ - samples/po/ko/hello_gtk2.po
563
+ - samples/po/ko/hello2.po
564
+ - samples/po/ko/hello.po
565
+ - samples/po/ko/hello_plural.po
566
+ - samples/po/ko/hello_glade2.po
567
+ - samples/po/ko/hello_noop.po
568
+ - samples/po/ko/hello_tk.po
569
+ - samples/po/ko/hello_gtk_builder.po
570
+ - samples/po/sr/hello_gtk2.po
571
+ - samples/po/sr/hello2.po
572
+ - samples/po/sr/hello.po
573
+ - samples/po/sr/hello_plural.po
574
+ - samples/po/sr/hello_glade2.po
575
+ - samples/po/sr/hello_noop.po
576
+ - samples/po/sr/hello_tk.po
577
+ - samples/po/sr/hello_gtk_builder.po
578
+ - samples/po/hello_tk.pot
579
+ - samples/po/hello_noop.pot
580
+ - samples/po/hello_gtk2.pot
581
+ - samples/po/eo/hello_gtk2.po
582
+ - samples/po/eo/hello2.po
583
+ - samples/po/eo/hello.po
584
+ - samples/po/eo/hello_plural.po
585
+ - samples/po/eo/hello_glade2.po
586
+ - samples/po/eo/hello_noop.po
587
+ - samples/po/eo/hello_tk.po
588
+ - samples/po/eo/hello_gtk_builder.po
589
+ - samples/po/de/hello_gtk2.po
590
+ - samples/po/de/hello2.po
591
+ - samples/po/de/hello.po
592
+ - samples/po/de/hello_plural.po
593
+ - samples/po/de/hello_glade2.po
594
+ - samples/po/de/hello_noop.po
595
+ - samples/po/de/hello_tk.po
596
+ - samples/po/de/hello_gtk_builder.po
597
+ - samples/po/es/hello_gtk2.po
598
+ - samples/po/es/hello2.po
599
+ - samples/po/es/hello.po
600
+ - samples/po/es/hello_plural.po
601
+ - samples/po/es/hello_glade2.po
602
+ - samples/po/es/hello_noop.po
603
+ - samples/po/es/hello_tk.po
604
+ - samples/po/es/hello_gtk_builder.po
605
+ - samples/po/ca/hello_gtk2.po
606
+ - samples/po/ca/hello2.po
607
+ - samples/po/ca/hello.po
608
+ - samples/po/ca/hello_plural.po
609
+ - samples/po/ca/hello_glade2.po
610
+ - samples/po/ca/hello_noop.po
611
+ - samples/po/ca/hello_tk.po
612
+ - samples/po/ca/hello_gtk_builder.po
613
+ - samples/po/hello.pot
614
+ - samples/po/nl/hello_gtk2.po
615
+ - samples/po/nl/hello2.po
616
+ - samples/po/nl/hello.po
617
+ - samples/po/nl/hello_plural.po
618
+ - samples/po/nl/hello_glade2.po
619
+ - samples/po/nl/hello_noop.po
620
+ - samples/po/nl/hello_tk.po
621
+ - samples/po/nl/hello_gtk_builder.po
622
+ - samples/po/hr/hello_gtk2.po
623
+ - samples/po/hr/hello2.po
624
+ - samples/po/hr/hello.po
625
+ - samples/po/hr/hello_plural.po
626
+ - samples/po/hr/hello_glade2.po
627
+ - samples/po/hr/hello_noop.po
628
+ - samples/po/hr/hello_tk.po
629
+ - samples/po/hr/hello_gtk_builder.po
630
+ - samples/po/uk/hello_gtk2.po
631
+ - samples/po/uk/hello2.po
632
+ - samples/po/uk/hello.po
633
+ - samples/po/uk/hello_plural.po
634
+ - samples/po/uk/hello_glade2.po
635
+ - samples/po/uk/hello_noop.po
636
+ - samples/po/uk/hello_tk.po
637
+ - samples/po/uk/hello_gtk_builder.po
638
+ - samples/po/el/hello_gtk2.po
639
+ - samples/po/el/hello2.po
640
+ - samples/po/el/hello.po
641
+ - samples/po/el/hello_plural.po
642
+ - samples/po/el/hello_glade2.po
643
+ - samples/po/el/hello_noop.po
644
+ - samples/po/el/hello_tk.po
645
+ - samples/po/el/hello_gtk_builder.po
646
+ - samples/po/sv/hello_gtk2.po
647
+ - samples/po/sv/hello2.po
648
+ - samples/po/sv/hello.po
649
+ - samples/po/sv/hello_plural.po
650
+ - samples/po/sv/hello_glade2.po
651
+ - samples/po/sv/hello_noop.po
652
+ - samples/po/sv/hello_tk.po
653
+ - samples/po/sv/hello_gtk_builder.po
654
+ - samples/po/hello_gtk_builder.pot
655
+ - samples/po/ru/hello_gtk2.po
656
+ - samples/po/ru/hello2.po
657
+ - samples/po/ru/hello.po
658
+ - samples/po/ru/hello_plural.po
659
+ - samples/po/ru/hello_glade2.po
660
+ - samples/po/ru/hello_noop.po
661
+ - samples/po/ru/hello_tk.po
662
+ - samples/po/ru/hello_gtk_builder.po
663
+ - samples/po/hello_glade2.pot
664
+ - samples/hello_gtk_builder.rb
665
+ - samples/README
666
+ - samples/locale/nb/LC_MESSAGES/hello_tk.mo
667
+ - samples/locale/nb/LC_MESSAGES/hello2.mo
668
+ - samples/locale/nb/LC_MESSAGES/hello_gtk_builder.mo
669
+ - samples/locale/nb/LC_MESSAGES/hello_gtk2.mo
670
+ - samples/locale/nb/LC_MESSAGES/hello.mo
671
+ - samples/locale/nb/LC_MESSAGES/hello_noop.mo
672
+ - samples/locale/nb/LC_MESSAGES/hello_glade2.mo
673
+ - samples/locale/nb/LC_MESSAGES/hello_plural.mo
765
674
  - samples/locale/bg/LC_MESSAGES/hello_tk.mo
766
675
  - samples/locale/bg/LC_MESSAGES/hello2.mo
767
- - samples/locale/bg/LC_MESSAGES/hello_glade2.mo
768
- - samples/locale/bg/LC_MESSAGES/hello_noop.mo
769
- - samples/locale/bg/LC_MESSAGES/hello.mo
770
676
  - samples/locale/bg/LC_MESSAGES/hello_gtk_builder.mo
771
677
  - samples/locale/bg/LC_MESSAGES/hello_gtk2.mo
772
- - samples/locale/bs/LC_MESSAGES/hello_plural.mo
773
- - samples/locale/bs/LC_MESSAGES/hello_tk.mo
774
- - samples/locale/bs/LC_MESSAGES/hello2.mo
775
- - samples/locale/bs/LC_MESSAGES/hello_glade2.mo
776
- - samples/locale/bs/LC_MESSAGES/hello_noop.mo
777
- - samples/locale/bs/LC_MESSAGES/hello.mo
778
- - samples/locale/bs/LC_MESSAGES/hello_gtk_builder.mo
779
- - samples/locale/bs/LC_MESSAGES/hello_gtk2.mo
780
- - samples/locale/eo/LC_MESSAGES/hello_plural.mo
781
- - samples/locale/eo/LC_MESSAGES/hello_tk.mo
782
- - samples/locale/eo/LC_MESSAGES/hello2.mo
783
- - samples/locale/eo/LC_MESSAGES/hello_glade2.mo
784
- - samples/locale/eo/LC_MESSAGES/hello_noop.mo
785
- - samples/locale/eo/LC_MESSAGES/hello.mo
786
- - samples/locale/eo/LC_MESSAGES/hello_gtk_builder.mo
787
- - samples/locale/eo/LC_MESSAGES/hello_gtk2.mo
788
- - samples/locale/zh_TW/LC_MESSAGES/hello_plural.mo
678
+ - samples/locale/bg/LC_MESSAGES/hello.mo
679
+ - samples/locale/bg/LC_MESSAGES/hello_noop.mo
680
+ - samples/locale/bg/LC_MESSAGES/hello_glade2.mo
681
+ - samples/locale/bg/LC_MESSAGES/hello_plural.mo
789
682
  - samples/locale/zh_TW/LC_MESSAGES/hello_tk.mo
790
683
  - samples/locale/zh_TW/LC_MESSAGES/hello2.mo
791
- - samples/locale/zh_TW/LC_MESSAGES/hello_glade2.mo
792
- - samples/locale/zh_TW/LC_MESSAGES/hello_noop.mo
793
- - samples/locale/zh_TW/LC_MESSAGES/hello.mo
794
684
  - samples/locale/zh_TW/LC_MESSAGES/hello_gtk_builder.mo
795
685
  - samples/locale/zh_TW/LC_MESSAGES/hello_gtk2.mo
796
- - samples/locale/vi/LC_MESSAGES/hello_plural.mo
686
+ - samples/locale/zh_TW/LC_MESSAGES/hello.mo
687
+ - samples/locale/zh_TW/LC_MESSAGES/hello_noop.mo
688
+ - samples/locale/zh_TW/LC_MESSAGES/hello_glade2.mo
689
+ - samples/locale/zh_TW/LC_MESSAGES/hello_plural.mo
690
+ - samples/locale/cs/LC_MESSAGES/hello_tk.mo
691
+ - samples/locale/cs/LC_MESSAGES/hello2.mo
692
+ - samples/locale/cs/LC_MESSAGES/hello_gtk_builder.mo
693
+ - samples/locale/cs/LC_MESSAGES/hello_gtk2.mo
694
+ - samples/locale/cs/LC_MESSAGES/hello.mo
695
+ - samples/locale/cs/LC_MESSAGES/hello_noop.mo
696
+ - samples/locale/cs/LC_MESSAGES/hello_glade2.mo
697
+ - samples/locale/cs/LC_MESSAGES/hello_plural.mo
698
+ - samples/locale/bs/LC_MESSAGES/hello_tk.mo
699
+ - samples/locale/bs/LC_MESSAGES/hello2.mo
700
+ - samples/locale/bs/LC_MESSAGES/hello_gtk_builder.mo
701
+ - samples/locale/bs/LC_MESSAGES/hello_gtk2.mo
702
+ - samples/locale/bs/LC_MESSAGES/hello.mo
703
+ - samples/locale/bs/LC_MESSAGES/hello_noop.mo
704
+ - samples/locale/bs/LC_MESSAGES/hello_glade2.mo
705
+ - samples/locale/bs/LC_MESSAGES/hello_plural.mo
797
706
  - samples/locale/vi/LC_MESSAGES/hello_tk.mo
798
707
  - samples/locale/vi/LC_MESSAGES/hello2.mo
799
- - samples/locale/vi/LC_MESSAGES/hello_glade2.mo
800
- - samples/locale/vi/LC_MESSAGES/hello_noop.mo
801
- - samples/locale/vi/LC_MESSAGES/hello.mo
802
708
  - samples/locale/vi/LC_MESSAGES/hello_gtk_builder.mo
803
709
  - samples/locale/vi/LC_MESSAGES/hello_gtk2.mo
804
- - samples/locale/ja/LC_MESSAGES/hello_plural.mo
710
+ - samples/locale/vi/LC_MESSAGES/hello.mo
711
+ - samples/locale/vi/LC_MESSAGES/hello_noop.mo
712
+ - samples/locale/vi/LC_MESSAGES/hello_glade2.mo
713
+ - samples/locale/vi/LC_MESSAGES/hello_plural.mo
714
+ - samples/locale/lv/LC_MESSAGES/hello_tk.mo
715
+ - samples/locale/lv/LC_MESSAGES/hello2.mo
716
+ - samples/locale/lv/LC_MESSAGES/hello_gtk_builder.mo
717
+ - samples/locale/lv/LC_MESSAGES/hello_gtk2.mo
718
+ - samples/locale/lv/LC_MESSAGES/hello.mo
719
+ - samples/locale/lv/LC_MESSAGES/hello_noop.mo
720
+ - samples/locale/lv/LC_MESSAGES/hello_glade2.mo
721
+ - samples/locale/lv/LC_MESSAGES/hello_plural.mo
722
+ - samples/locale/zh/LC_MESSAGES/hello_tk.mo
723
+ - samples/locale/zh/LC_MESSAGES/hello2.mo
724
+ - samples/locale/zh/LC_MESSAGES/hello_gtk_builder.mo
725
+ - samples/locale/zh/LC_MESSAGES/hello_gtk2.mo
726
+ - samples/locale/zh/LC_MESSAGES/hello.mo
727
+ - samples/locale/zh/LC_MESSAGES/hello_noop.mo
728
+ - samples/locale/zh/LC_MESSAGES/hello_glade2.mo
729
+ - samples/locale/zh/LC_MESSAGES/hello_plural.mo
730
+ - samples/locale/hu/LC_MESSAGES/hello_tk.mo
731
+ - samples/locale/hu/LC_MESSAGES/hello2.mo
732
+ - samples/locale/hu/LC_MESSAGES/hello_gtk_builder.mo
733
+ - samples/locale/hu/LC_MESSAGES/hello_gtk2.mo
734
+ - samples/locale/hu/LC_MESSAGES/hello.mo
735
+ - samples/locale/hu/LC_MESSAGES/hello_noop.mo
736
+ - samples/locale/hu/LC_MESSAGES/hello_glade2.mo
737
+ - samples/locale/hu/LC_MESSAGES/hello_plural.mo
805
738
  - samples/locale/ja/LC_MESSAGES/hello_tk.mo
806
739
  - samples/locale/ja/LC_MESSAGES/hello2.mo
807
- - samples/locale/ja/LC_MESSAGES/hello_glade2.mo
808
- - samples/locale/ja/LC_MESSAGES/hello_noop.mo
809
- - samples/locale/ja/LC_MESSAGES/hello.mo
810
740
  - samples/locale/ja/LC_MESSAGES/hello_gtk_builder.mo
811
741
  - samples/locale/ja/LC_MESSAGES/hello_gtk2.mo
812
- - samples/locale/sv/LC_MESSAGES/hello_plural.mo
813
- - samples/locale/sv/LC_MESSAGES/hello_tk.mo
814
- - samples/locale/sv/LC_MESSAGES/hello2.mo
815
- - samples/locale/sv/LC_MESSAGES/hello_glade2.mo
816
- - samples/locale/sv/LC_MESSAGES/hello_noop.mo
817
- - samples/locale/sv/LC_MESSAGES/hello.mo
818
- - samples/locale/sv/LC_MESSAGES/hello_gtk_builder.mo
819
- - samples/locale/sv/LC_MESSAGES/hello_gtk2.mo
820
- - samples/locale/cs/LC_MESSAGES/hello_plural.mo
821
- - samples/locale/cs/LC_MESSAGES/hello_tk.mo
822
- - samples/locale/cs/LC_MESSAGES/hello2.mo
823
- - samples/locale/cs/LC_MESSAGES/hello_glade2.mo
824
- - samples/locale/cs/LC_MESSAGES/hello_noop.mo
825
- - samples/locale/cs/LC_MESSAGES/hello.mo
826
- - samples/locale/cs/LC_MESSAGES/hello_gtk_builder.mo
827
- - samples/locale/cs/LC_MESSAGES/hello_gtk2.mo
828
- - samples/locale/sr/LC_MESSAGES/hello_plural.mo
742
+ - samples/locale/ja/LC_MESSAGES/hello.mo
743
+ - samples/locale/ja/LC_MESSAGES/hello_noop.mo
744
+ - samples/locale/ja/LC_MESSAGES/hello_glade2.mo
745
+ - samples/locale/ja/LC_MESSAGES/hello_plural.mo
746
+ - samples/locale/fr/LC_MESSAGES/hello_tk.mo
747
+ - samples/locale/fr/LC_MESSAGES/hello2.mo
748
+ - samples/locale/fr/LC_MESSAGES/hello_gtk_builder.mo
749
+ - samples/locale/fr/LC_MESSAGES/hello_gtk2.mo
750
+ - samples/locale/fr/LC_MESSAGES/hello.mo
751
+ - samples/locale/fr/LC_MESSAGES/hello_noop.mo
752
+ - samples/locale/fr/LC_MESSAGES/hello_glade2.mo
753
+ - samples/locale/fr/LC_MESSAGES/hello_plural.mo
754
+ - samples/locale/it/LC_MESSAGES/hello_tk.mo
755
+ - samples/locale/it/LC_MESSAGES/hello2.mo
756
+ - samples/locale/it/LC_MESSAGES/hello_gtk_builder.mo
757
+ - samples/locale/it/LC_MESSAGES/hello_gtk2.mo
758
+ - samples/locale/it/LC_MESSAGES/hello.mo
759
+ - samples/locale/it/LC_MESSAGES/hello_noop.mo
760
+ - samples/locale/it/LC_MESSAGES/hello_glade2.mo
761
+ - samples/locale/it/LC_MESSAGES/hello_plural.mo
762
+ - samples/locale/pt_BR/LC_MESSAGES/hello_tk.mo
763
+ - samples/locale/pt_BR/LC_MESSAGES/hello2.mo
764
+ - samples/locale/pt_BR/LC_MESSAGES/hello_gtk_builder.mo
765
+ - samples/locale/pt_BR/LC_MESSAGES/hello_gtk2.mo
766
+ - samples/locale/pt_BR/LC_MESSAGES/hello.mo
767
+ - samples/locale/pt_BR/LC_MESSAGES/hello_noop.mo
768
+ - samples/locale/pt_BR/LC_MESSAGES/hello_glade2.mo
769
+ - samples/locale/pt_BR/LC_MESSAGES/hello_plural.mo
770
+ - samples/locale/ko/LC_MESSAGES/hello_tk.mo
771
+ - samples/locale/ko/LC_MESSAGES/hello2.mo
772
+ - samples/locale/ko/LC_MESSAGES/hello_gtk_builder.mo
773
+ - samples/locale/ko/LC_MESSAGES/hello_gtk2.mo
774
+ - samples/locale/ko/LC_MESSAGES/hello.mo
775
+ - samples/locale/ko/LC_MESSAGES/hello_noop.mo
776
+ - samples/locale/ko/LC_MESSAGES/hello_glade2.mo
777
+ - samples/locale/ko/LC_MESSAGES/hello_plural.mo
829
778
  - samples/locale/sr/LC_MESSAGES/hello_tk.mo
830
779
  - samples/locale/sr/LC_MESSAGES/hello2.mo
831
- - samples/locale/sr/LC_MESSAGES/hello_glade2.mo
832
- - samples/locale/sr/LC_MESSAGES/hello_noop.mo
833
- - samples/locale/sr/LC_MESSAGES/hello.mo
834
780
  - samples/locale/sr/LC_MESSAGES/hello_gtk_builder.mo
835
781
  - samples/locale/sr/LC_MESSAGES/hello_gtk2.mo
836
- - samples/locale/nl/LC_MESSAGES/hello_plural.mo
837
- - samples/locale/nl/LC_MESSAGES/hello_tk.mo
838
- - samples/locale/nl/LC_MESSAGES/hello2.mo
839
- - samples/locale/nl/LC_MESSAGES/hello_glade2.mo
840
- - samples/locale/nl/LC_MESSAGES/hello_noop.mo
841
- - samples/locale/nl/LC_MESSAGES/hello.mo
842
- - samples/locale/nl/LC_MESSAGES/hello_gtk_builder.mo
843
- - samples/locale/nl/LC_MESSAGES/hello_gtk2.mo
844
- - samples/locale/zh/LC_MESSAGES/hello_plural.mo
845
- - samples/locale/zh/LC_MESSAGES/hello_tk.mo
846
- - samples/locale/zh/LC_MESSAGES/hello2.mo
847
- - samples/locale/zh/LC_MESSAGES/hello_glade2.mo
848
- - samples/locale/zh/LC_MESSAGES/hello_noop.mo
849
- - samples/locale/zh/LC_MESSAGES/hello.mo
850
- - samples/locale/zh/LC_MESSAGES/hello_gtk_builder.mo
851
- - samples/locale/zh/LC_MESSAGES/hello_gtk2.mo
852
- - samples/locale/de/LC_MESSAGES/hello_plural.mo
782
+ - samples/locale/sr/LC_MESSAGES/hello.mo
783
+ - samples/locale/sr/LC_MESSAGES/hello_noop.mo
784
+ - samples/locale/sr/LC_MESSAGES/hello_glade2.mo
785
+ - samples/locale/sr/LC_MESSAGES/hello_plural.mo
786
+ - samples/locale/eo/LC_MESSAGES/hello_tk.mo
787
+ - samples/locale/eo/LC_MESSAGES/hello2.mo
788
+ - samples/locale/eo/LC_MESSAGES/hello_gtk_builder.mo
789
+ - samples/locale/eo/LC_MESSAGES/hello_gtk2.mo
790
+ - samples/locale/eo/LC_MESSAGES/hello.mo
791
+ - samples/locale/eo/LC_MESSAGES/hello_noop.mo
792
+ - samples/locale/eo/LC_MESSAGES/hello_glade2.mo
793
+ - samples/locale/eo/LC_MESSAGES/hello_plural.mo
853
794
  - samples/locale/de/LC_MESSAGES/hello_tk.mo
854
795
  - samples/locale/de/LC_MESSAGES/hello2.mo
855
- - samples/locale/de/LC_MESSAGES/hello_glade2.mo
856
- - samples/locale/de/LC_MESSAGES/hello_noop.mo
857
- - samples/locale/de/LC_MESSAGES/hello.mo
858
796
  - samples/locale/de/LC_MESSAGES/hello_gtk_builder.mo
859
797
  - samples/locale/de/LC_MESSAGES/hello_gtk2.mo
860
- - samples/hello_noop.rb
861
- - samples/hello_plural.rb
862
- - samples/hello.rb
863
- - samples/hello_gtk_builder.ui
864
- - samples/hello_glade2.glade
865
- - samples/hello2.rb
798
+ - samples/locale/de/LC_MESSAGES/hello.mo
799
+ - samples/locale/de/LC_MESSAGES/hello_noop.mo
800
+ - samples/locale/de/LC_MESSAGES/hello_glade2.mo
801
+ - samples/locale/de/LC_MESSAGES/hello_plural.mo
802
+ - samples/locale/es/LC_MESSAGES/hello_tk.mo
803
+ - samples/locale/es/LC_MESSAGES/hello2.mo
804
+ - samples/locale/es/LC_MESSAGES/hello_gtk_builder.mo
805
+ - samples/locale/es/LC_MESSAGES/hello_gtk2.mo
806
+ - samples/locale/es/LC_MESSAGES/hello.mo
807
+ - samples/locale/es/LC_MESSAGES/hello_noop.mo
808
+ - samples/locale/es/LC_MESSAGES/hello_glade2.mo
809
+ - samples/locale/es/LC_MESSAGES/hello_plural.mo
810
+ - samples/locale/ca/LC_MESSAGES/hello_tk.mo
811
+ - samples/locale/ca/LC_MESSAGES/hello2.mo
812
+ - samples/locale/ca/LC_MESSAGES/hello_gtk_builder.mo
813
+ - samples/locale/ca/LC_MESSAGES/hello_gtk2.mo
814
+ - samples/locale/ca/LC_MESSAGES/hello.mo
815
+ - samples/locale/ca/LC_MESSAGES/hello_noop.mo
816
+ - samples/locale/ca/LC_MESSAGES/hello_glade2.mo
817
+ - samples/locale/ca/LC_MESSAGES/hello_plural.mo
818
+ - samples/locale/nl/LC_MESSAGES/hello_tk.mo
819
+ - samples/locale/nl/LC_MESSAGES/hello2.mo
820
+ - samples/locale/nl/LC_MESSAGES/hello_gtk_builder.mo
821
+ - samples/locale/nl/LC_MESSAGES/hello_gtk2.mo
822
+ - samples/locale/nl/LC_MESSAGES/hello.mo
823
+ - samples/locale/nl/LC_MESSAGES/hello_noop.mo
824
+ - samples/locale/nl/LC_MESSAGES/hello_glade2.mo
825
+ - samples/locale/nl/LC_MESSAGES/hello_plural.mo
826
+ - samples/locale/hr/LC_MESSAGES/hello_tk.mo
827
+ - samples/locale/hr/LC_MESSAGES/hello2.mo
828
+ - samples/locale/hr/LC_MESSAGES/hello_gtk_builder.mo
829
+ - samples/locale/hr/LC_MESSAGES/hello_gtk2.mo
830
+ - samples/locale/hr/LC_MESSAGES/hello.mo
831
+ - samples/locale/hr/LC_MESSAGES/hello_noop.mo
832
+ - samples/locale/hr/LC_MESSAGES/hello_glade2.mo
833
+ - samples/locale/hr/LC_MESSAGES/hello_plural.mo
834
+ - samples/locale/uk/LC_MESSAGES/hello_tk.mo
835
+ - samples/locale/uk/LC_MESSAGES/hello2.mo
836
+ - samples/locale/uk/LC_MESSAGES/hello_gtk_builder.mo
837
+ - samples/locale/uk/LC_MESSAGES/hello_gtk2.mo
838
+ - samples/locale/uk/LC_MESSAGES/hello.mo
839
+ - samples/locale/uk/LC_MESSAGES/hello_noop.mo
840
+ - samples/locale/uk/LC_MESSAGES/hello_glade2.mo
841
+ - samples/locale/uk/LC_MESSAGES/hello_plural.mo
842
+ - samples/locale/el/LC_MESSAGES/hello_tk.mo
843
+ - samples/locale/el/LC_MESSAGES/hello2.mo
844
+ - samples/locale/el/LC_MESSAGES/hello_gtk_builder.mo
845
+ - samples/locale/el/LC_MESSAGES/hello_gtk2.mo
846
+ - samples/locale/el/LC_MESSAGES/hello.mo
847
+ - samples/locale/el/LC_MESSAGES/hello_noop.mo
848
+ - samples/locale/el/LC_MESSAGES/hello_glade2.mo
849
+ - samples/locale/el/LC_MESSAGES/hello_plural.mo
850
+ - samples/locale/sv/LC_MESSAGES/hello_tk.mo
851
+ - samples/locale/sv/LC_MESSAGES/hello2.mo
852
+ - samples/locale/sv/LC_MESSAGES/hello_gtk_builder.mo
853
+ - samples/locale/sv/LC_MESSAGES/hello_gtk2.mo
854
+ - samples/locale/sv/LC_MESSAGES/hello.mo
855
+ - samples/locale/sv/LC_MESSAGES/hello_noop.mo
856
+ - samples/locale/sv/LC_MESSAGES/hello_glade2.mo
857
+ - samples/locale/sv/LC_MESSAGES/hello_plural.mo
858
+ - samples/locale/ru/LC_MESSAGES/hello_tk.mo
859
+ - samples/locale/ru/LC_MESSAGES/hello2.mo
860
+ - samples/locale/ru/LC_MESSAGES/hello_gtk_builder.mo
861
+ - samples/locale/ru/LC_MESSAGES/hello_gtk2.mo
862
+ - samples/locale/ru/LC_MESSAGES/hello.mo
863
+ - samples/locale/ru/LC_MESSAGES/hello_noop.mo
864
+ - samples/locale/ru/LC_MESSAGES/hello_glade2.mo
865
+ - samples/locale/ru/LC_MESSAGES/hello_plural.mo
866
866
  - src/po_parser.ry
867
867
  - test/test_po.rb
868
- - test/po/sl/plural.po
869
- - test/po/po/plural.po
870
- - test/po/_.pot
871
- - test/po/s_.pot
872
- - test/po/non_ascii.pot
873
- - test/po/cr/plural.po
874
- - test/po/ir/plural.po
875
- - test/po/untranslated.pot
876
- - test/po/p_.pot
877
- - test/po/fr/test1.po
878
- - test/po/fr/test2.po
879
- - test/po/fr/plural.po
880
- - test/po/fr/plural_error.po
881
- - test/po/backslash.pot
882
- - test/po/la/plural.po
868
+ - test/test_po_parser.rb
869
+ - test/test_text_domain.rb
870
+ - test/test_gettext.rb
871
+ - test/test_string.rb
872
+ - test/test_text_domain_toplevel.rb
873
+ - test/test_class_info.rb
874
+ - test/test_parser.rb
875
+ - test/run-test.rb
876
+ - test/test_thread.rb
877
+ - test/test_mo.rb
878
+ - test/gettext-test-utils.rb
879
+ - test/test_text_domain_bind.rb
880
+ - test/test_text_domain_multi.rb
883
881
  - test/po/la/plural_error.po
884
- - test/po/li/plural.po
885
- - test/po/li/plural_error.po
886
- - test/po/da/plural.po
887
- - test/po/da/plural_error.po
888
- - test/po/ja/p_.po
882
+ - test/po/la/plural.po
883
+ - test/po/cr/plural.po
884
+ - test/po/non_ascii.pot
885
+ - test/po/ja/test3.po
886
+ - test/po/ja/plural_error.po
889
887
  - test/po/ja/test1.po
890
- - test/po/ja/untranslated.po
891
- - test/po/ja/test2.po
892
888
  - test/po/ja/rubyparser.po
893
- - test/po/ja/ns_.po
894
- - test/po/ja/_.po
895
- - test/po/ja/backslash.po
896
- - test/po/ja/test3.po
897
889
  - test/po/ja/non_ascii.po
890
+ - test/po/ja/plural.po
891
+ - test/po/ja/backslash.po
898
892
  - test/po/ja/np_.po
893
+ - test/po/ja/test2.po
899
894
  - test/po/ja/s_.po
900
- - test/po/ja/plural.po
901
- - test/po/ja/plural_error.po
902
- - test/po/np_.pot
895
+ - test/po/ja/ns_.po
896
+ - test/po/ja/untranslated.po
897
+ - test/po/ja/_.po
898
+ - test/po/ja/p_.po
899
+ - test/po/p_.pot
900
+ - test/po/sl/plural.po
901
+ - test/po/fr/plural_error.po
902
+ - test/po/fr/test1.po
903
+ - test/po/fr/plural.po
904
+ - test/po/fr/test2.po
905
+ - test/po/untranslated.pot
906
+ - test/po/backslash.pot
907
+ - test/po/ir/plural.po
903
908
  - test/po/ns_.pot
904
- - test/test_text_domain_multi.rb
905
- - test/test_parser.rb
906
- - test/test_po_entry.rb
907
- - test/test_text_domain_toplevel.rb
908
- - test/test_text_domain_bind.rb
909
- - test/test_po_parser.rb
910
- - test/locale/sl/LC_MESSAGES/plural.mo
911
- - test/locale/po/LC_MESSAGES/plural.mo
912
- - test/locale/cr/LC_MESSAGES/plural.mo
913
- - test/locale/ir/LC_MESSAGES/plural.mo
914
- - test/locale/fr/LC_MESSAGES/plural_error.mo
915
- - test/locale/fr/LC_MESSAGES/test1.mo
916
- - test/locale/fr/LC_MESSAGES/plural.mo
917
- - test/locale/fr/LC_MESSAGES/test2.mo
918
- - test/locale/la/LC_MESSAGES/plural_error.mo
909
+ - test/po/s_.pot
910
+ - test/po/po/plural.po
911
+ - test/po/da/plural_error.po
912
+ - test/po/da/plural.po
913
+ - test/po/np_.pot
914
+ - test/po/li/plural_error.po
915
+ - test/po/li/plural.po
916
+ - test/po/_.pot
917
+ - test/fixtures/multi_text_domain.rb
918
+ - test/fixtures/untranslated.rb
919
+ - test/fixtures/N_.rb
920
+ - test/fixtures/p_.rb
921
+ - test/fixtures/backslash.rb
922
+ - test/fixtures/ns_.rb
923
+ - test/fixtures/erb/ascii.rhtml
924
+ - test/fixtures/erb/non_ascii.rhtml
925
+ - test/fixtures/erb/ascii.rxml
926
+ - test/fixtures/_/multiple_same_messages.rb
927
+ - test/fixtures/_/middle_new_line.rb
928
+ - test/fixtures/_/literal_concatenation_with_continuation_line.rb
929
+ - test/fixtures/_/double_quote_in_single_quote.rb
930
+ - test/fixtures/_/multiple_messages_in_same_line.rb
931
+ - test/fixtures/_/one_line.rb
932
+ - test/fixtures/_/multiple_lines_literal.rb
933
+ - test/fixtures/_/one_new_line.rb
934
+ - test/fixtures/_/double_quote_in_double_quote.rb
935
+ - test/fixtures/s_/custom.rb
936
+ - test/fixtures/non_ascii.rb
937
+ - test/fixtures/gladeparser.glade
938
+ - test/fixtures/ns_/custom.rb
939
+ - test/fixtures/_.rb
940
+ - test/fixtures/np_.rb
941
+ - test/fixtures/simple.rb
942
+ - test/fixtures/s_.rb
943
+ - test/fixtures/n_.rb
944
+ - test/test_locale_path.rb
919
945
  - test/locale/la/LC_MESSAGES/plural.mo
920
- - test/locale/li/LC_MESSAGES/plural_error.mo
921
- - test/locale/li/LC_MESSAGES/plural.mo
922
- - test/locale/da/LC_MESSAGES/plural_error.mo
923
- - test/locale/da/LC_MESSAGES/plural.mo
924
- - test/locale/ja/LC_MESSAGES/plural_error.mo
925
- - test/locale/ja/LC_MESSAGES/non_ascii.mo
946
+ - test/locale/la/LC_MESSAGES/plural_error.mo
947
+ - test/locale/cr/LC_MESSAGES/plural.mo
948
+ - test/locale/ja/LC_MESSAGES/ns_.mo
949
+ - test/locale/ja/LC_MESSAGES/plural.mo
950
+ - test/locale/ja/LC_MESSAGES/s_.mo
951
+ - test/locale/ja/LC_MESSAGES/untranslated.mo
952
+ - test/locale/ja/LC_MESSAGES/test2.mo
926
953
  - test/locale/ja/LC_MESSAGES/p_.mo
954
+ - test/locale/ja/LC_MESSAGES/non_ascii.mo
927
955
  - test/locale/ja/LC_MESSAGES/rubyparser.mo
928
- - test/locale/ja/LC_MESSAGES/np_.mo
929
- - test/locale/ja/LC_MESSAGES/s_.mo
956
+ - test/locale/ja/LC_MESSAGES/test3.mo
930
957
  - test/locale/ja/LC_MESSAGES/test1.mo
931
- - test/locale/ja/LC_MESSAGES/plural.mo
932
- - test/locale/ja/LC_MESSAGES/test2.mo
958
+ - test/locale/ja/LC_MESSAGES/np_.mo
933
959
  - test/locale/ja/LC_MESSAGES/backslash.mo
934
- - test/locale/ja/LC_MESSAGES/test3.mo
935
- - test/locale/ja/LC_MESSAGES/ns_.mo
936
960
  - test/locale/ja/LC_MESSAGES/_.mo
937
- - test/locale/ja/LC_MESSAGES/untranslated.mo
938
- - test/test_string.rb
961
+ - test/locale/ja/LC_MESSAGES/plural_error.mo
962
+ - test/locale/sl/LC_MESSAGES/plural.mo
963
+ - test/locale/fr/LC_MESSAGES/plural.mo
964
+ - test/locale/fr/LC_MESSAGES/test2.mo
965
+ - test/locale/fr/LC_MESSAGES/test1.mo
966
+ - test/locale/fr/LC_MESSAGES/plural_error.mo
967
+ - test/locale/ir/LC_MESSAGES/plural.mo
968
+ - test/locale/po/LC_MESSAGES/plural.mo
969
+ - test/locale/da/LC_MESSAGES/plural.mo
970
+ - test/locale/da/LC_MESSAGES/plural_error.mo
971
+ - test/locale/li/LC_MESSAGES/plural.mo
972
+ - test/locale/li/LC_MESSAGES/plural_error.mo
939
973
  - test/tools/test_msginit.rb
940
- - test/tools/test_msgcat.rb
974
+ - test/tools/test.pot
941
975
  - test/tools/test_msgmerge.rb
976
+ - test/tools/test_msgcat.rb
977
+ - test/tools/parser/test_ruby.rb
978
+ - test/tools/test_task.rb
979
+ - test/tools/files/app.pot
942
980
  - test/tools/files/simple_2.po
943
- - test/tools/files/simple_translation.rb
944
981
  - test/tools/files/version.po
945
- - test/tools/files/en/test.po
946
- - test/tools/files/en/app.po
947
- - test/tools/files/app.pot
948
982
  - test/tools/files/simple_1.po
983
+ - test/tools/files/en/app.po
984
+ - test/tools/files/en/test.po
949
985
  - test/tools/files/de/app.po
950
- - test/tools/test_task.rb
951
- - test/tools/test.pot
986
+ - test/tools/files/simple_translation.rb
952
987
  - test/tools/test_xgettext.rb
953
- - test/tools/parser/test_ruby.rb
954
- - test/gettext-test-utils.rb
955
- - test/test_gettext.rb
956
- - test/test_thread.rb
957
- - test/run-test.rb
958
- - test/test_text_domain.rb
959
- - test/test_locale_path.rb
960
- - test/test_class_info.rb
961
- - test/fixtures/ns_/custom.rb
962
- - test/fixtures/s_/custom.rb
963
- - test/fixtures/n_.rb
964
- - test/fixtures/_/double_quote_in_double_quote.rb
965
- - test/fixtures/_/multiple_same_messages.rb
966
- - test/fixtures/_/double_quote_in_single_quote.rb
967
- - test/fixtures/_/multiple_messages_in_same_line.rb
968
- - test/fixtures/_/multiple_lines_literal.rb
969
- - test/fixtures/_/literal_concatenation_with_continuation_line.rb
970
- - test/fixtures/_/middle_new_line.rb
971
- - test/fixtures/_/one_line.rb
972
- - test/fixtures/_/one_new_line.rb
973
- - test/fixtures/backslash.rb
974
- - test/fixtures/s_.rb
975
- - test/fixtures/erb/ascii.rhtml
976
- - test/fixtures/erb/non_ascii.rhtml
977
- - test/fixtures/erb/ascii.rxml
978
- - test/fixtures/np_.rb
979
- - test/fixtures/simple.rb
980
- - test/fixtures/untranslated.rb
981
- - test/fixtures/N_.rb
982
- - test/fixtures/gladeparser.glade
983
- - test/fixtures/_.rb
984
- - test/fixtures/multi_text_domain.rb
985
- - test/fixtures/ns_.rb
986
- - test/fixtures/p_.rb
987
- - test/fixtures/non_ascii.rb
988
- - test/test_mo.rb
988
+ - test/test_po_entry.rb
989
989
  - README.rdoc
990
990
  - Rakefile
991
991
  - gettext.gemspec
@@ -1016,17 +1016,17 @@ specification_version: 4
1016
1016
  summary: Gettext is a pure Ruby libary and tools to localize messages.
1017
1017
  test_files:
1018
1018
  - test/test_po.rb
1019
- - test/test_text_domain_multi.rb
1020
- - test/test_parser.rb
1021
- - test/test_po_entry.rb
1022
- - test/test_text_domain_toplevel.rb
1023
- - test/test_text_domain_bind.rb
1024
1019
  - test/test_po_parser.rb
1025
- - test/test_string.rb
1026
- - test/test_gettext.rb
1027
- - test/test_thread.rb
1028
1020
  - test/test_text_domain.rb
1029
- - test/test_locale_path.rb
1021
+ - test/test_gettext.rb
1022
+ - test/test_string.rb
1023
+ - test/test_text_domain_toplevel.rb
1030
1024
  - test/test_class_info.rb
1025
+ - test/test_parser.rb
1026
+ - test/test_thread.rb
1031
1027
  - test/test_mo.rb
1028
+ - test/test_text_domain_bind.rb
1029
+ - test/test_text_domain_multi.rb
1030
+ - test/test_locale_path.rb
1031
+ - test/test_po_entry.rb
1032
1032
  has_rdoc: