diff --git a/src/lang/en.ts b/src/lang/en.ts index 6b267ad8..896ddd99 100644 --- a/src/lang/en.ts +++ b/src/lang/en.ts @@ -286,5 +286,9 @@ export const languageEnglish = { setNodePassword: "Set your password to security", inputNodePassword: "Input your password. if you can't remember, remove save/__password.txt in your server files and restart the server.", simple:"Simple", - advanced: "Advanced" + advanced: "Advanced", + orderByOrder: "Talk by Order", + removeFromGroup: "Do you really want to remove {{char}} from group?", + talkness: "Talkativeness", + active: "Active" } \ No newline at end of file diff --git a/src/lang/ko.ts b/src/lang/ko.ts index ec27b890..7553d90f 100644 --- a/src/lang/ko.ts +++ b/src/lang/ko.ts @@ -261,5 +261,13 @@ export const languageKorean = { globalRegexScript: "글로별 정규식", accessibility: "접근성", sendWithEnter: "엔터키로 메세지 보내기", - clickToEdit: "클릭해서 수정하기" + clickToEdit: "클릭해서 수정하기", + setNodePassword: "보안을 위해 비밀번호를 정해주세요", + inputNodePassword: "비밀번호를 입력해주세요. 기억이 안나신다면, save/__password를 지우고 서버를 재시작해주세요.", + simple:"간단", + advanced: "고급", + orderByOrder: "순서대로 말하기", + removeFromGroup: "정말로 {{char}}을 그룹에서 삭제시키겠습니까?", + talkness: "대화량", + active: "활성화를" } \ No newline at end of file diff --git a/src/lib/Others/Check.svelte b/src/lib/Others/Check.svelte index e1cab220..f1d8c23e 100644 --- a/src/lib/Others/Check.svelte +++ b/src/lib/Others/Check.svelte @@ -3,9 +3,10 @@ export let check = false export let onChange = (check) => {} + export let margin = true -