Ruby-Gettext-Package
====================
Ruby-GetText-Package is a Localization(L10n) library and tools
which modeled after GNU gettext package.
This library provides to translate original messages to localized
messages properly using client-side locale information(environment
variable or CGI variable).
And the tools for developers support to create, use, and modify
localized message files(message catalogs) easily.
Features:
* Simple APIs(similar GNU gettext)
* rgettext creates po-files from
* ruby scripts
* glade-2 XML file(.glade)
* ERB file(.rhtml)
* ActiveRecord(.rb)
* Others(with your own parsers)
The po-file is compatible to GNU gettext.
* rmsgfmt creates a mo-file from a po-file.
The mo-file is compatible to GNU gettext(msgfmt).
* textdomain's scope is adapt to ruby class/module mechanism.
* A class/module can have plural textdomains.
* a message is looked up in its class/module and ancestors.
* Locale is retrieved from System variables (ENV['LANG'], POSIX, Win32)
* CGI support (gettext/cgi)
* Locale is retrieved from client informations
(HTTP_ACCEPT_LANGUAGE, HTTP_ACCEPT_CHARSET, QUERY_STRING(lang),
Cookies(lang)).
* ERB support (gettext/erb)
* Ruby on Rails support (gettext/rails)
* before_init_gettext, init_gettext, after_init_gettext for initializing
GetText.
* ActionController, ActionView, ActionMailer and ActiveRecord are
localized in a textdomain.
* Validation messages in ActiveRecord are localized.
* The table/field names of ActiveRecord are extracted by rgettext
and translated in the application.
* plugins can have their own textdomains.
* ActionMailer supports ISO-2022-JP message in ja locale.
* String% is extended to use named argument such as "%{foo}" %{:foo => 1}
Requirements
------------
* Ruby 1.8.3 or later
(options)
* GNU gettext 0.10.35 or later
(for Development only)
* Racc-1.4.3 or later
(for compiling src/rmsgfmt.ry only)
* Ruby on Rails 1.1.2 or later (if you use this package with Ruby on Rails)
Install
-------
gem:
($ su)
# gem install gettext
tar-ball:
De-Compress archive and enter its top directory.
Then type:
($ su)
# ruby setup.rb
You can also install files in your favor directory by
supplying setup.rb some options. Try "ruby setup.rb --help".
Usage
-----
If you are end-user of an application which depends on this library,
you don't need do nothing (See applications documents).
If you are developer of the application which depends on this library,
see:
http://gettext.rubyforge.org/
License
-------
This program is licenced under the same licence as Ruby.
(See the file 'COPYING'.)
* mo.rb
Copyright (C) 2001-2007 Masao Mutoh
Copyright (C) 2001,2002 Masahiro Sakai
* gettext.rb
Copyright (C) 2001-2007 Masao Mutoh
Copyright (C) 2001,2002 Masahiro Sakai
* rgettext
Copyright (C) 2001-2007 Masao Mutoh
Copyright (C) 2001,2002 Yasushi Shoji
* setup.rb
Copyright (C) 2000-2005 Minero Aoki
This file is released under LGPL. See the top of the install.rb.
* Others
Copyright (C) 2001-2007 Masao Mutoh
Translators
-----------
Bosnian(bs) - Sanjin Sehic
Catalan(ca) - Ramon Salvadó
Chinese(Simplified)(zh_CN) - Yang Bob (current)
Yingfeng
Chinese(Traditional)(zh_TW)- Yang Bob (current)
LIN CHUNG-YI
Croatian(hr) - Sanjin Sehic
Czech(cs) - Karel Miarka
Dutch(nl) - Menno Jonkers
Esperanto(eo) - Malte Milatz
Estonian(et) - Erkki Eilonen
French(fr) - David Sulc (current)
Laurent Sansonetti
German(de) - Patrick Lenz (current)
Detlef Reichl
Sven Herzberg
Sascha Ebach
Greek(el) - Vassilis Rizopoulos
Italian(it) - Marco Lazzeri
Gabriele Renzi
Japanese(ja) - Masao Mutoh
Korean(ko) - Gyoung-Yoon Noh
Norwegian(nb) - Runar Ingebrigtsen
Portuguese(Brazil)(pt_BR) - Antonio S. de A. Terceiro
Joao Pedrosa (current)
Russian(ru) - Yuri Kozlov
Spanish(es) - David Espada (current)
David Moreno Garza
Swedish(sv) - Nikolai Weibull
Vietnamese(vi) - Ngoc Dao
Status of translations
----------------------
Bosnian(bs) - 1.10.0 (new)
Catalan(ca) - 1.10.0
Croatian(hr) - 1.10.0 (new)
Chinese(zh_CN) - 1.10.0
Chinese(zh_TW) - 1.10.0
Czech(cs) - 1.9.0 (old)
Dutch(nl) - 1.10.0
English(default) - 1.9.0 (old)
Esperanto(eo) - 1.10.0
Estonian(et) - 1.10.0 (rails.po only)
French(fr) - 1.10.0
German(de) - 1.10.0
Greek(el) - 1.9.0 (old)
Spanish(es) - 1.9.0 (old)
Italian(it) - 1.6.0 (old)
Japanese(ja) - 1.10.0
Korean(ko) - 1.9.0 (old)
Norwegian(nb) - 1.9.0 (new)
Portuguese(Brazil)(pt_BR) - 1.10.0
Russian(ru) - 1.10.0
Swedish(sv) - 0.8.0 (old)
Vietnamese(vi) - 1.10.0 (new)
Maintainer
----------
Masao Mutoh