class Money::LocaleBackend::I18n

def initialize

def initialize
  raise NotSupported, 'I18n not found' unless defined?(::I18n)
end

def lookup(key, _)

def lookup(key, _)
  i18n_key = KEY_MAP[key]
  ::I18n.t i18n_key, scope: 'number.currency.format', raise: true
rescue ::I18n::MissingTranslationData
  ::I18n.t i18n_key, scope: 'number.format', default: nil
end