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
data/test/testlib/ngettext.rb
CHANGED
data/test/testlib/npgettext.rb
CHANGED
data/test/testlib/nsgettext.rb
CHANGED
data/test/testlib/pgettext.rb
CHANGED
data/test/testlib/sgettext.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
|
+
# This file is distributed under the same license as the PACKAGE package.
|
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
|
+
#
|
|
6
|
+
#, fuzzy
|
|
7
|
+
msgid ""
|
|
8
|
+
msgstr ""
|
|
9
|
+
"Project-Id-Version: x\n"
|
|
10
|
+
"POT-Creation-Date: 2009-02-15 09:23+0100\n"
|
|
11
|
+
"PO-Revision-Date: 2009-02-15 09:23+0100\n"
|
|
12
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
13
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
14
|
+
"MIME-Version: 1.0\n"
|
|
15
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
16
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
17
|
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
|
18
|
+
|
|
19
|
+
#: tools/files/simple_translation.rb:1
|
|
20
|
+
msgid "a translation"
|
|
21
|
+
msgstr ""
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
_('a translation')
|
data/test/tools/test.pot
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
|
+
# This file is distributed under the same license as the PACKAGE package.
|
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
|
+
#
|
|
6
|
+
#, fuzzy
|
|
7
|
+
msgid ""
|
|
8
|
+
msgstr ""
|
|
9
|
+
"Project-Id-Version: x\n"
|
|
10
|
+
"POT-Creation-Date: 2009-02-15 09:22+0100\n"
|
|
11
|
+
"PO-Revision-Date: 2009-02-15 09:22+0100\n"
|
|
12
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
13
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
14
|
+
"MIME-Version: 1.0\n"
|
|
15
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
16
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
17
|
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
|
18
|
+
|
|
19
|
+
#: tools/files/simple_translation.rb:1
|
|
20
|
+
msgid "a translation"
|
|
21
|
+
msgstr ""
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
require 'testlib/helper'
|
|
2
|
+
|
|
3
|
+
require 'gettext/tools'
|
|
4
|
+
class TestToolsTools < Test::Unit::TestCase
|
|
5
|
+
def setup
|
|
6
|
+
`cp -r tools/files tools/test_files`
|
|
7
|
+
end
|
|
8
|
+
def teardown
|
|
9
|
+
`rm -rf tools/test_files`
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def test_msgmerge_merges_old_and_new_po_file
|
|
13
|
+
GetText.msgmerge(path('simple_1.po'),path('simple_2.po'),'X',:msgmerge=>[:sort_output,:no_location])
|
|
14
|
+
assert_equal File.read(path('simple_1.po')), <<EOF
|
|
15
|
+
msgid "a"
|
|
16
|
+
msgstr "b"
|
|
17
|
+
|
|
18
|
+
#~ msgid "x"
|
|
19
|
+
#~ msgstr "y"
|
|
20
|
+
EOF
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def test_msgmerge_inserts_the_new_version
|
|
24
|
+
old = backup('version.po')
|
|
25
|
+
GetText.msgmerge(old,path('version.po'),'NEW')
|
|
26
|
+
assert File.read(old) =~ /"Project-Id-Version: NEW\\n"/
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
def test_update_pofiles_updates_a_single_language
|
|
30
|
+
GetText.update_pofiles('app',[path('simple_translation.rb')],'x',:po_root=>path('.'),:lang=>'en',:msgmerge=>[:no_location])
|
|
31
|
+
text = <<EOF
|
|
32
|
+
msgid "a translation"
|
|
33
|
+
msgstr ""
|
|
34
|
+
EOF
|
|
35
|
+
assert_equal text, File.read(path('app.pot'))
|
|
36
|
+
assert_equal text, File.read(path('en/app.po'))
|
|
37
|
+
assert_equal '', File.read(path('de/app.po'))
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
def test_update_pofiles_updates_creates_po_folder_if_missing
|
|
41
|
+
GetText.update_pofiles('app',[path('simple_translation.rb')],'x',:po_root=>path('./xx'))
|
|
42
|
+
assert File.exist?(path('xx/app.pot'))
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
def test_create_mofiles_generates_mo_for_each_po
|
|
46
|
+
GetText.create_mofiles(:po_root=>path('.'),:mo_root=>path('mo'))
|
|
47
|
+
assert File.exist?(path('mo/en/LC_MESSAGES/app.mo'))
|
|
48
|
+
assert File.exist?(path('mo/de/LC_MESSAGES/app.mo'))
|
|
49
|
+
end
|
|
50
|
+
private
|
|
51
|
+
|
|
52
|
+
def backup(name)
|
|
53
|
+
copy = path(name+".bak")
|
|
54
|
+
FileUtils.cp path(name), copy
|
|
55
|
+
copy
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
def path(name)
|
|
59
|
+
File.join(File.dirname(__FILE__),'test_files',name)
|
|
60
|
+
end
|
|
61
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gettext
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Masao Mutoh
|
|
@@ -9,12 +9,21 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date:
|
|
12
|
+
date: 2009-03-22 00:00:00 +09:00
|
|
13
13
|
default_executable:
|
|
14
|
-
dependencies:
|
|
15
|
-
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: locale
|
|
17
|
+
type: :runtime
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 2.0.0
|
|
24
|
+
version:
|
|
16
25
|
description: Ruby-GetText-Package is a GNU GetText-like program for Ruby. The catalog file(po-file) is same format with GNU GetText. So you can use GNU GetText tools for maintaining.
|
|
17
|
-
email:
|
|
26
|
+
email: mutomasa at gmail.com
|
|
18
27
|
executables:
|
|
19
28
|
- rgettext
|
|
20
29
|
- rmsgfmt
|
|
@@ -27,965 +36,507 @@ files:
|
|
|
27
36
|
- po
|
|
28
37
|
- po/es
|
|
29
38
|
- po/es/rgettext.po
|
|
30
|
-
- po/es/rails.po
|
|
31
39
|
- po/el
|
|
32
40
|
- po/el/rgettext.po
|
|
33
|
-
- po/el/rails.po
|
|
34
41
|
- po/sv
|
|
35
42
|
- po/sv/rgettext.po
|
|
36
43
|
- po/cs
|
|
37
44
|
- po/cs/rgettext.po
|
|
38
|
-
- po/cs/rails.po
|
|
39
45
|
- po/ko
|
|
40
46
|
- po/ko/rgettext.po
|
|
41
|
-
- po/ko/rails.po
|
|
42
47
|
- po/rgettext.pot
|
|
43
48
|
- po/sr
|
|
44
49
|
- po/sr/rgettext.po
|
|
45
|
-
- po/sr/rails.po
|
|
46
50
|
- po/nb
|
|
47
51
|
- po/nb/rgettext.po
|
|
48
|
-
- po/nb/rails.po
|
|
49
52
|
- po/zh
|
|
50
53
|
- po/zh/rgettext.po
|
|
51
|
-
- po/zh/rails.po
|
|
52
54
|
- po/eo
|
|
53
55
|
- po/eo/rgettext.po
|
|
54
|
-
- po/eo/rails.po
|
|
55
56
|
- po/vi
|
|
56
57
|
- po/vi/rgettext.po
|
|
57
|
-
- po/vi/rails.po
|
|
58
58
|
- po/nl
|
|
59
59
|
- po/nl/rgettext.po
|
|
60
|
-
- po/nl/rails.po
|
|
61
60
|
- po/fr
|
|
62
61
|
- po/fr/rgettext.po
|
|
63
|
-
- po/fr/rails.po
|
|
64
62
|
- po/bg
|
|
65
63
|
- po/bg/rgettext.po
|
|
66
|
-
- po/bg/rails.po
|
|
67
64
|
- po/hu
|
|
68
65
|
- po/hu/rgettext.po
|
|
69
|
-
- po/hu/rails.po
|
|
70
66
|
- po/ua
|
|
71
67
|
- po/ua/rgettext.po
|
|
72
|
-
- po/ua/rails.po
|
|
73
68
|
- po/hr
|
|
74
69
|
- po/hr/rgettext.po
|
|
75
|
-
- po/hr/rails.po
|
|
76
70
|
- po/et
|
|
77
71
|
- po/et/rgettext.po
|
|
78
|
-
- po/et/rails.po
|
|
79
72
|
- po/lv
|
|
80
73
|
- po/lv/rgettext.po
|
|
81
|
-
- po/lv/rails.po
|
|
82
74
|
- po/it
|
|
83
75
|
- po/it/rgettext.po
|
|
84
|
-
- po/it/rails.po
|
|
85
76
|
- po/pt_BR
|
|
86
77
|
- po/pt_BR/rgettext.po
|
|
87
|
-
- po/pt_BR/rails.po
|
|
88
78
|
- po/ja
|
|
89
79
|
- po/ja/rgettext.po
|
|
90
|
-
- po/ja/rails.po
|
|
80
|
+
- po/ja/rails.po.old
|
|
91
81
|
- po/zh_TW
|
|
92
82
|
- po/zh_TW/rgettext.po
|
|
93
|
-
- po/zh_TW/rails.po
|
|
94
|
-
- po/rails.pot
|
|
95
83
|
- po/ru
|
|
96
84
|
- po/ru/rgettext.po
|
|
97
|
-
- po/ru/rails.po
|
|
98
85
|
- po/bs
|
|
99
86
|
- po/bs/rgettext.po
|
|
100
|
-
- po/bs/rails.po
|
|
101
87
|
- po/de
|
|
88
|
+
- po/de/#rails.po#
|
|
102
89
|
- po/de/rgettext.po
|
|
103
|
-
- po/de/rails.po
|
|
104
90
|
- po/ca
|
|
105
91
|
- po/ca/rgettext.po
|
|
106
|
-
- po/ca/rails.po
|
|
107
92
|
- src
|
|
108
93
|
- src/poparser.ry
|
|
109
94
|
- ChangeLog
|
|
110
|
-
- doc
|
|
111
|
-
- doc/index.html
|
|
112
|
-
- doc/fr_method_index.html
|
|
113
|
-
- doc/created.rid
|
|
114
|
-
- doc/fr_class_index.html
|
|
115
|
-
- doc/classes
|
|
116
|
-
- doc/classes/MOFile
|
|
117
|
-
- doc/classes/MOFile/InvalidFormat.html
|
|
118
|
-
- doc/classes/MOFile/HeaderRev1.html
|
|
119
|
-
- doc/classes/GetText
|
|
120
|
-
- doc/classes/GetText/ErbContainer.html
|
|
121
|
-
- doc/classes/GetText/PoParser.html
|
|
122
|
-
- doc/classes/GetText/GladeParser.html
|
|
123
|
-
- doc/classes/GetText/ErbParser.html
|
|
124
|
-
- doc/classes/GetText/NoboundTextDomainError.html
|
|
125
|
-
- doc/classes/GetText/ActiveRecordParser.html
|
|
126
|
-
- doc/classes/GetText/Rails.html
|
|
127
|
-
- doc/classes/GetText/TextDomain.html
|
|
128
|
-
- doc/classes/GetText/TextDomainManager.html
|
|
129
|
-
- doc/classes/GetText/RubyParser.html
|
|
130
|
-
- doc/classes/GetText/Container.html
|
|
131
|
-
- doc/classes/Iconv
|
|
132
|
-
- doc/classes/Iconv/InvalidEncoding.html
|
|
133
|
-
- doc/classes/Iconv/IllegalSequence.html
|
|
134
|
-
- doc/classes/Iconv/InvalidCharacter.html
|
|
135
|
-
- doc/classes/Iconv/Failure.html
|
|
136
|
-
- doc/classes/GetText.html
|
|
137
|
-
- doc/classes/ActiveRecord
|
|
138
|
-
- doc/classes/ActiveRecord/Migration.html
|
|
139
|
-
- doc/classes/ActiveRecord/ConnectionAdapters
|
|
140
|
-
- doc/classes/ActiveRecord/ConnectionAdapters/Column.html
|
|
141
|
-
- doc/classes/ActiveRecord/Base.html
|
|
142
|
-
- doc/classes/Iconv.html
|
|
143
|
-
- doc/classes/Locale
|
|
144
|
-
- doc/classes/Locale/Object.html
|
|
145
|
-
- doc/classes/Locale/SystemWin32Table.html
|
|
146
|
-
- doc/classes/Locale/SystemWin32.html
|
|
147
|
-
- doc/classes/Locale/SystemPosix.html
|
|
148
|
-
- doc/classes/Locale/SystemBase.html
|
|
149
|
-
- doc/classes/Locale/SystemCGI.html
|
|
150
|
-
- doc/classes/Locale/SystemJRuby.html
|
|
151
|
-
- doc/classes/Locale.html
|
|
152
|
-
- doc/classes/ActionView
|
|
153
|
-
- doc/classes/ActionView/TemplateFinder.html
|
|
154
|
-
- doc/classes/ActionView/Helpers
|
|
155
|
-
- doc/classes/ActionView/Helpers/FormBuilder.html
|
|
156
|
-
- doc/classes/MOFile.html
|
|
157
|
-
- doc/classes/Module.html
|
|
158
|
-
- doc/classes/String.html
|
|
159
|
-
- doc/files
|
|
160
|
-
- doc/files/ChangeLog.html
|
|
161
|
-
- doc/files/lib
|
|
162
|
-
- doc/files/lib/gettext_rb.html
|
|
163
|
-
- doc/files/lib/locale_rb.html
|
|
164
|
-
- doc/files/lib/locale
|
|
165
|
-
- doc/files/lib/locale/win32_rb.html
|
|
166
|
-
- doc/files/lib/locale/win32_table_rb.html
|
|
167
|
-
- doc/files/lib/locale/object_rb.html
|
|
168
|
-
- doc/files/lib/locale/posix_rb.html
|
|
169
|
-
- doc/files/lib/locale/cgi_rb.html
|
|
170
|
-
- doc/files/lib/locale/jruby_rb.html
|
|
171
|
-
- doc/files/lib/locale/base_rb.html
|
|
172
|
-
- doc/files/lib/gettext
|
|
173
|
-
- doc/files/lib/gettext/rgettext_rb.html
|
|
174
|
-
- doc/files/lib/gettext/iconv_rb.html
|
|
175
|
-
- doc/files/lib/gettext/rails_compat_rb.html
|
|
176
|
-
- doc/files/lib/gettext/utils_rb.html
|
|
177
|
-
- doc/files/lib/gettext/poparser_rb.html
|
|
178
|
-
- doc/files/lib/gettext/mo_rb.html
|
|
179
|
-
- doc/files/lib/gettext/version_rb.html
|
|
180
|
-
- doc/files/lib/gettext/rmsgfmt_rb.html
|
|
181
|
-
- doc/files/lib/gettext/textdomainmanager_rb.html
|
|
182
|
-
- doc/files/lib/gettext/cgi_rb.html
|
|
183
|
-
- doc/files/lib/gettext/string_rb.html
|
|
184
|
-
- doc/files/lib/gettext/textdomain_rb.html
|
|
185
|
-
- doc/files/lib/gettext/erb_rb.html
|
|
186
|
-
- doc/files/lib/gettext/rails_rb.html
|
|
187
|
-
- doc/files/lib/gettext/parser
|
|
188
|
-
- doc/files/lib/gettext/parser/ruby_rb.html
|
|
189
|
-
- doc/files/lib/gettext/parser/erb_rb.html
|
|
190
|
-
- doc/files/lib/gettext/parser/glade_rb.html
|
|
191
|
-
- doc/files/lib/gettext/parser/active_record_rb.html
|
|
192
|
-
- doc/files/lib/gettext/rmsgmerge_rb.html
|
|
193
|
-
- doc/files/lib/gettext/container_rb.html
|
|
194
|
-
- doc/files/lib/gettext/active_record_rb.html
|
|
195
|
-
- doc/files/README.html
|
|
196
|
-
- doc/rdoc-style.css
|
|
197
|
-
- doc/fr_file_index.html
|
|
198
|
-
- pre-setup.rb
|
|
199
|
-
- NEWS
|
|
200
95
|
- samples
|
|
201
96
|
- samples/po
|
|
97
|
+
- samples/po/test.rb
|
|
202
98
|
- samples/po/es
|
|
203
99
|
- samples/po/es/hello_plural.po
|
|
204
100
|
- samples/po/es/hello_noop.po
|
|
205
101
|
- samples/po/es/hello2.po
|
|
206
|
-
- samples/po/es/
|
|
207
|
-
- samples/po/es/
|
|
208
|
-
- samples/po/es/hellogtk.po
|
|
102
|
+
- samples/po/es/hello_gtk.po
|
|
103
|
+
- samples/po/es/hello_glade2.po
|
|
209
104
|
- samples/po/es/hello.po
|
|
105
|
+
- samples/po/es/hello_tk.po
|
|
210
106
|
- samples/po/el
|
|
211
107
|
- samples/po/el/hello_plural.po
|
|
212
108
|
- samples/po/el/hello_noop.po
|
|
213
109
|
- samples/po/el/hello2.po
|
|
214
|
-
- samples/po/el/
|
|
215
|
-
- samples/po/el/
|
|
216
|
-
- samples/po/el/hellogtk.po
|
|
110
|
+
- samples/po/el/hello_gtk.po
|
|
111
|
+
- samples/po/el/hello_glade2.po
|
|
217
112
|
- samples/po/el/hello.po
|
|
113
|
+
- samples/po/el/hello_tk.po
|
|
218
114
|
- samples/po/hello2.pot
|
|
219
|
-
- samples/po/hellogtk.pot
|
|
220
|
-
- samples/po/helloglade2.pot
|
|
221
115
|
- samples/po/sv
|
|
222
116
|
- samples/po/sv/hello_plural.po
|
|
223
117
|
- samples/po/sv/hello_noop.po
|
|
224
118
|
- samples/po/sv/hello2.po
|
|
225
|
-
- samples/po/sv/
|
|
226
|
-
- samples/po/sv/
|
|
227
|
-
- samples/po/sv/hellogtk.po
|
|
119
|
+
- samples/po/sv/hello_gtk.po
|
|
120
|
+
- samples/po/sv/hello_glade2.po
|
|
228
121
|
- samples/po/sv/hello.po
|
|
122
|
+
- samples/po/sv/hello_tk.po
|
|
229
123
|
- samples/po/cs
|
|
230
124
|
- samples/po/cs/hello_plural.po
|
|
231
125
|
- samples/po/cs/hello_noop.po
|
|
232
126
|
- samples/po/cs/hello2.po
|
|
233
|
-
- samples/po/cs/
|
|
234
|
-
- samples/po/cs/
|
|
235
|
-
- samples/po/cs/hellogtk.po
|
|
127
|
+
- samples/po/cs/hello_gtk.po
|
|
128
|
+
- samples/po/cs/hello_glade2.po
|
|
236
129
|
- samples/po/cs/hello.po
|
|
130
|
+
- samples/po/cs/hello_tk.po
|
|
237
131
|
- samples/po/ko
|
|
238
132
|
- samples/po/ko/hello_plural.po
|
|
239
133
|
- samples/po/ko/hello_noop.po
|
|
240
134
|
- samples/po/ko/hello2.po
|
|
241
|
-
- samples/po/ko/
|
|
242
|
-
- samples/po/ko/
|
|
243
|
-
- samples/po/ko/hellogtk.po
|
|
135
|
+
- samples/po/ko/hello_gtk.po
|
|
136
|
+
- samples/po/ko/hello_glade2.po
|
|
244
137
|
- samples/po/ko/hello.po
|
|
138
|
+
- samples/po/ko/hello_tk.po
|
|
245
139
|
- samples/po/sr
|
|
246
140
|
- samples/po/sr/hello_plural.po
|
|
247
141
|
- samples/po/sr/hello_noop.po
|
|
248
142
|
- samples/po/sr/hello2.po
|
|
249
|
-
- samples/po/sr/
|
|
250
|
-
- samples/po/sr/
|
|
251
|
-
- samples/po/sr/hellogtk.po
|
|
143
|
+
- samples/po/sr/hello_gtk.po
|
|
144
|
+
- samples/po/sr/hello_glade2.po
|
|
252
145
|
- samples/po/sr/hello.po
|
|
253
|
-
- samples/po/
|
|
146
|
+
- samples/po/sr/hello_tk.po
|
|
147
|
+
- samples/po/hello_gtk.pot
|
|
148
|
+
- samples/po/hello_tk.pot
|
|
254
149
|
- samples/po/nb
|
|
255
150
|
- samples/po/nb/hello_plural.po
|
|
256
151
|
- samples/po/nb/hello_noop.po
|
|
257
152
|
- samples/po/nb/hello2.po
|
|
258
|
-
- samples/po/nb/
|
|
259
|
-
- samples/po/nb/
|
|
260
|
-
- samples/po/nb/hellogtk.po
|
|
153
|
+
- samples/po/nb/hello_gtk.po
|
|
154
|
+
- samples/po/nb/hello_glade2.po
|
|
261
155
|
- samples/po/nb/hello.po
|
|
156
|
+
- samples/po/nb/hello_tk.po
|
|
262
157
|
- samples/po/zh
|
|
263
158
|
- samples/po/zh/hello_plural.po
|
|
264
159
|
- samples/po/zh/hello_noop.po
|
|
265
160
|
- samples/po/zh/hello2.po
|
|
266
|
-
- samples/po/zh/
|
|
267
|
-
- samples/po/zh/
|
|
268
|
-
- samples/po/zh/hellogtk.po
|
|
161
|
+
- samples/po/zh/hello_gtk.po
|
|
162
|
+
- samples/po/zh/hello_glade2.po
|
|
269
163
|
- samples/po/zh/hello.po
|
|
164
|
+
- samples/po/zh/hello_tk.po
|
|
165
|
+
- samples/po/hello_glade2.pot
|
|
270
166
|
- samples/po/eo
|
|
271
167
|
- samples/po/eo/hello_plural.po
|
|
272
168
|
- samples/po/eo/hello_noop.po
|
|
273
169
|
- samples/po/eo/hello2.po
|
|
274
|
-
- samples/po/eo/
|
|
275
|
-
- samples/po/eo/
|
|
276
|
-
- samples/po/eo/hellogtk.po
|
|
170
|
+
- samples/po/eo/hello_gtk.po
|
|
171
|
+
- samples/po/eo/hello_glade2.po
|
|
277
172
|
- samples/po/eo/hello.po
|
|
173
|
+
- samples/po/eo/hello_tk.po
|
|
278
174
|
- samples/po/hello.pot
|
|
279
175
|
- samples/po/vi
|
|
280
176
|
- samples/po/vi/hello_plural.po
|
|
281
177
|
- samples/po/vi/hello_noop.po
|
|
282
178
|
- samples/po/vi/hello2.po
|
|
283
|
-
- samples/po/vi/
|
|
284
|
-
- samples/po/vi/
|
|
285
|
-
- samples/po/vi/hellogtk.po
|
|
179
|
+
- samples/po/vi/hello_gtk.po
|
|
180
|
+
- samples/po/vi/hello_glade2.po
|
|
286
181
|
- samples/po/vi/hello.po
|
|
182
|
+
- samples/po/vi/hello_tk.po
|
|
287
183
|
- samples/po/nl
|
|
288
184
|
- samples/po/nl/hello_plural.po
|
|
289
185
|
- samples/po/nl/hello_noop.po
|
|
290
186
|
- samples/po/nl/hello2.po
|
|
291
|
-
- samples/po/nl/
|
|
292
|
-
- samples/po/nl/
|
|
293
|
-
- samples/po/nl/hellogtk.po
|
|
187
|
+
- samples/po/nl/hello_gtk.po
|
|
188
|
+
- samples/po/nl/hello_glade2.po
|
|
294
189
|
- samples/po/nl/hello.po
|
|
190
|
+
- samples/po/nl/hello_tk.po
|
|
295
191
|
- samples/po/fr
|
|
296
192
|
- samples/po/fr/hello_plural.po
|
|
297
193
|
- samples/po/fr/hello_noop.po
|
|
298
194
|
- samples/po/fr/hello2.po
|
|
299
|
-
- samples/po/fr/
|
|
300
|
-
- samples/po/fr/
|
|
301
|
-
- samples/po/fr/hellogtk.po
|
|
195
|
+
- samples/po/fr/hello_gtk.po
|
|
196
|
+
- samples/po/fr/hello_glade2.po
|
|
302
197
|
- samples/po/fr/hello.po
|
|
198
|
+
- samples/po/fr/hello_tk.po
|
|
303
199
|
- samples/po/hello_plural.pot
|
|
304
200
|
- samples/po/bg
|
|
305
201
|
- samples/po/bg/hello_plural.po
|
|
306
202
|
- samples/po/bg/hello_noop.po
|
|
307
203
|
- samples/po/bg/hello2.po
|
|
308
|
-
- samples/po/bg/
|
|
309
|
-
- samples/po/bg/
|
|
310
|
-
- samples/po/bg/hellogtk.po
|
|
204
|
+
- samples/po/bg/hello_gtk.po
|
|
205
|
+
- samples/po/bg/hello_glade2.po
|
|
311
206
|
- samples/po/bg/hello.po
|
|
207
|
+
- samples/po/bg/hello_tk.po
|
|
312
208
|
- samples/po/hu
|
|
313
209
|
- samples/po/hu/hello_plural.po
|
|
314
210
|
- samples/po/hu/hello_noop.po
|
|
315
211
|
- samples/po/hu/hello2.po
|
|
316
|
-
- samples/po/hu/
|
|
317
|
-
- samples/po/hu/
|
|
318
|
-
- samples/po/hu/hellogtk.po
|
|
212
|
+
- samples/po/hu/hello_gtk.po
|
|
213
|
+
- samples/po/hu/hello_glade2.po
|
|
319
214
|
- samples/po/hu/hello.po
|
|
215
|
+
- samples/po/hu/hello_tk.po
|
|
320
216
|
- samples/po/ua
|
|
321
217
|
- samples/po/ua/hello_plural.po
|
|
322
218
|
- samples/po/ua/hello_noop.po
|
|
323
219
|
- samples/po/ua/hello2.po
|
|
324
|
-
- samples/po/ua/
|
|
325
|
-
- samples/po/ua/
|
|
326
|
-
- samples/po/ua/hellogtk.po
|
|
220
|
+
- samples/po/ua/hello_gtk.po
|
|
221
|
+
- samples/po/ua/hello_glade2.po
|
|
327
222
|
- samples/po/ua/hello.po
|
|
223
|
+
- samples/po/ua/hello_tk.po
|
|
328
224
|
- samples/po/hello_noop.pot
|
|
329
225
|
- samples/po/hr
|
|
330
226
|
- samples/po/hr/hello_plural.po
|
|
331
227
|
- samples/po/hr/hello_noop.po
|
|
332
228
|
- samples/po/hr/hello2.po
|
|
333
|
-
- samples/po/hr/
|
|
334
|
-
- samples/po/hr/
|
|
335
|
-
- samples/po/hr/hellogtk.po
|
|
229
|
+
- samples/po/hr/hello_gtk.po
|
|
230
|
+
- samples/po/hr/hello_glade2.po
|
|
336
231
|
- samples/po/hr/hello.po
|
|
232
|
+
- samples/po/hr/hello_tk.po
|
|
337
233
|
- samples/po/lv
|
|
338
234
|
- samples/po/lv/hello_plural.po
|
|
339
235
|
- samples/po/lv/hello_noop.po
|
|
340
236
|
- samples/po/lv/hello2.po
|
|
341
|
-
- samples/po/lv/
|
|
342
|
-
- samples/po/lv/
|
|
343
|
-
- samples/po/lv/hellogtk.po
|
|
237
|
+
- samples/po/lv/hello_gtk.po
|
|
238
|
+
- samples/po/lv/hello_glade2.po
|
|
344
239
|
- samples/po/lv/hello.po
|
|
240
|
+
- samples/po/lv/hello_tk.po
|
|
345
241
|
- samples/po/it
|
|
346
242
|
- samples/po/it/hello_plural.po
|
|
347
243
|
- samples/po/it/hello_noop.po
|
|
348
244
|
- samples/po/it/hello2.po
|
|
349
|
-
- samples/po/it/
|
|
350
|
-
- samples/po/it/
|
|
351
|
-
- samples/po/it/hellogtk.po
|
|
245
|
+
- samples/po/it/hello_gtk.po
|
|
246
|
+
- samples/po/it/hello_glade2.po
|
|
352
247
|
- samples/po/it/hello.po
|
|
248
|
+
- samples/po/it/hello_tk.po
|
|
353
249
|
- samples/po/pt_BR
|
|
354
250
|
- samples/po/pt_BR/hello_plural.po
|
|
355
251
|
- samples/po/pt_BR/hello_noop.po
|
|
356
252
|
- samples/po/pt_BR/hello2.po
|
|
357
|
-
- samples/po/pt_BR/
|
|
358
|
-
- samples/po/pt_BR/
|
|
359
|
-
- samples/po/pt_BR/hellogtk.po
|
|
253
|
+
- samples/po/pt_BR/hello_gtk.po
|
|
254
|
+
- samples/po/pt_BR/hello_glade2.po
|
|
360
255
|
- samples/po/pt_BR/hello.po
|
|
256
|
+
- samples/po/pt_BR/hello_tk.po
|
|
361
257
|
- samples/po/ja
|
|
362
258
|
- samples/po/ja/hello_plural.po
|
|
363
259
|
- samples/po/ja/hello_noop.po
|
|
364
260
|
- samples/po/ja/hello2.po
|
|
365
|
-
- samples/po/ja/
|
|
366
|
-
- samples/po/ja/
|
|
367
|
-
- samples/po/ja/hellogtk.po
|
|
261
|
+
- samples/po/ja/hello_gtk.po
|
|
262
|
+
- samples/po/ja/hello_glade2.po
|
|
368
263
|
- samples/po/ja/hello.po
|
|
264
|
+
- samples/po/ja/hello_tk.po
|
|
369
265
|
- samples/po/zh_TW
|
|
370
266
|
- samples/po/zh_TW/hello_plural.po
|
|
371
267
|
- samples/po/zh_TW/hello_noop.po
|
|
372
268
|
- samples/po/zh_TW/hello2.po
|
|
373
|
-
- samples/po/zh_TW/
|
|
374
|
-
- samples/po/zh_TW/
|
|
375
|
-
- samples/po/zh_TW/hellogtk.po
|
|
269
|
+
- samples/po/zh_TW/hello_gtk.po
|
|
270
|
+
- samples/po/zh_TW/hello_glade2.po
|
|
376
271
|
- samples/po/zh_TW/hello.po
|
|
272
|
+
- samples/po/zh_TW/hello_tk.po
|
|
377
273
|
- samples/po/ru
|
|
378
274
|
- samples/po/ru/hello_plural.po
|
|
379
275
|
- samples/po/ru/hello_noop.po
|
|
380
276
|
- samples/po/ru/hello2.po
|
|
381
|
-
- samples/po/ru/
|
|
382
|
-
- samples/po/ru/
|
|
383
|
-
- samples/po/ru/hellogtk.po
|
|
277
|
+
- samples/po/ru/hello_gtk.po
|
|
278
|
+
- samples/po/ru/hello_glade2.po
|
|
384
279
|
- samples/po/ru/hello.po
|
|
280
|
+
- samples/po/ru/hello_tk.po
|
|
385
281
|
- samples/po/bs
|
|
386
282
|
- samples/po/bs/hello_plural.po
|
|
387
283
|
- samples/po/bs/hello_noop.po
|
|
388
284
|
- samples/po/bs/hello2.po
|
|
389
|
-
- samples/po/bs/
|
|
390
|
-
- samples/po/bs/
|
|
391
|
-
- samples/po/bs/hellogtk.po
|
|
285
|
+
- samples/po/bs/hello_gtk.po
|
|
286
|
+
- samples/po/bs/hello_glade2.po
|
|
392
287
|
- samples/po/bs/hello.po
|
|
288
|
+
- samples/po/bs/hello_tk.po
|
|
393
289
|
- samples/po/de
|
|
394
290
|
- samples/po/de/hello_plural.po
|
|
395
291
|
- samples/po/de/hello_noop.po
|
|
396
292
|
- samples/po/de/hello2.po
|
|
397
|
-
- samples/po/de/
|
|
398
|
-
- samples/po/de/
|
|
399
|
-
- samples/po/de/hellogtk.po
|
|
293
|
+
- samples/po/de/hello_gtk.po
|
|
294
|
+
- samples/po/de/hello_glade2.po
|
|
400
295
|
- samples/po/de/hello.po
|
|
296
|
+
- samples/po/de/hello_tk.po
|
|
401
297
|
- samples/po/ca
|
|
402
298
|
- samples/po/ca/hello_plural.po
|
|
403
299
|
- samples/po/ca/hello_noop.po
|
|
404
300
|
- samples/po/ca/hello2.po
|
|
405
|
-
- samples/po/ca/
|
|
406
|
-
- samples/po/ca/
|
|
407
|
-
- samples/po/ca/hellogtk.po
|
|
301
|
+
- samples/po/ca/hello_gtk.po
|
|
302
|
+
- samples/po/ca/hello_glade2.po
|
|
408
303
|
- samples/po/ca/hello.po
|
|
409
|
-
- samples/
|
|
304
|
+
- samples/po/ca/hello_tk.po
|
|
410
305
|
- samples/hello_noop.rb
|
|
411
306
|
- samples/hello_plural.rb
|
|
412
307
|
- samples/hello.rb
|
|
413
|
-
- samples/
|
|
308
|
+
- samples/hello_gtk2.rb
|
|
309
|
+
- samples/hello_glade2.glade
|
|
414
310
|
- samples/locale
|
|
415
311
|
- samples/locale/es
|
|
416
312
|
- samples/locale/es/LC_MESSAGES
|
|
417
313
|
- samples/locale/es/LC_MESSAGES/hello_noop.mo
|
|
418
314
|
- samples/locale/es/LC_MESSAGES/hello.mo
|
|
419
315
|
- samples/locale/es/LC_MESSAGES/hello2.mo
|
|
420
|
-
- samples/locale/es/LC_MESSAGES/
|
|
316
|
+
- samples/locale/es/LC_MESSAGES/hello_gtk.mo
|
|
317
|
+
- samples/locale/es/LC_MESSAGES/hello_tk.mo
|
|
318
|
+
- samples/locale/es/LC_MESSAGES/hello_glade2.mo
|
|
421
319
|
- samples/locale/es/LC_MESSAGES/hello_plural.mo
|
|
422
|
-
- samples/locale/es/LC_MESSAGES/hellotk.mo
|
|
423
|
-
- samples/locale/es/LC_MESSAGES/helloglade2.mo
|
|
424
320
|
- samples/locale/el
|
|
425
321
|
- samples/locale/el/LC_MESSAGES
|
|
426
322
|
- samples/locale/el/LC_MESSAGES/hello_noop.mo
|
|
427
323
|
- samples/locale/el/LC_MESSAGES/hello.mo
|
|
428
324
|
- samples/locale/el/LC_MESSAGES/hello2.mo
|
|
429
|
-
- samples/locale/el/LC_MESSAGES/
|
|
325
|
+
- samples/locale/el/LC_MESSAGES/hello_gtk.mo
|
|
326
|
+
- samples/locale/el/LC_MESSAGES/hello_tk.mo
|
|
327
|
+
- samples/locale/el/LC_MESSAGES/hello_glade2.mo
|
|
430
328
|
- samples/locale/el/LC_MESSAGES/hello_plural.mo
|
|
431
|
-
- samples/locale/el/LC_MESSAGES/hellotk.mo
|
|
432
|
-
- samples/locale/el/LC_MESSAGES/helloglade2.mo
|
|
433
329
|
- samples/locale/sv
|
|
434
330
|
- samples/locale/sv/LC_MESSAGES
|
|
435
331
|
- samples/locale/sv/LC_MESSAGES/hello_noop.mo
|
|
436
332
|
- samples/locale/sv/LC_MESSAGES/hello.mo
|
|
437
333
|
- samples/locale/sv/LC_MESSAGES/hello2.mo
|
|
438
|
-
- samples/locale/sv/LC_MESSAGES/
|
|
334
|
+
- samples/locale/sv/LC_MESSAGES/hello_gtk.mo
|
|
335
|
+
- samples/locale/sv/LC_MESSAGES/hello_tk.mo
|
|
336
|
+
- samples/locale/sv/LC_MESSAGES/hello_glade2.mo
|
|
439
337
|
- samples/locale/sv/LC_MESSAGES/hello_plural.mo
|
|
440
|
-
- samples/locale/sv/LC_MESSAGES/hellotk.mo
|
|
441
|
-
- samples/locale/sv/LC_MESSAGES/helloglade2.mo
|
|
442
338
|
- samples/locale/cs
|
|
443
339
|
- samples/locale/cs/LC_MESSAGES
|
|
444
340
|
- samples/locale/cs/LC_MESSAGES/hello_noop.mo
|
|
445
341
|
- samples/locale/cs/LC_MESSAGES/hello.mo
|
|
446
342
|
- samples/locale/cs/LC_MESSAGES/hello2.mo
|
|
447
|
-
- samples/locale/cs/LC_MESSAGES/
|
|
343
|
+
- samples/locale/cs/LC_MESSAGES/hello_gtk.mo
|
|
344
|
+
- samples/locale/cs/LC_MESSAGES/hello_tk.mo
|
|
345
|
+
- samples/locale/cs/LC_MESSAGES/hello_glade2.mo
|
|
448
346
|
- samples/locale/cs/LC_MESSAGES/hello_plural.mo
|
|
449
|
-
- samples/locale/cs/LC_MESSAGES/hellotk.mo
|
|
450
|
-
- samples/locale/cs/LC_MESSAGES/helloglade2.mo
|
|
451
347
|
- samples/locale/ko
|
|
452
348
|
- samples/locale/ko/LC_MESSAGES
|
|
453
349
|
- samples/locale/ko/LC_MESSAGES/hello_noop.mo
|
|
454
350
|
- samples/locale/ko/LC_MESSAGES/hello.mo
|
|
455
351
|
- samples/locale/ko/LC_MESSAGES/hello2.mo
|
|
456
|
-
- samples/locale/ko/LC_MESSAGES/
|
|
352
|
+
- samples/locale/ko/LC_MESSAGES/hello_gtk.mo
|
|
353
|
+
- samples/locale/ko/LC_MESSAGES/hello_tk.mo
|
|
354
|
+
- samples/locale/ko/LC_MESSAGES/hello_glade2.mo
|
|
457
355
|
- samples/locale/ko/LC_MESSAGES/hello_plural.mo
|
|
458
|
-
- samples/locale/ko/LC_MESSAGES/hellotk.mo
|
|
459
|
-
- samples/locale/ko/LC_MESSAGES/helloglade2.mo
|
|
460
356
|
- samples/locale/sr
|
|
461
357
|
- samples/locale/sr/LC_MESSAGES
|
|
462
358
|
- samples/locale/sr/LC_MESSAGES/hello_noop.mo
|
|
463
359
|
- samples/locale/sr/LC_MESSAGES/hello.mo
|
|
464
360
|
- samples/locale/sr/LC_MESSAGES/hello2.mo
|
|
465
|
-
- samples/locale/sr/LC_MESSAGES/
|
|
361
|
+
- samples/locale/sr/LC_MESSAGES/hello_gtk.mo
|
|
362
|
+
- samples/locale/sr/LC_MESSAGES/hello_tk.mo
|
|
363
|
+
- samples/locale/sr/LC_MESSAGES/hello_glade2.mo
|
|
466
364
|
- samples/locale/sr/LC_MESSAGES/hello_plural.mo
|
|
467
|
-
- samples/locale/sr/LC_MESSAGES/hellotk.mo
|
|
468
|
-
- samples/locale/sr/LC_MESSAGES/helloglade2.mo
|
|
469
365
|
- samples/locale/nb
|
|
470
366
|
- samples/locale/nb/LC_MESSAGES
|
|
471
367
|
- samples/locale/nb/LC_MESSAGES/hello_noop.mo
|
|
472
368
|
- samples/locale/nb/LC_MESSAGES/hello.mo
|
|
473
369
|
- samples/locale/nb/LC_MESSAGES/hello2.mo
|
|
474
|
-
- samples/locale/nb/LC_MESSAGES/
|
|
370
|
+
- samples/locale/nb/LC_MESSAGES/hello_gtk.mo
|
|
371
|
+
- samples/locale/nb/LC_MESSAGES/hello_tk.mo
|
|
372
|
+
- samples/locale/nb/LC_MESSAGES/hello_glade2.mo
|
|
475
373
|
- samples/locale/nb/LC_MESSAGES/hello_plural.mo
|
|
476
|
-
- samples/locale/nb/LC_MESSAGES/hellotk.mo
|
|
477
|
-
- samples/locale/nb/LC_MESSAGES/helloglade2.mo
|
|
478
374
|
- samples/locale/zh
|
|
479
375
|
- samples/locale/zh/LC_MESSAGES
|
|
480
376
|
- samples/locale/zh/LC_MESSAGES/hello_noop.mo
|
|
481
377
|
- samples/locale/zh/LC_MESSAGES/hello.mo
|
|
482
378
|
- samples/locale/zh/LC_MESSAGES/hello2.mo
|
|
483
|
-
- samples/locale/zh/LC_MESSAGES/
|
|
379
|
+
- samples/locale/zh/LC_MESSAGES/hello_gtk.mo
|
|
380
|
+
- samples/locale/zh/LC_MESSAGES/hello_tk.mo
|
|
381
|
+
- samples/locale/zh/LC_MESSAGES/hello_glade2.mo
|
|
484
382
|
- samples/locale/zh/LC_MESSAGES/hello_plural.mo
|
|
485
|
-
- samples/locale/zh/LC_MESSAGES/hellotk.mo
|
|
486
|
-
- samples/locale/zh/LC_MESSAGES/helloglade2.mo
|
|
487
383
|
- samples/locale/eo
|
|
488
384
|
- samples/locale/eo/LC_MESSAGES
|
|
489
385
|
- samples/locale/eo/LC_MESSAGES/hello_noop.mo
|
|
490
386
|
- samples/locale/eo/LC_MESSAGES/hello.mo
|
|
491
387
|
- samples/locale/eo/LC_MESSAGES/hello2.mo
|
|
492
|
-
- samples/locale/eo/LC_MESSAGES/
|
|
388
|
+
- samples/locale/eo/LC_MESSAGES/hello_gtk.mo
|
|
389
|
+
- samples/locale/eo/LC_MESSAGES/hello_tk.mo
|
|
390
|
+
- samples/locale/eo/LC_MESSAGES/hello_glade2.mo
|
|
493
391
|
- samples/locale/eo/LC_MESSAGES/hello_plural.mo
|
|
494
|
-
- samples/locale/eo/LC_MESSAGES/hellotk.mo
|
|
495
|
-
- samples/locale/eo/LC_MESSAGES/helloglade2.mo
|
|
496
392
|
- samples/locale/vi
|
|
497
393
|
- samples/locale/vi/LC_MESSAGES
|
|
498
394
|
- samples/locale/vi/LC_MESSAGES/hello_noop.mo
|
|
499
395
|
- samples/locale/vi/LC_MESSAGES/hello.mo
|
|
500
396
|
- samples/locale/vi/LC_MESSAGES/hello2.mo
|
|
501
|
-
- samples/locale/vi/LC_MESSAGES/
|
|
397
|
+
- samples/locale/vi/LC_MESSAGES/hello_gtk.mo
|
|
398
|
+
- samples/locale/vi/LC_MESSAGES/hello_tk.mo
|
|
399
|
+
- samples/locale/vi/LC_MESSAGES/hello_glade2.mo
|
|
502
400
|
- samples/locale/vi/LC_MESSAGES/hello_plural.mo
|
|
503
|
-
- samples/locale/vi/LC_MESSAGES/hellotk.mo
|
|
504
|
-
- samples/locale/vi/LC_MESSAGES/helloglade2.mo
|
|
505
401
|
- samples/locale/nl
|
|
506
402
|
- samples/locale/nl/LC_MESSAGES
|
|
507
403
|
- samples/locale/nl/LC_MESSAGES/hello_noop.mo
|
|
508
404
|
- samples/locale/nl/LC_MESSAGES/hello.mo
|
|
509
405
|
- samples/locale/nl/LC_MESSAGES/hello2.mo
|
|
510
|
-
- samples/locale/nl/LC_MESSAGES/
|
|
406
|
+
- samples/locale/nl/LC_MESSAGES/hello_gtk.mo
|
|
407
|
+
- samples/locale/nl/LC_MESSAGES/hello_tk.mo
|
|
408
|
+
- samples/locale/nl/LC_MESSAGES/hello_glade2.mo
|
|
511
409
|
- samples/locale/nl/LC_MESSAGES/hello_plural.mo
|
|
512
|
-
- samples/locale/nl/LC_MESSAGES/hellotk.mo
|
|
513
|
-
- samples/locale/nl/LC_MESSAGES/helloglade2.mo
|
|
514
410
|
- samples/locale/fr
|
|
515
411
|
- samples/locale/fr/LC_MESSAGES
|
|
516
412
|
- samples/locale/fr/LC_MESSAGES/hello_noop.mo
|
|
517
413
|
- samples/locale/fr/LC_MESSAGES/hello.mo
|
|
518
414
|
- samples/locale/fr/LC_MESSAGES/hello2.mo
|
|
519
|
-
- samples/locale/fr/LC_MESSAGES/
|
|
415
|
+
- samples/locale/fr/LC_MESSAGES/hello_gtk.mo
|
|
416
|
+
- samples/locale/fr/LC_MESSAGES/hello_tk.mo
|
|
417
|
+
- samples/locale/fr/LC_MESSAGES/hello_glade2.mo
|
|
520
418
|
- samples/locale/fr/LC_MESSAGES/hello_plural.mo
|
|
521
|
-
- samples/locale/fr/LC_MESSAGES/hellotk.mo
|
|
522
|
-
- samples/locale/fr/LC_MESSAGES/helloglade2.mo
|
|
523
419
|
- samples/locale/bg
|
|
524
420
|
- samples/locale/bg/LC_MESSAGES
|
|
525
421
|
- samples/locale/bg/LC_MESSAGES/hello_noop.mo
|
|
526
422
|
- samples/locale/bg/LC_MESSAGES/hello.mo
|
|
527
423
|
- samples/locale/bg/LC_MESSAGES/hello2.mo
|
|
528
|
-
- samples/locale/bg/LC_MESSAGES/
|
|
424
|
+
- samples/locale/bg/LC_MESSAGES/hello_gtk.mo
|
|
425
|
+
- samples/locale/bg/LC_MESSAGES/hello_tk.mo
|
|
426
|
+
- samples/locale/bg/LC_MESSAGES/hello_glade2.mo
|
|
529
427
|
- samples/locale/bg/LC_MESSAGES/hello_plural.mo
|
|
530
|
-
- samples/locale/bg/LC_MESSAGES/hellotk.mo
|
|
531
|
-
- samples/locale/bg/LC_MESSAGES/helloglade2.mo
|
|
532
428
|
- samples/locale/hu
|
|
533
429
|
- samples/locale/hu/LC_MESSAGES
|
|
534
430
|
- samples/locale/hu/LC_MESSAGES/hello_noop.mo
|
|
535
431
|
- samples/locale/hu/LC_MESSAGES/hello.mo
|
|
536
432
|
- samples/locale/hu/LC_MESSAGES/hello2.mo
|
|
537
|
-
- samples/locale/hu/LC_MESSAGES/
|
|
433
|
+
- samples/locale/hu/LC_MESSAGES/hello_gtk.mo
|
|
434
|
+
- samples/locale/hu/LC_MESSAGES/hello_tk.mo
|
|
435
|
+
- samples/locale/hu/LC_MESSAGES/hello_glade2.mo
|
|
538
436
|
- samples/locale/hu/LC_MESSAGES/hello_plural.mo
|
|
539
|
-
- samples/locale/hu/LC_MESSAGES/hellotk.mo
|
|
540
|
-
- samples/locale/hu/LC_MESSAGES/helloglade2.mo
|
|
541
437
|
- samples/locale/ua
|
|
542
438
|
- samples/locale/ua/LC_MESSAGES
|
|
543
439
|
- samples/locale/ua/LC_MESSAGES/hello_noop.mo
|
|
544
440
|
- samples/locale/ua/LC_MESSAGES/hello.mo
|
|
545
441
|
- samples/locale/ua/LC_MESSAGES/hello2.mo
|
|
546
|
-
- samples/locale/ua/LC_MESSAGES/
|
|
442
|
+
- samples/locale/ua/LC_MESSAGES/hello_gtk.mo
|
|
443
|
+
- samples/locale/ua/LC_MESSAGES/hello_tk.mo
|
|
444
|
+
- samples/locale/ua/LC_MESSAGES/hello_glade2.mo
|
|
547
445
|
- samples/locale/ua/LC_MESSAGES/hello_plural.mo
|
|
548
|
-
- samples/locale/ua/LC_MESSAGES/hellotk.mo
|
|
549
|
-
- samples/locale/ua/LC_MESSAGES/helloglade2.mo
|
|
550
446
|
- samples/locale/hr
|
|
551
447
|
- samples/locale/hr/LC_MESSAGES
|
|
552
448
|
- samples/locale/hr/LC_MESSAGES/hello_noop.mo
|
|
553
449
|
- samples/locale/hr/LC_MESSAGES/hello.mo
|
|
554
450
|
- samples/locale/hr/LC_MESSAGES/hello2.mo
|
|
555
|
-
- samples/locale/hr/LC_MESSAGES/
|
|
451
|
+
- samples/locale/hr/LC_MESSAGES/hello_gtk.mo
|
|
452
|
+
- samples/locale/hr/LC_MESSAGES/hello_tk.mo
|
|
453
|
+
- samples/locale/hr/LC_MESSAGES/hello_glade2.mo
|
|
556
454
|
- samples/locale/hr/LC_MESSAGES/hello_plural.mo
|
|
557
|
-
- samples/locale/hr/LC_MESSAGES/hellotk.mo
|
|
558
|
-
- samples/locale/hr/LC_MESSAGES/helloglade2.mo
|
|
559
455
|
- samples/locale/lv
|
|
560
456
|
- samples/locale/lv/LC_MESSAGES
|
|
561
457
|
- samples/locale/lv/LC_MESSAGES/hello_noop.mo
|
|
562
458
|
- samples/locale/lv/LC_MESSAGES/hello.mo
|
|
563
459
|
- samples/locale/lv/LC_MESSAGES/hello2.mo
|
|
564
|
-
- samples/locale/lv/LC_MESSAGES/
|
|
460
|
+
- samples/locale/lv/LC_MESSAGES/hello_gtk.mo
|
|
461
|
+
- samples/locale/lv/LC_MESSAGES/hello_tk.mo
|
|
462
|
+
- samples/locale/lv/LC_MESSAGES/hello_glade2.mo
|
|
565
463
|
- samples/locale/lv/LC_MESSAGES/hello_plural.mo
|
|
566
|
-
- samples/locale/lv/LC_MESSAGES/hellotk.mo
|
|
567
|
-
- samples/locale/lv/LC_MESSAGES/helloglade2.mo
|
|
568
464
|
- samples/locale/it
|
|
569
465
|
- samples/locale/it/LC_MESSAGES
|
|
570
466
|
- samples/locale/it/LC_MESSAGES/hello_noop.mo
|
|
571
467
|
- samples/locale/it/LC_MESSAGES/hello.mo
|
|
572
468
|
- samples/locale/it/LC_MESSAGES/hello2.mo
|
|
573
|
-
- samples/locale/it/LC_MESSAGES/
|
|
469
|
+
- samples/locale/it/LC_MESSAGES/hello_gtk.mo
|
|
470
|
+
- samples/locale/it/LC_MESSAGES/hello_tk.mo
|
|
471
|
+
- samples/locale/it/LC_MESSAGES/hello_glade2.mo
|
|
574
472
|
- samples/locale/it/LC_MESSAGES/hello_plural.mo
|
|
575
|
-
- samples/locale/it/LC_MESSAGES/hellotk.mo
|
|
576
|
-
- samples/locale/it/LC_MESSAGES/helloglade2.mo
|
|
577
473
|
- samples/locale/pt_BR
|
|
578
474
|
- samples/locale/pt_BR/LC_MESSAGES
|
|
579
475
|
- samples/locale/pt_BR/LC_MESSAGES/hello_noop.mo
|
|
580
476
|
- samples/locale/pt_BR/LC_MESSAGES/hello.mo
|
|
581
477
|
- samples/locale/pt_BR/LC_MESSAGES/hello2.mo
|
|
582
|
-
- samples/locale/pt_BR/LC_MESSAGES/
|
|
478
|
+
- samples/locale/pt_BR/LC_MESSAGES/hello_gtk.mo
|
|
479
|
+
- samples/locale/pt_BR/LC_MESSAGES/hello_tk.mo
|
|
480
|
+
- samples/locale/pt_BR/LC_MESSAGES/hello_glade2.mo
|
|
583
481
|
- samples/locale/pt_BR/LC_MESSAGES/hello_plural.mo
|
|
584
|
-
- samples/locale/pt_BR/LC_MESSAGES/hellotk.mo
|
|
585
|
-
- samples/locale/pt_BR/LC_MESSAGES/helloglade2.mo
|
|
586
482
|
- samples/locale/ja
|
|
587
483
|
- samples/locale/ja/LC_MESSAGES
|
|
588
484
|
- samples/locale/ja/LC_MESSAGES/hello_noop.mo
|
|
589
485
|
- samples/locale/ja/LC_MESSAGES/hello.mo
|
|
590
486
|
- samples/locale/ja/LC_MESSAGES/hello2.mo
|
|
591
|
-
- samples/locale/ja/LC_MESSAGES/
|
|
487
|
+
- samples/locale/ja/LC_MESSAGES/hello_gtk.mo
|
|
488
|
+
- samples/locale/ja/LC_MESSAGES/hello_tk.mo
|
|
489
|
+
- samples/locale/ja/LC_MESSAGES/hello_glade2.mo
|
|
592
490
|
- samples/locale/ja/LC_MESSAGES/hello_plural.mo
|
|
593
|
-
- samples/locale/ja/LC_MESSAGES/hellotk.mo
|
|
594
|
-
- samples/locale/ja/LC_MESSAGES/helloglade2.mo
|
|
595
491
|
- samples/locale/zh_TW
|
|
596
492
|
- samples/locale/zh_TW/LC_MESSAGES
|
|
597
493
|
- samples/locale/zh_TW/LC_MESSAGES/hello_noop.mo
|
|
598
494
|
- samples/locale/zh_TW/LC_MESSAGES/hello.mo
|
|
599
495
|
- samples/locale/zh_TW/LC_MESSAGES/hello2.mo
|
|
600
|
-
- samples/locale/zh_TW/LC_MESSAGES/
|
|
496
|
+
- samples/locale/zh_TW/LC_MESSAGES/hello_gtk.mo
|
|
497
|
+
- samples/locale/zh_TW/LC_MESSAGES/hello_tk.mo
|
|
498
|
+
- samples/locale/zh_TW/LC_MESSAGES/hello_glade2.mo
|
|
601
499
|
- samples/locale/zh_TW/LC_MESSAGES/hello_plural.mo
|
|
602
|
-
- samples/locale/zh_TW/LC_MESSAGES/hellotk.mo
|
|
603
|
-
- samples/locale/zh_TW/LC_MESSAGES/helloglade2.mo
|
|
604
500
|
- samples/locale/ru
|
|
605
501
|
- samples/locale/ru/LC_MESSAGES
|
|
606
502
|
- samples/locale/ru/LC_MESSAGES/hello_noop.mo
|
|
607
503
|
- samples/locale/ru/LC_MESSAGES/hello.mo
|
|
608
504
|
- samples/locale/ru/LC_MESSAGES/hello2.mo
|
|
609
|
-
- samples/locale/ru/LC_MESSAGES/
|
|
505
|
+
- samples/locale/ru/LC_MESSAGES/hello_gtk.mo
|
|
506
|
+
- samples/locale/ru/LC_MESSAGES/hello_tk.mo
|
|
507
|
+
- samples/locale/ru/LC_MESSAGES/hello_glade2.mo
|
|
610
508
|
- samples/locale/ru/LC_MESSAGES/hello_plural.mo
|
|
611
|
-
- samples/locale/ru/LC_MESSAGES/hellotk.mo
|
|
612
|
-
- samples/locale/ru/LC_MESSAGES/helloglade2.mo
|
|
613
509
|
- samples/locale/bs
|
|
614
510
|
- samples/locale/bs/LC_MESSAGES
|
|
615
511
|
- samples/locale/bs/LC_MESSAGES/hello_noop.mo
|
|
616
512
|
- samples/locale/bs/LC_MESSAGES/hello.mo
|
|
617
513
|
- samples/locale/bs/LC_MESSAGES/hello2.mo
|
|
618
|
-
- samples/locale/bs/LC_MESSAGES/
|
|
514
|
+
- samples/locale/bs/LC_MESSAGES/hello_gtk.mo
|
|
515
|
+
- samples/locale/bs/LC_MESSAGES/hello_tk.mo
|
|
516
|
+
- samples/locale/bs/LC_MESSAGES/hello_glade2.mo
|
|
619
517
|
- samples/locale/bs/LC_MESSAGES/hello_plural.mo
|
|
620
|
-
- samples/locale/bs/LC_MESSAGES/hellotk.mo
|
|
621
|
-
- samples/locale/bs/LC_MESSAGES/helloglade2.mo
|
|
622
518
|
- samples/locale/de
|
|
623
519
|
- samples/locale/de/LC_MESSAGES
|
|
624
520
|
- samples/locale/de/LC_MESSAGES/hello_noop.mo
|
|
625
521
|
- samples/locale/de/LC_MESSAGES/hello.mo
|
|
626
522
|
- samples/locale/de/LC_MESSAGES/hello2.mo
|
|
627
|
-
- samples/locale/de/LC_MESSAGES/
|
|
523
|
+
- samples/locale/de/LC_MESSAGES/hello_gtk.mo
|
|
524
|
+
- samples/locale/de/LC_MESSAGES/hello_tk.mo
|
|
525
|
+
- samples/locale/de/LC_MESSAGES/hello_glade2.mo
|
|
628
526
|
- samples/locale/de/LC_MESSAGES/hello_plural.mo
|
|
629
|
-
- samples/locale/de/LC_MESSAGES/hellotk.mo
|
|
630
|
-
- samples/locale/de/LC_MESSAGES/helloglade2.mo
|
|
631
527
|
- samples/locale/ca
|
|
632
528
|
- samples/locale/ca/LC_MESSAGES
|
|
633
529
|
- samples/locale/ca/LC_MESSAGES/hello_noop.mo
|
|
634
530
|
- samples/locale/ca/LC_MESSAGES/hello.mo
|
|
635
531
|
- samples/locale/ca/LC_MESSAGES/hello2.mo
|
|
636
|
-
- samples/locale/ca/LC_MESSAGES/
|
|
532
|
+
- samples/locale/ca/LC_MESSAGES/hello_gtk.mo
|
|
533
|
+
- samples/locale/ca/LC_MESSAGES/hello_tk.mo
|
|
534
|
+
- samples/locale/ca/LC_MESSAGES/hello_glade2.mo
|
|
637
535
|
- samples/locale/ca/LC_MESSAGES/hello_plural.mo
|
|
638
|
-
- samples/locale/ca/LC_MESSAGES/hellotk.mo
|
|
639
|
-
- samples/locale/ca/LC_MESSAGES/helloglade2.mo
|
|
640
|
-
- samples/helloglade2.rb
|
|
641
|
-
- samples/hellogtk.rb
|
|
642
536
|
- samples/hello2.rb
|
|
643
|
-
- samples/
|
|
537
|
+
- samples/hello_glade2.rb
|
|
644
538
|
- samples/README
|
|
645
|
-
- samples/
|
|
646
|
-
- samples/rails/po
|
|
647
|
-
- samples/rails/po/es
|
|
648
|
-
- samples/rails/po/es/blog.po
|
|
649
|
-
- samples/rails/po/el
|
|
650
|
-
- samples/rails/po/el/blog.po
|
|
651
|
-
- samples/rails/po/blog.pot
|
|
652
|
-
- samples/rails/po/cs
|
|
653
|
-
- samples/rails/po/cs/blog.po
|
|
654
|
-
- samples/rails/po/ko
|
|
655
|
-
- samples/rails/po/ko/blog.po
|
|
656
|
-
- samples/rails/po/sr
|
|
657
|
-
- samples/rails/po/sr/blog.po
|
|
658
|
-
- samples/rails/po/nb
|
|
659
|
-
- samples/rails/po/nb/blog.po
|
|
660
|
-
- samples/rails/po/zh
|
|
661
|
-
- samples/rails/po/zh/blog.po
|
|
662
|
-
- samples/rails/po/eo
|
|
663
|
-
- samples/rails/po/eo/blog.po
|
|
664
|
-
- samples/rails/po/vi
|
|
665
|
-
- samples/rails/po/vi/blog.po
|
|
666
|
-
- samples/rails/po/nl
|
|
667
|
-
- samples/rails/po/nl/blog.po
|
|
668
|
-
- samples/rails/po/fr
|
|
669
|
-
- samples/rails/po/fr/blog.po
|
|
670
|
-
- samples/rails/po/bg
|
|
671
|
-
- samples/rails/po/bg/blog.po
|
|
672
|
-
- samples/rails/po/hu
|
|
673
|
-
- samples/rails/po/hu/blog.po
|
|
674
|
-
- samples/rails/po/ua
|
|
675
|
-
- samples/rails/po/ua/blog.po
|
|
676
|
-
- samples/rails/po/hr
|
|
677
|
-
- samples/rails/po/hr/blog.po
|
|
678
|
-
- samples/rails/po/lv
|
|
679
|
-
- samples/rails/po/lv/blog.po
|
|
680
|
-
- samples/rails/po/it
|
|
681
|
-
- samples/rails/po/it/blog.po
|
|
682
|
-
- samples/rails/po/pt_BR
|
|
683
|
-
- samples/rails/po/pt_BR/blog.po
|
|
684
|
-
- samples/rails/po/ja
|
|
685
|
-
- samples/rails/po/ja/blog.po
|
|
686
|
-
- samples/rails/po/zh_TW
|
|
687
|
-
- samples/rails/po/zh_TW/blog.po
|
|
688
|
-
- samples/rails/po/en
|
|
689
|
-
- samples/rails/po/en/blog.po
|
|
690
|
-
- samples/rails/po/ru
|
|
691
|
-
- samples/rails/po/ru/blog.po
|
|
692
|
-
- samples/rails/po/bs
|
|
693
|
-
- samples/rails/po/bs/blog.po
|
|
694
|
-
- samples/rails/po/de
|
|
695
|
-
- samples/rails/po/de/blog.po
|
|
696
|
-
- samples/rails/po/ca
|
|
697
|
-
- samples/rails/po/ca/blog.po
|
|
698
|
-
- samples/rails/script
|
|
699
|
-
- samples/rails/script/plugin
|
|
700
|
-
- samples/rails/script/about
|
|
701
|
-
- samples/rails/script/generate
|
|
702
|
-
- samples/rails/script/breakpointer
|
|
703
|
-
- samples/rails/script/process
|
|
704
|
-
- samples/rails/script/process/spinner
|
|
705
|
-
- samples/rails/script/process/spawner
|
|
706
|
-
- samples/rails/script/process/reaper
|
|
707
|
-
- samples/rails/script/performance
|
|
708
|
-
- samples/rails/script/performance/profiler
|
|
709
|
-
- samples/rails/script/performance/benchmarker
|
|
710
|
-
- samples/rails/script/server
|
|
711
|
-
- samples/rails/script/console
|
|
712
|
-
- samples/rails/script/runner
|
|
713
|
-
- samples/rails/script/destroy
|
|
714
|
-
- samples/rails/public
|
|
715
|
-
- samples/rails/public/index.html
|
|
716
|
-
- samples/rails/public/dispatch.rb
|
|
717
|
-
- samples/rails/public/images
|
|
718
|
-
- samples/rails/public/images/rails.png
|
|
719
|
-
- samples/rails/public/robots.txt
|
|
720
|
-
- samples/rails/public/favicon.ico
|
|
721
|
-
- samples/rails/public/dispatch.fcgi
|
|
722
|
-
- samples/rails/public/500.html
|
|
723
|
-
- samples/rails/public/404.html
|
|
724
|
-
- samples/rails/public/422.html
|
|
725
|
-
- samples/rails/public/javascripts
|
|
726
|
-
- samples/rails/public/javascripts/effects.js
|
|
727
|
-
- samples/rails/public/javascripts/application.js
|
|
728
|
-
- samples/rails/public/javascripts/prototype.js
|
|
729
|
-
- samples/rails/public/javascripts/controls.js
|
|
730
|
-
- samples/rails/public/javascripts/dragdrop.js
|
|
731
|
-
- samples/rails/public/stylesheets
|
|
732
|
-
- samples/rails/public/stylesheets/scaffold.css
|
|
733
|
-
- samples/rails/public/stylesheets/blog.css
|
|
734
|
-
- samples/rails/public/dispatch.cgi
|
|
735
|
-
- samples/rails/lib
|
|
736
|
-
- samples/rails/lib/tasks
|
|
737
|
-
- samples/rails/lib/tasks/gettext.rake
|
|
738
|
-
- samples/rails/locale
|
|
739
|
-
- samples/rails/locale/es
|
|
740
|
-
- samples/rails/locale/es/LC_MESSAGES
|
|
741
|
-
- samples/rails/locale/es/LC_MESSAGES/blog.mo
|
|
742
|
-
- samples/rails/locale/el
|
|
743
|
-
- samples/rails/locale/el/LC_MESSAGES
|
|
744
|
-
- samples/rails/locale/el/LC_MESSAGES/blog.mo
|
|
745
|
-
- samples/rails/locale/cs
|
|
746
|
-
- samples/rails/locale/cs/LC_MESSAGES
|
|
747
|
-
- samples/rails/locale/cs/LC_MESSAGES/blog.mo
|
|
748
|
-
- samples/rails/locale/ko
|
|
749
|
-
- samples/rails/locale/ko/LC_MESSAGES
|
|
750
|
-
- samples/rails/locale/ko/LC_MESSAGES/blog.mo
|
|
751
|
-
- samples/rails/locale/sr
|
|
752
|
-
- samples/rails/locale/sr/LC_MESSAGES
|
|
753
|
-
- samples/rails/locale/sr/LC_MESSAGES/blog.mo
|
|
754
|
-
- samples/rails/locale/nb
|
|
755
|
-
- samples/rails/locale/nb/LC_MESSAGES
|
|
756
|
-
- samples/rails/locale/nb/LC_MESSAGES/blog.mo
|
|
757
|
-
- samples/rails/locale/zh
|
|
758
|
-
- samples/rails/locale/zh/LC_MESSAGES
|
|
759
|
-
- samples/rails/locale/zh/LC_MESSAGES/blog.mo
|
|
760
|
-
- samples/rails/locale/eo
|
|
761
|
-
- samples/rails/locale/eo/LC_MESSAGES
|
|
762
|
-
- samples/rails/locale/eo/LC_MESSAGES/blog.mo
|
|
763
|
-
- samples/rails/locale/vi
|
|
764
|
-
- samples/rails/locale/vi/LC_MESSAGES
|
|
765
|
-
- samples/rails/locale/vi/LC_MESSAGES/blog.mo
|
|
766
|
-
- samples/rails/locale/nl
|
|
767
|
-
- samples/rails/locale/nl/LC_MESSAGES
|
|
768
|
-
- samples/rails/locale/nl/LC_MESSAGES/blog.mo
|
|
769
|
-
- samples/rails/locale/fr
|
|
770
|
-
- samples/rails/locale/fr/LC_MESSAGES
|
|
771
|
-
- samples/rails/locale/fr/LC_MESSAGES/blog.mo
|
|
772
|
-
- samples/rails/locale/bg
|
|
773
|
-
- samples/rails/locale/bg/LC_MESSAGES
|
|
774
|
-
- samples/rails/locale/bg/LC_MESSAGES/blog.mo
|
|
775
|
-
- samples/rails/locale/hu
|
|
776
|
-
- samples/rails/locale/hu/LC_MESSAGES
|
|
777
|
-
- samples/rails/locale/hu/LC_MESSAGES/blog.mo
|
|
778
|
-
- samples/rails/locale/ua
|
|
779
|
-
- samples/rails/locale/ua/LC_MESSAGES
|
|
780
|
-
- samples/rails/locale/ua/LC_MESSAGES/blog.mo
|
|
781
|
-
- samples/rails/locale/hr
|
|
782
|
-
- samples/rails/locale/hr/LC_MESSAGES
|
|
783
|
-
- samples/rails/locale/hr/LC_MESSAGES/blog.mo
|
|
784
|
-
- samples/rails/locale/lv
|
|
785
|
-
- samples/rails/locale/lv/LC_MESSAGES
|
|
786
|
-
- samples/rails/locale/lv/LC_MESSAGES/blog.mo
|
|
787
|
-
- samples/rails/locale/it
|
|
788
|
-
- samples/rails/locale/it/LC_MESSAGES
|
|
789
|
-
- samples/rails/locale/it/LC_MESSAGES/blog.mo
|
|
790
|
-
- samples/rails/locale/pt_BR
|
|
791
|
-
- samples/rails/locale/pt_BR/LC_MESSAGES
|
|
792
|
-
- samples/rails/locale/pt_BR/LC_MESSAGES/blog.mo
|
|
793
|
-
- samples/rails/locale/ja
|
|
794
|
-
- samples/rails/locale/ja/LC_MESSAGES
|
|
795
|
-
- samples/rails/locale/ja/LC_MESSAGES/blog.mo
|
|
796
|
-
- samples/rails/locale/zh_TW
|
|
797
|
-
- samples/rails/locale/zh_TW/LC_MESSAGES
|
|
798
|
-
- samples/rails/locale/zh_TW/LC_MESSAGES/blog.mo
|
|
799
|
-
- samples/rails/locale/en
|
|
800
|
-
- samples/rails/locale/en/LC_MESSAGES
|
|
801
|
-
- samples/rails/locale/en/LC_MESSAGES/blog.mo
|
|
802
|
-
- samples/rails/locale/ru
|
|
803
|
-
- samples/rails/locale/ru/LC_MESSAGES
|
|
804
|
-
- samples/rails/locale/ru/LC_MESSAGES/blog.mo
|
|
805
|
-
- samples/rails/locale/bs
|
|
806
|
-
- samples/rails/locale/bs/LC_MESSAGES
|
|
807
|
-
- samples/rails/locale/bs/LC_MESSAGES/blog.mo
|
|
808
|
-
- samples/rails/locale/de
|
|
809
|
-
- samples/rails/locale/de/LC_MESSAGES
|
|
810
|
-
- samples/rails/locale/de/LC_MESSAGES/blog.mo
|
|
811
|
-
- samples/rails/locale/ca
|
|
812
|
-
- samples/rails/locale/ca/LC_MESSAGES
|
|
813
|
-
- samples/rails/locale/ca/LC_MESSAGES/blog.mo
|
|
814
|
-
- samples/rails/db
|
|
815
|
-
- samples/rails/db/schema.rb
|
|
816
|
-
- samples/rails/db/migrate
|
|
817
|
-
- samples/rails/db/migrate/001_create_articles.rb
|
|
818
|
-
- samples/rails/README
|
|
819
|
-
- samples/rails/test
|
|
820
|
-
- samples/rails/test/fixtures
|
|
821
|
-
- samples/rails/test/fixtures/articles.yml
|
|
822
|
-
- samples/rails/test/functional
|
|
823
|
-
- samples/rails/test/functional/articles_controller_test.rb
|
|
824
|
-
- samples/rails/test/test_helper.rb
|
|
825
|
-
- samples/rails/test/unit
|
|
826
|
-
- samples/rails/test/unit/article_test.rb
|
|
827
|
-
- samples/rails/config
|
|
828
|
-
- samples/rails/config/initializers
|
|
829
|
-
- samples/rails/config/initializers/mime_types.rb
|
|
830
|
-
- samples/rails/config/initializers/inflections.rb
|
|
831
|
-
- samples/rails/config/boot.rb
|
|
832
|
-
- samples/rails/config/routes.rb
|
|
833
|
-
- samples/rails/config/environment.rb
|
|
834
|
-
- samples/rails/config/database.yml
|
|
835
|
-
- samples/rails/config/environments
|
|
836
|
-
- samples/rails/config/environments/test.rb
|
|
837
|
-
- samples/rails/config/environments/development.rb
|
|
838
|
-
- samples/rails/config/environments/production.rb
|
|
839
|
-
- samples/rails/app
|
|
840
|
-
- samples/rails/app/helpers
|
|
841
|
-
- samples/rails/app/helpers/application_helper.rb
|
|
842
|
-
- samples/rails/app/helpers/articles_helper.rb
|
|
843
|
-
- samples/rails/app/views
|
|
844
|
-
- samples/rails/app/views/articles
|
|
845
|
-
- samples/rails/app/views/articles/edit.html.erb
|
|
846
|
-
- samples/rails/app/views/articles/show.html.erb
|
|
847
|
-
- samples/rails/app/views/articles/new.html.erb
|
|
848
|
-
- samples/rails/app/views/articles/index.html.erb
|
|
849
|
-
- samples/rails/app/views/layouts
|
|
850
|
-
- samples/rails/app/views/layouts/articles.html.erb
|
|
851
|
-
- samples/rails/app/models
|
|
852
|
-
- samples/rails/app/models/article.rb
|
|
853
|
-
- samples/rails/app/controllers
|
|
854
|
-
- samples/rails/app/controllers/application.rb
|
|
855
|
-
- samples/rails/app/controllers/articles_controller.rb
|
|
856
|
-
- samples/rails/vendor
|
|
857
|
-
- samples/rails/vendor/plugins
|
|
858
|
-
- samples/rails/vendor/plugins/gettext
|
|
859
|
-
- samples/rails/vendor/plugins/gettext/po
|
|
860
|
-
- samples/rails/vendor/plugins/gettext/po/es
|
|
861
|
-
- samples/rails/vendor/plugins/gettext/po/es/gettext_plugin.po
|
|
862
|
-
- samples/rails/vendor/plugins/gettext/po/el
|
|
863
|
-
- samples/rails/vendor/plugins/gettext/po/el/gettext_plugin.po
|
|
864
|
-
- samples/rails/vendor/plugins/gettext/po/cs
|
|
865
|
-
- samples/rails/vendor/plugins/gettext/po/cs/gettext_plugin.po
|
|
866
|
-
- samples/rails/vendor/plugins/gettext/po/ko
|
|
867
|
-
- samples/rails/vendor/plugins/gettext/po/ko/gettext_plugin.po
|
|
868
|
-
- samples/rails/vendor/plugins/gettext/po/sr
|
|
869
|
-
- samples/rails/vendor/plugins/gettext/po/sr/gettext_plugin.po
|
|
870
|
-
- samples/rails/vendor/plugins/gettext/po/nb
|
|
871
|
-
- samples/rails/vendor/plugins/gettext/po/nb/gettext_plugin.po
|
|
872
|
-
- samples/rails/vendor/plugins/gettext/po/zh
|
|
873
|
-
- samples/rails/vendor/plugins/gettext/po/zh/gettext_plugin.po
|
|
874
|
-
- samples/rails/vendor/plugins/gettext/po/eo
|
|
875
|
-
- samples/rails/vendor/plugins/gettext/po/eo/gettext_plugin.po
|
|
876
|
-
- samples/rails/vendor/plugins/gettext/po/vi
|
|
877
|
-
- samples/rails/vendor/plugins/gettext/po/vi/gettext_plugin.po
|
|
878
|
-
- samples/rails/vendor/plugins/gettext/po/nl
|
|
879
|
-
- samples/rails/vendor/plugins/gettext/po/nl/gettext_plugin.po
|
|
880
|
-
- samples/rails/vendor/plugins/gettext/po/fr
|
|
881
|
-
- samples/rails/vendor/plugins/gettext/po/fr/gettext_plugin.po
|
|
882
|
-
- samples/rails/vendor/plugins/gettext/po/bg
|
|
883
|
-
- samples/rails/vendor/plugins/gettext/po/bg/gettext_plugin.po
|
|
884
|
-
- samples/rails/vendor/plugins/gettext/po/hu
|
|
885
|
-
- samples/rails/vendor/plugins/gettext/po/hu/gettext_plugin.po
|
|
886
|
-
- samples/rails/vendor/plugins/gettext/po/ua
|
|
887
|
-
- samples/rails/vendor/plugins/gettext/po/ua/gettext_plugin.po
|
|
888
|
-
- samples/rails/vendor/plugins/gettext/po/hr
|
|
889
|
-
- samples/rails/vendor/plugins/gettext/po/hr/gettext_plugin.po
|
|
890
|
-
- samples/rails/vendor/plugins/gettext/po/lv
|
|
891
|
-
- samples/rails/vendor/plugins/gettext/po/lv/gettext_plugin.po
|
|
892
|
-
- samples/rails/vendor/plugins/gettext/po/it
|
|
893
|
-
- samples/rails/vendor/plugins/gettext/po/it/gettext_plugin.po
|
|
894
|
-
- samples/rails/vendor/plugins/gettext/po/pt_BR
|
|
895
|
-
- samples/rails/vendor/plugins/gettext/po/pt_BR/gettext_plugin.po
|
|
896
|
-
- samples/rails/vendor/plugins/gettext/po/ja
|
|
897
|
-
- samples/rails/vendor/plugins/gettext/po/ja/gettext_plugin.po
|
|
898
|
-
- samples/rails/vendor/plugins/gettext/po/zh_TW
|
|
899
|
-
- samples/rails/vendor/plugins/gettext/po/zh_TW/gettext_plugin.po
|
|
900
|
-
- samples/rails/vendor/plugins/gettext/po/ru
|
|
901
|
-
- samples/rails/vendor/plugins/gettext/po/ru/gettext_plugin.po
|
|
902
|
-
- samples/rails/vendor/plugins/gettext/po/bs
|
|
903
|
-
- samples/rails/vendor/plugins/gettext/po/bs/gettext_plugin.po
|
|
904
|
-
- samples/rails/vendor/plugins/gettext/po/de
|
|
905
|
-
- samples/rails/vendor/plugins/gettext/po/de/gettext_plugin.po
|
|
906
|
-
- samples/rails/vendor/plugins/gettext/po/ca
|
|
907
|
-
- samples/rails/vendor/plugins/gettext/po/ca/gettext_plugin.po
|
|
908
|
-
- samples/rails/vendor/plugins/gettext/po/gettext_plugin.pot
|
|
909
|
-
- samples/rails/vendor/plugins/gettext/init.rb
|
|
910
|
-
- samples/rails/vendor/plugins/gettext/lib
|
|
911
|
-
- samples/rails/vendor/plugins/gettext/lib/gettext_plugin.rb
|
|
912
|
-
- samples/rails/vendor/plugins/gettext/locale
|
|
913
|
-
- samples/rails/vendor/plugins/gettext/locale/es
|
|
914
|
-
- samples/rails/vendor/plugins/gettext/locale/es/LC_MESSAGES
|
|
915
|
-
- samples/rails/vendor/plugins/gettext/locale/es/LC_MESSAGES/gettext_plugin.mo
|
|
916
|
-
- samples/rails/vendor/plugins/gettext/locale/el
|
|
917
|
-
- samples/rails/vendor/plugins/gettext/locale/el/LC_MESSAGES
|
|
918
|
-
- samples/rails/vendor/plugins/gettext/locale/el/LC_MESSAGES/gettext_plugin.mo
|
|
919
|
-
- samples/rails/vendor/plugins/gettext/locale/cs
|
|
920
|
-
- samples/rails/vendor/plugins/gettext/locale/cs/LC_MESSAGES
|
|
921
|
-
- samples/rails/vendor/plugins/gettext/locale/cs/LC_MESSAGES/gettext_plugin.mo
|
|
922
|
-
- samples/rails/vendor/plugins/gettext/locale/ko
|
|
923
|
-
- samples/rails/vendor/plugins/gettext/locale/ko/LC_MESSAGES
|
|
924
|
-
- samples/rails/vendor/plugins/gettext/locale/ko/LC_MESSAGES/gettext_plugin.mo
|
|
925
|
-
- samples/rails/vendor/plugins/gettext/locale/sr
|
|
926
|
-
- samples/rails/vendor/plugins/gettext/locale/sr/LC_MESSAGES
|
|
927
|
-
- samples/rails/vendor/plugins/gettext/locale/sr/LC_MESSAGES/gettext_plugin.mo
|
|
928
|
-
- samples/rails/vendor/plugins/gettext/locale/nb
|
|
929
|
-
- samples/rails/vendor/plugins/gettext/locale/nb/LC_MESSAGES
|
|
930
|
-
- samples/rails/vendor/plugins/gettext/locale/nb/LC_MESSAGES/gettext_plugin.mo
|
|
931
|
-
- samples/rails/vendor/plugins/gettext/locale/zh
|
|
932
|
-
- samples/rails/vendor/plugins/gettext/locale/zh/LC_MESSAGES
|
|
933
|
-
- samples/rails/vendor/plugins/gettext/locale/zh/LC_MESSAGES/gettext_plugin.mo
|
|
934
|
-
- samples/rails/vendor/plugins/gettext/locale/eo
|
|
935
|
-
- samples/rails/vendor/plugins/gettext/locale/eo/LC_MESSAGES
|
|
936
|
-
- samples/rails/vendor/plugins/gettext/locale/eo/LC_MESSAGES/gettext_plugin.mo
|
|
937
|
-
- samples/rails/vendor/plugins/gettext/locale/vi
|
|
938
|
-
- samples/rails/vendor/plugins/gettext/locale/vi/LC_MESSAGES
|
|
939
|
-
- samples/rails/vendor/plugins/gettext/locale/vi/LC_MESSAGES/gettext_plugin.mo
|
|
940
|
-
- samples/rails/vendor/plugins/gettext/locale/nl
|
|
941
|
-
- samples/rails/vendor/plugins/gettext/locale/nl/LC_MESSAGES
|
|
942
|
-
- samples/rails/vendor/plugins/gettext/locale/nl/LC_MESSAGES/gettext_plugin.mo
|
|
943
|
-
- samples/rails/vendor/plugins/gettext/locale/fr
|
|
944
|
-
- samples/rails/vendor/plugins/gettext/locale/fr/LC_MESSAGES
|
|
945
|
-
- samples/rails/vendor/plugins/gettext/locale/fr/LC_MESSAGES/gettext_plugin.mo
|
|
946
|
-
- samples/rails/vendor/plugins/gettext/locale/bg
|
|
947
|
-
- samples/rails/vendor/plugins/gettext/locale/bg/LC_MESSAGES
|
|
948
|
-
- samples/rails/vendor/plugins/gettext/locale/bg/LC_MESSAGES/gettext_plugin.mo
|
|
949
|
-
- samples/rails/vendor/plugins/gettext/locale/hu
|
|
950
|
-
- samples/rails/vendor/plugins/gettext/locale/hu/LC_MESSAGES
|
|
951
|
-
- samples/rails/vendor/plugins/gettext/locale/hu/LC_MESSAGES/gettext_plugin.mo
|
|
952
|
-
- samples/rails/vendor/plugins/gettext/locale/ua
|
|
953
|
-
- samples/rails/vendor/plugins/gettext/locale/ua/LC_MESSAGES
|
|
954
|
-
- samples/rails/vendor/plugins/gettext/locale/ua/LC_MESSAGES/gettext_plugin.mo
|
|
955
|
-
- samples/rails/vendor/plugins/gettext/locale/hr
|
|
956
|
-
- samples/rails/vendor/plugins/gettext/locale/hr/LC_MESSAGES
|
|
957
|
-
- samples/rails/vendor/plugins/gettext/locale/hr/LC_MESSAGES/gettext_plugin.mo
|
|
958
|
-
- samples/rails/vendor/plugins/gettext/locale/lv
|
|
959
|
-
- samples/rails/vendor/plugins/gettext/locale/lv/LC_MESSAGES
|
|
960
|
-
- samples/rails/vendor/plugins/gettext/locale/lv/LC_MESSAGES/gettext_plugin.mo
|
|
961
|
-
- samples/rails/vendor/plugins/gettext/locale/it
|
|
962
|
-
- samples/rails/vendor/plugins/gettext/locale/it/LC_MESSAGES
|
|
963
|
-
- samples/rails/vendor/plugins/gettext/locale/it/LC_MESSAGES/gettext_plugin.mo
|
|
964
|
-
- samples/rails/vendor/plugins/gettext/locale/pt_BR
|
|
965
|
-
- samples/rails/vendor/plugins/gettext/locale/pt_BR/LC_MESSAGES
|
|
966
|
-
- samples/rails/vendor/plugins/gettext/locale/pt_BR/LC_MESSAGES/gettext_plugin.mo
|
|
967
|
-
- samples/rails/vendor/plugins/gettext/locale/ja
|
|
968
|
-
- samples/rails/vendor/plugins/gettext/locale/ja/LC_MESSAGES
|
|
969
|
-
- samples/rails/vendor/plugins/gettext/locale/ja/LC_MESSAGES/gettext_plugin.mo
|
|
970
|
-
- samples/rails/vendor/plugins/gettext/locale/zh_TW
|
|
971
|
-
- samples/rails/vendor/plugins/gettext/locale/zh_TW/LC_MESSAGES
|
|
972
|
-
- samples/rails/vendor/plugins/gettext/locale/zh_TW/LC_MESSAGES/gettext_plugin.mo
|
|
973
|
-
- samples/rails/vendor/plugins/gettext/locale/ru
|
|
974
|
-
- samples/rails/vendor/plugins/gettext/locale/ru/LC_MESSAGES
|
|
975
|
-
- samples/rails/vendor/plugins/gettext/locale/ru/LC_MESSAGES/gettext_plugin.mo
|
|
976
|
-
- samples/rails/vendor/plugins/gettext/locale/bs
|
|
977
|
-
- samples/rails/vendor/plugins/gettext/locale/bs/LC_MESSAGES
|
|
978
|
-
- samples/rails/vendor/plugins/gettext/locale/bs/LC_MESSAGES/gettext_plugin.mo
|
|
979
|
-
- samples/rails/vendor/plugins/gettext/locale/de
|
|
980
|
-
- samples/rails/vendor/plugins/gettext/locale/de/LC_MESSAGES
|
|
981
|
-
- samples/rails/vendor/plugins/gettext/locale/de/LC_MESSAGES/gettext_plugin.mo
|
|
982
|
-
- samples/rails/vendor/plugins/gettext/locale/ca
|
|
983
|
-
- samples/rails/vendor/plugins/gettext/locale/ca/LC_MESSAGES
|
|
984
|
-
- samples/rails/vendor/plugins/gettext/locale/ca/LC_MESSAGES/gettext_plugin.mo
|
|
985
|
-
- samples/rails/vendor/plugins/gettext/README
|
|
986
|
-
- samples/rails/vendor/plugins/gettext/Rakefile
|
|
987
|
-
- samples/rails/Rakefile
|
|
988
|
-
- samples/hellotk.rb
|
|
539
|
+
- samples/hello_tk.rb
|
|
989
540
|
- samples/makemo.rb
|
|
990
541
|
- samples/cgi
|
|
991
542
|
- samples/cgi/po
|
|
@@ -1269,44 +820,34 @@ files:
|
|
|
1269
820
|
- samples/cgi/README
|
|
1270
821
|
- samples/cgi/helloerb2.cgi
|
|
1271
822
|
- samples/cgi/Rakefile
|
|
1272
|
-
- setup.rb
|
|
1273
823
|
- COPYING
|
|
824
|
+
- ChangeLog-1
|
|
1274
825
|
- lib
|
|
1275
|
-
- lib/locale
|
|
1276
|
-
- lib/locale/base.rb
|
|
1277
|
-
- lib/locale/object.rb
|
|
1278
|
-
- lib/locale/jruby.rb
|
|
1279
|
-
- lib/locale/posix.rb
|
|
1280
|
-
- lib/locale/win32_table.rb
|
|
1281
|
-
- lib/locale/win32.rb
|
|
1282
|
-
- lib/locale/cgi.rb
|
|
1283
826
|
- lib/gettext
|
|
827
|
+
- lib/gettext/tools.rb
|
|
1284
828
|
- lib/gettext/poparser.rb
|
|
1285
829
|
- lib/gettext/textdomain.rb
|
|
1286
|
-
- lib/gettext/
|
|
1287
|
-
- lib/gettext/rails_compat.rb
|
|
830
|
+
- lib/gettext/textdomain_manager.rb
|
|
1288
831
|
- lib/gettext/utils.rb
|
|
1289
|
-
- lib/gettext/iconv.rb
|
|
1290
|
-
- lib/gettext/rails.rb
|
|
1291
832
|
- lib/gettext/version.rb
|
|
1292
|
-
- lib/gettext/
|
|
1293
|
-
- lib/gettext/
|
|
1294
|
-
- lib/gettext/
|
|
1295
|
-
- lib/gettext/
|
|
1296
|
-
- lib/gettext/
|
|
1297
|
-
- lib/gettext/
|
|
833
|
+
- lib/gettext/mofile.rb
|
|
834
|
+
- lib/gettext/tools
|
|
835
|
+
- lib/gettext/tools/rgettext.rb
|
|
836
|
+
- lib/gettext/tools/rmsgfmt.rb
|
|
837
|
+
- lib/gettext/tools/rmsgmerge.rb
|
|
838
|
+
- lib/gettext/core_ext
|
|
839
|
+
- lib/gettext/core_ext/string.rb
|
|
840
|
+
- lib/gettext/core_ext/iconv.rb
|
|
841
|
+
- lib/gettext/class_info.rb
|
|
1298
842
|
- lib/gettext/cgi.rb
|
|
1299
|
-
- lib/gettext/
|
|
843
|
+
- lib/gettext/locale_path.rb
|
|
1300
844
|
- lib/gettext/parser
|
|
1301
845
|
- lib/gettext/parser/glade.rb
|
|
1302
846
|
- lib/gettext/parser/ruby.rb
|
|
1303
|
-
- lib/gettext/parser/active_record.rb
|
|
1304
847
|
- lib/gettext/parser/erb.rb
|
|
1305
|
-
- lib/gettext/erb.rb
|
|
1306
|
-
- lib/locale.rb
|
|
1307
848
|
- lib/gettext.rb
|
|
1308
|
-
-
|
|
1309
|
-
-
|
|
849
|
+
- README.rdoc
|
|
850
|
+
- gettext.gemspec
|
|
1310
851
|
- test
|
|
1311
852
|
- test/test_gettext.rb
|
|
1312
853
|
- test/test_parser.rb
|
|
@@ -1328,16 +869,15 @@ files:
|
|
|
1328
869
|
- test/po/li/plural.po
|
|
1329
870
|
- test/po/ja
|
|
1330
871
|
- test/po/ja/test6.po
|
|
1331
|
-
- test/po/ja/
|
|
1332
|
-
- test/po/ja/
|
|
1333
|
-
- test/po/ja/
|
|
872
|
+
- test/po/ja/pgettext.po
|
|
873
|
+
- test/po/ja/sgettext.po
|
|
874
|
+
- test/po/ja/nsgettext.po
|
|
1334
875
|
- test/po/ja/plural_error.po
|
|
876
|
+
- test/po/ja/rubyparser.po
|
|
1335
877
|
- test/po/ja/plural.po
|
|
1336
878
|
- test/po/ja/test2.po
|
|
1337
|
-
- test/po/ja/
|
|
879
|
+
- test/po/ja/npgettext.po
|
|
1338
880
|
- test/po/ja/test1.po
|
|
1339
|
-
- test/po/ja/test_npgettext.po
|
|
1340
|
-
- test/po/ja/test_nsgettext.po
|
|
1341
881
|
- test/po/cr
|
|
1342
882
|
- test/po/cr/plural.po
|
|
1343
883
|
- test/po/ir
|
|
@@ -1345,25 +885,10 @@ files:
|
|
|
1345
885
|
- test/po/la
|
|
1346
886
|
- test/po/la/plural_error.po
|
|
1347
887
|
- test/po/la/plural.po
|
|
1348
|
-
- test/
|
|
1349
|
-
- test/
|
|
1350
|
-
- test/
|
|
1351
|
-
- test/
|
|
1352
|
-
- test/test.bat
|
|
1353
|
-
- test/fixtures
|
|
1354
|
-
- test/fixtures/developers.yml
|
|
1355
|
-
- test/fixtures/user.rb
|
|
1356
|
-
- test/fixtures/topic.rb
|
|
1357
|
-
- test/fixtures/topics.yml
|
|
1358
|
-
- test/fixtures/book.rb
|
|
1359
|
-
- test/fixtures/people.yml
|
|
1360
|
-
- test/fixtures/wizard.rb
|
|
1361
|
-
- test/fixtures/inept_wizard.rb
|
|
1362
|
-
- test/fixtures/reply.rb
|
|
1363
|
-
- test/fixtures/developer.rb
|
|
1364
|
-
- test/test_gladeparser.glade
|
|
1365
|
-
- test/test_locale.rb
|
|
1366
|
-
- test/test.sh
|
|
888
|
+
- test/test_locale_path.rb
|
|
889
|
+
- test/test_class_info.rb
|
|
890
|
+
- test/test_thread.rb
|
|
891
|
+
- test/test_textdomain_toplevel.rb
|
|
1367
892
|
- test/locale
|
|
1368
893
|
- test/locale/po
|
|
1369
894
|
- test/locale/po/LC_MESSAGES
|
|
@@ -1387,16 +912,15 @@ files:
|
|
|
1387
912
|
- test/locale/li/LC_MESSAGES/plural.mo
|
|
1388
913
|
- test/locale/ja
|
|
1389
914
|
- test/locale/ja/LC_MESSAGES
|
|
1390
|
-
- test/locale/ja/LC_MESSAGES/test_nsgettext.mo
|
|
1391
915
|
- test/locale/ja/LC_MESSAGES/test6.mo
|
|
1392
|
-
- test/locale/ja/LC_MESSAGES/active_record.mo
|
|
1393
916
|
- test/locale/ja/LC_MESSAGES/plural_error.mo
|
|
917
|
+
- test/locale/ja/LC_MESSAGES/pgettext.mo
|
|
1394
918
|
- test/locale/ja/LC_MESSAGES/test2.mo
|
|
1395
|
-
- test/locale/ja/LC_MESSAGES/
|
|
1396
|
-
- test/locale/ja/LC_MESSAGES/test_pgettext.mo
|
|
919
|
+
- test/locale/ja/LC_MESSAGES/sgettext.mo
|
|
1397
920
|
- test/locale/ja/LC_MESSAGES/plural.mo
|
|
1398
|
-
- test/locale/ja/LC_MESSAGES/
|
|
1399
|
-
- test/locale/ja/LC_MESSAGES/
|
|
921
|
+
- test/locale/ja/LC_MESSAGES/npgettext.mo
|
|
922
|
+
- test/locale/ja/LC_MESSAGES/rubyparser.mo
|
|
923
|
+
- test/locale/ja/LC_MESSAGES/nsgettext.mo
|
|
1400
924
|
- test/locale/ja/LC_MESSAGES/test1.mo
|
|
1401
925
|
- test/locale/cr
|
|
1402
926
|
- test/locale/cr/LC_MESSAGES
|
|
@@ -1408,168 +932,40 @@ files:
|
|
|
1408
932
|
- test/locale/la/LC_MESSAGES
|
|
1409
933
|
- test/locale/la/LC_MESSAGES/plural_error.mo
|
|
1410
934
|
- test/locale/la/LC_MESSAGES/plural.mo
|
|
1411
|
-
- test/db
|
|
1412
|
-
- test/db/mysql.drop.sql
|
|
1413
|
-
- test/db/mysql.sql
|
|
1414
|
-
- test/test_java.sh
|
|
1415
|
-
- test/benchmark.rb
|
|
1416
935
|
- test/testlib
|
|
1417
936
|
- test/testlib/nsgettext.rb
|
|
1418
|
-
- test/testlib/testlib2.rb
|
|
1419
937
|
- test/testlib/erb.rxml
|
|
1420
|
-
- test/testlib/testlib6.rb
|
|
1421
938
|
- test/testlib/erb.rhtml
|
|
939
|
+
- test/testlib/helper.rb
|
|
1422
940
|
- test/testlib/npgettext.rb
|
|
1423
941
|
- test/testlib/ngettext.rb
|
|
1424
|
-
- test/testlib/testlib1.rb
|
|
1425
942
|
- test/testlib/gladeparser.glade
|
|
1426
|
-
- test/testlib/testlib5.rb
|
|
1427
943
|
- test/testlib/N_.rb
|
|
1428
944
|
- test/testlib/pgettext.rb
|
|
1429
|
-
- test/testlib/testlib4.rb
|
|
1430
945
|
- test/testlib/sgettext.rb
|
|
1431
|
-
- test/testlib/
|
|
946
|
+
- test/testlib/simple.rb
|
|
1432
947
|
- test/testlib/gettext.rb
|
|
1433
|
-
- test/
|
|
1434
|
-
- test/test_cgi.rb
|
|
948
|
+
- test/testlib/multi_textdomain.rb
|
|
1435
949
|
- test/README
|
|
1436
|
-
- test/
|
|
1437
|
-
- test/
|
|
1438
|
-
- test/
|
|
1439
|
-
- test/
|
|
1440
|
-
- test/
|
|
1441
|
-
- test/
|
|
1442
|
-
- test/
|
|
1443
|
-
- test/
|
|
1444
|
-
- test/
|
|
1445
|
-
- test/
|
|
1446
|
-
- test/
|
|
1447
|
-
- test/
|
|
1448
|
-
- test/
|
|
1449
|
-
- test/
|
|
1450
|
-
- test/
|
|
1451
|
-
- test/
|
|
1452
|
-
- test/rails/script/performance/profiler
|
|
1453
|
-
- test/rails/script/performance/benchmarker
|
|
1454
|
-
- test/rails/script/server
|
|
1455
|
-
- test/rails/script/console
|
|
1456
|
-
- test/rails/script/runner
|
|
1457
|
-
- test/rails/script/destroy
|
|
1458
|
-
- test/rails/public
|
|
1459
|
-
- test/rails/public/index.html
|
|
1460
|
-
- test/rails/public/dispatch.rb
|
|
1461
|
-
- test/rails/public/images
|
|
1462
|
-
- test/rails/public/images/rails.png
|
|
1463
|
-
- test/rails/public/robots.txt
|
|
1464
|
-
- test/rails/public/favicon.ico
|
|
1465
|
-
- test/rails/public/dispatch.fcgi
|
|
1466
|
-
- test/rails/public/500.html
|
|
1467
|
-
- test/rails/public/404.html
|
|
1468
|
-
- test/rails/public/javascripts
|
|
1469
|
-
- test/rails/public/javascripts/effects.js
|
|
1470
|
-
- test/rails/public/javascripts/application.js
|
|
1471
|
-
- test/rails/public/javascripts/prototype.js
|
|
1472
|
-
- test/rails/public/javascripts/controls.js
|
|
1473
|
-
- test/rails/public/javascripts/dragdrop.js
|
|
1474
|
-
- test/rails/public/stylesheets
|
|
1475
|
-
- test/rails/public/stylesheets/scaffold.css
|
|
1476
|
-
- test/rails/public/dispatch.cgi
|
|
1477
|
-
- test/rails/db
|
|
1478
|
-
- test/rails/db/schema.rb
|
|
1479
|
-
- test/rails/README
|
|
1480
|
-
- test/rails/test
|
|
1481
|
-
- test/rails/test/fixtures
|
|
1482
|
-
- test/rails/test/fixtures/articles.yml
|
|
1483
|
-
- test/rails/test/fixtures/users.yml
|
|
1484
|
-
- test/rails/test/functional
|
|
1485
|
-
- test/rails/test/functional/users_controller_test.rb
|
|
1486
|
-
- test/rails/test/functional/mailer_controller_test.rb
|
|
1487
|
-
- test/rails/test/functional/articles_controller_test.rb
|
|
1488
|
-
- test/rails/test/result
|
|
1489
|
-
- test/rails/test/result/fr
|
|
1490
|
-
- test/rails/test/result/fr/multipart.html
|
|
1491
|
-
- test/rails/test/result/fr/custom_error_message.html
|
|
1492
|
-
- test/rails/test/result/fr/singlepart.html
|
|
1493
|
-
- test/rails/test/result/fr/list.html
|
|
1494
|
-
- test/rails/test/result/fr/new.html
|
|
1495
|
-
- test/rails/test/result/fr/custom_error_message_with_plural.html
|
|
1496
|
-
- test/rails/test/result/ja
|
|
1497
|
-
- test/rails/test/result/ja/multipart.html
|
|
1498
|
-
- test/rails/test/result/ja/custom_error_message.html
|
|
1499
|
-
- test/rails/test/result/ja/singlepart.html
|
|
1500
|
-
- test/rails/test/result/ja/show.html
|
|
1501
|
-
- test/rails/test/result/ja/list.html
|
|
1502
|
-
- test/rails/test/result/ja/create_error.html
|
|
1503
|
-
- test/rails/test/result/ja/new.html
|
|
1504
|
-
- test/rails/test/result/ja/multi_error_messages_for.html
|
|
1505
|
-
- test/rails/test/result/ja/custom_error_message_with_plural.html
|
|
1506
|
-
- test/rails/test/result/en
|
|
1507
|
-
- test/rails/test/result/en/multipart.html
|
|
1508
|
-
- test/rails/test/result/en/custom_error_message.html
|
|
1509
|
-
- test/rails/test/result/en/singlepart.html
|
|
1510
|
-
- test/rails/test/result/en/show.html
|
|
1511
|
-
- test/rails/test/result/en/list.html
|
|
1512
|
-
- test/rails/test/result/en/create_error.html
|
|
1513
|
-
- test/rails/test/result/en/new.html
|
|
1514
|
-
- test/rails/test/result/en/multi_error_messages_for.html
|
|
1515
|
-
- test/rails/test/result/en/custom_error_message_with_plural.html
|
|
1516
|
-
- test/rails/test/test_helper.rb
|
|
1517
|
-
- test/rails/test/unit
|
|
1518
|
-
- test/rails/test/unit/article_test.rb
|
|
1519
|
-
- test/rails/test/integration
|
|
1520
|
-
- test/rails/test/integration/general_stories_test.rb
|
|
1521
|
-
- test/rails/config
|
|
1522
|
-
- test/rails/config/boot.rb
|
|
1523
|
-
- test/rails/config/routes.rb
|
|
1524
|
-
- test/rails/config/environment.rb
|
|
1525
|
-
- test/rails/config/database.yml
|
|
1526
|
-
- test/rails/config/environments
|
|
1527
|
-
- test/rails/config/environments/test.rb
|
|
1528
|
-
- test/rails/config/environments/development.rb
|
|
1529
|
-
- test/rails/config/environments/production.rb
|
|
1530
|
-
- test/rails/app
|
|
1531
|
-
- test/rails/app/helpers
|
|
1532
|
-
- test/rails/app/helpers/application_helper.rb
|
|
1533
|
-
- test/rails/app/helpers/mailer_helper.rb
|
|
1534
|
-
- test/rails/app/helpers/articles_helper.rb
|
|
1535
|
-
- test/rails/app/views
|
|
1536
|
-
- test/rails/app/views/users
|
|
1537
|
-
- test/rails/app/views/users/custom_error_message_fr.html.erb
|
|
1538
|
-
- test/rails/app/views/users/custom_error_message.html.erb
|
|
1539
|
-
- test/rails/app/views/articles
|
|
1540
|
-
- test/rails/app/views/articles/edit.html.erb
|
|
1541
|
-
- test/rails/app/views/articles/list_fr.html.erb
|
|
1542
|
-
- test/rails/app/views/articles/show.html.erb
|
|
1543
|
-
- test/rails/app/views/articles/active_form_error.html.erb
|
|
1544
|
-
- test/rails/app/views/articles/multi_error_messages_for.html.erb
|
|
1545
|
-
- test/rails/app/views/articles/_form_fr.html.erb
|
|
1546
|
-
- test/rails/app/views/articles/_form.html.erb
|
|
1547
|
-
- test/rails/app/views/articles/list.html.erb
|
|
1548
|
-
- test/rails/app/views/articles/new.html.erb
|
|
1549
|
-
- test/rails/app/views/articles/change_title_error_messages_for.html.erb
|
|
1550
|
-
- test/rails/app/views/mailer
|
|
1551
|
-
- test/rails/app/views/mailer/singlepart_fr.rhtml
|
|
1552
|
-
- test/rails/app/views/mailer/singlepart.rhtml
|
|
1553
|
-
- test/rails/app/views/mailer/coverpage.rhtml
|
|
1554
|
-
- test/rails/app/views/mailer/coverpage_fr.rhtml
|
|
1555
|
-
- test/rails/app/views/layouts
|
|
1556
|
-
- test/rails/app/views/layouts/users.html.erb
|
|
1557
|
-
- test/rails/app/views/layouts/application.html.erb
|
|
1558
|
-
- test/rails/app/views/layouts/mailer.html.erb
|
|
1559
|
-
- test/rails/app/models
|
|
1560
|
-
- test/rails/app/models/user.rb
|
|
1561
|
-
- test/rails/app/models/article.rb
|
|
1562
|
-
- test/rails/app/models/mailer.rb
|
|
1563
|
-
- test/rails/app/controllers
|
|
1564
|
-
- test/rails/app/controllers/mailer_controller.rb
|
|
1565
|
-
- test/rails/app/controllers/users_controller.rb
|
|
1566
|
-
- test/rails/app/controllers/application.rb
|
|
1567
|
-
- test/rails/app/controllers/articles_controller.rb
|
|
1568
|
-
- test/rails/Rakefile
|
|
1569
|
-
- test/test_active_record.rb
|
|
950
|
+
- test/tools
|
|
951
|
+
- test/tools/files
|
|
952
|
+
- test/tools/files/simple_translation.rb
|
|
953
|
+
- test/tools/files/version.po
|
|
954
|
+
- test/tools/files/simple_1.po
|
|
955
|
+
- test/tools/files/en
|
|
956
|
+
- test/tools/files/en/app.po
|
|
957
|
+
- test/tools/files/en/test.po
|
|
958
|
+
- test/tools/files/app.pot
|
|
959
|
+
- test/tools/files/de
|
|
960
|
+
- test/tools/files/de/app.po
|
|
961
|
+
- test/tools/files/simple_2.po
|
|
962
|
+
- test/tools/test_tools.rb
|
|
963
|
+
- test/tools/test.pot
|
|
964
|
+
- test/test_textdomain_bind.rb
|
|
965
|
+
- test/test_textdomain_multi.rb
|
|
1570
966
|
- test/test_string.rb
|
|
1571
967
|
- test/Rakefile
|
|
1572
|
-
-
|
|
968
|
+
- NEWS-1
|
|
1573
969
|
- bin
|
|
1574
970
|
- bin/rgettext
|
|
1575
971
|
- bin/rmsgfmt
|
|
@@ -1579,106 +975,81 @@ files:
|
|
|
1579
975
|
- data/locale/es
|
|
1580
976
|
- data/locale/es/LC_MESSAGES
|
|
1581
977
|
- data/locale/es/LC_MESSAGES/rgettext.mo
|
|
1582
|
-
- data/locale/es/LC_MESSAGES/rails.mo
|
|
1583
978
|
- data/locale/el
|
|
1584
979
|
- data/locale/el/LC_MESSAGES
|
|
1585
980
|
- data/locale/el/LC_MESSAGES/rgettext.mo
|
|
1586
|
-
- data/locale/el/LC_MESSAGES/rails.mo
|
|
1587
981
|
- data/locale/sv
|
|
1588
982
|
- data/locale/sv/LC_MESSAGES
|
|
1589
983
|
- data/locale/sv/LC_MESSAGES/rgettext.mo
|
|
1590
984
|
- data/locale/cs
|
|
1591
985
|
- data/locale/cs/LC_MESSAGES
|
|
1592
986
|
- data/locale/cs/LC_MESSAGES/rgettext.mo
|
|
1593
|
-
- data/locale/cs/LC_MESSAGES/rails.mo
|
|
1594
987
|
- data/locale/ko
|
|
1595
988
|
- data/locale/ko/LC_MESSAGES
|
|
1596
989
|
- data/locale/ko/LC_MESSAGES/rgettext.mo
|
|
1597
|
-
- data/locale/ko/LC_MESSAGES/rails.mo
|
|
1598
990
|
- data/locale/sr
|
|
1599
991
|
- data/locale/sr/LC_MESSAGES
|
|
1600
992
|
- data/locale/sr/LC_MESSAGES/rgettext.mo
|
|
1601
|
-
- data/locale/sr/LC_MESSAGES/rails.mo
|
|
1602
993
|
- data/locale/nb
|
|
1603
994
|
- data/locale/nb/LC_MESSAGES
|
|
1604
995
|
- data/locale/nb/LC_MESSAGES/rgettext.mo
|
|
1605
|
-
- data/locale/nb/LC_MESSAGES/rails.mo
|
|
1606
996
|
- data/locale/zh
|
|
1607
997
|
- data/locale/zh/LC_MESSAGES
|
|
1608
998
|
- data/locale/zh/LC_MESSAGES/rgettext.mo
|
|
1609
|
-
- data/locale/zh/LC_MESSAGES/rails.mo
|
|
1610
999
|
- data/locale/eo
|
|
1611
1000
|
- data/locale/eo/LC_MESSAGES
|
|
1612
1001
|
- data/locale/eo/LC_MESSAGES/rgettext.mo
|
|
1613
|
-
- data/locale/eo/LC_MESSAGES/rails.mo
|
|
1614
1002
|
- data/locale/vi
|
|
1615
1003
|
- data/locale/vi/LC_MESSAGES
|
|
1616
1004
|
- data/locale/vi/LC_MESSAGES/rgettext.mo
|
|
1617
|
-
- data/locale/vi/LC_MESSAGES/rails.mo
|
|
1618
1005
|
- data/locale/nl
|
|
1619
1006
|
- data/locale/nl/LC_MESSAGES
|
|
1620
1007
|
- data/locale/nl/LC_MESSAGES/rgettext.mo
|
|
1621
|
-
- data/locale/nl/LC_MESSAGES/rails.mo
|
|
1622
1008
|
- data/locale/fr
|
|
1623
1009
|
- data/locale/fr/LC_MESSAGES
|
|
1624
1010
|
- data/locale/fr/LC_MESSAGES/rgettext.mo
|
|
1625
|
-
- data/locale/fr/LC_MESSAGES/rails.mo
|
|
1626
1011
|
- data/locale/bg
|
|
1627
1012
|
- data/locale/bg/LC_MESSAGES
|
|
1628
1013
|
- data/locale/bg/LC_MESSAGES/rgettext.mo
|
|
1629
|
-
- data/locale/bg/LC_MESSAGES/rails.mo
|
|
1630
1014
|
- data/locale/hu
|
|
1631
1015
|
- data/locale/hu/LC_MESSAGES
|
|
1632
1016
|
- data/locale/hu/LC_MESSAGES/rgettext.mo
|
|
1633
|
-
- data/locale/hu/LC_MESSAGES/rails.mo
|
|
1634
1017
|
- data/locale/ua
|
|
1635
1018
|
- data/locale/ua/LC_MESSAGES
|
|
1636
1019
|
- data/locale/ua/LC_MESSAGES/rgettext.mo
|
|
1637
|
-
- data/locale/ua/LC_MESSAGES/rails.mo
|
|
1638
1020
|
- data/locale/hr
|
|
1639
1021
|
- data/locale/hr/LC_MESSAGES
|
|
1640
1022
|
- data/locale/hr/LC_MESSAGES/rgettext.mo
|
|
1641
|
-
- data/locale/hr/LC_MESSAGES/rails.mo
|
|
1642
1023
|
- data/locale/et
|
|
1643
1024
|
- data/locale/et/LC_MESSAGES
|
|
1644
1025
|
- data/locale/et/LC_MESSAGES/rgettext.mo
|
|
1645
|
-
- data/locale/et/LC_MESSAGES/rails.mo
|
|
1646
1026
|
- data/locale/lv
|
|
1647
1027
|
- data/locale/lv/LC_MESSAGES
|
|
1648
1028
|
- data/locale/lv/LC_MESSAGES/rgettext.mo
|
|
1649
|
-
- data/locale/lv/LC_MESSAGES/rails.mo
|
|
1650
1029
|
- data/locale/it
|
|
1651
1030
|
- data/locale/it/LC_MESSAGES
|
|
1652
1031
|
- data/locale/it/LC_MESSAGES/rgettext.mo
|
|
1653
|
-
- data/locale/it/LC_MESSAGES/rails.mo
|
|
1654
1032
|
- data/locale/pt_BR
|
|
1655
1033
|
- data/locale/pt_BR/LC_MESSAGES
|
|
1656
1034
|
- data/locale/pt_BR/LC_MESSAGES/rgettext.mo
|
|
1657
|
-
- data/locale/pt_BR/LC_MESSAGES/rails.mo
|
|
1658
1035
|
- data/locale/ja
|
|
1659
1036
|
- data/locale/ja/LC_MESSAGES
|
|
1660
1037
|
- data/locale/ja/LC_MESSAGES/rgettext.mo
|
|
1661
|
-
- data/locale/ja/LC_MESSAGES/rails.mo
|
|
1662
1038
|
- data/locale/zh_TW
|
|
1663
1039
|
- data/locale/zh_TW/LC_MESSAGES
|
|
1664
1040
|
- data/locale/zh_TW/LC_MESSAGES/rgettext.mo
|
|
1665
|
-
- data/locale/zh_TW/LC_MESSAGES/rails.mo
|
|
1666
1041
|
- data/locale/ru
|
|
1667
1042
|
- data/locale/ru/LC_MESSAGES
|
|
1668
1043
|
- data/locale/ru/LC_MESSAGES/rgettext.mo
|
|
1669
|
-
- data/locale/ru/LC_MESSAGES/rails.mo
|
|
1670
1044
|
- data/locale/bs
|
|
1671
1045
|
- data/locale/bs/LC_MESSAGES
|
|
1672
1046
|
- data/locale/bs/LC_MESSAGES/rgettext.mo
|
|
1673
|
-
- data/locale/bs/LC_MESSAGES/rails.mo
|
|
1674
1047
|
- data/locale/de
|
|
1675
1048
|
- data/locale/de/LC_MESSAGES
|
|
1676
1049
|
- data/locale/de/LC_MESSAGES/rgettext.mo
|
|
1677
|
-
- data/locale/de/LC_MESSAGES/rails.mo
|
|
1678
1050
|
- data/locale/ca
|
|
1679
1051
|
- data/locale/ca/LC_MESSAGES
|
|
1680
1052
|
- data/locale/ca/LC_MESSAGES/rgettext.mo
|
|
1681
|
-
- data/locale/ca/LC_MESSAGES/rails.mo
|
|
1682
1053
|
- Rakefile
|
|
1683
1054
|
has_rdoc: true
|
|
1684
1055
|
homepage: http://gettext.rubyforge.org/
|
|
@@ -1702,7 +1073,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
1702
1073
|
requirements: []
|
|
1703
1074
|
|
|
1704
1075
|
rubyforge_project: gettext
|
|
1705
|
-
rubygems_version: 1.
|
|
1076
|
+
rubygems_version: 1.3.1
|
|
1706
1077
|
signing_key:
|
|
1707
1078
|
specification_version: 2
|
|
1708
1079
|
summary: Ruby-GetText-Package is a libary and tools to localize messages.
|