templates/strings.yml in vagrant-0.4.2 vs templates/strings.yml in vagrant-0.5.0
- old
+ new
@@ -68,10 +68,16 @@
and then try to add it again.
:box_add_already_exists: |-
A box with the name '<%= box_name %>' already exists, please use another name or use `vagrant box remove <%= box_name %>`
:box_download_unknown_type: |-
Unknown URI type for box download.
+:box_download_http_socket_error: |-
+ An error occurred while trying to download the specified box. This most
+ often happens if there is no internet connection or the address is
+ invalid.
+
+ Box URL: <%= box_url %>
:box_file_exists: |-
The specified output file for packaging already exists. Please move
the file or modify the output filename parameter then try to package
again.
@@ -135,10 +141,21 @@
:environment_not_created: |-
The task you're trying to run requires that the vagrant environment
already be created, but unfortunately this vagrant still appears to
have no box! You can setup the environment by setting up your
<%= Vagrant::Environment::ROOTFILE_NAME %> and running `vagrant up`
+:nfs_host_required: |-
+ A host class is required for NFS shared folders. By default, these
+ are auto-detected, but can be overriden with `config.vagrant.host`.
+ There is currently not host class loaded.
+:nfs_not_supported: |-
+ The host class is reporting that NFS is not supported by this host,
+ or `nfsd` may not be installed. Please verify that `nfsd` is installed
+ on your machine, and retry.
+:nfs_no_host_network: |-
+ NFS shared folders requires that host only networking is enabled.
+ Please enable host only networking via `config.vm.network`.
:network_not_found: |-
The specified host network could not be found: <%= name %>.
If the name specification is removed, Vagrant will create a new
host only network for you. Alternatively, please create the
specified network manually.
@@ -238,22 +255,20 @@
Vagrant requires that you use at least VirtualBox version 3.2. Please install
a more recent version of VirtualBox to continue.
:virtualbox_not_detected: |-
Vagrant could not detect VirtualBox! Make sure VirtualBox is properly installed.
If VirtualBox is installed, it may be an incorrect version. Vagrant currently
- only supports VirtualBox 3.1.x. Please install the proper version to continue.
+ requires VirtualBox 3.2.x. Please install the proper version to continue.
:virtualbox_invalid_ose: |-
Vagrant has detected you're using an OSE ("Open Source Edition") of VirtualBox.
Vagrant currently doesn't support any of the OSE editions due to slight API
differences. Please download the regular package from virtualbox.org and install
to continue.
:vm_failed_to_boot: |-
Failed to connect to VM! Failed to boot?
:vm_base_not_found: |-
The specified base VM "<%= name %>" was not found.
-:vm_not_running: |-
- VM is not running! Nothing to shut down!
:vm_not_running_for_suspend: |-
The vagrant virtual environment you are trying to suspend must be running to be suspended.
:vm_not_suspended: |-
The vagrant virtual environment you are trying to resume is not in a suspended state.
:vm_port_auto_empty: |-
@@ -261,9 +276,14 @@
While this port was marked to be auto-corrected, the ports in the
auto-correction range are all also used.
VM: <%= vm_name %>
Forwarded port: <%= name %> (<%= options[:guestport] %> => <%= options[:hostport] %>)
+:vm_port_below_threshold: |-
+ The host port of all forwarded ports must be above 1024. VirtualBox
+ does not allow host ports to be below 1024. (Guest ports below 1024
+ are fine. For example: SSH on port 22 on the guest can be forwarded
+ to port 2222, but not 222).
:vm_port_collision: |-
Vagrant cannot forward the specified ports on this VM, since they
would collide with another VirtualBox virtual machine's forwarded
ports! The "<%= name %>" forwarded port (<%= hostport %>) is already in use on the host
machine.