Make WordPress Core

Changeset 35550


Ignore:
Timestamp:
11/06/2015 12:27:51 AM (11 years ago)
Author:
SergeyBiryukov
Message:

Remove <code> tag from translatable string in wp-admin/options-media.php.

Add translator comment.

Props ramiy.
Fixes #34581.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/options-media.php

    r33915 r35550  
    106106<th scope="row"><label for="upload_path"><?php _e('Store uploads in this folder'); ?></label></th>
    107107<td><input name="upload_path" type="text" id="upload_path" value="<?php echo esc_attr(get_option('upload_path')); ?>" class="regular-text code" />
    108 <p class="description"><?php _e('Default is <code>wp-content/uploads</code>'); ?></p>
     108<p class="description"><?php
     109    /* translators: %s: wp-content/uploads */
     110    printf( __( 'Default is %s' ), '<code>wp-content/uploads</code>' );
     111?></p>
    109112</td>
    110113</tr>
Note: See TracChangeset for help on using the changeset viewer.