Skip to content

Commit d383c7a

Browse files
committed
merge in spanish translation
2 parents 659748f + 3aff520 commit d383c7a

26 files changed

+1831
-9
lines changed

Makefile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,19 @@ sdist: html
3434
.PHONY: html
3535
html:
3636
(cd docs && $(MAKE) html SPHINXOPTS="-c sphinx/pkg")
37+
(cd docs && $(MAKE) html SPHINXOPTS="-c sphinx/pkg" LANGUAGE="es")
3738

3839
# Website copy of documentation
3940
.PHONY: website
4041
website:
4142
[ ~/Devel/doughellmann/doughellmann/templates/base.html -nt docs/sphinx/web/templates/base.html ] && (echo "Updating base.html" ; cp ~/Devel/doughellmann/doughellmann/templates/base.html docs/sphinx/web/templates/base.html) || exit 0
4243
rm -rf docs/website
43-
(cd docs && $(MAKE) html SPHINXOPTS="-c sphinx/web" BUILDDIR="website")
44+
(cd docs && $(MAKE) html SPHINXOPTS="-c sphinx/web" BUILDDIR="website/en")
45+
(cd docs && $(MAKE) html SPHINXOPTS="-c sphinx/web" BUILDDIR="website/es" LANGUAGE="es")
4446

4547
installwebsite: website
46-
(cd docs/website/html && rsync --rsh=ssh --archive --delete --verbose . www.doughellmann.com:/var/www/doughellmann/DocumentRoot/docs/virtualenvwrapper/)
48+
(cd docs/website/en/html && rsync --rsh=ssh --archive --delete --verbose . www.doughellmann.com:/var/www/doughellmann/DocumentRoot/docs/virtualenvwrapper/)
49+
(cd docs/website/es/html && rsync --rsh=ssh --archive --delete --verbose . www.doughellmann.com:/var/www/doughellmann/DocumentRoot/docs/virtualenvwrapper/es/)
4750

4851
# Register the new version on pypi
4952
.PHONY: register
@@ -91,4 +94,4 @@ test-quick:
9194
SUPPORTED_PYTHON_VERSIONS=$(PRIMARY_PYTHON_VERSION) $(MAKE) test-bash
9295

9396
test-install:
94-
bash ./tests/manual_test_install.sh `pwd`/dist "$(VERSION)"
97+
bash ./tests/manual_test_install.sh `pwd`/dist "$(VERSION)"

README.es.txt

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
.. -*- mode: rst -*-
2+
3+
#################
4+
virtualenvwrapper
5+
#################
6+
7+
virtualenvwrapper es un conjunto de extensiones de la herramienta de Ian
8+
Bicking `virtualenv <http://pypi.python.org/pypi/virtualenv>`_. Las extensiones
9+
incluyen funciones para la creación y eliminación de entornos virtuales y por otro
10+
lado administración de tu rutina de desarrollo, haciendo fácil trabajar en más
11+
de un proyecto al mismo tiempo sin introducir conflictos entre sus dependencias.
12+
13+
===============
14+
Características
15+
===============
16+
17+
1. Organiza todos tus entornos virtuales en un sólo lugar.
18+
19+
2. Funciones para administrar tus entornos virtuales (crear, eliminar, copiar).
20+
21+
3. Usa un sólo comando para cambiar entre los entornos.
22+
23+
4. Completa con Tab los comandos que toman un entorno virtual como argumento.
24+
25+
5. Ganchos configurables para todas las operaciones.
26+
27+
6. Sistema de plugins para la creación de extensiones compartibles.
28+
29+
Rich Leland ha grabado un pequeño `screencast
30+
<http://mathematism.com/2009/jul/30/presentation-pip-and-virtualenv/>`__
31+
mostrando las características de virtualenvwrapper.
32+
33+
34+
===========
35+
Instalación
36+
===========
37+
38+
Ve a la `documentación del proyecto <http://www.doughellmann.com/docs/virtualenvwrapper/>`__
39+
para las instrucciones de instalación y configuración.
40+
41+
Actualizar desde 1.x
42+
====================
43+
44+
El script de shell que contiene las funciones ha sido renombrado en la serie
45+
2.x para reflejar el hecho de que otros shells, además de bash, son soportados. En
46+
tu archivo de inicio del shell, cambia ``source
47+
/usr/local/bin/virtualenvwrapper_bashrc`` por ``source
48+
/usr/local/bin/virtualenvwrapper.sh``.
49+
50+
==============
51+
Contribuciones
52+
==============
53+
54+
Antes de contribuir con nuevas características al *core* de virtualenvwrapper,
55+
por favor considera, en vez, si no debe ser implementada como una extensión.
56+
57+
Ve a la `documentación para desarrolladores
58+
<http://www.doughellmann.com/docs/virtualenvwrapper/developers.html>`__
59+
por trucos sobre parches.
60+
61+
========
62+
Licencia
63+
========
64+
65+
Copyright Doug Hellmann, All Rights Reserved
66+
67+
Permission to use, copy, modify, and distribute this software and its
68+
documentation for any purpose and without fee is hereby granted,
69+
provided that the above copyright notice appear in all copies and that
70+
both that copyright notice and this permission notice appear in
71+
supporting documentation, and that the name of Doug Hellmann not be used
72+
in advertising or publicity pertaining to distribution of the software
73+
without specific, written prior permission.
74+
75+
DOUG HELLMANN DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
76+
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
77+
EVENT SHALL DOUG HELLMANN BE LIABLE FOR ANY SPECIAL, INDIRECT OR
78+
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
79+
USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
80+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
81+
PERFORMANCE OF THIS SOFTWARE.
82+
83+
.. _BitBucket: http://bitbucket.org/dhellmann/virtualenvwrapper/overview/

