Make WordPress Core

Ticket #42160: 42160.patch

File 42160.patch, 1.7 KB (added by ramiy, 7 years ago)
  • wp-admin/options-writing.php

     
    168168
    169169<?php if ( 1 == get_option('blog_public') ) : ?>
    170170
    171 <p><label for="ping_sites"><?php _e( 'When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see <a href="https://codex.wordpress.org/Update_Services">Update Services</a> on the Codex. Separate multiple service URLs with line breaks.' ) ?></label></p>
     171<p><label for="ping_sites"><?php printf(
     172        /* translators: %s: Codex URL */
     173        __( 'When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see <a href="%s">Update Services</a> on the Codex. Separate multiple service URLs with line breaks.' ),
     174        __( 'https://codex.wordpress.org/Update_Services' )
     175); ?></label></p>
    172176
    173177<textarea name="ping_sites" id="ping_sites" class="large-text code" rows="3"><?php echo esc_textarea( get_option('ping_sites') ); ?></textarea>
    174178
    175179<?php else : ?>
    176180
    177         <p><?php printf(__('WordPress is not notifying any <a href="https://codex.wordpress.org/Update_Services">Update Services</a> because of your site&#8217;s <a href="%s">visibility settings</a>.'), 'options-reading.php'); ?></p>
     181        <p><?php printf(
     182                        /* translators: 1: Codex URL 2: Settings page URL */
     183                __( 'WordPress is not notifying any <a href="%1$s">Update Services</a> because of your site&#8217;s <a href="%2$s">visibility settings</a>.' ),
     184                __( 'https://codex.wordpress.org/Update_Services' ),
     185                'options-reading.php'
     186        ); ?></p>
    178187
    179188<?php endif; ?>
    180189<?php } // multisite ?>