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
+85
View File
@@ -0,0 +1,85 @@
<?php
return [
'title' => 'ログイン',
'heading' => 'アカウントにログイン',
'actions' => [
'register' => [
'before' => 'または',
'label' => 'アカウントを登録',
],
'request_password_reset' => [
'label' => 'パスワードをお忘れですか?',
],
],
'form' => [
'email' => [
'label' => 'メールアドレス',
],
'password' => [
'label' => 'パスワード',
],
'remember' => [
'label' => 'ログインしたままにする',
],
'actions' => [
'authenticate' => [
'label' => 'ログイン',
],
],
],
'multi_factor' => [
'heading' => '本人確認',
'subheading' => 'ログインを続行するには、本人確認が必要です。',
'form' => [
'provider' => [
'label' => 'どの方法で認証しますか?',
],
'actions' => [
'authenticate' => [
'label' => 'ログイン認証',
],
],
],
],
'messages' => [
'failed' => '認証に失敗しました。',
],
'notifications' => [
'throttled' => [
'title' => 'ログインの試行回数が多すぎます',
'body' => ':seconds 秒後に再試行してください。',
],
],
];