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

Skip to content

Commit c1bd3b0

Browse files
committed
Mas traducciones
1 parent 21d833b commit c1bd3b0

File tree

1 file changed

+34
-16
lines changed

1 file changed

+34
-16
lines changed

library/operator.po

Lines changed: 34 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ msgstr ""
99
"Project-Id-Version: Python 3.8\n"
1010
"Report-Msgid-Bugs-To: \n"
1111
"POT-Creation-Date: 2019-05-06 11:59-0400\n"
12-
"PO-Revision-Date: 2020-06-24 15:32-0300\n"
12+
"PO-Revision-Date: 2020-06-24 16:29-0300\n"
1313
"Language-Team: python-doc-es\n"
1414
"MIME-Version: 1.0\n"
1515
"Content-Type: text/plain; charset=UTF-8\n"
@@ -131,11 +131,11 @@ msgstr "Retorna el valor absoluto de *obj*."
131131

132132
#: ../Doc/library/operator.rst:95
133133
msgid "Return ``a + b``, for *a* and *b* numbers."
134-
msgstr "Retorna ``a + b``, dados *a* y *b* números."
134+
msgstr "Retorna ``a + b``, para dos números *a* y *b*."
135135

136136
#: ../Doc/library/operator.rst:101
137137
msgid "Return the bitwise and of *a* and *b*."
138-
msgstr "Retorna el \"y lógico bit a bit\" (*bitwise and*) de *a* y *b*."
138+
msgstr "Retorna la \"conjunción bit a bit\" (*bitwise and*) de *a* y *b*."
139139

140140
#: ../Doc/library/operator.rst:107
141141
msgid "Return ``a // b``."
@@ -156,15 +156,15 @@ msgstr ""
156156

157157
#: ../Doc/library/operator.rst:127
158158
msgid "Return *a* shifted left by *b*."
159-
msgstr "Retorna *a* desplazado a izquierda *b* bits (*shift left*)."
159+
msgstr "Retorna *a* desplazado a izquierda (*shift left*) *b* bits."
160160

161161
#: ../Doc/library/operator.rst:133
162162
msgid "Return ``a % b``."
163163
msgstr "Retorna ``a % b``."
164164

165165
#: ../Doc/library/operator.rst:139
166166
msgid "Return ``a * b``, for *a* and *b* numbers."
167-
msgstr "Retorna ``a * b``, donde *a* y *b* son números."
167+
msgstr "Retorna ``a * b``, para dos números *a* y *b*."
168168

169169
#: ../Doc/library/operator.rst:145
170170
msgid "Return ``a @ b``."
@@ -176,82 +176,100 @@ msgstr "Retorna *obj* negado (```-obj``)."
176176

177177
#: ../Doc/library/operator.rst:159
178178
msgid "Return the bitwise or of *a* and *b*."
179-
msgstr ""
179+
msgstr "Retorna la \"disyunción bit a bit\" (*bitwise or*) de *a* y *b*."
180180

181181
#: ../Doc/library/operator.rst:165
182182
msgid "Return *obj* positive (``+obj``)."
183-
msgstr ""
183+
msgstr "Retorna *obj* positivo (``+obj``)."
184184

185185
#: ../Doc/library/operator.rst:171
186186
msgid "Return ``a ** b``, for *a* and *b* numbers."
187-
msgstr ""
187+
msgstr "Retorna ``a ** b``, para dos números *a* y *b*."
188188

189189
#: ../Doc/library/operator.rst:177
190190
msgid "Return *a* shifted right by *b*."
191-
msgstr ""
191+
msgstr "Retorna *a* desplazado a derecha (*shift right*) *b* bits."
192192

193193
#: ../Doc/library/operator.rst:183
194194
msgid "Return ``a - b``."
195-
msgstr ""
195+
msgstr "Retorna ``a - b``."
196196

