Overview
Language code | ko | |
---|---|---|
Aliased language codes | ko_ko, ko_kr, kor, kor_kr | |
English name of the language | Korean | |
Text direction | Left to right | |
Case sensitivity | Case-insensitive | |
Number of speakers | 79,278,717 | |
Plural: Default plural 2544 translations | ||
Number of plurals | 1 | |
Plural type | None | |
Plurals | ||
Plural formula |
0
|
|
Plural: gettext plural formula 13 translations | ||
Number of plurals | 2 | |
Plural type | One/other | |
Plurals | Singular | 1 | Plural | 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, … |
Plural formula |
n == 1 ? 0 : 1
|
|
Plural: CLDR plural with zero 3 translations | ||
Number of plurals | 2 | |
Plural type | Zero/other | |
Plurals | Zero | 0 | Other | 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, … |
Plural formula |
n==0 ? 0 : 1
|
|
Plural: Qt Linguist plural 37 translations | ||
Number of plurals | 1 | |
Plural type | None | |
Plurals | ||
Plural formula |
0
|
9 seconds ago
String statistics
Strings percent | Hosted strings | Words percent | Hosted words | Characters percent | Hosted characters | |
---|---|---|---|---|---|---|
Total | 799,579 | 7,505,435 | 48,928,767 | |||
Approved | 1% | 5,104 | 1% | 30,686 | 1% | 196,198 |
Waiting for review | 45% | 367,547 | 27% | 2,026,293 | 26% | 12,875,781 |
Translated | 47% | 378,776 | 27% | 2,075,097 | 27% | 13,268,403 |
Needs editing | 5% | 43,522 | 3% | 280,298 | 3% | 1,883,076 |
Read-only | 1% | 6,125 | 1% | 18,118 | 1% | 196,424 |
Failing checks | 3% | 25,916 | 3% | 225,967 | 3% | 1,570,215 |
Strings with suggestions | 1% | 12,635 | 1% | 57,117 | 1% | 379,112 |
Untranslated strings | 47% | 377,281 | 68% | 5,150,040 | 69% | 33,777,288 |
Quick numbers
and previous 30 days
Trends of last 30 days
+3%
Hosted words
+100%
+2%
Hosted strings
+100%
+1%
Translated
+45%
+1%
Contributors
+100%
![]() Translation changed |
|
![]() Translation changed |
|
![]() Translation changed |
|
![]() Translation changed |
|
![]() Translation added |
|
![]() Translation changed |
|
![]() Translation changed |
|
![]() Translation changed |
|
![]() Translation changed |
|
![]() Resource updated |
Parsing of the “
po/QML-ko.po ” file was enforced.
11 minutes ago
|
[codeblock]
var a = clamp(-10, -1, 5)
# a is -1
var b = clamp(8.1, 0.9, 5.5)
# b is 5.5
[/codeblock]
[b]Note:[/b] For better type safety, use [method clampf], [method clampi], [method Vector2.clamp], [method Vector2i.clamp], [method Vector3.clamp], [method Vector3i.clamp], [method Vector4.clamp], [method Vector4i.clamp], or [method Color.clamp] (not currently supported by this method).
[b]Note:[/b] When using this on vectors it will [i]not[/i] perform component-wise clamping, and will pick [param min] if [code]value < min[/code] or [param max] if [code]value > max[/code]. To perform component-wise clamping use the methods listed above.
고한정시켜, [param min] 보다 작지 않고, [param max] 보다 크지 않은 [Variant] 로 반환합니다. 크기 비교 연산자로 비교될 수 있는 모든 값으로 작동될 수 있습니다.[codeblock]
var a = clamp(-10, -1, 5)
# a 는 -1
var b = clamp(8.1, 0.9, 5.5)
# b 는 5.5
[/codeblock]
[b]참고:[/b] 더 나은 타입 안정성을 위해, [method clampf], [method clampi], [method Vector2.clamp], [method Vector2i.clamp], [method Vector3.clamp], [method Vector3i.clamp], [method Vector4.clamp], [method Vector4i.clamp], 또는 [method Color.clamp] (이 메서드에서는 현재 지원하지 않습니다)를 사용하세요.
[b]참고:[/b] 이것을 벡터에 사용
하는 것은 요소했을 때 구성요소(x, y) 별로 한정을 지원하지 [i]않습니다.[/i]