Make WordPress Core

Ticket #34581: 34581.patch

File 34581.patch, 740 bytes (added by ramiy, 11 years ago)
  • wp-admin/options-media.php

     
    105105<tr>
    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        printf(
     110                /* translators: %s: wp-content/uploads */
     111                __( 'Default is %s' ),
     112                '<code>wp-content/uploads</code>'
     113        );
     114?></p>
    109115</td>
    110116</tr>
    111117