- Timestamp:
- 09/01/2019 05:12:43 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-filesystem-ssh2.php
r45611 r45926 138 138 $this->errors->add( 139 139 'connect', 140 /* translators: %s: hostname:port */141 140 sprintf( 141 /* translators: %s: hostname:port */ 142 142 __( 'Failed to connect to SSH2 Server %s' ), 143 143 $this->options['hostname'] . ':' . $this->options['port'] … … 151 151 $this->errors->add( 152 152 'auth', 153 /* translators: %s: username */154 153 sprintf( 154 /* translators: %s: username */ 155 155 __( 'Username/Password incorrect for %s' ), 156 156 $this->options['username'] … … 163 163 $this->errors->add( 164 164 'auth', 165 /* translators: %s: username */166 165 sprintf( 166 /* translators: %s: username */ 167 167 __( 'Public and Private keys incorrect for %s' ), 168 168 $this->options['username'] … … 177 177 $this->errors->add( 178 178 'connect', 179 /* translators: %s: hostname:port */180 179 sprintf( 180 /* translators: %s: hostname:port */ 181 181 __( 'Failed to initialize a SFTP subsystem session with the SSH2 Server %s' ), 182 182 $this->options['hostname'] . ':' . $this->options['port'] … … 226 226 $this->errors->add( 227 227 'command', 228 /* translators: %s: command */229 228 sprintf( 229 /* translators: %s: command */ 230 230 __( 'Unable to perform command: %s' ), 231 231 $command
Note: See TracChangeset
for help on using the changeset viewer.