gettext 1.93.0 → 2.0.0
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.
- data/ChangeLog +16 -1941
- data/ChangeLog-1 +2016 -0
- data/{NEWS → NEWS-1} +2 -0
- data/README.rdoc +251 -0
- data/Rakefile +46 -57
- data/bin/rgettext +1 -1
- data/bin/rmsgfmt +2 -2
- data/bin/rmsgmerge +3 -3
- data/data/locale/bg/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/bs/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/ca/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/cs/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/de/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/el/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/eo/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/es/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/et/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/fr/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/hr/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/hu/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/it/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/ja/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/ko/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/lv/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/nb/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/nl/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/pt_BR/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/ru/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/sr/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/sv/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/ua/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/vi/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/zh/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/zh_TW/LC_MESSAGES/rgettext.mo +0 -0
- data/gettext.gemspec +40 -0
- data/lib/gettext.rb +101 -431
- data/lib/gettext/cgi.rb +4 -4
- data/lib/gettext/class_info.rb +54 -0
- data/lib/gettext/{iconv.rb → core_ext/iconv.rb} +1 -0
- data/lib/gettext/{string.rb → core_ext/string.rb} +12 -8
- data/lib/gettext/locale_path.rb +107 -0
- data/lib/gettext/mofile.rb +314 -0
- data/lib/gettext/parser/erb.rb +2 -1
- data/lib/gettext/parser/glade.rb +2 -1
- data/lib/gettext/parser/ruby.rb +66 -63
- data/lib/gettext/poparser.rb +3 -3
- data/lib/gettext/textdomain.rb +97 -171
- data/lib/gettext/textdomain_manager.rb +224 -0
- data/lib/gettext/tools.rb +195 -0
- data/lib/gettext/{rgettext.rb → tools/rgettext.rb} +74 -77
- data/lib/gettext/{rmsgfmt.rb → tools/rmsgfmt.rb} +12 -26
- data/lib/gettext/{rmsgmerge.rb → tools/rmsgmerge.rb} +3 -6
- data/lib/gettext/utils.rb +18 -135
- data/lib/gettext/version.rb +2 -2
- data/po/bg/rgettext.po +84 -88
- data/po/bs/rgettext.po +86 -90
- data/po/ca/rgettext.po +85 -88
- data/po/cs/rgettext.po +86 -90
- data/po/de/{rails.po → #rails.po#} +17 -16
- data/po/de/rgettext.po +84 -88
- data/po/el/rgettext.po +85 -89
- data/po/eo/rgettext.po +85 -89
- data/po/es/rgettext.po +84 -88
- data/po/et/rgettext.po +84 -88
- data/po/fr/rgettext.po +84 -88
- data/po/hr/rgettext.po +86 -90
- data/po/hu/rgettext.po +84 -88
- data/po/it/rgettext.po +82 -86
- data/po/ja/rails.po.old +150 -0
- data/po/ja/rgettext.po +84 -88
- data/po/ko/rgettext.po +86 -90
- data/po/lv/rgettext.po +84 -88
- data/po/nb/rgettext.po +84 -88
- data/po/nl/rgettext.po +86 -90
- data/po/pt_BR/rgettext.po +84 -88
- data/po/rgettext.pot +54 -70
- data/po/ru/rgettext.po +84 -88
- data/po/sr/rgettext.po +84 -88
- data/po/sv/rgettext.po +57 -73
- data/po/ua/rgettext.po +85 -89
- data/po/vi/rgettext.po +84 -88
- data/po/zh/rgettext.po +83 -87
- data/po/zh_TW/rgettext.po +83 -87
- data/samples/README +4 -8
- data/samples/cgi/Rakefile +2 -2
- data/samples/cgi/cookie.cgi +1 -0
- data/samples/cgi/helloerb1.cgi +8 -4
- data/samples/cgi/helloerb2.cgi +6 -4
- data/samples/cgi/hellolib.rb +1 -2
- data/samples/cgi/index.cgi +1 -0
- data/samples/cgi/locale/bg/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/bs/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/ca/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/cs/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/de/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/el/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/eo/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/es/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/fr/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/hr/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/hu/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/it/LC_MESSAGES/hellolib.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/hellolib.mo +0 -0
- data/samples/cgi/locale/lv/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/nb/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/nl/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/pt_BR/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/ru/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/sr/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/ua/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/vi/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/zh/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/zh_TW/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/po/ja/helloerb1.po +2 -2
- data/samples/cgi/po/ja/helloerb2.po +2 -2
- data/samples/cgi/po/ja/hellolib.po +2 -2
- data/samples/cgi/po/ja/main.po +2 -2
- data/samples/hello.rb +4 -3
- data/samples/hello2.rb +2 -1
- data/samples/{helloglade2.glade → hello_glade2.glade} +0 -0
- data/samples/{helloglade2.rb → hello_glade2.rb} +5 -4
- data/samples/{hellogtk2.rb → hello_gtk2.rb} +3 -3
- data/samples/hello_noop.rb +2 -1
- data/samples/hello_plural.rb +2 -1
- data/samples/{hellotk.rb → hello_tk.rb} +3 -2
- 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/bg/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/bg/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/bg/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/bs/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/bs/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/bs/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/ca/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/ca/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ca/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/cs/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/cs/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/cs/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/de/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/de/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/el/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/el/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/eo/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/eo/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/eo/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/es/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/es/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/fr/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/hr/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/hr/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/hr/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/hu/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/it/LC_MESSAGES/{hellotk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/it/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/{hellogtk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/ja/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/ko/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/lv/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/lv/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/lv/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/nb/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/nb/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/nb/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/nl/LC_MESSAGES/{hellotk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/{hellogtk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/ru/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/sr/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/sr/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/sr/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/sv/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
- data/samples/locale/ua/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/ua/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/ua/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/vi/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/vi/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/vi/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/zh/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/{hellotk.mo → 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/{helloglade2.mo → hello_glade2.mo} +0 -0
- data/samples/locale/zh_TW/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
- data/samples/locale/zh_TW/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/zh_TW/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
- data/samples/makemo.rb +3 -2
- data/samples/po/bg/{helloglade2.po → hello_glade2.po} +4 -4
- data/samples/po/bg/{hellogtk.po → hello_gtk.po} +1 -1
- data/samples/po/bg/{hellotk.po → hello_tk.po} +2 -2
- data/samples/po/bs/{helloglade2.po → hello_glade2.po} +6 -6
- data/samples/po/bs/{hellogtk.po → hello_gtk.po} +3 -3
- data/samples/po/bs/{hellotk.po → hello_tk.po} +4 -4
- data/samples/po/ca/{helloglade2.po → hello_glade2.po} +4 -4
- data/samples/po/ca/{hellogtk.po → hello_gtk.po} +1 -1
- data/samples/po/ca/{hellotk.po → hello_tk.po} +2 -2
- data/samples/po/cs/hello.po +1 -1
- data/samples/po/cs/hello2.po +1 -1
- data/samples/po/cs/{helloglade2.po → hello_glade2.po} +3 -3
- data/samples/po/cs/{hellogtk.po → hello_gtk.po} +2 -2
- data/samples/po/cs/hello_noop.po +1 -1
- data/samples/po/cs/{hellotk.po → hello_tk.po} +2 -2
- data/samples/po/de/hello.po +1 -1
- data/samples/po/de/hello2.po +1 -1
- data/samples/po/de/{helloglade2.po → hello_glade2.po} +3 -3
- data/samples/po/de/{hellogtk.po → hello_gtk.po} +2 -2
- data/samples/po/de/hello_noop.po +1 -1
- data/samples/po/de/{hellotk.po → hello_tk.po} +2 -2
- data/samples/po/el/hello.po +1 -1
- data/samples/po/el/{helloglade2.po → hello_glade2.po} +4 -4
- data/samples/po/el/{hellogtk.po → hello_gtk.po} +1 -1
- data/samples/po/el/{hellotk.po → hello_tk.po} +2 -2
- data/samples/po/eo/{helloglade2.po → hello_glade2.po} +4 -4
- data/samples/po/eo/{hellogtk.po → hello_gtk.po} +1 -1
- data/samples/po/eo/{hellotk.po → hello_tk.po} +2 -2
- data/samples/po/es/{helloglade2.po → hello_glade2.po} +4 -4
- data/samples/po/es/{hellogtk.po → hello_gtk.po} +2 -2
- data/samples/po/es/{hellotk.po → hello_tk.po} +2 -2
- data/samples/po/fr/{helloglade2.po → hello_glade2.po} +4 -4
- data/samples/po/fr/{hellogtk.po → hello_gtk.po} +2 -2
- data/samples/po/fr/{hellotk.po → hello_tk.po} +2 -2
- data/samples/po/{helloglade2.pot → hello_glade2.pot} +4 -4
- data/samples/po/{hellogtk.pot → hello_gtk.pot} +1 -1
- data/samples/po/{hellotk.pot → hello_tk.pot} +2 -2
- data/samples/po/hr/{helloglade2.po → hello_glade2.po} +6 -6
- data/samples/po/hr/{hellogtk.po → hello_gtk.po} +3 -3
- data/samples/po/hr/{hellotk.po → hello_tk.po} +4 -4
- data/samples/po/hu/{helloglade2.po → hello_glade2.po} +4 -4
- data/samples/po/hu/{hellogtk.po → hello_gtk.po} +1 -1
- data/samples/po/hu/{hellotk.po → hello_tk.po} +2 -2
- data/samples/po/it/hello.po +1 -1
- data/samples/po/it/hello2.po +1 -1
- data/samples/po/it/{helloglade2.po → hello_glade2.po} +4 -4
- data/samples/po/it/{hellogtk.po → hello_gtk.po} +2 -2
- data/samples/po/it/hello_noop.po +1 -1
- data/samples/po/it/{hellotk.po → hello_tk.po} +2 -2
- data/samples/po/ja/{helloglade2.po → hello_glade2.po} +4 -4
- data/samples/po/ja/{hellogtk.po → hello_gtk.po} +2 -2
- data/samples/po/ja/{hellotk.po → hello_tk.po} +2 -2
- data/samples/po/ko/hello.po +1 -1
- data/samples/po/ko/hello2.po +1 -1
- data/samples/po/ko/{helloglade2.po → hello_glade2.po} +3 -3
- data/samples/po/ko/{hellogtk.po → hello_gtk.po} +2 -2
- data/samples/po/ko/hello_noop.po +1 -1
- data/samples/po/ko/{hellotk.po → hello_tk.po} +1 -1
- data/samples/po/lv/{helloglade2.po → hello_glade2.po} +4 -4
- data/samples/po/lv/{hellogtk.po → hello_gtk.po} +1 -1
- data/samples/po/lv/{hellotk.po → hello_tk.po} +2 -2
- data/samples/po/nb/{helloglade2.po → hello_glade2.po} +5 -6
- data/samples/po/nb/{hellogtk.po → hello_gtk.po} +1 -1
- data/samples/po/nb/{hellotk.po → hello_tk.po} +2 -2
- data/samples/po/nl/hello.po +1 -1
- data/samples/po/nl/hello2.po +1 -1
- data/samples/po/nl/{helloglade2.po → hello_glade2.po} +5 -5
- data/samples/po/nl/{hellogtk.po → hello_gtk.po} +2 -2
- data/samples/po/nl/hello_noop.po +1 -1
- data/samples/po/nl/hello_plural.po +1 -1
- data/samples/po/nl/{hellotk.po → hello_tk.po} +2 -2
- data/samples/po/pt_BR/{helloglade2.po → hello_glade2.po} +4 -4
- data/samples/po/pt_BR/{hellogtk.po → hello_gtk.po} +1 -1
- data/samples/po/pt_BR/{hellotk.po → hello_tk.po} +0 -0
- data/samples/po/ru/{helloglade2.po → hello_glade2.po} +5 -5
- data/samples/po/ru/{hellogtk.po → hello_gtk.po} +3 -3
- data/samples/po/ru/{hellotk.po → hello_tk.po} +3 -3
- data/samples/po/sr/{helloglade2.po → hello_glade2.po} +4 -4
- data/samples/po/sr/{hellogtk.po → hello_gtk.po} +1 -1
- data/samples/po/sr/{hellotk.po → hello_tk.po} +2 -2
- data/samples/po/sv/{helloglade2.po → hello_glade2.po} +4 -4
- data/samples/po/sv/{hellogtk.po → hello_gtk.po} +1 -1
- data/samples/po/sv/{hellotk.po → hello_tk.po} +2 -2
- data/samples/po/test.rb +11 -0
- data/samples/po/ua/{helloglade2.po → hello_glade2.po} +4 -4
- data/samples/po/ua/{hellogtk.po → hello_gtk.po} +1 -1
- data/samples/po/ua/{hellotk.po → hello_tk.po} +2 -2
- data/samples/po/vi/{helloglade2.po → hello_glade2.po} +4 -4
- data/samples/po/vi/{hellogtk.po → hello_gtk.po} +1 -1
- data/samples/po/vi/{hellotk.po → hello_tk.po} +2 -2
- data/samples/po/zh/{helloglade2.po → hello_glade2.po} +4 -4
- data/samples/po/zh/{hellogtk.po → hello_gtk.po} +2 -2
- data/samples/po/zh/{hellotk.po → hello_tk.po} +2 -2
- data/samples/po/zh_TW/{helloglade2.po → hello_glade2.po} +4 -4
- data/samples/po/zh_TW/{hellogtk.po → hello_gtk.po} +1 -1
- data/samples/po/zh_TW/{hellotk.po → hello_tk.po} +2 -2
- data/src/poparser.ry +1 -1
- data/test/README +1 -18
- data/test/Rakefile +14 -41
- 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_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/LC_MESSAGES/test6.mo +0 -0
- data/test/locale/ir/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/npgettext.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/{test_nsgettext.mo → nsgettext.mo} +0 -0
- data/test/locale/ja/LC_MESSAGES/{test_pgettext.mo → pgettext.mo} +0 -0
- data/test/locale/ja/LC_MESSAGES/plural_error.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/{test_rubyparser.mo → rubyparser.mo} +0 -0
- data/test/locale/ja/LC_MESSAGES/{test_sgettext.mo → sgettext.mo} +0 -0
- data/test/locale/ja/LC_MESSAGES/test2.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/po/LC_MESSAGES/plural.mo +0 -0
- data/test/locale/sl/LC_MESSAGES/plural.mo +0 -0
- data/test/po/fr/test1.po +3 -3
- data/test/po/fr/test6.po +1 -1
- data/test/po/ja/{test_npgettext.po → npgettext.po} +2 -2
- data/test/po/ja/{test_nsgettext.po → nsgettext.po} +8 -8
- data/test/po/ja/{test_pgettext.po → pgettext.po} +2 -2
- data/test/po/ja/{test_rubyparser.po → rubyparser.po} +0 -0
- data/test/po/ja/{test_sgettext.po → sgettext.po} +8 -8
- data/test/po/ja/test1.po +2 -2
- data/test/test_class_info.rb +80 -0
- data/test/test_gettext.rb +118 -257
- data/test/test_locale_path.rb +37 -0
- data/test/test_parser.rb +6 -105
- data/test/test_string.rb +1 -2
- data/test/test_textdomain_bind.rb +37 -0
- data/test/test_textdomain_multi.rb +69 -0
- data/test/test_textdomain_toplevel.rb +42 -0
- data/test/test_thread.rb +39 -0
- data/test/testlib/N_.rb +1 -1
- data/test/testlib/erb.rhtml +1 -1
- data/test/testlib/erb.rxml +1 -1
- data/test/testlib/gettext.rb +1 -1
- data/test/testlib/helper.rb +11 -0
- data/test/testlib/multi_textdomain.rb +119 -0
- data/test/testlib/ngettext.rb +1 -1
- data/test/testlib/npgettext.rb +1 -3
- data/test/testlib/nsgettext.rb +1 -3
- data/test/testlib/pgettext.rb +1 -3
- data/test/testlib/sgettext.rb +1 -3
- data/test/testlib/{testlib1.rb → simple.rb} +3 -4
- data/{samples/rails/public/favicon.ico → test/tools/files/app.pot} +0 -0
- data/test/{rails/public/favicon.ico → tools/files/de/app.po} +0 -0
- data/test/tools/files/en/app.po +0 -0
- data/test/tools/files/en/test.po +21 -0
- data/test/tools/files/simple_1.po +2 -0
- data/test/tools/files/simple_2.po +2 -0
- data/test/tools/files/simple_translation.rb +1 -0
- data/test/tools/files/version.po +7 -0
- data/test/tools/test.pot +21 -0
- data/test/tools/test_tools.rb +61 -0
- metadata +224 -853
- data/README +0 -177
- data/data/locale/bg/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/bs/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/ca/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/cs/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/de/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/el/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/eo/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/es/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/et/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/fr/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/hr/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/hu/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/it/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/ja/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/ko/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/lv/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/nb/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/nl/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/pt_BR/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/ru/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/sr/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/ua/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/vi/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/zh/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/zh_TW/LC_MESSAGES/rails.mo +0 -0
- data/doc/classes/ActionView/Helpers/FormBuilder.html +0 -154
- data/doc/classes/ActionView/TemplateFinder.html +0 -152
- data/doc/classes/ActiveRecord/Base.html +0 -360
- data/doc/classes/ActiveRecord/ConnectionAdapters/Column.html +0 -182
- data/doc/classes/ActiveRecord/Migration.html +0 -118
- data/doc/classes/GetText.html +0 -2003
- data/doc/classes/GetText/ActiveRecordParser.html +0 -236
- data/doc/classes/GetText/Container.html +0 -119
- data/doc/classes/GetText/ErbContainer.html +0 -223
- data/doc/classes/GetText/ErbParser.html +0 -156
- data/doc/classes/GetText/GladeParser.html +0 -133
- data/doc/classes/GetText/NoboundTextDomainError.html +0 -119
- data/doc/classes/GetText/PoParser.html +0 -169
- data/doc/classes/GetText/Rails.html +0 -293
- data/doc/classes/GetText/RubyParser.html +0 -133
- data/doc/classes/GetText/TextDomain.html +0 -572
- data/doc/classes/GetText/TextDomainManager.html +0 -443
- data/doc/classes/Iconv.html +0 -257
- data/doc/classes/Iconv/Failure.html +0 -105
- data/doc/classes/Iconv/IllegalSequence.html +0 -118
- data/doc/classes/Iconv/InvalidCharacter.html +0 -118
- data/doc/classes/Iconv/InvalidEncoding.html +0 -118
- data/doc/classes/Locale.html +0 -840
- data/doc/classes/Locale/Object.html +0 -803
- data/doc/classes/Locale/SystemBase.html +0 -271
- data/doc/classes/Locale/SystemCGI.html +0 -312
- data/doc/classes/Locale/SystemJRuby.html +0 -112
- data/doc/classes/Locale/SystemPosix.html +0 -163
- data/doc/classes/Locale/SystemWin32.html +0 -167
- data/doc/classes/Locale/SystemWin32Table.html +0 -123
- data/doc/classes/MOFile.html +0 -695
- data/doc/classes/MOFile/HeaderRev1.html +0 -150
- data/doc/classes/MOFile/InvalidFormat.html +0 -111
- data/doc/classes/Module.html +0 -158
- data/doc/classes/String.html +0 -225
- data/doc/created.rid +0 -1
- data/doc/files/ChangeLog.html +0 -2623
- data/doc/files/README.html +0 -531
- data/doc/files/lib/gettext/active_record_rb.html +0 -110
- data/doc/files/lib/gettext/cgi_rb.html +0 -110
- data/doc/files/lib/gettext/container_rb.html +0 -108
- data/doc/files/lib/gettext/erb_rb.html +0 -109
- data/doc/files/lib/gettext/iconv_rb.html +0 -109
- data/doc/files/lib/gettext/mo_rb.html +0 -109
- data/doc/files/lib/gettext/parser/active_record_rb.html +0 -119
- data/doc/files/lib/gettext/parser/erb_rb.html +0 -109
- data/doc/files/lib/gettext/parser/glade_rb.html +0 -109
- data/doc/files/lib/gettext/parser/ruby_rb.html +0 -110
- data/doc/files/lib/gettext/poparser_rb.html +0 -108
- data/doc/files/lib/gettext/rails_compat_rb.html +0 -108
- data/doc/files/lib/gettext/rails_rb.html +0 -112
- data/doc/files/lib/gettext/rgettext_rb.html +0 -110
- data/doc/files/lib/gettext/rmsgfmt_rb.html +0 -113
- data/doc/files/lib/gettext/rmsgmerge_rb.html +0 -112
- data/doc/files/lib/gettext/string_rb.html +0 -101
- data/doc/files/lib/gettext/textdomain_rb.html +0 -109
- data/doc/files/lib/gettext/textdomainmanager_rb.html +0 -109
- data/doc/files/lib/gettext/utils_rb.html +0 -111
- data/doc/files/lib/gettext/version_rb.html +0 -101
- data/doc/files/lib/gettext_rb.html +0 -113
- data/doc/files/lib/locale/base_rb.html +0 -101
- data/doc/files/lib/locale/cgi_rb.html +0 -108
- data/doc/files/lib/locale/jruby_rb.html +0 -110
- data/doc/files/lib/locale/object_rb.html +0 -101
- data/doc/files/lib/locale/posix_rb.html +0 -108
- data/doc/files/lib/locale/win32_rb.html +0 -110
- data/doc/files/lib/locale/win32_table_rb.html +0 -101
- data/doc/files/lib/locale_rb.html +0 -111
- data/doc/fr_class_index.html +0 -61
- data/doc/fr_file_index.html +0 -58
- data/doc/fr_method_index.html +0 -163
- data/doc/index.html +0 -24
- data/doc/rdoc-style.css +0 -208
- data/lib/gettext/active_record.rb +0 -357
- data/lib/gettext/container.rb +0 -19
- data/lib/gettext/erb.rb +0 -56
- data/lib/gettext/mo.rb +0 -320
- data/lib/gettext/parser/active_record.rb +0 -184
- data/lib/gettext/rails.rb +0 -547
- data/lib/gettext/rails_compat.rb +0 -16
- data/lib/gettext/textdomainmanager.rb +0 -103
- data/lib/locale.rb +0 -183
- data/lib/locale/base.rb +0 -60
- data/lib/locale/cgi.rb +0 -103
- data/lib/locale/jruby.rb +0 -36
- data/lib/locale/object.rb +0 -237
- data/lib/locale/posix.rb +0 -36
- data/lib/locale/win32.rb +0 -49
- data/lib/locale/win32_table.rb +0 -235
- data/po/bg/rails.po +0 -169
- data/po/bs/rails.po +0 -185
- data/po/ca/rails.po +0 -170
- data/po/cs/rails.po +0 -189
- data/po/el/rails.po +0 -169
- data/po/eo/rails.po +0 -170
- data/po/es/rails.po +0 -170
- data/po/et/rails.po +0 -170
- data/po/fr/rails.po +0 -174
- data/po/hr/rails.po +0 -186
- data/po/hu/rails.po +0 -170
- data/po/it/rails.po +0 -176
- data/po/ja/rails.po +0 -170
- data/po/ko/rails.po +0 -174
- data/po/lv/rails.po +0 -175
- data/po/nb/rails.po +0 -171
- data/po/nl/rails.po +0 -178
- data/po/pt_BR/rails.po +0 -171
- data/po/rails.pot +0 -170
- data/po/ru/rails.po +0 -178
- data/po/sr/rails.po +0 -178
- data/po/ua/rails.po +0 -184
- data/po/vi/rails.po +0 -170
- data/po/zh/rails.po +0 -166
- data/po/zh_TW/rails.po +0 -166
- data/post-setup.rb +0 -17
- data/pre-setup.rb +0 -20
- data/samples/hello_textdomain.rb +0 -21
- data/samples/hellogtk.rb +0 -27
- data/samples/rails/README +0 -73
- data/samples/rails/Rakefile +0 -10
- data/samples/rails/app/controllers/application.rb +0 -40
- data/samples/rails/app/controllers/articles_controller.rb +0 -96
- data/samples/rails/app/helpers/application_helper.rb +0 -3
- data/samples/rails/app/helpers/articles_helper.rb +0 -60
- data/samples/rails/app/models/article.rb +0 -16
- data/samples/rails/app/views/articles/edit.html.erb +0 -21
- data/samples/rails/app/views/articles/index.html.erb +0 -17
- data/samples/rails/app/views/articles/new.html.erb +0 -19
- data/samples/rails/app/views/articles/show.html.erb +0 -6
- data/samples/rails/app/views/layouts/articles.html.erb +0 -26
- data/samples/rails/config/boot.rb +0 -109
- data/samples/rails/config/database.yml +0 -47
- data/samples/rails/config/environment.rb +0 -60
- data/samples/rails/config/environments/development.rb +0 -18
- data/samples/rails/config/environments/production.rb +0 -18
- data/samples/rails/config/environments/test.rb +0 -22
- data/samples/rails/config/initializers/inflections.rb +0 -10
- data/samples/rails/config/initializers/mime_types.rb +0 -5
- data/samples/rails/config/routes.rb +0 -38
- data/samples/rails/db/migrate/001_create_articles.rb +0 -14
- data/samples/rails/db/schema.rb +0 -20
- data/samples/rails/lib/tasks/gettext.rake +0 -16
- data/samples/rails/locale/bg/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/bs/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ca/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/cs/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/de/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/el/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/en/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/eo/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/es/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/fr/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/hr/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/hu/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/it/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ja/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ko/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/lv/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/nb/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/nl/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/pt_BR/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ru/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/sr/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ua/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/vi/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/zh/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/zh_TW/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/po/bg/blog.po +0 -101
- data/samples/rails/po/blog.pot +0 -102
- data/samples/rails/po/bs/blog.po +0 -103
- data/samples/rails/po/ca/blog.po +0 -101
- data/samples/rails/po/cs/blog.po +0 -104
- data/samples/rails/po/de/blog.po +0 -104
- data/samples/rails/po/el/blog.po +0 -102
- data/samples/rails/po/en/blog.po +0 -103
- data/samples/rails/po/eo/blog.po +0 -102
- data/samples/rails/po/es/blog.po +0 -101
- data/samples/rails/po/fr/blog.po +0 -102
- data/samples/rails/po/hr/blog.po +0 -102
- data/samples/rails/po/hu/blog.po +0 -101
- data/samples/rails/po/it/blog.po +0 -102
- data/samples/rails/po/ja/blog.po +0 -101
- data/samples/rails/po/ko/blog.po +0 -102
- data/samples/rails/po/lv/blog.po +0 -103
- data/samples/rails/po/nb/blog.po +0 -102
- data/samples/rails/po/nl/blog.po +0 -102
- data/samples/rails/po/pt_BR/blog.po +0 -102
- data/samples/rails/po/ru/blog.po +0 -102
- data/samples/rails/po/sr/blog.po +0 -103
- data/samples/rails/po/ua/blog.po +0 -105
- data/samples/rails/po/vi/blog.po +0 -102
- data/samples/rails/po/zh/blog.po +0 -101
- data/samples/rails/po/zh_TW/blog.po +0 -103
- data/samples/rails/public/404.html +0 -30
- data/samples/rails/public/422.html +0 -30
- data/samples/rails/public/500.html +0 -30
- data/samples/rails/public/dispatch.cgi +0 -10
- data/samples/rails/public/dispatch.fcgi +0 -24
- data/samples/rails/public/dispatch.rb +0 -10
- data/samples/rails/public/images/rails.png +0 -0
- data/samples/rails/public/index.html +0 -277
- data/samples/rails/public/javascripts/application.js +0 -2
- data/samples/rails/public/javascripts/controls.js +0 -963
- data/samples/rails/public/javascripts/dragdrop.js +0 -972
- data/samples/rails/public/javascripts/effects.js +0 -1120
- data/samples/rails/public/javascripts/prototype.js +0 -4225
- data/samples/rails/public/robots.txt +0 -1
- data/samples/rails/public/stylesheets/blog.css +0 -136
- data/samples/rails/public/stylesheets/scaffold.css +0 -74
- data/samples/rails/script/about +0 -3
- data/samples/rails/script/breakpointer +0 -3
- data/samples/rails/script/console +0 -3
- data/samples/rails/script/destroy +0 -3
- data/samples/rails/script/generate +0 -3
- data/samples/rails/script/performance/benchmarker +0 -3
- data/samples/rails/script/performance/profiler +0 -3
- data/samples/rails/script/plugin +0 -3
- data/samples/rails/script/process/reaper +0 -3
- data/samples/rails/script/process/spawner +0 -3
- data/samples/rails/script/process/spinner +0 -3
- data/samples/rails/script/runner +0 -3
- data/samples/rails/script/server +0 -3
- data/samples/rails/test/fixtures/articles.yml +0 -5
- data/samples/rails/test/functional/articles_controller_test.rb +0 -51
- data/samples/rails/test/test_helper.rb +0 -38
- data/samples/rails/test/unit/article_test.rb +0 -7
- data/samples/rails/vendor/plugins/gettext/README +0 -17
- data/samples/rails/vendor/plugins/gettext/Rakefile +0 -17
- data/samples/rails/vendor/plugins/gettext/init.rb +0 -21
- data/samples/rails/vendor/plugins/gettext/lib/gettext_plugin.rb +0 -33
- data/samples/rails/vendor/plugins/gettext/locale/bg/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/bs/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/ca/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/cs/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/de/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/el/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/eo/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/es/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/fr/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/hr/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/hu/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/it/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/ja/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/ko/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/lv/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/nb/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/nl/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/pt_BR/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/ru/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/sr/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/ua/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/vi/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/zh/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/zh_TW/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/po/bg/gettext_plugin.po +0 -27
- data/samples/rails/vendor/plugins/gettext/po/bs/gettext_plugin.po +0 -27
- data/samples/rails/vendor/plugins/gettext/po/ca/gettext_plugin.po +0 -27
- data/samples/rails/vendor/plugins/gettext/po/cs/gettext_plugin.po +0 -29
- data/samples/rails/vendor/plugins/gettext/po/de/gettext_plugin.po +0 -29
- data/samples/rails/vendor/plugins/gettext/po/el/gettext_plugin.po +0 -27
- data/samples/rails/vendor/plugins/gettext/po/eo/gettext_plugin.po +0 -28
- data/samples/rails/vendor/plugins/gettext/po/es/gettext_plugin.po +0 -28
- data/samples/rails/vendor/plugins/gettext/po/fr/gettext_plugin.po +0 -27
- data/samples/rails/vendor/plugins/gettext/po/gettext_plugin.pot +0 -28
- data/samples/rails/vendor/plugins/gettext/po/hr/gettext_plugin.po +0 -27
- data/samples/rails/vendor/plugins/gettext/po/hu/gettext_plugin.po +0 -27
- data/samples/rails/vendor/plugins/gettext/po/it/gettext_plugin.po +0 -27
- data/samples/rails/vendor/plugins/gettext/po/ja/gettext_plugin.po +0 -28
- data/samples/rails/vendor/plugins/gettext/po/ko/gettext_plugin.po +0 -27
- data/samples/rails/vendor/plugins/gettext/po/lv/gettext_plugin.po +0 -28
- data/samples/rails/vendor/plugins/gettext/po/nb/gettext_plugin.po +0 -29
- data/samples/rails/vendor/plugins/gettext/po/nl/gettext_plugin.po +0 -28
- data/samples/rails/vendor/plugins/gettext/po/pt_BR/gettext_plugin.po +0 -27
- data/samples/rails/vendor/plugins/gettext/po/ru/gettext_plugin.po +0 -25
- data/samples/rails/vendor/plugins/gettext/po/sr/gettext_plugin.po +0 -28
- data/samples/rails/vendor/plugins/gettext/po/ua/gettext_plugin.po +0 -30
- data/samples/rails/vendor/plugins/gettext/po/vi/gettext_plugin.po +0 -27
- data/samples/rails/vendor/plugins/gettext/po/zh/gettext_plugin.po +0 -27
- data/samples/rails/vendor/plugins/gettext/po/zh_TW/gettext_plugin.po +0 -29
- data/setup.rb +0 -1585
- data/test/benchmark.rb +0 -28
- data/test/db/mysql.drop.sql +0 -5
- data/test/db/mysql.sql +0 -57
- data/test/fixtures/book.rb +0 -3
- data/test/fixtures/developer.rb +0 -5
- data/test/fixtures/developers.yml +0 -21
- data/test/fixtures/inept_wizard.rb +0 -3
- data/test/fixtures/people.yml +0 -6
- data/test/fixtures/reply.rb +0 -40
- data/test/fixtures/topic.rb +0 -68
- data/test/fixtures/topics.yml +0 -22
- data/test/fixtures/user.rb +0 -3
- data/test/fixtures/wizard.rb +0 -5
- data/test/locale/ja/LC_MESSAGES/active_record.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/test_npgettext.mo +0 -0
- data/test/po/active_record.pot +0 -393
- data/test/po/ja/active_record.po +0 -392
- data/test/rails/README +0 -5
- data/test/rails/Rakefile +0 -36
- data/test/rails/app/controllers/application.rb +0 -8
- data/test/rails/app/controllers/articles_controller.rb +0 -61
- data/test/rails/app/controllers/mailer_controller.rb +0 -19
- data/test/rails/app/controllers/users_controller.rb +0 -11
- data/test/rails/app/helpers/application_helper.rb +0 -3
- data/test/rails/app/helpers/articles_helper.rb +0 -2
- data/test/rails/app/helpers/mailer_helper.rb +0 -2
- data/test/rails/app/models/article.rb +0 -5
- data/test/rails/app/models/mailer.rb +0 -38
- data/test/rails/app/models/user.rb +0 -4
- data/test/rails/app/views/articles/_form.html.erb +0 -13
- data/test/rails/app/views/articles/_form_fr.html.erb +0 -1
- data/test/rails/app/views/articles/active_form_error.html.erb +0 -1
- data/test/rails/app/views/articles/change_title_error_messages_for.html.erb +0 -21
- data/test/rails/app/views/articles/edit.html.erb +0 -9
- data/test/rails/app/views/articles/list.html.erb +0 -27
- data/test/rails/app/views/articles/list_fr.html.erb +0 -1
- data/test/rails/app/views/articles/multi_error_messages_for.html.erb +0 -19
- data/test/rails/app/views/articles/new.html.erb +0 -8
- data/test/rails/app/views/articles/show.html.erb +0 -29
- data/test/rails/app/views/layouts/application.html.erb +0 -14
- data/test/rails/app/views/layouts/mailer.html.erb +0 -20
- data/test/rails/app/views/layouts/users.html.erb +0 -13
- data/test/rails/app/views/mailer/coverpage.rhtml +0 -6
- data/test/rails/app/views/mailer/coverpage_fr.rhtml +0 -6
- data/test/rails/app/views/mailer/singlepart.rhtml +0 -3
- data/test/rails/app/views/mailer/singlepart_fr.rhtml +0 -3
- data/test/rails/app/views/users/custom_error_message.html.erb +0 -13
- data/test/rails/app/views/users/custom_error_message_fr.html.erb +0 -13
- data/test/rails/config/boot.rb +0 -109
- data/test/rails/config/database.yml +0 -36
- data/test/rails/config/environment.rb +0 -70
- data/test/rails/config/environments/development.rb +0 -18
- data/test/rails/config/environments/production.rb +0 -18
- data/test/rails/config/environments/test.rb +0 -19
- data/test/rails/config/routes.rb +0 -23
- data/test/rails/db/schema.rb +0 -34
- data/test/rails/po/ja/rails_test.po +0 -149
- data/test/rails/po/rails_test.pot +0 -149
- data/test/rails/public/404.html +0 -30
- data/test/rails/public/500.html +0 -30
- data/test/rails/public/dispatch.cgi +0 -10
- data/test/rails/public/dispatch.fcgi +0 -24
- data/test/rails/public/dispatch.rb +0 -10
- data/test/rails/public/images/rails.png +0 -0
- data/test/rails/public/index.html +0 -277
- data/test/rails/public/javascripts/application.js +0 -2
- data/test/rails/public/javascripts/controls.js +0 -963
- data/test/rails/public/javascripts/dragdrop.js +0 -972
- data/test/rails/public/javascripts/effects.js +0 -1120
- data/test/rails/public/javascripts/prototype.js +0 -4225
- data/test/rails/public/robots.txt +0 -1
- data/test/rails/public/stylesheets/scaffold.css +0 -74
- data/test/rails/script/about +0 -3
- data/test/rails/script/breakpointer +0 -3
- data/test/rails/script/console +0 -3
- data/test/rails/script/destroy +0 -3
- data/test/rails/script/generate +0 -3
- data/test/rails/script/performance/benchmarker +0 -3
- data/test/rails/script/performance/profiler +0 -3
- data/test/rails/script/plugin +0 -3
- data/test/rails/script/process/inspector +0 -3
- data/test/rails/script/process/reaper +0 -3
- data/test/rails/script/process/spawner +0 -3
- data/test/rails/script/runner +0 -3
- data/test/rails/script/server +0 -3
- data/test/rails/test/fixtures/articles.yml +0 -11
- data/test/rails/test/fixtures/users.yml +0 -5
- data/test/rails/test/functional/articles_controller_test.rb +0 -119
- data/test/rails/test/functional/mailer_controller_test.rb +0 -95
- data/test/rails/test/functional/users_controller_test.rb +0 -65
- data/test/rails/test/integration/general_stories_test.rb +0 -58
- data/test/rails/test/result/en/create_error.html +0 -95
- data/test/rails/test/result/en/custom_error_message.html +0 -83
- data/test/rails/test/result/en/custom_error_message_with_plural.html +0 -83
- data/test/rails/test/result/en/list.html +0 -62
- data/test/rails/test/result/en/multi_error_messages_for.html +0 -153
- data/test/rails/test/result/en/multipart.html +0 -67
- data/test/rails/test/result/en/new.html +0 -95
- data/test/rails/test/result/en/show.html +0 -51
- data/test/rails/test/result/en/singlepart.html +0 -10
- data/test/rails/test/result/fr/custom_error_message.html +0 -83
- data/test/rails/test/result/fr/custom_error_message_with_plural.html +0 -83
- data/test/rails/test/result/fr/list.html +0 -15
- data/test/rails/test/result/fr/multipart.html +0 -67
- data/test/rails/test/result/fr/new.html +0 -23
- data/test/rails/test/result/fr/singlepart.html +0 -10
- data/test/rails/test/result/ja/create_error.html +0 -95
- data/test/rails/test/result/ja/custom_error_message.html +0 -83
- data/test/rails/test/result/ja/custom_error_message_with_plural.html +0 -83
- data/test/rails/test/result/ja/list.html +0 -62
- data/test/rails/test/result/ja/multi_error_messages_for.html +0 -153
- data/test/rails/test/result/ja/multipart.html +0 -67
- data/test/rails/test/result/ja/new.html +0 -95
- data/test/rails/test/result/ja/show.html +0 -51
- data/test/rails/test/result/ja/singlepart.html +0 -10
- data/test/rails/test/test_helper.rb +0 -28
- data/test/rails/test/unit/article_test.rb +0 -18
- data/test/test.bat +0 -2
- data/test/test.sh +0 -13
- data/test/test_active_record.rb +0 -2606
- data/test/test_cgi.rb +0 -91
- data/test/test_erb.rhtml +0 -15
- data/test/test_erb.rxml +0 -16
- data/test/test_gettext_toplevel.rb +0 -44
- data/test/test_gladeparser.glade +0 -183
- data/test/test_java.sh +0 -12
- data/test/test_locale.rb +0 -250
- data/test/test_multi_textdomain.rb +0 -49
- data/test/test_rails.rb +0 -45
- data/test/test_rails_caching.rb +0 -232
- data/test/testlib/testlib2.rb +0 -11
- data/test/testlib/testlib3.rb +0 -12
- data/test/testlib/testlib4.rb +0 -11
- data/test/testlib/testlib5.rb +0 -70
- data/test/testlib/testlib6.rb +0 -19
|
@@ -1,293 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
-
<!DOCTYPE html
|
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
-
|
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
7
|
-
<head>
|
|
8
|
-
<title>Module: GetText::Rails</title>
|
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
|
-
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
|
11
|
-
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
|
12
|
-
<script type="text/javascript">
|
|
13
|
-
// <![CDATA[
|
|
14
|
-
|
|
15
|
-
function popupCode( url ) {
|
|
16
|
-
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
function toggleCode( id ) {
|
|
20
|
-
if ( document.getElementById )
|
|
21
|
-
elem = document.getElementById( id );
|
|
22
|
-
else if ( document.all )
|
|
23
|
-
elem = eval( "document.all." + id );
|
|
24
|
-
else
|
|
25
|
-
return false;
|
|
26
|
-
|
|
27
|
-
elemStyle = elem.style;
|
|
28
|
-
|
|
29
|
-
if ( elemStyle.display != "block" ) {
|
|
30
|
-
elemStyle.display = "block"
|
|
31
|
-
} else {
|
|
32
|
-
elemStyle.display = "none"
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
return true;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
// Make codeblocks hidden by default
|
|
39
|
-
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
|
40
|
-
|
|
41
|
-
// ]]>
|
|
42
|
-
</script>
|
|
43
|
-
|
|
44
|
-
</head>
|
|
45
|
-
<body>
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
<div id="classHeader">
|
|
50
|
-
<table class="header-table">
|
|
51
|
-
<tr class="top-aligned-row">
|
|
52
|
-
<td><strong>Module</strong></td>
|
|
53
|
-
<td class="class-name-in-header">GetText::Rails</td>
|
|
54
|
-
</tr>
|
|
55
|
-
<tr class="top-aligned-row">
|
|
56
|
-
<td><strong>In:</strong></td>
|
|
57
|
-
<td>
|
|
58
|
-
<a href="../../files/lib/gettext/rails_rb.html">
|
|
59
|
-
lib/gettext/rails.rb
|
|
60
|
-
</a>
|
|
61
|
-
<br />
|
|
62
|
-
</td>
|
|
63
|
-
</tr>
|
|
64
|
-
|
|
65
|
-
</table>
|
|
66
|
-
</div>
|
|
67
|
-
<!-- banner header -->
|
|
68
|
-
|
|
69
|
-
<div id="bodyContent">
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
<div id="contextContent">
|
|
74
|
-
|
|
75
|
-
<div id="description">
|
|
76
|
-
<p>
|
|
77
|
-
<a href="Rails.html">GetText::Rails</a> supports Ruby on Rails. You add
|
|
78
|
-
only 2 lines in your controller, all of the controller/view/models are
|
|
79
|
-
targeted the textdomain.
|
|
80
|
-
</p>
|
|
81
|
-
<p>
|
|
82
|
-
See <Ruby-<a href="../GetText.html">GetText</a>-Package HOWTO for Ruby
|
|
83
|
-
on Rails (<a
|
|
84
|
-
href="http://www.yotabanana.com/hiki/ruby-gettext-howto-rails.html">www.yotabanana.com/hiki/ruby-gettext-howto-rails.html</a>>.
|
|
85
|
-
</p>
|
|
86
|
-
|
|
87
|
-
</div>
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
</div>
|
|
91
|
-
|
|
92
|
-
<div id="method-list">
|
|
93
|
-
<h3 class="section-bar">Methods</h3>
|
|
94
|
-
|
|
95
|
-
<div class="name-list">
|
|
96
|
-
<a href="#M000118">available_locales</a>
|
|
97
|
-
<a href="#M000117">bindtextdomain</a>
|
|
98
|
-
<a href="#M000119">normalized_locale</a>
|
|
99
|
-
</div>
|
|
100
|
-
</div>
|
|
101
|
-
|
|
102
|
-
</div>
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
<!-- if includes -->
|
|
106
|
-
<div id="includes">
|
|
107
|
-
<h3 class="section-bar">Included Modules</h3>
|
|
108
|
-
|
|
109
|
-
<div id="includes-list">
|
|
110
|
-
<span class="include-name"><a href="../GetText.html">GetText</a></span>
|
|
111
|
-
</div>
|
|
112
|
-
</div>
|
|
113
|
-
|
|
114
|
-
<div id="section">
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
<div id="constants-list">
|
|
118
|
-
<h3 class="section-bar">Constants</h3>
|
|
119
|
-
|
|
120
|
-
<div class="name-list">
|
|
121
|
-
<table summary="Constants">
|
|
122
|
-
<tr class="top-aligned-row context-row">
|
|
123
|
-
<td class="context-item-name">Rails</td>
|
|
124
|
-
<td>=</td>
|
|
125
|
-
<td class="context-item-value">::Rails #:nodoc:</td>
|
|
126
|
-
</tr>
|
|
127
|
-
</table>
|
|
128
|
-
</div>
|
|
129
|
-
</div>
|
|
130
|
-
|
|
131
|
-
<div id="aliases-list">
|
|
132
|
-
<h3 class="section-bar">External Aliases</h3>
|
|
133
|
-
|
|
134
|
-
<div class="name-list">
|
|
135
|
-
<table summary="aliases">
|
|
136
|
-
<tr class="top-aligned-row context-row">
|
|
137
|
-
<td class="context-item-name">bindtextdomain</td>
|
|
138
|
-
<td>-></td>
|
|
139
|
-
<td class="context-item-value">_bindtextdomain</td>
|
|
140
|
-
</tr>
|
|
141
|
-
</table>
|
|
142
|
-
</div>
|
|
143
|
-
</div>
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
<!-- if method_list -->
|
|
150
|
-
<div id="methods">
|
|
151
|
-
<h3 class="section-bar">Public Instance methods</h3>
|
|
152
|
-
|
|
153
|
-
<div id="method-M000118" class="method-detail">
|
|
154
|
-
<a name="M000118"></a>
|
|
155
|
-
|
|
156
|
-
<div class="method-heading">
|
|
157
|
-
<a href="#M000118" class="method-signature">
|
|
158
|
-
<span class="method-name">available_locales</span><span class="method-args">()</span>
|
|
159
|
-
</a>
|
|
160
|
-
</div>
|
|
161
|
-
|
|
162
|
-
<div class="method-description">
|
|
163
|
-
<p>
|
|
164
|
-
Returns locales which supported by the application. This function returns
|
|
165
|
-
an reversed array of the locale strings under RAILS_ROOT/locale/*. It is
|
|
166
|
-
used for restriction such as caching files.
|
|
167
|
-
</p>
|
|
168
|
-
<p><a class="source-toggle" href="#"
|
|
169
|
-
onclick="toggleCode('M000118-source');return false;">[Source]</a></p>
|
|
170
|
-
<div class="method-source-code" id="M000118-source">
|
|
171
|
-
<pre>
|
|
172
|
-
<span class="ruby-comment cmt"># File lib/gettext/rails.rb, line 67</span>
|
|
173
|
-
67: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">available_locales</span>
|
|
174
|
-
68: <span class="ruby-keyword kw">unless</span> (<span class="ruby-constant">GetText</span>.<span class="ruby-identifier">cached?</span> <span class="ruby-keyword kw">and</span> <span class="ruby-ivar">@@available_locales</span>)
|
|
175
|
-
69: <span class="ruby-ivar">@@available_locales</span> = (<span class="ruby-constant">Dir</span>.<span class="ruby-identifier">glob</span>(<span class="ruby-constant">File</span>.<span class="ruby-identifier">join</span>(<span class="ruby-constant">RAILS_ROOT</span>, <span class="ruby-value str">"locale/[a-z]*"</span>)).<span class="ruby-identifier">map</span>{<span class="ruby-operator">|</span><span class="ruby-identifier">path</span><span class="ruby-operator">|</span> <span class="ruby-constant">File</span>.<span class="ruby-identifier">basename</span>(<span class="ruby-identifier">path</span>)} <span class="ruby-operator"><<</span> <span class="ruby-value str">"en"</span>).<span class="ruby-identifier">uniq</span>.<span class="ruby-identifier">sort</span>.<span class="ruby-identifier">reverse</span>
|
|
176
|
-
70: <span class="ruby-keyword kw">end</span>
|
|
177
|
-
71: <span class="ruby-ivar">@@available_locales</span>
|
|
178
|
-
72: <span class="ruby-keyword kw">end</span>
|
|
179
|
-
</pre>
|
|
180
|
-
</div>
|
|
181
|
-
</div>
|
|
182
|
-
</div>
|
|
183
|
-
|
|
184
|
-
<div id="method-M000117" class="method-detail">
|
|
185
|
-
<a name="M000117"></a>
|
|
186
|
-
|
|
187
|
-
<div class="method-heading">
|
|
188
|
-
<a href="#M000117" class="method-signature">
|
|
189
|
-
<span class="method-name">bindtextdomain(domainname, options = {})<br />
|
|
190
|
-
</span>
|
|
191
|
-
</a>
|
|
192
|
-
</div>
|
|
193
|
-
|
|
194
|
-
<div class="method-description">
|
|
195
|
-
<p>
|
|
196
|
-
Bind a textdomain(#{path}/#{locale}/LC_MESSAGES/#{domainname}.mo) to your
|
|
197
|
-
program. Notes the textdomain scope becomes all of the
|
|
198
|
-
controllers/views/models in your app. This is different from normal
|
|
199
|
-
GetText.bindtextomain.
|
|
200
|
-
</p>
|
|
201
|
-
<p>
|
|
202
|
-
Usually, you don‘t call this directly in your rails application. Call
|
|
203
|
-
init_gettext in ActionController::Base instead.
|
|
204
|
-
</p>
|
|
205
|
-
<p>
|
|
206
|
-
On the other hand, you need to call this in helpers/plugins.
|
|
207
|
-
</p>
|
|
208
|
-
<ul>
|
|
209
|
-
<li>domainname: the textdomain name.
|
|
210
|
-
|
|
211
|
-
</li>
|
|
212
|
-
<li>options: options as a Hash.
|
|
213
|
-
|
|
214
|
-
<ul>
|
|
215
|
-
<li>:locale - the locale value such as "ja-JP". When the value is
|
|
216
|
-
nil, locale is searched the order by this value > "lang" value
|
|
217
|
-
of QUERY_STRING > params["lang"] > "lang" value
|
|
218
|
-
of Cookie > HTTP_ACCEPT_LANGUAGE value > Default locale(en).
|
|
219
|
-
|
|
220
|
-
</li>
|
|
221
|
-
<li>:path - the path to the mo-files. Default is "RAIL_ROOT/locale".
|
|
222
|
-
|
|
223
|
-
</li>
|
|
224
|
-
<li>:charset - the charset. Generally UTF-8 is recommanded. And the charset is
|
|
225
|
-
set order by "the argument of <a
|
|
226
|
-
href="Rails.html#M000117">bindtextdomain</a>" > HTTP_ACCEPT_CHARSET
|
|
227
|
-
> Default charset(UTF-8).
|
|
228
|
-
|
|
229
|
-
</li>
|
|
230
|
-
</ul>
|
|
231
|
-
</li>
|
|
232
|
-
</ul>
|
|
233
|
-
<p><a class="source-toggle" href="#"
|
|
234
|
-
onclick="toggleCode('M000117-source');return false;">[Source]</a></p>
|
|
235
|
-
<div class="method-source-code" id="M000117-source">
|
|
236
|
-
<pre>
|
|
237
|
-
<span class="ruby-comment cmt"># File lib/gettext/rails.rb, line 58</span>
|
|
238
|
-
58: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">bindtextdomain</span>(<span class="ruby-identifier">domainname</span>, <span class="ruby-identifier">options</span> = {})
|
|
239
|
-
59: <span class="ruby-identifier">options</span>[<span class="ruby-identifier">:path</span>] <span class="ruby-operator">||=</span> <span class="ruby-constant">File</span>.<span class="ruby-identifier">join</span>(<span class="ruby-constant">RAILS_ROOT</span>, <span class="ruby-value str">"locale"</span>)
|
|
240
|
-
60: <span class="ruby-identifier">_bindtextdomain</span>(<span class="ruby-identifier">domainname</span>, <span class="ruby-identifier">options</span>)
|
|
241
|
-
61: <span class="ruby-keyword kw">end</span>
|
|
242
|
-
</pre>
|
|
243
|
-
</div>
|
|
244
|
-
</div>
|
|
245
|
-
</div>
|
|
246
|
-
|
|
247
|
-
<div id="method-M000119" class="method-detail">
|
|
248
|
-
<a name="M000119"></a>
|
|
249
|
-
|
|
250
|
-
<div class="method-heading">
|
|
251
|
-
<a href="#M000119" class="method-signature">
|
|
252
|
-
<span class="method-name">normalized_locale</span><span class="method-args">(locale = nil)</span>
|
|
253
|
-
</a>
|
|
254
|
-
</div>
|
|
255
|
-
|
|
256
|
-
<div class="method-description">
|
|
257
|
-
<p>
|
|
258
|
-
Returns a normalized locale which is in <a
|
|
259
|
-
href="Rails.html#M000118">available_locales</a>.
|
|
260
|
-
</p>
|
|
261
|
-
<ul>
|
|
262
|
-
<li>locale: a <a href="../Locale/Object.html">Locale::Object</a> or nil.
|
|
263
|
-
|
|
264
|
-
</li>
|
|
265
|
-
</ul>
|
|
266
|
-
<p><a class="source-toggle" href="#"
|
|
267
|
-
onclick="toggleCode('M000119-source');return false;">[Source]</a></p>
|
|
268
|
-
<div class="method-source-code" id="M000119-source">
|
|
269
|
-
<pre>
|
|
270
|
-
<span class="ruby-comment cmt"># File lib/gettext/rails.rb, line 76</span>
|
|
271
|
-
76: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">normalized_locale</span>(<span class="ruby-identifier">locale</span> = <span class="ruby-keyword kw">nil</span>)
|
|
272
|
-
77: <span class="ruby-identifier">locale</span> <span class="ruby-operator">||=</span> <span class="ruby-constant">GetText</span>.<span class="ruby-identifier">locale</span>
|
|
273
|
-
78: (<span class="ruby-identifier">available_locales</span> <span class="ruby-operator">&</span>
|
|
274
|
-
79: [<span class="ruby-identifier">locale</span>.<span class="ruby-identifier">to_general</span>, <span class="ruby-identifier">locale</span>.<span class="ruby-identifier">to_s</span>, <span class="ruby-identifier">locale</span>.<span class="ruby-identifier">language</span>, <span class="ruby-constant">Locale</span>.<span class="ruby-identifier">default</span>.<span class="ruby-identifier">language</span>, <span class="ruby-value str">"en"</span>].<span class="ruby-identifier">uniq</span>)[<span class="ruby-value">0</span>]
|
|
275
|
-
80: <span class="ruby-keyword kw">end</span>
|
|
276
|
-
</pre>
|
|
277
|
-
</div>
|
|
278
|
-
</div>
|
|
279
|
-
</div>
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
</div>
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
</div>
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
<div id="validator-badges">
|
|
289
|
-
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
|
290
|
-
</div>
|
|
291
|
-
|
|
292
|
-
</body>
|
|
293
|
-
</html>
|
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
-
<!DOCTYPE html
|
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
-
|
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
7
|
-
<head>
|
|
8
|
-
<title>Module: GetText::RubyParser</title>
|
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
|
-
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
|
11
|
-
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
|
12
|
-
<script type="text/javascript">
|
|
13
|
-
// <![CDATA[
|
|
14
|
-
|
|
15
|
-
function popupCode( url ) {
|
|
16
|
-
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
function toggleCode( id ) {
|
|
20
|
-
if ( document.getElementById )
|
|
21
|
-
elem = document.getElementById( id );
|
|
22
|
-
else if ( document.all )
|
|
23
|
-
elem = eval( "document.all." + id );
|
|
24
|
-
else
|
|
25
|
-
return false;
|
|
26
|
-
|
|
27
|
-
elemStyle = elem.style;
|
|
28
|
-
|
|
29
|
-
if ( elemStyle.display != "block" ) {
|
|
30
|
-
elemStyle.display = "block"
|
|
31
|
-
} else {
|
|
32
|
-
elemStyle.display = "none"
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
return true;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
// Make codeblocks hidden by default
|
|
39
|
-
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
|
40
|
-
|
|
41
|
-
// ]]>
|
|
42
|
-
</script>
|
|
43
|
-
|
|
44
|
-
</head>
|
|
45
|
-
<body>
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
<div id="classHeader">
|
|
50
|
-
<table class="header-table">
|
|
51
|
-
<tr class="top-aligned-row">
|
|
52
|
-
<td><strong>Module</strong></td>
|
|
53
|
-
<td class="class-name-in-header">GetText::RubyParser</td>
|
|
54
|
-
</tr>
|
|
55
|
-
<tr class="top-aligned-row">
|
|
56
|
-
<td><strong>In:</strong></td>
|
|
57
|
-
<td>
|
|
58
|
-
<a href="../../files/lib/gettext/parser/ruby_rb.html">
|
|
59
|
-
lib/gettext/parser/ruby.rb
|
|
60
|
-
</a>
|
|
61
|
-
<br />
|
|
62
|
-
</td>
|
|
63
|
-
</tr>
|
|
64
|
-
|
|
65
|
-
</table>
|
|
66
|
-
</div>
|
|
67
|
-
<!-- banner header -->
|
|
68
|
-
|
|
69
|
-
<div id="bodyContent">
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
<div id="contextContent">
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
</div>
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
</div>
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
<!-- if includes -->
|
|
84
|
-
|
|
85
|
-
<div id="section">
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
<div id="constants-list">
|
|
89
|
-
<h3 class="section-bar">Constants</h3>
|
|
90
|
-
|
|
91
|
-
<div class="name-list">
|
|
92
|
-
<table summary="Constants">
|
|
93
|
-
<tr class="top-aligned-row context-row">
|
|
94
|
-
<td class="context-item-name">ID</td>
|
|
95
|
-
<td>=</td>
|
|
96
|
-
<td class="context-item-value">['gettext', '_', 'N_', 'sgettext', 's_']</td>
|
|
97
|
-
</tr>
|
|
98
|
-
<tr class="top-aligned-row context-row">
|
|
99
|
-
<td class="context-item-name">PLURAL_ID</td>
|
|
100
|
-
<td>=</td>
|
|
101
|
-
<td class="context-item-value">['ngettext', 'n_', 'Nn_', 'ns_', 'nsgettext']</td>
|
|
102
|
-
</tr>
|
|
103
|
-
<tr class="top-aligned-row context-row">
|
|
104
|
-
<td class="context-item-name">MSGCTXT_ID</td>
|
|
105
|
-
<td>=</td>
|
|
106
|
-
<td class="context-item-value">['pgettext', 'p_']</td>
|
|
107
|
-
</tr>
|
|
108
|
-
<tr class="top-aligned-row context-row">
|
|
109
|
-
<td class="context-item-name">MSGCTXT_PLURAL_ID</td>
|
|
110
|
-
<td>=</td>
|
|
111
|
-
<td class="context-item-value">['npgettext', 'np_']</td>
|
|
112
|
-
</tr>
|
|
113
|
-
</table>
|
|
114
|
-
</div>
|
|
115
|
-
</div>
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
<!-- if method_list -->
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
</div>
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
<div id="validator-badges">
|
|
129
|
-
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
|
130
|
-
</div>
|
|
131
|
-
|
|
132
|
-
</body>
|
|
133
|
-
</html>
|
|
@@ -1,572 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
-
<!DOCTYPE html
|
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
-
|
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
7
|
-
<head>
|
|
8
|
-
<title>Class: GetText::TextDomain</title>
|
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
|
-
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
|
11
|
-
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
|
12
|
-
<script type="text/javascript">
|
|
13
|
-
// <![CDATA[
|
|
14
|
-
|
|
15
|
-
function popupCode( url ) {
|
|
16
|
-
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
function toggleCode( id ) {
|
|
20
|
-
if ( document.getElementById )
|
|
21
|
-
elem = document.getElementById( id );
|
|
22
|
-
else if ( document.all )
|
|
23
|
-
elem = eval( "document.all." + id );
|
|
24
|
-
else
|
|
25
|
-
return false;
|
|
26
|
-
|
|
27
|
-
elemStyle = elem.style;
|
|
28
|
-
|
|
29
|
-
if ( elemStyle.display != "block" ) {
|
|
30
|
-
elemStyle.display = "block"
|
|
31
|
-
} else {
|
|
32
|
-
elemStyle.display = "none"
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
return true;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
// Make codeblocks hidden by default
|
|
39
|
-
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
|
40
|
-
|
|
41
|
-
// ]]>
|
|
42
|
-
</script>
|
|
43
|
-
|
|
44
|
-
</head>
|
|
45
|
-
<body>
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
<div id="classHeader">
|
|
50
|
-
<table class="header-table">
|
|
51
|
-
<tr class="top-aligned-row">
|
|
52
|
-
<td><strong>Class</strong></td>
|
|
53
|
-
<td class="class-name-in-header">GetText::TextDomain</td>
|
|
54
|
-
</tr>
|
|
55
|
-
<tr class="top-aligned-row">
|
|
56
|
-
<td><strong>In:</strong></td>
|
|
57
|
-
<td>
|
|
58
|
-
<a href="../../files/lib/gettext/textdomain_rb.html">
|
|
59
|
-
lib/gettext/textdomain.rb
|
|
60
|
-
</a>
|
|
61
|
-
<br />
|
|
62
|
-
</td>
|
|
63
|
-
</tr>
|
|
64
|
-
|
|
65
|
-
<tr class="top-aligned-row">
|
|
66
|
-
<td><strong>Parent:</strong></td>
|
|
67
|
-
<td>
|
|
68
|
-
Object
|
|
69
|
-
</td>
|
|
70
|
-
</tr>
|
|
71
|
-
</table>
|
|
72
|
-
</div>
|
|
73
|
-
<!-- banner header -->
|
|
74
|
-
|
|
75
|
-
<div id="bodyContent">
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
<div id="contextContent">
|
|
80
|
-
|
|
81
|
-
<div id="description">
|
|
82
|
-
<p>
|
|
83
|
-
<a href="TextDomain.html">GetText::TextDomain</a> class manages mo-files of
|
|
84
|
-
a textdomain.
|
|
85
|
-
</p>
|
|
86
|
-
<p>
|
|
87
|
-
Usually, you don‘t need to use this class directly.
|
|
88
|
-
</p>
|
|
89
|
-
<p>
|
|
90
|
-
Notice: This class is unstable. APIs will be changed.
|
|
91
|
-
</p>
|
|
92
|
-
|
|
93
|
-
</div>
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
</div>
|
|
97
|
-
|
|
98
|
-
<div id="method-list">
|
|
99
|
-
<h3 class="section-bar">Methods</h3>
|
|
100
|
-
|
|
101
|
-
<div class="name-list">
|
|
102
|
-
<a href="#M000131">add_default_locale_path</a>
|
|
103
|
-
<a href="#M000130">check_mo=</a>
|
|
104
|
-
<a href="#M000129">check_mo?</a>
|
|
105
|
-
<a href="#M000134">gettext</a>
|
|
106
|
-
<a href="#M000132">new</a>
|
|
107
|
-
<a href="#M000135">ngettext</a>
|
|
108
|
-
<a href="#M000136">same_property?</a>
|
|
109
|
-
<a href="#M000133">set_locale</a>
|
|
110
|
-
</div>
|
|
111
|
-
</div>
|
|
112
|
-
|
|
113
|
-
</div>
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
<!-- if includes -->
|
|
117
|
-
|
|
118
|
-
<div id="section">
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
<div id="constants-list">
|
|
122
|
-
<h3 class="section-bar">Constants</h3>
|
|
123
|
-
|
|
124
|
-
<div class="name-list">
|
|
125
|
-
<table summary="Constants">
|
|
126
|
-
<tr class="top-aligned-row context-row">
|
|
127
|
-
<td class="context-item-name">CONFIG_PREFIX</td>
|
|
128
|
-
<td>=</td>
|
|
129
|
-
<td class="context-item-value">Config::CONFIG['prefix'].gsub(/\/local/, "")</td>
|
|
130
|
-
<td width="3em"> </td>
|
|
131
|
-
<td class="context-item-desc">
|
|
132
|
-
The default locale paths.
|
|
133
|
-
|
|
134
|
-
</td>
|
|
135
|
-
</tr>
|
|
136
|
-
<tr class="top-aligned-row context-row">
|
|
137
|
-
<td class="context-item-name">DEFAULT_LOCALE_PATHS</td>
|
|
138
|
-
<td>=</td>
|
|
139
|
-
<td class="context-item-value">[ "#{Config::CONFIG['datadir']}/locale/%{locale}/LC_MESSAGES/%{name}.mo", "#{Config::CONFIG['datadir'].gsub(/\/local/, "")}/locale/%{locale}/LC_MESSAGES/%{name}.mo", "#{CONFIG_PREFIX}/share/locale/%{locale}/LC_MESSAGES/%{name}.mo", "#{CONFIG_PREFIX}/local/share/locale/%{locale}/LC_MESSAGES/%{name}.mo"</td>
|
|
140
|
-
</tr>
|
|
141
|
-
</table>
|
|
142
|
-
</div>
|
|
143
|
-
</div>
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
<div id="attribute-list">
|
|
148
|
-
<h3 class="section-bar">Attributes</h3>
|
|
149
|
-
|
|
150
|
-
<div class="name-list">
|
|
151
|
-
<table>
|
|
152
|
-
<tr class="top-aligned-row context-row">
|
|
153
|
-
<td class="context-item-name">current_locale</td>
|
|
154
|
-
<td class="context-item-value"> [R] </td>
|
|
155
|
-
<td class="context-item-desc"></td>
|
|
156
|
-
</tr>
|
|
157
|
-
<tr class="top-aligned-row context-row">
|
|
158
|
-
<td class="context-item-name">current_mo</td>
|
|
159
|
-
<td class="context-item-value"> [R] </td>
|
|
160
|
-
<td class="context-item-desc"></td>
|
|
161
|
-
</tr>
|
|
162
|
-
<tr class="top-aligned-row context-row">
|
|
163
|
-
<td class="context-item-name">locale_paths</td>
|
|
164
|
-
<td class="context-item-value"> [R] </td>
|
|
165
|
-
<td class="context-item-desc"></td>
|
|
166
|
-
</tr>
|
|
167
|
-
<tr class="top-aligned-row context-row">
|
|
168
|
-
<td class="context-item-name">name</td>
|
|
169
|
-
<td class="context-item-value"> [R] </td>
|
|
170
|
-
<td class="context-item-desc"></td>
|
|
171
|
-
</tr>
|
|
172
|
-
</table>
|
|
173
|
-
</div>
|
|
174
|
-
</div>
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
<!-- if method_list -->
|
|
179
|
-
<div id="methods">
|
|
180
|
-
<h3 class="section-bar">Public Class methods</h3>
|
|
181
|
-
|
|
182
|
-
<div id="method-M000131" class="method-detail">
|
|
183
|
-
<a name="M000131"></a>
|
|
184
|
-
|
|
185
|
-
<div class="method-heading">
|
|
186
|
-
<a href="#M000131" class="method-signature">
|
|
187
|
-
<span class="method-name">add_default_locale_path</span><span class="method-args">(path)</span>
|
|
188
|
-
</a>
|
|
189
|
-
</div>
|
|
190
|
-
|
|
191
|
-
<div class="method-description">
|
|
192
|
-
<p>
|
|
193
|
-
Add default locale path. Usually you should use <a
|
|
194
|
-
href="../GetText.html#M000103">GetText.add_default_locale_path</a> instead.
|
|
195
|
-
</p>
|
|
196
|
-
<ul>
|
|
197
|
-
<li>path: a <a href="TextDomain.html#M000132">new</a> locale path. (e.g.)
|
|
198
|
-
"/usr/share/locale/%{locale}/LC_MESSAGES/%{name}.mo"
|
|
199
|
-
(‘locale’ => "ja_JP", ‘name’ =>
|
|
200
|
-
"textdomain")
|
|
201
|
-
|
|
202
|
-
</li>
|
|
203
|
-
<li>Returns: the <a href="TextDomain.html#M000132">new</a> DEFAULT_LOCALE_PATHS
|
|
204
|
-
|
|
205
|
-
</li>
|
|
206
|
-
</ul>
|
|
207
|
-
<p><a class="source-toggle" href="#"
|
|
208
|
-
onclick="toggleCode('M000131-source');return false;">[Source]</a></p>
|
|
209
|
-
<div class="method-source-code" id="M000131-source">
|
|
210
|
-
<pre>
|
|
211
|
-
<span class="ruby-comment cmt"># File lib/gettext/textdomain.rb, line 63</span>
|
|
212
|
-
63: <span class="ruby-keyword kw">def</span> <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">add_default_locale_path</span>(<span class="ruby-identifier">path</span>)
|
|
213
|
-
64: <span class="ruby-constant">DEFAULT_LOCALE_PATHS</span>.<span class="ruby-identifier">unshift</span>(<span class="ruby-identifier">path</span>)
|
|
214
|
-
65: <span class="ruby-keyword kw">end</span>
|
|
215
|
-
</pre>
|
|
216
|
-
</div>
|
|
217
|
-
</div>
|
|
218
|
-
</div>
|
|
219
|
-
|
|
220
|
-
<div id="method-M000130" class="method-detail">
|
|
221
|
-
<a name="M000130"></a>
|
|
222
|
-
|
|
223
|
-
<div class="method-heading">
|
|
224
|
-
<a href="#M000130" class="method-signature">
|
|
225
|
-
<span class="method-name">check_mo=</span><span class="method-args">(val)</span>
|
|
226
|
-
</a>
|
|
227
|
-
</div>
|
|
228
|
-
|
|
229
|
-
<div class="method-description">
|
|
230
|
-
<p>
|
|
231
|
-
Sets to check mo-file or not. See GetText::TextDoman.check_mo? for more
|
|
232
|
-
details.
|
|
233
|
-
</p>
|
|
234
|
-
<ul>
|
|
235
|
-
<li>val: true if "check mo" mode.
|
|
236
|
-
|
|
237
|
-
</li>
|
|
238
|
-
<li>Returns: val
|
|
239
|
-
|
|
240
|
-
</li>
|
|
241
|
-
</ul>
|
|
242
|
-
<p><a class="source-toggle" href="#"
|
|
243
|
-
onclick="toggleCode('M000130-source');return false;">[Source]</a></p>
|
|
244
|
-
<div class="method-source-code" id="M000130-source">
|
|
245
|
-
<pre>
|
|
246
|
-
<span class="ruby-comment cmt"># File lib/gettext/textdomain.rb, line 47</span>
|
|
247
|
-
47: <span class="ruby-keyword kw">def</span> <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">check_mo=</span>(<span class="ruby-identifier">val</span>)
|
|
248
|
-
48: <span class="ruby-ivar">@@check_mo</span> = <span class="ruby-identifier">val</span>
|
|
249
|
-
49: <span class="ruby-keyword kw">end</span>
|
|
250
|
-
</pre>
|
|
251
|
-
</div>
|
|
252
|
-
</div>
|
|
253
|
-
</div>
|
|
254
|
-
|
|
255
|
-
<div id="method-M000129" class="method-detail">
|
|
256
|
-
<a name="M000129"></a>
|
|
257
|
-
|
|
258
|
-
<div class="method-heading">
|
|
259
|
-
<a href="#M000129" class="method-signature">
|
|
260
|
-
<span class="method-name">check_mo?</span><span class="method-args">()</span>
|
|
261
|
-
</a>
|
|
262
|
-
</div>
|
|
263
|
-
|
|
264
|
-
<div class="method-description">
|
|
265
|
-
<p>
|
|
266
|
-
Check mo-file is modified or not, and if mo-file is modified, reload
|
|
267
|
-
mo-file again. This is effective in debug mode. Default is false. If $DEBUG
|
|
268
|
-
is true, mo-file is checked even if this value is false.
|
|
269
|
-
</p>
|
|
270
|
-
<ul>
|
|
271
|
-
<li>Returns: true if "check mo" mode.
|
|
272
|
-
|
|
273
|
-
</li>
|
|
274
|
-
</ul>
|
|
275
|
-
<p><a class="source-toggle" href="#"
|
|
276
|
-
onclick="toggleCode('M000129-source');return false;">[Source]</a></p>
|
|
277
|
-
<div class="method-source-code" id="M000129-source">
|
|
278
|
-
<pre>
|
|
279
|
-
<span class="ruby-comment cmt"># File lib/gettext/textdomain.rb, line 40</span>
|
|
280
|
-
40: <span class="ruby-keyword kw">def</span> <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">check_mo?</span>
|
|
281
|
-
41: <span class="ruby-ivar">@@check_mo</span>
|
|
282
|
-
42: <span class="ruby-keyword kw">end</span>
|
|
283
|
-
</pre>
|
|
284
|
-
</div>
|
|
285
|
-
</div>
|
|
286
|
-
</div>
|
|
287
|
-
|
|
288
|
-
<div id="method-M000132" class="method-detail">
|
|
289
|
-
<a name="M000132"></a>
|
|
290
|
-
|
|
291
|
-
<div class="method-heading">
|
|
292
|
-
<a href="#M000132" class="method-signature">
|
|
293
|
-
<span class="method-name">new</span><span class="method-args">(name, topdir = nil, locale = nil)</span>
|
|
294
|
-
</a>
|
|
295
|
-
</div>
|
|
296
|
-
|
|
297
|
-
<div class="method-description">
|
|
298
|
-
<p>
|
|
299
|
-
Creates a <a href="TextDomain.html#M000132">new</a> <a
|
|
300
|
-
href="TextDomain.html">GetText::TextDomain</a>.
|
|
301
|
-
</p>
|
|
302
|
-
<ul>
|
|
303
|
-
<li>name: the textdomain name.
|
|
304
|
-
|
|
305
|
-
</li>
|
|
306
|
-
<li>topdir: the locale path
|
|
307
|
-
("%{topdir}/%{locale}/LC_MESSAGES/%{name}.mo").
|
|
308
|
-
|
|
309
|
-
</li>
|
|
310
|
-
<li>locale: the <a href="../Locale/Object.html">Locale::Object</a> or nil.
|
|
311
|
-
|
|
312
|
-
</li>
|
|
313
|
-
<li>Returns: a newly created <a href="TextDomain.html">GetText::TextDomain</a>
|
|
314
|
-
object.
|
|
315
|
-
|
|
316
|
-
</li>
|
|
317
|
-
</ul>
|
|
318
|
-
<p><a class="source-toggle" href="#"
|
|
319
|
-
onclick="toggleCode('M000132-source');return false;">[Source]</a></p>
|
|
320
|
-
<div class="method-source-code" id="M000132-source">
|
|
321
|
-
<pre>
|
|
322
|
-
<span class="ruby-comment cmt"># File lib/gettext/textdomain.rb, line 72</span>
|
|
323
|
-
72: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">name</span>, <span class="ruby-identifier">topdir</span> = <span class="ruby-keyword kw">nil</span>, <span class="ruby-identifier">locale</span> = <span class="ruby-keyword kw">nil</span>)
|
|
324
|
-
73: <span class="ruby-ivar">@name</span>, <span class="ruby-ivar">@topdir</span> = <span class="ruby-identifier">name</span>, <span class="ruby-identifier">topdir</span>
|
|
325
|
-
74: <span class="ruby-ivar">@search_files</span> = <span class="ruby-constant">Array</span>.<span class="ruby-identifier">new</span>
|
|
326
|
-
75:
|
|
327
|
-
76: <span class="ruby-ivar">@locale_paths</span> = []
|
|
328
|
-
77: <span class="ruby-keyword kw">if</span> <span class="ruby-constant">ENV</span>[<span class="ruby-value str">"GETTEXT_PATH"</span>]
|
|
329
|
-
78: <span class="ruby-constant">ENV</span>[<span class="ruby-value str">"GETTEXT_PATH"</span>].<span class="ruby-identifier">split</span>(<span class="ruby-regexp re">/,/</span>).<span class="ruby-identifier">each</span> {<span class="ruby-operator">|</span><span class="ruby-identifier">i</span><span class="ruby-operator">|</span>
|
|
330
|
-
79: <span class="ruby-ivar">@locale_paths</span> <span class="ruby-operator">+=</span> [<span class="ruby-node">"#{i}/%{locale}/LC_MESSAGES/%{name}.mo"</span>, <span class="ruby-node">"#{i}/%{locale}/%{name}.mo"</span>]
|
|
331
|
-
80: }
|
|
332
|
-
81: <span class="ruby-keyword kw">elsif</span> <span class="ruby-ivar">@topdir</span>
|
|
333
|
-
82: <span class="ruby-ivar">@locale_paths</span> <span class="ruby-operator">+=</span> [<span class="ruby-node">"#{@topdir}/%{locale}/LC_MESSAGES/%{name}.mo"</span>, <span class="ruby-node">"#{@topdir}/%{locale}/%{name}.mo"</span>]
|
|
334
|
-
83: <span class="ruby-keyword kw">end</span>
|
|
335
|
-
84:
|
|
336
|
-
85: <span class="ruby-keyword kw">unless</span> <span class="ruby-ivar">@topdir</span>
|
|
337
|
-
86: <span class="ruby-ivar">@locale_paths</span> <span class="ruby-operator">+=</span> <span class="ruby-constant">DEFAULT_LOCALE_PATHS</span>
|
|
338
|
-
87:
|
|
339
|
-
88: <span class="ruby-keyword kw">if</span> <span class="ruby-keyword kw">defined?</span> <span class="ruby-constant">Gem</span>
|
|
340
|
-
89: <span class="ruby-identifier">$:</span>.<span class="ruby-identifier">each</span> <span class="ruby-keyword kw">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">path</span><span class="ruby-operator">|</span>
|
|
341
|
-
90: <span class="ruby-keyword kw">if</span> <span class="ruby-constant">GEM_PATH_RE</span> <span class="ruby-operator">=~</span> <span class="ruby-identifier">path</span>
|
|
342
|
-
91: <span class="ruby-ivar">@locale_paths</span> <span class="ruby-operator">+=</span> [
|
|
343
|
-
92: <span class="ruby-node">"#{$1}/data/locale/%{locale}/LC_MESSAGES/%{name}.mo"</span>,
|
|
344
|
-
93: <span class="ruby-node">"#{$1}/data/locale/%{locale}/%{name}.mo"</span>,
|
|
345
|
-
94: <span class="ruby-node">"#{$1}/locale/%{locale}/%{name}.mo"</span>]
|
|
346
|
-
95: <span class="ruby-keyword kw">end</span>
|
|
347
|
-
96: <span class="ruby-keyword kw">end</span>
|
|
348
|
-
97: <span class="ruby-keyword kw">end</span>
|
|
349
|
-
98: <span class="ruby-keyword kw">end</span>
|
|
350
|
-
99:
|
|
351
|
-
100: <span class="ruby-ivar">@mofiles</span> = <span class="ruby-constant">Hash</span>.<span class="ruby-identifier">new</span>
|
|
352
|
-
101: <span class="ruby-identifier">set_locale</span>(<span class="ruby-identifier">locale</span>)
|
|
353
|
-
102: <span class="ruby-keyword kw">end</span>
|
|
354
|
-
</pre>
|
|
355
|
-
</div>
|
|
356
|
-
</div>
|
|
357
|
-
</div>
|
|
358
|
-
|
|
359
|
-
<h3 class="section-bar">Public Instance methods</h3>
|
|
360
|
-
|
|
361
|
-
<div id="method-M000134" class="method-detail">
|
|
362
|
-
<a name="M000134"></a>
|
|
363
|
-
|
|
364
|
-
<div class="method-heading">
|
|
365
|
-
<a href="#M000134" class="method-signature">
|
|
366
|
-
<span class="method-name">gettext</span><span class="method-args">(msgid)</span>
|
|
367
|
-
</a>
|
|
368
|
-
</div>
|
|
369
|
-
|
|
370
|
-
<div class="method-description">
|
|
371
|
-
<p>
|
|
372
|
-
Gets the translated string.
|
|
373
|
-
</p>
|
|
374
|
-
<ul>
|
|
375
|
-
<li>msgid: the original message.
|
|
376
|
-
|
|
377
|
-
</li>
|
|
378
|
-
<li>Returns: the translated string or nil if not found.
|
|
379
|
-
|
|
380
|
-
</li>
|
|
381
|
-
</ul>
|
|
382
|
-
<p><a class="source-toggle" href="#"
|
|
383
|
-
onclick="toggleCode('M000134-source');return false;">[Source]</a></p>
|
|
384
|
-
<div class="method-source-code" id="M000134-source">
|
|
385
|
-
<pre>
|
|
386
|
-
<span class="ruby-comment cmt"># File lib/gettext/textdomain.rb, line 117</span>
|
|
387
|
-
117: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">gettext</span>(<span class="ruby-identifier">msgid</span>)
|
|
388
|
-
118: <span class="ruby-keyword kw">return</span> <span class="ruby-value str">""</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">msgid</span> <span class="ruby-operator">==</span> <span class="ruby-value str">""</span> <span class="ruby-keyword kw">or</span> <span class="ruby-identifier">msgid</span>.<span class="ruby-identifier">nil?</span>
|
|
389
|
-
119: <span class="ruby-keyword kw">return</span> <span class="ruby-keyword kw">nil</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-ivar">@current_mo</span>
|
|
390
|
-
120: <span class="ruby-keyword kw">if</span> <span class="ruby-ivar">@current_mo</span>[<span class="ruby-identifier">msgid</span>] <span class="ruby-keyword kw">and</span> (<span class="ruby-ivar">@current_mo</span>[<span class="ruby-identifier">msgid</span>].<span class="ruby-identifier">size</span> <span class="ruby-operator">></span> <span class="ruby-value">0</span>)
|
|
391
|
-
121: <span class="ruby-ivar">@current_mo</span>[<span class="ruby-identifier">msgid</span>]
|
|
392
|
-
122: <span class="ruby-keyword kw">elsif</span> <span class="ruby-identifier">msgid</span>.<span class="ruby-identifier">include?</span>(<span class="ruby-value str">"\000"</span>)
|
|
393
|
-
123: <span class="ruby-identifier">ret</span> = <span class="ruby-keyword kw">nil</span>
|
|
394
|
-
124: <span class="ruby-identifier">msgid_single</span> = <span class="ruby-identifier">msgid</span>.<span class="ruby-identifier">split</span>(<span class="ruby-value str">"\000"</span>)[<span class="ruby-value">0</span>]
|
|
395
|
-
125: <span class="ruby-ivar">@current_mo</span>.<span class="ruby-identifier">each</span>{<span class="ruby-operator">|</span><span class="ruby-identifier">key</span>, <span class="ruby-identifier">val</span><span class="ruby-operator">|</span>
|
|
396
|
-
126: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">key</span> <span class="ruby-operator">=~</span> <span class="ruby-node">/^#{Regexp.quote(msgid_single)}\000/</span>
|
|
397
|
-
127: <span class="ruby-comment cmt"># Usually, this is not caused to make po-files from rgettext.</span>
|
|
398
|
-
128: <span class="ruby-identifier">warn</span> <span class="ruby-node">%Q[Warning: n_("#{msgid_single}", "#{msgid.split("\000")[1]}") and n_("#{key.gsub(/\000/, '", "')}") are duplicated.]</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">$DEBUG</span>
|
|
399
|
-
129: <span class="ruby-identifier">ret</span> = <span class="ruby-identifier">val</span>
|
|
400
|
-
130: <span class="ruby-keyword kw">break</span>
|
|
401
|
-
131: <span class="ruby-keyword kw">end</span>
|
|
402
|
-
132: }
|
|
403
|
-
133: <span class="ruby-identifier">ret</span>
|
|
404
|
-
134: <span class="ruby-keyword kw">else</span>
|
|
405
|
-
135: <span class="ruby-identifier">ret</span> = <span class="ruby-keyword kw">nil</span>
|
|
406
|
-
136: <span class="ruby-ivar">@current_mo</span>.<span class="ruby-identifier">each</span>{<span class="ruby-operator">|</span><span class="ruby-identifier">key</span>, <span class="ruby-identifier">val</span><span class="ruby-operator">|</span>
|
|
407
|
-
137: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">key</span> <span class="ruby-operator">=~</span> <span class="ruby-node">/^#{Regexp.quote(msgid)}\000/</span>
|
|
408
|
-
138: <span class="ruby-identifier">ret</span> = <span class="ruby-identifier">val</span>.<span class="ruby-identifier">split</span>(<span class="ruby-value str">"\000"</span>)[<span class="ruby-value">0</span>]
|
|
409
|
-
139: <span class="ruby-keyword kw">break</span>
|
|
410
|
-
140: <span class="ruby-keyword kw">end</span>
|
|
411
|
-
141: }
|
|
412
|
-
142: <span class="ruby-identifier">ret</span>
|
|
413
|
-
143: <span class="ruby-keyword kw">end</span>
|
|
414
|
-
144: <span class="ruby-keyword kw">end</span>
|
|
415
|
-
</pre>
|
|
416
|
-
</div>
|
|
417
|
-
</div>
|
|
418
|
-
</div>
|
|
419
|
-
|
|
420
|
-
<div id="method-M000135" class="method-detail">
|
|
421
|
-
<a name="M000135"></a>
|
|
422
|
-
|
|
423
|
-
<div class="method-heading">
|
|
424
|
-
<a href="#M000135" class="method-signature">
|
|
425
|
-
<span class="method-name">ngettext</span><span class="method-args">(msgid, msgid_plural, n)</span>
|
|
426
|
-
</a>
|
|
427
|
-
</div>
|
|
428
|
-
|
|
429
|
-
<div class="method-description">
|
|
430
|
-
<p>
|
|
431
|
-
Gets the translated string. (Deprecated. Don‘t call this method
|
|
432
|
-
directly)
|
|
433
|
-
</p>
|
|
434
|
-
<ul>
|
|
435
|
-
<li>msgid: the original message(single).
|
|
436
|
-
|
|
437
|
-
</li>
|
|
438
|
-
<li>msgid: the original message(plural).
|
|
439
|
-
|
|
440
|
-
</li>
|
|
441
|
-
<li>n: the number
|
|
442
|
-
|
|
443
|
-
</li>
|
|
444
|
-
<li>Returns: the translated string or nil if not found.
|
|
445
|
-
|
|
446
|
-
</li>
|
|
447
|
-
</ul>
|
|
448
|
-
<p><a class="source-toggle" href="#"
|
|
449
|
-
onclick="toggleCode('M000135-source');return false;">[Source]</a></p>
|
|
450
|
-
<div class="method-source-code" id="M000135-source">
|
|
451
|
-
<pre>
|
|
452
|
-
<span class="ruby-comment cmt"># File lib/gettext/textdomain.rb, line 151</span>
|
|
453
|
-
151: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">ngettext</span>(<span class="ruby-identifier">msgid</span>, <span class="ruby-identifier">msgid_plural</span>, <span class="ruby-identifier">n</span>)
|
|
454
|
-
152: <span class="ruby-identifier">key</span> = <span class="ruby-identifier">msgid</span> <span class="ruby-operator">+</span> <span class="ruby-value str">"\000"</span> <span class="ruby-operator">+</span> <span class="ruby-identifier">msgid_plural</span>
|
|
455
|
-
153: <span class="ruby-identifier">msg</span> = <span class="ruby-identifier">gettext</span>(<span class="ruby-identifier">key</span>)
|
|
456
|
-
154: <span class="ruby-keyword kw">if</span> <span class="ruby-operator">!</span> <span class="ruby-identifier">msg</span>
|
|
457
|
-
155: <span class="ruby-keyword kw">nil</span> <span class="ruby-comment cmt"># do nothing.</span>
|
|
458
|
-
156: <span class="ruby-keyword kw">elsif</span> <span class="ruby-identifier">msg</span> <span class="ruby-operator">==</span> <span class="ruby-identifier">key</span>
|
|
459
|
-
157: <span class="ruby-identifier">msg</span> = <span class="ruby-identifier">n</span> <span class="ruby-operator">==</span> <span class="ruby-value">1</span> <span class="ruby-operator">?</span> <span class="ruby-identifier">msgid</span> <span class="ruby-operator">:</span> <span class="ruby-identifier">msgid_plural</span>
|
|
460
|
-
158: <span class="ruby-keyword kw">elsif</span> <span class="ruby-identifier">msg</span>.<span class="ruby-identifier">include?</span>(<span class="ruby-value str">"\000"</span>)
|
|
461
|
-
159: <span class="ruby-identifier">ary</span> = <span class="ruby-identifier">msg</span>.<span class="ruby-identifier">split</span>(<span class="ruby-value str">"\000"</span>)
|
|
462
|
-
160: <span class="ruby-keyword kw">if</span> <span class="ruby-ivar">@current_mo</span>
|
|
463
|
-
161: <span class="ruby-identifier">plural</span> = <span class="ruby-identifier">eval</span>(<span class="ruby-ivar">@current_mo</span>.<span class="ruby-identifier">plural</span>)
|
|
464
|
-
162: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">plural</span>.<span class="ruby-identifier">kind_of?</span>(<span class="ruby-constant">Numeric</span>)
|
|
465
|
-
163: <span class="ruby-identifier">msg</span> = <span class="ruby-identifier">ary</span>[<span class="ruby-identifier">plural</span>]
|
|
466
|
-
164: <span class="ruby-keyword kw">else</span>
|
|
467
|
-
165: <span class="ruby-identifier">msg</span> = <span class="ruby-identifier">plural</span> <span class="ruby-value">? </span><span class="ruby-identifier">ary</span>[<span class="ruby-value">1</span>] <span class="ruby-operator">:</span> <span class="ruby-identifier">ary</span>[<span class="ruby-value">0</span>]
|
|
468
|
-
166: <span class="ruby-keyword kw">end</span>
|
|
469
|
-
167: <span class="ruby-keyword kw">else</span>
|
|
470
|
-
168: <span class="ruby-identifier">msg</span> = <span class="ruby-identifier">n</span> <span class="ruby-operator">==</span> <span class="ruby-value">1</span> <span class="ruby-operator">?</span> <span class="ruby-identifier">ary</span>[<span class="ruby-value">0</span>] <span class="ruby-operator">:</span> <span class="ruby-identifier">ary</span>[<span class="ruby-value">1</span>]
|
|
471
|
-
169: <span class="ruby-keyword kw">end</span>
|
|
472
|
-
170: <span class="ruby-keyword kw">end</span>
|
|
473
|
-
171: <span class="ruby-identifier">msg</span>
|
|
474
|
-
172: <span class="ruby-keyword kw">end</span>
|
|
475
|
-
</pre>
|
|
476
|
-
</div>
|
|
477
|
-
</div>
|
|
478
|
-
</div>
|
|
479
|
-
|
|
480
|
-
<div id="method-M000136" class="method-detail">
|
|
481
|
-
<a name="M000136"></a>
|
|
482
|
-
|
|
483
|
-
<div class="method-heading">
|
|
484
|
-
<a href="#M000136" class="method-signature">
|
|
485
|
-
<span class="method-name">same_property?</span><span class="method-args">(name, topdir, locale)</span>
|
|
486
|
-
</a>
|
|
487
|
-
</div>
|
|
488
|
-
|
|
489
|
-
<div class="method-description">
|
|
490
|
-
<p>
|
|
491
|
-
Compare this object has the same name, topdir and locale.
|
|
492
|
-
</p>
|
|
493
|
-
<ul>
|
|
494
|
-
<li>name: the textdomain name
|
|
495
|
-
|
|
496
|
-
</li>
|
|
497
|
-
<li>topdir: the top directory of mo files or nil.
|
|
498
|
-
|
|
499
|
-
</li>
|
|
500
|
-
<li>locale: the <a href="../Locale/Object.html">Locale::Object</a> or nil.
|
|
501
|
-
|
|
502
|
-
</li>
|
|
503
|
-
<li>Returns: true if this object has all of the same name, topdir and locale.
|
|
504
|
-
|
|
505
|
-
</li>
|
|
506
|
-
</ul>
|
|
507
|
-
<p><a class="source-toggle" href="#"
|
|
508
|
-
onclick="toggleCode('M000136-source');return false;">[Source]</a></p>
|
|
509
|
-
<div class="method-source-code" id="M000136-source">
|
|
510
|
-
<pre>
|
|
511
|
-
<span class="ruby-comment cmt"># File lib/gettext/textdomain.rb, line 198</span>
|
|
512
|
-
198: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">same_property?</span>(<span class="ruby-identifier">name</span>, <span class="ruby-identifier">topdir</span>, <span class="ruby-identifier">locale</span>)
|
|
513
|
-
199: <span class="ruby-ivar">@name</span> <span class="ruby-operator">==</span> <span class="ruby-identifier">name</span> <span class="ruby-keyword kw">and</span> <span class="ruby-ivar">@topdir</span> <span class="ruby-operator">==</span> <span class="ruby-identifier">topdir</span> <span class="ruby-keyword kw">and</span> <span class="ruby-ivar">@current_locale</span> <span class="ruby-operator">==</span> <span class="ruby-identifier">locale</span>
|
|
514
|
-
200: <span class="ruby-keyword kw">end</span>
|
|
515
|
-
</pre>
|
|
516
|
-
</div>
|
|
517
|
-
</div>
|
|
518
|
-
</div>
|
|
519
|
-
|
|
520
|
-
<div id="method-M000133" class="method-detail">
|
|
521
|
-
<a name="M000133"></a>
|
|
522
|
-
|
|
523
|
-
<div class="method-heading">
|
|
524
|
-
<a href="#M000133" class="method-signature">
|
|
525
|
-
<span class="method-name">set_locale</span><span class="method-args">(locale, reload = false)</span>
|
|
526
|
-
</a>
|
|
527
|
-
</div>
|
|
528
|
-
|
|
529
|
-
<div class="method-description">
|
|
530
|
-
<p>
|
|
531
|
-
Sets a <a href="TextDomain.html#M000132">new</a> <a
|
|
532
|
-
href="../Locale/Object.html">Locale::Object</a>.
|
|
533
|
-
</p>
|
|
534
|
-
<ul>
|
|
535
|
-
<li>locale: a <a href="../Locale/Object.html">Locale::Object</a>
|
|
536
|
-
|
|
537
|
-
</li>
|
|
538
|
-
<li>reload: true if the mo-file is reloaded forcely
|
|
539
|
-
|
|
540
|
-
</li>
|
|
541
|
-
<li>Returns: self
|
|
542
|
-
|
|
543
|
-
</li>
|
|
544
|
-
</ul>
|
|
545
|
-
<p><a class="source-toggle" href="#"
|
|
546
|
-
onclick="toggleCode('M000133-source');return false;">[Source]</a></p>
|
|
547
|
-
<div class="method-source-code" id="M000133-source">
|
|
548
|
-
<pre>
|
|
549
|
-
<span class="ruby-comment cmt"># File lib/gettext/textdomain.rb, line 108</span>
|
|
550
|
-
108: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">set_locale</span>(<span class="ruby-identifier">locale</span>, <span class="ruby-identifier">reload</span> = <span class="ruby-keyword kw">false</span>)
|
|
551
|
-
109: <span class="ruby-ivar">@current_locale</span> = <span class="ruby-identifier">locale</span>
|
|
552
|
-
110: <span class="ruby-identifier">load_mo</span>(<span class="ruby-identifier">reload</span>)
|
|
553
|
-
111: <span class="ruby-keyword kw">self</span>
|
|
554
|
-
112: <span class="ruby-keyword kw">end</span>
|
|
555
|
-
</pre>
|
|
556
|
-
</div>
|
|
557
|
-
</div>
|
|
558
|
-
</div>
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
</div>
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
</div>
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
<div id="validator-badges">
|
|
568
|
-
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
|
569
|
-
</div>
|
|
570
|
-
|
|
571
|
-
</body>
|
|
572
|
-
</html>
|