]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/messages/outbox.html.erb
erblint: fix remaining single quoted strings
[rails.git] / app / views / messages / outbox.html.erb
index 199cfdc493548b17dbdf9a762ea2fca46e459dbe..f30434a9c0ae1b8ce89f19ad695de8eca104af7a 100644 (file)
@@ -3,18 +3,18 @@
 <% end %>
 
 <% content_for :heading do %>
-  <h2><%= raw(t '.my_inbox', :inbox_link => link_to(t('.inbox'), inbox_messages_path)) %>/<%= t'.outbox' %></h2>
+  <h2><%= raw(t ".my_inbox", :inbox_link => link_to(t(".inbox"), inbox_messages_path)) %>/<%= t ".outbox" %></h2>
 <% end %>
 
-<h4><%= t '.messages', :count => current_user.sent_messages.size %></h4>
+<h4><%= t ".messages", :count => current_user.sent_messages.size %></h4>
 
 <% if current_user.sent_messages.size > 0 %>
   <table class="messages">
     <thead>
       <tr>
-        <th><%= t '.to' %></th>
-        <th><%= t '.subject' %></th>
-        <th><%= t '.date' %></th>
+        <th><%= t ".to" %></th>
+        <th><%= t ".subject" %></th>
+        <th><%= t ".date" %></th>
         <th></th>
       </tr>
     </thead>
@@ -23,5 +23,5 @@
     </tbody>
   </table>
 <% else %>
-  <div class="messages"><%= raw(t '.no_sent_messages', :people_mapping_nearby_link => link_to(t('.people_mapping_nearby'), user_path(current_user))) %></div>
+  <div class="messages"><%= raw(t ".no_sent_messages", :people_mapping_nearby_link => link_to(t(".people_mapping_nearby"), user_path(current_user))) %></div>
 <% end %>