@@ -350,7 +350,7 @@ protected function handleDemo(): array|string {
350350
351351 protected function header (): void {
352352 $ logo = <<<EOT
353- -------------------------------------------------------------------------------
353+ ────────────────────────────────────────────────────────────────────────────────
354354
355355 ██╗ ██╗ ██████╗ ██████╗ ████████╗ ███████╗ ██╗ ██╗
356356 ██║ ██║ ██╔═══██╗ ██╔══██╗ ╚══██╔══╝ ██╔════╝ ╚██╗██╔╝
@@ -362,7 +362,7 @@ protected function header(): void {
362362 Drupal project template
363363
364364 by DrevOps
365- -------------------------------------------------------------------------------
365+ ────────────────────────────────────────────────────────────────────────────────
366366EOT ;
367367
368368 // Print the logo only if the terminal is wide enough.
@@ -375,13 +375,13 @@ protected function header(): void {
375375
376376 $ ref = $ this ->config ->get (Config::REF );
377377 if ($ ref == Downloader::REF_STABLE ) {
378- $ content .= 'This will install the latest version of Vortex into your project. ' . PHP_EOL ;
378+ $ content .= 'This tool will guide you through installing the latest version of Vortex into your project. ' . PHP_EOL ;
379379 }
380380 elseif ($ ref == Downloader::REF_HEAD ) {
381- $ content .= 'This will install the latest development version of Vortex into your project. ' . PHP_EOL ;
381+ $ content .= 'This tool will guide you through installing the latest development version of Vortex into your project. ' . PHP_EOL ;
382382 }
383383 else {
384- $ content .= sprintf ('This will install Vortex into your project at commit "%s". ' , $ ref ) . PHP_EOL ;
384+ $ content .= sprintf ('This tool will guide you through installing the version of Vortex into your project at commit "%s". ' , $ ref ) . PHP_EOL ;
385385 }
386386
387387 $ content .= PHP_EOL ;
@@ -399,12 +399,13 @@ protected function header(): void {
399399 $ title = 'Welcome to Vortex non-interactive installer ' ;
400400 }
401401 else {
402- $ content .= 'Please answer the questions below to install configuration relevant to your site. ' . PHP_EOL ;
403- $ content .= 'No changes will be applied until the last confirmation step . ' . PHP_EOL ;
402+ $ content .= 'You’ll be asked a few questions to tailor the configuration to your site. ' . PHP_EOL ;
403+ $ content .= 'No changes will be made until you confirm everything at the end . ' . PHP_EOL ;
404404 $ content .= PHP_EOL ;
405- $ content .= 'Existing committed files may be modified. You will need to resolve any changes manually. ' . PHP_EOL ;
405+ $ content .= 'If you proceed, some committed files may be modified after confirmation, and you may need to resolve any changes manually. ' . PHP_EOL ;
406406 $ content .= PHP_EOL ;
407- $ content .= 'Press Ctrl+C at any time to exit this installer. ' . PHP_EOL ;
407+ $ content .= 'Press Ctrl+C at any time to exit the installer. ' . PHP_EOL ;
408+ $ content .= 'Press Ctrl+U at any time to go back to the previous step. ' . PHP_EOL ;
408409 }
409410
410411 Tui::box ($ content , $ title );
0 commit comments