feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => '个人资料',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => '邮箱地址',
|
||||
],
|
||||
|
||||
'name' => [
|
||||
'label' => '姓名',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => '新密码',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => '确认新密码',
|
||||
],
|
||||
|
||||
'current_password' => [
|
||||
'label' => '当前密码',
|
||||
'below_content' => '出于安全原因,请确认您的密码以继续。',
|
||||
'validation_attribute' => '当前密码',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => '保存',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'saved' => [
|
||||
'title' => '已保存',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => '取消',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Vendored
+35
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => '验证邮箱地址',
|
||||
|
||||
'heading' => '验证邮箱地址',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'resend_notification' => [
|
||||
'label' => '已重新发送',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
'notification_not_received' => '没有收到我们的邮件?',
|
||||
'notification_sent' => '我们已经向 :email 发送了一封验证邮件。',
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'notification_resent' => [
|
||||
'title' => '我们已经重新发送了邮件。',
|
||||
],
|
||||
|
||||
'notification_resend_throttled' => [
|
||||
'title' => '发送邮件次数过多',
|
||||
'body' => '请在 :seconds 秒后重试。',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => '登录',
|
||||
|
||||
'heading' => '登录',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'register' => [
|
||||
'before' => '或者',
|
||||
'label' => '注册账号',
|
||||
],
|
||||
|
||||
'request_password_reset' => [
|
||||
'label' => '忘记了密码?',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => '邮箱地址',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => '密码',
|
||||
],
|
||||
|
||||
'remember' => [
|
||||
'label' => '保持登录状态',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'authenticate' => [
|
||||
'label' => '登录',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'failed' => '登录信息有误。',
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => '尝试登录次数过多',
|
||||
'body' => '请在 :seconds 秒后重试。',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+42
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => '重置密码',
|
||||
|
||||
'heading' => '忘记密码?',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'label' => '返回登录页面',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => '邮箱地址',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'request' => [
|
||||
'label' => '发送邮件',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => '尝试次数过多',
|
||||
'body' => '请在 :seconds 秒后重试。',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+43
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => '重置密码',
|
||||
|
||||
'heading' => '重置密码',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => '邮箱地址',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => '密码',
|
||||
'validation_attribute' => '密码',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => '确认密码',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'reset' => [
|
||||
'label' => '重置密码',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => '尝试次数过多',
|
||||
'body' => '请在 :seconds 秒后重试。',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => '注册',
|
||||
|
||||
'heading' => '注册',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'before' => '或者',
|
||||
'label' => '登录你的账号',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => '邮箱地址',
|
||||
],
|
||||
|
||||
'name' => [
|
||||
'label' => '姓名',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => '密码',
|
||||
'validation_attribute' => '密码',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => '确认密码',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'register' => [
|
||||
'label' => '提交注册',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => '尝试注册次数过多',
|
||||
'body' => '请在 :seconds 秒后重试。',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user