48 lines
2.3 KiB
PHP
48 lines
2.3 KiB
PHP
<?php
|
|
|
|
// System settings (Domain/TLS + release channel) page strings (R16). Shared buttons live in common.php.
|
|
return [
|
|
// Header
|
|
'eyebrow' => 'System',
|
|
'heading' => 'Domain, TLS & release channel',
|
|
'subheading' => 'Panel access address and update source',
|
|
'https_active' => 'HTTPS active',
|
|
'https_plain' => 'Plaintext HTTP',
|
|
|
|
// Domain & TLS panel
|
|
'tls_title' => 'Domain & TLS',
|
|
'tls_subtitle' => 'Panel reachability and Let\'s Encrypt certificate',
|
|
'tls_active_title' => 'TLS active — certificate issued automatically via Let\'s Encrypt',
|
|
'tls_active_body_pre' => 'Reachable at',
|
|
'tls_active_body_post' => 'issued and renewed automatically. Requirement: the domain points to this server via DNS.',
|
|
'tls_bare_title' => 'Bare-IP mode: plaintext HTTP',
|
|
'tls_bare_body' => 'Without a domain the panel — including 2FA and audit — runs over unencrypted HTTP. Enter a domain and TLS is then set up automatically, with no further steps.',
|
|
|
|
// Read-only domain facts
|
|
'domain' => 'Domain',
|
|
'domain_via_ip' => '— (access via IP)',
|
|
'access_address' => 'Access address',
|
|
'access_bare_ip' => 'HTTP (bare IP)',
|
|
'domain_note_pre' => 'The panel domain is set at installation and stays consistent with URL, WebSocket and cookie security. To change it, re-run',
|
|
'domain_note_post' => 'with the new domain — TLS then sets itself up automatically.',
|
|
|
|
// Release channel panel
|
|
'channel_title' => 'Release channel',
|
|
'channel_subtitle' => 'Source for updates',
|
|
'channel_radiogroup_label' => 'Release channel',
|
|
'channel_current' => 'Channel:',
|
|
|
|
// Channel descriptions (CHANNELS array)
|
|
'channel_stable' => 'Only tested releases approved by the maintainer (tagged versions). Recommended for production use.',
|
|
'channel_beta' => 'Pre-releases of upcoming versions for testing new features. May be unstable. Development builds are never offered to users.',
|
|
|
|
// Change-channel confirmation modal
|
|
'change_channel_heading' => 'Switch release channel',
|
|
'change_channel_body' => 'The release channel will be set to “:channel”. Updates will then be pulled from this source.',
|
|
'change_channel_confirm' => 'Switch',
|
|
'change_channel_notify' => 'Release channel set to “:channel”.',
|
|
|
|
// Page title
|
|
'title' => 'System — Clusev',
|
|
];
|