Opened 9 years ago
Closed 9 years ago
#37777 closed defect (bug) (fixed)
Replace _x() with __() and translators comments in wp-admin/includes/network.php
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | 4.7 | Priority: | normal |
| Severity: | normal | Version: | |
| Component: | I18N | Keywords: | has-patch |
| Focuses: | Cc: |
Description
Context function _x() is used to differ two similar strings with different meanings. Translators comments are used to describe %s placeholders.
The attached patch is replacing:
_x( '%s Sites', 'Default network name' )
with:
/* translators: %s: Default network name */ __( '%s Sites' )
Attachments (2)
Change History (5)
Note: See
TracTickets for help on using
tickets.
Related: #37496