hgbook

diff es/concepts.tex @ 395:149ea8ae39c4

translated a couple of paragraphs of the "behind the scenes" chapter
author Javier Rojas <jerojasro@devnull.li>
date Tue Nov 04 23:50:20 2008 -0500 (2008-11-04)
parents 2c2c86824c61
children 0f2170fcb79a
line diff
     1.1 --- a/es/concepts.tex	Mon Nov 03 21:00:32 2008 -0500
     1.2 +++ b/es/concepts.tex	Tue Nov 04 23:50:20 2008 -0500
     1.3 @@ -24,20 +24,22 @@
     1.4  
     1.5  Cuando Mercurial sigue las modificaciones a un fichero, guarda el
     1.6  historial de dicho fichero en un objeto de metadatos llamado
     1.7 -of that file in a metadata object called a \emph{filelog}.  Each entry
     1.8 -in the filelog contains enough information to reconstruct one revision
     1.9 -of the file that is being tracked.  Filelogs are stored as files in
    1.10 -the \sdirname{.hg/store/data} directory.  A filelog contains two kinds
    1.11 -of information: revision data, and an index to help Mercurial to find
    1.12 -a revision efficiently.
    1.13 -
    1.14 -A file that is large, or has a lot of history, has its filelog stored
    1.15 -in separate data (``\texttt{.d}'' suffix) and index (``\texttt{.i}''
    1.16 -suffix) files.  For small files without much history, the revision
    1.17 -data and index are combined in a single ``\texttt{.i}'' file.  The
    1.18 -correspondence between a file in the working directory and the filelog
    1.19 -that tracks its history in the repository is illustrated in
    1.20 -figure~\ref{fig:concepts:filelog}.
    1.21 +\emph{filelog}\ndt{Fichero de registro}.  Cada entrada en el fichero
    1.22 +de registro contiene suficiente información para reconstruir una
    1.23 +revisión del fichero que se está siguiendo. Los ficheros de registro
    1.24 +son almacenados como ficheros el el directorio
    1.25 +\sdirname{.hg/store/data}. Un fichero de registro contiene dos tipos
    1.26 +de información: datos de revisiones, y un índice para ayudar a
    1.27 +Mercurial a buscar revisiones eficientemente.
    1.28 +
    1.29 +El fichero de registro de un fichero grande, o con un historial muy
    1.30 +largo, es guardado como ficheros separados para datos (sufijo
    1.31 +``\texttt{.d}'') y para el índice (sufijo ``\texttt{.i}''). Para
    1.32 +ficheros pequeños con un historial pequeño, los datos de revisiones y
    1.33 +el índice son combinados en un único fichero ``\texttt{.i}''. La
    1.34 +correspondencia entre un fichero en el directorio de trabajo y el
    1.35 +fichero de registro que hace seguimiento a su historial en el
    1.36 +repositorio se ilustra en la figura~\ref{fig:concepts:filelog}.
    1.37  
    1.38  \begin{figure}[ht]
    1.39    \centering