rails 2.3.2 → 2.3.3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rails might be problematic. Click here for more details.

Files changed (118) hide show
  1. data/CHANGELOG +4 -0
  2. data/Rakefile +11 -9
  3. data/configs/routes.rb +1 -1
  4. data/guides/files/javascripts/code_highlighter.js +188 -0
  5. data/guides/files/javascripts/guides.js +8 -0
  6. data/guides/files/javascripts/highlighters.js +90 -0
  7. data/guides/files/stylesheets/main.css +441 -0
  8. data/guides/files/stylesheets/print.css +52 -0
  9. data/guides/files/stylesheets/reset.css +43 -0
  10. data/guides/files/stylesheets/style.css +13 -0
  11. data/guides/files/stylesheets/syntax.css +31 -0
  12. data/guides/images/belongs_to.png +0 -0
  13. data/guides/images/book_icon.gif +0 -0
  14. data/guides/images/bullet.gif +0 -0
  15. data/guides/images/chapters_icon.gif +0 -0
  16. data/guides/images/check_bullet.gif +0 -0
  17. data/guides/images/credits_pic_blank.gif +0 -0
  18. data/guides/images/csrf.png +0 -0
  19. data/guides/images/customized_error_messages.png +0 -0
  20. data/guides/images/error_messages.png +0 -0
  21. data/guides/images/feature_tile.gif +0 -0
  22. data/guides/images/footer_tile.gif +0 -0
  23. data/guides/images/fxn.jpg +0 -0
  24. data/guides/images/grey_bullet.gif +0 -0
  25. data/guides/images/habtm.png +0 -0
  26. data/guides/images/has_many.png +0 -0
  27. data/guides/images/has_many_through.png +0 -0
  28. data/guides/images/has_one.png +0 -0
  29. data/guides/images/has_one_through.png +0 -0
  30. data/guides/images/header_backdrop.png +0 -0
  31. data/guides/images/header_tile.gif +0 -0
  32. data/guides/images/i18n/demo_localized_pirate.png +0 -0
  33. data/guides/images/i18n/demo_translated_en.png +0 -0
  34. data/guides/images/i18n/demo_translated_pirate.png +0 -0
  35. data/guides/images/i18n/demo_translation_missing.png +0 -0
  36. data/guides/images/i18n/demo_untranslated.png +0 -0
  37. data/guides/images/icons/README +5 -0
  38. data/guides/images/icons/callouts/1.png +0 -0
  39. data/guides/images/icons/callouts/10.png +0 -0
  40. data/guides/images/icons/callouts/11.png +0 -0
  41. data/guides/images/icons/callouts/12.png +0 -0
  42. data/guides/images/icons/callouts/13.png +0 -0
  43. data/guides/images/icons/callouts/14.png +0 -0
  44. data/guides/images/icons/callouts/15.png +0 -0
  45. data/guides/images/icons/callouts/2.png +0 -0
  46. data/guides/images/icons/callouts/3.png +0 -0
  47. data/guides/images/icons/callouts/4.png +0 -0
  48. data/guides/images/icons/callouts/5.png +0 -0
  49. data/guides/images/icons/callouts/6.png +0 -0
  50. data/guides/images/icons/callouts/7.png +0 -0
  51. data/guides/images/icons/callouts/8.png +0 -0
  52. data/guides/images/icons/callouts/9.png +0 -0
  53. data/guides/images/icons/caution.png +0 -0
  54. data/guides/images/icons/example.png +0 -0
  55. data/guides/images/icons/home.png +0 -0
  56. data/guides/images/icons/important.png +0 -0
  57. data/guides/images/icons/next.png +0 -0
  58. data/guides/images/icons/note.png +0 -0
  59. data/guides/images/icons/prev.png +0 -0
  60. data/guides/images/icons/tip.png +0 -0
  61. data/guides/images/icons/up.png +0 -0
  62. data/guides/images/icons/warning.png +0 -0
  63. data/guides/images/nav_arrow.gif +0 -0
  64. data/guides/images/polymorphic.png +0 -0
  65. data/guides/images/posts_index.png +0 -0
  66. data/guides/images/rails_guides_logo.gif +0 -0
  67. data/guides/images/rails_logo_remix.gif +0 -0
  68. data/guides/images/rails_welcome.png +0 -0
  69. data/guides/images/session_fixation.png +0 -0
  70. data/guides/images/tab_grey.gif +0 -0
  71. data/guides/images/tab_info.gif +0 -0
  72. data/guides/images/tab_note.gif +0 -0
  73. data/guides/images/tab_red.gif +0 -0
  74. data/guides/images/tab_yellow.gif +0 -0
  75. data/guides/images/tab_yellow.png +0 -0
  76. data/guides/images/validation_error_messages.png +0 -0
  77. data/guides/rails_guides.rb +42 -0
  78. data/guides/rails_guides/generator.rb +138 -0
  79. data/guides/rails_guides/helpers.rb +34 -0
  80. data/guides/rails_guides/indexer.rb +55 -0
  81. data/guides/rails_guides/textile_extensions.rb +41 -0
  82. data/guides/source/2_2_release_notes.textile +422 -0
  83. data/guides/source/2_3_release_notes.textile +610 -0
  84. data/guides/source/action_controller_overview.textile +776 -0
  85. data/guides/source/action_mailer_basics.textile +424 -0
  86. data/guides/source/active_record_basics.textile +135 -0
  87. data/guides/source/active_record_querying.textile +969 -0
  88. data/guides/source/activerecord_validations_callbacks.textile +1086 -0
  89. data/guides/source/association_basics.textile +1781 -0
  90. data/guides/source/caching_with_rails.textile +524 -0
  91. data/guides/source/command_line.textile +589 -0
  92. data/guides/source/configuring.textile +234 -0
  93. data/guides/source/contribute.textile +71 -0
  94. data/guides/source/contributing_to_rails.textile +239 -0
  95. data/guides/source/credits.erb.textile +52 -0
  96. data/guides/source/debugging_rails_applications.textile +709 -0
  97. data/guides/source/form_helpers.textile +766 -0
  98. data/guides/source/getting_started.textile +1297 -0
  99. data/guides/source/i18n.textile +912 -0
  100. data/guides/source/index.erb.textile +124 -0
  101. data/guides/source/layout.html.erb +103 -0
  102. data/guides/source/layouts_and_rendering.textile +979 -0
  103. data/guides/source/migrations.textile +591 -0
  104. data/guides/source/nested_model_forms.textile +222 -0
  105. data/guides/source/performance_testing.textile +531 -0
  106. data/guides/source/plugins.textile +1512 -0
  107. data/guides/source/rails_on_rack.textile +309 -0
  108. data/guides/source/routing.textile +903 -0
  109. data/guides/source/security.textile +986 -0
  110. data/guides/source/testing.textile +951 -0
  111. data/lib/commands/performance/profiler.rb +1 -1
  112. data/lib/initializer.rb +27 -4
  113. data/lib/rails/gem_dependency.rb +35 -6
  114. data/lib/rails/rack/metal.rb +1 -1
  115. data/lib/rails/version.rb +1 -1
  116. data/lib/tasks/gems.rake +19 -6
  117. data/lib/test_help.rb +4 -1
  118. metadata +123 -7
@@ -0,0 +1,912 @@
1
+ h2. Rails Internationalization (I18n) API
2
+
3
+ The Ruby I18n (shorthand for _internationalization_) gem which is shipped with Ruby on Rails (starting from Rails 2.2) provides an easy-to-use and extensible framework for *translating your application to a single custom language* other than English or for *providing multi-language support* in your application.
4
+
5
+ The process of "internationalization" usually means to abstract all strings and other locale specific bits (such as date or currency formats) out of your application. The process of "localization" means to provide translations and localized formats for these bits. [1]
6
+
7
+ So, in the process of _internationalizing_ your Rails application you have to:
8
+
9
+ * Ensure you have support for i18n
10
+ * Tell Rails where to find locale dictionaries
11
+ * Tell Rails how to set, preserve and switch locale
12
+
13
+ In the process of _localizing_ your application you'll probably want to do following three things:
14
+
15
+ * Replace or supplement Rails' default locale -- e.g. date and time formats, month names, Active Record model names, etc
16
+ * Abstract strings in your application into keyed dictionaries -- e.g. flash messages, static text in your views, etc.
17
+ * Store the resulting dictionaries somewhere
18
+
19
+ This guide will walk you through the I18n API and contains a tutorial how to internationalize a Rails application from the start.
20
+
21
+ endprologue.
22
+
23
+ NOTE: The Ruby I18n framework provides you with all necessary means for internationalization/localization of your Rails application. You may, however, use any of various plugins and extensions available, which add additional functionality or features. See the Rails "I18n Wiki":http://rails-i18n.org/wiki for more information.
24
+
25
+ h3. How I18n in Ruby on Rails Works
26
+
27
+ Internationalization is a complex problem. Natural languages differ in so many ways (e.g. in pluralization rules) that it is hard to provide tools for solving all problems at once. For that reason the Rails I18n API focuses on:
28
+
29
+ * providing support for English and similar languages out of the box
30
+ * making it easy to customize and extend everything for other languages
31
+
32
+ As part of this solution, *every static string in the Rails framework* -- e.g. Active Record validation messages, time and date formats -- *has been internationalized*, so _localization_ of a Rails application means "over-riding" these defaults.
33
+
34
+ h4. The Overall Architecture of the Library
35
+
36
+ Thus, the Ruby I18n gem is split into two parts:
37
+
38
+ * The public API of the i18n framework -- a Ruby module with public methods that define how the library works
39
+ * A default backend (which is intentionally named _Simple_ backend) that implements these methods
40
+
41
+ As a user you should always only access the public methods on the I18n module, but it is useful to know about the capabilities of the backend.
42
+
43
+ NOTE: It is possible (or even desirable) to swap the shipped Simple backend with a more powerful one, which would store translation data in a relational database, GetText dictionary, or similar. See section "Using different backends":#using-different-backends below.
44
+
45
+ h4. The Public I18n API
46
+
47
+ The most important methods of the I18n API are:
48
+
49
+ <ruby>
50
+ translate # Lookup text translations
51
+ localize # Localize Date and Time objects to local formats
52
+ </ruby>
53
+
54
+ These have the aliases #t and #l so you can use them like this:
55
+
56
+ <ruby>
57
+ I18n.t 'store.title'
58
+ I18n.l Time.now
59
+ </ruby>
60
+
61
+ There are also attribute readers and writers for the following attributes:
62
+
63
+ <ruby>
64
+ load_path # Announce your custom translation files
65
+ locale # Get and set the current locale
66
+ default_locale # Get and set the default locale
67
+ exception_handler # Use a different exception_handler
68
+ backend # Use a different backend
69
+ </ruby>
70
+
71
+ So, let's internationalize a simple Rails application from the ground up in the next chapters!
72
+
73
+ h3. Setup the Rails Application for Internationalization
74
+
75
+ There are just a few simple steps to get up and running with I18n support for your application.
76
+
77
+ h4. Configure the I18n Module
78
+
79
+ Following the _convention over configuration_ philosophy, Rails will set up your application with reasonable defaults. If you need different settings, you can overwrite them easily.
80
+
81
+ Rails adds all +.rb+ and +.yml+ files from the +config/locales+ directory to your *translations load path*, automatically.
82
+
83
+ The default +en.yml+ locale in this directory contains a sample pair of translation strings:
84
+
85
+ <ruby>
86
+ en:
87
+ hello: "Hello world"
88
+ </ruby>
89
+
90
+ This means, that in the +:en+ locale, the key _hello_ will map to the _Hello world_ string. Every string inside Rails is internationalized in this way, see for instance Active Record validation messages in the "+activerecord/lib/active_record/locale/en.yml+":http://github.com/rails/rails/blob/master/activerecord/lib/active_record/locale/en.yml file or time and date formats in the "+activesupport/lib/active_support/locale/en.yml+":http://github.com/rails/rails/blob/master/activesupport/lib/active_support/locale/en.yml file. You can use YAML or standard Ruby Hashes to store translations in the default (Simple) backend.
91
+
92
+ The I18n library will use *English* as a *default locale*, i.e. if you don't set a different locale, +:en+ will be used for looking up translations.
93
+
94
+ NOTE: The i18n library takes a *pragmatic approach* to locale keys (after "some discussion":http://groups.google.com/group/rails-i18n/browse_thread/thread/14dede2c7dbe9470/80eec34395f64f3c?hl=en), including only the _locale_ ("language") part, like +:en+, +:pl+, not the _region_ part, like +:en-US+ or +:en-UK+, which are traditionally used for separating "languages" and "regional setting" or "dialects". Many international applications use only the "language" element of a locale such as +:cz+, +:th+ or +:es+ (for Czech, Thai and Spanish). However, there are also regional differences within different language groups that may be important. For instance, in the +:en-US+ locale you would have $ as a currency symbol, while in +:en-UK+, you would have £. Nothing stops you from separating regional and other settings in this way: you just have to provide full "English - United Kingdom" locale in a +:en-UK+ dictionary. Various "Rails I18n plugins":http://rails-i18n.org/wiki such as "Globalize2":http://github.com/joshmh/globalize2/tree/master may help you implement it.
95
+
96
+ The *translations load path* (+I18n.load_path+) is just a Ruby Array of paths to your translation files that will be loaded automatically and available in your application. You can pick whatever directory and translation file naming scheme makes sense for you.
97
+
98
+ NOTE: The backend will lazy-load these translations when a translation is looked up for the first time. This makes it possible to just swap the backend with something else even after translations have already been announced.
99
+
100
+ The default +environment.rb+ files has instruction how to add locales from another directory and how to set a different default locale. Just uncomment and edit the specific lines.
101
+
102
+ <ruby>
103
+ # The internationalization framework can be changed
104
+ # to have another default locale (standard is :en) or more load paths.
105
+ # All files from config/locales/*.rb,yml are added automatically.
106
+ # config.i18n.load_path << Dir[File.join(RAILS_ROOT, 'my', 'locales', '*.{rb,yml}')]
107
+ # config.i18n.default_locale = :de
108
+ </ruby>
109
+
110
+ h4. Optional: Custom I18n Configuration Setup
111
+
112
+ For the sake of completeness, let's mention that if you do not want to use the +environment.rb+ file for some reason, you can always wire up things manually, too.
113
+
114
+ To tell the I18n library where it can find your custom translation files you can specify the load path anywhere in your application - just make sure it gets run before any translations are actually looked up. You might also want to change the default locale. The simplest thing possible is to put the following into an initializer:
115
+
116
+ <ruby>
117
+ # in config/initializer/locale.rb
118
+
119
+ # tell the I18n library where to find your translations
120
+ I18n.load_path << Dir[ File.join(RAILS_ROOT, 'lib', 'locale',
121
+ '*.{rb,yml}') ]
122
+
123
+ # set default locale to something other than :en
124
+ I18n.default_locale = :pt
125
+ </ruby>
126
+
127
+ h4. Setting and Passing the Locale
128
+
129
+ If you want to translate your Rails application to a *single language other than English* (the default locale), you can set I18n.default_locale to your locale in +environment.rb+ or an initializer as shown above, and it will persist through the requests.
130
+
131
+ However, you would probably like to *provide support for more locales* in your application. In such case, you need to set and pass the locale between requests.
132
+
133
+ WARNING: You may be tempted to store the chosen locale in a _session_ or a _cookie_. *Do not do so*. The locale should be transparent and a part of the URL. This way you don't break people's basic assumptions about the web itself: if you send a URL of some page to a friend, she should see the same page, same content. A fancy word for this would be that you're being "_RESTful_":http://en.wikipedia.org/wiki/Representational_State_Transfer. Read more about the RESTful approach in "Stefan Tilkov's articles":http://www.infoq.com/articles/rest-introduction. There may be some exceptions to this rule, which are discussed below.
134
+
135
+ The _setting part_ is easy. You can set the locale in a +before_filter+ in the ApplicationController like this:
136
+
137
+ <ruby>
138
+ before_filter :set_locale
139
+ def set_locale
140
+ # if params[:locale] is nil then I18n.default_locale will be used
141
+ I18n.locale = params[:locale]
142
+ end
143
+ </ruby>
144
+
145
+ This requires you to pass the locale as a URL query parameter as in +http://example.com/books?locale=pt+. (This is, for example, Google's approach.) So +http://localhost:3000?locale=pt+ will load the Portugese localization, whereas +http://localhost:3000?locale=de+ would load the German localization, and so on. You may skip the next section and head over to the *Internationalize your application* section, if you want to try things out by manually placing the locale in the URL and reloading the page.
146
+
147
+ Of course, you probably don't want to manually include the locale in every URL all over your application, or want the URLs look differently, e.g. the usual +http://example.com/pt/books+ versus +http://example.com/en/books+. Let's discuss the different options you have.
148
+
149
+ IMPORTANT: The following examples rely on having available locales loaded into your application as an array of strings like +["en", "es", "gr"]+. This is not included in the current version of Rails 2.2 -- the forthcoming Rails version 2.3 will contain the easy accessor +available_locales+. (See "this commit":http://github.com/svenfuchs/i18n/commit/411f8fe7c8f3f89e9b6b921fa62ed66cb92f3af4 and background at "Rails I18n Wiki":http://rails-i18n.org/wiki/pages/i18n-available_locales.)
150
+
151
+ So, for having available locales easily accessible in Rails 2.2, we have to include this support manually in an initializer, like this:
152
+
153
+ <ruby>
154
+ # config/initializers/available_locales.rb
155
+ #
156
+ # Get loaded locales conveniently
157
+ # See http://rails-i18n.org/wiki/pages/i18n-available_locales
158
+ module I18n
159
+ class << self
160
+ def available_locales; backend.available_locales; end
161
+ end
162
+ module Backend
163
+ class Simple
164
+ def available_locales; translations.keys.collect { |l| l.to_s }.sort; end
165
+ end
166
+ end
167
+ end
168
+
169
+ # You need to "force-initialize" loaded locales
170
+ I18n.backend.send(:init_translations)
171
+
172
+ AVAILABLE_LOCALES = I18n.backend.available_locales
173
+ RAILS_DEFAULT_LOGGER.debug "* Loaded locales: #{AVAILABLE_LOCALES.inspect}"
174
+ </ruby>
175
+
176
+ You can then wrap the constant for easy access in ApplicationController:
177
+
178
+ <ruby>
179
+ class ApplicationController < ActionController::Base
180
+ def available_locales; AVAILABLE_LOCALES; end
181
+ end
182
+ </ruby>
183
+
184
+ h4. Setting the Locale from the Domain Name
185
+
186
+ One option you have is to set the locale from the domain name where your application runs. For example, we want +www.example.com+ to load the English (or default) locale, and +www.example.es+ to load the Spanish locale. Thus the _top-level domain name_ is used for locale setting. This has several advantages:
187
+
188
+ * The locale is an _obvious_ part of the URL
189
+ * People intuitively grasp in which language the content will be displayed
190
+ * It is very trivial to implement in Rails
191
+ * Search engines seem to like that content in different languages lives at different, inter-linked domains
192
+
193
+ You can implement it like this in your ApplicationController:
194
+
195
+ <ruby>
196
+ before_filter :set_locale
197
+ def set_locale
198
+ I18n.locale = extract_locale_from_uri
199
+ end
200
+ # Get locale from top-level domain or return nil if such locale is not available
201
+ # You have to put something like:
202
+ # 127.0.0.1 application.com
203
+ # 127.0.0.1 application.it
204
+ # 127.0.0.1 application.pl
205
+ # in your /etc/hosts file to try this out locally
206
+ def extract_locale_from_tld
207
+ parsed_locale = request.host.split('.').last
208
+ (available_locales.include? parsed_locale) ? parsed_locale : nil
209
+ end
210
+ </ruby>
211
+
212
+ We can also set the locale from the _subdomain_ in a very similar way:
213
+
214
+ <ruby>
215
+ # Get locale code from request subdomain (like http://it.application.local:3000)
216
+ # You have to put something like:
217
+ # 127.0.0.1 gr.application.local
218
+ # in your /etc/hosts file to try this out locally
219
+ def extract_locale_from_subdomain
220
+ parsed_locale = request.subdomains.first
221
+ (available_locales.include? parsed_locale) ? parsed_locale : nil
222
+ end
223
+ </ruby>
224
+
225
+ If your application includes a locale switching menu, you would then have something like this in it:
226
+
227
+ <ruby>
228
+ link_to("Deutsch", "#{APP_CONFIG[:deutsch_website_url]}#{request.env['REQUEST_URI']}")
229
+ </ruby>
230
+
231
+ assuming you would set +APP_CONFIG[:deutsch_website_url]+ to some value like +http://www.application.de+.
232
+
233
+ This solution has aforementioned advantages, however, you may not be able or may not want to provide different localizations ("language versions") on different domains. The most obvious solution would be to include locale code in the URL params (or request path).
234
+
235
+ h4. Setting the Locale from the URL Params
236
+
237
+ The most usual way of setting (and passing) the locale would be to include it in URL params, as we did in the +I18n.locale = params[:locale]+ _before_filter_ in the first example. We would like to have URLs like +www.example.com/books?locale=ja+ or +www.example.com/ja/books+ in this case.
238
+
239
+ This approach has almost the same set of advantages as setting the locale from the domain name: namely that it's RESTful and in accord with the rest of the World Wide Web. It does require a little bit more work to implement, though.
240
+
241
+ Getting the locale from +params+ and setting it accordingly is not hard; including it in every URL and thus *passing it through the requests* is. To include an explicit option in every URL (e.g. +link_to( books_url(:locale => I18n.locale))+) would be tedious and probably impossible, of course.
242
+
243
+ Rails contains infrastructure for "centralizing dynamic decisions about the URLs" in its "+ApplicationController#default_url_options+":http://api.rubyonrails.org/classes/ActionController/Base.html#M000515, which is useful precisely in this scenario: it enables us to set "defaults" for "+url_for+":http://api.rubyonrails.org/classes/ActionController/Base.html#M000503 and helper methods dependent on it (by implementing/overriding this method).
244
+
245
+ We can include something like this in our ApplicationController then:
246
+
247
+ <ruby>
248
+ # app/controllers/application_controller.rb
249
+ def default_url_options(options={})
250
+ logger.debug "default_url_options is passed options: #{options.inspect}\n"
251
+ { :locale => I18n.locale }
252
+ end
253
+ </ruby>
254
+
255
+ Every helper method dependent on +url_for+ (e.g. helpers for named routes like +root_path+ or +root_url+, resource routes like +books_path+ or +books_url+, etc.) will now *automatically include the locale in the query string*, like this: +http://localhost:3001/?locale=ja+.
256
+
257
+ You may be satisfied with this. It does impact the readability of URLs, though, when the locale "hangs" at the end of every URL in your application. Moreover, from the architectural standpoint, locale is usually hierarchically above the other parts of the application domain: and URLs should reflect this.
258
+
259
+ You probably want URLs to look like this: +www.example.com/en/books+ (which loads the English locale) and +www.example.com/nl/books+ (which loads the Netherlands locale). This is achievable with the "over-riding +default_url_options+" strategy from above: you just have to set up your routes with "+path_prefix+":http://api.rubyonrails.org/classes/ActionController/Resources.html#M000354 option in this way:
260
+
261
+ <ruby>
262
+ # config/routes.rb
263
+ map.resources :books, :path_prefix => '/:locale'
264
+ </ruby>
265
+
266
+ Now, when you call the +books_path+ method you should get +"/en/books"+ (for the default locale). An URL like +http://localhost:3001/nl/books+ should load the Netherlands locale, then, and following calls to +books_path+ should return +"/nl/books"+ (because the locale changed).
267
+
268
+ Of course, you need to take special care of the root URL (usually "homepage" or "dashboard") of your application. An URL like +http://localhost:3001/nl+ will not work automatically, because the +map.root :controller => "dashboard"+ declaration in your +routes.rb+ doesn't take locale into account. (And rightly so: there's only one "root" URL.)
269
+
270
+ You would probably need to map URLs like these:
271
+
272
+ <ruby>
273
+ # config/routes.rb
274
+ map.dashboard '/:locale', :controller => "dashboard"
275
+ </ruby>
276
+
277
+ Do take special care about the *order of your routes*, so this route declaration does not "eat" other ones. (You may want to add it directly before the +map.root+ declaration.)
278
+
279
+ IMPORTANT: This solution has currently one rather big *downside*. Due to the _default_url_options_ implementation, you have to pass the +:id+ option explicitely, like this: +link_to 'Show', book_url(:id => book)+ and not depend on Rails' magic in code like +link_to 'Show', book+. If this should be a problem, have a look at two plugins which simplify work with routes in this way: Sven Fuchs's "routing_filter":http://github.com/svenfuchs/routing-filter/tree/master and Raul Murciano's "translate_routes":http://github.com/raul/translate_routes/tree/master. See also the page "How to encode the current locale in the URL":http://rails-i18n.org/wiki/pages/how-to-encode-the-current-locale-in-the-url in the Rails i18n Wiki.
280
+
281
+ h4. Setting the Locale from the Client Supplied Information
282
+
283
+ In specific cases, it would make sense to set the locale from client-supplied information, i.e. not from the URL. This information may come for example from the users' prefered language (set in their browser), can be based on the users' geographical location inferred from their IP, or users can provide it simply by choosing the locale in your application interface and saving it to their profile. This approach is more suitable for web-based applications or services, not for websites -- see the box about _sessions_, _cookies_ and RESTful architecture above.
284
+
285
+
286
+ h5. Using +Accept-Language+
287
+
288
+ One source of client supplied information would be an +Accept-Language+ HTTP header. People may "set this in their browser":http://www.w3.org/International/questions/qa-lang-priorities or other clients (such as _curl_).
289
+
290
+ A trivial implementation of using an +Accept-Language+ header would be:
291
+
292
+ <ruby>
293
+ def set_locale
294
+ logger.debug "* Accept-Language: #{request.env['HTTP_ACCEPT_LANGUAGE']}"
295
+ I18n.locale = extract_locale_from_accept_language_header
296
+ logger.debug "* Locale set to '#{I18n.locale}'"
297
+ end
298
+ private
299
+ def extract_locale_from_accept_language_header
300
+ request.env['HTTP_ACCEPT_LANGUAGE'].scan(/^[a-z]{2}/).first
301
+ end
302
+ </ruby>
303
+
304
+ Of course, in a production environment you would need much more robust code, and could use a plugin such as Iain Hecker's "http_accept_language":http://github.com/iain/http_accept_language/tree/master or even Rack middleware such as Ryan Tomayko's "locale":http://github.com/rtomayko/rack-contrib/blob/master/lib/rack/locale.rb.
305
+
306
+ h5. Using GeoIP (or Similar) Database
307
+
308
+ Another way of choosing the locale from client information would be to use a database for mapping the client IP to the region, such as "GeoIP Lite Country":http://www.maxmind.com/app/geolitecountry. The mechanics of the code would be very similar to the code above -- you would need to query the database for the user's IP, and look up your prefered locale for the country/region/city returned.
309
+
310
+ h5. User Profile
311
+
312
+ You can also provide users of your application with means to set (and possibly over-ride) the locale in your application interface, as well. Again, mechanics for this approach would be very similar to the code above -- you'd probably let users choose a locale from a dropdown list and save it to their profile in the database. Then you'd set the locale to this value.
313
+
314
+ h3. Internationalizing your Application
315
+
316
+ OK! Now you've initialized I18n support for your Ruby on Rails application and told it which locale to use and how to preserve it between requests. With that in place, you're now ready for the really interesting stuff.
317
+
318
+ Let's _internationalize_ our application, i.e. abstract every locale-specific parts, and then _localize_ it, i.e. provide neccessary translations for these abstracts.
319
+
320
+ You most probably have something like this in one of your applications:
321
+
322
+ <ruby>
323
+ # config/routes.rb
324
+ ActionController::Routing::Routes.draw do |map|
325
+ map.root :controller => 'home', :action => 'index'
326
+ end
327
+
328
+ # app/controllers/home_controller.rb
329
+ class HomeController < ApplicationController
330
+ def index
331
+ flash[:notice] = "Hello flash!"
332
+ end
333
+ end
334
+
335
+ # app/views/home/index.html.erb
336
+ <h1>Hello world!</h1>
337
+ <p><%= flash[:notice] %></p>
338
+ </ruby>
339
+
340
+ !images/i18n/demo_untranslated.png(rails i18n demo untranslated)!
341
+
342
+ h4. Adding Translations
343
+
344
+ Obviously there are *two strings that are localized to English*. In order to internationalize this code, *replace these strings* with calls to Rails' +#t+ helper with a key that makes sense for the translation:
345
+
346
+ <ruby>
347
+ # app/controllers/home_controller.rb
348
+ class HomeController < ApplicationController
349
+ def index
350
+ flash[:notice] = t(:hello_flash)
351
+ end
352
+ end
353
+
354
+ # app/views/home/index.html.erb
355
+ <h1><%=t :hello_world %></h1>
356
+ <p><%= flash[:notice] %></p>
357
+ </ruby>
358
+
359
+ When you now render this view, it will show an error message which tells you that the translations for the keys +:hello_world+ and +:hello_flash+ are missing.
360
+
361
+ !images/i18n/demo_translation_missing.png(rails i18n demo translation missing)!
362
+
363
+ NOTE: Rails adds a +t+ (+translate+) helper method to your views so that you do not need to spell out +I18n.t+ all the time. Additionally this helper will catch missing translations and wrap the resulting error message into a +&lt;span class="translation_missing"&gt;+.
364
+
365
+ So let's add the missing translations into the dictionary files (i.e. do the "localization" part):
366
+
367
+ <ruby>
368
+ # config/locale/en.yml
369
+ en:
370
+ hello_world: Hello World
371
+ hello_flash: Hello Flash
372
+
373
+ # config/locale/pirate.yml
374
+ pirate:
375
+ hello_world: Ahoy World
376
+ hello_flash: Ahoy Flash
377
+ </ruby>
378
+
379
+ There you go. Because you haven't changed the default_locale, I18n will use English. Your application now shows:
380
+
381
+ !images/i18n/demo_translated_en.png(rails i18n demo translated to english)!
382
+
383
+ And when you change the URL to pass the pirate locale (+http://localhost:3000?locale=pirate+), you'll get:
384
+
385
+ !images/i18n/demo_translated_pirate.png(rails i18n demo translated to pirate)!
386
+
387
+ NOTE: You need to restart the server when you add new locale files.
388
+
389
+ You may use YAML (+.yml+) or plain Ruby (+.rb+) files for storing your translations in SimpleStore. YAML is the prefered option among Rails developers. However, it has one big disadvantage. YAML is very sensitive to whitespace and special characters, so the application may not load your dictionary properly. Ruby files will crash your application on first request, so you may easily find what's wrong. (If you encounter any "weird issues" with YAML dictionaries, try putting the relevant portion of your dictionary into a Ruby file.)
390
+
391
+ h4. Adding Date/Time Formats
392
+
393
+ OK! Now let's add a timestamp to the view, so we can demo the *date/time localization* feature as well. To localize the time format you pass the Time object to +I18n.l+ or (preferably) use Rails' +#l+ helper. You can pick a format by passing the +:format+ option -- by default the +:default+ format is used.
394
+
395
+ <ruby>
396
+ # app/views/home/index.html.erb
397
+ <h1><%=t :hello_world %></h1>
398
+ <p><%= flash[:notice] %></p
399
+ <p><%= l Time.now, :format => :short %></p>
400
+ </ruby>
401
+
402
+ And in our pirate translations file let's add a time format (it's already there in Rails' defaults for English):
403
+
404
+ <ruby>
405
+ # config/locale/pirate.yml
406
+ pirate:
407
+ time:
408
+ formats:
409
+ short: "arrrround %H'ish"
410
+ </ruby>
411
+
412
+ So that would give you:
413
+
414
+ !images/i18n/demo_localized_pirate.png(rails i18n demo localized time to pirate)!
415
+
416
+ TIP: Right now you might need to add some more date/time formats in order to make the I18n backend work as expected (at least for the 'pirate' locale). Of course, there's a great chance that somebody already did all the work by *translating Rails's defaults for your locale*. See the "rails-i18n repository at Github":http://github.com/svenfuchs/rails-i18n/tree/master/rails/locale for an archive of various locale files. When you put such file(s) in +config/locale/+ directory, they will automatically be ready for use.
417
+
418
+ h4. Localized Views
419
+
420
+ Rails 2.3 introduces another convenient localization feature: localized views (templates). Let's say you have a _BooksController_ in your application. Your _index_ action renders content in +app/views/books/index.html.erb+ template. When you put a _localized variant_ of this template: *+index.es.html.erb+* in the same directory, Rails will render content in this template, when the locale is set to +:es+. When the locale is set to the default locale, the generic +index.html.erb+ view will be used. (Future Rails versions may well bring this _automagic_ localization to assets in +public+, etc.)
421
+
422
+ You can make use of this feature, e.g. when working with a large amount of static content, which would be clumsy to put inside YAML or Ruby dictionaries. Bear in mind, though, that any change you would like to do later to the template must be propagated to all of them.
423
+
424
+ h4. Organization of Locale Files
425
+
426
+ When you are using the default SimpleStore shipped with the i18n library, dictionaries are stored in plain-text files on the disc. Putting translations for all parts of your application in one file per locale could be hard to manage. You can store these files in a hierarchy which makes sense to you.
427
+
428
+ For example, your +config/locale+ directory could look like this:
429
+
430
+ <pre>
431
+ |-defaults
432
+ |---es.rb
433
+ |---en.rb
434
+ |-models
435
+ |---book
436
+ |-----es.rb
437
+ |-----en.rb
438
+ |-views
439
+ |---defaults
440
+ |-----es.rb
441
+ |-----en.rb
442
+ |---books
443
+ |-----es.rb
444
+ |-----en.rb
445
+ |---users
446
+ |-----es.rb
447
+ |-----en.rb
448
+ |---navigation
449
+ |-----es.rb
450
+ |-----en.rb
451
+ </pre>
452
+
453
+ This way, you can separate model and model attribute names from text inside views, and all of this from the "defaults" (e.g. date and time formats). Other stores for the i18n library could provide different means of such separation.
454
+
455
+ NOTE: The default locale loading mechanism in Rails does not load locale files in nested dictionaries, like we have here. So, for this to work, we must explicitly tell Rails to look further:
456
+
457
+ <ruby>
458
+ # config/environment.rb
459
+ config.i18n.load_path += Dir[File.join(RAILS_ROOT, 'config', 'locales', '**', '*.{rb,yml}')]
460
+ </ruby>
461
+
462
+ Do check the "Rails i18n Wiki":http://rails-i18n.org/wiki for list of tools available for managing translations.
463
+
464
+ h3. Overview of the I18n API Features
465
+
466
+ You should have good understanding of using the i18n library now, knowing all neccessary aspects of internationalizing a basic Rails application. In the following chapters, we'll cover it's features in more depth.
467
+
468
+ Covered are features like these:
469
+
470
+ * looking up translations
471
+ * interpolating data into translations
472
+ * pluralizing translations
473
+ * localizing dates, numbers, currency, etc.
474
+
475
+ h4. Looking up Translations
476
+
477
+ h5. Basic Lookup, Scopes and Nested Keys
478
+
479
+ Translations are looked up by keys which can be both Symbols or Strings, so these calls are equivalent:
480
+
481
+ <ruby>
482
+ I18n.t :message
483
+ I18n.t 'message'
484
+ </ruby>
485
+
486
+ The +translate+ method also takes a +:scope+ option which can contain one or more additional keys that will be used to specify a “namespace” or scope for a translation key:
487
+
488
+ <ruby>
489
+ I18n.t :invalid, :scope => [:activerecord, :errors, :messages]
490
+ </ruby>
491
+
492
+ This looks up the +:invalid+ message in the Active Record error messages.
493
+
494
+ Additionally, both the key and scopes can be specified as dot-separated keys as in:
495
+
496
+ <ruby>
497
+ I18n.translate :"activerecord.errors.messages.invalid"
498
+ </ruby>
499
+
500
+ Thus the following calls are equivalent:
501
+
502
+ <ruby>
503
+ I18n.t 'activerecord.errors.messages.invalid'
504
+ I18n.t 'errors.messages.invalid', :scope => :active_record
505
+ I18n.t :invalid, :scope => 'activerecord.errors.messages'
506
+ I18n.t :invalid, :scope => [:activerecord, :errors, :messages]
507
+ </ruby>
508
+
509
+ h5. Defaults
510
+
511
+ When a +:default+ option is given, its value will be returned if the translation is missing:
512
+
513
+ <ruby>
514
+ I18n.t :missing, :default => 'Not here'
515
+ # => 'Not here'
516
+ </ruby>
517
+
518
+ If the +:default+ value is a Symbol, it will be used as a key and translated. One can provide multiple values as default. The first one that results in a value will be returned.
519
+
520
+ E.g., the following first tries to translate the key +:missing+ and then the key +:also_missing.+ As both do not yield a result, the string "Not here" will be returned:
521
+
522
+ <ruby>
523
+ I18n.t :missing, :default => [:also_missing, 'Not here']
524
+ # => 'Not here'
525
+ </ruby>
526
+
527
+ h5. Bulk and Namespace Lookup
528
+
529
+ To look up multiple translations at once, an array of keys can be passed:
530
+
531
+ <ruby>
532
+ I18n.t [:odd, :even], :scope => 'activerecord.errors.messages'
533
+ # => ["must be odd", "must be even"]
534
+ </ruby>
535
+
536
+ Also, a key can translate to a (potentially nested) hash of grouped translations. E.g., one can receive _all_ Active Record error messages as a Hash with:
537
+
538
+ <ruby>
539
+ I18n.t 'activerecord.errors.messages'
540
+ # => { :inclusion => "is not included in the list", :exclusion => ... }
541
+ </ruby>
542
+
543
+ h5. "Lazy" Lookup
544
+
545
+ Rails 2.3 implements a convenient way to look up the locale inside _views_. When you have the following dictionary:
546
+
547
+ <yaml>
548
+ es:
549
+ books:
550
+ index:
551
+ title: "Título"
552
+ </yaml>
553
+
554
+ you can look up the +books.index.title+ value *inside* +app/views/books/index.html.erb+ template like this (note the dot):
555
+
556
+ <ruby>
557
+ <%= t '.title' %>
558
+ </ruby>
559
+
560
+ h4. Interpolation
561
+
562
+ In many cases you want to abstract your translations so that *variables can be interpolated into the translation*. For this reason the I18n API provides an interpolation feature.
563
+
564
+ All options besides +:default+ and +:scope+ that are passed to +#translate+ will be interpolated to the translation:
565
+
566
+ <ruby>
567
+ I18n.backend.store_translations :en, :thanks => 'Thanks {{name}}!'
568
+ I18n.translate :thanks, :name => 'Jeremy'
569
+ # => 'Thanks Jeremy!'
570
+ </ruby>
571
+
572
+ If a translation uses +:default+ or +:scope+ as an interpolation variable, an I+18n::ReservedInterpolationKey+ exception is raised. If a translation expects an interpolation variable, but this has not been passed to +#translate+, an +I18n::MissingInterpolationArgument+ exception is raised.
573
+
574
+ h4. Pluralization
575
+
576
+ In English there are only one singular and one plural form for a given string, e.g. "1 message" and "2 messages". Other languages ("Arabic":http://www.unicode.org/cldr/data/charts/supplemental/language_plural_rules.html#ar, "Japanese":http://www.unicode.org/cldr/data/charts/supplemental/language_plural_rules.html#ja, "Russian":http://www.unicode.org/cldr/data/charts/supplemental/language_plural_rules.html#ru and many more) have different grammars that have additional or fewer "plural forms":http://www.unicode.org/cldr/data/charts/supplemental/language_plural_rules.html. Thus, the I18n API provides a flexible pluralization feature.
577
+
578
+ The +:count+ interpolation variable has a special role in that it both is interpolated to the translation and used to pick a pluralization from the translations according to the pluralization rules defined by CLDR:
579
+
580
+ <ruby>
581
+ I18n.backend.store_translations :en, :inbox => {
582
+ :one => '1 message',
583
+ :other => '{{count}} messages'
584
+ }
585
+ I18n.translate :inbox, :count => 2
586
+ # => '2 messages'
587
+ </ruby>
588
+
589
+ The algorithm for pluralizations in +:en+ is as simple as:
590
+
591
+ <ruby>
592
+ entry[count == 1 ? 0 : 1]
593
+ </ruby>
594
+
595
+ I.e. the translation denoted as +:one+ is regarded as singular, the other is used as plural (including the count being zero).
596
+
597
+ If the lookup for the key does not return a Hash suitable for pluralization, an +18n::InvalidPluralizationData+ exception is raised.
598
+
599
+ h4. Setting and Passing a Locale
600
+
601
+ The locale can be either set pseudo-globally to +I18n.locale+ (which uses +Thread.current+ like, e.g., +Time.zone+) or can be passed as an option to +#translate+ and +#localize+.
602
+
603
+ If no locale is passed, +I18n.locale+ is used:
604
+
605
+ <ruby>
606
+ I18n.locale = :de
607
+ I18n.t :foo
608
+ I18n.l Time.now
609
+ </ruby>
610
+
611
+ Explicitely passing a locale:
612
+
613
+ <ruby>
614
+ I18n.t :foo, :locale => :de
615
+ I18n.l Time.now, :locale => :de
616
+ </ruby>
617
+
618
+ The +I18n.locale+ defaults to +I18n.default_locale+ which defaults to :+en+. The default locale can be set like this:
619
+
620
+ <ruby>
621
+ I18n.default_locale = :de
622
+ </ruby>
623
+
624
+ h3. How to Store your Custom Translations
625
+
626
+ The Simple backend shipped with Active Support allows you to store translations in both plain Ruby and YAML format. [2]
627
+
628
+ For example a Ruby Hash providing translations can look like this:
629
+
630
+ <ruby>
631
+ {
632
+ :pt => {
633
+ :foo => {
634
+ :bar => "baz"
635
+ }
636
+ }
637
+ }
638
+ </ruby>
639
+
640
+ The equivalent YAML file would look like this:
641
+
642
+ <ruby>
643
+ pt:
644
+ foo:
645
+ bar: baz
646
+ </ruby>
647
+
648
+ As you see, in both cases the toplevel key is the locale. +:foo+ is a namespace key and +:bar+ is the key for the translation "baz".
649
+
650
+ Here is a "real" example from the Active Support +en.yml+ translations YAML file:
651
+
652
+ <ruby>
653
+ en:
654
+ date:
655
+ formats:
656
+ default: "%Y-%m-%d"
657
+ short: "%b %d"
658
+ long: "%B %d, %Y"
659
+ </ruby>
660
+
661
+ So, all of the following equivalent lookups will return the +:short+ date format +"%B %d"+:
662
+
663
+ <ruby>
664
+ I18n.t 'date.formats.short'
665
+ I18n.t 'formats.short', :scope => :date
666
+ I18n.t :short, :scope => 'date.formats'
667
+ I18n.t :short, :scope => [:date, :formats]
668
+ </ruby>
669
+
670
+ Generally we recommend using YAML as a format for storing translations. There are cases, though, where you want to store Ruby lambdas as part of your locale data, e.g. for special date formats.
671
+
672
+ h4. Translations for Active Record Models
673
+
674
+ You can use the methods +Model.human_name+ and +Model.human_attribute_name(attribute)+ to transparently look up translations for your model and attribute names.
675
+
676
+ For example when you add the following translations:
677
+
678
+ <ruby>
679
+ en:
680
+ activerecord:
681
+ models:
682
+ user: Dude
683
+ attributes:
684
+ user:
685
+ login: "Handle"
686
+ # will translate User attribute "login" as "Handle"
687
+ </ruby>
688
+
689
+ Then +User.human_name+ will return "Dude" and +User.human_attribute_name(:login)+ will return "Handle".
690
+
691
+ h5. Error Message Scopes
692
+
693
+ Active Record validation error messages can also be translated easily. Active Record gives you a couple of namespaces where you can place your message translations in order to provide different messages and translation for certain models, attributes, and/or validations. It also transparently takes single table inheritance into account.
694
+
695
+ This gives you quite powerful means to flexibly adjust your messages to your application's needs.
696
+
697
+ Consider a User model with a +validates_presence_of+ validation for the name attribute like this:
698
+
699
+ <ruby>
700
+ class User < ActiveRecord::Base
701
+ validates_presence_of :name
702
+ end
703
+ </ruby>
704
+
705
+ The key for the error message in this case is +:blank+. Active Record will look up this key in the namespaces:
706
+
707
+ <ruby>
708
+ activerecord.errors.models.[model_name].attributes.[attribute_name]
709
+ activerecord.errors.models.[model_name]
710
+ activerecord.errors.messages
711
+ </ruby>
712
+
713
+ Thus, in our example it will try the following keys in this order and return the first result:
714
+
715
+ <ruby>
716
+ activerecord.errors.models.user.attributes.name.blank
717
+ activerecord.errors.models.user.blank
718
+ activerecord.errors.messages.blank
719
+ </ruby>
720
+
721
+ When your models are additionally using inheritance then the messages are looked up in the inheritance chain.
722
+
723
+ For example, you might have an Admin model inheriting from User:
724
+
725
+ <ruby>
726
+ class Admin < User
727
+ validates_presence_of :name
728
+ end
729
+ </ruby>
730
+
731
+ Then Active Record will look for messages in this order:
732
+
733
+ <ruby>
734
+ activerecord.errors.models.admin.attributes.title.blank
735
+ activerecord.errors.models.admin.blank
736
+ activerecord.errors.models.user.attributes.title.blank
737
+ activerecord.errors.models.user.blank
738
+ activerecord.errors.messages.blank
739
+ </ruby>
740
+
741
+ This way you can provide special translations for various error messages at different points in your models inheritance chain and in the attributes, models, or default scopes.
742
+
743
+ h5. Error Message Interpolation
744
+
745
+ The translated model name, translated attribute name, and value are always available for interpolation.
746
+
747
+ So, for example, instead of the default error message +"can not be blank"+ you could use the attribute name like this : +"Please fill in your {{attribute}}"+.
748
+
749
+ * +count+, where available, can be used for pluralization if present:
750
+
751
+ |_. validation |_.with option |_.message |_.interpolation|
752
+ | validates_confirmation_of | - | :confirmation | -|
753
+ | validates_acceptance_of | - | :accepted | -|
754
+ | validates_presence_of | - | :blank | -|
755
+ | validates_length_of | :within, :in | :too_short | count|
756
+ | validates_length_of | :within, :in | :too_long | count|
757
+ | validates_length_of | :is | :wrong_length | count|
758
+ | validates_length_of | :minimum | :too_short | count|
759
+ | validates_length_of | :maximum | :too_long | count|
760
+ | validates_uniqueness_of | - | :taken | -|
761
+ | validates_format_of | - | :invalid | -|
762
+ | validates_inclusion_of | - | :inclusion | -|
763
+ | validates_exclusion_of | - | :exclusion | -|
764
+ | validates_associated | - | :invalid | -|
765
+ | validates_numericality_of | - | :not_a_number | -|
766
+ | validates_numericality_of | :greater_than | :greater_than | count|
767
+ | validates_numericality_of | :greater_than_or_equal_to | :greater_than_or_equal_to | count|
768
+ | validates_numericality_of | :equal_to | :equal_to | count|
769
+ | validates_numericality_of | :less_than | :less_than | count|
770
+ | validates_numericality_of | :less_than_or_equal_to | :less_than_or_equal_to | count|
771
+ | validates_numericality_of | :odd | :odd | -|
772
+ | validates_numericality_of | :even | :even | -|
773
+
774
+ h5. Translations for the Active Record +error_messages_for+ Helper
775
+
776
+ If you are using the Active Record +error_messages_for+ helper, you will want to add translations for it.
777
+
778
+ Rails ships with the following translations:
779
+
780
+ <yaml>
781
+ en:
782
+ activerecord:
783
+ errors:
784
+ template:
785
+ header:
786
+ one: "1 error prohibited this {{model}} from being saved"
787
+ other: "{{count}} errors prohibited this {{model}} from being saved"
788
+ body: "There were problems with the following fields:"
789
+ </yaml>
790
+
791
+ h4. Overview of Other Built-In Methods that Provide I18n Support
792
+
793
+ Rails uses fixed strings and other localizations, such as format strings and other format information in a couple of helpers. Here's a brief overview.
794
+
795
+ h5. Action View Helper Methods
796
+
797
+ * +distance_of_time_in_words+ translates and pluralizes its result and interpolates the number of seconds, minutes, hours, and so on. See "datetime.distance_in_words":http://github.com/rails/rails/blob/master/actionpack/lib/action_view/locale/en.yml#L51 translations.
798
+
799
+ * +datetime_select+ and +select_month+ use translated month names for populating the resulting select tag. See "date.month_names":http://github.com/rails/rails/blob/master/activesupport/lib/active_support/locale/en.yml#L15 for translations. +datetime_select+ also looks up the order option from "date.order":http://github.com/rails/rails/blob/master/activesupport/lib/active_support/locale/en.yml#L18 (unless you pass the option explicitely). All date selection helpers translate the prompt using the translations in the "datetime.prompts":http://github.com/rails/rails/blob/master/actionpack/lib/action_view/locale/en.yml#L83 scope if applicable.
800
+
801
+ * The +number_to_currency+, +number_with_precision+, +number_to_percentage+, +number_with_delimiter+, and +number_to_human_size+ helpers use the number format settings located in the "number":http://github.com/rails/rails/blob/master/actionpack/lib/action_view/locale/en.yml#L2 scope.
802
+
803
+ h5. Active Record Methods
804
+
805
+ * +human_name+ and +human_attribute_name+ use translations for model names and attribute names if available in the "activerecord.models":http://github.com/rails/rails/blob/master/activerecord/lib/active_record/locale/en.yml#L43 scope. They also support translations for inherited class names (e.g. for use with STI) as explained above in "Error message scopes".
806
+
807
+ * +ActiveRecord::Errors#generate_message+ (which is used by Active Record validations but may also be used manually) uses +human_name+ and +human_attribute_name+ (see above). It also translates the error message and supports translations for inherited class names as explained above in "Error message scopes".
808
+
809
+ *+ ActiveRecord::Errors#full_messages+ prepends the attribute name to the error message using a separator that will be looked up from "activerecord.errors.format.separator":http://github.com/rails/rails/blob/master/actionpack/lib/action_view/locale/en.yml#L91 (and which defaults to +'&nbsp;'+).
810
+
811
+ h5. Active Support Methods
812
+
813
+ * +Array#to_sentence+ uses format settings as given in the "support.array":http://github.com/rails/rails/blob/master/activesupport/lib/active_support/locale/en.yml#L30 scope.
814
+
815
+
816
+ h3. Customize your I18n Setup
817
+
818
+ h4. Using Different Backends
819
+
820
+ For several reasons the Simple backend shipped with Active Support only does the "simplest thing that could possibly work" _for Ruby on Rails_ [3] ... which means that it is only guaranteed to work for English and, as a side effect, languages that are very similar to English. Also, the simple backend is only capable of reading translations but can not dynamically store them to any format.
821
+
822
+ That does not mean you're stuck with these limitations, though. The Ruby I18n gem makes it very easy to exchange the Simple backend implementation with something else that fits better for your needs. E.g. you could exchange it with Globalize's Static backend:
823
+
824
+ <ruby>
825
+ I18n.backend = Globalize::Backend::Static.new
826
+ </ruby>
827
+
828
+ h4. Using Different Exception Handlers
829
+
830
+ The I18n API defines the following exceptions that will be raised by backends when the corresponding unexpected conditions occur:
831
+
832
+ <ruby>
833
+ MissingTranslationData # no translation was found for the requested key
834
+ InvalidLocale # the locale set to I18n.locale is invalid (e.g. nil)
835
+ InvalidPluralizationData # a count option was passed but the translation data is not suitable for pluralization
836
+ MissingInterpolationArgument # the translation expects an interpolation argument that has not been passed
837
+ ReservedInterpolationKey # the translation contains a reserved interpolation variable name (i.e. one of: scope, default)
838
+ UnknownFileType # the backend does not know how to handle a file type that was added to I18n.load_path
839
+ </ruby>
840
+
841
+ The I18n API will catch all of these exceptions when they are thrown in the backend and pass them to the default_exception_handler method. This method will re-raise all exceptions except for +MissingTranslationData+ exceptions. When a +MissingTranslationData+ exception has been caught, it will return the exception’s error message string containing the missing key/scope.
842
+
843
+ The reason for this is that during development you'd usually want your views to still render even though a translation is missing.
844
+
845
+ In other contexts you might want to change this behaviour, though. E.g. the default exception handling does not allow to catch missing translations during automated tests easily. For this purpose a different exception handler can be specified. The specified exception handler must be a method on the I18n module:
846
+
847
+ <ruby>
848
+ module I18n
849
+ def just_raise_that_exception(*args)
850
+ raise args.first
851
+ end
852
+ end
853
+
854
+ I18n.exception_handler = :just_raise_that_exception
855
+ </ruby>
856
+
857
+ This would re-raise all caught exceptions including +MissingTranslationData+.
858
+
859
+ Another example where the default behaviour is less desirable is the Rails TranslationHelper which provides the method +#t+ (as well as +#translate+). When a +MissingTranslationData+ exception occurs in this context, the helper wraps the message into a span with the CSS class +translation_missing+.
860
+
861
+ To do so, the helper forces +I18n#translate+ to raise exceptions no matter what exception handler is defined by setting the +:raise+ option:
862
+
863
+ <ruby>
864
+ I18n.t :foo, :raise => true # always re-raises exceptions from the backend
865
+ </ruby>
866
+
867
+ h3. Conclusion
868
+
869
+ At this point you should have a good overview about how I18n support in Ruby on Rails works and are ready to start translating your project.
870
+
871
+ If you find anything missing or wrong in this guide please file a ticket on "our issue tracker":http://i18n.lighthouseapp.com/projects/14948-rails-i18n/overview. If you want to discuss certain portions or have questions please sign up to our "mailinglist":http://groups.google.com/group/rails-i18n.
872
+
873
+
874
+ h3. Contributing to Rails I18n
875
+
876
+ I18n support in Ruby on Rails was introduced in the release 2.2 and is still evolving. The project follows the good Ruby on Rails development tradition of evolving solutions in plugins and real applications first, and only then cherry-picking the best-of-bread of most widely useful features for inclusion in the core.
877
+
878
+ Thus we encourage everybody to experiment with new ideas and features in plugins or other libraries and make them available to the community. (Don't forget to announce your work on our "mailing list":http://groups.google.com/group/rails-i18n!)
879
+
880
+ If you find your own locale (language) missing from our "example translations data":http://github.com/svenfuchs/rails-i18n/tree/master/rails/locale repository for Ruby on Rails, please "_fork_":http://github.com/guides/fork-a-project-and-submit-your-modifications the repository, add your data and send a "pull request":http://github.com/guides/pull-requests.
881
+
882
+
883
+ h3. Resources
884
+
885
+ * "rails-i18n.org":http://rails-i18n.org - Homepage of the rails-i18n project. You can find lots of useful resources on the "wiki":http://rails-i18n.org/wiki.
886
+ * "rails-i18n Google group":http://groups.google.com/group/rails-i18n - The project's mailing list.
887
+ * "Github: rails-i18n":http://github.com/svenfuchs/rails-i18n/tree/master - Code repository for the rails-i18n project. Most importantly you can find lots of "example translations":http://github.com/svenfuchs/rails-i18n/tree/master/rails/locale for Rails that should work for your application in most cases.
888
+ * "Lighthouse: rails-i18n":http://i18n.lighthouseapp.com/projects/14948-rails-i18n/overview - Issue tracker for the rails-i18n project.
889
+ * "Github: i18n":http://github.com/svenfuchs/i18n/tree/master - Code repository for the i18n gem.
890
+ * "Lighthouse: i18n":http://i18n.lighthouseapp.com/projects/14947-ruby-i18n/overview - Issue tracker for the i18n gem.
891
+
892
+
893
+ h3. Authors
894
+
895
+ * "Sven Fuchs":http://www.workingwithrails.com/person/9963-sven-fuchs (initial author)
896
+ * "Karel Minařík":http://www.workingwithrails.com/person/7476-karel-mina-k
897
+
898
+ If you found this guide useful please consider recommending its authors on "workingwithrails":http://www.workingwithrails.com.
899
+
900
+
901
+ h3. Footnotes
902
+
903
+ fn1. Or, to quote "Wikipedia":http://en.wikipedia.org/wiki/Internationalization_and_localization: _"Internationalization is the process of designing a software application so that it can be adapted to various languages and regions without engineering changes. Localization is the process of adapting software for a specific region or language by adding locale-specific components and translating text."_
904
+
905
+ fn2. Other backends might allow or require to use other formats, e.g. a GetText backend might allow to read GetText files.
906
+
907
+ fn3. One of these reasons is that we don't want to imply any unnecessary load for applications that do not need any I18n capabilities, so we need to keep the I18n library as simple as possible for English. Another reason is that it is virtually impossible to implement a one-fits-all solution for all problems related to I18n for all existing languages. So a solution that allows us to exchange the entire implementation easily is appropriate anyway. This also makes it much easier to experiment with custom features and extensions.
908
+
909
+
910
+ h3. Changelog
911
+
912
+ "Lighthouse ticket":http://rails.lighthouseapp.com/projects/16213/tickets/23