Changeset 1561 for trunk/gregarius/cls/wrappers/item.php
- Timestamp:
- 09/09/06 14:52:23 (2 years ago)
- Files:
-
- 1 modified
-
trunk/gregarius/cls/wrappers/item.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/gregarius/cls/wrappers/item.php
r1536 r1561 41 41 } 42 42 43 function rss_item_pl_title($label=LBL_PL_FOR) { 44 43 function rss_item_pl_title($label=null){ 44 if (null === $label) { 45 $label = __('Permalink for '); 46 } 45 47 if (getConfig('rss.output.usepermalinks')) { 46 48 list ($ply, $plm, $pld) = explode(":", rss_date("Y:m:d", $GLOBALS['rss'] -> currentItem -> date, false)); … … 197 199 } 198 200 */ 199 return (($GLOBALS['rss']->currentItem->isPubDate? LBL_POSTED:LBL_FETCHED). $date_lbl);201 return (($GLOBALS['rss']->currentItem->isPubDate?__('Posted: '):__('Fetched: ')). $date_lbl); 200 202 } 201 203 } … … 218 220 $a = "<a href=\"".getPath() ."author.php?author=$ea\">$a</a>"; 219 221 } 220 return LBL_BY. $a;222 return __(' by ') . $a; 221 223 } 222 224 }
