You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bring back translation of rand.xml and sync with newest EN
When updating this file in 55c67d8
from the version that didn't have EN-Revision tag value, I made a
mistake and I pasted the original English version. This commit fixes
it and brings the latest update from English tree, syncing EN-Revision
for good.
<parameter>max</parameter> to be smaller than <parameter>min</parameter>
42
-
as opposed to returning &false;as <function>mt_rand</function>.</simpara>
38
+
<note><simpara>Od PHP 7.1.0 <function>rand</function> używa tego samego
39
+
generatora liczb losowych co <function>mt_rand</function>. Dla zachowania
40
+
kompatybilności wstecznej <function>rand</function> pozwala, aby parametr
41
+
<parameter>max</parameter> był mniejszy niż <parameter>min</parameter>,
42
+
zamiast zwrócić &false;tak, jak robi to <function>mt_rand</function>.</simpara>
43
43
</note>
44
44
</refsect1>
45
45
<refsect1role="parameters">
@@ -50,15 +50,15 @@
50
50
<term><parameter>min</parameter></term>
51
51
<listitem>
52
52
<para>
53
-
The lowest value to return (default: 0)
53
+
Najmniejsza zwracana wartość (domyślnie: 0)
54
54
</para>
55
55
</listitem>
56
56
</varlistentry>
57
57
<varlistentry>
58
58
<term><parameter>max</parameter></term>
59
59
<listitem>
60
60
<para>
61
-
The highest value to return (default: <function>getrandmax</function>)
61
+
Największa zwracana wartość (domyślnie: <function>getrandmax</function>)
62
62
</para>
63
63
</listitem>
64
64
</varlistentry>
@@ -68,8 +68,8 @@
68
68
<refsect1role="returnvalues">
69
69
&reftitle.returnvalues;
70
70
<para>
71
-
A pseudo random value between <parameter>min</parameter>
72
-
(or 0) and <parameter>max</parameter> (or <function>getrandmax</function>, inclusive).
71
+
Pseudolosowa wartość pomiędzy <parameter>min</parameter>
72
+
(lub 0) i <parameter>max</parameter> (lub <function>getrandmax</function> włącznie).
73
73
</para>
74
74
</refsect1>
75
75
<refsect1role="changelog">
@@ -87,13 +87,13 @@
87
87
<row>
88
88
<entry>7.2.0</entry>
89
89
<entry>
90
-
<function>rand</function> <linklinkend="migration72.incompatible.rand-mt_rand-output">has received a bug fix</link> for a modulo bias bug. This means that sequences generated with a specific seed may differ from PHP 7.1 on 64-bit machines.
90
+
<function>rand</function> <linklinkend="migration72.incompatible.rand-mt_rand-output">otrzymało poprawkę</link> na błąd skrzywienia modulo. Oznacza to, że sekwencje generowane z określonym ziarnem mogą różnić się od tych generowanych w PHP 7.1 na maszynach 64-bitowych.
91
91
</entry>
92
92
</row>
93
93
<row>
94
94
<entry>7.1.0</entry>
95
95
<entry>
96
-
<function>rand</function> <linklinkend="migration71.incompatible.rand-srand-aliases">has been made</link> an alias of <function>mt_rand</function>.
0 commit comments