module Hashie::Extensions::Dash::PropertyTranslation

def self.included(base)

def self.included(base)
  base.instance_variable_set(:@transforms, {})
  base.instance_variable_set(:@translations_hash, ::Hash.new { |hash, key| hash[key] = {} })
  base.extend(ClassMethods)
  base.send(:include, InstanceMethods)
end