X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/fd6f00b069af5a7b87227ea4c3401dc461d7311a..35785067979a410f2a3f78927d50869ee398f349:/app/views/trace/_trace_header.rhtml diff --git a/app/views/trace/_trace_header.rhtml b/app/views/trace/_trace_header.rhtml index cab6f7124..5be7269c2 100644 --- a/app/views/trace/_trace_header.rhtml +++ b/app/views/trace/_trace_header.rhtml @@ -7,20 +7,16 @@

<%= rss_link_to :action => 'georss', :display_name => @display_name, :tag => @tag %> <% if @user.nil? or @display_name.nil? or @user.display_name != @display_name %> - | <%= link_to 'See just your traces, or upload a trace', :action => 'mine' %> + | <%= link_to t('trace.trace_header.see_just_your_traces'), :action => 'mine' %> <% end %> <% if @tag or @display_name %> - | <%= link_to 'See all traces', :controller => 'trace', :action => 'list' %> + | <%= link_to t('trace.trace_header.see_all_traces'), :controller => 'trace', :action => 'list' %> <% end %> <% if @tag and @user and @user.display_name == @display_name %> - | <%= link_to 'See all your traces', :controller => 'trace', :action => 'mine' %> + | <%= link_to t('trace.trace_header.see_your_traces'), :controller => 'trace', :action => 'mine' %> <% end %>

<% if @user and @user.traces.count(:conditions => ["inserted=?", false]) > 4 %> -

- You have <%= @user.traces.count(:conditions => ["inserted=?", false]) %> traces - waiting for upload. Please consider waiting for these to finish before - uploading any more, so as not to block the queue for other users. -

+

<%= t'trace.trace_header.traces_waiting', :count => @user.traces.count(:conditions => ["inserted=?", false]) %>

<% end %>