gettext 3.4.2 → 3.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/Rakefile +13 -4
- data/doc/text/news.md +117 -0
- data/gettext.gemspec +6 -1
- data/lib/gettext/po_entry.rb +31 -21
- data/lib/gettext/po_parser.rb +65 -59
- data/lib/gettext/tools/msgcat.rb +9 -2
- data/lib/gettext/tools/msginit.rb +15 -2
- data/lib/gettext/tools/msgmerge.rb +11 -6
- data/lib/gettext/tools/parser/erb.rb +1 -1
- data/lib/gettext/tools/parser/erubi.rb +88 -0
- data/lib/gettext/tools/parser/ruby.rb +13 -13
- data/lib/gettext/tools/task.rb +3 -5
- data/lib/gettext/tools/xgettext.rb +15 -4
- data/lib/gettext/version.rb +3 -3
- data/locale/ja/LC_MESSAGES/gettext.mo +0 -0
- data/po/bg/gettext.edit.po +78 -73
- data/po/bg/gettext.po +6 -0
- data/po/bs/gettext.edit.po +78 -73
- data/po/bs/gettext.po +6 -0
- data/po/ca/gettext.edit.po +78 -73
- data/po/ca/gettext.po +6 -0
- data/po/cs/gettext.edit.po +78 -73
- data/po/cs/gettext.po +6 -0
- data/po/de/gettext.edit.po +78 -73
- data/po/de/gettext.po +6 -0
- data/po/el/gettext.edit.po +78 -73
- data/po/el/gettext.po +6 -0
- data/po/eo/gettext.edit.po +78 -73
- data/po/eo/gettext.po +6 -0
- data/po/es/gettext.edit.po +78 -73
- data/po/es/gettext.po +6 -0
- data/po/et/gettext.edit.po +78 -73
- data/po/et/gettext.po +6 -0
- data/po/fr/gettext.edit.po +78 -73
- data/po/fr/gettext.po +6 -0
- data/po/gettext.pot +90 -81
- data/po/hr/gettext.edit.po +78 -73
- data/po/hr/gettext.po +6 -0
- data/po/hu/gettext.edit.po +78 -73
- data/po/hu/gettext.po +6 -0
- data/po/it/gettext.edit.po +78 -73
- data/po/it/gettext.po +6 -0
- data/po/ja/gettext.edit.po +79 -74
- data/po/ja/gettext.po +7 -1
- data/po/ko/gettext.edit.po +78 -73
- data/po/ko/gettext.po +6 -0
- data/po/lv/gettext.edit.po +78 -73
- data/po/lv/gettext.po +6 -0
- data/po/nb/gettext.edit.po +78 -73
- data/po/nb/gettext.po +6 -0
- data/po/nl/gettext.edit.po +78 -73
- data/po/nl/gettext.po +6 -0
- data/po/pt_BR/gettext.edit.po +78 -73
- data/po/pt_BR/gettext.po +6 -0
- data/po/ru/gettext.edit.po +78 -73
- data/po/ru/gettext.po +6 -0
- data/po/sr/gettext.edit.po +78 -73
- data/po/sr/gettext.po +6 -0
- data/po/sv/gettext.edit.po +78 -70
- data/po/sv/gettext.po +6 -0
- data/po/uk/gettext.edit.po +78 -73
- data/po/uk/gettext.po +6 -0
- data/po/vi/gettext.edit.po +78 -73
- data/po/vi/gettext.po +6 -0
- data/po/zh/gettext.edit.po +78 -73
- data/po/zh/gettext.po +6 -0
- data/po/zh_TW/gettext.edit.po +78 -73
- data/po/zh_TW/gettext.po +6 -0
- data/samples/po/bg/hello_gtk_builder.po +12 -0
- data/samples/po/bs/hello_gtk_builder.po +12 -0
- data/samples/po/ca/hello_gtk_builder.po +12 -0
- data/samples/po/cs/hello_gtk_builder.po +12 -0
- data/samples/po/de/hello_gtk_builder.po +12 -0
- data/samples/po/el/hello_gtk_builder.po +12 -0
- data/samples/po/eo/hello_gtk_builder.po +12 -0
- data/samples/po/es/hello_gtk_builder.po +12 -0
- data/samples/po/fr/hello_gtk_builder.po +12 -0
- data/samples/po/hr/hello_gtk_builder.po +12 -0
- data/samples/po/hu/hello_gtk_builder.po +12 -0
- data/samples/po/it/hello_gtk_builder.po +12 -0
- data/samples/po/ja/hello_gtk_builder.po +12 -0
- data/samples/po/ko/hello_gtk_builder.po +12 -0
- data/samples/po/lv/hello_gtk_builder.po +12 -0
- data/samples/po/nb/hello_gtk_builder.po +12 -0
- data/samples/po/nl/hello_gtk_builder.po +12 -0
- data/samples/po/pt_BR/hello_gtk_builder.po +12 -0
- data/samples/po/ru/hello_gtk_builder.po +12 -0
- data/samples/po/sr/hello_gtk_builder.po +12 -0
- data/samples/po/sv/hello_gtk_builder.po +12 -0
- data/samples/po/uk/hello_gtk_builder.po +12 -0
- data/samples/po/vi/hello_gtk_builder.po +12 -0
- data/samples/po/zh/hello_gtk_builder.po +12 -0
- data/samples/po/zh_TW/hello_gtk_builder.po +12 -0
- data/src/po_parser.ry +48 -42
- data/test/fixtures/erb/case.rhtml +16 -0
- data/test/po/ja/_.po +15 -0
- data/test/test_parser.rb +62 -0
- data/test/test_po_entry.rb +20 -4
- data/test/test_po_parser.rb +44 -1
- data/test/tools/test_msgcat.rb +21 -1
- data/test/tools/test_msginit.rb +69 -13
- data/test/tools/test_msgmerge.rb +41 -3
- data/test/tools/test_xgettext.rb +100 -3
- metadata +30 -975
- data/samples/cgi/locale/bg/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/bg/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/bg/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/bg/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/bs/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/bs/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/bs/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/bs/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/ca/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/ca/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/ca/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/ca/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/cs/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/cs/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/cs/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/cs/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/de/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/de/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/de/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/de/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/el/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/el/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/el/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/el/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/eo/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/eo/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/eo/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/eo/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/es/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/es/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/es/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/es/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/fr/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/fr/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/fr/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/fr/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/hr/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/hr/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/hr/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/hr/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/hu/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/hu/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/hu/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/hu/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/it/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/it/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/it/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/it/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/ja/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/ja/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/ja/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/ja/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/ko/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/ko/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/ko/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/ko/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/lv/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/lv/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/lv/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/lv/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/nb/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/nb/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/nb/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/nb/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/nl/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/nl/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/nl/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/nl/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/pt_BR/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/pt_BR/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/ru/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/ru/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/ru/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/ru/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/sr/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/sr/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/sr/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/sr/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/uk/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/uk/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/uk/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/uk/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/vi/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/vi/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/vi/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/vi/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/zh/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/zh/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/zh/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/zh/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/zh_TW/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/zh_TW/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/zh_TW/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/zh_TW/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/po/bg/helloerb1.edit.po +0 -22
- data/samples/cgi/po/bg/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/bg/helloerb2.edit.po +0 -22
- data/samples/cgi/po/bg/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/bg/hellolib.edit.po +0 -22
- data/samples/cgi/po/bg/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/bg/main.edit.po +0 -74
- data/samples/cgi/po/bg/main.po.time_stamp +0 -0
- data/samples/cgi/po/bs/helloerb1.edit.po +0 -22
- data/samples/cgi/po/bs/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/bs/helloerb2.edit.po +0 -22
- data/samples/cgi/po/bs/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/bs/hellolib.edit.po +0 -22
- data/samples/cgi/po/bs/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/bs/main.edit.po +0 -74
- data/samples/cgi/po/bs/main.po.time_stamp +0 -0
- data/samples/cgi/po/ca/helloerb1.edit.po +0 -22
- data/samples/cgi/po/ca/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/ca/helloerb2.edit.po +0 -22
- data/samples/cgi/po/ca/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/ca/hellolib.edit.po +0 -22
- data/samples/cgi/po/ca/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/ca/main.edit.po +0 -74
- data/samples/cgi/po/ca/main.po.time_stamp +0 -0
- data/samples/cgi/po/cs/helloerb1.edit.po +0 -24
- data/samples/cgi/po/cs/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/cs/helloerb2.edit.po +0 -23
- data/samples/cgi/po/cs/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/cs/hellolib.edit.po +0 -24
- data/samples/cgi/po/cs/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/cs/main.edit.po +0 -76
- data/samples/cgi/po/cs/main.po.time_stamp +0 -0
- data/samples/cgi/po/de/helloerb1.edit.po +0 -22
- data/samples/cgi/po/de/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/de/helloerb2.edit.po +0 -22
- data/samples/cgi/po/de/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/de/hellolib.edit.po +0 -22
- data/samples/cgi/po/de/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/de/main.edit.po +0 -74
- data/samples/cgi/po/de/main.po.time_stamp +0 -0
- data/samples/cgi/po/el/helloerb1.edit.po +0 -22
- data/samples/cgi/po/el/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/el/helloerb2.edit.po +0 -22
- data/samples/cgi/po/el/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/el/hellolib.edit.po +0 -22
- data/samples/cgi/po/el/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/el/main.edit.po +0 -74
- data/samples/cgi/po/el/main.po.time_stamp +0 -0
- data/samples/cgi/po/eo/helloerb1.edit.po +0 -22
- data/samples/cgi/po/eo/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/eo/helloerb2.edit.po +0 -22
- data/samples/cgi/po/eo/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/eo/hellolib.edit.po +0 -22
- data/samples/cgi/po/eo/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/eo/main.edit.po +0 -74
- data/samples/cgi/po/eo/main.po.time_stamp +0 -0
- data/samples/cgi/po/es/helloerb1.edit.po +0 -21
- data/samples/cgi/po/es/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/es/helloerb2.edit.po +0 -20
- data/samples/cgi/po/es/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/es/hellolib.edit.po +0 -20
- data/samples/cgi/po/es/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/es/main.edit.po +0 -72
- data/samples/cgi/po/es/main.po.time_stamp +0 -0
- data/samples/cgi/po/fr/helloerb1.edit.po +0 -22
- data/samples/cgi/po/fr/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/fr/helloerb2.edit.po +0 -22
- data/samples/cgi/po/fr/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/fr/hellolib.edit.po +0 -21
- data/samples/cgi/po/fr/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/fr/main.edit.po +0 -74
- data/samples/cgi/po/fr/main.po.time_stamp +0 -0
- data/samples/cgi/po/helloerb1.pot +0 -23
- data/samples/cgi/po/helloerb2.pot +0 -23
- data/samples/cgi/po/hellolib.pot +0 -23
- data/samples/cgi/po/hr/helloerb1.edit.po +0 -22
- data/samples/cgi/po/hr/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/hr/helloerb2.edit.po +0 -22
- data/samples/cgi/po/hr/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/hr/hellolib.edit.po +0 -22
- data/samples/cgi/po/hr/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/hr/main.edit.po +0 -74
- data/samples/cgi/po/hr/main.po.time_stamp +0 -0
- data/samples/cgi/po/hu/helloerb1.edit.po +0 -22
- data/samples/cgi/po/hu/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/hu/helloerb2.edit.po +0 -22
- data/samples/cgi/po/hu/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/hu/hellolib.edit.po +0 -22
- data/samples/cgi/po/hu/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/hu/main.edit.po +0 -74
- data/samples/cgi/po/hu/main.po.time_stamp +0 -0
- data/samples/cgi/po/it/helloerb1.edit.po +0 -22
- data/samples/cgi/po/it/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/it/helloerb2.edit.po +0 -22
- data/samples/cgi/po/it/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/it/hellolib.edit.po +0 -22
- data/samples/cgi/po/it/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/it/main.edit.po +0 -74
- data/samples/cgi/po/it/main.po.time_stamp +0 -0
- data/samples/cgi/po/ja/helloerb1.edit.po +0 -22
- data/samples/cgi/po/ja/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/ja/helloerb2.edit.po +0 -22
- data/samples/cgi/po/ja/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/ja/hellolib.edit.po +0 -22
- data/samples/cgi/po/ja/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/ja/main.edit.po +0 -74
- data/samples/cgi/po/ja/main.po.time_stamp +0 -0
- data/samples/cgi/po/ko/helloerb1.edit.po +0 -22
- data/samples/cgi/po/ko/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/ko/helloerb2.edit.po +0 -22
- data/samples/cgi/po/ko/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/ko/hellolib.edit.po +0 -22
- data/samples/cgi/po/ko/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/ko/main.edit.po +0 -74
- data/samples/cgi/po/ko/main.po.time_stamp +0 -0
- data/samples/cgi/po/lv/helloerb1.edit.po +0 -22
- data/samples/cgi/po/lv/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/lv/helloerb2.edit.po +0 -22
- data/samples/cgi/po/lv/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/lv/hellolib.edit.po +0 -22
- data/samples/cgi/po/lv/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/lv/main.edit.po +0 -74
- data/samples/cgi/po/lv/main.po.time_stamp +0 -0
- data/samples/cgi/po/main.pot +0 -79
- data/samples/cgi/po/nb/helloerb1.edit.po +0 -22
- data/samples/cgi/po/nb/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/nb/helloerb2.edit.po +0 -22
- data/samples/cgi/po/nb/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/nb/hellolib.edit.po +0 -22
- data/samples/cgi/po/nb/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/nb/main.edit.po +0 -74
- data/samples/cgi/po/nb/main.po.time_stamp +0 -0
- data/samples/cgi/po/nl/helloerb1.edit.po +0 -22
- data/samples/cgi/po/nl/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/nl/helloerb2.edit.po +0 -22
- data/samples/cgi/po/nl/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/nl/hellolib.edit.po +0 -22
- data/samples/cgi/po/nl/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/nl/main.edit.po +0 -74
- data/samples/cgi/po/nl/main.po.time_stamp +0 -0
- data/samples/cgi/po/pt_BR/helloerb1.edit.po +0 -22
- data/samples/cgi/po/pt_BR/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/pt_BR/helloerb2.edit.po +0 -22
- data/samples/cgi/po/pt_BR/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/pt_BR/hellolib.edit.po +0 -22
- data/samples/cgi/po/pt_BR/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/pt_BR/main.edit.po +0 -74
- data/samples/cgi/po/pt_BR/main.po.time_stamp +0 -0
- data/samples/cgi/po/ru/helloerb1.edit.po +0 -20
- data/samples/cgi/po/ru/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/ru/helloerb2.edit.po +0 -20
- data/samples/cgi/po/ru/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/ru/hellolib.edit.po +0 -20
- data/samples/cgi/po/ru/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/ru/main.edit.po +0 -72
- data/samples/cgi/po/ru/main.po.time_stamp +0 -0
- data/samples/cgi/po/sr/helloerb1.edit.po +0 -23
- data/samples/cgi/po/sr/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/sr/helloerb2.edit.po +0 -23
- data/samples/cgi/po/sr/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/sr/hellolib.edit.po +0 -23
- data/samples/cgi/po/sr/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/sr/main.edit.po +0 -75
- data/samples/cgi/po/sr/main.po.time_stamp +0 -0
- data/samples/cgi/po/uk/helloerb1.edit.po +0 -25
- data/samples/cgi/po/uk/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/uk/helloerb2.edit.po +0 -25
- data/samples/cgi/po/uk/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/uk/hellolib.edit.po +0 -25
- data/samples/cgi/po/uk/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/uk/main.edit.po +0 -77
- data/samples/cgi/po/uk/main.po.time_stamp +0 -0
- data/samples/cgi/po/vi/helloerb1.edit.po +0 -22
- data/samples/cgi/po/vi/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/vi/helloerb2.edit.po +0 -22
- data/samples/cgi/po/vi/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/vi/hellolib.edit.po +0 -22
- data/samples/cgi/po/vi/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/vi/main.edit.po +0 -74
- data/samples/cgi/po/vi/main.po.time_stamp +0 -0
- data/samples/cgi/po/zh/helloerb1.edit.po +0 -23
- data/samples/cgi/po/zh/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/zh/helloerb2.edit.po +0 -23
- data/samples/cgi/po/zh/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/zh/hellolib.edit.po +0 -23
- data/samples/cgi/po/zh/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/zh/main.edit.po +0 -75
- data/samples/cgi/po/zh/main.po.time_stamp +0 -0
- data/samples/cgi/po/zh_TW/helloerb1.edit.po +0 -24
- data/samples/cgi/po/zh_TW/helloerb1.po.time_stamp +0 -0
- data/samples/cgi/po/zh_TW/helloerb2.edit.po +0 -24
- data/samples/cgi/po/zh_TW/helloerb2.po.time_stamp +0 -0
- data/samples/cgi/po/zh_TW/hellolib.edit.po +0 -24
- data/samples/cgi/po/zh_TW/hellolib.po.time_stamp +0 -0
- data/samples/cgi/po/zh_TW/main.edit.po +0 -76
- data/samples/cgi/po/zh_TW/main.po.time_stamp +0 -0
- data/samples/locale/bg/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/bg/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/bg/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/bg/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/bg/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/bg/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/bg/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/bg/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/bs/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/bs/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/bs/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/bs/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/bs/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/bs/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/bs/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/bs/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/ca/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/ca/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/ca/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/ca/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/ca/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/ca/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/ca/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ca/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/cs/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/cs/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/cs/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/cs/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/cs/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/cs/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/cs/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/cs/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/eo/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/eo/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/eo/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/eo/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/eo/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/eo/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/eo/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/eo/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/hr/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/hr/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/hr/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/hr/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/hr/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/hr/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/hr/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/hr/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/lv/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/lv/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/lv/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/lv/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/lv/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/lv/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/lv/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/lv/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/nb/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/nb/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/nb/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/nb/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/nb/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/nb/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/nb/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/nb/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/sr/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/sr/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/sr/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/sr/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/sr/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/sr/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/sr/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/sr/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/uk/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/uk/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/uk/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/uk/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/uk/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/uk/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/uk/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/uk/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/vi/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/vi/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/vi/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/vi/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/vi/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/vi/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/vi/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/vi/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/locale/zh_TW/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/zh_TW/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/zh_TW/LC_MESSAGES/hello_glade2.mo +0 -0
- data/samples/locale/zh_TW/LC_MESSAGES/hello_gtk2.mo +0 -0
- data/samples/locale/zh_TW/LC_MESSAGES/hello_gtk_builder.mo +0 -0
- data/samples/locale/zh_TW/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/zh_TW/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/zh_TW/LC_MESSAGES/hello_tk.mo +0 -0
- data/samples/po/bg/hello.edit.po +0 -24
- data/samples/po/bg/hello.po.time_stamp +0 -0
- data/samples/po/bg/hello2.edit.po +0 -34
- data/samples/po/bg/hello2.po.time_stamp +0 -0
- data/samples/po/bg/hello_glade2.edit.po +0 -36
- data/samples/po/bg/hello_glade2.po.time_stamp +0 -0
- data/samples/po/bg/hello_gtk2.edit.po +0 -22
- data/samples/po/bg/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/bg/hello_gtk_builder.edit.po +0 -18
- data/samples/po/bg/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/bg/hello_noop.edit.po +0 -26
- data/samples/po/bg/hello_noop.po.time_stamp +0 -0
- data/samples/po/bg/hello_plural.edit.po +0 -28
- data/samples/po/bg/hello_plural.po.time_stamp +0 -0
- data/samples/po/bg/hello_tk.edit.po +0 -22
- data/samples/po/bg/hello_tk.po.time_stamp +0 -0
- data/samples/po/bs/hello.edit.po +0 -24
- data/samples/po/bs/hello.po.time_stamp +0 -0
- data/samples/po/bs/hello2.edit.po +0 -34
- data/samples/po/bs/hello2.po.time_stamp +0 -0
- data/samples/po/bs/hello_glade2.edit.po +0 -36
- data/samples/po/bs/hello_glade2.po.time_stamp +0 -0
- data/samples/po/bs/hello_gtk2.edit.po +0 -22
- data/samples/po/bs/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/bs/hello_gtk_builder.edit.po +0 -19
- data/samples/po/bs/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/bs/hello_noop.edit.po +0 -26
- data/samples/po/bs/hello_noop.po.time_stamp +0 -0
- data/samples/po/bs/hello_plural.edit.po +0 -30
- data/samples/po/bs/hello_plural.po.time_stamp +0 -0
- data/samples/po/bs/hello_tk.edit.po +0 -22
- data/samples/po/bs/hello_tk.po.time_stamp +0 -0
- data/samples/po/ca/hello.edit.po +0 -24
- data/samples/po/ca/hello.po.time_stamp +0 -0
- data/samples/po/ca/hello2.edit.po +0 -34
- data/samples/po/ca/hello2.po.time_stamp +0 -0
- data/samples/po/ca/hello_glade2.edit.po +0 -36
- data/samples/po/ca/hello_glade2.po.time_stamp +0 -0
- data/samples/po/ca/hello_gtk2.edit.po +0 -22
- data/samples/po/ca/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/ca/hello_gtk_builder.edit.po +0 -18
- data/samples/po/ca/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/ca/hello_noop.edit.po +0 -26
- data/samples/po/ca/hello_noop.po.time_stamp +0 -0
- data/samples/po/ca/hello_plural.edit.po +0 -28
- data/samples/po/ca/hello_plural.po.time_stamp +0 -0
- data/samples/po/ca/hello_tk.edit.po +0 -22
- data/samples/po/ca/hello_tk.po.time_stamp +0 -0
- data/samples/po/cs/hello.edit.po +0 -24
- data/samples/po/cs/hello.po.time_stamp +0 -0
- data/samples/po/cs/hello2.edit.po +0 -34
- data/samples/po/cs/hello2.po.time_stamp +0 -0
- data/samples/po/cs/hello_glade2.edit.po +0 -36
- data/samples/po/cs/hello_glade2.po.time_stamp +0 -0
- data/samples/po/cs/hello_gtk2.edit.po +0 -22
- data/samples/po/cs/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/cs/hello_gtk_builder.edit.po +0 -18
- data/samples/po/cs/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/cs/hello_noop.edit.po +0 -26
- data/samples/po/cs/hello_noop.po.time_stamp +0 -0
- data/samples/po/cs/hello_plural.edit.po +0 -30
- data/samples/po/cs/hello_plural.po.time_stamp +0 -0
- data/samples/po/cs/hello_tk.edit.po +0 -22
- data/samples/po/cs/hello_tk.po.time_stamp +0 -0
- data/samples/po/de/hello.edit.po +0 -20
- data/samples/po/de/hello.po.time_stamp +0 -0
- data/samples/po/de/hello2.edit.po +0 -30
- data/samples/po/de/hello2.po.time_stamp +0 -0
- data/samples/po/de/hello_glade2.edit.po +0 -32
- data/samples/po/de/hello_glade2.po.time_stamp +0 -0
- data/samples/po/de/hello_gtk2.edit.po +0 -18
- data/samples/po/de/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/de/hello_gtk_builder.edit.po +0 -18
- data/samples/po/de/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/de/hello_noop.edit.po +0 -22
- data/samples/po/de/hello_noop.po.time_stamp +0 -0
- data/samples/po/de/hello_plural.edit.po +0 -28
- data/samples/po/de/hello_plural.po.time_stamp +0 -0
- data/samples/po/de/hello_tk.edit.po +0 -18
- data/samples/po/de/hello_tk.po.time_stamp +0 -0
- data/samples/po/el/hello.edit.po +0 -24
- data/samples/po/el/hello.po.time_stamp +0 -0
- data/samples/po/el/hello2.edit.po +0 -34
- data/samples/po/el/hello2.po.time_stamp +0 -0
- data/samples/po/el/hello_glade2.edit.po +0 -37
- data/samples/po/el/hello_glade2.po.time_stamp +0 -0
- data/samples/po/el/hello_gtk2.edit.po +0 -21
- data/samples/po/el/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/el/hello_gtk_builder.edit.po +0 -18
- data/samples/po/el/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/el/hello_noop.edit.po +0 -26
- data/samples/po/el/hello_noop.po.time_stamp +0 -0
- data/samples/po/el/hello_plural.edit.po +0 -28
- data/samples/po/el/hello_plural.po.time_stamp +0 -0
- data/samples/po/el/hello_tk.edit.po +0 -22
- data/samples/po/el/hello_tk.po.time_stamp +0 -0
- data/samples/po/eo/hello.edit.po +0 -23
- data/samples/po/eo/hello.po.time_stamp +0 -0
- data/samples/po/eo/hello2.edit.po +0 -33
- data/samples/po/eo/hello2.po.time_stamp +0 -0
- data/samples/po/eo/hello_glade2.edit.po +0 -36
- data/samples/po/eo/hello_glade2.po.time_stamp +0 -0
- data/samples/po/eo/hello_gtk2.edit.po +0 -21
- data/samples/po/eo/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/eo/hello_gtk_builder.edit.po +0 -18
- data/samples/po/eo/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/eo/hello_noop.edit.po +0 -25
- data/samples/po/eo/hello_noop.po.time_stamp +0 -0
- data/samples/po/eo/hello_plural.edit.po +0 -28
- data/samples/po/eo/hello_plural.po.time_stamp +0 -0
- data/samples/po/eo/hello_tk.edit.po +0 -22
- data/samples/po/eo/hello_tk.po.time_stamp +0 -0
- data/samples/po/es/hello.edit.po +0 -21
- data/samples/po/es/hello.po.time_stamp +0 -0
- data/samples/po/es/hello2.edit.po +0 -30
- data/samples/po/es/hello2.po.time_stamp +0 -0
- data/samples/po/es/hello_glade2.edit.po +0 -33
- data/samples/po/es/hello_glade2.po.time_stamp +0 -0
- data/samples/po/es/hello_gtk2.edit.po +0 -19
- data/samples/po/es/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/es/hello_gtk_builder.edit.po +0 -18
- data/samples/po/es/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/es/hello_noop.edit.po +0 -23
- data/samples/po/es/hello_noop.po.time_stamp +0 -0
- data/samples/po/es/hello_plural.edit.po +0 -26
- data/samples/po/es/hello_plural.po.time_stamp +0 -0
- data/samples/po/es/hello_tk.edit.po +0 -19
- data/samples/po/es/hello_tk.po.time_stamp +0 -0
- data/samples/po/fr/hello.edit.po +0 -19
- data/samples/po/fr/hello.po.time_stamp +0 -0
- data/samples/po/fr/hello2.edit.po +0 -29
- data/samples/po/fr/hello2.po.time_stamp +0 -0
- data/samples/po/fr/hello_glade2.edit.po +0 -32
- data/samples/po/fr/hello_glade2.po.time_stamp +0 -0
- data/samples/po/fr/hello_gtk2.edit.po +0 -17
- data/samples/po/fr/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/fr/hello_gtk_builder.edit.po +0 -18
- data/samples/po/fr/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/fr/hello_noop.edit.po +0 -21
- data/samples/po/fr/hello_noop.po.time_stamp +0 -0
- data/samples/po/fr/hello_plural.edit.po +0 -24
- data/samples/po/fr/hello_plural.po.time_stamp +0 -0
- data/samples/po/fr/hello_tk.edit.po +0 -16
- data/samples/po/fr/hello_tk.po.time_stamp +0 -0
- data/samples/po/hello.pot +0 -24
- data/samples/po/hello2.pot +0 -33
- data/samples/po/hello_glade2.pot +0 -31
- data/samples/po/hello_gtk2.pot +0 -23
- data/samples/po/hello_gtk_builder.pot +0 -20
- data/samples/po/hello_noop.pot +0 -27
- data/samples/po/hello_plural.pot +0 -27
- data/samples/po/hello_tk.pot +0 -23
- data/samples/po/hr/hello.edit.po +0 -24
- data/samples/po/hr/hello.po.time_stamp +0 -0
- data/samples/po/hr/hello2.edit.po +0 -34
- data/samples/po/hr/hello2.po.time_stamp +0 -0
- data/samples/po/hr/hello_glade2.edit.po +0 -36
- data/samples/po/hr/hello_glade2.po.time_stamp +0 -0
- data/samples/po/hr/hello_gtk2.edit.po +0 -22
- data/samples/po/hr/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/hr/hello_gtk_builder.edit.po +0 -19
- data/samples/po/hr/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/hr/hello_noop.edit.po +0 -26
- data/samples/po/hr/hello_noop.po.time_stamp +0 -0
- data/samples/po/hr/hello_plural.edit.po +0 -30
- data/samples/po/hr/hello_plural.po.time_stamp +0 -0
- data/samples/po/hr/hello_tk.edit.po +0 -22
- data/samples/po/hr/hello_tk.po.time_stamp +0 -0
- data/samples/po/hu/hello.edit.po +0 -23
- data/samples/po/hu/hello.po.time_stamp +0 -0
- data/samples/po/hu/hello2.edit.po +0 -33
- data/samples/po/hu/hello2.po.time_stamp +0 -0
- data/samples/po/hu/hello_glade2.edit.po +0 -36
- data/samples/po/hu/hello_glade2.po.time_stamp +0 -0
- data/samples/po/hu/hello_gtk2.edit.po +0 -21
- data/samples/po/hu/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/hu/hello_gtk_builder.edit.po +0 -18
- data/samples/po/hu/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/hu/hello_noop.edit.po +0 -25
- data/samples/po/hu/hello_noop.po.time_stamp +0 -0
- data/samples/po/hu/hello_plural.edit.po +0 -28
- data/samples/po/hu/hello_plural.po.time_stamp +0 -0
- data/samples/po/hu/hello_tk.edit.po +0 -22
- data/samples/po/hu/hello_tk.po.time_stamp +0 -0
- data/samples/po/it/hello.edit.po +0 -20
- data/samples/po/it/hello.po.time_stamp +0 -0
- data/samples/po/it/hello2.edit.po +0 -30
- data/samples/po/it/hello2.po.time_stamp +0 -0
- data/samples/po/it/hello_glade2.edit.po +0 -33
- data/samples/po/it/hello_glade2.po.time_stamp +0 -0
- data/samples/po/it/hello_gtk2.edit.po +0 -19
- data/samples/po/it/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/it/hello_gtk_builder.edit.po +0 -18
- data/samples/po/it/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/it/hello_noop.edit.po +0 -22
- data/samples/po/it/hello_noop.po.time_stamp +0 -0
- data/samples/po/it/hello_plural.edit.po +0 -26
- data/samples/po/it/hello_plural.po.time_stamp +0 -0
- data/samples/po/it/hello_tk.edit.po +0 -19
- data/samples/po/it/hello_tk.po.time_stamp +0 -0
- data/samples/po/ja/hello.edit.po +0 -19
- data/samples/po/ja/hello.po.time_stamp +0 -0
- data/samples/po/ja/hello2.edit.po +0 -29
- data/samples/po/ja/hello2.po.time_stamp +0 -0
- data/samples/po/ja/hello_glade2.edit.po +0 -31
- data/samples/po/ja/hello_glade2.po.time_stamp +0 -0
- data/samples/po/ja/hello_gtk2.edit.po +0 -17
- data/samples/po/ja/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/ja/hello_gtk_builder.edit.po +0 -18
- data/samples/po/ja/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/ja/hello_noop.edit.po +0 -21
- data/samples/po/ja/hello_noop.po.time_stamp +0 -0
- data/samples/po/ja/hello_plural.edit.po +0 -24
- data/samples/po/ja/hello_plural.po.time_stamp +0 -0
- data/samples/po/ja/hello_tk.edit.po +0 -16
- data/samples/po/ja/hello_tk.po.time_stamp +0 -0
- data/samples/po/ko/hello.edit.po +0 -19
- data/samples/po/ko/hello.po.time_stamp +0 -0
- data/samples/po/ko/hello2.edit.po +0 -29
- data/samples/po/ko/hello2.po.time_stamp +0 -0
- data/samples/po/ko/hello_glade2.edit.po +0 -33
- data/samples/po/ko/hello_glade2.po.time_stamp +0 -0
- data/samples/po/ko/hello_gtk2.edit.po +0 -17
- data/samples/po/ko/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/ko/hello_gtk_builder.edit.po +0 -18
- data/samples/po/ko/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/ko/hello_noop.edit.po +0 -21
- data/samples/po/ko/hello_noop.po.time_stamp +0 -0
- data/samples/po/ko/hello_plural.edit.po +0 -28
- data/samples/po/ko/hello_plural.po.time_stamp +0 -0
- data/samples/po/ko/hello_tk.edit.po +0 -18
- data/samples/po/ko/hello_tk.po.time_stamp +0 -0
- data/samples/po/lv/hello.edit.po +0 -24
- data/samples/po/lv/hello.po.time_stamp +0 -0
- data/samples/po/lv/hello2.edit.po +0 -34
- data/samples/po/lv/hello2.po.time_stamp +0 -0
- data/samples/po/lv/hello_glade2.edit.po +0 -36
- data/samples/po/lv/hello_glade2.po.time_stamp +0 -0
- data/samples/po/lv/hello_gtk2.edit.po +0 -22
- data/samples/po/lv/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/lv/hello_gtk_builder.edit.po +0 -18
- data/samples/po/lv/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/lv/hello_noop.edit.po +0 -26
- data/samples/po/lv/hello_noop.po.time_stamp +0 -0
- data/samples/po/lv/hello_plural.edit.po +0 -28
- data/samples/po/lv/hello_plural.po.time_stamp +0 -0
- data/samples/po/lv/hello_tk.edit.po +0 -22
- data/samples/po/lv/hello_tk.po.time_stamp +0 -0
- data/samples/po/nb/hello.edit.po +0 -23
- data/samples/po/nb/hello.po.time_stamp +0 -0
- data/samples/po/nb/hello2.edit.po +0 -33
- data/samples/po/nb/hello2.po.time_stamp +0 -0
- data/samples/po/nb/hello_glade2.edit.po +0 -35
- data/samples/po/nb/hello_glade2.po.time_stamp +0 -0
- data/samples/po/nb/hello_gtk2.edit.po +0 -21
- data/samples/po/nb/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/nb/hello_gtk_builder.edit.po +0 -18
- data/samples/po/nb/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/nb/hello_noop.edit.po +0 -25
- data/samples/po/nb/hello_noop.po.time_stamp +0 -0
- data/samples/po/nb/hello_plural.edit.po +0 -28
- data/samples/po/nb/hello_plural.po.time_stamp +0 -0
- data/samples/po/nb/hello_tk.edit.po +0 -22
- data/samples/po/nb/hello_tk.po.time_stamp +0 -0
- data/samples/po/nl/hello.edit.po +0 -24
- data/samples/po/nl/hello.po.time_stamp +0 -0
- data/samples/po/nl/hello2.edit.po +0 -34
- data/samples/po/nl/hello2.po.time_stamp +0 -0
- data/samples/po/nl/hello_glade2.edit.po +0 -36
- data/samples/po/nl/hello_glade2.po.time_stamp +0 -0
- data/samples/po/nl/hello_gtk2.edit.po +0 -22
- data/samples/po/nl/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/nl/hello_gtk_builder.edit.po +0 -18
- data/samples/po/nl/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/nl/hello_noop.edit.po +0 -26
- data/samples/po/nl/hello_noop.po.time_stamp +0 -0
- data/samples/po/nl/hello_plural.edit.po +0 -28
- data/samples/po/nl/hello_plural.po.time_stamp +0 -0
- data/samples/po/nl/hello_tk.edit.po +0 -22
- data/samples/po/nl/hello_tk.po.time_stamp +0 -0
- data/samples/po/pt_BR/hello.edit.po +0 -22
- data/samples/po/pt_BR/hello.po.time_stamp +0 -0
- data/samples/po/pt_BR/hello2.edit.po +0 -32
- data/samples/po/pt_BR/hello2.po.time_stamp +0 -0
- data/samples/po/pt_BR/hello_glade2.edit.po +0 -34
- data/samples/po/pt_BR/hello_glade2.po.time_stamp +0 -0
- data/samples/po/pt_BR/hello_gtk2.edit.po +0 -20
- data/samples/po/pt_BR/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/pt_BR/hello_gtk_builder.edit.po +0 -18
- data/samples/po/pt_BR/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/pt_BR/hello_noop.edit.po +0 -24
- data/samples/po/pt_BR/hello_noop.po.time_stamp +0 -0
- data/samples/po/pt_BR/hello_plural.edit.po +0 -26
- data/samples/po/pt_BR/hello_plural.po.time_stamp +0 -0
- data/samples/po/pt_BR/hello_tk.edit.po +0 -21
- data/samples/po/pt_BR/hello_tk.po.time_stamp +0 -0
- data/samples/po/ru/hello.edit.po +0 -22
- data/samples/po/ru/hello.po.time_stamp +0 -0
- data/samples/po/ru/hello2.edit.po +0 -32
- data/samples/po/ru/hello2.po.time_stamp +0 -0
- data/samples/po/ru/hello_glade2.edit.po +0 -34
- data/samples/po/ru/hello_glade2.po.time_stamp +0 -0
- data/samples/po/ru/hello_gtk2.edit.po +0 -20
- data/samples/po/ru/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/ru/hello_gtk_builder.edit.po +0 -19
- data/samples/po/ru/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/ru/hello_noop.edit.po +0 -24
- data/samples/po/ru/hello_noop.po.time_stamp +0 -0
- data/samples/po/ru/hello_plural.edit.po +0 -30
- data/samples/po/ru/hello_plural.po.time_stamp +0 -0
- data/samples/po/ru/hello_tk.edit.po +0 -20
- data/samples/po/ru/hello_tk.po.time_stamp +0 -0
- data/samples/po/sr/hello.edit.po +0 -23
- data/samples/po/sr/hello.po.time_stamp +0 -0
- data/samples/po/sr/hello2.edit.po +0 -33
- data/samples/po/sr/hello2.po.time_stamp +0 -0
- data/samples/po/sr/hello_glade2.edit.po +0 -37
- data/samples/po/sr/hello_glade2.po.time_stamp +0 -0
- data/samples/po/sr/hello_gtk2.edit.po +0 -21
- data/samples/po/sr/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/sr/hello_gtk_builder.edit.po +0 -19
- data/samples/po/sr/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/sr/hello_noop.edit.po +0 -25
- data/samples/po/sr/hello_noop.po.time_stamp +0 -0
- data/samples/po/sr/hello_plural.edit.po +0 -29
- data/samples/po/sr/hello_plural.po.time_stamp +0 -0
- data/samples/po/sr/hello_tk.edit.po +0 -23
- data/samples/po/sr/hello_tk.po.time_stamp +0 -0
- data/samples/po/sv/hello.edit.po +0 -21
- data/samples/po/sv/hello.po.time_stamp +0 -0
- data/samples/po/sv/hello2.edit.po +0 -30
- data/samples/po/sv/hello2.po.time_stamp +0 -0
- data/samples/po/sv/hello_glade2.edit.po +0 -32
- data/samples/po/sv/hello_glade2.po.time_stamp +0 -0
- data/samples/po/sv/hello_gtk2.edit.po +0 -18
- data/samples/po/sv/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/sv/hello_gtk_builder.edit.po +0 -18
- data/samples/po/sv/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/sv/hello_noop.edit.po +0 -22
- data/samples/po/sv/hello_noop.po.time_stamp +0 -0
- data/samples/po/sv/hello_plural.edit.po +0 -25
- data/samples/po/sv/hello_plural.po.time_stamp +0 -0
- data/samples/po/sv/hello_tk.edit.po +0 -18
- data/samples/po/sv/hello_tk.po.time_stamp +0 -0
- data/samples/po/uk/hello.edit.po +0 -23
- data/samples/po/uk/hello.po.time_stamp +0 -0
- data/samples/po/uk/hello2.edit.po +0 -33
- data/samples/po/uk/hello2.po.time_stamp +0 -0
- data/samples/po/uk/hello_glade2.edit.po +0 -39
- data/samples/po/uk/hello_glade2.po.time_stamp +0 -0
- data/samples/po/uk/hello_gtk2.edit.po +0 -21
- data/samples/po/uk/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/uk/hello_gtk_builder.edit.po +0 -19
- data/samples/po/uk/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/uk/hello_noop.edit.po +0 -25
- data/samples/po/uk/hello_noop.po.time_stamp +0 -0
- data/samples/po/uk/hello_plural.edit.po +0 -30
- data/samples/po/uk/hello_plural.po.time_stamp +0 -0
- data/samples/po/uk/hello_tk.edit.po +0 -25
- data/samples/po/uk/hello_tk.po.time_stamp +0 -0
- data/samples/po/vi/hello.edit.po +0 -23
- data/samples/po/vi/hello.po.time_stamp +0 -0
- data/samples/po/vi/hello2.edit.po +0 -33
- data/samples/po/vi/hello2.po.time_stamp +0 -0
- data/samples/po/vi/hello_glade2.edit.po +0 -36
- data/samples/po/vi/hello_glade2.po.time_stamp +0 -0
- data/samples/po/vi/hello_gtk2.edit.po +0 -21
- data/samples/po/vi/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/vi/hello_gtk_builder.edit.po +0 -18
- data/samples/po/vi/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/vi/hello_noop.edit.po +0 -25
- data/samples/po/vi/hello_noop.po.time_stamp +0 -0
- data/samples/po/vi/hello_plural.edit.po +0 -28
- data/samples/po/vi/hello_plural.po.time_stamp +0 -0
- data/samples/po/vi/hello_tk.edit.po +0 -22
- data/samples/po/vi/hello_tk.po.time_stamp +0 -0
- data/samples/po/zh/hello.edit.po +0 -24
- data/samples/po/zh/hello.po.time_stamp +0 -0
- data/samples/po/zh/hello2.edit.po +0 -34
- data/samples/po/zh/hello2.po.time_stamp +0 -0
- data/samples/po/zh/hello_glade2.edit.po +0 -36
- data/samples/po/zh/hello_glade2.po.time_stamp +0 -0
- data/samples/po/zh/hello_gtk2.edit.po +0 -22
- data/samples/po/zh/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/zh/hello_gtk_builder.edit.po +0 -18
- data/samples/po/zh/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/zh/hello_noop.edit.po +0 -26
- data/samples/po/zh/hello_noop.po.time_stamp +0 -0
- data/samples/po/zh/hello_plural.edit.po +0 -28
- data/samples/po/zh/hello_plural.po.time_stamp +0 -0
- data/samples/po/zh/hello_tk.edit.po +0 -22
- data/samples/po/zh/hello_tk.po.time_stamp +0 -0
- data/samples/po/zh_TW/hello.edit.po +0 -26
- data/samples/po/zh_TW/hello.po.time_stamp +0 -0
- data/samples/po/zh_TW/hello2.edit.po +0 -36
- data/samples/po/zh_TW/hello2.po.time_stamp +0 -0
- data/samples/po/zh_TW/hello_glade2.edit.po +0 -38
- data/samples/po/zh_TW/hello_glade2.po.time_stamp +0 -0
- data/samples/po/zh_TW/hello_gtk2.edit.po +0 -23
- data/samples/po/zh_TW/hello_gtk2.po.time_stamp +0 -0
- data/samples/po/zh_TW/hello_gtk_builder.edit.po +0 -18
- data/samples/po/zh_TW/hello_gtk_builder.po.time_stamp +0 -0
- data/samples/po/zh_TW/hello_noop.edit.po +0 -28
- data/samples/po/zh_TW/hello_noop.po.time_stamp +0 -0
- data/samples/po/zh_TW/hello_plural.edit.po +0 -30
- data/samples/po/zh_TW/hello_plural.po.time_stamp +0 -0
- data/samples/po/zh_TW/hello_tk.edit.po +0 -24
- data/samples/po/zh_TW/hello_tk.po.time_stamp +0 -0
- data/test/fixtures/gtk_builder_ui_definitions.ui~ +0 -68
- data/test/locale/cr/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/da/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/da/LC_MESSAGES/plural_error.mo +0 -0
- data/test/locale/fr/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/fr/LC_MESSAGES/plural_error.mo +0 -0
- data/test/locale/fr/LC_MESSAGES/test1.mo +0 -0
- data/test/locale/fr/LC_MESSAGES/test2.mo +0 -0
- data/test/locale/fr_BE/LC_MESSAGES/test1.mo +0 -0
- data/test/locale/fr_BE_Foo/LC_MESSAGES/test1.mo +0 -0
- data/test/locale/ir/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/_.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/backslash.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/hello.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/non_ascii.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/np_.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/ns_.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/p_.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/plural_error.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/rubyparser.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/s_.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/test1.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/test2.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/test3.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/untranslated.mo +0 -0
- data/test/locale/la/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/la/LC_MESSAGES/plural_error.mo +0 -0
- data/test/locale/li/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/li/LC_MESSAGES/plural_error.mo +0 -0
- data/test/locale/po/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/sl/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/zh_Hant/LC_MESSAGES/test1.mo +0 -0
- data/test/po/_.pot +0 -186
- data/test/po/backslash.pot +0 -21
- data/test/po/hello.pot +0 -23
- data/test/po/ja/_.edit.po +0 -186
- data/test/po/ja/_.po.time_stamp +0 -0
- data/test/po/ja/backslash.edit.po +0 -19
- data/test/po/ja/backslash.po.time_stamp +0 -0
- data/test/po/ja/hello.edit.po +0 -23
- data/test/po/ja/hello.po.time_stamp +0 -0
- data/test/po/ja/non_ascii.edit.po +0 -19
- data/test/po/ja/non_ascii.po.time_stamp +0 -0
- data/test/po/ja/np_.edit.po +0 -44
- data/test/po/ja/np_.po.time_stamp +0 -0
- data/test/po/ja/ns_.edit.po +0 -69
- data/test/po/ja/ns_.po.time_stamp +0 -0
- data/test/po/ja/p_.edit.po +0 -47
- data/test/po/ja/p_.po.time_stamp +0 -0
- data/test/po/ja/s_.edit.po +0 -50
- data/test/po/ja/s_.po.time_stamp +0 -0
- data/test/po/ja/untranslated.edit.po +0 -21
- data/test/po/ja/untranslated.po.time_stamp +0 -0
- data/test/po/non_ascii.pot +0 -23
- data/test/po/np_.pot +0 -48
- data/test/po/ns_.pot +0 -73
- data/test/po/p_.pot +0 -50
- data/test/po/s_.pot +0 -55
- data/test/po/untranslated.pot +0 -23
data/po/pt_BR/gettext.edit.po
CHANGED
|
@@ -30,100 +30,104 @@ msgstr "O 3º parâmetro está errado: value = %{number}"
|
|
|
30
30
|
msgid "ngettext: 3rd parameter should be a number, not nil."
|
|
31
31
|
msgstr ""
|
|
32
32
|
|
|
33
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
33
|
+
#: ../lib/gettext/tools/msgcat.rb:243
|
|
34
34
|
msgid "Usage: %s [OPTIONS] PO_FILE1 PO_FILE2 ..."
|
|
35
35
|
msgstr ""
|
|
36
36
|
|
|
37
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
37
|
+
#: ../lib/gettext/tools/msgcat.rb:245
|
|
38
38
|
msgid "Concatenates and merges PO files."
|
|
39
39
|
msgstr ""
|
|
40
40
|
|
|
41
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
41
|
+
#: ../lib/gettext/tools/msgcat.rb:247 ../lib/gettext/tools/msgfmt.rb:86 ../lib/gettext/tools/msginit.rb:99 ../lib/gettext/tools/msgmerge.rb:368 ../lib/gettext/tools/xgettext.rb:247
|
|
42
42
|
msgid "Specific options:"
|
|
43
43
|
msgstr "Opções específicas:"
|
|
44
44
|
|
|
45
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
45
|
+
#: ../lib/gettext/tools/msgcat.rb:250 ../lib/gettext/tools/msgmerge.rb:376
|
|
46
46
|
#, fuzzy
|
|
47
47
|
msgid "Write output to specified file"
|
|
48
48
|
msgstr "escreve saída para o arquivo especificado"
|
|
49
49
|
|
|
50
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
50
|
+
#: ../lib/gettext/tools/msgcat.rb:251
|
|
51
51
|
msgid "(default: the standard output)"
|
|
52
52
|
msgstr ""
|
|
53
53
|
|
|
54
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
54
|
+
#: ../lib/gettext/tools/msgcat.rb:256 ../lib/gettext/tools/msgcat.rb:273 ../lib/gettext/tools/msgmerge.rb:381 ../lib/gettext/tools/msgmerge.rb:400 ../lib/gettext/tools/xgettext.rb:301
|
|
55
55
|
msgid "Sort output by msgid"
|
|
56
56
|
msgstr ""
|
|
57
57
|
|
|
58
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
58
|
+
#: ../lib/gettext/tools/msgcat.rb:261 ../lib/gettext/tools/msgcat.rb:266 ../lib/gettext/tools/msgmerge.rb:388 ../lib/gettext/tools/msgmerge.rb:395
|
|
59
59
|
msgid "Sort output by location"
|
|
60
60
|
msgstr ""
|
|
61
61
|
|
|
62
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
62
|
+
#: ../lib/gettext/tools/msgcat.rb:267 ../lib/gettext/tools/msgmerge.rb:389
|
|
63
63
|
msgid "It is same as --sort-by-location"
|
|
64
64
|
msgstr ""
|
|
65
65
|
|
|
66
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
66
|
+
#: ../lib/gettext/tools/msgcat.rb:268 ../lib/gettext/tools/msgcat.rb:275 ../lib/gettext/tools/msgmerge.rb:383 ../lib/gettext/tools/msgmerge.rb:390
|
|
67
67
|
msgid "Just for GNU gettext's msgcat compatibility"
|
|
68
68
|
msgstr ""
|
|
69
69
|
|
|
70
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
70
|
+
#: ../lib/gettext/tools/msgcat.rb:274 ../lib/gettext/tools/msgmerge.rb:382
|
|
71
71
|
msgid "It is same as --sort-by-msgid"
|
|
72
72
|
msgstr ""
|
|
73
73
|
|
|
74
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
74
|
+
#: ../lib/gettext/tools/msgcat.rb:280
|
|
75
75
|
msgid "Remove location information"
|
|
76
76
|
msgstr ""
|
|
77
77
|
|
|
78
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
78
|
+
#: ../lib/gettext/tools/msgcat.rb:285
|
|
79
79
|
msgid "Remove translator comment"
|
|
80
80
|
msgstr ""
|
|
81
81
|
|
|
82
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
82
|
+
#: ../lib/gettext/tools/msgcat.rb:290
|
|
83
83
|
msgid "Remove extracted comment"
|
|
84
84
|
msgstr ""
|
|
85
85
|
|
|
86
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
86
|
+
#: ../lib/gettext/tools/msgcat.rb:295
|
|
87
87
|
msgid "Remove flag comment"
|
|
88
88
|
msgstr ""
|
|
89
89
|
|
|
90
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
90
|
+
#: ../lib/gettext/tools/msgcat.rb:300
|
|
91
91
|
msgid "Remove previous comment"
|
|
92
92
|
msgstr ""
|
|
93
93
|
|
|
94
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
94
|
+
#: ../lib/gettext/tools/msgcat.rb:305
|
|
95
95
|
msgid "Remove all comments"
|
|
96
96
|
msgstr ""
|
|
97
97
|
|
|
98
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
98
|
+
#: ../lib/gettext/tools/msgcat.rb:310 ../lib/gettext/tools/msgmerge.rb:410 ../lib/gettext/tools/xgettext.rb:311
|
|
99
99
|
msgid "Set output page width"
|
|
100
100
|
msgstr ""
|
|
101
101
|
|
|
102
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
102
|
+
#: ../lib/gettext/tools/msgcat.rb:316 ../lib/gettext/tools/msgmerge.rb:416 ../lib/gettext/tools/xgettext.rb:317
|
|
103
103
|
msgid "Break long message lines, longer than the output page width, into several lines"
|
|
104
104
|
msgstr ""
|
|
105
105
|
|
|
106
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
106
|
+
#: ../lib/gettext/tools/msgcat.rb:327 ../lib/gettext/tools/msgmerge.rb:427 ../lib/gettext/tools/xgettext.rb:328
|
|
107
|
+
msgid "Use one line for each reference comment"
|
|
108
|
+
msgstr ""
|
|
109
|
+
|
|
110
|
+
#: ../lib/gettext/tools/msgcat.rb:333
|
|
107
111
|
msgid "Ignore fuzzy entries"
|
|
108
112
|
msgstr ""
|
|
109
113
|
|
|
110
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
114
|
+
#: ../lib/gettext/tools/msgcat.rb:338 ../lib/gettext/tools/msgmerge.rb:439
|
|
111
115
|
msgid "Don't report warning messages"
|
|
112
116
|
msgstr ""
|
|
113
117
|
|
|
114
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
118
|
+
#: ../lib/gettext/tools/msgcat.rb:343 ../lib/gettext/tools/msgmerge.rb:444
|
|
115
119
|
msgid "Don't output obsolete entries"
|
|
116
120
|
msgstr ""
|
|
117
121
|
|
|
118
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
122
|
+
#: ../lib/gettext/tools/msgcat.rb:348
|
|
119
123
|
msgid "Update PO-Revision-Date header field"
|
|
120
124
|
msgstr ""
|
|
121
125
|
|
|
122
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
126
|
+
#: ../lib/gettext/tools/msgcat.rb:353
|
|
123
127
|
msgid "Remove FIELD from header"
|
|
124
128
|
msgstr ""
|
|
125
129
|
|
|
126
|
-
#: ../lib/gettext/tools/msgcat.rb:
|
|
130
|
+
#: ../lib/gettext/tools/msgcat.rb:354
|
|
127
131
|
msgid "Specify this option multiple times to remove multiple header fields"
|
|
128
132
|
msgstr ""
|
|
129
133
|
|
|
@@ -140,196 +144,197 @@ msgstr "Uso: %s entrada.po [-o saida.mo]"
|
|
|
140
144
|
msgid "Generate binary message catalog from textual translation description."
|
|
141
145
|
msgstr "Gerar catálogo de mensagem binária da descrição de tradução textual."
|
|
142
146
|
|
|
143
|
-
#: ../lib/gettext/tools/msgfmt.rb:89 ../lib/gettext/tools/xgettext.rb:
|
|
147
|
+
#: ../lib/gettext/tools/msgfmt.rb:89 ../lib/gettext/tools/xgettext.rb:250
|
|
144
148
|
msgid "write output to specified file"
|
|
145
149
|
msgstr "escreve saída para o arquivo especificado"
|
|
146
150
|
|
|
147
|
-
#: ../lib/gettext/tools/msgfmt.rb:93 ../lib/gettext/tools/xgettext.rb:
|
|
151
|
+
#: ../lib/gettext/tools/msgfmt.rb:93 ../lib/gettext/tools/xgettext.rb:360
|
|
148
152
|
msgid "display version information and exit"
|
|
149
153
|
msgstr "mostra informação de versão e sai"
|
|
150
154
|
|
|
151
|
-
#: ../lib/gettext/tools/msginit.rb:
|
|
155
|
+
#: ../lib/gettext/tools/msginit.rb:95
|
|
152
156
|
msgid "Create a new .po file from initializing .pot file with user's environment and input."
|
|
153
157
|
msgstr ""
|
|
154
158
|
|
|
155
|
-
#: ../lib/gettext/tools/msginit.rb:
|
|
159
|
+
#: ../lib/gettext/tools/msginit.rb:101
|
|
156
160
|
msgid "Use INPUT as a .pot file. If INPUT is not specified, INPUT is a .pot file existing the current directory."
|
|
157
161
|
msgstr ""
|
|
158
162
|
|
|
159
|
-
#: ../lib/gettext/tools/msginit.rb:
|
|
163
|
+
#: ../lib/gettext/tools/msginit.rb:108
|
|
160
164
|
msgid "Use OUTPUT as a created .po file. If OUTPUT is not specified, OUTPUT depend on LOCALE or the current locale on your environment."
|
|
161
165
|
msgstr ""
|
|
162
166
|
|
|
163
|
-
#: ../lib/gettext/tools/msginit.rb:
|
|
167
|
+
#: ../lib/gettext/tools/msginit.rb:115
|
|
164
168
|
msgid "Use LOCALE as target locale. If LOCALE is not specified, LOCALE is the current locale on your environment."
|
|
165
169
|
msgstr ""
|
|
166
170
|
|
|
167
|
-
#: ../lib/gettext/tools/msginit.rb:
|
|
171
|
+
#: ../lib/gettext/tools/msginit.rb:123
|
|
168
172
|
msgid "Whether set translator information or not"
|
|
169
173
|
msgstr ""
|
|
170
174
|
|
|
171
|
-
#: ../lib/gettext/tools/msginit.rb:
|
|
175
|
+
#: ../lib/gettext/tools/msginit.rb:124
|
|
172
176
|
msgid "(set)"
|
|
173
177
|
msgstr ""
|
|
174
178
|
|
|
175
|
-
#: ../lib/gettext/tools/msginit.rb:
|
|
179
|
+
#: ../lib/gettext/tools/msginit.rb:129
|
|
176
180
|
msgid "Use NAME as translator name"
|
|
177
181
|
msgstr ""
|
|
178
182
|
|
|
179
|
-
#: ../lib/gettext/tools/msginit.rb:
|
|
183
|
+
#: ../lib/gettext/tools/msginit.rb:134
|
|
180
184
|
msgid "Use EMAIL as translator email address"
|
|
181
185
|
msgstr ""
|
|
182
186
|
|
|
183
|
-
#: ../lib/gettext/tools/msginit.rb:
|
|
187
|
+
#: ../lib/gettext/tools/msginit.rb:138 ../lib/gettext/tools/msgmerge.rb:448
|
|
184
188
|
msgid "Display this help and exit"
|
|
185
189
|
msgstr ""
|
|
186
190
|
|
|
187
|
-
#: ../lib/gettext/tools/msginit.rb:
|
|
191
|
+
#: ../lib/gettext/tools/msginit.rb:143
|
|
188
192
|
#, fuzzy
|
|
189
193
|
msgid "Display version and exit"
|
|
190
194
|
msgstr "mostra informação de versão e sai"
|
|
191
195
|
|
|
192
|
-
#: ../lib/gettext/tools/msginit.rb:
|
|
196
|
+
#: ../lib/gettext/tools/msginit.rb:161
|
|
193
197
|
msgid ".pot file does not exist in the current directory."
|
|
194
198
|
msgstr ""
|
|
195
199
|
|
|
196
|
-
#: ../lib/gettext/tools/msginit.rb:
|
|
200
|
+
#: ../lib/gettext/tools/msginit.rb:166
|
|
197
201
|
#, fuzzy
|
|
198
202
|
msgid "file '%s' does not exist."
|
|
199
203
|
msgstr "O arquivo '%s' já existe."
|
|
200
204
|
|
|
201
|
-
#: ../lib/gettext/tools/msginit.rb:
|
|
205
|
+
#: ../lib/gettext/tools/msginit.rb:178
|
|
202
206
|
msgid "Locale '%s' is invalid. Please check if your specified locale is usable."
|
|
203
207
|
msgstr ""
|
|
204
208
|
|
|
205
|
-
#: ../lib/gettext/tools/msginit.rb:
|
|
209
|
+
#: ../lib/gettext/tools/msginit.rb:193
|
|
206
210
|
#, fuzzy
|
|
207
211
|
msgid "file '%s' has already existed."
|
|
208
212
|
msgstr "O arquivo '%s' já existe."
|
|
209
213
|
|
|
210
|
-
#: ../lib/gettext/tools/msginit.rb:
|
|
214
|
+
#: ../lib/gettext/tools/msginit.rb:235
|
|
211
215
|
msgid "Please enter your full name"
|
|
212
216
|
msgstr ""
|
|
213
217
|
|
|
214
|
-
#: ../lib/gettext/tools/msginit.rb:
|
|
218
|
+
#: ../lib/gettext/tools/msginit.rb:264
|
|
215
219
|
msgid "Please enter your email address"
|
|
216
220
|
msgstr ""
|
|
217
221
|
|
|
218
|
-
#: ../lib/gettext/tools/msgmerge.rb:
|
|
222
|
+
#: ../lib/gettext/tools/msgmerge.rb:357
|
|
219
223
|
msgid "Usage: %s [OPTIONS] definition.po reference.pot"
|
|
220
224
|
msgstr ""
|
|
221
225
|
|
|
222
|
-
#: ../lib/gettext/tools/msgmerge.rb:
|
|
226
|
+
#: ../lib/gettext/tools/msgmerge.rb:360
|
|
223
227
|
#, fuzzy
|
|
224
228
|
msgid "Merges two Uniforum style .po files together. The definition.po file is an existing PO file with translations. The reference.pot file is the last created PO file with up-to-date source references. The reference.pot is generally created by rxgettext."
|
|
225
229
|
msgstr "Mescla dois arquivos .po de estilo Uniforum juntos. O arquivo def.po é um arquivo PO existente com traduções. O arquivo ref.pot é o último arquivo PO criado com referências de código atualizadas. Ref.pot é geralmente criado pelo rgettext."
|
|
226
230
|
|
|
227
|
-
#: ../lib/gettext/tools/msgmerge.rb:
|
|
231
|
+
#: ../lib/gettext/tools/msgmerge.rb:371
|
|
228
232
|
msgid "Update definition.po"
|
|
229
233
|
msgstr ""
|
|
230
234
|
|
|
231
|
-
#: ../lib/gettext/tools/msgmerge.rb:
|
|
235
|
+
#: ../lib/gettext/tools/msgmerge.rb:405 ../lib/gettext/tools/xgettext.rb:306
|
|
232
236
|
msgid "Preserve '#: FILENAME:LINE' lines"
|
|
233
237
|
msgstr ""
|
|
234
238
|
|
|
235
|
-
#: ../lib/gettext/tools/msgmerge.rb:
|
|
239
|
+
#: ../lib/gettext/tools/msgmerge.rb:433
|
|
236
240
|
msgid "Disable fuzzy matching"
|
|
237
241
|
msgstr ""
|
|
238
242
|
|
|
239
|
-
#: ../lib/gettext/tools/msgmerge.rb:
|
|
243
|
+
#: ../lib/gettext/tools/msgmerge.rb:434
|
|
240
244
|
msgid "(enable)"
|
|
241
245
|
msgstr ""
|
|
242
246
|
|
|
243
|
-
#: ../lib/gettext/tools/msgmerge.rb:
|
|
247
|
+
#: ../lib/gettext/tools/msgmerge.rb:454
|
|
244
248
|
#, fuzzy
|
|
245
249
|
msgid "Display version information and exit"
|
|
246
250
|
msgstr "mostra informação de versão e sai"
|
|
247
251
|
|
|
248
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
252
|
+
#: ../lib/gettext/tools/xgettext.rb:63
|
|
249
253
|
msgid "'%{klass}' is ignored."
|
|
250
254
|
msgstr "'%{klass}' é ignorado."
|
|
251
255
|
|
|
252
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
256
|
+
#: ../lib/gettext/tools/xgettext.rb:169
|
|
253
257
|
msgid "Error parsing %{path}"
|
|
254
258
|
msgstr ""
|
|
255
259
|
|
|
256
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
260
|
+
#: ../lib/gettext/tools/xgettext.rb:228
|
|
257
261
|
msgid "no input files"
|
|
258
262
|
msgstr "nenhum arquivo de entrada"
|
|
259
263
|
|
|
260
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
264
|
+
#: ../lib/gettext/tools/xgettext.rb:241
|
|
261
265
|
msgid "Usage: %s input.rb [-r parser.rb] [-o output.pot]"
|
|
262
266
|
msgstr "Uso: %s entrada.rb [-r parser.rb] [-o saída.pot]"
|
|
263
267
|
|
|
264
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
268
|
+
#: ../lib/gettext/tools/xgettext.rb:244
|
|
265
269
|
msgid "Extract translatable strings from given input files."
|
|
266
270
|
msgstr "Extrair strings traduzíveis de arquivos de entrada fornecidos."
|
|
267
271
|
|
|
268
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
272
|
+
#: ../lib/gettext/tools/xgettext.rb:255
|
|
269
273
|
msgid "set package name in output"
|
|
270
274
|
msgstr ""
|
|
271
275
|
|
|
272
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
276
|
+
#: ../lib/gettext/tools/xgettext.rb:261
|
|
273
277
|
msgid "set package version in output"
|
|
274
278
|
msgstr ""
|
|
275
279
|
|
|
276
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
280
|
+
#: ../lib/gettext/tools/xgettext.rb:267
|
|
277
281
|
msgid "set report e-mail address for msgid bugs"
|
|
278
282
|
msgstr ""
|
|
279
283
|
|
|
280
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
284
|
+
#: ../lib/gettext/tools/xgettext.rb:273
|
|
281
285
|
msgid "set copyright holder in output"
|
|
282
286
|
msgstr ""
|
|
283
287
|
|
|
284
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
288
|
+
#: ../lib/gettext/tools/xgettext.rb:279
|
|
285
289
|
msgid "set copyright year in output"
|
|
286
290
|
msgstr ""
|
|
287
291
|
|
|
288
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
292
|
+
#: ../lib/gettext/tools/xgettext.rb:285
|
|
289
293
|
msgid "set encoding for output"
|
|
290
294
|
msgstr ""
|
|
291
295
|
|
|
292
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
296
|
+
#: ../lib/gettext/tools/xgettext.rb:291
|
|
293
297
|
msgid "Generate sorted output"
|
|
294
298
|
msgstr ""
|
|
295
299
|
|
|
296
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
300
|
+
#: ../lib/gettext/tools/xgettext.rb:296
|
|
297
301
|
msgid "Sort output by file location"
|
|
298
302
|
msgstr ""
|
|
299
303
|
|
|
300
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
304
|
+
#: ../lib/gettext/tools/xgettext.rb:334
|
|
301
305
|
#, fuzzy
|
|
302
306
|
msgid "require the library before executing xgettext"
|
|
303
307
|
msgstr "carregue (require) a biblioteca antes de executar o rgettext"
|
|
304
308
|
|
|
305
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
309
|
+
#: ../lib/gettext/tools/xgettext.rb:339
|
|
310
|
+
msgid "Add PARSER to parser list for xgettext"
|
|
311
|
+
msgstr ""
|
|
312
|
+
|
|
313
|
+
#: ../lib/gettext/tools/xgettext.rb:345
|
|
306
314
|
msgid "If TAG is specified, place comment blocks starting with TAG and precedding keyword lines in output file"
|
|
307
315
|
msgstr ""
|
|
308
316
|
|
|
309
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
317
|
+
#: ../lib/gettext/tools/xgettext.rb:346
|
|
310
318
|
msgid "If TAG is not specified, place all comment blocks preceing keyword lines in output file"
|
|
311
319
|
msgstr ""
|
|
312
320
|
|
|
313
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
321
|
+
#: ../lib/gettext/tools/xgettext.rb:347
|
|
314
322
|
msgid "(default: %s)"
|
|
315
323
|
msgstr ""
|
|
316
324
|
|
|
317
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
325
|
+
#: ../lib/gettext/tools/xgettext.rb:347
|
|
318
326
|
msgid "no TAG"
|
|
319
327
|
msgstr ""
|
|
320
328
|
|
|
321
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
329
|
+
#: ../lib/gettext/tools/xgettext.rb:351
|
|
322
330
|
msgid "run in debugging mode"
|
|
323
331
|
msgstr "executar em mode de depuração"
|
|
324
332
|
|
|
325
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
333
|
+
#: ../lib/gettext/tools/xgettext.rb:355
|
|
326
334
|
#, fuzzy
|
|
327
335
|
msgid "display this help and exit"
|
|
328
336
|
msgstr "mostra informação de versão e sai"
|
|
329
337
|
|
|
330
|
-
#: ../lib/gettext/tools/xgettext.rb:
|
|
338
|
+
#: ../lib/gettext/tools/xgettext.rb:386
|
|
331
339
|
msgid "Warning: The empty \"\" msgid is reserved by gettext. So gettext(\"\") doesn't returns empty string but the header entry in po file."
|
|
332
340
|
msgstr ""
|
|
333
|
-
|
|
334
|
-
#~ msgid "`%{file}' is not glade-2.0 format."
|
|
335
|
-
#~ msgstr "`%{file}' não é formato glade-2.0."
|
data/po/pt_BR/gettext.po
CHANGED
|
@@ -85,6 +85,9 @@ msgid ""
|
|
|
85
85
|
"s"
|
|
86
86
|
msgstr ""
|
|
87
87
|
|
|
88
|
+
msgid "Use one line for each reference comment"
|
|
89
|
+
msgstr ""
|
|
90
|
+
|
|
88
91
|
msgid "Ignore fuzzy entries"
|
|
89
92
|
msgstr ""
|
|
90
93
|
|
|
@@ -252,6 +255,9 @@ msgstr ""
|
|
|
252
255
|
msgid "require the library before executing xgettext"
|
|
253
256
|
msgstr "carregue (require) a biblioteca antes de executar o rgettext"
|
|
254
257
|
|
|
258
|
+
msgid "Add PARSER to parser list for xgettext"
|
|
259
|
+
msgstr ""
|
|
260
|
+
|
|
255
261
|
msgid ""
|
|
256
262
|
"If TAG is specified, place comment blocks starting with TAG and precedding key"
|
|
257
263
|
"word lines in output file"
|