Ticket #23432: 23432.diff
File 23432.diff, 5.5 KB (added by , 12 years ago) |
---|
-
wp-admin/options-general.php
108 108 <tr valign="top"> 109 109 <th scope="row"><label for="home"><?php _e('Site Address (URL)') ?></label></th> 110 110 <td><input name="home" type="text" id="home" value="<?php form_option('home'); ?>"<?php disabled( defined( 'WP_HOME' ) ); ?> class="regular-text code<?php if ( defined( 'WP_HOME' ) ) echo ' disabled' ?>" /> 111 <p class="description"><?php _e('Enter the address here if you want your site homepage <a href="http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory" >to be different from the directory</a> you installed WordPress.'); ?></p></td>111 <p class="description"><?php _e('Enter the address here if you want your site homepage <a href="http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory" target="_blank">to be different from the directory</a> you installed WordPress.'); ?></p></td> 112 112 </tr> 113 113 <tr valign="top"> 114 114 <th scope="row"><label for="admin_email"><?php _e('E-mail Address') ?> </label></th> … … 252 252 checked( $custom ); 253 253 echo '/> ' . __('Custom:') . ' </label><input type="text" name="date_format_custom" value="' . esc_attr( get_option('date_format') ) . '" class="small-text" /> <span class="example"> ' . date_i18n( get_option('date_format') ) . "</span> <span class='spinner'></span>\n"; 254 254 255 echo "\t<p>" . __('<a href="http://codex.wordpress.org/Formatting_Date_and_Time" >Documentation on date and time formatting</a>.') . "</p>\n";255 echo "\t<p>" . __('<a href="http://codex.wordpress.org/Formatting_Date_and_Time" target="_blank">Documentation on date and time formatting</a>.') . "</p>\n"; 256 256 ?> 257 257 </fieldset> 258 258 </td> -
wp-admin/options-discussion.php
146 146 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Comment Moderation'); ?></span></legend> 147 147 <p><label for="comment_max_links"><?php printf(__('Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)'), '<input name="comment_max_links" type="number" step="1" min="0" id="comment_max_links" value="' . esc_attr(get_option('comment_max_links')) . '" class="small-text" />' ); ?></label></p> 148 148 149 <p><label for="moderation_keys"><?php _e('When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be held in the <a href="edit-comments.php?comment_status=moderated" >moderation queue</a>. One word or IP per line. It will match inside words, so “press” will match “WordPress”.'); ?></label></p>149 <p><label for="moderation_keys"><?php _e('When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be held in the <a href="edit-comments.php?comment_status=moderated" target="_blank">moderation queue</a>. One word or IP per line. It will match inside words, so “press” will match “WordPress”.'); ?></label></p> 150 150 <p> 151 151 <textarea name="moderation_keys" rows="10" cols="50" id="moderation_keys" class="large-text code"><?php echo esc_textarea( get_option( 'moderation_keys' ) ); ?></textarea> 152 152 </p> -
wp-admin/options-permalink.php
171 171 <form name="form" action="options-permalink.php" method="post"> 172 172 <?php wp_nonce_field('update-permalink') ?> 173 173 174 <p><?php _e('By default WordPress uses web <abbr title="Universal Resource Locator">URL</abbr>s which have question marks and lots of numbers in them, however WordPress offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links. A <a href="http://codex.wordpress.org/Using_Permalinks" >number of tags are available</a>, and here are some examples to get you started.'); ?></p>174 <p><?php _e('By default WordPress uses web <abbr title="Universal Resource Locator">URL</abbr>s which have question marks and lots of numbers in them, however WordPress offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links. A <a href="http://codex.wordpress.org/Using_Permalinks" target=_blank">number of tags are available</a>, and here are some examples to get you started.'); ?></p> 175 175 176 176 <?php 177 177 if ( is_multisite() && !is_subdomain_install() && is_main_site() ) { -
wp-admin/options-writing.php
169 169 170 170 <?php else : ?> 171 171 172 <p><?php printf(__('WordPress is not notifying any <a href="http://codex.wordpress.org/Update_Services" >Update Services</a> because of your site’s <a href="%s">visibility settings</a>.'), 'options-reading.php'); ?></p>172 <p><?php printf(__('WordPress is not notifying any <a href="http://codex.wordpress.org/Update_Services" target="_blank">Update Services</a> because of your site’s <a href="%s">visibility settings</a>.'), 'options-reading.php'); ?></p> 173 173 174 174 <?php endif; ?> 175 175 <?php } // multisite ?>