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 秒后重试。',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => '页面加载出错',
|
||||
|
||||
'body' => '加载此页面时发生错误,请稍后重试。',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'field' => [
|
||||
'label' => '全局搜索',
|
||||
'placeholder' => '搜索',
|
||||
],
|
||||
|
||||
'no_results_message' => '未找到搜索结果。',
|
||||
|
||||
];
|
||||
+72
@@ -0,0 +1,72 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'direction' => 'ltr',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'billing' => [
|
||||
'label' => '管理订阅',
|
||||
],
|
||||
|
||||
'logout' => [
|
||||
'label' => '退出登录',
|
||||
],
|
||||
|
||||
'open_database_notifications' => [
|
||||
'label' => '打开通知',
|
||||
],
|
||||
|
||||
'open_user_menu' => [
|
||||
'label' => '用户菜单',
|
||||
],
|
||||
|
||||
'sidebar' => [
|
||||
|
||||
'collapse' => [
|
||||
'label' => '折叠侧边栏',
|
||||
],
|
||||
|
||||
'expand' => [
|
||||
'label' => '展开侧边栏',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'theme_switcher' => [
|
||||
|
||||
'dark' => [
|
||||
'label' => '切换至深色主题',
|
||||
],
|
||||
|
||||
'light' => [
|
||||
'label' => '切换至浅色主题',
|
||||
],
|
||||
|
||||
'system' => [
|
||||
'label' => '按照系统主题切换',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'avatar' => [
|
||||
'alt' => ':name 的头像',
|
||||
],
|
||||
|
||||
'logo' => [
|
||||
'alt' => ':name 标志',
|
||||
],
|
||||
|
||||
'tenant_menu' => [
|
||||
|
||||
'search_field' => [
|
||||
'label' => '租户搜索',
|
||||
'placeholder' => '搜索',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => '仪表板',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'form' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => '保存',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'saved' => [
|
||||
'title' => '已保存',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => '创建 :label',
|
||||
|
||||
'breadcrumb' => '创建',
|
||||
|
||||
'form' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => '取消',
|
||||
],
|
||||
|
||||
'create' => [
|
||||
'label' => '保存',
|
||||
],
|
||||
|
||||
'create_another' => [
|
||||
'label' => '保存并创建另一个',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'created' => [
|
||||
'title' => '已创建',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => '编辑 :label',
|
||||
|
||||
'breadcrumb' => '编辑',
|
||||
|
||||
'form' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => '取消',
|
||||
],
|
||||
|
||||
'save' => [
|
||||
'label' => '保存',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'content' => [
|
||||
|
||||
'tab' => [
|
||||
'label' => '编辑',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'saved' => [
|
||||
'title' => '已保存',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'breadcrumb' => '列表',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => ':label 详情',
|
||||
|
||||
'breadcrumb' => '详情',
|
||||
|
||||
'content' => [
|
||||
|
||||
'tab' => [
|
||||
'label' => '详情',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'body' => '您有未保存的更改,确定要离开此页面吗?',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'logout' => [
|
||||
'label' => '退出登录',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'welcome' => '欢迎',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'open_documentation' => [
|
||||
'label' => '文档',
|
||||
],
|
||||
|
||||
'open_github' => [
|
||||
'label' => 'GitHub',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user