diff --git a/i18n/qgis_ko.ts b/i18n/qgis_ko.ts index 92187491c55..2ca4811bd4b 100644 --- a/i18n/qgis_ko.ts +++ b/i18n/qgis_ko.ts @@ -20398,7 +20398,7 @@ Error was:%2 Edit Widget Properties - + 위젯 속성 편집 @@ -23435,7 +23435,7 @@ Please try a lower resolution or a smaller papersize mm - mm + mm @@ -23510,7 +23510,7 @@ Please try a lower resolution or a smaller papersize Label color changed - + 라벨 섹상 변경됨 @@ -24787,7 +24787,7 @@ Please try a lower resolution or a smaller papersize mm - mm + mm @@ -26139,7 +26139,7 @@ Please try a lower resolution or a smaller papersize mm - mm + mm @@ -28499,7 +28499,7 @@ p, li { white-space: pre-wrap; } Grid properties - + 그리드 속성 @@ -30898,7 +30898,7 @@ Parser error: Draw text as outlines (recommended) - + 문자을 외곽선으로 그리기 (권장) @@ -37831,7 +37831,7 @@ at line %2 column %3 Datasource - 데이터소스 + 데이터소스 @@ -38289,7 +38289,7 @@ This may be a problem in your network connection or at the WMS server. Select identify mode - + 객체확인 모드 선택 @@ -38299,12 +38299,12 @@ This may be a problem in your network connection or at the WMS server. Select view mode for raster layers - + 래스터 레이어의 보기 모드 선택 View - 보기 + 보기 @@ -38384,7 +38384,7 @@ This may be a problem in your network connection or at the WMS server. Tree - 트리 + 트리 @@ -38394,7 +38394,7 @@ This may be a problem in your network connection or at the WMS server. feature id - + 객체 ID @@ -49989,7 +49989,7 @@ PostGIS 지오메트리를 가진 테이블에 당신이 SELECT 권한이 있는 The field contains a filename for a picture. The widget will show a preview of this picture. - + 이 필드에는 그림의 파일이름이 담겨 있습니다. 위젯이 이 그림의 미리보기를 보여줍니다. @@ -57081,7 +57081,7 @@ standard deviation × Add relation - 릴래이션 추가 + 릴래이션 추가 @@ -65324,32 +65324,32 @@ Error was:%2 empty response - 빈 응답 + 빈 응답 WFS service exception:%1 - WFS 서비스 예외상황: %1 + WFS 서비스 예외상황: %1 unsuccessful service response: %1 - 성공적이지 않은 서비스 응답: %1 + 성공적이지 않은 서비스 응답: %1 WFS exception report (code=%1 text=%2) - WFS 예외상황 리포트 (code=%1 text=%2) + WFS 예외상황 리포트 (code=%1 text=%2) missing - 없음 + 없음 unhandled response: %1 - 처리되지 않은 응답: %1 + 처리되지 않은 응답: %1 Error @@ -66683,7 +66683,7 @@ Response was: Field contains a filename or URL for a webpage - + 파일 이름이나 웹페이지 URL을 담는 필드 @@ -67820,7 +67820,7 @@ Reason phrase: %2 Select dimensions - + 차원 선택 @@ -77688,7 +77688,20 @@ geometry &rarr; geometry <pre> contains( geomFromWKT( 'POLYGON((0 0 , 0 1 , 1 1 , 1 0 , 0 0 ))' ) , geomFromWKT( 'POINT( 0.5 0.5 )' )) &rarr; returns 1</pre> <pre> contains( geomFromWKT( 'POLYGON((0 0 , 0 1 , 1 1 , 1 0 , 0 0 ))' ) , geomFromWKT( 'LINESTRING(3 3 , 4 4 , 5 5)' )) &rarr; returns 0</pre> - + <h3>contains 함수</h3> +Returns true if and only if no points of b lie in the exterior of a, and at least one point of the interior of b lies in the interior of a. + +<h4>문법</h4> +<pre>contains( geometry a , geometry b)</pre> + +<h4>인자</h4> +geometry &rarr; geometry +geometry &rarr; geometry + +<h4>Example</h4> +<pre> contains( geomFromWKT( 'POLYGON((0 0 , 0 1 , 1 1 , 1 0 , 0 0 ))' ) , geomFromWKT( 'POINT( 0.5 0.5 )' )) &rarr; returns 1</pre> +<pre> 예시( geomFromWKT( 'POLYGON((0 0 , 0 1 , 1 1 , 1 0 , 0 0 ))' ) , geomFromWKT( 'LINESTRING(3 3 , 4 4 , 5 5)' )) &rarr; returns 0</pre> + @@ -77897,7 +77910,24 @@ None <pre> $geometry IS NULL &rarr; returns 0, if your geometry is not NULL</pre> - + <h3>IS 연산자</h3> +Returns 1 if a is the same as b. + +<h4>문법</h4> +<pre>a IS b</pre> + +<h4>인자</h4> +None + +<h4>예시</h4> +<pre> 'A' IS 'A' &rarr; returns 1 </pre> +<pre> 'A' IS 'a' &rarr; returns 0 </pre> +<pre> 4 IS 4 &rarr; returns 1 </pre> +<pre> 4 IS 2+2 &rarr; returns 1 </pre> +<pre> 4 IS 2 &rarr; returns 0 </pre> +<pre> $geometry IS NULL &rarr; returns 0, if your geometry is not NULL</pre> + +