Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 21b7717

Browse files
committed
Update translation from Transifex
1 parent 83a497e commit 21b7717

File tree

1 file changed

+24
-3
lines changed

1 file changed

+24
-3
lines changed

faq/design.po

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,43 +126,64 @@ msgid ""
126126
"point operations. This means that as far as floating-point operations are "
127127
"concerned, Python behaves like many popular languages including C and Java."
128128
msgstr ""
129+
"Typ :class:'float' w CPython używa ``double`` z C do przechowywania. Wartość "
130+
"obiektu :class:'float' jest przechowywana w binarnej liczbie "
131+
"zmiennoprzecinkowej z niezmienną precyzją (typowo 53 bity) a Python używa "
132+
"operacji C, które z kolei bazują na implementacji sprzętu w procesorze, żeby "
133+
"wykonywać działania na liczbach zmiennoprzecinkowych. To oznacza, że jeśli "
134+
"chodzi o działania na liczbach zmiennoprzecinkowych, to Python zachowuje się "
135+
"jak wiele popularnych języków, między innymi C i Java."
129136

130137
msgid ""
131138
"Many numbers that can be written easily in decimal notation cannot be "
132139
"expressed exactly in binary floating-point. For example, after::"
133140
msgstr ""
141+
"Wiele liczb, które mogą być łatwo zapisane w systemie dziesiętnym, nie może "
142+
"być wyrażonych w postaci binarnej liczby zmiennoprzecinkowej. Na przykład "
143+
"po::"
134144

135145
msgid ""
136146
"the value stored for ``x`` is a (very good) approximation to the decimal "
137147
"value ``1.2``, but is not exactly equal to it. On a typical machine, the "
138148
"actual stored value is::"
139149
msgstr ""
150+
"wartość przechowywane dla ``x`` jest (bardzo dobrym) przybliżeniem do "
151+
"dziesiętnej wartości ``1.2``, ale nie jest dokładnie jej równa. Na typowym "
152+
"urządzeniu, faktycznie przechowywana wartość wynosi:: "
140153

141154
msgid "which is exactly::"
142-
msgstr ""
155+
msgstr "która dokładnie równa się::"
143156

144157
msgid ""
145158
"The typical precision of 53 bits provides Python floats with 15--16 decimal "
146159
"digits of accuracy."
147160
msgstr ""
161+
"Typowa precyzja 53-bitowa zapewnia Pythonowi liczby zmiennoprzecinkowe z "
162+
"dokładnością do 15--16 cyfr dziesiętnych."
148163

149164
msgid ""
150165
"For a fuller explanation, please see the :ref:`floating point arithmetic "
151166
"<tut-fp-issues>` chapter in the Python tutorial."
152167
msgstr ""
168+
"Dla pełnej jasności proszę spójrz na arytmetykę :ref:`floating point w "
169+
"rozdziale <tut-fp-issues> w tutorialu Pythona."
153170

154171
msgid "Why are Python strings immutable?"
155-
msgstr ""
172+
msgstr "Dlaczego stringi w Pythonie są niezmienne?"
156173

157174
msgid "There are several advantages."
158-
msgstr ""
175+
msgstr "Jest parę zalet."
159176

160177
msgid ""
161178
"One is performance: knowing that a string is immutable means we can allocate "
162179
"space for it at creation time, and the storage requirements are fixed and "
163180
"unchanging. This is also one of the reasons for the distinction between "
164181
"tuples and lists."
165182
msgstr ""
183+
"Jedną z nich jest wydajność: wiedząc, że string jest niezmienny, możemy dla "
184+
"niego przypisać miejsce w trakcie tworzenia a wymagania dotyczące "
185+
"przechowywania są stałe i nie ulegają zmianie. To jest również jeden z "
186+
"powodów rozróżniania między krotkami a listami. "
166187

167188
msgid ""
168189
"Another advantage is that strings in Python are considered as \"elemental\" "

0 commit comments

Comments
 (0)