[wp-trac] [WordPress Trac] #46386: Missing translators need to be added in credits.php
WordPress Trac
noreply at wordpress.org
Fri Mar 1 10:59:16 UTC 2019
#46386: Missing translators need to be added in credits.php
-------------------------+--------------------------------------
Reporter: mukesh27 | Owner: (none)
Type: enhancement | Status: new
Priority: normal | Milestone: Awaiting Review
Component: I18N | Version:
Severity: normal | Keywords: has-patch good-first-bug
Focuses: |
-------------------------+--------------------------------------
Need to add tranlation for link {{{ https://wordpress.org/about/ }}}
{{{
/* translators: 1: https://wordpress.org/about/, 2:
https://make.wordpress.org/ */
printf(
__( 'WordPress is created by a <a href="%1$s">worldwide team</a>
of passionate individuals. <a href="%2$s">Get involved in WordPress</a>.'
),
'https://wordpress.org/about/',
__( 'https://make.wordpress.org/' )
);
}}}
Replace to
{{{
/* translators: 1: https://wordpress.org/about/, 2:
https://make.wordpress.org/ */
printf(
__( 'WordPress is created by a <a href="%1$s">worldwide team</a>
of passionate individuals. <a href="%2$s">Get involved in WordPress</a>.'
),
__( 'https://wordpress.org/about/' ),
__( 'https://make.wordpress.org/' )
);
}}}
--
Ticket URL: <https://core.trac.wordpress.org/ticket/46386>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform
More information about the wp-trac
mailing list