X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/20a861392e1ee7970da5d95b546aa8551faaf27b..e80571c22c91061c3fc5f3b6fc164522d05031cb:/app/views/user_blocks/revoke.html.erb diff --git a/app/views/user_blocks/revoke.html.erb b/app/views/user_blocks/revoke.html.erb index 9f142c802..0b6e21788 100644 --- a/app/views/user_blocks/revoke.html.erb +++ b/app/views/user_blocks/revoke.html.erb @@ -1,32 +1,33 @@ -<% @title = t('user_block.revoke.title', - :block_on => h(@user_block.user.display_name), - :block_by => h(@user_block.creator.display_name)) %> -
- <%= t('user_block.revoke.time_future', :time => distance_of_time_in_words_to_now(@user_block.ends_at)) %> + <%= t(".time_future", :time => distance_of_time_in_words_to_now(@user_block.ends_at)) %>
-<% form_for :revoke, :url => { :action => "revoke" } do |f| %> +<%= form_for :revoke, :url => { :action => "revoke" }, :html => { :class => "standard-form" } do |f| %> <%= f.error_messages %> -- <%= check_box_tag 'confirm', 'yes' %> - <%= label_tag 'confirm', t('user_block.revoke.confirm') %> +
+ <%= check_box_tag "confirm", "yes" %> + <%= label_tag "confirm", t(".confirm") %>
- <%= submit_tag t('user_block.revoke.revoke') %> + <%= submit_tag t(".revoke") %>
<% end %> <% else %>- <%= t('user_block.revoke.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')) %>
<% end %>