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
@@ -0,0 +1,26 @@
|
|
1
|
+
# hello_tk.po - sample for Ruby/TK
|
2
|
+
#
|
3
|
+
# Copyright (C) 2004-2006 Masao Mutoh
|
4
|
+
#
|
5
|
+
# This file is distributed under the same license as the Ruby-GetText-Package.
|
6
|
+
#
|
7
|
+
# LIN CHUNG-YI <xmarsh at gmail.com>, 2006.
|
8
|
+
#
|
9
|
+
msgid ""
|
10
|
+
msgstr ""
|
11
|
+
"Project-Id-Version: ruby-gettext 1.1.1\n"
|
12
|
+
"POT-Creation-Date: 2004-11-05 21:38+0900\n"
|
13
|
+
"PO-Revision-Date: 2006-08-21 09:10+0800\n"
|
14
|
+
"Last-Translator: LIN CHUNG-YI <xmarsh at gmail.com>\n"
|
15
|
+
"Language-Team: zh_TW <xmarsh at gmail.com>\n"
|
16
|
+
"MIME-Version: 1.0\n"
|
17
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
18
|
+
"Content-Transfer-Encoding: 8bit\n"
|
19
|
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
20
|
+
"X-Poedit-Language: Chinese\n"
|
21
|
+
"X-Poedit-Country: TAIWAN\n"
|
22
|
+
|
23
|
+
#: hello_tk.rb:10
|
24
|
+
msgid "hello, tk world"
|
25
|
+
msgstr "哈囉, tk 世界"
|
26
|
+
|
data/src/poparser.ry
ADDED
@@ -0,0 +1,217 @@
|
|
1
|
+
#
|
2
|
+
# poparser.ry - ruby version of msgfmt
|
3
|
+
#
|
4
|
+
# Copyright (C) 2002-2008 Masao Mutoh <mutomasa at gmail.com>
|
5
|
+
#
|
6
|
+
# You may redistribute it and/or modify it under the same
|
7
|
+
# license terms as Ruby.
|
8
|
+
|
9
|
+
class GetText::PoParser
|
10
|
+
token COMMENT MSGID MSGCTXT MSGID_PLURAL MSGSTR STRING PLURAL_NUM
|
11
|
+
|
12
|
+
rule
|
13
|
+
|
14
|
+
msgfmt
|
15
|
+
: /* empty */
|
16
|
+
| msgfmt comment
|
17
|
+
| msgfmt msgctxt
|
18
|
+
| msgfmt message
|
19
|
+
;
|
20
|
+
|
21
|
+
msgctxt
|
22
|
+
: MSGCTXT string_list
|
23
|
+
{
|
24
|
+
@msgctxt = unescape(val[1]) + "\004"
|
25
|
+
}
|
26
|
+
;
|
27
|
+
|
28
|
+
message
|
29
|
+
: single_message
|
30
|
+
| plural_message
|
31
|
+
;
|
32
|
+
|
33
|
+
single_message
|
34
|
+
: MSGID string_list MSGSTR string_list
|
35
|
+
{
|
36
|
+
if @fuzzy and $ignore_fuzzy
|
37
|
+
if val[1] != ""
|
38
|
+
$stderr.print _("Warning: fuzzy message was ignored.\n")
|
39
|
+
$stderr.print " #{@po_file}: msgid '#{val[1]}'\n"
|
40
|
+
else
|
41
|
+
on_message('', unescape(val[3]))
|
42
|
+
end
|
43
|
+
@fuzzy = false
|
44
|
+
else
|
45
|
+
on_message(@msgctxt + unescape(val[1]), unescape(val[3]))
|
46
|
+
end
|
47
|
+
result = ""
|
48
|
+
}
|
49
|
+
|
50
|
+
plural_message
|
51
|
+
: MSGID string_list MSGID_PLURAL string_list msgstr_plural
|
52
|
+
{
|
53
|
+
if @fuzzy and $ignore_fuzzy
|
54
|
+
if val[1] != ""
|
55
|
+
$stderr.print _("Warning: fuzzy message was ignored.\n")
|
56
|
+
$stderr.print "msgid = '#{val[1]}\n"
|
57
|
+
else
|
58
|
+
on_message('', unescape(val[3]))
|
59
|
+
end
|
60
|
+
@fuzzy = false
|
61
|
+
else
|
62
|
+
on_message(@msgctxt + unescape(val[1]) + "\000" + unescape(val[3]), unescape(val[4]))
|
63
|
+
end
|
64
|
+
result = ""
|
65
|
+
}
|
66
|
+
;
|
67
|
+
|
68
|
+
msgstr_plural
|
69
|
+
: msgstr_plural msgstr_plural_line
|
70
|
+
{
|
71
|
+
if val[0].size > 0
|
72
|
+
result = val[0] + "\000" + val[1]
|
73
|
+
else
|
74
|
+
result = ""
|
75
|
+
end
|
76
|
+
}
|
77
|
+
| msgstr_plural_line
|
78
|
+
;
|
79
|
+
|
80
|
+
msgstr_plural_line
|
81
|
+
: MSGSTR PLURAL_NUM string_list
|
82
|
+
{
|
83
|
+
result = val[2]
|
84
|
+
}
|
85
|
+
;
|
86
|
+
|
87
|
+
comment
|
88
|
+
: COMMENT
|
89
|
+
{
|
90
|
+
on_comment(val[0])
|
91
|
+
}
|
92
|
+
#| COMMENT
|
93
|
+
#;
|
94
|
+
|
95
|
+
string_list
|
96
|
+
: string_list STRING
|
97
|
+
{
|
98
|
+
result = val.delete_if{|item| item == ""}.join
|
99
|
+
}
|
100
|
+
| STRING
|
101
|
+
{
|
102
|
+
result = val[0]
|
103
|
+
}
|
104
|
+
;
|
105
|
+
end
|
106
|
+
|
107
|
+
---- inner
|
108
|
+
include GetText
|
109
|
+
GetText.bindtextdomain("rgettext")
|
110
|
+
|
111
|
+
def unescape(orig)
|
112
|
+
ret = orig.gsub(/\\n/, "\n")
|
113
|
+
ret.gsub!(/\\t/, "\t")
|
114
|
+
ret.gsub!(/\\r/, "\r")
|
115
|
+
ret.gsub!(/\\"/, "\"")
|
116
|
+
ret
|
117
|
+
end
|
118
|
+
|
119
|
+
def parse(str, data, ignore_fuzzy = true)
|
120
|
+
@comments = []
|
121
|
+
@data = data
|
122
|
+
@fuzzy = false
|
123
|
+
@msgctxt = ""
|
124
|
+
$ignore_fuzzy = ignore_fuzzy
|
125
|
+
|
126
|
+
str.strip!
|
127
|
+
@q = []
|
128
|
+
until str.empty? do
|
129
|
+
case str
|
130
|
+
when /\A\s+/
|
131
|
+
str = $'
|
132
|
+
when /\Amsgctxt/
|
133
|
+
@q.push [:MSGCTXT, $&]
|
134
|
+
str = $'
|
135
|
+
when /\Amsgid_plural/
|
136
|
+
@q.push [:MSGID_PLURAL, $&]
|
137
|
+
str = $'
|
138
|
+
when /\Amsgid/
|
139
|
+
@q.push [:MSGID, $&]
|
140
|
+
str = $'
|
141
|
+
when /\Amsgstr/
|
142
|
+
@q.push [:MSGSTR, $&]
|
143
|
+
str = $'
|
144
|
+
when /\A\[(\d+)\]/
|
145
|
+
@q.push [:PLURAL_NUM, $1]
|
146
|
+
str = $'
|
147
|
+
when /\A\#~(.*)/
|
148
|
+
$stderr.print _("Warning: obsolete msgid exists.\n")
|
149
|
+
$stderr.print " #{$&}\n"
|
150
|
+
@q.push [:COMMENT, $&]
|
151
|
+
str = $'
|
152
|
+
when /\A\#(.*)/
|
153
|
+
@q.push [:COMMENT, $&]
|
154
|
+
str = $'
|
155
|
+
when /\A\"(.*)\"/
|
156
|
+
@q.push [:STRING, $1]
|
157
|
+
str = $'
|
158
|
+
else
|
159
|
+
#c = str[0,1]
|
160
|
+
#@q.push [:STRING, c]
|
161
|
+
str = str[1..-1]
|
162
|
+
end
|
163
|
+
end
|
164
|
+
@q.push [false, '$end']
|
165
|
+
if $DEBUG
|
166
|
+
@q.each do |a,b|
|
167
|
+
puts "[#{a}, #{b}]"
|
168
|
+
end
|
169
|
+
end
|
170
|
+
@yydebug = true if $DEBUG
|
171
|
+
do_parse
|
172
|
+
|
173
|
+
if @comments.size > 0
|
174
|
+
@data.set_comment(:last, @comments.join("\n"))
|
175
|
+
end
|
176
|
+
@data
|
177
|
+
end
|
178
|
+
|
179
|
+
def next_token
|
180
|
+
@q.shift
|
181
|
+
end
|
182
|
+
|
183
|
+
def on_message(msgid, msgstr)
|
184
|
+
if msgstr.size > 0
|
185
|
+
@data[msgid] = msgstr
|
186
|
+
@data.set_comment(msgid, @comments.join("\n"))
|
187
|
+
end
|
188
|
+
@comments.clear
|
189
|
+
@msgctxt = ""
|
190
|
+
end
|
191
|
+
|
192
|
+
def on_comment(comment)
|
193
|
+
@fuzzy = true if (/fuzzy/ =~ comment)
|
194
|
+
@comments << comment
|
195
|
+
end
|
196
|
+
|
197
|
+
def parse_file(po_file, data, ignore_fuzzy = true)
|
198
|
+
args = [ po_file ]
|
199
|
+
# In Ruby 1.9, we must detect proper encoding of a PO file.
|
200
|
+
if String.instance_methods.include?(:encode)
|
201
|
+
encoding = detect_file_encoding(po_file)
|
202
|
+
args << "r:#{encoding}"
|
203
|
+
end
|
204
|
+
@po_file = po_file
|
205
|
+
parse(File.open(*args) {|io| io.read }, data, ignore_fuzzy)
|
206
|
+
end
|
207
|
+
|
208
|
+
def detect_file_encoding(po_file)
|
209
|
+
open(po_file, :encoding => 'ASCII-8BIT') do |input|
|
210
|
+
input.lines.each do |line|
|
211
|
+
return Encoding.find($1) if %r["Content-Type:.*\scharset=(.*)\\n"] =~ line
|
212
|
+
end
|
213
|
+
end
|
214
|
+
Encoding.default_external
|
215
|
+
end
|
216
|
+
private :detect_file_encoding
|
217
|
+
---- footer
|
data/test/README
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
Go to gettext dir and run "rake makemo" prior to running any tests!
|
data/test/Rakefile
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
$LOAD_PATH.unshift "../lib"
|
2
|
+
|
3
|
+
task :default => :test
|
4
|
+
|
5
|
+
desc "Create mo files"
|
6
|
+
task :makemo do
|
7
|
+
require 'gettext/tools'
|
8
|
+
GetText.create_mofiles(:mo_root => "locale")
|
9
|
+
end
|
10
|
+
|
11
|
+
desc 'Run all tests'
|
12
|
+
task :test do
|
13
|
+
Dir.glob("**/test_*.rb").each do |path|
|
14
|
+
puts ""
|
15
|
+
ruby "-I../lib:../../locale/lib -rubygems #{path}"
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR ORGANIZATION
|
3
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
4
|
+
#
|
5
|
+
#, fuzzy
|
6
|
+
msgid ""
|
7
|
+
msgstr ""
|
8
|
+
"Project-Id-Version: PACKAGE VERSION\n"
|
9
|
+
"POT-Creation-Date: 2002-10-21 15:32:15+0900\n"
|
10
|
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
12
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
13
|
+
"MIME-Version: 1.0\n"
|
14
|
+
"Content-Type: text/plain; charset=US-ASCII\n"
|
15
|
+
"Content-Transfer-Encoding: ENCODING\n"
|
16
|
+
"Plural-Forms: nplurals=3; plural= n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
17
|
+
|
18
|
+
#: hello_plural.rb:11
|
19
|
+
msgid "one"
|
20
|
+
msgid_plural "two"
|
21
|
+
msgstr[0] "cr_one"
|
22
|
+
msgstr[1] "cr_two"
|
23
|
+
msgstr[2] "cr_three"
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR ORGANIZATION
|
3
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
4
|
+
#
|
5
|
+
#, fuzzy
|
6
|
+
msgid ""
|
7
|
+
msgstr ""
|
8
|
+
"Project-Id-Version: PACKAGE VERSION\n"
|
9
|
+
"POT-Creation-Date: 2002-10-21 15:32:15+0900\n"
|
10
|
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
12
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
13
|
+
"MIME-Version: 1.0\n"
|
14
|
+
"Content-Type: text/plain; charset=US-ASCII\n"
|
15
|
+
"Content-Transfer-Encoding: ENCODING\n"
|
16
|
+
"Plural-Forms: nplurals=2; plural= n != 1;\n"
|
17
|
+
|
18
|
+
#: hello_plural.rb:11
|
19
|
+
msgid "one"
|
20
|
+
msgid_plural "two"
|
21
|
+
msgstr[0] "da_one"
|
22
|
+
msgstr[1] "da_plural"
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR ORGANIZATION
|
3
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
4
|
+
#
|
5
|
+
#, fuzzy
|
6
|
+
msgid ""
|
7
|
+
msgstr ""
|
8
|
+
"Project-Id-Version: PACKAGE VERSION\n"
|
9
|
+
"POT-Creation-Date: 2002-10-21 15:32:15+0900\n"
|
10
|
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
12
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
13
|
+
"MIME-Version: 1.0\n"
|
14
|
+
"Content-Type: text/plain; charset=US-ASCII\n"
|
15
|
+
"Content-Transfer-Encoding: ENCODING\n"
|
16
|
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
17
|
+
|
18
|
+
#: hello_plural.rb:11
|
19
|
+
msgid "first"
|
20
|
+
msgid_plural "second"
|
21
|
+
msgstr[0] "da_first"
|
22
|
+
msgstr[1] "da_second"
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR ORGANIZATION
|
3
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
4
|
+
#
|
5
|
+
#, fuzzy
|
6
|
+
msgid ""
|
7
|
+
msgstr ""
|
8
|
+
"Project-Id-Version: PACKAGE VERSION\n"
|
9
|
+
"POT-Creation-Date: 2002-10-21 15:32:15+0900\n"
|
10
|
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
12
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
13
|
+
"MIME-Version: 1.0\n"
|
14
|
+
"Content-Type: text/plain; charset=US-ASCII\n"
|
15
|
+
"Content-Transfer-Encoding: ENCODING\n"
|
16
|
+
"Plural-Forms: nplurals=2; plural=n>1;\n"
|
17
|
+
|
18
|
+
#: hello_plural.rb:11
|
19
|
+
msgid "one"
|
20
|
+
msgid_plural "two"
|
21
|
+
msgstr[0] "fr_one"
|
22
|
+
msgstr[1] "fr_plural"
|
23
|
+
|
24
|
+
#: hello_plural.rb:14
|
25
|
+
msgid "single"
|
26
|
+
msgid_plural "plural"
|
27
|
+
msgstr[0] "fr_hitotsu"
|
28
|
+
msgstr[1] "fr_fukusu"
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR ORGANIZATION
|
3
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
4
|
+
#
|
5
|
+
#, fuzzy
|
6
|
+
msgid ""
|
7
|
+
msgstr ""
|
8
|
+
"Project-Id-Version: PACKAGE VERSION\n"
|
9
|
+
"POT-Creation-Date: 2002-10-21 15:32:15+0900\n"
|
10
|
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
12
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
13
|
+
"MIME-Version: 1.0\n"
|
14
|
+
"Content-Type: text/plain; charset=US-ASCII\n"
|
15
|
+
"Content-Transfer-Encoding: ENCODING\n"
|
16
|
+
|
17
|
+
#: hello_plural.rb:11
|
18
|
+
msgid "first"
|
19
|
+
msgid_plural "second"
|
20
|
+
msgstr[0] "fr_first"
|
data/test/po/fr/test1.po
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR ORGANIZATION
|
3
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
4
|
+
#
|
5
|
+
#, fuzzy
|
6
|
+
msgid ""
|
7
|
+
msgstr ""
|
8
|
+
"Project-Id-Version: PACKAGE VERSION\n"
|
9
|
+
"POT-Creation-Date: 2002-01-01 02:24:56+0900\n"
|
10
|
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
12
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
13
|
+
"MIME-Version: 1.0\n"
|
14
|
+
"Content-Type: text/plain; charset=utf-8\n"
|
15
|
+
"Content-Transfer-Encoding: ENCODING\n"
|
16
|
+
|
17
|
+
#: simple.rb:10
|
18
|
+
msgid "language"
|
19
|
+
msgstr "french"
|
20
|
+
|
21
|
+
#: simple.rb:14
|
22
|
+
msgid "one is %d."
|
23
|
+
msgstr "FRENCH:ONE IS %d."
|
data/test/po/fr/test2.po
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR ORGANIZATION
|
3
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
4
|
+
#
|
5
|
+
#, fuzzy
|
6
|
+
msgid ""
|
7
|
+
msgstr ""
|
8
|
+
"Project-Id-Version: PACKAGE VERSION\n"
|
9
|
+
"POT-Creation-Date: 2001-10-28 01:39:53+0900\n"
|
10
|
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
12
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
13
|
+
"MIME-Version: 1.0\n"
|
14
|
+
"Content-Type: text/plain; charset=utf-8\n"
|
15
|
+
"Content-Transfer-Encoding: ENCODING\n"
|
16
|
+
|
17
|
+
#: test.rb:9 test.rb:11
|
18
|
+
msgid "LANGUAGE"
|
19
|
+
msgstr "FRENCH"
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR ORGANIZATION
|
3
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
4
|
+
#
|
5
|
+
#, fuzzy
|
6
|
+
msgid ""
|
7
|
+
msgstr ""
|
8
|
+
"Project-Id-Version: PACKAGE VERSION\n"
|
9
|
+
"POT-Creation-Date: 2002-10-21 15:32:15+0900\n"
|
10
|
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
12
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
13
|
+
"MIME-Version: 1.0\n"
|
14
|
+
"Content-Type: text/plain; charset=US-ASCII\n"
|
15
|
+
"Content-Transfer-Encoding: ENCODING\n"
|
16
|
+
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n"
|
17
|
+
|
18
|
+
#: hello_plural.rb:11
|
19
|
+
msgid "one"
|
20
|
+
msgid_plural "two"
|
21
|
+
msgstr[0] "ir_one"
|
22
|
+
msgstr[1] "ir_two"
|
23
|
+
msgstr[2] "ir_plural"
|
@@ -0,0 +1,46 @@
|
|
1
|
+
# Japanese translations for PACKAGE package
|
2
|
+
# PACKAGE パッケージに対する英訳.
|
3
|
+
# Copyright (C) 2008 THE PACKAGE'S COPYRIGHT HOLDER
|
4
|
+
# This file is distributed under the same license as the PACKAGE package.
|
5
|
+
# Masao Mutoh <mutomasa at gmail.com>, 2008.
|
6
|
+
#
|
7
|
+
msgid ""
|
8
|
+
msgstr ""
|
9
|
+
"Project-Id-Version: PACKAGE VERSION\n"
|
10
|
+
"POT-Creation-Date: 2008-08-06 02:36+0900\n"
|
11
|
+
"PO-Revision-Date: 2008-08-06 02:36+0900\n"
|
12
|
+
"Last-Translator: Masao Mutoh <mutomasa at gmail.com>\n"
|
13
|
+
"Language-Team: Japanese\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=2; plural=(n != 1);\n"
|
18
|
+
|
19
|
+
#: testlib/npgettext.rb:10 testlib/npgettext.rb:11 testlib/npgettext.rb:15
|
20
|
+
#: testlib/npgettext.rb:16
|
21
|
+
msgctxt "Magazine"
|
22
|
+
msgid "a book"
|
23
|
+
msgid_plural "%{num} books"
|
24
|
+
msgstr[0] "一つの本"
|
25
|
+
msgstr[1] "%{num}の本たち"
|
26
|
+
|
27
|
+
#: testlib/npgettext.rb:20 testlib/npgettext.rb:21
|
28
|
+
msgctxt "Hardcover"
|
29
|
+
msgid "a book"
|
30
|
+
msgid_plural "%{num} books"
|
31
|
+
msgstr[0] "一つのハードカバー本"
|
32
|
+
msgstr[1] "%{num}のハードカバー本たち"
|
33
|
+
|
34
|
+
#: testlib/npgettext.rb:25 testlib/npgettext.rb:26
|
35
|
+
msgctxt "Magaine"
|
36
|
+
msgid "I have a magazine"
|
37
|
+
msgid_plural "I have %{num} magazines"
|
38
|
+
msgstr[0] "マガジンを1冊持ってます。"
|
39
|
+
msgstr[0] "マガジンたちを%{num}冊持ってます。"
|
40
|
+
|
41
|
+
#: testlib/npgettext.rb:30 testlib/npgettext.rb:31
|
42
|
+
msgctxt "Hardcover"
|
43
|
+
msgid "a picture"
|
44
|
+
msgid_plural "%{num} pictures"
|
45
|
+
msgstr[0] ""
|
46
|
+
msgstr[1] ""
|
@@ -0,0 +1,65 @@
|
|
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: PACKAGE VERSION\n"
|
10
|
+
"POT-Creation-Date: 2007-07-03 00:20+0900\n"
|
11
|
+
"PO-Revision-Date: 2007-07-03 00:20+0900\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=2; plural=(n != 1);\n"
|
18
|
+
|
19
|
+
#: nsgettext.rb:10 nsgettext.rb:14
|
20
|
+
msgid "AAA|BBB"
|
21
|
+
msgid_plural "CCC"
|
22
|
+
msgstr[0] "single"
|
23
|
+
msgstr[1] "plural"
|
24
|
+
|
25
|
+
#: nsgettext.rb:18
|
26
|
+
msgid "AAA"
|
27
|
+
msgid_plural "BBB"
|
28
|
+
msgstr[0] ""
|
29
|
+
msgstr[1] ""
|
30
|
+
|
31
|
+
#: nsgettext.rb:22
|
32
|
+
msgid "AAA|CCC"
|
33
|
+
msgid_plural "DDD"
|
34
|
+
msgstr[0] ""
|
35
|
+
msgstr[1] ""
|
36
|
+
|
37
|
+
#: nsgettext.rb:26
|
38
|
+
msgid "AAA|BBB|CCC"
|
39
|
+
msgid_plural "DDD"
|
40
|
+
msgstr[0] ""
|
41
|
+
msgstr[1] ""
|
42
|
+
|
43
|
+
#: nsgettext.rb:30
|
44
|
+
msgid "AAA$BBB"
|
45
|
+
msgid_plural "CCC"
|
46
|
+
msgstr[0] ""
|
47
|
+
msgstr[1] ""
|
48
|
+
|
49
|
+
#: nsgettext.rb:34
|
50
|
+
msgid "AAA$B|BB"
|
51
|
+
msgid_plural "CCC"
|
52
|
+
msgstr[0] ""
|
53
|
+
msgstr[1] ""
|
54
|
+
|
55
|
+
#: nsgettext.rb:38
|
56
|
+
msgid "AAA$B|CC"
|
57
|
+
msgid_plural "DDD"
|
58
|
+
msgstr[0] "single"
|
59
|
+
msgstr[1] "plural"
|
60
|
+
|
61
|
+
#: nsgettext.rb:42
|
62
|
+
msgid "AAA|CCC|BBB"
|
63
|
+
msgid_plural "DDD"
|
64
|
+
msgstr[0] ""
|
65
|
+
msgstr[1] ""
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# Japanese translations for PACKAGE package
|
2
|
+
# PACKAGE パッケージに対する英訳.
|
3
|
+
# Copyright (C) 2008 THE PACKAGE'S COPYRIGHT HOLDER
|
4
|
+
# This file is distributed under the same license as the PACKAGE package.
|
5
|
+
# Masao Mutoh <mutomasa at gmail.com>, 2008.
|
6
|
+
#
|
7
|
+
msgid ""
|
8
|
+
msgstr ""
|
9
|
+
"Project-Id-Version: PACKAGE VERSION\n"
|
10
|
+
"POT-Creation-Date: 2008-07-26 15:39+0900\n"
|
11
|
+
"PO-Revision-Date: 2008-07-26 15:39+0900\n"
|
12
|
+
"Last-Translator: Masao Mutoh <mutomasa at gmail.com>\n"
|
13
|
+
"Language-Team: Japanese\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=1; plural=0;\n"
|
18
|
+
|
19
|
+
#: testlib/pgettext.rb:10 testlib/pgettext.rb:14
|
20
|
+
msgctxt "AAA"
|
21
|
+
msgid "BBB"
|
22
|
+
msgstr "えーびー"
|
23
|
+
|
24
|
+
#: testlib/pgettext.rb:18
|
25
|
+
msgctxt "AAA|BBB"
|
26
|
+
msgid "CCC"
|
27
|
+
msgstr "えーびーしー"
|
28
|
+
|
29
|
+
#: testlib/pgettext.rb:22
|
30
|
+
msgctxt "AAA"
|
31
|
+
msgid "CCC"
|
32
|
+
msgstr ""
|
33
|
+
|
34
|
+
#: testlib/pgettext.rb:26
|
35
|
+
msgctxt "CCC"
|
36
|
+
msgid "BBB"
|
37
|
+
msgstr "しーびー"
|
38
|
+
|
39
|
+
#: testlib/pgettext.rb:33
|
40
|
+
msgid "BBB"
|
41
|
+
msgstr "びー"
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR ORGANIZATION
|
3
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
4
|
+
#
|
5
|
+
#, fuzzy
|
6
|
+
msgid ""
|
7
|
+
msgstr ""
|
8
|
+
"Project-Id-Version: PACKAGE VERSION\n"
|
9
|
+
"POT-Creation-Date: 2002-10-21 15:32:15+0900\n"
|
10
|
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
12
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
13
|
+
"MIME-Version: 1.0\n"
|
14
|
+
"Content-Type: text/plain; charset=US-ASCII\n"
|
15
|
+
"Content-Transfer-Encoding: ENCODING\n"
|
16
|
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
17
|
+
|
18
|
+
#: hello_plural.rb:11
|
19
|
+
msgid "one"
|
20
|
+
msgid_plural "two"
|
21
|
+
msgstr[0] "all"
|
22
|
+
msgstr[1] ""
|
23
|
+
|
24
|
+
#: hello_plural.rb:13
|
25
|
+
msgid "single"
|
26
|
+
msgid_plural "plural"
|
27
|
+
msgstr[0] "hitotsu"
|
28
|
+
msgstr[1] "fukusu"
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR ORGANIZATION
|
3
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
4
|
+
#
|
5
|
+
#, fuzzy
|
6
|
+
msgid ""
|
7
|
+
msgstr ""
|
8
|
+
"Project-Id-Version: PACKAGE VERSION\n"
|
9
|
+
"POT-Creation-Date: 2002-10-21 15:32:15+0900\n"
|
10
|
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
12
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
13
|
+
"MIME-Version: 1.0\n"
|
14
|
+
"Content-Type: text/plain; charset=US-ASCII\n"
|
15
|
+
"Content-Transfer-Encoding: ENCODING\n"
|
16
|
+
|
17
|
+
#: hello_plural.rb:11
|
18
|
+
msgid "first"
|
19
|
+
msgid_plural "second"
|
20
|
+
msgstr[0] "a"
|