blob: 6b3a6f70864af40aa95a1cafa57db4a16e491861 (
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
/**
* Email user validation plugin language pack.
*
* @package Elgg.Core.Plugin
* @subpackage ElggUserValidationByEmail
*/
$english = array(
'email:validate:subject' => "%s please confirm your email address for %s!",
'email:validate:body' => "%s,
Before you can start you using %s, you must confirm your email address.
Please confirm your email address by clicking on the link below:
%s
If you can't click on the link, copy and paste it to your browser manually.
%s
%s
",
'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);
|