i18n(malaysia): 콤보 입고 차단 안내 영문 모드 대응

영문 토글 시 콤보 입고 불가 alert도 영어로 표시 (mys_lang 기준 분기)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-12 12:47:41 +09:00
parent 8f882ff4cd
commit 65997adfd3
@@ -99,7 +99,10 @@
if (v !== '' && v !== '0') keyed.push(inp.name.replace('qty_', ''));
});
if (keyed.length) {
alert('콤보 상품은 입고할 수 없습니다.\n낱개로 분리해서 입고하세요.\n\n입고 불가 콤보: ' + keyed.join(', '));
var en = localStorage.getItem('mys_lang') === 'en';
alert(en
? 'Combo products cannot be received.\nReceive them as separate single items.\n\nNot allowed: ' + keyed.join(', ')
: '콤보 상품은 입고할 수 없습니다.\n낱개로 분리해서 입고하세요.\n\n입고 불가 콤보: ' + keyed.join(', '));
return false;
}
return true;