我正在使用地理编码器来检测国家用户。
在我的应用程序上,我需要检测国家用户。我做了类似的东西:
c = request.location.country_code
case c
when 'US'
I18n.locale = :en
when 'ES'
I18n.locale = :es
else
locale ||= I18n.default_locale
end
我的问题是在哪里可以找到country_code
我的其他语言的列表?