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
data/bin/rgettext
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
#! e:/ruby/bin/ruby
|
2
|
+
=begin
|
3
|
+
rgettext - ruby version of xgettext
|
4
|
+
|
5
|
+
Copyright (C) 2005 Masao Mutoh
|
6
|
+
|
7
|
+
You may redistribute it and/or modify it under the same
|
8
|
+
license terms as Ruby.
|
9
|
+
=end
|
10
|
+
|
11
|
+
begin
|
12
|
+
require 'gettext/rgettext'
|
13
|
+
rescue LoadError
|
14
|
+
begin
|
15
|
+
require 'rubygems'
|
16
|
+
require_gem 'gettext/rgettext'
|
17
|
+
rescue LoadError
|
18
|
+
raise 'Ruby-GetText-Package are not installed.'
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
GetText.rgettext
|
data/bin/rmsgfmt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
#! e:/ruby/bin/ruby
|
2
|
+
=begin
|
3
|
+
rgettext - ruby version of xgettext
|
4
|
+
|
5
|
+
Copyright (C) 2005 Masao Mutoh
|
6
|
+
|
7
|
+
You may redistribute it and/or modify it under the same
|
8
|
+
license terms as Ruby.
|
9
|
+
=end
|
10
|
+
|
11
|
+
begin
|
12
|
+
require 'gettext/rmsgfmt'
|
13
|
+
rescue LoadError
|
14
|
+
begin
|
15
|
+
require 'rubygems'
|
16
|
+
require_gem 'gettext/rmsgfmt'
|
17
|
+
rescue LoadError
|
18
|
+
raise 'Ruby-GetText-Package are not installed.'
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
GetText.rmsgfmt
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,145 @@
|
|
1
|
+
|
2
|
+
SHELL = /bin/sh
|
3
|
+
|
4
|
+
#### Start of system configuration section. ####
|
5
|
+
|
6
|
+
srcdir = .
|
7
|
+
topdir = e:/ruby/lib/ruby/1.8/i386-mswin32
|
8
|
+
hdrdir = $(topdir)
|
9
|
+
VPATH = $(srcdir)
|
10
|
+
|
11
|
+
DESTDIR = e:
|
12
|
+
prefix = $(DESTDIR)/ruby
|
13
|
+
exec_prefix = $(prefix)
|
14
|
+
bindir = $(exec_prefix)/bin
|
15
|
+
sitelibdir = $(sitedir)/$(ruby_version)
|
16
|
+
datadir = $(prefix)/share
|
17
|
+
sitedir = $(prefix)/lib/ruby/site_ruby
|
18
|
+
sharedstatedir = $(DESTDIR)/etc
|
19
|
+
archdir = $(rubylibdir)/$(arch)
|
20
|
+
localstatedir = $(DESTDIR)/var
|
21
|
+
infodir = $(prefix)/info
|
22
|
+
oldincludedir = $(DESTDIR)/usr/include
|
23
|
+
libexecdir = $(exec_prefix)/libexec
|
24
|
+
compile_dir = $(DESTDIR)/Dev/RubyDev/rubyinstaller/cvs-repo/installer-win/stable/download/ruby-1.8.2/win32
|
25
|
+
sbindir = $(exec_prefix)/sbin
|
26
|
+
includedir = $(prefix)/include
|
27
|
+
sysconfdir = $(prefix)/etc
|
28
|
+
sitearchdir = $(sitelibdir)/$(sitearch)
|
29
|
+
mandir = $(prefix)/man
|
30
|
+
libdir = $(exec_prefix)/lib
|
31
|
+
rubylibdir = $(libdir)/ruby/$(ruby_version)
|
32
|
+
|
33
|
+
CC = cl -nologo
|
34
|
+
LIBRUBY = $(RUBY_SO_NAME).lib
|
35
|
+
LIBRUBY_A = $(RUBY_SO_NAME)-static.lib
|
36
|
+
LIBRUBYARG_SHARED = $(LIBRUBY)
|
37
|
+
LIBRUBYARG_STATIC = $(LIBRUBY_A)
|
38
|
+
|
39
|
+
CFLAGS = -MD -Zi -O2b2xg- -G6
|
40
|
+
CPPFLAGS = -I. -I$(topdir) -I$(hdrdir) -I$(srcdir) -DHAVE_WINDOWS_H -I. -I./.. -I./../missing
|
41
|
+
CXXFLAGS = $(CFLAGS)
|
42
|
+
DLDFLAGS = -link -incremental:no -debug -opt:ref -opt:icf -dll $(LIBPATH) -def:$(DEFFILE)
|
43
|
+
LDSHARED = cl -nologo -LD
|
44
|
+
AR = lib -nologo
|
45
|
+
EXEEXT = .exe
|
46
|
+
|
47
|
+
RUBY_INSTALL_NAME = ruby
|
48
|
+
RUBY_SO_NAME = msvcrt-ruby18
|
49
|
+
arch = i386-mswin32
|
50
|
+
sitearch = i386-msvcrt
|
51
|
+
ruby_version = 1.8
|
52
|
+
ruby = e:/ruby/bin/ruby
|
53
|
+
RUBY = $(ruby:/=\)
|
54
|
+
RM = $(RUBY) -run -e rm -- -f
|
55
|
+
MAKEDIRS = $(RUBY) -run -e mkdir -- -p
|
56
|
+
INSTALL_PROG = $(RUBY) -run -e install -- -vpm 0755
|
57
|
+
INSTALL_DATA = $(RUBY) -run -e install -- -vpm 0644
|
58
|
+
|
59
|
+
#### End of system configuration section. ####
|
60
|
+
|
61
|
+
|
62
|
+
LIBPATH = -libpath:"$(libdir)"
|
63
|
+
DEFFILE = $(TARGET)-$(arch).def
|
64
|
+
|
65
|
+
CLEANFILES =
|
66
|
+
DISTCLEANFILES = $(DEFFILE)
|
67
|
+
|
68
|
+
target_prefix =
|
69
|
+
LOCAL_LIBS =
|
70
|
+
LIBS = $(LIBRUBYARG_SHARED) oldnames.lib user32.lib advapi32.lib wsock32.lib
|
71
|
+
OBJS = _locale.obj
|
72
|
+
TARGET = _locale
|
73
|
+
DLLIB = $(TARGET).so
|
74
|
+
STATIC_LIB = $(TARGET).lib
|
75
|
+
|
76
|
+
RUBYCOMMONDIR = $(sitedir)$(target_prefix)
|
77
|
+
RUBYLIBDIR = $(sitelibdir)$(target_prefix)
|
78
|
+
RUBYARCHDIR = $(sitearchdir)$(target_prefix)
|
79
|
+
|
80
|
+
CLEANLIBS = "$(TARGET).{lib,exp,il?,tds,map}" $(DLLIB)
|
81
|
+
CLEANOBJS = "*.{obj,lib,s[ol],pdb,bak}"
|
82
|
+
|
83
|
+
all: $(DLLIB)
|
84
|
+
static: $(STATIC_LIB)
|
85
|
+
|
86
|
+
clean:
|
87
|
+
@$(RM) $(CLEANLIBS) $(CLEANOBJS) $(CLEANFILES)
|
88
|
+
|
89
|
+
distclean: clean
|
90
|
+
@$(RM) Makefile extconf.h conftest.* mkmf.log
|
91
|
+
@$(RM) core ruby$(EXEEXT) *~ $(DISTCLEANFILES)
|
92
|
+
|
93
|
+
realclean: distclean
|
94
|
+
install: $(RUBYARCHDIR)
|
95
|
+
install: $(RUBYARCHDIR)/$(DLLIB)
|
96
|
+
$(RUBYARCHDIR)/$(DLLIB): $(DLLIB) $(RUBYARCHDIR)
|
97
|
+
@$(INSTALL_PROG) $(DLLIB) $(RUBYARCHDIR)
|
98
|
+
$(RUBYARCHDIR):
|
99
|
+
@$(MAKEDIRS) $(RUBYARCHDIR)
|
100
|
+
|
101
|
+
site-install: install
|
102
|
+
|
103
|
+
.SUFFIXES: .c .cc .m .cxx .cpp .C .obj
|
104
|
+
|
105
|
+
{$(srcdir)}.cc{}.obj:
|
106
|
+
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c -Tp$(<:\=/)
|
107
|
+
|
108
|
+
.cc.obj:
|
109
|
+
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c -Tp$(<:\=/)
|
110
|
+
|
111
|
+
{$(srcdir)}.cpp{}.obj:
|
112
|
+
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c -Tp$(<:\=/)
|
113
|
+
|
114
|
+
.cpp.obj:
|
115
|
+
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c -Tp$(<:\=/)
|
116
|
+
|
117
|
+
{$(srcdir)}.cxx{}.obj:
|
118
|
+
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c -Tp$(<:\=/)
|
119
|
+
|
120
|
+
.cxx.obj:
|
121
|
+
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c -Tp$(<:\=/)
|
122
|
+
|
123
|
+
{$(srcdir)}.C{}.obj:
|
124
|
+
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c -Tp$(<:\=/)
|
125
|
+
|
126
|
+
.C.obj:
|
127
|
+
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c -Tp$(<:\=/)
|
128
|
+
|
129
|
+
{$(srcdir)}.c{}.obj:
|
130
|
+
$(CC) $(CFLAGS) $(CPPFLAGS) -c -Tc$(<:\=/)
|
131
|
+
|
132
|
+
.c.obj:
|
133
|
+
$(CC) $(CFLAGS) $(CPPFLAGS) -c -Tc$(<:\=/)
|
134
|
+
|
135
|
+
$(DLLIB): $(OBJS) $(DEFFILE)
|
136
|
+
@-$(RM) $@
|
137
|
+
@-$(RM) $(TARGET).lib
|
138
|
+
$(LDSHARED) -Fe$(@) $(OBJS) $(LIBS) $(LOCAL_LIBS) $(DLDFLAGS)
|
139
|
+
|
140
|
+
$(STATIC_LIB): $(OBJS)
|
141
|
+
$(AR) -machine:x86 -out:$@ $(OBJS)
|
142
|
+
|
143
|
+
$(DEFFILE):
|
144
|
+
$(RUBY) -e "puts 'EXPORTS', 'Init_$(TARGET)'" > $@
|
145
|
+
|
@@ -0,0 +1,86 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; tab-width: 4 -*-
|
2
|
+
*
|
3
|
+
* Copyright (C) 2002-2005 Masao Mutoh
|
4
|
+
*
|
5
|
+
* You may redistribute it and/or modify it under the same
|
6
|
+
* license terms as Ruby.
|
7
|
+
*
|
8
|
+
* $Id: _locale.c,v 1.2 2005/08/20 17:05:34 mutoh Exp $
|
9
|
+
*/
|
10
|
+
|
11
|
+
#include "ruby.h"
|
12
|
+
|
13
|
+
#if defined HAVE_WINDOWS_H
|
14
|
+
# include <windows.h>
|
15
|
+
#else
|
16
|
+
# if defined HAVE_SETLOCALE
|
17
|
+
# include <locale.h>
|
18
|
+
# endif
|
19
|
+
# if defined HAVE_NL_LANGINFO
|
20
|
+
# include <langinfo.h>
|
21
|
+
# endif
|
22
|
+
#endif
|
23
|
+
#ifndef StringValuePtr
|
24
|
+
#define StringValuePtr(s) STR2CSTR(s)
|
25
|
+
#endif
|
26
|
+
|
27
|
+
#if defined HAVE_WINDOWS_H
|
28
|
+
static VALUE
|
29
|
+
gt_locale_id_win32(self)
|
30
|
+
VALUE self;
|
31
|
+
{
|
32
|
+
int lcid, pri_id, sub_id;
|
33
|
+
lcid = GetUserDefaultLangID();
|
34
|
+
pri_id = lcid & 0x3ff;
|
35
|
+
sub_id = lcid >> 10;
|
36
|
+
return rb_assoc_new(INT2FIX(pri_id), INT2FIX(sub_id));
|
37
|
+
}
|
38
|
+
#endif
|
39
|
+
static VALUE
|
40
|
+
gt_setlocale(self, type, locale)
|
41
|
+
VALUE self, type, locale;
|
42
|
+
{
|
43
|
+
# if defined HAVE_SETLOCALE
|
44
|
+
char* ret = setlocale(NUM2INT(type),
|
45
|
+
NIL_P(locale) ? NULL : StringValuePtr(locale));
|
46
|
+
return ret == NULL ? rb_str_new2("C") : rb_str_new2(ret);
|
47
|
+
# else
|
48
|
+
return rb_str_new2("C");
|
49
|
+
# endif
|
50
|
+
}
|
51
|
+
|
52
|
+
static VALUE
|
53
|
+
gt_codeset(self)
|
54
|
+
VALUE self;
|
55
|
+
{
|
56
|
+
#if defined HAVE_WINDOWS_H
|
57
|
+
char buf[2 + 10 + 1];
|
58
|
+
sprintf (buf, "CP%u", GetACP ());
|
59
|
+
return rb_str_new2(buf);
|
60
|
+
#elif defined HAVE_NL_LANGINFO
|
61
|
+
return rb_str_new2(nl_langinfo(CODESET));
|
62
|
+
#else
|
63
|
+
return rb_str_new2("UTF-8");
|
64
|
+
#endif
|
65
|
+
}
|
66
|
+
|
67
|
+
void Init__locale()
|
68
|
+
{
|
69
|
+
VALUE mLocale = rb_define_module("Locale");
|
70
|
+
|
71
|
+
#if defined HAVE_WINDOWS_H
|
72
|
+
rb_define_module_function(mLocale, "__locale_id", gt_locale_id_win32, 0);
|
73
|
+
#endif
|
74
|
+
rb_define_module_function(mLocale, "set", gt_setlocale, 2);
|
75
|
+
rb_define_module_function(mLocale, "codeset", gt_codeset, 0);
|
76
|
+
# if defined HAVE_SETLOCALE
|
77
|
+
rb_define_const(mLocale, "ALL", INT2NUM(LC_ALL));
|
78
|
+
rb_define_const(mLocale, "COLLATE", INT2NUM(LC_COLLATE));
|
79
|
+
rb_define_const(mLocale, "CTYPE", INT2NUM(LC_CTYPE));
|
80
|
+
rb_define_const(mLocale, "MESSAGES", INT2NUM(LC_MESSAGES));
|
81
|
+
rb_define_const(mLocale, "MONETARY", INT2NUM(LC_MONETARY));
|
82
|
+
rb_define_const(mLocale, "NUMERIC", INT2NUM(LC_NUMERIC));
|
83
|
+
rb_define_const(mLocale, "TIME", INT2NUM(LC_TIME));
|
84
|
+
#endif
|
85
|
+
|
86
|
+
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,20 @@
|
|
1
|
+
=begin
|
2
|
+
extconf.rb
|
3
|
+
|
4
|
+
Copyright (C) 2002,2003 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
|
+
|
9
|
+
$Id: extconf.rb,v 1.1.1.1 2005/08/13 02:38:09 mutoh Exp $
|
10
|
+
=end
|
11
|
+
|
12
|
+
require 'mkmf'
|
13
|
+
|
14
|
+
if RUBY_PLATFORM =~ /cygwin|mingw|mswin32|bccwin32/
|
15
|
+
have_header 'windows.h'
|
16
|
+
else
|
17
|
+
have_func 'setlocale'
|
18
|
+
have_func 'nl_langinfo'
|
19
|
+
end
|
20
|
+
create_makefile '_locale'
|
@@ -0,0 +1,16 @@
|
|
1
|
+
have_header: checking for windows.h... -------------------- yes
|
2
|
+
|
3
|
+
"cl -IC:/tmp/ruby-gettext-package-1.0.0/ext/gettext/gettext -Ie:/ruby/lib/ruby/1.8/i386-mswin32 -I. -I./.. -I./../missing -MD -Zi -O2b2xg- -G6 conftest.c -P"
|
4
|
+
Microsoft(R) 32-bit C/C++ Standard Compiler Version 13.10.3077 for 80x86
|
5
|
+
Copyright (C) Microsoft Corporation 1984-2002. All rights reserved.
|
6
|
+
|
7
|
+
cl : �R�}���h ���C�� warning D4029 : �W���̕ҏW�R���p�C���ł͍œK���͎g�p�ł��܂���B
|
8
|
+
cl : �R�}���h ���C�� warning D4002 : �F���s�\�ȃI�v�V���� '-Og-' �����܂����B
|
9
|
+
conftest.c
|
10
|
+
checked program was:
|
11
|
+
/* begin */
|
12
|
+
#include <windows.h>
|
13
|
+
/* end */
|
14
|
+
|
15
|
+
--------------------
|
16
|
+
|
Binary file
|
File without changes
|
data/lib/_locale.so
ADDED
Binary file
|
data/lib/gettext.rb
ADDED
@@ -0,0 +1,127 @@
|
|
1
|
+
=begin
|
2
|
+
gettext.rb - GetText module
|
3
|
+
|
4
|
+
Copyright (C) 2001-2005 Masao Mutoh
|
5
|
+
Copyright (C) 2001-2003 Masahiro Sakai
|
6
|
+
|
7
|
+
Masao Mutoh <mutoh@highway.ne.jp>
|
8
|
+
Masahiro Sakai <s01397ms@sfc.keio.ac.jp>
|
9
|
+
|
10
|
+
You may redistribute it and/or modify it under the same
|
11
|
+
license terms as Ruby.
|
12
|
+
|
13
|
+
$Id: gettext.rb,v 1.2 2005/08/20 17:05:34 mutoh Exp $
|
14
|
+
=end
|
15
|
+
|
16
|
+
require 'rbconfig'
|
17
|
+
require 'gettext/version'
|
18
|
+
require 'gettext/mo'
|
19
|
+
require 'gettext/locale'
|
20
|
+
require 'gettext/textdomain'
|
21
|
+
|
22
|
+
module GetText
|
23
|
+
class NoboundTextDomainError < RuntimeError
|
24
|
+
end
|
25
|
+
|
26
|
+
@@__textdomain = Hash.new
|
27
|
+
@@__textdomain_key = Hash.new
|
28
|
+
|
29
|
+
@@output_charset = nil
|
30
|
+
|
31
|
+
def bindtextdomain(domainname, path = nil, locale = nil, charset = nil)
|
32
|
+
locale ||= Locale.get
|
33
|
+
if @@output_charset
|
34
|
+
charset = @@output_charset
|
35
|
+
else
|
36
|
+
charset ||= ENV["OUTPUT_CHARSET"] ? ENV["OUTPUT_CHARSET"] : Locale.codeset
|
37
|
+
@@output_charset = charset
|
38
|
+
end
|
39
|
+
src = callersrc
|
40
|
+
$stderr.print "bind the domain '#{domainname}' to '#{src}'. charset is #{charset}\n" if $DEBUG
|
41
|
+
textdomain = @@__textdomain[src]
|
42
|
+
unless textdomain
|
43
|
+
textdomain = @@__textdomain_key[domainname]
|
44
|
+
@@__textdomain[src] = textdomain
|
45
|
+
end
|
46
|
+
if ! textdomain or ! textdomain.same_property?(domainname, path, locale, charset)
|
47
|
+
textdomain = TextDomain.new(domainname, path, locale, charset)
|
48
|
+
@@__textdomain_key[domainname] = textdomain
|
49
|
+
@@__textdomain[src] = textdomain
|
50
|
+
end
|
51
|
+
@@__textdomain[src]
|
52
|
+
end
|
53
|
+
|
54
|
+
def textdomain(domainname)
|
55
|
+
src = callersrc
|
56
|
+
textdomain = @@__textdomain_key[domainname]
|
57
|
+
raise NoboundTextDomainError, "#{domainname} is not bound." unless textdomain
|
58
|
+
@@__textdomain[src] = textdomain
|
59
|
+
$stderr.print "Use the domain '#{domainname}' to '#{src}'. charset is #{textdomain.charset}\n" if $DEBUG
|
60
|
+
@@__textdomain[src]
|
61
|
+
end
|
62
|
+
|
63
|
+
def gettext(msgid)
|
64
|
+
textdomain = @@__textdomain[callersrc]
|
65
|
+
textdomain ? textdomain.gettext(msgid) : msgid
|
66
|
+
end
|
67
|
+
|
68
|
+
def ngettext(msgid, msgid_plural, n)
|
69
|
+
textdomain = @@__textdomain[callersrc]
|
70
|
+
textdomain ? textdomain.ngettext(msgid, msgid_plural, n) : msgid
|
71
|
+
end
|
72
|
+
|
73
|
+
def N_(msgid)
|
74
|
+
msgid
|
75
|
+
end
|
76
|
+
|
77
|
+
def sgettext(msgid, div = '|')
|
78
|
+
textdomain = @@__textdomain[callersrc]
|
79
|
+
if textdomain
|
80
|
+
msg = textdomain.gettext(msgid)
|
81
|
+
else
|
82
|
+
msg = msgid
|
83
|
+
end
|
84
|
+
if msg == msgid
|
85
|
+
if index = msg.rindex(div)
|
86
|
+
msg = msg[(index + 1)..-1]
|
87
|
+
end
|
88
|
+
end
|
89
|
+
msg
|
90
|
+
end
|
91
|
+
|
92
|
+
def callersrc
|
93
|
+
caller(2)[0].sub(/:\d+(?::in \`\S+\')?\Z/, '')
|
94
|
+
end
|
95
|
+
|
96
|
+
def locale=(locale)
|
97
|
+
textdomain = @@__textdomain[callersrc]
|
98
|
+
textdomain.set_locale(locale) if textdomain
|
99
|
+
locale
|
100
|
+
end
|
101
|
+
|
102
|
+
def output_charset=(charset)
|
103
|
+
@@output_charset = charset
|
104
|
+
end
|
105
|
+
|
106
|
+
def output_charset
|
107
|
+
@@output_charset
|
108
|
+
end
|
109
|
+
|
110
|
+
def charset=(cs)
|
111
|
+
textdomain = @@__textdomain[callersrc]
|
112
|
+
textdomain.set_charset(cs) if textdomain
|
113
|
+
end
|
114
|
+
|
115
|
+
alias :setlocale :locale=
|
116
|
+
alias :set_locale :locale=
|
117
|
+
alias :set_output_charset :output_charset=
|
118
|
+
alias :_ :gettext
|
119
|
+
alias :n_ :ngettext
|
120
|
+
alias :s_ :sgettext
|
121
|
+
|
122
|
+
module_function :bindtextdomain, :textdomain,
|
123
|
+
:N_, :gettext, :_, :ngettext, :n_,
|
124
|
+
:sgettext, :s_, :callersrc,
|
125
|
+
:setlocale, :set_locale, :locale=, :charset=,
|
126
|
+
:set_output_charset, :output_charset=, :output_charset
|
127
|
+
end
|