Merge remote-tracking branch 'upstream/pull/2271'
This commit is contained in:
commit
16c3c53302
17 changed files with 57 additions and 61 deletions
|
@ -49,6 +49,10 @@ module ApplicationHelper
|
|||
content_tag(:span, time_ago_in_words(date), :title => l(date, :format => :friendly))
|
||||
end
|
||||
|
||||
def friendly_date_ago(date)
|
||||
content_tag(:span, time_ago_in_words(date, :scope => :'datetime.distance_in_words_ago'), :title => l(date, :format => :friendly))
|
||||
end
|
||||
|
||||
def body_class
|
||||
if content_for? :body_class
|
||||
content_for :body_class
|
||||
|
|
|
@ -12,11 +12,11 @@ module ChangesetsHelper
|
|||
def changeset_details(changeset)
|
||||
if changeset.closed_at > Time.now
|
||||
action = :created
|
||||
time = distance_of_time_in_words_to_now(changeset.created_at)
|
||||
time = time_ago_in_words(changeset.created_at, :scope => :'datetime.distance_in_words_ago')
|
||||
title = l(changeset.created_at)
|
||||
else
|
||||
action = :closed
|
||||
time = distance_of_time_in_words_to_now(changeset.closed_at)
|
||||
time = time_ago_in_words(changeset.closed_at, :scope => :'datetime.distance_in_words_ago')
|
||||
title = "#{t('browse.created')}: #{l(changeset.created_at)} #{t('browse.closed')}: #{l(changeset.closed_at)}".html_safe
|
||||
end
|
||||
|
||||
|
|
|
@ -2,11 +2,11 @@ module NoteHelper
|
|||
def note_event(event, at, by)
|
||||
if by.nil?
|
||||
I18n.t("browse.note." + event + "_by_anonymous",
|
||||
:when => friendly_date(at),
|
||||
:when => friendly_date_ago(at),
|
||||
:exact_time => l(at)).html_safe
|
||||
else
|
||||
I18n.t("browse.note." + event + "_by",
|
||||
:when => friendly_date(at),
|
||||
:when => friendly_date_ago(at),
|
||||
:exact_time => l(at),
|
||||
:user => note_author(by)).html_safe
|
||||
end
|
||||
|
|
|
@ -19,7 +19,7 @@ module UserBlocksHelper
|
|||
# either because the user viewed the block (updated_at) or it expired or was
|
||||
# revoked (ends_at)
|
||||
last_time = [block.ends_at, block.updated_at].max
|
||||
I18n.t("user_blocks.helper.time_past", :time => friendly_date(last_time)).html_safe
|
||||
I18n.t("user_blocks.helper.time_past", :time => friendly_date_ago(last_time)).html_safe
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<div class="note-comment" style="margin-top: 5px">
|
||||
<% if comment.author.nil? -%>
|
||||
<div class="note-comment-description" style="font-size: smaller; color: #999999"><%= t ".#{comment.event}_at_html", :when => friendly_date(comment.created_at) %></div>
|
||||
<div class="note-comment-description" style="font-size: smaller; color: #999999"><%= t ".#{comment.event}_at_html", :when => friendly_date_ago(comment.created_at) %></div>
|
||||
<% else -%>
|
||||
<div class="note-comment-description" style="font-size: smaller; color: #999999"><%= t ".#{comment.event}_at_by_html", :when => friendly_date(comment.created_at), :user => note_author(comment.author, :only_path => false) %></div>
|
||||
<div class="note-comment-description" style="font-size: smaller; color: #999999"><%= t ".#{comment.event}_at_by_html", :when => friendly_date_ago(comment.created_at), :user => note_author(comment.author, :only_path => false) %></div>
|
||||
<% end -%>
|
||||
<div class="note-comment-text"><%= comment.body %></div>
|
||||
</div>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<div class="details">
|
||||
<%= t "browse.#{common_details.visible? ? :edited : :deleted}_by_html",
|
||||
:time => distance_of_time_in_words_to_now(common_details.timestamp),
|
||||
:time => time_ago_in_words(common_details.timestamp, :scope => :'datetime.distance_in_words_ago'),
|
||||
:user => changeset_user_link(common_details.changeset),
|
||||
:title => l(common_details.timestamp) %>
|
||||
</div>
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
<li id="c<%= comment.id %>">
|
||||
<small class='deemphasize'>
|
||||
<%= t(".commented_by",
|
||||
:when => friendly_date(comment.created_at),
|
||||
:when => friendly_date_ago(comment.created_at),
|
||||
:exact_time => l(comment.created_at),
|
||||
:user => link_to(h(comment.author.display_name), user_path(comment.author))).html_safe %>
|
||||
<% if current_user and current_user.moderator? %>
|
||||
|
@ -49,7 +49,7 @@
|
|||
<li id="c<%= comment.id %>">
|
||||
<small class='deemphasize'>
|
||||
<%= t(".hidden_commented_by",
|
||||
:when => friendly_date(comment.created_at),
|
||||
:when => friendly_date_ago(comment.created_at),
|
||||
:exact_time => l(comment.created_at),
|
||||
:user => link_to(h(comment.author.display_name), user_path(comment.author))).html_safe %>
|
||||
— <span class="action-button deemphasize" data-comment-id="<%= comment.id %>" data-method="POST" data-url="<%= changeset_comment_unhide_url(comment.id) %>"><%= t("javascripts.changesets.show.unhide_comment") %></span>
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
:author => comment.author.display_name,
|
||||
:changeset_id => comment.changeset.id.to_s %></h2>
|
||||
<div class="changeset-comment" style="margin-top: 5px">
|
||||
<div class="changeset-comment-description" style="font-size: smaller; color: #999999"><%= t ".commented_at_by_html", :when => friendly_date(comment.created_at), :user => comment.author.display_name %></div>
|
||||
<div class="changeset-comment-description" style="font-size: smaller; color: #999999"><%= t ".commented_at_by_html", :when => friendly_date_ago(comment.created_at), :user => comment.author.display_name %></div>
|
||||
<div class="changeset-comment-text"><%= comment.body %></div>
|
||||
</div>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<% cl = cycle("table0", "table1") %>
|
||||
<tr class="<%= cl %>">
|
||||
<td width="25%"><%= link_to comment.diary_entry.title, diary_entry_path(comment.diary_entry.user, comment.diary_entry) %></td>
|
||||
<td width="25%"><span title="<%= l comment.created_at, :format => :friendly %>"><%= t ".ago", :ago => time_ago_in_words(comment.created_at) %></span></td>
|
||||
<td width="25%"><span title="<%= l comment.created_at, :format => :friendly %>"><%= time_ago_in_words(comment.created_at, :scope => :'datetime.distance_in_words_ago') %></span></td>
|
||||
<td width="50%" class="richtext"><%= comment.body.to_html %></td>
|
||||
</tr>
|
||||
<% end -%>
|
||||
|
|
|
@ -38,10 +38,10 @@
|
|||
<td>
|
||||
<% if issue.user_updated %>
|
||||
<%= t ".last_updated_time_user_html", :user => link_to(issue.user_updated.display_name, user_path(issue.user_updated)),
|
||||
:time => distance_of_time_in_words_to_now(issue.updated_at),
|
||||
:time => time_ago_in_words(issue.updated_at, :scope => :'datetime.distance_in_words_ago'),
|
||||
:title => l(issue.updated_at) %>
|
||||
<% else %>
|
||||
<%= t ".last_updated_time_html", :time => distance_of_time_in_words_to_now(issue.updated_at),
|
||||
<%= t ".last_updated_time_html", :time => time_ago_in_words(issue.updated_at, :scope => :'datetime.distance_in_words_ago'),
|
||||
:title => l(issue.updated_at) %>
|
||||
<% end %>
|
||||
</td>
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
<td><%= link_to note.id, browse_note_path(note) %></td>
|
||||
<td><%= note_author(note.author) %></td>
|
||||
<td><%= note.comments.first.body.to_html %></td>
|
||||
<td><%= t ".ago_html", :when => friendly_date(note.created_at) %></td>
|
||||
<td><%= t ".ago_html", :when => friendly_date(note.updated_at) %></td>
|
||||
<td><%= friendly_date_ago(note.created_at) %></td>
|
||||
<td><%= friendly_date_ago(note.updated_at) %></td>
|
||||
</tr>
|
||||
<% end -%>
|
||||
</table>
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
<% if trace.inserted %>
|
||||
(<%= t ".count_points", :count => trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/, '\1,') %>)
|
||||
<% end %>
|
||||
... <%= t ".ago", :time_in_words_ago => time_ago_in_words(trace.timestamp) %></span>
|
||||
... <%= time_ago_in_words(trace.timestamp, :scope => :'datetime.distance_in_words_ago') %></span>
|
||||
<%= link_to_if trace.inserted?, t(".map"), { :controller => "site", :action => "index", :mlat => trace.latitude, :mlon => trace.longitude, :anchor => "map=14/#{trace.latitude}/#{trace.longitude}" }, { :title => t(".view_map") } %> /
|
||||
<%= link_to t(".edit"), { :controller => "site", :action => "edit", :gpx => trace.id }, { :title => t(".edit_map") } %>
|
||||
<span class="trace_<%= trace.visibility %>"><%= t("." + trace.visibility) %></span>
|
||||
|
|
|
@ -28,6 +28,6 @@
|
|||
|
||||
<% else %>
|
||||
<p>
|
||||
<%= t(".past", :time => distance_of_time_in_words_to_now(@user_block.ends_at)) %>
|
||||
<%= t(".past", :time => time_ago_in_words(@user_block.ends_at, :scope => :'datetime.distance_in_words_ago')) %>
|
||||
</p>
|
||||
<% end %>
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
</p>
|
||||
<% end %>
|
||||
|
||||
<p><b><%= t ".created" %></b>: <%= raw t ".ago", :time => friendly_date(@user_block.created_at) %></p>
|
||||
<p><b><%= t ".created" %></b>: <%= friendly_date_ago(@user_block.created_at) %></p>
|
||||
|
||||
<p><b><%= t ".status" %></b>: <%= block_status(@user_block) %></p>
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
<p>
|
||||
<% changeset = contact.changesets.first %>
|
||||
<% if changeset %>
|
||||
<%= t("users.show.latest edit", :ago => t("users.show.ago", :time_in_words_ago => time_ago_in_words(changeset.created_at))) %>
|
||||
<%= t("users.show.latest edit", :ago => time_ago_in_words(changeset.created_at, :scope => :'datetime.distance_in_words_ago')) %>
|
||||
<% comment = changeset.tags["comment"].to_s != "" ? changeset.tags["comment"] : t("browse.no_comment") %>
|
||||
"<%= link_to(comment,
|
||||
{ :controller => "browse", :action => "changeset", :id => changeset.id },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue