43 lines
2.4 KiB
PHP
43 lines
2.4 KiB
PHP
@php
|
|
$tourTranslations = [
|
|
'welcome' => __('Welcome to Jabali!'),
|
|
'welcomeDesc' => __("Let's take a quick tour of your control panel."),
|
|
'navigation' => __('Navigation Menu'),
|
|
'navigationDesc' => __('Access all panel sections from the sidebar.'),
|
|
'users' => __('Users Management'),
|
|
'usersDesc' => __('Create and manage hosting accounts with domains, email, and databases.'),
|
|
'serverStatus' => __('Server Status'),
|
|
'serverStatusDesc' => __('Monitor server health, CPU, memory, disk space, and running services.'),
|
|
'sslManager' => __('SSL Manager'),
|
|
'sslManagerDesc' => __('Manage SSL certificates, request free Let\'s Encrypt certificates, and monitor expiry dates.'),
|
|
'serverSettings' => __('Server Settings'),
|
|
'serverSettingsDesc' => __('Configure panel branding, DNS settings, disk quotas, and email notifications.'),
|
|
'emailSettings' => __('Email Settings'),
|
|
'emailSettingsDesc' => __('Configure mail server settings, DKIM, SPF records, and spam filters.'),
|
|
'dnsZones' => __('DNS Zones'),
|
|
'dnsZonesDesc' => __('Manage DNS zones and records for all domains on this server.'),
|
|
'security' => __('Security'),
|
|
'securityDesc' => __('Configure ModSecurity WAF rules and security policies.'),
|
|
'services' => __('Services'),
|
|
'servicesDesc' => __('Start, stop, and restart server services like Nginx, PHP-FPM, MySQL, and Postfix.'),
|
|
'backups' => __('Backup Management'),
|
|
'backupsDesc' => __('Set up automated backups with remote storage support (S3, FTP, SFTP).'),
|
|
'firewall' => __('Firewall'),
|
|
'firewallDesc' => __('Manage firewall rules, block IPs, and configure Fail2Ban protection.'),
|
|
'auditLogs' => __('Audit Logs'),
|
|
'auditLogsDesc' => __('Track all actions performed in the panel for security and compliance.'),
|
|
'topBar' => __('Top Bar'),
|
|
'topBarDesc' => __('Access your profile, change language, switch themes, and logout.'),
|
|
'quickActions' => __('Quick Actions'),
|
|
'quickActionsDesc' => __('Use these shortcuts to quickly add users, access backups, manage services, or configure firewall.'),
|
|
'ready' => __("You're Ready!"),
|
|
'readyDesc' => __('Start by creating your first user from the Users menu. You can always retake this tour from the Dashboard.'),
|
|
'next' => __('Next'),
|
|
'prev' => __('Previous'),
|
|
'done' => __('Done'),
|
|
];
|
|
@endphp
|
|
<script>
|
|
window.jabaliTourTranslations = {!! json_encode($tourTranslations) !!};
|
|
</script>
|