mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-05-28 04:36:05 -04:00
providers/docker: Lazy load locales
This commit is contained in:
parent
8c8826fe09
commit
3325bce2d0
1 changed files with 12 additions and 3 deletions
|
|
@ -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 a new issue