Opened 6 years ago
Closed 6 years ago
#52309 closed defect (bug) (fixed)
Contextualize "Public" website attribute translation string in Multisite settings
| Reported by: | audrasjb | Owned by: | SergeyBiryukov |
|---|---|---|---|
| Priority: | normal | Milestone: | 5.7 |
| Component: | I18N | Version: | |
| Severity: | normal | Keywords: | has-patch |
| Cc: | Focuses: | ui |
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.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
In 49962: