Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitfa10172

Browse files
authored
Merge branch '3.8' into traduccion-import
2 parentsbaeab62 +431f291 commitfa10172

27 files changed

+5429
-826
lines changed

‎.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ __pycache__/
2222

2323
# Distribution / packaging
2424
venv
25+
.venv
2526
.Python
2627
env/
2728
build/

‎.overrides/CONTRIBUTING.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,11 @@ contribución, queremos señalar algunos lineamientos generales.
9797
#. En la descripción de la *Pull Request* escribe ``Closes #<número de issue>``
9898
(así se cierra automáticamente cuando se hace *merge*)
9999

100+
..note::
101+
102+
Si hace tiempo que venis trabajando en una traducción es importante
103+
mantener actualizada tu copia local antes de realizar el *Pull Request**
104+
100105

101106
¿Qué archivo traducir?
102107
----------------------
@@ -141,6 +146,11 @@ A tener en cuenta
141146
* Wikipedia puede ser útil también. Busca la palabra en Inglés, y luego mira si
142147
tiene una traducción al Español en la barra de la izquierda. Suelen estar
143148
bastante bien explicados.
149+
150+
* Te recomendamos abrir una Pull Request aunque sea en formato borrador (marcada
151+
como draft) desde los primeros commits de la traducción de tu fichero. De esta
152+
forma, puedes recibir feedback desde el principio que puedes aplicar al resto
153+
de la traducción, y probar el build más a menudo.
144154

145155

146156
..note::

‎.overrides/faq.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,13 @@ y repetir el proceso para *Smart Dashes*.
8989
Desactivar "Smart Quotes" y "Smart Dashes"
9090

9191

