Making WordPress.org

Ticket #2741: 2741.patch

File 2741.patch, 1.4 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 = '<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                        __( '&#8220;%s&#8221; is open source software. The following people have contributed to this plugin.', 'wporg-plugins' ),
     23                        $title
     24                ) . '</p>';
    2125
    2226                ob_start();
    2327                the_widget( 'WordPressdotorg\Plugin_Directory\Widgets\Contributors', array(), array(
     
    4953
    5054                /* Translators: 1: GlotPress URL; 2: Plugin name; */
    5155                $output .= '<p>' . sprintf(
    52                         __( '<a href="%1$s">Translate %2$s into your language.</a>', 'wporg-plugins' ),
     56                        __( '<a href="%1$s">Translate &#8220;%2$s&#8221; into your language.</a>', 'wporg-plugins' ),
    5357                        esc_url( 'https://translate.wordpress.org/projects/wp-plugins/' . $slug ),
    5458                        $title
    5559                ) . '</p>';