module Phlex::Translation

def translate(key, **options)

def translate(key, **options)
	key = "#{self.class.translation_path}#{key}" if key.start_with?(".")
	::I18n.translate(key, **options)
end