From f5255969a7a24929f3968c4119185db3d128d839 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=C3=A1n=20C=20McCord?= Date: Wed, 16 May 2018 18:34:20 -0400 Subject: [PATCH] disable chattery i18n --- app/init.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/init.go b/app/init.go index 639c426..7d2dbc1 100644 --- a/app/init.go +++ b/app/init.go @@ -17,11 +17,11 @@ func init() { revel.SessionFilter, // Restore and write the session cookie. revel.FlashFilter, // Restore and write the flash cookie. revel.ValidationFilter, // Restore kept validation errors and save new ones from cookie. - revel.I18nFilter, // Resolve the requested language - HeaderFilter, // Add some security based headers - revel.InterceptorFilter, // Run interceptors around the action. - revel.CompressFilter, // Compress the result. - revel.ActionInvoker, // Invoke the action. + //revel.I18nFilter, // Resolve the requested language + HeaderFilter, // Add some security based headers + revel.InterceptorFilter, // Run interceptors around the action. + revel.CompressFilter, // Compress the result. + revel.ActionInvoker, // Invoke the action. } // register startup functions with OnAppStart