From cb6949e918eae18266c20e0830004bfe9477e2cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juanjo=20Baz=C3=A1n?= Date: Thu, 3 Sep 2015 23:48:25 +0200 Subject: [PATCH] disables english locale in production (temporary change until texts are ready) --- config/environments/production.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/environments/production.rb b/config/environments/production.rb index 941ac300e..5e4698336 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -78,4 +78,6 @@ Rails.application.configure do # Do not dump schema after migrations. config.active_record.dump_schema_after_migration = false + + config.i18n.available_locales = [:es] end