Index: trunk/extensions/Deployment/includes/filesystems/FtpFilesystem.php |
— | — | @@ -95,7 +95,7 @@ |
96 | 96 | |
97 | 97 | // Check if a connection has been established. |
98 | 98 | if ( !$this->connection ) { |
99 | | - $this->addErrorMessage( wfMsgExt( 'deploy-ftp-connect-failed', $this->options['hostname'], $this->options['port'] ) ); |
| 99 | + $this->addErrorMessage( wfMsgExt( 'deploy-ftp-connect-failed', 'parsemag', $this->options['hostname'], $this->options['port'] ) ); |
100 | 100 | return false; |
101 | 101 | } |
102 | 102 | |
Index: trunk/extensions/Deployment/includes/filesystems/Ssh2Filesystem.php |
— | — | @@ -118,7 +118,7 @@ |
119 | 119 | } |
120 | 120 | |
121 | 121 | if ( !$this->connection ) { |
122 | | - $this->addErrorMessage( wfMsgExt( 'deploy-ssh2-connect-failed', $this->options['hostname'], $this->options['port'] ) ); |
| 122 | + $this->addErrorMessage( wfMsgExt( 'deploy-ssh2-connect-failed', 'parsemag', $this->options['hostname'], $this->options['port'] ) ); |
123 | 123 | return false; |
124 | 124 | } |
125 | 125 | |
— | — | @@ -126,7 +126,7 @@ |
127 | 127 | $ssh2_auth_pubkey_file = ssh2_auth_pubkey_file( $this->link, $this->options['username'], $this->options['public_key'], $this->options['private_key'], $this->options['password'] ); |
128 | 128 | |
129 | 129 | if ( !$ssh2_auth_pubkey_file ) { |
130 | | - $this->addErrorMessage( wfMsgExt( 'deploy-ssh2-key-authentication-failed', $this->options['username'] ) ); |
| 130 | + $this->addErrorMessage( wfMsgExt( 'deploy-ssh2-key-authentication-failed', 'parsemag', $this->options['username'] ) ); |
131 | 131 | return false; |
132 | 132 | } |
133 | 133 | |
— | — | @@ -134,7 +134,7 @@ |
135 | 135 | $ssh2_auth_password = ssh2_auth_password( $this->connection, $this->options['username'], $this->options['password'] ); |
136 | 136 | |
137 | 137 | if ( !$ssh2_auth_password ) { |
138 | | - $this->addErrorMessage( wfMsgExt( 'deploy-ssh2-password-authentication-failed', $this->options['username'] ) ); |
| 138 | + $this->addErrorMessage( wfMsgExt( 'deploy-ssh2-password-authentication-failed', 'parsemag', $this->options['username'] ) ); |
139 | 139 | return false; |
140 | 140 | } |
141 | 141 | } |
— | — | @@ -333,7 +333,7 @@ |
334 | 334 | return $data; |
335 | 335 | } |
336 | 336 | else { |
337 | | - $this->addErrorMessage( wfMsgExt( 'deploy-ssh2-command-failed', $command ) ); |
| 337 | + $this->addErrorMessage( wfMsgExt( 'deploy-ssh2-command-failed', 'parsemag', $command ) ); |
338 | 338 | return false; |
339 | 339 | } |
340 | 340 | } |