feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
@@ -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 秒後に再試行してください。',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user