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/state.php

    r1435 r1604  
    3434if(array_key_exists('state', $_GET) && RSS_STATE_FLAG == $_GET['state']) { 
    3535    $items -> populate( "i.unread & " . RSS_MODE_FLAG_STATE ); 
    36     $GLOBALS['rss'] -> header = new Header(LBL_FLAG . " " . LBL_ITEMS); 
     36    $GLOBALS['rss'] -> header = new Header(__('Flagged') . " " . __('items')); 
    3737} else if (array_key_exists('state', $_GET) && RSS_STATE_STICKY == $_GET['state']) { 
    3838    $items -> populate( "i.unread & " . RSS_MODE_STICKY_STATE   ); 
    39     $GLOBALS['rss'] -> header = new Header(LBL_STICKY . " " . LBL_ITEMS); 
     39    $GLOBALS['rss'] -> header = new Header(__('Sticky') . " " . __('items')); 
    4040} else { 
    4141    $items -> populate( "i.unread & " . RSS_MODE_FLAG_STATE . " OR i.unread & " . RSS_MODE_STICKY_STATE ); 
    42     $GLOBALS['rss'] -> header = new Header(LBL_ITEMS); 
     42    $GLOBALS['rss'] -> header = new Header(__('items')); 
    4343} 
    4444