Make WordPress Core

Ticket #3401: 3401.diff

File 3401.diff, 8.6 KB (added by rob1n, 16 years ago)
  • wp-admin/post-new.php

     
    2121}
    2222
    2323if ( isset($_GET['posted']) && $_GET['posted'] ) : ?>
    24 <div id="message" class="updated fade"><p><strong><?php _e('Post saved.'); ?></strong> <a href="<?php echo get_permalink( $_GET['posted'] ); ?>"><?php _e('View post'); ?> &raquo;</a></p></div>
     24<div id="message" class="updated fade"><p><strong><?php _e('Post saved.'); ?></strong> <a href="<?php echo get_permalink( $_GET['posted'] ); ?>"><?php _e('View post &raquo;'); ?></a></p></div>
    2525<?php
    2626endif;
    2727
     
    4242        }
    4343
    4444        if ( 15 < count($drafts) ) { ?>
    45                 , <a href="edit.php"><?php echo sprintf(__('and %s more'), (count($drafts) - 15) ); ?> &raquo;</a>
     45                , <a href="edit.php"><?php echo sprintf(__('and %s more &raquo;'), (count($drafts) - 15) ); ?></a>
    4646        <?php } ?>
    4747.</p>
    4848</div>
  • wp-admin/includes/template.php

     
    578578<input type="hidden" name="max_file_size" value="<?php echo $bytes; ?>" />
    579579</p>
    580580<p class="submit">
    581 <input type="submit" value="<?php _e( 'Upload file and import' ); ?> &raquo;" />
     581<input type="submit" value="<?php _e( 'Upload file and import &raquo;' ); ?>" />
    582582</p>
    583583</form>
    584584<?php
  • wp-admin/includes/upload.php

     
    169169<?php   endif; ?>
    170170                                        <?php wp_nonce_field( 'inlineuploading' ); ?>
    171171                                        <div class="submit">
    172                                                 <input type="submit" value="<?php $id ? _e('Save') : _e('Upload'); ?> &raquo;" />
     172                                                <input type="submit" value="<?php $id ? _e('Save &raquo;') : _e('Upload &raquo;'); ?>" />
    173173                                        </div>
    174174                                </td>
    175175                        </tr>
  • wp-admin/custom-header.php

     
    169169<input type="button" value="<?php _e('Hide Text'); ?>" onclick="hide_text()" id="hidetext" />
    170170<input type="button" value="<?php _e('Select a Text Color'); ?>" onclick="colorSelect($('textcolor'), 'pickcolor')" id="pickcolor" /><input type="button" value="<?php _e('Use Original Color'); ?>" onclick="colorDefault()" id="defaultcolor" />
    171171<?php wp_nonce_field('custom-header') ?>
    172 <input type="hidden" name="textcolor" id="textcolor" value="#<?php attribute_escape(header_textcolor()) ?>" /><input name="submit" type="submit" value="<?php _e('Save Changes'); ?> &raquo;" /></form>
     172<input type="hidden" name="textcolor" id="textcolor" value="#<?php attribute_escape(header_textcolor()) ?>" /><input name="submit" type="submit" value="<?php _e('Save Changes &raquo;'); ?>" /></form>
    173173<?php } ?>
    174174
    175175<div id="colorPickerDiv" style="z-index: 100;background:#eee;border:1px solid #ccc;position:absolute;visibility:hidden;"> </div>
     
    183183<input type="hidden" name="action" value="save" />
    184184<?php wp_nonce_field('custom-header') ?>
    185185<p class="submit">
    186 <input type="submit" value="<?php _e('Upload'); ?> &raquo;" />
     186<input type="submit" value="<?php _e('Upload &raquo;'); ?>" />
    187187</p>
    188188</form>
    189189
  • wp-admin/index.php

     
    3939if ( $comments || $numcomments ) :
    4040?>
    4141<div>
    42 <h3><?php _e('Comments'); ?> <a href="edit-comments.php" title="<?php _e('More comments...'); ?>">&raquo;</a></h3>
     42<h3><?php printf( __( 'Comments <a href="%s" title="More comments&#8230;">&raquo;</a>' ), 'edit-comments.php' ); ?></h3>
    4343
    4444<?php if ( $numcomments ) : ?>
    45 <p><strong><a href="moderation.php"><?php echo sprintf(__('Comments in moderation (%s)'), number_format_i18n($numcomments) ); ?> &raquo;</a></strong></p>
     45<p><strong><a href="moderation.php"><?php echo sprintf(__('Comments in moderation (%s) &raquo;'), number_format_i18n($numcomments) ); ?></a></strong></p>
    4646<?php endif; ?>
    4747
    4848<ul>
     
    6363if ( $recentposts = $wpdb->get_results("SELECT ID, post_title FROM $wpdb->posts WHERE post_type = 'post' AND " . get_private_posts_cap_sql('post') . " AND post_date_gmt < '$today' ORDER BY post_date DESC LIMIT 5") ) :
    6464?>
    6565<div>
    66 <h3><?php _e('Posts'); ?> <a href="edit.php" title="<?php _e('More posts...'); ?>">&raquo;</a></h3>
     66<h3><?php printf( __( 'Posts <a href="%s" title="More posts&#8230;">&raquo;</a>' ), 'edit.php' ); ?></h3>
    6767<ul>
    6868<?php
    6969foreach ($recentposts as $post) {
  • wp-admin/index-extra.php

     
    6060        }
    6161?>
    6262</ul>
    63 <p class="readmore"><a href="<?php echo apply_filters( 'dashboard_secondary_link', 'http://planet.wordpress.org/' ); ?>"><?php _e('Read more'); ?> &raquo;</a></p>
     63<p class="readmore"><a href="<?php echo apply_filters( 'dashboard_secondary_link', 'http://planet.wordpress.org/' ); ?>"><?php _e('Read more &raquo;'); ?></a></p>
    6464<?php
    6565}
    6666break;
  • wp-admin/page-new.php

     
    1010?>
    1111
    1212<?php if ( (isset($_GET['posted']) && $_GET['posted'])  || isset($_GET['saved'])  ) : ?>
    13 <div id="message" class="updated fade"><p><strong><?php _e('Page saved.') ?></strong> <a href="edit-pages.php"><?php _e('Manage pages'); ?></a> | <a href="<?php echo get_page_link( isset($_GET['posted']) ? $_GET['posted'] : $_GET['saved'] ); ?>"><?php _e('View page') ; ?> &raquo;</a></p></div>
     13<div id="message" class="updated fade"><p><strong><?php _e('Page saved.') ?></strong> <a href="edit-pages.php"><?php _e('Manage pages'); ?></a> | <a href="<?php echo get_page_link( isset($_GET['posted']) ? $_GET['posted'] : $_GET['saved'] ); ?>"><?php _e('View page &raquo;') ; ?></a></p></div>
    1414<?php endif; ?>
    1515
    1616<?php
  • wp-admin/link-manager.php

     
    195195
    196196<div id="ajax-response"></div>
    197197
    198 <p class="submit"><input type="submit" class="button" name="deletebookmarks" id="deletebookmarks" value="<?php _e('Delete Checked Links') ?> &raquo;" onclick="return confirm('<?php echo js_escape(__("You are about to delete these links permanently.\n'Cancel' to stop, 'OK' to delete.")); ?>')" /></p>
     198<p class="submit"><input type="submit" class="button" name="deletebookmarks" id="deletebookmarks" value="<?php _e('Delete Checked Links &raquo;') ?>" onclick="return confirm('<?php echo js_escape(__("You are about to delete these links permanently.\n'Cancel' to stop, 'OK' to delete.")); ?>')" /></p>
    199199</form>
    200200
    201201<?php } ?>
  • wp-admin/options-permalink.php

     
    131131<p>
    132132        <label>
    133133<input name="selection" type="radio" value="" class="tog" <?php checked('', $permalink_structure); ?> />
    134 <?php _e('Default'); ?><br /> <span> &raquo; <code><?php echo get_option('home'); ?>/?p=123</code></span>
     134<?php _e('Default'); ?><br /> <span> <?php _e( '&raquo;' ); ?> <code><?php echo get_option('home'); ?>/?p=123</code></span>
    135135   </label>
    136136</p>
    137137<p>
    138138        <label>
    139139<input name="selection" type="radio" value="<?php echo $structures[1]; ?>" class="tog" <?php checked($structures[1], $permalink_structure); ?> />
    140 <?php _e('Date and name based'); ?><br /> <span> &raquo; <code><?php echo get_option('home') . $prefix . '/' . date('Y') . '/' . date('m') . '/' . date('d') . '/sample-post/'; ?></code></span>
     140<?php _e('Date and name based'); ?><br /> <span> <?php _e( '&raquo;' ); ?> <code><?php echo get_option('home') . $prefix . '/' . date('Y') . '/' . date('m') . '/' . date('d') . '/sample-post/'; ?></code></span>
    141141   </label>
    142142</p>
    143143<p>
    144144        <label>
    145145<input name="selection" type="radio" value="<?php echo $structures[2]; ?>" class="tog" <?php checked($structures[2], $permalink_structure); ?> />
    146 <?php _e('Numeric'); ?><br /> <span> &raquo; <code><?php echo get_option('home') . $prefix  ; ?>/archives/123</code></span>
     146<?php _e('Numeric'); ?><br /> <span> <?php _e( '&raquo;' ); ?> <code><?php echo get_option('home') . $prefix  ; ?>/archives/123</code></span>
    147147   </label>
    148148</p>
    149149<p>