Hosts use I18n

This commit is contained in:
Mitchell Hashimoto 2010-08-27 20:53:04 -07:00
parent d8c4985046
commit eee7ced10b
3 changed files with 11 additions and 2 deletions

View File

@ -25,7 +25,7 @@ module Vagrant
# The sleep ensures that the output is truly flushed before any `sudo` # The sleep ensures that the output is truly flushed before any `sudo`
# commands are issued. # commands are issued.
env.ui.info "Preparing to edit /etc/exports. Administrator priveleges will be required..." env.ui.info "vagrant.hosts.bsd.nfs_export.prepare"
sleep 0.5 sleep 0.5
output.split("\n").each do |line| output.split("\n").each do |line|

View File

@ -24,7 +24,7 @@ module Vagrant
:ip => ip, :ip => ip,
:folders => folders) :folders => folders)
env.ui.info "Preparing to edit /etc/exports. Administrator priveleges will be required..." env.ui.info "vagrant.hosts.linux.nfs_export.prepare"
sleep 0.5 sleep 0.5
output.split("\n").each do |line| output.split("\n").each do |line|

View File

@ -180,3 +180,12 @@ en:
package: package:
packaging: "Packaging additional file: %{file}" packaging: "Packaging additional file: %{file}"
compressing: "Compressing package to: %w{tar_path}" compressing: "Compressing package to: %w{tar_path}"
hosts:
bsd:
nfs_export:
prepare: "Preparing to edit /etc/exports. Administrator priveleges will be required..."
linux:
nfs_export:
prepare: "Preparing to edit /etc/exports. Administrator priveleges will be required..."