blob: d68517b01d6e2581020db3217e56d109287cd479 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
/**
* OpenID client English language file
*/
$english = array(
'openid_client:login:header' => 'Log in with',
'openid_client:or:header' => 'or',
'openid_client:login:instructs' => 'Login in with %s',
'openid_client:provider:google' => 'Google',
'openid_client:provider:yahoo' => 'Yahoo',
'openid_client:provider:blogger' => 'Blogger',
'openid_client:provider:wordpress' => 'Wordpress',
'openid_client:success:register' => 'Your account has been created.',
'openid_client:error:bad_register' => 'Unable to create an account. Please contact a site administrator.',
'openid_client:error:bad_response' => 'Bad response from the OpenID server',
);
add_translation('en', $english);
|