# HG changeset patch
# User Romain PELISSE <romain.pelisse@atosorigin.com>
# Date 1233930686 -3600
# Node ID 0d08ac613527dd22f3bf84adab28f9834c388125
# Parent  f5d009f9e8e060ed7acfec7d0f210049404ecbd0
Beginning translation work on 'intro.text'

diff -r f5d009f9e8e0 -r 0d08ac613527 fr/intro.tex
--- a/fr/intro.tex	Fri Feb 06 15:09:01 2009 +0100
+++ b/fr/intro.tex	Fri Feb 06 15:31:26 2009 +0100
@@ -1,37 +1,39 @@
 \chapter{Introduction}
 \label{chap:intro}
 
-\section{About revision control}
-
-Revision control is the process of managing multiple versions of a
-piece of information.  In its simplest form, this is something that
-many people do by hand: every time you modify a file, save it under a
-new name that contains a number, each one higher than the number of
-the preceding version.
-
-Manually managing multiple versions of even a single file is an
-error-prone task, though, so software tools to help automate this
-process have long been available.  The earliest automated revision
-control tools were intended to help a single user to manage revisions
-of a single file.  Over the past few decades, the scope of revision
-control tools has expanded greatly; they now manage multiple files,
-and help multiple people to work together.  The best modern revision
-control tools have no problem coping with thousands of people working
-together on projects that consist of hundreds of thousands of files.
-
-\subsection{Why use revision control?}
-
-There are a number of reasons why you or your team might want to use
-an automated revision control tool for a project.
+\section{A propros de la gestion source}
+
+La gestion de source est un processus permettant de gérer différentes
+version de la même information. Dans sa forme la plus simple, c'est
+quelquechose que tout le monde fait manuellement : quand vous modifiez
+un fichier, vous le sauvegarder sous un nouveau nom contenant un numéro,
+à chaque fois plus grand la précédente version.
+
+Ce genre de gestion de version manuel est cependant sujette facilement
+à des erreurs, ainsi, depuis longtemps, des logiciels existent pour
+adresser cette problématique. Les premiers outils de gestion de source
+étaient destinés à aider un seul utilisateur, à automatiser la gestion
+des versions d'un seulf fichier. Dans les dernières décades, cette cilble 
+a largement était agrandie, ils gèrent désormais de multiple fichiers, et
+aident un grand nombre de personnes à travailler ensemble. Le outils les
+plus modernes n'ont aucune difficultés à gérer plusieurs milliers de 
+personnes travaillant ensemble sur des projets regroupant plusieurs 
+centaines de milliers de fichiers.
+
+\subsection{Pourquoi utiliser un gestionnaire de source ?}
+
+Il y a de nombreuse raisons pour que vous ou votre équipe souhaitiez
+utiliser un outil automatisant la gestion de version pour votre projet.
 \begin{itemize}
-\item It will track the history and evolution of your project, so you
-  don't have to.  For every change, you'll have a log of \emph{who}
-  made it; \emph{why} they made it; \emph{when} they made it; and
-  \emph{what} the change was.
-\item When you're working with other people, revision control software
-  makes it easier for you to collaborate.  For example, when people
-  more or less simultaneously make potentially incompatible changes,
-  the software will help you to identify and resolve those conflicts.
+\item L'outil se chargera de suivre l'évolution de votre projet, sans
+que vous ayez à le faire. Pour chaque modification, vous aurez à votre
+disposition un journal indiquant \emph{qui} a faient quoi, \emph{pourquoi}
+ils l'ont fait, \emph{quand} ils l'ont fait, et \emph{ce} qu'ils ont
+modifiés.
+\item Quand vous travaillez avec d'autres personnes, les logiciels de 
+gestion de source facilite le travail collaboratif. Par exemple, quand
+plusieurs personnes font, plus ou moins simultannéement, des modifications
+incompatibles, le logiciel vous aidera à identifier et résoudre les conflits.
 \item It can help you to recover from mistakes.  If you make a change
   that later turns out to be in error, you can revert to an earlier
   version of one or more files.  In fact, a \emph{really} good