I18N: Update translator comments after [45674].

See #47771.
Built from https://develop.svn.wordpress.org/trunk@45676


git-svn-id: http://core.svn.wordpress.org/trunk@45487 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-07-25 22:52:56 +00:00
parent ac10f9b9e4
commit a186dbcb65
10 changed files with 13 additions and 13 deletions

View File

@ -206,5 +206,5 @@ _n_noop(
'<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.'
);
/* translators: %s: Codex URL */
/* translators: %s: Documentation URL */
__( 'For more information, see <a href="%s">the release notes</a>.' );

View File

@ -663,7 +663,7 @@ function post_excerpt_meta_box( $post ) {
<p>
<?php
printf(
/* translators: %s: Codex URL */
/* translators: %s: Documentation URL */
__( 'Excerpts are optional hand-crafted summaries of your content that can be used in your theme. <a href="%s">Learn more about manual excerpts</a>.' ),
__( 'https://wordpress.org/support/article/excerpt/' )
);
@ -700,7 +700,7 @@ function post_trackback_meta_box( $post ) {
<p>
<?php
printf(
/* translators: %s: Codex URL */
/* translators: %s: Documentation URL */
__( 'Trackbacks are a way to notify legacy blog systems that you&#8217;ve linked to them. If you link other WordPress sites, they&#8217;ll be notified automatically using <a href="%s">pingbacks</a>, no other action necessary.' ),
__( 'https://wordpress.org/support/article/introduction-to-blogging/#comments' )
);
@ -737,7 +737,7 @@ function post_custom_meta_box( $post ) {
<p>
<?php
printf(
/* translators: %s: Codex URL */
/* translators: %s: Documentation URL */
__( 'Custom fields can be used to add extra metadata to a post that you can <a href="%s">use in your theme</a>.' ),
__( 'https://wordpress.org/support/article/custom-fields/' )
);
@ -761,7 +761,7 @@ function post_comment_status_meta_box( $post ) {
<label for="ping_status" class="selectit"><input name="ping_status" type="checkbox" id="ping_status" value="open" <?php checked( $post->ping_status, 'open' ); ?> />
<?php
printf(
/* translators: %s: Codex URL */
/* translators: %s: Documentation URL */
__( 'Allow <a href="%s">trackbacks and pingbacks</a> on this page' ),
__( 'https://wordpress.org/support/article/introduction-to-blogging/#managing-comments' )
);

View File

@ -95,7 +95,7 @@ if ( ! is_multisite() ) {
<p class="description" id="home-description">
<?php
printf(
/* translators: %s: Codex URL */
/* translators: %s: Documentation URL */
__( 'Enter the address here if you <a href="%s">want your site home page to be different from your WordPress installation directory</a>.' ),
__( 'https://wordpress.org/support/article/giving-wordpress-its-own-directory/' )
);

View File

@ -173,7 +173,7 @@ require( ABSPATH . 'wp-admin/admin-header.php' );
<p>
<?php
printf(
/* translators: %s: Codex URL */
/* translators: %s: Documentation URL */
__( 'WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A <a href="%s">number of tags are available</a>, and here are some examples to get you started.' ),
__( 'https://wordpress.org/support/article/using-permalinks/' )
);

View File

@ -186,7 +186,7 @@ switch ( $step ) {
?>
</strong>
<?php
/* translators: %s: Codex URL */
/* translators: %s: Documentation URL */
printf(
__( 'Need more help? <a href="%s">We got it</a>.' ),
__( 'https://wordpress.org/support/article/editing-wp-config-php/' )

View File

@ -4691,7 +4691,7 @@ function sanitize_option( $option, $value ) {
if ( 'permalink_structure' === $option && '' !== $value && ! preg_match( '/%[^\/%]+%/', $value ) ) {
$error = sprintf(
/* translators: %s: Codex URL */
/* translators: %s: Documentation URL */
__( 'A structure tag is required when using custom permalinks. <a href="%s">Learn more</a>' ),
__( 'https://wordpress.org/support/article/using-permalinks/#choosing-your-permalink-structure' )
);

View File

@ -4789,7 +4789,7 @@ function _doing_it_wrong( $function, $message, $version ) {
/* translators: %s: version number */
$version = sprintf( __( '(This message was added in version %s.)' ), $version );
}
/* translators: %s: Codex URL */
/* translators: %s: Documentation URL */
$message .= ' ' . sprintf(
__( 'Please see <a href="%s">Debugging in WordPress</a> for more information.' ),
__( 'https://wordpress.org/support/article/debugging-in-wordpress/' )

View File

@ -489,7 +489,7 @@ function ms_not_installed( $domain, $path ) {
) . '</p>';
}
$msg .= '<p><strong>' . __( 'What do I do now?' ) . '</strong> ';
/* translators: %s: Codex URL */
/* translators: %s: Documentation URL */
$msg .= sprintf(
__( 'Read the <a href="%s" target="_blank">bug report</a> page. Some of the guidelines there may help you figure out what went wrong.' ),
__( 'https://wordpress.org/support/article/debugging-a-wordpress-network/' )

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.3-alpha-45675';
$wp_version = '5.3-alpha-45676';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.

View File

@ -78,7 +78,7 @@ if ( file_exists( ABSPATH . 'wp-config.php' ) ) {
'<code>wp-config.php</code>'
) . '</p>';
$die .= '<p>' . sprintf(
/* translators: %s: Codex URL */
/* translators: %s: Documentation URL */
__( "Need more help? <a href='%s'>We got it</a>." ),
__( 'https://wordpress.org/support/article/editing-wp-config-php/' )
) . '</p>';