diff --git a/app/Console/Commands/install.php b/app/Console/Commands/install.php index 38c04f5a3..487ef886c 100644 --- a/app/Console/Commands/install.php +++ b/app/Console/Commands/install.php @@ -99,10 +99,10 @@ class install extends Command $this->envUpdate('APP_LOCALE=', $locale); $TimeZones = timezone_identifiers_list(); - $timezone = $this->anticipate('Enter the default timezone', $TimeZones, date_default_timezone_get()); + $timezone = $this->anticipate('Please enter the default timezone', $TimeZones, date_default_timezone_get()); $this->envUpdate('APP_TIMEZONE=', $timezone); - $currency = $this->choice('Enter the default currency', ['USD', 'EUR'], 'USD'); + $currency = $this->choice('Please enter the default currency', ['USD', 'EUR'], 'USD'); $this->envUpdate('APP_CURRENCY=', $currency);