Skip to content

Commit 37b49a8

Browse files
committed
Traducido archivo library/tkinter (3)
2 parents aa54c5f + 092ff21 commit 37b49a8

File tree

2 files changed

+41
-36
lines changed

2 files changed

+41
-36
lines changed

library/os.path.po

Lines changed: 23 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,28 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2022-10-25 19:47+0200\n"
14-
"PO-Revision-Date: 2021-10-25 23:40+0100\n"
14+
"PO-Revision-Date: 2022-11-02 13:49-0300\n"
1515
"Last-Translator: Claudia Millan <clmilneb@gmail.com>\n"
16-
"Language: es\n"
1716
"Language-Team: python-doc-es\n"
18-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
17+
"Language: es\n"
1918
"MIME-Version: 1.0\n"
2019
"Content-Type: text/plain; charset=utf-8\n"
2120
"Content-Transfer-Encoding: 8bit\n"
21+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
2222
"Generated-By: Babel 2.10.3\n"
23+
"X-Generator: Poedit 3.0.1\n"
2324

2425
#: ../Doc/library/os.path.rst:2
2526
msgid ":mod:`os.path` --- Common pathname manipulations"
2627
msgstr ":mod:`os.path` --- Manipulaciones comunes de nombre de ruta"
2728

2829
#: ../Doc/library/os.path.rst:7
29-
#, fuzzy
3030
msgid ""
3131
"**Source code:** :source:`Lib/posixpath.py` (for POSIX) and :source:`Lib/"
3232
"ntpath.py` (for Windows)."
3333
msgstr ""
3434
"**Código fuente:** :source:`Lib/posixpath.py` (para POSIX) y :source:`Lib/"
35-
"ntpath.py` (para Windows NT)."
35+
"ntpath.py` (para Windows)."
3636

3737
#: ../Doc/library/os.path.rst:14
3838
msgid ""
@@ -41,9 +41,13 @@ msgid ""
4141
"module. The path parameters can be passed as strings, or bytes, or any "
4242
"object implementing the :class:`os.PathLike` protocol."
4343
msgstr ""
44+
"Este módulo implementa algunas funciones útiles sobre los nombres de rutas. "
45+
"Para leer o escribir archivos consulte :func:`open`, y para acceder a "
46+
"archivos del sistema vea el :mod:`os`. Los parámetros para las rutas pueden "
47+
"ser pasados como caracteres, o bytes ,o cualquier objeto implementado en el "
48+
"protocolo :class:`os.PathLike`."
4449

4550
#: ../Doc/library/os.path.rst:19
46-
#, fuzzy
4751
msgid ""
4852
"Unlike a Unix shell, Python does not do any *automatic* path expansions. "
4953
"Functions such as :func:`expanduser` and :func:`expandvars` can be invoked "
@@ -53,7 +57,7 @@ msgstr ""
5357
"A diferencia de un shell Unix, Python no realiza ninguna expansión de ruta "
5458
"*automática*. Las funciones como :func:`expanduser` y :func:`expandvars` "
5559
"puede ser invocadas de manera explicita cuando una aplicación desea realizar "
56-
"una expansión de ruta *shell-like*. (Consulta el módulo :mod:`glob`)"
60+
"una expansión de ruta *shell-like*. (Consulte el módulo :mod:`glob`.)"
5761

5862
#: ../Doc/library/os.path.rst:26
5963
msgid "The :mod:`pathlib` module offers high-level path objects."
@@ -475,7 +479,6 @@ msgstr ""
475479
"normalizar mayúsculas y minúsculas, utiliza :func:`normcase`."
476480

477481
#: ../Doc/library/os.path.rst:337
478-
#, fuzzy
479482
msgid ""
480483
"On POSIX systems, in accordance with `IEEE Std 1003.1 2013 Edition; 4.13 "
481484
"Pathname Resolution <https://pubs.opengroup.org/onlinepubs/9699919799/"
@@ -484,13 +487,13 @@ msgid ""
484487
"interpreted in an implementation-defined manner, although more than two "
485488
"leading characters shall be treated as a single character."
486489
msgstr ""
487-
"En sistemas POSIX, de acuerdo con `IEEE Std 1003.1 2013 Edition; 4.13 "
488-
"Pathname Resolution <http://pubs.opengroup.org/onlinepubs/9699919799/"
489-
"basedefs/V1_chap04.html#tag_04_13>`_, si un nombre de ruta comienza con "
490-
"exactamente dos barras diagonales, el primer componente que sigue a los "
491-
"caracteres principales puede interpretarse de una manera definida por la "
492-
"implementación, aunque más de dos caracteres principales se tratarán como un "
493-
"solo carácter."
490+
"En sistemas POSIX, de acuerdo con `IEEE Std 1003.1 Edición 2013; 4.13 "
491+
"Resolución de Nombres de Rutas <https://pubs.opengroup.org/"
492+
"onlinepubs/9699919799/basedefs/V1_chap04.html#tag_04_13>`_, si el nombre de "
493+
"ruta comienza con exactamente dos barras diagonales, el primer componente "
494+
"que sigue a los caracteres principales puede interpretarse de una manera "
495+
"definida por la implementación, aunque más de dos caracteres principales se "
496+
"tratarán como un solo carácter."
494497

495498
#: ../Doc/library/os.path.rst:350
496499
msgid ""
@@ -664,9 +667,9 @@ msgid ""
664667
"ext == path``, and the extension, *ext*, is empty or begins with a period "
665668
"and contains at most one period."
666669
msgstr ""
667-
"Divide el nombre de ruta *path* en un par ``(root, ext)`` de tal forma que "
668-
"``root + ext == path``, y *ext* queda vacío o inicia con un punto y contiene "
669-
"a lo mucho un punto. "
670+
"Divide el nombre de la ruta *path* en un par ``(root, ext)`` de tal forma "
671+
"que ``root + ext == path``, y *ext* queda vacío o inicia con un punto y "
672+
"contiene a lo mucho un punto."
670673

