<?php

/*
* This file is part of eSales Media cookieconsent module
*
* (c) Benjamin Roth
*
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL
*/

/**
 * Explanations
 */
$GLOBALS['TL_LANG']['XPL']['cookieconsent_categories'][0] = array
(
  "Example configuration for a category",
  nl2br(str_replace(' ','&nbsp;',"ads: {
    needed: false,
    wanted: false,
    checked: false,
    language: {
      locale: {
        de: {
          name: 'Werbung und Marketing',
          description: 'Diese Cookies erlauben uns Werbung zielgerichtet für Sie azsuliefern. Dadurch sehen Sie ggf. für Sie relevantere Werbeanzeigen.',
        },
        en: {
          name: 'Ads and Marketing',
          description: 'These cookies allow us to deliver targeted advertising to you. This allows you to see advertisements that may be more relevant to you.',
        }
      }
    }
  }"))
);

$GLOBALS['TL_LANG']['XPL']['cookieconsent_services'][0] = array
(
  "Example configuration for a service",
  nl2br(str_replace(' ','&nbsp;',"analytics: {
    category: 'necessary',
    type: 'dynamic-script',
    search: 'analytics',
    language: {
      locale: {
        de: {
          name: 'Google Analytics'
        },
        en: {
          name: 'Google Analytics'
        }
      }
    }
  }"))
);