feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => '登入',
|
||||
|
||||
'heading' => '登入帳號',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-Mail 位址',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => '密碼',
|
||||
],
|
||||
|
||||
'remember' => [
|
||||
'label' => '記住我',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'authenticate' => [
|
||||
'label' => '登入',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'failed' => '所提供的帳號密碼與資料庫中的記錄不相符。',
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => '嘗試登入次數過多。請在 :seconds 秒後重試。',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'field' => [
|
||||
'label' => '全域搜尋',
|
||||
'placeholder' => '搜尋',
|
||||
],
|
||||
|
||||
'no_results_message' => '無搜尋結果。',
|
||||
|
||||
];
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'direction' => 'ltr',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'logout' => [
|
||||
'label' => '登出',
|
||||
],
|
||||
|
||||
'open_user_menu' => [
|
||||
'label' => '用戶菜單',
|
||||
],
|
||||
|
||||
'theme_switcher' => [
|
||||
|
||||
'dark' => [
|
||||
'label' => '切換至暗色模式',
|
||||
],
|
||||
|
||||
'light' => [
|
||||
'label' => '切換至亮色模式',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'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,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => '編輯 :label',
|
||||
|
||||
'breadcrumb' => '編輯',
|
||||
|
||||
'form' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => '取消',
|
||||
],
|
||||
|
||||
'save' => [
|
||||
'label' => '保存',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'saved' => [
|
||||
'title' => '已保存',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'breadcrumb' => '清單',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => '檢視 :label',
|
||||
|
||||
'breadcrumb' => '檢視',
|
||||
|
||||
];
|
||||
@@ -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