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
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
#
|
|
3
1
|
# Copyright (C) 2012-2013 Haruka Yoshihara <yoshihara@clear-code.com>
|
|
4
|
-
# Copyright (C) 2012-
|
|
5
|
-
# Copyright (C) 2005-2009
|
|
6
|
-
# Copyright (C) 2005,2006
|
|
2
|
+
# Copyright (C) 2012-2023 Sutou Kouhei <kou@clear-code.com>
|
|
3
|
+
# Copyright (C) 2005-2009 Masao Mutoh
|
|
4
|
+
# Copyright (C) 2005,2006 speakillof
|
|
7
5
|
#
|
|
8
6
|
# License: Ruby's or LGPL
|
|
9
7
|
#
|
|
@@ -310,7 +308,8 @@ module GetText
|
|
|
310
308
|
@output = nil
|
|
311
309
|
@order = :reference
|
|
312
310
|
@po_format_options = {
|
|
313
|
-
:
|
|
311
|
+
max_line_width: POEntry::Formatter::DEFAULT_MAX_LINE_WIDTH,
|
|
312
|
+
use_one_line_per_reference: false,
|
|
314
313
|
}
|
|
315
314
|
@enable_fuzzy_matching = true
|
|
316
315
|
@update = nil
|
|
@@ -424,6 +423,12 @@ module GetText
|
|
|
424
423
|
@po_format_options[:max_line_width] = max_line_width
|
|
425
424
|
end
|
|
426
425
|
|
|
426
|
+
parser.on("--[no-]use-one-line-per-reference",
|
|
427
|
+
_("Use one line for each reference comment"),
|
|
428
|
+
"(#{@po_format_options[:use_one_line_per_reference]})") do |use|
|
|
429
|
+
@po_format_options[:use_one_line_per_reference] = use
|
|
430
|
+
end
|
|
431
|
+
|
|
427
432
|
parser.on("--[no-]fuzzy-matching",
|
|
428
433
|
_("Disable fuzzy matching"),
|
|
429
434
|
_("(enable)")) do |boolean|
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
=begin
|
|
4
|
+
parser/erubi.rb - parser for ERB using Erubi
|
|
5
|
+
|
|
6
|
+
Copyright (C) 2005-2009 Masao Mutoh
|
|
7
|
+
|
|
8
|
+
You may redistribute it and/or modify it under the same
|
|
9
|
+
license terms as Ruby or LGPL.
|
|
10
|
+
=end
|
|
11
|
+
|
|
12
|
+
require "erubi"
|
|
13
|
+
require 'gettext/tools/parser/ruby'
|
|
14
|
+
|
|
15
|
+
module GetText
|
|
16
|
+
class ErubiParser
|
|
17
|
+
@config = {
|
|
18
|
+
:extnames => ['.rhtml', '.erb']
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
class << self
|
|
22
|
+
# Sets some preferences to parse ERB files.
|
|
23
|
+
# * config: a Hash of the config. It can takes some values below:
|
|
24
|
+
# * :extnames: An Array of target files extension. Default is [".rhtml"].
|
|
25
|
+
def init(config)
|
|
26
|
+
config.each{|k, v|
|
|
27
|
+
@config[k] = v
|
|
28
|
+
}
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
def target?(file) # :nodoc:
|
|
32
|
+
@config[:extnames].each do |v|
|
|
33
|
+
return true if File.extname(file) == v
|
|
34
|
+
end
|
|
35
|
+
false
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
# Parses eRuby script located at `path`.
|
|
39
|
+
#
|
|
40
|
+
# This is a short cut method. It equals to `new(path,
|
|
41
|
+
# options).parse`.
|
|
42
|
+
#
|
|
43
|
+
# @return [Array<POEntry>] Extracted messages
|
|
44
|
+
# @see #initialize and #parse
|
|
45
|
+
def parse(path, options={})
|
|
46
|
+
parser = new(path, options)
|
|
47
|
+
parser.parse
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
# @param path [String] eRuby script path to be parsed
|
|
52
|
+
# @param options [Hash]
|
|
53
|
+
def initialize(path, options={})
|
|
54
|
+
@path = path
|
|
55
|
+
@options = options
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# Extracts messages from @path.
|
|
59
|
+
#
|
|
60
|
+
# @return [Array<POEntry>] Extracted messages
|
|
61
|
+
def parse
|
|
62
|
+
content = IO.read(@path)
|
|
63
|
+
|
|
64
|
+
encoding = detect_encoding(content)
|
|
65
|
+
content.force_encoding(encoding)
|
|
66
|
+
|
|
67
|
+
erb = Erubi::Engine.new(content)
|
|
68
|
+
src = erb.src
|
|
69
|
+
|
|
70
|
+
RubyParser.new(@path, @options).parse_source(src)
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
def detect_encoding(content)
|
|
74
|
+
if /#.*coding: (\S*)/ =~ content.lines.first
|
|
75
|
+
$1.upcase
|
|
76
|
+
else
|
|
77
|
+
content.encoding
|
|
78
|
+
end
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
if __FILE__ == $0
|
|
84
|
+
# ex) ruby glade.rhtml foo.rhtml bar.rhtml
|
|
85
|
+
ARGV.each do |file|
|
|
86
|
+
p GetText::ErubiParser.parse(file)
|
|
87
|
+
end
|
|
88
|
+
end
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
parser/ruby.rb - parser for ruby script
|
|
3
3
|
|
|
4
|
-
Copyright (C) 2013-
|
|
4
|
+
Copyright (C) 2013-2024 Sutou Kouhei <kou@clear-code.com>
|
|
5
5
|
Copyright (C) 2003-2009 Masao Mutoh
|
|
6
6
|
Copyright (C) 2005 speakillof
|
|
7
7
|
Copyright (C) 2001,2002 Yasushi Shoji, Masao Mutoh
|
|
@@ -36,7 +36,7 @@ module GetText
|
|
|
36
36
|
@current_po_entry_nth_attribute = 0
|
|
37
37
|
@use_comment = false
|
|
38
38
|
@comment_tag = nil
|
|
39
|
-
@last_comment = ""
|
|
39
|
+
@last_comment = +""
|
|
40
40
|
@reset_comment = false
|
|
41
41
|
@string_mark_stack = []
|
|
42
42
|
@string_stack = []
|
|
@@ -86,7 +86,7 @@ module GetText
|
|
|
86
86
|
end
|
|
87
87
|
if @current_po_entry
|
|
88
88
|
@current_po_entry.add_comment(@last_comment) unless @last_comment.empty?
|
|
89
|
-
@last_comment = ""
|
|
89
|
+
@last_comment = +""
|
|
90
90
|
@current_po_entry.references << "#{filename}:#{lineno}"
|
|
91
91
|
@current_po_entry_nth_attribute = 0
|
|
92
92
|
end
|
|
@@ -104,7 +104,7 @@ module GetText
|
|
|
104
104
|
end
|
|
105
105
|
|
|
106
106
|
def process_on_comment(token, po)
|
|
107
|
-
@last_comment = "" if @reset_comment
|
|
107
|
+
@last_comment = +"" if @reset_comment
|
|
108
108
|
@reset_comment = false
|
|
109
109
|
if @last_comment.empty?
|
|
110
110
|
content = token.gsub(/\A#\s*/, "").chomp
|
|
@@ -133,7 +133,7 @@ module GetText
|
|
|
133
133
|
else
|
|
134
134
|
@string_mark_stack << token
|
|
135
135
|
end
|
|
136
|
-
@string_stack << ""
|
|
136
|
+
@string_stack << +""
|
|
137
137
|
po
|
|
138
138
|
end
|
|
139
139
|
|
|
@@ -192,7 +192,7 @@ module GetText
|
|
|
192
192
|
else
|
|
193
193
|
@string_mark_stack << "\""
|
|
194
194
|
end
|
|
195
|
-
@string_stack << ""
|
|
195
|
+
@string_stack << +""
|
|
196
196
|
po
|
|
197
197
|
end
|
|
198
198
|
|
|
@@ -202,7 +202,7 @@ module GetText
|
|
|
202
202
|
|
|
203
203
|
def process_on_regexp_beg(token, po)
|
|
204
204
|
@string_mark_stack << "\""
|
|
205
|
-
@string_stack << ""
|
|
205
|
+
@string_stack << +""
|
|
206
206
|
po
|
|
207
207
|
end
|
|
208
208
|
|
|
@@ -245,38 +245,38 @@ module GetText
|
|
|
245
245
|
def process_on_symbeg(token, po)
|
|
246
246
|
if token.start_with?("%s") or [":'", ":\""].include?(token)
|
|
247
247
|
@string_mark_stack << ":"
|
|
248
|
-
@string_stack << ""
|
|
248
|
+
@string_stack << +""
|
|
249
249
|
end
|
|
250
250
|
po
|
|
251
251
|
end
|
|
252
252
|
|
|
253
253
|
def process_on_backtick(token, po)
|
|
254
254
|
@string_mark_stack << "`"
|
|
255
|
-
@string_stack << ""
|
|
255
|
+
@string_stack << +""
|
|
256
256
|
po
|
|
257
257
|
end
|
|
258
258
|
|
|
259
259
|
def process_on_symbols_beg(token, po)
|
|
260
260
|
@string_mark_stack << "\""
|
|
261
|
-
@string_stack << ""
|
|
261
|
+
@string_stack << +""
|
|
262
262
|
po
|
|
263
263
|
end
|
|
264
264
|
|
|
265
265
|
def process_on_qsymbols_beg(token, po)
|
|
266
266
|
@string_mark_stack << token
|
|
267
|
-
@string_stack << ""
|
|
267
|
+
@string_stack << +""
|
|
268
268
|
po
|
|
269
269
|
end
|
|
270
270
|
|
|
271
271
|
def process_on_words_beg(token, po)
|
|
272
272
|
@string_mark_stack << "\""
|
|
273
|
-
@string_stack << ""
|
|
273
|
+
@string_stack << +""
|
|
274
274
|
po
|
|
275
275
|
end
|
|
276
276
|
|
|
277
277
|
def process_on_qwords_beg(token, po)
|
|
278
278
|
@string_mark_stack << token
|
|
279
|
-
@string_stack << ""
|
|
279
|
+
@string_stack << +""
|
|
280
280
|
po
|
|
281
281
|
end
|
|
282
282
|
|
data/lib/gettext/tools/task.rb
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
#
|
|
2
|
-
#
|
|
3
|
-
# Copyright (C) 2012-2014 Kouhei Sutou <kou@clear-code.com>
|
|
1
|
+
# Copyright (C) 2012-2023 Sutou Kouhei <kou@clear-code.com>
|
|
4
2
|
#
|
|
5
3
|
# License: Ruby's or LGPL
|
|
6
4
|
#
|
|
@@ -452,8 +450,8 @@ module GetText
|
|
|
452
450
|
locale = args.locale || ENV["LOCALE"]
|
|
453
451
|
if locale.nil?
|
|
454
452
|
raise "specify locale name by " +
|
|
455
|
-
|
|
456
|
-
|
|
453
|
+
"rake '#{_task.name}[${LOCALE}]' or " +
|
|
454
|
+
"rake #{_task.name} LOCALE=${LOCALE}'"
|
|
457
455
|
end
|
|
458
456
|
define_edit_po_file_task(locale)
|
|
459
457
|
define_po_file_task(locale)
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
#
|
|
3
1
|
# Copyright (C) 2012 Haruka Yoshihara <yoshihara@clear-code.com>
|
|
4
|
-
# Copyright (C) 2012-
|
|
2
|
+
# Copyright (C) 2012-2023 Sutou Kouhei <kou@clear-code.com>
|
|
5
3
|
# Copyright (C) 2003-2010 Masao Mutoh
|
|
6
4
|
# Copyright (C) 2001,2002 Yasushi Shoji, Masao Mutoh
|
|
7
5
|
#
|
|
@@ -90,7 +88,8 @@ module GetText
|
|
|
90
88
|
|
|
91
89
|
@po_order = :references
|
|
92
90
|
@po_format_options = {
|
|
93
|
-
:
|
|
91
|
+
max_line_width: POEntry::Formatter::DEFAULT_MAX_LINE_WIDTH,
|
|
92
|
+
use_one_line_per_reference: false,
|
|
94
93
|
}
|
|
95
94
|
end
|
|
96
95
|
|
|
@@ -325,11 +324,23 @@ Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;
|
|
|
325
324
|
@po_format_options[:max_line_width] = max_line_width
|
|
326
325
|
end
|
|
327
326
|
|
|
327
|
+
parser.on("--[no-]use-one-line-per-reference",
|
|
328
|
+
_("Use one line for each reference comment"),
|
|
329
|
+
"(#{@po_format_options[:use_one_line_per_reference]})") do |use|
|
|
330
|
+
@po_format_options[:use_one_line_per_reference] = use
|
|
331
|
+
end
|
|
332
|
+
|
|
328
333
|
parser.on("-r", "--require=library",
|
|
329
334
|
_("require the library before executing xgettext")) do |out|
|
|
330
335
|
require out
|
|
331
336
|
end
|
|
332
337
|
|
|
338
|
+
parser.on("--parser=PARSER",
|
|
339
|
+
_("Add PARSER to parser list for xgettext")) do |parser_name|
|
|
340
|
+
parser_class = parser_name.split('::').inject(Object) {|o,c| o.const_get c}
|
|
341
|
+
add_parser(parser_class)
|
|
342
|
+
end
|
|
343
|
+
|
|
333
344
|
parser.on("-c", "--add-comments[=TAG]",
|
|
334
345
|
_("If TAG is specified, place comment blocks starting with TAG and precedding keyword lines in output file"),
|
|
335
346
|
_("If TAG is not specified, place all comment blocks preceing keyword lines in output file"),
|
data/lib/gettext/version.rb
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
version - version information of gettext
|
|
3
3
|
|
|
4
|
-
Copyright (C) 2012-
|
|
5
|
-
Copyright (C) 2005-2009
|
|
4
|
+
Copyright (C) 2012-2025 Sutou Kouhei <kou@clear-code.com>
|
|
5
|
+
Copyright (C) 2005-2009 Masao Mutoh
|
|
6
6
|
|
|
7
7
|
You may redistribute it and/or modify it under the same
|
|
8
8
|
license terms as Ruby or LGPL.
|
|
9
9
|
=end
|
|
10
10
|
|
|
11
11
|
module GetText
|
|
12
|
-
VERSION = "3.
|
|
12
|
+
VERSION = "3.5.2"
|
|
13
13
|
end
|
|
Binary file
|