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

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