Skip to content

Commit

Permalink
Raise on missing translations in dev and test
Browse files Browse the repository at this point in the history
  • Loading branch information
malcolmbaig committed Oct 4, 2023
1 parent 84e11a3 commit d4d441c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/environments/development.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
config.active_record.verbose_query_logs = true

# Raises error for missing translations.
# config.i18n.raise_on_missing_translations = true
config.i18n.raise_on_missing_translations = true

# Annotate rendered view with file names.
# config.action_view.annotate_rendered_view_with_filenames = true
Expand Down
2 changes: 1 addition & 1 deletion config/environments/test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
config.active_support.disallowed_deprecation_warnings = []

# Raises error for missing translations.
# config.i18n.raise_on_missing_translations = true
config.i18n.raise_on_missing_translations = true

# Annotate rendered view with file names.
# config.action_view.annotate_rendered_view_with_filenames = true
Expand Down

0 comments on commit d4d441c

Please sign in to comment.