Translations by Julien Cristau

Julien Cristau has submitted the following strings to this translation. Contributions are visually coded: currently used translations, unreviewed suggestions, rejected suggestions.

150 of 1171 results
~
A changelog entry with the new version number is generated with the text "New upstream release".
2008-10-02
Une entrée du fichier changelog avec la nouvelle version est générée avec le texte « New upstream release » (nouvelle version amont).
~
A hook command can be specified either in the configuration file as, for example, DEBUILD_SIGNING_HOOK='foo' (note the hyphens change into underscores!) or as a command line option B<--signing-hook-foo>. The command will have certain percent substitutions made on it: %% will be replaced by a single % sign, %p will be replaced by the package name, %v by the package version number, %a will be 1 if the immediately following action is to be performed and 0 if not (for example, in the dpkg-source hook, %a will become 1 if dpkg-source is to be run and 0 if not). Then it will be handed to the shell to deal with, so it can include redirections and stuff. For example, to only run the dpkg-source hook if dpkg-source is to be run, the hook could be something like: "if [ %a -eq 1 ]; then ...; fi".
2008-10-02
Une commande crochet peut être définie soit dans le fichier de configuration, par exemple avec DEBUILD_SIGNING_HOOK='toto' (notez que les tirets ont été modifiés en caractères de soulignement), ou avec l'option en ligne de commande B<--signing-hook-foo>. La commande sera en partie modifiée : %% deviendra un signe % simple, %p sera remplacé par le nom du paquet, %v par le numéro de version du paquet, %a sera 1 si l'action suivante doit être effectuée et 0 dans le cas contraire (par exemple, dans le crochet dpkg-source, %a sera 1 si dpkg-source doit être lancé et 0 sinon). Elle sera alors passée à l'interpréteur de commandes pour être traitée, et peut donc inclure des redirections ou des choses du genre. Par exemple, pour ne lancer que le crochet dpkg-source si dpkg-source doit être exécutée, le crochet peut ressemble à ceci : « if [ %a -eq 1 ]; then ...; fi ».
~
Read package information from standard input in the format of a Debian package control file. This includes the status file, or output of apt-cache. This is the fastest way to use dd-list, as it uses the maintainer information from the input instead of looking up the maintainer of each listed package.
2008-10-02
Lit les informations de paquet depuis l'entrée standard, au format du fichier de contrôle Debian (« debian/control »). Ceci inclut le fichier d'état, ou la sortie d'apt-cache. C'est l'utilisation la plus rapide de dd-list, puisqu'elle utilise les informations de responsable depuis l'entrée plutôt que de rechercher les responsables de chaque paquet.
1.
ANNOTATE-OUTPUT
2008-10-02
ANNOTATE-OUTPUT
2.
Debian Utilities
2008-10-02
Utilitaires Debian
3.
DEBIAN
2008-10-02
DEBIAN
4.
NAME
2008-10-02
NOM
5.
annotate-output - annotate program output with time and stream
2008-10-02
annotate-output - Annoter la sortie d'un programme avec la date et les flux
6.
SYNOPSIS
2008-10-02
SYNOPSIS
8.
DESCRIPTION
2008-10-02
DESCRIPTION
9.
B<annotate-output> will execute the specified program, while prepending every line with the current time and O for stdout and E for stderr.
2008-10-02
B<annotate-output> va lancer le programme spécifié en ajoutant au début de chaque ligne l'heure courante ainsi qu'un O pour la sortie standard (« stdout ») et un E pour la sortie d'erreur (« stderr »).
2008-10-02
B<annotate-output> va lancer le programme spécifié en ajoutant au début de chaque ligne l'heure courante ainsi qu'un O pour la sortie standard (« stdout ») et un E pour la sortie d'erreur (« stderr »).
10.
OPTIONS
2008-10-02
OPTIONS
13.
B<-h>, B<--help>
2008-10-02
B<-h>, B<--help>
14.
Display a help message and exit successfully.
2008-10-02
Affiche un message d'aide et quitte avec succès.
15.
EXAMPLE
2008-10-02
EXEMPLE
16.
$ annotate-output make 21:41:21 I: Started make 21:41:21 O: gcc -Wall program.c 21:43:18 E: program.c: Couldn't compile, and took me ages to find out 21:43:19 E: collect2: ld returned 1 exit status 21:43:19 E: make: *** [all] Error 1 21:43:19 I: Finished with exitcode 2
2008-10-02
$ annotate-output make 21:41:21 I: make démarré 21:41:21 O: gcc -Wall programme.c 21:43:18 E: programme.c: n'a pas compilé et durée de diagnostic dépassée 21:43:19 E: collect2: ld a retourné un code de sortie 1 21:43:19 E: make: *** [all] Erreur 1 21:43:19 I: terminé avec un code de sortie 2
17.
BUGS
2008-10-02
BOGUES
18.
Since stdout and stderr are processed in parallel, it can happen that some lines received on stdout will show up before later-printed stderr lines (and vice-versa).
2008-10-02
Puisque stdout et stderr sont traitées en parallèle, il peut arriver que quelques lignes reçues sur stdout soient affichées avant des lignes de stderr (et inversement).
19.
This is unfortunately very hard to fix with the current annotation strategy. A fix would involve switching to PTRACE'ing the process. Giving nice a (much) higher priority over the executed program could however cause this behaviour to show up less frequently.
2008-10-02
Ceci est malheureusement très difficile à corriger avec la stratégie d'annotation choisie. Une solution serait de passer à un suivi via PTRACE. Donner à nice une (bien) plus grande priorité par rapport au programme exécuté pourrait cependant éviter que ce comportement n'arrive trop fréquemment.
20.
The program does not work as well when the output is not linewise. In particular, when an interactive program asks for input, the question might not be shown until after you have answered it. This will give the impression that the annotated program has hung, while it has not.
2008-10-02
Ce programme ne fonctionne pas non plus très bien si la sortie n'est pas faite ligne par ligne. En particulier, quand un programme interactif attend une entrée, la question peut ne pas être affichée tant que vous n'y avez pas répondu. Ceci peut donner l'impression que le programme ainsi lancé a gelé, alors que ce n'est pas le cas.
21.
SEE ALSO
2008-10-02
VOIR AUSSI
24.
This program is community-supported (meaning: you'll need to fix it yourself). Patches are however appreciated, as is any feedback (positive or negative).
2008-10-02
Ce programme est soutenu par la communauté (comprendre : vous allez devoir le corriger vous-même). Les rustines sont toutefois appréciées, ainsi que toute sorte de retour (positif ou non).
25.
AUTHOR
2008-10-02
AUTEUR
26.
B<annotate-output> was written by Jeroen van Wolffelaar E<lt>jeroen@wolffelaar.nlE<gt> This manpage comes under the same copyright as annotate-output itself, read /usr/bin/annotate-output (or wherever you install it) for the details.
2008-10-02
B<annotate-output> a été écrit par Jeroen van Wolffelaar E<lt>jeroen@wolffelaar.nlE<gt>. Cette page de manuel est distribuée sous la même licence que annotate-output lui-même, veuillez lire /usr/bin/annotate-output (ou à tout autre endroit où il est installé) pour les détails.
27.
ARCHPATH
2008-10-02
ARCHPATH
28.
archpath - output arch (tla/Bazaar) archive names, with support for branches
2008-10-02
archpath - Afficher les noms des archives arch (tla ou Bazaar), avec la gestion des branches
29.
B<archpath>
2008-10-02
B<archpath>
30.
B<archpath> I<branch>
2008-10-02
B<archpath> I<branch>
31.
B<archpath> I<branch>--I<version>
2008-10-02
B<archpath> I<branch>--I<version>
32.
B<archpath> is intended to be run in an arch (tla or Bazaar) working copy.
2008-10-02
B<archpath> est censé tourner dans une copie de travail arch (tla ou Bazaar).
33.
In its simplest usage, B<archpath> with no parameters outputs the package name (archive/category--branch--version) associated with the working copy.
2008-10-02
Le cas d'utilisation le plus simple est le suivant : lancer B<archpath> sans paramètre entraîne l'affichage du nom du paquet (archive/categorie--branche--version) associé à la copie de travail.
34.
If a parameter is given, it may either be a branch--version, in which case B<archpath> will output a corresponding package name in the current archive and category, or a plain branch name (without \(oq--"), in which case B<archpath> will output a corresponding package name in the current archive and category and with the same version as the current working copy.
2008-10-02
Si un paramètre est passé, il peut être soit branche--version, auquel cas B<archpath> affiche le nom du paquet correspondant à l'archive courante et la catégorie, soit un nom de branche complet (sans « -- »), auquel cas B<archpath> affiche le nom du paquet correspondant dans la même archive, la même catégorie, et à la même version que la copie de travail courante.
35.
This is useful for branching. For example, if you're using Bazaar and you want to create a branch for a new feature, you might use a command like this:
2008-10-02
Ceci est utile pour la gestion des branches. Par exemple, si vous utilisez Bazaar et que vous voulez créer une branche pour une nouvelle fonctionnalité, vous pouvez utiliser une commande telle que :
36.
CW<baz branch $(archpath) $(archpath new-feature)>
2008-10-02
CW<baz branch $(archpath) $(archpath new-feature)>
37.
Or if you want to tag your current code onto a \(oqreleases\(cq branch as version 1.0, you might use a command like this:
2008-10-02
Ou si vous voulez marquer votre code actuel comme étant une version 1.0 dans une branche « releases », vous pouvez utiliser une commande telle que :
38.
CW<baz branch $(archpath) $(archpath releases--1.0)>
2008-10-02
CW<baz branch $(archpath) $(archpath releases--1.0)>
39.
That's much easier than using \(oqbaz tree-version\(cq to look up the package name and manually modifying the result.
2008-10-02
C'est bien plus commode que d'utiliser « baz tree-version » pour récupérer le nom du paquet puis modifier le résultat manuellement.
40.
B<archpath> was written by
2008-10-02
B<archpath> a été écrit par
41.
Colin Watson E<lt>cjwatson@debian.orgE<gt>.
2008-10-02
Colin Watson E<lt>cjwatson@debian.orgE<gt>.
42.
Like B<archpath>, this manual page is released under the GNU General Public License, version 2 or later.
2008-10-02
Comme B<archpath>, cette page de manuel est publiée sous la Licence Publique Générale de GNU, version 2 ou ultérieure.
43.
bts - developers' command line interface to the BTS
2008-10-02
bts - Interface en ligne de commande pour le BTS, pour les développeurs
44.
B<bts> [options] command [args] [#comment] [.|, command [args] [#comment]] ...
2008-10-02
B<bts> [options] commande [paramètres] [#commentaire] [.|, commande [paramètres] [#commentaire]] ...
46.
In general, the command line interface is the same as what you would write in a mail to control@bugs.debian.org, just prefixed with "bts". For example:
2008-10-02
En général, cette interface en ligne de commande est la même que si vous vouliez écrire un courriel à control@bugs.debian.org, simplement précédée de « bts ». Par exemple :
47.
% bts severity 69042 normal % bts merge 69042 43233 % bts retitle 69042 blah blah
2008-10-02
% bts severity 69042 normal % bts merge 69042 43233 % bts retitle 69042 bla bla
48.
A few additional commands have been added for your convenience, and this program is less strict about what constitutes a valid bug number. For example, "severity Bug#85942 normal" is understood, as is "severity #85942 normal". (Of course, your shell may regard "#" as a comment character though, so you may need to quote it!)
2008-10-02
Quelques commandes supplémentaires peuvent être ajoutées à votre convenance et ce programme est moins strict sur la validité des numéros de bogue. Par exemple, « severity Bug#85942 normal » est compris, tout comme « severity #85942 normal ». (Bien sûr, votre interpréteur de commandes peut comprendre « # » comme un caractère de commentaire, donc il faudra probablement le mettre entre guillemets.)
49.
Also, for your convenience, this program allows you to abbreviate commands to the shortest unique substring (similar to how cvs lets you abbreviate commands). So it understands things like "bts cl 85942".
2008-10-02
De même, pour vous faciliter la vie, ce programme vous permet d'abréger les commandes en la plus courte sous-chaîne unique (d'une manière similaire à celle de cvs). Ainsi des choses comme « bts cl 85942 » sont comprises.
50.
It is also possible to include a comment in the mail sent to the BTS. If your shell does not strip out the comment in a command like "bts severity 30321 normal #inflated severity", then this program is smart enough to figure out where the comment is, and include it in the email. Note that most shells do strip out such comments before they get to the program, unless the comment is quoted. (Something like "bts severity #85942 normal" will not be treated as a comment!)
2008-10-02
Il est aussi possible d'inclure un commentaire dans le courriel envoyé au BTS. Si votre interpréteur de commandes ne supprime pas le commentaire dans une commande telle que « bts severity 30321 normal #sévérité augmentée », alors ce programme se débrouille pour trouver où se situe le commentaire et pour l'inclure dans le courriel. Notez que la plupart des interpréteurs de commandes ne tiennent pas compte de ce type de commentaires avant d'exécuter le programme, à moins que ce commentaire soit placé entre guillemets. (Quelque chose comme « bts severity #85942 normal » ne sera pas traité comme un commentaire.)
51.
You can specify multiple commands by separating them with a single dot, rather like B<update-rc.d>; a single comma may also be used; all the commands will then be sent in a single mail. For example (quoting where necessary so that B<bts> sees the comment):
2008-10-02
Vous pouvez spécifier plusieurs commandes en les séparant par un simple point, comme pour B<update-rc.d> ; une simple virgule peut aussi être utilisée ; toutes les commandes seront envoyées dans un seul courriel. Par exemple (en échappant ce qui doit l'être de manière à ce que B<bts> voie le commentaire correctement) :
52.
% bts severity 95672 normal , merge 95672 95673 \#they are the same!
2008-10-02
% bts severity 95672 normal , merge 95672 95673 \#Il s\'agit des mêmes !