diff options
Diffstat (limited to 'lib/i18n_fixes.rb')
-rw-r--r-- | lib/i18n_fixes.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/i18n_fixes.rb b/lib/i18n_fixes.rb index f75b969c4..6e684d44a 100644 --- a/lib/i18n_fixes.rb +++ b/lib/i18n_fixes.rb @@ -6,9 +6,7 @@ # so that we can interpolate our translation strings nicely def _(key, options = {}) - # Assume the result of doing any translation is html_safe. - # In other words, we trust the translators. - translation = FastGettext._(key).html_safe || key + translation = FastGettext._(key) || key gettext_interpolate(translation, options) end |