feat: add routes, lang, tests, stubs, docs, and docker configurations

This commit is contained in:
2026-05-21 16:05:16 +07:00
parent fad70d096b
commit 28a06315b8
3385 changed files with 177070 additions and 0 deletions
+47
View File
@@ -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 秒後重試。',
],
],
];