Changeset 1561 for trunk/gregarius/cls/channels.php
- Timestamp:
- 09/09/06 14:52:23 (2 years ago)
- Files:
-
- 1 modified
-
trunk/gregarius/cls/channels.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/gregarius/cls/channels.php
r1544 r1561 97 97 98 98 if ($unreadCount > 0) { 99 $this->rdLbl= sprintf( LBL_UNREAD_PF, "cid$id","",$unreadCount);99 $this->rdLbl= sprintf(__('<strong id="%s" style="%s">(%d unread)</strong>'), "cid$id","",$unreadCount); 100 100 $this->class_= "feed title unread"; 101 101 } else { … … 151 151 var $activeId; 152 152 var $feedCount = 0; 153 var $columnTitle = LBL_H2_CHANNELS;153 var $columnTitle; 154 154 var $stats; 155 155 156 156 function FeedList($activeId) { 157 157 _pf('FeedList() ctor'); 158 $this ->columnTitle= __('Feeds'); 158 159 $this->activeId = $activeId; 159 160 $this->loadCollapsedState(); … … 191 192 _pf(' ... done: feedsCount'); 192 193 193 $this ->stats = sprintf( LBL_ITEMCOUNT_PF, $total, $unread, $channelcount);194 $this ->stats = sprintf(__('<strong>%d</strong> items (<strong id="fucnt">%d</strong> unread) in <strong>%d</strong> feeds'), $total, $unread, $channelcount); 194 195 _pf('done: getStats()'); 195 196 return $this -> stats;
