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,19 @@
<?php
return [
'notifications' => [
'blocked' => [
'title' => '이메일 주소 변경 차단됨',
'body' => ':email로의 이메일 주소 변경 시도를 성공적으로 차단했습니다. 원래 요청을 하지 않았다면 즉시 문의해 주세요.',
],
'failed' => [
'title' => '이메일 주소 변경 차단 실패',
'body' => '안타깝게도 이미 차단하기 전에 확인되었기 때문에 이메일 주소가 :email로 변경되는 것을 막을 수 없었습니다. 원래 요청을 하지 않았다면 즉시 문의해 주세요.',
],
],
];
@@ -0,0 +1,14 @@
<?php
return [
'notifications' => [
'verified' => [
'title' => '이메일 주소 변경됨',
'body' => '이메일 주소가 :email로 성공적으로 변경되었습니다.',
],
],
];