Remove `<code>` tag from translatable string in `wp-admin/options-media.php`.
Add translator comment. Props ramiy. Fixes #34581. Built from https://develop.svn.wordpress.org/trunk@35550 git-svn-id: http://core.svn.wordpress.org/trunk@35514 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
387d3bca32
commit
8c2ed5330a
|
@ -105,7 +105,10 @@ if ( get_option('upload_url_path') || ( get_option('upload_path') != 'wp-content
|
|||
<tr>
|
||||
<th scope="row"><label for="upload_path"><?php _e('Store uploads in this folder'); ?></label></th>
|
||||
<td><input name="upload_path" type="text" id="upload_path" value="<?php echo esc_attr(get_option('upload_path')); ?>" class="regular-text code" />
|
||||
<p class="description"><?php _e('Default is <code>wp-content/uploads</code>'); ?></p>
|
||||
<p class="description"><?php
|
||||
/* translators: %s: wp-content/uploads */
|
||||
printf( __( 'Default is %s' ), '<code>wp-content/uploads</code>' );
|
||||
?></p>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-beta3-35549';
|
||||
$wp_version = '4.4-beta3-35550';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue