Changeset 5676
- Timestamp:
- 06/11/2007 09:05:50 PM (18 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/custom-header.php
r5478 r5676 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 … … 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> -
trunk/wp-admin/includes/template.php
r5666 r5676 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> -
trunk/wp-admin/includes/upload.php
r5653 r5676 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> -
trunk/wp-admin/index-extra.php
r5640 r5676 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 } -
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 -
trunk/wp-admin/link-manager.php
r5642 r5676 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 -
trunk/wp-admin/page-new.php
r4915 r5676 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 -
trunk/wp-admin/post-new.php
r5384 r5676 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; … … 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>
Note: See TracChangeset
for help on using the changeset viewer.