Making WordPress.org

Ticket #3073: 3073.patch

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

     
    122122                        ) . '</p>';
    123123                } else {
    124124                        $output .= '<p>' . sprintf(
    125                                 /* translators: 1: Trac URL, 2: development log URL, 3: RSS URL */
    126                                 __( '<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' ),
     125                                /* translators: 1: Trac URL, 2: SVN repository URL, 3: development log URL, 4: RSS URL */
     126                                __( '<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">RSS</a>.', 'wporg-plugins' ),
    127127                                esc_url( "https://plugins.trac.wordpress.org/browser/{$slug}/" ),
     128                                esc_url( "https://plugins.svn.wordpress.org/{$slug}/" ),
    128129                                esc_url( "https://plugins.trac.wordpress.org/log/{$slug}/" ),
    129130                                esc_url( "https://plugins.trac.wordpress.org/log/{$slug}/?limit=100&mode=stop_on_copy&format=rss" )
    130131                        ) . '</p>';