Fix custom I18n load path

This commit is contained in:
Fabio Rehm 2013-04-05 02:08:07 -03:00
parent 71057d0e0f
commit 4ebc691bda

View file

@ -12,7 +12,7 @@ module Vagrant
provider(:lxc) do
require File.expand_path("../provider", __FILE__)
I18n.load_path << File.expand_path(File.dirname(__FILE__) + '/../locales/en.yml')
I18n.load_path << File.expand_path(File.dirname(__FILE__) + '/../../locales/en.yml')
I18n.reload!
Provider