Ticket #2741: 2741.patch
| File 2741.patch, 1.4 KB (added by , 9 years ago) |
|---|
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/shortcodes/class-developers.php
17 17 $post = get_post(); 18 18 $slug = $post->post_name; 19 19 $title = get_the_title( $post ); 20 $output = '<p>' . sprintf( __( '%s is open source software. The following people have contributed to this plugin.', 'wporg-plugins' ), $title ) . '</p>'; 20 $output = '<p>' . sprintf( 21 /* Translators: Plugin name; */ 22 __( '“%s” is open source software. The following people have contributed to this plugin.', 'wporg-plugins' ), 23 $title 24 ) . '</p>'; 21 25 22 26 ob_start(); 23 27 the_widget( 'WordPressdotorg\Plugin_Directory\Widgets\Contributors', array(), array( … … 49 53 50 54 /* Translators: 1: GlotPress URL; 2: Plugin name; */ 51 55 $output .= '<p>' . sprintf( 52 __( '<a href="%1$s">Translate %2$sinto your language.</a>', 'wporg-plugins' ),56 __( '<a href="%1$s">Translate “%2$s” into your language.</a>', 'wporg-plugins' ), 53 57 esc_url( 'https://translate.wordpress.org/projects/wp-plugins/' . $slug ), 54 58 $title 55 59 ) . '</p>';