I18N: Remove `wp-config.php` file name from translatable strings.
Follow-up to [35547], [35557], [53131]. See #46057. Built from https://develop.svn.wordpress.org/trunk@53148 git-svn-id: http://core.svn.wordpress.org/trunk@52737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ce4a2a11de
commit
561518cdd7
|
@ -186,9 +186,10 @@ switch ( $step ) {
|
|||
</strong>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: Documentation URL. */
|
||||
__( 'Need more help? <a href="%s">Read the support article on wp-config.php</a>.' ),
|
||||
__( 'https://wordpress.org/support/article/editing-wp-config-php/' )
|
||||
/* translators: 1: Documentation URL, 2: wp-config.php */
|
||||
__( 'Need more help? <a href="%1$s">Read the support article on %2$s</a>.' ),
|
||||
__( 'https://wordpress.org/support/article/editing-wp-config-php/' ),
|
||||
'<code>wp-config.php</code>'
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.0-alpha-53147';
|
||||
$wp_version = '6.0-alpha-53148';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
|
@ -91,9 +91,10 @@ if ( file_exists( ABSPATH . 'wp-config.php' ) ) {
|
|||
'<code>wp-config.php</code>'
|
||||
) . '</p>';
|
||||
$die .= '<p>' . sprintf(
|
||||
/* translators: %s: Documentation URL. */
|
||||
__( "Need more help? <a href='%s'>Read the support article on wp-config.php</a>." ),
|
||||
__( 'https://wordpress.org/support/article/editing-wp-config-php/' )
|
||||
/* translators: 1: Documentation URL, 2: wp-config.php */
|
||||
__( 'Need more help? <a href="%1$s">Read the support article on %2$s</a>.' ),
|
||||
__( 'https://wordpress.org/support/article/editing-wp-config-php/' ),
|
||||
'<code>wp-config.php</code>'
|
||||
) . '</p>';
|
||||
$die .= '<p>' . sprintf(
|
||||
/* translators: %s: wp-config.php */
|
||||
|
|
Loading…
Reference in New Issue