module I18n::Base

def translate!(key, **options)

this option, if no translation is found, it will raise I18n::MissingTranslationData
Wrapper for translate that adds :raise => true. With
def translate!(key, **options)
  translate(key, **options, raise: true)
end