Translation is not working. How to solve this?

Translation is not working. How to solve this?

toplisektoplisek Posts: 26Questions: 5Answers: 0
edited March 2013 in General
$(document).ready(function() {
$('#example').dataTable( {
"oLanguage": {
"oPaginate": {
"sFirst": "fp",
"sLast": "lp",
"sNext": "Nextp",
"sPrevious": "Previous page",
"sEmptyTable": "norec",
"sInfo": "Got a total of _TOTAL_ entries to show (_START_ to _END_)",
"sInfoEmpty": "no rec",
"sInfoFiltered": " - filtering from _MAX_ records",
"sInfoThousands": "'",
"sLengthMenu": 'Display '+
'10'+
'20'+
'30'+
'40'+
'50'+
'All'+
' records',
"sLoadingRecords": "Loading...",
"sSearch": "filter rec",
"sZeroRecords": "No data"
}
},
"fnDrawCallback": function ( oSettings ) {
var that = this;

/* Need to redo the counters if filtered or sorted */
if ( oSettings.bSorted || oSettings.bFiltered )
{
this.$('td:first-child', {"filter":"applied"}).each( function (i) {
that.fnUpdate( i+1, this.parentNode, 0, false, false );
} );
}
},
"aoColumnDefs": [
{ "bSortable": false, "aTargets": [ 0 ] }
],
"aaSorting": [[ 1, 'asc' ]]
} );
} );
This discussion has been closed.