Change output to not include the name
This commit is contained in:
parent
7e55e96bd9
commit
ca0af2866e
|
@ -88,7 +88,6 @@ module VagrantPlugins
|
|||
if data[:guestpath]
|
||||
# Guest path specified, so mount the folder to specified point
|
||||
@env[:ui].info(I18n.t("vagrant.actions.vm.share_folders.mounting_entry",
|
||||
:name => id,
|
||||
:guest_path => data[:guestpath]))
|
||||
|
||||
# Dup the data so we can pass it to the guest API
|
||||
|
@ -103,7 +102,7 @@ module VagrantPlugins
|
|||
else
|
||||
# If no guest path is specified, then automounting is disabled
|
||||
@env[:ui].info(I18n.t("vagrant.actions.vm.share_folders.nomount_entry",
|
||||
:name => id))
|
||||
:host_path => data[:hostpath]))
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -661,8 +661,8 @@ en:
|
|||
share_folders:
|
||||
creating: Creating shared folders metadata...
|
||||
mounting: Mounting shared folders...
|
||||
mounting_entry: "-- %{name}: %{guest_path}"
|
||||
nomount_entry: "-- %{name}: Automounting disabled."
|
||||
mounting_entry: "-- %{guest_path}"
|
||||
nomount_entry: "-- Automounting disabled: %{host_path}"
|
||||
suspend:
|
||||
suspending: Saving VM state and suspending execution...
|
||||
|
||||
|
|
Loading…
Reference in New Issue