在 Rails 3 中运行时更改区域设置

发布于 2024-11-26 02:50:06 字数 270 浏览 0 评论 0原文

我正在开发一个 Rails 3 应用程序,它在我的区域设置文件夹中有不同的语言。这些文件是 en.yml、pu.yml、sp.yml。所有语言都必须转换为各种格式,我需要帮助让用户选择他们选择的任何语言,并使用类似

<%= link_to "English language", ...%> <%= link_to "spanish", ...%>

当用户选择语言时,该语言被设置为用户的首选语言,以便用户没有每次登录后继续选择语言。

I am working on a rails 3 app which has different languages in my locales folder. The files are en.yml, pu.yml, sp.yml. All languages have to be converted to their various format and I need help in making users chose any language of their choice with a link like

<%= link_to "English language", ...%> <%= link_to "spanish", ...%>

When a user choses a language, the language is set as the user's preferred language so that the user does not have to keep selecting a language after each login.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

天涯离梦残月幽梦 2024-12-03 02:50:06

只需将 locale 字符串属性添加到您的 User 模型中,并在您的 application_controller.rb 中创建一个 before_filter ,如下所示:

before_filter :set_locale
...
def set_locale
  I18n.locale = current_user.locale if current_user
end

更多信息请访问 Rails 国际化 (I18n) API

Just add a locale string attribute to your User model, and make a before_filter in your application_controller.rb like so:

before_filter :set_locale
...
def set_locale
  I18n.locale = current_user.locale if current_user
end

More infos at Rails Internationalization (I18n) API!

ˉ厌 2024-12-03 02:50:06

添加到 ream88 的答案:

<%= link_to "spanish", :controller => 'locale', :action => 'set', :id => 'es' %>

在 LocaleController (或任何其他控制器)中

def set
  locale = params[:id]
  raise 'unsupported locale' unless ['es', 'en', ... ].include?(locale)
  current_user.locale = locale
  current_user.save
  redirect_to :back
end

Adding to ream88's answer:

<%= link_to "spanish", :controller => 'locale', :action => 'set', :id => 'es' %>

In the LocaleController (or any other controller)

def set
  locale = params[:id]
  raise 'unsupported locale' unless ['es', 'en', ... ].include?(locale)
  current_user.locale = locale
  current_user.save
  redirect_to :back
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文