Show
Ignore:
Timestamp:
10/21/06 20:56:09 (2 years ago)
Author:
misja
Message:

Taking gettext to a new level, see message <http://lists.elgg.org/pipermail/development/2006-October/000590.html>. In a nutshell: all gettext calls are replaced by gettext, revamped gettext handling plus some additional fixes.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • devel/_weblog/everyone.php

    r446 r659  
    1313        templates_page_setup(); 
    1414         
    15         $title = gettext("All blogs");         
     15        $title = __gettext("All blogs");         
    1616 
    1717        $body = run("content:weblogs:view"); 
    1818         
    19         $body .= "<p>" . gettext("You can filter this page to certain types of posts:") . "</p>"; 
     19        $body .= "<p>" . __gettext("You can filter this page to certain types of posts:") . "</p>"; 
    2020        $body .= '<ul>'; 
    21         $body .= '<li><a href="everyone.php?filter=people">' . gettext('Personal blog posts') . '</a></li>'; 
    22         $body .= '<li><a href="everyone.php?filter=communities">' . gettext('Community blog posts') . '</a></li>'; 
    23         $body .= '<li><a href="everyone.php?filter=commented">' . gettext('Posts with comments') . '</a></li>'; 
    24         $body .= '<li><a href="everyone.php?filter=uncommented">' . gettext('Posts with no comments') . '</a></li>'; 
     21        $body .= '<li><a href="everyone.php?filter=people">' . __gettext('Personal blog posts') . '</a></li>'; 
     22        $body .= '<li><a href="everyone.php?filter=communities">' . __gettext('Community blog posts') . '</a></li>'; 
     23        $body .= '<li><a href="everyone.php?filter=commented">' . __gettext('Posts with comments') . '</a></li>'; 
     24        $body .= '<li><a href="everyone.php?filter=uncommented">' . __gettext('Posts with no comments') . '</a></li>'; 
    2525        $body .= '</ul>'; 
    2626