Ticket #3401: 3401.diff
File 3401.diff, 8.6 KB (added by , 16 years ago) |
---|
-
wp-admin/post-new.php
21 21 } 22 22 23 23 if ( 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 '); ?> »</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 »'); ?></a></p></div> 25 25 <?php 26 26 endif; 27 27 … … 42 42 } 43 43 44 44 if ( 15 < count($drafts) ) { ?> 45 , <a href="edit.php"><?php echo sprintf(__('and %s more '), (count($drafts) - 15) ); ?> »</a>45 , <a href="edit.php"><?php echo sprintf(__('and %s more »'), (count($drafts) - 15) ); ?></a> 46 46 <?php } ?> 47 47 .</p> 48 48 </div> -
wp-admin/includes/template.php
578 578 <input type="hidden" name="max_file_size" value="<?php echo $bytes; ?>" /> 579 579 </p> 580 580 <p class="submit"> 581 <input type="submit" value="<?php _e( 'Upload file and import ' ); ?> »" />581 <input type="submit" value="<?php _e( 'Upload file and import »' ); ?>" /> 582 582 </p> 583 583 </form> 584 584 <?php -
wp-admin/includes/upload.php
169 169 <?php endif; ?> 170 170 <?php wp_nonce_field( 'inlineuploading' ); ?> 171 171 <div class="submit"> 172 <input type="submit" value="<?php $id ? _e('Save ') : _e('Upload'); ?> »" />172 <input type="submit" value="<?php $id ? _e('Save »') : _e('Upload »'); ?>" /> 173 173 </div> 174 174 </td> 175 175 </tr> -
wp-admin/custom-header.php
169 169 <input type="button" value="<?php _e('Hide Text'); ?>" onclick="hide_text()" id="hidetext" /> 170 170 <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" /> 171 171 <?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 '); ?> »" /></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 »'); ?>" /></form> 173 173 <?php } ?> 174 174 175 175 <div id="colorPickerDiv" style="z-index: 100;background:#eee;border:1px solid #ccc;position:absolute;visibility:hidden;"> </div> … … 183 183 <input type="hidden" name="action" value="save" /> 184 184 <?php wp_nonce_field('custom-header') ?> 185 185 <p class="submit"> 186 <input type="submit" value="<?php _e('Upload '); ?> »" />186 <input type="submit" value="<?php _e('Upload »'); ?>" /> 187 187 </p> 188 188 </form> 189 189 -
wp-admin/index.php
39 39 if ( $comments || $numcomments ) : 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 48 48 <ul> … … 63 63 if ( $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") ) : 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 69 69 foreach ($recentposts as $post) { -
wp-admin/index-extra.php
60 60 } 61 61 ?> 62 62 </ul> 63 <p class="readmore"><a href="<?php echo apply_filters( 'dashboard_secondary_link', 'http://planet.wordpress.org/' ); ?>"><?php _e('Read more '); ?> »</a></p>63 <p class="readmore"><a href="<?php echo apply_filters( 'dashboard_secondary_link', 'http://planet.wordpress.org/' ); ?>"><?php _e('Read more »'); ?></a></p> 64 64 <?php 65 65 } 66 66 break; -
wp-admin/page-new.php
10 10 ?> 11 11 12 12 <?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 ') ; ?> »</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 »') ; ?></a></p></div> 14 14 <?php endif; ?> 15 15 16 16 <?php -
wp-admin/link-manager.php
195 195 196 196 <div id="ajax-response"></div> 197 197 198 <p class="submit"><input type="submit" class="button" name="deletebookmarks" id="deletebookmarks" value="<?php _e('Delete Checked Links ') ?> »" 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 »') ?>" onclick="return confirm('<?php echo js_escape(__("You are about to delete these links permanently.\n'Cancel' to stop, 'OK' to delete.")); ?>')" /></p> 199 199 </form> 200 200 201 201 <?php } ?> -
wp-admin/options-permalink.php
131 131 <p> 132 132 <label> 133 133 <input name="selection" type="radio" value="" class="tog" <?php checked('', $permalink_structure); ?> /> 134 <?php _e('Default'); ?><br /> <span> »<code><?php echo get_option('home'); ?>/?p=123</code></span>134 <?php _e('Default'); ?><br /> <span> <?php _e( '»' ); ?> <code><?php echo get_option('home'); ?>/?p=123</code></span> 135 135 </label> 136 136 </p> 137 137 <p> 138 138 <label> 139 139 <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> »<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( '»' ); ?> <code><?php echo get_option('home') . $prefix . '/' . date('Y') . '/' . date('m') . '/' . date('d') . '/sample-post/'; ?></code></span> 141 141 </label> 142 142 </p> 143 143 <p> 144 144 <label> 145 145 <input name="selection" type="radio" value="<?php echo $structures[2]; ?>" class="tog" <?php checked($structures[2], $permalink_structure); ?> /> 146 <?php _e('Numeric'); ?><br /> <span> »<code><?php echo get_option('home') . $prefix ; ?>/archives/123</code></span>146 <?php _e('Numeric'); ?><br /> <span> <?php _e( '»' ); ?> <code><?php echo get_option('home') . $prefix ; ?>/archives/123</code></span> 147 147 </label> 148 148 </p> 149 149 <p>