From: Andy Allan Date: Wed, 15 Nov 2023 19:44:10 +0000 (+0000) Subject: Use friendly_date helpers for revoking user blocks X-Git-Tag: live~894^2~3 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/bc9c492c48cca7dc44a2906e9d63ab1a7ed6a42c Use friendly_date helpers for revoking user blocks --- diff --git a/app/views/user_blocks/revoke.html.erb b/app/views/user_blocks/revoke.html.erb index 9a86177fc..eb1cc4cbe 100644 --- a/app/views/user_blocks/revoke.html.erb +++ b/app/views/user_blocks/revoke.html.erb @@ -12,7 +12,7 @@ <% if @user_block.ends_at > Time.now %>

- <%= t(".time_future", :time => distance_of_time_in_words_to_now(@user_block.ends_at)) %> + <%= t(".time_future_html", :time => friendly_date(@user_block.ends_at)) %>

<%= bootstrap_form_for :revoke, :url => { :action => "revoke" } do |f| %> @@ -28,6 +28,6 @@ <% else %>

- <%= t(".past", :time => time_ago_in_words(@user_block.ends_at, :scope => :"datetime.distance_in_words_ago")) %> + <%= t(".past_html", :time => friendly_date_ago(@user_block.ends_at)) %>

<% end %> diff --git a/config/locales/en.yml b/config/locales/en.yml index 379e02f66..079f525a0 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -2844,8 +2844,8 @@ en: revoke: title: "Revoking block on %{block_on}" heading_html: "Revoking block on %{block_on} by %{block_by}" - time_future: "This block will end in %{time}." - past: "This block ended %{time} and cannot be revoked now." + time_future_html: "This block will end in %{time}." + past_html: "This block ended %{time} and cannot be revoked now." confirm: "Are you sure you wish to revoke this block?" revoke: "Revoke!" flash: "This block has been revoked."