mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
I18N: Remove wp-config.php file name from translatable strings.
Follow-up to [35547], [35557], [53131]. See #46057. git-svn-id: https://develop.svn.wordpress.org/trunk@53148 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
0ce91f72d9
commit
b9556e457f
@ -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>
|
||||
|
||||
@ -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
Block a user