Module: Refinery::TranslationHelper
- Defined in:
- core/app/helpers/refinery/translation_helper.rb
Instance Method Summary (collapse)
-
- (Object) t(key, options = {})
Overrides Rails' core I18n.t() function to produce a more helpful error message.
Instance Method Details
- (Object) t(key, options = {})
Overrides Rails' core I18n.t() function to produce a more helpful error message. The default one wreaks havoc with CSS and makes it hard to understand the problem.
6 7 8 9 10 11 12 |
# File 'core/app/helpers/refinery/translation_helper.rb', line 6 def t(key, = {}) if (val = super) =~ /class.+?translation_missing/ val = val.to_s.gsub(/<span[^>]*>/, 'i18n: ').gsub('</span>', '').gsub(', ', '.') end val end |