aboutsummaryrefslogtreecommitdiff
path: root/mod/twitterservice/languages/en.php
blob: 39bb47741324049a158a248c076d1f975ae88809 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/**
 * An english language definition file
 */

$english = array(
	'twitterservice' => 'Twitter Services',
	
	'twitterservice:requires_oauth' => 'Twitter Services requires the OAuth Libraries plugin to be enabled.',
	
	'twitterservice:consumer_key' => 'Consumer Key',
	'twitterservice:consumer_secret' => 'Consumer Secret',
	
	'twitterservice:settings:instructions' => 'You must obtain a consumer key and secret from <a href="https://twitter.com/oauth_clients" target="_blank">Twitter</a>. Most of the fields are self explanatory, the one piece of data you will need is the callback url which takes the form http://[yoursite]/action/twitterlogin/return - [yoursite] is the url of your Elgg network.',
	
	'twitterservice:usersettings:description' => "Link your {$CONFIG->site->name} account with Twitter.",
	'twitterservice:usersettings:request' => "You must first <a href=\"%s\">authorize</a> {$CONFIG->site->name} to access your Twitter account.",
	'twitterservice:authorize:error' => 'Unable to authorize Twitter.',
	'twitterservice:authorize:success' => 'Twitter access has been authorized.',
	
	'twitterservice:usersettings:authorized' => "You have authorized {$CONFIG->site->name} to access your Twitter account: @%s.",
	'twitterservice:usersettings:revoke' => 'Click <a href="%s">here</a> to revoke access.',
	'twitterservice:revoke:success' => 'Twitter access has been revoked.',
	
	'twitterservice:login' => 'Allow users to sign in with Twitter?',
	'twitterservice:login:success' => 'You have been logged in.',
	'twitterservice:login:error' => 'Unable to login with Twitter.',
	'twitterservice:login:email' => "You must enter a valid email address for your new {$CONFIG->site->name} account.",
);

add_translation('en', $english);