From 9658fcaba5bd7a7ecae28eb5129d9171c70e9d16 Mon Sep 17 00:00:00 2001 From: 1ilsang <1ilsang@naver.com> Date: Sun, 3 Mar 2024 01:28:12 +0900 Subject: [PATCH] chore(macros/DOMAttributeMethods): add ko locale (#10502) chore(macro): Add ko DOMAttributeMethods --- kumascript/macros/DOMAttributeMethods.ejs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/kumascript/macros/DOMAttributeMethods.ejs b/kumascript/macros/DOMAttributeMethods.ejs index f200c9cc317b..e6a931821c8b 100644 --- a/kumascript/macros/DOMAttributeMethods.ejs +++ b/kumascript/macros/DOMAttributeMethods.ejs @@ -33,6 +33,12 @@ switch(env.locale) { tableHead3 = 'Уровень DOM 1 методы для работы с Attr узлами напрямую (используется редко)', tableHead4 = 'Уровень DOM 2 знает о методах пространства имён для работы с Attr узлами напрямую (используется редко)'; break; + case 'ko': + tableTitle = '요소의 특성을 처리하는 DOM 메서드입니다.'; + tableHead1 = '네임스페이스 인식이 아닌, 가장 일반적으로 사용되는 메서드'; + tableHead2 = '네임스페이스 인식 변형 (DOM Level 2)'; + tableHead3 = 'Attr 노드를 직접 처리하는 DOM Level 1 메서드 (거의 사용되지 않음)'; + tableHead4 = 'Attr 노드를 직접 처리하는 DOM Level 2 네임스페이스 인식 메서드 (거의 사용되지 않음)'; default: break; } %>