Component | Translated | Unfinished | Unfinished words | Unfinished characters | Untranslated | Checks | Suggestions | Comments | |
---|---|---|---|---|---|---|---|---|---|
Godot Editor MIT | 91% | 444 | 4,375 | 27,496 | 207 | 45 | 0 | 42 | |
|
|||||||||
Godot Properties MIT | 67% | 1,163 | 2,928 | 18,713 | 220 | 123 | 4 | 0 | |
|
|||||||||
Godot Class Reference MIT | 1% | 20,281 | 535,285 | 3,722,682 | 18,142 | 780 | 3 | 1 | |
|
|||||||||
Godot Documentation CC-BY-4.0 | 16% | 21,131 | 379,982 | 2,497,580 | 16,734 | 529 | 2 | 0 | |
|
|||||||||
Glossary Godot Engine CC-BY-3.0 | 98% | 7 | 9 | 72 | 5 | 0 | 0 | 4 | |
|
Overview
Project website | godotengine.org | |
---|---|---|
Instructions for translators | Thanks for helping with Godot Engine translations! Please make sure to read the detailed instructions that we have for each translation components on: https://docs.godotengine.org/en/latest/contributing/documentation/editor_and_docs_localization.html |
|
Project maintainers | Akien timothyqiu mhilbrunner | |
Language | Korean | |
Language code | ko | |
Text direction | Left to right | |
Number of speakers | 79,236,042 |
3 days ago
String statistics
Strings percent | Hosted strings | Words percent | Hosted words | Characters percent | Hosted characters | |
---|---|---|---|---|---|---|
Total | 55,506 | 1,021,208 | 6,888,752 | |||
Translated | 22% | 12,480 | 9% | 98,629 | 9% | 622,209 |
Needs editing | 13% | 7,718 | 7% | 73,259 | 7% | 511,658 |
Read-only | 1% | 61 | 1% | 71 | 1% | 422 |
Failing checks | 2% | 1,477 | 1% | 19,476 | 2% | 139,405 |
Strings with suggestions | 1% | 9 | 1% | 110 | 1% | 796 |
Untranslated strings | 63% | 35,308 | 83% | 849,320 | 83% | 5,754,885 |
Quick numbers
and previous 30 days
Trends of last 30 days
—
Hosted words
+100%
—
Hosted strings
+100%
+1%
Translated
+22%
−40%
Contributors
+100%
anonymous
Suggestion added |
|
anonymous
Suggestion added |
|
anonymous
Suggestion added |
|
anonymous
Suggestion added |
|
anonymous
Suggestion added |
|
None
Changes committed |
Changes committed
a week ago
|
pilsang0512
Translation changed |
|
pilsang0512
Translation changed |
|
pilsang0512
Marked for edit |
|
pilsang0512
Marked for edit |
|
[codeblock]
var a = [4, 2.5, 1.2]
print(a is Array) # Prints true
var b = convert(a, TYPE_PACKED_BYTE_ARRAY)
print(b) # Prints [4, 2, 1]
print(b is Array) # Prints false
[/codeblock]
[i]폐지 예정입니다.[/i] 대신 [method @GlobalScope.type_convert]를 사용하세요.가능한 한 최선의 방법으로 [param what]가능한 가장 좋은 방식
을를 [param type]으로 변환합니다. [param type]은는 [enum Variant.Type]의값을 사용합니다.[codeblock]
var a = [4, 2.5, 1.2]
print(a is Array) # true
(참)출력var b = convert(a, TYPE_PACKED_BYTE_ARRAY)
print(b) # [4, 2, 1] 출력
print(b is Array) # false
(참)출력[/codeblock]