additional_plugins/serendipity_event_openid/lang_en.inc.php
Grischa Brockhaus 922e908908 plugin_openid:
* Added AOL shortcut
* Added description about the shortcuts to the configuration screen.
2012-03-26 03:14:05 +02:00

48 lines
3.1 KiB
PHP

<?php
@define('PLUGIN_OPENID_NAME', 'OpenID Authentication');
@define('PLUGIN_OPENID_DESC', 'Allows authors to authenticate using an OpenID, their Google or Yahoo account.');
@define('PLUGIN_OPENID_EXISTS', 'You have already registered with this OpenID.');
@define('PLUGIN_OPENID_WRONG_ACTIVATION', 'Invalid activation URL!');
@define('PLUGIN_EVENT_OPENID_SELECT', 'Current OpenID associated with this account');
@define('PLUGIN_OPENID_DESCRIPTION',
'<h3>Using OpenID to log into your blog</h3>' .
'<p>This plugin does not need any configuration to enable login into your blog using OpenID (OpenID is self configuring)</p>' .
'<p>But users, who want to use OpenID for login have to configure the OpenID URL they want to be identified with. ' .
'So if you want to use OpenID as a login option, go to your <a href="serendipity_admin.php?serendipity[adminModule]=personal">Serendipity profile page</a> and configure your OpenID URL (at the bottom of the page).</p>' .
'<p>There are buttons for <b>Google</b>, <b>Yahoo</b> and <b>Aol</b> accounts, too. These services are also OpenID providers and the buttons will assist you while setting up.<br/>' .
'But there can <b>only be one OpenID connection for an account</b> configured at a time.</p>'
);
@define('PLUGIN_OPENID_DELEGATION_DESCRIPTION',
'<h3>OpenID Delegation Settings (Optional)</h3>' .
'<p>If you want to use your blog as your OpenID URL while logging in to services supporting it, you can configure here a delegation from your blog to the OpenID service hosting your ID.<br/>' .
'The plugin will add some information to your blogs HTML informing the services about where to look up your ID when you enter your blogs URL as your OpenID.</p>' .
'<p>Settung up delegation is completely optional and not needed for logging into your blog with OpenID.</p>'
);
@define('PLUGIN_OPENID_SERVER', 'OpenID server used for delegation');
@define('PLUGIN_OPENID_SERVER_DESC', 'OpenID server to use for delegate (requires OpenID delegate to be populated)');
@define('PLUGIN_OPENID_DELEGATE', 'Delegate to OpenID URL');
@define('PLUGIN_OPENID_DELEGATE_DESC', 'OpenID delegate (requires OpenID server to be populated)');
@define('PLUGIN_OPENID_XRDS_LOC', 'OpenID XRDS Location');
@define('PLUGIN_OPENID_XRDS_LOC_DESC', 'URL for XRDS Document Location (not needed normaly)');
@define('PLUGIN_OPENID_LOGIN_INPUT', 'Logon using your OpenID.');
@define('PLUGIN_OPENID_UPDATE_SUCCESS', 'Your OpenID has been updated');
@define('PLUGIN_OPENID_UPDATE_FAIL', 'An Error occurred updating your OpenID');
@define('PLUGIN_OPENID_INVALID_RESPONSE', 'Invalid OpenID Entered');
@define('PLUGIN_OPENID_LOGIN_WITH_GOOGLE', 'Login with your Google account');
@define('PLUGIN_OPENID_SET_GOOGLE_OID', 'Set your Google account as OpenID');
@define('PLUGIN_OPENID_LOGIN_WITH_YAHOO', 'Login with your Yahoo account');
@define('PLUGIN_OPENID_SET_YAHOO_OID', 'Set your Yahoo account as OpenID');
@define('PLUGIN_OPENID_LOGIN_WITH_AOL', 'Login with your Aol account');
@define('PLUGIN_OPENID_SET_AOL_OID', 'Set your Aol account as OpenID');