openstreetmap-website/app/views/notifier/_gpx_description.rhtml
Ævar Arnfjörð Bjarmason 938cdd8503 Made GPX notification E-Mails translatable
The multiline 'notifier.gpx_notification.success.loaded_successfully'
message is how one should properly do multiline messages to be
embedded into E-Mail. It wraps at 80 columns (if translated correctly)
and isn't as inhererently limited as splitting the E-Mail into one
message per-line like the other notification messages do it.
2009-06-07 15:50:30 +00:00

14 lines
412 B
Text

<%= t'notifier.gpx_notification.greeting' %>
<%= t'notifier.gpx_notification.your_gpx_file' %>
<%= @trace_name %>
<%= t'notifier.gpx_notification.with_description' %>
<%= @trace_description %>
<% if @trace_tags.length>0 %>
<%= t'notifier.gpx_notification.and_the_tags' %>
<% @trace_tags.each do |tag| %>
<%= tag.tag.rstrip %><% end %><% else %>
<%= t'notifier.gpx_notification.and_no_tags' %><% end %>