I'm trying to implement this tool that I found absolutely marvelous: Data Tables + Semantic UI
Now, download the js and css reference, and I still see the parts of the table in English. I want to clarify that I edited the file jquery.dataTables.min.js and replaced all the items that were in English and still continues to show me everything in English:
SOLUTION
THANKS TO THE CONTRIBUTION OF THE FRIEND WHO GUIDED ME, he passed me a code that did not really work in the example, but I looked in the documentation of the site and found something that did work:
<script>
$(document).ready(function() {
$('#tabla').DataTable({
language:
{
"sProcessing": "Procesando...",
"sLengthMenu": "Mostrar _MENU_ registros",
"sZeroRecords": "No se encontraron resultados",
"sEmptyTable": "Ningún dato disponible en esta tabla",
"sInfo": "Mostrando registros del _START_ al _END_ de un total de _TOTAL_ registros",
"sInfoEmpty": "Mostrando registros del 0 al 0 de un total de 0 registros",
"sInfoFiltered": "(filtrado de un total de _MAX_ registros)",
"sInfoPostFix": "",
"sSearch": "Buscar: ",
"sUrl": "",
"sInfoThousands": ",",
"sLoadingRecords": "Cargando...",
"oPaginate": {
"sFirst": "Primero",
"sLast": "Último",
"sNext": "Siguiente",
"sPrevious": "Anterior"
},
"oAria": {
"sSortAscending": ": Activar para ordenar la columna de manera ascendente",
"sSortDescending": ": Activar para ordenar la columna de manera descendente"
}
}
});
});
</script>
Now I upload an image of how it was: