mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
I18N: Add context for the Public string in site attributes list on Edit Site screen.
This allows for the string to be distinguished from a post status of the same name, which is useful for better translations in languages were "public" can be masculine or feminine depending on context. Props audrasjb. Fixes #52309. git-svn-id: https://develop.svn.wordpress.org/trunk@49962 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -181,7 +181,7 @@ if ( ! empty( $messages ) ) {
|
||||
<td><input name="blog[last_updated]" type="text" id="blog_last_updated" value="<?php echo esc_attr( $details->last_updated ); ?>" /></td>
|
||||
</tr>
|
||||
<?php
|
||||
$attribute_fields = array( 'public' => __( 'Public' ) );
|
||||
$attribute_fields = array( 'public' => _x( 'Public', 'site' ) );
|
||||
if ( ! $is_main_site ) {
|
||||
$attribute_fields['archived'] = __( 'Archived' );
|
||||
$attribute_fields['spam'] = _x( 'Spam', 'site' );
|
||||
|
||||
Reference in New Issue
Block a user