Skip to content

Commit 677dd94

Browse files
committed
update Korean translations
Thanks to To2morrow on Nexus!
1 parent 45216fe commit 677dd94

3 files changed

Lines changed: 27 additions & 27 deletions

File tree

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Hungarian | ↻ [partly translated](../src/SMAPI/i18n/hu.json)
6565
Indonesian | ✓ [fully translated](../src/SMAPI/i18n/id.json)
6666
Italian | ↻ [partly translated](../src/SMAPI/i18n/it.json)
6767
Japanese | ↻ [partly translated](../src/SMAPI/i18n/ja.json)
68-
Korean | [partly translated](../src/SMAPI/i18n/ko.json)
68+
Korean | [fully translated](../src/SMAPI/i18n/ko.json)
6969
[Polish] | ↻ [partly translated](../src/SMAPI/i18n/pl.json)
7070
Portuguese | ✓ [fully translated](../src/SMAPI/i18n/pt.json)
7171
Russian | ✓ [fully translated](../src/SMAPI/i18n/ru.json)

docs/release-notes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* For players:
66
* Improved performance.
77
* Improved error message when a mod is blocked by Windows Smart App Control.
8+
* Improved translations. Thanks to To2morrow (updated Korean)!
89

910
* For mod authors:
1011
* Added OS metrics to the [metrics API](technical/web.md#modsmetrics).

src/SMAPI/i18n/ko.json

Lines changed: 25 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -11,45 +11,44 @@
1111
/*********
1212
** Generic Mod Config Menu UI
1313
*********/
14-
// TODO
1514
// 'SMAPI features' section
16-
"config.section.features": "SMAPI features",
15+
"config.section.features": "SMAPI 기능",
1716

18-
"config.check-for-updates.name": "Check for updates",
19-
"config.check-for-updates.desc": "Whether to automatically check for newer versions of SMAPI and mods when you load the game. If new versions are available, an alert will be shown in the console. This doesn't affect the load time even if your connection is offline or slow, because it happens in the background.",
17+
"config.check-for-updates.name": "업데이트 확인",
18+
"config.check-for-updates.desc": "게임 실행 시 SMAPI와 모드의 최신 버전을 자동으로 확인할지 여부입니다. 새로운 버전이 있을 경우 콘솔에 알림이 표시됩니다. 이 과정은 백그라운드에서 진행되므로 인터넷 연결이 느리거나 오프라인 상태여도 로딩 시간에는 영향을 주지 않습니다.",
2019

21-
"config.check-content-integrity.name": "Check content integrity",
22-
"config.check-content-integrity.desc": "Whether SMAPI should check whether the game's content files are present and unmodified. This should nearly always be enabled. If disabled, SMAPI will log a warning for visibility when someone helps you troubleshoot game issues.",
20+
"config.check-content-integrity.name": "콘텐츠 무결성 확인",
21+
"config.check-content-integrity.desc": "게임 콘텐츠 파일이 존재하며 수정되지 않았는지 SMAPI가 확인할지 여부입니다. 대부분의 경우 항상 활성화하는 것이 좋습니다. 비활성화하면 문제 해결 시 참고할 수 있도록 SMAPI가 경고를 기록합니다.",
2322

24-
"config.read-console-input.name": "Read console input",
25-
"config.read-console-input.desc": "Whether SMAPI should listen for console input. Disabling this will prevent you from using console commands. On some specific Linux systems, disabling this may reduce CPU usage.",
23+
"config.read-console-input.name": "콘솔 입력 읽기",
24+
"config.read-console-input.desc": "SMAPI가 콘솔 입력을 수신할지 여부입니다. 비활성화하면 콘솔 명령어를 사용할 수 없습니다. 일부 특정 Linux 시스템에서는 비활성화 시 CPU 사용량이 줄어들 수 있습니다.",
2625

2726
// 'Console window' section
28-
"config.section.console-window": "Console window",
27+
"config.section.console-window": "콘솔 창",
2928

30-
"config.developer-mode.name": "Developer mode",
31-
"config.developer-mode.desc": "Whether to show much more info in the SMAPI consoler window, intended for mod developers. Not recommended for most players.",
29+
"config.developer-mode.name": "개발자 모드",
30+
"config.developer-mode.desc": "SMAPI 콘솔 창에 더 많은 정보를 표시할지 여부입니다. 주로 모드 개발자를 위한 기능이며 일반 플레이어에게는 권장되지 않습니다.",
3231

33-
"config.color-scheme.name": "Color scheme",
34-
"config.color-scheme.desc": "The color scheme to apply to text in the SMAPI console window. This has no effect on the game, mods, or SMAPI log file.",
35-
"config.color-scheme.options.AutoDetect": "Auto-detect",
36-
"config.color-scheme.options.AutoDetect.on-windows": "Auto-detect (recommended)",
37-
"config.color-scheme.options.DarkBackground": "Lighter text (for dark backgrounds)",
38-
"config.color-scheme.options.LightBackground": "Darker text (for light backgrounds)",
39-
"config.color-scheme.options.None": "No colors",
32+
"config.color-scheme.name": "색상 테마",
33+
"config.color-scheme.desc": "SMAPI 콘솔 창 텍스트에 적용할 색상 테마입니다. 게임, 모드, SMAPI 로그 파일에는 영향을 주지 않습니다.",
34+
"config.color-scheme.options.AutoDetect": "자동 감지",
35+
"config.color-scheme.options.AutoDetect.on-windows": "자동 감지 (권장)",
36+
"config.color-scheme.options.DarkBackground": "밝은 글씨 (어두운 배경용)",
37+
"config.color-scheme.options.LightBackground": "어두운 글씨 (밝은 배경용)",
38+
"config.color-scheme.options.None": "색상 없음",
4039

4140
// 'Verbose logging' section
42-
"config.section.verbose-logs": "Verbose logs",
43-
"config.section.verbose-logs.explanation": "To help troubleshoot, SMAPI and many mods can send extra info to the SMAPI log (called 'verbose logging'). This may cause performance issues, and should usually be disabled.",
41+
"config.section.verbose-logs": "상세 로그",
42+
"config.section.verbose-logs.explanation": "문제 해결을 돕기 위해 SMAPI와 여러 모드는 SMAPI 로그에 추가 정보를 기록할 수 있습니다(이를 '상세 로그'라고 합니다). 성능에 영향을 줄 수 있으므로 특별한 경우가 아니라면 비활성화하는 것이 좋습니다.",
4443

45-
"config.enable-for.name": "Enable for",
46-
"config.enable-for.desc": "Choose which mods have verbose logging enabled.",
47-
"config.enable-for.options.all": "All (not recommended)",
48-
"config.enable-for.options.selected": "Mods selected below",
44+
"config.enable-for.name": "활성화 대상",
45+
"config.enable-for.desc": "상세 로그를 활성화할 모드를 선택하세요.",
46+
"config.enable-for.options.all": "모두 (권장하지 않음)",
47+
"config.enable-for.options.selected": "아래에서 선택한 모드",
4948

5049
"config.enable-for-smapi.name": "SMAPI",
51-
"config.enable-for-smapi.desc": "Whether to enable verbose logs for SMAPI itself.",
50+
"config.enable-for-smapi.desc": "SMAPI 자체에 대해 상세 로그를 활성화할지 여부입니다.",
5251

5352
"config.enable-for-mod.name": "{{modName}}",
54-
"config.enable-for-mod.desc": "Whether to enable verbose logs for the '{{modName}}' mod."
53+
"config.enable-for-mod.desc": "'{{modName}}' 모드에 대해 상세 로그를 활성화할지 여부입니다."
5554
}

0 commit comments

Comments
 (0)