aboutsummaryrefslogtreecommitdiff
path: root/mod/uservalidationbyemail/languages/en.php
blob: 44eb5e45bf9c3288864b21175053085bb343d155 (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
32
33
<?php
	/**
	 * Email user validation plugin language pack.
	 * 
	 * @package ElggUserValidationByEmail
	 * @author Curverider Ltd
	 * @link http://elgg.com/
	 */

	$english = array(
	
		'email:validate:subject' => "%s please confirm your email address!",
		'email:validate:body' => "Hi %s,

Please confirm your email address by clicking on the link below:

%s
",
		'email:validate:success:subject' => "Email validated %s!",
		'email:validate:success:body' => "Hi %s,
			
Congratulations, you have successfully validated your email address.",
	
		
		'email:confirm:success' => "You have confirmed your email address!",
		'email:confirm:fail' => "Your email address could not be verified...",
	
		'uservalidationbyemail:registerok' => "To activate your account, please confirm your email address by clicking on the link we just sent you."
	
	);
					
	add_translation("en",$english);
?>