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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
<?php
/******************************************************************************
* Each entry of that file can be associated with a comment to indicate its *
* state. When there is no comment, it means the entry is fully translated. *
* The recognized comments are (comment matching is case-insensitive): *
* + TODO: the entry has never been translated. *
* + DIRTY: the entry has been translated but needs to be updated. *
* + IGNORE: the entry does not need to be translated. *
* When a comment is not recognized, it is discarded. *
******************************************************************************/
return array(
'email' => array(
'feedback' => array(
'invalid' => '邮箱地址无效',
'required' => '必须填写邮箱地址',
),
'validation' => array(
'change_email' => '你可以在 <a href="%s">用户管理</a> 中变更你的邮箱地址',
'email_sent_to' => '我们已通过 <strong>%s</strong> 发送验证邮件给你,请按其中指示来验证邮箱地址。',
'feedback' => array(
'email_failed' => '由于服务器配置错误,我们无法向你发送邮件。',
'email_sent' => '邮件已发送到你的邮箱中',
'error' => '邮箱地址无法通过验证',
'ok' => '邮箱地址已成功通过验证',
'unnecessary' => '该邮箱地址已被验证',
'wrong_token' => '由于令牌错误,邮箱地址无法通过验证。',
),
'need_to' => '你需要先验证邮箱地址才能使用 %s',
'resend_email' => '重发邮件',
'title' => '验证邮箱地址',
),
),
'mailer' => array(
'email_need_validation' => array(
'body' => '%s,欢迎',
'title' => '你需要验证你的帐户',
'welcome' => '你已注册 %s 现在只需点击下方链接通过邮箱验证即可完成注册:',
),
),
'password' => array(
'invalid' => '无效密码',
),
'tos' => array(
'feedback' => array(
'invalid' => '你必须接受服务条款才能注册',
),
),
'username' => array(
'invalid' => '此用户名无效',
'taken' => '此用户名已存在',
),
);
|