PageRenderTime 57ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 0ms

/templates/locales/en.yml

https://github.com/lucaspiller/vagrant
YAML | 990 lines | 910 code | 68 blank | 12 comment | 0 complexity | 0ef744e714c1c0bcc95851b7a245f977 MD5 | raw file
Possible License(s): MIT
  1. en:
  2. vagrant:
  3. general:
  4. config_upgrade_messages: |-
  5. There were warnings and/or errors while loading your Vagrantfile.
  6. Your Vagrantfile was written for an earlier version of Vagrant,
  7. and while Vagrant does the best it can to remain backwards
  8. compatible, there are some cases where things have changed
  9. significantly enough to warrant a message. These messages are
  10. shown below.
  11. %{output}
  12. moving_home_dir: "Moving old Vagrant home directory to new location: %{directory}"
  13. home_dir_migration_failed: |-
  14. Both an old and new Vagrant home directory exist. Only the new one will
  15. be used. Please merge the old directory into the new directory if you'd
  16. like to use the old data as well.
  17. Old: %{old}
  18. New: %{new}
  19. not_in_installer: |-
  20. You appear to be running Vagrant outside of the official installers.
  21. Note that the installers are what ensure that Vagrant has all required
  22. dependencies, and Vagrant assumes that these dependencies exist. By
  23. running outside of the installer environment, Vagrant may not function
  24. properly. To remove this warning, install Vagrant using one of the
  25. official packages from vagrantup.com.
  26. upgraded_v1_dotfile: |-
  27. A Vagrant 1.0.x state file was found for this environment. Vagrant has
  28. gone ahead and auto-upgraded this to the latest format. Everything
  29. should continue working as normal. Beware, however, that older versions
  30. of Vagrant may no longer be used with this environment.
  31. However, in case anything went wrong, the old dotfile was backed up
  32. to the location below. If everything is okay, it is safe to remove
  33. this backup.
  34. Backup: %{backup_path}
  35. #-------------------------------------------------------------------------------
  36. # Translations for exception classes
  37. #-------------------------------------------------------------------------------
  38. errors:
  39. active_machine_with_different_provider: |-
  40. An active machine was found with a different provider. Vagrant
  41. currently allows each machine to be brought up with only a single
  42. provider at a time. A future version will remove this limitation.
  43. Until then, please destroy the existing machine to up with a new
  44. provider.
  45. Machine name: %{name}
  46. Active provider: %{active_provider}
  47. Requested provider: %{requested_provider}
  48. base_vm_not_found: The base VM with the name '%{name}' was not found.
  49. box_not_found: Box '%{name}' could not be found.
  50. box_provider_doesnt_match: |-
  51. The box you attempted to add doesn't match the provider you specified.
  52. Provider expected: %{expected}
  53. Provider of box: %{actual}
  54. box_upgrade_required: |-
  55. The box '%{name}' is still stored on disk in the Vagrant 1.0.x
  56. format. This box must be upgraded in order to work properly with
  57. this version of Vagrant.
  58. cli_invalid_options: |-
  59. An invalid option was specified. The help for this command
  60. is available below.
  61. %{help}
  62. cli_invalid_usage: |-
  63. This command was not invoked properly. The help for this command is
  64. available below.
  65. %{help}
  66. config_invalid: |-
  67. There are errors in the configuration of this machine. Please fix
  68. the following errors and try again:
  69. %{errors}
  70. config_upgrade_errors: |-
  71. Because there were errors upgrading your Vagrantfiles, Vagrant
  72. can no longer continue. Please fix the errors above and try again.
  73. copy_private_key_failed: |-
  74. Vagrant failed to copy the default insecure private key into your
  75. home directory. This is usually caused by a permissions error.
  76. Please make sure the permissions of the source is readable and
  77. the destination is writable.
  78. Source: %{source}
  79. Destination: %{destination}
  80. destroy_requires_force: |-
  81. Destroy doesn't have a TTY to ask for confirmation. Please pass the
  82. `--force` flag to force a destroy, otherwise attach a TTY so that
  83. the destroy can be confirmed.
  84. dotfile_is_directory: |-
  85. The local file Vagrant uses to store data ".vagrant" already exists
  86. and is a directory! If you are in your home directory, then please run
  87. this command in another directory. If you aren't in a home directory,
  88. then please rename ".vagrant" to something else, or configure Vagrant
  89. to use another filename by modifying `config.vagrant.dotfile_name`.
  90. dotfile_upgrade_json_error: |-
  91. A Vagrant 1.0.x local state file was found. Vagrant is able to upgrade
  92. this to the latest format automatically, however various checks are
  93. put in place to verify data isn't incorrectly deleted. In this case,
  94. the old state file was not valid JSON. Vagrant 1.0.x would store state
  95. as valid JSON, meaning that this file was probably tampered with or
  96. manually edited. Vagrant's auto-upgrade process cannot continue in this
  97. case.
  98. In most cases, this can be resolve by simply removing the state file.
  99. Note however though that if Vagrant was previously managing virtual
  100. machines, they may be left in an "orphan" state. That is, if they are
  101. running or exist, they'll have to manually be removed.
  102. If you're unsure what to do, ask the Vagrant mailing list or contact
  103. support.
  104. State file path: %{state_file}
  105. environment_locked: |-
  106. An instance of Vagrant is already running. Only one instance of Vagrant
  107. may run at any given time to avoid problems with VirtualBox inconsistencies
  108. occurring. Please wait for the other instance of Vagrant to end and then
  109. try again.
  110. gem_command_in_bundler: |-
  111. You cannot run the `vagrant plugin` command while in a bundler environment.
  112. This should generally never happen unless Vagrant is installed outside
  113. of the official installers or another gem is wrongly attempting to
  114. use Vagrant internals directly. Please properly install Vagrant to
  115. fix this. If this error persists, please contact support.
  116. guest:
  117. invalid_class: |-
  118. The specified guest class does not inherit from a proper guest
  119. component class. The guest class must inherit from this.
  120. The specified guest class was: %{guest}
  121. unknown_type: |-
  122. The specified guest type is unknown: %{guest}. Please change this
  123. to a proper value.
  124. unspecified: |-
  125. A VM guest type must be specified! This is done via the `config.vm.guest`
  126. configuration value. Please read the documentation online for more information.
  127. home_dir_not_accessible: |-
  128. The home directory you specified is not accessible. The home
  129. directory that Vagrant uses must be both readable and writable.
  130. You specified: %{home_path}
  131. interrupted: |-
  132. Vagrant exited after cleanup due to external interrupt.
  133. local_data_dir_not_accessible: |-
  134. The directory Vagrant will use to store local environment-specific
  135. state is not accessible. The directory specified as the local data
  136. directory must be both readable and writable for the user that is
  137. running Vagrant.
  138. Local data directory: %{local_data_path}
  139. machine_guest_not_ready: |-
  140. Guest-specific operations were attempted on a machine that is not
  141. ready for guest communication. This should not happen and a bug
  142. should be reported.
  143. machine_not_found: |-
  144. The machine with the name '%{name}' was not found configured for
  145. this Vagrant environment.
  146. machine_state_invalid: |-
  147. An internal error has occurred! The provider of the machine you're
  148. trying to work with reported an invalid state. This is a bug with
  149. the provider you're using, and not with Vagrant itself or with
  150. any configuration you may have done. Please report this bug to
  151. the proper location.
  152. multi_vm_required: |-
  153. A multi-vm environment is required for name specification to this command.
  154. multi_vm_target_required: |-
  155. This command requires a specific VM name to target in a multi-VM environment.
  156. nfs_no_guest_ip: |-
  157. No guest IP was given to the Vagrant core NFS helper. This is an
  158. internal error that should be reported as a bug.
  159. nfs_no_host_ip: |-
  160. No host IP was given to the Vagrant core NFS helper. This is
  161. an internal error that should be reported as a bug.
  162. no_env: |-
  163. A Vagrant environment is required to run this command. Run `vagrant init`
  164. to set one up in this directory, or change to a directory with a
  165. Vagrantfile and try again.
  166. plugin_gem_error: |-
  167. An error occurred within RubyGems, the underlying system used to
  168. manage Vagrant plugins. The output of the errors are shown below:
  169. %{output}
  170. plugin_install_bad_entry_point: |-
  171. Attempting to load the plugin '%{name}' failed, because
  172. the entry point doesn't exist. The entry point attempted was
  173. '%{entry_point}'. If this is not correct, please manually
  174. specify an `--entry-point` when installing the plugin.
  175. plugin_install_license_not_found: |-
  176. The license file to install could not be found. Please verify
  177. the path you gave is correct. The path to the license file given
  178. was: '%{path}'
  179. plugin_install_not_found: |-
  180. The plugin '%{name}' could not be found in local or remote
  181. repositories. Please check the name of the plugin and try again.
  182. plugin_load_error: |-
  183. The plugin "%{plugin}" could not be found. Please make sure that it is
  184. properly installed via `vagrant plugin`. Note that plugins made for
  185. Vagrant 1.0.x are not compatible with 1.1+ and this error will likely
  186. continue to show when you use `plugin install` with a 1.0.x plugin.
  187. plugin_load_failed: |-
  188. Failed to load the "%{plugin}" plugin. View logs for more details.
  189. plugin_load_failed_with_output: |-
  190. Failed to load the "%{plugin}" plugin. The output from loading
  191. the plugin is shown below. View the logs for complete details.
  192. stdout: %{stdout}
  193. stderr: %{stderr}
  194. plugin_not_found: |-
  195. The plugin '%{name}' could not be found. Please install this plugin
  196. prior to attempting to do anything with it.
  197. port_collision_resume: |-
  198. This VM cannot be resumed, because the forwarded ports would collide
  199. with a running program (it could be another virtual machine). Normally,
  200. Vagrant will attempt to fix this for you but VirtualBox only allows
  201. forwarded ports to change if the VM is powered off. Therefore, please
  202. reload your VM or stop the other program to continue.
  203. provider_not_found: |-
  204. The provider '%{provider}' could not be found, but was requested to
  205. back the machine '%{machine}'. Please use a provider that exists.
  206. scp_permission_denied: |-
  207. Failed to upload a file to the guest VM via SCP due to a permissions
  208. error. This is normally because the user running Vagrant doesn't have
  209. read permission on the file. Please set proper permissions on the file:
  210. %{path}
  211. scp_unavailable: |-
  212. SSH server on the guest doesn't support SCP. Please install the necessary
  213. software to enable SCP on your guest operating system.
  214. shared_folder_create_failed: |-
  215. Failed to create the following shared folder on the host system. This is
  216. usually because Vagrant does not have sufficient permissions to create
  217. the folder.
  218. %{path}
  219. Please create the folder manually or specify another path to share.
  220. ssh_authentication_failed: |-
  221. SSH authentication failed! This is typically caused by the public/private
  222. keypair for the SSH user not being properly set on the guest VM. Please
  223. verify that the guest VM is setup with the proper public key, and that
  224. the private key path for Vagrant is setup properly as well.
  225. ssh_bad_exit_status: |-
  226. The following SSH command responded with a non-zero exit status.
  227. Vagrant assumes that this means the command failed!
  228. %{command}
  229. ssh_connection_refused: |-
  230. SSH connection was refused! This usually happens if the VM failed to
  231. boot properly. Some steps to try to fix this: First, try reloading your
  232. VM with `vagrant reload`, since a simple restart sometimes fixes things.
  233. If that doesn't work, destroy your VM and recreate it with a `vagrant destroy`
  234. followed by a `vagrant up`. If that doesn't work, contact a Vagrant
  235. maintainer (support channels listed on the website) for more assistance.
  236. ssh_connection_reset: |-
  237. SSH connection was reset! This usually happens when the machine is
  238. taking too long to reboot. First, try reloading your machine with
  239. `vagrant reload`, since a simple restart sometimes fixes things.
  240. If that doesn't work, destroy your machine and recreate it with
  241. a `vagrant destroy` followed by a `1vagrant up`. If that doesn't work,
  242. contact support.
  243. ssh_connection_timeout: |-
  244. Vagrant timed out while attempting to connect via SSH. This usually
  245. means that the VM booted, but there are issues with the SSH configuration
  246. or network connectivity issues. Please try to `vagrant reload` or
  247. `vagrant up` again.
  248. ssh_disconnected: |-
  249. The SSH connection was unexpectedly closed by the remote end. This
  250. usually indicates that SSH within the guest machine was unable to
  251. properly start up. Please boot the VM in GUI mode to check whether
  252. it is booting properly.
  253. ssh_host_down: |-
  254. While attempting to connect with SSH, a "host is down" (EHOSTDOWN)
  255. error was received. Please verify your SSH settings are correct
  256. and try again.
  257. ssh_key_bad_permissions: |-
  258. The private key to connect to this box via SSH has invalid permissions
  259. set on it. The permissions of the private key should be set to 0600, otherwise SSH will
  260. ignore the key. Vagrant tried to do this automatically for you but failed. Please set the
  261. permissions on the following file to 0600 and then try running this command again:
  262. %{key_path}
  263. ssh_key_type_not_supported: |-
  264. The private key you're attempting to use with this Vagrant box uses
  265. an unsupported encryption type. The SSH library Vagrant uses does not support
  266. this key type. Please use `ssh-rsa` or `ssh-dss` instead. Note that
  267. sometimes keys in your ssh-agent can interfere with this as well,
  268. so verify the keys are valid there in addition to standard
  269. file paths.
  270. ssh_not_ready: |-
  271. The provider for this Vagrant-managed machine is reporting that it
  272. is not yet ready for SSH. Depending on your provider this can carry
  273. different meanings. Make sure your machine is created and running and
  274. try again. Additionally, check the output of `vagrant status` to verify
  275. that the machine is in the state that you expect. If you continue to
  276. get this error message, please view the documentation for the provider
  277. you're using.
  278. ssh_port_not_detected: |-
  279. Vagrant couldn't determine the SSH port for your VM! Vagrant attempts to
  280. automatically find a forwarded port that matches your `config.ssh.guest_port`
  281. (default: 22) value and uses this for SSH. Alternatively, if `config.ssh.port`
  282. is set, it will use this.
  283. However, in this case Vagrant was unable to find a forwarded port that matches
  284. the guest port and `config.ssh.port` is not set!
  285. Please make sure that you have a forwarded port that goes to the configured
  286. guest port value, or specify an explicit SSH port with `config.ssh.port`.
  287. ssh_unavailable: "`ssh` binary could not be found. Is an SSH client installed?"
  288. ssh_unavailable_windows: |-
  289. `ssh` executable not found in any directories in the %PATH% variable. Is an
  290. SSH client installed? Try installing Cygwin, MinGW or Git, all of which
  291. contain an SSH client. Or use the PuTTY SSH client with the following
  292. authentication information shown below:
  293. Host: %{host}
  294. Port: %{port}
  295. Username: %{username}
  296. Private key: %{key_path}
  297. ui_expects_tty: |-
  298. Vagrant is attempting to interface with the UI in a way that requires
  299. a TTY. Most actions in Vagrant that require a TTY have configuration
  300. switches to disable this requirement. Please do that or run Vagrant
  301. with TTY.
  302. unimplemented_provider_action: |-
  303. Vagrant attempted to call the action '%{action}' on the provider
  304. '%{provider}', but this provider doesn't support this action. This
  305. is probably a bug in either the provider or the plugin calling this
  306. action, and should be reported.
  307. vagrantfile_exists: |-
  308. `Vagrantfile` already exists in this directory. Remove it before
  309. running `vagrant init`.
  310. vagrantfile_load_error: |-
  311. There was an error loading a Vagrantfile. The file being loaded
  312. and the error message are shown below. This is usually caused by
  313. a syntax error.
  314. Path: %{path}
  315. Message: %{message}
  316. vagrantfile_syntax_error: |-
  317. There is a syntax error in the following Vagrantfile. The syntax error
  318. message is reproduced below for convenience:
  319. %{file}
  320. vboxmanage_error: |-
  321. There was an error executing the following command with VBoxManage:
  322. %{command}
  323. For more information on the failure, enable detailed logging by setting
  324. the environment variable VAGRANT_LOG to DEBUG.
  325. virtualbox_invalid_version: |-
  326. Vagrant has detected that you have a version of VirtualBox installed
  327. that is not supported. Please install one of the supported versions
  328. listed below to use Vagrant:
  329. %{supported_versions}
  330. virtualbox_kernel_module_not_loaded: |-
  331. VirtualBox is complaining that the kernel module is not loaded. Please
  332. run `VBoxManage --version` to see the error message which should contain
  333. instructions on how to fix this error.
  334. virtualbox_install_incomplete: |-
  335. VirtualBox is complaining that the installation is incomplete. Please
  336. run `VBoxManage --version` to see the error message which should contain
  337. instructions on how to fix this error.
  338. virtualbox_no_room_for_high_level_network: |-
  339. There is no available slots on the VirtualBox VM for the configured
  340. high-level network interfaces. "private_network" and "public_network"
  341. network configurations consume a single network adapter slot on the
  342. VirtualBox VM. VirtualBox limits the number of slots to 8, and it
  343. appears that every slot is in use. Please lower the number of used
  344. network adapters.
  345. virtualbox_not_detected: |-
  346. Vagrant could not detect VirtualBox! Make sure VirtualBox is properly installed.
  347. Vagrant uses the `VBoxManage` binary that ships with VirtualBox, and requires
  348. this to be available on the PATH. If VirtualBox is installed, please find the
  349. `VBoxManage` binary and add it to the PATH environmental variable.
  350. vm_creation_required: |-
  351. VM must be created before running this command. Run `vagrant up` first.
  352. vm_inaccessible: |-
  353. Your VM has become "inaccessible." Unfortunately, this is a critical error
  354. with VirtualBox that Vagrant can not cleanly recover from. Please open VirtualBox
  355. and clear out your inaccessible virtual machines or find a way to fix
  356. them.
  357. vm_name_exists: |-
  358. A VirtualBox machine with the name '%{name}' already exists.
  359. Please use another name or delete the machine with the existing
  360. name, and try again.
  361. vm_no_match: |-
  362. No virtual machines matched the regular expression given.
  363. vm_not_found: |-
  364. A VM by the name of %{name} was not found.
  365. vm_not_running: |-
  366. VM must be running to open SSH connection. Run `vagrant up`
  367. to start the virtual machine.
  368. #-------------------------------------------------------------------------------
  369. # Translations for config validation errors
  370. #-------------------------------------------------------------------------------
  371. config:
  372. common:
  373. error_empty: "`%{field}` must be not be empty."
  374. chef:
  375. cookbooks_path_empty: "Must specify a cookbooks path for chef solo."
  376. cookbooks_path_missing: |-
  377. Cookbook path doesn't exist: %{path}
  378. run_list_empty: "Run list must not be empty."
  379. server_url_empty: "Chef server URL must be populated."
  380. validation_key_path: "Validation key path must be valid path to your chef server validation key."
  381. loader:
  382. bad_v1_key: |-
  383. Unknown configuration section '%{key}'. If this section was part of
  384. a Vagrant 1.0.x plugin, note that 1.0.x plugins are incompatible with 1.1+.
  385. root:
  386. bad_key: |-
  387. Unknown configuration section '%{key}'.
  388. ssh:
  389. private_key_missing: "`private_key_path` file must exist: %{path}"
  390. vm:
  391. base_mac_invalid: "Base MAC address for eth0/NAT must be set. Contact box maintainer for more information."
  392. box_missing: "A box must be specified."
  393. box_not_found: "The box '%{name}' could not be found."
  394. network_invalid: |-
  395. The network type '%{type}' is not valid. Please use
  396. 'hostonly' or 'bridged'.
  397. network_ip_required: |-
  398. Host only networks require an IP as an argument.
  399. network_ip_invalid: |-
  400. The host only network IP '%{ip}' is invalid.
  401. network_ip_ends_one: |-
  402. The host only network IP '%{ip}' must not end in a 1, as this
  403. is reserved for the host machine.
  404. nfs_not_supported: |-
  405. It appears your machine doesn't support NFS, or there is not an
  406. adapter to enable NFS on this machine for Vagrant. Please verify
  407. that `nfsd` is installed on your machine, and try again. If you're
  408. on Windows, NFS isn't supported. If the problem persists, please
  409. contact Vagrant support.
  410. nfs_requires_host: |-
  411. Using NFS shared folders requires a host to be specified
  412. using `config.vagrant.host`.
  413. network_fp_requires_ports: |-
  414. Forwarded port definitions require a "host" and "guest" value
  415. shared_folder_hostpath_missing: |-
  416. The host path of the shared folder is missing: %{path}
  417. shared_folder_nfs_owner_group: |-
  418. Shared folder that have NFS enabled do no support owner/group
  419. attributes. Host path: %{path}
  420. provisioner_not_found: "The provisioner '%{shortcut}' doesn't exist."
  421. provisioner_invalid_class: |-
  422. The provisioner '%{shortcut}' must inherit from
  423. `Vagrant::Plugin::V1::Provisioner`."
  424. #-------------------------------------------------------------------------------
  425. # Translations for commands. e.g. `vagrant x`
  426. #-------------------------------------------------------------------------------
  427. commands:
  428. common:
  429. vm_not_created: "VM not created. Moving on..."
  430. vm_not_running: "VM is not currently running. Please bring it up to run this command."
  431. box:
  432. no_installed_boxes: "There are no installed boxes! Use `vagrant box add` to add some."
  433. removing: |-
  434. Removing box '%{name}' with provider '%{provider}'...
  435. destroy:
  436. confirmation: "Are you sure you want to destroy the '%{name}' VM? [y/N] "
  437. will_not_destroy: |-
  438. The VM '%{name}' will not be destroyed, since the confirmation
  439. was declined.
  440. init:
  441. success: |-
  442. A `Vagrantfile` has been placed in this directory. You are now
  443. ready to `vagrant up` your first virtual environment! Please read
  444. the comments in the Vagrantfile as well as documentation on
  445. `vagrantup.com` for more information on using Vagrant.
  446. plugin:
  447. installed_license: |-
  448. The license for '%{name}' was successfully installed!
  449. installing_license: |-
  450. Installing license for '%{name}'...
  451. no_plugins: |-
  452. No plugins installed.
  453. installed: |-
  454. Installed the plugin '%{name} (%{version})'!
  455. installing: |-
  456. Installing the '%{name}' plugin. This can take a few minutes...
  457. uninstalling: |-
  458. Uninstalling the '%{name}' plugin...
  459. status:
  460. aborted: |-
  461. The VM is in an aborted state. This means that it was abruptly
  462. stopped without properly closing the session. Run `vagrant up`
  463. to resume this virtual machine. If any problems persist, you may
  464. have to destroy and restart the virtual machine.
  465. gurumeditation: |-
  466. The VM is in the "guru meditation" state. This is a rare case which means
  467. that an internal error in VitualBox caused the VM to fail. This is always
  468. the sign of a bug in VirtualBox. You can try to bring your VM back online
  469. with a `vagrant up`.
  470. inaccessible: |-
  471. The VM is inaccessible! This is a rare case which means that VirtualBox
  472. can't find your VM configuration. This usually happens when upgrading
  473. VirtualBox, moving to a new computer, etc. Please consult VirtualBox
  474. for how to handle this issue.
  475. output: |-
  476. Current machine states:
  477. %{states}
  478. %{message}
  479. not_created: |-
  480. The environment has not yet been created. Run `vagrant up` to
  481. create the environment. If a machine is not created, only the
  482. default provider will be shown. So if a provider is not listed,
  483. then the machine is not created for that environment.
  484. paused: |-
  485. The VM is paused. This VM may have been paused via the VirtualBox
  486. GUI or the VBoxManage command line interface. To unpause, please
  487. use the VirtualBox GUI and/or VBoxManage command line interface so
  488. that vagrant would be able to control the VM again.
  489. poweroff: |-
  490. The VM is powered off. To restart the VM, simply run `vagrant up`
  491. running: |-
  492. The VM is running. To stop this VM, you can run `vagrant halt` to
  493. shut it down forcefully, or you can run `vagrant suspend` to simply
  494. suspend the virtual machine. In either case, to restart it again,
  495. simply run `vagrant up`.
  496. saving: |-
  497. The VM is currently saving its state. In a few moments this state
  498. should transition to "saved." Please run `vagrant status` again
  499. in a few seconds.
  500. saved: |-
  501. To resume this VM, simply run `vagrant up`.
  502. stuck: |-
  503. The VM is "stuck!" This is a very rare state which means that
  504. VirtualBox is unable to recover the current state of the VM.
  505. The only known solution to this problem is to restart your
  506. machine, sorry.
  507. listing: |-
  508. This environment represents multiple VMs. The VMs are all listed
  509. above with their current state. For more information about a specific
  510. VM, run `vagrant status NAME`.
  511. up:
  512. upping: |-
  513. Bringing machine '%{name}' up with '%{provider}' provider...
  514. version:
  515. output: "Vagrant version %{version}"
  516. #-------------------------------------------------------------------------------
  517. # Translations for Vagrant middleware acions
  518. #-------------------------------------------------------------------------------
  519. actions:
  520. runner:
  521. waiting_cleanup: "Waiting for cleanup before exiting..."
  522. exit_immediately: "Exiting immediately, without cleanup!"
  523. vm:
  524. boot:
  525. booting: Booting VM...
  526. waiting: Waiting for VM to boot. This can take a few minutes.
  527. ready: VM booted and ready for use!
  528. failed: Failed to connect to VM!
  529. failed_to_boot: |-
  530. Failed to connect to VM via SSH. Please verify the VM successfully booted
  531. by looking at the VirtualBox GUI.
  532. failed_to_run: |-
  533. The VM failed to remain in the "running" state while attempting to boot.
  534. This is normally caused by a misconfiguration or host system incompatibilities.
  535. Please open the VirtualBox GUI and attempt to boot the virtual machine
  536. manually to get a more informative error message.
  537. bridged_networking:
  538. available: |-
  539. Available bridged network interfaces:
  540. bridging: |-
  541. Bridging adapter #%{adapter} to '%{bridge}'
  542. enabling: |-
  543. Enabling bridged network...
  544. preparing: |-
  545. Preparing bridged networking...
  546. specific_not_found: |-
  547. Specific bridge '%{bridge}' not found. You may be asked to specify
  548. which network to bridge to.
  549. check_box:
  550. not_found: |-
  551. Box '%{name}' was not found. Fetching box from specified URL for
  552. the provider '%{provider}'. Note that if the URL does not have
  553. a box for this provider, you should interrupt Vagrant now and add
  554. the box yourself. Otherwise Vagrant will attempt to download the
  555. full box prior to discovering this error.
  556. not_specified: |-
  557. No base box was specified! A base box is required as a staring point
  558. for every vagrant virtual machine. Please specify one in your Vagrantfile
  559. using `config.vm.box`
  560. does_not_exist: |-
  561. Specified box `%{name}` does not exist!
  562. The box must be added through the `vagrant box add` command. Please view
  563. the documentation associated with the command for more information.
  564. check_guest_additions:
  565. not_detected: |-
  566. No guest additions were detected on the base box for this VM! Guest
  567. additions are required for forwarded ports, shared folders, host only
  568. networking, and more. If SSH fails on this machine, please install
  569. the guest additions and repackage the box to continue.
  570. This is not an error message; everything may continue to work properly,
  571. in which case you may ignore this message.
  572. version_mismatch: |-
  573. The guest additions on this VM do not match the installed version of
  574. VirtualBox! In most cases this is fine, but in rare cases it can
  575. cause things such as shared folders to not work properly. If you see
  576. shared folder errors, please update the guest additions within the
  577. virtual machine and reload your VM.
  578. Guest Additions Version: %{guest_version}
  579. VirtualBox Version: %{virtualbox_version}
  580. clear_forward_ports:
  581. deleting: Clearing any previously set forwarded ports...
  582. clear_network_interfaces:
  583. deleting: Clearing any previously set network interfaces...
  584. clear_shared_folders:
  585. deleting: Cleaning previously set shared folders...
  586. customize:
  587. failure: |-
  588. A customization command failed:
  589. %{command}
  590. The following error was experienced:
  591. %{error}
  592. Please fix this customization and try again.
  593. running: Running any VM customizations...
  594. destroy:
  595. destroying: Destroying VM and associated drives...
  596. destroy_network:
  597. destroying: Destroying unused networking interface...
  598. disable_networks:
  599. disabling: Disabling host only networks...
  600. discard_state:
  601. discarding: Discarding saved state of VM...
  602. export:
  603. create_dir: Creating temporary directory for export...
  604. exporting: Exporting VM...
  605. power_off: "The Vagrant virtual environment you are trying to package must be powered off."
  606. forward_ports:
  607. auto_empty: |-
  608. Vagrant found a port collision for the specified port and virtual machine.
  609. While this port was marked to be auto-corrected, the ports in the
  610. auto-correction range are all also used.
  611. VM: %{vm_name}
  612. Forwarded port: %{guest_port} => %{host_port}
  613. collision_error: |-
  614. Vagrant cannot forward the specified ports on this VM, since they
  615. would collide with some other application that is already listening
  616. on these ports. The forwarded port to %{host_port} is already in use
  617. on the host machine.
  618. To fix this, modify your current projects Vagrantfile to use another
  619. port. Example, where '1234' would be replaced by a unique host port:
  620. config.vm.network :forwarded_port, guest: %{guest_port}, host: 1234
  621. Sometimes, Vagrant will attempt to auto-correct this for you. In this
  622. case, Vagrant was unable to. This is usually because the guest machine
  623. is in a state which doesn't allow modifying port forwarding.
  624. fixed_collision: |-
  625. Fixed port collision for %{guest_port} => %{host_port}. Now on port %{new_port}.
  626. forwarding: Forwarding ports...
  627. forwarding_entry: |-
  628. -- %{guest_port} => %{host_port} (adapter %{adapter})
  629. non_nat: |-
  630. VirtualBox adapter #%{adapter} not configured as "NAT". Skipping port
  631. forwards on this adapter.
  632. privileged_ports: |-
  633. You are trying to forward to privileged ports (ports <= 1024). Most
  634. operating systems restrict this to only privileged process (typically
  635. processes running as an administrative user). This is a warning in case
  636. the port forwarding doesn't work. If any problems occur, please try a
  637. port higher than 1024.
  638. halt:
  639. force: |-
  640. Forcing shutdown of VM...
  641. graceful: |-
  642. Attempting graceful shutdown of VM...
  643. hostname:
  644. setting: "Setting hostname..."
  645. import:
  646. importing: Importing base box '%{name}'...
  647. failure: |-
  648. The VM import failed! Try running `VBoxManage import` on the box file
  649. manually for more verbose error output.
  650. match_mac:
  651. matching: Matching MAC address for NAT networking...
  652. no_base_mac: |-
  653. No base MAC address was specified. This is required for the NAT networking
  654. to work properly (and hence port forwarding, SSH, etc.). Specifying this
  655. MAC address is typically up to the box and box maintiner. Please contact
  656. the relevant person to solve this issue.
  657. network:
  658. adapter_collision: |-
  659. More than one network have been assigned to the same adapter. Please
  660. make sure your networks you've configured in your Vagrantfile do not
  661. overlap.
  662. configuring: |-
  663. Configuring and enabling network interfaces...
  664. dhcp_already_attached: |-
  665. A host only network interface you're attempting to configure via DHCP
  666. already has a conflicting host only adapter with DHCP enabled. The
  667. DHCP on this adapter is incompatible with the DHCP settings. Two
  668. host only network interfaces are not allowed to overlap, and each
  669. host only network interface can have only one DHCP server. Please
  670. reconfigure your host only network or remove the virtual machine
  671. using the other host only network.
  672. no_adapters: |-
  673. No available adapters on the virtual machine were found to accomodate
  674. for all configured networks. VirtualBox virtual machines have 8
  675. network interfaces available usually, so please lower the number of
  676. networks to below 8.
  677. preparing: |-
  678. Preparing network interfaces based on configuration...
  679. host_only_network:
  680. collides: |-
  681. The specified host network collides with a non-hostonly network!
  682. This will cause your specified IP to be inaccessible. Please change
  683. the IP or name of your host only network to not match that of
  684. a bridged or non-hostonly network.
  685. creating: "Creating new host only network for environment..."
  686. enabling: "Enabling host only network..."
  687. not_found: |-
  688. The specified host network could not be found: '%{name}.'
  689. If the name specification is removed, Vagrant will create a new
  690. host only network for you. Alternatively, please create the
  691. specified network manually.
  692. preparing: "Preparing host only network..."
  693. nfs:
  694. exporting: Exporting NFS shared folders...
  695. mounting: Mounting NFS shared folders...
  696. persist:
  697. dotfile_error: |-
  698. The dotfile which Vagrant uses to store the UUID of the project's
  699. virtual machine already exists and is not a file! The dotfile is
  700. currently configured to be '%{dotfile_path}'
  701. To change this value, please see `config.vagrant.dotfile_name`
  702. Are you trying to use Vagrant from your home directory? This is the
  703. leading cause of this error message. To resolve this, simply use a
  704. different directory. Or, if you really want to run Vagrant from your
  705. home directory, modify the `config.vagrant.dotfile_name` configuration
  706. key.
  707. persisting: "Persisting the VM UUID (%{uuid})..."
  708. provision:
  709. beginning: "Running provisioner: %{provisioner}..."
  710. resume:
  711. resuming: Resuming suspended VM...
  712. unpausing: |-
  713. Unpausing the VM...
  714. share_folders:
  715. creating: Creating shared folders metadata...
  716. mounting: Mounting shared folders...
  717. mounting_entry: "-- %{guest_path}"
  718. nomount_entry: "-- Automounting disabled: %{host_path}"
  719. set_name:
  720. setting_name: |-
  721. Setting the name of the VM...
  722. suspend:
  723. suspending: Saving VM state and suspending execution...
  724. box:
  725. unpackage:
  726. untar_failure: |-
  727. The box failed to unpackage properly. Please verify that the box
  728. file you're trying to add is not corrupted and try again. The
  729. output from attempting to unpackage (if any):
  730. %{output}
  731. already_exists: |-
  732. The box you're attempting to add already exits:
  733. Name: %{name}
  734. Provider: %{provider}
  735. add:
  736. adding: |-
  737. Extracting box...
  738. destroy:
  739. destroying: "Deleting box '%{name}'..."
  740. download:
  741. with: "Downloading with %{class}..."
  742. cleaning: "Cleaning up downloaded box..."
  743. unknown_type: "Unknown or unsupported URI type given for box download."
  744. verify:
  745. verifying: "Verifying box..."
  746. failed: |-
  747. The box file you're attempting to add is invalid. This can be
  748. commonly attributed to typos in the path given to the box add
  749. command. Another common case of this is invalid packaging of the
  750. box itself.
  751. general:
  752. package:
  753. packaging: "Packaging additional file: %{file}"
  754. compressing: "Compressing package to: %{tar_path}"
  755. output_exists: |-
  756. The specified file to save the package as already exists. Please
  757. remove this file or specify a different file name for outputting.
  758. output_is_directory: |-
  759. The specified output is a directory. Please specify a path including
  760. a filename.
  761. requires_directory: |-
  762. A directory was not specified to package. This should never happen
  763. and is a result of an internal inconsistency.
  764. include_file_missing: |-
  765. Package include file doesn't exist: %{file}
  766. downloaders:
  767. file:
  768. download: "Copying box to temporary location..."
  769. file_missing: "The specified path to a file doesn't exist."
  770. http:
  771. connection_reset: |-
  772. The remote server unexpectedly closed the connection. Vagrant was
  773. unable to finish downloading the box. Please try again. If this
  774. problem persists, please try downloading the box manually outside
  775. of Vagrant, then adding the box from the filesystem.
  776. connection_timeout: |-
  777. Vagrant timed out while attempting to connect to the HTTP host.
  778. Please check your internet and proxy settings and try again.
  779. download: "Downloading box: %{url}"
  780. socket_error: |-
  781. An error occurred while trying to download the specified box. This most
  782. often happens if there is no internet connection or the address is
  783. invalid.
  784. status_error: |-
  785. Bad status code: %{status}
  786. Please verify that the box exists and is accessible. Also verify that
  787. this computer is properly connected to the internet.
  788. hosts:
  789. bsd:
  790. nfs_export: |-
  791. Preparing to edit /etc/exports. Administrator privileges will be required...
  792. nfs_prune: |-
  793. Pruning invalid NFS exports. Administrator privileges will be required...
  794. linux:
  795. nfs_export: |-
  796. Preparing to edit /etc/exports. Administrator privileges will be required...
  797. nfs_prune: |-
  798. Pruning invalid NFS exports. Administrator privileges will be required...
  799. arch:
  800. nfs_export:
  801. prepare: "Preparing to edit /etc/exports. Administrator privileges will be required..."
  802. freebsd:
  803. nfs_whitespace: |-
  804. FreeBSD hosts do not support sharing directories with whitespace in
  805. their path. Please adjust your path accordingly.
  806. provisioners:
  807. chef:
  808. chef_not_detected: |-
  809. The chef binary (either `chef-solo` or `chef-client`) was not found on
  810. the VM and is required for chef provisioning. Please verify that chef
  811. is installed and that the binary is available on the PATH.
  812. json: "Generating chef JSON and uploading..."
  813. client_key_folder: "Creating folder to hold client key..."
  814. upload_validation_key: "Uploading chef client validation key..."
  815. upload_encrypted_data_bag_secret_key: "Uploading chef encrypted data bag secret key..."
  816. running_client: "Running chef-client..."
  817. running_client_again: "Running chef-client again (failed to converge)..."
  818. running_solo: "Running chef-solo..."
  819. running_solo_again: "Running chef-solo again (failed to converge)..."
  820. missing_shared_folders: |-
  821. Shared folders that Chef requires are missing on the virtual machine.
  822. This is usually due to configuration changing after already booting the
  823. machine. The fix is to run a `vagrant reload` so that the proper shared
  824. folders will be prepared and mounted on the VM.
  825. no_convergence: |-
  826. Chef never successfully completed! Any errors should be visible in the
  827. output above. Please fix your recipes so that they properly complete.
  828. not_detected: |-
  829. The `%{binary}` binary appears to not be in the PATH of the guest. This
  830. could be because the PATH is not properly setup or perhaps chef is not
  831. installed on this guest. Chef provisioning can not continue without
  832. chef properly installed.
  833. server_url_required: |-
  834. Chef server provisioning requires that the `config.chef.chef_server_url` be set to the
  835. URL of your chef server. Examples include "http://12.12.12.12:4000" and
  836. "http://myserver.com:4000" (the port of course can be different, but 4000 is the default)
  837. server_validation_key_required: |-
  838. Chef server provisioning requires that the `config.chef.validation_key_path` configuration
  839. be set to a path on your local machine of the validation key used to register the
  840. VM with the chef server.
  841. server_validation_key_doesnt_exist: |-
  842. The validation key set for `config.chef.validation_key_path` does not exist! This
  843. file needs to exist so it can be uploaded to the virtual machine.
  844. puppet:
  845. not_detected: |-
  846. The `%{binary}` binary appears to not be in the PATH of the guest. This
  847. could be because the PATH is not properly setup or perhaps Puppet is not
  848. installed on this guest. Puppet provisioning can not continue without
  849. Puppet properly installed.
  850. running_puppet: "Running Puppet with %{manifest}..."
  851. manifest_missing: |-
  852. The configured Puppet manifest is missing. Please specify a path to an
  853. existing manifest:
  854. %{manifest}
  855. manifests_path_missing: "The manifests path specified for Puppet does not exist: %{path}"
  856. missing_shared_folders: |-
  857. Shared folders that Puppet requires are missing on the virtual machine.
  858. This is usually due to configuration changing after already booting the
  859. machine. The fix is to run a `vagrant reload` so that the proper shared
  860. folders will be prepared and mounted on the VM.
  861. module_path_missing: "The configured module path doesn't exist: %{path}"
  862. puppet_server:
  863. not_detected: |-
  864. The `%{binary}` binary appears to not be in the PATH of the guest. This
  865. could be because the PATH is not properly setup or perhaps Puppet is not
  866. installed on this guest. Puppet provisioning can not continue without
  867. Puppet properly installed.
  868. running_puppetd: "Running Puppet agent..."
  869. shell:
  870. args_not_string: "Shell provisioner `args` must be a string."
  871. path_and_inline_set: "Only one of `path` or `inline` may be set."
  872. no_path_or_inline: "One of `path` or `inline` must be set."
  873. path_invalid: "`path` for shell provisioner does not exist on the host system: %{path}"
  874. upload_path_not_set: "`upload_path` must be set for the shell provisioner."
  875. guest:
  876. base:
  877. unsupported_configure_networks: |-
  878. Networking features require support that is dependent on the operating
  879. system running within the guest virtual machine. Vagrant has built-in support
  880. for many operating systems: Debian, Ubuntu, Gentoo, and RedHat. The distro
  881. of your VM couldn't be detected or doesn't support networking features.
  882. Most of the time this is simply due to the fact that no one has contributed
  883. back the logic necessary to set this up. Please report a bug as well as the
  884. box you're using.
  885. unsupported_host_name: |-
  886. Setting host name is currently only supported on Debian, Ubuntu and RedHat.
  887. If you'd like your guest OS to be supported, please open a ticket on the
  888. project.
  889. unsupported_nfs: |-
  890. Vagrant doesn't support mounting NFS shared folders for your specific
  891. guest operating system yet, or possibly couldn't properly detect the
  892. operating system on the VM.
  893. Most of the time this is simply due to the fact that no one has contributed
  894. back the logic necessary to set this up. Please report a bug as well as the
  895. box you're using.
  896. unsupported_halt: |-
  897. Vagrant doesn't support graceful shutdowns for your specific
  898. guest operating system yet, or possibly couldn't properly detect the
  899. operating system on the VM.
  900. Most of the time this is simply due to the fact that no one has contributed
  901. back the logic necessary to set this up. Please report a bug as well as the
  902. box you're using.
  903. unsupported_shared_folder: |-
  904. Vagrant doesn't support mounting shared folders for your specific
  905. guest operating system yet, or possibly couldn't properly detect the
  906. operating system on the VM.
  907. Most of the time this is simply due to the fact that no one has contributed
  908. back the logic necessary to set this up. Please report a bug as well as the
  909. box you're using.
  910. linux:
  911. guestpath_expand_fail: |-
  912. Vagrant failed to determine the shell expansion of the guest path
  913. for one of your shared folders. This is an extremely rare error case
  914. and most likely indicates an unusual configuration of the guest system.
  915. Please report a bug with your Vagrantfile.
  916. mount_fail: "Failed to mount shared folders. `vboxsf` was not available."
  917. mount_nfs_fail: |-
  918. Mounting NFS shared folders failed. This is most often caused by the NFS
  919. client software not being installed on the guest machine. Please verify
  920. that the NFS client software is properly installed, and consult any resources
  921. specific to the linux distro you're using for more information on how to
  922. do this.