gettext 1.10.0 → 1.90.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 +156 -2
- data/NEWS +28 -0
- data/README +128 -138
- data/Rakefile +83 -43
- data/data/locale/es/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/hu/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/hu/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/ua/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/ua/LC_MESSAGES/rgettext.mo +0 -0
- data/doc/classes/ActiveRecord/Base.html +360 -0
- data/doc/classes/ActiveRecord/ConnectionAdapters/Column.html +182 -0
- data/doc/classes/ActiveRecord/Migration.html +118 -0
- data/doc/classes/GetText.html +1790 -0
- data/doc/classes/GetText/ActiveRecordParser.html +236 -0
- data/doc/classes/GetText/Container.html +119 -0
- data/doc/classes/GetText/ErbContainer.html +223 -0
- data/doc/classes/GetText/ErbParser.html +156 -0
- data/doc/classes/GetText/GladeParser.html +133 -0
- data/doc/classes/GetText/NoboundTextDomainError.html +119 -0
- data/doc/classes/GetText/PoParser.html +169 -0
- data/doc/classes/GetText/Rails.html +293 -0
- data/doc/classes/GetText/RubyParser.html +123 -0
- data/doc/classes/GetText/TextDomain.html +572 -0
- data/doc/classes/GetText/TextDomainManager.html +443 -0
- data/doc/classes/Iconv.html +257 -0
- data/doc/classes/Iconv/Failure.html +105 -0
- data/doc/classes/Iconv/IllegalSequence.html +118 -0
- data/doc/classes/Iconv/InvalidCharacter.html +118 -0
- data/doc/classes/Iconv/InvalidEncoding.html +118 -0
- data/doc/classes/Locale.html +839 -0
- data/doc/classes/Locale/Object.html +799 -0
- data/doc/classes/Locale/SystemBase.html +271 -0
- data/doc/classes/Locale/SystemCGI.html +312 -0
- data/doc/classes/Locale/SystemJRuby.html +112 -0
- data/doc/classes/Locale/SystemPosix.html +113 -0
- data/doc/classes/Locale/SystemWin32.html +182 -0
- data/doc/classes/MOFile.html +678 -0
- data/doc/classes/MOFile/InvalidFormat.html +111 -0
- data/doc/classes/Module.html +158 -0
- data/doc/classes/String.html +225 -0
- data/doc/created.rid +1 -0
- data/doc/files/ChangeLog.html +2355 -0
- data/doc/files/README.html +510 -0
- data/doc/files/lib/gettext/active_record_rb.html +110 -0
- data/doc/files/lib/gettext/cgi_rb.html +110 -0
- data/doc/files/lib/gettext/container_rb.html +108 -0
- data/doc/files/lib/gettext/erb_rb.html +109 -0
- data/doc/files/lib/gettext/iconv_rb.html +109 -0
- data/doc/files/lib/gettext/mo_rb.html +108 -0
- data/doc/files/lib/gettext/parser/active_record_rb.html +119 -0
- data/doc/files/lib/gettext/parser/erb_rb.html +109 -0
- data/doc/files/lib/gettext/parser/glade_rb.html +109 -0
- data/doc/files/lib/gettext/parser/ruby_rb.html +110 -0
- data/doc/files/lib/gettext/poparser_rb.html +108 -0
- data/doc/files/lib/gettext/rails_compat_rb.html +108 -0
- data/doc/files/lib/gettext/rails_rb.html +112 -0
- data/doc/files/lib/gettext/rgettext_rb.html +110 -0
- data/doc/files/lib/gettext/rmsgfmt_rb.html +112 -0
- data/doc/files/lib/gettext/rmsgmerge_rb.html +112 -0
- data/doc/files/lib/gettext/string_rb.html +101 -0
- data/doc/files/lib/gettext/textdomain_rb.html +109 -0
- data/doc/files/lib/gettext/textdomainmanager_rb.html +109 -0
- data/doc/files/lib/gettext/utils_rb.html +111 -0
- data/doc/files/lib/gettext/version_rb.html +101 -0
- data/doc/files/lib/gettext_rb.html +113 -0
- data/doc/files/lib/locale/base_rb.html +101 -0
- data/doc/files/lib/locale/cgi_rb.html +108 -0
- data/doc/files/lib/locale/jruby_rb.html +110 -0
- data/doc/files/lib/locale/object_rb.html +101 -0
- data/doc/files/lib/locale/posix_rb.html +108 -0
- data/doc/files/lib/locale/win32_rb.html +110 -0
- data/doc/files/lib/locale/win32_table_rb.html +101 -0
- data/doc/files/lib/locale_rb.html +111 -0
- data/doc/fr_class_index.html +57 -0
- data/doc/fr_file_index.html +58 -0
- data/doc/fr_method_index.html +155 -0
- data/doc/index.html +24 -0
- data/doc/rdoc-style.css +208 -0
- data/lib/gettext.rb +102 -50
- data/lib/gettext/cgi.rb +2 -27
- data/lib/gettext/iconv.rb +76 -62
- data/lib/gettext/mo.rb +3 -3
- data/lib/gettext/parser/erb.rb +2 -2
- data/lib/gettext/rails.rb +69 -48
- data/lib/gettext/rgettext.rb +2 -2
- data/lib/gettext/rmsgmerge.rb +2 -2
- data/lib/gettext/string.rb +9 -5
- data/lib/gettext/textdomain.rb +3 -3
- data/lib/gettext/textdomainmanager.rb +5 -5
- data/lib/gettext/utils.rb +4 -3
- data/lib/gettext/version.rb +1 -1
- data/lib/{gettext/locale.rb → locale.rb} +11 -58
- data/lib/locale/base.rb +60 -0
- data/lib/{gettext/locale_cgi.rb → locale/cgi.rb} +30 -28
- data/lib/locale/jruby.rb +36 -0
- data/lib/{gettext/locale_object.rb → locale/object.rb} +78 -24
- data/lib/locale/posix.rb +22 -0
- data/lib/locale/win32.rb +48 -0
- data/lib/{gettext/locale_table_win32.rb → locale/win32_table.rb} +3 -2
- data/po/es/rails.po +1 -2
- data/po/hu/rails.po +139 -0
- data/po/hu/rgettext.po +126 -0
- data/po/ja/rails.po +5 -5
- data/po/ua/rails.po +150 -0
- data/po/ua/rgettext.po +132 -0
- data/pre-setup.rb +2 -4
- data/samples/cgi/cookie.cgi +1 -0
- data/samples/cgi/helloerb1.cgi +6 -3
- data/samples/cgi/helloerb2.cgi +6 -3
- data/samples/cgi/http.rb +3 -7
- data/samples/cgi/index.cgi +2 -1
- data/samples/cgi/locale/hu/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/hu/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/hu/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/hu/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/ua/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/ua/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/ua/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/ua/LC_MESSAGES/main.mo +0 -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/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/locale/hu/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/helloglade2.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hellogtk.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hellotk.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/hello_noop.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/helloglade2.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/hellogtk.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/hellotk.mo +0 -0
- data/samples/po/hu/hello.po +22 -0
- data/samples/po/hu/hello2.po +30 -0
- data/samples/po/hu/hello_noop.po +26 -0
- data/samples/po/hu/hello_plural.po +25 -0
- data/samples/po/hu/helloglade2.po +31 -0
- data/samples/po/hu/hellogtk.po +22 -0
- data/samples/po/hu/hellotk.po +23 -0
- data/samples/po/ua/hello.po +22 -0
- data/samples/po/ua/hello2.po +30 -0
- data/samples/po/ua/hello_noop.po +26 -0
- data/samples/po/ua/hello_plural.po +29 -0
- data/samples/po/ua/helloglade2.po +34 -0
- data/samples/po/ua/hellogtk.po +22 -0
- data/samples/po/ua/hellotk.po +26 -0
- data/samples/rails/README +15 -31
- data/samples/rails/Rakefile +1 -1
- data/samples/rails/app/controllers/application.rb +11 -4
- data/samples/rails/app/controllers/articles_controller.rb +96 -0
- data/samples/rails/app/helpers/application_helper.rb +1 -1
- data/samples/rails/app/helpers/{blog_helper.rb → articles_helper.rb} +6 -7
- data/samples/rails/app/views/articles/edit.html.erb +18 -0
- data/samples/rails/app/views/articles/index.html.erb +17 -0
- data/samples/rails/app/views/articles/new.html.erb +16 -0
- data/samples/rails/app/views/articles/show.html.erb +6 -0
- data/samples/rails/app/views/layouts/articles.html.erb +26 -0
- data/samples/rails/config/boot.rb +104 -13
- data/samples/rails/config/database.yml +24 -21
- data/samples/rails/config/environment.rb +35 -30
- data/samples/rails/config/environments/development.rb +5 -6
- data/samples/rails/config/environments/production.rb +2 -3
- data/samples/rails/config/environments/test.rb +5 -2
- data/samples/rails/config/initializers/inflections.rb +10 -0
- data/samples/rails/config/initializers/mime_types.rb +5 -0
- data/samples/rails/config/routes.rb +30 -11
- data/samples/rails/db/migrate/001_create_articles.rb +14 -0
- data/samples/rails/db/schema.rb +16 -5
- data/samples/rails/lib/tasks/gettext.rake +2 -2
- 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/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/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/blog.pot +24 -24
- data/samples/rails/po/bs/blog.po +29 -29
- data/samples/rails/po/ca/blog.po +27 -27
- data/samples/rails/po/cs/blog.po +27 -27
- data/samples/rails/po/de/blog.po +27 -27
- data/samples/rails/po/el/blog.po +27 -27
- data/samples/rails/po/en/blog.po +24 -24
- data/samples/rails/po/eo/blog.po +27 -27
- data/samples/rails/po/es/blog.po +27 -27
- data/samples/rails/po/fr/blog.po +27 -27
- data/samples/rails/po/hr/blog.po +29 -29
- data/samples/rails/po/hu/blog.po +105 -0
- data/samples/rails/po/it/blog.po +27 -27
- data/samples/rails/po/ja/blog.po +27 -27
- data/samples/rails/po/ko/blog.po +27 -27
- data/samples/rails/po/nb/blog.po +26 -27
- data/samples/rails/po/nl/blog.po +27 -27
- data/samples/rails/po/pt_BR/blog.po +27 -27
- data/samples/rails/po/ru/blog.po +27 -27
- data/samples/rails/po/ua/blog.po +108 -0
- data/samples/rails/po/vi/blog.po +26 -31
- data/samples/rails/po/zh/blog.po +27 -27
- data/samples/rails/po/zh_TW/blog.po +27 -27
- data/samples/rails/public/404.html +27 -5
- data/samples/rails/public/422.html +30 -0
- data/samples/rails/public/500.html +27 -5
- data/samples/rails/public/index.html +6 -6
- data/samples/rails/public/javascripts/application.js +2 -0
- data/samples/rails/public/javascripts/controls.js +532 -319
- data/samples/rails/public/javascripts/dragdrop.js +521 -133
- data/samples/rails/public/javascripts/effects.js +708 -442
- data/samples/rails/public/javascripts/prototype.js +3393 -953
- data/samples/rails/public/stylesheets/blog.css +4 -0
- data/samples/rails/public/stylesheets/scaffold.css +5 -5
- data/samples/rails/test/functional/articles_controller_test.rb +51 -0
- data/samples/rails/test/test_helper.rb +31 -19
- data/samples/rails/test/unit/article_test.rb +2 -9
- data/samples/rails/vendor/plugins/gettext/init.rb +5 -3
- data/samples/rails/vendor/plugins/gettext/lib/gettext_plugin.rb +9 -10
- data/samples/rails/vendor/plugins/gettext/locale/eo/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/ua/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/po/eo/gettext_plugin.po +28 -0
- data/samples/rails/vendor/plugins/gettext/po/hu/gettext_plugin.po +27 -0
- data/samples/rails/vendor/plugins/gettext/po/ua/gettext_plugin.po +30 -0
- data/test/Rakefile +2 -1
- data/test/benchmark.rb +28 -0
- data/test/fixtures/topic.rb +15 -0
- data/test/rails/Rakefile +2 -1
- data/test/rails/app/controllers/articles_controller.rb +1 -1
- data/test/rails/app/controllers/users_controller.rb +10 -0
- data/test/rails/app/models/user.rb +2 -1
- data/test/rails/app/views/articles/{_form.rhtml → _form.html.erb} +0 -0
- data/test/rails/app/views/articles/active_form_error.html.erb +1 -0
- data/test/rails/app/views/articles/change_title_error_messages_for.html.erb +21 -0
- data/test/rails/app/views/articles/{edit.rhtml → edit.html.erb} +0 -0
- data/test/rails/app/views/articles/{list.rhtml → list.html.erb} +0 -3
- data/test/rails/app/views/articles/{list_fr.rhtml → list_fr.html.erb} +0 -0
- data/test/rails/app/views/articles/{multi_error_messages_for.rhtml → multi_error_messages_for.html.erb} +0 -0
- data/test/rails/app/views/articles/{new.rhtml → new.html.erb} +0 -0
- data/test/rails/app/views/articles/{show.rhtml → show.html.erb} +0 -0
- data/test/rails/app/views/layouts/{application.rhtml → application.html.erb} +0 -0
- data/test/rails/app/views/layouts/{mailer.rhtml → mailer.html.erb} +0 -0
- data/test/rails/app/views/layouts/users.html.erb +13 -0
- data/test/rails/app/views/users/custom_error_message.html.erb +13 -0
- data/test/rails/app/views/users/custom_error_message_fr.html.erb +13 -0
- data/test/rails/config/environment.rb +6 -1
- data/test/rails/config/environments/development.rb +0 -3
- data/test/rails/db/schema.rb +17 -10
- data/test/rails/locale/ja/LC_MESSAGES/rails_test.mo +0 -0
- data/test/rails/log/development.log +136 -29
- data/test/rails/log/test.log +2002 -128
- data/test/rails/po/ja/rails_test.po +68 -61
- data/test/rails/po/rails_test.pot +57 -55
- data/test/rails/test/fixtures/users.yml +5 -0
- data/test/rails/test/functional/articles_controller_test.rb +6 -1
- data/test/rails/test/functional/users_controller_test.rb +65 -0
- data/test/rails/test/result/en/custom_error_message.html +83 -0
- data/test/rails/test/result/en/custom_error_message_with_plural.html +83 -0
- data/test/rails/test/result/en/list.html +0 -3
- data/test/rails/test/result/en/multi_error_messages_for.html +1 -1
- data/test/rails/test/result/fr/custom_error_message.html +83 -0
- data/test/rails/test/result/fr/custom_error_message_with_plural.html +83 -0
- data/test/rails/test/result/ja/custom_error_message.html +83 -0
- data/test/rails/test/result/ja/custom_error_message_with_plural.html +83 -0
- data/test/rails/test/result/ja/list.html +0 -3
- data/test/rails/test/result/ja/multi_error_messages_for.html +1 -1
- data/test/test.sh +5 -7
- data/test/{gettext_test_active_record.rb → test_active_record.rb} +20 -10
- data/test/{gettext_test_cgi.rb → test_cgi.rb} +0 -0
- data/test/{gettext_test.rb → test_gettext.rb} +91 -9
- data/test/test_java.sh +12 -0
- data/test/{gettext_test_locale.rb → test_locale.rb} +3 -8
- data/test/{gettext_test_multi_textdomain.rb → test_multi_textdomain.rb} +2 -2
- data/test/{gettext_test_parser.rb → test_parser.rb} +77 -77
- data/test/{gettext_test_rails.rb → test_rails.rb} +0 -0
- data/test/{gettext_test_rails_caching.rb → test_rails_caching.rb} +16 -2
- data/test/{gettext_test_string.rb → test_string.rb} +1 -0
- data/test/{test_rubyparser_N.rb → testlib/N_.rb} +0 -0
- data/test/testlib/erb.rhtml +15 -0
- data/test/testlib/erb.rxml +16 -0
- data/test/{test_rubyparser.rb → testlib/gettext.rb} +0 -0
- data/test/testlib/gladeparser.glade +183 -0
- data/test/{test_rubyparser_n_.rb → testlib/ngettext.rb} +0 -0
- data/test/{test_nsgettext.rb → testlib/nsgettext.rb} +0 -0
- data/test/{test_sgettext.rb → testlib/sgettext.rb} +0 -0
- data/test/{testlib1.rb → testlib/testlib1.rb} +0 -0
- data/test/{testlib2.rb → testlib/testlib2.rb} +1 -1
- data/test/{testlib3.rb → testlib/testlib3.rb} +0 -0
- data/test/{testlib4.rb → testlib/testlib4.rb} +1 -1
- data/test/{testlib5.rb → testlib/testlib5.rb} +0 -0
- data/test/{testlib6.rb → testlib/testlib6.rb} +0 -0
- metadata +1374 -1171
- data/ext/gettext/extconf.rb +0 -20
- data/ext/gettext/locale_system.c +0 -83
- data/lib/gettext/locale_posix.rb +0 -82
- data/lib/gettext/locale_win32.rb +0 -82
- data/samples/cgi/ruby.bat +0 -4
- data/samples/rails/app/controllers/blog_controller.rb +0 -58
- data/samples/rails/app/views/blog/_form.rhtml +0 -25
- data/samples/rails/app/views/blog/edit.rhtml +0 -22
- data/samples/rails/app/views/blog/list.rhtml +0 -29
- data/samples/rails/app/views/blog/new.rhtml +0 -21
- data/samples/rails/app/views/blog/show.rhtml +0 -18
- data/samples/rails/app/views/layouts/blog.rhtml +0 -36
- data/samples/rails/test/functional/blog_controller_test.rb +0 -98
- data/test/gettext_runner.rb +0 -22
data/ChangeLog
CHANGED
|
@@ -1,3 +1,157 @@
|
|
|
1
|
+
2008-02-02 Masao Mutoh <mutoh@highway.ne.jp>
|
|
2
|
+
|
|
3
|
+
* po/ja/rails.po: Revised. Reported by Paul Clegg.
|
|
4
|
+
|
|
5
|
+
2008-01-30 Masao Mutoh <mutoh@highway.ne.jp>
|
|
6
|
+
|
|
7
|
+
* lib/locale/win32.rb, win32_table.rb: Rename SystemWin32Table to SystemWin32.
|
|
8
|
+
* samples/cgi/http.rb, index.cgi: Works on Windows.
|
|
9
|
+
|
|
10
|
+
2008-01-28 Masao Mutoh <mutoh@highway.ne.jp>
|
|
11
|
+
|
|
12
|
+
* lib/gettext.rb: Fixed GetText.output_charset to return current
|
|
13
|
+
locale's charset not nil.
|
|
14
|
+
Fixed to work with JRuby.(Bug: http://jira.codehaus.org/browse/JRUBY-1281)
|
|
15
|
+
|
|
16
|
+
2008-01-27 Masao Mutoh <mutoh@highway.ne.jp>
|
|
17
|
+
|
|
18
|
+
* lib/gettext/string.rb: String#% doesn't raise an ArgumentError in Debug mode.
|
|
19
|
+
Because String#% method shouldn't raise ArgumentError in Debug mode.
|
|
20
|
+
* lib/gettext/rgettext.rb: rgettext fixed to work with similer messages in n_().
|
|
21
|
+
Reported by Toine Diepstraten.
|
|
22
|
+
* samples/cgi/*: Works again. Set CGI object explicit.
|
|
23
|
+
* lib/gettext/textdomainmanager.rb: GetText::TextDomainManager.output_charset returns
|
|
24
|
+
system locale when nil is set.
|
|
25
|
+
|
|
26
|
+
2008-01-24 Masao Mutoh <mutoh@highway.ne.jp>
|
|
27
|
+
|
|
28
|
+
* lib/locale/object.rb: Speedup (cache messages and object hash value)
|
|
29
|
+
|
|
30
|
+
2008-01-21 Masao Mutoh <mutoh@highway.ne.jp>
|
|
31
|
+
|
|
32
|
+
* lib/gettext.rb: Fixed to reload messages in debug mode
|
|
33
|
+
(development mode in rails). Reported by Reynard,
|
|
34
|
+
Ernesto Jiménez Caballero
|
|
35
|
+
|
|
36
|
+
2008-01-19 Masao Mutoh <mutoh@highway.ne.jp>
|
|
37
|
+
|
|
38
|
+
* **/po/hu/*.po: Added hu locales by Tamás Tompa.
|
|
39
|
+
* Rakefile: Add deploypo task(for me).
|
|
40
|
+
|
|
41
|
+
2008-01-18 Masao Mutoh <mutoh@highway.ne.jp>
|
|
42
|
+
|
|
43
|
+
* lib/locale/win32.rb: Removed duplicated function.
|
|
44
|
+
|
|
45
|
+
2008-01-16 Masao Mutoh <mutoh@highway.ne.jp>
|
|
46
|
+
|
|
47
|
+
* samples/rails/*: Rewrite to work on Rails-2.0.
|
|
48
|
+
* lib/gettext/string.rb: Raises ArgumentError when the format are wrong.
|
|
49
|
+
Bug #16959 by Stephan.
|
|
50
|
+
|
|
51
|
+
2007-12-25 Masao Mutoh <mutoh@highway.ne.jp>
|
|
52
|
+
|
|
53
|
+
* lib/gettext/rails.rb: Fixed an error when expire_fragment_with_gettext
|
|
54
|
+
is called with the name as a Regexp object.Bug #12803 by Hans de Graaff.
|
|
55
|
+
|
|
56
|
+
2007-12-24 Masao Mutoh <mutoh@highway.ne.jp>
|
|
57
|
+
|
|
58
|
+
* **/po/ua/*.po: Added ua locales by Alex Rootoff.
|
|
59
|
+
|
|
60
|
+
2007-12-16 Masao Mutoh <mutoh@highway.ne.jp>
|
|
61
|
+
* NEWS: Updated.
|
|
62
|
+
* README: Updated.
|
|
63
|
+
|
|
64
|
+
2007-12-15 Masao Mutoh <mutoh@highway.ne.jp>
|
|
65
|
+
|
|
66
|
+
* test/rails/*: Updated to work with Rails-2.0.
|
|
67
|
+
Add the test for custom error messages/titles.
|
|
68
|
+
* lib/gettext/rails.rb: Fixed
|
|
69
|
+
ActionView::Helpers::ActiveRecordHelper::L10n::error_messages_for
|
|
70
|
+
that plural messages didn't translated.
|
|
71
|
+
ActionView::Helpers::ActiveRecordHelper.error_messages_for can accept
|
|
72
|
+
:message_title, :message_explanation as the error dialog messages.
|
|
73
|
+
You can set the error dialog messages in the each pages.
|
|
74
|
+
Add GetText::Rails.normalized_locale.
|
|
75
|
+
|
|
76
|
+
2007-12-08 Masao Mutoh <mutoh@highway.ne.jp>
|
|
77
|
+
|
|
78
|
+
* lib/gettext/rails.rb: Add GetText::Rails::available_locales.
|
|
79
|
+
It returns the locales in RAILS_ROOT/locale directory.
|
|
80
|
+
fragment_cache_key_with_gettext and expire_fragment_with_gettext uses
|
|
81
|
+
GetText::Rails::available_locales to select the current locale string.
|
|
82
|
+
The cache files are created for available locales only.
|
|
83
|
+
|
|
84
|
+
2007-11-10 Masao Mutoh <mutoh@highway.ne.jp>
|
|
85
|
+
|
|
86
|
+
* lib/gettext.rb: Fix to work :charset option.
|
|
87
|
+
[Bug #15513] Reoported by boud indymedia.
|
|
88
|
+
* lib/gettext/mo.rb: Works with JRuby.
|
|
89
|
+
|
|
90
|
+
2007-11-09 Masao Mutoh <mutoh@highway.ne.jp>
|
|
91
|
+
|
|
92
|
+
* lib/locale/cgi.rb: Removed Locale::SystemCGI.default=, set_default.
|
|
93
|
+
* lib/locale/win32_table.rb: Rename SystemWin32 to SystemWin32Table.
|
|
94
|
+
* lib/locale/win32.rb, win32_table.rb: Move get_charset to win32_table.rb.
|
|
95
|
+
* lib/locale/jruby.rb: Require win32_table.rb on Win32.
|
|
96
|
+
* lib/locale/base.rb: Added as the common module of other LocaleSystem classes.
|
|
97
|
+
* lib/locale/posix.rb, win32.rb, jruby.rb, cgi.rb: Require locale/base.rb.
|
|
98
|
+
And Remove the common methods.
|
|
99
|
+
|
|
100
|
+
2007-11-08 Masao Mutoh <mutoh@highway.ne.jp>
|
|
101
|
+
|
|
102
|
+
* lib/gettext/iconv.rb: Support JRuby.
|
|
103
|
+
* lib/locale/jruby.rb: Added. Support JRuby.
|
|
104
|
+
* test/*.rb: Rename files.
|
|
105
|
+
* lib/locale/object.rb: Add fallback attribute(a fallback locale).
|
|
106
|
+
* ext/*: Removed.
|
|
107
|
+
* Rakefile: Remove tasks for ext.
|
|
108
|
+
* lib/locale/win32.rb: Removed Locale::SystemWin32.set_default_locale,
|
|
109
|
+
default_locale=, default_locale.
|
|
110
|
+
Use Win32API instead of locale_system.so.
|
|
111
|
+
* lib/locale/posix.rb: Removed Locale::SystemPosix.get_charset, .set_default_locale
|
|
112
|
+
default_locale=, default_locale and all LC types.
|
|
113
|
+
Now Posix localed doesn't depend on locale_system.so.
|
|
114
|
+
# UTF-8 is set as the default charset.
|
|
115
|
+
* lib/gettext/locale.rb: Move to lib/locale.rb. Now locale class starts to
|
|
116
|
+
prepare to be separated from gettext.
|
|
117
|
+
* lib/gettext/locale_*.rb: Move to lib/locale/*.rb. Removed deprecated methods.
|
|
118
|
+
* Start preparing to release 2.0.
|
|
119
|
+
- System locales become "read only"(Locale module keeps the current
|
|
120
|
+
locale).
|
|
121
|
+
- Don't depend locale_system.so.
|
|
122
|
+
|
|
123
|
+
2007-08-01 Masao Mutoh <mutoh@highway.ne.jp>
|
|
124
|
+
|
|
125
|
+
* lib/gettext/utils.rb: Raise exception when msgmerge aren't found.
|
|
126
|
+
And show error message more helpful. Reported by Vít Ondruch (Bug#12737)
|
|
127
|
+
* lib/gettext/parser/erb.rb: Add ".erb" as the extname.
|
|
128
|
+
Reported by Andreas Neuhaus (Bug#12721)
|
|
129
|
+
* test/gettext_benchmark.rb: Added.
|
|
130
|
+
|
|
131
|
+
2007-07-29 Masao Mutoh <mutoh@highway.ne.jp>
|
|
132
|
+
|
|
133
|
+
* lib/gettext.rb: Replace .keys.include? to .has_key? to reduce
|
|
134
|
+
CPU usage and speed up. Reported by olivier ruffin.
|
|
135
|
+
|
|
136
|
+
2007-07-22 Masao Mutoh <mutoh@highway.ne.jp>
|
|
137
|
+
|
|
138
|
+
* lib/gettext/locale_cgi.rb: Fixed to break rails(r7116).
|
|
139
|
+
Reported by OZAWA Sakuro.
|
|
140
|
+
|
|
141
|
+
2007-07-16 Masao Mutoh <mutoh@highway.ne.jp>
|
|
142
|
+
|
|
143
|
+
* lib/gettext.rb: Fixed to support anonymous classes/modules, again.
|
|
144
|
+
|
|
145
|
+
2007-07-11 Masao Mutoh <mutoh@highway.ne.jp>
|
|
146
|
+
|
|
147
|
+
* lib/gettext.rb: Support anonymous classes/modules.
|
|
148
|
+
Pointed out by Yaohan Chen.
|
|
149
|
+
* test/gettext_test.rb: Add test for anonmous classes/modules.
|
|
150
|
+
|
|
151
|
+
2007-07-08 Masao Mutoh <mutoh@highway.ne.jp>
|
|
152
|
+
|
|
153
|
+
* README, Rakefile: Add RDoc support.
|
|
154
|
+
|
|
1
155
|
2007-07-06 Masao Mutoh <mutoh@highway.ne.jp>
|
|
2
156
|
|
|
3
157
|
* lib/gettext/rails.rb: Add to support Action/Fragment caching.
|
|
@@ -29,7 +183,7 @@
|
|
|
29
183
|
* lib/gettext/parser/active_record.rb:
|
|
30
184
|
remove to require 'application.rb' to avoid the effect
|
|
31
185
|
of application.rb when parse models. Pointed out by Michel Loiseleur.
|
|
32
|
-
* po/ca/rails.po: Updated by Ramon Salvad
|
|
186
|
+
* po/ca/rails.po: Updated by Ramon Salvadテウ.
|
|
33
187
|
* src/poparser.ry, lib/gettext/poparser.rb: Don't append
|
|
34
188
|
msgids/msgstrs if the msgstrs don't set.
|
|
35
189
|
* lib/gettext.rb, lib/gettext/parser/ruby.rb:
|
|
@@ -150,7 +304,7 @@
|
|
|
150
304
|
|
|
151
305
|
2006-12-22 Masao Mutoh <mutoh@highway.ne.jp>
|
|
152
306
|
|
|
153
|
-
* **/po/ca/*.po: Added ca(Catalan) locale by Ramon Salvad
|
|
307
|
+
* **/po/ca/*.po: Added ca(Catalan) locale by Ramon Salvad蝮ヲ.
|
|
154
308
|
|
|
155
309
|
2006-12-17 Masao Mutoh <mutoh@highway.ne.jp>
|
|
156
310
|
|
data/NEWS
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
= Ruby-GetText-Package-1.90.0 (2008-01-30)
|
|
2
|
+
Start to prepare v2.0.
|
|
3
|
+
|
|
4
|
+
* Support Ukrainian(ua), Hungarian(hu)
|
|
5
|
+
* JRuby supported.
|
|
6
|
+
* Become a pure ruby library (Remove .so extention).
|
|
7
|
+
* Don't need C compiler to install.
|
|
8
|
+
* Unified to one gem package for all environments (Don't need Win32 package).
|
|
9
|
+
* Directory structures are refactored.
|
|
10
|
+
* locale modules separate from lib/gettext/ to lib/locale/.
|
|
11
|
+
* Locale modules are refactored. System locales become read only.
|
|
12
|
+
* Ruby on Rails 2.0 supported.
|
|
13
|
+
* RDoc supported.
|
|
14
|
+
* Fix bugs.
|
|
15
|
+
* Enhance to support Ruby on Rails.
|
|
16
|
+
* error_messages_for can accept custom error dialog messages.
|
|
17
|
+
* Add GetText::Rails.available_locales, .normalized_locale
|
|
18
|
+
and fragment_cache_key/expire_fragment reimplement to use these methods
|
|
19
|
+
to restrict cached locale files.
|
|
20
|
+
|
|
21
|
+
Thanks to:
|
|
22
|
+
Translators:
|
|
23
|
+
Alex Rootoff, Tamás Tompa
|
|
24
|
+
Bug reports, suggestions and patches:
|
|
25
|
+
Yaohan Chen, OZAWA Sakuro, olivier ruffin, Vít Ondruch,
|
|
26
|
+
Andreas Neuhaus, boud indymedia, Hans de Graaff, Stephan, Reynard,
|
|
27
|
+
Ernesto Jiménez Caballero, Paul Clegg
|
|
28
|
+
|
|
1
29
|
= Ruby-GetText-Package-1.10.0 (2007-07-06)
|
|
2
30
|
|
|
3
31
|
* Support Vietnamese(vi), Bosnian(bs), Croatian(hr), Norwegian(nb)
|
data/README
CHANGED
|
@@ -1,180 +1,170 @@
|
|
|
1
|
-
Ruby-Gettext-Package
|
|
2
|
-
====================
|
|
1
|
+
= Ruby-Gettext-Package
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
Ruby-GetText-Package is a Localization(L10n) library and tools
|
|
4
|
+
which modeled after GNU gettext package.
|
|
6
5
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
This library provides to translate original messages to localized
|
|
7
|
+
messages properly using client-side locale information(environment
|
|
8
|
+
variable or CGI variable).
|
|
10
9
|
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
And the tools for developers support to create, use, and modify
|
|
11
|
+
localized message files(message catalogs) easily.
|
|
13
12
|
|
|
14
|
-
|
|
13
|
+
== Features
|
|
14
|
+
* Simple APIs(similar GNU gettext)
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
* rgettext creates po-files from
|
|
17
|
+
* ruby scripts
|
|
18
|
+
* glade-2 XML file(.glade)
|
|
19
|
+
* ERB file(.rhtml, .erb)
|
|
20
|
+
* ActiveRecord(.rb)
|
|
21
|
+
* Others(with your own parsers)
|
|
22
|
+
* The po-file is compatible to GNU gettext.
|
|
17
23
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
* glade-2 XML file(.glade)
|
|
21
|
-
* ERB file(.rhtml)
|
|
22
|
-
* ActiveRecord(.rb)
|
|
23
|
-
* Others(with your own parsers)
|
|
24
|
-
The po-file is compatible to GNU gettext.
|
|
24
|
+
* rmsgfmt creates a mo-file from a po-file.
|
|
25
|
+
The mo-file is compatible to GNU gettext(msgfmt).
|
|
25
26
|
|
|
26
|
-
|
|
27
|
-
|
|
27
|
+
* textdomain's scope is adapt to ruby class/module mechanism.
|
|
28
|
+
* A class/module can have plural textdomains.
|
|
29
|
+
* a message is looked up in its class/module and ancestors.
|
|
28
30
|
|
|
29
|
-
|
|
30
|
-
* A class/module can have plural textdomains.
|
|
31
|
-
* a message is looked up in its class/module and ancestors.
|
|
31
|
+
* Locale is retrieved from System variables (ENV['LANG'], POSIX, Win32)
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
* CGI support (gettext/cgi)
|
|
34
|
+
* Locale is retrieved from client informations
|
|
35
|
+
(HTTP_ACCEPT_LANGUAGE, HTTP_ACCEPT_CHARSET, QUERY_STRING(lang), Cookies(lang)).
|
|
34
36
|
|
|
35
|
-
|
|
36
|
-
* Locale is retrieved from client informations
|
|
37
|
-
(HTTP_ACCEPT_LANGUAGE, HTTP_ACCEPT_CHARSET, QUERY_STRING(lang),
|
|
38
|
-
Cookies(lang)).
|
|
37
|
+
* ERB support (gettext/erb)
|
|
39
38
|
|
|
40
|
-
|
|
39
|
+
* Ruby on Rails support (gettext/rails)
|
|
40
|
+
* before_init_gettext, init_gettext, after_init_gettext for initializing
|
|
41
|
+
GetText.
|
|
42
|
+
* ActionController, ActionView, ActionMailer and ActiveRecord are
|
|
43
|
+
localized in a textdomain.
|
|
44
|
+
* Validation messages in ActiveRecord are localized.
|
|
45
|
+
* The table/field names of ActiveRecord are extracted by rgettext
|
|
46
|
+
and translated in the application.
|
|
47
|
+
* plugins can have their own textdomains.
|
|
48
|
+
* ActionMailer supports ISO-2022-JP message in ja locale.
|
|
41
49
|
|
|
42
|
-
|
|
43
|
-
* before_init_gettext, init_gettext, after_init_gettext for initializing
|
|
44
|
-
GetText.
|
|
45
|
-
* ActionController, ActionView, ActionMailer and ActiveRecord are
|
|
46
|
-
localized in a textdomain.
|
|
47
|
-
* Validation messages in ActiveRecord are localized.
|
|
48
|
-
* The table/field names of ActiveRecord are extracted by rgettext
|
|
49
|
-
and translated in the application.
|
|
50
|
-
* plugins can have their own textdomains.
|
|
51
|
-
* ActionMailer supports ISO-2022-JP message in ja locale.
|
|
50
|
+
* String%() is extended to use named argument such as "%{foo}" %{:foo => 1}
|
|
52
51
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
------------
|
|
57
|
-
|
|
58
|
-
* Ruby 1.8.3 or later <http://www.ruby-lang.org/ja/>
|
|
59
|
-
|
|
60
|
-
(options)
|
|
52
|
+
== Requirements
|
|
53
|
+
* Ruby 1.8.3 or later <http://www.ruby-lang.org/ja/>
|
|
54
|
+
* (for development only)
|
|
61
55
|
* GNU gettext 0.10.35 or later
|
|
62
56
|
<http://www.gnu.org/software/gettext/gettext.html>
|
|
63
|
-
(for Development only)
|
|
64
57
|
* Racc-1.4.3 or later
|
|
65
58
|
<http://www.ruby-lang.org/raa/list.rhtml?name=racc>
|
|
66
|
-
|
|
59
|
+
* (for compiling src/rmsgfmt.ry only)
|
|
67
60
|
* Ruby on Rails 1.1.2 or later (if you use this package with Ruby on Rails)
|
|
68
61
|
<http://www.rubyonrails.org/>
|
|
69
62
|
|
|
70
|
-
Install
|
|
71
|
-
|
|
72
|
-
gem:
|
|
63
|
+
== Install
|
|
64
|
+
* gem:
|
|
73
65
|
($ su)
|
|
74
66
|
# gem install gettext
|
|
75
67
|
|
|
76
|
-
|
|
68
|
+
* tar-ball:
|
|
77
69
|
De-Compress archive and enter its top directory.
|
|
78
70
|
Then type:
|
|
79
71
|
($ su)
|
|
80
72
|
# ruby setup.rb
|
|
81
73
|
|
|
82
|
-
|
|
83
|
-
|
|
74
|
+
You can also install files in your favor directory by
|
|
75
|
+
supplying setup.rb some options. Try "ruby setup.rb --help".
|
|
84
76
|
|
|
85
|
-
Usage
|
|
86
|
-
|
|
77
|
+
== Usage
|
|
78
|
+
If you are end-user of an application which depends on this library,
|
|
79
|
+
you don't need do nothing (See applications documents).
|
|
87
80
|
|
|
88
|
-
|
|
89
|
-
you don't need do nothing (See applications documents).
|
|
81
|
+
If you are developer of the application which depends on this library,
|
|
90
82
|
|
|
91
|
-
|
|
92
|
-
see:
|
|
93
|
-
http://gettext.rubyforge.org/
|
|
83
|
+
see: http://gettext.rubyforge.org/
|
|
94
84
|
|
|
95
|
-
License
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
(See the file 'COPYING'.)
|
|
85
|
+
== License
|
|
86
|
+
This program is licenced under the same licence as Ruby.
|
|
87
|
+
(See the file 'COPYING'.)
|
|
99
88
|
|
|
100
89
|
* mo.rb
|
|
101
|
-
Copyright (C) 2001-2007 Masao Mutoh <mutoh at highwhay.ne.jp>
|
|
102
|
-
Copyright (C) 2001,2002 Masahiro Sakai <s01397ms at sfc.keio.ac.jp>
|
|
90
|
+
* Copyright (C) 2001-2007 Masao Mutoh <mutoh at highwhay.ne.jp>
|
|
91
|
+
* Copyright (C) 2001,2002 Masahiro Sakai <s01397ms at sfc.keio.ac.jp>
|
|
103
92
|
|
|
104
93
|
* gettext.rb
|
|
105
|
-
Copyright (C) 2001-
|
|
106
|
-
Copyright (C) 2001,2002 Masahiro Sakai <s01397ms at sfc.keio.ac.jp>
|
|
94
|
+
* Copyright (C) 2001-2008 Masao Mutoh <mutoh at highwhay.ne.jp>
|
|
95
|
+
* Copyright (C) 2001,2002 Masahiro Sakai <s01397ms at sfc.keio.ac.jp>
|
|
107
96
|
|
|
108
97
|
* rgettext
|
|
109
|
-
Copyright (C) 2001-2007 Masao Mutoh <mutoh at highwhay.ne.jp>
|
|
110
|
-
Copyright (C) 2001,2002 Yasushi Shoji <yashi at atmark-techno.com>
|
|
98
|
+
* Copyright (C) 2001-2007 Masao Mutoh <mutoh at highwhay.ne.jp>
|
|
99
|
+
* Copyright (C) 2001,2002 Yasushi Shoji <yashi at atmark-techno.com>
|
|
111
100
|
|
|
112
101
|
* setup.rb
|
|
113
|
-
Copyright (C) 2000-2005 Minero Aoki <aamine at loveruby.net>
|
|
114
|
-
This file is released under LGPL. See the top of the install.rb.
|
|
102
|
+
* Copyright (C) 2000-2005 Minero Aoki <aamine at loveruby.net>
|
|
103
|
+
* This file is released under LGPL. See the top of the install.rb.
|
|
115
104
|
|
|
116
105
|
* Others
|
|
117
|
-
Copyright (C) 2001-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
Translators
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
Italian(it) - Marco Lazzeri <marco.lazzeri at gmail.com>
|
|
141
|
-
|
|
142
|
-
Japanese(ja) - Masao Mutoh <mutoh at highway.ne.jp>
|
|
143
|
-
Korean(ko) - Gyoung-Yoon Noh <nohmad at gmail.com>
|
|
144
|
-
Norwegian(nb) - Runar Ingebrigtsen <runar at mopo.no>
|
|
145
|
-
Portuguese(Brazil)(pt_BR) - Antonio S. de A. Terceiro <terceiro at softwarelivre.org>
|
|
146
|
-
|
|
147
|
-
Russian(ru) - Yuri Kozlov <kozlov.y at gmail.com>
|
|
148
|
-
Spanish(es) - David Espada <davinci at escomposlinux.org> (current)
|
|
149
|
-
|
|
150
|
-
Swedish(sv) - Nikolai Weibull <mailing-lists.ruby-talk at rawuncut.elitemail.org>
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
Bosnian(bs) - 1.
|
|
156
|
-
Catalan(ca) - 1.
|
|
157
|
-
Croatian(hr) - 1.
|
|
158
|
-
Chinese(zh_CN) - 1.
|
|
159
|
-
Chinese(zh_TW) - 1.
|
|
160
|
-
Czech(cs) - 1.9.0 (old)
|
|
161
|
-
Dutch(nl) - 1.
|
|
162
|
-
English(default) - 1.
|
|
163
|
-
Esperanto(eo) - 1.
|
|
164
|
-
Estonian(et) - 1.
|
|
165
|
-
French(fr) - 1.
|
|
166
|
-
German(de) - 1.
|
|
167
|
-
Greek(el) - 1.9.0 (old)
|
|
168
|
-
|
|
169
|
-
Italian(it) - 1.6.0 (old)
|
|
170
|
-
Japanese(ja) - 1.
|
|
171
|
-
Korean(ko) - 1.9.0 (old)
|
|
172
|
-
Norwegian(nb) - 1.9.0 (
|
|
173
|
-
Portuguese(Brazil)(pt_BR) - 1.
|
|
174
|
-
Russian(ru) - 1.
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
106
|
+
* Copyright (C) 2001-2008 Masao Mutoh <mutoh at highwhay.ne.jp>
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
== Translators
|
|
110
|
+
* Bosnian(bs) - Sanjin Sehic <saserr at gmail.com>
|
|
111
|
+
* Catalan(ca) - Ramon Salvadó <rsalvado at gnuine.com>
|
|
112
|
+
* Chinese(Simplified)(zh_CN) - Yang Bob <bob.yang.dev at gmail.com> (current)
|
|
113
|
+
Yingfeng <blogyingfeng at gmail.com>
|
|
114
|
+
* Chinese(Traditional)(zh_TW)- Yang Bob <bob.yang.dev at gmail.com> (current)
|
|
115
|
+
LIN CHUNG-YI <xmarsh at gmail.com>
|
|
116
|
+
* Croatian(hr) - Sanjin Sehic <saserr at gmail.com>
|
|
117
|
+
* Czech(cs) - Karel Miarka <kajism at yahoo.com>
|
|
118
|
+
* Dutch(nl) - Menno Jonkers <ruby-gettext at jonkers.com>
|
|
119
|
+
* Esperanto(eo) - Malte Milatz <malte at gmx-topmail.de>
|
|
120
|
+
* Estonian(et) - Erkki Eilonen <erkki at itech.ee>
|
|
121
|
+
* French(fr) - David Sulc <davidsulc at gmail.com> (current)
|
|
122
|
+
Laurent Sansonetti <laurent.sansonetti at gmail.com>
|
|
123
|
+
* German(de) - Patrick Lenz <patrick at limited-overload.de> (current)
|
|
124
|
+
Detlef Reichl <detlef.reichl at gmx.org>
|
|
125
|
+
Sven Herzberg <herzi at abi02.de>
|
|
126
|
+
Sascha Ebach <se at digitale-wertschoepfung.de>
|
|
127
|
+
* Greek(el) - Vassilis Rizopoulos <damphyr at gmx.net>
|
|
128
|
+
* Hungarian(hu) - Tamás Tompa <tompata at gmail.com>
|
|
129
|
+
* Italian(it) - Marco Lazzeri <marco.lazzeri at gmail.com>
|
|
130
|
+
Gabriele Renzi <surrender_it at yahoo.it>
|
|
131
|
+
* Japanese(ja) - Masao Mutoh <mutoh at highway.ne.jp>
|
|
132
|
+
* Korean(ko) - Gyoung-Yoon Noh <nohmad at gmail.com>
|
|
133
|
+
* Norwegian(nb) - Runar Ingebrigtsen <runar at mopo.no>
|
|
134
|
+
* Portuguese(Brazil)(pt_BR) - Antonio S. de A. Terceiro <terceiro at softwarelivre.org>
|
|
135
|
+
Joao Pedrosa <joaopedrosa at gmail.com> (current)
|
|
136
|
+
* Russian(ru) - Yuri Kozlov <kozlov.y at gmail.com>
|
|
137
|
+
* Spanish(es) - David Espada <davinci at escomposlinux.org> (current)
|
|
138
|
+
* David Moreno Garza <damog at damog.net>
|
|
139
|
+
* Swedish(sv) - Nikolai Weibull <mailing-lists.ruby-talk at rawuncut.elitemail.org>
|
|
140
|
+
* Ukrainian(ua) - Alex Rootoff <rootoff at pisem.net>
|
|
141
|
+
* Vietnamese(vi) - Ngoc Dao <ngocdaothanh at gmail.com>
|
|
142
|
+
|
|
143
|
+
== Status of translations
|
|
144
|
+
* Bosnian(bs) - 1.90.0
|
|
145
|
+
* Catalan(ca) - 1.90.0
|
|
146
|
+
* Croatian(hr) - 1.90.0
|
|
147
|
+
* Chinese(zh_CN) - 1.90.0
|
|
148
|
+
* Chinese(zh_TW) - 1.90.0
|
|
149
|
+
* Czech(cs) - 1.9.0 (old)
|
|
150
|
+
* Dutch(nl) - 1.90.0
|
|
151
|
+
* English(default) - 1.90.0
|
|
152
|
+
* Esperanto(eo) - 1.90.0
|
|
153
|
+
* Estonian(et) - 1.9.0 (old, rails.po only)
|
|
154
|
+
* French(fr) - 1.90.0
|
|
155
|
+
* German(de) - 1.90.0
|
|
156
|
+
* Greek(el) - 1.9.0 (old)
|
|
157
|
+
* Hungarian(hu) - 1.90.0 (new)
|
|
158
|
+
* Italian(it) - 1.6.0 (old)
|
|
159
|
+
* Japanese(ja) - 1.90.0
|
|
160
|
+
* Korean(ko) - 1.9.0 (old)
|
|
161
|
+
* Norwegian(nb) - 1.9.0 (old)
|
|
162
|
+
* Portuguese(Brazil)(pt_BR) - 1.90.0
|
|
163
|
+
* Russian(ru) - 1.90.0
|
|
164
|
+
* Spanish(es) - 1.9.0 (old)
|
|
165
|
+
* Swedish(sv) - 0.8.0 (too much old)
|
|
166
|
+
* Ukrainian(ua) - 1.90.0 (new)
|
|
167
|
+
* Vietnamese(vi) - 1.90.0
|
|
168
|
+
|
|
169
|
+
== Maintainer
|
|
170
|
+
Masao Mutoh <mutoh at highway.ne.jp>
|