Module: Refinery::TranslationHelper
- Defined in:
- app/helpers/refinery/translation_helper.rb
Instance Method Summary collapse
-
#t(key, options = {}) ⇒ Object
Overrides Rails’ core I18n.t() function to produce a more helpful error message.
- #translated_field(record, field) ⇒ Object
Instance Method Details
#t(key, options = {}) ⇒ Object
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 '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 |
#translated_field(record, field) ⇒ Object
14 15 16 |
# File 'app/helpers/refinery/translation_helper.rb', line 14 def translated_field(record, field) Refinery::TranslatedFieldPresenter.new(record).call(field) end |