Opened 4 years ago
Closed 4 years ago
#52309 closed defect (bug) (fixed)
Contextualize "Public" website attribute translation string in Multisite settings
Reported by: | audrasjb | Owned by: | SergeyBiryukov |
---|---|---|---|
Milestone: | 5.7 | Priority: | normal |
Severity: | normal | Version: | |
Component: | I18N | Keywords: | has-patch |
Focuses: | ui | Cc: |
Description
In wp-admin/network/site-info.php
, the "Public" translation string should be contextualized, especially for languages were "public" can be masculine or feminine depending on context.
$attribute_fields = array( 'public' => __( 'Public' ) ); if ( ! $is_main_site ) { $attribute_fields['archived'] = __( 'Archived' ); $attribute_fields['spam'] = _x( 'Spam', 'site' ); $attribute_fields['deleted'] = __( 'Deleted' ); }
I'd suggest to contextualize this string, just as it is for the "Spam" translation string.
Attachments (1)
Change History (4)
Note: See
TracTickets for help on using
tickets.
In 49962: