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
@@ -0,0 +1,68 @@
<?php
return [
'label' => '프로필',
'form' => [
'email' => [
'label' => '이메일',
],
'name' => [
'label' => '이름',
],
'password' => [
'label' => '새 비밀번호',
'validation_attribute' => '비밀번호',
],
'password_confirmation' => [
'label' => '새 비밀번호 확인',
'validation_attribute' => '비밀번호 확인',
],
'current_password' => [
'label' => '현재 비밀번호',
'below_content' => '보안을 위해 계속하려면 비밀번호를 확인해 주세요.',
'validation_attribute' => '현재 비밀번호',
],
'actions' => [
'save' => [
'label' => '변경 사항 저장',
],
],
],
'multi_factor_authentication' => [
'label' => '이중 인증 (2FA)',
],
'notifications' => [
'email_change_verification_sent' => [
'title' => '이메일 주소 변경 요청이 전송됨',
'body' => ':email로 이메일 주소 변경 요청이 전송되었습니다. 변경사항을 확인하려면 이메일을 확인해 주세요.',
],
'saved' => [
'title' => '저장 완료',
],
],
'actions' => [
'cancel' => [
'label' => '취소',
],
],
];
@@ -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 초 후에 다시 시도해 주세요.',
],
],
];
+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 초 후에 다시 시도해 주세요.',
],
],
];
@@ -0,0 +1,46 @@
<?php
return [
'title' => '비밀번호 재설정',
'heading' => '비밀번호를 잊어버리셨나요?',
'actions' => [
'login' => [
'label' => '로그인으로 돌아가기',
],
],
'form' => [
'email' => [
'label' => '이메일',
],
'actions' => [
'request' => [
'label' => '이메일 전송',
],
],
],
'notifications' => [
'sent' => [
'body' => '계정이 존재하지 않으면 이메일을 받지 못합니다.',
],
'throttled' => [
'title' => '너무 많이 시도했습니다',
'body' => ':seconds 초 후에 다시 시도해 주세요.',
],
],
];
@@ -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 초 후에 다시 시도해 주세요.',
],
],
];
+56
View File
@@ -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 초 후에 다시 시도해 주세요.',
],
],
];