197197
#: ../Doc/library/operator.rst:189
198198
msgid ""
199199
"Return ``a / b`` where 2/3 is .66 rather than 0. This is also known as "
200200
"\"true\" division."
201201
msgstr ""
202+
"Retorna ``a / b`` donde 2/3 es .66 en lugar de 0. Esto también se conoce "
203+
"como \"división real\" (*true division*)."
202204

203205
#: ../Doc/library/operator.rst:196
204206
msgid "Return the bitwise exclusive or of *a* and *b*."
205207
msgstr ""
208+
"Retorna la disyunción exclusiva bit a bit (*bitwise exclusive or*, o "
209+
"*bitwise XOR*) de *a* y *b*."
206210

211+
# Acá no me queda claro que hacer con la palabra *mapping*.
207212
#: ../Doc/library/operator.rst:199
208213
msgid ""
209214
"Operations which work with sequences (some of them with mappings too) "
210215
"include:"
211216
msgstr ""
217+
"Las operaciones que funcionan con secuencias (y algunas de ellas también con "
218+
"diccionarios o *mappings*) incluyen:"
212219

213220
#: ../Doc/library/operator.rst:204
214221
msgid "Return ``a + b`` for *a* and *b* sequences."
215-
msgstr ""
222+
msgstr "Retorna ``a + b`` para dos secuencias *a* y *b*."
216223

217224
#: ../Doc/library/operator.rst:210
218225
msgid "Return the outcome of the test ``b in a``. Note the reversed operands."
219226
msgstr ""
227+
"Retorna el resultado del chequeo ``b in a``. Notar que los operandos se "
228+
"invertieron."
220229

221230
#: ../Doc/library/operator.rst:215
222231
msgid "Return the number of occurrences of *b* in *a*."
223-
msgstr ""
232+
msgstr "Retorna el número de ocurrencias de *b* en *a*."
224233

225234
#: ../Doc/library/operator.rst:221
226235
msgid "Remove the value of *a* at index *b*."
227-
msgstr ""
236+
msgstr "Remueve el valor de *a* en el índice *b*."
228237

229238
#: ../Doc/library/operator.rst:227
230239
msgid "Return the value of *a* at index *b*."
231-
msgstr ""
240+
msgstr "Retorna el valor de *a* en el índice *b*."
232241

233242
#: ../Doc/library/operator.rst:232
234243
msgid "Return the index of the first of occurrence of *b* in *a*."
235-
msgstr ""
244+
msgstr "Retorna el índice de la primera ocurrencia de *b* en *a*."
236245

237246
#: ../Doc/library/operator.rst:238
238247
msgid "Set the value of *a* at index *b* to *c*."
239-
msgstr ""
248+
msgstr "Asigna al valor de *a* en el índice *b*, *c*."
240249

241250
#: ../Doc/library/operator.rst:243
242251
msgid ""
243252
"Return an estimated length for the object *o*. First try to return its "
244253
"actual length, then an estimate using :meth:`object.__length_hint__`, and "
245254
"finally return the default value."
246255
msgstr ""
256+
"Retorna un largo estimado del objeto *o*. Primero intenta retorna su largo "
257+
"real, luego un estimativo usando :meth:`object.__length_hint__`, y "
258+
"finalmente retorna un valor predeterminado."
247259

260+
# No se bien que hacer con *lookup*
248261
#: ../Doc/library/operator.rst:249
249262
msgid ""
250263
"The :mod:`operator` module also defines tools for generalized attribute and "
251264
"item lookups. These are useful for making fast field extractors as "
252265
"arguments for :func:`map`, :func:`sorted`, :meth:`itertools.groupby`, or "
253266
"other functions that expect a function argument."
254267
msgstr ""
268+
"El módulo :mod:`operator` también define herramientas para la selección "
269+
"(*lookup*) generalizada de atributos e items. Estas son útiles para utilizar "
270+
"rápidamente extractores como argumentos para :func:`map`, :func:`sorted`, :"
271+
"meth:`itertools.groupby`, u otras funciones que esperan una función como "
272+
"argumento."
255273

256274
#: ../Doc/library/operator.rst:258
257275
msgid ""

0 commit comments

Comments
 (0)