Changeset 24119 for trunk/wp-admin/revision.php
- Timestamp:
- 04/28/2013 10:56:57 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/revision.php
r24019 r24119 100 100 <?php screen_icon(); ?> 101 101 <div id="revision-diff-container" class="current-version right-model-loading"> 102 <h2 class="long-header"><?php echo $h2; ?></h2> 103 102 104 <div id="loading-status" class="updated message"> 103 < span class="spinner" ></span> <?php _e( 'Calculating revision diffs' ); ?>105 <p><span class="spinner" ></span> <?php _e( 'Calculating revision diffs' ); ?></p> 104 106 </div> 105 106 <h2 class="long-header"><?php echo $h2; ?></h2>107 107 108 108 <div class="diff-slider-ticks-wrapper"> … … 124 124 </div> 125 125 126 <div id="diff-header-from" class="diff-header"> 127 <div id="diff-title-from-current-version" class="diff-title"> 128 <?php printf( '<strong>%1$s</strong> %2$s.' , __( 'From:' ), __( 'the current version' ) ); ?> 126 <div id="diff-header"> 127 <div id="diff-header-from" class="diff-header"> 128 <div id="diff-title-from-current-version" class="diff-title"> 129 <?php printf( '<strong>%1$s</strong> %2$s.' , __( 'From:' ), __( 'the current version' ) ); ?> 130 </div> 131 132 <div id="diff-title-from" class="diff-title"> 133 <strong><?php _e( 'From:' ); ?></strong> {{{ data.titleFrom }}} 134 </div> 129 135 </div> 130 136 131 <div id="diff-title-from" class="diff-title"> 132 <strong><?php _e( 'From:' ); ?></strong> {{{ data.titleFrom }}} 137 <div id="diff-header-to" class="diff-header"> 138 <div id="diff-title-to" class="diff-title"> 139 <strong><?php _e( 'To:' ); ?></strong> {{{ data.titleTo }}} 140 </div> 141 142 <input type="button" id="restore-revision" class="button button-primary" data-restore-link="{{{ data.restoreLink }}}" value="<?php esc_attr_e( 'Restore This Revision' )?>" /> 133 143 </div> 134 144 </div> 135 145 136 <div id="diff-header-to" class="diff-header">137 <div id="diff-title-to" class="diff-title">138 <strong><?php _e( 'To:' ); ?></strong> {{{ data.titleTo }}}139 </div>140 141 <input type="button" id="restore-revision" class="button button-primary" data-restore-link="{{{ data.restoreLink }}}" value="<?php esc_attr_e( 'Restore This Revision' )?>" />142 146 </div> 143 147
Note: See TracChangeset
for help on using the changeset viewer.