aboutsummaryrefslogtreecommitdiff
path: root/mod/uservalidationbyemail/languages/en.php
blob: f1741e4633ed2302cc66d5d7ffa4678be9df4018 (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
34
35
<?php
	/**
	 * Email user validation plugin language pack.
	 * 
	 * @package ElggUserValidationByEmail
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Curverider Ltd
	 * @copyright Curverider Ltd 2008-2009
	 * @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);
?>