Skip to content

Commit db4600f

Browse files
authored
Merge branch '3.8' into gh-actions
2 parents 24212d7 + f0bd6db commit db4600f

File tree

9 files changed

+412
-94
lines changed

9 files changed

+412
-94
lines changed

.overrides/faq.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ pospell. Pospell puede ser instalada en tu entorno de Python empleando pip
2626
Una vez instalado, para chequear el fichero .po sobre el que estás trabajando,
2727
ejecuta desde el directorio principal del repo::
2828

29-
awk 1 dict dictionaries/*.txt > dict.txt
30-
pospell -p dict.txt -l es_AR -l es_ES path/tu_fichero.po
29+
python scripts/create_dict.py # para crear el archivo 'dict.txt'
30+
pospell -p dict.txt -l es_ES path/tu_fichero.po
3131

3232
pospell emplea la herramienta de diccionarios hunspell. Si pospell falla dando
3333
como error que no tiene hunspell instalado, lo puedes instalar así:

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ repos:
77
hooks:
88
- id: merge-dicts
99
name: merge-dicts
10-
entry: ./scripts/merge-dicts.sh
11-
language: script
10+
entry: python ./scripts/create_dict.py
11+
language: python
1212
# This one requires package ``hunspell-es_es`` in Archlinux
1313
- repo: https://github.com/JulienPalard/pospell
1414
rev: v1.0.5

Makefile

+1-3
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,7 @@ progress: venv
8989

9090
.PHONY: spell
9191
spell: venv
92-
# 'cat' tenia el problema que algunos archivos no tenían una nueva línea al final
93-
# 'awk 1' agregará una nueva línea en caso que falte.
94-
awk 1 dict dictionaries/*.txt > dict.txt
92+
$(VENV)/bin/python scripts/create_dict.py
9593
$(VENV)/bin/pospell -p dict.txt -l es_ES **/*.po
9694

9795

distutils/uploading.po

+9-5
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,30 @@
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-06 20:23-0300\n"
1715
"Language-Team: python-doc-es\n"
1816
"MIME-Version: 1.0\n"
19-
"Content-Type: text/plain; charset=utf-8\n"
17+
"Content-Type: text/plain; charset=UTF-8\n"
2018
"Content-Transfer-Encoding: 8bit\n"
2119
"Generated-By: Babel 2.8.0\n"
20+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
21+
"Last-Translator: \n"
22+
"Language: es\n"
23+
"X-Generator: Poedit 2.4.2\n"
2224

2325
#: ../Doc/distutils/uploading.rst:5
2426
msgid "Uploading Packages to the Package Index"
25-
msgstr ""
27+
msgstr "Subir paquetes al índice de paquetes"
2628

2729
#: ../Doc/distutils/uploading.rst:7
2830
msgid ""
2931
"References to up to date PyPI documentation can be found at :ref:`publishing-"
3032
"python-packages`."
3133
msgstr ""
34+
"Referencias a la documentación actualizada de PyPI pueden encontrarse en :"
35+
"ref:`publishing-python-packages`."

0 commit comments

Comments
 (0)