Update warning messages for all input fields to English

Translate various input validation messages from Korean to English across LoginModal, Auctions, and Landing components.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 069d4324-6c40-4355-955e-c714a50de1ea
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3df548ff-50ae-432f-9be4-25d34eccc983/069d4324-6c40-4355-955e-c714a50de1ea/9tQ591o
This commit is contained in:
kimjaehyeon0101
2025-09-29 21:46:54 +00:00
parent 7a5cfa43d9
commit 716361ef96
4 changed files with 18 additions and 0 deletions

View File

@ -78,6 +78,8 @@ export default function LoginModal({ isOpen, onClose }: LoginModalProps) {
type="text"
value={username}
onChange={(e) => setUsername(e.target.value)}
onInvalid={(e) => (e.target as HTMLInputElement).setCustomValidity('Please enter your username')}
onInput={(e) => (e.target as HTMLInputElement).setCustomValidity('')}
placeholder="아이디를 입력하세요"
required
data-testid="input-username"
@ -90,6 +92,8 @@ export default function LoginModal({ isOpen, onClose }: LoginModalProps) {
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
onInvalid={(e) => (e.target as HTMLInputElement).setCustomValidity('Please enter your password')}
onInput={(e) => (e.target as HTMLInputElement).setCustomValidity('')}
placeholder="비밀번호를 입력하세요"
required
data-testid="input-password"