Skip to content

Commit 590ae54

Browse files
author
Claudia
committed
a few more corrections and removal of fuzzies
1 parent 6c3ff79 commit 590ae54

File tree

1 file changed

+3
-24
lines changed

1 file changed

+3
-24
lines changed

whatsnew/2.3.po

Lines changed: 3 additions & 24 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: 2021-08-23 08:58+0100\n"
12+
"PO-Revision-Date: 2021-08-24 09:08+0100\n"
1313
"Language-Team: python-doc-es\n"
1414
"MIME-Version: 1.0\n"
1515
"Content-Type: text/plain; charset=UTF-8\n"
@@ -507,12 +507,10 @@ msgstr ""
507507
"para una descripción de los nuevos ganchos de importación."
508508

509509
#: ../Doc/whatsnew/2.3.rst:338
510-
#, fuzzy
511510
msgid "PEP 277: Unicode file name support for Windows NT"
512511
msgstr "PEP 277: Soporte de nombres de archivo Unicode para Windows NT"
513512

514513
#: ../Doc/whatsnew/2.3.rst:340
515-
#, fuzzy
516514
msgid ""
517515
"On Windows NT, 2000, and XP, the system stores file names as Unicode "
518516
"strings. Traditionally, Python has represented file names as byte strings, "
@@ -524,7 +522,6 @@ msgstr ""
524522
"nombres de archivo sean inaccesibles."
525523

526524
#: ../Doc/whatsnew/2.3.rst:344
527-
#, fuzzy
528525
msgid ""
529526
"Python now allows using arbitrary Unicode strings (within the limitations of "
530527
"the file system) for all functions that expect file names, most notably the :"
@@ -540,7 +537,6 @@ msgstr ""
540537
"directorio actual como una cadena Unicode."
541538

542539
#: ../Doc/whatsnew/2.3.rst:350
543-
#, fuzzy
544540
msgid ""
545541
"Byte strings still work as file names, and on Windows Python will "
546542
"transparently convert them to Unicode using the ``mbcs`` encoding."
@@ -550,7 +546,6 @@ msgstr ""
550546
"codificación ``mbcs``."
551547

552548
#: ../Doc/whatsnew/2.3.rst:353
553-
#, fuzzy
554549
msgid ""
555550
"Other systems also allow Unicode strings as file names but convert them to "
556551
"byte strings before passing them to the system, which can cause a :exc:"
@@ -565,18 +560,15 @@ msgstr ""
565560
"attr:`os.path.supports_unicode_filenames`, un valor booleano."
566561

567562
#: ../Doc/whatsnew/2.3.rst:359
568-
#, fuzzy
569563
msgid "Under MacOS, :func:`os.listdir` may now return Unicode filenames."
570564
msgstr ""
571565
"En MacOS, :func:`os.listdir` ahora puede retornar nombres de archivo Unicode."
572566

573567
#: ../Doc/whatsnew/2.3.rst:365
574-
#, fuzzy
575568
msgid ":pep:`277` - Unicode file name support for Windows NT"
576569
msgstr ":pep:`277` - Soporte de nombres de archivo Unicode para Windows NT"
577570

578571
#: ../Doc/whatsnew/2.3.rst:365
579-
#, fuzzy
580572
msgid ""
581573
"Written by Neil Hodgson; implemented by Neil Hodgson, Martin von Löwis, and "
582574
"Mark Hammond."
@@ -585,12 +577,10 @@ msgstr ""
585577
"Mark Hammond."
586578

587579
#: ../Doc/whatsnew/2.3.rst:375
588-
#, fuzzy
589580
msgid "PEP 278: Universal Newline Support"
590581
msgstr "PEP 278: Soporte universal de nuevas líneas"
591582

592583
#: ../Doc/whatsnew/2.3.rst:377
593-
#, fuzzy
594584
msgid ""
595585
"The three major operating systems used today are Microsoft Windows, Apple's "
596586
"Macintosh OS, and the various Unix derivatives. A minor irritation of cross-"
@@ -609,7 +599,6 @@ msgstr ""
609599
"carro más una nueva línea."
610600