announce.es.rst

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
¿Qué es virtualenvwrapper?
2+
==========================
3+
4+
virtualenvwrapper es un conjunto de extensiones de la herramienta de Ian
5+
Bicking `virtualenv <http://pypi.python.org/pypi/virtualenv>`_. Las extensiones
6+
incluyen funciones para la creación y eliminación de entornos virtuales y por otro
7+
lado administración de tu rutina de desarrollo, haciendo fácil trabajar en más
8+
de un proyecto al mismo tiempo sin introducir conflictos entre sus dependencias.
9+
10+
11+
¿Qué es lo nuevo en 2.1?
12+
========================
13+
14+
El principal propósito de esta *release* es un conjunto de mejoras para soportar
15+
virtualenvwrapper.project_, una nueva extensión para administrar los directorios
16+
de trabajo para los proyectos con plantillas. 2.1 también incluye pequeños
17+
cambios y corrección de bugs.
18+
19+
- Agregado soporte para ksh. Gracias a Doug Latornell por hacer la investigación
20+
sobre qué era necesario cambiar.
21+
- Testeo de importación de virtualenvwrapper.hook_loader en el inicio que reporta
22+
el error de manera que debería ayudar al usuario a resolver cómo solucionarlo
23+
(ticket #33).
24+
- Actualizada la documentación de mkvirtualenv para incluir el hecho de que un
25+
nuevo entorno es activado inmediatamente luego de que es creado (ticket #30).
26+
- Agregados ganchos alrededor cpvirtualenv.
27+
- *deactivation* es más robusto, especialmente bajo ksh.
28+
- Uso del módulo de Python ``tempfile`` para creación de archivos temporales
29+
de forma segura y portable.
30+
- Corregido un problema con ``virtualenvwrapper_show_workon_options`` que
31+
causaba que este muestre ``*`` como el nombre de un virtualenv cuando no había
32+
entornos creados todavía.
33+
- Cambio en el cargador de ganchos para que pueda ejecutar sólo un conjunto de
34+
ganchos nombrados.
35+
- Agregado soporte para listar los ganchos disponibles, para ser usado en la
36+
ayuda de los comandos como mkproject en virtualenvwrapper.project.
37+
- Corregida la opción -h de mkvirtualenv.
38+
- Cambiado el registro para que $WORKON_HOME/hook.log rote después de 10KiB.
39+
40+
41+
.. _virtualenv: http://pypi.python.org/pypi/virtualenv
42+
43+
.. _virtualenvwrapper: http://www.doughellmann.com/projects/virtualenvwrapper/
44+
45+
.. _virtualenvwrapper.project: http://www.doughellmann.com/projects/virtualenvwrapper.project/

docs/Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
# Makefile for Sphinx documentation
22
#
33

4+
# If doc language is English you don't need to set this variable
5+
LANGUAGE = en
6+
47
# You can set these variables from the command line.
58
SPHINXOPTS =
69
SPHINXBUILD = sphinx-build
710
PAPER =
8-
BUILDDIR = build
11+
BUILDDIR = build/$(LANGUAGE)
912

1013
# Internal variables.
1114
PAPEROPT_a4 = -D latex_paper_size=a4
1215
PAPEROPT_letter = -D latex_paper_size=letter
13-
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
16+
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) $(LANGUAGE)
1417

1518
.PHONY: help clean html dirhtml pickle json htmlhelp qthelp latex changes linkcheck doctest
1619

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)