From: Jakub Skoczen Date: Thu, 3 Mar 2011 10:18:40 +0000 (+0100) Subject: Report no result in a better way X-Git-Url: http://git.indexdata.com/?p=mkdru-moved-to-drupal.org.git;a=commitdiff_plain;h=c91f32e85a33069730fb24c71db521e1e9f6cfa6 Report no result in a better way --- diff --git a/mkdru.theme.js b/mkdru.theme.js index 13886d9..c919ffd 100644 --- a/mkdru.theme.js +++ b/mkdru.theme.js @@ -101,8 +101,11 @@ Drupal.theme.prototype.mkdruPager = function (pages, start, current, total, prev }; Drupal.theme.prototype.mkdruCounts = function(first, last, available, total) { - return first + Drupal.t(' to ') + last + Drupal.t(' of ') + available + if (last > 0) + return first + Drupal.t(' to ') + last + Drupal.t(' of ') + available + Drupal.t(' available (') + total + Drupal.t(' found)'); + else + return Drupal.t('No results'); }; Drupal.theme.prototype.mkdruStatus = function(activeClients, clients) {