4
4
# package.
5
5
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
6
6
#
7
- #, fuzzy
8
7
msgid ""
9
8
msgstr ""
10
9
"Project-Id-Version : Python en Español 3.11\n "
11
10
"Report-Msgid-Bugs-To : \n "
12
11
"POT-Creation-Date : 2022-10-25 19:47+0200\n "
13
- "PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
14
- "Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
15
- "Language-Team : LANGUAGE <LL@li.org>\n "
12
+ "PO-Revision-Date : 2022-11-16 10:39-0300\n "
13
+ "Last-Translator : Rodrigo Poblete <rodrigopoblete.dev@gmail.com>\n "
14
+ "Language-Team : \n "
15
+ "Language : es_419\n "
16
16
"MIME-Version : 1.0\n "
17
- "Content-Type : text/plain; charset=utf -8\n "
17
+ "Content-Type : text/plain; charset=UTF -8\n "
18
18
"Content-Transfer-Encoding : 8bit\n "
19
+ "Plural-Forms : nplurals=2; plural=(n != 1);\n "
19
20
"Generated-By : Babel 2.10.3\n "
21
+ "X-Generator : Poedit 3.2.1\n "
20
22
21
23
#: ../Doc/library/tomllib.rst:2
22
24
msgid ":mod:`tomllib` --- Parse TOML files"
23
- msgstr ""
25
+ msgstr ":mod:`tomllib` --- Analizar archivos TOML "
24
26
25
27
#: ../Doc/library/tomllib.rst:12
26
28
msgid "**Source code:** :source:`Lib/tomllib`"
27
- msgstr ""
29
+ msgstr "**Código fuente:** :source:`Lib/tomllib` "
28
30
29
31
#: ../Doc/library/tomllib.rst:16
32
+ #, fuzzy
30
33
msgid ""
31
34
"This module provides an interface for parsing TOML (Tom's Obvious Minimal "
32
35
"Language, `https://toml.io <https://toml.io/en/>`_). This module does not "
33
36
"support writing TOML."
34
37
msgstr ""
38
+ "Este módulo proporciona una interfaz para parsear TOML (Tom's Obvious "
39
+ "Minimal Language, `https://toml.io <https://toml.io/en/>`_). Este módulo no "
40
+ "permite escribir TOML."
35
41
36
42
#: ../Doc/library/tomllib.rst:22
37
43
msgid ""
@@ -40,6 +46,10 @@ msgid ""
40
46
"familiar to users of the standard library :mod:`marshal` and :mod:`pickle` "
41
47
"modules."
42
48
msgstr ""
49
+ "El `paquete Tomli-W <https://pypi.org/project/tomli-w/>`__ es un escritor de "
50
+ "TOML que puede utilizarse junto con este módulo, proporcionando una API de "
51
+ "escritura familiar para los usuarios de los módulos :mod:`marshal` y :mod:"
52
+ "`pickle` de la biblioteca estándar."
43
53
44
54
#: ../Doc/library/tomllib.rst:29
45
55
msgid ""
@@ -48,148 +58,171 @@ msgid ""
48
58
"recommended replacement for this module for editing already existing TOML "
49
59
"files."
50
60
msgstr ""
61
+ "El `paquete TOML Kit <https://pypi.org/project/tomlkit/>`__ es una "
62
+ "biblioteca TOML que preserva el estilo y tiene capacidad de lectura y "
63
+ "escritura. Se recomienda sustituir este módulo para editar archivos TOML ya "
64
+ "existentes."
51
65
52
66
#: ../Doc/library/tomllib.rst:35
53
67
msgid "This module defines the following functions:"
54
- msgstr ""
68
+ msgstr "Este módulo define las siguientes funciones: "
55
69
56
70
#: ../Doc/library/tomllib.rst:39
57
71
msgid ""
58
72
"Read a TOML file. The first argument should be a readable and binary file "
59
73
"object. Return a :class:`dict`. Convert TOML types to Python using this :ref:"
60
74
"`conversion table <toml-to-py-table>`."
61
75
msgstr ""
76
+ "Lee un archivo TOML. El primer argumento debe ser un objeto de archivo "
77
+ "legible y binario. Retorna un :class:`dict`. Convierte los tipos TOML a "
78
+ "Python utilizando esta :ref:`tabla de conversión <toml-to-py-table>`."
62
79
63
80
#: ../Doc/library/tomllib.rst:43
81
+ #, fuzzy
64
82
msgid ""
65
83
"*parse_float* will be called with the string of every TOML float to be "
66
84
"decoded. By default, this is equivalent to ``float(num_str)``. This can be "
67
85
"used to use another datatype or parser for TOML floats (e.g. :class:`decimal."
68
86
"Decimal`). The callable must not return a :class:`dict` or a :class:`list`, "
69
87
"else a :exc:`ValueError` is raised."
70
88
msgstr ""
89
+ "*parse_float* se llamará con la cadena de cada TOML flotante que se "
90
+ "decodificará. Por defecto, esto es equivalente a ``float(num_str)``. Esto "
91
+ "se puede utilizar para usar otro tipo de datos o analizador para flotantes "
92
+ "TOML (por ejemplo, :class:`decimal.Decimal`). La llamada no debe devolver "
93
+ "un :class:`dict` o un :class:`list`, de lo contrario se produce un :exc:"
94
+ "`ValueError`."
71
95
72
96
#: ../Doc/library/tomllib.rst:49 ../Doc/library/tomllib.rst:58
73
97
msgid "A :exc:`TOMLDecodeError` will be raised on an invalid TOML document."
74
- msgstr ""
98
+ msgstr "Un :exc:`TOMLDecodeError` se levantará en un documento TOML inválido. "
75
99
76
100
#: ../Doc/library/tomllib.rst:54
77
101
msgid ""
78
102
"Load TOML from a :class:`str` object. Return a :class:`dict`. Convert TOML "
79
103
"types to Python using this :ref:`conversion table <toml-to-py-table>`. The "
80
104
"*parse_float* argument has the same meaning as in :func:`load`."
81
105
msgstr ""
106
+ "Carga TOML de un objeto :class:`str`. Retorna un :class:`dict`. Convierte "
107
+ "los tipos TOML a Python utilizando esta :ref:`tabla de conversión <toml-to-"
108
+ "py-table>`. El argumento *parse_float* tiene el mismo significado que en :"
109
+ "func:`load`."
82
110
83
111
#: ../Doc/library/tomllib.rst:61
84
112
msgid "The following exceptions are available:"
85
- msgstr ""
113
+ msgstr "Las siguientes excepciones están disponibles: "
86
114
87
115
#: ../Doc/library/tomllib.rst:65
88
116
msgid "Subclass of :exc:`ValueError`."
89
- msgstr ""
117
+ msgstr "Subclase de :exc:`ValueError`. "
90
118
91
119
#: ../Doc/library/tomllib.rst:69
92
120
msgid "Examples"
93
- msgstr ""
121
+ msgstr "Ejemplos "
94
122
95
123
#: ../Doc/library/tomllib.rst:71
96
124
msgid "Parsing a TOML file::"
97
- msgstr ""
125
+ msgstr "Analiza un TOML file:: "
98
126
99
127
#: ../Doc/library/tomllib.rst:78
100
128
msgid "Parsing a TOML string::"
101
- msgstr ""
129
+ msgstr "Analiza un TOML string:: "
102
130
103
131
#: ../Doc/library/tomllib.rst:91
104
132
msgid "Conversion Table"
105
- msgstr ""
133
+ msgstr "Tabla de conversión "
106
134
107
135
#: ../Doc/library/tomllib.rst:96
108
136
msgid "TOML"
109
- msgstr ""
137
+ msgstr "TOML "
110
138
111
139
#: ../Doc/library/tomllib.rst:96
112
140
msgid "Python"
113
- msgstr ""
141
+ msgstr "Python "
114
142
115
143
#: ../Doc/library/tomllib.rst:98
116
144
msgid "table"
117
- msgstr ""
145
+ msgstr "tabla "
118
146
119
147
#: ../Doc/library/tomllib.rst:98
120
148
msgid "dict"
121
- msgstr ""
149
+ msgstr "dict "
122
150
123
151
#: ../Doc/library/tomllib.rst:100
124
152
msgid "string"
125
- msgstr ""
153
+ msgstr "cadena "
126
154
127
155
#: ../Doc/library/tomllib.rst:100
128
156
msgid "str"
129
- msgstr ""
157
+ msgstr "str "
130
158
131
159
#: ../Doc/library/tomllib.rst:102
132
160
msgid "integer"
133
- msgstr ""
161
+ msgstr "integer "
134
162
135
163
#: ../Doc/library/tomllib.rst:102
136
164
msgid "int"
137
- msgstr ""
165
+ msgstr "int "
138
166
139
167
#: ../Doc/library/tomllib.rst:104
140
168
msgid "float"
141
- msgstr ""
169
+ msgstr "flotante "
142
170
143
171
#: ../Doc/library/tomllib.rst:104
144
172
msgid "float (configurable with *parse_float*)"
145
- msgstr ""
173
+ msgstr "flotante (configurable con *parse_float*) "
146
174
147
175
#: ../Doc/library/tomllib.rst:106
148
176
msgid "boolean"
149
- msgstr ""
177
+ msgstr "boolean "
150
178
151
179
#: ../Doc/library/tomllib.rst:106
152
180
msgid "bool"
153
- msgstr ""
181
+ msgstr "bool "
154
182
155
183
#: ../Doc/library/tomllib.rst:108
184
+ #, fuzzy
156
185
msgid "offset date-time"
157
- msgstr ""
186
+ msgstr "offset date-time "
158
187
159
188
#: ../Doc/library/tomllib.rst:108
160
189
msgid ""
161
190
"datetime.datetime (``tzinfo`` attribute set to an instance of ``datetime."
162
191
"timezone``)"
163
192
msgstr ""
193
+ "datetime.datetime (atributo ``tzinfo`` establecido en una instancia de "
194
+ "``datetime.timezone``)"
164
195
165
196
#: ../Doc/library/tomllib.rst:110
197
+ #, fuzzy
166
198
msgid "local date-time"
167
- msgstr ""
199
+ msgstr "local date-time "
168
200
169
201
#: ../Doc/library/tomllib.rst:110
170
202
msgid "datetime.datetime (``tzinfo`` attribute set to ``None``)"
171
- msgstr ""
203
+ msgstr "datetime.datetime (atributo ``tzinfo`` establecido en ``None``) "
172
204
173
205
#: ../Doc/library/tomllib.rst:112
206
+ #, fuzzy
174
207
msgid "local date"
175
- msgstr ""
208
+ msgstr "local date "
176
209
177
210
#: ../Doc/library/tomllib.rst:112
178
211
msgid "datetime.date"
179
- msgstr ""
212
+ msgstr "datetime.date "
180
213
181
214
#: ../Doc/library/tomllib.rst:114
182
215
msgid "local time"
183
- msgstr ""
216
+ msgstr "local time "
184
217
185
218
#: ../Doc/library/tomllib.rst:114
186
219
msgid "datetime.time"
187
- msgstr ""
220
+ msgstr "datetime.time "
188
221
189
222
#: ../Doc/library/tomllib.rst:116
190
223
msgid "array"
191
- msgstr ""
224
+ msgstr "array "
192
225
193
226
#: ../Doc/library/tomllib.rst:116
194
227
msgid "list"
195
- msgstr ""
228
+ msgstr "list "
0 commit comments