Making WordPress.org

Ticket #2741: 2741.2.patch

File 2741.2.patch, 2.6 KB (added by SergeyBiryukov, 9 years ago)
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/shortcodes/class-developers.php

     
    1717                $post   = get_post();
    1818                $slug   = $post->post_name;
    1919                $title  = get_the_title( $post );
    20                 $output = '<div class="plugin-contributors"><p>' . sprintf(
     20
     21                $output = '<div class="plugin-development">';
     22
     23                $output .= '<p>' . sprintf(
    2124                        /* translators: %s: plugin name */
    22                         __( '%s is open source software. The following people have contributed to this plugin.', 'wporg-plugins' ),
     25                        __( '&#8220;%s&#8221; is open source software. The following people have contributed to this plugin.', 'wporg-plugins' ),
    2326                        $title
    2427                ) . '</p>';
    2528
     
    8891
    8992                /* translators: 1: GlotPress URL, 2: plugin name */
    9093                $output .= '<p>' . sprintf(
    91                         __( '<a href="%1$s">Translate %2$s into your language.</a>', 'wporg-plugins' ),
     94                        __( '<a href="%1$s">Translate &#8220;%2$s&#8221; into your language.</a>', 'wporg-plugins' ),
    9295                        esc_url( 'https://translate.wordpress.org/projects/wp-plugins/' . $slug ),
    9396                        $title
    9497                ) . '</p>';
     
    104107                        ), home_url( "wp-json/plugins/v1/plugin/{$slug}/commit-subscription" ) ) );
    105108
    106109                        $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 */
    108111                                __( '<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' ),
    109112                                esc_url( "https://plugins.trac.wordpress.org/browser/{$slug}/" ),
    110113                                esc_url( "https://plugins.svn.wordpress.org/{$slug}/" ),
     
    114117                        ) . '</p>';
    115118                } else {
    116119                        $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 */
    118121                                __( '<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' ),
    119122                                esc_url( "https://plugins.trac.wordpress.org/browser/{$slug}/" ),
    120123                                esc_url( "https://plugins.trac.wordpress.org/log/{$slug}/" ),