Fix missing translation error in set_name

This commit is contained in:
Mitchell Hashimoto 2013-02-08 15:17:50 -08:00
parent 050cb482f3
commit a76556f3eb
1 changed files with 1 additions and 1 deletions

View File

@ -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