Changeset 5676 for trunk/wp-admin/index.php
- Timestamp:
- 06/11/2007 09:05:50 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/index.php
r5636 r5676 40 40 ?> 41 41 <div> 42 <h3><?php _e('Comments'); ?> <a href="edit-comments.php" title="<?php _e('More comments...'); ?>">»</a></h3>42 <h3><?php printf( __( 'Comments <a href="%s" title="More comments…">»</a>' ), 'edit-comments.php' ); ?></h3> 43 43 44 44 <?php if ( $numcomments ) : ?> 45 <p><strong><a href="moderation.php"><?php echo sprintf(__('Comments in moderation (%s) '), number_format_i18n($numcomments) ); ?> »</a></strong></p>45 <p><strong><a href="moderation.php"><?php echo sprintf(__('Comments in moderation (%s) »'), number_format_i18n($numcomments) ); ?></a></strong></p> 46 46 <?php endif; ?> 47 47 … … 64 64 ?> 65 65 <div> 66 <h3><?php _e('Posts'); ?> <a href="edit.php" title="<?php _e('More posts...'); ?>">»</a></h3>66 <h3><?php printf( __( 'Posts <a href="%s" title="More posts…">»</a>' ), 'edit.php' ); ?></h3> 67 67 <ul> 68 68 <?php
Note: See TracChangeset
for help on using the changeset viewer.