#6042 closed defect (bug) (duplicate)
Empty msgid in wp-admin/includes/media.php
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | I18N | Version: | |
| Severity: | normal | Keywords: | gettext |
| Cc: |
Description
There is an empty msgid in wp-admin/includes/media.php:530
'helps' => __(''),
gettext("") would return the header entry with meta information, not the empty string.
Change History (3)
comment:1
nbachiyski — 5 years ago
- Keywords gettext added
- Owner changed from anonymous to andy
- If it is not needed, but it has to be present, it doesn't need to be i18n-ed: 'helps' => ''
- If it can me omitted, we can omit it :-)
- If the idea was to let translators add a help message, but one is not needed in the English version, string description should be used: 'helps' => _c('|<helpful description of what the translators should put here>'),
- Resolution set to duplicate
- Status changed from new to closed
See #6044 for patch
Note: See
TracTickets for help on using
tickets.
