X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/6ce310b38c346c67a2d1af08142c36ba11d11ed5..908f9b5276602f21f7d492c9949c934dfb1e9365:/app/views/browse/_way.html.erb
diff --git a/app/views/browse/_way.html.erb b/app/views/browse/_way.html.erb
index c2287a1cc..4f331b5e9 100644
--- a/app/views/browse/_way.html.erb
+++ b/app/views/browse/_way.html.erb
@@ -18,14 +18,14 @@
<% end %>
<% unless way.way_nodes.empty? %>
-
<%= t'browse.way.nodes' %>
+ <%= t '.nodes' %>
<% way.way_nodes.each do |wn| %>
-
<%= link_to printable_name(wn.node), { :action => "node", :id => wn.node_id.to_s }, :class => link_class('node', wn.node), :title => link_title(wn.node), :rel => link_follow(wn.node) %>
<% related_ways = wn.node.ways.reject { |w| w.id == wn.way_id } %>
<% if related_ways.size > 0 then %>
- (<%= raw t 'browse.way.also_part_of', :count => related_ways.size, :related_ways => related_ways.map { |w| link_to(printable_name(w), { :action => "way", :id => w.id.to_s }, :class => link_class('way', w), :title => link_title(w) ) }.to_sentence %>)
+ (<%= raw t '.also_part_of', :count => related_ways.size, :related_ways => related_ways.map { |w| link_to(printable_name(w), { :action => "way", :id => w.id.to_s }, :class => link_class('way', w), :title => link_title(w) ) }.to_sentence %>)
<% end %>
<% end %>