Show
Ignore:
Timestamp:
10/16/06 06:31:35 (2 years ago)
Author:
mdodoo
Message:

Sync with trunk up to (but not including changeset [1585]). I should *definitely* do this more often, because this was really annoying.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/multiuser/search.php

    r1530 r1604  
    4141    $humanReadableQuery = $items->humanReadableQuery; 
    4242    $title = sprintf((($cnt > 1 || $cnt == 0) ? 
    43                       LBL_H2_SEARCH_RESULTS_FOR : LBL_H2_SEARCH_RESULT_FOR), $cnt, "'".$humanReadableQuery."'"); 
     43                      __('%d matches for %s') : __('%d match for %s')), $cnt, "'".$humanReadableQuery."'"); 
    4444 
    4545    $items->setTitle($title); 
     
    4949                                         .   " not(unread & " . RSS_MODE_DELETED_STATE  .") " 
    5050                                        )); 
    51     $items->setTitle(sprintf(LBL_H2_SEARCH, $cnt)); 
    52     $GLOBALS['rss'] -> header = new Header(LBL_TITLE_SEARCH,LOCATION_SEARCH,null,"document.getElementById('".QUERY_PRM."').focus()"); 
     51    $items->setTitle(sprintf(__('Search %d items'), $cnt)); 
     52    $GLOBALS['rss'] -> header = new Header(__('Search'),LOCATION_SEARCH,null,"document.getElementById('".QUERY_PRM."').focus()"); 
    5353} 
    5454$GLOBALS['rss'] -> appendContentObject($items);