commit
f55e344856
@ -0,0 +1,30 @@
|
||||
/**
|
||||
* Pashto translation
|
||||
* @name Pashto
|
||||
* @anchor Pashto
|
||||
* @author <a href="http://mbrig.com/">MBrig | Muhammad Nasir Rahimi</a>
|
||||
*/
|
||||
|
||||
{
|
||||
"sEmptyTable": "جدول خالي دی",
|
||||
"sInfo": "د _START_ څخه تر _END_ پوري، له ټولو _TOTAL_ څخه",
|
||||
"sInfoEmpty": "د 0 څخه تر 0 پوري، له ټولو 0 څخه",
|
||||
"sInfoFiltered": "(لټول سوي له ټولو _MAX_ څخه)",
|
||||
"sInfoPostFix": "",
|
||||
"sInfoThousands": ",",
|
||||
"sLengthMenu": "_MENU_ کتاره وښايه",
|
||||
"sLoadingRecords": "منتظر اوسئ...",
|
||||
"sProcessing": "منتظر اوسئ...",
|
||||
"sSearch": "لټون:",
|
||||
"sZeroRecords": "د لټون مطابق معلومات و نه موندل سول",
|
||||
"oPaginate": {
|
||||
"sFirst": "لومړۍ",
|
||||
"sLast": "وروستۍ",
|
||||
"sNext": "بله",
|
||||
"sPrevious": "شاته"
|
||||
},
|
||||
"oAria": {
|
||||
"sSortAscending": ": په صعودي ډول مرتبول",
|
||||
"sSortDescending": ": په نزولي ډول مرتبول"
|
||||
}
|
||||
}
|
@ -0,0 +1,29 @@
|
||||
/**
|
||||
* Telugu translation (te, te-IN)
|
||||
* @name Telugu
|
||||
* @anchor Telugu
|
||||
* @author <a href="https://in.linkedin.com/in/srinivas-rathikrindi-0405973a">Srinivas Rathikrindi</a>
|
||||
**/
|
||||
{
|
||||
"sEmptyTable": "పట్టికలో డేటా లేదు.",
|
||||
"sInfo": "మొత్తం _TOTAL_ ఎంట్రీలులో _START_ నుండి _END_ వరకు చూపిస్తున్నాం",
|
||||
"sInfoEmpty": "చూపిస్తున్నాం 0 నుండి 0 వరకు 0 ఎంట్రీలు లో",
|
||||
"sInfoFiltered": "( _MAX_ ఎంట్రీలులో నుండి వడపోయాబడినవి)",
|
||||
"sInfoPostFix": "",
|
||||
"sInfoThousands": ",",
|
||||
"sLengthMenu": " _MENU_ ఎంట్రీలు చూపించు",
|
||||
"sLoadingRecords": "లోడ్ అవుతుంది ...",
|
||||
"sProcessing": "ప్రాసెస్ చేయబడుతుంది...",
|
||||
"sSearch": "వెతుకు:",
|
||||
"sZeroRecords": "మ్యాచింగ్ రికార్డులు లేవు",
|
||||
"oPaginate": {
|
||||
"sFirst": "మొదటి",
|
||||
"sLast": "చివరి",
|
||||
"sNext": "తర్వాత",
|
||||
"sPrevious": "మునుపటి"
|
||||
},
|
||||
"oAria": {
|
||||
"sSortAscending": ": నిలువరుసను ఆరోహణ క్రమం అమర్చండి",
|
||||
"sSortDescending": ": నిలువరుసను అవరోహణ క్రమం అమర్చండి"
|
||||
}
|
||||
}
|
@ -0,0 +1,42 @@
|
||||
/**
|
||||
* This plug-in will add automatic negative currency detection for currency columns to
|
||||
* DataTables. Note that only $, c, £ and € symbols are detected with this code,
|
||||
* This plugin has also been updated to automatically detect negative values either those
|
||||
* using '-' as well as numbers using '()' to specify negatives.
|
||||
* This plugin also includes automatic type detection
|
||||
*
|
||||
* @name brackets-negative
|
||||
* @summary Detect data of currency type with a leading currency symbol as well at detect two types of negative number formatting
|
||||
* @author [Tom Buckle](http://sprymedia.co.uk)
|
||||
*/
|
||||
(function(){
|
||||
// Change this list to the valid characters you want to be detected
|
||||
var validChars = "$£€c" + "0123456789" + ".-,()'";
|
||||
// Init the regex just once for speed - it is "closure locked"
|
||||
var
|
||||
str = jQuery.fn.dataTableExt.oApi._fnEscapeRegex( validChars ),re = new RegExp('[^'+str+']');
|
||||
$.fn.dataTableExt.aTypes.unshift(
|
||||
function ( data )
|
||||
{
|
||||
if ( typeof data !== 'string' || re.test(data) ) {
|
||||
return null;
|
||||
}
|
||||
return 'currency';
|
||||
}
|
||||
);
|
||||
$.fn.dataTable.ext.type.order['currency-pre'] = function ( data ) {
|
||||
//Check if its in the proper format
|
||||
if(data.match(/[\()]/g)){
|
||||
if( data.match(/[\-]/g) !== true){
|
||||
//It matched - strip out parentheses & any characters we dont want and append - at front
|
||||
data = '-' + data.replace(/[\$£€c\(\),]/g,'');
|
||||
}else{
|
||||
//Already has a '-' so just strip out non-numeric charactors exluding '-'
|
||||
data = data.replace(/[^\d\-\.]/g,'');
|
||||
}
|
||||
}else{
|
||||
data = data.replace(/[\$£€\,]/g,'');
|
||||
}
|
||||
return parseInt( data, 10 );
|
||||
};
|
||||
}());
|
Loading…
Reference in new issue