Skip to content

Commit 453d1d3

Browse files
authored
feat: Added locale/zh_CN (#1038)
1 parent 8f43259 commit 453d1d3

File tree

3 files changed

+100
-0
lines changed

3 files changed

+100
-0
lines changed

locale/zh_CN/auth.php

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<?php
2+
3+
return [
4+
5+
/*
6+
|--------------------------------------------------------------------------
7+
| Authentication Language Lines
8+
|--------------------------------------------------------------------------
9+
|
10+
| The following language lines are used during authentication for various
11+
| messages that we need to display to the user. You are free to modify
12+
| these language lines according to your application's requirements.
13+
|
14+
*/
15+
'failed' => '用户名或密码错误。',
16+
'throttle' => '您尝试的登录次数过多,请 :seconds 秒后再试。',
17+
'password' => '密码错误',
18+
19+
'full_name' => '姓名',
20+
'email' => '邮箱',
21+
'confirm_password' => '确认密码',
22+
'remember_me' => '记住我',
23+
'sign_in' => '登录',
24+
'sign_out' => '退出',
25+
'register' => '注册',
26+
27+
'login' => [
28+
'title' => '登录以开始会话',
29+
'forgot_password' => '忘记密码?',
30+
],
31+
32+
'registration' => [
33+
'title' => '创建新账号',
34+
'i_agree' => '我同意',
35+
'terms' => '条款',
36+
'have_membership' => '已有账号',
37+
],
38+
39+
'forgot_password' => [
40+
'title' => '您忘记密码了吗?在这里可以重置您的密码。',
41+
'send_pwd_reset' => '发送重置密码邮件',
42+
],
43+
44+
'reset_password' => [
45+
'title' => '您还差一步即可设置新密码,立即重置密码。',
46+
'reset_pwd_btn' => '重置密码',
47+
],
48+
49+
'confirm_passwords' => [
50+
'title' => '在继续之前请确认您的密码。',
51+
'forgot_your_password' => '忘记密码?',
52+
],
53+
54+
'verify_email' => [
55+
'title' => '验证您的邮箱',
56+
'success' => '已重新发送验证邮件到您的邮箱',
57+
'notice' => '在继续之前,请在邮箱查收验证邮件。如果您未收到,',
58+
'another_req' => '点击这里重新发送',
59+
],
60+
61+
'emails' => [
62+
'password' => [
63+
'reset_link' => '点击这里重置密码',
64+
],
65+
],
66+
];

locale/zh_CN/crud.php

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
3+
return [
4+
5+
'add_new' => '添加',
6+
'cancel' => '取消',
7+
'create' => '创建',
8+
'edit' => '编辑',
9+
'save' => '保存',
10+
'detail' => '详情',
11+
'back' => '返回',
12+
'search' => '搜索',
13+
'export' => '导出',
14+
'print' => '打印',
15+
'reset' => '重置',
16+
'reload' => '刷新',
17+
'action' => '操作',
18+
'id' => 'ID',
19+
'created_at' => '创建时间',
20+
'updated_at' => '更新时间',
21+
'deleted_at' => '删除时间',
22+
'are_you_sure' => '您确定吗?',
23+
];

locale/zh_CN/messages.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
return [
4+
5+
'retrieved' => '成功获取:model。',
6+
'saved' => '已成功创建:model。',
7+
'updated' => '已成功修改:model。',
8+
'deleted' => '已成功删除:model。',
9+
'not_found' => '未找到:model。',
10+
11+
];

0 commit comments

Comments
 (0)