]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/changesets/index.html.erb
erblint: fix remaining single quoted strings
[rails.git] / app / views / changesets / index.html.erb
index cedd3e83aa4d4e75f1f32641e730122b0e6b2aad..1ce98301a3145bedd94c3b5ed0f1efaa1567d2f6 100644 (file)
@@ -1,17 +1,17 @@
 <% if @edits.present? %>
   <ol class="changesets">
-    <%= render :partial => 'changeset', :collection => @edits %>
+    <%= render :partial => "changeset", :collection => @edits %>
   </ol>
 <% if @edits.size == 20 -%>
   <div class="changeset_more">
-    <%= link_to t('.load_more'), url_for(@params.merge(:max_id => @edits.last.id - 1)), :class => "button load_more" %>
+    <%= link_to t(".load_more"), url_for(@params.merge(:max_id => @edits.last.id - 1)), :class => "button load_more" %>
     <div class="loader"><%= image_tag "searching.gif" %></div>
   </div>
 <% end -%>
 <% elsif params[:bbox] %>
-  <div class="inner22"><%= t(params[:max_id] ? '.no_more_area' : '.empty_area') %></div>
+  <div class="inner22"><%= t(params[:max_id] ? ".no_more_area" : ".empty_area") %></div>
 <% elsif params[:display_name] %>
-  <div class="inner22"><%= t(params[:max_id] ? '.no_more_user' : '.empty_user') %></div>
+  <div class="inner22"><%= t(params[:max_id] ? ".no_more_user" : ".empty_user") %></div>
 <% else %>
-  <div class="inner22"><%= t(params[:max_id] ? '.no_more' : '.empty') %></div>
+  <div class="inner22"><%= t(params[:max_id] ? ".no_more" : ".empty") %></div>
 <% end %>