gettext 1.0.0-mswin32
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING +55 -0
- data/COPYING.ja +51 -0
- data/ChangeLog +490 -0
- data/NEWS +98 -0
- data/README +113 -0
- data/README.ja +115 -0
- data/Rakefile +169 -0
- data/bin/rgettext +22 -0
- data/bin/rmsgfmt +22 -0
- data/data/locale/de/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/de/LC_MESSAGES/rmsgfmt.mo +0 -0
- data/data/locale/es/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/es/LC_MESSAGES/rmsgfmt.mo +0 -0
- data/data/locale/fr/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/fr/LC_MESSAGES/rmsgfmt.mo +0 -0
- data/data/locale/it/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/it/LC_MESSAGES/rmsgfmt.mo +0 -0
- data/data/locale/ja/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/ja/LC_MESSAGES/rmsgfmt.mo +0 -0
- data/data/locale/ko/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/ko/LC_MESSAGES/rmsgfmt.mo +0 -0
- data/data/locale/pt_BR/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/pt_BR/LC_MESSAGES/rmsgfmt.mo +0 -0
- data/data/locale/sv/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/sv/LC_MESSAGES/rmsgfmt.mo +0 -0
- data/ext/gettext/gettext/MANIFEST +3 -0
- data/ext/gettext/gettext/Makefile +145 -0
- data/ext/gettext/gettext/_locale-i386-mswin32.def +2 -0
- data/ext/gettext/gettext/_locale.c +86 -0
- data/ext/gettext/gettext/_locale.exp +0 -0
- data/ext/gettext/gettext/_locale.lib +0 -0
- data/ext/gettext/gettext/_locale.obj +0 -0
- data/ext/gettext/gettext/_locale.pdb +0 -0
- data/ext/gettext/gettext/_locale.so +0 -0
- data/ext/gettext/gettext/extconf.rb +20 -0
- data/ext/gettext/gettext/mkmf.log +16 -0
- data/ext/gettext/gettext/vc70.pdb +0 -0
- data/gettext-1.0.0-mswin32.gem +0 -0
- data/lib/_locale.so +0 -0
- data/lib/gettext.rb +127 -0
- data/lib/gettext/cgi.rb +83 -0
- data/lib/gettext/container.rb +30 -0
- data/lib/gettext/erb.rb +28 -0
- data/lib/gettext/iconv.rb +80 -0
- data/lib/gettext/locale.rb +71 -0
- data/lib/gettext/locale_default.rb +35 -0
- data/lib/gettext/locale_table_win32.rb +192 -0
- data/lib/gettext/locale_win32.rb +35 -0
- data/lib/gettext/mo.rb +262 -0
- data/lib/gettext/parser/erb.rb +34 -0
- data/lib/gettext/parser/glade.rb +98 -0
- data/lib/gettext/parser/ruby.rb +211 -0
- data/lib/gettext/rails.rb +40 -0
- data/lib/gettext/rgettext.rb +181 -0
- data/lib/gettext/rmsgfmt.rb +363 -0
- data/lib/gettext/textdomain.rb +168 -0
- data/lib/gettext/version.rb +12 -0
- data/po/de/rgettext.po +49 -0
- data/po/de/rmsgfmt.po +45 -0
- data/po/es/rgettext.po +47 -0
- data/po/es/rmsgfmt.po +43 -0
- data/po/fr/rgettext.po +47 -0
- data/po/fr/rmsgfmt.po +43 -0
- data/po/it/rgettext.po +47 -0
- data/po/it/rmsgfmt.po +44 -0
- data/po/ja/rgettext.po +49 -0
- data/po/ja/rmsgfmt.po +43 -0
- data/po/ko/rgettext.po +46 -0
- data/po/ko/rmsgfmt.po +40 -0
- data/po/pt_BR/rgettext.po +47 -0
- data/po/pt_BR/rmsgfmt.po +42 -0
- data/po/rgettext.pot +45 -0
- data/po/rmsgfmt.pot +40 -0
- data/po/sv/rgettext.po +48 -0
- data/po/sv/rmsgfmt.po +43 -0
- data/post-setup.rb +12 -0
- data/pre-setup.rb +12 -0
- data/samples/README +20 -0
- data/samples/cgi/README +43 -0
- data/samples/cgi/Rakefile +9 -0
- data/samples/cgi/cookie.cgi +57 -0
- data/samples/cgi/gettext.css +116 -0
- data/samples/cgi/helloerb.rhtml +27 -0
- data/samples/cgi/helloerb1.cgi +47 -0
- data/samples/cgi/helloerb2.cgi +41 -0
- data/samples/cgi/hellolib.rb +21 -0
- data/samples/cgi/http.rb +54 -0
- data/samples/cgi/index.cgi +104 -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/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/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/other.rhtml +20 -0
- data/samples/cgi/po/de/helloerb1.po +60 -0
- data/samples/cgi/po/de/helloerb2.po +52 -0
- data/samples/cgi/po/de/hellolib.po +23 -0
- data/samples/cgi/po/de/main.po +76 -0
- data/samples/cgi/po/es/helloerb1.po +59 -0
- data/samples/cgi/po/es/helloerb2.po +50 -0
- data/samples/cgi/po/es/hellolib.po +22 -0
- data/samples/cgi/po/es/main.po +74 -0
- data/samples/cgi/po/fr/helloerb1.po +59 -0
- data/samples/cgi/po/fr/helloerb2.po +51 -0
- data/samples/cgi/po/fr/hellolib.po +22 -0
- data/samples/cgi/po/fr/main.po +75 -0
- data/samples/cgi/po/helloerb1.pot +60 -0
- data/samples/cgi/po/helloerb2.pot +52 -0
- data/samples/cgi/po/hellolib.pot +23 -0
- data/samples/cgi/po/it/helloerb1.po +61 -0
- data/samples/cgi/po/it/helloerb2.po +52 -0
- data/samples/cgi/po/it/hellolib.po +24 -0
- data/samples/cgi/po/it/main.po +76 -0
- data/samples/cgi/po/ja/helloerb1.po +59 -0
- data/samples/cgi/po/ja/helloerb2.po +52 -0
- data/samples/cgi/po/ja/hellolib.po +23 -0
- data/samples/cgi/po/ja/main.po +76 -0
- data/samples/cgi/po/ko/helloerb1.po +58 -0
- data/samples/cgi/po/ko/helloerb2.po +52 -0
- data/samples/cgi/po/ko/hellolib.po +22 -0
- data/samples/cgi/po/ko/main.po +74 -0
- data/samples/cgi/po/main.pot +76 -0
- data/samples/cgi/ruby.bat +4 -0
- data/samples/hello.rb +12 -0
- data/samples/hello2.rb +15 -0
- data/samples/hello_noop.rb +18 -0
- data/samples/hello_plural.rb +15 -0
- data/samples/hello_textdomain.rb +12 -0
- data/samples/helloglade2.glade +70 -0
- data/samples/helloglade2.rb +24 -0
- data/samples/hellogtk.rb +26 -0
- data/samples/hellogtk2.rb +28 -0
- data/samples/hellotk.rb +18 -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_noop.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/helloglade2.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hellogtk.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hellotk.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_noop.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/helloglade2.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hellogtk.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hellotk.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_noop.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/helloglade2.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hellogtk.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hellotk.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_noop.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/helloglade2.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hellogtk.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hellotk.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_noop.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/helloglade2.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hellogtk.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hellotk.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_noop.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/helloglade2.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hellogtk.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hellotk.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_noop.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/helloglade2.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hellogtk.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hellotk.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_noop.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/helloglade2.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hellogtk.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hellotk.mo +0 -0
- data/samples/makemo.rb +3 -0
- data/samples/po/de/hello.po +20 -0
- data/samples/po/de/hello2.po +28 -0
- data/samples/po/de/hello_noop.po +24 -0
- data/samples/po/de/hello_plural.po +22 -0
- data/samples/po/de/helloglade2.po +27 -0
- data/samples/po/de/hellogtk.po +20 -0
- data/samples/po/de/hellotk.po +20 -0
- data/samples/po/es/hello.po +21 -0
- data/samples/po/es/hello2.po +28 -0
- data/samples/po/es/hello_noop.po +24 -0
- data/samples/po/es/hello_plural.po +23 -0
- data/samples/po/es/helloglade2.po +28 -0
- data/samples/po/es/hellogtk.po +20 -0
- data/samples/po/es/hellotk.po +20 -0
- data/samples/po/fr/hello.po +18 -0
- data/samples/po/fr/hello2.po +26 -0
- data/samples/po/fr/hello_noop.po +22 -0
- data/samples/po/fr/hello_plural.po +21 -0
- data/samples/po/fr/helloglade2.po +27 -0
- data/samples/po/fr/hellogtk.po +18 -0
- data/samples/po/fr/hellotk.po +18 -0
- data/samples/po/hello.pot +20 -0
- data/samples/po/hello2.pot +28 -0
- data/samples/po/hello_noop.pot +24 -0
- data/samples/po/hello_plural.pot +22 -0
- data/samples/po/helloglade2.pot +27 -0
- data/samples/po/hellogtk.pot +20 -0
- data/samples/po/hellotk.pot +20 -0
- data/samples/po/it/hello.po +20 -0
- data/samples/po/it/hello2.po +28 -0
- data/samples/po/it/hello_noop.po +24 -0
- data/samples/po/it/hello_plural.po +24 -0
- data/samples/po/it/helloglade2.po +28 -0
- data/samples/po/it/hellogtk.po +21 -0
- data/samples/po/it/hellotk.po +21 -0
- data/samples/po/ja/hello.po +20 -0
- data/samples/po/ja/hello2.po +28 -0
- data/samples/po/ja/hello_noop.po +23 -0
- data/samples/po/ja/hello_plural.po +22 -0
- data/samples/po/ja/helloglade2.po +26 -0
- data/samples/po/ja/hellogtk.po +19 -0
- data/samples/po/ja/hellotk.po +19 -0
- data/samples/po/ko/hello.po +19 -0
- data/samples/po/ko/hello2.po +27 -0
- data/samples/po/ko/hello_noop.po +23 -0
- data/samples/po/ko/hello_plural.po +23 -0
- data/samples/po/ko/helloglade2.po +29 -0
- data/samples/po/ko/hellogtk.po +19 -0
- data/samples/po/ko/hellotk.po +20 -0
- data/samples/po/pt_BR/hello.po +20 -0
- data/samples/po/pt_BR/hello2.po +28 -0
- data/samples/po/pt_BR/hello_noop.po +24 -0
- data/samples/po/pt_BR/hello_plural.po +23 -0
- data/samples/po/pt_BR/helloglade2.po +28 -0
- data/samples/po/pt_BR/hellogtk.po +20 -0
- data/samples/po/pt_BR/hellotk.po +20 -0
- data/samples/po/sv/hello.po +20 -0
- data/samples/po/sv/hello2.po +28 -0
- data/samples/po/sv/hello_noop.po +24 -0
- data/samples/po/sv/hello_plural.po +23 -0
- data/samples/po/sv/helloglade2.po +28 -0
- data/samples/po/sv/hellogtk.po +20 -0
- data/samples/po/sv/hellotk.po +20 -0
- data/samples/rails/README +79 -0
- data/samples/rails/Rakefile +212 -0
- data/samples/rails/app/controllers/application.rb +37 -0
- data/samples/rails/app/controllers/blog_controller.rb +62 -0
- data/samples/rails/app/helpers/application_helper.rb +3 -0
- data/samples/rails/app/helpers/blog_helper.rb +61 -0
- data/samples/rails/app/models/article.rb +2 -0
- data/samples/rails/app/views/blog/_form.rhtml +25 -0
- data/samples/rails/app/views/blog/edit.rhtml +22 -0
- data/samples/rails/app/views/blog/list.rhtml +30 -0
- data/samples/rails/app/views/blog/new.rhtml +21 -0
- data/samples/rails/app/views/blog/show.rhtml +18 -0
- data/samples/rails/app/views/layouts/blog.rhtml +36 -0
- data/samples/rails/config/database.yml +32 -0
- data/samples/rails/config/environment.rb +88 -0
- data/samples/rails/config/environments/development.rb +14 -0
- data/samples/rails/config/environments/production.rb +8 -0
- data/samples/rails/config/environments/test.rb +17 -0
- data/samples/rails/config/routes.rb +19 -0
- data/samples/rails/db/mysql.sql +8 -0
- data/samples/rails/db/postgresql.sql +7 -0
- data/samples/rails/locale/de/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/de/LC_MESSAGES/lang_helper.mo +0 -0
- data/samples/rails/locale/es/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/es/LC_MESSAGES/lang_helper.mo +0 -0
- data/samples/rails/locale/fr/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/fr/LC_MESSAGES/lang_helper.mo +0 -0
- data/samples/rails/locale/ja/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ja/LC_MESSAGES/lang_helper.mo +0 -0
- data/samples/rails/locale/ko/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ko/LC_MESSAGES/lang_helper.mo +0 -0
- data/samples/rails/log/development.log +378 -0
- data/samples/rails/po/blog.pot +90 -0
- data/samples/rails/po/de/blog.po +91 -0
- data/samples/rails/po/de/lang_helper.po +28 -0
- data/samples/rails/po/es/blog.po +90 -0
- data/samples/rails/po/es/lang_helper.po +28 -0
- data/samples/rails/po/fr/blog.po +89 -0
- data/samples/rails/po/fr/lang_helper.po +27 -0
- data/samples/rails/po/ja/blog.po +89 -0
- data/samples/rails/po/ja/lang_helper.po +28 -0
- data/samples/rails/po/ko/blog.po +87 -0
- data/samples/rails/po/ko/lang_helper.po +26 -0
- data/samples/rails/po/lang_helper.pot +28 -0
- data/samples/rails/public/404.html +8 -0
- data/samples/rails/public/500.html +8 -0
- data/samples/rails/public/dispatch.cgi +10 -0
- data/samples/rails/public/dispatch.fcgi +24 -0
- data/samples/rails/public/dispatch.rb +10 -0
- data/samples/rails/public/favicon.ico +0 -0
- data/samples/rails/public/index.html +78 -0
- data/samples/rails/public/javascripts/controls.js +446 -0
- data/samples/rails/public/javascripts/dragdrop.js +537 -0
- data/samples/rails/public/javascripts/effects.js +612 -0
- data/samples/rails/public/javascripts/prototype.js +1038 -0
- data/samples/rails/public/stylesheets/blog.css +132 -0
- data/samples/rails/public/stylesheets/scaffold.css +74 -0
- data/samples/rails/script/benchmarker +19 -0
- data/samples/rails/script/breakpointer +4 -0
- data/samples/rails/script/console +23 -0
- data/samples/rails/script/destroy +7 -0
- data/samples/rails/script/generate +7 -0
- data/samples/rails/script/profiler +34 -0
- data/samples/rails/script/runner +29 -0
- data/samples/rails/script/server +49 -0
- data/samples/rails/test/fixtures/articles.yml +5 -0
- data/samples/rails/test/functional/blog_controller_test.rb +88 -0
- data/samples/rails/test/test_helper.rb +26 -0
- data/samples/rails/test/unit/article_test.rb +14 -0
- data/samples/rails/vendor/lang_helper.rb +49 -0
- data/setup.rb +1360 -0
- data/src/rmsgfmt.ry +233 -0
- data/test/README +10 -0
- data/test/gettext_runner.rb +18 -0
- data/test/gettext_test.rb +202 -0
- data/test/gettext_test_parser.rb +80 -0
- 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/ir/LC_MESSAGES/plural.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/test1.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/test2.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/test_rubyparser.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/test_sgettext.mo +0 -0
- data/test/locale/la/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/li/LC_MESSAGES/plural.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/po/cr/plural.po +23 -0
- data/test/po/da/plural.po +22 -0
- data/test/po/da/plural_error.po +20 -0
- data/test/po/fr/plural.po +22 -0
- data/test/po/fr/plural_error.po +19 -0
- data/test/po/fr/test1.po +23 -0
- data/test/po/fr/test2.po +19 -0
- data/test/po/ir/plural.po +23 -0
- data/test/po/ja/plural.po +22 -0
- data/test/po/ja/plural_error.po +20 -0
- data/test/po/ja/test1.po +23 -0
- data/test/po/ja/test2.po +19 -0
- data/test/po/ja/test_rubyparser.po +43 -0
- data/test/po/ja/test_sgettext.po +47 -0
- data/test/po/la/plural.po +23 -0
- data/test/po/li/plural.po +23 -0
- data/test/po/po/plural.po +23 -0
- data/test/po/sl/plural.po +24 -0
- data/test/test.sh +7 -0
- data/test/test_erb.rhtml +15 -0
- data/test/test_gladeparser.glade +183 -0
- data/test/test_rubyparser.rb +77 -0
- data/test/test_rubyparser_n.rb +66 -0
- data/test/test_sgettext.rb +48 -0
- data/test/testlib1.rb +20 -0
- data/test/testlib2.rb +11 -0
- data/test/testlib3.rb +12 -0
- data/test/testlib4.rb +11 -0
- metadata +589 -0
@@ -0,0 +1,40 @@
|
|
1
|
+
=begin
|
2
|
+
gettext/rails.rb - GetText for "Ruby on Rails"
|
3
|
+
|
4
|
+
Copyright (C) 2005 Masao Mutoh
|
5
|
+
|
6
|
+
You may redistribute it and/or modify it under the same
|
7
|
+
license terms as Ruby.
|
8
|
+
|
9
|
+
$Id: rails.rb,v 1.1 2005/08/27 18:52:20 mutoh Exp $
|
10
|
+
=end
|
11
|
+
|
12
|
+
require 'gettext'
|
13
|
+
require 'gettext/cgi'
|
14
|
+
|
15
|
+
module GetText
|
16
|
+
module Rails
|
17
|
+
include GetText
|
18
|
+
|
19
|
+
alias :_bindtextdomain :bindtextdomain
|
20
|
+
|
21
|
+
def bindtextdomain(domainname, _cgi = nil, locale = nil, charset = "UTF-8")
|
22
|
+
set_cgi(_cgi) if _cgi
|
23
|
+
@gettext_container_domainname = domainname
|
24
|
+
path = File.join(RAILS_ROOT, "locale")
|
25
|
+
_bindtextdomain(domainname, path, locale, charset)
|
26
|
+
end
|
27
|
+
|
28
|
+
def callersrc
|
29
|
+
@gettext_container_domainname
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
module ActionController
|
36
|
+
class Base
|
37
|
+
helper GetText::Rails
|
38
|
+
include GetText::Rails
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,181 @@
|
|
1
|
+
#! /usr/bin/env ruby
|
2
|
+
=begin
|
3
|
+
rgettext.rb - Generate a .pot file.
|
4
|
+
|
5
|
+
Copyright (C) 2003-2005 Masao Mutoh
|
6
|
+
Copyright (C) 2001,2002 Yasushi Shoji, Masao Mutoh
|
7
|
+
|
8
|
+
Yasushi Shoji <yashi@yashi.com>
|
9
|
+
Masao Mutoh <mutoh@highway.ne.jp>
|
10
|
+
|
11
|
+
You may redistribute it and/or modify it under the same
|
12
|
+
license terms as Ruby.
|
13
|
+
=end
|
14
|
+
|
15
|
+
require 'optparse'
|
16
|
+
require 'gettext'
|
17
|
+
|
18
|
+
module GetText
|
19
|
+
|
20
|
+
module RGetText
|
21
|
+
extend GetText
|
22
|
+
|
23
|
+
bindtextdomain("rgettext")
|
24
|
+
|
25
|
+
# constant values
|
26
|
+
VERSION = GetText::VERSION
|
27
|
+
DATE = %w($Date: 2005/09/02 19:32:48 $)[1]
|
28
|
+
MAX_LINE_LEN = 70
|
29
|
+
|
30
|
+
EX_PARSERS = [
|
31
|
+
["glade.rb", "GladeParser"],
|
32
|
+
["erb.rb", "ErbParser"],
|
33
|
+
["ruby.rb", "RubyParser"] # Default parser.
|
34
|
+
]
|
35
|
+
|
36
|
+
EX_PARSERS.each do |f, _|
|
37
|
+
require File.join("gettext/parser/#{f}")
|
38
|
+
end
|
39
|
+
|
40
|
+
module_function
|
41
|
+
|
42
|
+
def generate_pot_header
|
43
|
+
time = Time.now.strftime("%Y-%m-%d %H:%M%z")
|
44
|
+
%Q[# SOME DESCRIPTIVE TITLE.
|
45
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
46
|
+
# This file is distributed under the same license as the PACKAGE package.
|
47
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
48
|
+
#
|
49
|
+
#, fuzzy
|
50
|
+
msgid ""
|
51
|
+
msgstr ""
|
52
|
+
"Project-Id-Version: PACKAGE VERSION\\n"
|
53
|
+
"POT-Creation-Date: #{time}\\n"
|
54
|
+
"PO-Revision-Date: #{time}\\n"
|
55
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n"
|
56
|
+
"Language-Team: LANGUAGE <LL@li.org>\\n"
|
57
|
+
"MIME-Version: 1.0\\n"
|
58
|
+
"Content-Type: text/plain; charset=UTF-8\\n"
|
59
|
+
"Content-Transfer-Encoding: 8bit\\n"
|
60
|
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\\n"]
|
61
|
+
end
|
62
|
+
|
63
|
+
def generate_pot(ary)
|
64
|
+
str = ""
|
65
|
+
result = Array.new
|
66
|
+
ary.each do |key|
|
67
|
+
msgid = key.shift
|
68
|
+
curr_pos = MAX_LINE_LEN
|
69
|
+
key.each do |e|
|
70
|
+
if curr_pos + e.size > MAX_LINE_LEN
|
71
|
+
str << "\n#:"
|
72
|
+
curr_pos = 3
|
73
|
+
else
|
74
|
+
curr_pos += (e.size + 1)
|
75
|
+
end
|
76
|
+
str << " " << e
|
77
|
+
end
|
78
|
+
msgid.gsub!(/"/, '\"')
|
79
|
+
msgid.gsub!(/\r/, '')
|
80
|
+
if msgid.include?("\000")
|
81
|
+
ids = msgid.split(/\000/)
|
82
|
+
str << "\nmsgid \"" << ids[0] << "\"\n"
|
83
|
+
str << "msgid_plural \"" << ids[1] << "\"\n"
|
84
|
+
str << "msgstr[0] \"\"\n"
|
85
|
+
str << "msgstr[1] \"\"\n"
|
86
|
+
else
|
87
|
+
str << "\nmsgid \"" << msgid << "\"\n"
|
88
|
+
str << "msgstr \"\"\n"
|
89
|
+
end
|
90
|
+
end
|
91
|
+
str
|
92
|
+
end
|
93
|
+
|
94
|
+
def parse(files)
|
95
|
+
ary = []
|
96
|
+
files.each do |file|
|
97
|
+
begin
|
98
|
+
EX_PARSERS.each do |_, c|
|
99
|
+
klass = GetText.const_get(c)
|
100
|
+
if klass.target?(file)
|
101
|
+
ary = klass.parse(file, ary)
|
102
|
+
break
|
103
|
+
end
|
104
|
+
end
|
105
|
+
rescue
|
106
|
+
puts $!
|
107
|
+
exit 1
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
ary
|
112
|
+
end
|
113
|
+
|
114
|
+
def check_options
|
115
|
+
output = STDOUT
|
116
|
+
|
117
|
+
opts = OptionParser.new
|
118
|
+
opts.banner = _("Usage: %s input.rb [-o output.pot]") % $0
|
119
|
+
opts.separator("")
|
120
|
+
opts.separator(_("Extract translatable strings from given input files."))
|
121
|
+
opts.separator("")
|
122
|
+
opts.separator(_("Specific options:"))
|
123
|
+
|
124
|
+
opts.on("-o", "--output=FILE", _("write output to specified file")) do |out|
|
125
|
+
unless FileTest.exist? out
|
126
|
+
output = File.new(File.expand_path(out), "w+")
|
127
|
+
else
|
128
|
+
$stderr.puts(_("File '%s' has already existed.") % out)
|
129
|
+
exit 1
|
130
|
+
end
|
131
|
+
end
|
132
|
+
|
133
|
+
opts.on_tail("--version", _("display version information and exit")) do
|
134
|
+
puts "#{$0} #{VERSION} (#{DATE})"
|
135
|
+
exit
|
136
|
+
end
|
137
|
+
|
138
|
+
opts.parse!(ARGV)
|
139
|
+
|
140
|
+
if ARGV.size == 0
|
141
|
+
puts opts.help
|
142
|
+
exit 1
|
143
|
+
end
|
144
|
+
|
145
|
+
[ARGV, output]
|
146
|
+
end
|
147
|
+
|
148
|
+
def run(targetfiles = nil, out = STDOUT)
|
149
|
+
if targetfiles.is_a? String
|
150
|
+
targetfiles = [targetfiles]
|
151
|
+
elsif ! targetfiles
|
152
|
+
targetfiles, out = check_options
|
153
|
+
end
|
154
|
+
|
155
|
+
if targetfiles.size == 0
|
156
|
+
raise ArgumentError, _("no input files")
|
157
|
+
end
|
158
|
+
|
159
|
+
if out.is_a? String
|
160
|
+
File.open(File.expand_path(out), "w+") do |file|
|
161
|
+
file.puts generate_pot_header
|
162
|
+
file.puts generate_pot(parse(targetfiles))
|
163
|
+
end
|
164
|
+
else
|
165
|
+
out.puts generate_pot_header
|
166
|
+
out.puts generate_pot(parse(targetfiles))
|
167
|
+
end
|
168
|
+
|
169
|
+
end
|
170
|
+
end
|
171
|
+
|
172
|
+
module_function
|
173
|
+
def rgettext(targetfiles = nil, out = STDOUT)
|
174
|
+
RGetText.run(targetfiles, out)
|
175
|
+
end
|
176
|
+
end
|
177
|
+
|
178
|
+
if $0 == __FILE__
|
179
|
+
GetText.rgettext
|
180
|
+
# GetText.rgettext($0, "tmp.txt")
|
181
|
+
end
|
@@ -0,0 +1,363 @@
|
|
1
|
+
=begin
|
2
|
+
rmsgfmt.rb - Generate a .mo
|
3
|
+
|
4
|
+
Copyright (C) 2003-2005 Masao Mutoh <mutoh@highway.ne.jp>
|
5
|
+
|
6
|
+
You may redistribute it and/or modify it under the same
|
7
|
+
license terms as Ruby.
|
8
|
+
=end
|
9
|
+
|
10
|
+
#
|
11
|
+
# DO NOT MODIFY!!!!
|
12
|
+
# This file is automatically generated by racc 1.4.4
|
13
|
+
# from racc grammer file "src/rmsgfmt.ry".
|
14
|
+
#
|
15
|
+
|
16
|
+
require 'racc/parser'
|
17
|
+
|
18
|
+
|
19
|
+
module GetText
|
20
|
+
|
21
|
+
class PoParser < Racc::Parser
|
22
|
+
|
23
|
+
module_eval <<'..end src/rmsgfmt.ry modeval..ida199490b55', 'src/rmsgfmt.ry', 90
|
24
|
+
def unescape(orig)
|
25
|
+
ret = orig.gsub(/\\n/, "\n")
|
26
|
+
ret.gsub!(/\\t/, "\t")
|
27
|
+
ret.gsub!(/\\r/, "\r")
|
28
|
+
ret.gsub!(/\\"/, "\"")
|
29
|
+
ret
|
30
|
+
end
|
31
|
+
|
32
|
+
def parse(str, data)
|
33
|
+
@data = data
|
34
|
+
@fuzzy = false
|
35
|
+
str.strip!
|
36
|
+
@q = []
|
37
|
+
until str.empty? do
|
38
|
+
case str
|
39
|
+
when /\A\s+/
|
40
|
+
str = $'
|
41
|
+
when /\Amsgid_plural/
|
42
|
+
@q.push [:MSGID_PLURAL, $&]
|
43
|
+
str = $'
|
44
|
+
when /\Amsgid/
|
45
|
+
@q.push [:MSGID, $&]
|
46
|
+
str = $'
|
47
|
+
when /\Amsgstr/
|
48
|
+
@q.push [:MSGSTR, $&]
|
49
|
+
str = $'
|
50
|
+
when /\A\[(\d+)\]/
|
51
|
+
@q.push [:PLURAL_NUM, $1]
|
52
|
+
str = $'
|
53
|
+
when /\A\#~(.*)/
|
54
|
+
$stderr.print _("Warning: obsolete msgid is existed.\n")
|
55
|
+
$stderr.print " #{$&}\n"
|
56
|
+
str = $'
|
57
|
+
when /\A\#/
|
58
|
+
@q.push [:COMMENT, $&]
|
59
|
+
str = $'
|
60
|
+
when /\A\"(.*)\"/
|
61
|
+
@q.push [:STRING, $1]
|
62
|
+
str = $'
|
63
|
+
else
|
64
|
+
c = str[0,1]
|
65
|
+
@q.push [:STRING, c]
|
66
|
+
str = str[1..-1]
|
67
|
+
end
|
68
|
+
end
|
69
|
+
@q.push [false, '$end']
|
70
|
+
if $DEBUG
|
71
|
+
@q.each do |a,b|
|
72
|
+
puts "[#{a}, #{b}]"
|
73
|
+
end
|
74
|
+
end
|
75
|
+
@yydebug = true if $DEBUG
|
76
|
+
do_parse
|
77
|
+
end
|
78
|
+
|
79
|
+
def next_token
|
80
|
+
@q.shift
|
81
|
+
end
|
82
|
+
|
83
|
+
..end src/rmsgfmt.ry modeval..ida199490b55
|
84
|
+
|
85
|
+
##### racc 1.4.4 generates ###
|
86
|
+
|
87
|
+
racc_reduce_table = [
|
88
|
+
0, 0, :racc_error,
|
89
|
+
0, 9, :_reduce_none,
|
90
|
+
2, 9, :_reduce_none,
|
91
|
+
2, 9, :_reduce_none,
|
92
|
+
4, 11, :_reduce_4,
|
93
|
+
5, 11, :_reduce_5,
|
94
|
+
2, 13, :_reduce_6,
|
95
|
+
1, 13, :_reduce_none,
|
96
|
+
3, 14, :_reduce_8,
|
97
|
+
2, 10, :_reduce_9,
|
98
|
+
1, 10, :_reduce_none,
|
99
|
+
2, 12, :_reduce_11,
|
100
|
+
1, 12, :_reduce_12 ]
|
101
|
+
|
102
|
+
racc_reduce_n = 13
|
103
|
+
|
104
|
+
racc_shift_n = 22
|
105
|
+
|
106
|
+
racc_action_table = [
|
107
|
+
3, 9, 4, 5, 12, 13, 11, 18, 11, 11,
|
108
|
+
9, 9, 9, 7, 11, 18, 20, 9, 11 ]
|
109
|
+
|
110
|
+
racc_action_check = [
|
111
|
+
1, 13, 1, 1, 10, 10, 10, 14, 14, 8,
|
112
|
+
4, 12, 5, 3, 15, 16, 18, 20, 21 ]
|
113
|
+
|
114
|
+
racc_action_pointer = [
|
115
|
+
nil, 0, nil, 13, 4, 6, nil, nil, 3, nil,
|
116
|
+
0, nil, 5, -5, 2, 8, 10, nil, 9, nil,
|
117
|
+
11, 12 ]
|
118
|
+
|
119
|
+
racc_action_default = [
|
120
|
+
-1, -13, -3, -13, -10, -13, -2, 22, -9, -12,
|
121
|
+
-13, -11, -13, -13, -13, -4, -5, -7, -13, -6,
|
122
|
+
-13, -8 ]
|
123
|
+
|
124
|
+
racc_goto_table = [
|
125
|
+
8, 10, 17, 2, 19, 6, 16, 1, 14, 15,
|
126
|
+
nil, nil, nil, nil, nil, nil, 21 ]
|
127
|
+
|
128
|
+
racc_goto_check = [
|
129
|
+
4, 4, 6, 3, 6, 2, 5, 1, 4, 4,
|
130
|
+
nil, nil, nil, nil, nil, nil, 4 ]
|
131
|
+
|
132
|
+
racc_goto_pointer = [
|
133
|
+
nil, 7, 4, 2, -4, -8, -12 ]
|
134
|
+
|
135
|
+
racc_goto_default = [
|
136
|
+
nil, nil, nil, nil, nil, nil, nil ]
|
137
|
+
|
138
|
+
racc_token_table = {
|
139
|
+
false => 0,
|
140
|
+
Object.new => 1,
|
141
|
+
:COMMENT => 2,
|
142
|
+
:MSGID => 3,
|
143
|
+
:MSGID_PLURAL => 4,
|
144
|
+
:MSGSTR => 5,
|
145
|
+
:STRING => 6,
|
146
|
+
:PLURAL_NUM => 7 }
|
147
|
+
|
148
|
+
racc_use_result_var = true
|
149
|
+
|
150
|
+
racc_nt_base = 8
|
151
|
+
|
152
|
+
Racc_arg = [
|
153
|
+
racc_action_table,
|
154
|
+
racc_action_check,
|
155
|
+
racc_action_default,
|
156
|
+
racc_action_pointer,
|
157
|
+
racc_goto_table,
|
158
|
+
racc_goto_check,
|
159
|
+
racc_goto_default,
|
160
|
+
racc_goto_pointer,
|
161
|
+
racc_nt_base,
|
162
|
+
racc_reduce_table,
|
163
|
+
racc_token_table,
|
164
|
+
racc_shift_n,
|
165
|
+
racc_reduce_n,
|
166
|
+
racc_use_result_var ]
|
167
|
+
|
168
|
+
Racc_token_to_s_table = [
|
169
|
+
'$end',
|
170
|
+
'error',
|
171
|
+
'COMMENT',
|
172
|
+
'MSGID',
|
173
|
+
'MSGID_PLURAL',
|
174
|
+
'MSGSTR',
|
175
|
+
'STRING',
|
176
|
+
'PLURAL_NUM',
|
177
|
+
'$start',
|
178
|
+
'msgfmt',
|
179
|
+
'comment',
|
180
|
+
'message',
|
181
|
+
'string_list',
|
182
|
+
'msgstr_plural',
|
183
|
+
'msgstr_plural_line']
|
184
|
+
|
185
|
+
Racc_debug_parser = true
|
186
|
+
|
187
|
+
##### racc system variables end #####
|
188
|
+
|
189
|
+
# reduce 0 omitted
|
190
|
+
|
191
|
+
# reduce 1 omitted
|
192
|
+
|
193
|
+
# reduce 2 omitted
|
194
|
+
|
195
|
+
# reduce 3 omitted
|
196
|
+
|
197
|
+
module_eval <<'.,.,', 'src/rmsgfmt.ry', 36
|
198
|
+
def _reduce_4( val, _values, result )
|
199
|
+
if @fuzzy
|
200
|
+
if val[1] != ""
|
201
|
+
$stderr.print _("Warning: fuzzy message was ignored.\n")
|
202
|
+
$stderr.print " msgid '#{val[1]}'\n"
|
203
|
+
else
|
204
|
+
@data[""] = unescape(val[3])
|
205
|
+
end
|
206
|
+
@fuzzy = false
|
207
|
+
else
|
208
|
+
@data[unescape(val[1])] = unescape(val[3])
|
209
|
+
end
|
210
|
+
result = ""
|
211
|
+
result
|
212
|
+
end
|
213
|
+
.,.,
|
214
|
+
|
215
|
+
module_eval <<'.,.,', 'src/rmsgfmt.ry', 51
|
216
|
+
def _reduce_5( val, _values, result )
|
217
|
+
if @fuzzy
|
218
|
+
if val[1] != ""
|
219
|
+
$stderr.print _("Warning: fuzzy message was ignored.\n")
|
220
|
+
$stderr.print "msgid = '#{val[1]}\n"
|
221
|
+
else
|
222
|
+
@data[""] = unescape(val[3])
|
223
|
+
end
|
224
|
+
@fuzzy = false
|
225
|
+
else
|
226
|
+
@data[unescape(val[1]) + "\000" + unescape(val[3])] = unescape(val[4])
|
227
|
+
end
|
228
|
+
result = ""
|
229
|
+
result
|
230
|
+
end
|
231
|
+
.,.,
|
232
|
+
|
233
|
+
module_eval <<'.,.,', 'src/rmsgfmt.ry', 58
|
234
|
+
def _reduce_6( val, _values, result )
|
235
|
+
result = val[0] + "\000" + val[1]
|
236
|
+
result
|
237
|
+
end
|
238
|
+
.,.,
|
239
|
+
|
240
|
+
# reduce 7 omitted
|
241
|
+
|
242
|
+
module_eval <<'.,.,', 'src/rmsgfmt.ry', 66
|
243
|
+
def _reduce_8( val, _values, result )
|
244
|
+
result = val[2]
|
245
|
+
result
|
246
|
+
end
|
247
|
+
.,.,
|
248
|
+
|
249
|
+
module_eval <<'.,.,', 'src/rmsgfmt.ry', 73
|
250
|
+
def _reduce_9( val, _values, result )
|
251
|
+
@fuzzy = true if /fuzzy/ =~ val[1]
|
252
|
+
result
|
253
|
+
end
|
254
|
+
.,.,
|
255
|
+
|
256
|
+
# reduce 10 omitted
|
257
|
+
|
258
|
+
module_eval <<'.,.,', 'src/rmsgfmt.ry', 81
|
259
|
+
def _reduce_11( val, _values, result )
|
260
|
+
result = val.delete_if{|item| item == ""}.join
|
261
|
+
result
|
262
|
+
end
|
263
|
+
.,.,
|
264
|
+
|
265
|
+
module_eval <<'.,.,', 'src/rmsgfmt.ry', 85
|
266
|
+
def _reduce_12( val, _values, result )
|
267
|
+
result = val[0]
|
268
|
+
result
|
269
|
+
end
|
270
|
+
.,.,
|
271
|
+
|
272
|
+
def _reduce_none( val, _values, result )
|
273
|
+
result
|
274
|
+
end
|
275
|
+
|
276
|
+
end # class PoParser
|
277
|
+
|
278
|
+
end # module GetText
|
279
|
+
|
280
|
+
require 'optparse'
|
281
|
+
require 'gettext'
|
282
|
+
require 'fileutils'
|
283
|
+
|
284
|
+
include GetText
|
285
|
+
GetText.bindtextdomain("rmsgfmt")
|
286
|
+
|
287
|
+
module GetText
|
288
|
+
module RMsgfmt
|
289
|
+
VERSION = GetText::VERSION
|
290
|
+
DATE = %w($Date: 2005/08/30 17:56:15 $)[1]
|
291
|
+
|
292
|
+
module_function
|
293
|
+
def run(targetfile = nil, output_path = nil)
|
294
|
+
unless targetfile
|
295
|
+
targetfile, output_path = check_options
|
296
|
+
end
|
297
|
+
unless targetfile
|
298
|
+
raise ArgumentError, _("no input files")
|
299
|
+
end
|
300
|
+
unless output_path
|
301
|
+
output_path = "messages.mo"
|
302
|
+
end
|
303
|
+
|
304
|
+
parser = PoParser.new
|
305
|
+
data = MOFile.new
|
306
|
+
parser.parse(File.open(targetfile).read, data)
|
307
|
+
data.save_to_file(output_path)
|
308
|
+
end
|
309
|
+
|
310
|
+
def check_options
|
311
|
+
output = nil
|
312
|
+
|
313
|
+
opts = OptionParser.new
|
314
|
+
opts.banner = _("Usage: %s input.po [-o output.mo]" % $0)
|
315
|
+
opts.separator("")
|
316
|
+
opts.separator(_("Generate binary message catalog from textual translation description."))
|
317
|
+
opts.separator("")
|
318
|
+
opts.separator(_("Specific options:"))
|
319
|
+
|
320
|
+
opts.on("-o", "--output=FILE", _("write output to specified file")) do |out|
|
321
|
+
output = out
|
322
|
+
end
|
323
|
+
|
324
|
+
opts.on_tail("--version", _("display version information and exit")) do
|
325
|
+
puts "#{$0} #{VERSION} (#{DATE})"
|
326
|
+
exit
|
327
|
+
end
|
328
|
+
opts.parse!(ARGV)
|
329
|
+
|
330
|
+
if ARGV.size == 0
|
331
|
+
puts opts.help
|
332
|
+
exit 1
|
333
|
+
end
|
334
|
+
|
335
|
+
[ARGV[0], output]
|
336
|
+
end
|
337
|
+
end
|
338
|
+
|
339
|
+
module_function
|
340
|
+
def rmsgfmt(targetfile = nil, output_path = nil)
|
341
|
+
RMsgfmt.run(targetfile, output_path)
|
342
|
+
end
|
343
|
+
|
344
|
+
def create_mofiles(verbose = false,
|
345
|
+
podir = "./po", targetdir = "./data/locale",
|
346
|
+
targetpath_rule = "%s/LC_MESSAGES")
|
347
|
+
|
348
|
+
modir = File.join(targetdir, targetpath_rule)
|
349
|
+
Dir.glob(File.join(podir, "*/*.po")) do |file|
|
350
|
+
lang, basename = /\/([^\/]+?)\/(.*)\.po/.match(file[podir.size..-1]).to_a[1,2]
|
351
|
+
outdir = modir % lang
|
352
|
+
FileUtils.mkdir_p(outdir) unless File.directory?(outdir)
|
353
|
+
rmsgfmt(file, File.join(outdir, "#{basename}.mo"))
|
354
|
+
if verbose
|
355
|
+
$stderr.puts %Q[#{file} -> #{File.join(outdir, "#{basename}.mo")}]
|
356
|
+
end
|
357
|
+
end
|
358
|
+
end
|
359
|
+
end
|
360
|
+
|
361
|
+
if $0 == __FILE__ then
|
362
|
+
GetText.rmsgfmt
|
363
|
+
end
|