92+
..tip::
93+
94+
Este comando te puede ayudar a cambiar todas las comillas::
95+
96+
sed -i **/*.po -e 's|[“”]|\\"|g'
97+
98+
9299
¿Qué parte de ``:ref:`` debo traducir?
93100
--------------------------------------
94101

‎.overrides/translation-memory.rst

Lines changed: 66 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -35,56 +35,105 @@ Términos y bigramas
3535

3636

3737
awaitable
38-
aguardable ``glossary``
38+
aguardable ``glossary``
39+
40+
slash and backslash
41+
barra y barra invertida ``c-api``,``tutorial``,``library/functions.po``
3942

4043
built-in
41-
incorporada ``glossary.po``
44+
incorporada ``glossary.po``
4245

4346
built-in exceptions
44-
excepciones predefinidas ``tutorial/errors.po``
47+
excepciones predefinidas ``tutorial/errors.po``
4548

4649
bytecodes
47-
queda igual ``glossary.po``
50+
queda igual ``glossary.po``
4851

4952
callable
50-
invocable ``glossary.po``, ``library/functions.po``
53+
invocable ``glossary.po``, ``library/functions.po``
5154

5255
code object
53-
objeto código ``c-api``, ``library/functions.po``
56+
objeto código ``c-api``, ``library/functions.po``
5457

5558
deallocated
56-
desalojable ``glossary.po``
59+
desalojable ``glossary.po``
5760

5861
docstring
59-
docstring. ``library/idle.po``
62+
docstring. ``library/idle.po``
63+
64+
key
65+
clave
6066

6167
handler
62-
gestor ``tutorial/errors.po``
68+
gestor ``tutorial/errors.po``, ``library/functions.po``
6369

6470
handle exception
65-
Gestionar excepción. ``tutorial/inputoutput.po``
71+
Gestionar excepción. ``tutorial/inputoutput.po``
72+
73+
locale
74+
Configuración regional. ``library/functions.po`` and others
75+
76+
helper function
77+
función auxiliar ``library/typing.po``
6678

6779
loop
68-
Bucle. ``tutorial/controlflow.po``
80+
bucle ``tutorial/controlflow.po``
6981

7082
mapping
71-
mapeo ``glossary.po``
83+
mapeo ``glossary.po``
7284

7385
named tuple.
74-
tupla nombrada ``glossary.po``
86+
tupla nombrada ``glossary.po``
7587

7688
path
77-
Ruta. ``glossary.po``
89+
ruta ``glossary.po``
7890

7991
raise
80-
Lanzar, lanza. (referido a excepciones) ``library/functions.po``, ``c-api``
92+
lanzar, lanza. (referido a excepciones) ``library/functions.po``, ``c-api``
93+
94+
realease
95+
version ``HOWTO``
96+
97+
runtime
98+
tiempo de ejecución ``tutorial/classes.po``
99+
100+
static type checker
101+
Validador estático de tipos
102+
Notas: mantener la mayúscula, usar validación cuando se refiera a la acción y no al agente.
103+
104+
third-party
105+
de terceros ``library/typing.po``
106+
107+
type hint
108+
indicador de tipo ``library/typing.po``
109+
110+
type annotation ``library/typing.po``
111+
anotación de tipo
112+
Nota: úsese como sinónimo de *type hint*
81113

82114
release
83115
version ``HOWTO``
84-
116+
117+
slice
118+
segmento ``datamodel.po``
119+
120+
slicing
121+
segmentación ``datamodel.po``
122+
123+
string
124+
cadena de caracteres ``datamodel.po``
125+
126+
strings
127+
cadenas de caracteres ``datamodel.po``
128+
85129
underscore
86-
guión bajo ``glossary.po``
130+
guión bajo ``glossary.po``
131+
132+
auditing event
133+
evento de auditoria ``library/tempfile``
87134

135+
widget
136+
widget ``library/tkinter``
88137

89138
Reglas de estilo
90139
================

‎.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ install:
1111
script:
1212
-powrap --check --quiet **/*.po
1313
-pospell -p dict -l es_AR -l es_ES **/*.po
14-
-make dict_dups
1514
-make build
1615
branches:
1716
only:

‎Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ help:
4141
# treated as errors, which is good to skip simple Sphinx syntax mistakes.
4242
.PHONY: build
4343
build: setup
44-
PYTHONWARNINGS=ignore::FutureWarning sphinx-build -j auto -W --keep-going -b html -d$(OUTPUT_DOCTREE) -D language=$(LANGUAGE).$(OUTPUT_HTML)
44+
PYTHONWARNINGS=ignore::FutureWarning$(VENV)/bin/sphinx-build -j auto -W --keep-going -b html -d$(OUTPUT_DOCTREE) -D language=$(LANGUAGE).$(OUTPUT_HTML)
4545
@echo"Success! Open file://`pwd`/$(OUTPUT_HTML)/index.html,"\
4646
"or run 'make serve' to see them in http://localhost:8000";
4747

@@ -100,10 +100,10 @@ wrap: venv
100100
SHELL:=/bin/bash
101101
.ONESHELL:
102102
dict_dups:
103-
if [[$$(cat dict| sort| uniq -dc) ]]; then\
104-
echo -e"\n\n\n ####################### \n\n\n"
103+
if [[$$(cat dict| sort| uniq -dc) ]];then
104+
echo -e"\n #######################\n"
105105
echo"duplicated lines in the dict file"
106-
uniq -dcdict
106+
sort dict|uniq -dc|sort -h
107107
exit 1
108108
else
109109
echo"no duplicated lines"

‎TRANSLATORS

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,26 @@ Reinny Almonte Ramos (@jighdan)
66
Héctor Canto (@hectorcanto_dev)
77
Carlos Crespo (@cacrespo)
88
Raúl Cumplido (@raulcd)
9-
Carlos Joel Delgado Pizarro (@c0x6a)
9+
Javier Daza (@javierdaza)
10+
Sergio Delgado Quintero (@sdelquin)
1011
Nicolás Demarchi (@gilgamezh)
1112
Xavi Francisco (@srxavi)
1213
Manuel Kaufmann (@humitos)
14+
Pablo Lobariñas (@Qkolnek)
1315
Alvar Maciel (@alvarmaciel @amaciel)
1416
Cristián Maureira-Fredes (@cmaureir)
17+
Darwing Medina Lacayo (@darwing1210)
1518
Claudia Millán Nebot (@clacri @cheshireminima)
19+
Carlos Joel Delgado Pizarro (@c0x6a)
1620
María José Molina Contreras (@mjmolina)
17-
María Andrea Vignau (@mavignau @marian-vignau)
1821
Marco Richetta (@marcorichetta)
22+
Elisabeth Ortega (@draentropia)
23+
Cristian Rengifo (@ingrengifo)
1924
Pablo Lobariñas (@Qkolnek)
2025
Sergio Delgado Quintero (@sdelquin)
2126
Silvina Tamburini (@silvinabt87)
22-
Javier Daza (@javierdaza)
27+
David Trigo Chávez (@dtrinf)
2328
Agustina Quiros (@qagustina)
29+
María Andrea Vignau (@mavignau @marian-vignau)
30+
Leonardo Gomez (@gomezgleonardob)
2431
José Miguel Hernández Cabrera (@miguelheca)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp