Remove unneeded _html suffix in I18n keys
This suffix does the same thing as calling `.html_safe` on them. So we don't need to use it in texts that don't use HTML.
This commit is contained in:
@@ -32,9 +32,9 @@
|
||||
<p>
|
||||
<%= t("layouts.application.ie",
|
||||
chrome: link_to(
|
||||
t("layouts.application.chrome"), "https://www.google.com/chrome/browser/desktop/", title: t("shared.target_blank_html"), target: "_blank"),
|
||||
t("layouts.application.chrome"), "https://www.google.com/chrome/browser/desktop/", title: t("shared.target_blank"), target: "_blank"),
|
||||
firefox: link_to(
|
||||
t("layouts.application.firefox"), "https://www.mozilla.org/firefox", title: t("shared.target_blank_html"), target: "_blank")
|
||||
t("layouts.application.firefox"), "https://www.mozilla.org/firefox", title: t("shared.target_blank"), target: "_blank")
|
||||
).html_safe %>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user