611601
#: ../Doc/whatsnew/2.3.rst:384
612-
#, fuzzy
613602
msgid ""
614603
"Python's file objects can now support end of line conventions other than the "
615604
"one followed by the platform on which Python is running. Opening a file with "
@@ -627,7 +616,6 @@ msgstr ""
627616
"`readline`."
628617

629618
#: ../Doc/whatsnew/2.3.rst:391
630-
#, fuzzy
631619
msgid ""
632620
"Universal newline support is also used when importing modules and when "
633621
"executing a file with the :func:`execfile` function. This means that Python "
@@ -640,7 +628,6 @@ msgstr ""
640628
"operativos sin necesidad de convertir los finales de línea."
641629

642630
#: ../Doc/whatsnew/2.3.rst:396
643-
#, fuzzy
644631
msgid ""
645632
"This feature can be disabled when compiling Python by specifying the :option:"
646633
"`!--without-universal-newlines` switch when running Python's :program:"
@@ -651,52 +638,44 @@ msgstr ""
651638
"`configure` de Python."
652639

653640
#: ../Doc/whatsnew/2.3.rst:403
654-
#, fuzzy
655641
msgid ":pep:`278` - Universal Newline Support"
656642
msgstr ":pep:`278` - Soporte universal de nuevas líneas"
657643

658644
#: ../Doc/whatsnew/2.3.rst:404
659-
#, fuzzy
660645
msgid "Written and implemented by Jack Jansen."
661646
msgstr "Escrito y ejecutado por Jack Jansen."
662647

663648
#: ../Doc/whatsnew/2.3.rst:412
664-
#, fuzzy
665649
msgid "PEP 279: enumerate()"
666-
msgstr "PEP 279: enumerar()"
650+
msgstr "PEP 279: enumerate()"
667651

668652
#: ../Doc/whatsnew/2.3.rst:414
669-
#, fuzzy
670653
msgid ""
671654
"A new built-in function, :func:`enumerate`, will make certain loops a bit "
672655
"clearer. ``enumerate(thing)``, where *thing* is either an iterator or a "
673656
"sequence, returns an iterator that will return ``(0, thing[0])``, ``(1, "
674657
"thing[1])``, ``(2, thing[2])``, and so forth."
675658
msgstr ""
676659
"Una nueva función incorporada, :func:`enumerate`, hará que ciertos bucles "
677-
"sean un poco más claros. ``enumerar(cosa)``, donde *cosa* es un iterador o "
660+
"sean un poco más claros. ``enumerate(cosa)``, donde *cosa* es un iterador o "
678661
"una secuencia, retorna un iterador que retornará ``(0, cosa[0])``, ``(1, "
679662
"cosa[1])``, ``(2, cosa[2])``, y así sucesivamente."
680663

681664
#: ../Doc/whatsnew/2.3.rst:419
682-
#, fuzzy
683665
msgid "A common idiom to change every element of a list looks like this::"
684666
msgstr ""
685667
"Un modismo común para cambiar cada elemento de una lista tiene el siguiente "
686668
"aspecto::"
687669

688670
#: ../Doc/whatsnew/2.3.rst:426
689-
#, fuzzy
690671
msgid "This can be rewritten using :func:`enumerate` as::"
691672
msgstr "Esto se puede reescribir usando :func:`enumerate` como::"
692673

693674
#: ../Doc/whatsnew/2.3.rst:435
694-
#, fuzzy
695675
msgid ":pep:`279` - The enumerate() built-in function"
696676
msgstr ":pep:`279` - La función incorporada enumerate()"
697677

698678
#: ../Doc/whatsnew/2.3.rst:436
699-
#, fuzzy
700679
msgid "Written and implemented by Raymond D. Hettinger."
701680
msgstr "Escrito y ejecutado por Raymond D. Hettinger."
702681

0 commit comments

Comments
 (0)