Files
jabali-panel/resources/views/components/user-tour.blade.php
2026-01-24 19:36:46 +02:00

42 lines
1.7 KiB
PHP

@php
$tourTranslations = [
// Main tour
'welcome' => __('Welcome!'),
'welcomeDesc' => __('This is your hosting control panel. Let\'s take a quick tour.'),
'navigation' => __('Navigation'),
'navigationDesc' => __('Access all features from the sidebar.'),
'domains' => __('Domains'),
'domainsDesc' => __('Manage your websites and domain settings.'),
'email' => __('Email'),
'emailDesc' => __('Create and manage email accounts.'),
'databases' => __('Databases'),
'databasesDesc' => __('Create MySQL databases for your applications.'),
'files' => __('File Manager'),
'filesDesc' => __('Upload and manage your website files.'),
'ssl' => __('SSL Certificates'),
'sslDesc' => __('Secure your websites with free SSL.'),
'backups' => __('Backups'),
'backupsDesc' => __('Create and restore website backups.'),
'dnsRecords' => __('DNS Records'),
'dnsRecordsDesc' => __('Manage DNS records for your domains.'),
'cronJobs' => __('Cron Jobs'),
'cronJobsDesc' => __('Schedule automated tasks.'),
'phpSettings' => __('PHP Settings'),
'phpSettingsDesc' => __('Configure PHP for your websites.'),
'sshKeys' => __('SSH Keys'),
'sshKeysDesc' => __('Manage SSH keys for server access.'),
'wordpress' => __('WordPress'),
'wordpressDesc' => __('Install and manage WordPress sites.'),
'topBar' => __('Top Bar'),
'topBarDesc' => __('Access profile and settings.'),
'ready' => __('Ready!'),
'readyDesc' => __('Start by adding your first domain. You can retake this tour anytime.'),
'next' => __('Next'),
'prev' => __('Previous'),
'done' => __('Done'),
];
@endphp
<script>
window.jabaliTourTranslations = {!! json_encode($tourTranslations) !!};
</script>