I18N: Add translator comments for strings in wp-admin/includes/class-wp-filesystem-ssh2.php
.
Props ramiy. See #34684. git-svn-id: https://develop.svn.wordpress.org/trunk@35661 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
3ced239517
commit
61765f4fd3
@ -114,25 +114,45 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ( ! $this->link ) {
|
if ( ! $this->link ) {
|
||||||
$this->errors->add('connect', sprintf(__('Failed to connect to SSH2 Server %1$s:%2$s'), $this->options['hostname'], $this->options['port']));
|
$this->errors->add( 'connect',
|
||||||
|
/* translators: %s: hostname:port */
|
||||||
|
sprintf( __( 'Failed to connect to SSH2 Server %s' ),
|
||||||
|
$this->options['hostname'].':'.$this->options['port']
|
||||||
|
)
|
||||||
|
);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( !$this->keys ) {
|
if ( !$this->keys ) {
|
||||||
if ( ! @ssh2_auth_password($this->link, $this->options['username'], $this->options['password']) ) {
|
if ( ! @ssh2_auth_password($this->link, $this->options['username'], $this->options['password']) ) {
|
||||||
$this->errors->add('auth', sprintf(__('Username/Password incorrect for %s'), $this->options['username']));
|
$this->errors->add( 'auth',
|
||||||
|
/* translators: %s: username */
|
||||||
|
sprintf( __( 'Username/Password incorrect for %s' ),
|
||||||
|
$this->options['username']
|
||||||
|
)
|
||||||
|
);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if ( ! @ssh2_auth_pubkey_file($this->link, $this->options['username'], $this->options['public_key'], $this->options['private_key'], $this->options['password'] ) ) {
|
if ( ! @ssh2_auth_pubkey_file($this->link, $this->options['username'], $this->options['public_key'], $this->options['private_key'], $this->options['password'] ) ) {
|
||||||
$this->errors->add('auth', sprintf(__('Public and Private keys incorrect for %s'), $this->options['username']));
|
$this->errors->add( 'auth',
|
||||||
|
/* translators: %s: username */
|
||||||
|
sprintf( __( 'Public and Private keys incorrect for %s' ),
|
||||||
|
$this->options['username']
|
||||||
|
)
|
||||||
|
);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->sftp_link = ssh2_sftp( $this->link );
|
$this->sftp_link = ssh2_sftp( $this->link );
|
||||||
if ( ! $this->sftp_link ) {
|
if ( ! $this->sftp_link ) {
|
||||||
$this->errors->add( 'connect', sprintf( __( 'Failed to initialize a SFTP subsystem session with the SSH2 Server %1$s:%2$s' ), $this->options['hostname'], $this->options['port'] ) );
|
$this->errors->add( 'connect',
|
||||||
|
/* translators: %s: hostname:port */
|
||||||
|
sprintf( __( 'Failed to initialize a SFTP subsystem session with the SSH2 Server %s' ),
|
||||||
|
$this->options['hostname'] . ':' . $this->options['port']
|
||||||
|
)
|
||||||
|
);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -173,7 +193,12 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
|
|||||||
return false;
|
return false;
|
||||||
|
|
||||||
if ( ! ($stream = ssh2_exec($this->link, $command)) ) {
|
if ( ! ($stream = ssh2_exec($this->link, $command)) ) {
|
||||||
$this->errors->add('command', sprintf(__('Unable to perform command: %s'), $command));
|
$this->errors->add( 'command',
|
||||||
|
/* translators: %s: command */
|
||||||
|
sprintf( __( 'Unable to perform command: %s'),
|
||||||
|
$command
|
||||||
|
)
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
stream_set_blocking( $stream, true );
|
stream_set_blocking( $stream, true );
|
||||||
stream_set_timeout( $stream, FS_TIMEOUT );
|
stream_set_timeout( $stream, FS_TIMEOUT );
|
||||||
|
Loading…
Reference in New Issue
Block a user