Module: SymbolExtensionCustom

Defined in:
lib/bootstrap_leather/localization.rb

Overview

Enables :text_to_translate.l

Instance Method Summary collapse

Instance Method Details

#l_with_args(*args) ⇒ Object



28
29
30
# File 'lib/bootstrap_leather/localization.rb', line 28

def l_with_args(*args)
  l(*args).html_safe
end

#localize_with_debugging(*args) ⇒ Object Also known as: l



22
23
24
25
# File 'lib/bootstrap_leather/localization.rb', line 22

def localize_with_debugging(*args)
  localized_sym = I18n.translate(self, *args)
  localized_sym.is_a?(String) ? localized_sym.html_safe : localized_sym
end