Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/25/2009 03:53:13 AM (16 years ago)
Author:
apeatling
Message:

Fixes #488 and a large number of localization issues.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/buddypress-theme/buddypress-home/archive.php

    r1052 r1138  
    3030
    3131            <div class="navigation">
    32                 <div class="alignleft"><?php next_posts_link('&laquo; Previous Entries') ?></div>
    33                 <div class="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></div>
     32                <div class="alignleft"><?php next_posts_link( __( '&laquo; Previous Entries', 'buddypress' ) ) ?></div>
     33                <div class="alignright"><?php previous_posts_link( __( 'Next Entries &raquo;', 'buddypress' ) ) ?></div>
    3434            </div>
    3535
    3636            <?php while (have_posts()) : the_post(); ?>
    3737            <div class="post">
    38                     <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
     38                    <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e( 'Permanent Link to', 'buddypress' ) ?> <?php the_title(); ?>"><?php the_title(); ?></a></h3>
    3939                    <small><?php the_time('l, F jS, Y') ?></small>
    4040
     
    4343                    </div>
    4444
    45                     <p class="postmetadata"><?php _e( 'Posted in', 'buddypress' ) ?> <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>  <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?></p>
     45                    <p class="postmetadata"><?php _e( 'Posted in', 'buddypress' ) ?> <?php the_category(', ') ?> | <?php edit_post_link( __( 'Edit', 'buddypress' ), '', ' | '); ?>  <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?></p>
    4646
    4747                </div>
     
    5050
    5151            <div class="navigation">
    52                 <div class="alignleft"><?php next_posts_link('&laquo; Previous Entries') ?></div>
    53                 <div class="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></div>
     52                <div class="alignleft"><?php next_posts_link( __( '&laquo; Previous Entries', 'buddypress' ) ) ?></div>
     53                <div class="alignright"><?php previous_posts_link( __( 'Next Entries &raquo;', 'buddypress' ) ) ?></div>
    5454            </div>
    5555
Note: See TracChangeset for help on using the changeset viewer.