Opened 10 years ago
Closed 10 years ago
#37496 closed defect (bug) (fixed)
Replace _x() with __() and translators comments in wp-admin/network/settings.php
| Reported by: | ramiy | Owned by: | johnbillion |
|---|---|---|---|
| Priority: | normal | Milestone: | 4.7 |
| Component: | I18N | Version: | 3.0 |
| Severity: | normal | Keywords: | has-patch |
| Cc: | Focuses: |
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 KB', 'File size in kilobytes' )
with:
/* translators: %s: File size in kilobytes */ __( '%s KB' ),
Attachments (1)
Change History (6)
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Introduced in [13796].