Skip to content
Snippets Groups Projects
Commit afc44043 authored by Matt Jankowski's avatar Matt Jankowski Committed by Claire
Browse files

Fix broken i18n in text welcome mailer tags area (#32571)

parent d0fb7939
No related branches found
No related tags found
No related merge requests found
......@@ -244,6 +244,11 @@ module ApplicationHelper
tag.input(type: :text, maxlength: 999, spellcheck: false, readonly: true, **options)
end
def recent_tag_usage(tag)
people = tag.history.aggregate(2.days.ago.to_date..Time.zone.today).accounts
I18n.t 'user_mailer.welcome.hashtags_recent_count', people: number_with_delimiter(people), count: people
end
private
def storage_host_var
......
......@@ -17,5 +17,4 @@
%span.email-mini-hashtag-img-span
= image_tag full_asset_url(account.avatar.url), alt: '', width: 16, height: 16
%td
- people = hashtag.history.aggregate(2.days.ago.to_date..Time.zone.today).accounts
%p= t('user_mailer.welcome.hashtags_recent_count', people: number_with_delimiter(people), count: people)
%p= recent_tag_usage(hashtag)
......@@ -53,7 +53,7 @@
<%= t('user_mailer.welcome.hashtags_subtitle') %>
<%- @tags.each do |tag| %>
* #<%= tag.display_name %> · <%= t('user_mailer.welcome.hashtags_recent_count', people: number_with_delimiter(tag.history.aggregate(2.days.ago.to_date..Time.zone.today).accounts)) %>
* #<%= tag.display_name %> · <%= recent_tag_usage(tag) %>
<%= tag_url(tag) %>
<%- end %>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment