Rails:如何使 Date strftime 了解默认区域设置?

发布于 2024-10-09 22:43:34 字数 310 浏览 4 评论 0原文

我在 environment.rb 中将默认语言环境设置为 de(德语)。

我还看到所有德语错误消息,因此服务器会选择区域设置。但是,当我尝试使用 strftime 打印日期时,如下所示:

some_date.strftime('%B, %y')

它以英语打印(January, 11),而不是预期的德语(Januar, 11)代码>)。

如何根据默认区域设置打印日期?

I have my default locale set in the environment.rb as de (German).

I also see all the error messages in German, so the locale is picked up by the server. But when I try to print date with strftime like following:

some_date.strftime('%B, %y')

It prints in English (January, 11), and not the expected German (Januar, 11).

How can I print the date according to the default locale?

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

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

发布评论

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

评论(3

吖咩 2024-10-16 22:43:34

使用 llocalize 的别名)方法代替原始 strftime,如下所示:

l(date, format: '%B %d, in the year %Y')

请参阅 此处了解更多信息。

您还可以定义“命名”格式,其中一些格式()已经预定义。

Use the l (alias for localize) method instead of raw strftime, like this:

l(date, format: '%B %d, in the year %Y')

See here for more information.

You can also define 'named' formats, a couple of them (short, long) are already predefined.

几度春秋 2024-10-16 22:43:34

你也可以让它更短:

l(some_date, :format => '%d %B %Y')

you can also make it shorter:

l(some_date, :format => '%d %B %Y')
望她远 2024-10-16 22:43:34

在 es.yml 中放置:

es:
  date:
    formats:
      default: "%d / %m / %Y"

在 index.html.erb 中放置:

<%= l somemodel.datefield %>

In es.yml put:

es:
  date:
    formats:
      default: "%d / %m / %Y"

In index.html.erb put:

<%= l somemodel.datefield %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文