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

    r1181 r1561  
    6060            is_array($cidfid) &&  
    6161            ($uc = getUnreadCount($cidfid['cid'], $cidfid['fid']))) { 
    62             $this->docTitle .= " ($uc ".LBL_UNREAD.")"; 
     62            $this->docTitle .= " ($uc ".__('unread').")"; 
    6363        } 
    6464 
     
    9595         
    9696        $GLOBALS['rss'] -> sideMenu = new SideMenu(); 
    97         $GLOBALS['rss'] -> sideMenu -> addMenu(LBL_H2_CHANNELS,'FeedList' , "_side('FeedList')"); 
    98         $GLOBALS['rss'] -> sideMenu -> addMenu(LBL_TAG_FOLDERS, 'CatList', "_side('CatList')"); 
    99         $GLOBALS['rss'] -> sideMenu -> addMenu(LBL_TAG_TAGS, 'TagList', "_side('TagList')"); 
     97        $GLOBALS['rss'] -> sideMenu -> addMenu(__('Feeds'),'FeedList' , "_side('FeedList')"); 
     98        $GLOBALS['rss'] -> sideMenu -> addMenu(__('Categories'), 'CatList', "_side('CatList')"); 
     99        $GLOBALS['rss'] -> sideMenu -> addMenu(__('Tags'), 'TagList', "_side('TagList')"); 
    100100    } 
    101101