hgbook

changeset 432:5da084395a69

translated some other paragrpahs
author jerojasro@localhost
date Sun Nov 30 18:55:34 2008 -0500 (2008-11-30)
parents f809de31887a
children 7d3e036025fb
files es/filenames.tex
line diff
     1.1 --- a/es/filenames.tex	Sun Nov 30 18:41:51 2008 -0500
     1.2 +++ b/es/filenames.tex	Sun Nov 30 18:55:34 2008 -0500
     1.3 @@ -155,20 +155,23 @@
     1.4  haciendo que se asocie con cualquier caracter sencillo que no se
     1.5  encuentre en la clase.
     1.6  
     1.7 -A ``\texttt{\{}'' begins a group of subpatterns, where the whole group
     1.8 -matches if any subpattern in the group matches.  The ``\texttt{,}''
     1.9 -character separates subpatterns, and ``\texttt{\}}'' ends the group.
    1.10 +Un ``\texttt{\{}'' marca el inicio de un grupo de subpatrones, en
    1.11 +donde todo el grupo es asociado si cualquier subpatrón en el grupo
    1.12 +puede ser asociado. El caracter ``\texttt{,}'' separa los subpatrones,
    1.13 +y el ``\texttt{\}}'' finaliza el grupo.
    1.14  \interaction{filenames.glob.group}
    1.15  
    1.16 -\subsubsection{Watch out!}
    1.17 -
    1.18 -Don't forget that if you want to match a pattern in any directory, you
    1.19 -should not be using the ``\texttt{*}'' match-any token, as this will
    1.20 -only match within one directory.  Instead, use the ``\texttt{**}''
    1.21 -token.  This small example illustrates the difference between the two.
    1.22 +\subsubsection{Cuidado!}
    1.23 +
    1.24 +No olvide que si usted desea asocia un patrón con cualquier
    1.25 +directorio, no debería usar el elemento para asociar con cualquier
    1.26 +cadena ``\texttt{*}'', ya que éste sólo generará asociaciones dentro
    1.27 +de un solo directorio. En vez de eso, use el caracter para asociar con
    1.28 +cualquier cadena ``\texttt{**}''. Este pequeño ejemplo ilustra la
    1.29 +diferencia entre los dos.
    1.30  \interaction{filenames.glob.star-starstar}
    1.31  
    1.32 -\subsection{Regular expression matching with \texttt{re} patterns}
    1.33 +\subsection{Asociación con patrones de expresiones regulares \texttt{re}}
    1.34  
    1.35  Mercurial accepts the same regular expression syntax as the Python
    1.36  programming language (it uses Python's regexp engine internally).