mirror of
git://develop.git.wordpress.org/
synced 2025-02-24 00:24:52 +01:00
I18N: Remove <code>
tag from translatable string in wp-admin/includes/class-wp-filesystem-ssh2.php
.
Props ramiy. Fixes #35741. git-svn-id: https://develop.svn.wordpress.org/trunk@36670 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
d85d32f3a0
commit
9c474ff900
@ -62,7 +62,14 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ( !function_exists('stream_get_contents') ) {
|
if ( !function_exists('stream_get_contents') ) {
|
||||||
$this->errors->add('ssh2_php_requirement', __('The ssh2 PHP extension is available, however, we require the PHP5 function <code>stream_get_contents()</code>'));
|
$this->errors->add(
|
||||||
|
'ssh2_php_requirement',
|
||||||
|
sprintf(
|
||||||
|
/* translators: %s: stream_get_contents() */
|
||||||
|
__( 'The ssh2 PHP extension is available, however, we require the PHP5 function %s' ),
|
||||||
|
'<code>stream_get_contents()</code>'
|
||||||
|
)
|
||||||
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user