671674
#: ../Doc/library/os.path.rst:487
672675
msgid "If the path contains no extension, *ext* will be ``''``::"
@@ -686,6 +689,8 @@ msgid ""
686689
"Leading periods of the last component of the path are considered to be part "
687690
"of the root::"
688691
msgstr ""
692+
"Los puntos que están por delante del último componente de la ruta son "
693+
"considerados parte de la raíz::"
689694

690695
#: ../Doc/library/os.path.rst:514
691696
msgid ""

library/tkinter.po

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2022-10-25 19:47+0200\n"
14-
"PO-Revision-Date: 2022-11-02 23:32+0100\n"
14+
"PO-Revision-Date: 2022-11-03 12:56+0100\n"
1515
"Last-Translator: Carlos AlMa <carlos@carlosalma.es>\n"
1616
"Language-Team: python-doc-es\n"
1717
"Language: es\n"
@@ -1668,13 +1668,13 @@ msgstr "Tipos de datos de opciones Tk"
16681668

16691669
#: ../Doc/library/tkinter.rst:794
16701670
msgid ""
1671-
"Legal values are points of the compass: ``\"n\"``, ``\"ne\"``, ``\"e\"``, "
1672-
"``\"se\"``, ``\"s\"``, ``\"sw\"``, ``\"w\"``, ``\"nw\"``, and also "
1673-
"``\"center\"``."
1671+
"Legal values are points of the compass: ``\"n\"``, ``\"ne\"``, ``\"e\"``, ``"
1672+
"\"se\"``, ``\"s\"``, ``\"sw\"``, ``\"w\"``, ``\"nw\"``, and also ``\"center"
1673+
"\"``."
16741674
msgstr ""
1675-
"Los valores legales son los puntos de la brújula: ``\"n\"``, ``\"ne\"``, "
1676-
"``\"e\"``, ``\"se\"``, ``\"s\"``, ``\"sw\"``, ``\"w\"``, ``\"nw\"``, y "
1677-
"también ``\"center\"``."
1675+
"Los valores legales son los puntos de la brújula: ``\"n\"``, ``\"ne\"``, ``"
1676+
"\"e\"``, ``\"se\"``, ``\"s\"``, ``\"sw\"``, ``\"w\"``, ``\"nw\"``, y también "
1677+
"``\"center\"``."
16781678

16791679
#: ../Doc/library/tkinter.rst:801
16801680
msgid "bitmap"
@@ -1717,10 +1717,10 @@ msgstr "*color*"
17171717
#: ../Doc/library/tkinter.rst:814
17181718
msgid ""
17191719
"Colors can be given as the names of X colors in the rgb.txt file, or as "
1720-
"strings representing RGB values in 4 bit: ``\"#RGB\"``, 8 bit: "
1721-
"``\"#RRGGBB\"``, 12 bit: ``\"#RRRGGGBBB\"``, or 16 bit: "
1722-
"``\"#RRRRGGGGBBBB\"`` ranges, where R,G,B here represent any legal hex "
1723-
"digit. See page 160 of Ousterhout's book for details."
1720+
"strings representing RGB values in 4 bit: ``\"#RGB\"``, 8 bit: ``\"#RRGGBB"
1721+
"\"``, 12 bit: ``\"#RRRGGGBBB\"``, or 16 bit: ``\"#RRRRGGGGBBBB\"`` ranges, "
1722+
"where R,G,B here represent any legal hex digit. See page 160 of "
1723+
"Ousterhout's book for details."
17241724
msgstr ""
17251725
"Los colores se pueden dar como nombres de colores de X en el archivo ``rgb."
17261726
"txt``, o como cadenas que representan valores RGB. La cadena que representa "
@@ -1802,8 +1802,8 @@ msgid ""
18021802
"Legal values are the strings: ``\"left\"``, ``\"center\"``, ``\"right\"``, "
18031803
"and ``\"fill\"``."
18041804
msgstr ""
1805-
"Los valores legales son las cadenas de caracteres: ``\"left\"``, "
1806-
"``\"center\"``, ``\"right\"``, y ``\"fill\"``."
1805+
"Los valores legales son las cadenas de caracteres: ``\"left\"``, ``\"center"
1806+
"\"``, ``\"right\"``, y ``\"fill\"``."
18071807

18081808
#: ../Doc/library/tkinter.rst:849
18091809
msgid "region"
@@ -1826,13 +1826,13 @@ msgstr "relief"
18261826

18271827
#: ../Doc/library/tkinter.rst:852
18281828
msgid ""
1829-
"Determines what the border style of a widget will be. Legal values are: "
1830-
"``\"raised\"``, ``\"sunken\"``, ``\"flat\"``, ``\"groove\"``, and "
1831-
"``\"ridge\"``."
1829+
"Determines what the border style of a widget will be. Legal values are: ``"
1830+
"\"raised\"``, ``\"sunken\"``, ``\"flat\"``, ``\"groove\"``, and ``\"ridge"
1831+
"\"``."
18321832
msgstr ""
18331833
"Determina cuál será el estilo de borde de un widget. Los valores legales "
1834-
"son: ``\"raised\"``, ``\"sunken\"``, ``\"flat\"``, ``\"groove\"``, y "
1835-
"``\"ridge\"``."
1834+
"son: ``\"raised\"``, ``\"sunken\"``, ``\"flat\"``, ``\"groove\"``, y ``"
1835+
"\"ridge\"``."
18361836

18371837
#: ../Doc/library/tkinter.rst:857
18381838
msgid "scrollcommand"

0 commit comments

Comments
 (0)