diff options
author | José Valim <jose.valim@plataformatec.com.br> | 2013-08-01 03:35:07 -0700 |
---|---|---|
committer | José Valim <jose.valim@plataformatec.com.br> | 2013-08-01 03:35:07 -0700 |
commit | 872723f24e41c10e10d953caa03f1b5e4fc4032b (patch) | |
tree | b14fe27700a9235d5d913c976a4f85583b49593d | |
parent | 5704e3c41dbec0e22483ac1704cfe14e22be98ba (diff) | |
parent | ce757c4c7e21cdfbb78d788e453853019dcdf5d0 (diff) | |
download | rails-872723f24e41c10e10d953caa03f1b5e4fc4032b.tar.gz rails-872723f24e41c10e10d953caa03f1b5e4fc4032b.tar.bz2 rails-872723f24e41c10e10d953caa03f1b5e4fc4032b.zip |
Merge pull request #11701 from morgoth/link-fix-in-guides
Added missing closing bracket for markdown url in guides [ci skip]
-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 a20e82931d..046c7543f3 100644 --- a/guides/source/i18n.md +++ b/guides/source/i18n.md @@ -97,7 +97,7 @@ en: hello: "Hello world" ``` -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`](https://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`](https://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. +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`](https://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`](https://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. 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. |