From 5465963e9ab8197d8e99f97a2682c815808f2ab3 Mon Sep 17 00:00:00 2001 From: ghermans Date: Tue, 25 Feb 2020 03:46:39 +0100 Subject: [PATCH] #2525 fixed typo --- app/Console/Commands/install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);