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
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c3e308b50375d4a1af74d787bef561bdc20d97a8da045e0a63691353db56b1d4
|
|
4
|
+
data.tar.gz: 2028906c7a708e452ccae9b783965358fac558a5ac1564cf09051cc9514d1603
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 30596c9408d65115e6c03395d0fe8060d5de4144505d75309832e6d2ce6602aff24a4b1743b886851219196b32f31c34bcd297cdc78645df5b5eb8af4a548841
|
|
7
|
+
data.tar.gz: e39d58334a1afdb6d09d13374802536836e333c275f13730d1bd760318c5b582d431c90232b56f9a55d2c87aa44a1c96c8b6de6aaa87bf4531262478dc8ddd65
|
data/README.md
CHANGED
|
@@ -244,11 +244,11 @@ n_(fruits, 3)
|
|
|
244
244
|
|
|
245
245
|
### Interpolating translations
|
|
246
246
|
|
|
247
|
-
This is not a feature of gettext but worth noting. You can interpolate translated strings
|
|
247
|
+
This is not a feature of gettext but worth noting. You can interpolate translated strings with the ruby String `%` operator.
|
|
248
248
|
|
|
249
249
|
```ruby
|
|
250
250
|
N_("active"); N_("inactive"); N_("paused") # possible value of status for parser to find.
|
|
251
|
-
_("Your account is
|
|
251
|
+
_("Your account is %{account_state}.") % { account_state: _(status) }
|
|
252
252
|
```
|
|
253
253
|
|
|
254
254
|
|
data/Rakefile
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
# You don't need to use this file directly.
|
|
9
9
|
#
|
|
10
10
|
# Copyright(c) 2005-2009 Masao Mutoh
|
|
11
|
-
# Copyright(c) 2012-
|
|
11
|
+
# Copyright(c) 2012-2025 Kouhei Sutou <kou@clear-code.com>
|
|
12
12
|
# Copyright(c) 2012 Haruka Yoshihara <yoshihara@clear-code.com>
|
|
13
13
|
# This program is licenced under the same licence as Ruby.
|
|
14
14
|
|
|
@@ -56,12 +56,10 @@ file po_parser_rb_path => po_parser_ry_path do
|
|
|
56
56
|
|
|
57
57
|
File.open(po_parser_rb_path, "w") do |po_parser_rb|
|
|
58
58
|
po_parser_rb.puts(<<-EOH)
|
|
59
|
-
# -*- coding: utf-8 -*-
|
|
60
|
-
#
|
|
61
59
|
# po_parser.rb - Generate a .mo
|
|
62
60
|
#
|
|
63
61
|
# Copyright (C) 2003-2009 Masao Mutoh <mutomasa at gmail.com>
|
|
64
|
-
# Copyright (C) 2012 Kouhei
|
|
62
|
+
# Copyright (C) 2012-2023 Sutou Kouhei <kou@clear-code.com>
|
|
65
63
|
#
|
|
66
64
|
# You may redistribute it and/or modify it under the same
|
|
67
65
|
# license terms as Ruby or LGPL.
|
|
@@ -200,3 +198,14 @@ task :build => [:gettext]
|
|
|
200
198
|
|
|
201
199
|
YARD::Rake::YardocTask.new do |t|
|
|
202
200
|
end
|
|
201
|
+
|
|
202
|
+
release_task = Rake.application["release"]
|
|
203
|
+
# We use Trusted Publishing.
|
|
204
|
+
release_task.prerequisites.delete("build")
|
|
205
|
+
release_task.prerequisites.delete("release:rubygem_push")
|
|
206
|
+
release_task_comment = release_task.comment
|
|
207
|
+
if release_task_comment
|
|
208
|
+
release_task.clear_comments
|
|
209
|
+
release_task.comment = release_task_comment.gsub(/ and build.*$/, "")
|
|
210
|
+
end
|
|
211
|
+
|
data/doc/text/news.md
CHANGED
|
@@ -1,5 +1,122 @@
|
|
|
1
1
|
# News
|
|
2
2
|
|
|
3
|
+
## 3.5.2: 2026-02-25 {#version-3-5-2}
|
|
4
|
+
|
|
5
|
+
### Improvements
|
|
6
|
+
|
|
7
|
+
* Add more metadata to gemspec.
|
|
8
|
+
* GH-115
|
|
9
|
+
* Patch by Keenan Brock
|
|
10
|
+
|
|
11
|
+
* Add support for ERB 6.0.2.
|
|
12
|
+
* GH-118
|
|
13
|
+
* Patch by Karine Vieira
|
|
14
|
+
|
|
15
|
+
### Thanks
|
|
16
|
+
|
|
17
|
+
* Keenan Brock
|
|
18
|
+
* Karine Vieira
|
|
19
|
+
|
|
20
|
+
## 3.5.1: 2025-01-27 {#version-3-5-1}
|
|
21
|
+
|
|
22
|
+
### Improvements
|
|
23
|
+
|
|
24
|
+
* `rmsginit`: Added support for replacing charset.
|
|
25
|
+
* GH-113
|
|
26
|
+
* Patch by Abe Tomoaki
|
|
27
|
+
|
|
28
|
+
### Thanks
|
|
29
|
+
|
|
30
|
+
* Abe Tomoaki
|
|
31
|
+
|
|
32
|
+
## 3.5.0: 2024-12-04 {#version-3-5-0}
|
|
33
|
+
|
|
34
|
+
### Improvements
|
|
35
|
+
|
|
36
|
+
* Suppressed warnings with Ruby 3.4.0.
|
|
37
|
+
|
|
38
|
+
## 3.4.9: 2023-10-22 {#version-3-4-9}
|
|
39
|
+
|
|
40
|
+
### Improvements
|
|
41
|
+
|
|
42
|
+
* `rmsgcat`, `rmsgmerge`, `rxgettext`: Added
|
|
43
|
+
`--use-one-line-per-reference` option.
|
|
44
|
+
|
|
45
|
+
## 3.4.8: 2023-10-22 {#version-3-4-8}
|
|
46
|
+
|
|
47
|
+
### Fixes
|
|
48
|
+
|
|
49
|
+
* doc: Fixed a wrong description for interpolation.
|
|
50
|
+
* GH-102
|
|
51
|
+
* Patch by Ilmari Karonen
|
|
52
|
+
|
|
53
|
+
* po: Fixed a parser bug that flags aren't parsed correctly. If a
|
|
54
|
+
normal comment has "fuzzy", the entry is also treated as a fuzzy
|
|
55
|
+
entry.
|
|
56
|
+
|
|
57
|
+
* po: Fixed an output bug that flags aren't formatted correctly.
|
|
58
|
+
* GH-105
|
|
59
|
+
* Patch by Yoshikazu Nojima
|
|
60
|
+
|
|
61
|
+
### Thanks
|
|
62
|
+
|
|
63
|
+
* Ilmari Karonen
|
|
64
|
+
|
|
65
|
+
* Yoshikazu Nojima
|
|
66
|
+
|
|
67
|
+
## 3.4.7: 2023-08-17 {#version-3-4-7}
|
|
68
|
+
|
|
69
|
+
### Fixes
|
|
70
|
+
|
|
71
|
+
* po: Fixed a parser bug that it may add a `fuzzy` flag to non-fuzzy
|
|
72
|
+
entry with `ignore_fuzzy: true`.
|
|
73
|
+
|
|
74
|
+
Example PO:
|
|
75
|
+
|
|
76
|
+
```po
|
|
77
|
+
#, fuzzy
|
|
78
|
+
#: file.rb:10
|
|
79
|
+
msgid "hello"
|
|
80
|
+
msgstr "bonjour"
|
|
81
|
+
|
|
82
|
+
msgid "non-fuzzy"
|
|
83
|
+
msgstr "non-fuzzy string"
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
`hello` entry is ignored because `ignore_fuzzy` is `true`. The
|
|
87
|
+
`fuzzy` flag in the `hello` entry is added to `non-fuzzy` entry.
|
|
88
|
+
|
|
89
|
+
## 3.4.6: 2023-07-12 {#version-3-4-6}
|
|
90
|
+
|
|
91
|
+
### Fixes
|
|
92
|
+
|
|
93
|
+
* po: Fixed a bug that parsed `msgid`/`msgstr`/`msgctxt` in `.po`
|
|
94
|
+
may be too much unescaped.
|
|
95
|
+
|
|
96
|
+
## 3.4.5: 2023-07-12 {#version-3-4-5}
|
|
97
|
+
|
|
98
|
+
### Improvements
|
|
99
|
+
|
|
100
|
+
* po: Added support for escaping `\r` in `msgid`/`msgstr`.
|
|
101
|
+
|
|
102
|
+
## 3.4.4: 2023-06-11 {#version-3-4-4}
|
|
103
|
+
|
|
104
|
+
### Improvements
|
|
105
|
+
|
|
106
|
+
* Added `racc` to runtime dependencies because Ruby 3.3 doesn't
|
|
107
|
+
include `racc/parser`.
|
|
108
|
+
|
|
109
|
+
## 3.4.3: 2022-05-20 {#version-3-4-3}
|
|
110
|
+
|
|
111
|
+
### Improvements
|
|
112
|
+
|
|
113
|
+
* Added support for Erubi to parse `.erb`
|
|
114
|
+
[GitHub#91][Patch by Michaël Hoste]
|
|
115
|
+
|
|
116
|
+
### Thanks
|
|
117
|
+
|
|
118
|
+
* Michaël Hoste
|
|
119
|
+
|
|
3
120
|
## 3.4.2: 2022-01-11 {#version-3-4-2}
|
|
4
121
|
|
|
5
122
|
### Improvements
|
data/gettext.gemspec
CHANGED
|
@@ -16,6 +16,10 @@ So you can use GNU gettext tools for maintaining.
|
|
|
16
16
|
s.authors = ["Kouhei Sutou", "Masao Mutoh"]
|
|
17
17
|
s.email = ["kou@clear-code.com", "mutomasa at gmail.com"]
|
|
18
18
|
s.homepage = "https://ruby-gettext.github.io/"
|
|
19
|
+
s.metadata = {
|
|
20
|
+
"source_code_uri" => "https://github.com/ruby-gettext/gettext",
|
|
21
|
+
"changelog_uri" => "https://github.com/ruby-gettext/gettext/releases/tag/#{s.version}"
|
|
22
|
+
}
|
|
19
23
|
s.require_paths = ["lib"]
|
|
20
24
|
Dir.chdir(base_dir) do
|
|
21
25
|
s.files = Dir.glob("{locale,bin,data,doc/text,lib,po,samples,src,test}/**/*")
|
|
@@ -29,11 +33,12 @@ So you can use GNU gettext tools for maintaining.
|
|
|
29
33
|
|
|
30
34
|
s.required_ruby_version = ">= 2.5.0"
|
|
31
35
|
|
|
36
|
+
s.add_runtime_dependency("erubi")
|
|
32
37
|
s.add_runtime_dependency("locale", ">= 2.0.5")
|
|
33
38
|
s.add_runtime_dependency("prime")
|
|
39
|
+
s.add_runtime_dependency("racc")
|
|
34
40
|
s.add_runtime_dependency("text", ">= 1.3.0")
|
|
35
41
|
s.add_development_dependency("kramdown")
|
|
36
|
-
s.add_development_dependency("racc")
|
|
37
42
|
s.add_development_dependency("rake")
|
|
38
43
|
s.add_development_dependency("red-datasets")
|
|
39
44
|
s.add_development_dependency("test-unit")
|
data/lib/gettext/po_entry.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) 2010 masone (Christian Felder) <ema@rh-productions.ch>
|
|
3
3
|
# Copyright (C) 2009 Masao Mutoh
|
|
4
4
|
#
|
|
@@ -241,11 +241,12 @@ module GetText
|
|
|
241
241
|
def escape(string)
|
|
242
242
|
return "" if string.nil?
|
|
243
243
|
|
|
244
|
-
string.gsub(/
|
|
245
|
-
special_character = $1
|
|
244
|
+
string.gsub(/[\\"\t\r\n]/) do |special_character|
|
|
246
245
|
case special_character
|
|
247
246
|
when "\t"
|
|
248
247
|
"\\t"
|
|
248
|
+
when "\r"
|
|
249
|
+
"\\r"
|
|
249
250
|
when "\n"
|
|
250
251
|
"\\n"
|
|
251
252
|
else
|
|
@@ -281,6 +282,9 @@ module GetText
|
|
|
281
282
|
# Wraps long lines that is longer than the `:max_line_width`.
|
|
282
283
|
# Don't break long lines if `:max_line_width` is less than 0
|
|
283
284
|
# such as `-1`.
|
|
285
|
+
# @option options [Bool] :use_one_line_per_reference (false)
|
|
286
|
+
# Whether each reference comment uses one line or not. If this
|
|
287
|
+
# is `true`, `:max_line_width` is ignored for reference comment.
|
|
284
288
|
# @option options [Encoding] :encoding (nil)
|
|
285
289
|
# Encodes to the specific encoding.
|
|
286
290
|
def initialize(entry, options={})
|
|
@@ -404,34 +408,40 @@ module GetText
|
|
|
404
408
|
end
|
|
405
409
|
|
|
406
410
|
def format_reference_comment
|
|
407
|
-
max_line_width = @options[:max_line_width]
|
|
408
411
|
formatted_reference = String.new
|
|
409
|
-
if
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
412
|
+
if @options[:use_one_line_per_reference]
|
|
413
|
+
@entry.references&.each do |reference|
|
|
414
|
+
formatted_reference << "#{REFERENCE_COMMENT_MARK} #{reference}\n"
|
|
415
|
+
end
|
|
416
|
+
else
|
|
417
|
+
max_line_width = @options[:max_line_width]
|
|
418
|
+
if not @entry.references.nil? and not @entry.references.empty?
|
|
419
|
+
formatted_reference << REFERENCE_COMMENT_MARK
|
|
420
|
+
line_width = 2
|
|
421
|
+
@entry.references.each do |reference|
|
|
422
|
+
if max_line_width > 0 and
|
|
414
423
|
line_width + reference.size > max_line_width
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
424
|
+
formatted_reference << "\n"
|
|
425
|
+
formatted_reference << "#{REFERENCE_COMMENT_MARK} #{reference}"
|
|
426
|
+
line_width = 3 + reference.size
|
|
427
|
+
else
|
|
428
|
+
formatted_reference << " #{reference}"
|
|
429
|
+
line_width += 1 + reference.size
|
|
430
|
+
end
|
|
421
431
|
end
|
|
432
|
+
formatted_reference << "\n"
|
|
422
433
|
end
|
|
423
|
-
|
|
424
|
-
formatted_reference << "\n"
|
|
425
434
|
end
|
|
426
435
|
formatted_reference
|
|
427
436
|
end
|
|
428
437
|
|
|
429
438
|
def format_flag_comment
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
439
|
+
if @entry.flags.empty?
|
|
440
|
+
String.new
|
|
441
|
+
else
|
|
442
|
+
joined_flags = @entry.flags.join(", ")
|
|
443
|
+
format_comment(FLAG_MARK, joined_flags)
|
|
433
444
|
end
|
|
434
|
-
formatted_flags
|
|
435
445
|
end
|
|
436
446
|
|
|
437
447
|
def format_previous_comment
|
data/lib/gettext/po_parser.rb
CHANGED
|
@@ -1,17 +1,15 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
#
|
|
3
1
|
# po_parser.rb - Generate a .mo
|
|
4
2
|
#
|
|
5
3
|
# Copyright (C) 2003-2009 Masao Mutoh <mutomasa at gmail.com>
|
|
6
|
-
# Copyright (C) 2012-
|
|
4
|
+
# Copyright (C) 2012-2023 Sutou Kouhei <kou@clear-code.com>
|
|
7
5
|
#
|
|
8
6
|
# You may redistribute it and/or modify it under the same
|
|
9
7
|
# license terms as Ruby or LGPL.
|
|
10
8
|
|
|
11
9
|
#
|
|
12
10
|
# DO NOT MODIFY!!!!
|
|
13
|
-
# This file is automatically generated by Racc 1.
|
|
14
|
-
# from Racc
|
|
11
|
+
# This file is automatically generated by Racc 1.8.1
|
|
12
|
+
# from Racc grammar file "po_parser.ry".
|
|
15
13
|
#
|
|
16
14
|
|
|
17
15
|
require 'racc/parser.rb'
|
|
@@ -21,7 +19,7 @@ require "gettext/po"
|
|
|
21
19
|
module GetText
|
|
22
20
|
class POParser < Racc::Parser
|
|
23
21
|
|
|
24
|
-
module_eval(<<'...end po_parser.ry/module_eval...', 'po_parser.ry',
|
|
22
|
+
module_eval(<<'...end po_parser.ry/module_eval...', 'po_parser.ry', 126)
|
|
25
23
|
if GetText.respond_to?(:bindtextdomain)
|
|
26
24
|
include GetText
|
|
27
25
|
GetText.bindtextdomain("gettext")
|
|
@@ -46,31 +44,26 @@ module_eval(<<'...end po_parser.ry/module_eval...', 'po_parser.ry', 123)
|
|
|
46
44
|
@report_warning
|
|
47
45
|
end
|
|
48
46
|
|
|
49
|
-
def unescape(
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
47
|
+
def unescape(string)
|
|
48
|
+
string.gsub(/\\(.)/) do
|
|
49
|
+
escaped_character = $1
|
|
50
|
+
case escaped_character
|
|
51
|
+
when "t"
|
|
52
|
+
"\t"
|
|
53
|
+
when "r"
|
|
54
|
+
"\r"
|
|
55
|
+
when "n"
|
|
56
|
+
"\n"
|
|
57
|
+
else
|
|
58
|
+
escaped_character
|
|
59
|
+
end
|
|
60
|
+
end
|
|
55
61
|
end
|
|
56
62
|
private :unescape
|
|
57
63
|
|
|
58
|
-
def unescape_string(string)
|
|
59
|
-
string.gsub(/\\\\/, "\\")
|
|
60
|
-
end
|
|
61
|
-
private :unescape_string
|
|
62
|
-
|
|
63
64
|
def parse(str, data)
|
|
64
|
-
|
|
65
|
-
@extracted_comments = []
|
|
66
|
-
@references = []
|
|
67
|
-
@flags = []
|
|
68
|
-
@previous = []
|
|
69
|
-
@comments = []
|
|
65
|
+
clear
|
|
70
66
|
@data = data
|
|
71
|
-
@fuzzy = false
|
|
72
|
-
@msgctxt = nil
|
|
73
|
-
@msgid_plural = nil
|
|
74
67
|
|
|
75
68
|
str = str.strip
|
|
76
69
|
@q = []
|
|
@@ -104,7 +97,7 @@ module_eval(<<'...end po_parser.ry/module_eval...', 'po_parser.ry', 123)
|
|
|
104
97
|
@q.push [:COMMENT, $&]
|
|
105
98
|
str = $'
|
|
106
99
|
when /\A\"(.*)\"/
|
|
107
|
-
@q.push [:STRING,
|
|
100
|
+
@q.push [:STRING, unescape($1)]
|
|
108
101
|
str = $'
|
|
109
102
|
else
|
|
110
103
|
#c = str[0,1]
|
|
@@ -156,15 +149,7 @@ module_eval(<<'...end po_parser.ry/module_eval...', 'po_parser.ry', 123)
|
|
|
156
149
|
@data.set_comment(msgid, format_comment(@comments))
|
|
157
150
|
end
|
|
158
151
|
|
|
159
|
-
|
|
160
|
-
@extracted_comments = []
|
|
161
|
-
@references = []
|
|
162
|
-
@flags = []
|
|
163
|
-
@previous = []
|
|
164
|
-
@references = []
|
|
165
|
-
@comments.clear
|
|
166
|
-
@msgctxt = nil
|
|
167
|
-
@msgid_plural = nil
|
|
152
|
+
clear
|
|
168
153
|
end
|
|
169
154
|
|
|
170
155
|
def format_comment(comments)
|
|
@@ -176,7 +161,11 @@ module_eval(<<'...end po_parser.ry/module_eval...', 'po_parser.ry', 123)
|
|
|
176
161
|
end
|
|
177
162
|
|
|
178
163
|
def on_comment(comment)
|
|
179
|
-
|
|
164
|
+
if comment.start_with?(POFormat::FLAG_MARK)
|
|
165
|
+
content = comment[POFormat::FLAG_MARK.size..-1]
|
|
166
|
+
flags = parse_flags_line(content)
|
|
167
|
+
@fuzzy = flags.include?("fuzzy")
|
|
168
|
+
end
|
|
180
169
|
if @data.instance_of?(PO)
|
|
181
170
|
if comment == "#"
|
|
182
171
|
@translator_comments << ""
|
|
@@ -191,7 +180,7 @@ module_eval(<<'...end po_parser.ry/module_eval...', 'po_parser.ry', 123)
|
|
|
191
180
|
when POFormat::REFERENCE_COMMENT_MARK
|
|
192
181
|
@references.concat(parse_references_line(content))
|
|
193
182
|
when POFormat::FLAG_MARK
|
|
194
|
-
@flags.concat(
|
|
183
|
+
@flags.concat(flags)
|
|
195
184
|
when POFormat::PREVIOUS_COMMENT_MARK
|
|
196
185
|
@previous << content
|
|
197
186
|
else
|
|
@@ -260,7 +249,19 @@ module_eval(<<'...end po_parser.ry/module_eval...', 'po_parser.ry', 123)
|
|
|
260
249
|
end
|
|
261
250
|
|
|
262
251
|
def parse_flags_line(line)
|
|
263
|
-
line.split(
|
|
252
|
+
line.split(",").collect(&:strip)
|
|
253
|
+
end
|
|
254
|
+
|
|
255
|
+
def clear
|
|
256
|
+
@translator_comments = []
|
|
257
|
+
@extracted_comments = []
|
|
258
|
+
@references = []
|
|
259
|
+
@flags = []
|
|
260
|
+
@previous = []
|
|
261
|
+
@references = []
|
|
262
|
+
@comments = []
|
|
263
|
+
@msgctxt = nil
|
|
264
|
+
@msgid_plural = nil
|
|
264
265
|
end
|
|
265
266
|
...end po_parser.ry/module_eval...
|
|
266
267
|
##### State transition tables begin ###
|
|
@@ -349,6 +350,7 @@ Racc_arg = [
|
|
|
349
350
|
racc_shift_n,
|
|
350
351
|
racc_reduce_n,
|
|
351
352
|
racc_use_result_var ]
|
|
353
|
+
Ractor.make_shareable(Racc_arg) if defined?(Ractor)
|
|
352
354
|
|
|
353
355
|
Racc_token_to_s_table = [
|
|
354
356
|
"$end",
|
|
@@ -370,6 +372,7 @@ Racc_token_to_s_table = [
|
|
|
370
372
|
"plural_message",
|
|
371
373
|
"msgstr_plural",
|
|
372
374
|
"msgstr_plural_line" ]
|
|
375
|
+
Ractor.make_shareable(Racc_token_to_s_table) if defined?(Ractor)
|
|
373
376
|
|
|
374
377
|
Racc_debug_parser = true
|
|
375
378
|
|
|
@@ -387,8 +390,8 @@ Racc_debug_parser = true
|
|
|
387
390
|
|
|
388
391
|
module_eval(<<'.,.,', 'po_parser.ry', 26)
|
|
389
392
|
def _reduce_5(val, _values, result)
|
|
390
|
-
@msgctxt =
|
|
391
|
-
|
|
393
|
+
@msgctxt = val[1]
|
|
394
|
+
|
|
392
395
|
result
|
|
393
396
|
end
|
|
394
397
|
.,.,
|
|
@@ -399,9 +402,8 @@ module_eval(<<'.,.,', 'po_parser.ry', 26)
|
|
|
399
402
|
|
|
400
403
|
module_eval(<<'.,.,', 'po_parser.ry', 38)
|
|
401
404
|
def _reduce_8(val, _values, result)
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
msgstr = unescape(val[3])
|
|
405
|
+
msgid = val[1]
|
|
406
|
+
msgstr = val[3]
|
|
405
407
|
use_message_p = true
|
|
406
408
|
if @fuzzy and not msgid.empty?
|
|
407
409
|
use_message_p = (not ignore_fuzzy?)
|
|
@@ -411,18 +413,22 @@ module_eval(<<'.,.,', 'po_parser.ry', 38)
|
|
|
411
413
|
else
|
|
412
414
|
$stderr.print _("Warning: fuzzy message was used.\n")
|
|
413
415
|
end
|
|
414
|
-
$stderr.print " #{@po_file}: msgid '#{
|
|
416
|
+
$stderr.print " #{@po_file}: msgid '#{msgid}'\n"
|
|
415
417
|
end
|
|
416
418
|
end
|
|
417
419
|
@fuzzy = false
|
|
418
|
-
|
|
420
|
+
if use_message_p
|
|
421
|
+
on_message(msgid, msgstr)
|
|
422
|
+
else
|
|
423
|
+
clear
|
|
424
|
+
end
|
|
419
425
|
result = ""
|
|
420
|
-
|
|
426
|
+
|
|
421
427
|
result
|
|
422
428
|
end
|
|
423
429
|
.,.,
|
|
424
430
|
|
|
425
|
-
module_eval(<<'.,.,', 'po_parser.ry',
|
|
431
|
+
module_eval(<<'.,.,', 'po_parser.ry', 64)
|
|
426
432
|
def _reduce_9(val, _values, result)
|
|
427
433
|
if @fuzzy and ignore_fuzzy?
|
|
428
434
|
if val[1] != ""
|
|
@@ -439,53 +445,53 @@ module_eval(<<'.,.,', 'po_parser.ry', 61)
|
|
|
439
445
|
on_message(unescape(val[1]), unescape(val[4]))
|
|
440
446
|
end
|
|
441
447
|
result = ""
|
|
442
|
-
|
|
448
|
+
|
|
443
449
|
result
|
|
444
450
|
end
|
|
445
451
|
.,.,
|
|
446
452
|
|
|
447
|
-
module_eval(<<'.,.,', 'po_parser.ry',
|
|
453
|
+
module_eval(<<'.,.,', 'po_parser.ry', 85)
|
|
448
454
|
def _reduce_10(val, _values, result)
|
|
449
455
|
if val[0].size > 0
|
|
450
456
|
result = val[0] + "\000" + val[1]
|
|
451
457
|
else
|
|
452
458
|
result = ""
|
|
453
459
|
end
|
|
454
|
-
|
|
460
|
+
|
|
455
461
|
result
|
|
456
462
|
end
|
|
457
463
|
.,.,
|
|
458
464
|
|
|
459
465
|
# reduce 11 omitted
|
|
460
466
|
|
|
461
|
-
module_eval(<<'.,.,', 'po_parser.ry',
|
|
467
|
+
module_eval(<<'.,.,', 'po_parser.ry', 97)
|
|
462
468
|
def _reduce_12(val, _values, result)
|
|
463
469
|
result = val[2]
|
|
464
|
-
|
|
470
|
+
|
|
465
471
|
result
|
|
466
472
|
end
|
|
467
473
|
.,.,
|
|
468
474
|
|
|
469
|
-
module_eval(<<'.,.,', 'po_parser.ry',
|
|
475
|
+
module_eval(<<'.,.,', 'po_parser.ry', 104)
|
|
470
476
|
def _reduce_13(val, _values, result)
|
|
471
477
|
on_comment(val[0])
|
|
472
|
-
|
|
478
|
+
|
|
473
479
|
result
|
|
474
480
|
end
|
|
475
481
|
.,.,
|
|
476
482
|
|
|
477
|
-
module_eval(<<'.,.,', 'po_parser.ry',
|
|
483
|
+
module_eval(<<'.,.,', 'po_parser.ry', 112)
|
|
478
484
|
def _reduce_14(val, _values, result)
|
|
479
485
|
result = val.delete_if{|item| item == ""}.join
|
|
480
|
-
|
|
486
|
+
|
|
481
487
|
result
|
|
482
488
|
end
|
|
483
489
|
.,.,
|
|
484
490
|
|
|
485
|
-
module_eval(<<'.,.,', 'po_parser.ry',
|
|
491
|
+
module_eval(<<'.,.,', 'po_parser.ry', 116)
|
|
486
492
|
def _reduce_15(val, _values, result)
|
|
487
493
|
result = val[0]
|
|
488
|
-
|
|
494
|
+
|
|
489
495
|
result
|
|
490
496
|
end
|
|
491
497
|
.,.,
|
data/lib/gettext/tools/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
|
#
|
|
@@ -200,7 +200,8 @@ module GetText
|
|
|
200
200
|
@output = nil
|
|
201
201
|
@order = nil
|
|
202
202
|
@po_format_options = {
|
|
203
|
-
:
|
|
203
|
+
max_line_width: POEntry::Formatter::DEFAULT_MAX_LINE_WIDTH,
|
|
204
|
+
use_one_line_per_reference: false,
|
|
204
205
|
}
|
|
205
206
|
@include_fuzzy = true
|
|
206
207
|
@report_warning = true
|
|
@@ -322,6 +323,12 @@ module GetText
|
|
|
322
323
|
@po_format_options[:max_line_width] = max_line_width
|
|
323
324
|
end
|
|
324
325
|
|
|
326
|
+
parser.on("--[no-]use-one-line-per-reference",
|
|
327
|
+
_("Use one line for each reference comment"),
|
|
328
|
+
"(#{@po_format_options[:use_one_line_per_reference]})") do |use|
|
|
329
|
+
@po_format_options[:use_one_line_per_reference] = use
|
|
330
|
+
end
|
|
331
|
+
|
|
325
332
|
parser.on("--no-fuzzy",
|
|
326
333
|
_("Ignore fuzzy entries")) do |include_fuzzy|
|
|
327
334
|
@include_fuzzy = include_fuzzy
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
#
|
|
3
3
|
# Copyright (C) 2012 Haruka Yoshihara <yoshihara@clear-code.com>
|
|
4
|
-
# Copyright (C) 2012-
|
|
4
|
+
# Copyright (C) 2012-2024 Sutou Kouhei <kou@clear-code.com>
|
|
5
5
|
#
|
|
6
6
|
# License: Ruby's or LGPL
|
|
7
7
|
#
|
|
@@ -62,6 +62,7 @@ module GetText
|
|
|
62
62
|
@output_file = nil
|
|
63
63
|
@locale = nil
|
|
64
64
|
@language = nil
|
|
65
|
+
@charset = nil
|
|
65
66
|
@entry = nil
|
|
66
67
|
@comment = nil
|
|
67
68
|
@translator = nil
|
|
@@ -180,6 +181,11 @@ module GetText
|
|
|
180
181
|
end
|
|
181
182
|
@locale = language_tag.to_simple.to_s
|
|
182
183
|
@language = language_tag.language
|
|
184
|
+
if language_tag.respond_to?(:charset)
|
|
185
|
+
@charset = language_tag.charset
|
|
186
|
+
else
|
|
187
|
+
@charset = Locale.charset
|
|
188
|
+
end
|
|
183
189
|
|
|
184
190
|
@output_file ||= "#{@locale}.po"
|
|
185
191
|
if File.exist?(@output_file)
|
|
@@ -280,6 +286,7 @@ module GetText
|
|
|
280
286
|
replace_pot_revision_date
|
|
281
287
|
replace_language
|
|
282
288
|
replace_plural_forms
|
|
289
|
+
replace_charset
|
|
283
290
|
end
|
|
284
291
|
|
|
285
292
|
def replace_comment
|
|
@@ -325,6 +332,12 @@ module GetText
|
|
|
325
332
|
end
|
|
326
333
|
end
|
|
327
334
|
|
|
335
|
+
CONTENT_TYPE_CHARSET = /^(Content-Type:.+ charset=)CHARSET/
|
|
336
|
+
|
|
337
|
+
def replace_charset
|
|
338
|
+
@entry = @entry.gsub(CONTENT_TYPE_CHARSET, "\\1#{@charset}")
|
|
339
|
+
end
|
|
340
|
+
|
|
328
341
|
def plural_forms(language)
|
|
329
342
|
converter = CLDRPluralsConverter.new(language)
|
|
330
343
|
converter.convert
|
|
@@ -416,7 +429,7 @@ module GetText
|
|
|
416
429
|
n_plurals += 1
|
|
417
430
|
conditions << condition
|
|
418
431
|
end
|
|
419
|
-
expression = ""
|
|
432
|
+
expression = +""
|
|
420
433
|
case conditions.size
|
|
421
434
|
when 0
|
|
422
435
|
expression << "0"
|