1<?php
2/**
3 * Federated Login for DokuWiki - English language file
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @link       http://www.dokuwiki.org/plugin:fedauth
7 * @author     Aoi Karasu <aoikarasu@gmail.com>
8 */
9
10// settings must be present and set appropriately for the language
11$lang['encoding']   = 'utf-8';
12$lang['direction']  = 'ltr';
13
14// for admin plugins, the menu prompt to be displayed in the admin menu
15// if set here, the plugin doesn't need to override the getMenuText() method
16$lang['menu']            = 'Manage Federated Login Providers';
17
18$lang['btn_toggle']      = 'Toggle';
19$lang['btn_moveup']      = 'Move Up';
20$lang['btn_movedn']      = 'Move Down';
21$lang['btn_uselarge']    = 'To Large';
22$lang['btn_usesmall']    = 'To Small';
23$lang['btn_remove']      = 'Delete';
24$lang['btn_details']     = 'Details';
25$lang['btn_restore']     = 'Restore Defaults';
26$lang['btn_login']       = 'Log In';
27$lang['btn_signin']      = 'Sign In';
28
29$lang['inuse']           = 'in use';
30$lang['disabled']        = 'disabled';
31$lang['serviceurl']      = 'Service URL';
32
33$lang['dologin']         = 'Log In';
34$lang['addlogin']        = 'Add Login';
35$lang['mylogins']        = 'manage my logins';
36$lang['gotlogin']        = 'Do you already have an account on one of these sites?';
37$lang['clicktoadd']      = 'Click the logo to <b>add another login</b> to your account:';
38$lang['clicktologin']    = 'Click the logo to <b>log in</b> with it here:';
39$lang['manualopenid']    = 'Or, you can manually enter your OpenID';
40$lang['morelogin']       = 'show more options...';
41$lang['enterlogin']      = 'Enter your <b>@PROVID@</b> login name:';
42$lang['unknowncmd']      = 'Uknown Federated Login command:';
43$lang['signinnamereq']   = 'To use the <b>@PROVID@</b> authentication service you have to provide a login name.';
44$lang['oidurlreq']       = 'Valid URL is required to use the OpenID authentication service.';
45$lang['authfailed']      = 'Authentication failed.';
46$lang['identitymissing'] = 'Authentication successful, however your identity information is missing.';
47$lang['alreadyassigned'] = 'The retrieved identity is already associated with an account on this site.';
48$lang['logoutok']        = 'You have been logged out successfully.';
49$lang['loginadded']      = 'Your <b>@PROVID@</b> login has been successfully associated with this account.';
50$lang['logindel']        = 'Your <b>@PROVID@</b> login has been removed from this account.';
51$lang['regdisabled']     = 'Your <b>@PROVID@</b> login is not associated with any account and registration of new accounts is disabled.';
52$lang['registernow']     = 'You are authenticated with your <b>@PROVID@</b> login, but you still have to <a href="@REGURL@">create</a> an account on this site.';
53