time_ago_in_words and localize

前端 未结 2 600
离开以前
离开以前 2020-12-30 07:08

Is it possible to use time_ago_in_words with i18n.locale?

how?

thanks

相关标签:
2条回答
  • 2020-12-30 07:25

    Avoid doing it on the server and try it on the client instead by using the jQuery timeago plugin. Timeago has support for i18n.

    This turns this:

    <abbr class="timeago" title="2008-07-17T09:24:17Z">July 17, 2008</abbr>
    

    Into this:

    <abbr class="timeago" title="July 17, 2008">about a year ago</abbr>
    

    And supports language overrides.

    0 讨论(0)
  • 2020-12-30 07:32

    If you are using Rails > 2.2, the helper is already locale-aware.

    Just download the right localization file from the locale repository and store it into your /config/locales path. Then set your locale preferences.

    0 讨论(0)
提交回复
热议问题