diff --git a/plugins/providers/virtualbox/action/import.rb b/plugins/providers/virtualbox/action/import.rb index 704814b6170..4a74d808d5d 100644 --- a/plugins/providers/virtualbox/action/import.rb +++ b/plugins/providers/virtualbox/action/import.rb @@ -47,8 +47,9 @@ def clone(env) end def import(env) - env[:ui].info I18n.t("vagrant.actions.vm.import.importing", - name: env[:machine].box.name) + env[:ui].info I18n.t("vagrant.actions.vm.import.importing_with_version", + name: env[:machine].box.name, + version: env[:machine].box.version)) # Import the virtual machine ovf_file = env[:machine].box.directory.join("box.ovf").to_s diff --git a/templates/locales/en.yml b/templates/locales/en.yml index 800a1d04e6e..4ea9ccf44ba 100644 --- a/templates/locales/en.yml +++ b/templates/locales/en.yml @@ -2527,6 +2527,7 @@ en: setting: "Setting hostname..." import: importing: Importing base box '%{name}'... + importing_with_version: Importing base box '%{name}' (v%{version})... failure: |- The VM import failed! Try running `VBoxManage import` on the box file manually for more verbose error output.