]> git.openstreetmap.org Git - rails.git/commitdiff
Move number of points to file details in gpx emails
authorAnton Khorev <tony29@yandex.ru>
Sat, 11 Jan 2025 12:53:36 +0000 (15:53 +0300)
committerAnton Khorev <tony29@yandex.ru>
Sat, 11 Jan 2025 13:03:59 +0000 (16:03 +0300)
app/views/user_mailer/_gpx_description.html.erb
app/views/user_mailer/_gpx_description.text.erb
app/views/user_mailer/gpx_success.html.erb
app/views/user_mailer/gpx_success.text.erb
config/locales/en.yml

index d4eefeb25f739236a76701a4900f20e5ba55c2f8..0ca88bb24e6298d2d2263ce012bc13f7c482f842 100644 (file)
     <dt><%= t ".tags" %>
     <dd><%= @trace_tags.map(&:tag).join(", ") %>
   <% end %>
+  <% if @possible_points %>
+    <dt><%= t ".total_points" %>
+    <dd><%= @possible_points %>
+  <% end %>
+  <% if @trace_points %>
+    <dt><%= t ".imported_points" %>
+    <dd><%= @trace_points %>
+  <% end %>
 </dl>
index f0ce97e61474d7051d6b16fde13444fb82a8323f..e828068b9f1cdb1bab5e83e01746a1e2ad97f10e 100644 (file)
 <%= 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 %>
index 3307e471b5ccc8f3cec1fcc92bf9ad06e0a675d6..803a85b4d1cb919dc4d6906fb2c64b7d47dfb33e 100644 (file)
@@ -1,6 +1,6 @@
 <p><%= t ".hi", :to_user => @to_user %></p>
 
-<p><%= t ".loaded_successfully", :trace_points => @trace_points, :count => @possible_points %>
+<p><%= t ".imported_successfully" %></p>
 
 <%= render :partial => "gpx_description" %>
 
index 7ce08cf0be5c82235ab173bb9c68621ec8669c66..6bb3e687928b36c617bf909668d95e45545efd9f 100644 (file)
@@ -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" %>
 
index 9e8502f4a2ca8db818894f75539d33e1ab6214ac..0f2329a8d18b241f5f24795ec4db00ae136a5f7d 100644 (file)
@@ -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"