Module: Rosetta::TranslationHelper

Defined in:
app/helpers/rosetta/translation_helper.rb

Instance Method Summary collapse

Instance Method Details

#_(key, locale: Rosetta.locale) ⇒ Object



3
4
5
6
7
# File 'app/helpers/rosetta/translation_helper.rb', line 3

def _(key, locale: Rosetta.locale)
  return key if Rosetta.locale.default?

  Rosetta.translate(key, locale: locale) || key
end