diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2019-03-24 14:11:54 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-24 14:11:54 +0900 |
commit | 3cc4380f20e87a06c76e70aa84adaef632c66746 (patch) | |
tree | b4f78d0cbfb2172a705683a597425cae087ccbfc | |
parent | 122853dc54c669fcb2ee4d73f533cddf35f91131 (diff) | |
parent | 44316b60e2847a6bcefaf7b21a76abb7964f35e1 (diff) | |
download | rails-3cc4380f20e87a06c76e70aa84adaef632c66746.tar.gz rails-3cc4380f20e87a06c76e70aa84adaef632c66746.tar.bz2 rails-3cc4380f20e87a06c76e70aa84adaef632c66746.zip |
Merge pull request #35724 from soartec-lab/update_guide_raise_on_missing_translations_default
Add default `config.action_view.raise_on_missing_translations` [ci skip]
-rw-r--r-- | guides/source/configuring.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index a61ba5dc9f..0c9a30199a 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -581,7 +581,7 @@ Defaults to `'signed cookie'`. The default setting is `true`, which uses the partial at `/admin/articles/_article.erb`. Setting the value to `false` would render `/articles/_article.erb`, which is the same behavior as rendering from a non-namespaced controller such as `ArticlesController`. * `config.action_view.raise_on_missing_translations` determines whether an - error should be raised for missing translations. + error should be raised for missing translations. This defaults to `false`. * `config.action_view.automatically_disable_submit_tag` determines whether `submit_tag` should automatically disable on click, this defaults to `true`. |