I18n for Rails 3 and common gems
Part One: Discussion
[Update] (2010-09-16): "Entries to assist translators":#update_1
Part Two: Quick Reference
You're building a Rails 3 app.
It needs to support internationalization (I18n).
No problem. Rails 3 supports internationalization.
You can use translate(key) or t(key).
%h2= t('hello')
It looks up the key in config/locales/en.yml:
en:
...