]> git.openstreetmap.org Git - rails.git/commitdiff
Merge remote-tracking branch 'upstream/pull/5492'
authorTom Hughes <tom@compton.nu>
Sun, 12 Jan 2025 16:02:07 +0000 (16:02 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 12 Jan 2025 16:02:07 +0000 (16:02 +0000)
app/views/user_mailer/_gpx_details.html.erb [moved from app/views/user_mailer/_gpx_description.html.erb with 64% similarity]
app/views/user_mailer/_gpx_details.text.erb [moved from app/views/user_mailer/_gpx_description.text.erb with 62% similarity]
app/views/user_mailer/gpx_failure.html.erb
app/views/user_mailer/gpx_failure.text.erb
app/views/user_mailer/gpx_success.html.erb
app/views/user_mailer/gpx_success.text.erb
config/locales/en.yml

similarity index 64%
rename from app/views/user_mailer/_gpx_description.html.erb
rename to app/views/user_mailer/_gpx_details.html.erb
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>
similarity index 62%
rename from app/views/user_mailer/_gpx_description.text.erb
rename to app/views/user_mailer/_gpx_details.text.erb
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 5427339f9fcc38020d2bc211316d729deb35d387..2e5a283b84fa83e79f6d5c6843fad2aa4283df50 100644 (file)
@@ -2,7 +2,7 @@
 
 <p><%= t ".failed_to_import" %>
 
-<%= render :partial => "gpx_description" %>
+<%= render :partial => "gpx_details" %>
 
 <p><%= t ".verify" %></p>
 
index 860f6765906bb5c6cd2057bf625109479821dd5c..0c5edebdee92bcbb01ac929057da02a663800274 100644 (file)
@@ -2,7 +2,7 @@
 
 <%= t ".failed_to_import" %>
 
-<%= render :partial => "gpx_description" %>
+<%= render :partial => "gpx_details" %>
 
 <%= t ".verify" %>
 
index 3307e471b5ccc8f3cec1fcc92bf9ad06e0a675d6..b7f6beadc85db24edea224573aa618d1c646ead3 100644 (file)
@@ -1,8 +1,8 @@
 <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" %>
+<%= render :partial => "gpx_details" %>
 
 <p>
   <%= t ".all_your_traces_html", :url => link_to(@my_traces_url, @my_traces_url) %>
index 7ce08cf0be5c82235ab173bb9c68621ec8669c66..fa4fed7d6e68b6680b2ca54c0a5adc59220de8f0 100644 (file)
@@ -1,7 +1,7 @@
 <%= t ".hi", :to_user => @to_user %>
 
-<%= t ".loaded_successfully", :trace_points => @trace_points, :count => @possible_points %>
+<%= t ".imported_successfully" %>
 
-<%= render :partial => "gpx_description" %>
+<%= render :partial => "gpx_details" %>
 
 <%= t ".all_your_traces", :url => @my_traces_url %>
index 9e8502f4a2ca8db818894f75539d33e1ab6214ac..a62f4d34fc6b5ecf279701d8fb609a098bcd1056 100644 (file)
@@ -1668,12 +1668,14 @@ en:
       see_their_profile_html: "You can see their profile at %{userurl}."
       befriend_them: "You can also add them as a friend at %{befriendurl}."
       befriend_them_html: "You can also add them as a friend at %{befriendurl}."
-    gpx_description:
+    gpx_details:
       details: "Your file details:"
       filename: Filename
       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"