Skip to content

Commit ae31309

Browse files
authored
Merge branch '3.8' into traduccion-whatsnew/2.7.po
2 parents 281a7c1 + 1d80b9e commit ae31309

File tree

4 files changed

+52
-25
lines changed

4 files changed

+52
-25
lines changed

.github/workflows/main.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches:
6+
- 3.*
7+
pull_request:
8+
9+
jobs:
10+
test:
11+
name: Test
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Preparar Python v3.8
16+
uses: actions/setup-python@v2
17+
with:
18+
python-version: 3.8
19+
- name: Sincronizar con CPython
20+
run: |
21+
git submodule sync
22+
git submodule update --init --force cpython
23+
- name: Instalar dependencias
24+
run: |
25+
sudo apt-get update
26+
sudo apt-get install -y hunspell hunspell-es gettext
27+
python -m pip install -r requirements.txt
28+
pip list
29+
pospell --version
30+
powrap --version
31+
- name: Powrap
32+
run: powrap --check --quiet **/*.po
33+
- name: Pospell
34+
run: |
35+
python scripts/create_dict.py
36+
pospell -p dict.txt -l es_AR -l es_ES **/*.po
37+
- name: Construir documentación
38+
run: PYTHONWARNINGS=ignore::FutureWarning sphinx-build -j auto -W --keep-going -b html -d cpython/Doc/_build/doctree -D language=es . cpython/Doc/_build/html

.travis.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

TRANSLATORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,4 @@ Endika Gil (@endikagil)
123123
Federico Zuccolo (@fzuccolo)
124124
Ulises Alexander Argüelles Monjaraz (@UlisesAlexanderAM)
125125
Juan Elias Rodriguez (@Juerodriguez)
126-
126+
Victor Carlos (@tuxtitlan)

library/debug.po

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,24 @@
66
# Check https://github.com/python/python-docs-es/blob/3.8/TRANSLATORS to
77
# get the list of volunteers
88
#
9-
#, fuzzy
109
msgid ""
1110
msgstr ""
1211
"Project-Id-Version: Python 3.8\n"
1312
"Report-Msgid-Bugs-To: \n"
1413
"POT-Creation-Date: 2020-05-05 12:54+0200\n"
15-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
16-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14+
"PO-Revision-Date: 2020-12-02 01:34-0600\n"
15+
"Last-Translator: Victor Carlos <vacarlosf@gmail.com>\n"
1716
"Language-Team: python-doc-es\n"
17+
"Language: es\n"
1818
"MIME-Version: 1.0\n"
19-
"Content-Type: text/plain; charset=utf-8\n"
19+
"Content-Type: text/plain; charset=UTF-8\n"
2020
"Content-Transfer-Encoding: 8bit\n"
2121
"Generated-By: Babel 2.8.0\n"
22+
"X-Generator: Poedit 2.4.2\n"
2223

2324
#: ../Doc/library/debug.rst:3
2425
msgid "Debugging and Profiling"
25-
msgstr ""
26+
msgstr "Depuración y perfilado"
2627

2728
#: ../Doc/library/debug.rst:5
2829
msgid ""
@@ -33,3 +34,10 @@ msgid ""
3334
"provide visibility into runtime behaviors that would otherwise require "
3435
"intrusive debugging or patching."
3536
msgstr ""
37+
"Estas bibliotecas le ayudan con el desarrollo de Python: el depurador le "
38+
"permite recorrer paso a paso el código, analizar marcos de pila y establecer "
39+
"puntos de interrupción, etc., y los perfiladores ejecutan código y le "
40+
"proporcionan un desglose detallado de los tiempos de ejecución, lo que le "
41+
"permite identificar cuellos de botella en sus programas. Los eventos de "
42+
"auditoría proporcionan visibilidad de los comportamientos en tiempo de "
43+
"ejecución que, de lo contrario, requerirían depuración o parches intrusivos."

0 commit comments

Comments
 (0)