gettext 3.4.2 → 3.5.2
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.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/Rakefile +13 -4
- data/doc/text/news.md +117 -0
- data/gettext.gemspec +6 -1
- data/lib/gettext/po_entry.rb +31 -21
- data/lib/gettext/po_parser.rb +65 -59
- data/lib/gettext/tools/msgcat.rb +9 -2
- data/lib/gettext/tools/msginit.rb +15 -2
- data/lib/gettext/tools/msgmerge.rb +11 -6
- data/lib/gettext/tools/parser/erb.rb +1 -1
- data/lib/gettext/tools/parser/erubi.rb +88 -0
- data/lib/gettext/tools/parser/ruby.rb +13 -13
- data/lib/gettext/tools/task.rb +3 -5
- data/lib/gettext/tools/xgettext.rb +15 -4
- data/lib/gettext/version.rb +3 -3
- data/locale/ja/LC_MESSAGES/gettext.mo +0 -0
- data/po/bg/gettext.edit.po +78 -73
- data/po/bg/gettext.po +6 -0
- data/po/bs/gettext.edit.po +78 -73
- data/po/bs/gettext.po +6 -0
- data/po/ca/gettext.edit.po +78 -73
- data/po/ca/gettext.po +6 -0
- data/po/cs/gettext.edit.po +78 -73
- data/po/cs/gettext.po +6 -0
- data/po/de/gettext.edit.po +78 -73
- data/po/de/gettext.po +6 -0
- data/po/el/gettext.edit.po +78 -73
- data/po/el/gettext.po +6 -0
- data/po/eo/gettext.edit.po +78 -73
- data/po/eo/gettext.po +6 -0
- data/po/es/gettext.edit.po +78 -73
- data/po/es/gettext.po +6 -0
- data/po/et/gettext.edit.po +78 -73
- data/po/et/gettext.po +6 -0
- data/po/fr/gettext.edit.po +78 -73
- data/po/fr/gettext.po +6 -0
- data/po/gettext.pot +90 -81
- data/po/hr/gettext.edit.po +78 -73
- data/po/hr/gettext.po +6 -0
- data/po/hu/gettext.edit.po +78 -73
- data/po/hu/gettext.po +6 -0
- data/po/it/gettext.edit.po +78 -73
- data/po/it/gettext.po +6 -0
- data/po/ja/gettext.edit.po +79 -74
- data/po/ja/gettext.po +7 -1
- data/po/ko/gettext.edit.po +78 -73
- data/po/ko/gettext.po +6 -0
- data/po/lv/gettext.edit.po +78 -73
- data/po/lv/gettext.po +6 -0
- data/po/nb/gettext.edit.po +78 -73
- data/po/nb/gettext.po +6 -0
- data/po/nl/gettext.edit.po +78 -73
- data/po/nl/gettext.po +6 -0
- data/po/pt_BR/gettext.edit.po +78 -73
- data/po/pt_BR/gettext.po +6 -0
- data/po/ru/gettext.edit.po +78 -73
- data/po/ru/gettext.po +6 -0
- data/po/sr/gettext.edit.po +78 -73
- data/po/sr/gettext.po +6 -0
- data/po/sv/gettext.edit.po +78 -70
- data/po/sv/gettext.po +6 -0
- data/po/uk/gettext.edit.po +78 -73
- data/po/uk/gettext.po +6 -0
- data/po/vi/gettext.edit.po +78 -73
- data/po/vi/gettext.po +6 -0
- data/po/zh/gettext.edit.po +78 -73
- data/po/zh/gettext.po +6 -0
- data/po/zh_TW/gettext.edit.po +78 -73
- data/po/zh_TW/gettext.po +6 -0
- data/samples/po/bg/hello_gtk_builder.po +12 -0
- data/samples/po/bs/hello_gtk_builder.po +12 -0
- data/samples/po/ca/hello_gtk_builder.po +12 -0
- data/samples/po/cs/hello_gtk_builder.po +12 -0
- data/samples/po/de/hello_gtk_builder.po +12 -0
- data/samples/po/el/hello_gtk_builder.po +12 -0
- data/samples/po/eo/hello_gtk_builder.po +12 -0
- data/samples/po/es/hello_gtk_builder.po +12 -0
- data/samples/po/fr/hello_gtk_builder.po +12 -0
- data/samples/po/hr/hello_gtk_builder.po +12 -0
- data/samples/po/hu/hello_gtk_builder.po +12 -0
- data/samples/po/it/hello_gtk_builder.po +12 -0
- data/samples/po/ja/hello_gtk_builder.po +12 -0
- data/samples/po/ko/hello_gtk_builder.po +12 -0
- data/samples/po/lv/hello_gtk_builder.po +12 -0
- data/samples/po/nb/hello_gtk_builder.po +12 -0
- data/samples/po/nl/hello_gtk_builder.po +12 -0
- data/samples/po/pt_BR/hello_gtk_builder.po +12 -0
- data/samples/po/ru/hello_gtk_builder.po +12 -0
- data/samples/po/sr/hello_gtk_builder.po +12 -0
- data/samples/po/sv/hello_gtk_builder.po +12 -0
- data/samples/po/uk/hello_gtk_builder.po +12 -0
- data/samples/po/vi/hello_gtk_builder.po +12 -0
- data/samples/po/zh/hello_gtk_builder.po +12 -0
- data/samples/po/zh_TW/hello_gtk_builder.po +12 -0
- data/src/po_parser.ry +48 -42
- data/test/fixtures/erb/case.rhtml +16 -0
- data/test/po/ja/_.po +15 -0
- data/test/test_parser.rb +62 -0
- data/test/test_po_entry.rb +20 -4
- data/test/test_po_parser.rb +44 -1
- data/test/tools/test_msgcat.rb +21 -1
- data/test/tools/test_msginit.rb +69 -13
- data/test/tools/test_msgmerge.rb +41 -3
- data/test/tools/test_xgettext.rb +100 -3
- metadata +30 -975
- data/samples/cgi/locale/bg/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/bg/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/bg/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/bg/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/bs/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/bs/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/bs/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/bs/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/ca/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/ca/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/ca/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/ca/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/cs/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/cs/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/cs/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/cs/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/de/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/de/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/de/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/de/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/el/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/el/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/el/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/el/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/eo/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/eo/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/eo/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/eo/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/es/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/es/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/es/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/es/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/fr/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/fr/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/fr/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/fr/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/hr/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/hr/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/hr/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/hr/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/hu/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/hu/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/hu/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/hu/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/it/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/it/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/it/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/it/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/ja/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/ja/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/ja/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/ja/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/ko/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/ko/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/ko/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/ko/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/lv/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/lv/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/lv/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/lv/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/nb/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/nb/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/nb/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/nb/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/nl/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/nl/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/nl/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/nl/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/pt_BR/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/pt_BR/LC_MESSAGES/main.mo +0 -0
- 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/locale/sr/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/sr/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/sr/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/sr/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/uk/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/uk/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/uk/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/uk/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/vi/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/vi/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/vi/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/vi/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/zh/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/zh/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/zh/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/zh/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/zh_TW/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/zh_TW/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/zh_TW/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/zh_TW/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/po/bg/helloerb1.edit.po +0 -22
- data/samples/cgi/po/bg/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/bg/helloerb2.edit.po +0 -22
- data/samples/cgi/po/bg/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/bg/hellolib.edit.po +0 -22
- data/samples/cgi/po/bg/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/bg/main.edit.po +0 -74
- data/samples/cgi/po/bg/main.po.time_stamp +0 -0
- data/samples/cgi/po/bs/helloerb1.edit.po +0 -22
- data/samples/cgi/po/bs/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/bs/helloerb2.edit.po +0 -22
- data/samples/cgi/po/bs/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/bs/hellolib.edit.po +0 -22
- data/samples/cgi/po/bs/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/bs/main.edit.po +0 -74
- data/samples/cgi/po/bs/main.po.time_stamp +0 -0
- data/samples/cgi/po/ca/helloerb1.edit.po +0 -22
- data/samples/cgi/po/ca/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/ca/helloerb2.edit.po +0 -22
- data/samples/cgi/po/ca/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/ca/hellolib.edit.po +0 -22
- data/samples/cgi/po/ca/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/ca/main.edit.po +0 -74
- data/samples/cgi/po/ca/main.po.time_stamp +0 -0
- data/samples/cgi/po/cs/helloerb1.edit.po +0 -24
- data/samples/cgi/po/cs/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/cs/helloerb2.edit.po +0 -23
- data/samples/cgi/po/cs/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/cs/hellolib.edit.po +0 -24
- data/samples/cgi/po/cs/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/cs/main.edit.po +0 -76
- data/samples/cgi/po/cs/main.po.time_stamp +0 -0
- data/samples/cgi/po/de/helloerb1.edit.po +0 -22
- data/samples/cgi/po/de/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/de/helloerb2.edit.po +0 -22
- data/samples/cgi/po/de/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/de/hellolib.edit.po +0 -22
- data/samples/cgi/po/de/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/de/main.edit.po +0 -74
- data/samples/cgi/po/de/main.po.time_stamp +0 -0
- data/samples/cgi/po/el/helloerb1.edit.po +0 -22
- data/samples/cgi/po/el/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/el/helloerb2.edit.po +0 -22
- data/samples/cgi/po/el/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/el/hellolib.edit.po +0 -22
- data/samples/cgi/po/el/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/el/main.edit.po +0 -74
- data/samples/cgi/po/el/main.po.time_stamp +0 -0
- data/samples/cgi/po/eo/helloerb1.edit.po +0 -22
- data/samples/cgi/po/eo/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/eo/helloerb2.edit.po +0 -22
- data/samples/cgi/po/eo/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/eo/hellolib.edit.po +0 -22
- data/samples/cgi/po/eo/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/eo/main.edit.po +0 -74
- data/samples/cgi/po/eo/main.po.time_stamp +0 -0
- data/samples/cgi/po/es/helloerb1.edit.po +0 -21
- data/samples/cgi/po/es/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/es/helloerb2.edit.po +0 -20
- data/samples/cgi/po/es/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/es/hellolib.edit.po +0 -20
- data/samples/cgi/po/es/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/es/main.edit.po +0 -72
- data/samples/cgi/po/es/main.po.time_stamp +0 -0
- data/samples/cgi/po/fr/helloerb1.edit.po +0 -22
- data/samples/cgi/po/fr/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/fr/helloerb2.edit.po +0 -22
- data/samples/cgi/po/fr/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/fr/hellolib.edit.po +0 -21
- data/samples/cgi/po/fr/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/fr/main.edit.po +0 -74
- data/samples/cgi/po/fr/main.po.time_stamp +0 -0
- data/samples/cgi/po/helloerb1.pot +0 -23
- data/samples/cgi/po/helloerb2.pot +0 -23
- data/samples/cgi/po/hellolib.pot +0 -23
- data/samples/cgi/po/hr/helloerb1.edit.po +0 -22
- data/samples/cgi/po/hr/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/hr/helloerb2.edit.po +0 -22
- data/samples/cgi/po/hr/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/hr/hellolib.edit.po +0 -22
- data/samples/cgi/po/hr/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/hr/main.edit.po +0 -74
- data/samples/cgi/po/hr/main.po.time_stamp +0 -0
- data/samples/cgi/po/hu/helloerb1.edit.po +0 -22
- data/samples/cgi/po/hu/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/hu/helloerb2.edit.po +0 -22
- data/samples/cgi/po/hu/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/hu/hellolib.edit.po +0 -22
- data/samples/cgi/po/hu/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/hu/main.edit.po +0 -74
- data/samples/cgi/po/hu/main.po.time_stamp +0 -0
- data/samples/cgi/po/it/helloerb1.edit.po +0 -22
- data/samples/cgi/po/it/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/it/helloerb2.edit.po +0 -22
- data/samples/cgi/po/it/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/it/hellolib.edit.po +0 -22
- data/samples/cgi/po/it/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/it/main.edit.po +0 -74
- data/samples/cgi/po/it/main.po.time_stamp +0 -0
- data/samples/cgi/po/ja/helloerb1.edit.po +0 -22
- data/samples/cgi/po/ja/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/ja/helloerb2.edit.po +0 -22
- data/samples/cgi/po/ja/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/ja/hellolib.edit.po +0 -22
- data/samples/cgi/po/ja/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/ja/main.edit.po +0 -74
- data/samples/cgi/po/ja/main.po.time_stamp +0 -0
- data/samples/cgi/po/ko/helloerb1.edit.po +0 -22
- data/samples/cgi/po/ko/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/ko/helloerb2.edit.po +0 -22
- data/samples/cgi/po/ko/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/ko/hellolib.edit.po +0 -22
- data/samples/cgi/po/ko/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/ko/main.edit.po +0 -74
- data/samples/cgi/po/ko/main.po.time_stamp +0 -0
- data/samples/cgi/po/lv/helloerb1.edit.po +0 -22
- data/samples/cgi/po/lv/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/lv/helloerb2.edit.po +0 -22
- data/samples/cgi/po/lv/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/lv/hellolib.edit.po +0 -22
- data/samples/cgi/po/lv/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/lv/main.edit.po +0 -74
- data/samples/cgi/po/lv/main.po.time_stamp +0 -0
- data/samples/cgi/po/main.pot +0 -79
- data/samples/cgi/po/nb/helloerb1.edit.po +0 -22
- data/samples/cgi/po/nb/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/nb/helloerb2.edit.po +0 -22
- data/samples/cgi/po/nb/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/nb/hellolib.edit.po +0 -22
- data/samples/cgi/po/nb/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/nb/main.edit.po +0 -74
- data/samples/cgi/po/nb/main.po.time_stamp +0 -0
- data/samples/cgi/po/nl/helloerb1.edit.po +0 -22
- data/samples/cgi/po/nl/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/nl/helloerb2.edit.po +0 -22
- data/samples/cgi/po/nl/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/nl/hellolib.edit.po +0 -22
- data/samples/cgi/po/nl/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/nl/main.edit.po +0 -74
- data/samples/cgi/po/nl/main.po.time_stamp +0 -0
- data/samples/cgi/po/pt_BR/helloerb1.edit.po +0 -22
- data/samples/cgi/po/pt_BR/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/pt_BR/helloerb2.edit.po +0 -22
- data/samples/cgi/po/pt_BR/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/pt_BR/hellolib.edit.po +0 -22
- data/samples/cgi/po/pt_BR/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/pt_BR/main.edit.po +0 -74
- data/samples/cgi/po/pt_BR/main.po.time_stamp +0 -0
- data/samples/cgi/po/ru/helloerb1.edit.po +0 -20
- data/samples/cgi/po/ru/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/ru/helloerb2.edit.po +0 -20
- data/samples/cgi/po/ru/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/ru/hellolib.edit.po +0 -20
- data/samples/cgi/po/ru/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/ru/main.edit.po +0 -72
- data/samples/cgi/po/ru/main.po.time_stamp +0 -0
- data/samples/cgi/po/sr/helloerb1.edit.po +0 -23
- data/samples/cgi/po/sr/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/sr/helloerb2.edit.po +0 -23
- data/samples/cgi/po/sr/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/sr/hellolib.edit.po +0 -23
- data/samples/cgi/po/sr/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/sr/main.edit.po +0 -75
- data/samples/cgi/po/sr/main.po.time_stamp +0 -0
- data/samples/cgi/po/uk/helloerb1.edit.po +0 -25
- data/samples/cgi/po/uk/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/uk/helloerb2.edit.po +0 -25
- data/samples/cgi/po/uk/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/uk/hellolib.edit.po +0 -25
- data/samples/cgi/po/uk/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/uk/main.edit.po +0 -77
- data/samples/cgi/po/uk/main.po.time_stamp +0 -0
- data/samples/cgi/po/vi/helloerb1.edit.po +0 -22
- data/samples/cgi/po/vi/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/vi/helloerb2.edit.po +0 -22
- data/samples/cgi/po/vi/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/vi/hellolib.edit.po +0 -22
- data/samples/cgi/po/vi/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/vi/main.edit.po +0 -74
- data/samples/cgi/po/vi/main.po.time_stamp +0 -0
- data/samples/cgi/po/zh/helloerb1.edit.po +0 -23
- data/samples/cgi/po/zh/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/zh/helloerb2.edit.po +0 -23
- data/samples/cgi/po/zh/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/zh/hellolib.edit.po +0 -23
- data/samples/cgi/po/zh/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/zh/main.edit.po +0 -75
- data/samples/cgi/po/zh/main.po.time_stamp +0 -0
- data/samples/cgi/po/zh_TW/helloerb1.edit.po +0 -24
- data/samples/cgi/po/zh_TW/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/zh_TW/helloerb2.edit.po +0 -24
- data/samples/cgi/po/zh_TW/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/zh_TW/hellolib.edit.po +0 -24
- data/samples/cgi/po/zh_TW/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/zh_TW/main.edit.po +0 -76
- data/samples/cgi/po/zh_TW/main.po.time_stamp +0 -0
- data/samples/locale/bg/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/bg/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/bg/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/bg/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/bg/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/bg/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/bg/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/bg/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/bs/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/bs/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/bs/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/bs/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/bs/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/bs/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/bs/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/bs/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/ca/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/ca/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/ca/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/ca/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/ca/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/ca/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/ca/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ca/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/cs/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/cs/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/cs/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/cs/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/cs/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/cs/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/cs/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/cs/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/eo/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/eo/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/eo/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/eo/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/eo/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/eo/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/eo/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/eo/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/hr/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/hr/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/hr/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/hr/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/hr/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/hr/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/hr/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/hr/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/lv/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/lv/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/lv/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/lv/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/lv/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/lv/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/lv/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/lv/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/nb/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/nb/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/nb/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/nb/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/nb/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/nb/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/nb/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/nb/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello_tk.mo +0 -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_glade2.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello_gtk_builder.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/hello_tk.mo +0 -0
- data/samples/locale/sr/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/sr/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/sr/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/sr/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/sr/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/sr/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/sr/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/sr/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/uk/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/uk/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/uk/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/uk/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/uk/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/uk/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/uk/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/uk/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/vi/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/vi/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/vi/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/vi/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/vi/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/vi/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/vi/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/vi/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/zh_TW/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/zh_TW/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/zh_TW/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/zh_TW/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/zh_TW/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/zh_TW/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/zh_TW/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/zh_TW/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/po/bg/hello.edit.po +0 -24
- data/samples/po/bg/hello.po.time_stamp +0 -0
- data/samples/po/bg/hello2.edit.po +0 -34
- data/samples/po/bg/hello2.po.time_stamp +0 -0
- data/samples/po/bg/hello_glade2.edit.po +0 -36
- data/samples/po/bg/hello_glade2.po.time_stamp +0 -0
- data/samples/po/bg/hello_gtk2.edit.po +0 -22
- data/samples/po/bg/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/bg/hello_gtk_builder.edit.po +0 -18
- data/samples/po/bg/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/bg/hello_noop.edit.po +0 -26
- data/samples/po/bg/hello_noop.po.time_stamp +0 -0
- data/samples/po/bg/hello_plural.edit.po +0 -28
- data/samples/po/bg/hello_plural.po.time_stamp +0 -0
- data/samples/po/bg/hello_tk.edit.po +0 -22
- data/samples/po/bg/hello_tk.po.time_stamp +0 -0
- data/samples/po/bs/hello.edit.po +0 -24
- data/samples/po/bs/hello.po.time_stamp +0 -0
- data/samples/po/bs/hello2.edit.po +0 -34
- data/samples/po/bs/hello2.po.time_stamp +0 -0
- data/samples/po/bs/hello_glade2.edit.po +0 -36
- data/samples/po/bs/hello_glade2.po.time_stamp +0 -0
- data/samples/po/bs/hello_gtk2.edit.po +0 -22
- data/samples/po/bs/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/bs/hello_gtk_builder.edit.po +0 -19
- data/samples/po/bs/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/bs/hello_noop.edit.po +0 -26
- data/samples/po/bs/hello_noop.po.time_stamp +0 -0
- data/samples/po/bs/hello_plural.edit.po +0 -30
- data/samples/po/bs/hello_plural.po.time_stamp +0 -0
- data/samples/po/bs/hello_tk.edit.po +0 -22
- data/samples/po/bs/hello_tk.po.time_stamp +0 -0
- data/samples/po/ca/hello.edit.po +0 -24
- data/samples/po/ca/hello.po.time_stamp +0 -0
- data/samples/po/ca/hello2.edit.po +0 -34
- data/samples/po/ca/hello2.po.time_stamp +0 -0
- data/samples/po/ca/hello_glade2.edit.po +0 -36
- data/samples/po/ca/hello_glade2.po.time_stamp +0 -0
- data/samples/po/ca/hello_gtk2.edit.po +0 -22
- data/samples/po/ca/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/ca/hello_gtk_builder.edit.po +0 -18
- data/samples/po/ca/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/ca/hello_noop.edit.po +0 -26
- data/samples/po/ca/hello_noop.po.time_stamp +0 -0
- data/samples/po/ca/hello_plural.edit.po +0 -28
- data/samples/po/ca/hello_plural.po.time_stamp +0 -0
- data/samples/po/ca/hello_tk.edit.po +0 -22
- data/samples/po/ca/hello_tk.po.time_stamp +0 -0
- data/samples/po/cs/hello.edit.po +0 -24
- data/samples/po/cs/hello.po.time_stamp +0 -0
- data/samples/po/cs/hello2.edit.po +0 -34
- data/samples/po/cs/hello2.po.time_stamp +0 -0
- data/samples/po/cs/hello_glade2.edit.po +0 -36
- data/samples/po/cs/hello_glade2.po.time_stamp +0 -0
- data/samples/po/cs/hello_gtk2.edit.po +0 -22
- data/samples/po/cs/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/cs/hello_gtk_builder.edit.po +0 -18
- data/samples/po/cs/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/cs/hello_noop.edit.po +0 -26
- data/samples/po/cs/hello_noop.po.time_stamp +0 -0
- data/samples/po/cs/hello_plural.edit.po +0 -30
- data/samples/po/cs/hello_plural.po.time_stamp +0 -0
- data/samples/po/cs/hello_tk.edit.po +0 -22
- data/samples/po/cs/hello_tk.po.time_stamp +0 -0
- data/samples/po/de/hello.edit.po +0 -20
- data/samples/po/de/hello.po.time_stamp +0 -0
- data/samples/po/de/hello2.edit.po +0 -30
- data/samples/po/de/hello2.po.time_stamp +0 -0
- data/samples/po/de/hello_glade2.edit.po +0 -32
- data/samples/po/de/hello_glade2.po.time_stamp +0 -0
- data/samples/po/de/hello_gtk2.edit.po +0 -18
- data/samples/po/de/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/de/hello_gtk_builder.edit.po +0 -18
- data/samples/po/de/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/de/hello_noop.edit.po +0 -22
- data/samples/po/de/hello_noop.po.time_stamp +0 -0
- data/samples/po/de/hello_plural.edit.po +0 -28
- data/samples/po/de/hello_plural.po.time_stamp +0 -0
- data/samples/po/de/hello_tk.edit.po +0 -18
- data/samples/po/de/hello_tk.po.time_stamp +0 -0
- data/samples/po/el/hello.edit.po +0 -24
- data/samples/po/el/hello.po.time_stamp +0 -0
- data/samples/po/el/hello2.edit.po +0 -34
- data/samples/po/el/hello2.po.time_stamp +0 -0
- data/samples/po/el/hello_glade2.edit.po +0 -37
- data/samples/po/el/hello_glade2.po.time_stamp +0 -0
- data/samples/po/el/hello_gtk2.edit.po +0 -21
- data/samples/po/el/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/el/hello_gtk_builder.edit.po +0 -18
- data/samples/po/el/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/el/hello_noop.edit.po +0 -26
- data/samples/po/el/hello_noop.po.time_stamp +0 -0
- data/samples/po/el/hello_plural.edit.po +0 -28
- data/samples/po/el/hello_plural.po.time_stamp +0 -0
- data/samples/po/el/hello_tk.edit.po +0 -22
- data/samples/po/el/hello_tk.po.time_stamp +0 -0
- data/samples/po/eo/hello.edit.po +0 -23
- data/samples/po/eo/hello.po.time_stamp +0 -0
- data/samples/po/eo/hello2.edit.po +0 -33
- data/samples/po/eo/hello2.po.time_stamp +0 -0
- data/samples/po/eo/hello_glade2.edit.po +0 -36
- data/samples/po/eo/hello_glade2.po.time_stamp +0 -0
- data/samples/po/eo/hello_gtk2.edit.po +0 -21
- data/samples/po/eo/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/eo/hello_gtk_builder.edit.po +0 -18
- data/samples/po/eo/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/eo/hello_noop.edit.po +0 -25
- data/samples/po/eo/hello_noop.po.time_stamp +0 -0
- data/samples/po/eo/hello_plural.edit.po +0 -28
- data/samples/po/eo/hello_plural.po.time_stamp +0 -0
- data/samples/po/eo/hello_tk.edit.po +0 -22
- data/samples/po/eo/hello_tk.po.time_stamp +0 -0
- data/samples/po/es/hello.edit.po +0 -21
- data/samples/po/es/hello.po.time_stamp +0 -0
- data/samples/po/es/hello2.edit.po +0 -30
- data/samples/po/es/hello2.po.time_stamp +0 -0
- data/samples/po/es/hello_glade2.edit.po +0 -33
- data/samples/po/es/hello_glade2.po.time_stamp +0 -0
- data/samples/po/es/hello_gtk2.edit.po +0 -19
- data/samples/po/es/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/es/hello_gtk_builder.edit.po +0 -18
- data/samples/po/es/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/es/hello_noop.edit.po +0 -23
- data/samples/po/es/hello_noop.po.time_stamp +0 -0
- data/samples/po/es/hello_plural.edit.po +0 -26
- data/samples/po/es/hello_plural.po.time_stamp +0 -0
- data/samples/po/es/hello_tk.edit.po +0 -19
- data/samples/po/es/hello_tk.po.time_stamp +0 -0
- data/samples/po/fr/hello.edit.po +0 -19
- data/samples/po/fr/hello.po.time_stamp +0 -0
- data/samples/po/fr/hello2.edit.po +0 -29
- data/samples/po/fr/hello2.po.time_stamp +0 -0
- data/samples/po/fr/hello_glade2.edit.po +0 -32
- data/samples/po/fr/hello_glade2.po.time_stamp +0 -0
- data/samples/po/fr/hello_gtk2.edit.po +0 -17
- data/samples/po/fr/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/fr/hello_gtk_builder.edit.po +0 -18
- data/samples/po/fr/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/fr/hello_noop.edit.po +0 -21
- data/samples/po/fr/hello_noop.po.time_stamp +0 -0
- data/samples/po/fr/hello_plural.edit.po +0 -24
- data/samples/po/fr/hello_plural.po.time_stamp +0 -0
- data/samples/po/fr/hello_tk.edit.po +0 -16
- data/samples/po/fr/hello_tk.po.time_stamp +0 -0
- data/samples/po/hello.pot +0 -24
- data/samples/po/hello2.pot +0 -33
- data/samples/po/hello_glade2.pot +0 -31
- data/samples/po/hello_gtk2.pot +0 -23
- data/samples/po/hello_gtk_builder.pot +0 -20
- data/samples/po/hello_noop.pot +0 -27
- data/samples/po/hello_plural.pot +0 -27
- data/samples/po/hello_tk.pot +0 -23
- data/samples/po/hr/hello.edit.po +0 -24
- data/samples/po/hr/hello.po.time_stamp +0 -0
- data/samples/po/hr/hello2.edit.po +0 -34
- data/samples/po/hr/hello2.po.time_stamp +0 -0
- data/samples/po/hr/hello_glade2.edit.po +0 -36
- data/samples/po/hr/hello_glade2.po.time_stamp +0 -0
- data/samples/po/hr/hello_gtk2.edit.po +0 -22
- data/samples/po/hr/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/hr/hello_gtk_builder.edit.po +0 -19
- data/samples/po/hr/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/hr/hello_noop.edit.po +0 -26
- data/samples/po/hr/hello_noop.po.time_stamp +0 -0
- data/samples/po/hr/hello_plural.edit.po +0 -30
- data/samples/po/hr/hello_plural.po.time_stamp +0 -0
- data/samples/po/hr/hello_tk.edit.po +0 -22
- data/samples/po/hr/hello_tk.po.time_stamp +0 -0
- data/samples/po/hu/hello.edit.po +0 -23
- data/samples/po/hu/hello.po.time_stamp +0 -0
- data/samples/po/hu/hello2.edit.po +0 -33
- data/samples/po/hu/hello2.po.time_stamp +0 -0
- data/samples/po/hu/hello_glade2.edit.po +0 -36
- data/samples/po/hu/hello_glade2.po.time_stamp +0 -0
- data/samples/po/hu/hello_gtk2.edit.po +0 -21
- data/samples/po/hu/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/hu/hello_gtk_builder.edit.po +0 -18
- data/samples/po/hu/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/hu/hello_noop.edit.po +0 -25
- data/samples/po/hu/hello_noop.po.time_stamp +0 -0
- data/samples/po/hu/hello_plural.edit.po +0 -28
- data/samples/po/hu/hello_plural.po.time_stamp +0 -0
- data/samples/po/hu/hello_tk.edit.po +0 -22
- data/samples/po/hu/hello_tk.po.time_stamp +0 -0
- data/samples/po/it/hello.edit.po +0 -20
- data/samples/po/it/hello.po.time_stamp +0 -0
- data/samples/po/it/hello2.edit.po +0 -30
- data/samples/po/it/hello2.po.time_stamp +0 -0
- data/samples/po/it/hello_glade2.edit.po +0 -33
- data/samples/po/it/hello_glade2.po.time_stamp +0 -0
- data/samples/po/it/hello_gtk2.edit.po +0 -19
- data/samples/po/it/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/it/hello_gtk_builder.edit.po +0 -18
- data/samples/po/it/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/it/hello_noop.edit.po +0 -22
- data/samples/po/it/hello_noop.po.time_stamp +0 -0
- data/samples/po/it/hello_plural.edit.po +0 -26
- data/samples/po/it/hello_plural.po.time_stamp +0 -0
- data/samples/po/it/hello_tk.edit.po +0 -19
- data/samples/po/it/hello_tk.po.time_stamp +0 -0
- data/samples/po/ja/hello.edit.po +0 -19
- data/samples/po/ja/hello.po.time_stamp +0 -0
- data/samples/po/ja/hello2.edit.po +0 -29
- data/samples/po/ja/hello2.po.time_stamp +0 -0
- data/samples/po/ja/hello_glade2.edit.po +0 -31
- data/samples/po/ja/hello_glade2.po.time_stamp +0 -0
- data/samples/po/ja/hello_gtk2.edit.po +0 -17
- data/samples/po/ja/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/ja/hello_gtk_builder.edit.po +0 -18
- data/samples/po/ja/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/ja/hello_noop.edit.po +0 -21
- data/samples/po/ja/hello_noop.po.time_stamp +0 -0
- data/samples/po/ja/hello_plural.edit.po +0 -24
- data/samples/po/ja/hello_plural.po.time_stamp +0 -0
- data/samples/po/ja/hello_tk.edit.po +0 -16
- data/samples/po/ja/hello_tk.po.time_stamp +0 -0
- data/samples/po/ko/hello.edit.po +0 -19
- data/samples/po/ko/hello.po.time_stamp +0 -0
- data/samples/po/ko/hello2.edit.po +0 -29
- data/samples/po/ko/hello2.po.time_stamp +0 -0
- data/samples/po/ko/hello_glade2.edit.po +0 -33
- data/samples/po/ko/hello_glade2.po.time_stamp +0 -0
- data/samples/po/ko/hello_gtk2.edit.po +0 -17
- data/samples/po/ko/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/ko/hello_gtk_builder.edit.po +0 -18
- data/samples/po/ko/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/ko/hello_noop.edit.po +0 -21
- data/samples/po/ko/hello_noop.po.time_stamp +0 -0
- data/samples/po/ko/hello_plural.edit.po +0 -28
- data/samples/po/ko/hello_plural.po.time_stamp +0 -0
- data/samples/po/ko/hello_tk.edit.po +0 -18
- data/samples/po/ko/hello_tk.po.time_stamp +0 -0
- data/samples/po/lv/hello.edit.po +0 -24
- data/samples/po/lv/hello.po.time_stamp +0 -0
- data/samples/po/lv/hello2.edit.po +0 -34
- data/samples/po/lv/hello2.po.time_stamp +0 -0
- data/samples/po/lv/hello_glade2.edit.po +0 -36
- data/samples/po/lv/hello_glade2.po.time_stamp +0 -0
- data/samples/po/lv/hello_gtk2.edit.po +0 -22
- data/samples/po/lv/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/lv/hello_gtk_builder.edit.po +0 -18
- data/samples/po/lv/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/lv/hello_noop.edit.po +0 -26
- data/samples/po/lv/hello_noop.po.time_stamp +0 -0
- data/samples/po/lv/hello_plural.edit.po +0 -28
- data/samples/po/lv/hello_plural.po.time_stamp +0 -0
- data/samples/po/lv/hello_tk.edit.po +0 -22
- data/samples/po/lv/hello_tk.po.time_stamp +0 -0
- data/samples/po/nb/hello.edit.po +0 -23
- data/samples/po/nb/hello.po.time_stamp +0 -0
- data/samples/po/nb/hello2.edit.po +0 -33
- data/samples/po/nb/hello2.po.time_stamp +0 -0
- data/samples/po/nb/hello_glade2.edit.po +0 -35
- data/samples/po/nb/hello_glade2.po.time_stamp +0 -0
- data/samples/po/nb/hello_gtk2.edit.po +0 -21
- data/samples/po/nb/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/nb/hello_gtk_builder.edit.po +0 -18
- data/samples/po/nb/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/nb/hello_noop.edit.po +0 -25
- data/samples/po/nb/hello_noop.po.time_stamp +0 -0
- data/samples/po/nb/hello_plural.edit.po +0 -28
- data/samples/po/nb/hello_plural.po.time_stamp +0 -0
- data/samples/po/nb/hello_tk.edit.po +0 -22
- data/samples/po/nb/hello_tk.po.time_stamp +0 -0
- data/samples/po/nl/hello.edit.po +0 -24
- data/samples/po/nl/hello.po.time_stamp +0 -0
- data/samples/po/nl/hello2.edit.po +0 -34
- data/samples/po/nl/hello2.po.time_stamp +0 -0
- data/samples/po/nl/hello_glade2.edit.po +0 -36
- data/samples/po/nl/hello_glade2.po.time_stamp +0 -0
- data/samples/po/nl/hello_gtk2.edit.po +0 -22
- data/samples/po/nl/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/nl/hello_gtk_builder.edit.po +0 -18
- data/samples/po/nl/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/nl/hello_noop.edit.po +0 -26
- data/samples/po/nl/hello_noop.po.time_stamp +0 -0
- data/samples/po/nl/hello_plural.edit.po +0 -28
- data/samples/po/nl/hello_plural.po.time_stamp +0 -0
- data/samples/po/nl/hello_tk.edit.po +0 -22
- data/samples/po/nl/hello_tk.po.time_stamp +0 -0
- data/samples/po/pt_BR/hello.edit.po +0 -22
- data/samples/po/pt_BR/hello.po.time_stamp +0 -0
- data/samples/po/pt_BR/hello2.edit.po +0 -32
- data/samples/po/pt_BR/hello2.po.time_stamp +0 -0
- data/samples/po/pt_BR/hello_glade2.edit.po +0 -34
- data/samples/po/pt_BR/hello_glade2.po.time_stamp +0 -0
- data/samples/po/pt_BR/hello_gtk2.edit.po +0 -20
- data/samples/po/pt_BR/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/pt_BR/hello_gtk_builder.edit.po +0 -18
- data/samples/po/pt_BR/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/pt_BR/hello_noop.edit.po +0 -24
- data/samples/po/pt_BR/hello_noop.po.time_stamp +0 -0
- data/samples/po/pt_BR/hello_plural.edit.po +0 -26
- data/samples/po/pt_BR/hello_plural.po.time_stamp +0 -0
- data/samples/po/pt_BR/hello_tk.edit.po +0 -21
- data/samples/po/pt_BR/hello_tk.po.time_stamp +0 -0
- data/samples/po/ru/hello.edit.po +0 -22
- data/samples/po/ru/hello.po.time_stamp +0 -0
- data/samples/po/ru/hello2.edit.po +0 -32
- data/samples/po/ru/hello2.po.time_stamp +0 -0
- data/samples/po/ru/hello_glade2.edit.po +0 -34
- data/samples/po/ru/hello_glade2.po.time_stamp +0 -0
- data/samples/po/ru/hello_gtk2.edit.po +0 -20
- data/samples/po/ru/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/ru/hello_gtk_builder.edit.po +0 -19
- data/samples/po/ru/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/ru/hello_noop.edit.po +0 -24
- data/samples/po/ru/hello_noop.po.time_stamp +0 -0
- data/samples/po/ru/hello_plural.edit.po +0 -30
- data/samples/po/ru/hello_plural.po.time_stamp +0 -0
- data/samples/po/ru/hello_tk.edit.po +0 -20
- data/samples/po/ru/hello_tk.po.time_stamp +0 -0
- data/samples/po/sr/hello.edit.po +0 -23
- data/samples/po/sr/hello.po.time_stamp +0 -0
- data/samples/po/sr/hello2.edit.po +0 -33
- data/samples/po/sr/hello2.po.time_stamp +0 -0
- data/samples/po/sr/hello_glade2.edit.po +0 -37
- data/samples/po/sr/hello_glade2.po.time_stamp +0 -0
- data/samples/po/sr/hello_gtk2.edit.po +0 -21
- data/samples/po/sr/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/sr/hello_gtk_builder.edit.po +0 -19
- data/samples/po/sr/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/sr/hello_noop.edit.po +0 -25
- data/samples/po/sr/hello_noop.po.time_stamp +0 -0
- data/samples/po/sr/hello_plural.edit.po +0 -29
- data/samples/po/sr/hello_plural.po.time_stamp +0 -0
- data/samples/po/sr/hello_tk.edit.po +0 -23
- data/samples/po/sr/hello_tk.po.time_stamp +0 -0
- data/samples/po/sv/hello.edit.po +0 -21
- data/samples/po/sv/hello.po.time_stamp +0 -0
- data/samples/po/sv/hello2.edit.po +0 -30
- data/samples/po/sv/hello2.po.time_stamp +0 -0
- data/samples/po/sv/hello_glade2.edit.po +0 -32
- data/samples/po/sv/hello_glade2.po.time_stamp +0 -0
- data/samples/po/sv/hello_gtk2.edit.po +0 -18
- data/samples/po/sv/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/sv/hello_gtk_builder.edit.po +0 -18
- data/samples/po/sv/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/sv/hello_noop.edit.po +0 -22
- data/samples/po/sv/hello_noop.po.time_stamp +0 -0
- data/samples/po/sv/hello_plural.edit.po +0 -25
- data/samples/po/sv/hello_plural.po.time_stamp +0 -0
- data/samples/po/sv/hello_tk.edit.po +0 -18
- data/samples/po/sv/hello_tk.po.time_stamp +0 -0
- data/samples/po/uk/hello.edit.po +0 -23
- data/samples/po/uk/hello.po.time_stamp +0 -0
- data/samples/po/uk/hello2.edit.po +0 -33
- data/samples/po/uk/hello2.po.time_stamp +0 -0
- data/samples/po/uk/hello_glade2.edit.po +0 -39
- data/samples/po/uk/hello_glade2.po.time_stamp +0 -0
- data/samples/po/uk/hello_gtk2.edit.po +0 -21
- data/samples/po/uk/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/uk/hello_gtk_builder.edit.po +0 -19
- data/samples/po/uk/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/uk/hello_noop.edit.po +0 -25
- data/samples/po/uk/hello_noop.po.time_stamp +0 -0
- data/samples/po/uk/hello_plural.edit.po +0 -30
- data/samples/po/uk/hello_plural.po.time_stamp +0 -0
- data/samples/po/uk/hello_tk.edit.po +0 -25
- data/samples/po/uk/hello_tk.po.time_stamp +0 -0
- data/samples/po/vi/hello.edit.po +0 -23
- data/samples/po/vi/hello.po.time_stamp +0 -0
- data/samples/po/vi/hello2.edit.po +0 -33
- data/samples/po/vi/hello2.po.time_stamp +0 -0
- data/samples/po/vi/hello_glade2.edit.po +0 -36
- data/samples/po/vi/hello_glade2.po.time_stamp +0 -0
- data/samples/po/vi/hello_gtk2.edit.po +0 -21
- data/samples/po/vi/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/vi/hello_gtk_builder.edit.po +0 -18
- data/samples/po/vi/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/vi/hello_noop.edit.po +0 -25
- data/samples/po/vi/hello_noop.po.time_stamp +0 -0
- data/samples/po/vi/hello_plural.edit.po +0 -28
- data/samples/po/vi/hello_plural.po.time_stamp +0 -0
- data/samples/po/vi/hello_tk.edit.po +0 -22
- data/samples/po/vi/hello_tk.po.time_stamp +0 -0
- data/samples/po/zh/hello.edit.po +0 -24
- data/samples/po/zh/hello.po.time_stamp +0 -0
- data/samples/po/zh/hello2.edit.po +0 -34
- data/samples/po/zh/hello2.po.time_stamp +0 -0
- data/samples/po/zh/hello_glade2.edit.po +0 -36
- data/samples/po/zh/hello_glade2.po.time_stamp +0 -0
- data/samples/po/zh/hello_gtk2.edit.po +0 -22
- data/samples/po/zh/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/zh/hello_gtk_builder.edit.po +0 -18
- data/samples/po/zh/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/zh/hello_noop.edit.po +0 -26
- data/samples/po/zh/hello_noop.po.time_stamp +0 -0
- data/samples/po/zh/hello_plural.edit.po +0 -28
- data/samples/po/zh/hello_plural.po.time_stamp +0 -0
- data/samples/po/zh/hello_tk.edit.po +0 -22
- data/samples/po/zh/hello_tk.po.time_stamp +0 -0
- data/samples/po/zh_TW/hello.edit.po +0 -26
- data/samples/po/zh_TW/hello.po.time_stamp +0 -0
- data/samples/po/zh_TW/hello2.edit.po +0 -36
- data/samples/po/zh_TW/hello2.po.time_stamp +0 -0
- data/samples/po/zh_TW/hello_glade2.edit.po +0 -38
- data/samples/po/zh_TW/hello_glade2.po.time_stamp +0 -0
- data/samples/po/zh_TW/hello_gtk2.edit.po +0 -23
- data/samples/po/zh_TW/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/zh_TW/hello_gtk_builder.edit.po +0 -18
- data/samples/po/zh_TW/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/zh_TW/hello_noop.edit.po +0 -28
- data/samples/po/zh_TW/hello_noop.po.time_stamp +0 -0
- data/samples/po/zh_TW/hello_plural.edit.po +0 -30
- data/samples/po/zh_TW/hello_plural.po.time_stamp +0 -0
- data/samples/po/zh_TW/hello_tk.edit.po +0 -24
- data/samples/po/zh_TW/hello_tk.po.time_stamp +0 -0
- data/test/fixtures/gtk_builder_ui_definitions.ui~ +0 -68
- data/test/locale/cr/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/da/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/da/LC_MESSAGES/plural_error.mo +0 -0
- data/test/locale/fr/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/fr/LC_MESSAGES/plural_error.mo +0 -0
- data/test/locale/fr/LC_MESSAGES/test1.mo +0 -0
- data/test/locale/fr/LC_MESSAGES/test2.mo +0 -0
- data/test/locale/fr_BE/LC_MESSAGES/test1.mo +0 -0
- data/test/locale/fr_BE_Foo/LC_MESSAGES/test1.mo +0 -0
- data/test/locale/ir/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/_.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/backslash.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/hello.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/non_ascii.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/np_.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/ns_.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/p_.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/plural_error.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/rubyparser.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/s_.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/test1.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/test2.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/test3.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/untranslated.mo +0 -0
- data/test/locale/la/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/la/LC_MESSAGES/plural_error.mo +0 -0
- data/test/locale/li/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/li/LC_MESSAGES/plural_error.mo +0 -0
- data/test/locale/po/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/sl/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/zh_Hant/LC_MESSAGES/test1.mo +0 -0
- data/test/po/_.pot +0 -186
- data/test/po/backslash.pot +0 -21
- data/test/po/hello.pot +0 -23
- data/test/po/ja/_.edit.po +0 -186
- data/test/po/ja/_.po.time_stamp +0 -0
- data/test/po/ja/backslash.edit.po +0 -19
- data/test/po/ja/backslash.po.time_stamp +0 -0
- data/test/po/ja/hello.edit.po +0 -23
- data/test/po/ja/hello.po.time_stamp +0 -0
- data/test/po/ja/non_ascii.edit.po +0 -19
- data/test/po/ja/non_ascii.po.time_stamp +0 -0
- data/test/po/ja/np_.edit.po +0 -44
- data/test/po/ja/np_.po.time_stamp +0 -0
- data/test/po/ja/ns_.edit.po +0 -69
- data/test/po/ja/ns_.po.time_stamp +0 -0
- data/test/po/ja/p_.edit.po +0 -47
- data/test/po/ja/p_.po.time_stamp +0 -0
- data/test/po/ja/s_.edit.po +0 -50
- data/test/po/ja/s_.po.time_stamp +0 -0
- data/test/po/ja/untranslated.edit.po +0 -21
- data/test/po/ja/untranslated.po.time_stamp +0 -0
- data/test/po/non_ascii.pot +0 -23
- data/test/po/np_.pot +0 -48
- data/test/po/ns_.pot +0 -73
- data/test/po/p_.pot +0 -50
- data/test/po/s_.pot +0 -55
- data/test/po/untranslated.pot +0 -23
data/test/tools/test_msginit.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (C) 2012 Haruka Yoshihara <yoshihara@clear-code.com>
|
|
2
|
-
# Copyright (C) 2012-
|
|
2
|
+
# Copyright (C) 2012-2023 Sutou Kouhei <kou@clear-code.com>
|
|
3
3
|
#
|
|
4
4
|
# License: Ruby's or LGPL
|
|
5
5
|
#
|
|
@@ -32,12 +32,10 @@ class TestToolsMsgInit < Test::Unit::TestCase
|
|
|
32
32
|
stub(@msginit).revision_date {@po_revision_date}
|
|
33
33
|
|
|
34
34
|
Locale.current = "ja_JP.UTF-8"
|
|
35
|
-
end
|
|
36
35
|
|
|
37
|
-
def run(*args, &blcok)
|
|
38
36
|
Dir.mktmpdir do |dir|
|
|
39
37
|
Dir.chdir(dir) do
|
|
40
|
-
|
|
38
|
+
yield
|
|
41
39
|
end
|
|
42
40
|
end
|
|
43
41
|
end
|
|
@@ -51,6 +49,10 @@ class TestToolsMsgInit < Test::Unit::TestCase
|
|
|
51
49
|
Locale.current.language
|
|
52
50
|
end
|
|
53
51
|
|
|
52
|
+
def current_charset
|
|
53
|
+
Locale.current.charset
|
|
54
|
+
end
|
|
55
|
+
|
|
54
56
|
def translator_name
|
|
55
57
|
"me"
|
|
56
58
|
end
|
|
@@ -59,6 +61,10 @@ class TestToolsMsgInit < Test::Unit::TestCase
|
|
|
59
61
|
"me@example.com"
|
|
60
62
|
end
|
|
61
63
|
|
|
64
|
+
def template_charset
|
|
65
|
+
"CHARSET"
|
|
66
|
+
end
|
|
67
|
+
|
|
62
68
|
def create_pot_file(path, options=nil)
|
|
63
69
|
options ||= {}
|
|
64
70
|
File.open(path, "w") do |pot_file|
|
|
@@ -79,6 +85,7 @@ class TestToolsMsgInit < Test::Unit::TestCase
|
|
|
79
85
|
options = default_po_header_options.merge(options)
|
|
80
86
|
package_name = options[:package_name] || default_package_name
|
|
81
87
|
have_plural_forms = options[:have_plural_forms] || true
|
|
88
|
+
charset = options[:charset] || "UTF-8"
|
|
82
89
|
header = <<EOF
|
|
83
90
|
# SOME DESCRIPTIVE TITLE.
|
|
84
91
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
@@ -95,7 +102,7 @@ msgstr ""
|
|
|
95
102
|
"Language: \\n"
|
|
96
103
|
"Language-Team: LANGUAGE <LL@li.org>\\n"
|
|
97
104
|
"MIME-Version: 1.0\\n"
|
|
98
|
-
"Content-Type: text/plain; charset
|
|
105
|
+
"Content-Type: text/plain; charset=#{charset}\\n"
|
|
99
106
|
"Content-Transfer-Encoding: 8bit\\n"
|
|
100
107
|
EOF
|
|
101
108
|
if have_plural_forms
|
|
@@ -111,6 +118,7 @@ EOF
|
|
|
111
118
|
name = options[:translator_name] || "FULL NAME"
|
|
112
119
|
email = options[:translator_email] || "EMAIL@ADDRESS"
|
|
113
120
|
language_name = Locale::Info.get_language(language).name
|
|
121
|
+
charset = options[:charset] || "UTF-8"
|
|
114
122
|
plural_forms = @msginit.send(:plural_forms, language)
|
|
115
123
|
|
|
116
124
|
<<EOF
|
|
@@ -128,7 +136,7 @@ msgstr ""
|
|
|
128
136
|
"Language: #{locale}\\n"
|
|
129
137
|
"Language-Team: #{language_name}\\n"
|
|
130
138
|
"MIME-Version: 1.0\\n"
|
|
131
|
-
"Content-Type: text/plain; charset
|
|
139
|
+
"Content-Type: text/plain; charset=#{charset}\\n"
|
|
132
140
|
"Content-Transfer-Encoding: 8bit\\n"
|
|
133
141
|
"Plural-Forms: #{plural_forms}\\n"
|
|
134
142
|
EOF
|
|
@@ -171,9 +179,11 @@ EOF
|
|
|
171
179
|
|
|
172
180
|
class TestOutput < self
|
|
173
181
|
def setup
|
|
174
|
-
super
|
|
175
|
-
|
|
176
|
-
|
|
182
|
+
super do
|
|
183
|
+
@pot_file_path = "test.pot"
|
|
184
|
+
create_pot_file(@pot_file_path)
|
|
185
|
+
yield
|
|
186
|
+
end
|
|
177
187
|
end
|
|
178
188
|
|
|
179
189
|
def test_default
|
|
@@ -196,8 +206,8 @@ EOF
|
|
|
196
206
|
end
|
|
197
207
|
|
|
198
208
|
class TestLocale < self
|
|
199
|
-
def run_msginit(locale)
|
|
200
|
-
create_pot_file("test.pot")
|
|
209
|
+
def run_msginit(locale, pot_charset=nil)
|
|
210
|
+
create_pot_file("test.pot", charset: pot_charset)
|
|
201
211
|
po_file_path = "output.po"
|
|
202
212
|
@msginit.run("--output", po_file_path,
|
|
203
213
|
"--locale", locale)
|
|
@@ -224,6 +234,50 @@ EOF
|
|
|
224
234
|
assert_equal(po_header(locale, language),
|
|
225
235
|
run_msginit("#{locale}.#{charset}"))
|
|
226
236
|
end
|
|
237
|
+
|
|
238
|
+
def test_language_charset_with_template_charset
|
|
239
|
+
locale = "en"
|
|
240
|
+
assert_equal(po_header(locale, locale),
|
|
241
|
+
run_msginit(locale, template_charset))
|
|
242
|
+
end
|
|
243
|
+
|
|
244
|
+
def test_language_region_with_template_charset
|
|
245
|
+
locale = "en_US"
|
|
246
|
+
language = "en"
|
|
247
|
+
assert_equal(po_header(locale, language),
|
|
248
|
+
run_msginit(locale, template_charset))
|
|
249
|
+
end
|
|
250
|
+
|
|
251
|
+
def test_language_region_charset_with_template_charset
|
|
252
|
+
locale = "en_US"
|
|
253
|
+
language = "en"
|
|
254
|
+
charset = "UTF-8"
|
|
255
|
+
assert_equal(po_header(locale, language),
|
|
256
|
+
run_msginit("#{locale}.#{charset}", template_charset))
|
|
257
|
+
end
|
|
258
|
+
end
|
|
259
|
+
|
|
260
|
+
class TestCurrentCharset < self
|
|
261
|
+
def run_msginit(pot_charset)
|
|
262
|
+
create_pot_file("test.pot", charset: pot_charset)
|
|
263
|
+
po_file_path = "output.po"
|
|
264
|
+
@msginit.run("--output", po_file_path)
|
|
265
|
+
File.read(po_file_path)
|
|
266
|
+
end
|
|
267
|
+
|
|
268
|
+
def po_header(options)
|
|
269
|
+
super(current_locale, current_language, options)
|
|
270
|
+
end
|
|
271
|
+
|
|
272
|
+
def test_template_charset
|
|
273
|
+
assert_equal(po_header(charset: current_charset),
|
|
274
|
+
run_msginit(template_charset))
|
|
275
|
+
end
|
|
276
|
+
|
|
277
|
+
def test_no_template_charset
|
|
278
|
+
assert_equal(po_header(charset: "ASCII"),
|
|
279
|
+
run_msginit("ASCII"))
|
|
280
|
+
end
|
|
227
281
|
end
|
|
228
282
|
|
|
229
283
|
class TestTranslator < self
|
|
@@ -313,8 +367,10 @@ EOF
|
|
|
313
367
|
|
|
314
368
|
class TestPluralForms < self
|
|
315
369
|
def setup
|
|
316
|
-
super
|
|
317
370
|
omit("Red Datasets is required") unless defined?(Datasets::CLDRPlurals)
|
|
371
|
+
super do
|
|
372
|
+
yield
|
|
373
|
+
end
|
|
318
374
|
end
|
|
319
375
|
|
|
320
376
|
def run_msginit(pot_header_options={})
|
|
@@ -364,7 +420,7 @@ EOF
|
|
|
364
420
|
def test_ro
|
|
365
421
|
assert_equal("nplurals=3; " +
|
|
366
422
|
"plural=(n == 1) ? 0 : " +
|
|
367
|
-
"(n == 0) || ((n % 100) >=
|
|
423
|
+
"(n == 0) || (n != 1) && ((n % 100) >= 1 && (n % 100) <= 19) ? 1 : 2;",
|
|
368
424
|
@msginit.__send__(:plural_forms, "ro"))
|
|
369
425
|
end
|
|
370
426
|
|
data/test/tools/test_msgmerge.rb
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
#
|
|
2
|
-
#
|
|
3
|
-
# Copyright (C) 2012-2020 Sutou Kouhei <kou@clear-code.com>
|
|
1
|
+
# Copyright (C) 2012-2023 Sutou Kouhei <kou@clear-code.com>
|
|
4
2
|
# Copyright (C) 2010 Eddie Lau <tatonlto@gmail.com>
|
|
5
3
|
#
|
|
6
4
|
# License: Ruby's or LGPL
|
|
@@ -654,6 +652,46 @@ msgstr ""
|
|
|
654
652
|
end
|
|
655
653
|
end
|
|
656
654
|
|
|
655
|
+
class TestUseOneLinePerReference < self
|
|
656
|
+
def pot_content
|
|
657
|
+
super + <<-POT
|
|
658
|
+
|
|
659
|
+
#: hello.rb:10
|
|
660
|
+
#: hello.rb:20
|
|
661
|
+
#: hello.rb:30
|
|
662
|
+
msgid "Good morning"
|
|
663
|
+
msgstr ""
|
|
664
|
+
POT
|
|
665
|
+
end
|
|
666
|
+
|
|
667
|
+
def test_with_wrap
|
|
668
|
+
@msgmerge.run("--update",
|
|
669
|
+
"--wrap",
|
|
670
|
+
"--use-one-line-per-reference",
|
|
671
|
+
@po_file_path, @pot_file_path)
|
|
672
|
+
assert_equal(<<-PO, File.read(@po_file_path))
|
|
673
|
+
#{po_header(@pot_formatted_time, @po_formatted_time)}
|
|
674
|
+
#: hello.rb:1
|
|
675
|
+
msgid "Hello"
|
|
676
|
+
msgstr ""
|
|
677
|
+
|
|
678
|
+
#: hello.rb:2
|
|
679
|
+
msgid "World"
|
|
680
|
+
msgstr "Translated World"
|
|
681
|
+
|
|
682
|
+
#: hello.rb:3
|
|
683
|
+
msgid "Good-bye"
|
|
684
|
+
msgstr ""
|
|
685
|
+
|
|
686
|
+
#: hello.rb:10
|
|
687
|
+
#: hello.rb:20
|
|
688
|
+
#: hello.rb:30
|
|
689
|
+
msgid "Good morning"
|
|
690
|
+
msgstr ""
|
|
691
|
+
PO
|
|
692
|
+
end
|
|
693
|
+
end
|
|
694
|
+
|
|
657
695
|
class TestWidth < self
|
|
658
696
|
def pot_content
|
|
659
697
|
<<-POT
|
data/test/tools/test_xgettext.rb
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
#
|
|
2
|
-
#
|
|
3
|
-
# Copyright (C) 2012-2020 Sutou Kouhei <kou@clear-code.com>
|
|
1
|
+
# Copyright (C) 2012-2023 Sutou Kouhei <kou@clear-code.com>
|
|
4
2
|
# Copyright (C) 2012 Haruka Yoshihara <yoshihara@clear-code.com>
|
|
5
3
|
#
|
|
6
4
|
# License: Ruby's or LGPL
|
|
@@ -116,6 +114,105 @@ msgid "Hello"
|
|
|
116
114
|
msgstr ""
|
|
117
115
|
EOP
|
|
118
116
|
end
|
|
117
|
+
|
|
118
|
+
def test_use_one_line_per_reference
|
|
119
|
+
pot_content = generate(<<-RUBY, "--use-one-line-per-reference")
|
|
120
|
+
_("Hello")
|
|
121
|
+
_("Hello")
|
|
122
|
+
RUBY
|
|
123
|
+
assert_equal(<<-POT, pot_content)
|
|
124
|
+
#{header}
|
|
125
|
+
#: ../lib/xgettext.rb:1
|
|
126
|
+
#: ../lib/xgettext.rb:2
|
|
127
|
+
msgid "Hello"
|
|
128
|
+
msgstr ""
|
|
129
|
+
POT
|
|
130
|
+
end
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
class TestParser < self
|
|
134
|
+
# Default ERB parser (don't find anything after "case")
|
|
135
|
+
def test_erb
|
|
136
|
+
rhtml = <<-EOR
|
|
137
|
+
<div>
|
|
138
|
+
<%= _('Hello') %>
|
|
139
|
+
<% case 1 %>
|
|
140
|
+
<% end %>
|
|
141
|
+
<%= _('World') %>
|
|
142
|
+
</div>
|
|
143
|
+
EOR
|
|
144
|
+
|
|
145
|
+
File.open(@rhtml_file_path, "w") do |rhtml_file|
|
|
146
|
+
rhtml_file.puts(rhtml)
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
@xgettext.run(
|
|
150
|
+
"--output", @pot_file_path,
|
|
151
|
+
@rhtml_file_path
|
|
152
|
+
)
|
|
153
|
+
|
|
154
|
+
pot_content = File.read(@pot_file_path)
|
|
155
|
+
|
|
156
|
+
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.0.0')
|
|
157
|
+
expected_content = <<-EOP
|
|
158
|
+
#{header}
|
|
159
|
+
#: ../templates/xgettext.rhtml:2
|
|
160
|
+
msgid "Hello"
|
|
161
|
+
msgstr ""
|
|
162
|
+
|
|
163
|
+
#: ../templates/xgettext.rhtml:5
|
|
164
|
+
msgid "World"
|
|
165
|
+
msgstr ""
|
|
166
|
+
EOP
|
|
167
|
+
else
|
|
168
|
+
# "World" not detected. see PR #91
|
|
169
|
+
expected_content = <<-EOP
|
|
170
|
+
#{header}
|
|
171
|
+
#: ../templates/xgettext.rhtml:2
|
|
172
|
+
msgid "Hello"
|
|
173
|
+
msgstr ""
|
|
174
|
+
EOP
|
|
175
|
+
end
|
|
176
|
+
|
|
177
|
+
assert_equal(expected_content, pot_content)
|
|
178
|
+
end
|
|
179
|
+
|
|
180
|
+
# Optional Erubi parser (find text after "case")
|
|
181
|
+
def test_erubi
|
|
182
|
+
rhtml = <<-EOR
|
|
183
|
+
<div>
|
|
184
|
+
<%= _('Hello') %>
|
|
185
|
+
<% case 1 %>
|
|
186
|
+
<% end %>
|
|
187
|
+
<%= _('World') %>
|
|
188
|
+
</div>
|
|
189
|
+
EOR
|
|
190
|
+
|
|
191
|
+
File.open(@rhtml_file_path, "w") do |rhtml_file|
|
|
192
|
+
rhtml_file.puts(rhtml)
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
@xgettext.run(
|
|
196
|
+
"--output", @pot_file_path,
|
|
197
|
+
'--require', 'gettext/tools/parser/erubi',
|
|
198
|
+
'--parser', 'GetText::ErubiParser',
|
|
199
|
+
@rhtml_file_path
|
|
200
|
+
)
|
|
201
|
+
|
|
202
|
+
pot_content = File.read(@pot_file_path)
|
|
203
|
+
expected_content = <<-EOP
|
|
204
|
+
#{header}
|
|
205
|
+
#: ../templates/xgettext.rhtml:2
|
|
206
|
+
msgid "Hello"
|
|
207
|
+
msgstr ""
|
|
208
|
+
|
|
209
|
+
#: ../templates/xgettext.rhtml:5
|
|
210
|
+
msgid "World"
|
|
211
|
+
msgstr ""
|
|
212
|
+
EOP
|
|
213
|
+
|
|
214
|
+
assert_equal(expected_content, pot_content)
|
|
215
|
+
end
|
|
119
216
|
end
|
|
120
217
|
|
|
121
218
|
class TestEncoding < self
|