fair-gettext 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +78 -0
- data/README.rdoc +245 -0
- data/Rakefile +234 -0
- data/bin/rgettext +23 -0
- data/bin/rmsgfmt +22 -0
- data/bin/rmsgmerge +22 -0
- data/gettext.gemspec +40 -0
- data/lib/gettext/cgi.rb +37 -0
- data/lib/gettext/core_ext/iconv.rb +110 -0
- data/lib/gettext/core_ext/string.rb +84 -0
- data/lib/gettext/parser/erb.rb +3 -0
- data/lib/gettext/parser/glade.rb +3 -0
- data/lib/gettext/parser/ruby.rb +172 -0
- data/lib/gettext/tools/rgettext.rb +248 -0
- data/lib/gettext/tools/rmsgfmt.rb +84 -0
- data/lib/gettext/tools/rmsgmerge.rb +498 -0
- data/lib/gettext/tools.rb +202 -0
- data/lib/gettext/utils.rb +37 -0
- data/lib/gettext/version.rb +12 -0
- data/lib/gettext.rb +310 -0
- data/po/bg/rgettext.po +134 -0
- data/po/bs/rgettext.po +135 -0
- data/po/ca/rgettext.po +133 -0
- data/po/cs/rgettext.po +136 -0
- data/po/de/rgettext.po +141 -0
- data/po/el/rgettext.po +132 -0
- data/po/eo/rgettext.po +133 -0
- data/po/es/rgettext.po +134 -0
- data/po/et/rgettext.po +131 -0
- data/po/fr/rgettext.po +137 -0
- data/po/hr/rgettext.po +135 -0
- data/po/hu/rgettext.po +133 -0
- data/po/it/rgettext.po +134 -0
- data/po/ja/rgettext.po +134 -0
- data/po/ko/rgettext.po +133 -0
- data/po/lv/rgettext.po +134 -0
- data/po/nb/rgettext.po +135 -0
- data/po/nl/rgettext.po +134 -0
- data/po/pt_BR/rgettext.po +136 -0
- data/po/rgettext.pot +125 -0
- data/po/ru/rgettext.po +135 -0
- data/po/sr/rgettext.po +134 -0
- data/po/sv/rgettext.po +127 -0
- data/po/ua/rgettext.po +138 -0
- data/po/vi/rgettext.po +132 -0
- data/po/zh/rgettext.po +133 -0
- data/po/zh_TW/rgettext.po +132 -0
- data/samples/README +16 -0
- data/samples/cgi/README +43 -0
- data/samples/cgi/Rakefile +27 -0
- data/samples/cgi/cookie.cgi +64 -0
- data/samples/cgi/gettext.css +116 -0
- data/samples/cgi/helloerb.rhtml +28 -0
- data/samples/cgi/helloerb1.cgi +58 -0
- data/samples/cgi/helloerb2.cgi +51 -0
- data/samples/cgi/hellolib.rb +18 -0
- data/samples/cgi/http.rb +49 -0
- data/samples/cgi/index.cgi +111 -0
- data/samples/cgi/other.rhtml +20 -0
- data/samples/cgi/po/bg/helloerb1.po +59 -0
- data/samples/cgi/po/bg/helloerb2.po +51 -0
- data/samples/cgi/po/bg/hellolib.po +23 -0
- data/samples/cgi/po/bg/main.po +83 -0
- data/samples/cgi/po/bs/helloerb1.po +59 -0
- data/samples/cgi/po/bs/helloerb2.po +51 -0
- data/samples/cgi/po/bs/hellolib.po +23 -0
- data/samples/cgi/po/bs/main.po +83 -0
- data/samples/cgi/po/ca/helloerb1.po +59 -0
- data/samples/cgi/po/ca/helloerb2.po +51 -0
- data/samples/cgi/po/ca/hellolib.po +23 -0
- data/samples/cgi/po/ca/main.po +83 -0
- data/samples/cgi/po/cs/helloerb1.po +61 -0
- data/samples/cgi/po/cs/helloerb2.po +52 -0
- data/samples/cgi/po/cs/hellolib.po +25 -0
- data/samples/cgi/po/cs/main.po +85 -0
- data/samples/cgi/po/de/helloerb1.po +61 -0
- data/samples/cgi/po/de/helloerb2.po +52 -0
- data/samples/cgi/po/de/hellolib.po +24 -0
- data/samples/cgi/po/de/main.po +86 -0
- data/samples/cgi/po/el/helloerb1.po +60 -0
- data/samples/cgi/po/el/helloerb2.po +51 -0
- data/samples/cgi/po/el/hellolib.po +23 -0
- data/samples/cgi/po/el/main.po +84 -0
- data/samples/cgi/po/eo/helloerb1.po +60 -0
- data/samples/cgi/po/eo/helloerb2.po +52 -0
- data/samples/cgi/po/eo/hellolib.po +24 -0
- data/samples/cgi/po/eo/main.po +84 -0
- data/samples/cgi/po/es/helloerb1.po +59 -0
- data/samples/cgi/po/es/helloerb2.po +50 -0
- data/samples/cgi/po/es/hellolib.po +22 -0
- data/samples/cgi/po/es/main.po +83 -0
- data/samples/cgi/po/fr/helloerb1.po +59 -0
- data/samples/cgi/po/fr/helloerb2.po +51 -0
- data/samples/cgi/po/fr/hellolib.po +22 -0
- data/samples/cgi/po/fr/main.po +85 -0
- data/samples/cgi/po/helloerb1.pot +60 -0
- data/samples/cgi/po/helloerb2.pot +52 -0
- data/samples/cgi/po/hellolib.pot +24 -0
- data/samples/cgi/po/hr/helloerb1.po +59 -0
- data/samples/cgi/po/hr/helloerb2.po +51 -0
- data/samples/cgi/po/hr/hellolib.po +23 -0
- data/samples/cgi/po/hr/main.po +83 -0
- data/samples/cgi/po/hu/helloerb1.po +59 -0
- data/samples/cgi/po/hu/helloerb2.po +51 -0
- data/samples/cgi/po/hu/hellolib.po +23 -0
- data/samples/cgi/po/hu/main.po +82 -0
- data/samples/cgi/po/it/helloerb1.po +60 -0
- data/samples/cgi/po/it/helloerb2.po +52 -0
- data/samples/cgi/po/it/hellolib.po +24 -0
- data/samples/cgi/po/it/main.po +84 -0
- data/samples/cgi/po/ja/helloerb1.po +60 -0
- data/samples/cgi/po/ja/helloerb2.po +52 -0
- data/samples/cgi/po/ja/hellolib.po +24 -0
- data/samples/cgi/po/ja/main.po +85 -0
- data/samples/cgi/po/ko/helloerb1.po +59 -0
- data/samples/cgi/po/ko/helloerb2.po +51 -0
- data/samples/cgi/po/ko/hellolib.po +23 -0
- data/samples/cgi/po/ko/main.po +84 -0
- data/samples/cgi/po/lv/helloerb1.po +65 -0
- data/samples/cgi/po/lv/helloerb2.po +52 -0
- data/samples/cgi/po/lv/hellolib.po +24 -0
- data/samples/cgi/po/lv/main.po +77 -0
- data/samples/cgi/po/main.pot +80 -0
- data/samples/cgi/po/nb/helloerb1.po +60 -0
- data/samples/cgi/po/nb/helloerb2.po +52 -0
- data/samples/cgi/po/nb/hellolib.po +24 -0
- data/samples/cgi/po/nb/main.po +84 -0
- data/samples/cgi/po/nl/helloerb1.po +61 -0
- data/samples/cgi/po/nl/helloerb2.po +52 -0
- data/samples/cgi/po/nl/hellolib.po +24 -0
- data/samples/cgi/po/nl/main.po +86 -0
- data/samples/cgi/po/pt_BR/helloerb1.po +59 -0
- data/samples/cgi/po/pt_BR/helloerb2.po +51 -0
- data/samples/cgi/po/pt_BR/hellolib.po +23 -0
- data/samples/cgi/po/pt_BR/main.po +84 -0
- data/samples/cgi/po/ru/helloerb1.po +58 -0
- data/samples/cgi/po/ru/helloerb2.po +50 -0
- data/samples/cgi/po/ru/hellolib.po +22 -0
- data/samples/cgi/po/ru/main.po +82 -0
- data/samples/cgi/po/sr/helloerb1.po +60 -0
- data/samples/cgi/po/sr/helloerb2.po +52 -0
- data/samples/cgi/po/sr/hellolib.po +24 -0
- data/samples/cgi/po/sr/main.po +80 -0
- data/samples/cgi/po/ua/helloerb1.po +62 -0
- data/samples/cgi/po/ua/helloerb2.po +54 -0
- data/samples/cgi/po/ua/hellolib.po +26 -0
- data/samples/cgi/po/ua/main.po +84 -0
- data/samples/cgi/po/vi/helloerb1.po +65 -0
- data/samples/cgi/po/vi/helloerb2.po +52 -0
- data/samples/cgi/po/vi/hellolib.po +24 -0
- data/samples/cgi/po/vi/main.po +77 -0
- data/samples/cgi/po/zh/helloerb1.po +60 -0
- data/samples/cgi/po/zh/helloerb2.po +52 -0
- data/samples/cgi/po/zh/hellolib.po +24 -0
- data/samples/cgi/po/zh/main.po +80 -0
- data/samples/cgi/po/zh_TW/helloerb1.po +67 -0
- data/samples/cgi/po/zh_TW/helloerb2.po +54 -0
- data/samples/cgi/po/zh_TW/hellolib.po +26 -0
- data/samples/cgi/po/zh_TW/main.po +79 -0
- data/samples/hello.rb +36 -0
- data/samples/hello2.rb +23 -0
- data/samples/hello_glade2.glade +70 -0
- data/samples/hello_glade2.rb +25 -0
- data/samples/hello_gtk2.rb +27 -0
- data/samples/hello_noop.rb +31 -0
- data/samples/hello_plural.rb +26 -0
- data/samples/hello_tk.rb +19 -0
- data/samples/makemo.rb +4 -0
- data/samples/po/bg/hello.po +24 -0
- data/samples/po/bg/hello2.po +31 -0
- data/samples/po/bg/hello_glade2.po +31 -0
- data/samples/po/bg/hello_gtk.po +23 -0
- data/samples/po/bg/hello_noop.po +27 -0
- data/samples/po/bg/hello_plural.po +25 -0
- data/samples/po/bg/hello_tk.po +23 -0
- data/samples/po/bs/hello.po +23 -0
- data/samples/po/bs/hello2.po +31 -0
- data/samples/po/bs/hello_glade2.po +31 -0
- data/samples/po/bs/hello_gtk.po +23 -0
- data/samples/po/bs/hello_noop.po +27 -0
- data/samples/po/bs/hello_plural.po +26 -0
- data/samples/po/bs/hello_tk.po +23 -0
- data/samples/po/ca/hello.po +23 -0
- data/samples/po/ca/hello2.po +31 -0
- data/samples/po/ca/hello_glade2.po +31 -0
- data/samples/po/ca/hello_gtk.po +23 -0
- data/samples/po/ca/hello_noop.po +27 -0
- data/samples/po/ca/hello_plural.po +25 -0
- data/samples/po/ca/hello_tk.po +23 -0
- data/samples/po/cs/hello.po +23 -0
- data/samples/po/cs/hello2.po +31 -0
- data/samples/po/cs/hello_glade2.po +37 -0
- data/samples/po/cs/hello_gtk.po +23 -0
- data/samples/po/cs/hello_noop.po +27 -0
- data/samples/po/cs/hello_plural.po +26 -0
- data/samples/po/cs/hello_tk.po +23 -0
- data/samples/po/de/hello.po +20 -0
- data/samples/po/de/hello2.po +28 -0
- data/samples/po/de/hello_glade2.po +27 -0
- data/samples/po/de/hello_gtk.po +20 -0
- data/samples/po/de/hello_noop.po +24 -0
- data/samples/po/de/hello_plural.po +25 -0
- data/samples/po/de/hello_tk.po +20 -0
- data/samples/po/el/hello.po +23 -0
- data/samples/po/el/hello2.po +31 -0
- data/samples/po/el/hello_glade2.po +31 -0
- data/samples/po/el/hello_gtk.po +22 -0
- data/samples/po/el/hello_noop.po +27 -0
- data/samples/po/el/hello_plural.po +25 -0
- data/samples/po/el/hello_tk.po +23 -0
- data/samples/po/eo/hello.po +23 -0
- data/samples/po/eo/hello2.po +31 -0
- data/samples/po/eo/hello_glade2.po +32 -0
- data/samples/po/eo/hello_gtk.po +23 -0
- data/samples/po/eo/hello_noop.po +27 -0
- data/samples/po/eo/hello_plural.po +26 -0
- data/samples/po/eo/hello_tk.po +24 -0
- data/samples/po/es/hello.po +21 -0
- data/samples/po/es/hello2.po +28 -0
- data/samples/po/es/hello_glade2.po +28 -0
- data/samples/po/es/hello_gtk.po +20 -0
- data/samples/po/es/hello_noop.po +24 -0
- data/samples/po/es/hello_plural.po +23 -0
- data/samples/po/es/hello_tk.po +20 -0
- data/samples/po/fr/hello.po +18 -0
- data/samples/po/fr/hello2.po +26 -0
- data/samples/po/fr/hello_glade2.po +27 -0
- data/samples/po/fr/hello_gtk.po +18 -0
- data/samples/po/fr/hello_noop.po +22 -0
- data/samples/po/fr/hello_plural.po +21 -0
- data/samples/po/fr/hello_tk.po +18 -0
- data/samples/po/hello.pot +23 -0
- data/samples/po/hello2.pot +31 -0
- data/samples/po/hello_glade2.pot +32 -0
- data/samples/po/hello_gtk.pot +23 -0
- data/samples/po/hello_noop.pot +27 -0
- data/samples/po/hello_plural.pot +26 -0
- data/samples/po/hello_tk.pot +24 -0
- data/samples/po/hr/hello.po +23 -0
- data/samples/po/hr/hello2.po +31 -0
- data/samples/po/hr/hello_glade2.po +31 -0
- data/samples/po/hr/hello_gtk.po +23 -0
- data/samples/po/hr/hello_noop.po +27 -0
- data/samples/po/hr/hello_plural.po +26 -0
- data/samples/po/hr/hello_tk.po +23 -0
- data/samples/po/hu/hello.po +22 -0
- data/samples/po/hu/hello2.po +30 -0
- data/samples/po/hu/hello_glade2.po +31 -0
- data/samples/po/hu/hello_gtk.po +22 -0
- data/samples/po/hu/hello_noop.po +26 -0
- data/samples/po/hu/hello_plural.po +25 -0
- data/samples/po/hu/hello_tk.po +23 -0
- data/samples/po/it/hello.po +20 -0
- data/samples/po/it/hello2.po +28 -0
- data/samples/po/it/hello_glade2.po +28 -0
- data/samples/po/it/hello_gtk.po +21 -0
- data/samples/po/it/hello_noop.po +24 -0
- data/samples/po/it/hello_plural.po +23 -0
- data/samples/po/it/hello_tk.po +21 -0
- data/samples/po/ja/hello.po +20 -0
- data/samples/po/ja/hello2.po +28 -0
- data/samples/po/ja/hello_glade2.po +26 -0
- data/samples/po/ja/hello_gtk.po +19 -0
- data/samples/po/ja/hello_noop.po +23 -0
- data/samples/po/ja/hello_plural.po +21 -0
- data/samples/po/ja/hello_tk.po +19 -0
- data/samples/po/ko/hello.po +18 -0
- data/samples/po/ko/hello2.po +26 -0
- data/samples/po/ko/hello_glade2.po +29 -0
- data/samples/po/ko/hello_gtk.po +18 -0
- data/samples/po/ko/hello_noop.po +22 -0
- data/samples/po/ko/hello_plural.po +25 -0
- data/samples/po/ko/hello_tk.po +19 -0
- data/samples/po/lv/hello.po +24 -0
- data/samples/po/lv/hello2.po +32 -0
- data/samples/po/lv/hello_glade2.po +38 -0
- data/samples/po/lv/hello_gtk.po +24 -0
- data/samples/po/lv/hello_noop.po +28 -0
- data/samples/po/lv/hello_plural.po +26 -0
- data/samples/po/lv/hello_tk.po +24 -0
- data/samples/po/nb/hello.po +23 -0
- data/samples/po/nb/hello2.po +31 -0
- data/samples/po/nb/hello_glade2.po +31 -0
- data/samples/po/nb/hello_gtk.po +23 -0
- data/samples/po/nb/hello_noop.po +27 -0
- data/samples/po/nb/hello_plural.po +26 -0
- data/samples/po/nb/hello_tk.po +24 -0
- data/samples/po/nl/hello.po +24 -0
- data/samples/po/nl/hello2.po +32 -0
- data/samples/po/nl/hello_glade2.po +31 -0
- data/samples/po/nl/hello_gtk.po +24 -0
- data/samples/po/nl/hello_noop.po +28 -0
- data/samples/po/nl/hello_plural.po +25 -0
- data/samples/po/nl/hello_tk.po +24 -0
- data/samples/po/pt_BR/hello.po +21 -0
- data/samples/po/pt_BR/hello2.po +29 -0
- data/samples/po/pt_BR/hello_glade2.po +29 -0
- data/samples/po/pt_BR/hello_gtk.po +21 -0
- data/samples/po/pt_BR/hello_noop.po +25 -0
- data/samples/po/pt_BR/hello_plural.po +23 -0
- data/samples/po/pt_BR/hello_tk.po +21 -0
- data/samples/po/ru/hello.po +22 -0
- data/samples/po/ru/hello2.po +30 -0
- data/samples/po/ru/hello_glade2.po +30 -0
- data/samples/po/ru/hello_gtk.po +22 -0
- data/samples/po/ru/hello_noop.po +26 -0
- data/samples/po/ru/hello_plural.po +28 -0
- data/samples/po/ru/hello_tk.po +22 -0
- data/samples/po/sr/hello.po +22 -0
- data/samples/po/sr/hello2.po +30 -0
- data/samples/po/sr/hello_glade2.po +32 -0
- data/samples/po/sr/hello_gtk.po +22 -0
- data/samples/po/sr/hello_noop.po +26 -0
- data/samples/po/sr/hello_plural.po +26 -0
- data/samples/po/sr/hello_tk.po +24 -0
- data/samples/po/sv/hello.po +20 -0
- data/samples/po/sv/hello2.po +28 -0
- data/samples/po/sv/hello_glade2.po +28 -0
- data/samples/po/sv/hello_gtk.po +20 -0
- data/samples/po/sv/hello_noop.po +24 -0
- data/samples/po/sv/hello_plural.po +23 -0
- data/samples/po/sv/hello_tk.po +20 -0
- data/samples/po/test.rb +11 -0
- data/samples/po/ua/hello.po +22 -0
- data/samples/po/ua/hello2.po +30 -0
- data/samples/po/ua/hello_glade2.po +34 -0
- data/samples/po/ua/hello_gtk.po +22 -0
- data/samples/po/ua/hello_noop.po +26 -0
- data/samples/po/ua/hello_plural.po +29 -0
- data/samples/po/ua/hello_tk.po +26 -0
- data/samples/po/vi/hello.po +23 -0
- data/samples/po/vi/hello2.po +31 -0
- data/samples/po/vi/hello_glade2.po +38 -0
- data/samples/po/vi/hello_gtk.po +23 -0
- data/samples/po/vi/hello_noop.po +27 -0
- data/samples/po/vi/hello_plural.po +26 -0
- data/samples/po/vi/hello_tk.po +24 -0
- data/samples/po/zh/hello.po +23 -0
- data/samples/po/zh/hello2.po +31 -0
- data/samples/po/zh/hello_glade2.po +31 -0
- data/samples/po/zh/hello_gtk.po +23 -0
- data/samples/po/zh/hello_noop.po +27 -0
- data/samples/po/zh/hello_plural.po +25 -0
- data/samples/po/zh/hello_tk.po +23 -0
- data/samples/po/zh_TW/hello.po +26 -0
- data/samples/po/zh_TW/hello2.po +34 -0
- data/samples/po/zh_TW/hello_glade2.po +40 -0
- data/samples/po/zh_TW/hello_gtk.po +25 -0
- data/samples/po/zh_TW/hello_noop.po +30 -0
- data/samples/po/zh_TW/hello_plural.po +28 -0
- data/samples/po/zh_TW/hello_tk.po +26 -0
- data/src/poparser.ry +217 -0
- data/test/README +1 -0
- data/test/Rakefile +17 -0
- data/test/po/cr/plural.po +23 -0
- data/test/po/da/plural.po +22 -0
- data/test/po/da/plural_error.po +22 -0
- data/test/po/fr/plural.po +28 -0
- data/test/po/fr/plural_error.po +20 -0
- data/test/po/fr/test1.po +23 -0
- data/test/po/fr/test2.po +19 -0
- data/test/po/ir/plural.po +23 -0
- data/test/po/ja/npgettext.po +46 -0
- data/test/po/ja/nsgettext.po +65 -0
- data/test/po/ja/pgettext.po +41 -0
- data/test/po/ja/plural.po +28 -0
- data/test/po/ja/plural_error.po +20 -0
- data/test/po/ja/rubyparser.po +43 -0
- data/test/po/ja/sgettext.po +47 -0
- data/test/po/ja/test1.po +23 -0
- data/test/po/ja/test2.po +19 -0
- data/test/po/la/plural.po +23 -0
- data/test/po/la/plural_error.po +21 -0
- data/test/po/li/plural.po +23 -0
- data/test/po/po/plural.po +23 -0
- data/test/po/sl/plural.po +24 -0
- data/test/test_class_info.rb +83 -0
- data/test/test_gettext.rb +311 -0
- data/test/test_parser.rb +158 -0
- data/test/test_string.rb +65 -0
- data/test/test_textdomain_multi.rb +80 -0
- data/test/test_textdomain_toplevel.rb +42 -0
- data/test/testlib/N_.rb +66 -0
- data/test/testlib/erb.rhtml +15 -0
- data/test/testlib/erb.rxml +16 -0
- data/test/testlib/gettext.rb +113 -0
- data/test/testlib/gladeparser.glade +183 -0
- data/test/testlib/helper.rb +11 -0
- data/test/testlib/multi_textdomain.rb +131 -0
- data/test/testlib/ngettext.rb +79 -0
- data/test/testlib/npgettext.rb +31 -0
- data/test/testlib/nsgettext.rb +42 -0
- data/test/testlib/pgettext.rb +36 -0
- data/test/testlib/sgettext.rb +46 -0
- data/test/testlib/simple.rb +14 -0
- metadata +496 -0
metadata
ADDED
@@ -0,0 +1,496 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fair-gettext
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 2
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
version: 2.0.0
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Masao Mutoh
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2009-02-06 00:00:00 +01:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: locale
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
segments:
|
28
|
+
- 0
|
29
|
+
version: "0"
|
30
|
+
type: :runtime
|
31
|
+
version_requirements: *id001
|
32
|
+
- !ruby/object:Gem::Dependency
|
33
|
+
name: echoe
|
34
|
+
prerelease: false
|
35
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
segments:
|
40
|
+
- 0
|
41
|
+
version: "0"
|
42
|
+
type: :development
|
43
|
+
version_requirements: *id002
|
44
|
+
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.
|
45
|
+
email: mutomasa at gmail.com
|
46
|
+
executables:
|
47
|
+
- rgettext
|
48
|
+
- rmsgmerge
|
49
|
+
- rmsgfmt
|
50
|
+
extensions: []
|
51
|
+
|
52
|
+
extra_rdoc_files:
|
53
|
+
- lib/gettext.rb
|
54
|
+
- lib/gettext/tools.rb
|
55
|
+
- lib/gettext/core_ext/string.rb
|
56
|
+
- lib/gettext/version.rb
|
57
|
+
- README.rdoc
|
58
|
+
files:
|
59
|
+
- po/hr/rgettext.po
|
60
|
+
- po/cs/rgettext.po
|
61
|
+
- po/el/rgettext.po
|
62
|
+
- po/bs/rgettext.po
|
63
|
+
- po/et/rgettext.po
|
64
|
+
- po/vi/rgettext.po
|
65
|
+
- po/pt_BR/rgettext.po
|
66
|
+
- po/nb/rgettext.po
|
67
|
+
- po/ko/rgettext.po
|
68
|
+
- po/lv/rgettext.po
|
69
|
+
- po/ru/rgettext.po
|
70
|
+
- po/zh_TW/rgettext.po
|
71
|
+
- po/rgettext.pot
|
72
|
+
- po/ca/rgettext.po
|
73
|
+
- po/de/rgettext.po
|
74
|
+
- po/es/rgettext.po
|
75
|
+
- po/eo/rgettext.po
|
76
|
+
- po/nl/rgettext.po
|
77
|
+
- po/sr/rgettext.po
|
78
|
+
- po/hu/rgettext.po
|
79
|
+
- po/zh/rgettext.po
|
80
|
+
- po/ja/rgettext.po
|
81
|
+
- po/bg/rgettext.po
|
82
|
+
- po/ua/rgettext.po
|
83
|
+
- po/fr/rgettext.po
|
84
|
+
- po/sv/rgettext.po
|
85
|
+
- po/it/rgettext.po
|
86
|
+
- lib/gettext.rb
|
87
|
+
- lib/gettext/cgi.rb
|
88
|
+
- lib/gettext/utils.rb
|
89
|
+
- lib/gettext/tools.rb
|
90
|
+
- lib/gettext/core_ext/iconv.rb
|
91
|
+
- lib/gettext/core_ext/string.rb
|
92
|
+
- lib/gettext/version.rb
|
93
|
+
- lib/gettext/parser/glade.rb
|
94
|
+
- lib/gettext/parser/erb.rb
|
95
|
+
- lib/gettext/parser/ruby.rb
|
96
|
+
- lib/gettext/tools/rgettext.rb
|
97
|
+
- lib/gettext/tools/rmsgmerge.rb
|
98
|
+
- lib/gettext/tools/rmsgfmt.rb
|
99
|
+
- test/po/po/plural.po
|
100
|
+
- test/po/cr/plural.po
|
101
|
+
- test/po/sl/plural.po
|
102
|
+
- test/po/li/plural.po
|
103
|
+
- test/po/ir/plural.po
|
104
|
+
- test/po/ja/sgettext.po
|
105
|
+
- test/po/ja/test2.po
|
106
|
+
- test/po/ja/pgettext.po
|
107
|
+
- test/po/ja/test1.po
|
108
|
+
- test/po/ja/nsgettext.po
|
109
|
+
- test/po/ja/plural_error.po
|
110
|
+
- test/po/ja/plural.po
|
111
|
+
- test/po/ja/rubyparser.po
|
112
|
+
- test/po/ja/npgettext.po
|
113
|
+
- test/po/fr/test2.po
|
114
|
+
- test/po/fr/test1.po
|
115
|
+
- test/po/fr/plural_error.po
|
116
|
+
- test/po/fr/plural.po
|
117
|
+
- test/po/la/plural_error.po
|
118
|
+
- test/po/la/plural.po
|
119
|
+
- test/po/da/plural_error.po
|
120
|
+
- test/po/da/plural.po
|
121
|
+
- test/test_textdomain_toplevel.rb
|
122
|
+
- test/test_gettext.rb
|
123
|
+
- test/test_parser.rb
|
124
|
+
- test/README
|
125
|
+
- test/test_string.rb
|
126
|
+
- test/Rakefile
|
127
|
+
- test/test_class_info.rb
|
128
|
+
- test/test_textdomain_multi.rb
|
129
|
+
- test/testlib/simple.rb
|
130
|
+
- test/testlib/gettext.rb
|
131
|
+
- test/testlib/gladeparser.glade
|
132
|
+
- test/testlib/npgettext.rb
|
133
|
+
- test/testlib/multi_textdomain.rb
|
134
|
+
- test/testlib/erb.rhtml
|
135
|
+
- test/testlib/nsgettext.rb
|
136
|
+
- test/testlib/erb.rxml
|
137
|
+
- test/testlib/pgettext.rb
|
138
|
+
- test/testlib/helper.rb
|
139
|
+
- test/testlib/N_.rb
|
140
|
+
- test/testlib/ngettext.rb
|
141
|
+
- test/testlib/sgettext.rb
|
142
|
+
- bin/rgettext
|
143
|
+
- bin/rmsgmerge
|
144
|
+
- bin/rmsgfmt
|
145
|
+
- Rakefile
|
146
|
+
- README.rdoc
|
147
|
+
- ChangeLog
|
148
|
+
- src/poparser.ry
|
149
|
+
- samples/cgi/po/hr/main.po
|
150
|
+
- samples/cgi/po/hr/hellolib.po
|
151
|
+
- samples/cgi/po/hr/helloerb1.po
|
152
|
+
- samples/cgi/po/hr/helloerb2.po
|
153
|
+
- samples/cgi/po/cs/main.po
|
154
|
+
- samples/cgi/po/cs/hellolib.po
|
155
|
+
- samples/cgi/po/cs/helloerb1.po
|
156
|
+
- samples/cgi/po/cs/helloerb2.po
|
157
|
+
- samples/cgi/po/hellolib.pot
|
158
|
+
- samples/cgi/po/el/main.po
|
159
|
+
- samples/cgi/po/el/hellolib.po
|
160
|
+
- samples/cgi/po/el/helloerb1.po
|
161
|
+
- samples/cgi/po/el/helloerb2.po
|
162
|
+
- samples/cgi/po/bs/main.po
|
163
|
+
- samples/cgi/po/bs/hellolib.po
|
164
|
+
- samples/cgi/po/bs/helloerb1.po
|
165
|
+
- samples/cgi/po/bs/helloerb2.po
|
166
|
+
- samples/cgi/po/vi/main.po
|
167
|
+
- samples/cgi/po/vi/hellolib.po
|
168
|
+
- samples/cgi/po/vi/helloerb1.po
|
169
|
+
- samples/cgi/po/vi/helloerb2.po
|
170
|
+
- samples/cgi/po/pt_BR/main.po
|
171
|
+
- samples/cgi/po/pt_BR/hellolib.po
|
172
|
+
- samples/cgi/po/pt_BR/helloerb1.po
|
173
|
+
- samples/cgi/po/pt_BR/helloerb2.po
|
174
|
+
- samples/cgi/po/nb/main.po
|
175
|
+
- samples/cgi/po/nb/hellolib.po
|
176
|
+
- samples/cgi/po/nb/helloerb1.po
|
177
|
+
- samples/cgi/po/nb/helloerb2.po
|
178
|
+
- samples/cgi/po/ko/main.po
|
179
|
+
- samples/cgi/po/ko/hellolib.po
|
180
|
+
- samples/cgi/po/ko/helloerb1.po
|
181
|
+
- samples/cgi/po/ko/helloerb2.po
|
182
|
+
- samples/cgi/po/lv/main.po
|
183
|
+
- samples/cgi/po/lv/hellolib.po
|
184
|
+
- samples/cgi/po/lv/helloerb1.po
|
185
|
+
- samples/cgi/po/lv/helloerb2.po
|
186
|
+
- samples/cgi/po/ru/main.po
|
187
|
+
- samples/cgi/po/ru/hellolib.po
|
188
|
+
- samples/cgi/po/ru/helloerb1.po
|
189
|
+
- samples/cgi/po/ru/helloerb2.po
|
190
|
+
- samples/cgi/po/zh_TW/main.po
|
191
|
+
- samples/cgi/po/zh_TW/hellolib.po
|
192
|
+
- samples/cgi/po/zh_TW/helloerb1.po
|
193
|
+
- samples/cgi/po/zh_TW/helloerb2.po
|
194
|
+
- samples/cgi/po/ca/main.po
|
195
|
+
- samples/cgi/po/ca/hellolib.po
|
196
|
+
- samples/cgi/po/ca/helloerb1.po
|
197
|
+
- samples/cgi/po/ca/helloerb2.po
|
198
|
+
- samples/cgi/po/de/main.po
|
199
|
+
- samples/cgi/po/de/hellolib.po
|
200
|
+
- samples/cgi/po/de/helloerb1.po
|
201
|
+
- samples/cgi/po/de/helloerb2.po
|
202
|
+
- samples/cgi/po/es/main.po
|
203
|
+
- samples/cgi/po/es/hellolib.po
|
204
|
+
- samples/cgi/po/es/helloerb1.po
|
205
|
+
- samples/cgi/po/es/helloerb2.po
|
206
|
+
- samples/cgi/po/eo/main.po
|
207
|
+
- samples/cgi/po/eo/hellolib.po
|
208
|
+
- samples/cgi/po/eo/helloerb1.po
|
209
|
+
- samples/cgi/po/eo/helloerb2.po
|
210
|
+
- samples/cgi/po/nl/main.po
|
211
|
+
- samples/cgi/po/nl/hellolib.po
|
212
|
+
- samples/cgi/po/nl/helloerb1.po
|
213
|
+
- samples/cgi/po/nl/helloerb2.po
|
214
|
+
- samples/cgi/po/sr/main.po
|
215
|
+
- samples/cgi/po/sr/hellolib.po
|
216
|
+
- samples/cgi/po/sr/helloerb1.po
|
217
|
+
- samples/cgi/po/sr/helloerb2.po
|
218
|
+
- samples/cgi/po/hu/main.po
|
219
|
+
- samples/cgi/po/hu/hellolib.po
|
220
|
+
- samples/cgi/po/hu/helloerb1.po
|
221
|
+
- samples/cgi/po/hu/helloerb2.po
|
222
|
+
- samples/cgi/po/helloerb1.pot
|
223
|
+
- samples/cgi/po/helloerb2.pot
|
224
|
+
- samples/cgi/po/zh/main.po
|
225
|
+
- samples/cgi/po/zh/hellolib.po
|
226
|
+
- samples/cgi/po/zh/helloerb1.po
|
227
|
+
- samples/cgi/po/zh/helloerb2.po
|
228
|
+
- samples/cgi/po/ja/main.po
|
229
|
+
- samples/cgi/po/ja/hellolib.po
|
230
|
+
- samples/cgi/po/ja/helloerb1.po
|
231
|
+
- samples/cgi/po/ja/helloerb2.po
|
232
|
+
- samples/cgi/po/bg/main.po
|
233
|
+
- samples/cgi/po/bg/hellolib.po
|
234
|
+
- samples/cgi/po/bg/helloerb1.po
|
235
|
+
- samples/cgi/po/bg/helloerb2.po
|
236
|
+
- samples/cgi/po/main.pot
|
237
|
+
- samples/cgi/po/ua/main.po
|
238
|
+
- samples/cgi/po/ua/hellolib.po
|
239
|
+
- samples/cgi/po/ua/helloerb1.po
|
240
|
+
- samples/cgi/po/ua/helloerb2.po
|
241
|
+
- samples/cgi/po/fr/main.po
|
242
|
+
- samples/cgi/po/fr/hellolib.po
|
243
|
+
- samples/cgi/po/fr/helloerb1.po
|
244
|
+
- samples/cgi/po/fr/helloerb2.po
|
245
|
+
- samples/cgi/po/it/main.po
|
246
|
+
- samples/cgi/po/it/hellolib.po
|
247
|
+
- samples/cgi/po/it/helloerb1.po
|
248
|
+
- samples/cgi/po/it/helloerb2.po
|
249
|
+
- samples/cgi/hellolib.rb
|
250
|
+
- samples/cgi/helloerb1.cgi
|
251
|
+
- samples/cgi/cookie.cgi
|
252
|
+
- samples/cgi/README
|
253
|
+
- samples/cgi/other.rhtml
|
254
|
+
- samples/cgi/Rakefile
|
255
|
+
- samples/cgi/gettext.css
|
256
|
+
- samples/cgi/helloerb2.cgi
|
257
|
+
- samples/cgi/http.rb
|
258
|
+
- samples/cgi/helloerb.rhtml
|
259
|
+
- samples/cgi/index.cgi
|
260
|
+
- samples/po/hello_plural.pot
|
261
|
+
- samples/po/hr/hello_glade2.po
|
262
|
+
- samples/po/hr/hello_plural.po
|
263
|
+
- samples/po/hr/hello_noop.po
|
264
|
+
- samples/po/hr/hello.po
|
265
|
+
- samples/po/hr/hello2.po
|
266
|
+
- samples/po/hr/hello_tk.po
|
267
|
+
- samples/po/hr/hello_gtk.po
|
268
|
+
- samples/po/cs/hello_glade2.po
|
269
|
+
- samples/po/cs/hello_plural.po
|
270
|
+
- samples/po/cs/hello_noop.po
|
271
|
+
- samples/po/cs/hello.po
|
272
|
+
- samples/po/cs/hello2.po
|
273
|
+
- samples/po/cs/hello_tk.po
|
274
|
+
- samples/po/cs/hello_gtk.po
|
275
|
+
- samples/po/el/hello_glade2.po
|
276
|
+
- samples/po/el/hello_plural.po
|
277
|
+
- samples/po/el/hello_noop.po
|
278
|
+
- samples/po/el/hello.po
|
279
|
+
- samples/po/el/hello2.po
|
280
|
+
- samples/po/el/hello_tk.po
|
281
|
+
- samples/po/el/hello_gtk.po
|
282
|
+
- samples/po/bs/hello_glade2.po
|
283
|
+
- samples/po/bs/hello_plural.po
|
284
|
+
- samples/po/bs/hello_noop.po
|
285
|
+
- samples/po/bs/hello.po
|
286
|
+
- samples/po/bs/hello2.po
|
287
|
+
- samples/po/bs/hello_tk.po
|
288
|
+
- samples/po/bs/hello_gtk.po
|
289
|
+
- samples/po/vi/hello_glade2.po
|
290
|
+
- samples/po/vi/hello_plural.po
|
291
|
+
- samples/po/vi/hello_noop.po
|
292
|
+
- samples/po/vi/hello.po
|
293
|
+
- samples/po/vi/hello2.po
|
294
|
+
- samples/po/vi/hello_tk.po
|
295
|
+
- samples/po/vi/hello_gtk.po
|
296
|
+
- samples/po/pt_BR/hello_glade2.po
|
297
|
+
- samples/po/pt_BR/hello_plural.po
|
298
|
+
- samples/po/pt_BR/hello_noop.po
|
299
|
+
- samples/po/pt_BR/hello.po
|
300
|
+
- samples/po/pt_BR/hello2.po
|
301
|
+
- samples/po/pt_BR/hello_tk.po
|
302
|
+
- samples/po/pt_BR/hello_gtk.po
|
303
|
+
- samples/po/nb/hello_glade2.po
|
304
|
+
- samples/po/nb/hello_plural.po
|
305
|
+
- samples/po/nb/hello_noop.po
|
306
|
+
- samples/po/nb/hello.po
|
307
|
+
- samples/po/nb/hello2.po
|
308
|
+
- samples/po/nb/hello_tk.po
|
309
|
+
- samples/po/nb/hello_gtk.po
|
310
|
+
- samples/po/hello_noop.pot
|
311
|
+
- samples/po/ko/hello_glade2.po
|
312
|
+
- samples/po/ko/hello_plural.po
|
313
|
+
- samples/po/ko/hello_noop.po
|
314
|
+
- samples/po/ko/hello.po
|
315
|
+
- samples/po/ko/hello2.po
|
316
|
+
- samples/po/ko/hello_tk.po
|
317
|
+
- samples/po/ko/hello_gtk.po
|
318
|
+
- samples/po/lv/hello_glade2.po
|
319
|
+
- samples/po/lv/hello_plural.po
|
320
|
+
- samples/po/lv/hello_noop.po
|
321
|
+
- samples/po/lv/hello.po
|
322
|
+
- samples/po/lv/hello2.po
|
323
|
+
- samples/po/lv/hello_tk.po
|
324
|
+
- samples/po/lv/hello_gtk.po
|
325
|
+
- samples/po/ru/hello_glade2.po
|
326
|
+
- samples/po/ru/hello_plural.po
|
327
|
+
- samples/po/ru/hello_noop.po
|
328
|
+
- samples/po/ru/hello.po
|
329
|
+
- samples/po/ru/hello2.po
|
330
|
+
- samples/po/ru/hello_tk.po
|
331
|
+
- samples/po/ru/hello_gtk.po
|
332
|
+
- samples/po/zh_TW/hello_glade2.po
|
333
|
+
- samples/po/zh_TW/hello_plural.po
|
334
|
+
- samples/po/zh_TW/hello_noop.po
|
335
|
+
- samples/po/zh_TW/hello.po
|
336
|
+
- samples/po/zh_TW/hello2.po
|
337
|
+
- samples/po/zh_TW/hello_tk.po
|
338
|
+
- samples/po/zh_TW/hello_gtk.po
|
339
|
+
- samples/po/ca/hello_glade2.po
|
340
|
+
- samples/po/ca/hello_plural.po
|
341
|
+
- samples/po/ca/hello_noop.po
|
342
|
+
- samples/po/ca/hello.po
|
343
|
+
- samples/po/ca/hello2.po
|
344
|
+
- samples/po/ca/hello_tk.po
|
345
|
+
- samples/po/ca/hello_gtk.po
|
346
|
+
- samples/po/hello2.pot
|
347
|
+
- samples/po/de/hello_glade2.po
|
348
|
+
- samples/po/de/hello_plural.po
|
349
|
+
- samples/po/de/hello_noop.po
|
350
|
+
- samples/po/de/hello.po
|
351
|
+
- samples/po/de/hello2.po
|
352
|
+
- samples/po/de/hello_tk.po
|
353
|
+
- samples/po/de/hello_gtk.po
|
354
|
+
- samples/po/es/hello_glade2.po
|
355
|
+
- samples/po/es/hello_plural.po
|
356
|
+
- samples/po/es/hello_noop.po
|
357
|
+
- samples/po/es/hello.po
|
358
|
+
- samples/po/es/hello2.po
|
359
|
+
- samples/po/es/hello_tk.po
|
360
|
+
- samples/po/es/hello_gtk.po
|
361
|
+
- samples/po/hello_gtk.pot
|
362
|
+
- samples/po/eo/hello_glade2.po
|
363
|
+
- samples/po/eo/hello_plural.po
|
364
|
+
- samples/po/eo/hello_noop.po
|
365
|
+
- samples/po/eo/hello.po
|
366
|
+
- samples/po/eo/hello2.po
|
367
|
+
- samples/po/eo/hello_tk.po
|
368
|
+
- samples/po/eo/hello_gtk.po
|
369
|
+
- samples/po/nl/hello_glade2.po
|
370
|
+
- samples/po/nl/hello_plural.po
|
371
|
+
- samples/po/nl/hello_noop.po
|
372
|
+
- samples/po/nl/hello.po
|
373
|
+
- samples/po/nl/hello2.po
|
374
|
+
- samples/po/nl/hello_tk.po
|
375
|
+
- samples/po/nl/hello_gtk.po
|
376
|
+
- samples/po/sr/hello_glade2.po
|
377
|
+
- samples/po/sr/hello_plural.po
|
378
|
+
- samples/po/sr/hello_noop.po
|
379
|
+
- samples/po/sr/hello.po
|
380
|
+
- samples/po/sr/hello2.po
|
381
|
+
- samples/po/sr/hello_tk.po
|
382
|
+
- samples/po/sr/hello_gtk.po
|
383
|
+
- samples/po/hello.pot
|
384
|
+
- samples/po/hu/hello_glade2.po
|
385
|
+
- samples/po/hu/hello_plural.po
|
386
|
+
- samples/po/hu/hello_noop.po
|
387
|
+
- samples/po/hu/hello.po
|
388
|
+
- samples/po/hu/hello2.po
|
389
|
+
- samples/po/hu/hello_tk.po
|
390
|
+
- samples/po/hu/hello_gtk.po
|
391
|
+
- samples/po/zh/hello_glade2.po
|
392
|
+
- samples/po/zh/hello_plural.po
|
393
|
+
- samples/po/zh/hello_noop.po
|
394
|
+
- samples/po/zh/hello.po
|
395
|
+
- samples/po/zh/hello2.po
|
396
|
+
- samples/po/zh/hello_tk.po
|
397
|
+
- samples/po/zh/hello_gtk.po
|
398
|
+
- samples/po/test.rb
|
399
|
+
- samples/po/ja/hello_glade2.po
|
400
|
+
- samples/po/ja/hello_plural.po
|
401
|
+
- samples/po/ja/hello_noop.po
|
402
|
+
- samples/po/ja/hello.po
|
403
|
+
- samples/po/ja/hello2.po
|
404
|
+
- samples/po/ja/hello_tk.po
|
405
|
+
- samples/po/ja/hello_gtk.po
|
406
|
+
- samples/po/bg/hello_glade2.po
|
407
|
+
- samples/po/bg/hello_plural.po
|
408
|
+
- samples/po/bg/hello_noop.po
|
409
|
+
- samples/po/bg/hello.po
|
410
|
+
- samples/po/bg/hello2.po
|
411
|
+
- samples/po/bg/hello_tk.po
|
412
|
+
- samples/po/bg/hello_gtk.po
|
413
|
+
- samples/po/ua/hello_glade2.po
|
414
|
+
- samples/po/ua/hello_plural.po
|
415
|
+
- samples/po/ua/hello_noop.po
|
416
|
+
- samples/po/ua/hello.po
|
417
|
+
- samples/po/ua/hello2.po
|
418
|
+
- samples/po/ua/hello_tk.po
|
419
|
+
- samples/po/ua/hello_gtk.po
|
420
|
+
- samples/po/fr/hello_glade2.po
|
421
|
+
- samples/po/fr/hello_plural.po
|
422
|
+
- samples/po/fr/hello_noop.po
|
423
|
+
- samples/po/fr/hello.po
|
424
|
+
- samples/po/fr/hello2.po
|
425
|
+
- samples/po/fr/hello_tk.po
|
426
|
+
- samples/po/fr/hello_gtk.po
|
427
|
+
- samples/po/hello_tk.pot
|
428
|
+
- samples/po/sv/hello_glade2.po
|
429
|
+
- samples/po/sv/hello_plural.po
|
430
|
+
- samples/po/sv/hello_noop.po
|
431
|
+
- samples/po/sv/hello.po
|
432
|
+
- samples/po/sv/hello2.po
|
433
|
+
- samples/po/sv/hello_tk.po
|
434
|
+
- samples/po/sv/hello_gtk.po
|
435
|
+
- samples/po/hello_glade2.pot
|
436
|
+
- samples/po/it/hello_glade2.po
|
437
|
+
- samples/po/it/hello_plural.po
|
438
|
+
- samples/po/it/hello_noop.po
|
439
|
+
- samples/po/it/hello.po
|
440
|
+
- samples/po/it/hello2.po
|
441
|
+
- samples/po/it/hello_tk.po
|
442
|
+
- samples/po/it/hello_gtk.po
|
443
|
+
- samples/hello_noop.rb
|
444
|
+
- samples/hello_plural.rb
|
445
|
+
- samples/makemo.rb
|
446
|
+
- samples/hello_glade2.glade
|
447
|
+
- samples/hello.rb
|
448
|
+
- samples/hello_gtk2.rb
|
449
|
+
- samples/README
|
450
|
+
- samples/hello_glade2.rb
|
451
|
+
- samples/hello2.rb
|
452
|
+
- samples/hello_tk.rb
|
453
|
+
- gettext.gemspec
|
454
|
+
has_rdoc: true
|
455
|
+
homepage: http://gettext.rubyforge.org/
|
456
|
+
licenses: []
|
457
|
+
|
458
|
+
post_install_message:
|
459
|
+
rdoc_options:
|
460
|
+
- --line-numbers
|
461
|
+
- --inline-source
|
462
|
+
- --title
|
463
|
+
- GetText
|
464
|
+
- --main
|
465
|
+
- README.rdoc
|
466
|
+
require_paths:
|
467
|
+
- lib
|
468
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
469
|
+
requirements:
|
470
|
+
- - ">="
|
471
|
+
- !ruby/object:Gem::Version
|
472
|
+
segments:
|
473
|
+
- 0
|
474
|
+
version: "0"
|
475
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
476
|
+
requirements:
|
477
|
+
- - ">="
|
478
|
+
- !ruby/object:Gem::Version
|
479
|
+
segments:
|
480
|
+
- 1
|
481
|
+
- 2
|
482
|
+
version: "1.2"
|
483
|
+
requirements: []
|
484
|
+
|
485
|
+
rubyforge_project: gettext
|
486
|
+
rubygems_version: 1.3.6
|
487
|
+
signing_key:
|
488
|
+
specification_version: 2
|
489
|
+
summary: Ruby-GetText-Package is a libary and tools to localize messages.
|
490
|
+
test_files:
|
491
|
+
- test/test_textdomain_toplevel.rb
|
492
|
+
- test/test_gettext.rb
|
493
|
+
- test/test_parser.rb
|
494
|
+
- test/test_string.rb
|
495
|
+
- test/test_class_info.rb
|
496
|
+
- test/test_textdomain_multi.rb
|