From a76556f3eba001a141a75b0701d883fd0a896c97 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 8 Feb 2013 15:17:50 -0800 Subject: [PATCH] Fix missing translation error in set_name --- plugins/providers/virtualbox/action/set_name.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/providers/virtualbox/action/set_name.rb b/plugins/providers/virtualbox/action/set_name.rb index 2ee966480..b655bb129 100644 --- a/plugins/providers/virtualbox/action/set_name.rb +++ b/plugins/providers/virtualbox/action/set_name.rb @@ -28,7 +28,7 @@ module VagrantPlugins @logger.info("Not setting the name because our name is already set.") else @logger.info("Setting the name of the VM: #{name}") - env[:ui].info(I18n.t("vagrant.actions.set_name.setting_name")) + env[:ui].info(I18n.t("vagrant.actions.vm.set_name.setting_name")) env[:machine].provider.driver.set_name(name) end