Opened 6 years ago
Closed 5 years ago
#46386 closed enhancement (fixed)
Credits: Make WordPress.org URL translatable
Reported by: | mukesh27 | Owned by: | SergeyBiryukov |
---|---|---|---|
Milestone: | 5.3 | Priority: | normal |
Severity: | normal | Version: | |
Component: | I18N | Keywords: | has-patch good-first-bug |
Focuses: | Cc: |
Description
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/' ) );
Attachments (1)
Change History (6)
#1
@
6 years ago
While at it: you should also add comments for translators just before each of the translatable URL:s.
/* translators: Give localized URL */
#2
@
6 years ago
- Summary changed from Missing translators need to be added in credits.php to Credits: Make WordPress.org URL translatable
@tobifjellner I don't think we usually do this.
Note: See
TracTickets for help on using
tickets.
Patch.