providers/docker: Lazy load locales
This commit is contained in:
parent
8c8826fe09
commit
3325bce2d0
|
@ -1,6 +1,3 @@
|
|||
I18n.load_path << File.expand_path(File.dirname(__FILE__) + '/../../locales/en.yml')
|
||||
I18n.reload!
|
||||
|
||||
module VagrantPlugins
|
||||
module DockerProvider
|
||||
class Plugin < Vagrant.plugin("2")
|
||||
|
@ -8,11 +5,13 @@ module VagrantPlugins
|
|||
|
||||
provider(:docker, parallel: true) do
|
||||
require_relative 'provider'
|
||||
init!
|
||||
Provider
|
||||
end
|
||||
|
||||
config(:docker, :provider) do
|
||||
require_relative 'config'
|
||||
init!
|
||||
Config
|
||||
end
|
||||
|
||||
|
@ -20,6 +19,16 @@ module VagrantPlugins
|
|||
require File.expand_path("../synced_folder", __FILE__)
|
||||
SyncedFolder
|
||||
end
|
||||
|
||||
protected
|
||||
|
||||
def self.init!
|
||||
return if defined?(@_init)
|
||||
I18n.load_path << File.expand_path(
|
||||
"templates/locales/providers_docker.yml", Vagrant.source_root)
|
||||
I18n.reload!
|
||||
@_init = true
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue