Add translations for cookie consent and footer links in multiple languages; update checkout consent messages

- Updated French, Italian, Dutch, and US English translations to include cookie consent messages and footer links.
- Modified checkout consent messages to include privacy policy acceptance.
- Added new pages for cookies, contact, returns, and complaints with appropriate styling and content.
- Updated routing in index.php to include new pages.
- Refactored image selection script to use click events instead of mouseover.
This commit is contained in:
“VeLiTi”
2025-10-21 14:59:21 +02:00
parent 60a32a7ff9
commit ac59423a91
16 changed files with 1887 additions and 82 deletions

View File

@@ -107,6 +107,10 @@ $url = routes([
'/dealers'=> 'custom/pages/dealers.php',
'/privacy'=> 'custom/pages/privacy.php',
'/privacy/{download}'=> 'custom/pages/privacy.php',
'/cookies'=> 'custom/pages/cookies.php',
'/contact'=> 'custom/pages/contact.php',
'/returns'=> 'custom/pages/returns.php',
'/complaints'=> 'custom/pages/complaints.php',
'/instructions-for-use' => 'custom/pages/faq.php'
]);