Original price was: $12,409.00.$6,925.08Current price is: $6,925.08. (IVA incluido)
Detecta impactos de rayos con precisión
165 in stock
Descripción
Con la idea de brindar una manera fácil de saber si el sistema de pararrayos ha recibido una descarga y para cumplir con las normativas, TOTAL GROUND diseña y fabrica el contador de descargas TG-CDA.
El contador de descargas atmosféricas, o contador de rayos, es un dispositivo electrónico diseñado para detectar los impactos de los rayos en las instalaciones de protección atmosférica y permitir el control y la verificación inmediatos de las mismas.
CARACTERÍSTICAS: {
let texto = $(el).text();
if (texto.includes('Showing')) {
let nuevoTexto = texto.replace(/Showing/g, 'Mostrando')
.replace(/all/g, 'todos los')
.replace(/of/g, 'de')
.replace(/results/g, 'resultados')
.replace(/result\b/g, 'resultado'); // El \b evita el error "resultadoados"
if (texto !== nuevoTexto) $(el).text(nuevoTexto);
}
};
aplicarTraduccion(target);
if (!this.hasObserver) {
const observer = new MutationObserver(() => aplicarTraduccion(target));
observer.observe(target, { childList: true, characterData: true, subtree: true });
this.hasObserver = true;
}
});
// Login y Breadcrumbs
$('.woocommerce-breadcrumb a:contains("Home")').text('Inicio');
$('button[name="login"]').text('Acceder');
// Carrito Vacío y Novedades
$(':contains("Your Cart Is Currently Empty!")').filter('p, div, h2, h3').each(function() {
if ($(this).children().length === 0 || $(this).hasClass('cart-empty')) {
$(this).text('¡Tu carrito está vacío actualmente!');
}
});
$('h1, h2, h3, h4, .title, .widget-title').each(function() {
if ($(this).text().trim() === 'New In Store') {
$(this).text('Novedades en la tienda');
}
});
}
$(document).ready(function() {
traducirTextos();
setTimeout(traducirTextos, 1500);
if (window.location.href.includes('cart')) {
setTimeout(traducirTextos, 3000);
}
});
$(document).on('added_to_wishlist updated_wc_div updated_cart_totals updated_checkout', function() {
setTimeout(traducirTextos, 500);
});
})(jQuery);







