diff options
author | Harshad Sabne <harshadsabne@users.noreply.github.com> | 2013-11-28 00:03:51 +0530 |
---|---|---|
committer | Harshad Sabne <harshadsabne@users.noreply.github.com> | 2013-11-28 00:03:51 +0530 |
commit | 427db6b9d2b35a72f3c017eb19a2e1e800b0a7a3 (patch) | |
tree | 3ae0faae151fc04ac4c497d950194e46e34ad377 /guides/source | |
parent | b58f3a641795e1777aa3e12a853c34ff512acfb9 (diff) | |
download | rails-427db6b9d2b35a72f3c017eb19a2e1e800b0a7a3.tar.gz rails-427db6b9d2b35a72f3c017eb19a2e1e800b0a7a3.tar.bz2 rails-427db6b9d2b35a72f3c017eb19a2e1e800b0a7a3.zip |
Fix on-site markdown rendering [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/i18n.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/i18n.md b/guides/source/i18n.md index fd77c1b36f..401b1fb729 100644 --- a/guides/source/i18n.md +++ b/guides/source/i18n.md @@ -902,7 +902,7 @@ Rails uses fixed strings and other localizations, such as format strings and oth #### Action View Helper Methods -* `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](https://github.com/rails/rails/blob/master/actionview/lib/action_view/locale/en.yml#L4) translations. +* `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](https://github.com/rails/rails/blob/master/actionview/lib/action_view/locale/en.yml#L4) translations. * `datetime_select` and `select_month` use translated month names for populating the resulting select tag. See [date.month_names](https://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](https://github.com/rails/rails/blob/master/activesupport/lib/active_support/locale/en.yml#L18) (unless you pass the option explicitly). All date selection helpers translate the prompt using the translations in the [datetime.prompts](https://github.com/rails/rails/blob/master/actionview/lib/action_view/locale/en.yml#L39) scope if applicable. |