138 lines
5.1 KiB
PHP
138 lines
5.1 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Cookie Consent - English Translations
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
// Modal
|
|
'modal' => [
|
|
'title' => 'Privacy Settings',
|
|
'description' => 'We use cookies to optimize our website for you. Some are essential, others help us analyze usage.',
|
|
],
|
|
|
|
// Cookie Categories
|
|
'categories' => [
|
|
'essential' => [
|
|
'title' => 'Strictly Necessary',
|
|
'description' => 'Required for basic site functionality.',
|
|
],
|
|
'analytics' => [
|
|
'title' => 'Analytics & Statistics',
|
|
'description' => 'Google Analytics / Tag Manager (IP anonymized).',
|
|
],
|
|
],
|
|
|
|
// Buttons
|
|
'buttons' => [
|
|
'accept_all' => 'Accept All',
|
|
'save_selection' => 'Save Selection',
|
|
'reject_all' => 'Essential Only',
|
|
'change_settings' => 'Change Cookie Settings',
|
|
],
|
|
|
|
// Links
|
|
'links' => [
|
|
'privacy' => 'Privacy Policy',
|
|
'imprint' => 'Legal Notice',
|
|
],
|
|
|
|
// Accessibility
|
|
'aria' => [
|
|
'open_settings' => 'Open cookie settings',
|
|
'essential_always_active' => 'Strictly necessary cookies are always active',
|
|
'toggle_analytics' => 'Enable or disable analytics cookies',
|
|
],
|
|
|
|
// Status
|
|
'status' => [
|
|
'active' => 'Active',
|
|
'inactive' => 'Disabled',
|
|
'no_consent' => 'You have not yet made any cookie settings.',
|
|
],
|
|
|
|
// Privacy Info Component
|
|
'privacy_info' => [
|
|
'current_settings_title' => 'Your Current Cookie Settings',
|
|
'essential_cookies' => 'Strictly Necessary Cookies',
|
|
'analytics_cookies' => 'Analytics & Statistics (Google Analytics / Tag Manager)',
|
|
'analytics_marketing_cookies' => 'Analytics & Marketing Cookies',
|
|
],
|
|
|
|
// Google Analytics Information
|
|
'google_analytics' => [
|
|
'title' => 'Google Analytics',
|
|
'intro' => 'This website uses Google Analytics, a web analytics service provided by Google Ireland Limited ("Google"), Gordon House, Barrow Street, Dublin 4, Ireland.',
|
|
|
|
'technical_details' => [
|
|
'title' => 'Technical Details',
|
|
'tracking_id' => 'Tracking ID',
|
|
'ip_anonymization' => 'IP Anonymization',
|
|
'ip_anonymization_value' => 'Enabled (anonymize_ip)',
|
|
'consent_mode' => 'Consent Mode',
|
|
'consent_mode_value' => 'Google Consent Mode v2',
|
|
'cookie_duration' => 'Cookie Duration',
|
|
'cookie_duration_value' => ':days days',
|
|
],
|
|
|
|
'purpose' => [
|
|
'title' => 'Purpose of Processing',
|
|
'text' => 'Google Analytics uses cookies that enable an analysis of your use of the website. The information generated by the cookie about your use of this website is usually transmitted to a Google server in the USA and stored there.',
|
|
],
|
|
|
|
'ip_anonymization' => [
|
|
'title' => 'IP Anonymization',
|
|
'text' => 'We have activated the IP anonymization function on this website. This means that your IP address is truncated by Google within member states of the European Union or in other contracting states of the Agreement on the European Economic Area before being transmitted to the USA.',
|
|
],
|
|
|
|
'legal_basis' => [
|
|
'title' => 'Legal Basis',
|
|
'text' => 'Processing is based on your consent pursuant to Art. 6 (1) lit. a GDPR. You can revoke your consent at any time by changing your cookie settings.',
|
|
],
|
|
|
|
'cookies' => [
|
|
'title' => 'Cookies Set by Google Analytics',
|
|
'table' => [
|
|
'name' => 'Cookie',
|
|
'purpose' => 'Purpose',
|
|
'duration' => 'Duration',
|
|
],
|
|
'list' => [
|
|
'_ga' => [
|
|
'purpose' => 'Distinguishing users',
|
|
'duration' => '2 years',
|
|
],
|
|
'_ga_*' => [
|
|
'purpose' => 'Storing session state',
|
|
'duration' => '2 years',
|
|
],
|
|
'_gid' => [
|
|
'purpose' => 'Distinguishing users',
|
|
'duration' => '24 hours',
|
|
],
|
|
'_gat' => [
|
|
'purpose' => 'Throttling request rate',
|
|
'duration' => '1 minute',
|
|
],
|
|
],
|
|
],
|
|
|
|
'objection' => [
|
|
'title' => 'Right to Object',
|
|
'text' => 'You can prevent the collection of data generated by the cookie and related to your use of the website (including your IP address) by Google and the processing of this data by Google by:',
|
|
'options' => [
|
|
'revoke' => 'Revoking your consent in the cookie settings',
|
|
'addon' => 'Installing the browser add-on to disable Google Analytics:',
|
|
],
|
|
],
|
|
|
|
'more_info' => [
|
|
'title' => 'More Information',
|
|
'text' => 'For more information on how Google Analytics handles user data, please see Google\'s privacy policy:',
|
|
],
|
|
],
|
|
|
|
];
|