Original price was: $59.71.$38.01Current price is: $38.01. (IVA incluido)
Voltaje de operación de 3.5V a 14V
14 in stock
Descripción
Led Verde WP56BGD
| Through Hole | |
| T-1 3/4 (5 mm) | |
| 568 nm | |
| Green | |
| 22 mA | |
| 3.5 V to 14 V | |
| 5 mm | |
| Dome | |
| Diffused | |
| Marca: | Kingbright |
| Tamaño de LED: | T-1 3/4 (5 mm) |
| Intensidad luminosa: | 20 mcd |
| Temperatura de trabajo máxima: | + 70 C |
| Temperatura de trabajo mínima: |
– 40 C |
{
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);







