Skip to content

Commit 981c9c5

Browse files
author
Francisco Mora
authored
Merge branch '3.13' into traduccion-capi-concrete
2 parents 6de2ca3 + 8144640 commit 981c9c5

File tree

6 files changed

+20
-18
lines changed

6 files changed

+20
-18
lines changed

.overrides/CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ podrás realizar todas las contribuciones que quieras.
6060

6161
#. (Opcional) Instala los requerimientos del proyecto::
6262

63-
pip install -r requirements.txt
63+
pip install -r requirements-own.txt
6464

6565
.. note::
6666

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ do_build:
5656
setup: venv
5757
git submodule sync
5858
git submodule update --init --force --depth 1 $(CPYTHON_PATH)
59+
# Now that we've initialized the submodules, install all requirements necessary for the build
60+
$(VENV)/bin/python -m pip install -q -r requirements.txt
61+
5962

6063

6164
# venv: create a virtual environment which will be used by almost every
@@ -66,7 +69,7 @@ venv:
6669
$(PYTHON) -m venv --prompt $(LANGUAGE_TEAM) $(VENV); \
6770
fi
6871

69-
$(VENV)/bin/python -m pip install -q -r requirements.txt
72+
$(VENV)/bin/python -m pip install -q -r requirements-own.txt
7073

7174

7275
# serve: serve the documentation in a simple local web server, using cpython

c-api/datetime.po

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,16 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2024-11-21 16:38-0300\n"
14-
"PO-Revision-Date: 2024-11-10 19:13-0500\n"
14+
"PO-Revision-Date: 2025-01-26 21:27-0500\n"
1515
"Last-Translator: Meta Louis-Kosmas <louiskmeta@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.16.0\n"
23+
"X-Generator: Poedit 3.5\n"
2324

2425
#: ../Doc/c-api/datetime.rst:6
2526
msgid "DateTime Objects"
@@ -73,16 +74,15 @@ msgid ""
7374
"is the same object as :class:`datetime.date` in the Python layer."
7475
msgstr ""
7576
"Esta instancia de :c:type:`PyTypeObject` representa el *date type* de "
76-
"Python; es el mismo objecto que que :class:`datetime.date` en la capa de "
77-
"Python."
77+
"Python; es el mismo objeto que :class:`datetime.date` en la capa de Python."
7878

7979
#: ../Doc/c-api/datetime.rst:39
8080
msgid ""
8181
"This instance of :c:type:`PyTypeObject` represents the Python datetime type; "
8282
"it is the same object as :class:`datetime.datetime` in the Python layer."
8383
msgstr ""
8484
"Esta instancia de :c:type:`PyTypeObject` representa el *datetime type* de "
85-
"Python; es el mismo objecto que que :class:`datetime.datetime` en la capa de "
85+
"Python; es el mismo objeto que :class:`datetime.datetime` en la capa de "
8686
"Python."
8787

8888
#: ../Doc/c-api/datetime.rst:44
@@ -91,7 +91,7 @@ msgid ""
9191
"is the same object as :class:`datetime.time` in the Python layer."
9292
msgstr ""
9393
"Esta instancia de :c:type:`PyObject` representa el *time type* de Python; es "
94-
"el mismo objecto que que :class:`datetime.time` en la capa de Python."
94+
"el mismo objeto que :class:`datetime.time` en la capa de Python."
9595

9696
#: ../Doc/c-api/datetime.rst:49
9797
msgid ""
@@ -384,19 +384,17 @@ msgid "Macros for the convenience of modules implementing the DB API:"
384384
msgstr "Macros para la conveniencia de módulos que implementan la API DB:"
385385

386386
#: ../Doc/c-api/datetime.rst:320
387-
#, fuzzy
388387
msgid ""
389388
"Create and return a new :class:`datetime.datetime` object given an argument "
390389
"tuple suitable for passing to :meth:`datetime.datetime.fromtimestamp`."
391390
msgstr ""
392391
"Crea y retorna un nuevo objeto :class:`datetime.datetime` dado una tupla de "
393-
"argumentos adecuada para pasar a :meth:`datetime.datetime.fromtimestamp()`."
392+
"argumentos adecuada para pasar a :meth:`datetime.datetime.fromtimestamp`."
394393

395394
#: ../Doc/c-api/datetime.rst:326
396-
#, fuzzy
397395
msgid ""
398396
"Create and return a new :class:`datetime.date` object given an argument "
399397
"tuple suitable for passing to :meth:`datetime.date.fromtimestamp`."
400398
msgstr ""
401399
"Crea y retorna un nuevo objeto :class:`datetime.date` dado una tupla de "
402-
"argumentos adecuada para pasar a :meth:`datetime.date.fromtimestamp()`."
400+
"argumentos adecuada para pasar a :meth:`datetime.date.fromtimestamp`."

c-api/marshal.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,16 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2024-11-21 16:38-0300\n"
14-
"PO-Revision-Date: 2024-10-28 21:01-0400\n"
14+
"PO-Revision-Date: 2025-01-26 17:22-0400\n"
1515
"Last-Translator: Cristián Maureira-Fredes <cmaureirafredes@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.16.0\n"
23+
"X-Generator: Poedit 3.5\n"
2324

2425
#: ../Doc/c-api/marshal.rst:6
2526
msgid "Data marshalling support"
@@ -45,7 +46,6 @@ msgstr ""
4546
"Los valores numéricos se almacenan con el byte menos significativo primero."
4647

4748
#: ../Doc/c-api/marshal.rst:16
48-
#, fuzzy
4949
msgid ""
5050
"The module supports two versions of the data format: version 0 is the "
5151
"historical version, version 1 shares interned strings in the file, and upon "

dictionaries/faq_gui.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
cx

faq/gui.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ msgid ""
122122
msgstr ""
123123
"En plataformas que no sean Windows, sí, ¡y ni siquiera necesitas hilos! Pero "
124124
"tendrá que reestructurar un poco su código de entrada/salida. Tk tiene un "
125-
"equivalente de la llamada :c:func:`XtAddInput` de Xt, que permite registrar "
125+
"equivalente de la llamada :c:func:`!XtAddInput` de Xt, que permite registrar "
126126
"una función de retorno que será llamada desde el bucle principal de Tk "
127127
"cuando sea posible entrada/salida en un descriptor de archivo. Ver :ref:"
128128
"`tkinter-file-handlers`."

0 commit comments

Comments
 (0)