22 lines
792 B
PHP
22 lines
792 B
PHP
<?php
|
|
|
|
// Update-progress page strings (R16). Used by resources/views/update-progress.blade.php.
|
|
return [
|
|
'page_title' => 'Update in progress — Clusev',
|
|
'heading' => 'Update in progress',
|
|
'subtitle' => 'The stack is rebuilding. This page will automatically detect when it is back up.',
|
|
|
|
// Phase labels (displayed in the checklist)
|
|
'phase_fetch' => 'Fetch',
|
|
'phase_build' => 'Build',
|
|
'phase_migrate' => 'Migrate',
|
|
'phase_restart' => 'Restart',
|
|
|
|
// Status messages
|
|
'elapsed' => 'Elapsed time',
|
|
'done_heading' => 'Done — reloading…',
|
|
'timeout_heading' => 'Update is taking unusually long',
|
|
'timeout_hint' => 'Please reload the page manually or check the logs (journalctl -u clusev-update.service).',
|
|
'reload_button' => 'Reload',
|
|
];
|