Actually set treshold values
This commit is contained in:
parent
d49e42c909
commit
63b4287ef3
@ -32,9 +32,15 @@ module BikeBike
|
|||||||
|
|
||||||
if Rails.env == 'development' || Rails.env == 'test'
|
if Rails.env == 'development' || Rails.env == 'test'
|
||||||
I18n.config.language_detection_method = I18n::Config::DETECT_LANGUAGE_FROM_URL_PARAM
|
I18n.config.language_detection_method = I18n::Config::DETECT_LANGUAGE_FROM_URL_PARAM
|
||||||
|
I18n.config.language_threshold = 1
|
||||||
else
|
else
|
||||||
# detect the language using the subdimain
|
# detect the language using the subdimain
|
||||||
I18n.config.language_detection_method = I18n::Config::DETECT_LANGUAGE_FROM_SUBDOMAIN
|
I18n.config.language_detection_method = I18n::Config::DETECT_LANGUAGE_FROM_SUBDOMAIN
|
||||||
|
if Rails.env == 'preview'
|
||||||
|
I18n.config.language_threshold = 1
|
||||||
|
else
|
||||||
|
I18n.config.language_threshold = 90
|
||||||
|
end
|
||||||
end
|
end
|
||||||
# if we are in our preview environment, set the locale regex to detect the preview- prefix
|
# if we are in our preview environment, set the locale regex to detect the preview- prefix
|
||||||
I18n.config.host_locale_regex = /^preview\-([a-z]{2})\.bikebike\.org$/ if Rails.env == 'preview'
|
I18n.config.host_locale_regex = /^preview\-([a-z]{2})\.bikebike\.org$/ if Rails.env == 'preview'
|
||||||
|
@ -56,6 +56,4 @@ BikeBike::Application.configure do
|
|||||||
#config.assets.precompile = false
|
#config.assets.precompile = false
|
||||||
Paypal.sandbox!
|
Paypal.sandbox!
|
||||||
#Paypal.sandbox = false
|
#Paypal.sandbox = false
|
||||||
|
|
||||||
config.i18n.language_threshold = 1
|
|
||||||
end
|
end
|
||||||
|
@ -99,6 +99,4 @@ BikeBike::Application.configure do
|
|||||||
}
|
}
|
||||||
config.action_mailer.raise_delivery_errors = true
|
config.action_mailer.raise_delivery_errors = true
|
||||||
config.action_mailer.perform_deliveries = true
|
config.action_mailer.perform_deliveries = true
|
||||||
|
|
||||||
config.i18n.language_threshold = 1
|
|
||||||
end
|
end
|
||||||
|
@ -100,6 +100,4 @@ BikeBike::Application.configure do
|
|||||||
}
|
}
|
||||||
config.action_mailer.raise_delivery_errors = true
|
config.action_mailer.raise_delivery_errors = true
|
||||||
config.action_mailer.perform_deliveries = true
|
config.action_mailer.perform_deliveries = true
|
||||||
|
|
||||||
config.i18n.language_threshold = 90
|
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user