I18N: Replace unnecessary context with a translator comment for %s KB
string on Network Settings screen.
Props ramiy. Fixes #37496. git-svn-id: https://develop.svn.wordpress.org/trunk@38322 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
03e402b2ec
commit
aca32f8771
@ -309,7 +309,13 @@ if ( isset( $_GET['updated'] ) ) {
|
||||
<tr>
|
||||
<th scope="row"><label for="fileupload_maxk"><?php _e( 'Max upload file size' ) ?></label></th>
|
||||
<td>
|
||||
<?php printf( _x( '%s KB', 'File size in kilobytes' ), '<input name="fileupload_maxk" type="number" min="0" style="width: 100px" id="fileupload_maxk" aria-describedby="fileupload-maxk-desc" value="' . esc_attr( get_site_option( 'fileupload_maxk', 300 ) ) . '" />' ); ?>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: File size in kilobytes */
|
||||
__( '%s KB' ),
|
||||
'<input name="fileupload_maxk" type="number" min="0" style="width: 100px" id="fileupload_maxk" aria-describedby="fileupload-maxk-desc" value="' . esc_attr( get_site_option( 'fileupload_maxk', 300 ) ) . '" />'
|
||||
);
|
||||
?>
|
||||
<p class="screen-reader-text" id="fileupload-maxk-desc">
|
||||
<?php _e( 'Size in kilobytes' ) ?>
|
||||
</p>
|
||||
|
Loading…
Reference in New Issue
Block a user