Changeset 45382
- Timestamp:
- 05/23/2019 01:11:04 AM (5 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/link-manager.php
r45140 r45382 109 109 echo '<div id="message" class="updated notice is-dismissible"><p>'; 110 110 $deleted = (int) $_REQUEST['deleted']; 111 printf( _n( '%s link deleted.', '%s links deleted ', $deleted ), $deleted );111 printf( _n( '%s link deleted.', '%s links deleted.', $deleted ), $deleted ); 112 112 echo '</p></div>'; 113 113 $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'deleted' ), $_SERVER['REQUEST_URI'] ); -
trunk/src/wp-admin/options-discussion.php
r45140 r45382 89 89 <label for="show_comments_cookies_opt_in"> 90 90 <input name="show_comments_cookies_opt_in" type="checkbox" id="show_comments_cookies_opt_in" value="1" <?php checked( '1', get_option( 'show_comments_cookies_opt_in' ) ); ?> /> 91 <?php _e( 'Show comments cookies opt-in checkbox, allowing comment author cookies to be set .' ); ?>91 <?php _e( 'Show comments cookies opt-in checkbox, allowing comment author cookies to be set' ); ?> 92 92 </label> 93 93 <br /> -
trunk/src/wp-admin/setup-config.php
r44738 r45382 410 410 </p> 411 411 <textarea id="wp-config" cols="98" rows="15" class="code" readonly="readonly"><?php echo $config_text; ?></textarea> 412 <p><?php _e( 'After you’ve done that, click “Run the installation .”' ); ?></p>412 <p><?php _e( 'After you’ve done that, click “Run the installation”.' ); ?></p> 413 413 <p class="step"><a href="<?php echo $install; ?>" class="button button-large"><?php _e( 'Run the installation' ); ?></a></p> 414 414 <script>
Note: See TracChangeset
for help on using the changeset viewer.