Changeset 5373
- Timestamp:
- 04/19/2017 07:47:33 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/shortcodes/class-developers.php
r5372 r5373 18 18 $slug = $post->post_name; 19 19 $title = get_the_title( $post ); 20 $output = '<div class="plugin-contributors"><p>' . sprintf( 20 21 $output = '<div class="plugin-contributors">'; 22 23 $output .= '<p>' . sprintf( 21 24 /* translators: %s: plugin name */ 22 __( ' %sis open source software. The following people have contributed to this plugin.', 'wporg-plugins' ),25 __( '“%s” is open source software. The following people have contributed to this plugin.', 'wporg-plugins' ), 23 26 $title 24 27 ) . '</p>'; … … 89 92 /* translators: 1: GlotPress URL, 2: plugin name */ 90 93 $output .= '<p>' . sprintf( 91 __( '<a href="%1$s">Translate %2$sinto your language.</a>', 'wporg-plugins' ),94 __( '<a href="%1$s">Translate “%2$s” into your language.</a>', 'wporg-plugins' ), 92 95 esc_url( 'https://translate.wordpress.org/projects/wp-plugins/' . $slug ), 93 96 $title … … 105 108 106 109 $output .= '<p>' . sprintf( 107 /* translators: 1: Trac URL, 2: SVN repository URL, 3: development log URL ; 4: RSS URL; 5: email subscription UR;*/110 /* translators: 1: Trac URL, 2: SVN repository URL, 3: development log URL, 4: RSS URL, 5: email subscription URL */ 108 111 __( '<a href="%1$s">Browse the code</a>, check out the <a href="%2$s">SVN repository</a>, or subscribe to the <a href="%3$s">development log</a> by <a href="%4$s">email</a> or <a href="%5$s">RSS</a>.', 'wporg-plugins' ), 109 112 esc_url( "https://plugins.trac.wordpress.org/browser/{$slug}/" ), … … 115 118 } else { 116 119 $output .= '<p>' . sprintf( 117 /* translators: 1: Trac URL ;2: development log URL, 3: RSS URL */120 /* translators: 1: Trac URL, 2: development log URL, 3: RSS URL */ 118 121 __( '<a href="%1$s">Browse the code</a> or subscribe to the <a href="%2$s">development log</a> by <a href="%3$s">RSS</a>.', 'wporg-plugins' ), 119 122 esc_url( "https://plugins.trac.wordpress.org/browser/{$slug}/" ),
Note: See TracChangeset
for help on using the changeset viewer.