mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
translation update pl
This commit is contained in:
parent
126ed6bace
commit
6703126af0
@ -74339,7 +74339,25 @@ None
|
||||
<pre> $geometry IS NULL &rarr; returns 0, if your geometry is not NULL</pre>
|
||||
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="unfinished"><h3>wyrażenie IS</h3>
|
||||
Zwraca 1 jeśli a jest takie samo jak b.
|
||||
|
||||
<h4>Składnia</h4>
|
||||
<pre>a is b</pre>
|
||||
|
||||
<h4>Argumenty</h4>
|
||||
Brak
|
||||
|
||||
<h4>Przykład</h4>
|
||||
<pre> 'A' IS 'A' &rarr; zwraca 1 </pre>
|
||||
<pre> 'A' IS 'a' &rarr; zwraca 0 </pre>
|
||||
<pre> 4 IS 4 &rarr; zwraca 1 </pre>
|
||||
<pre> 4 IS 2+2 &rarr; zwraca 1 </pre>
|
||||
<pre> 4 IS 2 &rarr; zwraca 0 </pre>
|
||||
<pre> 4 IS 2 &rarr; zwraca 0 </pre>
|
||||
<pre> $geometry IS NULL &rarr; zwraca 0, jeśli twoja geometria nie jest NULL</pre>
|
||||
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/qgsexpression_texts.cpp" line="1535"/>
|
||||
@ -74357,7 +74375,20 @@ b &rarr; geometry
|
||||
<pre> disjoint( geomFromWKT( 'POLYGON((0 0 , 0 1 , 1 1 , 1 0 , 0 0 ))' ) , geomFromWKT( 'LINESTRING(3 3 , 4 4 , 5 5)' )) &rarr; returns 1</pre>
|
||||
<pre> disjoint( geomFromWKT( 'LINESTRING(3 3 , 4 4 , 5 5)' ) , geomFromWKT( 'POINT(4 4)' )) &rarr; returns 0</pre>
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><h3>funkcja disjoint</h3>
|
||||
Zwraca 1 if jeśli geometrie nie "przecinają się przestrzennie" - jeśli nie współdzielą żadnej przestrzeni.
|
||||
|
||||
<h4>Składnia</h4>
|
||||
<pre>disjoint( a, b )</pre>
|
||||
|
||||
<h4>Argumenty</h4>
|
||||
a &rarr; geometria
|
||||
b &rarr; geometria
|
||||
|
||||
<h4>Przykład</h4>
|
||||
<pre> disjoint( geomFromWKT( 'POLYGON((0 0 , 0 1 , 1 1 , 1 0 , 0 0 ))' ) , geomFromWKT( 'LINESTRING(3 3 , 4 4 , 5 5)' )) &rarr; zwraca 1</pre>
|
||||
<pre> disjoint( geomFromWKT( 'LINESTRING(3 3 , 4 4 , 5 5)' ) , geomFromWKT( 'POINT(4 4)' )) &rarr; zwraca 0</pre>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/qgsexpression_texts.cpp" line="245"/>
|
||||
@ -74404,7 +74435,20 @@ b &rarr; distance for the buffer
|
||||
<pre> buffer($geometry, 10.5 ) &rarr; returns a polygon</pre>
|
||||
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><h3>funkcja buffer</h3>
|
||||
Zwraca geometrię reprezentującą wszystkie punkty, których odległość od tej geometrii jest mniejsza lub równa odległości. Kalkulacje są przeprowadzone w układzie współrzędnych tej geometrii.
|
||||
|
||||
<h4>Składnia</h4>
|
||||
<pre>buffer(a, b)</pre>
|
||||
|
||||
<h4>Argumenty</h4>
|
||||
a &rarr; geometria
|
||||
b &rarr; odległość dla bufora
|
||||
|
||||
<h4>Przykład</h4>
|
||||
<pre> buffer($geometry, 10.5 ) &rarr; zwraca polygon</pre>
|
||||
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/core/qgsexpression_texts.cpp" line="962"/>
|
||||
|
Loading…
x
Reference in New Issue
Block a user