Partially revert datatables strings

This commit is contained in:
Albert Santoni 2015-08-18 15:00:25 -04:00
parent a271b53c2e
commit 5ab0850d9a
1 changed files with 3 additions and 2 deletions

View File

@ -543,6 +543,7 @@ var AIRTIME = (function(AIRTIME) {
// change the oLanguage property of a datatable dynamically. :( // change the oLanguage property of a datatable dynamically. :(
switch (type) { switch (type) {
/*
case 0: case 0:
return getDatatablesStrings({ return getDatatablesStrings({
"sEmptyTable": $.i18n._("No files found"), "sEmptyTable": $.i18n._("No files found"),
@ -557,11 +558,11 @@ var AIRTIME = (function(AIRTIME) {
return getDatatablesStrings({ return getDatatablesStrings({
"sEmptyTable": $.i18n._("No smart blocks found"), "sEmptyTable": $.i18n._("No smart blocks found"),
}); });
break; break;*/
default: default:
return getDatatablesStrings({ return getDatatablesStrings({
"sEmptyTable": $.i18n._(""), "sEmptyTable": $.i18n._(""),
"sZeroRecords": $.i18n._("") "sZeroRecords": $.i18n._("No matching results found.")
}); });
break; break;
}; };