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
|
@@ -16,3 +16,15 @@ msgstr ""
|
|
|
16
16
|
"Content-Transfer-Encoding: 8bit\n"
|
|
17
17
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
18
18
|
"\n"
|
|
19
|
+
|
|
20
|
+
msgid "window1"
|
|
21
|
+
msgstr ""
|
|
22
|
+
|
|
23
|
+
msgid ""
|
|
24
|
+
"first line\n"
|
|
25
|
+
"second line\n"
|
|
26
|
+
"third line"
|
|
27
|
+
msgstr ""
|
|
28
|
+
|
|
29
|
+
msgid "<Hello world>"
|
|
30
|
+
msgstr ""
|
|
@@ -16,3 +16,15 @@ msgstr ""
|
|
|
16
16
|
"Content-Transfer-Encoding: 8bit\n"
|
|
17
17
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
18
18
|
"\n"
|
|
19
|
+
|
|
20
|
+
msgid "window1"
|
|
21
|
+
msgstr ""
|
|
22
|
+
|
|
23
|
+
msgid ""
|
|
24
|
+
"first line\n"
|
|
25
|
+
"second line\n"
|
|
26
|
+
"third line"
|
|
27
|
+
msgstr ""
|
|
28
|
+
|
|
29
|
+
msgid "<Hello world>"
|
|
30
|
+
msgstr ""
|
|
@@ -17,3 +17,15 @@ msgstr ""
|
|
|
17
17
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4"
|
|
18
18
|
" && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
|
19
19
|
"\n"
|
|
20
|
+
|
|
21
|
+
msgid "window1"
|
|
22
|
+
msgstr ""
|
|
23
|
+
|
|
24
|
+
msgid ""
|
|
25
|
+
"first line\n"
|
|
26
|
+
"second line\n"
|
|
27
|
+
"third line"
|
|
28
|
+
msgstr ""
|
|
29
|
+
|
|
30
|
+
msgid "<Hello world>"
|
|
31
|
+
msgstr ""
|
|
@@ -17,3 +17,15 @@ msgstr ""
|
|
|
17
17
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4"
|
|
18
18
|
" && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
|
19
19
|
"\n"
|
|
20
|
+
|
|
21
|
+
msgid "window1"
|
|
22
|
+
msgstr ""
|
|
23
|
+
|
|
24
|
+
msgid ""
|
|
25
|
+
"first line\n"
|
|
26
|
+
"second line\n"
|
|
27
|
+
"third line"
|
|
28
|
+
msgstr ""
|
|
29
|
+
|
|
30
|
+
msgid "<Hello world>"
|
|
31
|
+
msgstr ""
|
|
@@ -16,3 +16,15 @@ msgstr ""
|
|
|
16
16
|
"Content-Transfer-Encoding: 8bit\n"
|
|
17
17
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
18
18
|
"\n"
|
|
19
|
+
|
|
20
|
+
msgid "window1"
|
|
21
|
+
msgstr ""
|
|
22
|
+
|
|
23
|
+
msgid ""
|
|
24
|
+
"first line\n"
|
|
25
|
+
"second line\n"
|
|
26
|
+
"third line"
|
|
27
|
+
msgstr ""
|
|
28
|
+
|
|
29
|
+
msgid "<Hello world>"
|
|
30
|
+
msgstr ""
|
|
@@ -17,3 +17,15 @@ msgstr ""
|
|
|
17
17
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4"
|
|
18
18
|
" && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
|
19
19
|
"\n"
|
|
20
|
+
|
|
21
|
+
msgid "window1"
|
|
22
|
+
msgstr ""
|
|
23
|
+
|
|
24
|
+
msgid ""
|
|
25
|
+
"first line\n"
|
|
26
|
+
"second line\n"
|
|
27
|
+
"third line"
|
|
28
|
+
msgstr ""
|
|
29
|
+
|
|
30
|
+
msgid "<Hello world>"
|
|
31
|
+
msgstr ""
|
|
@@ -16,3 +16,15 @@ msgstr ""
|
|
|
16
16
|
"Content-Transfer-Encoding: 8bit\n"
|
|
17
17
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
18
18
|
"\n"
|
|
19
|
+
|
|
20
|
+
msgid "window1"
|
|
21
|
+
msgstr ""
|
|
22
|
+
|
|
23
|
+
msgid ""
|
|
24
|
+
"first line\n"
|
|
25
|
+
"second line\n"
|
|
26
|
+
"third line"
|
|
27
|
+
msgstr ""
|
|
28
|
+
|
|
29
|
+
msgid "<Hello world>"
|
|
30
|
+
msgstr ""
|
|
@@ -16,3 +16,15 @@ msgstr ""
|
|
|
16
16
|
"Content-Transfer-Encoding: 8bit\n"
|
|
17
17
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
18
18
|
"\n"
|
|
19
|
+
|
|
20
|
+
msgid "window1"
|
|
21
|
+
msgstr ""
|
|
22
|
+
|
|
23
|
+
msgid ""
|
|
24
|
+
"first line\n"
|
|
25
|
+
"second line\n"
|
|
26
|
+
"third line"
|
|
27
|
+
msgstr ""
|
|
28
|
+
|
|
29
|
+
msgid "<Hello world>"
|
|
30
|
+
msgstr ""
|
|
@@ -16,3 +16,15 @@ msgstr ""
|
|
|
16
16
|
"Content-Transfer-Encoding: 8bit\n"
|
|
17
17
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
18
18
|
"\n"
|
|
19
|
+
|
|
20
|
+
msgid "window1"
|
|
21
|
+
msgstr ""
|
|
22
|
+
|
|
23
|
+
msgid ""
|
|
24
|
+
"first line\n"
|
|
25
|
+
"second line\n"
|
|
26
|
+
"third line"
|
|
27
|
+
msgstr ""
|
|
28
|
+
|
|
29
|
+
msgid "<Hello world>"
|
|
30
|
+
msgstr ""
|
data/src/po_parser.ry
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
#
|
|
3
3
|
# po_parser.ry - ruby version of msgfmt
|
|
4
4
|
#
|
|
5
|
-
# Copyright (C) 2002-2008
|
|
6
|
-
# Copyright (C) 2012-
|
|
7
|
-
# Copyright (C) 2012-2013
|
|
5
|
+
# Copyright (C) 2002-2008 Masao Mutoh <mutomasa at gmail.com>
|
|
6
|
+
# Copyright (C) 2012-2023 Sutou Kouhei <kou@clear-code.com>
|
|
7
|
+
# Copyright (C) 2012-2013 Haruka Yoshihara <yoshihara@clear-code.com>
|
|
8
8
|
#
|
|
9
9
|
# You may redistribute it and/or modify it under the same
|
|
10
10
|
# license terms as Ruby or LGPL.
|
|
@@ -24,7 +24,7 @@ class GetText::POParser
|
|
|
24
24
|
msgctxt
|
|
25
25
|
: MSGCTXT string_list
|
|
26
26
|
{
|
|
27
|
-
@msgctxt =
|
|
27
|
+
@msgctxt = val[1]
|
|
28
28
|
}
|
|
29
29
|
;
|
|
30
30
|
|
|
@@ -36,9 +36,8 @@ class GetText::POParser
|
|
|
36
36
|
single_message
|
|
37
37
|
: MSGID string_list MSGSTR string_list
|
|
38
38
|
{
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
msgstr = unescape(val[3])
|
|
39
|
+
msgid = val[1]
|
|
40
|
+
msgstr = val[3]
|
|
42
41
|
use_message_p = true
|
|
43
42
|
if @fuzzy and not msgid.empty?
|
|
44
43
|
use_message_p = (not ignore_fuzzy?)
|
|
@@ -48,11 +47,15 @@ class GetText::POParser
|
|
|
48
47
|
else
|
|
49
48
|
$stderr.print _("Warning: fuzzy message was used.\n")
|
|
50
49
|
end
|
|
51
|
-
$stderr.print " #{@po_file}: msgid '#{
|
|
50
|
+
$stderr.print " #{@po_file}: msgid '#{msgid}'\n"
|
|
52
51
|
end
|
|
53
52
|
end
|
|
54
53
|
@fuzzy = false
|
|
55
|
-
|
|
54
|
+
if use_message_p
|
|
55
|
+
on_message(msgid, msgstr)
|
|
56
|
+
else
|
|
57
|
+
clear
|
|
58
|
+
end
|
|
56
59
|
result = ""
|
|
57
60
|
}
|
|
58
61
|
|
|
@@ -144,31 +147,26 @@ require "gettext/po"
|
|
|
144
147
|
@report_warning
|
|
145
148
|
end
|
|
146
149
|
|
|
147
|
-
def unescape(
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
150
|
+
def unescape(string)
|
|
151
|
+
string.gsub(/\\(.)/) do
|
|
152
|
+
escaped_character = $1
|
|
153
|
+
case escaped_character
|
|
154
|
+
when "t"
|
|
155
|
+
"\t"
|
|
156
|
+
when "r"
|
|
157
|
+
"\r"
|
|
158
|
+
when "n"
|
|
159
|
+
"\n"
|
|
160
|
+
else
|
|
161
|
+
escaped_character
|
|
162
|
+
end
|
|
163
|
+
end
|
|
153
164
|
end
|
|
154
165
|
private :unescape
|
|
155
166
|
|
|
156
|
-
def unescape_string(string)
|
|
157
|
-
string.gsub(/\\\\/, "\\")
|
|
158
|
-
end
|
|
159
|
-
private :unescape_string
|
|
160
|
-
|
|
161
167
|
def parse(str, data)
|
|
162
|
-
|
|
163
|
-
@extracted_comments = []
|
|
164
|
-
@references = []
|
|
165
|
-
@flags = []
|
|
166
|
-
@previous = []
|
|
167
|
-
@comments = []
|
|
168
|
+
clear
|
|
168
169
|
@data = data
|
|
169
|
-
@fuzzy = false
|
|
170
|
-
@msgctxt = nil
|
|
171
|
-
@msgid_plural = nil
|
|
172
170
|
|
|
173
171
|
str = str.strip
|
|
174
172
|
@q = []
|
|
@@ -202,7 +200,7 @@ require "gettext/po"
|
|
|
202
200
|
@q.push [:COMMENT, $&]
|
|
203
201
|
str = $'
|
|
204
202
|
when /\A\"(.*)\"/
|
|
205
|
-
@q.push [:STRING,
|
|
203
|
+
@q.push [:STRING, unescape($1)]
|
|
206
204
|
str = $'
|
|
207
205
|
else
|
|
208
206
|
#c = str[0,1]
|
|
@@ -254,15 +252,7 @@ require "gettext/po"
|
|
|
254
252
|
@data.set_comment(msgid, format_comment(@comments))
|
|
255
253
|
end
|
|
256
254
|
|
|
257
|
-
|
|
258
|
-
@extracted_comments = []
|
|
259
|
-
@references = []
|
|
260
|
-
@flags = []
|
|
261
|
-
@previous = []
|
|
262
|
-
@references = []
|
|
263
|
-
@comments.clear
|
|
264
|
-
@msgctxt = nil
|
|
265
|
-
@msgid_plural = nil
|
|
255
|
+
clear
|
|
266
256
|
end
|
|
267
257
|
|
|
268
258
|
def format_comment(comments)
|
|
@@ -274,7 +264,11 @@ require "gettext/po"
|
|
|
274
264
|
end
|
|
275
265
|
|
|
276
266
|
def on_comment(comment)
|
|
277
|
-
|
|
267
|
+
if comment.start_with?(POFormat::FLAG_MARK)
|
|
268
|
+
content = comment[POFormat::FLAG_MARK.size..-1]
|
|
269
|
+
flags = parse_flags_line(content)
|
|
270
|
+
@fuzzy = flags.include?("fuzzy")
|
|
271
|
+
end
|
|
278
272
|
if @data.instance_of?(PO)
|
|
279
273
|
if comment == "#"
|
|
280
274
|
@translator_comments << ""
|
|
@@ -289,7 +283,7 @@ require "gettext/po"
|
|
|
289
283
|
when POFormat::REFERENCE_COMMENT_MARK
|
|
290
284
|
@references.concat(parse_references_line(content))
|
|
291
285
|
when POFormat::FLAG_MARK
|
|
292
|
-
@flags.concat(
|
|
286
|
+
@flags.concat(flags)
|
|
293
287
|
when POFormat::PREVIOUS_COMMENT_MARK
|
|
294
288
|
@previous << content
|
|
295
289
|
else
|
|
@@ -358,7 +352,19 @@ require "gettext/po"
|
|
|
358
352
|
end
|
|
359
353
|
|
|
360
354
|
def parse_flags_line(line)
|
|
361
|
-
line.split(
|
|
355
|
+
line.split(",").collect(&:strip)
|
|
356
|
+
end
|
|
357
|
+
|
|
358
|
+
def clear
|
|
359
|
+
@translator_comments = []
|
|
360
|
+
@extracted_comments = []
|
|
361
|
+
@references = []
|
|
362
|
+
@flags = []
|
|
363
|
+
@previous = []
|
|
364
|
+
@references = []
|
|
365
|
+
@comments = []
|
|
366
|
+
@msgctxt = nil
|
|
367
|
+
@msgid_plural = nil
|
|
362
368
|
end
|
|
363
369
|
---- footer
|
|
364
370
|
|
data/test/po/ja/_.po
CHANGED
|
@@ -133,3 +133,18 @@ msgstr "ONE LINE"
|
|
|
133
133
|
msgid ""
|
|
134
134
|
"one new line\n"
|
|
135
135
|
msgstr ""
|
|
136
|
+
|
|
137
|
+
msgid "in_symbol_array"
|
|
138
|
+
msgstr ""
|
|
139
|
+
|
|
140
|
+
msgid "hello world"
|
|
141
|
+
msgstr ""
|
|
142
|
+
|
|
143
|
+
msgid "in_string_array"
|
|
144
|
+
msgstr ""
|
|
145
|
+
|
|
146
|
+
msgid "Hello"
|
|
147
|
+
msgstr ""
|
|
148
|
+
|
|
149
|
+
msgid "World"
|
|
150
|
+
msgstr ""
|
data/test/test_parser.rb
CHANGED
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
require "tempfile"
|
|
25
25
|
require "gettext/tools/parser/ruby"
|
|
26
26
|
require "gettext/tools/parser/erb"
|
|
27
|
+
require "gettext/tools/parser/erubi"
|
|
27
28
|
|
|
28
29
|
require "gettext/tools/xgettext"
|
|
29
30
|
|
|
@@ -215,6 +216,67 @@ class TestGetTextParser < Test::Unit::TestCase
|
|
|
215
216
|
|
|
216
217
|
assert_target("Hello", ["#{path}:8"])
|
|
217
218
|
end
|
|
219
|
+
|
|
220
|
+
def test_case
|
|
221
|
+
path = fixture_path("erb", "case.rhtml")
|
|
222
|
+
@ary = GetText::ErbParser.parse(path)
|
|
223
|
+
|
|
224
|
+
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.0.0')
|
|
225
|
+
assert_target("Hello", ["#{path}:11"])
|
|
226
|
+
assert_target("World", ["#{path}:14"])
|
|
227
|
+
else
|
|
228
|
+
assert_target("Hello", ["#{path}:11"])
|
|
229
|
+
assert_nil(@ary.detect {|elem| elem.msgid == 'World'}) # Not detected. see PR #91
|
|
230
|
+
end
|
|
231
|
+
end
|
|
232
|
+
end
|
|
233
|
+
|
|
234
|
+
class TestErubiParser < self
|
|
235
|
+
include Helper::Path
|
|
236
|
+
|
|
237
|
+
def test_detect_encoding
|
|
238
|
+
euc_file = Tempfile.new("euc-jp.rhtml")
|
|
239
|
+
euc_file.open
|
|
240
|
+
euc_file.puts("<%#-*- coding: euc-jp -*-%>")
|
|
241
|
+
euc_file.close
|
|
242
|
+
|
|
243
|
+
euc_file_content = File.read(euc_file.path)
|
|
244
|
+
encoding = GetText::ErubiParser.new(euc_file.path).detect_encoding(euc_file_content)
|
|
245
|
+
|
|
246
|
+
assert_equal("EUC-JP", encoding)
|
|
247
|
+
end
|
|
248
|
+
|
|
249
|
+
def test_ascii
|
|
250
|
+
path = fixture_path("erb", "ascii.rhtml")
|
|
251
|
+
@ary = GetText::ErubiParser.parse(path)
|
|
252
|
+
|
|
253
|
+
assert_target 'aaa', ["#{path}:8"]
|
|
254
|
+
assert_target "aaa\n", ["#{path}:11"]
|
|
255
|
+
assert_target 'bbb', ["#{path}:12"]
|
|
256
|
+
assert_plural_target "ccc1", "ccc2", ["#{path}:13"]
|
|
257
|
+
end
|
|
258
|
+
|
|
259
|
+
def test_non_ascii
|
|
260
|
+
path = fixture_path("erb", "non_ascii.rhtml")
|
|
261
|
+
@ary = GetText::ErubiParser.parse(path)
|
|
262
|
+
|
|
263
|
+
assert_target('わたし', ["#{path}:12"])
|
|
264
|
+
end
|
|
265
|
+
|
|
266
|
+
def test_minus
|
|
267
|
+
path = fixture_path("erb", "minus.rhtml")
|
|
268
|
+
@ary = GetText::ErubiParser.parse(path)
|
|
269
|
+
|
|
270
|
+
assert_target("Hello", ["#{path}:8"])
|
|
271
|
+
end
|
|
272
|
+
|
|
273
|
+
def test_case
|
|
274
|
+
path = fixture_path("erb", "case.rhtml")
|
|
275
|
+
@ary = GetText::ErubiParser.parse(path)
|
|
276
|
+
|
|
277
|
+
assert_target("Hello", ["#{path}:11"])
|
|
278
|
+
assert_target("World", ["#{path}:14"]) # Detected with Erubi
|
|
279
|
+
end
|
|
218
280
|
end
|
|
219
281
|
|
|
220
282
|
def test_xgettext_parse
|
data/test/test_po_entry.rb
CHANGED
|
@@ -233,13 +233,15 @@ EOE
|
|
|
233
233
|
class TestEscape < self
|
|
234
234
|
def test_normal
|
|
235
235
|
entry = GetText::POEntry.new(:normal)
|
|
236
|
-
entry.msgid = "He said \"hello.\""
|
|
237
|
-
entry.msgstr = "Il a dit \"bonjour.\""
|
|
236
|
+
entry.msgid = "He said \"hello.\"\r\n"
|
|
237
|
+
entry.msgstr = "Il a dit \"bonjour.\"\r\n"
|
|
238
238
|
entry.references = ["file1:1", "file2:10"]
|
|
239
239
|
expected_po = <<-EOE
|
|
240
240
|
#: file1:1 file2:10
|
|
241
|
-
msgid "
|
|
242
|
-
|
|
241
|
+
msgid ""
|
|
242
|
+
"He said \\"hello.\\"\\r\\n"
|
|
243
|
+
msgstr ""
|
|
244
|
+
"Il a dit \\"bonjour.\\"\\r\\n"
|
|
243
245
|
EOE
|
|
244
246
|
assert_equal(expected_po, entry.to_s)
|
|
245
247
|
end
|
|
@@ -342,6 +344,20 @@ EOP
|
|
|
342
344
|
assert_equal(expected_po, entry.to_s)
|
|
343
345
|
end
|
|
344
346
|
|
|
347
|
+
def test_multiple_flags
|
|
348
|
+
entry = GetText::POEntry.new(:normal)
|
|
349
|
+
entry.msgid = "msgid"
|
|
350
|
+
entry.msgstr = "msgstr"
|
|
351
|
+
entry.flags = ["It's the flag.", "fuzzy"]
|
|
352
|
+
|
|
353
|
+
expected_po = <<-EOP
|
|
354
|
+
#, It's the flag., fuzzy
|
|
355
|
+
msgid "msgid"
|
|
356
|
+
msgstr "msgstr"
|
|
357
|
+
EOP
|
|
358
|
+
assert_equal(expected_po, entry.to_s)
|
|
359
|
+
end
|
|
360
|
+
|
|
345
361
|
def test_previous
|
|
346
362
|
entry = GetText::POEntry.new(:normal)
|
|
347
363
|
entry.msgid = "msgid"
|
data/test/test_po_parser.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (C) 2012-
|
|
1
|
+
# Copyright (C) 2012-2023 Sutou Kouhei <kou@clear-code.com>
|
|
2
2
|
# Copyright (C) 2012 Haruka Yoshihara <yoshihara@clear-code.com>
|
|
3
3
|
#
|
|
4
4
|
# License: Ruby's or LGPL
|
|
@@ -62,6 +62,16 @@ EOP
|
|
|
62
62
|
class TestPO < self
|
|
63
63
|
include Helper::Warning
|
|
64
64
|
|
|
65
|
+
def test_msgid_escape
|
|
66
|
+
po_file = create_po_file(<<-'EOP')
|
|
67
|
+
msgid "\\\\r \\r \t \r \n"
|
|
68
|
+
msgstr "\\\\r \\r \t \r \n"
|
|
69
|
+
EOP
|
|
70
|
+
entries = parse_po_file(po_file)
|
|
71
|
+
assert_equal("\\\\r \\r \t \r \n",
|
|
72
|
+
entries["\\\\r \\r \t \r \n"].msgstr)
|
|
73
|
+
end
|
|
74
|
+
|
|
65
75
|
def test_msgstr
|
|
66
76
|
po_file = create_po_file(<<-EOP)
|
|
67
77
|
# This is the comment.
|
|
@@ -228,6 +238,39 @@ EOP
|
|
|
228
238
|
assert_equal("fuzzy", entries["hello"].flag)
|
|
229
239
|
end
|
|
230
240
|
|
|
241
|
+
def test_fuzzy_ignore
|
|
242
|
+
po_file = create_po_file(<<-PO)
|
|
243
|
+
#, fuzzy
|
|
244
|
+
#: file.rb:10
|
|
245
|
+
msgid "hello"
|
|
246
|
+
msgstr "bonjour"
|
|
247
|
+
|
|
248
|
+
#, c-format, fuzzy , no-sh-format
|
|
249
|
+
#: file.rb:11
|
|
250
|
+
msgid "world"
|
|
251
|
+
msgstr "monde"
|
|
252
|
+
|
|
253
|
+
# This is not fuzzy
|
|
254
|
+
msgid "non-fuzzy"
|
|
255
|
+
msgstr "non-fuzzy string"
|
|
256
|
+
PO
|
|
257
|
+
entries = suppress_warning do
|
|
258
|
+
parse_po_file(po_file)
|
|
259
|
+
end
|
|
260
|
+
|
|
261
|
+
actual = entries.collect do |entry|
|
|
262
|
+
[
|
|
263
|
+
entry.msgid,
|
|
264
|
+
entry.msgstr,
|
|
265
|
+
entry.flags,
|
|
266
|
+
]
|
|
267
|
+
end
|
|
268
|
+
assert_equal([
|
|
269
|
+
["non-fuzzy", "non-fuzzy string", []],
|
|
270
|
+
],
|
|
271
|
+
actual)
|
|
272
|
+
end
|
|
273
|
+
|
|
231
274
|
private
|
|
232
275
|
def parse_po_file(po_file, options={:ignore_fuzzy => true})
|
|
233
276
|
ignore_fuzzy = options[:ignore_fuzzy]
|
data/test/tools/test_msgcat.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (C) 2014-
|
|
1
|
+
# Copyright (C) 2014-2023 Sutou Kouhei <kou@clear-code.com>
|
|
2
2
|
#
|
|
3
3
|
# License: Ruby's or LGPL
|
|
4
4
|
#
|
|
@@ -243,6 +243,7 @@ msgstr ""
|
|
|
243
243
|
@po = <<-PO
|
|
244
244
|
# translator comment
|
|
245
245
|
#: a.rb:1
|
|
246
|
+
#: a.rb:2
|
|
246
247
|
msgid "Hello"
|
|
247
248
|
msgstr ""
|
|
248
249
|
PO
|
|
@@ -252,6 +253,25 @@ msgstr ""
|
|
|
252
253
|
assert_equal(<<-PO, run_msgcat([@po], "--no-location"))
|
|
253
254
|
# translator comment
|
|
254
255
|
msgid "Hello"
|
|
256
|
+
msgstr ""
|
|
257
|
+
PO
|
|
258
|
+
end
|
|
259
|
+
|
|
260
|
+
def test_wrap
|
|
261
|
+
assert_equal(<<-PO, run_msgcat([@po], "--wrap"))
|
|
262
|
+
# translator comment
|
|
263
|
+
#: a.rb:1 a.rb:2
|
|
264
|
+
msgid "Hello"
|
|
265
|
+
msgstr ""
|
|
266
|
+
PO
|
|
267
|
+
end
|
|
268
|
+
|
|
269
|
+
def test_use_one_line_per_reference
|
|
270
|
+
assert_equal(<<-PO, run_msgcat([@po], "--wrap", "--use-one-line-per-reference"))
|
|
271
|
+
# translator comment
|
|
272
|
+
#: a.rb:1
|
|
273
|
+
#: a.rb:2
|
|
274
|
+
msgid "Hello"
|
|
255
275
|
msgstr ""
|
|
256
276
|
PO
|
|
257
277
|
end
|