Show
Ignore:
Timestamp:
09/09/06 14:52:23 (2 years ago)
Author:
mbonetti
Message:

Yay for gettext localization! This will probably break things big time.
Note that until intl/*.php isn't adapted the the new method, the trunk
won't be localized!

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/gregarius/cls/taglist.php

    r1181 r1561  
    6767    function TagList() { 
    6868        $this -> populate(); 
    69         $this ->    columnTitle = LBL_TAG_TAGS; 
     69        $this ->    columnTitle = __('Tags'); 
    7070        $GLOBALS['rss']-> feedList = $this; 
    7171    } 
     
    8484     
    8585    function getStats() { 
    86         return sprintf(LBL_TAGCOUNT_PF, $this -> countTaggedItems, $this->tagCount); 
     86        return sprintf(__('<strong>%d</strong> tagged items, in <strong>%d</strong> tags'), $this -> countTaggedItems, $this->tagCount); 
    8787    } 
    8888