Skip to content

Commit

Permalink
Localise dates and times in notes popups
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhughes committed Feb 2, 2013
1 parent db5c58e commit e957aaa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 3 additions & 2 deletions app/assets/javascripts/templates/notes/show.jst.ejs
Expand Up @@ -5,11 +5,12 @@
<small class="deemphasize">
<% if (comment.user) { %>
<%= I18n.t('javascripts.notes.show.' + comment.action + '_by', {
user: comment.user, user_url: comment.user_url, time: comment.date
user: comment.user, user_url: comment.user_url,
time: I18n.l("time.formats.long", comment.date)
}) %>
<% } else { %>
<%- I18n.t('javascripts.notes.show.' + comment.action + '_by_anonymous', {
time: comment.date
time: I18n.l("time.formats.long", comment.date)
}) %>
<% } %>
</small>
Expand Down
2 changes: 2 additions & 0 deletions config/i18n-js.yml
Expand Up @@ -23,6 +23,8 @@
translations:
- file: "app/assets/javascripts/i18n/translations.js"
only:
- "*.date"
- "*.time"
- "*.browse.start_rjs.*"
- "*.export.start_rjs.*"
- "*.javascripts.*"
Expand Down
2 changes: 1 addition & 1 deletion config/locales/en.yml
Expand Up @@ -2026,7 +2026,7 @@ en:
commented_by: "comment from <a href='%{user_url}'>%{user}</a> at %{time}"
commented_by_anonymous: "comment from anonymous at %{time}"
closed_by: "resolved by <a href='%{user_url}'>%{user}</a> at %{time}"
closeded_by_anonymous: "resolved by anonymous at %{time}"
closed_by_anonymous: "resolved by anonymous at %{time}"
reopened_by: "reactivated by <a href='%{user_url}'>%{user}</a> at %{time}"
reopened_by_anonymous: "reactivated by anonymous at %{time}"
close: Close
Expand Down

0 comments on commit e957aaa

Please sign in to comment.