Skip to content

Commit

Permalink
Fixed relative message paths for #3692
Browse files Browse the repository at this point in the history
  • Loading branch information
benwbrum committed Jul 6, 2023
1 parent 137d2b3 commit 5609a44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/export/facing_edition.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<% if @include_metadata %>
### Metadata
<p>
<%= t('.export_metadata', work: @work.title, collection: @work.collection.title, time: Time.now) %>
<%= t('export.facing_edition.export_metadata', work: @work.title, collection: @work.collection.title, time: Time.now) %>
</p>

<%
Expand Down Expand Up @@ -48,7 +48,7 @@
<% if @edition_type != 'text_only' && @include_contributors %>

\newpage
<%= t('.contributions_message') %>
<%= t('export.facing_edition.contributions_message') %>
<% contributor_ids = @work.deeds.group(:user_id).count.sort{|a,b| b[1] <=> a[1]}.map{|e| e[0]} %>
<% contributor_names = [] %>
Expand Down

0 comments on commit 5609a44

Please sign in to comment.