Change button language
Change button language

I want to change the previous and next button languages, currently I have this code on:
$(tablePosts).DataTable({
"order": [
[ 1, "desc" ]
],
"language": {
"lengthMenu": "Mostrar _MENU_ posts por página",
"zeroRecords": "Nenhum post encontrado",
"info": "Mostrando página _PAGE_ de _PAGES_",
"infoEmpty": "Nenhum post disponível",
"infoFiltered": "(filtrado do total de _MAX_ posts)"
}
});
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
language.paginate.next
andlanguage.paginate.last
. All of the options are listed and searchable here.Allan
My bad, I searched around but didn't find those pages. Thanks man.