commit
25d661d702
|
|
@ -1,12 +1,12 @@
|
||||||
/*global tarteaucitron */
|
/*global tarteaucitron */
|
||||||
tarteaucitron.lang = {
|
tarteaucitron.lang = {
|
||||||
"adblock": "Hola! Este sitio web es transparente y le da la opción de activar los servicios de terceros.",
|
"adblock": "Hola! Este sitio web es transparente y le da la opción de activar los servicios de terceros.",
|
||||||
"adblock_call": "Por favor deshabilite su AdBlocker para empezar a personalizar los servicios.",
|
"adblock_call": "Por favor deshabilite su AdBlocker para personalizar los servicios.",
|
||||||
"reload": "Actualizar esta página",
|
"reload": "Actualizar esta página",
|
||||||
|
|
||||||
"alertBigScroll": "Al continuar para desplazarse,",
|
"alertBigScroll": "Al continuar para desplazarse,",
|
||||||
"alertBigClick": "Si continuas navegando por este sitio web,",
|
"alertBigClick": "Si continuas navegando por este sitio web,",
|
||||||
"alertBig": "estar permitiendo servicios terceros",
|
"alertBig": "estas permitiendo servicios de terceros",
|
||||||
|
|
||||||
"alertBigPrivacy": "Este sitio web usa cookies y te permite controlar lo que deseas activar",
|
"alertBigPrivacy": "Este sitio web usa cookies y te permite controlar lo que deseas activar",
|
||||||
"alertSmall": "Gestionar servicios",
|
"alertSmall": "Gestionar servicios",
|
||||||
|
|
@ -35,12 +35,12 @@ tarteaucitron.lang = {
|
||||||
"details": "Las redes publicitarias pueden generar ingresos mediante la venta de espacios publicitarios en el sitio."
|
"details": "Las redes publicitarias pueden generar ingresos mediante la venta de espacios publicitarios en el sitio."
|
||||||
},
|
},
|
||||||
"analytic": {
|
"analytic": {
|
||||||
"title": "Mediciión de audiencia",
|
"title": "Medición de audiencia",
|
||||||
"details": "Los servicios de medición de audiencia se usan para generar asistencia estadísticas útiles para mejorar el sitio."
|
"details": "Los servicios de medición de audiencia se usan para generar asistencia estadísticas útiles para mejorar el sitio."
|
||||||
},
|
},
|
||||||
"social": {
|
"social": {
|
||||||
"title": "Redes sociales",
|
"title": "Redes sociales",
|
||||||
"details": "Las redes sociales pueden aumentar la usabilidad del sitio web y ayudar a promoverlo a través de la contribución."
|
"details": "Las redes sociales pueden aumentar la usabilidad del sitio web y ayudar a promoverlo cuando se comparte."
|
||||||
},
|
},
|
||||||
"video": {
|
"video": {
|
||||||
"title": "Videos",
|
"title": "Videos",
|
||||||
|
|
@ -56,7 +56,7 @@ tarteaucitron.lang = {
|
||||||
},
|
},
|
||||||
"api": {
|
"api": {
|
||||||
"title": "APIs",
|
"title": "APIs",
|
||||||
"details": "APIs se utilizan para cargar scripts: geolocalización, motor de búsqueda, traducciones, ..."
|
"details": "Los APIs se utilizan para cargar scripts: geolocalización, motor de búsqueda, traducciones, ..."
|
||||||
},
|
},
|
||||||
"other": {
|
"other": {
|
||||||
"title": "Otro",
|
"title": "Otro",
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
// define correct path for files inclusion
|
// define correct path for files inclusion
|
||||||
var scripts = document.getElementsByTagName('script'),
|
var scripts = document.getElementsByTagName('script'),
|
||||||
path = scripts[scripts.length - 1].src.split('?')[0],
|
path = scripts[scripts.length - 1].src.split('?')[0],
|
||||||
cdn = path.split('/').slice(0, -1).join('/') + '/',
|
cdn = (tarteaucitronForceCDN === undefined) ? path.split('/').slice(0, -1).join('/') + '/' : tarteaucitronForceCDN,
|
||||||
alreadyLaunch = (alreadyLaunch === undefined) ? 0 : alreadyLaunch,
|
alreadyLaunch = (alreadyLaunch === undefined) ? 0 : alreadyLaunch,
|
||||||
tarteaucitronForceLanguage = (tarteaucitronForceLanguage === undefined) ? '' : tarteaucitronForceLanguage,
|
tarteaucitronForceLanguage = (tarteaucitronForceLanguage === undefined) ? '' : tarteaucitronForceLanguage,
|
||||||
tarteaucitronForceExpire = (tarteaucitronForceExpire === undefined) ? '' : tarteaucitronForceExpire,
|
tarteaucitronForceExpire = (tarteaucitronForceExpire === undefined) ? '' : tarteaucitronForceExpire,
|
||||||
|
|
|
||||||
|
|
@ -1020,7 +1020,16 @@ tarteaucitron.services.gajs = {
|
||||||
"use strict";
|
"use strict";
|
||||||
window._gaq = window._gaq || [];
|
window._gaq = window._gaq || [];
|
||||||
window._gaq.push(['_setAccount', tarteaucitron.user.gajsUa]);
|
window._gaq.push(['_setAccount', tarteaucitron.user.gajsUa]);
|
||||||
window._gaq.push(['_trackPageview']);
|
|
||||||
|
if (tarteaucitron.user.gajsAnonymizeIp) {
|
||||||
|
window._gaq.push (['_gat._anonymizeIp']);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (tarteaucitron.user.gajsPageView) {
|
||||||
|
window._gaq.push(['_trackPageview, ' + tarteaucitron.user.gajsPageView]);
|
||||||
|
} else {
|
||||||
|
window._gaq.push(['_trackPageview']);
|
||||||
|
}
|
||||||
|
|
||||||
tarteaucitron.addScript('//www.google-analytics.com/ga.js', '', function () {
|
tarteaucitron.addScript('//www.google-analytics.com/ga.js', '', function () {
|
||||||
if (typeof tarteaucitron.user.gajsMore === 'function') {
|
if (typeof tarteaucitron.user.gajsMore === 'function') {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue