From be8d76926cb5e1cc5f9d3f81bda80e716f75a59d Mon Sep 17 00:00:00 2001 From: Anton Khorev Date: Sat, 11 Jan 2025 15:53:36 +0300 Subject: [PATCH] Move number of points to file details in gpx emails --- app/views/user_mailer/_gpx_description.html.erb | 8 ++++++++ app/views/user_mailer/_gpx_description.text.erb | 8 ++++++++ app/views/user_mailer/gpx_success.html.erb | 2 +- app/views/user_mailer/gpx_success.text.erb | 2 +- config/locales/en.yml | 6 +++--- 5 files changed, 21 insertions(+), 5 deletions(-) diff --git a/app/views/user_mailer/_gpx_description.html.erb b/app/views/user_mailer/_gpx_description.html.erb index d4eefeb25..0ca88bb24 100644 --- a/app/views/user_mailer/_gpx_description.html.erb +++ b/app/views/user_mailer/_gpx_description.html.erb @@ -13,4 +13,12 @@
<%= t ".tags" %>
<%= @trace_tags.map(&:tag).join(", ") %> <% end %> + <% if @possible_points %> +
<%= t ".total_points" %> +
<%= @possible_points %> + <% end %> + <% if @trace_points %> +
<%= t ".imported_points" %> +
<%= @trace_points %> + <% end %> diff --git a/app/views/user_mailer/_gpx_description.text.erb b/app/views/user_mailer/_gpx_description.text.erb index f0ce97e61..e828068b9 100644 --- a/app/views/user_mailer/_gpx_description.text.erb +++ b/app/views/user_mailer/_gpx_description.text.erb @@ -12,3 +12,11 @@ <%= t ".tags" %> <%= @trace_tags.map(&:tag).join(", ") %> <% end %> +<% if @possible_points %> +<%= t ".total_points" %> + <%= @possible_points %> +<% end %> +<% if @trace_points %> +<%= t ".imported_points" %> + <%= @trace_points %> +<% end %> diff --git a/app/views/user_mailer/gpx_success.html.erb b/app/views/user_mailer/gpx_success.html.erb index 3307e471b..803a85b4d 100644 --- a/app/views/user_mailer/gpx_success.html.erb +++ b/app/views/user_mailer/gpx_success.html.erb @@ -1,6 +1,6 @@

<%= t ".hi", :to_user => @to_user %>

-

<%= t ".loaded_successfully", :trace_points => @trace_points, :count => @possible_points %> +

<%= t ".imported_successfully" %>

<%= render :partial => "gpx_description" %> diff --git a/app/views/user_mailer/gpx_success.text.erb b/app/views/user_mailer/gpx_success.text.erb index 7ce08cf0b..6bb3e6879 100644 --- a/app/views/user_mailer/gpx_success.text.erb +++ b/app/views/user_mailer/gpx_success.text.erb @@ -1,6 +1,6 @@ <%= t ".hi", :to_user => @to_user %> -<%= t ".loaded_successfully", :trace_points => @trace_points, :count => @possible_points %> +<%= t ".imported_successfully" %> <%= render :partial => "gpx_description" %> diff --git a/config/locales/en.yml b/config/locales/en.yml index 9e8502f4a..0f2329a8d 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -1674,6 +1674,8 @@ en: url: URL description: Description tags: Tags + total_points: Total number of points + imported_points: Number of imported points gpx_failure: hi: "Hi %{to_user}," failed_to_import: "It looks like your file failed to be imported as a GPS trace." @@ -1684,9 +1686,7 @@ en: subject: "[OpenStreetMap] GPX Import failure" gpx_success: hi: "Hi %{to_user}," - loaded_successfully: - one: "It looks like your file loaded successfully with %{trace_points} out of a possible %{count} point." - other: "It looks like your file loaded successfully with %{trace_points} out of a possible %{count} points." + imported_successfully: "It looks like your file was imported successfully as a GPS trace." all_your_traces: "All your successfully uploaded GPX traces can be found at %{url}" all_your_traces_html: "All your successfully uploaded GPX traces can be found at %{url}." subject: "[OpenStreetMap] GPX Import success" -- 2.39.5