X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ad9f0b624728259fbe17f7b631d3efef5a488d3b..100a7f8979023a2265c9fa58e6bed317b5937670:/app/views/user_mailer/_gpx_description.html.erb diff --git a/app/views/user_mailer/_gpx_description.html.erb b/app/views/user_mailer/_gpx_description.html.erb index 4fdf929ac..50fcd6960 100644 --- a/app/views/user_mailer/_gpx_description.html.erb +++ b/app/views/user_mailer/_gpx_description.html.erb @@ -1,12 +1,8 @@ -<%= t "user_mailer.gpx_notification.your_gpx_file" %> -<%= @trace_name %> -<%= t "user_mailer.gpx_notification.with_description" %> -<%= @trace_description %> -<% if @trace_tags.length>0 %> - <%= t "user_mailer.gpx_notification.and_the_tags" %> - <% @trace_tags.each do |tag| %> - <%= tag.tag.rstrip %> - <% end %> +<% trace_name = tag.strong(@trace_name) %> +<% trace_description = tag.em(@trace_description) %> +<% if @trace_tags.length > 0 %> + <% tags = @trace_tags.map(&:tag).join(" ") %> + <%= t ".description_with_tags_html", :trace_name => trace_name, :trace_description => trace_description, :tags => tags %> <% else %> - <%= t "user_mailer.gpx_notification.and_no_tags" %> + <%= t ".description_with_no_tags_html", :trace_name => trace_name, :trace_description => trace_description %> <% end %>