lib/eac_ruby_utils/patches/object/i18n_translate.rb



# frozen_string_literal: true

require 'eac_ruby_utils/patches/module/i18n_translate'

class Object
  def i18n_translate(entry_suffix, values = {})
    self.class.i18n_translate(entry_suffix, values)
  end

  def on_i18n_locale(locale)
    self.class.on_i18n_locale(locale)
  end
end