# This patch file was generated by NetBeans IDE # This patch can be applied using context Tools: Apply Diff Patch action on respective folder. # It uses platform neutral UTF-8 encoding. # Above lines and this line are ignored by the patching process. --- C:\wamp\www\drupal-6.6\sites\all\modules\nodeadmin\nodeadmin.js +++ C:\Documents and Settings\JSCL\My Documents\Descargas\nodeadmin\nodeadmin.js @@ -71,10 +71,10 @@ $('span#numberResults').text(' / ' + nodeCount); $('div#pageResults').empty(); if (num == 0) { - tableBody.append($('No results found.
Sin resultados.').fadeOut(5000)); + tableBody.append($('No results found.').fadeOut(5000)); } else { - var pageResults = Drupal.t('Go to result:'); + var pageResults = 'Go to result: '; perPage = Number($('input#optionLimit').val()); numPages = Math.ceil(nodeCount / perPage); num = 1; @@ -344,8 +344,7 @@ function setWorking() { if ($('#nodeadmin-working').length == 0) { - var title = Drupal.t('Working'); - $('body').append($('
'+ title + ' ...
')); + $('body').append($('
Working ...
')); } else { $('#nodeadmin-working').fadeIn(200); @@ -373,9 +372,9 @@ } function formatNodeButtons(nid, opened) { - str = "View" + - " Edit" + - " Delete"; + str = "View" + + " Edit" + + " Delete"; if (opened) { str += " Close"; }