1# French translations for Git. 2# Copyright (C) 2018 Jean-Noël Avila <jn.avila@free.fr> 3# This file is distributed under the same license as the Git package. 4# Jean-Noël Avila <jn.avila@free.fr>, 2018. 5# Sébastien Helleu <flashcode@flashtux.org>, 2013. 6# 7# French translations of common Git words used in this file: 8# 9# English | French 10# -----------------+--------------------------------- 11# 3-way merge | fusion à 3 points 12# #NN | n°NN 13# a commit | un commit 14# backward | 15# compatibility | rétrocompatibilité 16# bare repository | dépôt nu 17# bisect | bissection 18# blob | blob 19# bug | bogue 20# bundle | colis 21# bypass | éviter d'utiliser 22# to checkout | extraire 23# cherry-pick | picorer 24# to commit | valider 25# commit-ish | commit ou apparenté 26# config file | fichier de configuration 27# dangling | en suspens 28# to debug | déboguer 29# debugging | débogage 30# to deflate | compresser 31# email | courriel 32# entry | élément 33# fast-forward | avance rapide 34# fast-forwarded | mis à jour en avance rapide 35# to fetch | rapatrier 36# fix conflicts | réglez les conflits 37# to format | formater 38# glob | glob 39# hash | hachage 40# HEAD | HEAD (genre féminin) 41# hook | crochet 42# hunk | section 43# to inflate | décompresser 44# to list | afficher 45# mapping | mise en correspondance 46# merge | fusion 47# pack | paquet 48# patches | patchs 49# pattern | motif 50# to prune | éliminer 51# to push | pousser 52# to rebase | rebaser 53# trailers | lignes terminales 54# repository | dépôt 55# remote | distante (ou serveur distant) 56# revision | révision 57# shallow | superficiel 58# shell | interpréteur de commandes 59# stash | remisage 60# to stash | remiser 61# tag | étiquette 62# template | modèle 63# thread | fil 64# to track | suivre 65# tree | arbre 66# tree-ish | arbre ou apparenté 67# to unstage | désindexer 68# upstream | amont 69# viewer | visualiseur 70# worktree / | 71# work(ing) tree | copie de travail 72# 73msgid "" 74msgstr "" 75"Project-Id-Version: git\n" 76"Report-Msgid-Bugs-To: Git Mailing List <git@vger.kernel.org>\n" 77"POT-Creation-Date: 2018-09-04 08:50+0800\n" 78"PO-Revision-Date: 2018-09-05 22:18+0200\n" 79"Last-Translator: Jean-Noël Avila <jn.avila@free.fr>\n" 80"Language-Team: Jean-Noël Avila <jn.avila@free.fr>\n" 81"Language: fr\n" 82"MIME-Version: 1.0\n" 83"Content-Type: text/plain; charset=UTF-8\n" 84"Content-Transfer-Encoding: 8bit\n" 85"Plural-Forms: nplurals=2; plural=n<=1 ?0 : 1;\n" 86 87#: advice.c:97 88#, c-format 89msgid "%shint: %.*s%s\n" 90msgstr "%sastuce: %.*s%s\n" 91 92#: advice.c:150 93msgid "Cherry-picking is not possible because you have unmerged files." 94msgstr "Impossible de picorer car vous avez des fichiers non fusionnés." 95 96#: advice.c:152 97msgid "Committing is not possible because you have unmerged files." 98msgstr "Impossible de valider car vous avez des fichiers non fusionnés." 99 100#: advice.c:154 101msgid "Merging is not possible because you have unmerged files." 102msgstr "Impossible de fusionner car vous avez des fichiers non fusionnés." 103 104#: advice.c:156 105msgid "Pulling is not possible because you have unmerged files." 106msgstr "Impossible de tirer car vous avez des fichiers non fusionnés." 107 108#: advice.c:158 109msgid "Reverting is not possible because you have unmerged files." 110msgstr "Impossible d'annuler car vous avez des fichiers non fusionnés." 111 112#: advice.c:160 113#, c-format 114msgid "It is not possible to %s because you have unmerged files." 115msgstr "%s n'est pas possible car vous avez des fichiers non fusionnés." 116 117#: advice.c:168 118msgid "" 119"Fix them up in the work tree, and then use 'git add/rm <file>'\n" 120"as appropriate to mark resolution and make a commit." 121msgstr "" 122"Corrigez-les puis lancez 'git add/rm <fichier>'\n" 123"si nécessaire pour marquer la résolution et valider." 124 125#: advice.c:176 126msgid "Exiting because of an unresolved conflict." 127msgstr "Abandon à cause de conflit non résolu." 128 129#: advice.c:181 builtin/merge.c:1286 130msgid "You have not concluded your merge (MERGE_HEAD exists)." 131msgstr "Vous n'avez pas terminé votre fusion (MERGE_HEAD existe)." 132 133#: advice.c:183 134msgid "Please, commit your changes before merging." 135msgstr "Veuillez valider vos changements avant de fusionner." 136 137#: advice.c:184 138msgid "Exiting because of unfinished merge." 139msgstr "Abandon à cause d'une fusion non terminée." 140 141#: advice.c:190 142#, c-format 143msgid "" 144"Note: checking out '%s'.\n" 145"\n" 146"You are in 'detached HEAD' state. You can look around, make experimental\n" 147"changes and commit them, and you can discard any commits you make in this\n" 148"state without impacting any branches by performing another checkout.\n" 149"\n" 150"If you want to create a new branch to retain commits you create, you may\n" 151"do so (now or later) by using -b with the checkout command again. Example:\n" 152"\n" 153" git checkout -b <new-branch-name>\n" 154"\n" 155msgstr "" 156"Note : extraction de '%s'.\n" 157"\n" 158"Vous êtes dans l'état « HEAD détachée ». Vous pouvez visiter, faire des " 159"modifications\n" 160"expérimentales et les valider. Il vous suffit de faire une autre extraction " 161"pour\n" 162"abandonner les commits que vous faites dans cet état sans impacter les " 163"autres branches\n" 164"\n" 165"Si vous voulez créer une nouvelle branche pour conserver les commits que " 166"vous créez,\n" 167"il vous suffit d'utiliser « checkout -b » (maintenant ou plus tard) comme " 168"ceci :\n" 169"\n" 170" git checkout -b <nom-de-la-nouvelle-branche>\n" 171"\n" 172 173#: apply.c:59 174#, c-format 175msgid "unrecognized whitespace option '%s'" 176msgstr "option d'espace non reconnue '%s'" 177 178#: apply.c:75 179#, c-format 180msgid "unrecognized whitespace ignore option '%s'" 181msgstr "option d'ignorance d'espace non reconnue '%s'" 182 183#: apply.c:125 184msgid "--reject and --3way cannot be used together." 185msgstr "--reject et --3way ne peuvent pas être utilisés ensemble." 186 187#: apply.c:127 188msgid "--cached and --3way cannot be used together." 189msgstr "--cached et --3way ne peuvent pas être utilisés ensemble." 190 191#: apply.c:130 192msgid "--3way outside a repository" 193msgstr "--3way hors d'un dépôt" 194 195#: apply.c:141 196msgid "--index outside a repository" 197msgstr "--index hors d'un dépôt" 198 199#: apply.c:144 200msgid "--cached outside a repository" 201msgstr "--cached hors d'un dépôt" 202 203#: apply.c:826 204#, c-format 205msgid "Cannot prepare timestamp regexp %s" 206msgstr "Impossible de préparer la regexp d'horodatage %s" 207 208#: apply.c:835 209#, c-format 210msgid "regexec returned %d for input: %s" 211msgstr "regexec a retourné %d pour l'entrée : %s" 212 213#: apply.c:909 214#, c-format 215msgid "unable to find filename in patch at line %d" 216msgstr "nom de fichier du patch introuvable à la ligne %d" 217 218#: apply.c:947 219#, c-format 220msgid "git apply: bad git-diff - expected /dev/null, got %s on line %d" 221msgstr "" 222"git apply : mauvais format de git-diff - /dev/null attendu, %s trouvé à la " 223"ligne %d" 224 225#: apply.c:953 226#, c-format 227msgid "git apply: bad git-diff - inconsistent new filename on line %d" 228msgstr "" 229"git apply : mauvais format de git-diff - nouveau nom de fichier inconsistant " 230"à la ligne %d" 231 232#: apply.c:954 233#, c-format 234msgid "git apply: bad git-diff - inconsistent old filename on line %d" 235msgstr "" 236"git apply : mauvais format de git-diff - ancien nom de fichier inconsistant " 237"à la ligne %d" 238 239#: apply.c:959 240#, c-format 241msgid "git apply: bad git-diff - expected /dev/null on line %d" 242msgstr "" 243"git apply : mauvais format de git-diff - /dev/null attendu à la ligne %d" 244 245#: apply.c:988 246#, c-format 247msgid "invalid mode on line %d: %s" 248msgstr "mode invalide dans la ligne %d : %s" 249 250#: apply.c:1306 251#, c-format 252msgid "inconsistent header lines %d and %d" 253msgstr "lignes d'entête inconsistantes %d et %d" 254 255#: apply.c:1478 256#, c-format 257msgid "recount: unexpected line: %.*s" 258msgstr "recomptage : ligne inattendue : %.*s" 259 260#: apply.c:1547 261#, c-format 262msgid "patch fragment without header at line %d: %.*s" 263msgstr "fragment de patch sans en-tête à la ligne %d : %.*s" 264 265#: apply.c:1567 266#, c-format 267msgid "" 268"git diff header lacks filename information when removing %d leading pathname " 269"component (line %d)" 270msgid_plural "" 271"git diff header lacks filename information when removing %d leading pathname " 272"components (line %d)" 273msgstr[0] "" 274"information de nom de fichier manquante dans l'en-tête de git diff lors de " 275"la suppression de %d composant de préfixe de chemin (ligne %d)" 276msgstr[1] "" 277"information de nom de fichier manquante dans l'en-tête de git diff lors de " 278"la suppression de %d composants de préfixe de chemin (ligne %d)" 279 280#: apply.c:1580 281#, c-format 282msgid "git diff header lacks filename information (line %d)" 283msgstr "" 284"information de nom de fichier manquante dans l'en-tête de git diff (ligne %d)" 285 286#: apply.c:1768 287msgid "new file depends on old contents" 288msgstr "le nouveau fichier dépend de contenus anciens" 289 290#: apply.c:1770 291msgid "deleted file still has contents" 292msgstr "le fichier supprimé a encore du contenu" 293 294#: apply.c:1804 295#, c-format 296msgid "corrupt patch at line %d" 297msgstr "patch corrompu à la ligne %d" 298 299#: apply.c:1841 300#, c-format 301msgid "new file %s depends on old contents" 302msgstr "le nouveau fichier %s dépend de contenus anciens" 303 304#: apply.c:1843 305#, c-format 306msgid "deleted file %s still has contents" 307msgstr "le fichier supprimé %s a encore du contenu" 308 309#: apply.c:1846 310#, c-format 311msgid "** warning: file %s becomes empty but is not deleted" 312msgstr "** attention : le fichier %s devient vide mais n'est pas supprimé" 313 314#: apply.c:1993 315#, c-format 316msgid "corrupt binary patch at line %d: %.*s" 317msgstr "patch binaire corrompu à la ligne %d : %.*s" 318 319#: apply.c:2030 320#, c-format 321msgid "unrecognized binary patch at line %d" 322msgstr "patch binaire non reconnu à la ligne %d" 323 324#: apply.c:2190 325#, c-format 326msgid "patch with only garbage at line %d" 327msgstr "patch totalement incompréhensible à la ligne %d" 328 329#: apply.c:2276 330#, c-format 331msgid "unable to read symlink %s" 332msgstr "lecture du lien symbolique %s impossible" 333 334#: apply.c:2280 335#, c-format 336msgid "unable to open or read %s" 337msgstr "ouverture ou lecture de %s impossible" 338 339#: apply.c:2939 340#, c-format 341msgid "invalid start of line: '%c'" 342msgstr "début de ligne invalide : '%c'" 343 344#: apply.c:3060 345#, c-format 346msgid "Hunk #%d succeeded at %d (offset %d line)." 347msgid_plural "Hunk #%d succeeded at %d (offset %d lines)." 348msgstr[0] "La section n°%d a réussi à la ligne %d (offset %d ligne)." 349msgstr[1] "La section n°%d a réussi à la ligne %d (offset %d lignes)." 350 351#: apply.c:3072 352#, c-format 353msgid "Context reduced to (%ld/%ld) to apply fragment at %d" 354msgstr "Contexte réduit à (%ld/%ld) pour appliquer le fragment à la ligne %d" 355 356#: apply.c:3078 357#, c-format 358msgid "" 359"while searching for:\n" 360"%.*s" 361msgstr "" 362"pendant la recherche de :\n" 363"%.*s" 364 365#: apply.c:3100 366#, c-format 367msgid "missing binary patch data for '%s'" 368msgstr "données de patch binaire manquantes pour '%s'" 369 370#: apply.c:3108 371#, c-format 372msgid "cannot reverse-apply a binary patch without the reverse hunk to '%s'" 373msgstr "" 374"impossible d'appliquer l'inverse d'un patch binaire à '%s' sans la section " 375"inverse" 376 377#: apply.c:3154 378#, c-format 379msgid "cannot apply binary patch to '%s' without full index line" 380msgstr "" 381"impossible d'appliquer un patch binaire à '%s' sans la ligne complète d'index" 382 383#: apply.c:3164 384#, c-format 385msgid "" 386"the patch applies to '%s' (%s), which does not match the current contents." 387msgstr "" 388"le patch s'applique à '%s' (%s), ce qui ne correspond pas au contenu actuel." 389 390#: apply.c:3172 391#, c-format 392msgid "the patch applies to an empty '%s' but it is not empty" 393msgstr "le patch s'applique à un '%s' vide mais ce n'est pas vide" 394 395#: apply.c:3190 396#, c-format 397msgid "the necessary postimage %s for '%s' cannot be read" 398msgstr "l'image postérieure nécessaire %s pour '%s' ne peut pas être lue" 399 400#: apply.c:3203 401#, c-format 402msgid "binary patch does not apply to '%s'" 403msgstr "le patch binaire ne s'applique par correctement à '%s'" 404 405#: apply.c:3209 406#, c-format 407msgid "binary patch to '%s' creates incorrect result (expecting %s, got %s)" 408msgstr "" 409"le patch binaire sur '%s' crée un résultat incorrect (%s attendu, mais %s " 410"trouvé)" 411 412#: apply.c:3230 413#, c-format 414msgid "patch failed: %s:%ld" 415msgstr "le patch a échoué : %s:%ld" 416 417#: apply.c:3352 418#, c-format 419msgid "cannot checkout %s" 420msgstr "extraction de %s impossible" 421 422#: apply.c:3404 apply.c:3415 apply.c:3461 setup.c:278 423#, c-format 424msgid "failed to read %s" 425msgstr "échec de la lecture de %s" 426 427#: apply.c:3412 428#, c-format 429msgid "reading from '%s' beyond a symbolic link" 430msgstr "lecture depuis '%s' au-delà d'un lien symbolique" 431 432#: apply.c:3441 apply.c:3681 433#, c-format 434msgid "path %s has been renamed/deleted" 435msgstr "le chemin %s a été renommé/supprimé" 436 437#: apply.c:3524 apply.c:3696 438#, c-format 439msgid "%s: does not exist in index" 440msgstr "%s : n'existe pas dans l'index" 441 442#: apply.c:3533 apply.c:3704 443#, c-format 444msgid "%s: does not match index" 445msgstr "%s : ne correspond pas à l'index" 446 447#: apply.c:3568 448msgid "repository lacks the necessary blob to fall back on 3-way merge." 449msgstr "" 450"le dépôt n'a pas les blobs nécessaires pour un retour à une fusion à 3 " 451"points." 452 453#: apply.c:3571 454#, c-format 455msgid "Falling back to three-way merge...\n" 456msgstr "Retour à une fusion à 3 points…\n" 457 458#: apply.c:3587 apply.c:3591 459#, c-format 460msgid "cannot read the current contents of '%s'" 461msgstr "impossible de lire le contenu actuel de '%s'" 462 463#: apply.c:3603 464#, c-format 465msgid "Failed to fall back on three-way merge...\n" 466msgstr "Echec du retour à une fusion à 3 points…\n" 467 468#: apply.c:3617 469#, c-format 470msgid "Applied patch to '%s' with conflicts.\n" 471msgstr "Patch %s appliqué avec des conflits.\n" 472 473#: apply.c:3622 474#, c-format 475msgid "Applied patch to '%s' cleanly.\n" 476msgstr "Patch %s appliqué proprement.\n" 477 478#: apply.c:3648 479msgid "removal patch leaves file contents" 480msgstr "le patch de suppression laisse un contenu dans le fichier" 481 482#: apply.c:3721 483#, c-format 484msgid "%s: wrong type" 485msgstr "%s : type erroné" 486 487#: apply.c:3723 488#, c-format 489msgid "%s has type %o, expected %o" 490msgstr "%s est de type %o, mais %o attendu" 491 492#: apply.c:3874 apply.c:3876 493#, c-format 494msgid "invalid path '%s'" 495msgstr "chemin invalide '%s'" 496 497#: apply.c:3932 498#, c-format 499msgid "%s: already exists in index" 500msgstr "%s : existe déjà dans l'index" 501 502#: apply.c:3935 503#, c-format 504msgid "%s: already exists in working directory" 505msgstr "%s : existe déjà dans la copie de travail" 506 507#: apply.c:3955 508#, c-format 509msgid "new mode (%o) of %s does not match old mode (%o)" 510msgstr "le nouveau mode (%o) de %s ne correspond pas à l'ancien mode (%o)" 511 512#: apply.c:3960 513#, c-format 514msgid "new mode (%o) of %s does not match old mode (%o) of %s" 515msgstr "" 516"le nouveau mode (%o) de %s ne correspond pas à l'ancien mode (%o) de %s" 517 518#: apply.c:3980 519#, c-format 520msgid "affected file '%s' is beyond a symbolic link" 521msgstr "le fichier affecté '%s' est au-delà d'un lien symbolique" 522 523#: apply.c:3984 524#, c-format 525msgid "%s: patch does not apply" 526msgstr "%s : le patch ne s'applique pas" 527 528#: apply.c:3999 529#, c-format 530msgid "Checking patch %s..." 531msgstr "Vérification du patch %s..." 532 533#: apply.c:4091 534#, c-format 535msgid "sha1 information is lacking or useless for submodule %s" 536msgstr "" 537"l'information sha1 est manquante ou inutilisable pour le sous-module %s" 538 539#: apply.c:4098 540#, c-format 541msgid "mode change for %s, which is not in current HEAD" 542msgstr "le mode change pour %s, qui n'est pas dans la HEAD actuelle" 543 544#: apply.c:4101 545#, c-format 546msgid "sha1 information is lacking or useless (%s)." 547msgstr "l'information de sha1 est manquante ou inutilisable (%s)." 548 549#: apply.c:4106 builtin/checkout.c:237 builtin/reset.c:140 550#, c-format 551msgid "make_cache_entry failed for path '%s'" 552msgstr "échec de make_cache_entry pour le chemin '%s'" 553 554#: apply.c:4110 555#, c-format 556msgid "could not add %s to temporary index" 557msgstr "impossible d'ajouter %s à l'index temporaire" 558 559#: apply.c:4120 560#, c-format 561msgid "could not write temporary index to %s" 562msgstr "impossible d'écrire l'index temporaire dans %s" 563 564#: apply.c:4258 565#, c-format 566msgid "unable to remove %s from index" 567msgstr "suppression de %s dans l'index impossible" 568 569#: apply.c:4292 570#, c-format 571msgid "corrupt patch for submodule %s" 572msgstr "patch corrompu pour le sous-module %s" 573 574#: apply.c:4298 575#, c-format 576msgid "unable to stat newly created file '%s'" 577msgstr "stat du fichier nouvellement créé '%s' impossible" 578 579#: apply.c:4306 580#, c-format 581msgid "unable to create backing store for newly created file %s" 582msgstr "" 583"création du magasin de stockage pour le fichier nouvellement créé %s " 584"impossible" 585 586#: apply.c:4312 apply.c:4457 587#, c-format 588msgid "unable to add cache entry for %s" 589msgstr "ajout de l'élément de cache %s impossible" 590 591#: apply.c:4355 592#, c-format 593msgid "failed to write to '%s'" 594msgstr "échec de l'écriture dans '%s'" 595 596#: apply.c:4359 597#, c-format 598msgid "closing file '%s'" 599msgstr "fermeture du fichier '%s'" 600 601#: apply.c:4429 602#, c-format 603msgid "unable to write file '%s' mode %o" 604msgstr "écriture du fichier '%s' mode %o impossible" 605 606#: apply.c:4527 607#, c-format 608msgid "Applied patch %s cleanly." 609msgstr "Patch %s appliqué proprement." 610 611#: apply.c:4535 612msgid "internal error" 613msgstr "erreur interne" 614 615#: apply.c:4538 616#, c-format 617msgid "Applying patch %%s with %d reject..." 618msgid_plural "Applying patch %%s with %d rejects..." 619msgstr[0] "Application du patch %%s avec %d rejet..." 620msgstr[1] "Application du patch %%s avec %d rejets..." 621 622#: apply.c:4549 623#, c-format 624msgid "truncating .rej filename to %.*s.rej" 625msgstr "troncature du nom de fichier .rej en %.*s.rej" 626 627#: apply.c:4557 builtin/fetch.c:780 builtin/fetch.c:1048 628#, c-format 629msgid "cannot open %s" 630msgstr "impossible d'ouvrir %s" 631 632#: apply.c:4571 633#, c-format 634msgid "Hunk #%d applied cleanly." 635msgstr "Section n°%d appliquée proprement." 636 637#: apply.c:4575 638#, c-format 639msgid "Rejected hunk #%d." 640msgstr "Section n°%d rejetée." 641 642#: apply.c:4685 643#, c-format 644msgid "Skipped patch '%s'." 645msgstr "Chemin '%s' non traité." 646 647#: apply.c:4693 648msgid "unrecognized input" 649msgstr "entrée non reconnue" 650 651#: apply.c:4712 652msgid "unable to read index file" 653msgstr "lecture du fichier d'index impossible" 654 655#: apply.c:4849 656#, c-format 657msgid "can't open patch '%s': %s" 658msgstr "ouverture impossible du patch '%s' :%s" 659 660#: apply.c:4876 661#, c-format 662msgid "squelched %d whitespace error" 663msgid_plural "squelched %d whitespace errors" 664msgstr[0] "%d erreur d'espace ignorée" 665msgstr[1] "%d erreurs d'espace ignorées" 666 667#: apply.c:4882 apply.c:4897 668#, c-format 669msgid "%d line adds whitespace errors." 670msgid_plural "%d lines add whitespace errors." 671msgstr[0] "%d ligne a ajouté des erreurs d'espace." 672msgstr[1] "%d lignes ont ajouté des erreurs d'espace." 673 674#: apply.c:4890 675#, c-format 676msgid "%d line applied after fixing whitespace errors." 677msgid_plural "%d lines applied after fixing whitespace errors." 678msgstr[0] "%d ligne ajoutée après correction des erreurs d'espace." 679msgstr[1] "%d lignes ajoutées après correction des erreurs d'espace." 680 681#: apply.c:4906 builtin/add.c:539 builtin/mv.c:300 builtin/rm.c:389 682msgid "Unable to write new index file" 683msgstr "Impossible d'écrire le nouveau fichier d'index" 684 685#: apply.c:4933 apply.c:4936 builtin/am.c:2254 builtin/am.c:2257 686#: builtin/clone.c:121 builtin/fetch.c:115 builtin/merge.c:260 687#: builtin/pull.c:198 builtin/submodule--helper.c:406 688#: builtin/submodule--helper.c:1355 builtin/submodule--helper.c:1358 689#: builtin/submodule--helper.c:1729 builtin/submodule--helper.c:1732 690#: builtin/submodule--helper.c:1952 git-add--interactive.perl:197 691msgid "path" 692msgstr "chemin" 693 694#: apply.c:4934 695msgid "don't apply changes matching the given path" 696msgstr "ne pas appliquer les modifications qui correspondent au chemin donné" 697 698#: apply.c:4937 699msgid "apply changes matching the given path" 700msgstr "appliquer les modifications qui correspondent au chemin donné" 701 702#: apply.c:4939 builtin/am.c:2263 703msgid "num" 704msgstr "num" 705 706#: apply.c:4940 707msgid "remove <num> leading slashes from traditional diff paths" 708msgstr "supprimer <num> barres obliques des chemins traditionnels de diff" 709 710#: apply.c:4943 711msgid "ignore additions made by the patch" 712msgstr "ignorer les additions réalisées par le patch" 713 714#: apply.c:4945 715msgid "instead of applying the patch, output diffstat for the input" 716msgstr "au lieu d'appliquer le patch, afficher le diffstat de l'entrée" 717 718#: apply.c:4949 719msgid "show number of added and deleted lines in decimal notation" 720msgstr "" 721"afficher le nombre de lignes ajoutées et supprimées en notation décimale" 722 723#: apply.c:4951 724msgid "instead of applying the patch, output a summary for the input" 725msgstr "au lieu d'appliquer le patch, afficher un résumé de l'entrée" 726 727#: apply.c:4953 728msgid "instead of applying the patch, see if the patch is applicable" 729msgstr "au lieu d'appliquer le patch, voir si le patch est applicable" 730 731#: apply.c:4955 732msgid "make sure the patch is applicable to the current index" 733msgstr "s'assurer que le patch est applicable sur l'index actuel" 734 735#: apply.c:4957 736msgid "mark new files with `git add --intent-to-add`" 737msgstr "marquer les nouveaux fichiers `git add --intent-to-add`" 738 739#: apply.c:4959 740msgid "apply a patch without touching the working tree" 741msgstr "appliquer les patch sans toucher à la copie de travail" 742 743#: apply.c:4961 744msgid "accept a patch that touches outside the working area" 745msgstr "accepter un patch qui touche hors de la copie de travail" 746 747#: apply.c:4964 748msgid "also apply the patch (use with --stat/--summary/--check)" 749msgstr "appliquer aussi le patch (à utiliser avec ---stat/--summary/--check)" 750 751#: apply.c:4966 752msgid "attempt three-way merge if a patch does not apply" 753msgstr "tenter une fusion à 3 points si le patch ne s'applique pas proprement" 754 755#: apply.c:4968 756msgid "build a temporary index based on embedded index information" 757msgstr "" 758"construire un index temporaire fondé sur l'information de l'index embarqué" 759 760#: apply.c:4971 builtin/checkout-index.c:168 builtin/ls-files.c:516 761msgid "paths are separated with NUL character" 762msgstr "les chemins sont séparés par un caractère NUL" 763 764#: apply.c:4973 765msgid "ensure at least <n> lines of context match" 766msgstr "s'assurer d'au moins <n> lignes de correspondance de contexte" 767 768#: apply.c:4974 builtin/am.c:2242 builtin/interpret-trailers.c:95 769#: builtin/interpret-trailers.c:97 builtin/interpret-trailers.c:99 770#: builtin/pack-objects.c:3202 771msgid "action" 772msgstr "action" 773 774#: apply.c:4975 775msgid "detect new or modified lines that have whitespace errors" 776msgstr "" 777"détecter des lignes nouvelles ou modifiées qui contiennent des erreurs " 778"d'espace" 779 780#: apply.c:4978 apply.c:4981 781msgid "ignore changes in whitespace when finding context" 782msgstr "ignorer des modifications d'espace lors de la recherche de contexte" 783 784#: apply.c:4984 785msgid "apply the patch in reverse" 786msgstr "appliquer le patch en sens inverse" 787 788#: apply.c:4986 789msgid "don't expect at least one line of context" 790msgstr "ne pas s'attendre à au moins une ligne de contexte" 791 792#: apply.c:4988 793msgid "leave the rejected hunks in corresponding *.rej files" 794msgstr "laisser les sections rejetées dans les fichiers *.rej correspondants" 795 796#: apply.c:4990 797msgid "allow overlapping hunks" 798msgstr "accepter les recouvrements de sections" 799 800#: apply.c:4991 builtin/add.c:290 builtin/check-ignore.c:21 801#: builtin/commit.c:1301 builtin/count-objects.c:98 builtin/fsck.c:671 802#: builtin/log.c:1914 builtin/mv.c:122 builtin/read-tree.c:124 803msgid "be verbose" 804msgstr "mode verbeux" 805 806#: apply.c:4993 807msgid "tolerate incorrectly detected missing new-line at the end of file" 808msgstr "" 809"tolérer des erreurs de détection de retours chariot manquants en fin de " 810"fichier" 811 812#: apply.c:4996 813msgid "do not trust the line counts in the hunk headers" 814msgstr "ne pas se fier au compte de lignes dans les en-têtes de section" 815 816#: apply.c:4998 builtin/am.c:2251 817msgid "root" 818msgstr "racine" 819 820#: apply.c:4999 821msgid "prepend <root> to all filenames" 822msgstr "préfixer tous les noms de fichier avec <root>" 823 824#: archive.c:14 825msgid "git archive [<options>] <tree-ish> [<path>...]" 826msgstr "git archive [<options>] <arbre ou apparenté> [<chemin>...]" 827 828#: archive.c:15 829msgid "git archive --list" 830msgstr "git archive --list" 831 832#: archive.c:16 833msgid "" 834"git archive --remote <repo> [--exec <cmd>] [<options>] <tree-ish> [<path>...]" 835msgstr "" 836"git archive --remote <dépôt> [--exec <commande>] [<options>] <arbre ou " 837"apparenté> [<chemin>...]" 838 839#: archive.c:17 840msgid "git archive --remote <repo> [--exec <cmd>] --list" 841msgstr "git archive --remote <dépôt> [--exec <commande>] --list" 842 843#: archive.c:363 builtin/add.c:176 builtin/add.c:515 builtin/rm.c:298 844#, c-format 845msgid "pathspec '%s' did not match any files" 846msgstr "le chemin '%s' ne correspond à aucun fichier" 847 848#: archive.c:446 849msgid "fmt" 850msgstr "fmt" 851 852#: archive.c:446 853msgid "archive format" 854msgstr "format d'archive" 855 856#: archive.c:447 builtin/log.c:1473 857msgid "prefix" 858msgstr "préfixe" 859 860#: archive.c:448 861msgid "prepend prefix to each pathname in the archive" 862msgstr "préfixer chaque chemin de fichier dans l'archive" 863 864#: archive.c:449 builtin/blame.c:816 builtin/blame.c:817 builtin/config.c:126 865#: builtin/fast-export.c:1013 builtin/fast-export.c:1015 builtin/grep.c:873 866#: builtin/hash-object.c:104 builtin/ls-files.c:552 builtin/ls-files.c:555 867#: builtin/notes.c:407 builtin/notes.c:570 builtin/read-tree.c:119 868#: parse-options.h:165 869msgid "file" 870msgstr "fichier" 871 872#: archive.c:450 builtin/archive.c:89 873msgid "write the archive to this file" 874msgstr "écrire l'archive dans ce fichier" 875 876#: archive.c:452 877msgid "read .gitattributes in working directory" 878msgstr "lire .gitattributes dans le répertoire de travail" 879 880#: archive.c:453 881msgid "report archived files on stderr" 882msgstr "afficher les fichiers archivés sur stderr" 883 884#: archive.c:454 885msgid "store only" 886msgstr "stockage seulement" 887 888#: archive.c:455 889msgid "compress faster" 890msgstr "compression rapide" 891 892#: archive.c:463 893msgid "compress better" 894msgstr "compression efficace" 895 896#: archive.c:466 897msgid "list supported archive formats" 898msgstr "afficher les formats d'archive supportés" 899 900#: archive.c:468 builtin/archive.c:90 builtin/clone.c:111 builtin/clone.c:114 901#: builtin/submodule--helper.c:1367 builtin/submodule--helper.c:1738 902msgid "repo" 903msgstr "dépôt" 904 905#: archive.c:469 builtin/archive.c:91 906msgid "retrieve the archive from remote repository <repo>" 907msgstr "récupérer l'archive depuis le dépôt distant <dépôt>" 908 909#: archive.c:470 builtin/archive.c:92 builtin/difftool.c:714 910#: builtin/notes.c:491 911msgid "command" 912msgstr "commande" 913 914#: archive.c:471 builtin/archive.c:93 915msgid "path to the remote git-upload-archive command" 916msgstr "chemin vers la commande distante git-upload-archive" 917 918#: archive.c:478 919msgid "Unexpected option --remote" 920msgstr "Option --remote inattendue" 921 922#: archive.c:480 923msgid "Option --exec can only be used together with --remote" 924msgstr "L'option --exec ne peut être utilisée qu'en complément de --remote" 925 926#: archive.c:482 927msgid "Unexpected option --output" 928msgstr "Option --output inattendue" 929 930#: archive.c:504 931#, c-format 932msgid "Unknown archive format '%s'" 933msgstr "Format d'archive inconnu '%s'" 934 935#: archive.c:511 936#, c-format 937msgid "Argument not supported for format '%s': -%d" 938msgstr "Argument non supporté pour le format '%s' : -%d" 939 940#: archive-tar.c:125 archive-zip.c:344 941#, c-format 942msgid "cannot stream blob %s" 943msgstr "impossible de transmettre le blob %s en flux" 944 945#: archive-tar.c:260 archive-zip.c:361 946#, c-format 947msgid "unsupported file mode: 0%o (SHA1: %s)" 948msgstr "mode de fichier non supporté :0%o (SHA1: %s)" 949 950#: archive-tar.c:287 archive-zip.c:352 951#, c-format 952msgid "cannot read %s" 953msgstr "impossible de lire %s" 954 955#: archive-tar.c:458 956#, c-format 957msgid "unable to start '%s' filter" 958msgstr "impossible de démarrer le filtre '%s'" 959 960#: archive-tar.c:461 961msgid "unable to redirect descriptor" 962msgstr "impossible de rediriger un descripteur" 963 964#: archive-tar.c:468 965#, c-format 966msgid "'%s' filter reported error" 967msgstr "le filtre '%s' a retourné une erreur" 968 969#: archive-zip.c:313 970#, c-format 971msgid "path is not valid UTF-8: %s" 972msgstr "le chemin n'est pas codé en UTF-8 valide : %s" 973 974#: archive-zip.c:317 975#, c-format 976msgid "path too long (%d chars, SHA1: %s): %s" 977msgstr "le chemin est trop long (%d caractères, SHA1 : %s) : %s" 978 979#: archive-zip.c:470 builtin/pack-objects.c:216 builtin/pack-objects.c:219 980#, c-format 981msgid "deflate error (%d)" 982msgstr "erreur de compression (%d)" 983 984#: archive-zip.c:605 985#, c-format 986msgid "timestamp too large for this system: %<PRIuMAX>" 987msgstr "l'horodatage est trop grand pour ce système : %<PRIuMAX>" 988 989#: attr.c:218 990#, c-format 991msgid "%.*s is not a valid attribute name" 992msgstr "%.*s n'est pas un nom valide d'attribut" 993 994#: attr.c:415 995msgid "" 996"Negative patterns are ignored in git attributes\n" 997"Use '\\!' for literal leading exclamation." 998msgstr "" 999"Les motifs de négation sont ignorés dans les attributs git\n"1000"Utilisez '\\!' pour un point d'exclamation littéral."10011002#: bisect.c:4671003#, c-format1004msgid "Badly quoted content in file '%s': %s"1005msgstr "Contenu mal cité dans le fichier '%s' : %s"10061007#: bisect.c:6751008#, c-format1009msgid "We cannot bisect more!\n"1010msgstr "Impossible de pousser la bissection plus loin !\n"10111012#: bisect.c:7291013#, c-format1014msgid "Not a valid commit name %s"1015msgstr "%s n'est pas un nom de commit valide"10161017#: bisect.c:7531018#, c-format1019msgid ""1020"The merge base %s is bad.\n"1021"This means the bug has been fixed between %s and [%s].\n"1022msgstr ""1023"La base de fusion %s est mauvaise.\n"1024"Cela signifie que le bogue été corrigé entre %s et [%s].\n"10251026#: bisect.c:7581027#, c-format1028msgid ""1029"The merge base %s is new.\n"1030"The property has changed between %s and [%s].\n"1031msgstr ""1032"La base de fusion %s est nouvelle.\n"1033"La propriété a changé entre %s et [%s].\n"10341035#: bisect.c:7631036#, c-format1037msgid ""1038"The merge base %s is %s.\n"1039"This means the first '%s' commit is between %s and [%s].\n"1040msgstr ""1041"La base de fusion %s est %s.\n"1042"Ceci signifie que le premier commit '%s' est entre %s et [%s].\n"10431044#: bisect.c:7711045#, c-format1046msgid ""1047"Some %s revs are not ancestors of the %s rev.\n"1048"git bisect cannot work properly in this case.\n"1049"Maybe you mistook %s and %s revs?\n"1050msgstr ""1051"Certaines révision %s ne sont pas ancêtres de la révision %s.\n"1052"git bisect ne peut pas fonctionner correctement dans ce cas.\n"1053"Peut-être les révisions %s et %s ne sont-elles pas les bonnes ?\n"10541055#: bisect.c:7841056#, c-format1057msgid ""1058"the merge base between %s and [%s] must be skipped.\n"1059"So we cannot be sure the first %s commit is between %s and %s.\n"1060"We continue anyway."1061msgstr ""1062"La base de fusion entre %s et [%s] doit être évitée.\n"1063"On ne peut donc pas être certain que le premier commit %s se trouve entre %s "1064"et %s.\n"1065"On continue tout de même."10661067#: bisect.c:8171068#, c-format1069msgid "Bisecting: a merge base must be tested\n"1070msgstr "Bissection : une base de fusion doit être testée\n"10711072#: bisect.c:8571073#, c-format1074msgid "a %s revision is needed"1075msgstr "une révision %s est nécessaire"10761077#: bisect.c:876 builtin/notes.c:177 builtin/tag.c:2371078#, c-format1079msgid "could not create file '%s'"1080msgstr "impossible de créer le fichier '%s'"10811082#: bisect.c:927 builtin/merge.c:1371083#, c-format1084msgid "could not read file '%s'"1085msgstr "impossible de lire le fichier '%s'"10861087#: bisect.c:9571088msgid "reading bisect refs failed"1089msgstr "impossible de lire les références de bissection"10901091#: bisect.c:9761092#, c-format1093msgid "%s was both %s and %s\n"1094msgstr "%s était à la fois %s et %s\n"10951096#: bisect.c:9841097#, c-format1098msgid ""1099"No testable commit found.\n"1100"Maybe you started with bad path parameters?\n"1101msgstr ""1102"Aucun commit testable n'a été trouvé\n"1103"Peut-être avez-vous démarré avec un mauvais paramètre de chemin ?\n"11041105#: bisect.c:10031106#, c-format1107msgid "(roughly %d step)"1108msgid_plural "(roughly %d steps)"1109msgstr[0] "(à peu près %d étape)"1110msgstr[1] "(à peu près %d étapes)"11111112#. TRANSLATORS: the last %s will be replaced with "(roughly %d1113#. steps)" translation.1114#.1115#: bisect.c:10091116#, c-format1117msgid "Bisecting: %d revision left to test after this %s\n"1118msgid_plural "Bisecting: %d revisions left to test after this %s\n"1119msgstr[0] "Bissection : %d révision à tester après ceci %s\n"1120msgstr[1] "Bissection : %d révisions à tester après ceci %s\n"11211122#: blame.c:17841123msgid "--contents and --reverse do not blend well."1124msgstr "--contents et --reverse ne font pas bon ménage."11251126#: blame.c:17981127msgid "cannot use --contents with final commit object name"1128msgstr "on ne peut pas utiliser --contents avec un nom d'objet commit final"11291130#: blame.c:18191131msgid "--reverse and --first-parent together require specified latest commit"1132msgstr ""1133"--reverse et --first-parent ensemble nécessitent la spécification d'un "1134"dernier commit"11351136#: blame.c:1828 bundle.c:162 ref-filter.c:2154 sequencer.c:18741137#: sequencer.c:3772 builtin/commit.c:994 builtin/log.c:372 builtin/log.c:9261138#: builtin/log.c:1381 builtin/log.c:1713 builtin/log.c:1963 builtin/merge.c:4041139#: builtin/pack-objects.c:3029 builtin/pack-objects.c:30441140#: builtin/shortlog.c:1921141msgid "revision walk setup failed"1142msgstr "échec de la préparation du parcours des révisions"11431144#: blame.c:18461145msgid ""1146"--reverse --first-parent together require range along first-parent chain"1147msgstr ""1148"--reverse --first-parent ensemble nécessitent une portée avec la chaîne de "1149"premier parent"11501151#: blame.c:18571152#, c-format1153msgid "no such path %s in %s"1154msgstr "pas de chemin %s dans %s"11551156#: blame.c:18681157#, c-format1158msgid "cannot read blob %s for path %s"1159msgstr "impossible de lire le blob %s pour le chemin %s"11601161#: branch.c:521162#, c-format1163msgid ""1164"\n"1165"After fixing the error cause you may try to fix up\n"1166"the remote tracking information by invoking\n"1167"\"git branch --set-upstream-to=%s%s%s\"."1168msgstr ""1169"\n"1170"Après correction de la cause de l'erreur, vous pouvez essayer de corriger\n"1171"l'information de suivi distant en invoquant\n"1172"\"git branch --setup-upstream-to=%s%s%s\"."11731174#: branch.c:661175#, c-format1176msgid "Not setting branch %s as its own upstream."1177msgstr "La branche %s ne peut pas être sa propre branche amont."11781179#: branch.c:921180#, c-format1181msgid "Branch '%s' set up to track remote branch '%s' from '%s' by rebasing."1182msgstr ""1183"La branche '%s' est paramétrée pour suivre la branche distante '%s' de '%s' "1184"en rebasant."11851186#: branch.c:931187#, c-format1188msgid "Branch '%s' set up to track remote branch '%s' from '%s'."1189msgstr ""1190"La branche '%s' est paramétrée pour suivre la branche distante '%s' depuis "1191"'%s'."11921193#: branch.c:971194#, c-format1195msgid "Branch '%s' set up to track local branch '%s' by rebasing."1196msgstr ""1197"La branche '%s' est paramétrée pour suivre la branche locale '%'s en "1198"rebasant."11991200#: branch.c:981201#, c-format1202msgid "Branch '%s' set up to track local branch '%s'."1203msgstr "La branche '%s' est paramétrée pour suivre la branche locale '%s'."12041205#: branch.c:1031206#, c-format1207msgid "Branch '%s' set up to track remote ref '%s' by rebasing."1208msgstr ""1209"La branche '%s' est paramétrée pour suivre la référence distante '%s' en "1210"rebasant."12111212#: branch.c:1041213#, c-format1214msgid "Branch '%s' set up to track remote ref '%s'."1215msgstr "La branche '%s' est paramétrée pour suivre la référence distante '%s'."12161217#: branch.c:1081218#, c-format1219msgid "Branch '%s' set up to track local ref '%s' by rebasing."1220msgstr ""1221"La branche '%s' est paramétrée pour suivre la référence locale '%s' en "1222"rebasant."12231224#: branch.c:1091225#, c-format1226msgid "Branch '%s' set up to track local ref '%s'."1227msgstr "La branche '%s' est paramétrée pour suivre la référence locale '%s'."12281229#: branch.c:1181230msgid "Unable to write upstream branch configuration"1231msgstr "Échec de l'écriture de la configuration de branche amont"12321233#: branch.c:1551234#, c-format1235msgid "Not tracking: ambiguous information for ref %s"1236msgstr "Pas de suivi : information ambiguë pour la référence %s"12371238#: branch.c:1881239#, c-format1240msgid "'%s' is not a valid branch name."1241msgstr "'%s' n'est pas un nom de branche valide."12421243#: branch.c:2071244#, c-format1245msgid "A branch named '%s' already exists."1246msgstr "Une branche nommée '%s' existe déjà."12471248#: branch.c:2121249msgid "Cannot force update the current branch."1250msgstr "Impossible de forcer la mise à jour de la branche courante."12511252#: branch.c:2321253#, c-format1254msgid "Cannot setup tracking information; starting point '%s' is not a branch."1255msgstr ""1256"Impossible de paramétrer le suivi de branche ; le point de départ '%s' n'est "1257"pas une branche."12581259#: branch.c:2341260#, c-format1261msgid "the requested upstream branch '%s' does not exist"1262msgstr "la branche amont demandée '%s' n'existe pas"12631264#: branch.c:2361265msgid ""1266"\n"1267"If you are planning on basing your work on an upstream\n"1268"branch that already exists at the remote, you may need to\n"1269"run \"git fetch\" to retrieve it.\n"1270"\n"1271"If you are planning to push out a new local branch that\n"1272"will track its remote counterpart, you may want to use\n"1273"\"git push -u\" to set the upstream config as you push."1274msgstr ""1275"\n"1276"Si vous comptez baser votre travail sur une branche\n"1277"amont qui existe déjà sur le serveur distant, vous pouvez\n"1278"lancer \"git fetch\" pour la récupérer.\n"1279"\n"1280"Si vous comptez pousser une nouvelle branche locale qui suivra\n"1281"sa jumelle distante, vous pouvez utiliser \"git push -u\"\n"1282"pour paramétrer le suivi distant en même temps que vous poussez."12831284#: branch.c:2791285#, c-format1286msgid "Not a valid object name: '%s'."1287msgstr "Nom d'objet invalide : '%s'."12881289#: branch.c:2991290#, c-format1291msgid "Ambiguous object name: '%s'."1292msgstr "Nom d'objet ambigu : '%s'."12931294#: branch.c:3041295#, c-format1296msgid "Not a valid branch point: '%s'."1297msgstr "Point d'embranchement invalide : '%s'."12981299#: branch.c:3581300#, c-format1301msgid "'%s' is already checked out at '%s'"1302msgstr "'%s' est déjà extrait dans '%s'"13031304#: branch.c:3811305#, c-format1306msgid "HEAD of working tree %s is not updated"1307msgstr "la HEAD de la copie de travail %s n'est pas mise à jour"13081309#: bundle.c:361310#, c-format1311msgid "'%s' does not look like a v2 bundle file"1312msgstr "'%s' ne semble pas être un fichier bundle v2"13131314#: bundle.c:641315#, c-format1316msgid "unrecognized header: %s%s (%d)"1317msgstr "en-tête non reconnu : %s%s (%d)"13181319#: bundle.c:90 sequencer.c:2092 sequencer.c:2578 builtin/commit.c:7681320#, c-format1321msgid "could not open '%s'"1322msgstr "impossible d'ouvrir '%s'"13231324#: bundle.c:1411325msgid "Repository lacks these prerequisite commits:"1326msgstr "Le dépôt ne dispose pas des commits prérequis suivants :"13271328#: bundle.c:1921329#, c-format1330msgid "The bundle contains this ref:"1331msgid_plural "The bundle contains these %d refs:"1332msgstr[0] "Le colis contient cette référence :"1333msgstr[1] "Le colis contient ces %d références :"13341335#: bundle.c:1991336msgid "The bundle records a complete history."1337msgstr "Le colis enregistre l'historique complet."13381339#: bundle.c:2011340#, c-format1341msgid "The bundle requires this ref:"1342msgid_plural "The bundle requires these %d refs:"1343msgstr[0] "Le colis exige cette référence :"1344msgstr[1] "Le colis exige ces %d références :"13451346#: bundle.c:2601347msgid "Could not spawn pack-objects"1348msgstr "Impossible de créer des objets groupés"13491350#: bundle.c:2711351msgid "pack-objects died"1352msgstr "les objets groupés ont disparu"13531354#: bundle.c:3131355msgid "rev-list died"1356msgstr "rev-list a disparu"13571358#: bundle.c:3621359#, c-format1360msgid "ref '%s' is excluded by the rev-list options"1361msgstr "la référence '%s' est exclue par les options de rev-list"13621363#: bundle.c:453 builtin/log.c:187 builtin/log.c:1618 builtin/shortlog.c:3041364#, c-format1365msgid "unrecognized argument: %s"1366msgstr "argument non reconnu : %s"13671368#: bundle.c:4611369msgid "Refusing to create empty bundle."1370msgstr "Refus de créer un colis vide."13711372#: bundle.c:4731373#, c-format1374msgid "cannot create '%s'"1375msgstr "impossible de créer '%s'"13761377#: bundle.c:5011378msgid "index-pack died"1379msgstr "l'index de groupe a disparu"13801381#: color.c:2961382#, c-format1383msgid "invalid color value: %.*s"1384msgstr "Valeur invalide de couleur : %.*s"13851386#: commit.c:48 sequencer.c:2384 builtin/am.c:422 builtin/am.c:4661387#: builtin/am.c:1438 builtin/am.c:2072 builtin/replace.c:3761388#: builtin/replace.c:4481389#, c-format1390msgid "could not parse %s"1391msgstr "impossible d'analyser %s"13921393#: commit.c:501394#, c-format1395msgid "%s %s is not a commit!"1396msgstr "%s %s n'est pas un commit !"13971398#: commit.c:1911399msgid ""1400"Support for <GIT_DIR>/info/grafts is deprecated\n"1401"and will be removed in a future Git version.\n"1402"\n"1403"Please use \"git replace --convert-graft-file\"\n"1404"to convert the grafts into replace refs.\n"1405"\n"1406"Turn this message off by running\n"1407"\"git config advice.graftFileDeprecated false\""1408msgstr ""1409"Le support de <GIT_DIR>/info/grafts est déconseillé\n"1410"et sera supprimé dans une version future de Git.\n"1411"\n"1412"Veuillez utiliser \"git replace --convert-graft-file\"\n"1413"pour convertir les grafts en référence de remplacement.\n"1414"\n"1415"Supprimez ce message en lançant\n"1416"\"git config advice.graftFileDeprecated false\""14171418#: commit.c:16291419msgid ""1420"Warning: commit message did not conform to UTF-8.\n"1421"You may want to amend it after fixing the message, or set the config\n"1422"variable i18n.commitencoding to the encoding your project uses.\n"1423msgstr ""1424"Avertissement : le message de validation ne se conforme pas à UTF-8.\n"1425"Vous souhaitez peut-être le modifier après correction du message ou régler "1426"la\n"1427"variable de configuration i18n.commitencoding à l'encodage utilisé par votre "1428"projet.\n"14291430#: commit-graph.c:831431#, c-format1432msgid "graph file %s is too small"1433msgstr "le fichier de graphe %s est trop petit"14341435#: commit-graph.c:901436#, c-format1437msgid "graph signature %X does not match signature %X"1438msgstr "la signature de graphe %X ne correspond pas à la signature %X"14391440#: commit-graph.c:971441#, c-format1442msgid "graph version %X does not match version %X"1443msgstr "la version %X du graphe ne correspond pas à la version %X"14441445#: commit-graph.c:1041446#, c-format1447msgid "hash version %X does not match version %X"1448msgstr "la version %X du condensé ne correspond pas à la version %X"14491450#: commit-graph.c:1281451#, c-format1452msgid "improper chunk offset %08x%08x"1453msgstr "décalage de bloc %08x%08x inadéquat"14541455#: commit-graph.c:1641456#, c-format1457msgid "chunk id %08x appears multiple times"1458msgstr "l'id de bloc %08x apparaît des multiples fois"14591460#: commit-graph.c:2611461#, c-format1462msgid "could not find commit %s"1463msgstr "impossible de trouver le commit %s"14641465#: commit-graph.c:565 builtin/pack-objects.c:25681466#, c-format1467msgid "unable to get type of object %s"1468msgstr "impossible d'obtenir le type de l'objet %s"14691470#: commit-graph.c:7301471#, c-format1472msgid "error adding pack %s"1473msgstr "erreur à l'ajout du packet %s"14741475#: commit-graph.c:7321476#, c-format1477msgid "error opening index for %s"1478msgstr "erreur à l'ouverture de l'index pour %s"14791480#: commit-graph.c:7731481#, c-format1482msgid "the commit graph format cannot write %d commits"1483msgstr "le graphe de commits ne peut pas écrire %d commits"14841485#: commit-graph.c:8001486msgid "too many commits to write graph"1487msgstr "trop de commits pour écrire un graphe"14881489#: commit-graph.c:8061490#, c-format1491msgid "unable to create leading directories of %s"1492msgstr "impossible de créer les répertoires de premier niveau de %s"14931494#: commit-graph.c:9041495msgid "the commit-graph file has incorrect checksum and is likely corrupt"1496msgstr ""1497"le graphe de commit a une somme de contrôle incorrecte et est "1498"vraisemblablement corrompu"14991500#: compat/obstack.c:405 compat/obstack.c:4071501msgid "memory exhausted"1502msgstr "plus de mémoire"15031504#: config.c:1231505#, c-format1506msgid ""1507"exceeded maximum include depth (%d) while including\n"1508"\t%s\n"1509"from\n"1510"\t%s\n"1511"This might be due to circular includes."1512msgstr ""1513"profondeur d'inclusion maximum (%d) dépassée à l'inclusion de\n"1514"\t%s\n"1515"depuis\n"1516"\t%s\n"1517"possibilité d'inclusions multiples."15181519#: config.c:1391520#, c-format1521msgid "could not expand include path '%s'"1522msgstr "expansion impossible du chemin d'inclusion '%s'"15231524#: config.c:1501525msgid "relative config includes must come from files"1526msgstr "les inclusions de configuration relatives doivent venir de fichiers"15271528#: config.c:1901529msgid "relative config include conditionals must come from files"1530msgstr ""1531"les conditions d'inclusion de configuration relative doivent venir de "1532"fichiers"15331534#: config.c:3481535#, c-format1536msgid "key does not contain a section: %s"1537msgstr "la clé ne contient pas de section: %s"15381539#: config.c:3541540#, c-format1541msgid "key does not contain variable name: %s"1542msgstr "la clé ne contient pas de nom de variable : %s"15431544#: config.c:378 sequencer.c:22061545#, c-format1546msgid "invalid key: %s"1547msgstr "clé invalide : %s"15481549#: config.c:3841550#, c-format1551msgid "invalid key (newline): %s"1552msgstr "clé invalide (retour chariot) : %s"15531554#: config.c:420 config.c:4321555#, c-format1556msgid "bogus config parameter: %s"1557msgstr "paramètre de configuration mal formé: %s"15581559#: config.c:4671560#, c-format1561msgid "bogus format in %s"1562msgstr "formatage mal formé dans %s"15631564#: config.c:7931565#, c-format1566msgid "bad config line %d in blob %s"1567msgstr "ligne %d de config incorrecte dans le blob %s"15681569#: config.c:7971570#, c-format1571msgid "bad config line %d in file %s"1572msgstr "ligne %d de config incorrecte dans le fichier %s"15731574#: config.c:8011575#, c-format1576msgid "bad config line %d in standard input"1577msgstr "ligne %d de config incorrecte dans l'entrée standard"15781579#: config.c:8051580#, c-format1581msgid "bad config line %d in submodule-blob %s"1582msgstr "ligne %d de config incorrecte dans le blob de sous-module %s"15831584#: config.c:8091585#, c-format1586msgid "bad config line %d in command line %s"1587msgstr "ligne %d de config incorrecte dans la ligne de commande %s"15881589#: config.c:8131590#, c-format1591msgid "bad config line %d in %s"1592msgstr "ligne %d de config incorrecte dans %s"15931594#: config.c:9521595msgid "out of range"1596msgstr "hors plage"15971598#: config.c:9521599msgid "invalid unit"1600msgstr "unité invalide"16011602#: config.c:9581603#, c-format1604msgid "bad numeric config value '%s' for '%s': %s"1605msgstr "valeur numérique de configuration invalide '%s' pour '%s' : %s"16061607#: config.c:9631608#, c-format1609msgid "bad numeric config value '%s' for '%s' in blob %s: %s"1610msgstr ""1611"valeur numérique de configuration incorrecte '%s' pour '%s' dans le blob "1612"%s : %s"16131614#: config.c:9661615#, c-format1616msgid "bad numeric config value '%s' for '%s' in file %s: %s"1617msgstr ""1618"valeur numérique de configuration incorrecte '%s' pour '%s' dans le fichier "1619"%s : %s"16201621#: config.c:9691622#, c-format1623msgid "bad numeric config value '%s' for '%s' in standard input: %s"1624msgstr ""1625"valeur numérique de configuration incorrecte '%s' pour '%s' dans l'entrée "1626"standard : %s"16271628#: config.c:9721629#, c-format1630msgid "bad numeric config value '%s' for '%s' in submodule-blob %s: %s"1631msgstr ""1632"valeur numérique de configuration incorrecte '%s' pour '%s' dans le blob de "1633"sous-module %s : %s"16341635#: config.c:9751636#, c-format1637msgid "bad numeric config value '%s' for '%s' in command line %s: %s"1638msgstr ""1639"valeur numérique de configuration incorrecte '%s' pour '%s' dans la ligne de "1640"commande %s : %s"16411642#: config.c:9781643#, c-format1644msgid "bad numeric config value '%s' for '%s' in %s: %s"1645msgstr ""1646"valeur numérique de configuration incorrecte '%s' pour '%s' dans %s : %s"16471648#: config.c:10731649#, c-format1650msgid "failed to expand user dir in: '%s'"1651msgstr "impossible d'étendre le répertoire utilisateur dans : '%s'"16521653#: config.c:10821654#, c-format1655msgid "'%s' for '%s' is not a valid timestamp"1656msgstr "'%s' pour '%s' n'est pas un horodatage valide"16571658#: config.c:11731659#, c-format1660msgid "abbrev length out of range: %d"1661msgstr "longueur d'abbrev hors plage : %d"16621663#: config.c:1187 config.c:11981664#, c-format1665msgid "bad zlib compression level %d"1666msgstr "niveau de compression zlib incorrect %d"16671668#: config.c:12901669msgid "core.commentChar should only be one character"1670msgstr "core.commentChar ne devrait être qu'un unique caractère"16711672#: config.c:13231673#, c-format1674msgid "invalid mode for object creation: %s"1675msgstr "mode invalide pour la création d'objet : %s"16761677#: config.c:14031678#, c-format1679msgid "malformed value for %s"1680msgstr "valeur mal formée pour %s"16811682#: config.c:14291683#, c-format1684msgid "malformed value for %s: %s"1685msgstr "valeur mal formée pour %s : %s"16861687#: config.c:14301688msgid "must be one of nothing, matching, simple, upstream or current"1689msgstr "doit être parmi nothing, matching, simple, upstream ou current"16901691#: config.c:1489 builtin/pack-objects.c:32791692#, c-format1693msgid "bad pack compression level %d"1694msgstr "niveau de compression du paquet %d"16951696#: config.c:16101697#, c-format1698msgid "unable to load config blob object '%s'"1699msgstr "impossible de charger l'objet blob de config '%s'"17001701#: config.c:16131702#, c-format1703msgid "reference '%s' does not point to a blob"1704msgstr "la référence '%s' ne pointe pas sur un blob"17051706#: config.c:16301707#, c-format1708msgid "unable to resolve config blob '%s'"1709msgstr "impossible de résoudre le blob de config '%s'"17101711#: config.c:16601712#, c-format1713msgid "failed to parse %s"1714msgstr "échec de l'analyse de %s"17151716#: config.c:17001717msgid "unable to parse command-line config"1718msgstr "lecture de la configuration de ligne de commande impossible"17191720#: config.c:20321721msgid "unknown error occurred while reading the configuration files"1722msgstr "erreur inconnue pendant la lecture des fichiers de configuration"17231724#: config.c:22021725#, c-format1726msgid "Invalid %s: '%s'"1727msgstr "%s invalide : '%s'"17281729#: config.c:22451730#, c-format1731msgid "unknown core.untrackedCache value '%s'; using 'keep' default value"1732msgstr ""1733"valeur '%s' de core.untrackedCache inconnue ; utilisation de 'keep' par "1734"défaut"17351736#: config.c:22711737#, c-format1738msgid "splitIndex.maxPercentChange value '%d' should be between 0 and 100"1739msgstr ""1740"la valeur '%d' de splitIndex.maxPercentChange devrait se situer entre 0 et "1741"100"17421743#: config.c:22961744#, c-format1745msgid "unable to parse '%s' from command-line config"1746msgstr ""1747"impossible d'analyser '%s' depuis le configuration en ligne de commande"17481749#: config.c:22981750#, c-format1751msgid "bad config variable '%s' in file '%s' at line %d"1752msgstr ""1753"variable de configuration '%s' incorrecte dans le fichier '%s' à la ligne %d"17541755#: config.c:23791756#, c-format1757msgid "invalid section name '%s'"1758msgstr "nom de section invalide '%s'"17591760#: config.c:24111761#, c-format1762msgid "%s has multiple values"1763msgstr "%s a des valeurs multiples"17641765#: config.c:24401766#, c-format1767msgid "failed to write new configuration file %s"1768msgstr "impossible d'écrire le fichier de configuration %s"17691770#: config.c:2691 config.c:30151771#, c-format1772msgid "could not lock config file %s"1773msgstr "impossible de verrouiller le fichier de configuration %s"17741775#: config.c:27021776#, c-format1777msgid "opening %s"1778msgstr "ouverture de %s"17791780#: config.c:2737 builtin/config.c:3241781#, c-format1782msgid "invalid pattern: %s"1783msgstr "motif invalide : %s"17841785#: config.c:27621786#, c-format1787msgid "invalid config file %s"1788msgstr "fichier de configuration invalide %s"17891790#: config.c:2775 config.c:30281791#, c-format1792msgid "fstat on %s failed"1793msgstr "échec de fstat sur %s"17941795#: config.c:27861796#, c-format1797msgid "unable to mmap '%s'"1798msgstr "impossible d réaliser un map de '%s'"17991800#: config.c:2795 config.c:30331801#, c-format1802msgid "chmod on %s failed"1803msgstr "échec de chmod sur %s"18041805#: config.c:2880 config.c:31301806#, c-format1807msgid "could not write config file %s"1808msgstr "impossible d'écrire le fichier de configuration %s"18091810#: config.c:29141811#, c-format1812msgid "could not set '%s' to '%s'"1813msgstr "impossible de régler '%s' à '%s'"18141815#: config.c:2916 builtin/remote.c:7811816#, c-format1817msgid "could not unset '%s'"1818msgstr "impossible de désinitialiser '%s'"18191820#: config.c:30061821#, c-format1822msgid "invalid section name: %s"1823msgstr "nom de section invalide : %s"18241825#: config.c:31731826#, c-format1827msgid "missing value for '%s'"1828msgstr "valeur manquante pour '%s'"18291830#: connect.c:611831msgid "the remote end hung up upon initial contact"1832msgstr "l'hôte distant a fermé la connexion lors du contact initial"18331834#: connect.c:631835msgid ""1836"Could not read from remote repository.\n"1837"\n"1838"Please make sure you have the correct access rights\n"1839"and the repository exists."1840msgstr ""1841"Impossible de lire le dépôt distant.\n"1842"\n"1843"Veuillez vérifier que vous avez les droits d'accès\n"1844"et que le dépôt existe."18451846#: connect.c:811847#, c-format1848msgid "server doesn't support '%s'"1849msgstr "Le serveur ne supporte pas '%s'"18501851#: connect.c:1031852#, c-format1853msgid "server doesn't support feature '%s'"1854msgstr "Le serveur ne supporte pas la fonctionnalité '%s'"18551856#: connect.c:1141857msgid "expected flush after capabilities"1858msgstr "vidage attendu après les capacités"18591860#: connect.c:2331861#, c-format1862msgid "ignoring capabilities after first line '%s'"1863msgstr "capacités ignorées après la première ligne '%s'"18641865#: connect.c:2521866msgid "protocol error: unexpected capabilities^{}"1867msgstr "erreur de protocole : capabilities^{} inattendu"18681869#: connect.c:2731870#, c-format1871msgid "protocol error: expected shallow sha-1, got '%s'"1872msgstr "erreur de protocole : shallow sha-1 attendu, '%s' trouvé"18731874#: connect.c:2751875msgid "repository on the other end cannot be shallow"1876msgstr "le dépôt distant ne peut pas être superficiel"18771878#: connect.c:310 fetch-pack.c:183 builtin/archive.c:631879#, c-format1880msgid "remote error: %s"1881msgstr "erreur distante : %s"18821883#: connect.c:3161884msgid "invalid packet"1885msgstr "paquet invalide"18861887#: connect.c:3361888#, c-format1889msgid "protocol error: unexpected '%s'"1890msgstr "erreur de protocole : '%s' attendu"18911892#: connect.c:4441893#, c-format1894msgid "invalid ls-refs response: %s"1895msgstr "réponse à ls-ref invalide : %s"18961897#: connect.c:4481898msgid "expected flush after ref listing"1899msgstr "vidage attendu après le listage de références"19001901#: connect.c:5471902#, c-format1903msgid "protocol '%s' is not supported"1904msgstr "le protocole '%s' n'est pas supporté"19051906#: connect.c:5981907msgid "unable to set SO_KEEPALIVE on socket"1908msgstr "impossible de positionner SO_KEEPALIVE sur la socket"19091910#: connect.c:638 connect.c:7011911#, c-format1912msgid "Looking up %s ... "1913msgstr "Recherche de %s… "19141915#: connect.c:6421916#, c-format1917msgid "unable to look up %s (port %s) (%s)"1918msgstr "impossible de rechercher %s (port %s) (%s)"19191920#. TRANSLATORS: this is the end of "Looking up %s ... "1921#: connect.c:646 connect.c:7171922#, c-format1923msgid ""1924"done.\n"1925"Connecting to %s (port %s) ... "1926msgstr ""1927"fait.\n"1928"Connexion à %s (port %s)… "19291930#: connect.c:668 connect.c:7451931#, c-format1932msgid ""1933"unable to connect to %s:\n"1934"%s"1935msgstr ""1936"impossible de se connecter à %s :\n"1937"%s"19381939#. TRANSLATORS: this is the end of "Connecting to %s (port %s) ... "1940#: connect.c:674 connect.c:7511941msgid "done."1942msgstr "fait."19431944#: connect.c:7051945#, c-format1946msgid "unable to look up %s (%s)"1947msgstr "impossible de rechercher %s (%s)"19481949#: connect.c:7111950#, c-format1951msgid "unknown port %s"1952msgstr "port inconnu %s"19531954#: connect.c:848 connect.c:11741955#, c-format1956msgid "strange hostname '%s' blocked"1957msgstr "nom d'hôte étrange '%s' bloqué"19581959#: connect.c:8501960#, c-format1961msgid "strange port '%s' blocked"1962msgstr "port étrange '%s' bloqué"19631964#: connect.c:8601965#, c-format1966msgid "cannot start proxy %s"1967msgstr "impossible de démarrer un proxy %s"19681969#: connect.c:9271970msgid "no path specified; see 'git help pull' for valid url syntax"1971msgstr ""1972"aucun chemin spécifié ; référez-vous à 'git help pull' pour une syntaxe "1973"d'URL valide"19741975#: connect.c:11221976msgid "ssh variant 'simple' does not support -4"1977msgstr "la variante ssh 'simple' ne supporte pas -4"19781979#: connect.c:11341980msgid "ssh variant 'simple' does not support -6"1981msgstr "la variante ssh 'simple' ne supporte pas -6"19821983#: connect.c:11511984msgid "ssh variant 'simple' does not support setting port"1985msgstr "la variante ssh 'simple' ne supporte pas de spécifier le port"19861987#: connect.c:12621988#, c-format1989msgid "strange pathname '%s' blocked"1990msgstr "chemin étrange '%s' bloqué"19911992#: connect.c:13071993msgid "unable to fork"1994msgstr "fork impossible"19951996#: connected.c:68 builtin/fsck.c:203 builtin/prune.c:1461997msgid "Checking connectivity"1998msgstr "Vérification de la connectivité"19992000#: connected.c:802001msgid "Could not run 'git rev-list'"2002msgstr "Impossible de lancer 'git rev-list'"20032004#: connected.c:1002005msgid "failed write to rev-list"2006msgstr "impossible d'écrire dans la rev-list"20072008#: connected.c:1072009msgid "failed to close rev-list's stdin"2010msgstr "impossible de fermer l'entrée standard du rev-list"20112012#: convert.c:1942013#, c-format2014msgid "illegal crlf_action %d"2015msgstr "crlf_action illégal %d"20162017#: convert.c:2072018#, c-format2019msgid "CRLF would be replaced by LF in %s"2020msgstr "Les CRLF seraient remplacés par des LF dans %s"20212022#: convert.c:2092023#, c-format2024msgid ""2025"CRLF will be replaced by LF in %s.\n"2026"The file will have its original line endings in your working directory"2027msgstr ""2028"Les CRLF seront remplacés par des LF dans %s.\n"2029"Le fichier conservera ses fins de ligne d'origine dans votre copie de travail"20302031#: convert.c:2172032#, c-format2033msgid "LF would be replaced by CRLF in %s"2034msgstr "Les LF seraient remplacés par des CRLF dans %s"20352036#: convert.c:2192037#, c-format2038msgid ""2039"LF will be replaced by CRLF in %s.\n"2040"The file will have its original line endings in your working directory"2041msgstr ""2042"Les LF seront remplacés par des CRLF dans %s.\n"2043"Le fichier conservera ses fins de ligne d'origine dans votre copie de travail"20442045#: convert.c:2802046#, c-format2047msgid "BOM is prohibited in '%s' if encoded as %s"2048msgstr "Aucun BOM n'est permis dans '%s' s'il est encodé comme %s"20492050#: convert.c:2872051#, c-format2052msgid ""2053"The file '%s' contains a byte order mark (BOM). Please use UTF-%s as working-"2054"tree-encoding."2055msgstr ""2056"Le fichier '%s' contient un marqueur d'ordre d'octets (BOM). Veuillez "2057"utiliser UTF-%s comme encodage d'arbre de travail."20582059#: convert.c:3052060#, c-format2061msgid "BOM is required in '%s' if encoded as %s"2062msgstr "Un BOM est obligatoire dans '%s' s'il est encodé comme %s"20632064#: convert.c:3072065#, c-format2066msgid ""2067"The file '%s' is missing a byte order mark (BOM). Please use UTF-%sBE or UTF-"2068"%sLE (depending on the byte order) as working-tree-encoding."2069msgstr ""2070"Il manque un marqueur d'ordre d'octets (BOM) au fichier '%s'. Veuillez "2071"utiliser UTF-%sBE ou UTF-%sLE (selon l'ordre désiré) comme encodage d'arbre "2072"de travail."20732074#: convert.c:425 convert.c:4962075#, c-format2076msgid "failed to encode '%s' from %s to %s"2077msgstr "échec de l'encodage de '%s' de %s vers %s"20782079#: convert.c:4682080#, c-format2081msgid "encoding '%s' from %s to %s and back is not the same"2082msgstr ""2083"encoder '%s' depuis %s vers %s puis inversement ne produit pas le même "2084"contenu"20852086#: convert.c:6742087#, c-format2088msgid "cannot fork to run external filter '%s'"2089msgstr "impossible de forker pour lancer le filtre externe '%s'"20902091#: convert.c:6942092#, c-format2093msgid "cannot feed the input to external filter '%s'"2094msgstr "impossible de fournir l'entrée au filtre externe '%s'"20952096#: convert.c:7012097#, c-format2098msgid "external filter '%s' failed %d"2099msgstr "le filtre externe '%s' a échoué %d"21002101#: convert.c:736 convert.c:7392102#, c-format2103msgid "read from external filter '%s' failed"2104msgstr "la lecture depuis le filtre externe '%s' a échoué"21052106#: convert.c:742 convert.c:7962107#, c-format2108msgid "external filter '%s' failed"2109msgstr "le filtre externe '%s' a échoué"21102111#: convert.c:8442112msgid "unexpected filter type"2113msgstr "type de filtre inattendu"21142115#: convert.c:8552116msgid "path name too long for external filter"2117msgstr "nom de chemin trop long pour un filtre externe"21182119#: convert.c:9292120#, c-format2121msgid ""2122"external filter '%s' is not available anymore although not all paths have "2123"been filtered"2124msgstr ""2125"le filtre externe '%s' n'est plus disponible bien que tous les chemins "2126"n'aient pas été filtrés"21272128#: convert.c:12282129msgid "true/false are no valid working-tree-encodings"2130msgstr "true/false ne sont pas des encodages d'arbre de travail valides"21312132#: convert.c:1402 convert.c:14362133#, c-format2134msgid "%s: clean filter '%s' failed"2135msgstr "%s : le filtre clean '%s' a échoué"21362137#: convert.c:14802138#, c-format2139msgid "%s: smudge filter %s failed"2140msgstr "%s : le filtre smudge '%s' a échoué"21412142#: date.c:1162143msgid "in the future"2144msgstr "dans le futur"21452146#: date.c:1222147#, c-format2148msgid "%<PRIuMAX> second ago"2149msgid_plural "%<PRIuMAX> seconds ago"2150msgstr[0] "il y a %<PRIuMAX> seconde"2151msgstr[1] "il y a %<PRIuMAX> secondes"21522153#: date.c:1292154#, c-format2155msgid "%<PRIuMAX> minute ago"2156msgid_plural "%<PRIuMAX> minutes ago"2157msgstr[0] "il y a %<PRIuMAX> minute"2158msgstr[1] "il y a %<PRIuMAX> minutes"21592160#: date.c:1362161#, c-format2162msgid "%<PRIuMAX> hour ago"2163msgid_plural "%<PRIuMAX> hours ago"2164msgstr[0] "il y a %<PRIuMAX> heure"2165msgstr[1] "il y a %<PRIuMAX> heures"21662167#: date.c:1432168#, c-format2169msgid "%<PRIuMAX> day ago"2170msgid_plural "%<PRIuMAX> days ago"2171msgstr[0] "il y a %<PRIuMAX> jour"2172msgstr[1] "il y a %<PRIuMAX> jours"21732174#: date.c:1492175#, c-format2176msgid "%<PRIuMAX> week ago"2177msgid_plural "%<PRIuMAX> weeks ago"2178msgstr[0] "il y a %<PRIuMAX> semaine"2179msgstr[1] "il y a %<PRIuMAX> semaines"21802181#: date.c:1562182#, c-format2183msgid "%<PRIuMAX> month ago"2184msgid_plural "%<PRIuMAX> months ago"2185msgstr[0] "il y a %<PRIuMAX> mois"2186msgstr[1] "il y a %<PRIuMAX> mois"21872188#: date.c:1672189#, c-format2190msgid "%<PRIuMAX> year"2191msgid_plural "%<PRIuMAX> years"2192msgstr[0] "%<PRIuMAX> an"2193msgstr[1] "%<PRIuMAX> ans"21942195#. TRANSLATORS: "%s" is "<n> years"2196#: date.c:1702197#, c-format2198msgid "%s, %<PRIuMAX> month ago"2199msgid_plural "%s, %<PRIuMAX> months ago"2200msgstr[0] "il y a %s et %<PRIuMAX> mois"2201msgstr[1] "il y a %s et %<PRIuMAX> mois"22022203#: date.c:175 date.c:1802204#, c-format2205msgid "%<PRIuMAX> year ago"2206msgid_plural "%<PRIuMAX> years ago"2207msgstr[0] "il y a %<PRIuMAX> an"2208msgstr[1] "il y a %<PRIuMAX> ans"22092210#: diffcore-order.c:242211#, c-format2212msgid "failed to read orderfile '%s'"2213msgstr "impossible de lire le fichier de commande '%s'"22142215#: diffcore-rename.c:5362216msgid "Performing inexact rename detection"2217msgstr "Détection de renommage inexact en cours"22182219#: diff.c:1082220#, c-format2221msgid "option '%s' requires a value"2222msgstr "le commutateur '%s' a besoin d'une valeur"22232224#: diff.c:1582225#, c-format2226msgid " Failed to parse dirstat cut-off percentage '%s'\n"2227msgstr ""2228" Impossible d'analyser le pourcentage de modification de dirstat '%s'\n"22292230#: diff.c:1632231#, c-format2232msgid " Unknown dirstat parameter '%s'\n"2233msgstr " Paramètre dirstat inconnu '%s'\n"22342235#: diff.c:2912236msgid ""2237"color moved setting must be one of 'no', 'default', 'blocks', 'zebra', "2238"'dimmed-zebra', 'plain'"2239msgstr ""2240"le paramètre de couleur de déplacement doit être parmi 'no', 'default', "2241"'blocks', 'zebra', 'dimmed_zebra' ou 'plain'"22422243#: diff.c:3162244#, c-format2245msgid "ignoring unknown color-moved-ws mode '%s'"2246msgstr "mode color-moved-ws inconnu '%s' ignoré"22472248#: diff.c:3232249msgid ""2250"color-moved-ws: allow-indentation-change cannot be combined with other white "2251"space modes"2252msgstr ""2253"color-moved-ws : allow-indentation-change ne peut pas être combiné avec "2254"d'autres modes d'espace"22552256#: diff.c:3942257#, c-format2258msgid "Unknown value for 'diff.submodule' config variable: '%s'"2259msgstr ""2260"Valeur inconnue pour la variable de configuration 'diff.submodule' : '%s'"22612262#: diff.c:4542263#, c-format2264msgid ""2265"Found errors in 'diff.dirstat' config variable:\n"2266"%s"2267msgstr ""2268"Erreurs dans la variable de configuration 'diff.dirstat' :\n"2269"%s"22702271#: diff.c:40962272#, c-format2273msgid "external diff died, stopping at %s"2274msgstr "l'application de diff externe a disparu, arrêt à %s"22752276#: diff.c:44272277msgid "--name-only, --name-status, --check and -s are mutually exclusive"2278msgstr "--name-only, --name-status, --check et -s sont mutuellement exclusifs"22792280#: diff.c:44302281msgid "-G, -S and --find-object are mutually exclusive"2282msgstr "-G, -S et --find-object sont mutuellement exclusifs"22832284#: diff.c:45082285msgid "--follow requires exactly one pathspec"2286msgstr "--follow a besoin d'une spécification de chemin unique"22872288#: diff.c:46742289#, c-format2290msgid ""2291"Failed to parse --dirstat/-X option parameter:\n"2292"%s"2293msgstr ""2294"Impossible d'analyser le paramètre de l'option --dirstat/-X :\n"2295"%s"22962297#: diff.c:46882298#, c-format2299msgid "Failed to parse --submodule option parameter: '%s'"2300msgstr "Impossible d'analyser le paramètre de l'option --submodule : '%s'"23012302#: diff.c:57662303msgid "inexact rename detection was skipped due to too many files."2304msgstr ""2305"détection de renommage inexact annulée à cause d'un trop grand nombre de "2306"fichiers."23072308#: diff.c:57692309msgid "only found copies from modified paths due to too many files."2310msgstr ""2311"recherche uniquement des copies par modification de chemin à cause d'un trop "2312"grand nombre de fichiers."23132314#: diff.c:57722315#, c-format2316msgid ""2317"you may want to set your %s variable to at least %d and retry the command."2318msgstr ""2319"vous souhaitez peut-être régler la variable %s à au moins %d et réessayer le "2320"commande."23212322#: dir.c:5692323#, c-format2324msgid "pathspec '%s' did not match any file(s) known to git"2325msgstr ""2326"le spécificateur de chemin '%s' ne correspond à aucun fichier connu de git"23272328#: dir.c:9582329#, c-format2330msgid "cannot use %s as an exclude file"2331msgstr "impossible d'utiliser %s comme fichier d'exclusion"23322333#: dir.c:18732334#, c-format2335msgid "could not open directory '%s'"2336msgstr "impossible d'ouvrir le répertoire '%s'"23372338#: dir.c:21152339msgid "failed to get kernel name and information"2340msgstr "echec de l'obtention d'information de kernel"23412342#: dir.c:22392343msgid "untracked cache is disabled on this system or location"2344msgstr "Le cache non suivi est désactivé sur ce système ou sur cet endroit"23452346#: dir.c:30372347#, c-format2348msgid "index file corrupt in repo %s"2349msgstr "fichier d'index corrompu dans le dépôt %s"23502351#: dir.c:3082 dir.c:30872352#, c-format2353msgid "could not create directories for %s"2354msgstr "impossible de créer les répertoires pour %s"23552356#: dir.c:31162357#, c-format2358msgid "could not migrate git directory from '%s' to '%s'"2359msgstr "impossible de migrer le répertoire git de '%s' vers '%s'"23602361#: editor.c:612362#, c-format2363msgid "hint: Waiting for your editor to close the file...%c"2364msgstr ""2365"suggestion : en attente de la fermeture du fichier par votre éditeur de "2366"texte…%c"23672368#: entry.c:1782369msgid "Filtering content"2370msgstr "Filtrage du contenu"23712372#: entry.c:4372373#, c-format2374msgid "could not stat file '%s'"2375msgstr "impossible de stat le fichier '%s'"23762377#: environment.c:1502378#, c-format2379msgid "bad git namespace path \"%s\""2380msgstr "Espaces de nom de Git \"%s\""23812382#: environment.c:3322383#, c-format2384msgid "could not set GIT_DIR to '%s'"2385msgstr "impossible de régler GIT_DIR à '%s'"23862387#: exec-cmd.c:3612388#, c-format2389msgid "too many args to run %s"2390msgstr "trop d'arguments pour lancer %s"23912392#: fetch-object.c:172393msgid "Remote with no URL"2394msgstr "Dépôt distant sans URL"23952396#: fetch-pack.c:1522397msgid "git fetch-pack: expected shallow list"2398msgstr "git fetch-pack : list courte attendue"23992400#: fetch-pack.c:1642401msgid "git fetch-pack: expected ACK/NAK, got a flush packet"2402msgstr "git fetch-pack : ACK/NACK attendu, paquet de nettoyage reçu"24032404#: fetch-pack.c:1842405#, c-format2406msgid "git fetch-pack: expected ACK/NAK, got '%s'"2407msgstr "git fetch-pack : ACK/NACK attendu, '%s' reçu"24082409#: fetch-pack.c:2542410msgid "--stateless-rpc requires multi_ack_detailed"2411msgstr "--stateless-rpc nécessite multi_ack_detailed"24122413#: fetch-pack.c:342 fetch-pack.c:12572414#, c-format2415msgid "invalid shallow line: %s"2416msgstr "ligne de superficiel invalide : %s"24172418#: fetch-pack.c:348 fetch-pack.c:12632419#, c-format2420msgid "invalid unshallow line: %s"2421msgstr "ligne de fin de superficiel invalide : %s"24222423#: fetch-pack.c:350 fetch-pack.c:12652424#, c-format2425msgid "object not found: %s"2426msgstr "objet non trouvé : %s"24272428#: fetch-pack.c:353 fetch-pack.c:12682429#, c-format2430msgid "error in object: %s"2431msgstr "Erreur dans l'objet : %s"24322433#: fetch-pack.c:355 fetch-pack.c:12702434#, c-format2435msgid "no shallow found: %s"2436msgstr "Pas de superficiel trouvé : %s"24372438#: fetch-pack.c:358 fetch-pack.c:12732439#, c-format2440msgid "expected shallow/unshallow, got %s"2441msgstr "superficiel/non superficiel attendu, %s trouvé"24422443#: fetch-pack.c:3992444#, c-format2445msgid "got %s %d %s"2446msgstr "réponse %s %d %s"24472448#: fetch-pack.c:4162449#, c-format2450msgid "invalid commit %s"2451msgstr "commit invalide %s"24522453#: fetch-pack.c:4472454msgid "giving up"2455msgstr "abandon"24562457#: fetch-pack.c:459 progress.c:2292458msgid "done"2459msgstr "fait"24602461#: fetch-pack.c:4712462#, c-format2463msgid "got %s (%d) %s"2464msgstr "%s trouvé (%d) %s"24652466#: fetch-pack.c:5172467#, c-format2468msgid "Marking %s as complete"2469msgstr "Marquage de %s comme terminé"24702471#: fetch-pack.c:7642472#, c-format2473msgid "already have %s (%s)"2474msgstr "%s déjà possédé (%s)"24752476#: fetch-pack.c:8032477msgid "fetch-pack: unable to fork off sideband demultiplexer"2478msgstr "fetch-pack : impossible de dupliquer le démultiplexeur latéral"24792480#: fetch-pack.c:8112481msgid "protocol error: bad pack header"2482msgstr "erreur de protocole : mauvais entête de paquet"24832484#: fetch-pack.c:8792485#, c-format2486msgid "fetch-pack: unable to fork off %s"2487msgstr "fetch-pack : impossible de dupliquer %s"24882489#: fetch-pack.c:8952490#, c-format2491msgid "%s failed"2492msgstr "échec de %s"24932494#: fetch-pack.c:8972495msgid "error in sideband demultiplexer"2496msgstr "erreur dans le démultiplexer latéral"24972498#: fetch-pack.c:9262499msgid "Server does not support shallow clients"2500msgstr "Le serveur ne supporte les clients superficiels"25012502#: fetch-pack.c:9302503msgid "Server supports multi_ack_detailed"2504msgstr "Le serveur supporte multi_ack_detailed"25052506#: fetch-pack.c:9332507msgid "Server supports no-done"2508msgstr "Le serveur support no-done"25092510#: fetch-pack.c:9392511msgid "Server supports multi_ack"2512msgstr "Le serveur supporte multi_ack"25132514#: fetch-pack.c:9432515msgid "Server supports side-band-64k"2516msgstr "Le serveur supporte side-band-64k"25172518#: fetch-pack.c:9472519msgid "Server supports side-band"2520msgstr "Le serveru supporte side-band"25212522#: fetch-pack.c:9512523msgid "Server supports allow-tip-sha1-in-want"2524msgstr "Le serveur supporte allow-tip-sha1-in-want"25252526#: fetch-pack.c:9552527msgid "Server supports allow-reachable-sha1-in-want"2528msgstr "Le serveur supporte allow-reachable-sha1-in-want"25292530#: fetch-pack.c:9652531msgid "Server supports ofs-delta"2532msgstr "Le serveur supporte ofs-delta"25332534#: fetch-pack.c:971 fetch-pack.c:11502535msgid "Server supports filter"2536msgstr "Le serveur supporte filter"25372538#: fetch-pack.c:9792539#, c-format2540msgid "Server version is %.*s"2541msgstr "La version du serveur est %.*s"25422543#: fetch-pack.c:9852544msgid "Server does not support --shallow-since"2545msgstr "Le receveur ne gère pas --shallow-since"25462547#: fetch-pack.c:9892548msgid "Server does not support --shallow-exclude"2549msgstr "Le receveur ne gère pas --shallow-exclude"25502551#: fetch-pack.c:9912552msgid "Server does not support --deepen"2553msgstr "Le receveur ne gère pas --deepen"25542555#: fetch-pack.c:10042556msgid "no common commits"2557msgstr "pas de commit commun"25582559#: fetch-pack.c:1016 fetch-pack.c:13932560msgid "git fetch-pack: fetch failed."2561msgstr "git fetch-pack : échec de le récupération."25622563#: fetch-pack.c:11452564msgid "Server does not support shallow requests"2565msgstr "Le serveur ne supporte les requêtes superficielles"25662567#: fetch-pack.c:11912568#, c-format2569msgid "error reading section header '%s'"2570msgstr "erreur à la lecture de l'entête de section '%s'"25712572#: fetch-pack.c:11972573#, c-format2574msgid "expected '%s', received '%s'"2575msgstr "'%s' attendu, '%s' reçu"25762577#: fetch-pack.c:12362578#, c-format2579msgid "unexpected acknowledgment line: '%s'"2580msgstr "ligne d'acquittement inattendue : '%s'"25812582#: fetch-pack.c:12412583#, c-format2584msgid "error processing acks: %d"2585msgstr "erreur lors du traitement des acquittements : %d"25862587#: fetch-pack.c:12782588#, c-format2589msgid "error processing shallow info: %d"2590msgstr "erreur lors du traitement de l'information de superficialité : %d"25912592#: fetch-pack.c:12942593#, c-format2594msgid "expected wanted-ref, got '%s'"2595msgstr "wanted-ref attendu, '%s' trouvé"25962597#: fetch-pack.c:13042598#, c-format2599msgid "unexpected wanted-ref: '%s'"2600msgstr "wanted-ref inattendu : '%s'"26012602#: fetch-pack.c:13082603#, c-format2604msgid "error processing wanted refs: %d"2605msgstr "erreur lors du traitement des références voulues : %d"26062607#: fetch-pack.c:16032608msgid "no matching remote head"2609msgstr "pas de HEAD distante correspondante"26102611#: fetch-pack.c:1621 builtin/clone.c:6642612msgid "remote did not send all necessary objects"2613msgstr "le serveur distant n'a pas envoyé tous les objets nécessaires"26142615#: fetch-pack.c:16472616#, c-format2617msgid "no such remote ref %s"2618msgstr "référence distante inconnue %s"26192620#: fetch-pack.c:16502621#, c-format2622msgid "Server does not allow request for unadvertised object %s"2623msgstr "Le serveur n'autorise pas de requête pour l'objet %s non annoncé"26242625#: gpg-interface.c:2532626msgid "gpg failed to sign the data"2627msgstr "gpg n'a pas pu signer les données"26282629#: gpg-interface.c:2792630msgid "could not create temporary file"2631msgstr "impossible de créer un fichier temporaire"26322633#: gpg-interface.c:2822634#, c-format2635msgid "failed writing detached signature to '%s'"2636msgstr "impossible d'écrire la signature détachée dans '%s'"26372638#: graph.c:972639#, c-format2640msgid "ignore invalid color '%.*s' in log.graphColors"2641msgstr "couleur invalide '%.*s' ignorée dans log.graphColors"26422643#: grep.c:21152644#, c-format2645msgid "'%s': unable to read %s"2646msgstr "'%s' : lecture de %s impossible"26472648#: grep.c:2132 setup.c:164 builtin/clone.c:410 builtin/diff.c:812649#: builtin/rm.c:1342650#, c-format2651msgid "failed to stat '%s'"2652msgstr "échec du stat de '%s'"26532654#: grep.c:21432655#, c-format2656msgid "'%s': short read"2657msgstr "'%s' : lecture tronquée"26582659#: help.c:232660msgid "start a working area (see also: git help tutorial)"2661msgstr "démarrer une zone de travail (voir aussi : git help tutorial)"26622663#: help.c:242664msgid "work on the current change (see also: git help everyday)"2665msgstr ""2666"travailler sur la modification actuelle (voir aussi : git help revisions)"26672668#: help.c:252669msgid "examine the history and state (see also: git help revisions)"2670msgstr "examiner l'historique et l'état (voir aussi : git help revisions)"26712672#: help.c:262673msgid "grow, mark and tweak your common history"2674msgstr "agrandir, marquer et modifier votre historique"26752676#: help.c:272677msgid "collaborate (see also: git help workflows)"2678msgstr "collaborer (voir aussi : git help workflows)"26792680#: help.c:312681msgid "Main Porcelain Commands"2682msgstr "Commandes Porcelaine Principales"26832684#: help.c:322685msgid "Ancillary Commands / Manipulators"2686msgstr "Commandes Auxiliaires / Manipulateurs"26872688#: help.c:332689msgid "Ancillary Commands / Interrogators"2690msgstr "Commandes Auxiliaires / Interrogateurs"26912692#: help.c:342693msgid "Interacting with Others"2694msgstr "Interaction avec d'autres développeurs"26952696#: help.c:352697msgid "Low-level Commands / Manipulators"2698msgstr "Commandes bas-niveau / Manipulateurs"26992700#: help.c:362701msgid "Low-level Commands / Interrogators"2702msgstr "Commandes bas niveau / Interrogateurs"27032704#: help.c:372705msgid "Low-level Commands / Synching Repositories"2706msgstr "Commandes bas niveau / Synchronisation de dépôts"27072708#: help.c:382709msgid "Low-level Commands / Internal Helpers"2710msgstr "Commandes bas niveau / Assistants internes"27112712#: help.c:2932713#, c-format2714msgid "available git commands in '%s'"2715msgstr "commandes git disponibles dans '%s'"27162717#: help.c:3002718msgid "git commands available from elsewhere on your $PATH"2719msgstr "commandes git disponibles depuis un autre endroit de votre $PATH"27202721#: help.c:3092722msgid "These are common Git commands used in various situations:"2723msgstr "Ci-dessous les commandes Git habituelles dans diverses situations :"27242725#: help.c:358 git.c:902726#, c-format2727msgid "unsupported command listing type '%s'"2728msgstr "type de liste de commandes non supporté '%s'"27292730#: help.c:4052731msgid "The common Git guides are:"2732msgstr "Les guides Git populaires sont :"27332734#: help.c:5522735#, c-format2736msgid ""2737"'%s' appears to be a git command, but we were not\n"2738"able to execute it. Maybe git-%s is broken?"2739msgstr ""2740"'%s' semble être une commande git, mais elle n'a pas pu\n"2741"être exécutée. Peut-être git-%s est-elle cassée ?"27422743#: help.c:6112744msgid "Uh oh. Your system reports no Git commands at all."2745msgstr "Ahem. Votre système n'indique aucune commande Git."27462747#: help.c:6332748#, c-format2749msgid "WARNING: You called a Git command named '%s', which does not exist."2750msgstr ""2751"ATTENTION : vous avez invoqué une commande Git nommée '%s' qui n'existe pas."27522753#: help.c:6382754#, c-format2755msgid "Continuing under the assumption that you meant '%s'."2756msgstr "Continuons en supposant que vous avez voulu dire '%s'."27572758#: help.c:6432759#, c-format2760msgid "Continuing in %0.1f seconds, assuming that you meant '%s'."2761msgstr ""2762"Continuons dans %0.1f secondes en supposant que vous avez voulu dire '%s'."27632764#: help.c:6512765#, c-format2766msgid "git: '%s' is not a git command. See 'git --help'."2767msgstr "git : '%s' n'est pas une commande git. Voir 'git --help'."27682769#: help.c:6552770msgid ""2771"\n"2772"The most similar command is"2773msgid_plural ""2774"\n"2775"The most similar commands are"2776msgstr[0] ""2777"\n"2778"La commande la plus ressemblante est"2779msgstr[1] ""2780"\n"2781"Les commandes les plus ressemblantes sont"27822783#: help.c:6702784msgid "git version [<options>]"2785msgstr "git version [<options>]"27862787#: help.c:7382788#, c-format2789msgid "%s: %s - %s"2790msgstr "%s: %s - %s"27912792#: help.c:7422793msgid ""2794"\n"2795"Did you mean this?"2796msgid_plural ""2797"\n"2798"Did you mean one of these?"2799msgstr[0] ""2800"\n"2801"Vouliez-vous dire cela ?"2802msgstr[1] ""2803"\n"2804"Vouliez-vous dire un de ceux-là ?"28052806#: ident.c:3422807msgid ""2808"\n"2809"*** Please tell me who you are.\n"2810"\n"2811"Run\n"2812"\n"2813" git config --global user.email \"you@example.com\"\n"2814" git config --global user.name \"Your Name\"\n"2815"\n"2816"to set your account's default identity.\n"2817"Omit --global to set the identity only in this repository.\n"2818"\n"2819msgstr ""2820"\n"2821"*** Veuillez me dire qui vous êtes.\n"2822"\n"2823"Lancez\n"2824"\n"2825" git config --global user.email \"Vous@exemple.com\"\n"2826" git config --global user.name \"Votre Nom\"\n"2827"\n"2828"pour régler l'identité par défaut de votre compte.\n"2829"Éliminez --global pour ne faire les réglages que dans ce dépôt.\n"2830"\n"28312832#: ident.c:3662833msgid "no email was given and auto-detection is disabled"2834msgstr "aucun courriel fourni et l'auto-détection est désactivée"28352836#: ident.c:3712837#, c-format2838msgid "unable to auto-detect email address (got '%s')"2839msgstr "impossible de détecter automatiquement l'adresse ('%s' trouvé)"28402841#: ident.c:3812842msgid "no name was given and auto-detection is disabled"2843msgstr "aucun nom fourni et l'auto-détection est désactivée"28442845#: ident.c:3872846#, c-format2847msgid "unable to auto-detect name (got '%s')"2848msgstr "impossible de détecter automatiquement le nom ('%s' trouvé)"28492850#: ident.c:3952851#, c-format2852msgid "empty ident name (for <%s>) not allowed"2853msgstr "nom d'identifiant vide (pour <%s>) non permis"28542855#: ident.c:4012856#, c-format2857msgid "name consists only of disallowed characters: %s"2858msgstr "le nom n'est constitué que de caractères interdits : %s"28592860#: ident.c:416 builtin/commit.c:6002861#, c-format2862msgid "invalid date format: %s"2863msgstr "format de date invalide : %s"28642865#: list-objects-filter-options.c:362866msgid "multiple filter-specs cannot be combined"2867msgstr "impossible de combiner des spécificateurs multiples de filtre"28682869#: list-objects-filter-options.c:1262870msgid "cannot change partial clone promisor remote"2871msgstr "impossible de modifier le prometteur distant de clone partiel"28722873#: lockfile.c:1512874#, c-format2875msgid ""2876"Unable to create '%s.lock': %s.\n"2877"\n"2878"Another git process seems to be running in this repository, e.g.\n"2879"an editor opened by 'git commit'. Please make sure all processes\n"2880"are terminated then try again. If it still fails, a git process\n"2881"may have crashed in this repository earlier:\n"2882"remove the file manually to continue."2883msgstr ""2884"Impossible de créer '%s.lock' : %s.\n"2885"\n"2886"Il semble qu'un autre processus git est déjà lancé dans ce dépôt,\n"2887"par exemple un éditeur ouvert par 'git commit'. Veuillez vous assurer\n"2888"que tous les processus sont terminés et réessayez. Si l'echec persiste,\n"2889"un processus git peut avoir planté :\n"2890"supprimez le fichier manuellement pour poursuivre."28912892#: lockfile.c:1592893#, c-format2894msgid "Unable to create '%s.lock': %s"2895msgstr "Impossible de créer '%s.lock' : %s"28962897#: merge.c:402898msgid "failed to read the cache"2899msgstr "impossible de lire le cache"29002901#: merge.c:105 builtin/am.c:1946 builtin/am.c:1980 builtin/checkout.c:3802902#: builtin/checkout.c:608 builtin/clone.c:7632903msgid "unable to write new index file"2904msgstr "impossible d'écrire le nouveau fichier d'index"29052906#: merge-recursive.c:3032907msgid "(bad commit)\n"2908msgstr "(mauvais commit)\n"29092910#: merge-recursive.c:3252911#, c-format2912msgid "add_cacheinfo failed for path '%s'; merge aborting."2913msgstr "échec de addinfo_cache pour le chemin '%s' ; abandon de la fusion."29142915#: merge-recursive.c:3332916#, c-format2917msgid "add_cacheinfo failed to refresh for path '%s'; merge aborting."2918msgstr "échec de addinfo_cache pour le chemin '%s' ; abandon de la fusion."29192920#: merge-recursive.c:4152921msgid "error building trees"2922msgstr "erreur de construction des arbres"29232924#: merge-recursive.c:8862925#, c-format2926msgid "failed to create path '%s'%s"2927msgstr "impossible de créer le chemin '%s' %s"29282929#: merge-recursive.c:8972930#, c-format2931msgid "Removing %s to make room for subdirectory\n"2932msgstr "Suppression de %s pour faire de la place pour le sous-répertoire\n"29332934#: merge-recursive.c:911 merge-recursive.c:9302935msgid ": perhaps a D/F conflict?"2936msgstr ": peut-être un conflit D/F ?"29372938#: merge-recursive.c:9202939#, c-format2940msgid "refusing to lose untracked file at '%s'"2941msgstr "refus de perdre le fichier non suivi '%s'"29422943#: merge-recursive.c:962 builtin/cat-file.c:392944#, c-format2945msgid "cannot read object %s '%s'"2946msgstr "impossible de lire l'objet %s '%s'"29472948#: merge-recursive.c:9642949#, c-format2950msgid "blob expected for %s '%s'"2951msgstr "blob attendu pour %s '%s'"29522953#: merge-recursive.c:9882954#, c-format2955msgid "failed to open '%s': %s"2956msgstr "échec à l'ouverture de '%s' : %s"29572958#: merge-recursive.c:9992959#, c-format2960msgid "failed to symlink '%s': %s"2961msgstr "échec à la création du lien symbolique '%s' : %s"29622963#: merge-recursive.c:10042964#, c-format2965msgid "do not know what to do with %06o %s '%s'"2966msgstr "ne sait pas traiter %06o %s '%s'"29672968#: merge-recursive.c:11912969#, c-format2970msgid "Failed to merge submodule %s (not checked out)"2971msgstr "Échec de la fusion du sous-module %s (non extrait)"29722973#: merge-recursive.c:11982974#, c-format2975msgid "Failed to merge submodule %s (commits not present)"2976msgstr "Échec de fusion du sous-module %s (commits non présents)"29772978#: merge-recursive.c:12052979#, c-format2980msgid "Failed to merge submodule %s (commits don't follow merge-base)"2981msgstr ""2982"Échec de la fusion du sous-module %s (les commits ne descendent pas de la "2983"base de fusion)"29842985#: merge-recursive.c:1213 merge-recursive.c:12252986#, c-format2987msgid "Fast-forwarding submodule %s to the following commit:"2988msgstr "Avance rapide du sous-module %s au commit suivant :"29892990#: merge-recursive.c:1216 merge-recursive.c:12282991#, c-format2992msgid "Fast-forwarding submodule %s"2993msgstr "Avance rapide du sous-module %s"29942995#: merge-recursive.c:12502996#, c-format2997msgid "Failed to merge submodule %s (merge following commits not found)"2998msgstr ""2999"Échec de fusion du sous-module %s (fusion suivant les commits non trouvée)"30003001#: merge-recursive.c:12543002#, c-format3003msgid "Failed to merge submodule %s (not fast-forward)"3004msgstr "Échec de fusion du sous-module %s (pas en avance rapide)"30053006#: merge-recursive.c:12553007msgid "Found a possible merge resolution for the submodule:\n"3008msgstr "Résolution possible de fusion trouvée pour le sous-module :\n"30093010#: merge-recursive.c:12583011#, c-format3012msgid ""3013"If this is correct simply add it to the index for example\n"3014"by using:\n"3015"\n"3016" git update-index --cacheinfo 160000 %s \"%s\"\n"3017"\n"3018"which will accept this suggestion.\n"3019msgstr ""3020"Si c'est correct, ajoutez le simplement à l'index\n"3021"en utilisant par exemple :\n"3022"\n"3023" git update-index --cacheinfo 160000 %s \"%s\"\n"3024"\n"3025"qui acceptera cette suggestion.\n"30263027#: merge-recursive.c:12673028#, c-format3029msgid "Failed to merge submodule %s (multiple merges found)"3030msgstr "Échec de fusion du sous-module %s (plusieurs fusions trouvées)"30313032#: merge-recursive.c:13263033msgid "Failed to execute internal merge"3034msgstr "Échec à l'exécution de la fusion interne"30353036#: merge-recursive.c:13313037#, c-format3038msgid "Unable to add %s to database"3039msgstr "Impossible d'ajouter %s à la base de données"30403041#: merge-recursive.c:13633042#, c-format3043msgid "Auto-merging %s"3044msgstr "Fusion automatique de %s"30453046#: merge-recursive.c:14343047#, c-format3048msgid "Error: Refusing to lose untracked file at %s; writing to %s instead."3049msgstr ""3050"Erreur : refus de perdre le fichier non suivi %s ; écriture dans %s à la "3051"place."30523053#: merge-recursive.c:15013054#, c-format3055msgid ""3056"CONFLICT (%s/delete): %s deleted in %s and %s in %s. Version %s of %s left "3057"in tree."3058msgstr ""3059"CONFLIT (%s/suppression) : %s supprimé dans %s et %s dans %s. Version %s de "3060"%s laissée dans l'arbre."30613062#: merge-recursive.c:15063063#, c-format3064msgid ""3065"CONFLICT (%s/delete): %s deleted in %s and %s to %s in %s. Version %s of %s "3066"left in tree."3067msgstr ""3068"CONFLIT (%s/suppression) : %s supprimé dans %s et %s à %s dans %s. Version "3069"%s de %s laissée dans l'arbre."30703071#: merge-recursive.c:15133072#, c-format3073msgid ""3074"CONFLICT (%s/delete): %s deleted in %s and %s in %s. Version %s of %s left "3075"in tree at %s."3076msgstr ""3077"CONFLIT (%s/suppression) : %s supprimé dans %s et %s dans %s. Version %s de "3078"%s laissée dans l'arbre dans le fichier %s."30793080#: merge-recursive.c:15183081#, c-format3082msgid ""3083"CONFLICT (%s/delete): %s deleted in %s and %s to %s in %s. Version %s of %s "3084"left in tree at %s."3085msgstr ""3086"CONFLIT (%s/suppression) : %s supprimé dans %s et %s à %s dans %s. Version "3087"%s de %s laissée dans l'arbre dans le fichier %s."30883089#: merge-recursive.c:15523090msgid "rename"3091msgstr "renommage"30923093#: merge-recursive.c:15523094msgid "renamed"3095msgstr "renommé"30963097#: merge-recursive.c:1606 merge-recursive.c:1762 merge-recursive.c:23943098#: merge-recursive.c:31293099#, c-format3100msgid "Refusing to lose dirty file at %s"3101msgstr "Refus de perdre le fichier modifié %s"31023103#: merge-recursive.c:16203104#, c-format3105msgid "%s is a directory in %s adding as %s instead"3106msgstr "%s est un répertoire dans %s ajouté plutôt comme %s"31073108#: merge-recursive.c:16253109#, c-format3110msgid "Refusing to lose untracked file at %s; adding as %s instead"3111msgstr "Refus de perdre le fichier non suivi %s ; ajout comme %s à la place"31123113#: merge-recursive.c:16513114#, c-format3115msgid ""3116"CONFLICT (rename/rename): Rename \"%s\"->\"%s\" in branch \"%s\" rename \"%s"3117"\"->\"%s\" in \"%s\"%s"3118msgstr ""3119"CONFLIT (renommage/renommage) : Renommage de \"%s\"->\"%s\" dans la branche "3120"\"%s\" et renommage \"%s\"->\"%s\" dans \"%s\"%s"31213122#: merge-recursive.c:16563123msgid " (left unresolved)"3124msgstr " (laissé non résolu)"31253126#: merge-recursive.c:17203127#, c-format3128msgid "CONFLICT (rename/rename): Rename %s->%s in %s. Rename %s->%s in %s"3129msgstr ""3130"CONFLIT (renommage/renommage) : renommage '%s'->'%s' dans %s. Renommage '%s'-"3131">'%s' dans %s"31323133#: merge-recursive.c:17593134#, c-format3135msgid "Renaming %s to %s and %s to %s instead"3136msgstr "Renommage de %s en %s et de %s en %s à la place"31373138#: merge-recursive.c:17713139#, c-format3140msgid "Refusing to lose untracked file at %s, even though it's in the way."3141msgstr "Refus de perdre le fichier non suivi %s, même s'il gêne."31423143#: merge-recursive.c:19773144#, c-format3145msgid ""3146"CONFLICT (directory rename split): Unclear where to place %s because "3147"directory %s was renamed to multiple other directories, with no destination "3148"getting a majority of the files."3149msgstr ""3150"CONFLIT (renommage de répertoire coupé) : la place de %s n'est pas claire "3151"parce que le répertoire %s a été renommé en plusieurs autres répertoires, "3152"sans aucune destination récupérant la majorité des fichiers."31533154#: merge-recursive.c:20093155#, c-format3156msgid ""3157"CONFLICT (implicit dir rename): Existing file/dir at %s in the way of "3158"implicit directory rename(s) putting the following path(s) there: %s."3159msgstr ""3160"CONFLIT (renommage implicite de répertoire) : le répertoire/fichier %s gêne "3161"des renommages implicites de répertoire déplaçant les chemins suivants : %s."31623163#: merge-recursive.c:20193164#, c-format3165msgid ""3166"CONFLICT (implicit dir rename): Cannot map more than one path to %s; "3167"implicit directory renames tried to put these paths there: %s"3168msgstr ""3169"CONFLIT (renommage implicite de répertoire) : impossible de transformer "3170"plusieurs chemins sur %s ; les chemins concernés sont : %s"31713172#: merge-recursive.c:21113173#, c-format3174msgid ""3175"CONFLICT (rename/rename): Rename directory %s->%s in %s. Rename directory %s-"3176">%s in %s"3177msgstr ""3178"CONFLIT (renommage/renommage) : renommage du répertoire %s->%s dans %s. "3179"Renommage de répertoire %s->%s dans %s"31803181#: merge-recursive.c:23563182#, c-format3183msgid ""3184"WARNING: Avoiding applying %s -> %s rename to %s, because %s itself was "3185"renamed."3186msgstr ""3187"AVERTISSEMENT : ne renomme pas %s->%s dans %s, parce que %s lui-même a été "3188"renommé."31893190#: merge-recursive.c:27623191#, c-format3192msgid "CONFLICT (rename/add): Rename %s->%s in %s. %s added in %s"3193msgstr ""3194"CONFLIT (renommage/ajout) : Renommage de %s->%s dans %s. %s ajouté dans %s"31953196#: merge-recursive.c:27773197#, c-format3198msgid "Adding merged %s"3199msgstr "Ajout de %s fusionné"32003201#: merge-recursive.c:2784 merge-recursive.c:31323202#, c-format3203msgid "Adding as %s instead"3204msgstr "Ajout plutôt comme %s"32053206#: merge-recursive.c:29413207#, c-format3208msgid "cannot read object %s"3209msgstr "impossible de lire l'objet %s"32103211#: merge-recursive.c:29443212#, c-format3213msgid "object %s is not a blob"3214msgstr "l'objet %s n'est pas un blob"32153216#: merge-recursive.c:30133217msgid "modify"3218msgstr "modification"32193220#: merge-recursive.c:30133221msgid "modified"3222msgstr "modifié"32233224#: merge-recursive.c:30243225msgid "content"3226msgstr "contenu"32273228#: merge-recursive.c:30313229msgid "add/add"3230msgstr "ajout/ajout"32313232#: merge-recursive.c:30763233#, c-format3234msgid "Skipped %s (merged same as existing)"3235msgstr "%s sauté (fusion identique à l'existant)"32363237#: merge-recursive.c:3098 git-submodule.sh:8653238msgid "submodule"3239msgstr "sous-module"32403241#: merge-recursive.c:30993242#, c-format3243msgid "CONFLICT (%s): Merge conflict in %s"3244msgstr "CONFLIT (%s) : Conflit de fusion dans %s"32453246#: merge-recursive.c:32213247#, c-format3248msgid "Removing %s"3249msgstr "Suppression de %s"32503251#: merge-recursive.c:32473252msgid "file/directory"3253msgstr "fichier/répertoire"32543255#: merge-recursive.c:32533256msgid "directory/file"3257msgstr "répertoire/fichier"32583259#: merge-recursive.c:32603260#, c-format3261msgid "CONFLICT (%s): There is a directory with name %s in %s. Adding %s as %s"3262msgstr ""3263"CONFLIT (%s) : Il y a un répertoire nommé %s dans %s. Ajout de %s comme %s"32643265#: merge-recursive.c:32693266#, c-format3267msgid "Adding %s"3268msgstr "Ajout de %s"32693270#: merge-recursive.c:33033271#, c-format3272msgid ""3273"Your local changes to the following files would be overwritten by merge:\n"3274" %s"3275msgstr ""3276"Vos modifications locales aux fichiers suivants seraient écrasées par la "3277"fusion :\n"3278" %s"32793280#: merge-recursive.c:33143281msgid "Already up to date!"3282msgstr "Déjà à jour !"32833284#: merge-recursive.c:33233285#, c-format3286msgid "merging of trees %s and %s failed"3287msgstr "échec de fusion des arbres %s et %s"32883289#: merge-recursive.c:34223290msgid "Merging:"3291msgstr "Fusion :"32923293#: merge-recursive.c:34353294#, c-format3295msgid "found %u common ancestor:"3296msgid_plural "found %u common ancestors:"3297msgstr[0] "%u ancêtre commun trouvé :"3298msgstr[1] "%u ancêtres communs trouvés :"32993300#: merge-recursive.c:34743301msgid "merge returned no commit"3302msgstr "la fusion n'a pas retourné de commit"33033304#: merge-recursive.c:35403305#, c-format3306msgid "Could not parse object '%s'"3307msgstr "Impossible d'analyser l'objet '%s'"33083309#: merge-recursive.c:3556 builtin/merge.c:689 builtin/merge.c:8463310msgid "Unable to write index."3311msgstr "Impossible d'écrire l'index."33123313#: notes-merge.c:2743314#, c-format3315msgid ""3316"You have not concluded your previous notes merge (%s exists).\n"3317"Please, use 'git notes merge --commit' or 'git notes merge --abort' to "3318"commit/abort the previous merge before you start a new notes merge."3319msgstr ""3320"Vous n'avez pas terminé votre précédente fusion de notes (%s existe).\n"3321"Veuillez utiliser 'git notes merge --commit' ou 'git notes merge --abort' "3322"pour valider/abandonner la fusion en cours avant d'en démarrer une nouvelle."33233324#: notes-merge.c:2813325#, c-format3326msgid "You have not concluded your notes merge (%s exists)."3327msgstr "Vous n'avez pas terminé votre fusion de notes (%s existe)."33283329#: notes-utils.c:453330msgid "Cannot commit uninitialized/unreferenced notes tree"3331msgstr "Impossible de valider un arbre de notes non initialisé/référencé"33323333#: notes-utils.c:1043334#, c-format3335msgid "Bad notes.rewriteMode value: '%s'"3336msgstr "Mauvaise valeur de notes.rewriteMode : '%s'"33373338#: notes-utils.c:1143339#, c-format3340msgid "Refusing to rewrite notes in %s (outside of refs/notes/)"3341msgstr "Refus de réécrire des notes dans %s (hors de refs/notes/)"33423343#. TRANSLATORS: The first %s is the name of3344#. the environment variable, the second %s is3345#. its value.3346#.3347#: notes-utils.c:1443348#, c-format3349msgid "Bad %s value: '%s'"3350msgstr "Mauvaise valeur de %s : '%s'"33513352#: object.c:543353#, c-format3354msgid "invalid object type \"%s\""3355msgstr "type d'objet invalide \"%s\""33563357#: object.c:1733358#, c-format3359msgid "object %s is a %s, not a %s"3360msgstr "l'objet %s est de type %s, pas de type %s"33613362#: object.c:2333363#, c-format3364msgid "object %s has unknown type id %d"3365msgstr "l'objet %s a un id de type inconnu %d"33663367#: object.c:2463368#, c-format3369msgid "unable to parse object: %s"3370msgstr "impossible d'analyser l'objet : %s"33713372#: object.c:266 object.c:2773373#, c-format3374msgid "sha1 mismatch %s"3375msgstr "incohérence de sha1 %s"33763377#: packfile.c:5633378msgid "offset before end of packfile (broken .idx?)"3379msgstr "offset avant la fin du fichier paquet (.idx cassé ?)"33803381#: packfile.c:17453382#, c-format3383msgid "offset before start of pack index for %s (corrupt index?)"3384msgstr "offset avant le début de l'index de paquet pour %s (index corrompu ?)"33853386#: packfile.c:17493387#, c-format3388msgid "offset beyond end of pack index for %s (truncated index?)"3389msgstr ""3390"offset au delà de la fin de l'index de paquet pour %s (index tronqué ?)"33913392#: parse-options.c:6723393msgid "..."3394msgstr "..."33953396#: parse-options.c:6913397#, c-format3398msgid "usage: %s"3399msgstr "usage : %s"34003401#. TRANSLATORS: the colon here should align with the3402#. one in "usage: %s" translation.3403#.3404#: parse-options.c:6973405#, c-format3406msgid " or: %s"3407msgstr " ou : %s"34083409#: parse-options.c:7003410#, c-format3411msgid " %s"3412msgstr " %s"34133414#: parse-options.c:7393415msgid "-NUM"3416msgstr "-NUM"34173418#: parse-options-cb.c:443419#, c-format3420msgid "malformed expiration date '%s'"3421msgstr "date d'expiration malformée : '%s'"34223423#: parse-options-cb.c:1123424#, c-format3425msgid "malformed object name '%s'"3426msgstr "nom d'objet malformé '%s'"34273428#: path.c:8923429#, c-format3430msgid "Could not make %s writable by group"3431msgstr "Impossible de rendre %s inscriptible pour le groupe"34323433#: pathspec.c:1293434msgid "Escape character '\\' not allowed as last character in attr value"3435msgstr ""3436"Le caractère d'échappement '\\\\' interdit comme dernier caractère dans une "3437"valeur d'attribut"34383439#: pathspec.c:1473440msgid "Only one 'attr:' specification is allowed."3441msgstr "Une seule spécification 'attr:' est autorisée."34423443#: pathspec.c:1503444msgid "attr spec must not be empty"3445msgstr "un spécificateur d'attribut ne peut pas être vide"34463447#: pathspec.c:1933448#, c-format3449msgid "invalid attribute name %s"3450msgstr "nom d'attribut invalide %s"34513452#: pathspec.c:2583453msgid "global 'glob' and 'noglob' pathspec settings are incompatible"3454msgstr ""3455"les réglages de spécificateurs de chemin généraux 'glob' et 'noglob' sont "3456"incompatibles"34573458#: pathspec.c:2653459msgid ""3460"global 'literal' pathspec setting is incompatible with all other global "3461"pathspec settings"3462msgstr ""3463"le réglage global de spécificateur de chemin 'literal' est incompatible avec "3464"tous les autres réglages globaux de spécificateur de chemin"34653466#: pathspec.c:3053467msgid "invalid parameter for pathspec magic 'prefix'"3468msgstr "paramètre invalide pour le spécificateur magique de chemin 'prefix'"34693470#: pathspec.c:3263471#, c-format3472msgid "Invalid pathspec magic '%.*s' in '%s'"3473msgstr "La spécification magique de chemin '%.*s' est invalide dans '%s'"34743475#: pathspec.c:3313476#, c-format3477msgid "Missing ')' at the end of pathspec magic in '%s'"3478msgstr "')' manquante à la fin du spécificateur magique de chemin dans '%s'"34793480#: pathspec.c:3693481#, c-format3482msgid "Unimplemented pathspec magic '%c' in '%s'"3483msgstr "Spécificateur magique '%c' non implémenté dans '%s'"34843485#: pathspec.c:4283486#, c-format3487msgid "%s: 'literal' and 'glob' are incompatible"3488msgstr "%s : 'literal' et 'glob' sont incompatibles"34893490#: pathspec.c:4413491#, c-format3492msgid "%s: '%s' is outside repository"3493msgstr "%s : '%s' est hors du dépôt"34943495#: pathspec.c:5153496#, c-format3497msgid "'%s' (mnemonic: '%c')"3498msgstr "'%s' (mnémonique : '%c')"34993500#: pathspec.c:5253501#, c-format3502msgid "%s: pathspec magic not supported by this command: %s"3503msgstr ""3504"%s : le spécificateur magique de chemin n'est pas supporté par cette "3505"commande : %s"35063507#: pathspec.c:5923508#, c-format3509msgid "pathspec '%s' is beyond a symbolic link"3510msgstr "le chemin '%s' est au-delà d'un lien symbolique"35113512#: pkt-line.c:1043513msgid "flush packet write failed"3514msgstr "échec de l'écriture du vidage de paquet"35153516#: pkt-line.c:142 pkt-line.c:2283517msgid "protocol error: impossibly long line"3518msgstr "erreur de protocole : ligne impossiblement trop longue"35193520#: pkt-line.c:158 pkt-line.c:1603521msgid "packet write with format failed"3522msgstr "échec de l'écriture d'un paquet avec format"35233524#: pkt-line.c:1923525msgid "packet write failed - data exceeds max packet size"3526msgstr ""3527"échec de l'écriture d'un paquet ‑ les données dépassent la taille maximale "3528"d'un paquet"35293530#: pkt-line.c:199 pkt-line.c:2063531msgid "packet write failed"3532msgstr "échec de l'écriture d'un paquet"35333534#: pkt-line.c:2913535msgid "read error"3536msgstr "erreur de lecture"35373538#: pkt-line.c:2993539msgid "the remote end hung up unexpectedly"3540msgstr "L'hôte distant a fermé la connexion de manière inattendue"35413542#: pkt-line.c:3273543#, c-format3544msgid "protocol error: bad line length character: %.4s"3545msgstr "erreur de protocole : mauvais caractère de longueur de ligne : %.4s"35463547#: pkt-line.c:337 pkt-line.c:3423548#, c-format3549msgid "protocol error: bad line length %d"3550msgstr "erreur de protocole : mauvaise longueur de ligne %d"35513552#: pretty.c:9623553msgid "unable to parse --pretty format"3554msgstr "impossible d'analyser le format --pretty"35553556#: range-diff.c:483557msgid "could not start `log`"3558msgstr "impossible de démarrer `log`"35593560#: range-diff.c:513561msgid "could not read `log` output"3562msgstr "impossible de lire la sortie de `log`"35633564#: range-diff.c:66 sequencer.c:45403565#, c-format3566msgid "could not parse commit '%s'"3567msgstr "impossible d'analyser le commit '%s'"35683569#: range-diff.c:1963570msgid "failed to generate diff"3571msgstr "échec de la génération de diff"35723573#: range-diff.c:421 range-diff.c:4233574#, c-format3575msgid "could not parse log for '%s'"3576msgstr "impossible d'analyser le journal pour '%s'"35773578#: read-cache.c:15793579#, c-format3580msgid ""3581"index.version set, but the value is invalid.\n"3582"Using version %i"3583msgstr ""3584"version d'index renseignée, mais la valeur est invalide.\n"3585"Utilisation de la version %i"35863587#: read-cache.c:15893588#, c-format3589msgid ""3590"GIT_INDEX_VERSION set, but the value is invalid.\n"3591"Using version %i"3592msgstr ""3593"GIT_INDEX_VERSION est renseigné, mais la valeur est invalide.\n"3594"Utilisation de la version %i"35953596#: read-cache.c:2580 sequencer.c:4503 wrapper.c:658 builtin/merge.c:10833597#, c-format3598msgid "could not close '%s'"3599msgstr "impossible de fermer '%s'"36003601#: read-cache.c:2653 sequencer.c:2113 sequencer.c:33743602#, c-format3603msgid "could not stat '%s'"3604msgstr "stat impossible de '%s'"36053606#: read-cache.c:26663607#, c-format3608msgid "unable to open git dir: %s"3609msgstr "impossible d'ouvrir le répertoire git : %s"36103611#: read-cache.c:26783612#, c-format3613msgid "unable to unlink: %s"3614msgstr "échec lors de l'unlink : %s"36153616#: refs.c:1923617#, c-format3618msgid "%s does not point to a valid object!"3619msgstr "%s ne pointe pas sur un objet valide!"36203621#: refs.c:5793622#, c-format3623msgid "ignoring dangling symref %s"3624msgstr "symref pendant %s ignoré"36253626#: refs.c:581 ref-filter.c:20673627#, c-format3628msgid "ignoring broken ref %s"3629msgstr "réf cassé %s ignoré"36303631#: refs.c:6853632#, c-format3633msgid "could not open '%s' for writing: %s"3634msgstr "impossible d'ouvrir '%s' en écriture : %s"36353636#: refs.c:695 refs.c:7463637#, c-format3638msgid "could not read ref '%s'"3639msgstr "impossible de lire la réf '%s'"36403641#: refs.c:7013642#, c-format3643msgid "ref '%s' already exists"3644msgstr "la référence '%s' existe déjà"36453646#: refs.c:7063647#, c-format3648msgid "unexpected object ID when writing '%s'"3649msgstr "id d'objet inattendu pendant l'écriture de '%s'"36503651#: refs.c:714 sequencer.c:385 sequencer.c:2366 sequencer.c:24923652#: sequencer.c:2506 sequencer.c:2733 sequencer.c:4501 sequencer.c:45643653#: wrapper.c:6563654#, c-format3655msgid "could not write to '%s'"3656msgstr "impossible d'écrire dans '%s'"36573658#: refs.c:741 sequencer.c:4499 sequencer.c:4558 wrapper.c:225 wrapper.c:3953659#: builtin/am.c:7803660#, c-format3661msgid "could not open '%s' for writing"3662msgstr "impossible d'ouvrir '%s' en écriture"36633664#: refs.c:7483665#, c-format3666msgid "unexpected object ID when deleting '%s'"3667msgstr "id d'objet inattendu pendant la suppression de '%s'"36683669#: refs.c:8793670#, c-format3671msgid "log for ref %s has gap after %s"3672msgstr "le journal pour la réf %s contient un trou après %s"36733674#: refs.c:8853675#, c-format3676msgid "log for ref %s unexpectedly ended on %s"3677msgstr "le journal pour la réf %s s'arrête de manière inattendue sur %s"36783679#: refs.c:9433680#, c-format3681msgid "log for %s is empty"3682msgstr "le journal pour la réf %s est vide"36833684#: refs.c:10353685#, c-format3686msgid "refusing to update ref with bad name '%s'"3687msgstr "refus de mettre à jour une réf avec un nom cassé '%s'"36883689#: refs.c:11113690#, c-format3691msgid "update_ref failed for ref '%s': %s"3692msgstr "échec de update_ref pour la réf '%s' : %s"36933694#: refs.c:18533695#, c-format3696msgid "multiple updates for ref '%s' not allowed"3697msgstr "mises à jour multiples pour la réf '%s' non permises"36983699#: refs.c:18853700msgid "ref updates forbidden inside quarantine environment"3701msgstr "mises à jour des références interdites en environnement de quarantaine"37023703#: refs.c:1981 refs.c:20113704#, c-format3705msgid "'%s' exists; cannot create '%s'"3706msgstr "'%s' existe ; impossible de créer '%s'"37073708#: refs.c:1987 refs.c:20223709#, c-format3710msgid "cannot process '%s' and '%s' at the same time"3711msgstr "impossible de traiter '%s' et '%s' en même temps"37123713#: refs/files-backend.c:11913714#, c-format3715msgid "could not remove reference %s"3716msgstr "impossible de supprimer la référence %s"37173718#: refs/files-backend.c:1205 refs/packed-backend.c:15323719#: refs/packed-backend.c:15423720#, c-format3721msgid "could not delete reference %s: %s"3722msgstr "Impossible de supprimer la référence %s : %s"37233724#: refs/files-backend.c:1208 refs/packed-backend.c:15453725#, c-format3726msgid "could not delete references: %s"3727msgstr "impossible de supprimer les références : %s"37283729#: refspec.c:1373730#, c-format3731msgid "invalid refspec '%s'"3732msgstr "spécificateur de réference invalide : '%s'"37333734# à priori on parle d'une branche ici3735#: ref-filter.c:38 wt-status.c:18503736msgid "gone"3737msgstr "disparue"37383739#: ref-filter.c:393740#, c-format3741msgid "ahead %d"3742msgstr "en avance de %d"37433744#: ref-filter.c:403745#, c-format3746msgid "behind %d"3747msgstr "en retard de %d"37483749#: ref-filter.c:413750#, c-format3751msgid "ahead %d, behind %d"3752msgstr "en avance de %d, en retard de %d"37533754#: ref-filter.c:1373755#, c-format3756msgid "expected format: %%(color:<color>)"3757msgstr "format attendu : %%(color:<couleur>)"37583759#: ref-filter.c:1393760#, c-format3761msgid "unrecognized color: %%(color:%s)"3762msgstr "couleur non reconnue : %%(color:%s)"37633764#: ref-filter.c:1613765#, c-format3766msgid "Integer value expected refname:lstrip=%s"3767msgstr "Valeur entière attendue refname:lstrip=%s"37683769#: ref-filter.c:1653770#, c-format3771msgid "Integer value expected refname:rstrip=%s"3772msgstr "Valeur entière attendue refname:rstrip=%s"37733774#: ref-filter.c:1673775#, c-format3776msgid "unrecognized %%(%s) argument: %s"3777msgstr "argument %%(%s) non reconnu : %s"37783779#: ref-filter.c:2223780#, c-format3781msgid "%%(objecttype) does not take arguments"3782msgstr "%%(objecttype) n'accepte pas d'argument"37833784#: ref-filter.c:2343785#, c-format3786msgid "%%(objectsize) does not take arguments"3787msgstr "%%(objectsize) n'accepte pas d'argument"37883789#: ref-filter.c:2463790#, c-format3791msgid "%%(body) does not take arguments"3792msgstr "%%(body) n'accepte pas d'argument"37933794#: ref-filter.c:2553795#, c-format3796msgid "%%(subject) does not take arguments"3797msgstr "%%(subject) n'accepte pas d'argument"37983799#: ref-filter.c:2753800#, c-format3801msgid "unknown %%(trailers) argument: %s"3802msgstr "argument %%(trailers) inconnu : %s"38033804#: ref-filter.c:3043805#, c-format3806msgid "positive value expected contents:lines=%s"3807msgstr "valeur positive attendue contents:lines=%s"38083809#: ref-filter.c:3063810#, c-format3811msgid "unrecognized %%(contents) argument: %s"3812msgstr "argument %%(contents) non reconnu : %s"38133814#: ref-filter.c:3213815#, c-format3816msgid "positive value expected objectname:short=%s"3817msgstr "valeur positive attendue objectname:short=%s"38183819#: ref-filter.c:3253820#, c-format3821msgid "unrecognized %%(objectname) argument: %s"3822msgstr "argument %%(objectname) non reconnu : %s"38233824#: ref-filter.c:3553825#, c-format3826msgid "expected format: %%(align:<width>,<position>)"3827msgstr "format attendu : %%(align:<largeur>,<position>)"38283829#: ref-filter.c:3673830#, c-format3831msgid "unrecognized position:%s"3832msgstr "position non reconnue : %s"38333834#: ref-filter.c:3743835#, c-format3836msgid "unrecognized width:%s"3837msgstr "largeur non reconnue : %s"38383839#: ref-filter.c:3833840#, c-format3841msgid "unrecognized %%(align) argument: %s"3842msgstr "argument %%(align) non reconnu : %s"38433844#: ref-filter.c:3913845#, c-format3846msgid "positive width expected with the %%(align) atom"3847msgstr "valeur positive attendue avec l'atome %%(align)"38483849#: ref-filter.c:4093850#, c-format3851msgid "unrecognized %%(if) argument: %s"3852msgstr "argument %%(if) non reconnu : %s"38533854#: ref-filter.c:5053855#, c-format3856msgid "malformed field name: %.*s"3857msgstr "nom de champ malformé %.*s"38583859#: ref-filter.c:5323860#, c-format3861msgid "unknown field name: %.*s"3862msgstr "nom de champ inconnu : %.*s"38633864#: ref-filter.c:6563865#, c-format3866msgid "format: %%(if) atom used without a %%(then) atom"3867msgstr "format : atome %%(if) utilisé sans un atome %%(then)"38683869#: ref-filter.c:7193870#, c-format3871msgid "format: %%(then) atom used without an %%(if) atom"3872msgstr "format : atome %%(then) utilisé sans un atome %%(if)"38733874#: ref-filter.c:7213875#, c-format3876msgid "format: %%(then) atom used more than once"3877msgstr "format : atome %%(then) utilisé plus d'une fois"38783879#: ref-filter.c:7233880#, c-format3881msgid "format: %%(then) atom used after %%(else)"3882msgstr "format: atome %%(then) utilisé après %%(else)"38833884#: ref-filter.c:7513885#, c-format3886msgid "format: %%(else) atom used without an %%(if) atom"3887msgstr "format : atome %%(else) utilisé sans un atome %%(if)"38883889#: ref-filter.c:7533890#, c-format3891msgid "format: %%(else) atom used without a %%(then) atom"3892msgstr "format : atome %%(else) utilisé sans un atome %%(then)"38933894#: ref-filter.c:7553895#, c-format3896msgid "format: %%(else) atom used more than once"3897msgstr "format : atome %%(else) utilisé plus d'une fois"38983899#: ref-filter.c:7703900#, c-format3901msgid "format: %%(end) atom used without corresponding atom"3902msgstr "format : atome %%(end) utilisé sans atome correspondant"39033904#: ref-filter.c:8273905#, c-format3906msgid "malformed format string %s"3907msgstr "Chaîne de formatage mal formée %s"39083909#: ref-filter.c:14163910#, c-format3911msgid "(no branch, rebasing %s)"3912msgstr "(aucune branche, rebasage de %s)"39133914#: ref-filter.c:14193915#, c-format3916msgid "(no branch, rebasing detached HEAD %s)"3917msgstr "(aucune branche, rebasage de la HEAD détachée %s)"39183919#: ref-filter.c:14223920#, c-format3921msgid "(no branch, bisect started on %s)"3922msgstr "(aucune branche, bisect a démarré sur %s)"39233924#. TRANSLATORS: make sure this matches "HEAD3925#. detached at " in wt-status.c3926#.3927#: ref-filter.c:14303928#, c-format3929msgid "(HEAD detached at %s)"3930msgstr "(HEAD détachée sur %s)"39313932#. TRANSLATORS: make sure this matches "HEAD3933#. detached from " in wt-status.c3934#.3935#: ref-filter.c:14373936#, c-format3937msgid "(HEAD detached from %s)"3938msgstr "(HEAD détachée depuis %s)"39393940#: ref-filter.c:14413941msgid "(no branch)"3942msgstr "(aucune branche)"39433944#: ref-filter.c:1475 ref-filter.c:16233945#, c-format3946msgid "missing object %s for %s"3947msgstr "objet manquant %s pour %s"39483949#: ref-filter.c:14833950#, c-format3951msgid "parse_object_buffer failed on %s for %s"3952msgstr "echec de parse_object_buffer sur %s pour %s"39533954#: ref-filter.c:19803955#, c-format3956msgid "malformed object at '%s'"3957msgstr "objet malformé à '%s'"39583959#: ref-filter.c:20623960#, c-format3961msgid "ignoring ref with broken name %s"3962msgstr "réf avec un nom cassé %s ignoré"39633964#: ref-filter.c:23403965#, c-format3966msgid "format: %%(end) atom missing"3967msgstr "format: atome %%(end) manquant"39683969#: ref-filter.c:24443970#, c-format3971msgid "malformed object name %s"3972msgstr "nom d'objet malformé %s"39733974#: remote.c:6063975#, c-format3976msgid "Cannot fetch both %s and %s to %s"3977msgstr "Impossible de récupérer à la fois %s et %s pour %s"39783979#: remote.c:6103980#, c-format3981msgid "%s usually tracks %s, not %s"3982msgstr "%s suit habituellement %s, pas %s"39833984#: remote.c:6143985#, c-format3986msgid "%s tracks both %s and %s"3987msgstr "%s suit à la fois %s et %s"39883989#: remote.c:6223990msgid "Internal error"3991msgstr "Erreur interne"39923993#: remote.c:1536 remote.c:16373994msgid "HEAD does not point to a branch"3995msgstr "HEAD ne pointe pas sur une branche"39963997#: remote.c:15453998#, c-format3999msgid "no such branch: '%s'"4000msgstr "pas de branche '%s'"40014002#: remote.c:15484003#, c-format4004msgid "no upstream configured for branch '%s'"4005msgstr "aucune branche amont configurée pour la branche '%s'"40064007#: remote.c:15544008#, c-format4009msgid "upstream branch '%s' not stored as a remote-tracking branch"4010msgstr "la branche amont '%s' n'est pas stockée comme branche de suivi"40114012#: remote.c:15694013#, c-format4014msgid "push destination '%s' on remote '%s' has no local tracking branch"4015msgstr ""4016"la destination de poussée '%s' sur le serveur distant '%s' n'a pas de "4017"branche locale de suivi"40184019#: remote.c:15814020#, c-format4021msgid "branch '%s' has no remote for pushing"4022msgstr "la branche '%s' n'a aucune branche distante de poussée"40234024#: remote.c:15914025#, c-format4026msgid "push refspecs for '%s' do not include '%s'"4027msgstr "les références de spec pour '%s' n'incluent pas '%s'"40284029#: remote.c:16044030msgid "push has no destination (push.default is 'nothing')"4031msgstr "la poussée n'a pas de destination (push.default vaut 'nothing')"40324033#: remote.c:16264034msgid "cannot resolve 'simple' push to a single destination"4035msgstr ""4036"impossible de résoudre une poussée 'simple' pour une destination unique"40374038#: remote.c:19514039#, c-format4040msgid "Your branch is based on '%s', but the upstream is gone.\n"4041msgstr "Votre branche est basée sur '%s', mais la branche amont a disparu.\n"40424043#: remote.c:19554044msgid " (use \"git branch --unset-upstream\" to fixup)\n"4045msgstr " (utilisez \"git branch --unset-upstream\" pour corriger)\n"40464047#: remote.c:19584048#, c-format4049msgid "Your branch is up to date with '%s'.\n"4050msgstr "Votre branche est à jour avec '%s'.\n"40514052#: remote.c:19624053#, c-format4054msgid "Your branch and '%s' refer to different commits.\n"4055msgstr "Votre branche et '%s' font référence à des commits différents.\n"40564057#: remote.c:19654058#, c-format4059msgid " (use \"%s\" for details)\n"4060msgstr " (utilisez \"%s\" pour plus de détails)\n"40614062#: remote.c:19694063#, c-format4064msgid "Your branch is ahead of '%s' by %d commit.\n"4065msgid_plural "Your branch is ahead of '%s' by %d commits.\n"4066msgstr[0] "Votre branche est en avance sur '%s' de %d commit.\n"4067msgstr[1] "Votre branche est en avance sur '%s' de %d commits.\n"40684069#: remote.c:19754070msgid " (use \"git push\" to publish your local commits)\n"4071msgstr " (utilisez \"git push\" pour publier vos commits locaux)\n"40724073#: remote.c:19784074#, c-format4075msgid "Your branch is behind '%s' by %d commit, and can be fast-forwarded.\n"4076msgid_plural ""4077"Your branch is behind '%s' by %d commits, and can be fast-forwarded.\n"4078msgstr[0] ""4079"Votre branche est en retard sur '%s' de %d commit, et peut être mise à jour "4080"en avance rapide.\n"4081msgstr[1] ""4082"Votre branche est en retard sur '%s' de %d commits, et peut être mise à jour "4083"en avance rapide.\n"40844085#: remote.c:19864086msgid " (use \"git pull\" to update your local branch)\n"4087msgstr " (utilisez \"git pull\" pour mettre à jour votre branche locale)\n"40884089#: remote.c:19894090#, c-format4091msgid ""4092"Your branch and '%s' have diverged,\n"4093"and have %d and %d different commit each, respectively.\n"4094msgid_plural ""4095"Your branch and '%s' have diverged,\n"4096"and have %d and %d different commits each, respectively.\n"4097msgstr[0] ""4098"Votre branche et '%s' ont divergé,\n"4099"et ont %d et %d commit différent chacune respectivement.\n"4100msgstr[1] ""4101"Votre branche et '%s' ont divergé,\n"4102"et ont %d et %d commits différents chacune respectivement.\n"41034104#: remote.c:19994105msgid " (use \"git pull\" to merge the remote branch into yours)\n"4106msgstr ""4107" (utilisez \"git pull\" pour fusionner la branche distante dans la vôtre)\n"41084109#: replace-object.c:204110#, c-format4111msgid "bad replace ref name: %s"4112msgstr "mauvaise références de remplacement : %s"41134114#: replace-object.c:294115#, c-format4116msgid "duplicate replace ref: %s"4117msgstr "référence de remplacement dupliquée : %s"41184119#: replace-object.c:724120#, c-format4121msgid "replace depth too high for object %s"4122msgstr "profondeur de remplacement trop grande pour l'objet %s"41234124#: revision.c:23054125msgid "your current branch appears to be broken"4126msgstr "votre branche actuelle semble cassée"41274128#: revision.c:23084129#, c-format4130msgid "your current branch '%s' does not have any commits yet"4131msgstr "votre branche actuelle '%s' ne contient encore aucun commit"41324133#: revision.c:25054134msgid "--first-parent is incompatible with --bisect"4135msgstr "--first-parent est incompatible avec --bisect"41364137#: run-command.c:7284138msgid "open /dev/null failed"4139msgstr "échec de l'ouverture de /dev/null"41404141#: run-command.c:12714142#, c-format4143msgid ""4144"The '%s' hook was ignored because it's not set as executable.\n"4145"You can disable this warning with `git config advice.ignoredHook false`."4146msgstr ""4147"Le crochet '%s' a été ignoré parce qu'il n'est pas marqué comme exécutable.\n"4148"Vous pouvez désactiver cet avertissement avec `git config advice.ignoredHook "4149"false`."41504151#: send-pack.c:1424152msgid "unexpected flush packet while reading remote unpack status"4153msgstr ""4154"paquet de nettoyage inattendu pendant la lecture de l'état de dépaquetage "4155"distant"41564157#: send-pack.c:1444158#, c-format4159msgid "unable to parse remote unpack status: %s"4160msgstr "impossible d'analyser l'état de dépaquetage distant : %s"41614162#: send-pack.c:1464163#, c-format4164msgid "remote unpack failed: %s"4165msgstr "le dépaquetage a échoué : %s"41664167#: send-pack.c:3094168msgid "failed to sign the push certificate"4169msgstr "impossible de signer le certificat de poussée"41704171#: send-pack.c:4224172msgid "the receiving end does not support --signed push"4173msgstr "Le receveur ne gère pas les poussées avec --signed"41744175#: send-pack.c:4244176msgid ""4177"not sending a push certificate since the receiving end does not support --"4178"signed push"4179msgstr ""4180"pas d'envoi de certificat de poussée car le receveur ne gère pas les "4181"poussées avec --signed"41824183#: send-pack.c:4364184msgid "the receiving end does not support --atomic push"4185msgstr "Le receveur ne gère pas les poussées avec --atomic"41864187#: send-pack.c:4414188msgid "the receiving end does not support push options"4189msgstr "Le receveur ne gère pas les options de poussées"41904191#: sequencer.c:1774192#, c-format4193msgid "invalid commit message cleanup mode '%s'"4194msgstr "mode de nettoyage invalide de message de validation '%s'"41954196#: sequencer.c:2784197#, c-format4198msgid "could not delete '%s'"4199msgstr "Impossible de supprimer '%s'"42004201#: sequencer.c:3044202msgid "revert"4203msgstr "revert"42044205#: sequencer.c:3064206msgid "cherry-pick"4207msgstr "cherry-pick"42084209#: sequencer.c:3084210msgid "rebase -i"4211msgstr "rebase -i"42124213#: sequencer.c:3104214#, c-format4215msgid "unknown action: %d"4216msgstr "action inconnue : %d"42174218#: sequencer.c:3674219msgid ""4220"after resolving the conflicts, mark the corrected paths\n"4221"with 'git add <paths>' or 'git rm <paths>'"4222msgstr ""4223"après résolution des conflits, marquez les chemins corrigés\n"4224"avec 'git add <chemins>' ou 'git rm <chemins>'"42254226#: sequencer.c:3704227msgid ""4228"after resolving the conflicts, mark the corrected paths\n"4229"with 'git add <paths>' or 'git rm <paths>'\n"4230"and commit the result with 'git commit'"4231msgstr ""4232"après résolution des conflits, marquez les chemins corrigés\n"4233"avec 'git add <chemins>' ou 'git rm <chemins>'\n"4234"puis validez le résultat avec 'git commit'"42354236#: sequencer.c:383 sequencer.c:24884237#, c-format4238msgid "could not lock '%s'"4239msgstr "impossible de verrouiller '%s'"42404241#: sequencer.c:3904242#, c-format4243msgid "could not write eol to '%s'"4244msgstr "impossible d'écrire la fin de ligne dans '%s'"42454246#: sequencer.c:395 sequencer.c:2371 sequencer.c:2494 sequencer.c:25084247#: sequencer.c:27414248#, c-format4249msgid "failed to finalize '%s'"4250msgstr "échec lors de la finalisation de '%s'"42514252#: sequencer.c:418 sequencer.c:816 sequencer.c:1505 sequencer.c:23914253#: sequencer.c:2723 sequencer.c:2827 builtin/am.c:260 builtin/commit.c:7404254#: builtin/merge.c:10814255#, c-format4256msgid "could not read '%s'"4257msgstr "impossible de lire '%s'"42584259#: sequencer.c:4444260#, c-format4261msgid "your local changes would be overwritten by %s."4262msgstr "vos modifications locales seraient écrasées par %s."42634264#: sequencer.c:4484265msgid "commit your changes or stash them to proceed."4266msgstr "validez vos modifications ou les remiser pour continuer."42674268#: sequencer.c:4774269#, c-format4270msgid "%s: fast-forward"4271msgstr "%s : avance rapide"42724273#. TRANSLATORS: %s will be "revert", "cherry-pick" or4274#. "rebase -i".4275#.4276#: sequencer.c:5664277#, c-format4278msgid "%s: Unable to write new index file"4279msgstr "%s: Impossible d'écrire le nouveau fichier index"42804281#: sequencer.c:5824282msgid "unable to update cache tree"4283msgstr "impossible de mettre à jour l'arbre de cache"42844285#: sequencer.c:5954286msgid "could not resolve HEAD commit"4287msgstr "impossible de résoudre le commit HEAD"42884289#: sequencer.c:723 sequencer.c:7404290#, c-format4291msgid "could not parse '%s' (looking for '%s')"4292msgstr "impossible d'analyser '%s' (à la recherche de '%s')"42934294#: sequencer.c:7314295#, c-format4296msgid "bad quoting on %s value in '%s'"4297msgstr "Mauvaise citation sur la valeur %s dans '%s'"42984299#: sequencer.c:7474300#, c-format4301msgid "invalid date format '%s' in '%s'"4302msgstr "format de date invalide '%s' dans '%s'"43034304#: sequencer.c:7614305#, c-format4306msgid ""4307"you have staged changes in your working tree\n"4308"If these changes are meant to be squashed into the previous commit, run:\n"4309"\n"4310" git commit --amend %s\n"4311"\n"4312"If they are meant to go into a new commit, run:\n"4313"\n"4314" git commit %s\n"4315"\n"4316"In both cases, once you're done, continue with:\n"4317"\n"4318" git rebase --continue\n"4319msgstr ""4320"Vous avez des modifications indexées dans votre copie de travail.\n"4321"Si elles devaient être ajoutées dans le commit précédent, lancez :\n"4322"\n"4323" git commit --amend %s\n"4324"\n"4325"Si elles devaient aller dans un nouveau commit, lancez :\n"4326"\n"4327" git commit %s\n"4328"\n"4329"Dans les deux cas, une fois fini, continuez avec :\n"4330"\n"4331" git rebase --continue\n"43324333#: sequencer.c:8304334msgid "writing root commit"4335msgstr "écriture du commit racine"43364337#: sequencer.c:10554338msgid "'prepare-commit-msg' hook failed"4339msgstr "échec du crochet 'prepare-commit-msg'"43404341#: sequencer.c:10624342msgid ""4343"Your name and email address were configured automatically based\n"4344"on your username and hostname. Please check that they are accurate.\n"4345"You can suppress this message by setting them explicitly. Run the\n"4346"following command and follow the instructions in your editor to edit\n"4347"your configuration file:\n"4348"\n"4349" git config --global --edit\n"4350"\n"4351"After doing this, you may fix the identity used for this commit with:\n"4352"\n"4353" git commit --amend --reset-author\n"4354msgstr ""4355"Votre nom et votre adresse courriel ont été configurés automatiquement en "4356"se\n"4357"fondant sur votre nom d'utilisateur et le nom de votre machine. Veuillez \n"4358"vérifier qu'ils sont corrects. Vous pouvez supprimer ce message en les \n"4359"paramétrant explicitement. Lancez les commandes suivantes et suivez les\n"4360"instruction dans votre éditeur pour éditer votre fichier de configuration :\n"4361"\n"4362" git config --global --edit\n"4363"\n"4364"Après ceci, vous pouvez corriger l'identité utilisée pour cette validation "4365"avec :\n"4366"\n"4367" git commit --amend --reset-author\n"43684369#: sequencer.c:10754370msgid ""4371"Your name and email address were configured automatically based\n"4372"on your username and hostname. Please check that they are accurate.\n"4373"You can suppress this message by setting them explicitly:\n"4374"\n"4375" git config --global user.name \"Your Name\"\n"4376" git config --global user.email you@example.com\n"4377"\n"4378"After doing this, you may fix the identity used for this commit with:\n"4379"\n"4380" git commit --amend --reset-author\n"4381msgstr ""4382"Votre nom et votre adresse courriel ont été configurés automatiquement en se "4383"fondant\n"4384"sur votre nom d'utilisateur et le nom de votre machine. Veuillez vérifier "4385"qu'ils sont corrects.\n"4386"Vous pouvez supprimer ce message en les paramétrant explicitement :\n"4387"\n"4388" git config --global user.name \"Votre Nom\"\n"4389" git config --global user.email vous@exemple.com\n"4390"\n"4391"Après ceci, vous pouvez corriger l'identité utilisée pour ce commit avec :\n"4392"\n"4393" git commit --amend --reset-author\n"43944395#: sequencer.c:11154396msgid "couldn't look up newly created commit"4397msgstr "impossible de retrouver le commit nouvellement créé"43984399#: sequencer.c:11174400msgid "could not parse newly created commit"4401msgstr "impossible d'analyser le commit nouvellement créé"44024403#: sequencer.c:11634404msgid "unable to resolve HEAD after creating commit"4405msgstr "impossible de résoudre HEAD après création du commit"44064407#: sequencer.c:11654408msgid "detached HEAD"4409msgstr "HEAD détachée"44104411#: sequencer.c:11694412msgid " (root-commit)"4413msgstr " (commit racine)"44144415#: sequencer.c:11904416msgid "could not parse HEAD"4417msgstr "impossible de lire HEAD"44184419#: sequencer.c:11924420#, c-format4421msgid "HEAD %s is not a commit!"4422msgstr "HEAD %s n'est pas un commit !"44234424#: sequencer.c:1196 builtin/commit.c:15284425msgid "could not parse HEAD commit"4426msgstr "impossible d'analyser le commit HEAD"44274428#: sequencer.c:1247 sequencer.c:18454429msgid "unable to parse commit author"4430msgstr "impossible d'analyser l'auteur du commit"44314432#: sequencer.c:1257 builtin/am.c:1632 builtin/merge.c:6754433msgid "git write-tree failed to write a tree"4434msgstr "git write-tree a échoué à écrire un arbre"44354436#: sequencer.c:1274 sequencer.c:13294437#, c-format4438msgid "unable to read commit message from '%s'"4439msgstr "impossible de lire le message de validation de '%s'"44404441#: sequencer.c:1296 builtin/am.c:1653 builtin/commit.c:1631 builtin/merge.c:8554442#: builtin/merge.c:8804443msgid "failed to write commit object"4444msgstr "échec de l'écriture de l'objet commit"44454446#: sequencer.c:13564447#, c-format4448msgid "could not parse commit %s"4449msgstr "impossible d'analyser le commit %s"44504451#: sequencer.c:13614452#, c-format4453msgid "could not parse parent commit %s"4454msgstr "impossible d'analyser le commit parent %s"44554456#: sequencer.c:1457 sequencer.c:15654457#, c-format4458msgid "unknown command: %d"4459msgstr "commande inconnue : %d"44604461#: sequencer.c:1512 sequencer.c:15374462#, c-format4463msgid "This is a combination of %d commits."4464msgstr "Ceci est la combinaison de %d commits."44654466#: sequencer.c:1522 sequencer.c:45204467msgid "need a HEAD to fixup"4468msgstr "une HEAD est nécessaire à la correction"44694470#: sequencer.c:1524 sequencer.c:27684471msgid "could not read HEAD"4472msgstr "Impossible de lire HEAD"44734474#: sequencer.c:15264475msgid "could not read HEAD's commit message"4476msgstr "impossible de lire le message de validation de HEAD"44774478#: sequencer.c:15324479#, c-format4480msgid "cannot write '%s'"4481msgstr "impossible d'écrire '%s'"44824483#: sequencer.c:1539 git-rebase--preserve-merges.sh:4414484msgid "This is the 1st commit message:"4485msgstr "Ceci est le premier message de validation :"44864487#: sequencer.c:15474488#, c-format4489msgid "could not read commit message of %s"4490msgstr "impossible de lire le message de validation de %s"44914492#: sequencer.c:15544493#, c-format4494msgid "This is the commit message #%d:"4495msgstr "Ceci est le message de validation numéro %d :"44964497#: sequencer.c:15604498#, c-format4499msgid "The commit message #%d will be skipped:"4500msgstr "Le message de validation %d sera ignoré :"45014502#: sequencer.c:16434503msgid "your index file is unmerged."4504msgstr "votre fichier d'index n'est pas fusionné."45054506#: sequencer.c:16504507msgid "cannot fixup root commit"4508msgstr "impossible de réparer le commit racine"45094510#: sequencer.c:16694511#, c-format4512msgid "commit %s is a merge but no -m option was given."4513msgstr "le commit %s est une fusion mais l'option -m n'a pas été spécifiée."45144515#: sequencer.c:16774516#, c-format4517msgid "commit %s does not have parent %d"4518msgstr "le commit %s n'a pas de parent %d"45194520#: sequencer.c:16814521#, c-format4522msgid "mainline was specified but commit %s is not a merge."4523msgstr ""4524"une branche principale a été spécifiée mais le commit %s n'est pas une "4525"fusion."45264527#: sequencer.c:16874528#, c-format4529msgid "cannot get commit message for %s"4530msgstr "impossible d'obtenir un message de validation pour %s"45314532#. TRANSLATORS: The first %s will be a "todo" command like4533#. "revert" or "pick", the second %s a SHA1.4534#: sequencer.c:17064535#, c-format4536msgid "%s: cannot parse parent commit %s"4537msgstr "%s : impossible d'analyser le commit parent %s"45384539#: sequencer.c:17714540#, c-format4541msgid "could not rename '%s' to '%s'"4542msgstr "impossible de renommer '%s' en '%s'"45434544#: sequencer.c:18264545#, c-format4546msgid "could not revert %s... %s"4547msgstr "impossible d'annuler %s... %s"45484549#: sequencer.c:18274550#, c-format4551msgid "could not apply %s... %s"4552msgstr "impossible d'appliquer %s... %s"45534554#: sequencer.c:18854555#, c-format4556msgid "git %s: failed to read the index"4557msgstr "git %s : échec à la lecture de l'index"45584559#: sequencer.c:18924560#, c-format4561msgid "git %s: failed to refresh the index"4562msgstr "git %s : échec du rafraîchissement de l'index"45634564#: sequencer.c:19724565#, c-format4566msgid "%s does not accept arguments: '%s'"4567msgstr "%s n'accepte pas d'argument : '%s'"45684569#: sequencer.c:19814570#, c-format4571msgid "missing arguments for %s"4572msgstr "argument manquant pour %s"45734574#: sequencer.c:20404575#, c-format4576msgid "invalid line %d: %.*s"4577msgstr "ligne %d invalide : %.*s"45784579#: sequencer.c:20484580#, c-format4581msgid "cannot '%s' without a previous commit"4582msgstr "'%s' impossible avec le commit précédent"45834584#: sequencer.c:2096 sequencer.c:4277 sequencer.c:43334585#, c-format4586msgid "could not read '%s'."4587msgstr "impossible de lire '%s'."45884589#: sequencer.c:21194590msgid "please fix this using 'git rebase --edit-todo'."4591msgstr "veuillez corriger ceci en utilisant 'git rebase --edit-todo'."45924593#: sequencer.c:21214594#, c-format4595msgid "unusable instruction sheet: '%s'"4596msgstr "feuille d'instruction inutilisable : '%s'"45974598#: sequencer.c:21264599msgid "no commits parsed."4600msgstr "aucun commit analysé."46014602#: sequencer.c:21374603msgid "cannot cherry-pick during a revert."4604msgstr "impossible de picorer pendant l'annulation d'un commit."46054606#: sequencer.c:21394607msgid "cannot revert during a cherry-pick."4608msgstr "impossible d'annuler un commit pendant un picorage."46094610#: sequencer.c:22094611#, c-format4612msgid "invalid value for %s: %s"4613msgstr "valeur invalide pour %s : %s"46144615#: sequencer.c:22854616msgid "unusable squash-onto"4617msgstr "\"écrase-sur\" inutilisable"46184619#: sequencer.c:23014620#, c-format4621msgid "malformed options sheet: '%s'"4622msgstr "feuille d'options malformée : %s"46234624#: sequencer.c:2335 sequencer.c:37754625msgid "empty commit set passed"4626msgstr "l'ensemble de commits spécifié est vide"46274628#: sequencer.c:23434629msgid "a cherry-pick or revert is already in progress"4630msgstr "un picorage ou un retour est déjà en cours"46314632#: sequencer.c:23444633msgid "try \"git cherry-pick (--continue | --quit | --abort)\""4634msgstr "essayez \"git cherry-pick (--continue|--quit|-- abort)\""46354636#: sequencer.c:23474637#, c-format4638msgid "could not create sequencer directory '%s'"4639msgstr "impossible de créer le répertoire de séquenceur '%s'"46404641#: sequencer.c:23614642msgid "could not lock HEAD"4643msgstr "impossible de verrouiller HEAD"46444645#: sequencer.c:2416 sequencer.c:35434646msgid "no cherry-pick or revert in progress"4647msgstr "aucun picorage ou retour en cours"46484649#: sequencer.c:24184650msgid "cannot resolve HEAD"4651msgstr "impossible de résoudre HEAD"46524653#: sequencer.c:2420 sequencer.c:24554654msgid "cannot abort from a branch yet to be born"4655msgstr "impossible d'abandonner depuis une branche non encore créée"46564657#: sequencer.c:2441 builtin/grep.c:7214658#, c-format4659msgid "cannot open '%s'"4660msgstr "impossible d'ouvrir '%s'"46614662#: sequencer.c:24434663#, c-format4664msgid "cannot read '%s': %s"4665msgstr "impossible de lire '%s' : %s"46664667#: sequencer.c:24444668msgid "unexpected end of file"4669msgstr "fin de fichier inattendue"46704671#: sequencer.c:24504672#, c-format4673msgid "stored pre-cherry-pick HEAD file '%s' is corrupt"4674msgstr "le fichier HEAD de préparation de picorage '%s' est corrompu"46754676#: sequencer.c:24614677msgid "You seem to have moved HEAD. Not rewinding, check your HEAD!"4678msgstr ""4679"Vous semblez avoir déplacé la HEAD. Pas de rembobinage, vérifiez votre HEAD !"46804681#: sequencer.c:2565 sequencer.c:34614682#, c-format4683msgid "could not update %s"4684msgstr "impossible de mettre à jour %s"46854686#: sequencer.c:2603 sequencer.c:34414687msgid "cannot read HEAD"4688msgstr "impossible de lire HEAD"46894690#: sequencer.c:26184691#, c-format4692msgid "unable to copy '%s' to '%s'"4693msgstr "impossible de copier '%s' vers '%s'"46944695#: sequencer.c:26264696#, c-format4697msgid ""4698"You can amend the commit now, with\n"4699"\n"4700" git commit --amend %s\n"4701"\n"4702"Once you are satisfied with your changes, run\n"4703"\n"4704" git rebase --continue\n"4705msgstr ""4706"Vous pouvez corriger le commit maintenant, avec\n"4707"\n"4708" git commit --amend %s\n"4709"\n"4710"après avoir réalisé vos modifications, lancez\n"4711"\n"4712" git rebase --continue\n"47134714#: sequencer.c:26364715#, c-format4716msgid "Could not apply %s... %.*s"4717msgstr "impossible d'appliquer %s... %.*s"47184719#: sequencer.c:26434720#, c-format4721msgid "Could not merge %.*s"4722msgstr "Impossible de fusionner %.*s"47234724#: sequencer.c:2654 sequencer.c:2658 builtin/difftool.c:6404725#, c-format4726msgid "could not copy '%s' to '%s'"4727msgstr "impossible de copier '%s' vers '%s'"47284729#: sequencer.c:2680 sequencer.c:30954730msgid "could not read index"4731msgstr "impossible de lire l'index"47324733#: sequencer.c:26854734#, c-format4735msgid ""4736"execution failed: %s\n"4737"%sYou can fix the problem, and then run\n"4738"\n"4739" git rebase --continue\n"4740"\n"4741msgstr ""4742"échec d'exécution : %s\n"4743"%sVous pouvez corriger le problème, puis lancer\n"4744"\n"4745"git rebase --continue\n"4746"\n"47474748#: sequencer.c:26914749msgid "and made changes to the index and/or the working tree\n"4750msgstr "et a mis à jour l'index ou l'arbre de travail\n"47514752#: sequencer.c:26974753#, c-format4754msgid ""4755"execution succeeded: %s\n"4756"but left changes to the index and/or the working tree\n"4757"Commit or stash your changes, and then run\n"4758"\n"4759" git rebase --continue\n"4760"\n"4761msgstr ""4762"L'exécution a réussi : %s\n"4763"mais a laissé des modifications dans l'index ou la copie de travail\n"4764"Validez ou remisez vos modification, puis lancez\n"4765"\n"4766" git rebase --continue\n"4767"\n"47684769#: sequencer.c:27584770#, c-format4771msgid "illegal label name: '%.*s'"4772msgstr "nom de label illégal '%.*s'"47734774#: sequencer.c:28104775msgid "writing fake root commit"4776msgstr "écriture d'un commit racine bidon"47774778#: sequencer.c:28154779msgid "writing squash-onto"4780msgstr "écriture de 'écraser-sur'"47814782#: sequencer.c:28504783#, c-format4784msgid "failed to find tree of %s"4785msgstr "impossible de trouver l'arbre de %s"47864787#: sequencer.c:28684788msgid "could not write index"4789msgstr "impossible d'écrire l'index"47904791#: sequencer.c:28954792#, c-format4793msgid "could not resolve '%s'"4794msgstr "impossible de résoudre '%s'"47954796#: sequencer.c:29214797msgid "cannot merge without a current revision"4798msgstr "impossible de fusionner avec une révision courante"47994800#: sequencer.c:29434801#, c-format4802msgid "unable to parse '%.*s'"4803msgstr "impossible d'analyser '%.*s'"48044805#: sequencer.c:29524806#, c-format4807msgid "nothing to merge: '%.*s'"4808msgstr "rien à fusionner : '%.*s'"48094810#: sequencer.c:29644811msgid "octopus merge cannot be executed on top of a [new root]"4812msgstr ""4813"une fusion octopus ne peut pas être exécutée par dessus une nouvelle racine"48144815#: sequencer.c:29794816#, c-format4817msgid "could not get commit message of '%s'"4818msgstr "impossible de lire le message de validation de '%s'"48194820#: sequencer.c:2989 sequencer.c:30154821#, c-format4822msgid "could not write '%s'"4823msgstr "impossible d'écrire '%s'"48244825#: sequencer.c:31274826#, c-format4827msgid "could not even attempt to merge '%.*s'"4828msgstr "impossible de seulement essayer de fusionner '%.*s'"48294830#: sequencer.c:31434831msgid "merge: Unable to write new index file"4832msgstr "fusion : Impossible d'écrire le nouveau fichier index"48334834#: sequencer.c:32114835#, c-format4836msgid "Applied autostash.\n"4837msgstr "Autoremisage appliqué.\n"48384839#: sequencer.c:32234840#, c-format4841msgid "cannot store %s"4842msgstr "impossible de stocker %s"48434844#: sequencer.c:3226 git-rebase.sh:1884845#, c-format4846msgid ""4847"Applying autostash resulted in conflicts.\n"4848"Your changes are safe in the stash.\n"4849"You can run \"git stash pop\" or \"git stash drop\" at any time.\n"4850msgstr ""4851"L'application de l'autoremisage a provoqué des conflits\n"4852"Vos modifications sont à l'abri dans la remise.\n"4853"Vous pouvez lancer \"git stash pop\" ou \"git stash drop\" à tout moment.\n"48544855#: sequencer.c:32574856#, c-format4857msgid ""4858"Could not execute the todo command\n"4859"\n"4860" %.*s\n"4861"It has been rescheduled; To edit the command before continuing, please\n"4862"edit the todo list first:\n"4863"\n"4864" git rebase --edit-todo\n"4865" git rebase --continue\n"4866msgstr ""4867"Impossible d'exécuter la commande\n"4868"\n"4869" %.*s\n"4870"Elle a été reprogrammée ; pour éditer la commande avant de poursuivre,\n"4871"veuillez éditer la liste de commandes en premier :\n"4872"\n"4873" git rebase --edit-todo\n"4874" git rebase --continue\n"48754876#: sequencer.c:33254877#, c-format4878msgid "Stopped at %s... %.*s\n"4879msgstr "arrêt à %s... %.*s\n"48804881#: sequencer.c:34044882#, c-format4883msgid "unknown command %d"4884msgstr "commande inconnue %d"48854886#: sequencer.c:34494887msgid "could not read orig-head"4888msgstr "impossible de lire orig-head"48894890#: sequencer.c:3454 sequencer.c:45174891msgid "could not read 'onto'"4892msgstr "impossible de lire 'onto'"48934894#: sequencer.c:34684895#, c-format4896msgid "could not update HEAD to %s"4897msgstr "impossible de mettre à jour HEAD sur %s"48984899#: sequencer.c:35544900msgid "cannot rebase: You have unstaged changes."4901msgstr "impossible de rebaser : vous avez des modifications non indexées."49024903#: sequencer.c:35634904msgid "cannot amend non-existing commit"4905msgstr "impossible de corriger un commit non-existant"49064907#: sequencer.c:35654908#, c-format4909msgid "invalid file: '%s'"4910msgstr "fichier invalide : '%s'"49114912#: sequencer.c:35674913#, c-format4914msgid "invalid contents: '%s'"4915msgstr "contenu invalide : '%s'"49164917#: sequencer.c:35704918msgid ""4919"\n"4920"You have uncommitted changes in your working tree. Please, commit them\n"4921"first and then run 'git rebase --continue' again."4922msgstr ""4923"\n"4924"Vous avez des modifications non validées dans votre copie de travail.\n"4925"Veuillez les valider d'abord, puis relancer 'git rebase --continue'."49264927#: sequencer.c:3595 sequencer.c:36334928#, c-format4929msgid "could not write file: '%s'"4930msgstr "impossible d'écrire le fichier : '%s'"49314932#: sequencer.c:36484933msgid "could not remove CHERRY_PICK_HEAD"4934msgstr "impossible de supprimer CHERRY_PICK_HEAD"49354936#: sequencer.c:36554937msgid "could not commit staged changes."4938msgstr "impossible de valider les modifications indexées."49394940#: sequencer.c:37524941#, c-format4942msgid "%s: can't cherry-pick a %s"4943msgstr "%s : impossible de picorer un %s"49444945#: sequencer.c:37564946#, c-format4947msgid "%s: bad revision"4948msgstr "%s : mauvaise révision"49494950#: sequencer.c:37914951msgid "can't revert as initial commit"4952msgstr "impossible d'annuler en tant que commit initial"49534954#: sequencer.c:42384955msgid "make_script: unhandled options"4956msgstr "make_script : options non gérées"49574958#: sequencer.c:42414959msgid "make_script: error preparing revisions"4960msgstr "make_script : erreur lors de la préparation des révisions"49614962#: sequencer.c:4281 sequencer.c:43374963#, c-format4964msgid "unusable todo list: '%s'"4965msgstr "liste à faire inutilisable : '%s'"49664967#: sequencer.c:43964968#, c-format4969msgid ""4970"unrecognized setting %s for option rebase.missingCommitsCheck. Ignoring."4971msgstr ""4972"paramètre non reconnu %s pour l'option rebase.missingCommitsCheck. Ignoré."49734974#: sequencer.c:44664975#, c-format4976msgid ""4977"Warning: some commits may have been dropped accidentally.\n"4978"Dropped commits (newer to older):\n"4979msgstr ""4980"Attention : certains commits ont pu être accidentellement supprimés.\n"4981"Commits supprimés (du plus jeune au plus vieux) :\n"49824983#: sequencer.c:44734984#, c-format4985msgid ""4986"To avoid this message, use \"drop\" to explicitly remove a commit.\n"4987"\n"4988"Use 'git config rebase.missingCommitsCheck' to change the level of "4989"warnings.\n"4990"The possible behaviours are: ignore, warn, error.\n"4991"\n"4992msgstr ""4993"Pour éviter ce message, utilisez \"drop\" pour supprimer explicitement un "4994"commit.\n"4995"\n"4996"Utilisez 'git config rebase.missingCommitsCheck' pour changer le niveau "4997"d'avertissements.\n"4998"Les comportements disponibles sont : ignore, warn, error.\n"4999"\n"50005001#: sequencer.c:44865002#, c-format5003msgid ""5004"You can fix this with 'git rebase --edit-todo' and then run 'git rebase --"5005"continue'.\n"5006"Or you can abort the rebase with 'git rebase --abort'.\n"5007msgstr ""5008"Vous pouvez corriger ceci avec 'git rebase --edit-todo' puis lancez 'git "5009"rebase --continue'.\n"5010"Ou vous pouvez abandonner le rebasage avec 'git rebase --abort'.\n"50115012#: sequencer.c:46605013msgid "the script was already rearranged."5014msgstr "le script a déjà été réarrangé."50155016#: setup.c:1235017#, c-format5018msgid "'%s' is outside repository"5019msgstr "'%s' est hors du dépôt"50205021#: setup.c:1725022#, c-format5023msgid ""5024"%s: no such path in the working tree.\n"5025"Use 'git <command> -- <path>...' to specify paths that do not exist locally."5026msgstr ""5027"%s : ce chemin n'existe pas dans la copie de travail.\n"5028"Utilisez 'git <commande> -- <chemin>...' pour spécifier des chemins qui "5029"n'existent pas localement."50305031#: setup.c:1855032#, c-format5033msgid ""5034"ambiguous argument '%s': unknown revision or path not in the working tree.\n"5035"Use '--' to separate paths from revisions, like this:\n"5036"'git <command> [<revision>...] -- [<file>...]'"5037msgstr ""5038"argument '%s' ambigu : révision inconnue ou chemin inexistant.\n"5039"Utilisez '--' pour séparer les chemins des révisions, comme ceci :\n"5040"'git <commande> [<révision>...] -- [<chemin>...]'"50415042#: setup.c:2345043#, c-format5044msgid "option '%s' must come before non-option arguments"5045msgstr ""5046"l'option '%s' doit être présente avant les arguments qui ne sont pas des "5047"options"50485049#: setup.c:2535050#, c-format5051msgid ""5052"ambiguous argument '%s': both revision and filename\n"5053"Use '--' to separate paths from revisions, like this:\n"5054"'git <command> [<revision>...] -- [<file>...]'"5055msgstr ""5056"argument '%s' ambigu : révision et chemin spécifiés.\n"5057"Utilisez '--' pour séparer les chemins des révisions, comme ceci :\n"5058"'git <commande> [<révision>...] -- [<chemin>...]'"50595060#: setup.c:3895061msgid "unable to set up work tree using invalid config"5062msgstr ""5063"impossible de mettre en place le répertoire de travail en utilisant une "5064"configuration invalide"50655066#: setup.c:3935067msgid "this operation must be run in a work tree"5068msgstr "Cette opération doit être effectuée dans un arbre de travail"50695070#: setup.c:5035071#, c-format5072msgid "Expected git repo version <= %d, found %d"5073msgstr "Version attendue du dépôt git <= %d, %d trouvée"50745075#: setup.c:5115076msgid "unknown repository extensions found:"5077msgstr "extensions de dépôt inconnues trouvées :"50785079#: setup.c:5305080#, c-format5081msgid "error opening '%s'"5082msgstr "erreur à l'ouverture de '%s'"50835084#: setup.c:5325085#, c-format5086msgid "too large to be a .git file: '%s'"5087msgstr "trop gros pour être une fichier .git : '%s'"50885089#: setup.c:5345090#, c-format5091msgid "error reading %s"5092msgstr "erreur à la lecture de %s"50935094#: setup.c:5365095#, c-format5096msgid "invalid gitfile format: %s"5097msgstr "format de fichier git invalide : %s"50985099#: setup.c:5385100#, c-format5101msgid "no path in gitfile: %s"5102msgstr "aucun chemin dans le fichier git : %s"51035104#: setup.c:5405105#, c-format5106msgid "not a git repository: %s"5107msgstr "ce n'est pas un dépôt git : %s"51085109#: setup.c:6395110#, c-format5111msgid "'$%s' too big"5112msgstr "'$%s' trop gros"51135114#: setup.c:6535115#, c-format5116msgid "not a git repository: '%s'"5117msgstr "ce n'est pas un dépôt git : '%s'"51185119#: setup.c:682 setup.c:684 setup.c:7155120#, c-format5121msgid "cannot chdir to '%s'"5122msgstr "impossible de se déplacer vers le répertoire (chdir) '%s'"51235124#: setup.c:687 setup.c:743 setup.c:753 setup.c:792 setup.c:800 setup.c:8155125msgid "cannot come back to cwd"5126msgstr "impossible de revenir au répertoire de travail courant"51275128#: setup.c:8135129#, c-format5130msgid "not a git repository (or any of the parent directories): %s"5131msgstr "ni ceci ni aucun de ses répertoires parents n'est un dépôt git : %s"51325133#: setup.c:8245134#, c-format5135msgid "failed to stat '%*s%s%s'"5136msgstr "échec du stat de '%*s%s%s'"51375138#: setup.c:10545139msgid "Unable to read current working directory"5140msgstr "Impossible d'accéder au répertoire de travail courant"51415142#: setup.c:1066 setup.c:10725143#, c-format5144msgid "cannot change to '%s'"5145msgstr "impossible de modifier en '%s'"51465147#: setup.c:10855148#, c-format5149msgid ""5150"not a git repository (or any parent up to mount point %s)\n"5151"Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set)."5152msgstr ""5153"ni ceci ni aucun de ses répertoires parents (jusqu'au point de montage %s) "5154"n'est un dépôt git\n"5155"Arrêt à la limite du système de fichiers (GIT_DISCOVERY_ACROSS_FILESYSTEM "5156"n'est pas défini)."51575158#: setup.c:11685159#, c-format5160msgid ""5161"problem with core.sharedRepository filemode value (0%.3o).\n"5162"The owner of files must always have read and write permissions."5163msgstr ""5164"problème avec la valeur de core.sharedRepository (0%.3o).\n"5165"Le propriétaire des fichiers doit toujours avoir les droits en lecture et "5166"écriture."51675168#: setup.c:12115169msgid "open /dev/null or dup failed"5170msgstr "échec de l'ouverture ou au dup de /dev/null"51715172#: setup.c:12265173msgid "fork failed"5174msgstr "échec de la bifurcation"51755176#: setup.c:12315177msgid "setsid failed"5178msgstr "échec du setsid"51795180#: sha1-file.c:3815181#, c-format5182msgid "object directory %s does not exist; check .git/objects/info/alternates"5183msgstr ""5184"le répertoire objet %s n'existe pas ; vérifiez .git/objects/info/alternates"51855186#: sha1-file.c:4325187#, c-format5188msgid "unable to normalize alternate object path: %s"5189msgstr "impossible de normaliser le chemin d'objet alternatif : %s"51905191#: sha1-file.c:5035192#, c-format5193msgid "%s: ignoring alternate object stores, nesting too deep"5194msgstr "%s : magasins d'objets alternatifs ignorés, récursion trop profonde"51955196#: sha1-file.c:5105197#, c-format5198msgid "unable to normalize object directory: %s"5199msgstr "impossible de normaliser le répertoire d'objet : %s"52005201#: sha1-file.c:5655202msgid "unable to fdopen alternates lockfile"5203msgstr "impossible d'ouvrir (fdopen) le fichier verrou des alternatives"52045205#: sha1-file.c:5835206msgid "unable to read alternates file"5207msgstr "lecture du fichier d'alternatives impossible"52085209#: sha1-file.c:5905210msgid "unable to move new alternates file into place"5211msgstr "impossible de déplacer le nouveau fichier d'alternative"52125213#: sha1-file.c:6255214#, c-format5215msgid "path '%s' does not exist"5216msgstr "le chemin '%s' n'existe pas"52175218#: sha1-file.c:6515219#, c-format5220msgid "reference repository '%s' as a linked checkout is not supported yet."5221msgstr ""5222"extraire le dépôt de référence '%s' comme une extraction liée n'est pas "5223"encore supporté."52245225#: sha1-file.c:6575226#, c-format5227msgid "reference repository '%s' is not a local repository."5228msgstr "le dépôt de référence '%s' n'est pas un dépôt local."52295230#: sha1-file.c:6635231#, c-format5232msgid "reference repository '%s' is shallow"5233msgstr "le dépôt de référence '%s' est superficiel"52345235#: sha1-file.c:6715236#, c-format5237msgid "reference repository '%s' is grafted"5238msgstr "le dépôt de référence '%s' est greffé"52395240#: sha1-file.c:7815241#, c-format5242msgid "attempting to mmap %<PRIuMAX> over limit %<PRIuMAX>"5243msgstr "essai de mmap %<PRIuMAX> au delà de la limite %<PRIuMAX>"52445245#: sha1-file.c:8065246msgid "mmap failed"5247msgstr "échec de mmap"52485249#: sha1-file.c:9735250#, c-format5251msgid "object file %s is empty"5252msgstr "le fichier objet %s est vide"52535254#: sha1-file.c:1093 sha1-file.c:22065255#, c-format5256msgid "corrupt loose object '%s'"5257msgstr "objet libre corrompu '%s'"52585259#: sha1-file.c:1095 sha1-file.c:22105260#, c-format5261msgid "garbage at end of loose object '%s'"5262msgstr "données incorrectes à la fin de l'objet libre '%s'"52635264#: sha1-file.c:11375265msgid "invalid object type"5266msgstr "type d'objet invalide"52675268#: sha1-file.c:12195269#, c-format5270msgid "unable to unpack %s header with --allow-unknown-type"5271msgstr "impossible de dépaqueter l'entête %s avec --allow-unknow-type"52725273#: sha1-file.c:12225274#, c-format5275msgid "unable to unpack %s header"5276msgstr "impossible de dépaqueter l'entête %s"52775278#: sha1-file.c:12285279#, c-format5280msgid "unable to parse %s header with --allow-unknown-type"5281msgstr "impossible d'analyser l'entête %s avec --allow-unknow-type"52825283#: sha1-file.c:12315284#, c-format5285msgid "unable to parse %s header"5286msgstr "impossible d'analyser l'entête %s"52875288#: sha1-file.c:14225289#, c-format5290msgid "failed to read object %s"5291msgstr "impossible de lire l'objet %s"52925293#: sha1-file.c:14265294#, c-format5295msgid "replacement %s not found for %s"5296msgstr "remplacement %s non trouvé pour %s"52975298#: sha1-file.c:14305299#, c-format5300msgid "loose object %s (stored in %s) is corrupt"5301msgstr "l'objet libre %s (stocké dans %s) est corrompu"53025303#: sha1-file.c:14345304#, c-format5305msgid "packed object %s (stored in %s) is corrupt"5306msgstr "l'objet empaqueté %s (stocké dans %s) est corrompu"53075308#: sha1-file.c:15365309#, c-format5310msgid "unable to write sha1 filename %s"5311msgstr "impossible d'écrire le fichier sha1 %s"53125313#: sha1-file.c:15435314#, c-format5315msgid "unable to set permission to '%s'"5316msgstr "impossible de régler les droits de '%s'"53175318#: sha1-file.c:15505319msgid "file write error"5320msgstr "erreur d'écriture d'un fichier"53215322#: sha1-file.c:15695323msgid "error when closing sha1 file"5324msgstr "erreur en fermeture du fichier sha1"53255326#: sha1-file.c:16355327#, c-format5328msgid "insufficient permission for adding an object to repository database %s"5329msgstr ""5330"droits insuffisants pour ajouter un objet à la base de données %s du dépôt"53315332#: sha1-file.c:16375333msgid "unable to create temporary file"5334msgstr "impossible de créer un fichier temporaire"53355336#: sha1-file.c:16615337msgid "unable to write sha1 file"5338msgstr "impossible d'écrire le fichier sha1"53395340#: sha1-file.c:16675341#, c-format5342msgid "unable to deflate new object %s (%d)"5343msgstr "impossible de compresser le nouvel objet %s (%d)"53445345#: sha1-file.c:16715346#, c-format5347msgid "deflateEnd on object %s failed (%d)"5348msgstr "échec de deflateEnd sur l'objet %s (%d)"53495350#: sha1-file.c:16755351#, c-format5352msgid "confused by unstable object source data for %s"5353msgstr "données de source d'objet instable pour %s"53545355#: sha1-file.c:1685 builtin/pack-objects.c:8995356#, c-format5357msgid "failed utime() on %s"5358msgstr "échec de utime() sur %s"53595360#: sha1-file.c:17605361#, c-format5362msgid "cannot read sha1_file for %s"5363msgstr "impossible de lire le fichier sha1 pour %s"53645365#: sha1-file.c:18055366msgid "corrupt commit"5367msgstr "commit corrompu"53685369#: sha1-file.c:18135370msgid "corrupt tag"5371msgstr "étiquette corrompue"53725373#: sha1-file.c:19065374#, c-format5375msgid "read error while indexing %s"5376msgstr "erreur de lecture à l'indexation de %s"53775378#: sha1-file.c:19095379#, c-format5380msgid "short read while indexing %s"5381msgstr "lecture tronquée pendant l'indexation de %s"53825383#: sha1-file.c:1980 sha1-file.c:19895384#, c-format5385msgid "%s: failed to insert into database"5386msgstr "%s : échec de l'insertion dans la base de données"53875388#: sha1-file.c:19955389#, c-format5390msgid "%s: unsupported file type"5391msgstr "%s : type de fichier non supporté"53925393#: sha1-file.c:20195394#, c-format5395msgid "%s is not a valid object"5396msgstr "%s n'est pas un objet valide"53975398#: sha1-file.c:20215399#, c-format5400msgid "%s is not a valid '%s' object"5401msgstr "%s n'est pas un objet '%s' valide"54025403#: sha1-file.c:2048 builtin/index-pack.c:1585404#, c-format5405msgid "unable to open %s"5406msgstr "impossible d'ouvrir %s"54075408#: sha1-file.c:2217 sha1-file.c:22695409#, c-format5410msgid "sha1 mismatch for %s (expected %s)"5411msgstr "incohérence de sha1 pour %s (%s attendu)"54125413#: sha1-file.c:22415414#, c-format5415msgid "unable to mmap %s"5416msgstr "impossible de mmap %s"54175418#: sha1-file.c:22465419#, c-format5420msgid "unable to unpack header of %s"5421msgstr "impossible de dépaqueter l'entête de %s"54225423#: sha1-file.c:22525424#, c-format5425msgid "unable to parse header of %s"5426msgstr "impossible d'analyser l'entête de %s"54275428#: sha1-file.c:22635429#, c-format5430msgid "unable to unpack contents of %s"5431msgstr "impossible de dépaqueter le contenu de %s"54325433#: sha1-name.c:4445434#, c-format5435msgid "short SHA1 %s is ambiguous"5436msgstr "le SHA1 court %s est ambigu"54375438#: sha1-name.c:4555439msgid "The candidates are:"5440msgstr "Les candidats sont :"54415442#: sha1-name.c:6995443msgid ""5444"Git normally never creates a ref that ends with 40 hex characters\n"5445"because it will be ignored when you just specify 40-hex. These refs\n"5446"may be created by mistake. For example,\n"5447"\n"5448" git checkout -b $br $(git rev-parse ...)\n"5449"\n"5450"where \"$br\" is somehow empty and a 40-hex ref is created. Please\n"5451"examine these refs and maybe delete them. Turn this message off by\n"5452"running \"git config advice.objectNameWarning false\""5453msgstr ""5454"Git ne crée normalement jamais de référence qui se termine par 40 caractères "5455"hexa\n"5456"car elle serait ignorée si vous spécifiiez 40-hexa. Ces références\n"5457"peuvent être créées par erreur. Par exemple,\n"5458"\n"5459" git checkout -b $br $(git rev-parse ...)\n"5460"\n"5461"où \"$br\" est d'une manière ou d'une autre vide et une référence 40-hexa "5462"est créée.\n"5463"Veuillez examiner ces références et peut-être les supprimer. Désactivez ce "5464"message\n"5465"en lançant \"git config advice.objectNameWarning false\""54665467#: submodule.c:97 submodule.c:1315468msgid "Cannot change unmerged .gitmodules, resolve merge conflicts first"5469msgstr ""5470"Modification impossible de .gitmodules non fusionné, résolvez les conflits "5471"d'abord"54725473#: submodule.c:101 submodule.c:1355474#, c-format5475msgid "Could not find section in .gitmodules where path=%s"5476msgstr "Impossible de trouver une section où path=%s dans .gitmodules"54775478#: submodule.c:1095479#, c-format5480msgid "Could not update .gitmodules entry %s"5481msgstr "Impossible de mettre à jour l'élément %s de .gitmodules"54825483# ici %s est un chemin5484#: submodule.c:1425485#, c-format5486msgid "Could not remove .gitmodules entry for %s"5487msgstr "Impossible de supprimer l'élément de .gitmodules pour %s"54885489#: submodule.c:1535490msgid "staging updated .gitmodules failed"5491msgstr "échec de la mise en index du .gitmodules mis à jour"54925493#: submodule.c:3155494#, c-format5495msgid "in unpopulated submodule '%s'"5496msgstr "dans le sous-module '%s' non populé"54975498#: submodule.c:3465499#, c-format5500msgid "Pathspec '%s' is in submodule '%.*s'"5501msgstr "Le chemin '%s' est dans le sous-module '%.*s'"55025503#: submodule.c:8395504#, c-format5505msgid "submodule entry '%s' (%s) is a %s, not a commit"5506msgstr "l'entrée de sous-module '%s' (%s) est un %s, pas un commit"55075508#: submodule.c:1071 builtin/branch.c:670 builtin/submodule--helper.c:18885509msgid "Failed to resolve HEAD as a valid ref."5510msgstr "Échec de résolution de HEAD comme référence valide."55115512#: submodule.c:13775513#, c-format5514msgid "'%s' not recognized as a git repository"5515msgstr "'%s' n'est pas reconnu comme dépôt git"55165517#: submodule.c:15155518#, c-format5519msgid "could not start 'git status' in submodule '%s'"5520msgstr "impossible de démarrer 'git status' dans le sous-module '%s'"55215522#: submodule.c:15285523#, c-format5524msgid "could not run 'git status' in submodule '%s'"5525msgstr "impossible de lancer 'git status' dans le sous-module '%s'"55265527#: submodule.c:15435528#, c-format5529msgid "Could not unset core.worktree setting in submodule '%s'"5530msgstr "Impossible de désactiver core.worktree dans le sous-module '%s'"55315532#: submodule.c:16335533#, c-format5534msgid "submodule '%s' has dirty index"5535msgstr "le sous-module '%s' a un index sale"55365537#: submodule.c:16855538#, c-format5539msgid "Submodule '%s' could not be updated."5540msgstr "le sous-module '%s' n'a pas pu être mis à jour."55415542#: submodule.c:17345543#, c-format5544msgid ""5545"relocate_gitdir for submodule '%s' with more than one worktree not supported"5546msgstr ""5547"relocate_gitdir pour le sous-module '%s' avec plus d'un arbre de travail "5548"n'est pas supporté"55495550#: submodule.c:1746 submodule.c:18025551#, c-format5552msgid "could not lookup name for submodule '%s'"5553msgstr "impossible de trouve le nom pour le sous-module '%s'"55545555#: submodule.c:1750 builtin/submodule--helper.c:14065556#: builtin/submodule--helper.c:14165557#, c-format5558msgid "could not create directory '%s'"5559msgstr "impossible de créer le répertoire '%s'"55605561#: submodule.c:17535562#, c-format5563msgid ""5564"Migrating git directory of '%s%s' from\n"5565"'%s' to\n"5566"'%s'\n"5567msgstr ""5568"Migration du répertoire git de '%s%s' depuis\n"5569"'%s' sur\n"5570"'%s'\n"55715572#: submodule.c:18375573#, c-format5574msgid "could not recurse into submodule '%s'"5575msgstr "récursion impossible dans le sous-module '%s'"55765577#: submodule.c:18815578msgid "could not start ls-files in .."5579msgstr "impossible de démarrer ls-files dans .."55805581#: submodule.c:19205582#, c-format5583msgid "ls-tree returned unexpected return code %d"5584msgstr "ls-tree a renvoyé un code de retour inattendu %d"55855586#: submodule-config.c:2315587#, c-format5588msgid "ignoring suspicious submodule name: %s"5589msgstr "nom de sous-module suspicieux %s ignoré"55905591#: submodule-config.c:2955592msgid "negative values not allowed for submodule.fetchjobs"5593msgstr "les valeurs négatives ne sont pas permises pour submodule.fetchJobs"55945595#: submodule-config.c:4685596#, c-format5597msgid "invalid value for %s"5598msgstr "Valeur invalide pour %s"55995600#: trailer.c:2385601#, c-format5602msgid "running trailer command '%s' failed"5603msgstr "échec de la commande trailer '%s'"56045605#: trailer.c:485 trailer.c:490 trailer.c:495 trailer.c:549 trailer.c:5535606#: trailer.c:5575607#, c-format5608msgid "unknown value '%s' for key '%s'"5609msgstr "valeur inconnue '%s' pour la clé '%s'"56105611#: trailer.c:539 trailer.c:544 builtin/remote.c:2945612#, c-format5613msgid "more than one %s"5614msgstr "plus d'un %s"56155616#: trailer.c:7305617#, c-format5618msgid "empty trailer token in trailer '%.*s'"5619msgstr "symbole vide dans la ligne de fin '%.*s'"56205621#: trailer.c:7505622#, c-format5623msgid "could not read input file '%s'"5624msgstr "impossible de lire le fichier d'entrée '%s'"56255626#: trailer.c:7535627msgid "could not read from stdin"5628msgstr "Impossible de lire depuis l'entrée standard"56295630#: trailer.c:1008 builtin/am.c:475631#, c-format5632msgid "could not stat %s"5633msgstr "stat impossible de %s"56345635#: trailer.c:10105636#, c-format5637msgid "file %s is not a regular file"5638msgstr "%s n'est pas un fichier régulier"56395640#: trailer.c:10125641#, c-format5642msgid "file %s is not writable by user"5643msgstr "le fichier %s n'est pas inscriptible par l'utilisateur"56445645#: trailer.c:10245646msgid "could not open temporary file"5647msgstr "impossible de créer un fichier temporaire"56485649#: trailer.c:10645650#, c-format5651msgid "could not rename temporary file to %s"5652msgstr "impossible de renommer un fichier temporaire en %s"56535654#: transport.c:1165655#, c-format5656msgid "Would set upstream of '%s' to '%s' of '%s'\n"5657msgstr "Positionnerait la branche amont de '%s' sur '%s' de '%s'\n"56585659#: transport.c:1425660#, c-format5661msgid "could not read bundle '%s'"5662msgstr "impossible de lire la liasse '%s'"56635664#: transport.c:2085665#, c-format5666msgid "transport: invalid depth option '%s'"5667msgstr "transport : option de profondeur invalide '%s'"56685669#: transport.c:5865670msgid "could not parse transport.color.* config"5671msgstr "impossible d'analyser la configuration transport.color.*"56725673#: transport.c:6595674msgid "support for protocol v2 not implemented yet"5675msgstr "le support du protocole v2 n'est pas encore implanté"56765677#: transport.c:7855678#, c-format5679msgid "unknown value for config '%s': %s"5680msgstr "valeur inconnue pour la config '%s' : %s"56815682#: transport.c:8515683#, c-format5684msgid "transport '%s' not allowed"5685msgstr "transport '%s' non permis"56865687#: transport.c:9035688msgid "git-over-rsync is no longer supported"5689msgstr "git-over-rsync n'est plus supporté"56905691#: transport.c:9985692#, c-format5693msgid ""5694"The following submodule paths contain changes that can\n"5695"not be found on any remote:\n"5696msgstr ""5697"Les chemins suivant de sous-module contiennent des modifications\n"5698"qui ne peuvent être trouvées sur aucun distant :\n"56995700#: transport.c:10025701#, c-format5702msgid ""5703"\n"5704"Please try\n"5705"\n"5706"\tgit push --recurse-submodules=on-demand\n"5707"\n"5708"or cd to the path and use\n"5709"\n"5710"\tgit push\n"5711"\n"5712"to push them to a remote.\n"5713"\n"5714msgstr ""5715"\n"5716"Veuillez essayer\n"5717"\n"5718"\tgit push --recurse-submodules=on-demand\n"5719"\n"5720"ou bien changez de répertoire et utilisez\n"5721"\n"5722"\tgit push\n"5723"\n"5724"pour les pousser vers un serveur distant.\n"5725"\n"57265727#: transport.c:10105728msgid "Aborting."5729msgstr "Abandon."57305731#: transport.c:11485732msgid "failed to push all needed submodules"5733msgstr "echec de la poussée de tout les sous-modules nécessaires"57345735#: transport.c:1270 transport-helper.c:6435736msgid "operation not supported by protocol"5737msgstr "option non supportée par le protocole"57385739#: transport.c:13525740#, c-format5741msgid "invalid line while parsing alternate refs: %s"5742msgstr "ligne invalide pendant l'analyse des refs alternatives : %s"57435744#: transport-helper.c:51 transport-helper.c:805745msgid "full write to remote helper failed"5746msgstr "échec de l'écriture totale sur l'assistant distant"57475748#: transport-helper.c:1325749#, c-format5750msgid "unable to find remote helper for '%s'"5751msgstr "Impossible de trouver un assistant distant pour '%s'"57525753#: transport-helper.c:148 transport-helper.c:5575754msgid "can't dup helper output fd"5755msgstr ""5756"impossible de dupliquer le descripteur de flux de sortie de l'assistant"57575758#: transport-helper.c:1995759#, c-format5760msgid ""5761"unknown mandatory capability %s; this remote helper probably needs newer "5762"version of Git"5763msgstr ""5764"capacité obligatoire inconnue %s ; cet assistant distant requiert "5765"probablement une une nouvelle version de Git"57665767#: transport-helper.c:2055768msgid "this remote helper should implement refspec capability"5769msgstr "cet assistant distant devrait supporter la capacité refspec"57705771#: transport-helper.c:272 transport-helper.c:4125772#, c-format5773msgid "%s unexpectedly said: '%s'"5774msgstr "%s a dit de manière inattendue : '%s'"57755776#: transport-helper.c:4015777#, c-format5778msgid "%s also locked %s"5779msgstr "%s a aussi verrouillé %s"57805781#: transport-helper.c:4795782msgid "couldn't run fast-import"5783msgstr "impossible de lancer fast-import"57845785#: transport-helper.c:5025786msgid "error while running fast-import"5787msgstr "erreur au lancement de fast-import"57885789#: transport-helper.c:531 transport-helper.c:10915790#, c-format5791msgid "could not read ref %s"5792msgstr "impossible de lire la réf %s"57935794#: transport-helper.c:5765795#, c-format5796msgid "unknown response to connect: %s"5797msgstr "réponse inconnue à connect : %s"57985799#: transport-helper.c:5985800msgid "setting remote service path not supported by protocol"5801msgstr ""5802"la spécification du chemin de service distant n'est pas supportée par le "5803"protocole"58045805#: transport-helper.c:6005806msgid "invalid remote service path"5807msgstr "chemin de service distant invalide"58085809#: transport-helper.c:6465810#, c-format5811msgid "can't connect to subservice %s"5812msgstr "impossible de se connecter as sous-service %s"58135814#: transport-helper.c:7135815#, c-format5816msgid "expected ok/error, helper said '%s'"5817msgstr "ok/error attendu, l'assistant a dit '%s'"58185819#: transport-helper.c:7665820#, c-format5821msgid "helper reported unexpected status of %s"5822msgstr "l'assistant a renvoyé un statut de retour inattendu %s"58235824#: transport-helper.c:8275825#, c-format5826msgid "helper %s does not support dry-run"5827msgstr "l'assistant %s ne gère pas dry-run"58285829#: transport-helper.c:8305830#, c-format5831msgid "helper %s does not support --signed"5832msgstr "l'assistant %s ne gère pas --signed"58335834#: transport-helper.c:8335835#, c-format5836msgid "helper %s does not support --signed=if-asked"5837msgstr "l'assistant %s ne gère pas --signed=if-asked"58385839#: transport-helper.c:8405840#, c-format5841msgid "helper %s does not support 'push-option'"5842msgstr "l'assistant %s ne gère pas 'push-option'"58435844#: transport-helper.c:9325845msgid "remote-helper doesn't support push; refspec needed"5846msgstr ""5847"l'assistant %s ne gère pas push ; un spécificateur de référence est "5848"nécessaire"58495850#: transport-helper.c:9375851#, c-format5852msgid "helper %s does not support 'force'"5853msgstr "l'assistant %s ne gère pas 'force'"58545855#: transport-helper.c:9845856msgid "couldn't run fast-export"5857msgstr "impossible de lancer fast-export"58585859#: transport-helper.c:9895860msgid "error while running fast-export"5861msgstr "erreur au lancement de fast-export"58625863#: transport-helper.c:10145864#, c-format5865msgid ""5866"No refs in common and none specified; doing nothing.\n"5867"Perhaps you should specify a branch such as 'master'.\n"5868msgstr ""5869"Aucune référence en commun et aucune spécfiée ; rien à faire.\n"5870"Vous devriez peut-être spécifier une branche telle que 'master'.\n"58715872#: transport-helper.c:10775873#, c-format5874msgid "malformed response in ref list: %s"5875msgstr "réponse malformée dans le liste de réfs : %s"58765877#: transport-helper.c:12305878#, c-format5879msgid "read(%s) failed"5880msgstr "échec de read(%s)"58815882#: transport-helper.c:12575883#, c-format5884msgid "write(%s) failed"5885msgstr "échec de write(%s)"58865887#: transport-helper.c:13065888#, c-format5889msgid "%s thread failed"5890msgstr "échec du fil d'exécution %s"58915892#: transport-helper.c:13105893#, c-format5894msgid "%s thread failed to join: %s"5895msgstr "échec de jonction du fil d'exécution %s : %s"58965897#: transport-helper.c:1329 transport-helper.c:13335898#, c-format5899msgid "can't start thread for copying data: %s"5900msgstr "impossible de démarrer le fil d'exécution pour copier les données : %s"59015902#: transport-helper.c:13705903#, c-format5904msgid "%s process failed to wait"5905msgstr "échec du processus %s pour l'attente"59065907#: transport-helper.c:13745908#, c-format5909msgid "%s process failed"5910msgstr "échec du processus %s"59115912#: transport-helper.c:1392 transport-helper.c:14015913msgid "can't start thread for copying data"5914msgstr "impossible de démarrer le fil d'exécution pour copier les données"59155916#: tree-walk.c:335917msgid "too-short tree object"5918msgstr "objet arbre trop court"59195920#: tree-walk.c:395921msgid "malformed mode in tree entry"5922msgstr "mode invalide dans l'entrée d'arbre"59235924#: tree-walk.c:435925msgid "empty filename in tree entry"5926msgstr "nom de fichier vide dans une entrée de l'arbre"59275928#: tree-walk.c:1155929msgid "too-short tree file"5930msgstr "fichier arbre trop court"59315932#: unpack-trees.c:1125933#, c-format5934msgid ""5935"Your local changes to the following files would be overwritten by checkout:\n"5936"%%sPlease commit your changes or stash them before you switch branches."5937msgstr ""5938"Vos modifications locales aux fichiers suivants seraient écrasées par "5939"l'extraction :\n"5940"%%sVeuillez valider ou remiser vos modifications avant de basculer de "5941"branche."59425943#: unpack-trees.c:1145944#, c-format5945msgid ""5946"Your local changes to the following files would be overwritten by checkout:\n"5947"%%s"5948msgstr ""5949"Vos modifications locales aux fichiers suivants seraient écrasées par "5950"l'extraction :\n"5951"%%s"59525953#: unpack-trees.c:1175954#, c-format5955msgid ""5956"Your local changes to the following files would be overwritten by merge:\n"5957"%%sPlease commit your changes or stash them before you merge."5958msgstr ""5959"Vos modifications locales aux fichiers suivants seraient écrasées par la "5960"fusion :\n"5961"%%sVeuillez valider ou remiser vos modifications avant la fusion."59625963#: unpack-trees.c:1195964#, c-format5965msgid ""5966"Your local changes to the following files would be overwritten by merge:\n"5967"%%s"5968msgstr ""5969"Vos modifications locales aux fichiers suivants seraient écrasées par la "5970"fusion :\n"5971"%%s"59725973#: unpack-trees.c:1225974#, c-format5975msgid ""5976"Your local changes to the following files would be overwritten by %s:\n"5977"%%sPlease commit your changes or stash them before you %s."5978msgstr ""5979"Vos modifications locales aux fichiers suivants seraient écrasées par %s :\n"5980"%%sVeuillez valider ou remiser vos modifications avant %s."59815982#: unpack-trees.c:1245983#, c-format5984msgid ""5985"Your local changes to the following files would be overwritten by %s:\n"5986"%%s"5987msgstr ""5988"Vos modifications locales aux fichiers suivants seraient écrasées par %s :\n"5989"%%s"59905991#: unpack-trees.c:1295992#, c-format5993msgid ""5994"Updating the following directories would lose untracked files in them:\n"5995"%s"5996msgstr ""5997"La mise à jour des répertoires suivants effacerait les fichiers non suivis "5998"contenus :\n"5999"%s"60006001#: unpack-trees.c:1336002#, c-format6003msgid ""6004"The following untracked working tree files would be removed by checkout:\n"6005"%%sPlease move or remove them before you switch branches."6006msgstr ""6007"Les fichiers suivants non suivis de la copie de travail seraient effacés par "6008"l'extraction :\n"6009"%%sVeuillez renommer ou effacer ces fichiers avant de basculer de branche."60106011#: unpack-trees.c:1356012#, c-format6013msgid ""6014"The following untracked working tree files would be removed by checkout:\n"6015"%%s"6016msgstr ""6017"Les fichiers suivants non suivis seraient effacés par l'extraction :\n"6018"%%s"60196020#: unpack-trees.c:1386021#, c-format6022msgid ""6023"The following untracked working tree files would be removed by merge:\n"6024"%%sPlease move or remove them before you merge."6025msgstr ""6026"Les fichiers suivants non suivis de la copie de travail seraient effacés par "6027"la fusion :\n"6028"%%sVeuillez renommer ou effacer ces fichiers avant la fusion."60296030#: unpack-trees.c:1406031#, c-format6032msgid ""6033"The following untracked working tree files would be removed by merge:\n"6034"%%s"6035msgstr ""6036"Les fichiers suivants non suivis seraient effacés par la fusion :\n"6037"%%s"60386039#: unpack-trees.c:1436040#, c-format6041msgid ""6042"The following untracked working tree files would be removed by %s:\n"6043"%%sPlease move or remove them before you %s."6044msgstr ""6045"Les fichiers suivants non suivis de la copie de travail seraient effacés par "6046"%s :\n"6047"%%sVeuillez renommer ou effacer ces fichiers avant %s."60486049#: unpack-trees.c:1456050#, c-format6051msgid ""6052"The following untracked working tree files would be removed by %s:\n"6053"%%s"6054msgstr ""6055"Les fichiers suivants non suivis seraient effacés par %s :\n"6056"%%s"60576058#: unpack-trees.c:1516059#, c-format6060msgid ""6061"The following untracked working tree files would be overwritten by "6062"checkout:\n"6063"%%sPlease move or remove them before you switch branches."6064msgstr ""6065"Les fichiers suivants non suivis de la copie de travail seraient écrasés par "6066"l'extraction :\n"6067"%%sVeuillez renommer ou effacer ces fichiers avant de basculer de branche."60686069#: unpack-trees.c:1536070#, c-format6071msgid ""6072"The following untracked working tree files would be overwritten by "6073"checkout:\n"6074"%%s"6075msgstr ""6076"Les fichiers suivants non suivis seraient écrasés par l'extraction :\n"6077"%%s"60786079#: unpack-trees.c:1566080#, c-format6081msgid ""6082"The following untracked working tree files would be overwritten by merge:\n"6083"%%sPlease move or remove them before you merge."6084msgstr ""6085"Les fichiers suivants non suivis de la copie de travail seraient effacés par "6086"la fusion :\n"6087"%%sVeuillez renommer ou effacer ces fichiers avant la fusion."60886089#: unpack-trees.c:1586090#, c-format6091msgid ""6092"The following untracked working tree files would be overwritten by merge:\n"6093"%%s"6094msgstr ""6095"Les fichiers suivants non suivis seraient écrasés par la fusion :\n"6096"%%s"60976098#: unpack-trees.c:1616099#, c-format6100msgid ""6101"The following untracked working tree files would be overwritten by %s:\n"6102"%%sPlease move or remove them before you %s."6103msgstr ""6104"Les fichiers suivants non suivis de la copie de travail seraient écrasés par "6105"%s :\n"6106"%%sVeuillez renommer ou effacer ces fichiers avant %s."61076108#: unpack-trees.c:1636109#, c-format6110msgid ""6111"The following untracked working tree files would be overwritten by %s:\n"6112"%%s"6113msgstr ""6114"Les fichiers suivants non suivis seraient écrasés par %s :\n"6115"%%s"61166117#: unpack-trees.c:1716118#, c-format6119msgid "Entry '%s' overlaps with '%s'. Cannot bind."6120msgstr "L'entrée '%s' surcharge avec '%s'. Affectation impossible."61216122#: unpack-trees.c:1746123#, c-format6124msgid ""6125"Cannot update sparse checkout: the following entries are not up to date:\n"6126"%s"6127msgstr ""6128"Mise à jour d'extraction creuse impossible : les entrées suivantes ne sont "6129"pas à jour :\n"6130"%s"61316132#: unpack-trees.c:1766133#, c-format6134msgid ""6135"The following working tree files would be overwritten by sparse checkout "6136"update:\n"6137"%s"6138msgstr ""6139"Les fichiers suivants de la copie de travail seraient écrasés par la mise à "6140"jour par l'extraction creuse :\n"6141"%s"61426143#: unpack-trees.c:1786144#, c-format6145msgid ""6146"The following working tree files would be removed by sparse checkout "6147"update:\n"6148"%s"6149msgstr ""6150"Les fichiers suivants de la copie de travail seraient supprimés par la mise "6151"à jour par extraction creuse :\n"6152"%s"61536154#: unpack-trees.c:1806155#, c-format6156msgid ""6157"Cannot update submodule:\n"6158"%s"6159msgstr ""6160"Mise à jour impossible pour le sous-module :\n"6161"%s"61626163#: unpack-trees.c:2546164#, c-format6165msgid "Aborting\n"6166msgstr "Abandon\n"61676168#: unpack-trees.c:3366169msgid "Checking out files"6170msgstr "Extraction des fichiers"61716172#: urlmatch.c:1636173msgid "invalid URL scheme name or missing '://' suffix"6174msgstr "nom de schéma d'URL invalide ou suffixe '://' manquant"61756176#: urlmatch.c:187 urlmatch.c:346 urlmatch.c:4056177#, c-format6178msgid "invalid %XX escape sequence"6179msgstr "séquence d'échappement %XX invalide"61806181#: urlmatch.c:2156182msgid "missing host and scheme is not 'file:'"6183msgstr "hôte manquant et le schéma n'est pas 'file:'"61846185#: urlmatch.c:2326186msgid "a 'file:' URL may not have a port number"6187msgstr "une URL 'file:' ne peut pas contenir de numéro de port"61886189#: urlmatch.c:2476190msgid "invalid characters in host name"6191msgstr "caractères invalides dans le nom d'hôte"61926193#: urlmatch.c:292 urlmatch.c:3036194msgid "invalid port number"6195msgstr "numéro de port invalide"61966197#: urlmatch.c:3716198msgid "invalid '..' path segment"6199msgstr "segment de chemin '..' invalide"62006201#: worktree.c:245 builtin/am.c:21476202#, c-format6203msgid "failed to read '%s'"6204msgstr "échec de la lecture de '%s'"62056206#: worktree.c:2916207#, c-format6208msgid "'%s' at main working tree is not the repository directory"6209msgstr ""6210"'%s' dans l'arbre de travail principal n'est pas le répertoire de dépôt"62116212#: worktree.c:3026213#, c-format6214msgid "'%s' file does not contain absolute path to the working tree location"6215msgstr ""6216"le fichier '%s' ne contient pas de chemin absolu à l'emplacement de l'arbre "6217"de travail"62186219#: worktree.c:3146220#, c-format6221msgid "'%s' does not exist"6222msgstr "'%s' n'existe pas"62236224#: worktree.c:3206225#, c-format6226msgid "'%s' is not a .git file, error code %d"6227msgstr "'%s' n'est pas un fichier .git, code d'erreur %d"62286229#: worktree.c:3286230#, c-format6231msgid "'%s' does not point back to '%s'"6232msgstr "'%s' ne pointe pas en retour sur '%s'"62336234#: wrapper.c:223 wrapper.c:3936235#, c-format6236msgid "could not open '%s' for reading and writing"6237msgstr "impossible d'ouvrir '%s' en lecture/écriture"62386239#: wrapper.c:227 wrapper.c:397 builtin/am.c:321 builtin/am.c:7716240#: builtin/am.c:863 builtin/merge.c:10786241#, c-format6242msgid "could not open '%s' for reading"6243msgstr "impossible d'ouvrir '%s' en lecture"62446245#: wrapper.c:424 wrapper.c:6246246#, c-format6247msgid "unable to access '%s'"6248msgstr "impossible d'accéder à '%s'"62496250#: wrapper.c:6326251msgid "unable to get current working directory"6252msgstr "impossible d'accéder au répertoire de travail courant"62536254#: wt-status.c:1546255msgid "Unmerged paths:"6256msgstr "Chemins non fusionnés :"62576258#: wt-status.c:181 wt-status.c:2086259#, c-format6260msgid " (use \"git reset %s <file>...\" to unstage)"6261msgstr " (utilisez \"git reset %s <fichier>...\" pour désindexer)"62626263#: wt-status.c:183 wt-status.c:2106264msgid " (use \"git rm --cached <file>...\" to unstage)"6265msgstr " (utilisez \"git rm --cached <fichier>...\" pour désindexer)"62666267#: wt-status.c:1876268msgid " (use \"git add <file>...\" to mark resolution)"6269msgstr " (utilisez \"git add <fichier>...\" pour marquer comme résolu)"62706271#: wt-status.c:189 wt-status.c:1936272msgid " (use \"git add/rm <file>...\" as appropriate to mark resolution)"6273msgstr ""6274" (utilisez \"git add/rm <fichier>...\" si nécessaire pour marquer comme "6275"résolu)"62766277#: wt-status.c:1916278msgid " (use \"git rm <file>...\" to mark resolution)"6279msgstr " (utilisez \"git rm <fichier>...\" pour marquer comme résolu)"62806281#: wt-status.c:202 wt-status.c:10156282msgid "Changes to be committed:"6283msgstr "Modifications qui seront validées :"62846285#: wt-status.c:220 wt-status.c:10246286msgid "Changes not staged for commit:"6287msgstr "Modifications qui ne seront pas validées :"62886289#: wt-status.c:2246290msgid " (use \"git add <file>...\" to update what will be committed)"6291msgstr ""6292" (utilisez \"git add <fichier>...\" pour mettre à jour ce qui sera validé)"62936294#: wt-status.c:2266295msgid " (use \"git add/rm <file>...\" to update what will be committed)"6296msgstr ""6297" (utilisez \"git add/rm <fichier>...\" pour mettre à jour ce qui sera "6298"validé)"62996300#: wt-status.c:2276301msgid ""6302" (use \"git checkout -- <file>...\" to discard changes in working directory)"6303msgstr ""6304" (utilisez \"git checkout -- <fichier>...\" pour annuler les modifications "6305"dans la copie de travail)"63066307#: wt-status.c:2296308msgid " (commit or discard the untracked or modified content in submodules)"6309msgstr ""6310" (valider ou annuler le contenu non suivi ou modifié dans les sous-modules)"63116312#: wt-status.c:2416313#, c-format6314msgid " (use \"git %s <file>...\" to include in what will be committed)"6315msgstr ""6316" (utilisez \"git %s <fichier>...\" pour inclure dans ce qui sera validé)"63176318#: wt-status.c:2566319msgid "both deleted:"6320msgstr "supprimé des deux côtés :"63216322#: wt-status.c:2586323msgid "added by us:"6324msgstr "ajouté par nous :"63256326#: wt-status.c:2606327msgid "deleted by them:"6328msgstr "supprimé par eux :"63296330#: wt-status.c:2626331msgid "added by them:"6332msgstr "ajouté par eux :"63336334#: wt-status.c:2646335msgid "deleted by us:"6336msgstr "supprimé par nous :"63376338#: wt-status.c:2666339msgid "both added:"6340msgstr "ajouté de deux côtés :"63416342#: wt-status.c:2686343msgid "both modified:"6344msgstr "modifié des deux côtés :"63456346#: wt-status.c:2786347msgid "new file:"6348msgstr "nouveau fichier :"63496350#: wt-status.c:2806351msgid "copied:"6352msgstr "copié :"63536354#: wt-status.c:2826355msgid "deleted:"6356msgstr "supprimé :"63576358#: wt-status.c:2846359msgid "modified:"6360msgstr "modifié :"63616362#: wt-status.c:2866363msgid "renamed:"6364msgstr "renommé :"63656366#: wt-status.c:2886367msgid "typechange:"6368msgstr "modif. type :"63696370#: wt-status.c:2906371msgid "unknown:"6372msgstr "inconnu :"63736374#: wt-status.c:2926375msgid "unmerged:"6376msgstr "non fusionné :"63776378#: wt-status.c:3726379msgid "new commits, "6380msgstr "nouveaux commits, "63816382#: wt-status.c:3746383msgid "modified content, "6384msgstr "contenu modifié, "63856386#: wt-status.c:3766387msgid "untracked content, "6388msgstr "contenu non suivi, "63896390#: wt-status.c:8536391#, c-format6392msgid "Your stash currently has %d entry"6393msgid_plural "Your stash currently has %d entries"6394msgstr[0] "Votre remisage contient actuellement %d entrée"6395msgstr[1] "Votre remisage contient actuellement %d entrées"63966397#: wt-status.c:8856398msgid "Submodules changed but not updated:"6399msgstr "Sous-modules modifiés mais non mis à jour :"64006401#: wt-status.c:8876402msgid "Submodule changes to be committed:"6403msgstr "Changements du sous-module à valider :"64046405#: wt-status.c:9696406msgid ""6407"Do not modify or remove the line above.\n"6408"Everything below it will be ignored."6409msgstr ""6410"Ne touchez pas à la ligne ci-dessus.\n"6411"Tout ce qui suit sera éliminé."64126413#: wt-status.c:10846414msgid "You have unmerged paths."6415msgstr "Vous avez des chemins non fusionnés."64166417#: wt-status.c:10876418msgid " (fix conflicts and run \"git commit\")"6419msgstr " (réglez les conflits puis lancez \"git commit\")"64206421#: wt-status.c:10896422msgid " (use \"git merge --abort\" to abort the merge)"6423msgstr " (utilisez \"git merge --abort\" pour annuler la fusion)"64246425#: wt-status.c:10946426msgid "All conflicts fixed but you are still merging."6427msgstr "Tous les conflits sont réglés mais la fusion n'est pas terminée."64286429#: wt-status.c:10976430msgid " (use \"git commit\" to conclude merge)"6431msgstr " (utilisez \"git commit\" pour terminer la fusion)"64326433#: wt-status.c:11076434msgid "You are in the middle of an am session."6435msgstr "Vous êtes au milieu d'une session am."64366437#: wt-status.c:11106438msgid "The current patch is empty."6439msgstr "Le patch actuel est vide."64406441#: wt-status.c:11146442msgid " (fix conflicts and then run \"git am --continue\")"6443msgstr " (réglez les conflits puis lancez \"git am --continue\")"64446445#: wt-status.c:11166446msgid " (use \"git am --skip\" to skip this patch)"6447msgstr " (utilisez \"git am --skip\" pour sauter ce patch)"64486449#: wt-status.c:11186450msgid " (use \"git am --abort\" to restore the original branch)"6451msgstr " (utilisez \"git am --abort\" pour restaurer la branche d'origine)"64526453#: wt-status.c:12506454msgid "git-rebase-todo is missing."6455msgstr "git-rebase-todo est manquant."64566457#: wt-status.c:12526458msgid "No commands done."6459msgstr "Aucune commande réalisée."64606461#: wt-status.c:12556462#, c-format6463msgid "Last command done (%d command done):"6464msgid_plural "Last commands done (%d commands done):"6465msgstr[0] "Dernière commande effectuée (%d commande effectuée) :"6466msgstr[1] "Dernières commandes effectuées (%d commandes effectuées) :"64676468#: wt-status.c:12666469#, c-format6470msgid " (see more in file %s)"6471msgstr " (voir plus dans le fichier %s)"64726473#: wt-status.c:12716474msgid "No commands remaining."6475msgstr "Aucune commande restante."64766477#: wt-status.c:12746478#, c-format6479msgid "Next command to do (%d remaining command):"6480msgid_plural "Next commands to do (%d remaining commands):"6481msgstr[0] "Prochaine commande à effectuer (%d commande restante) :"6482msgstr[1] "Prochaines commandes à effectuer (%d commandes restantes) :"64836484#: wt-status.c:12826485msgid " (use \"git rebase --edit-todo\" to view and edit)"6486msgstr " (utilisez \"git rebase --edit-todo\" pour voir et éditer)"64876488#: wt-status.c:12956489#, c-format6490msgid "You are currently rebasing branch '%s' on '%s'."6491msgstr "Vous êtes en train de rebaser la branche '%s' sur '%s'."64926493#: wt-status.c:13006494msgid "You are currently rebasing."6495msgstr "Vous êtes en train de rebaser."64966497#: wt-status.c:13146498msgid " (fix conflicts and then run \"git rebase --continue\")"6499msgstr " (réglez les conflits puis lancez \"git rebase --continue\")"65006501#: wt-status.c:13166502msgid " (use \"git rebase --skip\" to skip this patch)"6503msgstr " (utilisez \"git rebase --skip\" pour sauter ce patch)"65046505#: wt-status.c:13186506msgid " (use \"git rebase --abort\" to check out the original branch)"6507msgstr " (utilisez \"git rebase --abort\" pour extraire la branche d'origine)"65086509#: wt-status.c:13246510msgid " (all conflicts fixed: run \"git rebase --continue\")"6511msgstr " (tous les conflits sont réglés : lancez \"git rebase --continue\")"65126513#: wt-status.c:13286514#, c-format6515msgid ""6516"You are currently splitting a commit while rebasing branch '%s' on '%s'."6517msgstr ""6518"Vous êtes actuellement en train de fractionner un commit pendant un rebasage "6519"de la branche '%s' sur '%s'."65206521#: wt-status.c:13336522msgid "You are currently splitting a commit during a rebase."6523msgstr ""6524"Vous êtes actuellement en train de fractionner un commit pendant un rebasage."65256526#: wt-status.c:13366527msgid " (Once your working directory is clean, run \"git rebase --continue\")"6528msgstr ""6529" (Une fois la copie de travail nettoyée, lancez \"git rebase --continue\")"65306531#: wt-status.c:13406532#, c-format6533msgid "You are currently editing a commit while rebasing branch '%s' on '%s'."6534msgstr ""6535"Vous êtes actuellement en train d'éditer un commit pendant un rebasage de la "6536"branche '%s' sur '%s'."65376538#: wt-status.c:13456539msgid "You are currently editing a commit during a rebase."6540msgstr ""6541"Vous êtes actuellement en train d'éditer un commit pendant un rebasage."65426543#: wt-status.c:13486544msgid " (use \"git commit --amend\" to amend the current commit)"6545msgstr " (utilisez \"git commit --amend\" pour corriger le commit actuel)"65466547#: wt-status.c:13506548msgid ""6549" (use \"git rebase --continue\" once you are satisfied with your changes)"6550msgstr ""6551" (utilisez \"git rebase --continue\" quand vous avez effectué toutes vos "6552"modifications)"65536554#: wt-status.c:13606555#, c-format6556msgid "You are currently cherry-picking commit %s."6557msgstr "Vous êtes actuellement en train de picorer le commit %s."65586559#: wt-status.c:13656560msgid " (fix conflicts and run \"git cherry-pick --continue\")"6561msgstr " (réglez les conflits puis lancez \"git cherry-pick --continue\")"65626563#: wt-status.c:13686564msgid " (all conflicts fixed: run \"git cherry-pick --continue\")"6565msgstr ""6566" (tous les conflits sont réglés : lancez \"git cherry-pick --continue\")"65676568#: wt-status.c:13706569msgid " (use \"git cherry-pick --abort\" to cancel the cherry-pick operation)"6570msgstr " (utilisez \"git cherry-pick --abort\" pour annuler le picorage)"65716572#: wt-status.c:13796573#, c-format6574msgid "You are currently reverting commit %s."6575msgstr "Vous êtes actuellement en train de rétablir le commit %s."65766577#: wt-status.c:13846578msgid " (fix conflicts and run \"git revert --continue\")"6579msgstr " (réglez les conflits puis lancez \"git revert --continue\")"65806581#: wt-status.c:13876582msgid " (all conflicts fixed: run \"git revert --continue\")"6583msgstr " (tous les conflits sont réglés : lancez \"git revert --continue\")"65846585#: wt-status.c:13896586msgid " (use \"git revert --abort\" to cancel the revert operation)"6587msgstr " (utilisez \"git revert --abort\" pour annuler le rétablissement)"65886589#: wt-status.c:14006590#, c-format6591msgid "You are currently bisecting, started from branch '%s'."6592msgstr "Vous êtes en cours de bissection, depuis la branche '%s'."65936594#: wt-status.c:14046595msgid "You are currently bisecting."6596msgstr "Vous êtes en cours de bissection."65976598#: wt-status.c:14076599msgid " (use \"git bisect reset\" to get back to the original branch)"6600msgstr " (utilisez \"git bisect reset\" pour revenir à la branche d'origine)"66016602#: wt-status.c:16046603msgid "On branch "6604msgstr "Sur la branche "66056606#: wt-status.c:16106607msgid "interactive rebase in progress; onto "6608msgstr "rebasage interactif en cours ; sur "66096610#: wt-status.c:16126611msgid "rebase in progress; onto "6612msgstr "rebasage en cours ; sur "66136614#: wt-status.c:16176615msgid "HEAD detached at "6616msgstr "HEAD détachée sur "66176618#: wt-status.c:16196619msgid "HEAD detached from "6620msgstr "HEAD détachée depuis "66216622#: wt-status.c:16226623msgid "Not currently on any branch."6624msgstr "Actuellement sur aucun branche."66256626#: wt-status.c:16426627msgid "Initial commit"6628msgstr "Validation initiale"66296630#: wt-status.c:16436631msgid "No commits yet"6632msgstr "Aucun commit"66336634#: wt-status.c:16576635msgid "Untracked files"6636msgstr "Fichiers non suivis"66376638#: wt-status.c:16596639msgid "Ignored files"6640msgstr "Fichiers ignorés"66416642#: wt-status.c:16636643#, c-format6644msgid ""6645"It took %.2f seconds to enumerate untracked files. 'status -uno'\n"6646"may speed it up, but you have to be careful not to forget to add\n"6647"new files yourself (see 'git help status')."6648msgstr ""6649"L'énumération des fichiers non suivis a duré %.2f secondes. 'status -uno'\n"6650"peut l'accélérer, mais vous devez alors faire attention à ne pas\n"6651"oublier d'ajouter les nouveaux fichiers par vous-même (voir 'git help "6652"status')."66536654#: wt-status.c:16696655#, c-format6656msgid "Untracked files not listed%s"6657msgstr "Fichiers non suivis non affichés%s"66586659#: wt-status.c:16716660msgid " (use -u option to show untracked files)"6661msgstr " (utilisez -u pour afficher les fichiers non suivis)"66626663#: wt-status.c:16776664msgid "No changes"6665msgstr "Aucune modification"66666667#: wt-status.c:16826668#, c-format6669msgid "no changes added to commit (use \"git add\" and/or \"git commit -a\")\n"6670msgstr ""6671"aucune modification n'a été ajoutée à la validation (utilisez \"git add\" ou "6672"\"git commit -a\")\n"66736674#: wt-status.c:16856675#, c-format6676msgid "no changes added to commit\n"6677msgstr "aucune modification ajoutée à la validation\n"66786679#: wt-status.c:16886680#, c-format6681msgid ""6682"nothing added to commit but untracked files present (use \"git add\" to "6683"track)\n"6684msgstr ""6685"aucune modification ajoutée à la validation mais des fichiers non suivis "6686"sont présents (utilisez \"git add\" pour les suivre)\n"66876688#: wt-status.c:16916689#, c-format6690msgid "nothing added to commit but untracked files present\n"6691msgstr ""6692"aucune modification ajoutée à la validation mais des fichiers non suivis "6693"sont présents\n"66946695#: wt-status.c:16946696#, c-format6697msgid "nothing to commit (create/copy files and use \"git add\" to track)\n"6698msgstr ""6699"rien à valider (créez/copiez des fichiers et utilisez \"git add\" pour les "6700"suivre)\n"67016702#: wt-status.c:1697 wt-status.c:17026703#, c-format6704msgid "nothing to commit\n"6705msgstr "rien à valider\n"67066707#: wt-status.c:17006708#, c-format6709msgid "nothing to commit (use -u to show untracked files)\n"6710msgstr "rien à valider (utilisez -u pour afficher les fichiers non suivis)\n"67116712#: wt-status.c:17046713#, c-format6714msgid "nothing to commit, working tree clean\n"6715msgstr "rien à valider, la copie de travail est propre\n"67166717#: wt-status.c:18176718msgid "No commits yet on "6719msgstr "Encore aucun commit sur "67206721#: wt-status.c:18216722msgid "HEAD (no branch)"6723msgstr "HEAD (aucune branche)"67246725#: wt-status.c:18526726msgid "different"6727msgstr "différent"67286729#: wt-status.c:1854 wt-status.c:18626730msgid "behind "6731msgstr "derrière "67326733#: wt-status.c:1857 wt-status.c:18606734msgid "ahead "6735msgstr "devant "67366737#. TRANSLATORS: the action is e.g. "pull with rebase"6738#: wt-status.c:23766739#, c-format6740msgid "cannot %s: You have unstaged changes."6741msgstr "Impossible de %s : vous avez des modifications non indexées."67426743#: wt-status.c:23826744msgid "additionally, your index contains uncommitted changes."6745msgstr "de plus, votre index contient des modifications non validées."67466747#: wt-status.c:23846748#, c-format6749msgid "cannot %s: Your index contains uncommitted changes."6750msgstr "%s impossible : votre index contient des modifications non validées."67516752#: compat/precompose_utf8.c:58 builtin/clone.c:4436753#, c-format6754msgid "failed to unlink '%s'"6755msgstr "échec lors de l'unlink de '%s'"67566757#: builtin/add.c:246758msgid "git add [<options>] [--] <pathspec>..."6759msgstr "git add [<options>] [--] <chemin>..."67606761#: builtin/add.c:836762#, c-format6763msgid "unexpected diff status %c"6764msgstr "état de diff inattendu %c"67656766#: builtin/add.c:88 builtin/commit.c:2796767msgid "updating files failed"6768msgstr "échec de la mise à jour des fichiers"67696770#: builtin/add.c:986771#, c-format6772msgid "remove '%s'\n"6773msgstr "suppression de '%s'\n"67746775#: builtin/add.c:1736776msgid "Unstaged changes after refreshing the index:"6777msgstr "Modifications non indexées après rafraîchissement de l'index :"67786779#: builtin/add.c:233 builtin/rev-parse.c:8936780msgid "Could not read the index"6781msgstr "Impossible de lire l'index"67826783#: builtin/add.c:2446784#, c-format6785msgid "Could not open '%s' for writing."6786msgstr "Impossible d'ouvrir '%s' en écriture."67876788#: builtin/add.c:2486789msgid "Could not write patch"6790msgstr "Impossible d'écrire le patch"67916792#: builtin/add.c:2516793msgid "editing patch failed"6794msgstr "échec de l'édition du patch"67956796#: builtin/add.c:2546797#, c-format6798msgid "Could not stat '%s'"6799msgstr "Stat de '%s' impossible"68006801#: builtin/add.c:2566802msgid "Empty patch. Aborted."6803msgstr "Patch vide. Abandon."68046805#: builtin/add.c:2616806#, c-format6807msgid "Could not apply '%s'"6808msgstr "Impossible d'appliquer '%s'"68096810#: builtin/add.c:2696811msgid "The following paths are ignored by one of your .gitignore files:\n"6812msgstr ""6813"Les chemins suivants sont ignorés par un de vos fichiers .gitignore :\n"68146815#: builtin/add.c:289 builtin/clean.c:906 builtin/fetch.c:134 builtin/mv.c:1236816#: builtin/prune-packed.c:56 builtin/pull.c:212 builtin/push.c:5576817#: builtin/remote.c:1344 builtin/rm.c:240 builtin/send-pack.c:1656818msgid "dry run"6819msgstr "simuler l'action"68206821#: builtin/add.c:2926822msgid "interactive picking"6823msgstr "sélection interactive"68246825#: builtin/add.c:293 builtin/checkout.c:1144 builtin/reset.c:3026826msgid "select hunks interactively"6827msgstr "sélection interactive des sections"68286829#: builtin/add.c:2946830msgid "edit current diff and apply"6831msgstr "édition du diff actuel et application"68326833#: builtin/add.c:2956834msgid "allow adding otherwise ignored files"6835msgstr "permettre l'ajout de fichiers ignorés"68366837#: builtin/add.c:2966838msgid "update tracked files"6839msgstr "mettre à jour les fichiers suivis"68406841#: builtin/add.c:2976842msgid "renormalize EOL of tracked files (implies -u)"6843msgstr ""6844"renormaliser les fins de lignes (EOL) des fichiers suivis (implique -u)"68456846#: builtin/add.c:2986847msgid "record only the fact that the path will be added later"6848msgstr "enregistrer seulement le fait que le chemin sera ajouté plus tard"68496850#: builtin/add.c:2996851msgid "add changes from all tracked and untracked files"6852msgstr "ajouter les modifications de tous les fichiers suivis et non suivis"68536854#: builtin/add.c:3026855msgid "ignore paths removed in the working tree (same as --no-all)"6856msgstr ""6857"ignorer les chemins effacés dans la copie de travail (identique à --no-all)"68586859#: builtin/add.c:3046860msgid "don't add, only refresh the index"6861msgstr "ne pas ajouter, juste rafraîchir l'index"68626863#: builtin/add.c:3056864msgid "just skip files which cannot be added because of errors"6865msgstr ""6866"sauter seulement les fichiers qui ne peuvent pas être ajoutés du fait "6867"d'erreurs"68686869#: builtin/add.c:3066870msgid "check if - even missing - files are ignored in dry run"6871msgstr "vérifier si des fichiers - même manquants - sont ignorés, à vide"68726873#: builtin/add.c:308 builtin/update-index.c:9736874msgid "override the executable bit of the listed files"6875msgstr "outrepasser le bit exécutable pour les fichiers listés"68766877#: builtin/add.c:3106878msgid "warn when adding an embedded repository"6879msgstr "avertir lors de l'ajout d'un dépôt embarqué"68806881#: builtin/add.c:3256882#, c-format6883msgid ""6884"You've added another git repository inside your current repository.\n"6885"Clones of the outer repository will not contain the contents of\n"6886"the embedded repository and will not know how to obtain it.\n"6887"If you meant to add a submodule, use:\n"6888"\n"6889"\tgit submodule add <url> %s\n"6890"\n"6891"If you added this path by mistake, you can remove it from the\n"6892"index with:\n"6893"\n"6894"\tgit rm --cached %s\n"6895"\n"6896"See \"git help submodule\" for more information."6897msgstr ""6898"Vous avez ajouté un autre dépôt git dans votre dépôt actuel.\n"6899"Les clones du dépôt conteneur ne contiendrons pas le contenu\n"6900"du dépôt embarqué et ne sauront pas comment l'obtenir.\n"6901"Si vous vouliez ajouter un sous-module, utilisez :\n"6902"\n"6903"\tgit submodule add <url> %s\n"6904"\n"6905"Si vous avez ajouté ce chemin par erreur, vous pouvez le\n"6906"supprimer de l'index avec :\n"6907"\n"6908"\tgit rm --cached %s\n"6909"\n"6910"Référez-vous à \"git help submodule\" pour plus d'information."69116912#: builtin/add.c:3536913#, c-format6914msgid "adding embedded git repository: %s"6915msgstr "dépôt git embarqué ajouté : %s"69166917#: builtin/add.c:3716918#, c-format6919msgid "Use -f if you really want to add them.\n"6920msgstr "Utilisez -f si vous voulez réellement les ajouter.\n"69216922#: builtin/add.c:3796923msgid "adding files failed"6924msgstr "échec de l'ajout de fichiers"69256926#: builtin/add.c:4176927msgid "-A and -u are mutually incompatible"6928msgstr "-A et -u sont mutuellement incompatibles"69296930#: builtin/add.c:4246931msgid "Option --ignore-missing can only be used together with --dry-run"6932msgstr ""6933"L'option --ignore-missing ne peut être utilisée qu'en complément de --dry-run"69346935#: builtin/add.c:4286936#, c-format6937msgid "--chmod param '%s' must be either -x or +x"6938msgstr "Le paramètre '%s' de --chmod doit être soit -x soit +x"69396940#: builtin/add.c:4436941#, c-format6942msgid "Nothing specified, nothing added.\n"6943msgstr "Rien de spécifié, rien n'a été ajouté.\n"69446945#: builtin/add.c:4446946#, c-format6947msgid "Maybe you wanted to say 'git add .'?\n"6948msgstr "Vous vouliez sûrement dire 'git add .' ?\n"69496950#: builtin/add.c:449 builtin/check-ignore.c:177 builtin/checkout.c:2826951#: builtin/checkout.c:485 builtin/clean.c:953 builtin/commit.c:3386952#: builtin/diff-tree.c:115 builtin/grep.c:492 builtin/mv.c:1446953#: builtin/reset.c:241 builtin/rm.c:270 builtin/submodule--helper.c:3296954msgid "index file corrupt"6955msgstr "fichier d'index corrompu"69566957#: builtin/am.c:4156958msgid "could not parse author script"6959msgstr "impossible d'analyser le script author"69606961#: builtin/am.c:4996962#, c-format6963msgid "'%s' was deleted by the applypatch-msg hook"6964msgstr "'%s' a été effacé par le crochet applypatch-msg"69656966#: builtin/am.c:5406967#, c-format6968msgid "Malformed input line: '%s'."6969msgstr "Ligne en entrée malformée : '%s'."69706971#: builtin/am.c:5776972#, c-format6973msgid "Failed to copy notes from '%s' to '%s'"6974msgstr "Impossible de copier les notes de '%s' vers '%s'"69756976#: builtin/am.c:6036977msgid "fseek failed"6978msgstr "échec de fseek"69796980#: builtin/am.c:7916981#, c-format6982msgid "could not parse patch '%s'"6983msgstr "impossible d'analyser le patch '%s'"69846985#: builtin/am.c:8566986msgid "Only one StGIT patch series can be applied at once"6987msgstr "Seulement une série de patchs StGIT peut être appliquée à la fois"69886989#: builtin/am.c:9046990msgid "invalid timestamp"6991msgstr "horodatage invalide"69926993#: builtin/am.c:909 builtin/am.c:9216994msgid "invalid Date line"6995msgstr "ligne de Date invalide"69966997#: builtin/am.c:9166998msgid "invalid timezone offset"6999msgstr "décalage horaire invalide"70007001#: builtin/am.c:10097002msgid "Patch format detection failed."7003msgstr "Échec de détection du format du patch."70047005#: builtin/am.c:1014 builtin/clone.c:4087006#, c-format7007msgid "failed to create directory '%s'"7008msgstr "échec de la création du répertoire '%s'"70097010#: builtin/am.c:10197011msgid "Failed to split patches."7012msgstr "Échec de découpage des patchs."70137014#: builtin/am.c:1149 builtin/commit.c:3647015msgid "unable to write index file"7016msgstr "impossible d'écrire le fichier d'index"70177018#: builtin/am.c:11637019#, c-format7020msgid "When you have resolved this problem, run \"%s --continue\"."7021msgstr "Quand vous avez résolu ce problème, lancez \"%s --continue\"."70227023#: builtin/am.c:11647024#, c-format7025msgid "If you prefer to skip this patch, run \"%s --skip\" instead."7026msgstr "Si vous préférez plutôt sauter ce patch, lancez \"%s --skip\"."70277028#: builtin/am.c:11657029#, c-format7030msgid "To restore the original branch and stop patching, run \"%s --abort\"."7031msgstr ""7032"Pour restaurer la branche originale et arrêter de patcher, lancez \"%s --"7033"abort\"."70347035#: builtin/am.c:12727036msgid "Patch is empty."7037msgstr "Le patch actuel est vide."70387039#: builtin/am.c:13387040#, c-format7041msgid "invalid ident line: %.*s"7042msgstr "ligne d'identification invalide : %.*s"70437044#: builtin/am.c:13607045#, c-format7046msgid "unable to parse commit %s"7047msgstr "impossible d'analyser le commit %s"70487049#: builtin/am.c:15567050msgid "Repository lacks necessary blobs to fall back on 3-way merge."7051msgstr ""7052"Le dépôt n'a pas les blobs nécessaires pour un retour à une fusion à 3 "7053"points."70547055#: builtin/am.c:15587056msgid "Using index info to reconstruct a base tree..."7057msgstr ""7058"Utilisation de l'information de l'index pour reconstruire un arbre de base..."70597060#: builtin/am.c:15777061msgid ""7062"Did you hand edit your patch?\n"7063"It does not apply to blobs recorded in its index."7064msgstr ""7065"Avez-vous édité le patch à la main ?\n"7066"Il ne s'applique pas aux blobs enregistrés dans son index."70677068#: builtin/am.c:15837069msgid "Falling back to patching base and 3-way merge..."7070msgstr "Retour à un patch de la base et fusion à 3 points..."70717072#: builtin/am.c:16087073msgid "Failed to merge in the changes."7074msgstr "Échec d'intégration des modifications."70757076#: builtin/am.c:16407077msgid "applying to an empty history"7078msgstr "application à un historique vide"70797080#: builtin/am.c:1686 builtin/am.c:16907081#, c-format7082msgid "cannot resume: %s does not exist."7083msgstr "impossible de continuer : %s n'existe pas."70847085#: builtin/am.c:17067086msgid "cannot be interactive without stdin connected to a terminal."7087msgstr ""7088"impossible d'être interactif sans entrée standard connectée à un terminal."70897090#: builtin/am.c:17117091msgid "Commit Body is:"7092msgstr "Le corps de la validation est :"70937094#. TRANSLATORS: Make sure to include [y], [n], [e], [v] and [a]7095#. in your translation. The program will only accept English7096#. input at this point.7097#.7098#: builtin/am.c:17217099msgid "Apply? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all: "7100msgstr "Appliquer ? [y]es/[n]o/[e]dit/[v]iew patch/[a]ccept all : "71017102#: builtin/am.c:17717103#, c-format7104msgid "Dirty index: cannot apply patches (dirty: %s)"7105msgstr "Index sale : impossible d'appliquer des patchs (sales : %s)"71067107#: builtin/am.c:1811 builtin/am.c:18797108#, c-format7109msgid "Applying: %.*s"7110msgstr "Application de %.*s"71117112#: builtin/am.c:18287113msgid "No changes -- Patch already applied."7114msgstr "Pas de changement -- Patch déjà appliqué."71157116#: builtin/am.c:18347117#, c-format7118msgid "Patch failed at %s %.*s"7119msgstr "le patch a échoué à %s %.*s"71207121#: builtin/am.c:18387122msgid "Use 'git am --show-current-patch' to see the failed patch"7123msgstr ""7124"Utilisez 'git am --show-current-patch' pour visualiser le patch en échec"71257126#: builtin/am.c:18827127msgid ""7128"No changes - did you forget to use 'git add'?\n"7129"If there is nothing left to stage, chances are that something else\n"7130"already introduced the same changes; you might want to skip this patch."7131msgstr ""7132"Aucun changement - avez-vous oublié d'utiliser 'git add' ?\n"7133"S'il n'y a plus rien à indexer, il se peut qu'autre chose ait déjà\n"7134"introduit les mêmes changements ; vous pourriez avoir envie de sauter ce "7135"patch."71367137#: builtin/am.c:18897138msgid ""7139"You still have unmerged paths in your index.\n"7140"You should 'git add' each file with resolved conflicts to mark them as "7141"such.\n"7142"You might run `git rm` on a file to accept \"deleted by them\" for it."7143msgstr ""7144"Vous avez encore des chemin non-fusionnés dans votre index.\n"7145"Vous devriez lancer 'git add' sur chaque conflit résolu pour les marquer "7146"comme tel.\n"7147"Vous pouvez lancer 'git rm' sur un fichier \"supprimé par eux\" pour "7148"accepter son état."71497150#: builtin/am.c:1996 builtin/am.c:2000 builtin/am.c:2012 builtin/reset.c:3247151#: builtin/reset.c:3327152#, c-format7153msgid "Could not parse object '%s'."7154msgstr "Impossible d'analyser l'objet '%s'."71557156#: builtin/am.c:20487157msgid "failed to clean index"7158msgstr "échec du nettoyage de l'index"71597160#: builtin/am.c:20837161msgid ""7162"You seem to have moved HEAD since the last 'am' failure.\n"7163"Not rewinding to ORIG_HEAD"7164msgstr ""7165"Vous semblez avoir déplacé la HEAD depuis le dernier échec de 'am'.\n"7166"Pas de retour à ORIG_HEAD"71677168#: builtin/am.c:21747169#, c-format7170msgid "Invalid value for --patch-format: %s"7171msgstr "Valeur invalide pour --patch-format : %s"71727173#: builtin/am.c:22107174msgid "git am [<options>] [(<mbox> | <Maildir>)...]"7175msgstr "git am [<options>] [(<mbox> | <Maildir>)...]"71767177#: builtin/am.c:22117178msgid "git am [<options>] (--continue | --skip | --abort)"7179msgstr "git am [<options>] (--continue | --quit | --abort)"71807181#: builtin/am.c:22177182msgid "run interactively"7183msgstr "exécution interactive"71847185#: builtin/am.c:22197186msgid "historical option -- no-op"7187msgstr "option historique -- no-op"71887189#: builtin/am.c:22217190msgid "allow fall back on 3way merging if needed"7191msgstr "permettre de revenir à une fusion à 3 points si nécessaire"71927193#: builtin/am.c:2222 builtin/init-db.c:485 builtin/prune-packed.c:587194#: builtin/repack.c:2997195msgid "be quiet"7196msgstr "être silencieux"71977198#: builtin/am.c:22247199msgid "add a Signed-off-by line to the commit message"7200msgstr "ajouter une ligne Signed-off-by au message de validation"72017202#: builtin/am.c:22277203msgid "recode into utf8 (default)"7204msgstr "recoder en utf-8 (par défaut)"72057206#: builtin/am.c:22297207msgid "pass -k flag to git-mailinfo"7208msgstr "passer l'option -k à git-mailinfo"72097210#: builtin/am.c:22317211msgid "pass -b flag to git-mailinfo"7212msgstr "passer l'option -b à git-mailinfo"72137214#: builtin/am.c:22337215msgid "pass -m flag to git-mailinfo"7216msgstr "passer l'option -m à git-mailinfo"72177218#: builtin/am.c:22357219msgid "pass --keep-cr flag to git-mailsplit for mbox format"7220msgstr "passer l'option --keep-cr à git-mailsplit fpour le format mbox"72217222#: builtin/am.c:22387223msgid "do not pass --keep-cr flag to git-mailsplit independent of am.keepcr"7224msgstr ""7225"ne pas passer l'option --keep-cr à git-mailsplit indépendamment de am.keepcr"72267227#: builtin/am.c:22417228msgid "strip everything before a scissors line"7229msgstr "retirer tout le contenu avant la ligne des ciseaux"72307231#: builtin/am.c:2243 builtin/am.c:2246 builtin/am.c:2249 builtin/am.c:22527232#: builtin/am.c:2255 builtin/am.c:2258 builtin/am.c:2261 builtin/am.c:22647233#: builtin/am.c:22707234msgid "pass it through git-apply"7235msgstr "le passer jusqu'à git-apply"72367237#: builtin/am.c:2260 builtin/commit.c:1332 builtin/fmt-merge-msg.c:6707238#: builtin/fmt-merge-msg.c:673 builtin/grep.c:857 builtin/merge.c:2377239#: builtin/pull.c:150 builtin/pull.c:208 builtin/repack.c:3087240#: builtin/repack.c:312 builtin/repack.c:314 builtin/show-branch.c:6507241#: builtin/show-ref.c:170 builtin/tag.c:384 parse-options.h:1447242#: parse-options.h:146 parse-options.h:2587243msgid "n"7244msgstr "n"72457246#: builtin/am.c:2266 builtin/branch.c:651 builtin/for-each-ref.c:387247#: builtin/replace.c:543 builtin/tag.c:420 builtin/verify-tag.c:397248msgid "format"7249msgstr "format"72507251#: builtin/am.c:22677252msgid "format the patch(es) are in"7253msgstr "format de présentation des patchs"72547255#: builtin/am.c:22737256msgid "override error message when patch failure occurs"7257msgstr "surcharger le message d'erreur lors d'un échec d'application de patch"72587259#: builtin/am.c:22757260msgid "continue applying patches after resolving a conflict"7261msgstr "continuer à appliquer les patchs après résolution d'un conflit"72627263#: builtin/am.c:22787264msgid "synonyms for --continue"7265msgstr "synonymes de --continue"72667267#: builtin/am.c:22817268msgid "skip the current patch"7269msgstr "sauter le patch courant"72707271#: builtin/am.c:22847272msgid "restore the original branch and abort the patching operation."7273msgstr ""7274"restaurer la branche originale et abandonner les applications de patch."72757276#: builtin/am.c:22877277msgid "abort the patching operation but keep HEAD where it is."7278msgstr "abandonne l'opération de patch mais garde HEAD où il est."72797280#: builtin/am.c:22907281msgid "show the patch being applied."7282msgstr "afficher le patch en cours d'application."72837284#: builtin/am.c:22947285msgid "lie about committer date"7286msgstr "mentir sur la date de validation"72877288#: builtin/am.c:22967289msgid "use current timestamp for author date"7290msgstr "utiliser l'horodatage actuel pour la date d'auteur"72917292#: builtin/am.c:2298 builtin/commit.c:1468 builtin/merge.c:2717293#: builtin/pull.c:183 builtin/revert.c:113 builtin/tag.c:4007294msgid "key-id"7295msgstr "id-clé"72967297#: builtin/am.c:22997298msgid "GPG-sign commits"7299msgstr "signer les commits avec GPG"73007301#: builtin/am.c:23027302msgid "(internal use for git-rebase)"7303msgstr "(utilisation interne pour git-rebase)"73047305#: builtin/am.c:23207306msgid ""7307"The -b/--binary option has been a no-op for long time, and\n"7308"it will be removed. Please do not use it anymore."7309msgstr ""7310"L'option -b/--binary ne fait plus rien depuis longtemps,\n"7311"et elle sera supprimée. Veuillez ne plus l'utiliser."73127313#: builtin/am.c:23277314msgid "failed to read the index"7315msgstr "échec à la lecture de l'index"73167317#: builtin/am.c:23427318#, c-format7319msgid "previous rebase directory %s still exists but mbox given."7320msgstr ""7321"le répertoire précédent de rebasage %s existe toujours mais mbox donnée."73227323#: builtin/am.c:23667324#, c-format7325msgid ""7326"Stray %s directory found.\n"7327"Use \"git am --abort\" to remove it."7328msgstr ""7329"Répertoire abandonné %s trouvé.\n"7330"Utilisez \"git am --abort\" pour le supprimer."73317332#: builtin/am.c:23727333msgid "Resolve operation not in progress, we are not resuming."7334msgstr ""7335"Pas de résolution de l'opération en cours, nous ne sommes pas dans une "7336"reprise."73377338#: builtin/apply.c:87339msgid "git apply [<options>] [<patch>...]"7340msgstr "git apply [<options>] [<patch>...]"73417342#: builtin/archive.c:177343#, c-format7344msgid "could not create archive file '%s'"7345msgstr "création impossible du fichier d'archive '%s'"73467347#: builtin/archive.c:207348msgid "could not redirect output"7349msgstr "impossible de rediriger la sortie"73507351#: builtin/archive.c:377352msgid "git archive: Remote with no URL"7353msgstr "git archive : Dépôt distant sans URL"73547355#: builtin/archive.c:587356msgid "git archive: expected ACK/NAK, got a flush packet"7357msgstr "git archive : ACK/NACK attendu, paquet de nettoyage reçu"73587359#: builtin/archive.c:617360#, c-format7361msgid "git archive: NACK %s"7362msgstr "git archive : NACK %s"73637364#: builtin/archive.c:647365msgid "git archive: protocol error"7366msgstr "git archive : erreur de protocole"73677368#: builtin/archive.c:687369msgid "git archive: expected a flush"7370msgstr "git archive : vidage attendu"73717372#: builtin/bisect--helper.c:127373msgid "git bisect--helper --next-all [--no-checkout]"7374msgstr "git bisect --helper --next-all [--no-checkout]"73757376#: builtin/bisect--helper.c:137377msgid "git bisect--helper --write-terms <bad_term> <good_term>"7378msgstr "git bisect--helper --write-terms <terme-pour-mauvais> <terme-pour-bon>"73797380#: builtin/bisect--helper.c:147381msgid "git bisect--helper --bisect-clean-state"7382msgstr "git bisect--helper --bisect-clean-state"73837384#: builtin/bisect--helper.c:467385#, c-format7386msgid "'%s' is not a valid term"7387msgstr "'%s' n'est pas un terme valide"73887389#: builtin/bisect--helper.c:507390#, c-format7391msgid "can't use the builtin command '%s' as a term"7392msgstr "impossible d'utiliser la commande incluse '%s' comme terme"73937394#: builtin/bisect--helper.c:607395#, c-format7396msgid "can't change the meaning of the term '%s'"7397msgstr "impossible de modifier la signification du terme '%s'"73987399#: builtin/bisect--helper.c:717400msgid "please use two different terms"7401msgstr "veuillez utiliser deux termes différents"74027403#: builtin/bisect--helper.c:787404msgid "could not open the file BISECT_TERMS"7405msgstr "impossible d'ouvrir le fichier BISECT_TERMS"74067407#: builtin/bisect--helper.c:1207408msgid "perform 'git bisect next'"7409msgstr "effectuer 'git bisect next'"74107411#: builtin/bisect--helper.c:1227412msgid "write the terms to .git/BISECT_TERMS"7413msgstr "écrire les termes dans .git/BISECT_TERMS"74147415#: builtin/bisect--helper.c:1247416msgid "cleanup the bisection state"7417msgstr "vérifier l'état de la bissection"74187419#: builtin/bisect--helper.c:1267420msgid "check for expected revs"7421msgstr "vérifier si des révisions sont attendues"74227423#: builtin/bisect--helper.c:1287424msgid "update BISECT_HEAD instead of checking out the current commit"7425msgstr "mettre à jour BISECT_HEAD au lieu d'extraire le commit actuel"74267427#: builtin/bisect--helper.c:1437428msgid "--write-terms requires two arguments"7429msgstr "--write-terms exige deux arguments"74307431#: builtin/bisect--helper.c:1477432msgid "--bisect-clean-state requires no arguments"7433msgstr "--bisect-clean-state ne supporte aucun argument"74347435#: builtin/blame.c:317436msgid "git blame [<options>] [<rev-opts>] [<rev>] [--] <file>"7437msgstr "git blame [<options>] [<rev-opts>] [<rev>] [--] <fichier>"74387439#: builtin/blame.c:367440msgid "<rev-opts> are documented in git-rev-list(1)"7441msgstr "<options-de-révision> sont documentés dans git-rev-list(1)"74427443#: builtin/blame.c:4067444#, c-format7445msgid "expecting a color: %s"7446msgstr "couleur attendue : %s"74477448#: builtin/blame.c:4137449msgid "must end with a color"7450msgstr "doit finir avec une couleur"74517452#: builtin/blame.c:7007453#, c-format7454msgid "invalid color '%s' in color.blame.repeatedLines"7455msgstr "couleur invalide '%s' dans color.blame.repeatedlines"74567457#: builtin/blame.c:7187458msgid "invalid value for blame.coloring"7459msgstr "valeur invalide pour blame.coloring"74607461#: builtin/blame.c:7897462msgid "Show blame entries as we find them, incrementally"7463msgstr ""7464"Montrer les éléments de blâme au fur et à mesure de leur découverte, de "7465"manière incrémentale"74667467#: builtin/blame.c:7907468msgid "Show blank SHA-1 for boundary commits (Default: off)"7469msgstr "Montrer un SHA-1 blanc pour les commits de limite (Défaut : désactivé)"74707471#: builtin/blame.c:7917472msgid "Do not treat root commits as boundaries (Default: off)"7473msgstr ""7474"Ne pas traiter les commits racine comme des limites (Défaut : désactivé)"74757476#: builtin/blame.c:7927477msgid "Show work cost statistics"7478msgstr "Montrer les statistiques de coût d'activité"74797480#: builtin/blame.c:7937481msgid "Force progress reporting"7482msgstr "Forcer l'affichage de l'état d'avancement"74837484#: builtin/blame.c:7947485msgid "Show output score for blame entries"7486msgstr "Montrer le score de sortie pour les éléments de blâme"74877488#: builtin/blame.c:7957489msgid "Show original filename (Default: auto)"7490msgstr "Montrer les noms de fichier originaux (Défaut : auto)"74917492#: builtin/blame.c:7967493msgid "Show original linenumber (Default: off)"7494msgstr "Montrer les numéros de lignes originaux (Défaut : désactivé)"74957496#: builtin/blame.c:7977497msgid "Show in a format designed for machine consumption"7498msgstr "Afficher dans un format propice à la consommation par machine"74997500#: builtin/blame.c:7987501msgid "Show porcelain format with per-line commit information"7502msgstr "Afficher en format porcelaine avec l'information de commit par ligne"75037504#: builtin/blame.c:7997505msgid "Use the same output mode as git-annotate (Default: off)"7506msgstr "Utiliser le même mode de sortie que git-annotate (Défaut : désactivé)"75077508#: builtin/blame.c:8007509msgid "Show raw timestamp (Default: off)"7510msgstr "Afficher les horodatages bruts (Défaut : désactivé)"75117512#: builtin/blame.c:8017513msgid "Show long commit SHA1 (Default: off)"7514msgstr "Afficher les longs SHA1 de commits (Défaut : désactivé)"75157516#: builtin/blame.c:8027517msgid "Suppress author name and timestamp (Default: off)"7518msgstr "Supprimer le nom de l'auteur et l'horodatage (Défaut : désactivé)"75197520#: builtin/blame.c:8037521msgid "Show author email instead of name (Default: off)"7522msgstr "Afficher le courriel de l'auteur au lieu du nom (Défaut : désactivé)"75237524#: builtin/blame.c:8047525msgid "Ignore whitespace differences"7526msgstr "Ignorer les différences d'espace"75277528#: builtin/blame.c:8057529msgid "color redundant metadata from previous line differently"7530msgstr ""7531"colorer différemment les métadonnées redondantes avec la ligne précédente"75327533#: builtin/blame.c:8067534msgid "color lines by age"7535msgstr "colorier les lignes par âge"75367537#: builtin/blame.c:8137538msgid "Use an experimental heuristic to improve diffs"7539msgstr "Utiliser une heuristique expérimentale pour améliorer les diffs"75407541#: builtin/blame.c:8157542msgid "Spend extra cycles to find better match"7543msgstr ""7544"Dépenser des cycles supplémentaires pour trouver une meilleure correspondance"75457546#: builtin/blame.c:8167547msgid "Use revisions from <file> instead of calling git-rev-list"7548msgstr ""7549"Utiliser les révisions du fichier <fichier> au lieu d'appeler git-rev-list"75507551#: builtin/blame.c:8177552msgid "Use <file>'s contents as the final image"7553msgstr "Utiliser le contenu de <fichier> comme image finale"75547555#: builtin/blame.c:818 builtin/blame.c:8197556msgid "score"7557msgstr "score"75587559#: builtin/blame.c:8187560msgid "Find line copies within and across files"7561msgstr "Trouver les copies de ligne dans et entre les fichiers"75627563#: builtin/blame.c:8197564msgid "Find line movements within and across files"7565msgstr "Trouver les mouvements de ligne dans et entre les fichiers"75667567#: builtin/blame.c:8207568msgid "n,m"7569msgstr "n,m"75707571#: builtin/blame.c:8207572msgid "Process only line range n,m, counting from 1"7573msgstr ""7574"Traiter seulement l'intervalle de ligne n,m en commençant le compte à 1"75757576#: builtin/blame.c:8697577msgid "--progress can't be used with --incremental or porcelain formats"7578msgstr ""7579"--progress ne peut pas être utilisé avec --incremental ou les formats "7580"porcelaine"75817582#. TRANSLATORS: This string is used to tell us the7583#. maximum display width for a relative timestamp in7584#. "git blame" output. For C locale, "4 years, 117585#. months ago", which takes 22 places, is the longest7586#. among various forms of relative timestamps, but7587#. your language may need more or fewer display7588#. columns.7589#.7590#: builtin/blame.c:9207591msgid "4 years, 11 months ago"7592msgstr "il y a 10 ans et 11 mois"75937594#: builtin/blame.c:10077595#, c-format7596msgid "file %s has only %lu line"7597msgid_plural "file %s has only %lu lines"7598msgstr[0] "le fichier %s n'a qu'%lu ligne"7599msgstr[1] "le fichier %s n'a que %lu lignes"76007601#: builtin/blame.c:10537602msgid "Blaming lines"7603msgstr "Assignation de blâme aux lignes"76047605#: builtin/branch.c:287606msgid "git branch [<options>] [-r | -a] [--merged | --no-merged]"7607msgstr "git branch [<options>] [-r | -a] [--merged | --no-merged]"76087609#: builtin/branch.c:297610msgid "git branch [<options>] [-l] [-f] <branch-name> [<start-point>]"7611msgstr "git branch [<options] [-l] [-f] <nom-de-branche> [<point-de-départ>]"76127613#: builtin/branch.c:307614msgid "git branch [<options>] [-r] (-d | -D) <branch-name>..."7615msgstr "git branch [<options>] [-r] (-d | -D) <nom-de-branche>..."76167617#: builtin/branch.c:317618msgid "git branch [<options>] (-m | -M) [<old-branch>] <new-branch>"7619msgstr ""7620"git branch [<options>] (-m | -M) [<ancienne-branche>] <nouvelle-branche>"76217622#: builtin/branch.c:327623msgid "git branch [<options>] (-c | -C) [<old-branch>] <new-branch>"7624msgstr ""7625"git branch [<options>] (-c | -C) [<ancienne-branche>] <nouvelle-branche>"76267627#: builtin/branch.c:337628msgid "git branch [<options>] [-r | -a] [--points-at]"7629msgstr "git branch [<options>] [-r | -a] [--points-at]"76307631#: builtin/branch.c:347632msgid "git branch [<options>] [-r | -a] [--format]"7633msgstr "git branch [<options>] [-r | -a] [--format]"76347635#: builtin/branch.c:1517636#, c-format7637msgid ""7638"deleting branch '%s' that has been merged to\n"7639" '%s', but not yet merged to HEAD."7640msgstr ""7641"suppression de la branche '%s' qui a été fusionnée dans\n"7642" '%s', mais pas dans HEAD."76437644#: builtin/branch.c:1557645#, c-format7646msgid ""7647"not deleting branch '%s' that is not yet merged to\n"7648" '%s', even though it is merged to HEAD."7649msgstr ""7650"branche '%s' non supprimée car elle n'a pas été fusionnée dans\n"7651" '%s', même si elle est fusionnée dans HEAD."76527653#: builtin/branch.c:1697654#, c-format7655msgid "Couldn't look up commit object for '%s'"7656msgstr "Impossible de rechercher l'objet commit pour '%s'"76577658#: builtin/branch.c:1737659#, c-format7660msgid ""7661"The branch '%s' is not fully merged.\n"7662"If you are sure you want to delete it, run 'git branch -D %s'."7663msgstr ""7664"La branche '%s' n'est pas totalement fusionnée.\n"7665"Si vous souhaitez réellement la supprimer, lancez 'git branch -D %s'."76667667#: builtin/branch.c:1867668msgid "Update of config-file failed"7669msgstr "Échec de la mise à jour du fichier de configuration"76707671#: builtin/branch.c:2177672msgid "cannot use -a with -d"7673msgstr "impossible d'utiliser -a avec -d"76747675#: builtin/branch.c:2237676msgid "Couldn't look up commit object for HEAD"7677msgstr "Impossible de rechercher l'objet commit pour HEAD"76787679#: builtin/branch.c:2377680#, c-format7681msgid "Cannot delete branch '%s' checked out at '%s'"7682msgstr "Impossible de supprimer la branche '%s' extraite dans '%s'"76837684#: builtin/branch.c:2527685#, c-format7686msgid "remote-tracking branch '%s' not found."7687msgstr "branche de suivi '%s' non trouvée."76887689#: builtin/branch.c:2537690#, c-format7691msgid "branch '%s' not found."7692msgstr "branche '%s' non trouvée."76937694#: builtin/branch.c:2687695#, c-format7696msgid "Error deleting remote-tracking branch '%s'"7697msgstr "Erreur lors de la suppression de la branche de suivi '%s'"76987699#: builtin/branch.c:2697700#, c-format7701msgid "Error deleting branch '%s'"7702msgstr "Erreur lors de la suppression de la branche '%s'"77037704#: builtin/branch.c:2767705#, c-format7706msgid "Deleted remote-tracking branch %s (was %s).\n"7707msgstr "Branche de suivi %s supprimée (précédemment %s).\n"77087709#: builtin/branch.c:2777710#, c-format7711msgid "Deleted branch %s (was %s).\n"7712msgstr "Branche %s supprimée (précédemment %s).\n"77137714#: builtin/branch.c:421 builtin/tag.c:597715msgid "unable to parse format string"7716msgstr "impossible d'analyser la chaîne de format"77177718#: builtin/branch.c:4587719#, c-format7720msgid "Branch %s is being rebased at %s"7721msgstr "La branche %s est en cours de rebasage sur %s"77227723#: builtin/branch.c:4627724#, c-format7725msgid "Branch %s is being bisected at %s"7726msgstr "La branche %s est en cours de bissection sur %s"77277728#: builtin/branch.c:4797729msgid "cannot copy the current branch while not on any."7730msgstr "impossible de copier la branche actuelle, il n'y en a pas."77317732#: builtin/branch.c:4817733msgid "cannot rename the current branch while not on any."7734msgstr "impossible de renommer la branche actuelle, il n'y en a pas."77357736#: builtin/branch.c:4927737#, c-format7738msgid "Invalid branch name: '%s'"7739msgstr "Nom de branche invalide : '%s'"77407741#: builtin/branch.c:5197742msgid "Branch rename failed"7743msgstr "Échec de renommage de la branche"77447745#: builtin/branch.c:5217746msgid "Branch copy failed"7747msgstr "Échec de copie de la branche"77487749#: builtin/branch.c:5257750#, c-format7751msgid "Created a copy of a misnamed branch '%s'"7752msgstr "Création d'une copie d'une branche mal nommée '%s'"77537754#: builtin/branch.c:5287755#, c-format7756msgid "Renamed a misnamed branch '%s' away"7757msgstr "Renommage d'une branche mal nommée '%s'"77587759#: builtin/branch.c:5347760#, c-format7761msgid "Branch renamed to %s, but HEAD is not updated!"7762msgstr "La branche a été renommée en %s, mais HEAD n'est pas mise à jour !"77637764#: builtin/branch.c:5437765msgid "Branch is renamed, but update of config-file failed"7766msgstr ""7767"La branche est renommée, mais la mise à jour du fichier de configuration a "7768"échoué"77697770#: builtin/branch.c:5457771msgid "Branch is copied, but update of config-file failed"7772msgstr ""7773"La branche est copiée, mais la mise à jour du fichier de configuration a "7774"échoué"77757776#: builtin/branch.c:5617777#, c-format7778msgid ""7779"Please edit the description for the branch\n"7780" %s\n"7781"Lines starting with '%c' will be stripped.\n"7782msgstr ""7783"Veuillez éditer la description de la branche\n"7784" %s\n"7785"Les lignes commençant par '%c' seront ignorées.\n"77867787#: builtin/branch.c:6027788msgid "Generic options"7789msgstr "Options génériques"77907791#: builtin/branch.c:6047792msgid "show hash and subject, give twice for upstream branch"7793msgstr "afficher le hachage et le sujet, doublé pour la branche amont"77947795#: builtin/branch.c:6057796msgid "suppress informational messages"7797msgstr "supprimer les messages d'information"77987799#: builtin/branch.c:6067800msgid "set up tracking mode (see git-pull(1))"7801msgstr "régler le mode de suivi (voir git-pull(1))"78027803#: builtin/branch.c:6087804msgid "do not use"7805msgstr "ne pas utiliser"78067807#: builtin/branch.c:6107808msgid "upstream"7809msgstr "amont"78107811#: builtin/branch.c:6107812msgid "change the upstream info"7813msgstr "modifier l'information amont"78147815#: builtin/branch.c:6117816msgid "Unset the upstream info"7817msgstr "Désactiver l'information amont"78187819#: builtin/branch.c:6127820msgid "use colored output"7821msgstr "utiliser la coloration dans la sortie"78227823#: builtin/branch.c:6137824msgid "act on remote-tracking branches"7825msgstr "agir sur les branches de suivi distantes"78267827#: builtin/branch.c:615 builtin/branch.c:6177828msgid "print only branches that contain the commit"7829msgstr "afficher seulement les branches qui contiennent le commit"78307831#: builtin/branch.c:616 builtin/branch.c:6187832msgid "print only branches that don't contain the commit"7833msgstr "afficher seulement les branches qui ne contiennent pas le commit"78347835#: builtin/branch.c:6217836msgid "Specific git-branch actions:"7837msgstr "Actions spécifiques à git-branch :"78387839#: builtin/branch.c:6227840msgid "list both remote-tracking and local branches"7841msgstr "afficher à la fois les branches de suivi et les branches locales"78427843#: builtin/branch.c:6247844msgid "delete fully merged branch"7845msgstr "supprimer une branche totalement fusionnée"78467847#: builtin/branch.c:6257848msgid "delete branch (even if not merged)"7849msgstr "supprimer une branche (même non fusionnée)"78507851#: builtin/branch.c:6267852msgid "move/rename a branch and its reflog"7853msgstr "déplacer/renommer une branche et son reflog"78547855#: builtin/branch.c:6277856msgid "move/rename a branch, even if target exists"7857msgstr "déplacer/renommer une branche, même si la cible existe"78587859#: builtin/branch.c:6287860msgid "copy a branch and its reflog"7861msgstr "copier une branche et son reflog"78627863#: builtin/branch.c:6297864msgid "copy a branch, even if target exists"7865msgstr "copier une branche, même si la cible existe"78667867#: builtin/branch.c:6307868msgid "list branch names"7869msgstr "afficher les noms des branches"78707871#: builtin/branch.c:6317872msgid "create the branch's reflog"7873msgstr "créer le reflog de la branche"78747875#: builtin/branch.c:6347876msgid "deprecated synonym for --create-reflog"7877msgstr "synonyme déconseillé de --create-reflog"78787879#: builtin/branch.c:6397880msgid "edit the description for the branch"7881msgstr "éditer la description de la branche"78827883#: builtin/branch.c:6407884msgid "force creation, move/rename, deletion"7885msgstr "forcer la création, le déplacement/renommage, ou la suppression"78867887#: builtin/branch.c:6417888msgid "print only branches that are merged"7889msgstr "afficher seulement les branches qui sont fusionnées"78907891#: builtin/branch.c:6427892msgid "print only branches that are not merged"7893msgstr "afficher seulement les branches qui ne sont pas fusionnées"78947895#: builtin/branch.c:6437896msgid "list branches in columns"7897msgstr "afficher les branches en colonnes"78987899#: builtin/branch.c:644 builtin/for-each-ref.c:40 builtin/ls-remote.c:707900#: builtin/tag.c:4137901msgid "key"7902msgstr "clé"79037904#: builtin/branch.c:645 builtin/for-each-ref.c:41 builtin/ls-remote.c:717905#: builtin/tag.c:4147906msgid "field name to sort on"7907msgstr "nom du champ servant à trier"79087909#: builtin/branch.c:647 builtin/for-each-ref.c:43 builtin/notes.c:4107910#: builtin/notes.c:413 builtin/notes.c:573 builtin/notes.c:5767911#: builtin/tag.c:4167912msgid "object"7913msgstr "objet"79147915#: builtin/branch.c:6487916msgid "print only branches of the object"7917msgstr "afficher seulement les branches de l'objet"79187919#: builtin/branch.c:650 builtin/for-each-ref.c:49 builtin/tag.c:4237920msgid "sorting and filtering are case insensitive"7921msgstr "le tri et le filtrage sont non-sensibles à la casse"79227923#: builtin/branch.c:651 builtin/for-each-ref.c:38 builtin/tag.c:4217924#: builtin/verify-tag.c:397925msgid "format to use for the output"7926msgstr "format à utiliser pour la sortie"79277928#: builtin/branch.c:674 builtin/clone.c:7397929msgid "HEAD not found below refs/heads!"7930msgstr "HEAD non trouvée sous refs/heads !"79317932#: builtin/branch.c:6977933msgid "--column and --verbose are incompatible"7934msgstr "--column et --verbose sont incompatibles"79357936#: builtin/branch.c:717 builtin/branch.c:769 builtin/branch.c:7787937msgid "branch name required"7938msgstr "le nom de branche est requis"79397940#: builtin/branch.c:7457941msgid "Cannot give description to detached HEAD"7942msgstr "Impossible de décrire une HEAD détachée"79437944#: builtin/branch.c:7507945msgid "cannot edit description of more than one branch"7946msgstr "impossible d'éditer la description de plus d'une branche"79477948#: builtin/branch.c:7577949#, c-format7950msgid "No commit on branch '%s' yet."7951msgstr "Aucun commit sur la branche '%s'."79527953#: builtin/branch.c:7607954#, c-format7955msgid "No branch named '%s'."7956msgstr "Aucune branche nommée '%s'."79577958#: builtin/branch.c:7757959msgid "too many branches for a copy operation"7960msgstr "trop de branches pour une opération de copie"79617962#: builtin/branch.c:7847963msgid "too many arguments for a rename operation"7964msgstr "trop d'arguments pour une opération de renommage"79657966#: builtin/branch.c:7897967msgid "too many arguments to set new upstream"7968msgstr "trop d'arguments pour spécifier une branche amont"79697970#: builtin/branch.c:7937971#, c-format7972msgid ""7973"could not set upstream of HEAD to %s when it does not point to any branch."7974msgstr ""7975"impossible de spécifier une branche amont de HEAD par %s qui ne pointe sur "7976"aucune branche."79777978#: builtin/branch.c:796 builtin/branch.c:818 builtin/branch.c:8347979#, c-format7980msgid "no such branch '%s'"7981msgstr "pas de branche '%s'"79827983#: builtin/branch.c:8007984#, c-format7985msgid "branch '%s' does not exist"7986msgstr "la branche '%s' n'existe pas"79877988#: builtin/branch.c:8127989msgid "too many arguments to unset upstream"7990msgstr "trop d'arguments pour désactiver un amont"79917992#: builtin/branch.c:8167993msgid "could not unset upstream of HEAD when it does not point to any branch."7994msgstr ""7995"impossible de désactiver une branche amont de HEAD quand elle ne pointe sur "7996"aucune branche."79977998#: builtin/branch.c:8227999#, c-format8000msgid "Branch '%s' has no upstream information"8001msgstr "La branche '%s' n'a aucune information de branche amont"80028003#: builtin/branch.c:8378004msgid "-a and -r options to 'git branch' do not make sense with a branch name"8005msgstr ""8006"les options -a et -r de 'git branch' n'ont pas de sens avec un nom de branche"80078008#: builtin/branch.c:8408009msgid ""8010"the '--set-upstream' option is no longer supported. Please use '--track' or "8011"'--set-upstream-to' instead."8012msgstr ""8013"l'option '--set-upstream' est obsolète. Utilisez '--track' ou '--set-"8014"upstream-to' à la place."80158016#: builtin/bundle.c:458017#, c-format8018msgid "%s is okay\n"8019msgstr "%s est correct\n"80208021#: builtin/bundle.c:588022msgid "Need a repository to create a bundle."8023msgstr "La création d'un colis requiert un dépôt."80248025#: builtin/bundle.c:628026msgid "Need a repository to unbundle."8027msgstr "Le dépaquetage d'un colis requiert un dépôt."80288029#: builtin/cat-file.c:5778030msgid ""8031"git cat-file (-t [--allow-unknown-type] | -s [--allow-unknown-type] | -e | -"8032"p | <type> | --textconv | --filters) [--path=<path>] <object>"8033msgstr ""8034"git cat-file (-t [--allow-unknow-type] | -s [--allow-unknow-type] | -e | -p "8035"| <type> | --textconv | --filters) [--path=<chemin>] <objet>"80368037#: builtin/cat-file.c:5788038msgid ""8039"git cat-file (--batch | --batch-check) [--follow-symlinks] [--textconv | --"8040"filters]"8041msgstr ""8042"git cat-file (--batch | --batch-check) [--follow-symlinks] [--textconv | --"8043"filters]"80448045#: builtin/cat-file.c:6158046msgid "<type> can be one of: blob, tree, commit, tag"8047msgstr "<type> peut être : blob, tree, commit ou tag"80488049#: builtin/cat-file.c:6168050msgid "show object type"8051msgstr "afficher le type de l'objet"80528053#: builtin/cat-file.c:6178054msgid "show object size"8055msgstr "afficher la taille de l'objet"80568057#: builtin/cat-file.c:6198058msgid "exit with zero when there's no error"8059msgstr "sortir avec un code d'erreur nul quand il n'y a aucune erreur"80608061#: builtin/cat-file.c:6208062msgid "pretty-print object's content"8063msgstr "afficher avec mise en forme le contenu de l'objet"80648065#: builtin/cat-file.c:6228066msgid "for blob objects, run textconv on object's content"8067msgstr "pour les objets blob, lancer textconv sur le contenu de l'objet"80688069#: builtin/cat-file.c:6248070msgid "for blob objects, run filters on object's content"8071msgstr "pour les objets blob, lancer les filtres sur le contenu de l'objet"80728073#: builtin/cat-file.c:625 git-submodule.sh:8648074msgid "blob"8075msgstr "blob"80768077#: builtin/cat-file.c:6268078msgid "use a specific path for --textconv/--filters"8079msgstr "utiliser un chemin spécifique pour --textconv/--filters"80808081#: builtin/cat-file.c:6288082msgid "allow -s and -t to work with broken/corrupt objects"8083msgstr "autoriser -s et -t à travailler sur des objets cassés/corrompus"80848085#: builtin/cat-file.c:6298086msgid "buffer --batch output"8087msgstr "bufferiser la sortie de --batch"80888089#: builtin/cat-file.c:6318090msgid "show info and content of objects fed from the standard input"8091msgstr ""8092"afficher l'information et le contenu des objets passés en entrée standard"80938094#: builtin/cat-file.c:6348095msgid "show info about objects fed from the standard input"8096msgstr "afficher l'information des objets passés en entrée standard"80978098#: builtin/cat-file.c:6378099msgid "follow in-tree symlinks (used with --batch or --batch-check)"8100msgstr ""8101"suivre les liens symbolique internes à la copie de travail (utilisé avec --"8102"batch ou --batch-check)"81038104#: builtin/cat-file.c:6398105msgid "show all objects with --batch or --batch-check"8106msgstr "montrer tous les objets avec --batch ou --batch-check"81078108#: builtin/cat-file.c:6418109msgid "do not order --batch-all-objects output"8110msgstr "ne pas ordonner la sortie de --batch-all-objects"81118112#: builtin/check-attr.c:128113msgid "git check-attr [-a | --all | <attr>...] [--] <pathname>..."8114msgstr "git check-attr [-a | --all | <attr>...] [--] <chemin>..."81158116#: builtin/check-attr.c:138117msgid "git check-attr --stdin [-z] [-a | --all | <attr>...]"8118msgstr "git check-attr --stdin [-z] [-a | --all | <attr>...]"81198120#: builtin/check-attr.c:208121msgid "report all attributes set on file"8122msgstr "afficher tous les attributs associés au fichier"81238124#: builtin/check-attr.c:218125msgid "use .gitattributes only from the index"8126msgstr "utiliser .gitattributes seulement depuis l'index"81278128#: builtin/check-attr.c:22 builtin/check-ignore.c:24 builtin/hash-object.c:1018129msgid "read file names from stdin"8130msgstr "lire les noms de fichier depuis l'entrée standard"81318132#: builtin/check-attr.c:24 builtin/check-ignore.c:268133msgid "terminate input and output records by a NUL character"8134msgstr ""8135"terminer les enregistrements en entrée et en sortie par un caractère NUL"81368137#: builtin/check-ignore.c:20 builtin/checkout.c:1120 builtin/gc.c:5038138#: builtin/worktree.c:4478139msgid "suppress progress reporting"8140msgstr "supprimer l'état d'avancement"81418142#: builtin/check-ignore.c:288143msgid "show non-matching input paths"8144msgstr "afficher les chemins en entrée qui ne correspondent pas"81458146#: builtin/check-ignore.c:308147msgid "ignore index when checking"8148msgstr "ignorer l'index pendant la vérification"81498150#: builtin/check-ignore.c:1598151msgid "cannot specify pathnames with --stdin"8152msgstr "impossible de spécifier les chemins avec --stdin"81538154#: builtin/check-ignore.c:1628155msgid "-z only makes sense with --stdin"8156msgstr "-z n'a de sens qu'avec l'option --stdin"81578158#: builtin/check-ignore.c:1648159msgid "no path specified"8160msgstr "aucun chemin spécifié"81618162#: builtin/check-ignore.c:1688163msgid "--quiet is only valid with a single pathname"8164msgstr "--quiet n'est valide qu'avec un seul chemin"81658166#: builtin/check-ignore.c:1708167msgid "cannot have both --quiet and --verbose"8168msgstr "impossible d'avoir --quiet et --verbose"81698170#: builtin/check-ignore.c:1738171msgid "--non-matching is only valid with --verbose"8172msgstr "--non-matching n'est valide qu'avec --verbose"81738174#: builtin/check-mailmap.c:98175msgid "git check-mailmap [<options>] <contact>..."8176msgstr "git check-mailmap [<options>] <contact>..."81778178#: builtin/check-mailmap.c:148179msgid "also read contacts from stdin"8180msgstr "lire aussi les contacts depuis l'entrée standard"81818182#: builtin/check-mailmap.c:258183#, c-format8184msgid "unable to parse contact: %s"8185msgstr "impossible d'analyser le contact : %s"81868187#: builtin/check-mailmap.c:488188msgid "no contacts specified"8189msgstr "aucun contact spécifié"81908191#: builtin/checkout-index.c:1288192msgid "git checkout-index [<options>] [--] [<file>...]"8193msgstr "git checkout-index [<options>] [--] [<fichier>...]"81948195#: builtin/checkout-index.c:1438196msgid "stage should be between 1 and 3 or all"8197msgstr "stage doit valoir entre 1 et 3, ou all"81988199#: builtin/checkout-index.c:1598200msgid "check out all files in the index"8201msgstr "extraire tous les fichiers présents dans l'index"82028203#: builtin/checkout-index.c:1608204msgid "force overwrite of existing files"8205msgstr "forcer l'écrasement des fichiers existants"82068207#: builtin/checkout-index.c:1628208msgid "no warning for existing files and files not in index"8209msgstr ""8210"pas d'avertissement pour les fichiers existants et les fichiers absents de "8211"l'index"82128213#: builtin/checkout-index.c:1648214msgid "don't checkout new files"8215msgstr "ne pas extraire les nouveaux fichiers"82168217#: builtin/checkout-index.c:1668218msgid "update stat information in the index file"8219msgstr "mettre à jour l'information de stat dans le fichier d'index"82208221#: builtin/checkout-index.c:1708222msgid "read list of paths from the standard input"8223msgstr "lire la liste des chemins depuis l'entrée standard"82248225#: builtin/checkout-index.c:1728226msgid "write the content to temporary files"8227msgstr "écrire le contenu dans des fichiers temporaires"82288229#: builtin/checkout-index.c:173 builtin/column.c:318230#: builtin/submodule--helper.c:1361 builtin/submodule--helper.c:13648231#: builtin/submodule--helper.c:1372 builtin/submodule--helper.c:17368232#: builtin/worktree.c:6208233msgid "string"8234msgstr "chaîne"82358236#: builtin/checkout-index.c:1748237msgid "when creating files, prepend <string>"8238msgstr "lors de la création de fichiers, préfixer par <chaîne>"82398240#: builtin/checkout-index.c:1768241msgid "copy out the files from named stage"8242msgstr "copier les fichiers depuis l'index nommé"82438244#: builtin/checkout.c:298245msgid "git checkout [<options>] <branch>"8246msgstr "git checkout [<options>] <branche>"82478248#: builtin/checkout.c:308249msgid "git checkout [<options>] [<branch>] -- <file>..."8250msgstr "git checkout [<options>] [<branche>] -- <fichier>..."82518252#: builtin/checkout.c:138 builtin/checkout.c:1718253#, c-format8254msgid "path '%s' does not have our version"8255msgstr "le chemin '%s' n'a pas notre version"82568257#: builtin/checkout.c:140 builtin/checkout.c:1738258#, c-format8259msgid "path '%s' does not have their version"8260msgstr "le chemin '%s' n'a pas leur version"82618262#: builtin/checkout.c:1568263#, c-format8264msgid "path '%s' does not have all necessary versions"8265msgstr "le chemin '%s' n'a aucune des versions nécessaires"82668267#: builtin/checkout.c:2008268#, c-format8269msgid "path '%s' does not have necessary versions"8270msgstr "le chemin '%s' n'a pas les versions nécessaires"82718272#: builtin/checkout.c:2178273#, c-format8274msgid "path '%s': cannot merge"8275msgstr "chemin '%s' : impossible de fusionner"82768277#: builtin/checkout.c:2338278#, c-format8279msgid "Unable to add merge result for '%s'"8280msgstr "Impossible d'ajouter le résultat de fusion pour '%s'"82818282#: builtin/checkout.c:255 builtin/checkout.c:258 builtin/checkout.c:2618283#: builtin/checkout.c:2648284#, c-format8285msgid "'%s' cannot be used with updating paths"8286msgstr "'%s' ne peut pas être utilisé avec des mises à jour de chemins"82878288#: builtin/checkout.c:267 builtin/checkout.c:2708289#, c-format8290msgid "'%s' cannot be used with %s"8291msgstr "'%s' ne peut pas être utilisé avec %s"82928293#: builtin/checkout.c:2738294#, c-format8295msgid "Cannot update paths and switch to branch '%s' at the same time."8296msgstr ""8297"Impossible de mettre à jour les chemins et basculer sur la branche '%s' en "8298"même temps."82998300#: builtin/checkout.c:342 builtin/checkout.c:3498301#, c-format8302msgid "path '%s' is unmerged"8303msgstr "le chemin '%s' n'est pas fusionné"83048305#: builtin/checkout.c:5088306msgid "you need to resolve your current index first"8307msgstr "vous devez d'abord résoudre votre index courant"83088309#: builtin/checkout.c:6458310#, c-format8311msgid "Can not do reflog for '%s': %s\n"8312msgstr "Impossible de faire un reflog pour '%s' : %s\n"83138314#: builtin/checkout.c:6868315msgid "HEAD is now at"8316msgstr "HEAD est maintenant sur"83178318#: builtin/checkout.c:690 builtin/clone.c:6928319msgid "unable to update HEAD"8320msgstr "impossible de mettre à jour HEAD"83218322#: builtin/checkout.c:6948323#, c-format8324msgid "Reset branch '%s'\n"8325msgstr "Remise à zéro de la branche '%s'\n"83268327#: builtin/checkout.c:6978328#, c-format8329msgid "Already on '%s'\n"8330msgstr "Déjà sur '%s'\n"83318332#: builtin/checkout.c:7018333#, c-format8334msgid "Switched to and reset branch '%s'\n"8335msgstr "Basculement et remise à zéro de la branche '%s'\n"83368337#: builtin/checkout.c:703 builtin/checkout.c:10528338#, c-format8339msgid "Switched to a new branch '%s'\n"8340msgstr "Basculement sur la nouvelle branche '%s'\n"83418342#: builtin/checkout.c:7058343#, c-format8344msgid "Switched to branch '%s'\n"8345msgstr "Basculement sur la branche '%s'\n"83468347#: builtin/checkout.c:7568348#, c-format8349msgid " ... and %d more.\n"8350msgstr " ... et %d en plus.\n"83518352#: builtin/checkout.c:7628353#, c-format8354msgid ""8355"Warning: you are leaving %d commit behind, not connected to\n"8356"any of your branches:\n"8357"\n"8358"%s\n"8359msgid_plural ""8360"Warning: you are leaving %d commits behind, not connected to\n"8361"any of your branches:\n"8362"\n"8363"%s\n"8364msgstr[0] ""8365"Attention : vous abandonnez %d commit, non connecté à\n"8366"une branche :\n"8367"\n"8368"%s\n"8369msgstr[1] ""8370"Attention : vous abandonnez %d commits, non connectés à\n"8371"une branche :\n"8372"\n"8373"%s\n"83748375#: builtin/checkout.c:7818376#, c-format8377msgid ""8378"If you want to keep it by creating a new branch, this may be a good time\n"8379"to do so with:\n"8380"\n"8381" git branch <new-branch-name> %s\n"8382"\n"8383msgid_plural ""8384"If you want to keep them by creating a new branch, this may be a good time\n"8385"to do so with:\n"8386"\n"8387" git branch <new-branch-name> %s\n"8388"\n"8389msgstr[0] ""8390"Si vous souhaitez le garder en créant une nouvelle branche, c'est le bon "8391"moment\n"8392"pour le faire avec :\n"8393"\n"8394"git branch <nouvelle-branche> %s\n"8395"\n"8396msgstr[1] ""8397"Si vous souhaitez les garder en créant une nouvelle branche, c'est le bon "8398"moment\n"8399"pour le faire avec :\n"8400"\n"8401"git branch <nouvelle-branche> %s\n"8402"\n"84038404#: builtin/checkout.c:8138405msgid "internal error in revision walk"8406msgstr "erreur interne lors du parcours des révisions"84078408#: builtin/checkout.c:8178409msgid "Previous HEAD position was"8410msgstr "La position précédente de HEAD était sur"84118412#: builtin/checkout.c:845 builtin/checkout.c:10478413msgid "You are on a branch yet to be born"8414msgstr "Vous êtes sur une branche qui doit encore naître"84158416#: builtin/checkout.c:9528417#, c-format8418msgid "only one reference expected, %d given."8419msgstr "une seule référence attendue, %d fournies."84208421#: builtin/checkout.c:993 builtin/worktree.c:241 builtin/worktree.c:3968422#, c-format8423msgid "invalid reference: %s"8424msgstr "référence invalide : %s"84258426#: builtin/checkout.c:10228427#, c-format8428msgid "reference is not a tree: %s"8429msgstr "la référence n'est pas un arbre : %s"84308431#: builtin/checkout.c:10618432msgid "paths cannot be used with switching branches"8433msgstr "impossible d'utiliser des chemins avec un basculement de branches"84348435#: builtin/checkout.c:1064 builtin/checkout.c:10688436#, c-format8437msgid "'%s' cannot be used with switching branches"8438msgstr "'%s' ne peut pas être utilisé avec un basculement de branches"84398440#: builtin/checkout.c:1072 builtin/checkout.c:1075 builtin/checkout.c:10808441#: builtin/checkout.c:10838442#, c-format8443msgid "'%s' cannot be used with '%s'"8444msgstr "'%s' ne peut pas être utilisé avec '%s'"84458446#: builtin/checkout.c:10888447#, c-format8448msgid "Cannot switch branch to a non-commit '%s'"8449msgstr "Impossible de basculer de branche vers '%s' qui n'est pas un commit"84508451#: builtin/checkout.c:1121 builtin/checkout.c:1123 builtin/clone.c:1198452#: builtin/remote.c:168 builtin/remote.c:170 builtin/worktree.c:4408453#: builtin/worktree.c:4428454msgid "branch"8455msgstr "branche"84568457#: builtin/checkout.c:11228458msgid "create and checkout a new branch"8459msgstr "créer et extraire une nouvelle branche"84608461#: builtin/checkout.c:11248462msgid "create/reset and checkout a branch"8463msgstr "créer/réinitialiser et extraire une branche"84648465#: builtin/checkout.c:11258466msgid "create reflog for new branch"8467msgstr "créer un reflog pour une nouvelle branche"84688469#: builtin/checkout.c:1126 builtin/worktree.c:4448470msgid "detach HEAD at named commit"8471msgstr "détacher la HEAD au commit nommé"84728473#: builtin/checkout.c:11278474msgid "set upstream info for new branch"8475msgstr "paramétrer les coordonnées de branche amont pour une nouvelle branche"84768477#: builtin/checkout.c:11298478msgid "new-branch"8479msgstr "nouvelle branche"84808481#: builtin/checkout.c:11298482msgid "new unparented branch"8483msgstr "nouvelle branche sans parent"84848485#: builtin/checkout.c:11318486msgid "checkout our version for unmerged files"8487msgstr "extraire notre version pour les fichiers non fusionnés"84888489#: builtin/checkout.c:11348490msgid "checkout their version for unmerged files"8491msgstr "extraire leur version pour les fichiers non fusionnés"84928493#: builtin/checkout.c:11368494msgid "force checkout (throw away local modifications)"8495msgstr "forcer l'extraction (laisser tomber les modifications locales)"84968497#: builtin/checkout.c:11388498msgid "perform a 3-way merge with the new branch"8499msgstr "effectuer une fusion à 3 points avec la nouvelle branche"85008501#: builtin/checkout.c:1140 builtin/merge.c:2738502msgid "update ignored files (default)"8503msgstr "mettre à jour les fichiers ignorés (par défaut)"85048505#: builtin/checkout.c:1142 builtin/log.c:1510 parse-options.h:2648506msgid "style"8507msgstr "style"85088509#: builtin/checkout.c:11438510msgid "conflict style (merge or diff3)"8511msgstr "style de conflit (merge (fusion) ou diff3)"85128513#: builtin/checkout.c:11468514msgid "do not limit pathspecs to sparse entries only"8515msgstr "ne pas limiter les spécificateurs de chemins aux seuls éléments creux"85168517#: builtin/checkout.c:11488518msgid "second guess 'git checkout <no-such-branch>'"8519msgstr "réessayer d'interpréter 'git checkout <branche-inexistante>'"85208521#: builtin/checkout.c:11508522msgid "do not check if another worktree is holding the given ref"8523msgstr ""8524"ne pas vérifier si une autre copie de travail contient le référence fournie"85258526#: builtin/checkout.c:1154 builtin/clone.c:86 builtin/fetch.c:1388527#: builtin/merge.c:270 builtin/pull.c:128 builtin/push.c:5728528#: builtin/send-pack.c:1748529msgid "force progress reporting"8530msgstr "forcer l'affichage de l'état d'avancement"85318532#: builtin/checkout.c:11848533msgid "-b, -B and --orphan are mutually exclusive"8534msgstr "-b, -B et --orphan sont mutuellement exclusifs"85358536#: builtin/checkout.c:12018537msgid "--track needs a branch name"8538msgstr "--track requiert un nom de branche"85398540#: builtin/checkout.c:12068541msgid "missing branch name; try -b"8542msgstr "nom de branche manquant ; essayez -b"85438544#: builtin/checkout.c:12438545msgid "invalid path specification"8546msgstr "spécification de chemin invalide"85478548#: builtin/checkout.c:12508549#, c-format8550msgid "'%s' is not a commit and a branch '%s' cannot be created from it"8551msgstr ""8552"'%s' n'est pas un commit et une branche '%s' ne peut pas en être créée depuis"85538554#: builtin/checkout.c:12548555#, c-format8556msgid "git checkout: --detach does not take a path argument '%s'"8557msgstr "git checkout: --detach n'accepte pas un argument de chemin '%s'"85588559#: builtin/checkout.c:12588560msgid ""8561"git checkout: --ours/--theirs, --force and --merge are incompatible when\n"8562"checking out of the index."8563msgstr ""8564"git checkout: --ours/--theirs, --force et --merge sont incompatibles lors\n"8565"de l'extraction de l'index."85668567#: builtin/checkout.c:12788568#, c-format8569msgid ""8570"'%s' matched more than one remote tracking branch.\n"8571"We found %d remotes with a reference that matched. So we fell back\n"8572"on trying to resolve the argument as a path, but failed there too!\n"8573"\n"8574"If you meant to check out a remote tracking branch on, e.g. 'origin',\n"8575"you can do so by fully qualifying the name with the --track option:\n"8576"\n"8577" git checkout --track origin/<name>\n"8578"\n"8579"If you'd like to always have checkouts of an ambiguous <name> prefer\n"8580"one remote, e.g. the 'origin' remote, consider setting\n"8581"checkout.defaultRemote=origin in your config."8582msgstr ""8583"'%s' correspond à plusieurs branches de suivi distant. Nous avons\n"8584"trouvé %d distants avec une référence correspondante. Nous avons essayé\n"8585"de résoudre l'argument comme un chemin, sans plus de résultat !\n"8586"\n"8587"Si vous souhaitiez extraire une branche de suivi distant sur 'origin',\n"8588"par exemple, qualifiez-la complètement avec l'option --track :\n"8589"\n"8590" git checkout --track origin/<nom>\n"8591"\n"8592"Si vous souhaitez privilégier un distant particulier lorsque <nom> est\n"8593"ambigu, vous pouvez positionner checkout.defaultRemote=origin dans\n"8594"votre config."85958596#: builtin/clean.c:278597msgid ""8598"git clean [-d] [-f] [-i] [-n] [-q] [-e <pattern>] [-x | -X] [--] <paths>..."8599msgstr ""8600"git clean [-d] [-f] [-i] [-n] [-q] [-e <motif>] [-x | -X] [--] <chemins>..."86018602#: builtin/clean.c:318603#, c-format8604msgid "Removing %s\n"8605msgstr "Suppression de %s\n"86068607#: builtin/clean.c:328608#, c-format8609msgid "Would remove %s\n"8610msgstr "Supprimerait %s\n"86118612#: builtin/clean.c:338613#, c-format8614msgid "Skipping repository %s\n"8615msgstr "Ignore le dépôt %s\n"86168617#: builtin/clean.c:348618#, c-format8619msgid "Would skip repository %s\n"8620msgstr "Ignorerait le dépôt %s\n"86218622#: builtin/clean.c:358623#, c-format8624msgid "failed to remove %s"8625msgstr "échec de la suppression de %s"86268627#: builtin/clean.c:297 git-add--interactive.perl:5798628#, c-format8629msgid ""8630"Prompt help:\n"8631"1 - select a numbered item\n"8632"foo - select item based on unique prefix\n"8633" - (empty) select nothing\n"8634msgstr ""8635"Aide en ligne :\n"8636"1 - sélectionner un élément numéroté\n"8637"foo - sélectionner un élément par un préfixe unique\n"8638" - (vide) ne rien sélectionner\n"86398640#: builtin/clean.c:301 git-add--interactive.perl:5888641#, c-format8642msgid ""8643"Prompt help:\n"8644"1 - select a single item\n"8645"3-5 - select a range of items\n"8646"2-3,6-9 - select multiple ranges\n"8647"foo - select item based on unique prefix\n"8648"-... - unselect specified items\n"8649"* - choose all items\n"8650" - (empty) finish selecting\n"8651msgstr ""8652"Aide en ligne :\n"8653"1 - sélectionner un seul élément\n"8654"3-5 - sélectionner une plage d'éléments\n"8655"2-3,6-9 - sélectionner plusieurs plages\n"8656"foo - sélectionner un élément par un préfixe unique\n"8657"-... - désélectionner les éléments spécifiés\n"8658"* - choisir tous les éléments\n"8659" - (vide) terminer la sélection\n"86608661#: builtin/clean.c:517 git-add--interactive.perl:5548662#: git-add--interactive.perl:5598663#, c-format, perl-format8664msgid "Huh (%s)?\n"8665msgstr "Hein (%s) ?\n"86668667#: builtin/clean.c:6598668#, c-format8669msgid "Input ignore patterns>> "8670msgstr "Entrez les motifs à ignorer>> "86718672#: builtin/clean.c:6968673#, c-format8674msgid "WARNING: Cannot find items matched by: %s"8675msgstr "ATTENTION : Impossible de trouver les éléments correspondant à : %s"86768677#: builtin/clean.c:7178678msgid "Select items to delete"8679msgstr "Sélectionner les éléments à supprimer"86808681#. TRANSLATORS: Make sure to keep [y/N] as is8682#: builtin/clean.c:7588683#, c-format8684msgid "Remove %s [y/N]? "8685msgstr "Supprimer %s [y/N] ? "86868687#: builtin/clean.c:783 git-add--interactive.perl:17178688#, c-format8689msgid "Bye.\n"8690msgstr "Au revoir.\n"86918692#: builtin/clean.c:7918693msgid ""8694"clean - start cleaning\n"8695"filter by pattern - exclude items from deletion\n"8696"select by numbers - select items to be deleted by numbers\n"8697"ask each - confirm each deletion (like \"rm -i\")\n"8698"quit - stop cleaning\n"8699"help - this screen\n"8700"? - help for prompt selection"8701msgstr ""8702"clean - démarrer le nettoyage\n"8703"filter by pattern - exclure des éléments par motif\n"8704"select by numbers - sélectionner les éléments à supprimer par numéros\n"8705"ask each - confirmer chaque suppression (comme \"rm -i\")\n"8706"quit - arrêter le nettoyage\n"8707"help - cet écran\n"8708"? - aide pour la sélection en ligne"87098710#: builtin/clean.c:818 git-add--interactive.perl:17938711msgid "*** Commands ***"8712msgstr "*** Commandes ***"87138714#: builtin/clean.c:819 git-add--interactive.perl:17908715msgid "What now"8716msgstr "Et maintenant ?"87178718#: builtin/clean.c:8278719msgid "Would remove the following item:"8720msgid_plural "Would remove the following items:"8721msgstr[0] "Supprimerait l'élément suivant :"8722msgstr[1] "Supprimerait les éléments suivants :"87238724#: builtin/clean.c:8438725msgid "No more files to clean, exiting."8726msgstr "Plus de fichier à nettoyer, sortie."87278728#: builtin/clean.c:9058729msgid "do not print names of files removed"8730msgstr "ne pas afficher les noms des fichiers supprimés"87318732#: builtin/clean.c:9078733msgid "force"8734msgstr "forcer"87358736#: builtin/clean.c:9088737msgid "interactive cleaning"8738msgstr "nettoyage interactif"87398740#: builtin/clean.c:9108741msgid "remove whole directories"8742msgstr "supprimer les répertoires entiers"87438744#: builtin/clean.c:911 builtin/describe.c:545 builtin/describe.c:5478745#: builtin/grep.c:875 builtin/log.c:161 builtin/log.c:1638746#: builtin/ls-files.c:549 builtin/name-rev.c:415 builtin/name-rev.c:4178747#: builtin/show-ref.c:1778748msgid "pattern"8749msgstr "motif"87508751#: builtin/clean.c:9128752msgid "add <pattern> to ignore rules"8753msgstr "ajouter <motif> aux règles ignore"87548755#: builtin/clean.c:9138756msgid "remove ignored files, too"8757msgstr "supprimer les fichiers ignorés, aussi"87588759#: builtin/clean.c:9158760msgid "remove only ignored files"8761msgstr "supprimer seulement les fichiers ignorés"87628763#: builtin/clean.c:9338764msgid "-x and -X cannot be used together"8765msgstr "-x et -X ne peuvent pas être utilisés ensemble"87668767#: builtin/clean.c:9378768msgid ""8769"clean.requireForce set to true and neither -i, -n, nor -f given; refusing to "8770"clean"8771msgstr ""8772"clean.requireForce positionné à true et ni -i, -n ou -f fourni ; refus de "8773"nettoyer"87748775#: builtin/clean.c:9408776msgid ""8777"clean.requireForce defaults to true and neither -i, -n, nor -f given; "8778"refusing to clean"8779msgstr ""8780"clean.requireForce à true par défaut et ni -i, -n ou -f fourni ; refus de "8781"nettoyer"87828783#: builtin/clone.c:438784msgid "git clone [<options>] [--] <repo> [<dir>]"8785msgstr "git clone [<options>] [--] <dépôt> [<répertoire>]"87868787#: builtin/clone.c:888788msgid "don't create a checkout"8789msgstr "ne pas créer d'extraction"87908791#: builtin/clone.c:89 builtin/clone.c:91 builtin/init-db.c:4808792msgid "create a bare repository"8793msgstr "créer un dépôt nu"87948795#: builtin/clone.c:938796msgid "create a mirror repository (implies bare)"8797msgstr "créer un dépôt miroir (implique dépôt nu)"87988799#: builtin/clone.c:958800msgid "to clone from a local repository"8801msgstr "pour cloner depuis un dépôt local"88028803#: builtin/clone.c:978804msgid "don't use local hardlinks, always copy"8805msgstr "ne pas utiliser de liens durs locaux, toujours copier"88068807#: builtin/clone.c:998808msgid "setup as shared repository"8809msgstr "régler comme dépôt partagé"88108811#: builtin/clone.c:101 builtin/clone.c:1058812msgid "pathspec"8813msgstr "spécificateur de chemin"88148815#: builtin/clone.c:101 builtin/clone.c:1058816msgid "initialize submodules in the clone"8817msgstr "initialiser les sous-modules dans le clone"88188819#: builtin/clone.c:1088820msgid "number of submodules cloned in parallel"8821msgstr "nombre de sous-modules clonés en parallèle"88228823#: builtin/clone.c:109 builtin/init-db.c:4778824msgid "template-directory"8825msgstr "répertoire-modèle"88268827#: builtin/clone.c:110 builtin/init-db.c:4788828msgid "directory from which templates will be used"8829msgstr "répertoire depuis lequel les modèles vont être utilisés"88308831#: builtin/clone.c:112 builtin/clone.c:114 builtin/submodule--helper.c:13688832#: builtin/submodule--helper.c:17398833msgid "reference repository"8834msgstr "dépôt de référence"88358836#: builtin/clone.c:116 builtin/submodule--helper.c:13708837#: builtin/submodule--helper.c:17418838msgid "use --reference only while cloning"8839msgstr "utiliser seulement --reference pour cloner"88408841#: builtin/clone.c:117 builtin/column.c:27 builtin/merge-file.c:448842#: builtin/pack-objects.c:3191 builtin/repack.c:3208843msgid "name"8844msgstr "nom"88458846#: builtin/clone.c:1188847msgid "use <name> instead of 'origin' to track upstream"8848msgstr "utiliser <nom> au lieu de 'origin' pour suivre la branche amont"88498850#: builtin/clone.c:1208851msgid "checkout <branch> instead of the remote's HEAD"8852msgstr "extraire <branche> au lieu de la HEAD du répertoire distant"88538854#: builtin/clone.c:1228855msgid "path to git-upload-pack on the remote"8856msgstr "chemin vers git-upload-pack sur le serveur distant"88578858#: builtin/clone.c:123 builtin/fetch.c:139 builtin/grep.c:8148859#: builtin/pull.c:2168860msgid "depth"8861msgstr "profondeur"88628863#: builtin/clone.c:1248864msgid "create a shallow clone of that depth"8865msgstr "créer un clone superficiel de cette profondeur"88668867#: builtin/clone.c:125 builtin/fetch.c:141 builtin/pack-objects.c:31828868#: parse-options.h:1548869msgid "time"8870msgstr "heure"88718872#: builtin/clone.c:1268873msgid "create a shallow clone since a specific time"8874msgstr "créer un clone superficiel depuis une date spécifique"88758876#: builtin/clone.c:127 builtin/fetch.c:143 builtin/fetch.c:1668877msgid "revision"8878msgstr "révision"88798880#: builtin/clone.c:128 builtin/fetch.c:1448881msgid "deepen history of shallow clone, excluding rev"8882msgstr ""8883"approfondir l'historique d'un clone superficiel en excluant une révision"88848885#: builtin/clone.c:1308886msgid "clone only one branch, HEAD or --branch"8887msgstr "cloner seulement une branche, HEAD ou --branch"88888889#: builtin/clone.c:1328890msgid "don't clone any tags, and make later fetches not to follow them"8891msgstr ""8892"ne pas cloner les tags et indiquer aux récupérations futures de ne pas le "8893"faire"88948895#: builtin/clone.c:1348896msgid "any cloned submodules will be shallow"8897msgstr "tous les sous-modules clonés seront superficiels"88988899#: builtin/clone.c:135 builtin/init-db.c:4868900msgid "gitdir"8901msgstr "gitdir"89028903#: builtin/clone.c:136 builtin/init-db.c:4878904msgid "separate git dir from working tree"8905msgstr "séparer le répertoire git de la copie de travail"89068907#: builtin/clone.c:1378908msgid "key=value"8909msgstr "clé=valeur"89108911#: builtin/clone.c:1388912msgid "set config inside the new repository"8913msgstr "régler la configuration dans le nouveau dépôt"89148915#: builtin/clone.c:139 builtin/fetch.c:162 builtin/pull.c:2298916#: builtin/push.c:5838917msgid "use IPv4 addresses only"8918msgstr "n'utiliser que des adresses IPv4"89198920#: builtin/clone.c:141 builtin/fetch.c:164 builtin/pull.c:2328921#: builtin/push.c:5858922msgid "use IPv6 addresses only"8923msgstr "n'utiliser que des adresses IPv6"89248925#: builtin/clone.c:2798926msgid ""8927"No directory name could be guessed.\n"8928"Please specify a directory on the command line"8929msgstr ""8930"Aucun nom de répertoire n'a pu être deviné\n"8931"Veuillez spécifier un répertoire dans la ligne de commande"89328933#: builtin/clone.c:3328934#, c-format8935msgid "info: Could not add alternate for '%s': %s\n"8936msgstr "info : impossible d'ajouter une alternative pour '%s' : %s\n"89378938#: builtin/clone.c:4048939#, c-format8940msgid "failed to open '%s'"8941msgstr "échec à l'ouverture de '%s'"89428943#: builtin/clone.c:4128944#, c-format8945msgid "%s exists and is not a directory"8946msgstr "%s existe et n'est pas un répertoire"89478948#: builtin/clone.c:4268949#, c-format8950msgid "failed to stat %s\n"8951msgstr "échec du stat de %s\n"89528953#: builtin/clone.c:4488954#, c-format8955msgid "failed to create link '%s'"8956msgstr "échec de la création du lien '%s'"89578958#: builtin/clone.c:4528959#, c-format8960msgid "failed to copy file to '%s'"8961msgstr "échec de la copie vers '%s'"89628963#: builtin/clone.c:4788964#, c-format8965msgid "done.\n"8966msgstr "fait.\n"89678968#: builtin/clone.c:4928969msgid ""8970"Clone succeeded, but checkout failed.\n"8971"You can inspect what was checked out with 'git status'\n"8972"and retry the checkout with 'git checkout -f HEAD'\n"8973msgstr ""8974"Le clone a réussi, mais l'extraction a échoué.\n"8975"Vous pouvez inspecter ce qui a été extrait avec 'git status'\n"8976"et réessayer l'extraction avec 'git checkout -f HEAD'\n"89778978#: builtin/clone.c:5698979#, c-format8980msgid "Could not find remote branch %s to clone."8981msgstr "Impossible de trouver la branche distante '%s' à cloner."89828983#: builtin/clone.c:6808984#, c-format8985msgid "unable to update %s"8986msgstr "impossible de mettre à jour %s"89878988#: builtin/clone.c:7308989msgid "remote HEAD refers to nonexistent ref, unable to checkout.\n"8990msgstr ""8991"la HEAD distante réfère à une référence non existante, impossible de "8992"l'extraire.\n"89938994#: builtin/clone.c:7608995msgid "unable to checkout working tree"8996msgstr "impossible d'extraire la copie de travail"89978998#: builtin/clone.c:8058999msgid "unable to write parameters to config file"9000msgstr "impossible d'écrire les paramètres dans le fichier de configuration"90019002#: builtin/clone.c:8689003msgid "cannot repack to clean up"9004msgstr "impossible de remballer pour nettoyer"90059006#: builtin/clone.c:8709007msgid "cannot unlink temporary alternates file"9008msgstr "impossible de unlinker le fichier temporaire alternates"90099010#: builtin/clone.c:910 builtin/receive-pack.c:19359011msgid "Too many arguments."9012msgstr "Trop d'arguments."90139014#: builtin/clone.c:9149015msgid "You must specify a repository to clone."9016msgstr "Vous devez spécifier un dépôt à cloner."90179018#: builtin/clone.c:9279019#, c-format9020msgid "--bare and --origin %s options are incompatible."9021msgstr "les options --bare et --origin %s sont incompatibles."90229023#: builtin/clone.c:9309024msgid "--bare and --separate-git-dir are incompatible."9025msgstr "--bare et --separate-git-dir sont incompatibles."90269027#: builtin/clone.c:9439028#, c-format9029msgid "repository '%s' does not exist"9030msgstr "le dépôt '%s' n'existe pas"90319032#: builtin/clone.c:949 builtin/fetch.c:15129033#, c-format9034msgid "depth %s is not a positive number"9035msgstr "la profondeur %s n'est pas un entier positif"90369037#: builtin/clone.c:9599038#, c-format9039msgid "destination path '%s' already exists and is not an empty directory."9040msgstr ""9041"le chemin de destination '%s' existe déjà et n'est pas un répertoire vide."90429043#: builtin/clone.c:9699044#, c-format9045msgid "working tree '%s' already exists."9046msgstr "la copie de travail '%s' existe déjà."90479048#: builtin/clone.c:984 builtin/clone.c:1005 builtin/difftool.c:2719049#: builtin/worktree.c:247 builtin/worktree.c:2779050#, c-format9051msgid "could not create leading directories of '%s'"9052msgstr "impossible de créer les répertoires de premier niveau dans '%s'"90539054#: builtin/clone.c:9899055#, c-format9056msgid "could not create work tree dir '%s'"9057msgstr "impossible de créer le répertoire de la copie de travail '%s'"90589059#: builtin/clone.c:10099060#, c-format9061msgid "Cloning into bare repository '%s'...\n"9062msgstr "Clonage dans le dépôt nu '%s'\n"90639064#: builtin/clone.c:10119065#, c-format9066msgid "Cloning into '%s'...\n"9067msgstr "Clonage dans '%s'...\n"90689069#: builtin/clone.c:10359070msgid ""9071"clone --recursive is not compatible with both --reference and --reference-if-"9072"able"9073msgstr ""9074"clone --recursive n'est pas compatible avec à la fois --reference et --"9075"reference-if-able"90769077#: builtin/clone.c:10969078msgid "--depth is ignored in local clones; use file:// instead."9079msgstr ""9080"--depth est ignoré dans les clones locaux : utilisez plutôt \"file://\"."90819082#: builtin/clone.c:10989083msgid "--shallow-since is ignored in local clones; use file:// instead."9084msgstr ""9085"--shallow-since est ignoré dans les clones locaux : utilisez plutôt \"file://"9086"\"."90879088#: builtin/clone.c:11009089msgid "--shallow-exclude is ignored in local clones; use file:// instead."9090msgstr ""9091"--shallow-exclude est ignoré dans les clones locaux : utilisez plutôt "9092"\"file://\"."90939094#: builtin/clone.c:11029095msgid "--filter is ignored in local clones; use file:// instead."9096msgstr "--filter est ignoré dans les clones locaux ; utilisez plutôt file:// ."90979098#: builtin/clone.c:11059099msgid "source repository is shallow, ignoring --local"9100msgstr "le dépôt source est superficiel, option --local ignorée"91019102#: builtin/clone.c:11109103msgid "--local is ignored"9104msgstr "--local est ignoré"91059106#: builtin/clone.c:1180 builtin/clone.c:11889107#, c-format9108msgid "Remote branch %s not found in upstream %s"9109msgstr "La branche distante %s n'a pas été trouvée dans le dépôt amont %s"91109111#: builtin/clone.c:11919112msgid "You appear to have cloned an empty repository."9113msgstr "Vous semblez avoir cloné un dépôt vide."91149115#: builtin/column.c:109116msgid "git column [<options>]"9117msgstr "git column [<options>]"91189119#: builtin/column.c:279120msgid "lookup config vars"9121msgstr "rechercher les variables de configuration"91229123#: builtin/column.c:28 builtin/column.c:299124msgid "layout to use"9125msgstr "mise en page à utiliser"91269127#: builtin/column.c:309128msgid "Maximum width"9129msgstr "Largeur maximale"91309131#: builtin/column.c:319132msgid "Padding space on left border"9133msgstr "Remplissage d'espace sur la bordure gauche"91349135#: builtin/column.c:329136msgid "Padding space on right border"9137msgstr "Remplissage d'espace sur le côté droit"91389139#: builtin/column.c:339140msgid "Padding space between columns"9141msgstr "Remplissage d'espace entre les colonnes"91429143#: builtin/column.c:519144msgid "--command must be the first argument"9145msgstr "--command doit être le premier argument"91469147#: builtin/commit.c:389148msgid "git commit [<options>] [--] <pathspec>..."9149msgstr "git commit [<options>] [--] <spécification-de-chemin>..."91509151#: builtin/commit.c:439152msgid "git status [<options>] [--] <pathspec>..."9153msgstr "git status [<options>] [--] <spécification-de-chemin>..."91549155#: builtin/commit.c:489156msgid ""9157"You asked to amend the most recent commit, but doing so would make\n"9158"it empty. You can repeat your command with --allow-empty, or you can\n"9159"remove the commit entirely with \"git reset HEAD^\".\n"9160msgstr ""9161"Vous avez demandé de corriger le commit le plus récent, mais le faire le "9162"rendrait\n"9163"vide. Vous pouvez répéter votre commande avec --allow-empty, ou vous pouvez\n"9164"supprimer complètement le commit avec \"git reset HEAD^\".\n"91659166#: builtin/commit.c:539167msgid ""9168"The previous cherry-pick is now empty, possibly due to conflict resolution.\n"9169"If you wish to commit it anyway, use:\n"9170"\n"9171" git commit --allow-empty\n"9172"\n"9173msgstr ""9174"Le picorage précédent est à présent vide, vraisemblablement dû à une "9175"résolution de conflit.\n"9176"Si vous souhaitez tout de même le valider, utilisez :\n"9177"\n"9178" git commit --allow-empty\n"9179"\n"91809181#: builtin/commit.c:609182msgid "Otherwise, please use 'git reset'\n"9183msgstr "Sinon, veuillez utiliser 'git reset'\n"91849185#: builtin/commit.c:639186msgid ""9187"If you wish to skip this commit, use:\n"9188"\n"9189" git reset\n"9190"\n"9191"Then \"git cherry-pick --continue\" will resume cherry-picking\n"9192"the remaining commits.\n"9193msgstr ""9194"Si vous souhaitez sauter ce commit, utilisez :\n"9195"\n"9196" git reset\n"9197"\n"9198"Puis \"git cherry-pick --continue\" continuera le picorage \n"9199"des commits restants.\n"92009201#: builtin/commit.c:3069202msgid "failed to unpack HEAD tree object"9203msgstr "échec du dépaquetage de l'objet arbre HEAD"92049205#: builtin/commit.c:3479206msgid "unable to create temporary index"9207msgstr "impossible de créer l'index temporaire"92089209#: builtin/commit.c:3539210msgid "interactive add failed"9211msgstr "échec de l'ajout interactif"92129213#: builtin/commit.c:3669214msgid "unable to update temporary index"9215msgstr "impossible de mettre à jour l'index temporaire"92169217#: builtin/commit.c:3689218msgid "Failed to update main cache tree"9219msgstr "Impossible de mettre à jour l'arbre de cache principal"92209221#: builtin/commit.c:393 builtin/commit.c:416 builtin/commit.c:4629222msgid "unable to write new_index file"9223msgstr "impossible d'écrire le fichier new_index"92249225#: builtin/commit.c:4459226msgid "cannot do a partial commit during a merge."9227msgstr "impossible de faire une validation partielle pendant une fusion."92289229#: builtin/commit.c:4479230msgid "cannot do a partial commit during a cherry-pick."9231msgstr "impossible de faire une validation partielle pendant un picorage."92329233#: builtin/commit.c:4559234msgid "cannot read the index"9235msgstr "impossible de lire l'index"92369237#: builtin/commit.c:4749238msgid "unable to write temporary index file"9239msgstr "impossible d'écrire le fichier d'index temporaire"92409241#: builtin/commit.c:5719242#, c-format9243msgid "commit '%s' lacks author header"9244msgstr "entête d'auteur manquant dans le commit '%s'"92459246#: builtin/commit.c:5739247#, c-format9248msgid "commit '%s' has malformed author line"9249msgstr "le commit '%s' a une ligne d'auteur malformée"92509251#: builtin/commit.c:5929252msgid "malformed --author parameter"9253msgstr "paramètre --author mal formé"92549255#: builtin/commit.c:6449256msgid ""9257"unable to select a comment character that is not used\n"9258"in the current commit message"9259msgstr ""9260"impossible de sélectionner un caractère de commentaire\n"9261"qui n'est pas utilisé dans le message de validation actuel"92629263#: builtin/commit.c:681 builtin/commit.c:714 builtin/commit.c:10429264#, c-format9265msgid "could not lookup commit %s"9266msgstr "impossible de rechercher le commit %s"92679268#: builtin/commit.c:693 builtin/shortlog.c:3179269#, c-format9270msgid "(reading log message from standard input)\n"9271msgstr "(lecture du message de journal depuis l'entrée standard)\n"92729273#: builtin/commit.c:6959274msgid "could not read log from standard input"9275msgstr "impossible de lire le journal depuis l'entrée standard"92769277#: builtin/commit.c:6999278#, c-format9279msgid "could not read log file '%s'"9280msgstr "impossible de lire le fichier de journal '%s'"92819282#: builtin/commit.c:728 builtin/commit.c:7369283msgid "could not read SQUASH_MSG"9284msgstr "impossible de lire SQUASH_MSG"92859286#: builtin/commit.c:7339287msgid "could not read MERGE_MSG"9288msgstr "impossible de lire MERGE_MSG"92899290#: builtin/commit.c:7879291msgid "could not write commit template"9292msgstr "impossible d'écrire le modèle de commit"92939294#: builtin/commit.c:8059295#, c-format9296msgid ""9297"\n"9298"It looks like you may be committing a merge.\n"9299"If this is not correct, please remove the file\n"9300"\t%s\n"9301"and try again.\n"9302msgstr ""9303"\n"9304"Il semble que vous validiez une fusion.\n"9305"Si ce n'est pas le cas, veuillez supprimer le fichier\n"9306"\t%s\n"9307"et essayez à nouveau.\n"93089309#: builtin/commit.c:8109310#, c-format9311msgid ""9312"\n"9313"It looks like you may be committing a cherry-pick.\n"9314"If this is not correct, please remove the file\n"9315"\t%s\n"9316"and try again.\n"9317msgstr ""9318"\n"9319"Il semble que vous validiez un picorage.\n"9320"Si ce n'est pas le cas, veuillez supprimer le fichier\n"9321"\t%s\n"9322"et essayez à nouveau.\n"93239324#: builtin/commit.c:8239325#, c-format9326msgid ""9327"Please enter the commit message for your changes. Lines starting\n"9328"with '%c' will be ignored, and an empty message aborts the commit.\n"9329msgstr ""9330"Veuillez saisir le message de validation pour vos modifications. Les lignes\n"9331"commençant par '%c' seront ignorées, et un message vide abandonne la "9332"validation.\n"93339334#: builtin/commit.c:8319335#, c-format9336msgid ""9337"Please enter the commit message for your changes. Lines starting\n"9338"with '%c' will be kept; you may remove them yourself if you want to.\n"9339"An empty message aborts the commit.\n"9340msgstr ""9341"Veuillez saisir le message de validation pour vos modifications. Les lignes\n"9342"commençant par '%c' seront conservées ; vous pouvez les supprimer vous-même\n"9343"si vous le souhaitez. Un message vide abandonne la validation.\n"93449345#: builtin/commit.c:8489346#, c-format9347msgid "%sAuthor: %.*s <%.*s>"9348msgstr "%sAuteur : %.*s <%.*s>"93499350#: builtin/commit.c:8569351#, c-format9352msgid "%sDate: %s"9353msgstr "%sDate : %s"93549355#: builtin/commit.c:8639356#, c-format9357msgid "%sCommitter: %.*s <%.*s>"9358msgstr "%sValidateur : %.*s <%.*s>"93599360#: builtin/commit.c:8809361msgid "Cannot read index"9362msgstr "Impossible de lire l'index"93639364#: builtin/commit.c:9469365msgid "Error building trees"9366msgstr "Erreur lors de la construction des arbres"93679368#: builtin/commit.c:960 builtin/tag.c:2589369#, c-format9370msgid "Please supply the message using either -m or -F option.\n"9371msgstr "Veuillez fournir le message en utilisant l'option -m ou -F.\n"93729373#: builtin/commit.c:10049374#, c-format9375msgid "--author '%s' is not 'Name <email>' and matches no existing author"9376msgstr ""9377"--author '%s' n'est pas de la forme 'Nom <email>' ni ne correspond à aucun "9378"auteur existant"93799380#: builtin/commit.c:10189381#, c-format9382msgid "Invalid ignored mode '%s'"9383msgstr "Mode de fichier ignoré invalide '%s'"93849385#: builtin/commit.c:1032 builtin/commit.c:12699386#, c-format9387msgid "Invalid untracked files mode '%s'"9388msgstr "Mode de fichier non suivi invalide '%s'"93899390#: builtin/commit.c:10709391msgid "--long and -z are incompatible"9392msgstr "--long et -z sont incompatibles"93939394#: builtin/commit.c:11039395msgid "Using both --reset-author and --author does not make sense"9396msgstr "L'utilisation simultanée de --reset-author et --author n'a pas de sens"93979398#: builtin/commit.c:11129399msgid "You have nothing to amend."9400msgstr "Il n'y a rien à corriger."94019402#: builtin/commit.c:11159403msgid "You are in the middle of a merge -- cannot amend."9404msgstr "Vous êtes en pleine fusion -- impossible de corriger (amend)."94059406#: builtin/commit.c:11179407msgid "You are in the middle of a cherry-pick -- cannot amend."9408msgstr "Vous êtes en plein picorage -- impossible de corriger (amend)."94099410#: builtin/commit.c:11209411msgid "Options --squash and --fixup cannot be used together"9412msgstr "Les options --squash et --fixup ne peuvent pas être utilisées ensemble"94139414#: builtin/commit.c:11309415msgid "Only one of -c/-C/-F/--fixup can be used."9416msgstr "Une seule option parmi -c/-C/-F/--fixup peut être utilisée."94179418#: builtin/commit.c:11329419msgid "Option -m cannot be combined with -c/-C/-F."9420msgstr "L'option -m ne peut pas être combinée avec -c/-C/-F."94219422#: builtin/commit.c:11409423msgid "--reset-author can be used only with -C, -c or --amend."9424msgstr "--reset-author ne peut être utilisé qu'avec -C, -c ou --amend."94259426#: builtin/commit.c:11579427msgid "Only one of --include/--only/--all/--interactive/--patch can be used."9428msgstr ""9429"Une seule option parmi --include/--only/--all/--interactive/--patch peut "9430"être utilisée."94319432#: builtin/commit.c:11599433msgid "No paths with --include/--only does not make sense."9434msgstr "Aucun chemin avec les options --include/--only n'a pas de sens."94359436#: builtin/commit.c:1173 builtin/tag.c:5449437#, c-format9438msgid "Invalid cleanup mode %s"9439msgstr "Mode de nettoyage invalide %s"94409441#: builtin/commit.c:11789442msgid "Paths with -a does not make sense."9443msgstr "Spécifier des chemins avec l'option -a n'a pas de sens."94449445#: builtin/commit.c:1303 builtin/commit.c:14809446msgid "show status concisely"9447msgstr "afficher l'état avec concision"94489449#: builtin/commit.c:1305 builtin/commit.c:14829450msgid "show branch information"9451msgstr "afficher l'information de branche"94529453#: builtin/commit.c:13079454msgid "show stash information"9455msgstr "afficher l'information de remisage"94569457#: builtin/commit.c:1309 builtin/commit.c:14849458msgid "compute full ahead/behind values"9459msgstr "calcule les valeurs complètes en avance/en retard"94609461#: builtin/commit.c:13119462msgid "version"9463msgstr "version"94649465#: builtin/commit.c:1311 builtin/commit.c:1486 builtin/push.c:5589466#: builtin/worktree.c:5919467msgid "machine-readable output"9468msgstr "sortie pour traitement automatique"94699470#: builtin/commit.c:1314 builtin/commit.c:14889471msgid "show status in long format (default)"9472msgstr "afficher l'état en format long (par défaut)"94739474#: builtin/commit.c:1317 builtin/commit.c:14919475msgid "terminate entries with NUL"9476msgstr "terminer les éléments par NUL"94779478#: builtin/commit.c:1319 builtin/commit.c:1323 builtin/commit.c:14949479#: builtin/fast-export.c:1007 builtin/fast-export.c:1010 builtin/tag.c:3989480msgid "mode"9481msgstr "mode"94829483#: builtin/commit.c:1320 builtin/commit.c:14949484msgid "show untracked files, optional modes: all, normal, no. (Default: all)"9485msgstr ""9486"afficher les fichiers non suivis, \"mode\" facultatif : all (tous), normal, "9487"no. (Défaut : all)"94889489#: builtin/commit.c:13249490msgid ""9491"show ignored files, optional modes: traditional, matching, no. (Default: "9492"traditional)"9493msgstr ""9494"afficher les fichiers ignorés, \"mode\" facultatif : traditional "9495"(traditionnel), matching (correspondant), no. (Défaut : traditional)"94969497#: builtin/commit.c:1326 parse-options.h:1679498msgid "when"9499msgstr "quand"95009501#: builtin/commit.c:13279502msgid ""9503"ignore changes to submodules, optional when: all, dirty, untracked. "9504"(Default: all)"9505msgstr ""9506"ignorer les modifications dans les sous-modules, \"quand\" facultatif : all "9507"(tous), dirty (sale), untracked (non suivi). (Défaut : all)"95089509#: builtin/commit.c:13299510msgid "list untracked files in columns"9511msgstr "afficher les fichiers non suivis en colonnes"95129513#: builtin/commit.c:13309514msgid "do not detect renames"9515msgstr "ne pas détecter les renommages"95169517#: builtin/commit.c:13329518msgid "detect renames, optionally set similarity index"9519msgstr ""9520"détecter les renommages, en spécifiant optionnellement le facteur de "9521"similarité"95229523#: builtin/commit.c:13529524msgid "Unsupported combination of ignored and untracked-files arguments"9525msgstr ""9526"Combinaison non supportée d'arguments sur les fichiers ignorés et non-suivis"95279528#: builtin/commit.c:14509529msgid "suppress summary after successful commit"9530msgstr "supprimer le résumé après une validation réussie"95319532#: builtin/commit.c:14519533msgid "show diff in commit message template"9534msgstr "afficher les diff dans le modèle de message de validation"95359536#: builtin/commit.c:14539537msgid "Commit message options"9538msgstr "Options du message de validation"95399540#: builtin/commit.c:1454 builtin/merge.c:261 builtin/tag.c:3959541msgid "read message from file"9542msgstr "lire le message depuis un fichier"95439544#: builtin/commit.c:14559545msgid "author"9546msgstr "auteur"95479548#: builtin/commit.c:14559549msgid "override author for commit"9550msgstr "remplacer l'auteur pour la validation"95519552#: builtin/commit.c:1456 builtin/gc.c:5049553msgid "date"9554msgstr "date"95559556#: builtin/commit.c:14569557msgid "override date for commit"9558msgstr "remplacer la date pour la validation"95599560#: builtin/commit.c:1457 builtin/merge.c:257 builtin/notes.c:4049561#: builtin/notes.c:567 builtin/tag.c:3939562msgid "message"9563msgstr "message"95649565#: builtin/commit.c:14579566msgid "commit message"9567msgstr "message de validation"95689569#: builtin/commit.c:1458 builtin/commit.c:1459 builtin/commit.c:14609570#: builtin/commit.c:1461 parse-options.h:270 ref-filter.h:929571msgid "commit"9572msgstr "commit"95739574#: builtin/commit.c:14589575msgid "reuse and edit message from specified commit"9576msgstr "réutiliser et éditer le message du commit spécifié"95779578#: builtin/commit.c:14599579msgid "reuse message from specified commit"9580msgstr "réutiliser le message du commit spécifié"95819582#: builtin/commit.c:14609583msgid "use autosquash formatted message to fixup specified commit"9584msgstr ""9585"utiliser un message au format autosquash pour corriger le commit spécifié"95869587#: builtin/commit.c:14619588msgid "use autosquash formatted message to squash specified commit"9589msgstr ""9590"utiliser un message au format autosquash pour compresser le commit spécifié"95919592#: builtin/commit.c:14629593msgid "the commit is authored by me now (used with -C/-c/--amend)"9594msgstr ""9595"à présent je suis l'auteur de la validation (utilisé avec -C/-c/--amend)"95969597#: builtin/commit.c:1463 builtin/log.c:1457 builtin/merge.c:2749598#: builtin/pull.c:154 builtin/revert.c:1069599msgid "add Signed-off-by:"9600msgstr "ajouter une entrée Signed-off-by :"96019602#: builtin/commit.c:14649603msgid "use specified template file"9604msgstr "utiliser le fichier de modèle spécifié"96059606#: builtin/commit.c:14659607msgid "force edit of commit"9608msgstr "forcer l'édition du commit"96099610#: builtin/commit.c:14669611msgid "default"9612msgstr "défaut"96139614#: builtin/commit.c:1466 builtin/tag.c:3999615msgid "how to strip spaces and #comments from message"9616msgstr "comment éliminer les espaces et les commentaires # du message"96179618#: builtin/commit.c:14679619msgid "include status in commit message template"9620msgstr "inclure l'état dans le modèle de message de validation"96219622#: builtin/commit.c:1469 builtin/merge.c:272 builtin/pull.c:1849623#: builtin/revert.c:1149624msgid "GPG sign commit"9625msgstr "signer la validation avec GPG"96269627#: builtin/commit.c:14729628msgid "Commit contents options"9629msgstr "Valider les options des contenus"96309631#: builtin/commit.c:14739632msgid "commit all changed files"9633msgstr "valider tous les fichiers modifiés"96349635#: builtin/commit.c:14749636msgid "add specified files to index for commit"9637msgstr "ajouter les fichiers spécifiés à l'index pour la validation"96389639#: builtin/commit.c:14759640msgid "interactively add files"9641msgstr "ajouter des fichiers en mode interactif"96429643#: builtin/commit.c:14769644msgid "interactively add changes"9645msgstr "ajouter les modifications en mode interactif"96469647#: builtin/commit.c:14779648msgid "commit only specified files"9649msgstr "valider seulement les fichiers spécifiés"96509651#: builtin/commit.c:14789652msgid "bypass pre-commit and commit-msg hooks"9653msgstr "éviter d'utiliser les crochets pre-commit et commit-msg"96549655#: builtin/commit.c:14799656msgid "show what would be committed"9657msgstr "afficher ce qui serait validé"96589659#: builtin/commit.c:14929660msgid "amend previous commit"9661msgstr "corriger la validation précédente"96629663#: builtin/commit.c:14939664msgid "bypass post-rewrite hook"9665msgstr "éviter d'utiliser le crochet post-rewrite"96669667#: builtin/commit.c:14989668msgid "ok to record an empty change"9669msgstr "accepter d'enregistrer une modification vide"96709671#: builtin/commit.c:15009672msgid "ok to record a change with an empty message"9673msgstr "accepter d'enregistrer une modification avec un message vide"96749675#: builtin/commit.c:15739676#, c-format9677msgid "Corrupt MERGE_HEAD file (%s)"9678msgstr "Fichier MERGE_HEAD corrompu (%s)"96799680#: builtin/commit.c:15809681msgid "could not read MERGE_MODE"9682msgstr "impossible de lire MERGE_MODE"96839684#: builtin/commit.c:15999685#, c-format9686msgid "could not read commit message: %s"9687msgstr "impossible de lire le message de validation : %s"96889689#: builtin/commit.c:16109690#, c-format9691msgid "Aborting commit due to empty commit message.\n"9692msgstr "Abandon de la validation dû à un message de validation vide.\n"96939694#: builtin/commit.c:16159695#, c-format9696msgid "Aborting commit; you did not edit the message.\n"9697msgstr "Abandon de la validation ; vous n'avez pas édité le message\n"96989699#: builtin/commit.c:16509700msgid ""9701"repository has been updated, but unable to write\n"9702"new_index file. Check that disk is not full and quota is\n"9703"not exceeded, and then \"git reset HEAD\" to recover."9704msgstr ""9705"le dépôt a été mis à jour, mais impossible d'écrire le fichier\n"9706"new_index. Vérifiez que le disque n'est pas plein ou que le quota\n"9707"n'a pas été dépassé, puis lancez \"git reset HEAD\" pour réparer."97089709#: builtin/commit-graph.c:109710msgid "git commit-graph [--object-dir <objdir>]"9711msgstr "git commit-graph [--object-dir <objdir>]"97129713#: builtin/commit-graph.c:11 builtin/commit-graph.c:239714msgid "git commit-graph read [--object-dir <objdir>]"9715msgstr "git commit-graph read [--object-dir <objdir>]"97169717#: builtin/commit-graph.c:12 builtin/commit-graph.c:189718msgid "git commit-graph verify [--object-dir <objdir>]"9719msgstr "git commit-graph verify [--object-dir <objdir>]"97209721#: builtin/commit-graph.c:13 builtin/commit-graph.c:289722msgid ""9723"git commit-graph write [--object-dir <objdir>] [--append] [--reachable|--"9724"stdin-packs|--stdin-commits]"9725msgstr ""9726"git commit-graph write [--object-dir <objdir>] [--append] [--reachable|--"9727"stdin-packs|--stdin-commits]"97289729#: builtin/commit-graph.c:48 builtin/commit-graph.c:779730#: builtin/commit-graph.c:131 builtin/commit-graph.c:184 builtin/fetch.c:1509731#: builtin/log.c:14779732msgid "dir"9733msgstr "répertoire"97349735#: builtin/commit-graph.c:49 builtin/commit-graph.c:789736#: builtin/commit-graph.c:132 builtin/commit-graph.c:1859737msgid "The object directory to store the graph"9738msgstr "Le répertoire d'objet où stocker le graphe"97399740#: builtin/commit-graph.c:1349741msgid "start walk at all refs"9742msgstr "commencer le parcours à toutes les réfs"97439744#: builtin/commit-graph.c:1369745msgid "scan pack-indexes listed by stdin for commits"9746msgstr "scanner les index compactés listés sur stdin à la recherche de commits"97479748#: builtin/commit-graph.c:1389749msgid "start walk at commits listed by stdin"9750msgstr "commencer le parcours aux commits listés sur stdin"97519752#: builtin/commit-graph.c:1409753msgid "include all commits already in the commit-graph file"9754msgstr ""9755"inclure tous les commits déjà présents dans le fichier de graphe de commits"97569757#: builtin/commit-graph.c:1499758msgid "use at most one of --reachable, --stdin-commits, or --stdin-packs"9759msgstr "utilisez un seul parmi --reachable, --stdin-commits ou --stdin-packs"97609761#: builtin/config.c:109762msgid "git config [<options>]"9763msgstr "git config [<options>]"97649765#: builtin/config.c:1019766#, c-format9767msgid "unrecognized --type argument, %s"9768msgstr "argument --type non reconnu, %s"97699770#: builtin/config.c:1139771msgid "only one type at a time"9772msgstr "qu'un seul type à la fois"97739774#: builtin/config.c:1229775msgid "Config file location"9776msgstr "Emplacement du fichier de configuration"97779778#: builtin/config.c:1239779msgid "use global config file"9780msgstr "utiliser les fichier de configuration global"97819782#: builtin/config.c:1249783msgid "use system config file"9784msgstr "utiliser le fichier de configuration du système"97859786#: builtin/config.c:1259787msgid "use repository config file"9788msgstr "utiliser le fichier de configuration du dépôt"97899790#: builtin/config.c:1269791msgid "use given config file"9792msgstr "utiliser le fichier de configuration spécifié"97939794#: builtin/config.c:1279795msgid "blob-id"9796msgstr "blob-id"97979798#: builtin/config.c:1279799msgid "read config from given blob object"9800msgstr "lire la configuration depuis l'objet blob fourni"98019802#: builtin/config.c:1289803msgid "Action"9804msgstr "Action"98059806#: builtin/config.c:1299807msgid "get value: name [value-regex]"9808msgstr "obtenir la valeur : nom [regex-de-valeur]"98099810#: builtin/config.c:1309811msgid "get all values: key [value-regex]"9812msgstr "obtenir toutes les valeurs : clé [regex-de-valeur]"98139814#: builtin/config.c:1319815msgid "get values for regexp: name-regex [value-regex]"9816msgstr "obtenir les valeur pour la regexp : regex-de-nom [regex-de-valeur]"98179818#: builtin/config.c:1329819msgid "get value specific for the URL: section[.var] URL"9820msgstr "obtenir la valeur spécifique pour l'URL : section[.var] URL"98219822#: builtin/config.c:1339823msgid "replace all matching variables: name value [value_regex]"9824msgstr ""9825"remplacer toutes les variables correspondant : nom valeur [regex-de-valeur]"98269827#: builtin/config.c:1349828msgid "add a new variable: name value"9829msgstr "ajouter une nouvelle variable : nom valeur"98309831#: builtin/config.c:1359832msgid "remove a variable: name [value-regex]"9833msgstr "supprimer une variable : nom [regex-de-valeur]"98349835#: builtin/config.c:1369836msgid "remove all matches: name [value-regex]"9837msgstr "supprimer toutes les correspondances nom [regex-de-valeur]"98389839#: builtin/config.c:1379840msgid "rename section: old-name new-name"9841msgstr "renommer une section : ancien-nom nouveau-nom"98429843#: builtin/config.c:1389844msgid "remove a section: name"9845msgstr "supprimer une section : nom"98469847#: builtin/config.c:1399848msgid "list all"9849msgstr "afficher tout"98509851#: builtin/config.c:1409852msgid "open an editor"9853msgstr "ouvrir un éditeur"98549855#: builtin/config.c:1419856msgid "find the color configured: slot [default]"9857msgstr "trouver la couleur configurée : slot [par défaut]"98589859#: builtin/config.c:1429860msgid "find the color setting: slot [stdout-is-tty]"9861msgstr "trouver le réglage de la couleur : slot [stdout-est-tty]"98629863#: builtin/config.c:1439864msgid "Type"9865msgstr "Type"98669867#: builtin/config.c:1449868msgid "value is given this type"9869msgstr "ce type est assigné à la valeur"98709871#: builtin/config.c:1459872msgid "value is \"true\" or \"false\""9873msgstr "la valeur est \"true\" (vrai) ou \"false\" (faux)"98749875#: builtin/config.c:1469876msgid "value is decimal number"9877msgstr "la valeur est un nombre décimal"98789879#: builtin/config.c:1479880msgid "value is --bool or --int"9881msgstr "la valeur est --bool ou --int"98829883#: builtin/config.c:1489884msgid "value is a path (file or directory name)"9885msgstr "la valeur est un chemin (vers un fichier ou un répertoire)"98869887#: builtin/config.c:1499888msgid "value is an expiry date"9889msgstr "la valeur est une date d'expiration"98909891#: builtin/config.c:1509892msgid "Other"9893msgstr "Autre"98949895#: builtin/config.c:1519896msgid "terminate values with NUL byte"9897msgstr "terminer les valeurs avec un caractère NUL"98989899#: builtin/config.c:1529900msgid "show variable names only"9901msgstr "n'afficher que les noms de variable"99029903#: builtin/config.c:1539904msgid "respect include directives on lookup"9905msgstr "respecter les directives d'inclusion lors de la recherche"99069907#: builtin/config.c:1549908msgid "show origin of config (file, standard input, blob, command line)"9909msgstr ""9910"afficher l'origine de la configuration (fichier, entrée standard, blob, "9911"ligne de commande)"99129913#: builtin/config.c:1559914msgid "value"9915msgstr "valeur"99169917#: builtin/config.c:1559918msgid "with --get, use default value when missing entry"9919msgstr "avec --get, utiliser le valeur par défaut quand l'entrée n'existe pas"99209921#: builtin/config.c:1689922#, c-format9923msgid "wrong number of arguments, should be %d"9924msgstr "mauvais nombre d'arguments, devrait être %d"99259926#: builtin/config.c:1709927#, c-format9928msgid "wrong number of arguments, should be from %d to %d"9929msgstr "mauvais nombre d'arguments, devrait être entre %d et %d"99309931#: builtin/config.c:3049932#, c-format9933msgid "invalid key pattern: %s"9934msgstr "motif de clé invalide : %s"99359936#: builtin/config.c:3409937#, c-format9938msgid "failed to format default config value: %s"9939msgstr "échec du formatage de la valeur de config par défaut : %s"99409941#: builtin/config.c:3979942#, c-format9943msgid "cannot parse color '%s'"9944msgstr "impossible d'analyser la couleur '%s'"99459946#: builtin/config.c:4399947msgid "unable to parse default color value"9948msgstr "impossible de lire la valeur de couleur par défaut"99499950#: builtin/config.c:492 builtin/config.c:7249951msgid "not in a git directory"9952msgstr "pas dans un répertoire git"99539954#: builtin/config.c:4959955msgid "writing to stdin is not supported"9956msgstr "l'écriture sur stdin n'est pas supportée"99579958#: builtin/config.c:4989959msgid "writing config blobs is not supported"9960msgstr "l'écriture de blob de configuration n'est pas supportée<"99619962#: builtin/config.c:5839963#, c-format9964msgid ""9965"# This is Git's per-user configuration file.\n"9966"[user]\n"9967"# Please adapt and uncomment the following lines:\n"9968"#\tname = %s\n"9969"#\temail = %s\n"9970msgstr ""9971"# Ceci est le fichier de configuration personnel de Git.\n"9972"[user]\n"9973"# Veuillez adapter et décommenter les lignes suivantes :\n"9974"#\tname = %s\n"9975"#\temail = %s\n"99769977#: builtin/config.c:6069978msgid "only one config file at a time"9979msgstr "un seul fichier de configuration à la fois"99809981#: builtin/config.c:6119982msgid "--local can only be used inside a git repository"9983msgstr "--local ne peut être utilisé qu'à l'intérieur d'un dépôt git"99849985#: builtin/config.c:6149986msgid "--blob can only be used inside a git repository"9987msgstr "--blob ne peut être utilisé qu'à l'intérieur d'un dépôt git"99889989#: builtin/config.c:6339990msgid "$HOME not set"9991msgstr "$HOME n'est pas défini"99929993#: builtin/config.c:6709994msgid "--get-color and variable type are incoherent"9995msgstr "--get-color et le type de la variable sont incohérents"99969997#: builtin/config.c:6759998msgid "only one action at a time"9999msgstr "une seule action à la fois"1000010001#: builtin/config.c:68810002msgid "--name-only is only applicable to --list or --get-regexp"10003msgstr "--name-only n'est applicable qu'avec --list ou --get-regexp"1000410005#: builtin/config.c:69410006msgid ""10007"--show-origin is only applicable to --get, --get-all, --get-regexp, and --"10008"list"10009msgstr ""10010"--show-origin n'est applicable qu'avec --get, --get-all, --get-regexp ou --"10011"list"1001210013#: builtin/config.c:70010014msgid "--default is only applicable to --get"10015msgstr "--default n'est applicable qu'avec --get"1001610017#: builtin/config.c:71310018#, c-format10019msgid "unable to read config file '%s'"10020msgstr "lecture du fichier de configuration '%s' impossible"1002110022#: builtin/config.c:71610023msgid "error processing config file(s)"10024msgstr "erreur lors du traitement de fichier(s) de configuration"1002510026#: builtin/config.c:72610027msgid "editing stdin is not supported"10028msgstr "l'édition de stdin n'est pas supportée"1002910030#: builtin/config.c:72810031msgid "editing blobs is not supported"10032msgstr "l'édition de blobs n'est pas supportée"1003310034#: builtin/config.c:74210035#, c-format10036msgid "cannot create configuration file %s"10037msgstr "création impossible du fichier de configuration '%s'"1003810039#: builtin/config.c:75510040#, c-format10041msgid ""10042"cannot overwrite multiple values with a single value\n"10043" Use a regexp, --add or --replace-all to change %s."10044msgstr ""10045"impossible de surcharger des valeurs multiples avec une seule valeur\n"10046" Utilisez une regexp, --add ou --replace-all pour modifier %s."1004710048#: builtin/config.c:829 builtin/config.c:84010049#, c-format10050msgid "no such section: %s"10051msgstr "section inexistante : %s"1005210053#: builtin/count-objects.c:9010054msgid "git count-objects [-v] [-H | --human-readable]"10055msgstr "git count-objects [-v] [-H | --human-readable]"1005610057#: builtin/count-objects.c:10010058msgid "print sizes in human readable format"10059msgstr "affiche les tailles dans un format humainement lisible"1006010061#: builtin/describe.c:2610062msgid "git describe [<options>] [<commit-ish>...]"10063msgstr "git describe [<options>] <commit ou apparenté>*"1006410065#: builtin/describe.c:2710066msgid "git describe [<options>] --dirty"10067msgstr "git describe [<options>] --dirty"1006810069#: builtin/describe.c:6210070msgid "head"10071msgstr "tête"1007210073#: builtin/describe.c:6210074msgid "lightweight"10075msgstr "léger"1007610077#: builtin/describe.c:6210078msgid "annotated"10079msgstr "annoté"1008010081#: builtin/describe.c:27210082#, c-format10083msgid "annotated tag %s not available"10084msgstr "l'étiquette annotée %s n'est pas disponible"1008510086#: builtin/describe.c:27610087#, c-format10088msgid "annotated tag %s has no embedded name"10089msgstr "l'étiquette annotée %s n'a pas de nom embarqué"1009010091#: builtin/describe.c:27810092#, c-format10093msgid "tag '%s' is really '%s' here"10094msgstr "l'étiquette '%s' est en fait '%s'"1009510096#: builtin/describe.c:32210097#, c-format10098msgid "no tag exactly matches '%s'"10099msgstr "aucune étiquette ne correspond parfaitement à '%s'"1010010101#: builtin/describe.c:32410102#, c-format10103msgid "No exact match on refs or tags, searching to describe\n"10104msgstr ""10105"Pas de correspondance exacte sur des réfs ou des étiquettes, recherche par "10106"describe\n"1010710108#: builtin/describe.c:37810109#, c-format10110msgid "finished search at %s\n"10111msgstr "recherche terminée à %s\n"1011210113#: builtin/describe.c:40410114#, c-format10115msgid ""10116"No annotated tags can describe '%s'.\n"10117"However, there were unannotated tags: try --tags."10118msgstr ""10119"Aucune étiquette annotée ne peut décrire '%s'.\n"10120"Cependant, il existe des étiquettes non-annotées : essayez avec --tags."1012110122#: builtin/describe.c:40810123#, c-format10124msgid ""10125"No tags can describe '%s'.\n"10126"Try --always, or create some tags."10127msgstr ""10128"Aucune étiquette ne peut décrire '%s'.\n"10129"Essayez --always, ou créez des étiquettes."1013010131#: builtin/describe.c:43810132#, c-format10133msgid "traversed %lu commits\n"10134msgstr "%lu commits parcourus\n"1013510136#: builtin/describe.c:44110137#, c-format10138msgid ""10139"more than %i tags found; listed %i most recent\n"10140"gave up search at %s\n"10141msgstr ""10142"plus de %i étiquettes ont été trouvées; seules les %i plus récentes sont "10143"affichées\n"10144"abandon de la recherche à %s\n"1014510146#: builtin/describe.c:50910147#, c-format10148msgid "describe %s\n"10149msgstr "décrire %s\n"1015010151#: builtin/describe.c:512 builtin/log.c:50810152#, c-format10153msgid "Not a valid object name %s"10154msgstr "%s n'est pas un nom d'objet valide"1015510156#: builtin/describe.c:52010157#, c-format10158msgid "%s is neither a commit nor blob"10159msgstr "%s n'est ni un commit ni un blob"1016010161#: builtin/describe.c:53410162msgid "find the tag that comes after the commit"10163msgstr "rechercher l'étiquette qui suit le commit"1016410165#: builtin/describe.c:53510166msgid "debug search strategy on stderr"10167msgstr "déboguer la stratégie de recherche sur stderr"1016810169#: builtin/describe.c:53610170msgid "use any ref"10171msgstr "utiliser n'importe quelle référence"1017210173#: builtin/describe.c:53710174msgid "use any tag, even unannotated"10175msgstr "utiliser n'importe quelle étiquette, même non-annotée"1017610177#: builtin/describe.c:53810178msgid "always use long format"10179msgstr "toujours utiliser le format long"1018010181#: builtin/describe.c:53910182msgid "only follow first parent"10183msgstr "ne suivre que le premier parent"1018410185#: builtin/describe.c:54210186msgid "only output exact matches"10187msgstr "n'afficher que les correspondances exactes"1018810189#: builtin/describe.c:54410190msgid "consider <n> most recent tags (default: 10)"10191msgstr ""10192"considérer uniquement les <n> étiquettes le plus récentes (défaut : 10)"1019310194#: builtin/describe.c:54610195msgid "only consider tags matching <pattern>"10196msgstr "ne considérer que les étiquettes correspondant à <motif>"1019710198#: builtin/describe.c:54810199msgid "do not consider tags matching <pattern>"10200msgstr "ne pas considérer les étiquettes correspondant à <motif>"1020110202#: builtin/describe.c:550 builtin/name-rev.c:42410203msgid "show abbreviated commit object as fallback"10204msgstr "afficher les objets commits abrégés en dernier recours"1020510206#: builtin/describe.c:551 builtin/describe.c:55410207msgid "mark"10208msgstr "marque"1020910210#: builtin/describe.c:55210211msgid "append <mark> on dirty working tree (default: \"-dirty\")"10212msgstr "ajouter <marque> si la copie de travail est sale (défaut : \"-dirty\")"1021310214#: builtin/describe.c:55510215msgid "append <mark> on broken working tree (default: \"-broken\")"10216msgstr ""10217"ajouter <marque> si la copie de travail est cassée (défaut : \"-broken\")"1021810219#: builtin/describe.c:57310220msgid "--long is incompatible with --abbrev=0"10221msgstr "--long et --abbrev=0 sont incompatibles"1022210223#: builtin/describe.c:60210224msgid "No names found, cannot describe anything."10225msgstr "aucun nom trouvé, impossible de décrire quoi que ce soit."1022610227#: builtin/describe.c:65210228msgid "--dirty is incompatible with commit-ishes"10229msgstr "--dirty est incompatible avec la spécification de commits ou assimilés"1023010231#: builtin/describe.c:65410232msgid "--broken is incompatible with commit-ishes"10233msgstr "--broken est incompatible avec les commits ou assimilés"1023410235#: builtin/diff.c:8310236#, c-format10237msgid "'%s': not a regular file or symlink"10238msgstr "'%s' : n'est pas un fichier régulier ni un lien symbolique"1023910240#: builtin/diff.c:23410241#, c-format10242msgid "invalid option: %s"10243msgstr "option invalide : %s"1024410245#: builtin/diff.c:36310246msgid "Not a git repository"10247msgstr "Ce n'est pas un dépôt git !"1024810249#: builtin/diff.c:40710250#, c-format10251msgid "invalid object '%s' given."10252msgstr "objet spécifié '%s' invalide."1025310254#: builtin/diff.c:41610255#, c-format10256msgid "more than two blobs given: '%s'"10257msgstr "plus de deux blobs spécifiés : '%s'"1025810259#: builtin/diff.c:42110260#, c-format10261msgid "unhandled object '%s' given."10262msgstr "objet non géré '%s' spécifié."1026310264#: builtin/difftool.c:3010265msgid "git difftool [<options>] [<commit> [<commit>]] [--] [<path>...]"10266msgstr "git difftool [<options>] [<commit> [<commit>]] [--] [<chemin>...]"1026710268#: builtin/difftool.c:26010269#, c-format10270msgid "failed: %d"10271msgstr "échec : %d"1027210273#: builtin/difftool.c:30210274#, c-format10275msgid "could not read symlink %s"10276msgstr "lecture du lien symbolique %s impossible"1027710278#: builtin/difftool.c:30410279#, c-format10280msgid "could not read symlink file %s"10281msgstr "impossible de lire le fichier symlink %s"1028210283#: builtin/difftool.c:31210284#, c-format10285msgid "could not read object %s for symlink %s"10286msgstr "Impossible de lire l'objet %s pour le symlink %s"1028710288#: builtin/difftool.c:41310289msgid ""10290"combined diff formats('-c' and '--cc') are not supported in\n"10291"directory diff mode('-d' and '--dir-diff')."10292msgstr ""10293"les formats de diff combinés ('-c' et '--cc') ne sont pas supportés\n"10294"dans le mode de diff de répertoire ('-d' et '--dir-diff')."1029510296#: builtin/difftool.c:63310297#, c-format10298msgid "both files modified: '%s' and '%s'."10299msgstr "les deux fichiers sont modifiés : '%s' et '%s'."1030010301#: builtin/difftool.c:63510302msgid "working tree file has been left."10303msgstr "le fichier dans l'arbre de travail a été laissé."1030410305#: builtin/difftool.c:64610306#, c-format10307msgid "temporary files exist in '%s'."10308msgstr "des fichiers temporaires existent dans '%s'."1030910310#: builtin/difftool.c:64710311msgid "you may want to cleanup or recover these."10312msgstr "vous pourriez souhaiter les nettoyer ou les récupérer."1031310314#: builtin/difftool.c:69610315msgid "use `diff.guitool` instead of `diff.tool`"10316msgstr "utiliser `diff.guitool` au lieu de `diff.tool`"1031710318#: builtin/difftool.c:69810319msgid "perform a full-directory diff"10320msgstr "réalise un diff de répertoire complet"1032110322#: builtin/difftool.c:70010323msgid "do not prompt before launching a diff tool"10324msgstr "ne pas confirmer avant de lancer l'outil de diff"1032510326#: builtin/difftool.c:70510327msgid "use symlinks in dir-diff mode"10328msgstr "utiliser les liens symboliques en mode de diff de répertoire"1032910330#: builtin/difftool.c:70610331msgid "tool"10332msgstr "outil"1033310334#: builtin/difftool.c:70710335msgid "use the specified diff tool"10336msgstr "utiliser l'outil de diff spécifié"1033710338#: builtin/difftool.c:70910339msgid "print a list of diff tools that may be used with `--tool`"10340msgstr "afficher une liste des outils de diff utilisables avec `--tool`"1034110342#: builtin/difftool.c:71210343msgid ""10344"make 'git-difftool' exit when an invoked diff tool returns a non - zero exit "10345"code"10346msgstr ""10347"provoque la fin de 'git-difftool' si l'outil de diff invoqué renvoie un code "10348"non-nul"1034910350#: builtin/difftool.c:71510351msgid "specify a custom command for viewing diffs"10352msgstr "spécifier une commande personnalisée pour visualiser les différences"1035310354#: builtin/difftool.c:73910355msgid "no <tool> given for --tool=<tool>"10356msgstr "pas d'<outil> spécifié pour --tool=<outil>"1035710358#: builtin/difftool.c:74610359msgid "no <cmd> given for --extcmd=<cmd>"10360msgstr "pas de <commande> spécifié pour --extcmd=<commande>"1036110362#: builtin/fast-export.c:2910363msgid "git fast-export [rev-list-opts]"10364msgstr "git fast-export [options-de-liste-de-révisions]"1036510366#: builtin/fast-export.c:100610367msgid "show progress after <n> objects"10368msgstr "afficher la progression après <n> objets"1036910370#: builtin/fast-export.c:100810371msgid "select handling of signed tags"10372msgstr "sélectionner la gestion des étiquettes signées"1037310374#: builtin/fast-export.c:101110375msgid "select handling of tags that tag filtered objects"10376msgstr ""10377"sélectionner la gestion des étiquettes qui pointent sur des objets filtrés"1037810379#: builtin/fast-export.c:101410380msgid "Dump marks to this file"10381msgstr "Enregistrer les marques dans ce fichier"1038210383#: builtin/fast-export.c:101610384msgid "Import marks from this file"10385msgstr "importer les marques depuis ce fichier"1038610387#: builtin/fast-export.c:101810388msgid "Fake a tagger when tags lack one"10389msgstr "falsifier un auteur d'étiquette si l'étiquette n'en présente pas"1039010391#: builtin/fast-export.c:102010392msgid "Output full tree for each commit"10393msgstr "Afficher l'arbre complet pour chaque commit"1039410395#: builtin/fast-export.c:102210396msgid "Use the done feature to terminate the stream"10397msgstr "Utiliser la fonction \"done\" pour terminer le flux"1039810399#: builtin/fast-export.c:102310400msgid "Skip output of blob data"10401msgstr "Sauter l'affichage de données de blob"1040210403#: builtin/fast-export.c:102410404msgid "refspec"10405msgstr "spécificateur de référence"1040610407#: builtin/fast-export.c:102510408msgid "Apply refspec to exported refs"10409msgstr "Appliquer le spécificateur de référence aux références exportées"1041010411#: builtin/fast-export.c:102610412msgid "anonymize output"10413msgstr "anonymise la sortie"1041410415#: builtin/fetch.c:2710416msgid "git fetch [<options>] [<repository> [<refspec>...]]"10417msgstr "git fetch [<options>] [<dépôt> [<spécification-de-référence>...]]"1041810419#: builtin/fetch.c:2810420msgid "git fetch [<options>] <group>"10421msgstr "git fetch [<options>] <groupe>"1042210423#: builtin/fetch.c:2910424msgid "git fetch --multiple [<options>] [(<repository> | <group>)...]"10425msgstr "git fetch --multiple [<options>] [(<dépôt> | <groupe>)...]"1042610427#: builtin/fetch.c:3010428msgid "git fetch --all [<options>]"10429msgstr "git fetch --all [<options>]"1043010431#: builtin/fetch.c:112 builtin/pull.c:19310432msgid "fetch from all remotes"10433msgstr "récupérer depuis tous les dépôts distants"1043410435#: builtin/fetch.c:114 builtin/pull.c:19610436msgid "append to .git/FETCH_HEAD instead of overwriting"10437msgstr "ajouter à .git/FETCH_HEAD au lieu de l'écraser"1043810439#: builtin/fetch.c:116 builtin/pull.c:19910440msgid "path to upload pack on remote end"10441msgstr "chemin vers lequel télécharger le paquet sur le poste distant"1044210443#: builtin/fetch.c:117 builtin/pull.c:20110444msgid "force overwrite of local branch"10445msgstr "forcer l'écrasement de la branche locale"1044610447#: builtin/fetch.c:11910448msgid "fetch from multiple remotes"10449msgstr "récupérer depuis plusieurs dépôts distants"1045010451#: builtin/fetch.c:121 builtin/pull.c:20310452msgid "fetch all tags and associated objects"10453msgstr "récupérer toutes les étiquettes et leurs objets associés"1045410455#: builtin/fetch.c:12310456msgid "do not fetch all tags (--no-tags)"10457msgstr "ne pas récupérer toutes les étiquettes (--no-tags)"1045810459#: builtin/fetch.c:12510460msgid "number of submodules fetched in parallel"10461msgstr "nombre de sous-modules récupérés en parallèle"1046210463#: builtin/fetch.c:127 builtin/pull.c:20610464msgid "prune remote-tracking branches no longer on remote"10465msgstr ""10466"éliminer les branches de suivi distant si la branche n'existe plus dans le "10467"dépôt distant"1046810469#: builtin/fetch.c:12910470msgid "prune local tags no longer on remote and clobber changed tags"10471msgstr ""10472"éliminer les étiquettes locales qui ont disparu du dépôt distant et qui "10473"encombrent les étiquettes modifiées"1047410475#: builtin/fetch.c:130 builtin/fetch.c:153 builtin/pull.c:13110476msgid "on-demand"10477msgstr "à la demande"1047810479#: builtin/fetch.c:13110480msgid "control recursive fetching of submodules"10481msgstr "contrôler la récupération récursive dans les sous-modules"1048210483#: builtin/fetch.c:135 builtin/pull.c:21410484msgid "keep downloaded pack"10485msgstr "conserver le paquet téléchargé"1048610487#: builtin/fetch.c:13710488msgid "allow updating of HEAD ref"10489msgstr "permettre la mise à jour de la référence HEAD"1049010491#: builtin/fetch.c:140 builtin/fetch.c:146 builtin/pull.c:21710492msgid "deepen history of shallow clone"10493msgstr "approfondir l'historique d'un clone superficiel"1049410495#: builtin/fetch.c:14210496msgid "deepen history of shallow repository based on time"10497msgstr "approfondir l'historique d'un clone superficiel en fonction d'une date"1049810499#: builtin/fetch.c:148 builtin/pull.c:22010500msgid "convert to a complete repository"10501msgstr "convertir en un dépôt complet"1050210503#: builtin/fetch.c:15110504msgid "prepend this to submodule path output"10505msgstr "préfixer ceci à la sortie du chemin du sous-module"1050610507#: builtin/fetch.c:15410508msgid ""10509"default for recursive fetching of submodules (lower priority than config "10510"files)"10511msgstr ""10512"par défaut pour la récupération récursive de sous-modules (priorité plus "10513"basse que les fichiers de config)"1051410515#: builtin/fetch.c:158 builtin/pull.c:22310516msgid "accept refs that update .git/shallow"10517msgstr "accepter les références qui mettent à jour .git/shallow"1051810519#: builtin/fetch.c:159 builtin/pull.c:22510520msgid "refmap"10521msgstr "correspondance de référence"1052210523#: builtin/fetch.c:160 builtin/pull.c:22610524msgid "specify fetch refmap"10525msgstr "spécifier une correspondance de référence pour la récupération"1052610527#: builtin/fetch.c:161 builtin/ls-remote.c:77 builtin/push.c:58210528#: builtin/send-pack.c:17210529msgid "server-specific"10530msgstr "spécifique au serveur"1053110532#: builtin/fetch.c:161 builtin/ls-remote.c:77 builtin/push.c:58210533#: builtin/send-pack.c:17310534msgid "option to transmit"10535msgstr "option à transmettre"1053610537#: builtin/fetch.c:16710538msgid "report that we have only objects reachable from this object"10539msgstr "rapporte que nous n'avons que des objets joignables depuis cet objet"1054010541#: builtin/fetch.c:41810542msgid "Couldn't find remote ref HEAD"10543msgstr "impossible de trouver la référence HEAD distante"1054410545#: builtin/fetch.c:55210546#, c-format10547msgid "configuration fetch.output contains invalid value %s"10548msgstr ""10549"le paramètre de configuration fetch.output contient une valeur invalide %s"1055010551#: builtin/fetch.c:64510552#, c-format10553msgid "object %s not found"10554msgstr "objet %s non trouvé"1055510556#: builtin/fetch.c:64910557msgid "[up to date]"10558msgstr "[à jour]"1055910560#: builtin/fetch.c:662 builtin/fetch.c:74410561msgid "[rejected]"10562msgstr "[rejeté]"1056310564#: builtin/fetch.c:66310565msgid "can't fetch in current branch"10566msgstr "impossible de récupérer dans la branche actuelle"1056710568#: builtin/fetch.c:67210569msgid "[tag update]"10570msgstr "[mise à jour de l'étiquette]"1057110572#: builtin/fetch.c:673 builtin/fetch.c:708 builtin/fetch.c:72410573#: builtin/fetch.c:73910574msgid "unable to update local ref"10575msgstr "impossible de mettre à jour la référence locale"1057610577#: builtin/fetch.c:69410578msgid "[new tag]"10579msgstr "[nouvelle étiquette]"1058010581#: builtin/fetch.c:69710582msgid "[new branch]"10583msgstr "[nouvelle branche]"1058410585#: builtin/fetch.c:70010586msgid "[new ref]"10587msgstr "[nouvelle référence]"1058810589#: builtin/fetch.c:73910590msgid "forced update"10591msgstr "mise à jour forcée"1059210593#: builtin/fetch.c:74410594msgid "non-fast-forward"10595msgstr "pas en avance rapide"1059610597#: builtin/fetch.c:79010598#, c-format10599msgid "%s did not send all necessary objects\n"10600msgstr "%s n'a pas envoyé tous les objets nécessaires\n"1060110602#: builtin/fetch.c:81110603#, c-format10604msgid "reject %s because shallow roots are not allowed to be updated"10605msgstr ""10606"%s rejeté parce que les racines superficielles ne sont pas mises à jour"1060710608#: builtin/fetch.c:900 builtin/fetch.c:101110609#, c-format10610msgid "From %.*s\n"10611msgstr "Depuis %.*s\n"1061210613#: builtin/fetch.c:91110614#, c-format10615msgid ""10616"some local refs could not be updated; try running\n"10617" 'git remote prune %s' to remove any old, conflicting branches"10618msgstr ""10619"des références locales n'ont pas pu être mises à jour ; essayez de lancer\n"10620" 'git remote prune %s' pour supprimer des branches anciennes en conflit"1062110622#: builtin/fetch.c:98110623#, c-format10624msgid " (%s will become dangling)"10625msgstr " (%s sera en suspens)"1062610627#: builtin/fetch.c:98210628#, c-format10629msgid " (%s has become dangling)"10630msgstr " (%s est devenu en suspens)"1063110632#: builtin/fetch.c:101410633msgid "[deleted]"10634msgstr "[supprimé]"1063510636#: builtin/fetch.c:1015 builtin/remote.c:103510637msgid "(none)"10638msgstr "(aucun(e))"1063910640#: builtin/fetch.c:103810641#, c-format10642msgid "Refusing to fetch into current branch %s of non-bare repository"10643msgstr "Refus de récupérer dans la branche courant %s d'un dépôt non nu"1064410645#: builtin/fetch.c:105710646#, c-format10647msgid "Option \"%s\" value \"%s\" is not valid for %s"10648msgstr "La valeur \"%2$s\" de l'option \"%1$s\" est invalide pour %3$s"1064910650#: builtin/fetch.c:106010651#, c-format10652msgid "Option \"%s\" is ignored for %s\n"10653msgstr "L'option \"%s\" est ignorée pour %s\n"1065410655#: builtin/fetch.c:133910656#, c-format10657msgid "Fetching %s\n"10658msgstr "Récupération de %s\n"1065910660#: builtin/fetch.c:1341 builtin/remote.c:9910661#, c-format10662msgid "Could not fetch %s"10663msgstr "Impossible de récupérer %s"1066410665#: builtin/fetch.c:1387 builtin/fetch.c:155510666msgid ""10667"--filter can only be used with the remote configured in core.partialClone"10668msgstr ""10669"--filter ne peut être utilisé qu'avec le dépôt distant configuré dans core."10670"partialClone"1067110672#: builtin/fetch.c:141010673msgid ""10674"No remote repository specified. Please, specify either a URL or a\n"10675"remote name from which new revisions should be fetched."10676msgstr ""10677"Aucun dépôt distant spécifié. Veuillez spécifier une URL ou un nom\n"10678"distant depuis lesquels les nouvelles révisions devraient être récupérées."1067910680#: builtin/fetch.c:144710681msgid "You need to specify a tag name."10682msgstr "Vous devez spécifier un nom d'étiquette."1068310684#: builtin/fetch.c:149610685msgid "Negative depth in --deepen is not supported"10686msgstr "Une profondeur négative dans --deepen n'est pas supportée"1068710688#: builtin/fetch.c:149810689msgid "--deepen and --depth are mutually exclusive"10690msgstr "--deepen et --depth sont mutuellement exclusifs"1069110692#: builtin/fetch.c:150310693msgid "--depth and --unshallow cannot be used together"10694msgstr "--depth et --unshallow ne peuvent pas être utilisés ensemble"1069510696#: builtin/fetch.c:150510697msgid "--unshallow on a complete repository does not make sense"10698msgstr "--unshallow sur un dépôt complet n'a pas de sens"1069910700#: builtin/fetch.c:152110701msgid "fetch --all does not take a repository argument"10702msgstr "fetch --all n'accepte pas d'argument de dépôt"1070310704#: builtin/fetch.c:152310705msgid "fetch --all does not make sense with refspecs"10706msgstr "fetch --all n'a pas de sens avec des spécifications de référence"1070710708#: builtin/fetch.c:153210709#, c-format10710msgid "No such remote or remote group: %s"10711msgstr "distant ou groupe distant inexistant : %s"1071210713#: builtin/fetch.c:153910714msgid "Fetching a group and specifying refspecs does not make sense"10715msgstr ""10716"La récupération d'un groupe et les spécifications de référence n'ont pas de "10717"sens"1071810719#: builtin/fmt-merge-msg.c:1710720msgid ""10721"git fmt-merge-msg [-m <message>] [--log[=<n>] | --no-log] [--file <file>]"10722msgstr ""10723"git fmt-merge-msg [-m <message>] [--log[=<n>] | --no-log] [--file <fichier>]"1072410725#: builtin/fmt-merge-msg.c:67110726msgid "populate log with at most <n> entries from shortlog"10727msgstr "peupler le journal avec au plus <n> éléments depuis le journal court"1072810729#: builtin/fmt-merge-msg.c:67410730msgid "alias for --log (deprecated)"10731msgstr "alias pour --log (obsolète)"1073210733#: builtin/fmt-merge-msg.c:67710734msgid "text"10735msgstr "texte"1073610737#: builtin/fmt-merge-msg.c:67810738msgid "use <text> as start of message"10739msgstr "utiliser <texte> comme début de message"1074010741#: builtin/fmt-merge-msg.c:67910742msgid "file to read from"10743msgstr "fichier d'où lire"1074410745#: builtin/for-each-ref.c:1010746msgid "git for-each-ref [<options>] [<pattern>]"10747msgstr "git for-each-ref [<options>] [<motif>]"1074810749#: builtin/for-each-ref.c:1110750msgid "git for-each-ref [--points-at <object>]"10751msgstr "git for-each-ref [--point-at <objet>]"1075210753#: builtin/for-each-ref.c:1210754msgid "git for-each-ref [(--merged | --no-merged) [<commit>]]"10755msgstr "git for-each-ref [(--merged | --no-merged) [<commit>]]"1075610757#: builtin/for-each-ref.c:1310758msgid "git for-each-ref [--contains [<commit>]] [--no-contains [<commit>]]"10759msgstr "git for-each-ref [--contains [<commit>]] [--no-contains [<commit>]]"1076010761#: builtin/for-each-ref.c:2810762msgid "quote placeholders suitably for shells"10763msgstr "échapper les champs réservés pour les interpréteurs de commandes"1076410765#: builtin/for-each-ref.c:3010766msgid "quote placeholders suitably for perl"10767msgstr "échapper les champs réservés pour perl"1076810769#: builtin/for-each-ref.c:3210770msgid "quote placeholders suitably for python"10771msgstr "échapper les champs réservés pour python"1077210773#: builtin/for-each-ref.c:3410774msgid "quote placeholders suitably for Tcl"10775msgstr "échapper les champs réservés pour compatibilité avec Tcl"1077610777#: builtin/for-each-ref.c:3710778msgid "show only <n> matched refs"10779msgstr "n'afficher que <n> références correspondant"1078010781#: builtin/for-each-ref.c:39 builtin/tag.c:42210782msgid "respect format colors"10783msgstr "respecter les couleurs de formatage"1078410785#: builtin/for-each-ref.c:4310786msgid "print only refs which points at the given object"10787msgstr "afficher seulement les références pointant sur l'objet"1078810789#: builtin/for-each-ref.c:4510790msgid "print only refs that are merged"10791msgstr "afficher seulement les références qui sont fusionnées"1079210793#: builtin/for-each-ref.c:4610794msgid "print only refs that are not merged"10795msgstr "afficher seulement les références qui ne sont pas fusionnées"1079610797#: builtin/for-each-ref.c:4710798msgid "print only refs which contain the commit"10799msgstr "afficher seulement les références qui contiennent le commit"1080010801#: builtin/for-each-ref.c:4810802msgid "print only refs which don't contain the commit"10803msgstr "afficher seulement les références qui ne contiennent pas le commit"1080410805#: builtin/fsck.c:57410806msgid "Checking object directories"10807msgstr "Vérification des répertoires d'objet"1080810809#: builtin/fsck.c:66610810msgid "git fsck [<options>] [<object>...]"10811msgstr "git fsck [<options>] [<objet>...]"1081210813#: builtin/fsck.c:67210814msgid "show unreachable objects"10815msgstr "afficher les objets inaccessibles"1081610817#: builtin/fsck.c:67310818msgid "show dangling objects"10819msgstr "afficher les objets en suspens"1082010821#: builtin/fsck.c:67410822msgid "report tags"10823msgstr "afficher les étiquettes"1082410825#: builtin/fsck.c:67510826msgid "report root nodes"10827msgstr "signaler les nœuds racines"1082810829#: builtin/fsck.c:67610830msgid "make index objects head nodes"10831msgstr "considérer les objets de l'index comme nœuds tête"1083210833# translated from man page10834#: builtin/fsck.c:67710835msgid "make reflogs head nodes (default)"10836msgstr "considérer les reflogs comme nœuds tête (par défaut)"1083710838#: builtin/fsck.c:67810839msgid "also consider packs and alternate objects"10840msgstr "inspecter aussi les objets pack et alternatifs"1084110842#: builtin/fsck.c:67910843msgid "check only connectivity"10844msgstr "ne vérifier que la connectivité"1084510846#: builtin/fsck.c:68010847msgid "enable more strict checking"10848msgstr "activer une vérification plus strict"1084910850#: builtin/fsck.c:68210851msgid "write dangling objects in .git/lost-found"10852msgstr "écrire les objets en suspens dans .git/lost-found"1085310854#: builtin/fsck.c:683 builtin/prune.c:11010855msgid "show progress"10856msgstr "afficher la progression"1085710858#: builtin/fsck.c:68410859msgid "show verbose names for reachable objects"10860msgstr "afficher les noms étendus pour les objets inaccessibles"1086110862#: builtin/fsck.c:75010863msgid "Checking objects"10864msgstr "Vérification des objets"1086510866#: builtin/gc.c:3410867msgid "git gc [<options>]"10868msgstr "git gc [<options>]"1086910870#: builtin/gc.c:9010871#, c-format10872msgid "Failed to fstat %s: %s"10873msgstr "Échec du stat de %s : %s"1087410875#: builtin/gc.c:45510876#, c-format10877msgid "Can't stat %s"10878msgstr "impossible de faire un stat de %s"1087910880#: builtin/gc.c:46410881#, c-format10882msgid ""10883"The last gc run reported the following. Please correct the root cause\n"10884"and remove %s.\n"10885"Automatic cleanup will not be performed until the file is removed.\n"10886"\n"10887"%s"10888msgstr ""10889"Le dernier lancement de gc a rapporté l'erreur suivante. Veuillez corriger\n"10890"la cause et supprimer %s.\n"10891"Le nettoyage automatique n'aura pas lieu jusqu'à ce que le fichier soit "10892"supprimé.\n"10893"\n"10894"%s"1089510896#: builtin/gc.c:50510897msgid "prune unreferenced objects"10898msgstr "éliminer les objets non référencés"1089910900#: builtin/gc.c:50710901msgid "be more thorough (increased runtime)"10902msgstr "être plus consciencieux (durée de traitement allongée)"1090310904#: builtin/gc.c:50810905msgid "enable auto-gc mode"10906msgstr "activer le mode auto-gc"1090710908#: builtin/gc.c:51110909msgid "force running gc even if there may be another gc running"10910msgstr ""10911"forcer le lancement du ramasse-miettes même si un autre ramasse-miettes "10912"tourne déjà"1091310914#: builtin/gc.c:51410915msgid "repack all other packs except the largest pack"10916msgstr "recompacter tous les autres paquets excepté le plus gros paquet"1091710918#: builtin/gc.c:53110919#, c-format10920msgid "failed to parse gc.logexpiry value %s"10921msgstr "impossible d'analyser gc.logexpiry %s"1092210923#: builtin/gc.c:54210924#, c-format10925msgid "failed to parse prune expiry value %s"10926msgstr "impossible d'analyser la valeur d'expiration d'élagage %s"1092710928#: builtin/gc.c:56210929#, c-format10930msgid "Auto packing the repository in background for optimum performance.\n"10931msgstr ""10932"Compression automatique du dépôt en tâche de fond pour optimiser les "10933"performances.\n"1093410935#: builtin/gc.c:56410936#, c-format10937msgid "Auto packing the repository for optimum performance.\n"10938msgstr "Compression du dépôt pour optimiser les performances.\n"1093910940#: builtin/gc.c:56510941#, c-format10942msgid "See \"git help gc\" for manual housekeeping.\n"10943msgstr "Voir \"git help gc\" pour toute information sur le nettoyage manuel.\n"1094410945#: builtin/gc.c:60110946#, c-format10947msgid ""10948"gc is already running on machine '%s' pid %<PRIuMAX> (use --force if not)"10949msgstr ""10950"un ramasse-miettes est déjà en cours sur la machine '%s' pid %<PRIuMAX> "10951"(utilisez --force si ce n'est pas le cas)"1095210953#: builtin/gc.c:65210954msgid ""10955"There are too many unreachable loose objects; run 'git prune' to remove them."10956msgstr ""10957"Il y a trop d'objets seuls inaccessibles ; lancez 'git prune' pour les "10958"supprimer."1095910960#: builtin/grep.c:2810961msgid "git grep [<options>] [-e] <pattern> [<rev>...] [[--] <path>...]"10962msgstr "git grep [<options>] [-e] <motif> [<révision>...] [[--] <chemin>...]"1096310964#: builtin/grep.c:22610965#, c-format10966msgid "grep: failed to create thread: %s"10967msgstr "grep : échec de création du fil: %s"1096810969#: builtin/grep.c:28410970#, c-format10971msgid "invalid number of threads specified (%d) for %s"10972msgstr "nombre de fils spécifié invalide (%d) pour %s"1097310974#. TRANSLATORS: %s is the configuration10975#. variable for tweaking threads, currently10976#. grep.threads10977#.10978#: builtin/grep.c:293 builtin/index-pack.c:1536 builtin/index-pack.c:172810979#: builtin/pack-objects.c:263610980#, c-format10981msgid "no threads support, ignoring %s"10982msgstr "pas de support des fils, ignore %s"1098310984#: builtin/grep.c:461 builtin/grep.c:582 builtin/grep.c:62310985#, c-format10986msgid "unable to read tree (%s)"10987msgstr "impossible de lire l'arbre (%s)"1098810989#: builtin/grep.c:63810990#, c-format10991msgid "unable to grep from object of type %s"10992msgstr "impossible de faire un grep sur un objet de type %s"1099310994#: builtin/grep.c:70410995#, c-format10996msgid "switch `%c' expects a numerical value"10997msgstr "l'option '%c' attend un valeur numérique"1099810999#: builtin/grep.c:79111000msgid "search in index instead of in the work tree"11001msgstr "rechercher dans l'index plutôt que dans la copie de travail"1100211003#: builtin/grep.c:79311004msgid "find in contents not managed by git"11005msgstr "rechercher dans les contenus non gérés par git"1100611007#: builtin/grep.c:79511008msgid "search in both tracked and untracked files"11009msgstr "rechercher dans les fichiers suivis et non-suivis"1101011011#: builtin/grep.c:79711012msgid "ignore files specified via '.gitignore'"11013msgstr "ignorer les fichiers spécifiés via '.gitignore'"1101411015#: builtin/grep.c:79911016msgid "recursively search in each submodule"11017msgstr "rechercher récursivement dans chaque sous-module"1101811019#: builtin/grep.c:80211020msgid "show non-matching lines"11021msgstr "afficher les lignes qui ne correspondent pas"1102211023#: builtin/grep.c:80411024msgid "case insensitive matching"11025msgstr "correspondance insensible à la casse"1102611027#: builtin/grep.c:80611028msgid "match patterns only at word boundaries"11029msgstr "rechercher les motifs aux séparateurs de mots"1103011031#: builtin/grep.c:80811032msgid "process binary files as text"11033msgstr "traiter les fichiers binaires comme texte"1103411035#: builtin/grep.c:81011036msgid "don't match patterns in binary files"11037msgstr "ne pas chercher les motifs dans les fichiers binaires"1103811039#: builtin/grep.c:81311040msgid "process binary files with textconv filters"11041msgstr "traiter les fichiers binaires avec les filtres textconv"1104211043#: builtin/grep.c:81511044msgid "descend at most <depth> levels"11045msgstr "descendre au plus de <profondeur> dans l'arborescence"1104611047#: builtin/grep.c:81911048msgid "use extended POSIX regular expressions"11049msgstr "utiliser des expressions régulières étendues POSIX"1105011051#: builtin/grep.c:82211052msgid "use basic POSIX regular expressions (default)"11053msgstr "utiliser des expressions régulières basiques POSIX (par défaut)"1105411055#: builtin/grep.c:82511056msgid "interpret patterns as fixed strings"11057msgstr "interpréter les motifs comme de chaînes fixes"1105811059#: builtin/grep.c:82811060msgid "use Perl-compatible regular expressions"11061msgstr "utiliser des expressions régulières compatibles avec Perl"1106211063#: builtin/grep.c:83111064msgid "show line numbers"11065msgstr "afficher les numéros de ligne"1106611067#: builtin/grep.c:83211068msgid "show column number of first match"11069msgstr "afficher le numéro de colonne de la première correspondance"1107011071#: builtin/grep.c:83311072msgid "don't show filenames"11073msgstr "ne pas pas afficher les noms de fichier"1107411075#: builtin/grep.c:83411076msgid "show filenames"11077msgstr "afficher les noms de fichier"1107811079#: builtin/grep.c:83611080msgid "show filenames relative to top directory"11081msgstr "afficher les noms de fichiers relativement au répertoire de base"1108211083#: builtin/grep.c:83811084msgid "show only filenames instead of matching lines"11085msgstr "n'afficher que les noms de fichiers au lieu des lignes correspondant"1108611087#: builtin/grep.c:84011088msgid "synonym for --files-with-matches"11089msgstr "synonyme pour --files-with-matches"1109011091#: builtin/grep.c:84311092msgid "show only the names of files without match"11093msgstr "n'afficher que les noms des fichiers sans correspondance"1109411095#: builtin/grep.c:84511096msgid "print NUL after filenames"11097msgstr "imprimer une caractère NUL après le noms de fichier"1109811099#: builtin/grep.c:84811100msgid "show only matching parts of a line"11101msgstr "n'afficher que les parties correspondantes d'une ligne"1110211103#: builtin/grep.c:85011104msgid "show the number of matches instead of matching lines"11105msgstr "afficher le nombre de correspondances au lieu des lignes correspondant"1110611107#: builtin/grep.c:85111108msgid "highlight matches"11109msgstr "mettre en évidence les correspondances"1111011111#: builtin/grep.c:85311112msgid "print empty line between matches from different files"11113msgstr ""11114"imprimer une ligne vide entre les correspondances de fichiers différents"1111511116#: builtin/grep.c:85511117msgid "show filename only once above matches from same file"11118msgstr ""11119"afficher le nom de fichier une fois au dessus des correspondances du même "11120"fichier"1112111122#: builtin/grep.c:85811123msgid "show <n> context lines before and after matches"11124msgstr "afficher <n> lignes de contexte avant et après les correspondances"1112511126#: builtin/grep.c:86111127msgid "show <n> context lines before matches"11128msgstr "afficher <n> lignes de contexte avant les correspondances"1112911130#: builtin/grep.c:86311131msgid "show <n> context lines after matches"11132msgstr "afficher <n> lignes de contexte après les correspondances"1113311134#: builtin/grep.c:86511135msgid "use <n> worker threads"11136msgstr "utiliser <n> fils de travail"1113711138#: builtin/grep.c:86611139msgid "shortcut for -C NUM"11140msgstr "raccourci pour -C NUM"1114111142#: builtin/grep.c:86911143msgid "show a line with the function name before matches"11144msgstr ""11145"afficher une ligne avec le nom de la fonction avant les correspondances"1114611147#: builtin/grep.c:87111148msgid "show the surrounding function"11149msgstr "afficher la fonction contenante"1115011151#: builtin/grep.c:87411152msgid "read patterns from file"11153msgstr "lire les motifs depuis fichier"1115411155#: builtin/grep.c:87611156msgid "match <pattern>"11157msgstr "rechercher <motif>"1115811159#: builtin/grep.c:87811160msgid "combine patterns specified with -e"11161msgstr "combiner les motifs spécifiés par -e"1116211163#: builtin/grep.c:89011164msgid "indicate hit with exit status without output"11165msgstr ""11166"indiquer des correspondances avec le code de sortie mais sans rien afficher"1116711168#: builtin/grep.c:89211169msgid "show only matches from files that match all patterns"11170msgstr ""11171"n'afficher que les correspondances de fichiers qui correspondent à tous les "11172"motifs"1117311174#: builtin/grep.c:89411175msgid "show parse tree for grep expression"11176msgstr "afficher l'arbre d'analyse pour le motif grep"1117711178#: builtin/grep.c:89811179msgid "pager"11180msgstr "pagineur"1118111182#: builtin/grep.c:89811183msgid "show matching files in the pager"11184msgstr "afficher les fichiers correspondant dans le pagineur"1118511186#: builtin/grep.c:90211187msgid "allow calling of grep(1) (ignored by this build)"11188msgstr "permettre l'appel de grep(1) (ignoré par ce build)"1118911190#: builtin/grep.c:96611191msgid "no pattern given"11192msgstr "aucun motif fourni"1119311194#: builtin/grep.c:100211195msgid "--no-index or --untracked cannot be used with revs"11196msgstr ""11197"--no-index ou --untracked ne peuvent pas être utilisés avec des révisions"1119811199#: builtin/grep.c:100911200#, c-format11201msgid "unable to resolve revision: %s"11202msgstr "impossible de résoudre la révision : %s"1120311204#: builtin/grep.c:1044 builtin/index-pack.c:1532 builtin/pack-objects.c:263211205#, c-format11206msgid "invalid number of threads specified (%d)"11207msgstr "nombre de fils spécifié invalide (%d)"1120811209#: builtin/grep.c:1049 builtin/pack-objects.c:328611210msgid "no threads support, ignoring --threads"11211msgstr "pas de support des fils, ignore --threads"1121211213#: builtin/grep.c:107311214msgid "--open-files-in-pager only works on the worktree"11215msgstr "--open-files-in-pager ne fonctionne que sur la copie de travail"1121611217#: builtin/grep.c:109611218msgid "option not supported with --recurse-submodules"11219msgstr "option non supportée avec --recurse-submodules"1122011221#: builtin/grep.c:110211222msgid "--cached or --untracked cannot be used with --no-index"11223msgstr "--cached ou --untracked ne peuvent pas être utilisés avec --no-index"1122411225#: builtin/grep.c:110811226msgid "--[no-]exclude-standard cannot be used for tracked contents"11227msgstr "--[no-]exclude-standard ne peut pas être utilisé avec du contenu suivi"1122811229#: builtin/grep.c:111611230msgid "both --cached and trees are given"11231msgstr "--cached et des arbres sont fournis en même temps"1123211233#: builtin/hash-object.c:8411234msgid ""11235"git hash-object [-t <type>] [-w] [--path=<file> | --no-filters] [--stdin] "11236"[--] <file>..."11237msgstr ""11238"git hash-object [-t <type>] [-w] [--path=<fichier> | --no-filters] [--stdin] "11239"[--] <fichier>..."1124011241#: builtin/hash-object.c:8511242msgid "git hash-object --stdin-paths"11243msgstr "git hash-object --stdin-paths"1124411245#: builtin/hash-object.c:9711246msgid "type"11247msgstr "type"1124811249#: builtin/hash-object.c:9711250msgid "object type"11251msgstr "type d'objet"1125211253#: builtin/hash-object.c:9811254msgid "write the object into the object database"11255msgstr "écrire l'objet dans la base de donnée d'objets"1125611257#: builtin/hash-object.c:10011258msgid "read the object from stdin"11259msgstr "lire l'objet depuis l'entrée standard"1126011261#: builtin/hash-object.c:10211262msgid "store file as is without filters"11263msgstr "stocker le fichier tel quel sans filtrage"1126411265#: builtin/hash-object.c:10311266msgid ""11267"just hash any random garbage to create corrupt objects for debugging Git"11268msgstr ""11269"juste hasher n'importe quel contenu pour créer des objets corrompus pour "11270"debugger Git"1127111272#: builtin/hash-object.c:10411273msgid "process file as it were from this path"11274msgstr "traiter le fichier comme s'il venait de ce chemin"1127511276#: builtin/help.c:4611277msgid "print all available commands"11278msgstr "afficher toutes les commandes disponibles"1127911280#: builtin/help.c:4711281msgid "exclude guides"11282msgstr "exclure les guides"1128311284#: builtin/help.c:4811285msgid "print list of useful guides"11286msgstr "afficher une liste de guides utiles"1128711288#: builtin/help.c:4911289msgid "print all configuration variable names"11290msgstr "afficher tous les noms de variables de configuration"1129111292#: builtin/help.c:5111293msgid "show man page"11294msgstr "afficher la page de manuel"1129511296#: builtin/help.c:5211297msgid "show manual in web browser"11298msgstr "afficher le manuel dans un navigateur web"1129911300#: builtin/help.c:5411301msgid "show info page"11302msgstr "afficher la page info"1130311304#: builtin/help.c:5611305msgid "print command description"11306msgstr "afficher la description de la commande"1130711308#: builtin/help.c:6111309msgid "git help [--all] [--guides] [--man | --web | --info] [<command>]"11310msgstr "git help [--all] [--guides] [--man | --web | --info] [<commande>]"1131111312#: builtin/help.c:7311313#, c-format11314msgid "unrecognized help format '%s'"11315msgstr "format d'aide non reconnu '%s'"1131611317#: builtin/help.c:10011318msgid "Failed to start emacsclient."11319msgstr "échec de démarrage d'emacsclient."1132011321#: builtin/help.c:11311322msgid "Failed to parse emacsclient version."11323msgstr "échec d'analyse de la version d'emacsclient."1132411325#: builtin/help.c:12111326#, c-format11327msgid "emacsclient version '%d' too old (< 22)."11328msgstr "la version d'emacsclient '%d' est trop ancienne (<22)."1132911330#: builtin/help.c:139 builtin/help.c:161 builtin/help.c:171 builtin/help.c:17911331#, c-format11332msgid "failed to exec '%s'"11333msgstr "échec de l'exécution de '%s'"1133411335#: builtin/help.c:21711336#, c-format11337msgid ""11338"'%s': path for unsupported man viewer.\n"11339"Please consider using 'man.<tool>.cmd' instead."11340msgstr ""11341"'%s' : chemin pour l'utilitaire de visualisation de manuel non supporté.\n"11342"Veuillez utiliser plutôt 'man.<outil>.cmd'."1134311344#: builtin/help.c:22911345#, c-format11346msgid ""11347"'%s': cmd for supported man viewer.\n"11348"Please consider using 'man.<tool>.path' instead."11349msgstr ""11350"'%s' : chemin pour l'utilitaire de visualisation de manuel supporté.\n"11351"Veuillez utiliser plutôt 'man.<outil>.cmd'."1135211353#: builtin/help.c:34611354#, c-format11355msgid "'%s': unknown man viewer."11356msgstr "'%s' : visualiseur de manuel inconnu."1135711358#: builtin/help.c:36311359msgid "no man viewer handled the request"11360msgstr "aucun visualiseur de manuel n'a pris en charge la demande"1136111362#: builtin/help.c:37111363msgid "no info viewer handled the request"11364msgstr "aucun visualiseur de 'info' n'a pris en charge la demande"1136511366#: builtin/help.c:41811367#, c-format11368msgid "'%s' is aliased to '%s'"11369msgstr "'%s' est un alias de '%s'"1137011371#: builtin/help.c:445 builtin/help.c:47511372#, c-format11373msgid "usage: %s%s"11374msgstr "usage : %s%s"1137511376#: builtin/help.c:45911377msgid "'git help config' for more information"11378msgstr "'git help config' pour plus d'information"1137911380#: builtin/index-pack.c:20811381#, c-format11382msgid "object type mismatch at %s"11383msgstr "type d'objet non correspondant à %s"1138411385#: builtin/index-pack.c:22811386#, c-format11387msgid "did not receive expected object %s"11388msgstr "objet attendu non reçu %s"1138911390#: builtin/index-pack.c:23111391#, c-format11392msgid "object %s: expected type %s, found %s"11393msgstr "objet %s : type attendu %s, reçu %s"1139411395#: builtin/index-pack.c:27311396#, c-format11397msgid "cannot fill %d byte"11398msgid_plural "cannot fill %d bytes"11399msgstr[0] "impossible de remplir %d octet"11400msgstr[1] "impossible de remplir %d octets"1140111402#: builtin/index-pack.c:28311403msgid "early EOF"11404msgstr "fin de fichier prématurée"1140511406#: builtin/index-pack.c:28411407msgid "read error on input"11408msgstr "erreur de lecture sur l'entrée"1140911410#: builtin/index-pack.c:29611411msgid "used more bytes than were available"11412msgstr "plus d'octets utilisés que disponibles"1141311414#: builtin/index-pack.c:303 builtin/pack-objects.c:59011415msgid "pack too large for current definition of off_t"11416msgstr "le paquet est trop grand pour la définition actuelle de off_t"1141711418#: builtin/index-pack.c:306 builtin/unpack-objects.c:9411419msgid "pack exceeds maximum allowed size"11420msgstr "le paquet dépasse la taille maximale permise"1142111422#: builtin/index-pack.c:32111423#, c-format11424msgid "unable to create '%s'"11425msgstr "impossible de créer '%s'"1142611427#: builtin/index-pack.c:32711428#, c-format11429msgid "cannot open packfile '%s'"11430msgstr "impossible d'ouvrir le fichier paquet '%s'"1143111432#: builtin/index-pack.c:34111433msgid "pack signature mismatch"11434msgstr "la signature du paquet ne correspond pas"1143511436#: builtin/index-pack.c:34311437#, c-format11438msgid "pack version %<PRIu32> unsupported"11439msgstr "la version de paquet %<PRIu32> non supportée"1144011441#: builtin/index-pack.c:36111442#, c-format11443msgid "pack has bad object at offset %<PRIuMAX>: %s"11444msgstr "le paquet a un mauvais objet à l'offset %<PRIuMAX> : %s"1144511446#: builtin/index-pack.c:48211447#, c-format11448msgid "inflate returned %d"11449msgstr "la décompression (inflate) a retourné %d"1145011451#: builtin/index-pack.c:53111452msgid "offset value overflow for delta base object"11453msgstr "dépassement de la valeur d'offset pour l'objet delta de base"1145411455#: builtin/index-pack.c:53911456msgid "delta base offset is out of bound"11457msgstr "l'objet delta de base est hors limite"1145811459#: builtin/index-pack.c:54711460#, c-format11461msgid "unknown object type %d"11462msgstr "type d'objet inconnu %d"1146311464#: builtin/index-pack.c:57811465msgid "cannot pread pack file"11466msgstr "impossible de lire (pread) le fichier paquet"1146711468#: builtin/index-pack.c:58011469#, c-format11470msgid "premature end of pack file, %<PRIuMAX> byte missing"11471msgid_plural "premature end of pack file, %<PRIuMAX> bytes missing"11472msgstr[0] "fin prématurée du fichier paquet, %<PRIuMAX> octet lu"11473msgstr[1] "fin prématurée du fichier paquet, %<PRIuMAX> octets lus"1147411475#: builtin/index-pack.c:60611476msgid "serious inflate inconsistency"11477msgstr "grave incohérence dans la décompression (inflate)"1147811479#: builtin/index-pack.c:751 builtin/index-pack.c:757 builtin/index-pack.c:78011480#: builtin/index-pack.c:819 builtin/index-pack.c:82811481#, c-format11482msgid "SHA1 COLLISION FOUND WITH %s !"11483msgstr "COLLISION SHA1 TROUVÉE AVEC %s !"1148411485#: builtin/index-pack.c:754 builtin/pack-objects.c:14311486#: builtin/pack-objects.c:203 builtin/pack-objects.c:29711487#, c-format11488msgid "unable to read %s"11489msgstr "impossible de lire %s"1149011491#: builtin/index-pack.c:81711492#, c-format11493msgid "cannot read existing object info %s"11494msgstr "impossible de lire l'information existante de l'objet %s"1149511496#: builtin/index-pack.c:82511497#, c-format11498msgid "cannot read existing object %s"11499msgstr "impossible de lire l'objet existant %s"1150011501#: builtin/index-pack.c:83911502#, c-format11503msgid "invalid blob object %s"11504msgstr "objet blob invalide %s"1150511506#: builtin/index-pack.c:842 builtin/index-pack.c:86111507msgid "fsck error in packed object"11508msgstr "erreur de fsck dans l'objet empaqueté"1150911510#: builtin/index-pack.c:85811511#, c-format11512msgid "invalid %s"11513msgstr "%s invalide"1151411515#: builtin/index-pack.c:86311516#, c-format11517msgid "Not all child objects of %s are reachable"11518msgstr "Tous les objets enfants de %s ne sont pas accessibles"1151911520#: builtin/index-pack.c:935 builtin/index-pack.c:96611521msgid "failed to apply delta"11522msgstr "échec d'application du delta"1152311524#: builtin/index-pack.c:113611525msgid "Receiving objects"11526msgstr "Réception d'objets"1152711528#: builtin/index-pack.c:113611529msgid "Indexing objects"11530msgstr "Indexation d'objets"1153111532#: builtin/index-pack.c:117011533msgid "pack is corrupted (SHA1 mismatch)"11534msgstr "le paquet est corrompu (SHA1 ne correspond pas)"1153511536#: builtin/index-pack.c:117511537msgid "cannot fstat packfile"11538msgstr "impossible d'obtenir le statut (fstat) du fichier paquet"1153911540#: builtin/index-pack.c:117811541msgid "pack has junk at the end"11542msgstr "le paquet est invalide à la fin"1154311544#: builtin/index-pack.c:119011545msgid "confusion beyond insanity in parse_pack_objects()"11546msgstr "confusion extrême dans parse_pack_objects()"1154711548#: builtin/index-pack.c:121311549msgid "Resolving deltas"11550msgstr "Résolution des deltas"1155111552#: builtin/index-pack.c:1224 builtin/pack-objects.c:240711553#, c-format11554msgid "unable to create thread: %s"11555msgstr "impossible de créer le fil : %s"1155611557#: builtin/index-pack.c:126611558msgid "confusion beyond insanity"11559msgstr "confusion extrême"1156011561#: builtin/index-pack.c:127211562#, c-format11563msgid "completed with %d local object"11564msgid_plural "completed with %d local objects"11565msgstr[0] "complété avec %d objet local"11566msgstr[1] "complété avec %d objets locaux"1156711568#: builtin/index-pack.c:128411569#, c-format11570msgid "Unexpected tail checksum for %s (disk corruption?)"11571msgstr ""11572"Somme de contrôle de fin inattendue pour %s (corruption sur le disque ?)"1157311574#: builtin/index-pack.c:128811575#, c-format11576msgid "pack has %d unresolved delta"11577msgid_plural "pack has %d unresolved deltas"11578msgstr[0] "le paquet a %d delta non résolu"11579msgstr[1] "le paquet a %d deltas non résolus"1158011581#: builtin/index-pack.c:131211582#, c-format11583msgid "unable to deflate appended object (%d)"11584msgstr "impossible de compresser l'objet ajouté (%d)"1158511586#: builtin/index-pack.c:138911587#, c-format11588msgid "local object %s is corrupt"11589msgstr "l'objet local %s est corrompu"1159011591#: builtin/index-pack.c:140311592#, c-format11593msgid "packfile name '%s' does not end with '.pack'"11594msgstr "le nom de fichier paquet '%s' ne se termine pas par '.pack'"1159511596#: builtin/index-pack.c:142811597#, c-format11598msgid "cannot write %s file '%s'"11599msgstr "impossible d'écrire le fichier %s '%s'"1160011601#: builtin/index-pack.c:143611602#, c-format11603msgid "cannot close written %s file '%s'"11604msgstr "impossible de fermer le fichier %s écrit '%s'"1160511606#: builtin/index-pack.c:146011607msgid "error while closing pack file"11608msgstr "erreur en fermeture du fichier paquet"1160911610#: builtin/index-pack.c:147411611msgid "cannot store pack file"11612msgstr "impossible de stocker le fichier paquet"1161311614#: builtin/index-pack.c:148211615msgid "cannot store index file"11616msgstr "impossible de stocker le fichier d'index"1161711618#: builtin/index-pack.c:1526 builtin/pack-objects.c:264511619#, c-format11620msgid "bad pack.indexversion=%<PRIu32>"11621msgstr "mauvais pack.indexversion=%<PRIu32>"1162211623#: builtin/index-pack.c:159511624#, c-format11625msgid "Cannot open existing pack file '%s'"11626msgstr "Impossible d'ouvrir le fichier paquet existant '%s'"1162711628#: builtin/index-pack.c:159711629#, c-format11630msgid "Cannot open existing pack idx file for '%s'"11631msgstr "Impossible d'ouvrir le fichier paquet d'index existant pour '%s'"1163211633#: builtin/index-pack.c:164511634#, c-format11635msgid "non delta: %d object"11636msgid_plural "non delta: %d objects"11637msgstr[0] "pas un delta : %d objet"11638msgstr[1] "pas un delta : %d objets"1163911640#: builtin/index-pack.c:165211641#, c-format11642msgid "chain length = %d: %lu object"11643msgid_plural "chain length = %d: %lu objects"11644msgstr[0] "longueur chaînée = %d : %lu objet"11645msgstr[1] "longueur chaînée = %d : %lu objets"1164611647#: builtin/index-pack.c:168911648msgid "Cannot come back to cwd"11649msgstr "Impossible de revenir au répertoire de travail courant"1165011651#: builtin/index-pack.c:1740 builtin/index-pack.c:174311652#: builtin/index-pack.c:1759 builtin/index-pack.c:176311653#, c-format11654msgid "bad %s"11655msgstr "mauvais %s"1165611657#: builtin/index-pack.c:177911658msgid "--fix-thin cannot be used without --stdin"11659msgstr "--fix-thin ne peut pas être utilisé sans --stdin"1166011661#: builtin/index-pack.c:178111662msgid "--stdin requires a git repository"11663msgstr "--stdin requiert un dépôt git"1166411665#: builtin/index-pack.c:178711666msgid "--verify with no packfile name given"11667msgstr "--verify sans nom de fichier paquet donné"1166811669#: builtin/index-pack.c:1837 builtin/unpack-objects.c:58011670msgid "fsck error in pack objects"11671msgstr "erreur de fsck dans les objets paquets"1167211673#: builtin/init-db.c:5511674#, c-format11675msgid "cannot stat '%s'"11676msgstr "impossible de faire un stat de '%s'"1167711678#: builtin/init-db.c:6111679#, c-format11680msgid "cannot stat template '%s'"11681msgstr "impossible de faire un stat du modèle '%s'"1168211683#: builtin/init-db.c:6611684#, c-format11685msgid "cannot opendir '%s'"11686msgstr "impossible d'ouvrir (opendir) '%s'"1168711688#: builtin/init-db.c:7811689#, c-format11690msgid "cannot readlink '%s'"11691msgstr "impossible de readlink '%s'"1169211693#: builtin/init-db.c:8011694#, c-format11695msgid "cannot symlink '%s' '%s'"11696msgstr "impossible de créer un lien symbolique de '%s' '%s'"1169711698#: builtin/init-db.c:8611699#, c-format11700msgid "cannot copy '%s' to '%s'"11701msgstr "impossible de copier '%s' vers '%s'"1170211703#: builtin/init-db.c:9011704#, c-format11705msgid "ignoring template %s"11706msgstr "modèle %s ignoré"1170711708#: builtin/init-db.c:12111709#, c-format11710msgid "templates not found in %s"11711msgstr "modèles non trouvés dans %s"1171211713#: builtin/init-db.c:13611714#, c-format11715msgid "not copying templates from '%s': %s"11716msgstr "pas de copie des modèles depuis '%s' : %s"1171711718#: builtin/init-db.c:32911719#, c-format11720msgid "unable to handle file type %d"11721msgstr "impossible de traiter le fichier de type %d"1172211723#: builtin/init-db.c:33211724#, c-format11725msgid "unable to move %s to %s"11726msgstr "impossible de déplacer %s vers %s"1172711728#: builtin/init-db.c:349 builtin/init-db.c:35211729#, c-format11730msgid "%s already exists"11731msgstr "%s existe déjà"1173211733#: builtin/init-db.c:40511734#, c-format11735msgid "Reinitialized existing shared Git repository in %s%s\n"11736msgstr "Dépôt Git existant partagé réinitialisé dans %s%s\n"1173711738#: builtin/init-db.c:40611739#, c-format11740msgid "Reinitialized existing Git repository in %s%s\n"11741msgstr "Dépôt Git existant réinitialisé dans %s%s\n"1174211743#: builtin/init-db.c:41011744#, c-format11745msgid "Initialized empty shared Git repository in %s%s\n"11746msgstr "Dépôt Git vide partagé initialisé dans %s%s\n"1174711748#: builtin/init-db.c:41111749#, c-format11750msgid "Initialized empty Git repository in %s%s\n"11751msgstr "Dépôt Git vide initialisé dans %s%s\n"1175211753#: builtin/init-db.c:45911754msgid ""11755"git init [-q | --quiet] [--bare] [--template=<template-directory>] [--"11756"shared[=<permissions>]] [<directory>]"11757msgstr ""11758"git init [-q | --quiet] [--bare] [--template=<répertoire-modèle>] [--"11759"shared[=<permissions>]] [<répertoire>]"1176011761#: builtin/init-db.c:48211762msgid "permissions"11763msgstr "permissions"1176411765#: builtin/init-db.c:48311766msgid "specify that the git repository is to be shared amongst several users"11767msgstr "spécifier que le dépôt git sera partagé entre plusieurs utilisateurs"1176811769#: builtin/init-db.c:517 builtin/init-db.c:52211770#, c-format11771msgid "cannot mkdir %s"11772msgstr "impossible de créer le répertoire (mkdir) %s"1177311774#: builtin/init-db.c:52611775#, c-format11776msgid "cannot chdir to %s"11777msgstr "impossible de se déplacer vers le répertoire (chdir) %s"1177811779#: builtin/init-db.c:54711780#, c-format11781msgid ""11782"%s (or --work-tree=<directory>) not allowed without specifying %s (or --git-"11783"dir=<directory>)"11784msgstr ""11785"%s (ou --work-tree=<répertoire>) n'est pas autorisé sans spécifier %s (ou --"11786"git-dir=<répertoire>)"1178711788#: builtin/init-db.c:57511789#, c-format11790msgid "Cannot access work tree '%s'"11791msgstr "Impossible d'accéder à l'arbre de travail '%s'"1179211793#: builtin/interpret-trailers.c:1511794msgid ""11795"git interpret-trailers [--in-place] [--trim-empty] [(--trailer "11796"<token>[(=|:)<value>])...] [<file>...]"11797msgstr ""11798"git interpret-trailers [--in-place] [--trim-empty] [(--trailer "11799"<symbole>[(=|:)<valeur>])...] [<fichier>...]"1180011801#: builtin/interpret-trailers.c:9211802msgid "edit files in place"11803msgstr "éditer les fichiers sur place"1180411805#: builtin/interpret-trailers.c:9311806msgid "trim empty trailers"11807msgstr "éliminer les lignes de fin vides"1180811809#: builtin/interpret-trailers.c:9611810msgid "where to place the new trailer"11811msgstr "où placer les nouvelles lignes terminales"1181211813#: builtin/interpret-trailers.c:9811814msgid "action if trailer already exists"11815msgstr "action si les lignes terminales existent déjà"1181611817#: builtin/interpret-trailers.c:10011818msgid "action if trailer is missing"11819msgstr "action si les lignes terminales manquent"1182011821#: builtin/interpret-trailers.c:10211822msgid "output only the trailers"11823msgstr "éliminer les lignes terminales vides"1182411825#: builtin/interpret-trailers.c:10311826msgid "do not apply config rules"11827msgstr "ne pas appliquer les règles de la configuration"1182811829#: builtin/interpret-trailers.c:10411830msgid "join whitespace-continued values"11831msgstr "joindre les valeurs continuées avec des caractères blancs"1183211833#: builtin/interpret-trailers.c:10511834msgid "set parsing options"11835msgstr "paramètres d'analyse"1183611837#: builtin/interpret-trailers.c:10711838msgid "trailer"11839msgstr "ligne de fin"1184011841#: builtin/interpret-trailers.c:10811842msgid "trailer(s) to add"11843msgstr "ligne(s) de fin à ajouter"1184411845#: builtin/interpret-trailers.c:11711846msgid "--trailer with --only-input does not make sense"11847msgstr "--trailer n'a aucune signification avec --only-input"1184811849#: builtin/interpret-trailers.c:12711850msgid "no input file given for in-place editing"11851msgstr "aucun fichier en entrée pour l'éditon sur place"1185211853#: builtin/log.c:5111854msgid "git log [<options>] [<revision-range>] [[--] <path>...]"11855msgstr "git log [<options>] [<plage de révisions>] [[--] <chemin>...]"1185611857#: builtin/log.c:5211858msgid "git show [<options>] <object>..."11859msgstr "git show [<options>] <objet>..."1186011861#: builtin/log.c:9611862#, c-format11863msgid "invalid --decorate option: %s"11864msgstr "option --decorate invalide : %s"1186511866#: builtin/log.c:15711867msgid "suppress diff output"11868msgstr "supprimer la sortie des différences"1186911870#: builtin/log.c:15811871msgid "show source"11872msgstr "afficher la source"1187311874#: builtin/log.c:15911875msgid "Use mail map file"11876msgstr "Utiliser le fichier de correspondance de mail"1187711878#: builtin/log.c:16111879msgid "only decorate refs that match <pattern>"11880msgstr "décorer seulement les références correspondant à <motif>"1188111882#: builtin/log.c:16311883msgid "do not decorate refs that match <pattern>"11884msgstr "ne pas décorer les références correspondant à <motif>"1188511886#: builtin/log.c:16411887msgid "decorate options"11888msgstr "décorer les options"1188911890#: builtin/log.c:16711891msgid "Process line range n,m in file, counting from 1"11892msgstr ""11893"Traiter seulement l'intervalle de lignes n,m du fichier en commençant le "11894"compte à 1"1189511896#: builtin/log.c:26511897#, c-format11898msgid "Final output: %d %s\n"11899msgstr "Sortie finale : %d %s\n"1190011901#: builtin/log.c:51611902#, c-format11903msgid "git show %s: bad file"11904msgstr "git show %s : fichier incorrect"1190511906#: builtin/log.c:531 builtin/log.c:62511907#, c-format11908msgid "Could not read object %s"11909msgstr "Impossible de lire l'objet %s"1191011911#: builtin/log.c:64911912#, c-format11913msgid "Unknown type: %d"11914msgstr "Type inconnu : %d"1191511916#: builtin/log.c:77011917msgid "format.headers without value"11918msgstr "format.headers sans valeur"1191911920#: builtin/log.c:87111921msgid "name of output directory is too long"11922msgstr "le nom du répertoire de sortie est trop long"1192311924#: builtin/log.c:88711925#, c-format11926msgid "Cannot open patch file %s"11927msgstr "Impossible d'ouvrir le fichier correctif %s"1192811929#: builtin/log.c:90411930msgid "Need exactly one range."11931msgstr "Exactement une plage nécessaire."1193211933#: builtin/log.c:91411934msgid "Not a range."11935msgstr "Ceci n'est pas une plage."1193611937#: builtin/log.c:102011938msgid "Cover letter needs email format"11939msgstr "La lettre de motivation doit être au format courriel"1194011941#: builtin/log.c:110111942#, c-format11943msgid "insane in-reply-to: %s"11944msgstr "in-reply-to aberrant : %s"1194511946#: builtin/log.c:112811947msgid "git format-patch [<options>] [<since> | <revision-range>]"11948msgstr "git format-patch [<options>] [<depuis> | <plage de révisions>]"1194911950#: builtin/log.c:117811951msgid "Two output directories?"11952msgstr "Deux répertoires de sortie ?"1195311954#: builtin/log.c:1285 builtin/log.c:1945 builtin/log.c:1947 builtin/log.c:195911955#, c-format11956msgid "Unknown commit %s"11957msgstr "Commit inconnu %s"1195811959#: builtin/log.c:1295 builtin/notes.c:889 builtin/tag.c:52411960#, c-format11961msgid "Failed to resolve '%s' as a valid ref."11962msgstr "Impossible de résoudre '%s' comme une référence valide."1196311964#: builtin/log.c:130011965msgid "Could not find exact merge base."11966msgstr "Impossible de trouver la base de fusion exacte."1196711968#: builtin/log.c:130411969msgid ""11970"Failed to get upstream, if you want to record base commit automatically,\n"11971"please use git branch --set-upstream-to to track a remote branch.\n"11972"Or you could specify base commit by --base=<base-commit-id> manually."11973msgstr ""11974"Impossible de récupérer l'amont, si vous voulez enregistrer le commit de "11975"base automatiquement,\n"11976"veuillez utiliser git branch --set-upstream-to pour suivre une branche "11977"distante\n"11978"ou vous pouvez spécifier le commit de base par --base=<id-du-commit-de-base> "11979"manuellement."1198011981#: builtin/log.c:132411982msgid "Failed to find exact merge base"11983msgstr "Impossible de trouver la base de fusion exacte"1198411985#: builtin/log.c:133511986msgid "base commit should be the ancestor of revision list"11987msgstr "le commit de base devrait être l'ancêtre de la liste de révisions"1198811989#: builtin/log.c:133911990msgid "base commit shouldn't be in revision list"11991msgstr "le commit de base ne devrait pas faire partie de la liste de révisions"1199211993#: builtin/log.c:139211994msgid "cannot get patch id"11995msgstr "impossible d'obtenir l'id du patch"1199611997#: builtin/log.c:145211998msgid "use [PATCH n/m] even with a single patch"11999msgstr "utiliser [PATCH n/m] même avec un patch unique"1200012001#: builtin/log.c:145512002msgid "use [PATCH] even with multiple patches"12003msgstr "utiliser [PATCH] même avec des patchs multiples"1200412005#: builtin/log.c:145912006msgid "print patches to standard out"12007msgstr "afficher les patchs sur la sortie standard"1200812009#: builtin/log.c:146112010msgid "generate a cover letter"12011msgstr "générer une lettre de motivation"1201212013#: builtin/log.c:146312014msgid "use simple number sequence for output file names"12015msgstr ""12016"utiliser une séquence simple de nombres pour les nom des fichiers de sortie"1201712018#: builtin/log.c:146412019msgid "sfx"12020msgstr "sfx"1202112022#: builtin/log.c:146512023msgid "use <sfx> instead of '.patch'"12024msgstr "utiliser <sfx> au lieu de '.patch'"1202512026#: builtin/log.c:146712027msgid "start numbering patches at <n> instead of 1"12028msgstr "démarrer la numérotation des patchs à <n> au lieu de 1"1202912030#: builtin/log.c:146912031msgid "mark the series as Nth re-roll"12032msgstr "marquer la série comme une Nième réédition"1203312034#: builtin/log.c:147112035msgid "Use [RFC PATCH] instead of [PATCH]"12036msgstr "utiliser [RFC PATCH] au lieu de [PATCH]"1203712038#: builtin/log.c:147412039msgid "Use [<prefix>] instead of [PATCH]"12040msgstr "utiliser [<préfixe>] au lieu de [PATCH]"1204112042#: builtin/log.c:147712043msgid "store resulting files in <dir>"12044msgstr "stocker les fichiers résultats dans <répertoire>"1204512046#: builtin/log.c:148012047msgid "don't strip/add [PATCH]"12048msgstr "ne pas retirer/ajouter [PATCH]"1204912050#: builtin/log.c:148312051msgid "don't output binary diffs"12052msgstr "ne pas imprimer les diffs binaires"1205312054#: builtin/log.c:148512055msgid "output all-zero hash in From header"12056msgstr "écrire une empreinte à zéro dans l'entête From"1205712058#: builtin/log.c:148712059msgid "don't include a patch matching a commit upstream"12060msgstr "ne pas inclure un patch correspondant à un commit amont"1206112062#: builtin/log.c:148912063msgid "show patch format instead of default (patch + stat)"12064msgstr "afficher le format du patch au lieu du défaut (patch + stat)"1206512066#: builtin/log.c:149112067msgid "Messaging"12068msgstr "Communication"1206912070#: builtin/log.c:149212071msgid "header"12072msgstr "en-tête"1207312074#: builtin/log.c:149312075msgid "add email header"12076msgstr "ajouter l'en-tête de courriel"1207712078#: builtin/log.c:1494 builtin/log.c:149612079msgid "email"12080msgstr "courriel"1208112082#: builtin/log.c:149412083msgid "add To: header"12084msgstr "ajouter l'en-tête \"To:\""1208512086#: builtin/log.c:149612087msgid "add Cc: header"12088msgstr "ajouter l'en-tête \"Cc:\""1208912090#: builtin/log.c:149812091msgid "ident"12092msgstr "ident"1209312094#: builtin/log.c:149912095msgid "set From address to <ident> (or committer ident if absent)"12096msgstr ""12097"renseigner l'adresse From à <ident> (ou à l'ident du validateur si absent)"1209812099#: builtin/log.c:150112100msgid "message-id"12101msgstr "id-message"1210212103#: builtin/log.c:150212104msgid "make first mail a reply to <message-id>"12105msgstr "répondre dans le premier message à <id-message>"1210612107#: builtin/log.c:1503 builtin/log.c:150612108msgid "boundary"12109msgstr "limite"1211012111#: builtin/log.c:150412112msgid "attach the patch"12113msgstr "attacher le patch"1211412115#: builtin/log.c:150712116msgid "inline the patch"12117msgstr "patch à l'intérieur"1211812119#: builtin/log.c:151112120msgid "enable message threading, styles: shallow, deep"12121msgstr ""12122"activer l'enfilage de message, styles : shallow (superficiel), deep (profond)"1212312124#: builtin/log.c:151312125msgid "signature"12126msgstr "signature"1212712128#: builtin/log.c:151412129msgid "add a signature"12130msgstr "ajouter une signature"1213112132#: builtin/log.c:151512133msgid "base-commit"12134msgstr "commit-de-base"1213512136#: builtin/log.c:151612137msgid "add prerequisite tree info to the patch series"12138msgstr "Ajouter un arbre prérequis à la série de patchs"1213912140#: builtin/log.c:151812141msgid "add a signature from a file"12142msgstr "ajouter une signature depuis un fichier"1214312144#: builtin/log.c:151912145msgid "don't print the patch filenames"12146msgstr "ne pas afficher les noms de fichiers des patchs"1214712148#: builtin/log.c:152112149msgid "show progress while generating patches"12150msgstr ""12151"afficher la barre de progression durant la phase de génération des patchs"1215212153#: builtin/log.c:159612154#, c-format12155msgid "invalid ident line: %s"12156msgstr "ligne d'identification invalide : %s"1215712158#: builtin/log.c:161112159msgid "-n and -k are mutually exclusive"12160msgstr "-n et -k sont mutuellement exclusifs"1216112162#: builtin/log.c:161312163msgid "--subject-prefix/--rfc and -k are mutually exclusive"12164msgstr "--subject-prefix/--rfc et -k sont mutuellement exclusifs"1216512166#: builtin/log.c:162112167msgid "--name-only does not make sense"12168msgstr "--name-only n'a pas de sens"1216912170#: builtin/log.c:162312171msgid "--name-status does not make sense"12172msgstr "--name-status n'a pas de sens"1217312174#: builtin/log.c:162512175msgid "--check does not make sense"12176msgstr "--check n'a pas de sens"1217712178#: builtin/log.c:165712179msgid "standard output, or directory, which one?"12180msgstr "sortie standard, ou répertoire, lequel ?"1218112182#: builtin/log.c:165912183#, c-format12184msgid "Could not create directory '%s'"12185msgstr "Impossible de créer le répertoire '%s'"1218612187#: builtin/log.c:175212188#, c-format12189msgid "unable to read signature file '%s'"12190msgstr "lecture du fichier de signature '%s' impossible"1219112192#: builtin/log.c:178512193msgid "Generating patches"12194msgstr "Génération des patchs"1219512196#: builtin/log.c:182912197msgid "Failed to create output files"12198msgstr "Échec de création des fichiers en sortie"1219912200#: builtin/log.c:188012201msgid "git cherry [-v] [<upstream> [<head> [<limit>]]]"12202msgstr "git cherry [-v] [<branche_amont> [<head> [<limite>]]]"1220312204#: builtin/log.c:193412205#, c-format12206msgid ""12207"Could not find a tracked remote branch, please specify <upstream> manually.\n"12208msgstr ""12209"Impossible de trouver une branche distante suivie, merci de spécifier "12210"<branche_amont> manuellement.\n"1221112212#: builtin/ls-files.c:46912213msgid "git ls-files [<options>] [<file>...]"12214msgstr "git ls-files [<options>] [<fichier>...]"1221512216#: builtin/ls-files.c:51812217msgid "identify the file status with tags"12218msgstr "identifier l'état de fichier avec les étiquettes"1221912220#: builtin/ls-files.c:52012221msgid "use lowercase letters for 'assume unchanged' files"12222msgstr "utiliser des minuscules pour les fichiers 'assumés inchangés'"1222312224#: builtin/ls-files.c:52212225msgid "use lowercase letters for 'fsmonitor clean' files"12226msgstr "utiliser des minuscules pour les fichiers 'fsmonitor clean'"1222712228#: builtin/ls-files.c:52412229msgid "show cached files in the output (default)"12230msgstr "afficher les fichiers mis en cache dans la sortie (défaut)"1223112232#: builtin/ls-files.c:52612233msgid "show deleted files in the output"12234msgstr "afficher les fichiers supprimés dans la sortie"1223512236#: builtin/ls-files.c:52812237msgid "show modified files in the output"12238msgstr "afficher les fichiers modifiés dans la sortie"1223912240#: builtin/ls-files.c:53012241msgid "show other files in the output"12242msgstr "afficher les autres fichiers dans la sortie"1224312244#: builtin/ls-files.c:53212245msgid "show ignored files in the output"12246msgstr "afficher les fichiers ignorés dans la sortie"1224712248#: builtin/ls-files.c:53512249msgid "show staged contents' object name in the output"12250msgstr "afficher les nom des objets indexés dans la sortie"1225112252#: builtin/ls-files.c:53712253msgid "show files on the filesystem that need to be removed"12254msgstr ""12255"afficher les fichiers du système de fichiers qui ont besoin d'être supprimés"1225612257#: builtin/ls-files.c:53912258msgid "show 'other' directories' names only"12259msgstr "afficher seulement les noms des répertoires 'other'"1226012261#: builtin/ls-files.c:54112262msgid "show line endings of files"12263msgstr "afficher les fins de lignes des fichiers"1226412265#: builtin/ls-files.c:54312266msgid "don't show empty directories"12267msgstr "ne pas afficher les répertoires vides"1226812269#: builtin/ls-files.c:54612270msgid "show unmerged files in the output"12271msgstr "afficher les fichiers non fusionnés dans la sortie"1227212273#: builtin/ls-files.c:54812274msgid "show resolve-undo information"12275msgstr "afficher l'information resolv-undo"1227612277#: builtin/ls-files.c:55012278msgid "skip files matching pattern"12279msgstr "sauter les fichiers correspondant au motif"1228012281#: builtin/ls-files.c:55312282msgid "exclude patterns are read from <file>"12283msgstr "les motifs d'exclusion sont lus depuis <fichier>"1228412285#: builtin/ls-files.c:55612286msgid "read additional per-directory exclude patterns in <file>"12287msgstr "lire des motifs d'exclusion additionnels par répertoire dans <fichier>"1228812289#: builtin/ls-files.c:55812290msgid "add the standard git exclusions"12291msgstr "ajouter les exclusions git standard"1229212293#: builtin/ls-files.c:56112294msgid "make the output relative to the project top directory"12295msgstr "afficher en relatif par rapport au répertoire racine du projet"1229612297#: builtin/ls-files.c:56412298msgid "recurse through submodules"12299msgstr "parcourir récursivement les sous-modules"1230012301#: builtin/ls-files.c:56612302msgid "if any <file> is not in the index, treat this as an error"12303msgstr "si un <fichier> n'est pas dans l'index, traiter cela comme une erreur"1230412305#: builtin/ls-files.c:56712306msgid "tree-ish"12307msgstr "arbre ou apparenté"1230812309#: builtin/ls-files.c:56812310msgid "pretend that paths removed since <tree-ish> are still present"12311msgstr ""12312"considérer que les chemins supprimés depuis <arbre ou apparenté> sont "12313"toujours présents"1231412315#: builtin/ls-files.c:57012316msgid "show debugging data"12317msgstr "afficher les données de débogage"1231812319#: builtin/ls-remote.c:912320msgid ""12321"git ls-remote [--heads] [--tags] [--refs] [--upload-pack=<exec>]\n"12322" [-q | --quiet] [--exit-code] [--get-url]\n"12323" [--symref] [<repository> [<refs>...]]"12324msgstr ""12325"git ls-remote [--heads] [--tags] [--refs] [--upload-pack=<exec>]\n"12326" [-q | --quiet] [--exit-code] [--get-url]\n"12327" [--symref] [<dépôt> [<références>...]]"1232812329#: builtin/ls-remote.c:5912330msgid "do not print remote URL"12331msgstr "ne pas afficher les URL distantes"1233212333#: builtin/ls-remote.c:60 builtin/ls-remote.c:6212334msgid "exec"12335msgstr "exécutable"1233612337#: builtin/ls-remote.c:61 builtin/ls-remote.c:6312338msgid "path of git-upload-pack on the remote host"12339msgstr "chemin vers git-upload-pack sur le serveur distant"1234012341#: builtin/ls-remote.c:6512342msgid "limit to tags"12343msgstr "limiter aux étiquettes"1234412345#: builtin/ls-remote.c:6612346msgid "limit to heads"12347msgstr "limiter aux heads"1234812349#: builtin/ls-remote.c:6712350msgid "do not show peeled tags"12351msgstr "ne pas afficher les étiquettes pelées"1235212353#: builtin/ls-remote.c:6912354msgid "take url.<base>.insteadOf into account"12355msgstr "prendre en compte url.<base>.insteadOf"1235612357#: builtin/ls-remote.c:7312358msgid "exit with exit code 2 if no matching refs are found"12359msgstr ""12360"sortir avec un code d'erreur 2 si aucune correspondance de référence n'est "12361"trouvée"1236212363#: builtin/ls-remote.c:7612364msgid "show underlying ref in addition to the object pointed by it"12365msgstr "afficher la réf sous-jacente en plus de l'objet pointé par elle"1236612367#: builtin/ls-tree.c:3012368msgid "git ls-tree [<options>] <tree-ish> [<path>...]"12369msgstr "git ls-tree [<options>] <arbre ou apparenté> [<chemin>...]"1237012371#: builtin/ls-tree.c:12812372msgid "only show trees"12373msgstr "afficher seulement les arbres"1237412375#: builtin/ls-tree.c:13012376msgid "recurse into subtrees"12377msgstr "parcourir les sous-arbres"1237812379#: builtin/ls-tree.c:13212380msgid "show trees when recursing"12381msgstr "afficher les arbres en les parcourant"1238212383#: builtin/ls-tree.c:13512384msgid "terminate entries with NUL byte"12385msgstr "terminer les éléments avec un octet NUL"1238612387#: builtin/ls-tree.c:13612388msgid "include object size"12389msgstr "inclure la taille d'objet"1239012391#: builtin/ls-tree.c:138 builtin/ls-tree.c:14012392msgid "list only filenames"12393msgstr "afficher seulement les noms de fichiers"1239412395#: builtin/ls-tree.c:14312396msgid "use full path names"12397msgstr "utiliser les noms de chemins complets"1239812399#: builtin/ls-tree.c:14512400msgid "list entire tree; not just current directory (implies --full-name)"12401msgstr ""12402"afficher l'arbre entier ; pas seulement le répertoire courant (implique --"12403"full-name)"1240412405#: builtin/mailsplit.c:24112406#, c-format12407msgid "empty mbox: '%s'"12408msgstr "mbox vide : '%s'"1240912410#: builtin/merge.c:5112411msgid "git merge [<options>] [<commit>...]"12412msgstr "git merge [<options>] [<commit>...]"1241312414#: builtin/merge.c:5212415msgid "git merge --abort"12416msgstr "git merge --abort"1241712418#: builtin/merge.c:5312419msgid "git merge --continue"12420msgstr "git merge --continue"1242112422#: builtin/merge.c:11012423msgid "switch `m' requires a value"12424msgstr "le commutateur `m' a besoin d'une valeur"1242512426#: builtin/merge.c:17612427#, c-format12428msgid "Could not find merge strategy '%s'.\n"12429msgstr "Impossible de trouver la stratégie de fusion '%s'.\n"1243012431#: builtin/merge.c:17712432#, c-format12433msgid "Available strategies are:"12434msgstr "Les stratégies disponibles sont :"1243512436#: builtin/merge.c:18212437#, c-format12438msgid "Available custom strategies are:"12439msgstr "Les stratégies personnalisées sont :"1244012441#: builtin/merge.c:232 builtin/pull.c:14212442msgid "do not show a diffstat at the end of the merge"12443msgstr "ne pas afficher un diffstat à la fin de la fusion"1244412445#: builtin/merge.c:235 builtin/pull.c:14512446msgid "show a diffstat at the end of the merge"12447msgstr "afficher un diffstat à la fin de la fusion"1244812449#: builtin/merge.c:236 builtin/pull.c:14812450msgid "(synonym to --stat)"12451msgstr "(synonyme de --stat)"1245212453#: builtin/merge.c:238 builtin/pull.c:15112454msgid "add (at most <n>) entries from shortlog to merge commit message"12455msgstr ""12456"ajouter (au plus <n>) éléments du journal court au message de validation de "12457"la fusion"1245812459#: builtin/merge.c:241 builtin/pull.c:15712460msgid "create a single commit instead of doing a merge"12461msgstr "créer une validation unique au lieu de faire une fusion"1246212463#: builtin/merge.c:243 builtin/pull.c:16012464msgid "perform a commit if the merge succeeds (default)"12465msgstr "effectuer une validation si la fusion réussit (défaut)"1246612467#: builtin/merge.c:245 builtin/pull.c:16312468msgid "edit message before committing"12469msgstr "éditer le message avant la validation"1247012471#: builtin/merge.c:24612472msgid "allow fast-forward (default)"12473msgstr "autoriser l'avance rapide (défaut)"1247412475#: builtin/merge.c:248 builtin/pull.c:16912476msgid "abort if fast-forward is not possible"12477msgstr "abandonner si l'avance rapide n'est pas possible"1247812479#: builtin/merge.c:252 builtin/pull.c:17212480msgid "verify that the named commit has a valid GPG signature"12481msgstr "vérifier que le commit nommé a une signature GPG valide"1248212483#: builtin/merge.c:253 builtin/notes.c:779 builtin/pull.c:17612484#: builtin/revert.c:11012485msgid "strategy"12486msgstr "stratégie"1248712488#: builtin/merge.c:254 builtin/pull.c:17712489msgid "merge strategy to use"12490msgstr "stratégie de fusion à utiliser"1249112492#: builtin/merge.c:255 builtin/pull.c:18012493msgid "option=value"12494msgstr "option=valeur"1249512496#: builtin/merge.c:256 builtin/pull.c:18112497msgid "option for selected merge strategy"12498msgstr "option pour la stratégie de fusion sélectionnée"1249912500#: builtin/merge.c:25812501msgid "merge commit message (for a non-fast-forward merge)"12502msgstr ""12503"message de validation de la fusion (pour une fusion sans avance rapide)"1250412505#: builtin/merge.c:26512506msgid "abort the current in-progress merge"12507msgstr "abandonner la fusion en cours"1250812509#: builtin/merge.c:26712510msgid "continue the current in-progress merge"12511msgstr "continuer la fusion en cours"1251212513#: builtin/merge.c:269 builtin/pull.c:18812514msgid "allow merging unrelated histories"12515msgstr "permettre la fusion d'historiques sans rapport"1251612517#: builtin/merge.c:27512518msgid "verify commit-msg hook"12519msgstr "vérifier le crochet commit-msg"1252012521#: builtin/merge.c:30012522msgid "could not run stash."12523msgstr "impossible de lancer le remisage."1252412525#: builtin/merge.c:30512526msgid "stash failed"12527msgstr "échec du remisage"1252812529#: builtin/merge.c:31012530#, c-format12531msgid "not a valid object: %s"12532msgstr "pas un objet valide : %s"1253312534#: builtin/merge.c:332 builtin/merge.c:34912535msgid "read-tree failed"12536msgstr "read-tree a échoué"1253712538#: builtin/merge.c:37912539msgid " (nothing to squash)"12540msgstr " (rien à compresser)"1254112542#: builtin/merge.c:39012543#, c-format12544msgid "Squash commit -- not updating HEAD\n"12545msgstr "Validation compressée -- HEAD non mise à jour\n"1254612547#: builtin/merge.c:44012548#, c-format12549msgid "No merge message -- not updating HEAD\n"12550msgstr "Pas de message de fusion -- pas de mise à jour de HEAD\n"1255112552#: builtin/merge.c:49112553#, c-format12554msgid "'%s' does not point to a commit"12555msgstr "'%s' ne pointe pas sur un commit"1255612557#: builtin/merge.c:57812558#, c-format12559msgid "Bad branch.%s.mergeoptions string: %s"12560msgstr "Mauvaise chaîne branch.%s.mergeoptions : %s"1256112562#: builtin/merge.c:69912563msgid "Not handling anything other than two heads merge."12564msgstr "Impossible de gérer autre chose que la fusion de deux têtes."1256512566#: builtin/merge.c:71312567#, c-format12568msgid "Unknown option for merge-recursive: -X%s"12569msgstr "Options inconnue pour merge-recursive : -X%s"1257012571#: builtin/merge.c:72812572#, c-format12573msgid "unable to write %s"12574msgstr "impossible d'écrire %s"1257512576#: builtin/merge.c:77912577#, c-format12578msgid "Could not read from '%s'"12579msgstr "Impossible de lire depuis '%s'"1258012581#: builtin/merge.c:78812582#, c-format12583msgid "Not committing merge; use 'git commit' to complete the merge.\n"12584msgstr ""12585"Pas de validation de la fusion ; utilisez 'git commit' pour terminer la "12586"fusion.\n"1258712588#: builtin/merge.c:79412589#, c-format12590msgid ""12591"Please enter a commit message to explain why this merge is necessary,\n"12592"especially if it merges an updated upstream into a topic branch.\n"12593"\n"12594"Lines starting with '%c' will be ignored, and an empty message aborts\n"12595"the commit.\n"12596msgstr ""12597"Veuillez entrer un message de validation pour expliquer en quoi cette fusion "12598"est\n"12599"nécessaire, surtout si cela fusionne une branche amont mise à jour dans une "12600"branche de sujet.\n"12601"\n"12602"Les lignes commençant par '%c' seront ignorées, et un message vide\n"12603"abandonne la validation.\n"1260412605#: builtin/merge.c:83012606msgid "Empty commit message."12607msgstr "Message de validation vide."1260812609#: builtin/merge.c:84912610#, c-format12611msgid "Wonderful.\n"12612msgstr "Merveilleux.\n"1261312614#: builtin/merge.c:90212615#, c-format12616msgid "Automatic merge failed; fix conflicts and then commit the result.\n"12617msgstr ""12618"La fusion automatique a échoué ; réglez les conflits et validez le "12619"résultat.\n"1262012621#: builtin/merge.c:94112622msgid "No current branch."12623msgstr "Pas de branche courante."1262412625#: builtin/merge.c:94312626msgid "No remote for the current branch."12627msgstr "Pas de branche distante pour la branche courante."1262812629#: builtin/merge.c:94512630msgid "No default upstream defined for the current branch."12631msgstr "Pas de branche amont par défaut définie pour la branche courante."1263212633#: builtin/merge.c:95012634#, c-format12635msgid "No remote-tracking branch for %s from %s"12636msgstr "Pas de branche de suivi pour %s depuis %s"1263712638#: builtin/merge.c:100712639#, c-format12640msgid "Bad value '%s' in environment '%s'"12641msgstr "Mauvaise valeur '%s' dans l'environnement '%s'"1264212643#: builtin/merge.c:111012644#, c-format12645msgid "not something we can merge in %s: %s"12646msgstr "pas possible de fusionner ceci dans %s : %s"1264712648#: builtin/merge.c:114412649msgid "not something we can merge"12650msgstr "pas possible de fusionner ceci"1265112652#: builtin/merge.c:124712653msgid "--abort expects no arguments"12654msgstr "--abort n'accepte pas d'argument"1265512656#: builtin/merge.c:125112657msgid "There is no merge to abort (MERGE_HEAD missing)."12658msgstr "Il n'y a pas de fusion à abandonner (MERGE_HEAD manquant)."1265912660#: builtin/merge.c:126312661msgid "--continue expects no arguments"12662msgstr "--continue ne supporte aucun argument"1266312664#: builtin/merge.c:126712665msgid "There is no merge in progress (MERGE_HEAD missing)."12666msgstr "Il n'y a pas de fusion en cours (MERGE_HEAD manquant)."1266712668#: builtin/merge.c:128312669msgid ""12670"You have not concluded your merge (MERGE_HEAD exists).\n"12671"Please, commit your changes before you merge."12672msgstr ""12673"Vous n'avez pas terminé votre fusion (MERGE_HEAD existe).\n"12674"Veuillez valider vos modifications avant de pouvoir fusionner."1267512676#: builtin/merge.c:129012677msgid ""12678"You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).\n"12679"Please, commit your changes before you merge."12680msgstr ""12681"Vous n'avez pas terminé votre picorage (CHERRY_PICK_HEAD existe).\n"12682"Veuillez valider vos modifications avant de pouvoir fusionner."1268312684#: builtin/merge.c:129312685msgid "You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists)."12686msgstr "Vous n'avez pas terminé votre picorage (CHERRY_PICK_HEAD existe)."1268712688#: builtin/merge.c:130212689msgid "You cannot combine --squash with --no-ff."12690msgstr "Vous ne pouvez pas combiner --squash avec --no-ff."1269112692#: builtin/merge.c:131012693msgid "No commit specified and merge.defaultToUpstream not set."12694msgstr ""12695"Pas de validation spécifiée et merge.defaultToUpstream n'est pas défini."1269612697#: builtin/merge.c:132712698msgid "Squash commit into empty head not supported yet"12699msgstr "La validation compressée vers une tête vide n'est pas encore supportée"1270012701#: builtin/merge.c:132912702msgid "Non-fast-forward commit does not make sense into an empty head"12703msgstr "Une validation sans avance rapide n'a pas de sens dans une tête vide"1270412705#: builtin/merge.c:133412706#, c-format12707msgid "%s - not something we can merge"12708msgstr "%s - pas possible de fusionner ceci"1270912710#: builtin/merge.c:133612711msgid "Can merge only exactly one commit into empty head"12712msgstr ""12713"Possible de fusionner exactement une seule validation dans une tête vide"1271412715#: builtin/merge.c:137012716#, c-format12717msgid "Commit %s has an untrusted GPG signature, allegedly by %s."12718msgstr "La validation %s a une signature GPG non fiable, prétendument par %s."1271912720#: builtin/merge.c:137312721#, c-format12722msgid "Commit %s has a bad GPG signature allegedly by %s."12723msgstr "La validation %s a une mauvaise signature GPG prétendument par %s."1272412725#: builtin/merge.c:137612726#, c-format12727msgid "Commit %s does not have a GPG signature."12728msgstr "La validation %s n'a pas de signature GPG."1272912730#: builtin/merge.c:137912731#, c-format12732msgid "Commit %s has a good GPG signature by %s\n"12733msgstr "La validation %s a une signature GPG correcte par %s\n"1273412735#: builtin/merge.c:143812736msgid "refusing to merge unrelated histories"12737msgstr "refus de fusionner des historiques sans relation"1273812739#: builtin/merge.c:144712740msgid "Already up to date."12741msgstr "Déjà à jour."1274212743#: builtin/merge.c:145712744#, c-format12745msgid "Updating %s..%s\n"12746msgstr "Mise à jour %s..%s\n"1274712748#: builtin/merge.c:149812749#, c-format12750msgid "Trying really trivial in-index merge...\n"12751msgstr "Essai de fusion vraiment triviale dans l'index...\n"1275212753#: builtin/merge.c:150512754#, c-format12755msgid "Nope.\n"12756msgstr "Non.\n"1275712758#: builtin/merge.c:153012759msgid "Already up to date. Yeeah!"12760msgstr "Déjà à jour. Ouais !"1276112762#: builtin/merge.c:153612763msgid "Not possible to fast-forward, aborting."12764msgstr "Pas possible d'avancer rapidement, abandon."1276512766#: builtin/merge.c:1559 builtin/merge.c:163812767#, c-format12768msgid "Rewinding the tree to pristine...\n"12769msgstr "Retour de l'arbre à l'original...\n"1277012771#: builtin/merge.c:156312772#, c-format12773msgid "Trying merge strategy %s...\n"12774msgstr "Essai de la stratégie de fusion %s...\n"1277512776#: builtin/merge.c:162912777#, c-format12778msgid "No merge strategy handled the merge.\n"12779msgstr "Aucune stratégie de fusion n'a pris en charge la fusion.\n"1278012781#: builtin/merge.c:163112782#, c-format12783msgid "Merge with strategy %s failed.\n"12784msgstr "La fusion avec la stratégie %s a échoué.\n"1278512786#: builtin/merge.c:164012787#, c-format12788msgid "Using the %s to prepare resolving by hand.\n"12789msgstr "Utilisation de %s pour préparer la résolution à la main.\n"1279012791#: builtin/merge.c:165212792#, c-format12793msgid "Automatic merge went well; stopped before committing as requested\n"12794msgstr ""12795"La fusion automatique a réussi ; stoppée avant la validation comme demandé\n"1279612797#: builtin/merge-base.c:3112798msgid "git merge-base [-a | --all] <commit> <commit>..."12799msgstr "git merge-base [-a | --all] <commit> <commit>..."1280012801#: builtin/merge-base.c:3212802msgid "git merge-base [-a | --all] --octopus <commit>..."12803msgstr "git merge-base [-a | --all] --octopus <commit>..."1280412805#: builtin/merge-base.c:3312806msgid "git merge-base --independent <commit>..."12807msgstr "git merge-base --independent <validation>..."1280812809#: builtin/merge-base.c:3412810msgid "git merge-base --is-ancestor <commit> <commit>"12811msgstr "git merge-base --is-ancestor <validation> <validation>"1281212813#: builtin/merge-base.c:3512814msgid "git merge-base --fork-point <ref> [<commit>]"12815msgstr "git merge-base --fork-point <référence> [<validation>]"1281612817#: builtin/merge-base.c:22112818msgid "output all common ancestors"12819msgstr "afficher tous les ancêtres communs"1282012821#: builtin/merge-base.c:22312822msgid "find ancestors for a single n-way merge"12823msgstr "trouver les ancêtres pour une fusion simple à n points"1282412825#: builtin/merge-base.c:22512826msgid "list revs not reachable from others"12827msgstr "afficher les révisions inaccessibles depuis les autres"1282812829#: builtin/merge-base.c:22712830msgid "is the first one ancestor of the other?"12831msgstr "est le premier ancêtre de l'autre ?"1283212833#: builtin/merge-base.c:22912834msgid "find where <commit> forked from reflog of <ref>"12835msgstr "trouver où <validation> a divergé du reflog de <référence>"1283612837#: builtin/merge-file.c:912838msgid ""12839"git merge-file [<options>] [-L <name1> [-L <orig> [-L <name2>]]] <file1> "12840"<orig-file> <file2>"12841msgstr ""12842"git merge-file [<options>] [-L <nom1> [-L <orig> [-L <nom2>]]] <fichier1> "12843"<fichier-orig> <fichier2>"1284412845#: builtin/merge-file.c:3312846msgid "send results to standard output"12847msgstr "envoyer les résultats sur la sortie standard"1284812849#: builtin/merge-file.c:3412850msgid "use a diff3 based merge"12851msgstr "utiliser une fusion basée sur diff3"1285212853#: builtin/merge-file.c:3512854msgid "for conflicts, use our version"12855msgstr "pour les conflits, utiliser notre version (our)"1285612857#: builtin/merge-file.c:3712858msgid "for conflicts, use their version"12859msgstr "pour les conflits, utiliser leur version (their)"1286012861#: builtin/merge-file.c:3912862msgid "for conflicts, use a union version"12863msgstr "pour les conflits, utiliser l'ensemble des versions"1286412865#: builtin/merge-file.c:4212866msgid "for conflicts, use this marker size"12867msgstr "pour les conflits, utiliser cette taille de marqueur"1286812869#: builtin/merge-file.c:4312870msgid "do not warn about conflicts"12871msgstr "ne pas avertir à propos des conflits"1287212873#: builtin/merge-file.c:4512874msgid "set labels for file1/orig-file/file2"12875msgstr "définir les labels pour fichier1/fichier-orig/fichier2"1287612877#: builtin/merge-recursive.c:4512878#, c-format12879msgid "unknown option %s"12880msgstr "option inconnue %s"1288112882#: builtin/merge-recursive.c:5112883#, c-format12884msgid "could not parse object '%s'"12885msgstr "Impossible d'analyser l'objet '%s'"1288612887#: builtin/merge-recursive.c:5512888#, c-format12889msgid "cannot handle more than %d base. Ignoring %s."12890msgid_plural "cannot handle more than %d bases. Ignoring %s."12891msgstr[0] "impossible de gérer plus de %d base. %s ignoré."12892msgstr[1] "impossible de gérer plus de %d bases. %s ignoré."1289312894#: builtin/merge-recursive.c:6312895msgid "not handling anything other than two heads merge."12896msgstr "impossible de gérer autre chose que la fusion de deux têtes."1289712898#: builtin/merge-recursive.c:69 builtin/merge-recursive.c:7112899#, c-format12900msgid "could not resolve ref '%s'"12901msgstr "impossible de résoudre la référence '%s'"1290212903#: builtin/merge-recursive.c:7712904#, c-format12905msgid "Merging %s with %s\n"12906msgstr "Fusion de %s avec %s\n"1290712908#: builtin/mktree.c:6612909msgid "git mktree [-z] [--missing] [--batch]"12910msgstr "git mktree [-z] [--missing] [--batch]"1291112912#: builtin/mktree.c:15412913msgid "input is NUL terminated"12914msgstr "l'entrée se termine par NUL"1291512916#: builtin/mktree.c:155 builtin/write-tree.c:2512917msgid "allow missing objects"12918msgstr "autoriser les objets manquants"1291912920#: builtin/mktree.c:15612921msgid "allow creation of more than one tree"12922msgstr "autoriser la création de plus d'un arbre"1292312924#: builtin/mv.c:1712925msgid "git mv [<options>] <source>... <destination>"12926msgstr "git mv [<options>] <source>... <destination>"1292712928#: builtin/mv.c:8212929#, c-format12930msgid "Directory %s is in index and no submodule?"12931msgstr "Le répertoire %s est dans l'index et pourtant aucun sous-module ?"1293212933#: builtin/mv.c:8412934msgid "Please stage your changes to .gitmodules or stash them to proceed"12935msgstr ""12936"Veuillez indexer vos modifications de .gitmodules ou les remiser pour "12937"continuer"1293812939#: builtin/mv.c:10212940#, c-format12941msgid "%.*s is in index"12942msgstr "%.*s est dans l'index"1294312944#: builtin/mv.c:12412945msgid "force move/rename even if target exists"12946msgstr "forcer le déplacement/renommage même si la cible existe"1294712948#: builtin/mv.c:12612949msgid "skip move/rename errors"12950msgstr "sauter les erreurs de déplacement/renommage"1295112952#: builtin/mv.c:16812953#, c-format12954msgid "destination '%s' is not a directory"12955msgstr "la destination '%s' n'est pas un répertoire"1295612957#: builtin/mv.c:17912958#, c-format12959msgid "Checking rename of '%s' to '%s'\n"12960msgstr "Vérification du renommage de '%s' en '%s'\n"1296112962#: builtin/mv.c:18312963msgid "bad source"12964msgstr "mauvaise source"1296512966#: builtin/mv.c:18612967msgid "can not move directory into itself"12968msgstr "impossible de déplacer un répertoire dans lui-même"1296912970#: builtin/mv.c:18912971msgid "cannot move directory over file"12972msgstr "impossible de déplacer un répertoire sur un fichier"1297312974#: builtin/mv.c:19812975msgid "source directory is empty"12976msgstr "le répertoire source est vide"1297712978#: builtin/mv.c:22312979msgid "not under version control"12980msgstr "pas sous le contrôle de version"1298112982#: builtin/mv.c:22612983msgid "destination exists"12984msgstr "la destination existe"1298512986#: builtin/mv.c:23412987#, c-format12988msgid "overwriting '%s'"12989msgstr "écrasement de '%s'"1299012991#: builtin/mv.c:23712992msgid "Cannot overwrite"12993msgstr "Impossible d'écraser"1299412995#: builtin/mv.c:24012996msgid "multiple sources for the same target"12997msgstr "multiples sources pour la même destination"1299812999#: builtin/mv.c:24213000msgid "destination directory does not exist"13001msgstr "le répertoire de destination n'existe pas"1300213003#: builtin/mv.c:24913004#, c-format13005msgid "%s, source=%s, destination=%s"13006msgstr "%s, source=%s, destination=%s"1300713008#: builtin/mv.c:27013009#, c-format13010msgid "Renaming %s to %s\n"13011msgstr "Renommage de %s en %s\n"1301213013#: builtin/mv.c:276 builtin/remote.c:716 builtin/repack.c:49413014#, c-format13015msgid "renaming '%s' failed"13016msgstr "le renommage de '%s' a échoué"1301713018#: builtin/name-rev.c:35513019msgid "git name-rev [<options>] <commit>..."13020msgstr "git name-rev [<options>] <validation>..."1302113022#: builtin/name-rev.c:35613023msgid "git name-rev [<options>] --all"13024msgstr "git name-rev [<options>] --all"1302513026#: builtin/name-rev.c:35713027msgid "git name-rev [<options>] --stdin"13028msgstr "git name-rev [<options>] --stdin"1302913030#: builtin/name-rev.c:41313031msgid "print only names (no SHA-1)"13032msgstr "afficher seulement les noms (pas de SHA-1)"1303313034#: builtin/name-rev.c:41413035msgid "only use tags to name the commits"13036msgstr "utiliser seulement les étiquettes pour nommer les validations"1303713038#: builtin/name-rev.c:41613039msgid "only use refs matching <pattern>"13040msgstr "utiliser seulement les références correspondant à <motif>"1304113042#: builtin/name-rev.c:41813043msgid "ignore refs matching <pattern>"13044msgstr "ignorer les références correspondant à <motif>"1304513046#: builtin/name-rev.c:42013047msgid "list all commits reachable from all refs"13048msgstr ""13049"afficher toutes les validations accessibles depuis toutes les références"1305013051#: builtin/name-rev.c:42113052msgid "read from stdin"13053msgstr "lire depuis l'entrée standard"1305413055#: builtin/name-rev.c:42213056msgid "allow to print `undefined` names (default)"13057msgstr "autoriser l'affichage des noms `non définis` (par défaut)"1305813059#: builtin/name-rev.c:42813060msgid "dereference tags in the input (internal use)"13061msgstr "déréférencer les étiquettes en entrée (usage interne)"1306213063#: builtin/notes.c:2813064msgid "git notes [--ref <notes-ref>] [list [<object>]]"13065msgstr "git notes [--ref <références-notes>] [list [<object>]]"1306613067#: builtin/notes.c:2913068msgid ""13069"git notes [--ref <notes-ref>] add [-f] [--allow-empty] [-m <msg> | -F <file> "13070"| (-c | -C) <object>] [<object>]"13071msgstr ""13072"git notes [--ref <références-notes>] add [-f] [--allow-empty] [-m <message> "13073"| -F <fichier> | (-c | -C) <objet>] [<objet>]"1307413075#: builtin/notes.c:3013076msgid "git notes [--ref <notes-ref>] copy [-f] <from-object> <to-object>"13077msgstr ""13078"git notes [--ref <références-notes>] copy [-f] <depuis-objet> <vers-objet>"1307913080#: builtin/notes.c:3113081msgid ""13082"git notes [--ref <notes-ref>] append [--allow-empty] [-m <msg> | -F <file> | "13083"(-c | -C) <object>] [<object>]"13084msgstr ""13085"git notes [--ref <références-notes>] append [--allow-empty] [-m <message> | -"13086"F <fichier> | (-c | -C) <objet>] [<objet>]"1308713088#: builtin/notes.c:3213089msgid "git notes [--ref <notes-ref>] edit [--allow-empty] [<object>]"13090msgstr "git notes [--ref <références-notes>] edit [--allow-empty] [<objet>]"1309113092#: builtin/notes.c:3313093msgid "git notes [--ref <notes-ref>] show [<object>]"13094msgstr "git notes [--ref <références-notes>] show [<objet>]"1309513096#: builtin/notes.c:3413097msgid ""13098"git notes [--ref <notes-ref>] merge [-v | -q] [-s <strategy>] <notes-ref>"13099msgstr ""13100"git notes [--ref <références-notes>] merge [-v | -q] [-s <stratégie> ] "13101"<références-notes>"1310213103#: builtin/notes.c:3513104msgid "git notes merge --commit [-v | -q]"13105msgstr "git notes merge --commit [-v | -q]"1310613107#: builtin/notes.c:3613108msgid "git notes merge --abort [-v | -q]"13109msgstr "git notes merge --abort [-v | -q]"1311013111#: builtin/notes.c:3713112msgid "git notes [--ref <notes-ref>] remove [<object>...]"13113msgstr "git notes [--ref <références-notes>] remove [<objet>...]"1311413115#: builtin/notes.c:3813116msgid "git notes [--ref <notes-ref>] prune [-n] [-v]"13117msgstr "git notes [--ref <référence-notes>] prune [-n] [-v]"1311813119#: builtin/notes.c:3913120msgid "git notes [--ref <notes-ref>] get-ref"13121msgstr "git notes [--ref <références-notes>] get-ref"1312213123#: builtin/notes.c:4413124msgid "git notes [list [<object>]]"13125msgstr "git notes [list [<objet>]]"1312613127#: builtin/notes.c:4913128msgid "git notes add [<options>] [<object>]"13129msgstr "git notes add [<options>] [<objet>]"1313013131#: builtin/notes.c:5413132msgid "git notes copy [<options>] <from-object> <to-object>"13133msgstr "git notes copy [<options>] <depuis-objet> <vers-objet>"1313413135#: builtin/notes.c:5513136msgid "git notes copy --stdin [<from-object> <to-object>]..."13137msgstr "git notes copy --stdin [<depuis-objet> <vers-objet>]..."1313813139#: builtin/notes.c:6013140msgid "git notes append [<options>] [<object>]"13141msgstr "git notes append [<options>] [<objet>]"1314213143#: builtin/notes.c:6513144msgid "git notes edit [<object>]"13145msgstr "git notes edit [<objet>]"1314613147#: builtin/notes.c:7013148msgid "git notes show [<object>]"13149msgstr "git notes show [<objet>]"1315013151#: builtin/notes.c:7513152msgid "git notes merge [<options>] <notes-ref>"13153msgstr "git notes merge [<options>] <références-notes>"1315413155#: builtin/notes.c:7613156msgid "git notes merge --commit [<options>]"13157msgstr "git notes merge --commit [<options>]"1315813159#: builtin/notes.c:7713160msgid "git notes merge --abort [<options>]"13161msgstr "git notes merge --abort [<options>]"1316213163#: builtin/notes.c:8213164msgid "git notes remove [<object>]"13165msgstr "git notes remove [<objet>]"1316613167#: builtin/notes.c:8713168msgid "git notes prune [<options>]"13169msgstr "git notes prune [<options>]"1317013171#: builtin/notes.c:9213172msgid "git notes get-ref"13173msgstr "git notes get-ref"1317413175#: builtin/notes.c:9713176msgid "Write/edit the notes for the following object:"13177msgstr "Écrire/éditer les notes pour l'objet suivant :"1317813179#: builtin/notes.c:15013180#, c-format13181msgid "unable to start 'show' for object '%s'"13182msgstr "impossible de démarrer 'show' pour l'objet '%s'"1318313184#: builtin/notes.c:15413185msgid "could not read 'show' output"13186msgstr "impossible de lire la sortie de 'show'"1318713188#: builtin/notes.c:16213189#, c-format13190msgid "failed to finish 'show' for object '%s'"13191msgstr "impossible de finir 'show' pour l'objet '%s'"1319213193#: builtin/notes.c:19713194msgid "please supply the note contents using either -m or -F option"13195msgstr "veuillez fournir le contenu de la note en utilisant l'option -m ou -F"1319613197#: builtin/notes.c:20613198msgid "unable to write note object"13199msgstr "impossible d'écrire l'objet note"1320013201#: builtin/notes.c:20813202#, c-format13203msgid "the note contents have been left in %s"13204msgstr "le contenu de la note a été laissé dans %s"1320513206#: builtin/notes.c:236 builtin/tag.c:50813207#, c-format13208msgid "cannot read '%s'"13209msgstr "impossible de lire '%s'"1321013211#: builtin/notes.c:238 builtin/tag.c:51113212#, c-format13213msgid "could not open or read '%s'"13214msgstr "impossible d'ouvrir ou lire '%s'"1321513216#: builtin/notes.c:257 builtin/notes.c:308 builtin/notes.c:31013217#: builtin/notes.c:378 builtin/notes.c:433 builtin/notes.c:51913218#: builtin/notes.c:524 builtin/notes.c:602 builtin/notes.c:66413219#, c-format13220msgid "failed to resolve '%s' as a valid ref."13221msgstr "impossible de résoudre '%s' comme une référence valide."1322213223#: builtin/notes.c:26013224#, c-format13225msgid "failed to read object '%s'."13226msgstr "impossible de lire l'objet '%s'."1322713228#: builtin/notes.c:26413229#, c-format13230msgid "cannot read note data from non-blob object '%s'."13231msgstr "impossible de lire les informations de note d'un objet non-blob '%s'."1323213233#: builtin/notes.c:30413234#, c-format13235msgid "malformed input line: '%s'."13236msgstr "ligne en entrée malformée : '%s'."1323713238#: builtin/notes.c:31913239#, c-format13240msgid "failed to copy notes from '%s' to '%s'"13241msgstr "impossible de copier les notes de '%s' vers '%s'"1324213243#. TRANSLATORS: the first %s will be replaced by a git13244#. notes command: 'add', 'merge', 'remove', etc.13245#.13246#: builtin/notes.c:35113247#, c-format13248msgid "refusing to %s notes in %s (outside of refs/notes/)"13249msgstr "Refus de faire %s sur des notes dans %s (hors de refs/notes/)"1325013251#: builtin/notes.c:371 builtin/notes.c:426 builtin/notes.c:50213252#: builtin/notes.c:514 builtin/notes.c:590 builtin/notes.c:65713253#: builtin/notes.c:807 builtin/notes.c:954 builtin/notes.c:97513254msgid "too many parameters"13255msgstr "trop de paramètres"1325613257#: builtin/notes.c:384 builtin/notes.c:67013258#, c-format13259msgid "no note found for object %s."13260msgstr "pas de note trouvée pour l'objet %s."1326113262#: builtin/notes.c:405 builtin/notes.c:56813263msgid "note contents as a string"13264msgstr "contenu de la note sous forme de chaîne"1326513266#: builtin/notes.c:408 builtin/notes.c:57113267msgid "note contents in a file"13268msgstr "contenu de la note dans un fichier"1326913270#: builtin/notes.c:411 builtin/notes.c:57413271msgid "reuse and edit specified note object"13272msgstr "réutiliser et éditer l'objet de note spécifié"1327313274#: builtin/notes.c:414 builtin/notes.c:57713275msgid "reuse specified note object"13276msgstr "réutiliser l'objet de note spécifié"1327713278#: builtin/notes.c:417 builtin/notes.c:58013279msgid "allow storing empty note"13280msgstr "permettre de stocker une note vide"1328113282#: builtin/notes.c:418 builtin/notes.c:48913283msgid "replace existing notes"13284msgstr "remplacer les notes existantes"1328513286#: builtin/notes.c:44313287#, c-format13288msgid ""13289"Cannot add notes. Found existing notes for object %s. Use '-f' to overwrite "13290"existing notes"13291msgstr ""13292"Impossible d'ajouter des notes. Des notes ont été trouvées pour l'objet %s. "13293"Utilisez '-f' pour écraser les notes existantes"1329413295#: builtin/notes.c:458 builtin/notes.c:53713296#, c-format13297msgid "Overwriting existing notes for object %s\n"13298msgstr "Écrasement des notes existantes pour l'objet %s\n"1329913300#: builtin/notes.c:469 builtin/notes.c:629 builtin/notes.c:89413301#, c-format13302msgid "Removing note for object %s\n"13303msgstr "Suppression de la note pour l'objet %s\n"1330413305#: builtin/notes.c:49013306msgid "read objects from stdin"13307msgstr "lire les objets depuis l'entrée standard"1330813309#: builtin/notes.c:49213310msgid "load rewriting config for <command> (implies --stdin)"13311msgstr ""13312"charger la configuration de réécriture pour <commande> (implique --stdin)"1331313314#: builtin/notes.c:51013315msgid "too few parameters"13316msgstr "pas assez de paramètres"1331713318#: builtin/notes.c:53113319#, c-format13320msgid ""13321"Cannot copy notes. Found existing notes for object %s. Use '-f' to overwrite "13322"existing notes"13323msgstr ""13324"Impossible de copier des notes. Des notes ont été trouvées pour l'objet %s. "13325"Utilisez '-f' pour écraser les notes existantes"1332613327#: builtin/notes.c:54313328#, c-format13329msgid "missing notes on source object %s. Cannot copy."13330msgstr "notes manquantes sur l'objet source %s. Impossible de copier."1333113332#: builtin/notes.c:59513333#, c-format13334msgid ""13335"The -m/-F/-c/-C options have been deprecated for the 'edit' subcommand.\n"13336"Please use 'git notes add -f -m/-F/-c/-C' instead.\n"13337msgstr ""13338"Les options -m/-F/-c/-C sont obsolètes pour la sous-commande 'edit'.\n"13339"Veuillez utiliser 'git notes add -f -m/-F/-c/-C' à la place.\n"1334013341#: builtin/notes.c:69013342msgid "failed to delete ref NOTES_MERGE_PARTIAL"13343msgstr "échec de la suppression de la référence NOTES_MERGE_PARTIAL"1334413345#: builtin/notes.c:69213346msgid "failed to delete ref NOTES_MERGE_REF"13347msgstr "échec de la suppression de la référence NOTES_MERGE_REF"1334813349#: builtin/notes.c:69413350msgid "failed to remove 'git notes merge' worktree"13351msgstr "échec de la suppression de la copie de travail 'git notes merge'"1335213353#: builtin/notes.c:71413354msgid "failed to read ref NOTES_MERGE_PARTIAL"13355msgstr "échec de la lecture de la référence NOTES_MERGE_PARTIAL"1335613357#: builtin/notes.c:71613358msgid "could not find commit from NOTES_MERGE_PARTIAL."13359msgstr "impossible de trouver le commit de NOTES_MERGE_PARTIAL."1336013361#: builtin/notes.c:71813362msgid "could not parse commit from NOTES_MERGE_PARTIAL."13363msgstr "impossible d'analyser le commit de NOTES_MERGE_PARTIAL."1336413365#: builtin/notes.c:73113366msgid "failed to resolve NOTES_MERGE_REF"13367msgstr "échec de la résolution de NOTES_MERGE_REF"1336813369#: builtin/notes.c:73413370msgid "failed to finalize notes merge"13371msgstr "impossible de finaliser la fusion de notes"1337213373#: builtin/notes.c:76013374#, c-format13375msgid "unknown notes merge strategy %s"13376msgstr "stratégie de fusion de notes inconnue %s"1337713378#: builtin/notes.c:77613379msgid "General options"13380msgstr "Options générales"1338113382#: builtin/notes.c:77813383msgid "Merge options"13384msgstr "Options de fusion"1338513386#: builtin/notes.c:78013387msgid ""13388"resolve notes conflicts using the given strategy (manual/ours/theirs/union/"13389"cat_sort_uniq)"13390msgstr ""13391"résoudre les conflits de notes en utilisant la stratégie donnée (manual/ours/"13392"theirs/union/cat_sort_uniq)"1339313394#: builtin/notes.c:78213395msgid "Committing unmerged notes"13396msgstr "Validation des notes non fusionnées"1339713398#: builtin/notes.c:78413399msgid "finalize notes merge by committing unmerged notes"13400msgstr "finaliser la fusion de notes en validant les notes non fusionnées"1340113402#: builtin/notes.c:78613403msgid "Aborting notes merge resolution"13404msgstr "Abandon de la résolution de fusion des notes"1340513406#: builtin/notes.c:78813407msgid "abort notes merge"13408msgstr "abandonner la fusion de notes"1340913410#: builtin/notes.c:79913411msgid "cannot mix --commit, --abort or -s/--strategy"13412msgstr "--commit, --abort et -s/--strategy sont mutuellement incompatibles"1341313414#: builtin/notes.c:80413415msgid "must specify a notes ref to merge"13416msgstr "vous devez spécifier une référence de notes à fusionner"1341713418#: builtin/notes.c:82813419#, c-format13420msgid "unknown -s/--strategy: %s"13421msgstr "-s/--strategy inconnu : %s"1342213423#: builtin/notes.c:86513424#, c-format13425msgid "a notes merge into %s is already in-progress at %s"13426msgstr "une fusion de notes dans %s est déjà en cours avec %s"1342713428#: builtin/notes.c:86813429#, c-format13430msgid "failed to store link to current notes ref (%s)"13431msgstr ""13432"impossible de stocker le lien vers la référence actuelle aux notes (%s)"1343313434#: builtin/notes.c:87013435#, c-format13436msgid ""13437"Automatic notes merge failed. Fix conflicts in %s and commit the result with "13438"'git notes merge --commit', or abort the merge with 'git notes merge --"13439"abort'.\n"13440msgstr ""13441"La fusion automatique des notes a échoué. Corrigez les conflits dans %s et "13442"valide le résultat avec 'git notes merges --commit', ou abandonnez la fusion "13443"avec 'git notes merge --abort'.\n"1344413445#: builtin/notes.c:89213446#, c-format13447msgid "Object %s has no note\n"13448msgstr "L'objet %s n'a pas de note\n"1344913450#: builtin/notes.c:90413451msgid "attempt to remove non-existent note is not an error"13452msgstr ""13453"la tentative de suppression d'une note non existante n'est pas une erreur"1345413455#: builtin/notes.c:90713456msgid "read object names from the standard input"13457msgstr "lire les noms d'objet depuis l'entrée standard"1345813459#: builtin/notes.c:945 builtin/prune.c:108 builtin/worktree.c:15213460msgid "do not remove, show only"13461msgstr "ne pas supprimer, afficher seulement"1346213463#: builtin/notes.c:94613464msgid "report pruned notes"13465msgstr "afficher les notes éliminées"1346613467#: builtin/notes.c:98813468msgid "notes-ref"13469msgstr "références-notes"1347013471#: builtin/notes.c:98913472msgid "use notes from <notes-ref>"13473msgstr "utiliser les notes depuis <références-notes>"1347413475#: builtin/notes.c:102413476#, c-format13477msgid "unknown subcommand: %s"13478msgstr "sous-commande inconnue : %s"1347913480#: builtin/pack-objects.c:4813481msgid ""13482"git pack-objects --stdout [<options>...] [< <ref-list> | < <object-list>]"13483msgstr ""13484"git pack-objects --stdout [options...] [< <liste-références> | < <liste-"13485"objets>]"1348613487#: builtin/pack-objects.c:4913488msgid ""13489"git pack-objects [<options>...] <base-name> [< <ref-list> | < <object-list>]"13490msgstr ""13491"git pack-objects [options...] base-name [< <liste-références> | < <liste-"13492"objets>]"1349313494#: builtin/pack-objects.c:41413495#, c-format13496msgid "bad packed object CRC for %s"13497msgstr "mauvais CRC d'objet empaqueté pour %s"1349813499#: builtin/pack-objects.c:42513500#, c-format13501msgid "corrupt packed object for %s"13502msgstr "objet empaqueté corrompu pour %s"1350313504#: builtin/pack-objects.c:55613505#, c-format13506msgid "recursive delta detected for object %s"13507msgstr "delta récursif détecté pour l'objet %s"1350813509#: builtin/pack-objects.c:75613510#, c-format13511msgid "ordered %u objects, expected %<PRIu32>"13512msgstr "%u objets commandés, %<PRIu32> attendus"1351313514#: builtin/pack-objects.c:76913515#, c-format13516msgid "packfile is invalid: %s"13517msgstr "le fichier packet est invalide : %s"1351813519#: builtin/pack-objects.c:77313520#, c-format13521msgid "unable to open packfile for reuse: %s"13522msgstr "ouverture du fichier paquet pour réutilisation impossible : %s"1352313524#: builtin/pack-objects.c:77713525msgid "unable to seek in reused packfile"13526msgstr "impossible de rechercher (seek) dans le fichier paquet réutilisé"1352713528#: builtin/pack-objects.c:78813529msgid "unable to read from reused packfile"13530msgstr "lecture du fichier de paquet réutilisé impossible"1353113532#: builtin/pack-objects.c:81613533msgid "disabling bitmap writing, packs are split due to pack.packSizeLimit"13534msgstr ""13535"désactivation de l'écriture en bitmap, les fichiers paquets sont scindés à "13536"cause de pack.packSizeLimit"1353713538#: builtin/pack-objects.c:82913539msgid "Writing objects"13540msgstr "Écriture des objets"1354113542#: builtin/pack-objects.c:891 builtin/update-index.c:8813543#, c-format13544msgid "failed to stat %s"13545msgstr "échec du stat de %s"1354613547#: builtin/pack-objects.c:94413548#, c-format13549msgid "wrote %<PRIu32> objects while expecting %<PRIu32>"13550msgstr "%<PRIu32> objets écrits, %<PRIu32> attendus"1355113552#: builtin/pack-objects.c:111213553msgid "disabling bitmap writing, as some objects are not being packed"13554msgstr ""13555"désactivation de l'écriture en bitmap car certains objets ne sont pas "13556"compressés"1355713558#: builtin/pack-objects.c:148913559#, c-format13560msgid "delta base offset overflow in pack for %s"13561msgstr "dépassement de décalage de base de delta pour %s"1356213563#: builtin/pack-objects.c:149813564#, c-format13565msgid "delta base offset out of bound for %s"13566msgstr "décalage de base de delta est hors limite pour %s"1356713568#: builtin/pack-objects.c:177113569msgid "Counting objects"13570msgstr "Décompte des objets"1357113572#: builtin/pack-objects.c:191313573#, c-format13574msgid "unable to get size of %s"13575msgstr "impossible de récupérer la taille de %s"1357613577#: builtin/pack-objects.c:192813578#, c-format13579msgid "unable to parse object header of %s"13580msgstr "impossible d'analyser l'entête d'objet de %s"1358113582#: builtin/pack-objects.c:1995 builtin/pack-objects.c:201113583#: builtin/pack-objects.c:202113584#, c-format13585msgid "object %s cannot be read"13586msgstr "l'objet %s ne peut être lu"1358713588#: builtin/pack-objects.c:1998 builtin/pack-objects.c:202513589#, c-format13590msgid "object %s inconsistent object length (%lu vs %lu)"13591msgstr "longueur inconsistante de l'objet %s (%lu contre %lu)"1359213593#: builtin/pack-objects.c:203513594msgid "suboptimal pack - out of memory"13595msgstr "paquet sous-optimal - mémoire insuffisante"1359613597#: builtin/pack-objects.c:236613598#, c-format13599msgid "Delta compression using up to %d threads"13600msgstr "Compression par delta en utilisant jusqu'à %d fils d'exécution"1360113602#: builtin/pack-objects.c:250213603#, c-format13604msgid "unable to pack objects reachable from tag %s"13605msgstr "impossible d'empaqueter les objets joignables depuis l'étiquette %s"1360613607#: builtin/pack-objects.c:258613608msgid "Compressing objects"13609msgstr "Compression des objets"1361013611#: builtin/pack-objects.c:259213612msgid "inconsistency with delta count"13613msgstr "inconsistance dans le compte de delta"1361413615#: builtin/pack-objects.c:267113616#, c-format13617msgid ""13618"expected edge object ID, got garbage:\n"13619" %s"13620msgstr ""13621"ID d'objet de bord attendu, reçu des données illisibles :\n"13622"%s"1362313624#: builtin/pack-objects.c:267713625#, c-format13626msgid ""13627"expected object ID, got garbage:\n"13628" %s"13629msgstr ""13630"ID d'objet attendu, reçu des données illisibles :\n"13631"%s"1363213633#: builtin/pack-objects.c:275713634msgid "invalid value for --missing"13635msgstr "valeur invalide pour --missing"1363613637#: builtin/pack-objects.c:2816 builtin/pack-objects.c:292413638msgid "cannot open pack index"13639msgstr "impossible d'ouvrir l'index de paquet"1364013641#: builtin/pack-objects.c:284713642#, c-format13643msgid "loose object at %s could not be examined"13644msgstr "l'objet libre à %s n'a pas pu être examiné"1364513646#: builtin/pack-objects.c:293213647msgid "unable to force loose object"13648msgstr "impossible de forcer l'objet libre"1364913650#: builtin/pack-objects.c:301913651#, c-format13652msgid "not a rev '%s'"13653msgstr "'%s' n'est pas une révision"1365413655#: builtin/pack-objects.c:302213656#, c-format13657msgid "bad revision '%s'"13658msgstr "mauvaise révision '%s'"1365913660#: builtin/pack-objects.c:304213661msgid "unable to add recent objects"13662msgstr "impossible d'ajouter les objets récents"1366313664#: builtin/pack-objects.c:309213665#, c-format13666msgid "unsupported index version %s"13667msgstr "version d'index non supportée %s"1366813669#: builtin/pack-objects.c:309613670#, c-format13671msgid "bad index version '%s'"13672msgstr "mauvaise version d'index '%s'"1367313674#: builtin/pack-objects.c:312713675msgid "do not show progress meter"13676msgstr "ne pas afficher la barre de progression"1367713678#: builtin/pack-objects.c:312913679msgid "show progress meter"13680msgstr "afficher la barre de progression"1368113682#: builtin/pack-objects.c:313113683msgid "show progress meter during object writing phase"13684msgstr "afficher la barre de progression durant la phase d'écrite des objets"1368513686#: builtin/pack-objects.c:313413687msgid "similar to --all-progress when progress meter is shown"13688msgstr "similaire à --all-progress quand la barre de progression est affichée"1368913690#: builtin/pack-objects.c:313513691msgid "<version>[,<offset>]"13692msgstr "<version>[,<décalage>]"1369313694#: builtin/pack-objects.c:313613695msgid "write the pack index file in the specified idx format version"13696msgstr ""13697"écrire le fichier d'index du paquet dans le format d'index de version "13698"spécifié"1369913700#: builtin/pack-objects.c:313913701msgid "maximum size of each output pack file"13702msgstr "taille maximum de chaque fichier paquet en sortie"1370313704#: builtin/pack-objects.c:314113705msgid "ignore borrowed objects from alternate object store"13706msgstr "ignorer les objets empruntés à un autre magasin d'objets"1370713708#: builtin/pack-objects.c:314313709msgid "ignore packed objects"13710msgstr "ignorer les objets empaquetés"1371113712#: builtin/pack-objects.c:314513713msgid "limit pack window by objects"13714msgstr "limiter la fenêtre d'empaquetage par objets"1371513716#: builtin/pack-objects.c:314713717msgid "limit pack window by memory in addition to object limit"13718msgstr ""13719"limiter la fenêtre d'empaquetage par mémoire en plus de la limite d'objets"1372013721#: builtin/pack-objects.c:314913722msgid "maximum length of delta chain allowed in the resulting pack"13723msgstr ""13724"longueur maximum de la chaîne de delta autorisée dans le paquet résultant"1372513726#: builtin/pack-objects.c:315113727msgid "reuse existing deltas"13728msgstr "réutiliser les deltas existants"1372913730#: builtin/pack-objects.c:315313731msgid "reuse existing objects"13732msgstr "réutiliser les objets existants"1373313734#: builtin/pack-objects.c:315513735msgid "use OFS_DELTA objects"13736msgstr "utiliser les objets OFS_DELTA"1373713738#: builtin/pack-objects.c:315713739msgid "use threads when searching for best delta matches"13740msgstr ""13741"utiliser des fils lors de la recherche pour une meilleurs correspondance des "13742"deltas"1374313744#: builtin/pack-objects.c:315913745msgid "do not create an empty pack output"13746msgstr "ne pas créer un paquet vide"1374713748#: builtin/pack-objects.c:316113749msgid "read revision arguments from standard input"13750msgstr "lire les paramètres de révision depuis l'entrée standard"1375113752#: builtin/pack-objects.c:316313753msgid "limit the objects to those that are not yet packed"13754msgstr "limiter les objets à ceux qui ne sont pas encore empaquetés"1375513756#: builtin/pack-objects.c:316613757msgid "include objects reachable from any reference"13758msgstr "inclure les objets accessibles depuis toute référence"1375913760#: builtin/pack-objects.c:316913761msgid "include objects referred by reflog entries"13762msgstr "inclure les objets référencés par les éléments de reflog"1376313764#: builtin/pack-objects.c:317213765msgid "include objects referred to by the index"13766msgstr "inclure les objets référencés par l'index"1376713768#: builtin/pack-objects.c:317513769msgid "output pack to stdout"13770msgstr "afficher l'empaquetage sur la sortie standard"1377113772#: builtin/pack-objects.c:317713773msgid "include tag objects that refer to objects to be packed"13774msgstr "inclure les objets d'étiquettes qui réfèrent à des objets à empaqueter"1377513776#: builtin/pack-objects.c:317913777msgid "keep unreachable objects"13778msgstr "garder les objets inaccessibles"1377913780#: builtin/pack-objects.c:318113781msgid "pack loose unreachable objects"13782msgstr "empaqueter les objets inaccessibles détachés"1378313784#: builtin/pack-objects.c:318313785msgid "unpack unreachable objects newer than <time>"13786msgstr "dépaqueter les objets inaccessibles plus récents que <heure>"1378713788#: builtin/pack-objects.c:318613789msgid "create thin packs"13790msgstr "créer des paquets légers"1379113792#: builtin/pack-objects.c:318813793msgid "create packs suitable for shallow fetches"13794msgstr "créer des paquets permettant des récupérations superficielles"1379513796#: builtin/pack-objects.c:319013797msgid "ignore packs that have companion .keep file"13798msgstr "ignorer les paquets qui ont un fichier .keep"1379913800#: builtin/pack-objects.c:319213801msgid "ignore this pack"13802msgstr "ignorer ce paquet"1380313804#: builtin/pack-objects.c:319413805msgid "pack compression level"13806msgstr "niveau de compression du paquet"1380713808#: builtin/pack-objects.c:319613809msgid "do not hide commits by grafts"13810msgstr "ne pas cacher les validations par greffes"1381113812#: builtin/pack-objects.c:319813813msgid "use a bitmap index if available to speed up counting objects"13814msgstr ""13815"utiliser un index en bitmap si disponible pour accélerer le décompte des "13816"objets"1381713818#: builtin/pack-objects.c:320013819msgid "write a bitmap index together with the pack index"13820msgstr "écrire un index en bitmap associé à l'index de paquet"1382113822#: builtin/pack-objects.c:320313823msgid "handling for missing objects"13824msgstr "gestion des objets manquants"1382513826#: builtin/pack-objects.c:320613827msgid "do not pack objects in promisor packfiles"13828msgstr "ne pas empaqueter les objets dans les fichiers paquets prometteurs"1382913830#: builtin/pack-objects.c:323013831#, c-format13832msgid "delta chain depth %d is too deep, forcing %d"13833msgstr "la profondeur %d de chaîne de delta est trop grande, forcée à %d"1383413835#: builtin/pack-objects.c:323513836#, c-format13837msgid "pack.deltaCacheLimit is too high, forcing %d"13838msgstr "pack.deltaCacheLimit est trop grand, forcé à %d"1383913840#: builtin/pack-objects.c:329113841msgid "--max-pack-size cannot be used to build a pack for transfer"13842msgstr ""13843"--max-pack-size ne peut pas être utilisé pour construire un paquet à "13844"transférer"1384513846#: builtin/pack-objects.c:329313847msgid "minimum pack size limit is 1 MiB"13848msgstr "la taille limite minimale d'un paquet est 1 MiB"1384913850#: builtin/pack-objects.c:329813851msgid "--thin cannot be used to build an indexable pack"13852msgstr "--thin ne peut pas être utilisé pour construire un paquet indexable"1385313854#: builtin/pack-objects.c:330113855msgid "--keep-unreachable and --unpack-unreachable are incompatible"13856msgstr "--keep-unreachable et --unpack-unreachable sont incompatibles"1385713858#: builtin/pack-objects.c:330713859msgid "cannot use --filter without --stdout"13860msgstr "impossible d'utiliser --filter sans --stdout"1386113862#: builtin/pack-objects.c:336313863msgid "Enumerating objects"13864msgstr "Énumération des objets"1386513866#: builtin/pack-objects.c:338213867#, c-format13868msgid "Total %<PRIu32> (delta %<PRIu32>), reused %<PRIu32> (delta %<PRIu32>)"13869msgstr ""13870"Total %<PRIu32> (delta %<PRIu32>), réutilisés %<PRIu32> (delta %<PRIu32>)"1387113872#: builtin/pack-refs.c:713873msgid "git pack-refs [<options>]"13874msgstr "git pack-refs [<options>]"1387513876#: builtin/pack-refs.c:1513877msgid "pack everything"13878msgstr "empaqueter tout"1387913880#: builtin/pack-refs.c:1613881msgid "prune loose refs (default)"13882msgstr "éliminer les références perdues (défaut)"1388313884#: builtin/prune-packed.c:913885msgid "git prune-packed [-n | --dry-run] [-q | --quiet]"13886msgstr "git prune-packed [-n | --dry-run] [-q | --quiet]"1388713888#: builtin/prune-packed.c:4213889msgid "Removing duplicate objects"13890msgstr "Suppression des objets dupliqués"1389113892#: builtin/prune.c:1213893msgid "git prune [-n] [-v] [--progress] [--expire <time>] [--] [<head>...]"13894msgstr "git prune [-n] [-v] [--progress] [--expire <heure>] [--] [<head>…]"1389513896#: builtin/prune.c:10913897msgid "report pruned objects"13898msgstr "afficher les objets éliminés"1389913900#: builtin/prune.c:11213901msgid "expire objects older than <time>"13902msgstr "faire expirer les objets plus vieux que <heure>"1390313904#: builtin/prune.c:11413905msgid "limit traversal to objects outside promisor packfiles"13906msgstr "limiter la traversée aux objets hors des fichiers paquets prometteurs"1390713908#: builtin/prune.c:12813909msgid "cannot prune in a precious-objects repo"13910msgstr "impossible de nettoyer dans un dépôt d'objets précieux"1391113912#: builtin/pull.c:59 builtin/pull.c:6113913#, c-format13914msgid "Invalid value for %s: %s"13915msgstr "Valeur invalide pour %s : %s"1391613917#: builtin/pull.c:8113918msgid "git pull [<options>] [<repository> [<refspec>...]]"13919msgstr "git pull [<options>] [<dépôt> [<spécification-de-référence>...]]"1392013921#: builtin/pull.c:13213922msgid "control for recursive fetching of submodules"13923msgstr "contrôler la récupération récursive dans les sous-modules"1392413925#: builtin/pull.c:13613926msgid "Options related to merging"13927msgstr "Options relatives à la fusion"1392813929#: builtin/pull.c:13913930msgid "incorporate changes by rebasing rather than merging"13931msgstr "incorporer les modifications en rebasant plutôt qu'en fusionnant"1393213933#: builtin/pull.c:166 builtin/rebase--helper.c:23 builtin/revert.c:12213934msgid "allow fast-forward"13935msgstr "autoriser l'avance rapide"1393613937#: builtin/pull.c:17513938msgid "automatically stash/stash pop before and after rebase"13939msgstr "remiser avant et réappliquer après le rebasage automatiquement"1394013941#: builtin/pull.c:19113942msgid "Options related to fetching"13943msgstr "Options relatives au rapatriement"1394413945#: builtin/pull.c:20913946msgid "number of submodules pulled in parallel"13947msgstr "nombre de sous-modules tirés en parallèle"1394813949#: builtin/pull.c:30413950#, c-format13951msgid "Invalid value for pull.ff: %s"13952msgstr "Valeur invalide pour pull.ff : %s"1395313954#: builtin/pull.c:42013955msgid ""13956"There is no candidate for rebasing against among the refs that you just "13957"fetched."13958msgstr ""13959"Il n'y a pas de candidate sur laquelle rebaser parmi les références que vous "13960"venez de récupérer."1396113962#: builtin/pull.c:42213963msgid ""13964"There are no candidates for merging among the refs that you just fetched."13965msgstr ""13966"Il n'y a pas de candidate avec laquelle fusionner parmi les références que "13967"vous venez de récupérer."1396813969#: builtin/pull.c:42313970msgid ""13971"Generally this means that you provided a wildcard refspec which had no\n"13972"matches on the remote end."13973msgstr ""13974"Généralement, cela signifie que vous avez indiqué un spécificateur\n"13975"de référence joker qui n'a pas eu de correspondance sur le serveur distant."1397613977#: builtin/pull.c:42613978#, c-format13979msgid ""13980"You asked to pull from the remote '%s', but did not specify\n"13981"a branch. Because this is not the default configured remote\n"13982"for your current branch, you must specify a branch on the command line."13983msgstr ""13984"Vous avez demandé de tirer depuis le dépôt distant '%s', mais sans indiquer\n"13985"la branche. Comme ce n'est pas le dépôt distant par défaut dans la "13986"configuration\n"13987"pour la branche actuelle, vous devez spécifier la branche avec la commande."1398813989#: builtin/pull.c:431 git-parse-remote.sh:7313990msgid "You are not currently on a branch."13991msgstr "Vous n'êtes actuellement sur aucune branche."1399213993#: builtin/pull.c:433 builtin/pull.c:448 git-parse-remote.sh:7913994msgid "Please specify which branch you want to rebase against."13995msgstr "Veuillez spécifier sur quelle branche vous souhaiter rebaser."1399613997#: builtin/pull.c:435 builtin/pull.c:450 git-parse-remote.sh:8213998msgid "Please specify which branch you want to merge with."13999msgstr "Veuillez spécifier une branche avec laquelle fusionner."1400014001#: builtin/pull.c:436 builtin/pull.c:45114002msgid "See git-pull(1) for details."14003msgstr "Référez-vous à git-pull(1) pour de plus amples détails."1400414005#: builtin/pull.c:438 builtin/pull.c:444 builtin/pull.c:45314006#: git-parse-remote.sh:6414007msgid "<remote>"14008msgstr "<distant>"1400914010#: builtin/pull.c:438 builtin/pull.c:453 builtin/pull.c:458 git-rebase.sh:57614011#: git-parse-remote.sh:6514012msgid "<branch>"14013msgstr "<branche>"1401414015#: builtin/pull.c:446 git-parse-remote.sh:7514016msgid "There is no tracking information for the current branch."14017msgstr "Pas d'information de suivi distant pour la branche actuelle."1401814019#: builtin/pull.c:455 git-parse-remote.sh:9514020msgid ""14021"If you wish to set tracking information for this branch you can do so with:"14022msgstr ""14023"Si vous souhaitez indiquer l'information de suivi distant pour cette "14024"branche, vous pouvez le faire avec :"1402514026#: builtin/pull.c:46014027#, c-format14028msgid ""14029"Your configuration specifies to merge with the ref '%s'\n"14030"from the remote, but no such ref was fetched."14031msgstr ""14032"Votre information de configuration indique de fusionner avec la référence "14033"'%s'\n"14034"du serveur distant, mais cette référence n'a pas été récupérée."1403514036#: builtin/pull.c:82914037msgid "ignoring --verify-signatures for rebase"14038msgstr "--verify-signatures est ignoré pour un rebasage"1403914040#: builtin/pull.c:87714041msgid "--[no-]autostash option is only valid with --rebase."14042msgstr "l'option --[no-]autostash n'est valide qu'avec --rebase."1404314044#: builtin/pull.c:88514045msgid "Updating an unborn branch with changes added to the index."14046msgstr ""14047"Mise à jour d'une branche non encore créée avec les changements ajoutés dans "14048"l'index."1404914050#: builtin/pull.c:88814051msgid "pull with rebase"14052msgstr "tirer avec un rebasage"1405314054#: builtin/pull.c:88914055msgid "please commit or stash them."14056msgstr "veuillez les valider ou les remiser."1405714058#: builtin/pull.c:91414059#, c-format14060msgid ""14061"fetch updated the current branch head.\n"14062"fast-forwarding your working tree from\n"14063"commit %s."14064msgstr ""14065"la récupération a mis à jour la tête de la branche actuelle.\n"14066"avance rapide de votre copie de travail\n"14067"depuis le commit %s."1406814069#: builtin/pull.c:91914070#, c-format14071msgid ""14072"Cannot fast-forward your working tree.\n"14073"After making sure that you saved anything precious from\n"14074"$ git diff %s\n"14075"output, run\n"14076"$ git reset --hard\n"14077"to recover."14078msgstr ""14079"Avance rapide de votre arbre de travail impossible.\n"14080"Après avoir vérifié que toute modification précieuse a été sauvegardée avec\n"14081"$ git diff %s\n"14082"lancez\n"14083"$ git reset --hard\n"14084"pour régénérer."1408514086#: builtin/pull.c:93414087msgid "Cannot merge multiple branches into empty head."14088msgstr "Impossible de fusionner de multiples branches sur une tête vide."1408914090#: builtin/pull.c:93814091msgid "Cannot rebase onto multiple branches."14092msgstr "Impossible de rebaser sur de multiples branches."1409314094#: builtin/pull.c:94514095msgid "cannot rebase with locally recorded submodule modifications"14096msgstr ""14097"impossible de rebaser avec des modifications de sous-modules enregistrées "14098"localement"1409914100#: builtin/push.c:1914101msgid "git push [<options>] [<repository> [<refspec>...]]"14102msgstr "git push [<options>] [<dépôt> [<spécification-de-référence>...]]"1410314104#: builtin/push.c:11114105msgid "tag shorthand without <tag>"14106msgstr "raccourci d'étiquette sans <étiquette>"1410714108#: builtin/push.c:12114109msgid "--delete only accepts plain target ref names"14110msgstr "--delete accepte seulement des noms entiers de références cibles"1411114112#: builtin/push.c:16514113msgid ""14114"\n"14115"To choose either option permanently, see push.default in 'git help config'."14116msgstr ""14117"\n"14118"Pour choisir l'option de manière permanente, voir push.default dans 'git "14119"help config'."1412014121#: builtin/push.c:16814122#, c-format14123msgid ""14124"The upstream branch of your current branch does not match\n"14125"the name of your current branch. To push to the upstream branch\n"14126"on the remote, use\n"14127"\n"14128" git push %s HEAD:%s\n"14129"\n"14130"To push to the branch of the same name on the remote, use\n"14131"\n"14132" git push %s %s\n"14133"%s"14134msgstr ""14135"La branche amont de votre branche courante ne correspond pas\n"14136"au nom de votre branche courante. Pour pousser vers la branche amont\n"14137"sur le serveur distant, utilisez\n"14138"\n"14139" git push %s HEAD:%s\n"14140"\n"14141"Pour pousser vers la branche du même nom sur le serveur distant, utilisez\n"14142"\n"14143" git push %s %s\n"14144"%s"1414514146#: builtin/push.c:18314147#, c-format14148msgid ""14149"You are not currently on a branch.\n"14150"To push the history leading to the current (detached HEAD)\n"14151"state now, use\n"14152"\n"14153" git push %s HEAD:<name-of-remote-branch>\n"14154msgstr ""14155"Vous n'êtes actuellement sur aucune branche.\n"14156"Pour pousser l'historique menant à l'état actuel (HEAD détachée),\n"14157"utilisez\n"14158"\n"14159" git push %s HEAD:<nom-de-la-branche-amont>\n"1416014161#: builtin/push.c:19714162#, c-format14163msgid ""14164"The current branch %s has no upstream branch.\n"14165"To push the current branch and set the remote as upstream, use\n"14166"\n"14167" git push --set-upstream %s %s\n"14168msgstr ""14169"La branche courante %s n'a pas de branche amont.\n"14170"Pour pousser la branche courante et définir la distante comme amont, "14171"utilisez\n"14172"\n"14173" git push --set-upstream %s %s\n"1417414175#: builtin/push.c:20514176#, c-format14177msgid "The current branch %s has multiple upstream branches, refusing to push."14178msgstr ""14179"La branche courante %s a de multiples branches amont, impossible de pousser."1418014181#: builtin/push.c:20814182#, c-format14183msgid ""14184"You are pushing to remote '%s', which is not the upstream of\n"14185"your current branch '%s', without telling me what to push\n"14186"to update which remote branch."14187msgstr ""14188"Vous êtes en train de pousser vers la branche distante '%s', qui n'est\n"14189"pas une branche amont de votre branche courante '%s', sans me dire\n"14190"quoi pousser pour mettre à jour quelle branche amont."1419114192#: builtin/push.c:26714193msgid ""14194"You didn't specify any refspecs to push, and push.default is \"nothing\"."14195msgstr ""14196"Vous n'avez pas spécifié de spécifications de référence à pousser, et push."14197"default est \"nothing\"."1419814199#: builtin/push.c:27414200msgid ""14201"Updates were rejected because the tip of your current branch is behind\n"14202"its remote counterpart. Integrate the remote changes (e.g.\n"14203"'git pull ...') before pushing again.\n"14204"See the 'Note about fast-forwards' in 'git push --help' for details."14205msgstr ""14206"Les mises à jour ont été rejetées car la pointe de la branche courante est "14207"derrière\n"14208"son homologue distant. Intégrez les changements distants (par exemple 'git "14209"pull ...')\n"14210"avant de pousser à nouveau.\n"14211"Voir la 'Note à propos des avances rapides' dans 'git push --help' pour plus "14212"d'information."1421314214#: builtin/push.c:28014215msgid ""14216"Updates were rejected because a pushed branch tip is behind its remote\n"14217"counterpart. Check out this branch and integrate the remote changes\n"14218"(e.g. 'git pull ...') before pushing again.\n"14219"See the 'Note about fast-forwards' in 'git push --help' for details."14220msgstr ""14221"Les mises à jour ont été rejetées car la pointe de la branche courante est "14222"derrière\n"14223"son homologue distant. Extrayez cette branche et intégrez les changements "14224"distants\n"14225"(par exemple 'git pull ...') avant de pousser à nouveau.\n"14226"Voir la 'Note à propos des avances rapides' dans 'git push --help' pour plus "14227"d'information."1422814229#: builtin/push.c:28614230msgid ""14231"Updates were rejected because the remote contains work that you do\n"14232"not have locally. This is usually caused by another repository pushing\n"14233"to the same ref. You may want to first integrate the remote changes\n"14234"(e.g., 'git pull ...') before pushing again.\n"14235"See the 'Note about fast-forwards' in 'git push --help' for details."14236msgstr ""14237"Les mises à jour ont été rejetées car la branche distante contient du "14238"travail que\n"14239"vous n'avez pas en local. Ceci est généralement causé par un autre dépôt "14240"poussé\n"14241"vers la même référence. Vous pourriez intégrer d'abord les changements "14242"distants\n"14243"(par exemple 'git pull ...') avant de pousser à nouveau.\n"14244"Voir la 'Note à propos des avances rapides' dans 'git push --help' pour plus "14245"d'information."1424614247#: builtin/push.c:29314248msgid "Updates were rejected because the tag already exists in the remote."14249msgstr ""14250"Les mises à jour ont été rejetées car l'étiquette existe déjà dans la "14251"branche distante."1425214253#: builtin/push.c:29614254msgid ""14255"You cannot update a remote ref that points at a non-commit object,\n"14256"or update a remote ref to make it point at a non-commit object,\n"14257"without using the '--force' option.\n"14258msgstr ""14259"Vous ne pouvez pas mettre à jour une référence distante qui pointe sur un "14260"objet qui\n"14261"n'est pas un commit, ou mettre à jour une référence distante pour la faire "14262"pointer\n"14263"vers un objet qui n'est pas un commit, sans utiliser l'option '--force'.\n"1426414265#: builtin/push.c:35714266#, c-format14267msgid "Pushing to %s\n"14268msgstr "Poussée vers %s\n"1426914270#: builtin/push.c:36114271#, c-format14272msgid "failed to push some refs to '%s'"14273msgstr "impossible de pousser des références vers '%s'"1427414275#: builtin/push.c:39514276#, c-format14277msgid "bad repository '%s'"14278msgstr "mauvais dépôt '%s'"1427914280#: builtin/push.c:39614281msgid ""14282"No configured push destination.\n"14283"Either specify the URL from the command-line or configure a remote "14284"repository using\n"14285"\n"14286" git remote add <name> <url>\n"14287"\n"14288"and then push using the remote name\n"14289"\n"14290" git push <name>\n"14291msgstr ""14292"Pas de destination pour pousser.\n"14293"Spécifiez une URL depuis la ligne de commande ou configurez un dépôt distant "14294"en utilisant\n"14295"\n"14296" git remote add <nom> <url>\n"14297"\n"14298"et poussez alors en utilisant le dépôt distant\n"14299"\n"14300" git push <nom>\n"1430114302#: builtin/push.c:55114303msgid "repository"14304msgstr "dépôt"1430514306#: builtin/push.c:552 builtin/send-pack.c:16414307msgid "push all refs"14308msgstr "pousser toutes les références"1430914310#: builtin/push.c:553 builtin/send-pack.c:16614311msgid "mirror all refs"14312msgstr "refléter toutes les références"1431314314#: builtin/push.c:55514315msgid "delete refs"14316msgstr "supprimer les références"1431714318#: builtin/push.c:55614319msgid "push tags (can't be used with --all or --mirror)"14320msgstr ""14321"pousser les étiquettes (ne peut pas être utilisé avec --all ou --mirror)"1432214323#: builtin/push.c:559 builtin/send-pack.c:16714324msgid "force updates"14325msgstr "forcer les mises à jour"1432614327#: builtin/push.c:561 builtin/send-pack.c:18114328msgid "<refname>:<expect>"14329msgstr "<nom-de-ref>:<attendu>"1433014331#: builtin/push.c:562 builtin/send-pack.c:18214332msgid "require old value of ref to be at this value"14333msgstr "exiger que l'ancienne valeur de la référence soit à cette valeur"1433414335#: builtin/push.c:56514336msgid "control recursive pushing of submodules"14337msgstr "contrôler la poussée récursive des sous-modules"1433814339#: builtin/push.c:567 builtin/send-pack.c:17514340msgid "use thin pack"14341msgstr "utiliser un empaquetage léger"1434214343#: builtin/push.c:568 builtin/push.c:569 builtin/send-pack.c:16114344#: builtin/send-pack.c:16214345msgid "receive pack program"14346msgstr "recevoir le programme d'empaquetage"1434714348#: builtin/push.c:57014349msgid "set upstream for git pull/status"14350msgstr "définir la branche amont pour git pull/status"1435114352#: builtin/push.c:57314353msgid "prune locally removed refs"14354msgstr "éliminer les références locales supprimées"1435514356#: builtin/push.c:57514357msgid "bypass pre-push hook"14358msgstr "éviter d'utiliser le crochet pre-push"1435914360#: builtin/push.c:57614361msgid "push missing but relevant tags"14362msgstr "pousser les étiquettes manquantes mais pertinentes"1436314364#: builtin/push.c:579 builtin/send-pack.c:16914365msgid "GPG sign the push"14366msgstr "signer la poussée avec GPG"1436714368#: builtin/push.c:581 builtin/send-pack.c:17614369msgid "request atomic transaction on remote side"14370msgstr "demande une transaction atomique sur le serveur distant"1437114372#: builtin/push.c:59914373msgid "--delete is incompatible with --all, --mirror and --tags"14374msgstr "--delete est incompatible avec --all, --mirror et --tags"1437514376#: builtin/push.c:60114377msgid "--delete doesn't make sense without any refs"14378msgstr "--delete n'a pas de sens sans aucune référence"1437914380#: builtin/push.c:60414381msgid "--all and --tags are incompatible"14382msgstr "--all et --tags sont incompatibles"1438314384#: builtin/push.c:60614385msgid "--all can't be combined with refspecs"14386msgstr "--all ne peut pas être combiné avec des spécifications de référence"1438714388#: builtin/push.c:61014389msgid "--mirror and --tags are incompatible"14390msgstr "--mirror et --tags sont incompatibles"1439114392#: builtin/push.c:61214393msgid "--mirror can't be combined with refspecs"14394msgstr "--mirror ne peut pas être combiné avec des spécifications de référence"1439514396#: builtin/push.c:61514397msgid "--all and --mirror are incompatible"14398msgstr "--all et --mirror sont incompatibles"1439914400#: builtin/push.c:63414401msgid "push options must not have new line characters"14402msgstr ""14403"les options de poussée ne peuvent pas contenir de caractères de nouvelle "14404"ligne"1440514406#: builtin/range-diff.c:814407msgid "git range-diff [<options>] <old-base>..<old-tip> <new-base>..<new-tip>"14408msgstr ""14409"git range-diff [<options>] <ancienne-base>..<ancien-sommet> <nouvelle-base>.."14410"<nouveau-sommet>"1441114412#: builtin/range-diff.c:914413msgid "git range-diff [<options>] <old-tip>...<new-tip>"14414msgstr "git range-diff [<options>] <ancien-sommet>...<nouveau-sommet>"1441514416#: builtin/range-diff.c:1014417msgid "git range-diff [<options>] <base> <old-tip> <new-tip>"14418msgstr "git range-diff [<options>] <base> <ancien-sommet> <nouveau-sommet>"1441914420#: builtin/range-diff.c:2614421msgid "Percentage by which creation is weighted"14422msgstr "Pourcentage par lequel la création est pondérée"1442314424#: builtin/range-diff.c:2814425#, fuzzy14426msgid "use simple diff colors"14427msgstr "utiliser des couleurs de diff simples"1442814429#: builtin/range-diff.c:75 builtin/range-diff.c:7914430#, c-format14431msgid "no .. in range: '%s'"14432msgstr "pas de .. dans la plage : '%s'"1443314434#: builtin/range-diff.c:8914435msgid "single arg format must be symmetric range"14436msgstr "un format d'argument unique doit être une plage symétrique"1443714438#: builtin/range-diff.c:10414439msgid "need two commit ranges"14440msgstr "plage entre deux commits requise"1444114442#: builtin/read-tree.c:4014443msgid ""14444"git read-tree [(-m [--trivial] [--aggressive] | --reset | --prefix=<prefix>) "14445"[-u [--exclude-per-directory=<gitignore>] | -i]] [--no-sparse-checkout] [--"14446"index-output=<file>] (--empty | <tree-ish1> [<tree-ish2> [<tree-ish3>]])"14447msgstr ""14448"git read-tree [(-m [--trivial] [--aggressive] | --reset | --"14449"prefix=<préfixe>) [-u [--exclude-per-directory=<gitignore>] | -i]] [--no-"14450"sparse-checkout] [--index-output=<fichier>] (--empty | <arbre ou apparenté "14451"1> [<arbre ou apparenté 2> [<arbre ou apparenté 3>]])"1445214453#: builtin/read-tree.c:12014454msgid "write resulting index to <file>"14455msgstr "écrire l'index résultant dans <fichier>"1445614457#: builtin/read-tree.c:12314458msgid "only empty the index"14459msgstr "juste vider l'index"1446014461#: builtin/read-tree.c:12514462msgid "Merging"14463msgstr "Fusion"1446414465#: builtin/read-tree.c:12714466msgid "perform a merge in addition to a read"14467msgstr "effectuer une fusion en plus d'une lecture"1446814469#: builtin/read-tree.c:12914470msgid "3-way merge if no file level merging required"14471msgstr "fusion à 3 points si aucune fusion de niveau fichier n'est requise"1447214473#: builtin/read-tree.c:13114474msgid "3-way merge in presence of adds and removes"14475msgstr "fusion à 3 points en présence d'ajouts et suppressions"1447614477#: builtin/read-tree.c:13314478msgid "same as -m, but discard unmerged entries"14479msgstr "comme -m, mais annule les éléments non fusionnés"1448014481#: builtin/read-tree.c:13414482msgid "<subdirectory>/"14483msgstr "<sous-répertoire>/"1448414485#: builtin/read-tree.c:13514486msgid "read the tree into the index under <subdirectory>/"14487msgstr "lire l'arbre dans l'index dans <sous-répertoire>/"1448814489#: builtin/read-tree.c:13814490msgid "update working tree with merge result"14491msgstr "mettre à jour la copie de travail avec le résultat de la fusion"1449214493#: builtin/read-tree.c:14014494msgid "gitignore"14495msgstr "gitignore"1449614497#: builtin/read-tree.c:14114498msgid "allow explicitly ignored files to be overwritten"14499msgstr "autoriser explicitement les fichiers ignorés à être écrasés"1450014501#: builtin/read-tree.c:14414502msgid "don't check the working tree after merging"14503msgstr "ne pas vérifier la copie de travail après la fusion"1450414505#: builtin/read-tree.c:14514506msgid "don't update the index or the work tree"14507msgstr "ne pas mettre à jour l'index ou la copie de travail"1450814509#: builtin/read-tree.c:14714510msgid "skip applying sparse checkout filter"14511msgstr "sauter l'application du filtre d'extraction creuse"1451214513#: builtin/read-tree.c:14914514msgid "debug unpack-trees"14515msgstr "déboguer unpack-trees"1451614517#: builtin/rebase--helper.c:814518msgid "git rebase--helper [<options>]"14519msgstr "git rebase-helper [<options>]"1452014521#: builtin/rebase--helper.c:2414522msgid "keep empty commits"14523msgstr "garder les validations vides"1452414525#: builtin/rebase--helper.c:26 builtin/revert.c:12414526msgid "allow commits with empty messages"14527msgstr "autoriser les validations avec des messages vides"1452814529#: builtin/rebase--helper.c:2714530msgid "rebase merge commits"14531msgstr "rebaser les commits de fusion"1453214533#: builtin/rebase--helper.c:2914534msgid "keep original branch points of cousins"14535msgstr "conserver les points de branchement de cousins originaux"1453614537#: builtin/rebase--helper.c:3014538msgid "continue rebase"14539msgstr "continuer le rebasage"1454014541#: builtin/rebase--helper.c:3214542msgid "abort rebase"14543msgstr "abandonner le rebasage"1454414545#: builtin/rebase--helper.c:3514546msgid "make rebase script"14547msgstr "créer les script de rebasage"1454814549#: builtin/rebase--helper.c:3714550msgid "shorten commit ids in the todo list"14551msgstr "raccourcir les identifiants de commits dans la liste à-faire"1455214553#: builtin/rebase--helper.c:3914554msgid "expand commit ids in the todo list"14555msgstr "étendre les identifiants de commit dans la liste à-faire"1455614557#: builtin/rebase--helper.c:4114558msgid "check the todo list"14559msgstr "vérifier la liste à-faire"1456014561#: builtin/rebase--helper.c:4314562msgid "skip unnecessary picks"14563msgstr "éviter les commandes de picorage non nécessaires"1456414565#: builtin/rebase--helper.c:4514566msgid "rearrange fixup/squash lines"14567msgstr "réarranger les lignes fixup/squash"1456814569#: builtin/rebase--helper.c:4714570msgid "insert exec commands in todo list"14571msgstr "insérer les commandes exec dans la liste à-faire"1457214573#: builtin/rebase--helper.c:6814574msgid "--[no-]rebase-cousins has no effect without --rebase-merges"14575msgstr "--[no-]rebase-cousins n'a aucun effet sans --rebase-merges"1457614577#: builtin/receive-pack.c:3214578msgid "git receive-pack <git-dir>"14579msgstr "git receive-pack <répertoire-git>"1458014581#: builtin/receive-pack.c:83014582msgid ""14583"By default, updating the current branch in a non-bare repository\n"14584"is denied, because it will make the index and work tree inconsistent\n"14585"with what you pushed, and will require 'git reset --hard' to match\n"14586"the work tree to HEAD.\n"14587"\n"14588"You can set the 'receive.denyCurrentBranch' configuration variable\n"14589"to 'ignore' or 'warn' in the remote repository to allow pushing into\n"14590"its current branch; however, this is not recommended unless you\n"14591"arranged to update its work tree to match what you pushed in some\n"14592"other way.\n"14593"\n"14594"To squelch this message and still keep the default behaviour, set\n"14595"'receive.denyCurrentBranch' configuration variable to 'refuse'."14596msgstr ""14597"Par défaut, mettre à jour la branche actuelle dans un dépôt non-nu\n"14598"est réfusé parce que cela rendrait l'index et la copie de travail\n"14599"inconsistants avec ce que vous avez poussé et nécessiterait\n"14600"'git reset --hard' pour réaligner la copie de travail avec HEAD.\n"14601"\n"14602"Vous pouvez régler « receive.denyCurrentBranch » à 'ignore' ou\n"14603"'warn' dans le dépôt distant pour permettre la poussée dans la\n"14604"branche actuelle ; cependant, ce n'est pas recommandé à moins que\n"14605"vous ayez déjà mis à jour sa copie de travail par une moyen détourné\n"14606"pour correspondre à ce que vous avez poussé.\n"14607"\n"14608"Pour éliminer ce message et conserver le comportement par défaut,\n"14609"réglez « receive.denyCurrentBranch » à 'refuse'."1461014611#: builtin/receive-pack.c:85014612msgid ""14613"By default, deleting the current branch is denied, because the next\n"14614"'git clone' won't result in any file checked out, causing confusion.\n"14615"\n"14616"You can set 'receive.denyDeleteCurrent' configuration variable to\n"14617"'warn' or 'ignore' in the remote repository to allow deleting the\n"14618"current branch, with or without a warning message.\n"14619"\n"14620"To squelch this message, you can set it to 'refuse'."14621msgstr ""14622"Par défaut, supprimer la branche actuelle est refusé parce que le\n"14623"prochain 'git clone' n'extraira aucun fichier et causer de la confusion.\n"14624"\n"14625"Vous pouvez régler « receive.denyDeleteCurrent » à 'warn' ou 'ignore'\n"14626"dans le dépôt distant pour permettre la suppression la branche actuelle\n"14627"avec ou sans message d'avertissement.\n"14628"\n"14629"Pour éliminer ce message, réglez-le à 'refuse'."1463014631#: builtin/receive-pack.c:192314632msgid "quiet"14633msgstr "quiet"1463414635#: builtin/receive-pack.c:193714636msgid "You must specify a directory."14637msgstr "Vous devez spécifier un répertoire."1463814639#: builtin/reflog.c:536 builtin/reflog.c:54114640#, c-format14641msgid "'%s' is not a valid timestamp"14642msgstr "'%s' n'est pas un horodatage valide"1464314644#: builtin/remote.c:1514645msgid "git remote [-v | --verbose]"14646msgstr "git remote [-v | --verbose]"1464714648#: builtin/remote.c:1614649msgid ""14650"git remote add [-t <branch>] [-m <master>] [-f] [--tags | --no-tags] [--"14651"mirror=<fetch|push>] <name> <url>"14652msgstr ""14653"git remote add [-t <branche>] [-m <master>] [-f] [--tags | --no-tags] [--"14654"mirror=<fetch|push>] <nom> <url>"1465514656#: builtin/remote.c:17 builtin/remote.c:3714657msgid "git remote rename <old> <new>"14658msgstr "git remote rename <ancienne> <nouvelle>"1465914660#: builtin/remote.c:18 builtin/remote.c:4214661msgid "git remote remove <name>"14662msgstr "git remote remove <nom>"1466314664#: builtin/remote.c:19 builtin/remote.c:4714665msgid "git remote set-head <name> (-a | --auto | -d | --delete | <branch>)"14666msgstr "git remote set-head <nom> (-a | --auto | -d | --delete | <branche>)"1466714668#: builtin/remote.c:2014669msgid "git remote [-v | --verbose] show [-n] <name>"14670msgstr "git remote [-v | --verbose] show [-n] <nom>"1467114672#: builtin/remote.c:2114673msgid "git remote prune [-n | --dry-run] <name>"14674msgstr "git remote prune [-n | --dry-run] <nom>"1467514676#: builtin/remote.c:2214677msgid ""14678"git remote [-v | --verbose] update [-p | --prune] [(<group> | <remote>)...]"14679msgstr ""14680"git remote [-v | --verbose] update [-p | --prune] [(<groupe> | "14681"<distante>)...]"1468214683#: builtin/remote.c:2314684msgid "git remote set-branches [--add] <name> <branch>..."14685msgstr "git remote set-branches [--add] <nom> <branche>..."1468614687#: builtin/remote.c:24 builtin/remote.c:7314688msgid "git remote get-url [--push] [--all] <name>"14689msgstr "git remote get-url [--push] [--all] <nom>"1469014691#: builtin/remote.c:25 builtin/remote.c:7814692msgid "git remote set-url [--push] <name> <newurl> [<oldurl>]"14693msgstr "git remote set-url [--push] <nom> <nouvelle-URL> [<ancienne-URL>]"1469414695#: builtin/remote.c:26 builtin/remote.c:7914696msgid "git remote set-url --add <name> <newurl>"14697msgstr "git remote set-url --add <nom> <nouvelle-URL>"1469814699#: builtin/remote.c:27 builtin/remote.c:8014700msgid "git remote set-url --delete <name> <url>"14701msgstr "git remote set-url --delete <nom> <URL>"1470214703#: builtin/remote.c:3214704msgid "git remote add [<options>] <name> <url>"14705msgstr "git remote add [<options>] <nom> <URL>"1470614707#: builtin/remote.c:5214708msgid "git remote set-branches <name> <branch>..."14709msgstr "git remote set-branches <nom> <branche>..."1471014711#: builtin/remote.c:5314712msgid "git remote set-branches --add <name> <branch>..."14713msgstr "git remote set-branches --add <nom> <branche>..."1471414715#: builtin/remote.c:5814716msgid "git remote show [<options>] <name>"14717msgstr "git remote show [<options>] <nom>"1471814719#: builtin/remote.c:6314720msgid "git remote prune [<options>] <name>"14721msgstr "git remote prune [<options>] <nom>"1472214723#: builtin/remote.c:6814724msgid "git remote update [<options>] [<group> | <remote>]..."14725msgstr "git remote update [<options>] [<groupe> | <distante>]..."1472614727#: builtin/remote.c:9714728#, c-format14729msgid "Updating %s"14730msgstr "Mise à jour de %s"1473114732#: builtin/remote.c:12914733msgid ""14734"--mirror is dangerous and deprecated; please\n"14735"\t use --mirror=fetch or --mirror=push instead"14736msgstr ""14737"--mirror est dangereux et obsolète ; merci\n"14738"\t d'utiliser --mirror=fetch ou --mirror=push à la place"1473914740#: builtin/remote.c:14614741#, c-format14742msgid "unknown mirror argument: %s"14743msgstr "argument miroir inconnu : %s"1474414745#: builtin/remote.c:16214746msgid "fetch the remote branches"14747msgstr "rapatrier les branches distantes"1474814749#: builtin/remote.c:16414750msgid "import all tags and associated objects when fetching"14751msgstr ""14752"importer toutes les étiquettes et les objets associés lors du rapatriement"1475314754#: builtin/remote.c:16714755msgid "or do not fetch any tag at all (--no-tags)"14756msgstr "ou ne rapatrier aucune étiquette (--no-tags)"1475714758#: builtin/remote.c:16914759msgid "branch(es) to track"14760msgstr "branche(s) à suivre"1476114762#: builtin/remote.c:17014763msgid "master branch"14764msgstr "branche maîtresse"1476514766#: builtin/remote.c:17214767msgid "set up remote as a mirror to push to or fetch from"14768msgstr ""14769"paramétrer la distante comme miroir pour pousser ou pour rapatrier depuis"1477014771#: builtin/remote.c:18414772msgid "specifying a master branch makes no sense with --mirror"14773msgstr "spécifier une branche maîtresse n'a pas de sens avec --mirror"1477414775#: builtin/remote.c:18614776msgid "specifying branches to track makes sense only with fetch mirrors"14777msgstr ""14778"spécifier les branches à suivre n'a de sens qu'avec des miroirs de "14779"rapatriement"1478014781#: builtin/remote.c:193 builtin/remote.c:63514782#, c-format14783msgid "remote %s already exists."14784msgstr "la distante %s existe déjà."1478514786#: builtin/remote.c:197 builtin/remote.c:63914787#, c-format14788msgid "'%s' is not a valid remote name"14789msgstr "'%s' n'est pas un nom valide de distante"1479014791#: builtin/remote.c:23714792#, c-format14793msgid "Could not setup master '%s'"14794msgstr "Impossible de paramétrer la maîtresse '%s'"1479514796#: builtin/remote.c:34314797#, c-format14798msgid "Could not get fetch map for refspec %s"14799msgstr ""14800"Impossible d'obtenir une correspondance distante pour la spécification de "14801"référence %s"1480214803#: builtin/remote.c:442 builtin/remote.c:45014804msgid "(matching)"14805msgstr "(correspond)"1480614807#: builtin/remote.c:45414808msgid "(delete)"14809msgstr "(supprimer)"1481014811#: builtin/remote.c:628 builtin/remote.c:764 builtin/remote.c:86314812#, c-format14813msgid "No such remote: %s"14814msgstr "Distante inconnue : %s"1481514816#: builtin/remote.c:64514817#, c-format14818msgid "Could not rename config section '%s' to '%s'"14819msgstr "Impossible de renommer la section de configuration '%s' en '%s'"1482014821#: builtin/remote.c:66514822#, c-format14823msgid ""14824"Not updating non-default fetch refspec\n"14825"\t%s\n"14826"\tPlease update the configuration manually if necessary."14827msgstr ""14828"Pas de mise à jour du refspec de rapatriement qui n'est pas par défaut\n"14829"\t%s\n"14830"\tVeuillez mettre à jour la configuration manuellement si nécessaire."1483114832#: builtin/remote.c:70114833#, c-format14834msgid "deleting '%s' failed"14835msgstr "échec de suppression de '%s'"1483614837#: builtin/remote.c:73514838#, c-format14839msgid "creating '%s' failed"14840msgstr "échec de création de '%s'"1484114842#: builtin/remote.c:80114843msgid ""14844"Note: A branch outside the refs/remotes/ hierarchy was not removed;\n"14845"to delete it, use:"14846msgid_plural ""14847"Note: Some branches outside the refs/remotes/ hierarchy were not removed;\n"14848"to delete them, use:"14849msgstr[0] ""14850"Note : Une branche en dehors de refs/remotes/ n'a pas été supprimée ;\n"14851"pour la supprimer, utilisez :"14852msgstr[1] ""14853"Note : Plusieurs branches en dehors de refs/remotes/ n'ont pas été "14854"supprimées ;\n"14855"pour les supprimer, utilisez :"1485614857#: builtin/remote.c:81514858#, c-format14859msgid "Could not remove config section '%s'"14860msgstr "Impossible de supprimer la section de configuration '%s'"1486114862#: builtin/remote.c:91614863#, c-format14864msgid " new (next fetch will store in remotes/%s)"14865msgstr " nouveau (le prochain rapatriement (fetch) stockera dans remotes/%s)"1486614867#: builtin/remote.c:91914868msgid " tracked"14869msgstr " suivi"1487014871#: builtin/remote.c:92114872msgid " stale (use 'git remote prune' to remove)"14873msgstr " dépassé (utilisez 'git remote prune' pour supprimer)"1487414875#: builtin/remote.c:92314876msgid " ???"14877msgstr " ???"1487814879#: builtin/remote.c:96414880#, c-format14881msgid "invalid branch.%s.merge; cannot rebase onto > 1 branch"14882msgstr "branch.%s.merge invalide ; ne peut pas rebaser sur plus d'une branche"1488314884#: builtin/remote.c:97314885#, c-format14886msgid "rebases interactively onto remote %s"14887msgstr "rebase de manière interactive sur la distante %s"1488814889#: builtin/remote.c:97514890#, c-format14891msgid "rebases interactively (with merges) onto remote %s"14892msgstr "rebase de manière interactive (avec fusions) sur la distante %s"1489314894#: builtin/remote.c:97814895#, c-format14896msgid "rebases onto remote %s"14897msgstr "rebase sur la distante %s"1489814899#: builtin/remote.c:98214900#, c-format14901msgid " merges with remote %s"14902msgstr " fusionne avec la distante %s"1490314904#: builtin/remote.c:98514905#, c-format14906msgid "merges with remote %s"14907msgstr "fusionne avec la distante %s"1490814909#: builtin/remote.c:98814910#, c-format14911msgid "%-*s and with remote %s\n"14912msgstr "%-*s et avec la distante %s\n"1491314914#: builtin/remote.c:103114915msgid "create"14916msgstr "créer"1491714918#: builtin/remote.c:103414919msgid "delete"14920msgstr "supprimer"1492114922#: builtin/remote.c:103814923msgid "up to date"14924msgstr "à jour"1492514926#: builtin/remote.c:104114927msgid "fast-forwardable"14928msgstr "peut être mis à jour en avance rapide"1492914930#: builtin/remote.c:104414931msgid "local out of date"14932msgstr "le local n'est pas à jour"1493314934#: builtin/remote.c:105114935#, c-format14936msgid " %-*s forces to %-*s (%s)"14937msgstr " %-*s force vers %-*s (%s)"1493814939#: builtin/remote.c:105414940#, c-format14941msgid " %-*s pushes to %-*s (%s)"14942msgstr " %-*s pousse vers %-*s (%s)"1494314944#: builtin/remote.c:105814945#, c-format14946msgid " %-*s forces to %s"14947msgstr " %-*s force vers %s"1494814949#: builtin/remote.c:106114950#, c-format14951msgid " %-*s pushes to %s"14952msgstr " %-*s pousse vers %s"1495314954#: builtin/remote.c:112914955msgid "do not query remotes"14956msgstr "ne pas interroger les distantes"1495714958#: builtin/remote.c:115614959#, c-format14960msgid "* remote %s"14961msgstr "* distante %s"1496214963#: builtin/remote.c:115714964#, c-format14965msgid " Fetch URL: %s"14966msgstr " URL de rapatriement : %s"1496714968#: builtin/remote.c:1158 builtin/remote.c:1174 builtin/remote.c:131314969msgid "(no URL)"14970msgstr "(pas d'URL)"1497114972#. TRANSLATORS: the colon ':' should align14973#. with the one in " Fetch URL: %s"14974#. translation.14975#.14976#: builtin/remote.c:1172 builtin/remote.c:117414977#, c-format14978msgid " Push URL: %s"14979msgstr " URL push : %s"1498014981#: builtin/remote.c:1176 builtin/remote.c:1178 builtin/remote.c:118014982#, c-format14983msgid " HEAD branch: %s"14984msgstr " Branche HEAD : %s"1498514986#: builtin/remote.c:117614987msgid "(not queried)"14988msgstr "(non demandé)"1498914990#: builtin/remote.c:117814991msgid "(unknown)"14992msgstr "(inconnu)"1499314994#: builtin/remote.c:118214995#, c-format14996msgid ""14997" HEAD branch (remote HEAD is ambiguous, may be one of the following):\n"14998msgstr ""14999" Branche HEAD (la HEAD distante est ambiguë, peut être l'une des "15000"suivantes) :\n"1500115002#: builtin/remote.c:119415003#, c-format15004msgid " Remote branch:%s"15005msgid_plural " Remote branches:%s"15006msgstr[0] " Branche distante :%s"15007msgstr[1] " Branches distantes :%s"1500815009#: builtin/remote.c:1197 builtin/remote.c:122315010msgid " (status not queried)"15011msgstr " (état non demandé)"1501215013#: builtin/remote.c:120615014msgid " Local branch configured for 'git pull':"15015msgid_plural " Local branches configured for 'git pull':"15016msgstr[0] " Branche locale configurée pour 'git pull' :"15017msgstr[1] " Branches locales configurées pour 'git pull' :"1501815019#: builtin/remote.c:121415020msgid " Local refs will be mirrored by 'git push'"15021msgstr " Les références locales seront reflétées par 'git push'"1502215023#: builtin/remote.c:122015024#, c-format15025msgid " Local ref configured for 'git push'%s:"15026msgid_plural " Local refs configured for 'git push'%s:"15027msgstr[0] " Référence locale configurée pour 'git push'%s :"15028msgstr[1] " Références locales configurées pour 'git push'%s :"1502915030#: builtin/remote.c:124115031msgid "set refs/remotes/<name>/HEAD according to remote"15032msgstr "définir refs/remotes/<nom>/HEAD selon la distante"1503315034#: builtin/remote.c:124315035msgid "delete refs/remotes/<name>/HEAD"15036msgstr "supprimer refs/remotes/<nom>/HEAD"1503715038#: builtin/remote.c:125815039msgid "Cannot determine remote HEAD"15040msgstr "Impossible de déterminer la HEAD distante"1504115042#: builtin/remote.c:126015043msgid "Multiple remote HEAD branches. Please choose one explicitly with:"15044msgstr ""15045"Il y a de multiples branches HEAD distantes. Veuillez en choisir une "15046"explicitement avec :"1504715048#: builtin/remote.c:127015049#, c-format15050msgid "Could not delete %s"15051msgstr "Impossible de supprimer %s"1505215053#: builtin/remote.c:127815054#, c-format15055msgid "Not a valid ref: %s"15056msgstr "Référence non valide : %s"1505715058#: builtin/remote.c:128015059#, c-format15060msgid "Could not setup %s"15061msgstr "Impossible de paramétrer %s"1506215063#: builtin/remote.c:129815064#, c-format15065msgid " %s will become dangling!"15066msgstr " %s se retrouvera en suspens !"1506715068#: builtin/remote.c:129915069#, c-format15070msgid " %s has become dangling!"15071msgstr " %s se retrouve en suspens !"1507215073#: builtin/remote.c:130915074#, c-format15075msgid "Pruning %s"15076msgstr "Élimination de %s"1507715078#: builtin/remote.c:131015079#, c-format15080msgid "URL: %s"15081msgstr "URL : %s"1508215083#: builtin/remote.c:132615084#, c-format15085msgid " * [would prune] %s"15086msgstr " * [serait éliminé] %s"1508715088#: builtin/remote.c:132915089#, c-format15090msgid " * [pruned] %s"15091msgstr " * [éliminé] %s"1509215093#: builtin/remote.c:137415094msgid "prune remotes after fetching"15095msgstr "éliminer les distants après le rapatriement"1509615097#: builtin/remote.c:1437 builtin/remote.c:1491 builtin/remote.c:155915098#, c-format15099msgid "No such remote '%s'"15100msgstr "Pas de serveur remote '%s'"1510115102#: builtin/remote.c:145315103msgid "add branch"15104msgstr "ajouter une branche"1510515106#: builtin/remote.c:146015107msgid "no remote specified"15108msgstr "pas de serveur distant spécifié"1510915110#: builtin/remote.c:147715111msgid "query push URLs rather than fetch URLs"15112msgstr "interroger les URLs de poussée plutôt que les URLs de récupération"1511315114#: builtin/remote.c:147915115msgid "return all URLs"15116msgstr "retourner toutes les URLs"1511715118#: builtin/remote.c:150715119#, c-format15120msgid "no URLs configured for remote '%s'"15121msgstr "aucune URL configurée pour le dépôt distant '%s'"1512215123#: builtin/remote.c:153315124msgid "manipulate push URLs"15125msgstr "manipuler les URLs push"1512615127#: builtin/remote.c:153515128msgid "add URL"15129msgstr "ajouter une URL"1513015131#: builtin/remote.c:153715132msgid "delete URLs"15133msgstr "supprimer des URLs"1513415135#: builtin/remote.c:154415136msgid "--add --delete doesn't make sense"15137msgstr "--add --delete n'a aucun sens"1513815139#: builtin/remote.c:158315140#, c-format15141msgid "Invalid old URL pattern: %s"15142msgstr "Motif d'URL ancien invalide : %s"1514315144#: builtin/remote.c:159115145#, c-format15146msgid "No such URL found: %s"15147msgstr "Pas d'URL trouvée : %s"1514815149#: builtin/remote.c:159315150msgid "Will not delete all non-push URLs"15151msgstr "Pas de suppression de toutes les URLs non-push"1515215153#: builtin/remote.c:160915154msgid "be verbose; must be placed before a subcommand"15155msgstr "être verbeux : doit être placé avant une sous-commande"1515615157#: builtin/remote.c:164015158#, c-format15159msgid "Unknown subcommand: %s"15160msgstr "Sous-commande inconnue : %s"1516115162#: builtin/repack.c:2015163msgid "git repack [<options>]"15164msgstr "git repack [<options>]"1516515166#: builtin/repack.c:2515167msgid ""15168"Incremental repacks are incompatible with bitmap indexes. Use\n"15169"--no-write-bitmap-index or disable the pack.writebitmaps configuration."15170msgstr ""15171"Les repaquetages incrémentaux sont incompatibles avec les index bitmap. "15172"Utilisez\n"15173"--no-write-bitmap-index ou désactivez le paramètre pack.writebitmaps."1517415175#: builtin/repack.c:28715176msgid "pack everything in a single pack"15177msgstr "empaqueter tout dans un seul paquet"1517815179#: builtin/repack.c:28915180msgid "same as -a, and turn unreachable objects loose"15181msgstr "identique à -a et transformer les objets inaccessibles en suspens"1518215183#: builtin/repack.c:29215184msgid "remove redundant packs, and run git-prune-packed"15185msgstr "supprimer les paquets redondants et lancer git-prune-packed"1518615187#: builtin/repack.c:29415188msgid "pass --no-reuse-delta to git-pack-objects"15189msgstr "passer --no-reuse-delta à git-pack-objects"1519015191#: builtin/repack.c:29615192msgid "pass --no-reuse-object to git-pack-objects"15193msgstr "passer --no-reuse-object à git-pack-objects"1519415195#: builtin/repack.c:29815196msgid "do not run git-update-server-info"15197msgstr "ne pas lancer git update-server-info"1519815199#: builtin/repack.c:30115200msgid "pass --local to git-pack-objects"15201msgstr "passer --local à git-pack-objects"1520215203#: builtin/repack.c:30315204msgid "write bitmap index"15205msgstr "écrire un index en bitmap"1520615207#: builtin/repack.c:30415208msgid "approxidate"15209msgstr "date approximative"1521015211#: builtin/repack.c:30515212msgid "with -A, do not loosen objects older than this"15213msgstr "avec -A, ne pas suspendre les objets plus vieux que celui-ci"1521415215#: builtin/repack.c:30715216msgid "with -a, repack unreachable objects"15217msgstr "avec -a, repaquétiser les objets inaccessibles"1521815219#: builtin/repack.c:30915220msgid "size of the window used for delta compression"15221msgstr "taille de la fenêtre utilisée pour la compression des deltas"1522215223#: builtin/repack.c:310 builtin/repack.c:31615224msgid "bytes"15225msgstr "octets"1522615227#: builtin/repack.c:31115228msgid "same as the above, but limit memory size instead of entries count"15229msgstr ""15230"idem ci-dessus, mais limiter la taille mémoire au lieu du nombre d'éléments"1523115232#: builtin/repack.c:31315233msgid "limits the maximum delta depth"15234msgstr "limite la profondeur maximale des deltas"1523515236#: builtin/repack.c:31515237msgid "limits the maximum number of threads"15238msgstr "limite le nombre maximal de fils"1523915240#: builtin/repack.c:31715241msgid "maximum size of each packfile"15242msgstr "taille maximum de chaque fichier paquet"1524315244#: builtin/repack.c:31915245msgid "repack objects in packs marked with .keep"15246msgstr "réempaqueter les objets dans des paquets marqués avec .keep"1524715248#: builtin/repack.c:32115249msgid "do not repack this pack"15250msgstr "ne pas rempaqueter ce paquet"1525115252#: builtin/repack.c:33115253msgid "cannot delete packs in a precious-objects repo"15254msgstr "impossible de supprimer les paquets dans un dépôt d'objets précieux"1525515256#: builtin/repack.c:33515257msgid "--keep-unreachable and -A are incompatible"15258msgstr "--keep-unreachable et -A sont incompatibles"1525915260#: builtin/repack.c:510 builtin/worktree.c:14015261#, c-format15262msgid "failed to remove '%s'"15263msgstr "échec de la suppression de '%s'"1526415265#: builtin/replace.c:2215266msgid "git replace [-f] <object> <replacement>"15267msgstr "git replace [-f] <objet> <remplacement>"1526815269#: builtin/replace.c:2315270msgid "git replace [-f] --edit <object>"15271msgstr "git replace [-f] --edit <objet>"1527215273#: builtin/replace.c:2415274msgid "git replace [-f] --graft <commit> [<parent>...]"15275msgstr "git replace [-f] --graft <commit> [<parent>...]"1527615277#: builtin/replace.c:2515278msgid "git replace [-f] --convert-graft-file"15279msgstr "git replace [-f] --convert-graft-file"1528015281#: builtin/replace.c:2615282msgid "git replace -d <object>..."15283msgstr "git replace -d <objet>..."1528415285#: builtin/replace.c:2715286msgid "git replace [--format=<format>] [-l [<pattern>]]"15287msgstr "git replace [--format=<format>] [-l [<motif>]]"1528815289#: builtin/replace.c:57 builtin/replace.c:203 builtin/replace.c:20615290#, c-format15291msgid "failed to resolve '%s' as a valid ref"15292msgstr "échec à résoudre '%s' comme une référence valide"1529315294#: builtin/replace.c:8615295#, c-format15296msgid ""15297"invalid replace format '%s'\n"15298"valid formats are 'short', 'medium' and 'long'"15299msgstr ""15300"format de remplacement invalide '%s'\n"15301"les formats valides sont 'short', 'medium' et 'long'"1530215303#: builtin/replace.c:12115304#, c-format15305msgid "replace ref '%s' not found"15306msgstr "réf de remplacement '%s' non trouvée"1530715308#: builtin/replace.c:13715309#, c-format15310msgid "Deleted replace ref '%s'"15311msgstr "Référence de remplacement '%s' supprimée"1531215313#: builtin/replace.c:14915314#, c-format15315msgid "'%s' is not a valid ref name"15316msgstr "'%s' n'est pas un nom valide de référence"1531715318#: builtin/replace.c:15415319#, c-format15320msgid "replace ref '%s' already exists"15321msgstr "la référence de remplacement '%s' existe déjà"1532215323#: builtin/replace.c:17415324#, c-format15325msgid ""15326"Objects must be of the same type.\n"15327"'%s' points to a replaced object of type '%s'\n"15328"while '%s' points to a replacement object of type '%s'."15329msgstr ""15330"Les objets doivent être du même type.\n"15331"'%s' pointe sur un objet remplacé de type '%s' tandis que\n"15332"'%s' pointe sur un objet remplaçant de type '%s'."1533315334#: builtin/replace.c:22515335#, c-format15336msgid "unable to open %s for writing"15337msgstr "impossible d'ouvrir %s en écriture"1533815339#: builtin/replace.c:23815340msgid "cat-file reported failure"15341msgstr "cat-file a retourné un échec"1534215343#: builtin/replace.c:25415344#, c-format15345msgid "unable to open %s for reading"15346msgstr "impossible d'ouvrir %s en écriture"1534715348#: builtin/replace.c:26815349msgid "unable to spawn mktree"15350msgstr "impossible de lire l'arbre (%s)"1535115352#: builtin/replace.c:27215353msgid "unable to read from mktree"15354msgstr "impossible de lire depui mktree"1535515356#: builtin/replace.c:28115357msgid "mktree reported failure"15358msgstr "mktree a échoué"1535915360#: builtin/replace.c:28515361msgid "mktree did not return an object name"15362msgstr "mktree n'a pas retourné de nom d'objet"1536315364#: builtin/replace.c:29415365#, c-format15366msgid "unable to fstat %s"15367msgstr "fstat de %s impossible"1536815369#: builtin/replace.c:29915370msgid "unable to write object to database"15371msgstr "impossible d'écrire l'objet dans la base de données"1537215373#: builtin/replace.c:318 builtin/replace.c:371 builtin/replace.c:41515374#: builtin/replace.c:44515375#, c-format15376msgid "not a valid object name: '%s'"15377msgstr "nom d'objet invalide : '%s'"1537815379#: builtin/replace.c:32215380#, c-format15381msgid "unable to get object type for %s"15382msgstr "impossible d'obtenir le type de l'objet pour %s"1538315384#: builtin/replace.c:33815385msgid "editing object file failed"15386msgstr "échec de l'édition du fichier d'objet"1538715388#: builtin/replace.c:34715389#, c-format15390msgid "new object is the same as the old one: '%s'"15391msgstr "le nouvel objet est identique à l'ancien : '%s'"1539215393#: builtin/replace.c:40715394#, c-format15395msgid "bad mergetag in commit '%s'"15396msgstr "mauvaise étiquette de fusion dans le commit '%s'"1539715398#: builtin/replace.c:40915399#, c-format15400msgid "malformed mergetag in commit '%s'"15401msgstr "étiquette de fusion malformée dans le commit '%s'"1540215403#: builtin/replace.c:42115404#, c-format15405msgid ""15406"original commit '%s' contains mergetag '%s' that is discarded; use --edit "15407"instead of --graft"15408msgstr ""15409"le commit original '%s' contient l'étiquette de fusion '%s' qui a disparu ; "15410"utilisez --edit au lieu de --graft"1541115412#: builtin/replace.c:46015413#, c-format15414msgid "the original commit '%s' has a gpg signature"15415msgstr "le commit original '%s' contient une signature GPG"1541615417#: builtin/replace.c:46115418msgid "the signature will be removed in the replacement commit!"15419msgstr "la signature sera éliminée dans la validation de remplacement !"1542015421#: builtin/replace.c:47115422#, c-format15423msgid "could not write replacement commit for: '%s'"15424msgstr "Impossible d'écrire le commit de remplacement pour '%s'"1542515426#: builtin/replace.c:47915427#, c-format15428msgid "graft for '%s' unnecessary"15429msgstr "graft pour '%s' non nécessaire"1543015431#: builtin/replace.c:48215432#, c-format15433msgid "new commit is the same as the old one: '%s'"15434msgstr "le nouveau commit est identique à l'ancien : '%s'"1543515436#: builtin/replace.c:51415437#, c-format15438msgid ""15439"could not convert the following graft(s):\n"15440"%s"15441msgstr ""15442"impossible de convertir la(les) greffe(s) suivante(s) :\n"15443"%s"1544415445#: builtin/replace.c:53515446msgid "list replace refs"15447msgstr "afficher les références de remplacement"1544815449#: builtin/replace.c:53615450msgid "delete replace refs"15451msgstr "supprimer les références de remplacement"1545215453#: builtin/replace.c:53715454msgid "edit existing object"15455msgstr "éditer l'objet existant"1545615457#: builtin/replace.c:53815458msgid "change a commit's parents"15459msgstr "Modifier les parents d'un commit"1546015461#: builtin/replace.c:53915462msgid "convert existing graft file"15463msgstr "convertir le fichier de greffe existant"1546415465#: builtin/replace.c:54015466msgid "replace the ref if it exists"15467msgstr "remplacer la référence si elle existe"1546815469#: builtin/replace.c:54215470msgid "do not pretty-print contents for --edit"15471msgstr "afficher sans mise en forme pour --edit"1547215473#: builtin/replace.c:54315474msgid "use this format"15475msgstr "utiliser ce format"1547615477#: builtin/replace.c:55615478msgid "--format cannot be used when not listing"15479msgstr "--format ne peut pas être utilisé sans lister"1548015481#: builtin/replace.c:56415482msgid "-f only makes sense when writing a replacement"15483msgstr "-f n'a de sens qu'en écrivant un remplacement"1548415485#: builtin/replace.c:56815486msgid "--raw only makes sense with --edit"15487msgstr "--raw n'a de sens qu'avec l'option --edit"1548815489#: builtin/replace.c:57415490msgid "-d needs at least one argument"15491msgstr "-d requiert au moins un argument"1549215493#: builtin/replace.c:58015494msgid "bad number of arguments"15495msgstr "mauvais nombre d'arguments"1549615497#: builtin/replace.c:58615498msgid "-e needs exactly one argument"15499msgstr "-e requiert un seul argument"1550015501#: builtin/replace.c:59215502msgid "-g needs at least one argument"15503msgstr "-g requiert au moins un argument"1550415505#: builtin/replace.c:59815506msgid "--convert-graft-file takes no argument"15507msgstr "--convert-graft-file ne supporte aucun argument"1550815509#: builtin/replace.c:60415510msgid "only one pattern can be given with -l"15511msgstr "-l n'accepte qu'un motifs"1551215513#: builtin/rerere.c:1315514msgid "git rerere [clear | forget <path>... | status | remaining | diff | gc]"15515msgstr ""15516"git rerere [clear | forget <chemin>... | status | remaining | diff | gc]"1551715518#: builtin/rerere.c:5915519msgid "register clean resolutions in index"15520msgstr "enregistrer des résolutions propres dans l'index"1552115522#: builtin/reset.c:2915523msgid ""15524"git reset [--mixed | --soft | --hard | --merge | --keep] [-q] [<commit>]"15525msgstr ""15526"git reset [--mixed | --soft | --hard | --merge | --keep] [-q] [<commit>]"1552715528#: builtin/reset.c:3015529msgid "git reset [-q] [<tree-ish>] [--] <paths>..."15530msgstr "git reset [-q] [<arbre ou apparenté>] [--] <chemins>..."1553115532#: builtin/reset.c:3115533msgid "git reset --patch [<tree-ish>] [--] [<paths>...]"15534msgstr "git reset --patch [<arbre ou apparenté>] [--] [<chemins>...]"1553515536#: builtin/reset.c:3715537msgid "mixed"15538msgstr "mixed"1553915540#: builtin/reset.c:3715541msgid "soft"15542msgstr "soft"1554315544#: builtin/reset.c:3715545msgid "hard"15546msgstr "hard"1554715548#: builtin/reset.c:3715549msgid "merge"15550msgstr "merge"1555115552#: builtin/reset.c:3715553msgid "keep"15554msgstr "keep"1555515556#: builtin/reset.c:7815557msgid "You do not have a valid HEAD."15558msgstr "Vous n'avez pas une HEAD valide."1555915560#: builtin/reset.c:8015561msgid "Failed to find tree of HEAD."15562msgstr "Impossible de trouver l'arbre pour HEAD."1556315564#: builtin/reset.c:8615565#, c-format15566msgid "Failed to find tree of %s."15567msgstr "Impossible de trouver l'arbre pour %s."1556815569#: builtin/reset.c:11115570#, c-format15571msgid "HEAD is now at %s"15572msgstr "HEAD est maintenant à %s"1557315574#: builtin/reset.c:18915575#, c-format15576msgid "Cannot do a %s reset in the middle of a merge."15577msgstr "Impossible de faire un \"reset %s\" au milieu d'une fusion."1557815579#: builtin/reset.c:28915580msgid "be quiet, only report errors"15581msgstr "être silencieux, afficher seulement les erreurs"1558215583#: builtin/reset.c:29115584msgid "reset HEAD and index"15585msgstr "réinitialiser HEAD et l'index"1558615587#: builtin/reset.c:29215588msgid "reset only HEAD"15589msgstr "réinitialiser seulement HEAD"1559015591#: builtin/reset.c:294 builtin/reset.c:29615592msgid "reset HEAD, index and working tree"15593msgstr "réinitialiser HEAD, l'index et la copie de travail"1559415595#: builtin/reset.c:29815596msgid "reset HEAD but keep local changes"15597msgstr "réinitialiser HEAD mais garder les changements locaux"1559815599#: builtin/reset.c:30415600msgid "record only the fact that removed paths will be added later"15601msgstr ""15602"enregistrer seulement le fait que les chemins effacés seront ajoutés plus "15603"tard"1560415605#: builtin/reset.c:32115606#, c-format15607msgid "Failed to resolve '%s' as a valid revision."15608msgstr "Échec de résolution de '%s' comme une révision valide."1560915610#: builtin/reset.c:32915611#, c-format15612msgid "Failed to resolve '%s' as a valid tree."15613msgstr "Échec de résolution de '%s' comme un arbre valide."1561415615#: builtin/reset.c:33815616msgid "--patch is incompatible with --{hard,mixed,soft}"15617msgstr "--patch est incompatible avec --{hard,mixed,soft}"1561815619#: builtin/reset.c:34715620msgid "--mixed with paths is deprecated; use 'git reset -- <paths>' instead."15621msgstr ""15622"--mixed avec des chemins est obsolète ; utilisez 'git reset -- <paths>' à la "15623"place."1562415625#: builtin/reset.c:34915626#, c-format15627msgid "Cannot do %s reset with paths."15628msgstr "Impossible de faire un \"%s reset\" avec des chemins."1562915630#: builtin/reset.c:35915631#, c-format15632msgid "%s reset is not allowed in a bare repository"15633msgstr "Le \"%s reset\" n'est pas permis dans un dépôt nu"1563415635#: builtin/reset.c:36315636msgid "-N can only be used with --mixed"15637msgstr "-N ne peut être utilisé qu'avec --mixed"1563815639#: builtin/reset.c:38015640msgid "Unstaged changes after reset:"15641msgstr "Modifications non indexées après reset :"1564215643#: builtin/reset.c:38615644#, c-format15645msgid "Could not reset index file to revision '%s'."15646msgstr "Impossible de réinitialiser le fichier d'index à la révision '%s'."1564715648#: builtin/reset.c:39015649msgid "Could not write new index file."15650msgstr "Impossible d'écrire le nouveau fichier d'index."1565115652#: builtin/rev-list.c:39915653msgid "cannot combine --exclude-promisor-objects and --missing"15654msgstr "impossible de combiner --exclude-promisor-objects et --missing"1565515656#: builtin/rev-list.c:45715657msgid "object filtering requires --objects"15658msgstr "le filtrage d'objet exige --objects"1565915660#: builtin/rev-list.c:46015661#, c-format15662msgid "invalid sparse value '%s'"15663msgstr "valeur invalide de 'sparse' '%s'"1566415665#: builtin/rev-list.c:50115666msgid "rev-list does not support display of notes"15667msgstr "rev-list ne supporte l'affichage des notes"1566815669#: builtin/rev-list.c:50415670msgid "cannot combine --use-bitmap-index with object filtering"15671msgstr "impossible de combiner --use-bitmap-index avec le filtrage d'objet"1567215673#: builtin/rev-parse.c:40615674msgid "git rev-parse --parseopt [<options>] -- [<args>...]"15675msgstr "git rev-parse --parseopt [<options>] -- [<arguments>...]"1567615677#: builtin/rev-parse.c:41115678msgid "keep the `--` passed as an arg"15679msgstr "garder le `--` passé en argument"1568015681#: builtin/rev-parse.c:41315682msgid "stop parsing after the first non-option argument"15683msgstr "arrêt de l'analyse après le premier argument qui n'est pas une option"1568415685#: builtin/rev-parse.c:41615686msgid "output in stuck long form"15687msgstr "sortie en forme longue fixée"1568815689#: builtin/rev-parse.c:54915690msgid ""15691"git rev-parse --parseopt [<options>] -- [<args>...]\n"15692" or: git rev-parse --sq-quote [<arg>...]\n"15693" or: git rev-parse [<options>] [<arg>...]\n"15694"\n"15695"Run \"git rev-parse --parseopt -h\" for more information on the first usage."15696msgstr ""15697"git rev-parse --parseopt [<options>] -- [<arguments>...]\n"15698" ou : git rev-parse --sq-quote [<argument>...]\n"15699" ou : git rev-parse [options] [<argument>...]\n"15700"\n"15701"Lancez \"git rev-parse --parseopt -h\" pour plus d'information sur "15702"l'utilisation principale."1570315704#: builtin/revert.c:2415705msgid "git revert [<options>] <commit-ish>..."15706msgstr "git revert [<options>] <commit ou apparenté>..."1570715708#: builtin/revert.c:2515709msgid "git revert <subcommand>"15710msgstr "git revert <sous-commande>"1571115712#: builtin/revert.c:3015713msgid "git cherry-pick [<options>] <commit-ish>..."15714msgstr "git cherry-pick [<options>] <commit ou apparenté>..."1571515716#: builtin/revert.c:3115717msgid "git cherry-pick <subcommand>"15718msgstr "git cherry-pick <sous-commande>"1571915720#: builtin/revert.c:9115721#, c-format15722msgid "%s: %s cannot be used with %s"15723msgstr "%s : %s ne peut pas être utilisé avec %s"1572415725#: builtin/revert.c:10015726msgid "end revert or cherry-pick sequence"15727msgstr "mettre fin au retour ou picorage"1572815729#: builtin/revert.c:10115730msgid "resume revert or cherry-pick sequence"15731msgstr "reprendre le retour ou picorage"1573215733#: builtin/revert.c:10215734msgid "cancel revert or cherry-pick sequence"15735msgstr "annuler le retour ou picorage"1573615737#: builtin/revert.c:10315738msgid "don't automatically commit"15739msgstr "ne pas valider automatiquement"1574015741#: builtin/revert.c:10415742msgid "edit the commit message"15743msgstr "éditer le message de validation"1574415745#: builtin/revert.c:10715746msgid "parent-number"15747msgstr "numéro-de-parent"1574815749#: builtin/revert.c:10815750msgid "select mainline parent"15751msgstr "sélectionner le parent principal"1575215753#: builtin/revert.c:11015754msgid "merge strategy"15755msgstr "stratégie de fusion"1575615757#: builtin/revert.c:11115758msgid "option"15759msgstr "option"1576015761#: builtin/revert.c:11215762msgid "option for merge strategy"15763msgstr "option pour la stratégie de fusion"1576415765#: builtin/revert.c:12115766msgid "append commit name"15767msgstr "ajouter le nom de validation"1576815769#: builtin/revert.c:12315770msgid "preserve initially empty commits"15771msgstr "préserver les validations vides initialement"1577215773#: builtin/revert.c:12515774msgid "keep redundant, empty commits"15775msgstr "garder les validations redondantes, vides"1577615777#: builtin/revert.c:21915778msgid "revert failed"15779msgstr "revert a échoué"1578015781#: builtin/revert.c:23215782msgid "cherry-pick failed"15783msgstr "le picorage a échoué"1578415785#: builtin/rm.c:1815786msgid "git rm [<options>] [--] <file>..."15787msgstr "git rm [<options>] [--] <fichier>..."1578815789#: builtin/rm.c:20615790msgid ""15791"the following file has staged content different from both the\n"15792"file and the HEAD:"15793msgid_plural ""15794"the following files have staged content different from both the\n"15795"file and the HEAD:"15796msgstr[0] ""15797"le fichier suivant a du contenu indexé différent\n"15798"du fichier et de HEAD :"15799msgstr[1] ""15800"les fichiers suivants ont du contenu indexé différent\n"15801"du fichier et de HEAD :"1580215803#: builtin/rm.c:21115804msgid ""15805"\n"15806"(use -f to force removal)"15807msgstr ""15808"\n"15809"(utilisez -f pour forcer la suppression)"1581015811#: builtin/rm.c:21515812msgid "the following file has changes staged in the index:"15813msgid_plural "the following files have changes staged in the index:"15814msgstr[0] "le fichier suivant a des changements indexés :"15815msgstr[1] "les fichiers suivants ont des changements indexés :"1581615817#: builtin/rm.c:219 builtin/rm.c:22815818msgid ""15819"\n"15820"(use --cached to keep the file, or -f to force removal)"15821msgstr ""15822"\n"15823"(utilisez --cached pour garder le fichier, ou -f pour forcer la suppression)"1582415825#: builtin/rm.c:22515826msgid "the following file has local modifications:"15827msgid_plural "the following files have local modifications:"15828msgstr[0] "le fichier suivant a des modifications locales :"15829msgstr[1] "les fichiers suivants ont des modifications locales :"1583015831#: builtin/rm.c:24115832msgid "do not list removed files"15833msgstr "ne pas afficher les fichiers supprimés"1583415835#: builtin/rm.c:24215836msgid "only remove from the index"15837msgstr "supprimer seulement de l'index"1583815839#: builtin/rm.c:24315840msgid "override the up-to-date check"15841msgstr "outrepasser la vérification des fichiers à jour"1584215843#: builtin/rm.c:24415844msgid "allow recursive removal"15845msgstr "autoriser la suppression récursive"1584615847#: builtin/rm.c:24615848msgid "exit with a zero status even if nothing matched"15849msgstr "sortir avec un état zéro même si rien ne correspondait"1585015851#: builtin/rm.c:28815852msgid "please stage your changes to .gitmodules or stash them to proceed"15853msgstr ""15854"veuillez indexer vos modifications de .gitmodules ou les remiser pour "15855"continuer"1585615857#: builtin/rm.c:30615858#, c-format15859msgid "not removing '%s' recursively without -r"15860msgstr "pas de suppression récursive de '%s' sans -r"1586115862#: builtin/rm.c:34515863#, c-format15864msgid "git rm: unable to remove %s"15865msgstr "git rm : impossible de supprimer %s"1586615867#: builtin/rm.c:36815868#, c-format15869msgid "could not remove '%s'"15870msgstr "impossible de supprimer '%s'"1587115872#: builtin/send-pack.c:2015873msgid ""15874"git send-pack [--all | --mirror] [--dry-run] [--force] [--receive-pack=<git-"15875"receive-pack>] [--verbose] [--thin] [--atomic] [<host>:]<directory> "15876"[<ref>...]\n"15877" --all and explicit <ref> specification are mutually exclusive."15878msgstr ""15879"git send-pack [--all | --mirror] [--dry-run] [--force] [--receive-pack=<git-"15880"receive-pack>] [--verbose] [--thin] [--atomic] [<hôte>:]<répertoire> "15881"[<référence>...]\n"15882" --all et la spécification explicite de <référence> sont mutuellement "15883"exclusifs."1588415885#: builtin/send-pack.c:16315886msgid "remote name"15887msgstr "nom distant"1588815889#: builtin/send-pack.c:17715890msgid "use stateless RPC protocol"15891msgstr "utiliser un protocole RPC sans état"1589215893#: builtin/send-pack.c:17815894msgid "read refs from stdin"15895msgstr "lire les références depuis l'entrée standard"1589615897#: builtin/send-pack.c:17915898msgid "print status from remote helper"15899msgstr "afficher les messages du greffon de protocole distant"1590015901#: builtin/serve.c:715902msgid "git serve [<options>]"15903msgstr "git serve [<options>]"1590415905#: builtin/serve.c:17 builtin/upload-pack.c:2315906msgid "quit after a single request/response exchange"15907msgstr "quitter après un unique échange requête/réponse"1590815909#: builtin/serve.c:1915910msgid "exit immediately after advertising capabilities"15911msgstr "sortir immédiatement après l'annonce des capacités"1591215913#: builtin/shortlog.c:1415914msgid "git shortlog [<options>] [<revision-range>] [[--] <path>...]"15915msgstr "git shortlog [<options>] [<intervalle-révisions>] [[--] <chemin>...]"1591615917#: builtin/shortlog.c:1515918msgid "git log --pretty=short | git shortlog [<options>]"15919msgstr "git log --pretty=short | git shortlog [<options>]"1592015921#: builtin/shortlog.c:26415922msgid "Group by committer rather than author"15923msgstr "Grouper par validateur plutôt que par auteur"1592415925#: builtin/shortlog.c:26615926msgid "sort output according to the number of commits per author"15927msgstr "trier la sortie sur le nombre de validations par auteur"1592815929#: builtin/shortlog.c:26815930msgid "Suppress commit descriptions, only provides commit count"15931msgstr ""15932"Supprimer les descriptions de validation, fournit seulement le nombre de "15933"validations"1593415935#: builtin/shortlog.c:27015936msgid "Show the email address of each author"15937msgstr "Afficher l'adresse courriel de chaque auteur"1593815939#: builtin/shortlog.c:27115940msgid "<w>[,<i1>[,<i2>]]"15941msgstr "<w>[,<i1>[,<i2>]]"1594215943#: builtin/shortlog.c:27215944msgid "Linewrap output"15945msgstr "Couper les lignes"1594615947#: builtin/shortlog.c:29915948msgid "too many arguments given outside repository"15949msgstr "trop d'arguments fournis hors d'un dépôt"1595015951#: builtin/show-branch.c:1315952msgid ""15953"git show-branch [-a | --all] [-r | --remotes] [--topo-order | --date-order]\n"15954"\t\t[--current] [--color[=<when>] | --no-color] [--sparse]\n"15955"\t\t[--more=<n> | --list | --independent | --merge-base]\n"15956"\t\t[--no-name | --sha1-name] [--topics] [(<rev> | <glob>)...]"15957msgstr ""15958"git show-branch [-a | --all] [-r|--remotes] [--topo-order | --date-order]\n"15959"\t\t[--current] [--color[=<quand>] | --no-color] [--sparse]\n"15960"\t\t[--more=<n> | --list | --independent | --merge-base]\n"15961"\t\t[--no-name | --sha1-name] [--topics] [(<rév> | <glob>)...]"1596215963#: builtin/show-branch.c:1715964msgid "git show-branch (-g | --reflog)[=<n>[,<base>]] [--list] [<ref>]"15965msgstr "git show-branch (-g | --reflog)[=<n>[,<base>]] [--list] [<référence>]"1596615967#: builtin/show-branch.c:39515968#, c-format15969msgid "ignoring %s; cannot handle more than %d ref"15970msgid_plural "ignoring %s; cannot handle more than %d refs"15971msgstr[0] "%s ignoré; impossible de gérer plus de %d référence"15972msgstr[1] "%s ignoré; impossible de gérer plus de %d références"1597315974#: builtin/show-branch.c:54915975#, c-format15976msgid "no matching refs with %s"15977msgstr "aucune référence correspond à %s"1597815979#: builtin/show-branch.c:64515980msgid "show remote-tracking and local branches"15981msgstr "afficher les branches de suivi distantes et les branches locales"1598215983#: builtin/show-branch.c:64715984msgid "show remote-tracking branches"15985msgstr "afficher les branches de suivi distantes"1598615987#: builtin/show-branch.c:64915988msgid "color '*!+-' corresponding to the branch"15989msgstr "couleur '*!+-' correspondant à la branche"1599015991#: builtin/show-branch.c:65115992msgid "show <n> more commits after the common ancestor"15993msgstr "afficher <n> validations de plus après l'ancêtre commun"1599415995#: builtin/show-branch.c:65315996msgid "synonym to more=-1"15997msgstr "synonyme de more=-1"1599815999#: builtin/show-branch.c:65416000msgid "suppress naming strings"16001msgstr "supprimer les chaînes de nommage"1600216003#: builtin/show-branch.c:65616004msgid "include the current branch"16005msgstr "inclure la branche courante"1600616007#: builtin/show-branch.c:65816008msgid "name commits with their object names"16009msgstr "nommer les validations avec leurs noms d'objet"1601016011#: builtin/show-branch.c:66016012msgid "show possible merge bases"16013msgstr "afficher les bases possibles de fusion"1601416015#: builtin/show-branch.c:66216016msgid "show refs unreachable from any other ref"16017msgstr "afficher les références inaccessibles depuis toute autre référence"1601816019#: builtin/show-branch.c:66416020msgid "show commits in topological order"16021msgstr "afficher les validations dans l'ordre topologique"1602216023#: builtin/show-branch.c:66716024msgid "show only commits not on the first branch"16025msgstr ""16026"afficher seulement les validations qui ne sont pas sur la première branche"1602716028#: builtin/show-branch.c:66916029msgid "show merges reachable from only one tip"16030msgstr "afficher les fusions accessibles depuis une seule pointe"1603116032#: builtin/show-branch.c:67116033msgid "topologically sort, maintaining date order where possible"16034msgstr "tri topologique, maintenant l'ordre par date si possible"1603516036#: builtin/show-branch.c:67416037msgid "<n>[,<base>]"16038msgstr "<n>[,<base>]"1603916040#: builtin/show-branch.c:67516041msgid "show <n> most recent ref-log entries starting at base"16042msgstr ""16043"afficher les <n> plus récents éléments de ref-log en commençant à la base"1604416045#: builtin/show-branch.c:71116046msgid ""16047"--reflog is incompatible with --all, --remotes, --independent or --merge-base"16048msgstr ""16049"--reflog est incompatible avec --all, --remotes, --independant et --merge-"16050"base"1605116052#: builtin/show-branch.c:73516053msgid "no branches given, and HEAD is not valid"16054msgstr "aucune branche spécifiée, et HEAD est invalide"1605516056#: builtin/show-branch.c:73816057msgid "--reflog option needs one branch name"16058msgstr "--reflog requiert un nom de branche"1605916060#: builtin/show-branch.c:74116061#, c-format16062msgid "only %d entry can be shown at one time."16063msgid_plural "only %d entries can be shown at one time."16064msgstr[0] "%d entrée seulement ne peut être montrée en même temps."16065msgstr[1] "%d entrées seulement ne peuvent être montrée en même temps."1606616067#: builtin/show-branch.c:74516068#, c-format16069msgid "no such ref %s"16070msgstr "référence inexistante %s"1607116072#: builtin/show-branch.c:82916073#, c-format16074msgid "cannot handle more than %d rev."16075msgid_plural "cannot handle more than %d revs."16076msgstr[0] "impossible de gérer plus de %d révision."16077msgstr[1] "impossible de gérer plus de %d révisions."1607816079#: builtin/show-branch.c:83316080#, c-format16081msgid "'%s' is not a valid ref."16082msgstr "'%s' n'est pas une référence valide."1608316084#: builtin/show-branch.c:83616085#, c-format16086msgid "cannot find commit %s (%s)"16087msgstr "impossible de trouver le commit %s (%s)"1608816089#: builtin/show-ref.c:1116090msgid ""16091"git show-ref [-q | --quiet] [--verify] [--head] [-d | --dereference] [-s | --"16092"hash[=<n>]] [--abbrev[=<n>]] [--tags] [--heads] [--] [<pattern>...]"16093msgstr ""16094"git show-ref [-q | --quiet] [--verify] [--head] [-d | --dereference] [-s | --"16095"hash[=<n>]] [--abbrev[=<n>]] [--tags] [--heads] [--] [<motif>...]"1609616097#: builtin/show-ref.c:1216098msgid "git show-ref --exclude-existing[=<pattern>]"16099msgstr "git show-ref --exclude-existing[=<motif>]"1610016101#: builtin/show-ref.c:16016102msgid "only show tags (can be combined with heads)"16103msgstr "afficher seulement les étiquettes (peut être combiné avec heads)"1610416105#: builtin/show-ref.c:16116106msgid "only show heads (can be combined with tags)"16107msgstr "afficher seulement les têtes (peut être combiné avec tags)"1610816109#: builtin/show-ref.c:16216110msgid "stricter reference checking, requires exact ref path"16111msgstr ""16112"vérification de référence plus stricte, nécessite un chemin de référence "16113"exact"1611416115#: builtin/show-ref.c:165 builtin/show-ref.c:16716116msgid "show the HEAD reference, even if it would be filtered out"16117msgstr "afficher la référence HEAD, même si elle serait filtrée"1611816119#: builtin/show-ref.c:16916120msgid "dereference tags into object IDs"16121msgstr "déréférencer les étiquettes en IDs d'objet"1612216123#: builtin/show-ref.c:17116124msgid "only show SHA1 hash using <n> digits"16125msgstr "afficher seulement le hachage SHA1 en utilisant <n> chiffres"1612616127#: builtin/show-ref.c:17516128msgid "do not print results to stdout (useful with --verify)"16129msgstr ""16130"ne pas afficher les résultats sur la sortie standard (pratique avec --verify)"1613116132#: builtin/show-ref.c:17716133msgid "show refs from stdin that aren't in local repository"16134msgstr ""16135"afficher les références de l'entrée standard qui ne sont pas dans le dépôt "16136"local"1613716138#: builtin/stripspace.c:1816139msgid "git stripspace [-s | --strip-comments]"16140msgstr "git stripspace [-s | --strip-comments]"1614116142#: builtin/stripspace.c:1916143msgid "git stripspace [-c | --comment-lines]"16144msgstr "git stripspace [-c | --comment-lines]"1614516146#: builtin/stripspace.c:3616147msgid "skip and remove all lines starting with comment character"16148msgstr ""16149"sauter et supprimer toutes les lignes commençant par le caractère de "16150"commentaire"1615116152#: builtin/stripspace.c:3916153msgid "prepend comment character and space to each line"16154msgstr "ajouter devant chaque ligne le caractère de commentaire et un espace"1615516156#: builtin/submodule--helper.c:37 builtin/submodule--helper.c:183316157#, c-format16158msgid "No such ref: %s"16159msgstr "Référence inexistante : %s"1616016161#: builtin/submodule--helper.c:44 builtin/submodule--helper.c:184216162#, c-format16163msgid "Expecting a full ref name, got %s"16164msgstr "Nom de référence complet attendu, %s obtenu"1616516166#: builtin/submodule--helper.c:6116167msgid "submodule--helper print-default-remote takes no arguments"16168msgstr "submodule--helper print-default-remote n'accepte aucun argument"1616916170#: builtin/submodule--helper.c:9916171#, c-format16172msgid "cannot strip one component off url '%s'"16173msgstr "impossible de supprimer un composant de l'URL '%s'"1617416175#: builtin/submodule--helper.c:407 builtin/submodule--helper.c:135616176msgid "alternative anchor for relative paths"16177msgstr "ancre alternative pour les chemins relatifs"1617816179#: builtin/submodule--helper.c:41216180msgid "git submodule--helper list [--prefix=<path>] [<path>...]"16181msgstr "git submodule--helper list [--prefix=<chemin>] [<chemin>...]"1618216183#: builtin/submodule--helper.c:469 builtin/submodule--helper.c:60616184#: builtin/submodule--helper.c:62916185#, c-format16186msgid "No url found for submodule path '%s' in .gitmodules"16187msgstr "URL non trouvée pour le chemin de sous-module '%s' dans .gitmodules"1618816189#: builtin/submodule--helper.c:52116190#, c-format16191msgid "Entering '%s'\n"16192msgstr "Entrée dans '%s'\n"1619316194#: builtin/submodule--helper.c:52416195#, c-format16196msgid ""16197"run_command returned non-zero status for %s\n"16198"."16199msgstr ""16200"run_command a retourné un statut non-nul pour %s\n"16201"."1620216203#: builtin/submodule--helper.c:54516204#, c-format16205msgid ""16206"run_command returned non-zero status while recursing in the nested "16207"submodules of %s\n"16208"."16209msgstr ""16210"run_command a retourné un statut non-nul pendant la récursion dans les sous-modules inclus de %s\n"16211"."1621216213#: builtin/submodule--helper.c:56116214msgid "Suppress output of entering each submodule command"16215msgstr ""16216"Supprimer la sortie lors de l'entrée dans chaque commande de sous-module"1621716218#: builtin/submodule--helper.c:563 builtin/submodule--helper.c:104016219msgid "Recurse into nested submodules"16220msgstr "Parcourir récursivement les sous-modules"1622116222#: builtin/submodule--helper.c:56816223msgid "git submodule--helper foreach [--quiet] [--recursive] <command>"16224msgstr "git submodule--helper foreach [--quiet] [--recursive] <chemin>"1622516226#: builtin/submodule--helper.c:64416227#, c-format16228msgid ""16229"could not lookup configuration '%s'. Assuming this repository is its own "16230"authoritative upstream."16231msgstr ""16232"impossible de trouver la configuration '%s'. Ce dépôt est considéré comme "16233"son propre amont d'autorité."1623416235#: builtin/submodule--helper.c:65516236#, c-format16237msgid "Failed to register url for submodule path '%s'"16238msgstr "Échec d'enregistrement de l'URL pour le chemin de sous-module '%s'"1623916240#: builtin/submodule--helper.c:65916241#, c-format16242msgid "Submodule '%s' (%s) registered for path '%s'\n"16243msgstr "Sous-module '%s' (%s) enregistré pour le chemin '%s'\n"1624416245#: builtin/submodule--helper.c:66916246#, c-format16247msgid "warning: command update mode suggested for submodule '%s'\n"16248msgstr ""16249"attention : nous vous suggérons de spécifier une commande de mode de mise à "16250"jour pour le sous-module '%s'\n"1625116252#: builtin/submodule--helper.c:67616253#, c-format16254msgid "Failed to register update mode for submodule path '%s'"16255msgstr ""16256"Échec d'enregistrement du mode de mise à jour pour le chemin de sous-module "16257"'%s'"1625816259#: builtin/submodule--helper.c:69816260msgid "Suppress output for initializing a submodule"16261msgstr "Supprimer la sortie lors de l'initialisation d'un sous-module"1626216263#: builtin/submodule--helper.c:70316264msgid "git submodule--helper init [<path>]"16265msgstr "git submodule--helper init [<chemin>]"1626616267#: builtin/submodule--helper.c:775 builtin/submodule--helper.c:90116268#, c-format16269msgid "no submodule mapping found in .gitmodules for path '%s'"16270msgstr ""16271"Pas de mise en correspondance du sous-module trouvé dans .gitmodules pour le "16272"chemin '%s'"1627316274#: builtin/submodule--helper.c:81416275#, c-format16276msgid "could not resolve HEAD ref inside the submodule '%s'"16277msgstr "impossible de résoudre HEAD dans le sous-module '%s'"1627816279#: builtin/submodule--helper.c:841 builtin/submodule--helper.c:101016280#, c-format16281msgid "failed to recurse into submodule '%s'"16282msgstr "récursion impossible dans le sous-module '%s'"1628316284#: builtin/submodule--helper.c:865 builtin/submodule--helper.c:117616285msgid "Suppress submodule status output"16286msgstr "supprimer la sortie d'état du sous-module"1628716288#: builtin/submodule--helper.c:86616289msgid ""16290"Use commit stored in the index instead of the one stored in the submodule "16291"HEAD"16292msgstr ""16293"Utiliser le commit stocké dans l'index au lieu de celui stocké dans la HEAD "16294"du sous-module"1629516296#: builtin/submodule--helper.c:86716297msgid "recurse into nested submodules"16298msgstr "parcourir récursivement les sous-modules"1629916300#: builtin/submodule--helper.c:87216301msgid "git submodule status [--quiet] [--cached] [--recursive] [<path>...]"16302msgstr "git submodule status [--quiet] [--cached] [--recursive] [<chemin>...]"1630316304#: builtin/submodule--helper.c:89616305msgid "git submodule--helper name <path>"16306msgstr "git submodule--helper <nom> <chemin>"1630716308#: builtin/submodule--helper.c:96016309#, c-format16310msgid "Synchronizing submodule url for '%s'\n"16311msgstr "Synchronisation de l'URL sous-module pour '%s'\n"1631216313#: builtin/submodule--helper.c:96616314#, c-format16315msgid "failed to register url for submodule path '%s'"16316msgstr "échec d'enregistrement de l'URL pour le chemin de sous-module '%s'"1631716318#: builtin/submodule--helper.c:98016319#, c-format16320msgid "failed to get the default remote for submodule '%s'"16321msgstr "échec d'obtention du dépôt distant par défaut pour le sous-module '%s'"1632216323#: builtin/submodule--helper.c:99116324#, c-format16325msgid "failed to update remote for submodule '%s'"16326msgstr "échec de mise à jour du dépôt distant pour le sous-module '%s'"1632716328#: builtin/submodule--helper.c:103816329msgid "Suppress output of synchronizing submodule url"16330msgstr ""16331"Supprimer la sortie lors de la synchronisation de l'URL d'un sous-module"1633216333#: builtin/submodule--helper.c:104516334msgid "git submodule--helper sync [--quiet] [--recursive] [<path>]"16335msgstr "git submodule--helper sync [--quiet] [--recursive] [<chemin>]"1633616337#: builtin/submodule--helper.c:109916338#, c-format16339msgid ""16340"Submodule work tree '%s' contains a .git directory (use 'rm -rf' if you "16341"really want to remove it including all of its history)"16342msgstr ""16343"L'arbre de travail du sous-module '%s' contient un répertoire .git (utilisez "16344"'rm -rf' si vous voulez vraiment le supprimer en incluant tout son "16345"historique)"1634616347#: builtin/submodule--helper.c:111116348#, c-format16349msgid ""16350"Submodule work tree '%s' contains local modifications; use '-f' to discard "16351"them"16352msgstr ""16353"L'arbre de travail du sous-module '%s' contient des modifications locales ; "16354"utilisez '-f' pour les annuler"1635516356#: builtin/submodule--helper.c:111916357#, c-format16358msgid "Cleared directory '%s'\n"16359msgstr "Répertoire '%s' nettoyé\n"1636016361#: builtin/submodule--helper.c:112116362#, c-format16363msgid "Could not remove submodule work tree '%s'\n"16364msgstr "Impossible de supprimer l'arbre de travail du sous-module '%s'\n"1636516366#: builtin/submodule--helper.c:113216367#, c-format16368msgid "could not create empty submodule directory %s"16369msgstr "impossible de créer le répertoire vide du sous-module %s"1637016371#: builtin/submodule--helper.c:114816372#, c-format16373msgid "Submodule '%s' (%s) unregistered for path '%s'\n"16374msgstr "Sous-module '%s' (%s) non enregistré pour le chemin '%s'\n"1637516376#: builtin/submodule--helper.c:117716377msgid "Remove submodule working trees even if they contain local changes"16378msgstr ""16379"Éliminer les arbres de travail des sous-modules même s'ils contiennent des "16380"modifications locales"1638116382#: builtin/submodule--helper.c:117816383msgid "Unregister all submodules"16384msgstr "Désenregistrer tous les sous-modules"1638516386#: builtin/submodule--helper.c:118316387msgid ""16388"git submodule deinit [--quiet] [-f | --force] [--all | [--] [<path>...]]"16389msgstr ""16390"git submodule deinit [--quiet] [-f | --force] [--all | [--] [<chemin>...]]"1639116392#: builtin/submodule--helper.c:119716393msgid "Use '--all' if you really want to deinitialize all submodules"16394msgstr ""16395"Utilisez '--all' si vous voulez vraiment réinitialiser tous les sous-modules"1639616397#: builtin/submodule--helper.c:1290 builtin/submodule--helper.c:129316398#, c-format16399msgid "submodule '%s' cannot add alternate: %s"16400msgstr "le sous-module '%s' ne peut pas ajouter d'alternative : %s"1640116402#: builtin/submodule--helper.c:132916403#, c-format16404msgid "Value '%s' for submodule.alternateErrorStrategy is not recognized"16405msgstr ""16406"La valeur '%s' pour submodule.alternateErrorStrategy n'est pas reconnue"1640716408#: builtin/submodule--helper.c:133616409#, c-format16410msgid "Value '%s' for submodule.alternateLocation is not recognized"16411msgstr "La valeur '%s' pour submodule.alternateLocation n'est pas reconnue"1641216413#: builtin/submodule--helper.c:135916414msgid "where the new submodule will be cloned to"16415msgstr "emplacement où le sous-module sera cloné"1641616417#: builtin/submodule--helper.c:136216418msgid "name of the new submodule"16419msgstr "nom du nouveau sous-module"1642016421#: builtin/submodule--helper.c:136516422msgid "url where to clone the submodule from"16423msgstr "URL depuis laquelle cloner le sous-module"1642416425#: builtin/submodule--helper.c:137316426msgid "depth for shallow clones"16427msgstr "profondeur de l'historique des clones superficiels"1642816429#: builtin/submodule--helper.c:1376 builtin/submodule--helper.c:175116430msgid "force cloning progress"16431msgstr "forcer l'affichage de la progression du clonage"1643216433#: builtin/submodule--helper.c:138116434msgid ""16435"git submodule--helper clone [--prefix=<path>] [--quiet] [--reference "16436"<repository>] [--name <name>] [--depth <depth>] --url <url> --path <path>"16437msgstr ""16438"git submodule--helper clone [--prefix=<chemin>] [--quiet] [--reference "16439"<dépôt>] [--name <nom>] [--depth <profondeur>] --url <url> --path <chemin>"1644016441#: builtin/submodule--helper.c:141216442#, c-format16443msgid "clone of '%s' into submodule path '%s' failed"16444msgstr "Le clonage de '%s' dans le chemin de sous-module '%s' a échoué"1644516446#: builtin/submodule--helper.c:142616447#, c-format16448msgid "could not get submodule directory for '%s'"16449msgstr "impossible de créer le répertoire de sous-module pour '%s'"1645016451#: builtin/submodule--helper.c:149216452#, c-format16453msgid "Submodule path '%s' not initialized"16454msgstr "Le chemin de sous-module '%s' n'est pas initialisé"1645516456#: builtin/submodule--helper.c:149616457msgid "Maybe you want to use 'update --init'?"16458msgstr "Vous voudriez sûrement utiliser 'update --init' ?"1645916460#: builtin/submodule--helper.c:152516461#, c-format16462msgid "Skipping unmerged submodule %s"16463msgstr "Sous-module non fusionné %s non traité"1646416465#: builtin/submodule--helper.c:155416466#, c-format16467msgid "Skipping submodule '%s'"16468msgstr "Sous-module '%s' non traité"1646916470#: builtin/submodule--helper.c:168916471#, c-format16472msgid "Failed to clone '%s'. Retry scheduled"16473msgstr "Impossible de cloner '%s'. Réessai prévu"1647416475#: builtin/submodule--helper.c:170016476#, c-format16477msgid "Failed to clone '%s' a second time, aborting"16478msgstr "Impossible de cloner '%s' pour la seconde fois, abandon"1647916480#: builtin/submodule--helper.c:1730 builtin/submodule--helper.c:195316481msgid "path into the working tree"16482msgstr "chemin dans la copie de travail"1648316484#: builtin/submodule--helper.c:173316485msgid "path into the working tree, across nested submodule boundaries"16486msgstr ""16487"chemin dans la copie de travail, traversant les frontières de sous-modules"1648816489#: builtin/submodule--helper.c:173716490msgid "rebase, merge, checkout or none"16491msgstr "valeurs possibles : rebase, merge, checkout ou none"1649216493#: builtin/submodule--helper.c:174316494msgid "Create a shallow clone truncated to the specified number of revisions"16495msgstr "Créer un clone superficiel tronqué au nombre de révisions spécifié"1649616497#: builtin/submodule--helper.c:174616498msgid "parallel jobs"16499msgstr "jobs parallèles"1650016501#: builtin/submodule--helper.c:174816502msgid "whether the initial clone should follow the shallow recommendation"16503msgstr "spécifie si le clonage initial doit être aussi superficiel"1650416505#: builtin/submodule--helper.c:174916506msgid "don't print cloning progress"16507msgstr "ne pas afficher la progression du clonage"1650816509#: builtin/submodule--helper.c:175616510msgid "git submodule--helper update_clone [--prefix=<path>] [<path>...]"16511msgstr "git submodule--helper update_clone [--prefix=<chemin>] [<chemin>...]"1651216513#: builtin/submodule--helper.c:176916514msgid "bad value for update parameter"16515msgstr "valeur invalide pour la mise à jour du paramètre"1651616517#: builtin/submodule--helper.c:183716518#, c-format16519msgid ""16520"Submodule (%s) branch configured to inherit branch from superproject, but "16521"the superproject is not on any branch"16522msgstr ""16523"la branche du sous-module %s est configurée pour hériter de la branche du "16524"superprojet, mais le superprojet n'est sur aucune branche"1652516526#: builtin/submodule--helper.c:195416527msgid "recurse into submodules"16528msgstr "parcourir récursivement les sous-modules"1652916530#: builtin/submodule--helper.c:196016531msgid "git submodule--helper embed-git-dir [<path>...]"16532msgstr "git submodule--helper embed-git-dir [<chemin>...]"1653316534#: builtin/submodule--helper.c:207116535#, c-format16536msgid "%s doesn't support --super-prefix"16537msgstr "%s ne gère pas --super-prefix"1653816539#: builtin/submodule--helper.c:207716540#, c-format16541msgid "'%s' is not a valid submodule--helper subcommand"16542msgstr "'%s' n'est pas une sous-commande valide de submodule--helper"1654316544#: builtin/symbolic-ref.c:816545msgid "git symbolic-ref [<options>] <name> [<ref>]"16546msgstr "git symbolic-ref [<options>] nom [<référence>]"1654716548#: builtin/symbolic-ref.c:916549msgid "git symbolic-ref -d [-q] <name>"16550msgstr "git symbolic-ref -d [-q] <nom>"1655116552#: builtin/symbolic-ref.c:4016553msgid "suppress error message for non-symbolic (detached) refs"16554msgstr ""16555"supprimer le message d'erreur pour une référence non symbolique (détachée)"1655616557#: builtin/symbolic-ref.c:4116558msgid "delete symbolic ref"16559msgstr "supprimer la référence symbolique"1656016561#: builtin/symbolic-ref.c:4216562msgid "shorten ref output"16563msgstr "raccourcir l'affichage de la référence"1656416565#: builtin/symbolic-ref.c:43 builtin/update-ref.c:36316566msgid "reason"16567msgstr "raison"1656816569#: builtin/symbolic-ref.c:43 builtin/update-ref.c:36316570msgid "reason of the update"16571msgstr "raison de la mise à jour"1657216573#: builtin/tag.c:2516574msgid ""16575"git tag [-a | -s | -u <key-id>] [-f] [-m <msg> | -F <file>] <tagname> "16576"[<head>]"16577msgstr ""16578"git tag [-a | -s | -u <id-clé>] [-f] [-m <message> | -F <file>] <nom-"16579"étiquette> [<head>]"1658016581#: builtin/tag.c:2616582msgid "git tag -d <tagname>..."16583msgstr "git tag -d <nométiquette>..."1658416585#: builtin/tag.c:2716586msgid ""16587"git tag -l [-n[<num>]] [--contains <commit>] [--no-contains <commit>] [--"16588"points-at <object>]\n"16589"\t\t[--format=<format>] [--[no-]merged [<commit>]] [<pattern>...]"16590msgstr ""16591"git tag -l [-n[<num>]] [--contains <commit>] [--no-contains <commit>] [--"16592"points-at <objet>]\n"16593"\t\t[--format=<format>] [--[no-]merged [<commit>]] [<motif>...]"1659416595#: builtin/tag.c:2916596msgid "git tag -v [--format=<format>] <tagname>..."16597msgstr "git tag -v [--format=<format>] <nométiquette>..."1659816599#: builtin/tag.c:8716600#, c-format16601msgid "tag '%s' not found."16602msgstr "étiquette '%s' non trouvée."1660316604#: builtin/tag.c:10316605#, c-format16606msgid "Deleted tag '%s' (was %s)\n"16607msgstr "Étiquette '%s' supprimée (elle était sur %s)\n"1660816609#: builtin/tag.c:13316610#, c-format16611msgid ""16612"\n"16613"Write a message for tag:\n"16614" %s\n"16615"Lines starting with '%c' will be ignored.\n"16616msgstr ""16617"\n"16618"Écrivez un message pour l'étiquette :\n"16619" %s\n"16620"Les lignes commençant par '%c' seront ignorées.\n"1662116622#: builtin/tag.c:13716623#, c-format16624msgid ""16625"\n"16626"Write a message for tag:\n"16627" %s\n"16628"Lines starting with '%c' will be kept; you may remove them yourself if you "16629"want to.\n"16630msgstr ""16631"\n"16632"Écrivez un message pour l'étiquette :\n"16633" %s\n"16634"Les lignes commençant par '%c' seront gardées ; vous pouvez les retirer vous-"16635"même si vous le souhaitez.\n"1663616637#: builtin/tag.c:19116638msgid "unable to sign the tag"16639msgstr "impossible de signer l'étiquette"1664016641#: builtin/tag.c:19316642msgid "unable to write tag file"16643msgstr "impossible d'écrire le fichier d'étiquettes"1664416645#: builtin/tag.c:21816646msgid "bad object type."16647msgstr "mauvais type d'objet."1664816649#: builtin/tag.c:26716650msgid "no tag message?"16651msgstr "pas de message pour l'étiquette ?"1665216653#: builtin/tag.c:27416654#, c-format16655msgid "The tag message has been left in %s\n"16656msgstr "Le message pour l'étiquette a été laissé dans %s\n"1665716658#: builtin/tag.c:38316659msgid "list tag names"16660msgstr "afficher les noms des étiquettes"1666116662#: builtin/tag.c:38516663msgid "print <n> lines of each tag message"16664msgstr "affiche <n> lignes de chaque message d'étiquette"1666516666#: builtin/tag.c:38716667msgid "delete tags"16668msgstr "supprimer des étiquettes"1666916670#: builtin/tag.c:38816671msgid "verify tags"16672msgstr "vérifier des étiquettes"1667316674#: builtin/tag.c:39016675msgid "Tag creation options"16676msgstr "Options de création de l'étiquette"1667716678#: builtin/tag.c:39216679msgid "annotated tag, needs a message"16680msgstr "étiquette annotée, nécessite un message"1668116682#: builtin/tag.c:39416683msgid "tag message"16684msgstr "message pour l'étiquette"1668516686#: builtin/tag.c:39616687msgid "force edit of tag message"16688msgstr "forcer l'édition du message d'étiquetage"1668916690#: builtin/tag.c:39716691msgid "annotated and GPG-signed tag"16692msgstr "étiquette annotée et signée avec GPG"1669316694#: builtin/tag.c:40116695msgid "use another key to sign the tag"16696msgstr "utiliser une autre clé pour signer l'étiquette"1669716698#: builtin/tag.c:40216699msgid "replace the tag if exists"16700msgstr "remplacer l'étiquette si elle existe"1670116702#: builtin/tag.c:403 builtin/update-ref.c:36916703msgid "create a reflog"16704msgstr "créer un reflog"1670516706#: builtin/tag.c:40516707msgid "Tag listing options"16708msgstr "Options d'affichage des étiquettes"1670916710#: builtin/tag.c:40616711msgid "show tag list in columns"16712msgstr "afficher la liste des étiquettes sous forme de colonnes"1671316714#: builtin/tag.c:407 builtin/tag.c:40916715msgid "print only tags that contain the commit"16716msgstr "afficher seulement les étiquettes qui contiennent la validation"1671716718#: builtin/tag.c:408 builtin/tag.c:41016719msgid "print only tags that don't contain the commit"16720msgstr "afficher seulement les étiquettes qui ne contiennent pas la validation"1672116722#: builtin/tag.c:41116723msgid "print only tags that are merged"16724msgstr "afficher seulement les étiquettes qui sont fusionnées"1672516726#: builtin/tag.c:41216727msgid "print only tags that are not merged"16728msgstr "afficher seulement les étiquettes qui ne sont pas fusionnées"1672916730#: builtin/tag.c:41716731msgid "print only tags of the object"16732msgstr "afficher seulement les étiquettes de l'objet"1673316734#: builtin/tag.c:46116735msgid "--column and -n are incompatible"16736msgstr "--column et -n sont incompatibles"1673716738#: builtin/tag.c:48316739msgid "-n option is only allowed in list mode"16740msgstr "l'option -n est autorisée seulement en mode de liste"1674116742#: builtin/tag.c:48516743msgid "--contains option is only allowed in list mode"16744msgstr "l'option --contains est autorisée seulement en mode de liste"1674516746#: builtin/tag.c:48716747msgid "--no-contains option is only allowed in list mode"16748msgstr "l'option --contains est autorisée seulement en mode liste"1674916750#: builtin/tag.c:48916751msgid "--points-at option is only allowed in list mode"16752msgstr "l'option --points-at est autorisée seulement en mode liste"1675316754#: builtin/tag.c:49116755msgid "--merged and --no-merged options are only allowed in list mode"16756msgstr ""16757"les options --merged et --no-merged ne sont autorisées qu'en mode liste"1675816759#: builtin/tag.c:50216760msgid "only one -F or -m option is allowed."16761msgstr "une seule option -F ou -m est autorisée."1676216763#: builtin/tag.c:52116764msgid "too many params"16765msgstr "trop de paramètres"1676616767#: builtin/tag.c:52716768#, c-format16769msgid "'%s' is not a valid tag name."16770msgstr "'%s' n'est pas un nom d'étiquette valide."1677116772#: builtin/tag.c:53216773#, c-format16774msgid "tag '%s' already exists"16775msgstr "l'étiquette '%s' existe déjà"1677616777#: builtin/tag.c:56316778#, c-format16779msgid "Updated tag '%s' (was %s)\n"16780msgstr "Étiquette '%s' mise à jour (elle était sur %s)\n"1678116782#: builtin/unpack-objects.c:50016783msgid "Unpacking objects"16784msgstr "Dépaquetage des objets"1678516786#: builtin/update-index.c:8216787#, c-format16788msgid "failed to create directory %s"16789msgstr "échec de la création du répertoire %s"1679016791#: builtin/update-index.c:9816792#, c-format16793msgid "failed to create file %s"16794msgstr "échec de la création du fichier %s"1679516796#: builtin/update-index.c:10616797#, c-format16798msgid "failed to delete file %s"16799msgstr "échec de la suppression du fichier %s"1680016801#: builtin/update-index.c:113 builtin/update-index.c:21916802#, c-format16803msgid "failed to delete directory %s"16804msgstr "échec de la suppression du répertoire %s"1680516806#: builtin/update-index.c:13816807#, c-format16808msgid "Testing mtime in '%s' "16809msgstr "Test du mtime dans '%s' "1681016811#: builtin/update-index.c:15216812msgid "directory stat info does not change after adding a new file"16813msgstr ""16814"l'information de stat du répertoire ne change pas après ajout d'un fichier"1681516816#: builtin/update-index.c:16516817msgid "directory stat info does not change after adding a new directory"16818msgstr ""16819"l'information de stat du répertoire ne change pas après ajout d'un répertoire"1682016821#: builtin/update-index.c:17816822msgid "directory stat info changes after updating a file"16823msgstr ""16824"l'information de stat du répertoire change après mise à jour d'un fichier"1682516826#: builtin/update-index.c:18916827msgid "directory stat info changes after adding a file inside subdirectory"16828msgstr ""16829"l'information de stat du répertoire change après l'ajout d'un fichier dans "16830"un sous-répertoire"1683116832#: builtin/update-index.c:20016833msgid "directory stat info does not change after deleting a file"16834msgstr ""16835"l'information de stat du répertoire ne change pas après la suppression d'un "16836"fichier<"1683716838#: builtin/update-index.c:21316839msgid "directory stat info does not change after deleting a directory"16840msgstr ""16841"l'information de stat du répertoire ne change pas après la suppression d'un "16842"répertoire"1684316844#: builtin/update-index.c:22016845msgid " OK"16846msgstr " OK"1684716848#: builtin/update-index.c:58816849msgid "git update-index [<options>] [--] [<file>...]"16850msgstr "git update-index [<options>] [--] [<fichier>...]"1685116852#: builtin/update-index.c:94416853msgid "continue refresh even when index needs update"16854msgstr "continuer de rafraîchir même si l'index a besoin d'une mise à jour"1685516856#: builtin/update-index.c:94716857msgid "refresh: ignore submodules"16858msgstr "rafraîchir : ignorer les sous-modules"1685916860#: builtin/update-index.c:95016861msgid "do not ignore new files"16862msgstr "ne pas ignorer les nouveaux fichiers"1686316864#: builtin/update-index.c:95216865msgid "let files replace directories and vice-versa"16866msgstr "laisser les fichiers remplacer des répertoires et vice-versa"1686716868#: builtin/update-index.c:95416869msgid "notice files missing from worktree"16870msgstr "aviser des fichiers manquants dans la copie de travail"1687116872#: builtin/update-index.c:95616873msgid "refresh even if index contains unmerged entries"16874msgstr "rafraîchir même si l'index contient des éléments non fusionnés"1687516876#: builtin/update-index.c:95916877msgid "refresh stat information"16878msgstr "rafraîchir l'information de stat"1687916880#: builtin/update-index.c:96316881msgid "like --refresh, but ignore assume-unchanged setting"16882msgstr "comme --refresh, mais en ignorant l'option assume-unchanged"1688316884#: builtin/update-index.c:96716885msgid "<mode>,<object>,<path>"16886msgstr "<mode>, <objet>, <chemin>"1688716888#: builtin/update-index.c:96816889msgid "add the specified entry to the index"16890msgstr "ajouter l'élément spécifié dans l'index"1689116892#: builtin/update-index.c:97716893msgid "mark files as \"not changing\""16894msgstr "marquer les fichiers comme \"non changeants\""1689516896#: builtin/update-index.c:98016897msgid "clear assumed-unchanged bit"16898msgstr "mettre à zéro le bit supposé-non-modifié"1689916900#: builtin/update-index.c:98316901msgid "mark files as \"index-only\""16902msgstr "marquer les fichiers comme \"index seulement\""1690316904#: builtin/update-index.c:98616905msgid "clear skip-worktree bit"16906msgstr "mettre à zéro le bit sauter-la-copie-de travail"1690716908#: builtin/update-index.c:98916909msgid "add to index only; do not add content to object database"16910msgstr ""16911"ajouter seulement à l'index ; ne pas ajouter le contenu dans la base de "16912"données des objets"1691316914#: builtin/update-index.c:99116915msgid "remove named paths even if present in worktree"16916msgstr ""16917"supprimer les chemins nommés même s'ils sont présents dans la copie de "16918"travail"1691916920#: builtin/update-index.c:99316921msgid "with --stdin: input lines are terminated by null bytes"16922msgstr "avec --stdin : les lignes en entrée sont terminées par des octets nuls"1692316924#: builtin/update-index.c:99516925msgid "read list of paths to be updated from standard input"16926msgstr "lire la liste des chemins à mettre à jour depuis l'entrée standard"1692716928#: builtin/update-index.c:99916929msgid "add entries from standard input to the index"16930msgstr "ajouter les éléments depuis l'entrée standard à l'index"1693116932#: builtin/update-index.c:100316933msgid "repopulate stages #2 and #3 for the listed paths"16934msgstr "repeupler les étapes n°2 et n°3 pour les chemins listés"1693516936#: builtin/update-index.c:100716937msgid "only update entries that differ from HEAD"16938msgstr "mettre à jour seulement les éléments qui diffèrent de HEAD"1693916940#: builtin/update-index.c:101116941msgid "ignore files missing from worktree"16942msgstr "ignorer les fichiers manquants dans la copie de travail"1694316944#: builtin/update-index.c:101416945msgid "report actions to standard output"16946msgstr "afficher les actions sur la sortie standard"1694716948#: builtin/update-index.c:101616949msgid "(for porcelains) forget saved unresolved conflicts"16950msgstr "(pour porcelaines) oublier les conflits sauvés et non résolus"1695116952#: builtin/update-index.c:102016953msgid "write index in this format"16954msgstr "écrire l'index dans ce format"1695516956#: builtin/update-index.c:102216957msgid "enable or disable split index"16958msgstr "activer ou désactiver l'index divisé"1695916960#: builtin/update-index.c:102416961msgid "enable/disable untracked cache"16962msgstr "activer ou désactiver le cache de non-suivis"1696316964#: builtin/update-index.c:102616965msgid "test if the filesystem supports untracked cache"16966msgstr "tester si le système de fichier supporte le cache de non-suivis"1696716968#: builtin/update-index.c:102816969msgid "enable untracked cache without testing the filesystem"16970msgstr "activer le cache de non-suivis sans tester le système de fichier"1697116972#: builtin/update-index.c:103016973msgid "write out the index even if is not flagged as changed"16974msgstr "écrire l'index même s'il n'est pas marqué comme modifié"1697516976#: builtin/update-index.c:103216977msgid "enable or disable file system monitor"16978msgstr ""16979"activer ou désactiver la surveillance du système de fichier (fsmonitor)"1698016981#: builtin/update-index.c:103416982msgid "mark files as fsmonitor valid"16983msgstr "marquer les fichiers comme valides pour fsmonitor"1698416985#: builtin/update-index.c:103716986msgid "clear fsmonitor valid bit"16987msgstr "effacer le bit de validité fsmonitor"1698816989#: builtin/update-index.c:113616990msgid ""16991"core.splitIndex is set to false; remove or change it, if you really want to "16992"enable split index"16993msgstr ""16994"core.splitIndex est réglé à false ; supprimez-le ou changez-le si vous "16995"souhaitez vraiment activer l'index coupé"1699616997#: builtin/update-index.c:114516998msgid ""16999"core.splitIndex is set to true; remove or change it, if you really want to "17000"disable split index"17001msgstr ""17002"core.splitIndex est réglé à vrai ; supprimez-le ou changez-le si vous "17003"souhaitez vraiment désactiver l'index coupé"1700417005#: builtin/update-index.c:115617006msgid ""17007"core.untrackedCache is set to true; remove or change it, if you really want "17008"to disable the untracked cache"17009msgstr ""17010"core.untrackedCache est réglé à true ; supprimez-le ou changez-le si vous "17011"souhaitez vraiment désactiver le cache des fichiers non-suivis"1701217013#: builtin/update-index.c:116017014msgid "Untracked cache disabled"17015msgstr "Le cache non suivi est désactivé"1701617017#: builtin/update-index.c:116817018msgid ""17019"core.untrackedCache is set to false; remove or change it, if you really want "17020"to enable the untracked cache"17021msgstr ""17022"core.untrackedCache est réglé à false ; supprimez-le ou changez-le si vous "17023"souhaitez vraiment activer le cache des fichiers non-suivis"1702417025#: builtin/update-index.c:117217026#, c-format17027msgid "Untracked cache enabled for '%s'"17028msgstr "Le cache non suivi est activé pour '%s'"1702917030#: builtin/update-index.c:118017031msgid "core.fsmonitor is unset; set it if you really want to enable fsmonitor"17032msgstr ""17033"core.fsmonitor est réglé à false ; changez-le si vous souhaitez vraiment "17034"activer la surveillance du système de fichiers"1703517036#: builtin/update-index.c:118417037msgid "fsmonitor enabled"17038msgstr "fsmonitor activé"1703917040#: builtin/update-index.c:118717041msgid ""17042"core.fsmonitor is set; remove it if you really want to disable fsmonitor"17043msgstr ""17044"core.fsmonitor est réglé à true ; supprimez-le ou changez-le si vous "17045"souhaitez vraiment désactiver la surveillance du système de fichiers"1704617047#: builtin/update-index.c:119117048msgid "fsmonitor disabled"17049msgstr "fsmonitor désactivé"1705017051#: builtin/update-ref.c:1017052msgid "git update-ref [<options>] -d <refname> [<old-val>]"17053msgstr "git update-ref [<options>] -d <nom-référence> [<ancienne-valeur>]"1705417055#: builtin/update-ref.c:1117056msgid "git update-ref [<options>] <refname> <new-val> [<old-val>]"17057msgstr ""17058"git update-ref [<options>] <nom-référence> <nouvelle-valeur> [<ancienne-"17059"valeur>]"1706017061#: builtin/update-ref.c:1217062msgid "git update-ref [<options>] --stdin [-z]"17063msgstr "git update-ref [<options>] --stdin [-z]"1706417065#: builtin/update-ref.c:36417066msgid "delete the reference"17067msgstr "supprimer la référence"1706817069#: builtin/update-ref.c:36617070msgid "update <refname> not the one it points to"17071msgstr "mettre à jour <nomréférence> et non la référence pointée par lui"1707217073#: builtin/update-ref.c:36717074msgid "stdin has NUL-terminated arguments"17075msgstr "l'entrée standard a des arguments qui se terminent par NUL"1707617077#: builtin/update-ref.c:36817078msgid "read updates from stdin"17079msgstr "lire les mises à jour depuis l'entrée standard"1708017081#: builtin/update-server-info.c:717082msgid "git update-server-info [--force]"17083msgstr "git update-server-info [--force]"1708417085#: builtin/update-server-info.c:1517086msgid "update the info files from scratch"17087msgstr "mettre à jour les fichiers d'information à partir de zéro"1708817089#: builtin/upload-pack.c:1117090msgid "git upload-pack [<options>] <dir>"17091msgstr "git upload-pack [<options>] <répertoire>"1709217093#: builtin/upload-pack.c:2517094msgid "exit immediately after initial ref advertisement"17095msgstr "Sortir immédiatement après l'annonce initiale des références"1709617097#: builtin/upload-pack.c:2717098msgid "do not try <directory>/.git/ if <directory> is no Git directory"17099msgstr ""17100"nes pas essayer <répertoire>/.git/ si <répertoire> n'est pas un répertoire "17101"Git"1710217103#: builtin/upload-pack.c:2917104msgid "interrupt transfer after <n> seconds of inactivity"17105msgstr "interrompre le transfert après <n> secondes d'inactivité"1710617107#: builtin/verify-commit.c:2017108msgid "git verify-commit [-v | --verbose] <commit>..."17109msgstr "git verify-commit [-v | --verbose] <commit>..."1711017111#: builtin/verify-commit.c:7617112msgid "print commit contents"17113msgstr "afficher le contenu du commit"1711417115#: builtin/verify-commit.c:77 builtin/verify-tag.c:3817116msgid "print raw gpg status output"17117msgstr "afficher les messages bruts de gpg"1711817119#: builtin/verify-pack.c:5517120msgid "git verify-pack [-v | --verbose] [-s | --stat-only] <pack>..."17121msgstr "git verify-pack [-v | --verbose] [-s | --stat-only] <pack>..."1712217123#: builtin/verify-pack.c:6517124msgid "verbose"17125msgstr "verbeux"1712617127#: builtin/verify-pack.c:6717128msgid "show statistics only"17129msgstr "afficher seulement les statistiques"1713017131#: builtin/verify-tag.c:1917132msgid "git verify-tag [-v | --verbose] [--format=<format>] <tag>..."17133msgstr "git verify-tag [-v | --verbose] [--format=<format>] <étiquette>..."1713417135#: builtin/verify-tag.c:3717136msgid "print tag contents"17137msgstr "afficher le contenu de l'étiquette"1713817139#: builtin/worktree.c:1717140msgid "git worktree add [<options>] <path> [<commit-ish>]"17141msgstr "git worktree add [<options>] <chemin> [<commit>]"1714217143#: builtin/worktree.c:1817144msgid "git worktree list [<options>]"17145msgstr "git worktree list [<options>]"1714617147#: builtin/worktree.c:1917148msgid "git worktree lock [<options>] <path>"17149msgstr "git worktree lock [<options>] <chemin>"1715017151#: builtin/worktree.c:2017152msgid "git worktree move <worktree> <new-path>"17153msgstr "git worktree move <arbre-de-travail> <nouveau-chemin>"1715417155#: builtin/worktree.c:2117156msgid "git worktree prune [<options>]"17157msgstr "git worktree prune [<options>]"1715817159#: builtin/worktree.c:2217160msgid "git worktree remove [<options>] <worktree>"17161msgstr "git worktree remove [<options>] <arbre-de-travail>"1716217163#: builtin/worktree.c:2317164msgid "git worktree unlock <path>"17165msgstr "git worktree unlock <chemin>"1716617167#: builtin/worktree.c:5917168#, c-format17169msgid "Removing worktrees/%s: not a valid directory"17170msgstr "Suppression de worktrees/%s : répertoire invalide"1717117172#: builtin/worktree.c:6517173#, c-format17174msgid "Removing worktrees/%s: gitdir file does not exist"17175msgstr "Suppression de worktrees/%s : le fichier gitdir n'existe pas"1717617177#: builtin/worktree.c:70 builtin/worktree.c:7917178#, c-format17179msgid "Removing worktrees/%s: unable to read gitdir file (%s)"17180msgstr ""17181"Suppression de worktrees/%s : echec de la lecture du fichier gitdir (%s)"1718217183#: builtin/worktree.c:8917184#, c-format17185msgid ""17186"Removing worktrees/%s: short read (expected %<PRIuMAX> bytes, read "17187"%<PRIuMAX>)"17188msgstr ""17189"Suppression de worktrees/%s: lecture trop courte ( %<PRIuMAX> octets "17190"attendus, %<PRIuMAX> octets lus)"1719117192#: builtin/worktree.c:9717193#, c-format17194msgid "Removing worktrees/%s: invalid gitdir file"17195msgstr "Suppression de worktrees/%s : fichier gitdir invalide"1719617197#: builtin/worktree.c:10617198#, c-format17199msgid "Removing worktrees/%s: gitdir file points to non-existent location"17200msgstr ""17201"Suppression de worktrees/%s : le fichier gitdir point sur un endroit "17202"inexistant"1720317204#: builtin/worktree.c:15317205msgid "report pruned working trees"17206msgstr "afficher les arbres de travail éliminés"1720717208#: builtin/worktree.c:15517209msgid "expire working trees older than <time>"17210msgstr "faire expirer les arbres de travail plus vieux que <temps>"1721117212#: builtin/worktree.c:23017213#, c-format17214msgid "'%s' already exists"17215msgstr "'%s' existe déjà"1721617217#: builtin/worktree.c:26117218#, c-format17219msgid "could not create directory of '%s'"17220msgstr "impossible de créer le répertoire de '%s'"1722117222#: builtin/worktree.c:380 builtin/worktree.c:38617223#, c-format17224msgid "Preparing worktree (new branch '%s')"17225msgstr "Préparation de l'arbre de travail (nouvelle branche '%s')"1722617227#: builtin/worktree.c:38217228#, c-format17229msgid "Preparing worktree (resetting branch '%s'; was at %s)"17230msgstr ""17231"Préparation de l'arbre de travail (réinitialisation de la branche '%s' ; "17232"précédemment sur %s)"1723317234#: builtin/worktree.c:39117235#, c-format17236msgid "Preparing worktree (checking out '%s')"17237msgstr "Préparation de l'arbre de travail (extraction de '%s')"1723817239#: builtin/worktree.c:39717240#, c-format17241msgid "Preparing worktree (detached HEAD %s)"17242msgstr "Préparation de l'arbre de travail (HEAD détachée %s)"1724317244#: builtin/worktree.c:43817245msgid "checkout <branch> even if already checked out in other worktree"17246msgstr ""17247"extraire la <branche> même si elle est déjà extraite dans une autre copie de "17248"travail"1724917250#: builtin/worktree.c:44117251msgid "create a new branch"17252msgstr "créer une nouvelle branche"1725317254#: builtin/worktree.c:44317255msgid "create or reset a branch"17256msgstr "créer ou réinitialiser une branche"1725717258#: builtin/worktree.c:44517259msgid "populate the new working tree"17260msgstr "remplissage de la nouvelle copie de travail"1726117262#: builtin/worktree.c:44617263msgid "keep the new working tree locked"17264msgstr "conserver le verrou sur le nouvel arbre de travail"1726517266#: builtin/worktree.c:44917267msgid "set up tracking mode (see git-branch(1))"17268msgstr "régler le mode de suivi (voir git-branch(1))"1726917270#: builtin/worktree.c:45217271msgid "try to match the new branch name with a remote-tracking branch"17272msgstr "essayer de nommer la nouvelle branche comme la branche amont"1727317274#: builtin/worktree.c:46017275msgid "-b, -B, and --detach are mutually exclusive"17276msgstr "-b, -B et --detach sont mutuellement exclusifs"1727717278#: builtin/worktree.c:52117279msgid "--[no-]track can only be used if a new branch is created"17280msgstr ""17281"--[no-]track ne peut être utilisé qu'à la création d'une nouvelle branche"1728217283#: builtin/worktree.c:62117284msgid "reason for locking"17285msgstr "raison du verrouillage"1728617287#: builtin/worktree.c:633 builtin/worktree.c:666 builtin/worktree.c:72017288#: builtin/worktree.c:86017289#, c-format17290msgid "'%s' is not a working tree"17291msgstr "'%s' n'est pas une copie de travail"1729217293#: builtin/worktree.c:635 builtin/worktree.c:66817294msgid "The main working tree cannot be locked or unlocked"17295msgstr ""17296"La copie de travail principale ne peut pas être verrouillée ou déverrouillée"1729717298#: builtin/worktree.c:64017299#, c-format17300msgid "'%s' is already locked, reason: %s"17301msgstr "'%s' est déjà verrouillé, car '%s'"1730217303#: builtin/worktree.c:64217304#, c-format17305msgid "'%s' is already locked"17306msgstr "'%s' est déjà verrouillé"1730717308#: builtin/worktree.c:67017309#, c-format17310msgid "'%s' is not locked"17311msgstr "'%s' n'est pas verrouillé"1731217313#: builtin/worktree.c:69517314msgid "working trees containing submodules cannot be moved or removed"17315msgstr ""17316"les arbres de travail contenant des sous-modules ne peuvent pas être "17317"déplacés ou supprimés"1731817319#: builtin/worktree.c:722 builtin/worktree.c:86217320#, c-format17321msgid "'%s' is a main working tree"17322msgstr "'%s' est un arbre de travail principal"1732317324#: builtin/worktree.c:72717325#, c-format17326msgid "could not figure out destination name from '%s'"17327msgstr "impossible de trouver le nom de la destination à partir de '%s'"1732817329#: builtin/worktree.c:73317330#, c-format17331msgid "target '%s' already exists"17332msgstr "la cible '%s' existe déjà"1733317334#: builtin/worktree.c:74017335#, c-format17336msgid "cannot move a locked working tree, lock reason: %s"17337msgstr ""17338"impossible de déplacer un arbre de travail verrouillé, raison du "17339"verrouillage : %s"1734017341#: builtin/worktree.c:74217342msgid "cannot move a locked working tree"17343msgstr "impossible de déplacer un arbre de travail verrouillé"1734417345#: builtin/worktree.c:74517346#, c-format17347msgid "validation failed, cannot move working tree: %s"17348msgstr "la validation a échoué, impossible de déplacer l'arbre de travail : %s"1734917350#: builtin/worktree.c:75017351#, c-format17352msgid "failed to move '%s' to '%s'"17353msgstr "échec au déplacement de '%s' vers '%s'"1735417355#: builtin/worktree.c:79817356#, c-format17357msgid "failed to run 'git status' on '%s'"17358msgstr "échec du lancement de 'git status' sur '%s'"1735917360#: builtin/worktree.c:80217361#, c-format17362msgid "'%s' is dirty, use --force to delete it"17363msgstr "'%s' est sale, utilisez --force pour le supprimer"1736417365#: builtin/worktree.c:80717366#, c-format17367msgid "failed to run 'git status' on '%s', code %d"17368msgstr "impossible de lancer 'git status' sur '%s', code %d"1736917370#: builtin/worktree.c:818 builtin/worktree.c:83217371#, c-format17372msgid "failed to delete '%s'"17373msgstr "échec de la suppression de '%s'"1737417375#: builtin/worktree.c:84417376msgid "force removing even if the worktree is dirty"17377msgstr "forcer la suppression même si l'arbre de travail est sale"1737817379#: builtin/worktree.c:86617380#, c-format17381msgid "cannot remove a locked working tree, lock reason: %s"17382msgstr ""17383"impossible de supprimer un arbre de travail verrouillé, raison du "17384"verrouillage : %s"1738517386#: builtin/worktree.c:86817387msgid "cannot remove a locked working tree"17388msgstr "impossible de supprimer un arbre de travail verrouillé"1738917390#: builtin/worktree.c:87117391#, c-format17392msgid "validation failed, cannot remove working tree: %s"17393msgstr ""17394"la validation a échoué, impossible de supprimer l'arbre de travail : %s"1739517396#: builtin/write-tree.c:1417397msgid "git write-tree [--missing-ok] [--prefix=<prefix>/]"17398msgstr "git write-tree [--missing-ok] [--prefix=<préfixe>/]"1739917400#: builtin/write-tree.c:2717401msgid "<prefix>/"17402msgstr "<préfixe>/"1740317404#: builtin/write-tree.c:2817405msgid "write tree object for a subdirectory <prefix>"17406msgstr "écrire l'objet arbre pour un sous-répertoire <préfixe>"1740717408#: builtin/write-tree.c:3017409msgid "only useful for debugging"17410msgstr "seulement utile pour le débogage"1741117412#: credential-cache--daemon.c:22217413#, c-format17414msgid ""17415"The permissions on your socket directory are too loose; other\n"17416"users may be able to read your cached credentials. Consider running:\n"17417"\n"17418"\tchmod 0700 %s"17419msgstr ""17420"Les permissions de votre répertoire de socket sont trop permissives ;\n"17421"les autres utilisateurs pourraient lire vos identifiants secrets. Lancez :\n"17422"\n"17423" chmod 0700 %s"1742417425#: credential-cache--daemon.c:27117426msgid "print debugging messages to stderr"17427msgstr "afficher les messages de debug sur stderr"1742817429#: git.c:2717430msgid ""17431"git [--version] [--help] [-C <path>] [-c <name>=<value>]\n"17432" [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]\n"17433" [-p | --paginate | -P | --no-pager] [--no-replace-objects] [--"17434"bare]\n"17435" [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]\n"17436" <command> [<args>]"17437msgstr ""17438"git [--version] [--help] [-C <chemin>] [-c <nom>=<valeur>]\n"17439" [--exec-path[=<chemin>]] [--html-path] [--man-path] [--info-"17440"path]\n"17441" [-p | --paginate | -P | --no-pager] [--no-replace-objects] [--"17442"bare]\n"17443" [--git-dir=<chemin>] [--work-tree=<chemin>] [--namespace=<nom>]\n"17444" <commande> [<args>]"1744517446#: git.c:3417447msgid ""17448"'git help -a' and 'git help -g' list available subcommands and some\n"17449"concept guides. See 'git help <command>' or 'git help <concept>'\n"17450"to read about a specific subcommand or concept."17451msgstr ""17452"'git help -a' et 'git help -g' listent les sous-commandes disponibles et\n"17453"quelques concepts. Voir 'git help <commande>' ou 'git help <concept>'\n"17454"pour en lire plus à propos d'une commande spécifique ou d'un concept."1745517456#: git.c:17317457#, c-format17458msgid "no directory given for --git-dir\n"17459msgstr "aucun répertoire fourni pour --git-dir\n"1746017461#: git.c:18717462#, c-format17463msgid "no namespace given for --namespace\n"17464msgstr "aucun espace de nom fournit pour --namespace\n"1746517466#: git.c:20117467#, c-format17468msgid "no directory given for --work-tree\n"17469msgstr "aucun répertoire fourni pour --work-tree\n"1747017471#: git.c:21517472#, c-format17473msgid "no prefix given for --super-prefix\n"17474msgstr "aucun préfixe fourni pour --super-prefix\n"1747517476#: git.c:23717477#, c-format17478msgid "-c expects a configuration string\n"17479msgstr "-c requiert une chaîne de configuration\n"1748017481#: git.c:27517482#, c-format17483msgid "no directory given for -C\n"17484msgstr "aucun répertoire fourni pour -C\n"1748517486#: git.c:30017487#, c-format17488msgid "unknown option: %s\n"17489msgstr "option inconnue : %s\n"1749017491#: git.c:77017492#, c-format17493msgid "expansion of alias '%s' failed; '%s' is not a git command\n"17494msgstr ""17495"l'expansion de l'alias '%s' a échoué : '%s' n'est pas une commande git\n"1749617497#: git.c:78217498#, c-format17499msgid "failed to run command '%s': %s\n"17500msgstr "échec au lancement de la commande '%s' : %s\n"1750117502#: http.c:34817503#, c-format17504msgid "negative value for http.postbuffer; defaulting to %d"17505msgstr ""17506"valeur négative pour http.postbuffer ; utilisation de la valeur par défaut %d"1750717508#: http.c:36917509msgid "Delegation control is not supported with cURL < 7.22.0"17510msgstr "La délégation de commande n'est pas supporté avec cuRL < 7.22.0"1751117512#: http.c:37817513msgid "Public key pinning not supported with cURL < 7.44.0"17514msgstr "L'épinglage de clé publique n'est pas supporté avec cuRL < 7.44.0"1751517516#: http.c:185417517#, c-format17518msgid ""17519"unable to update url base from redirection:\n"17520" asked for: %s\n"17521" redirect: %s"17522msgstr ""17523"impossible de mettre à jour la base de l'url depuis la redirection :\n"17524" demandé : %s\n"17525" redirection : %s"1752617527#: remote-curl.c:40117528#, c-format17529msgid "redirecting to %s"17530msgstr "redirection vers %s"1753117532#: list-objects-filter-options.h:5917533msgid "args"17534msgstr "args"1753517536#: list-objects-filter-options.h:6017537msgid "object filtering"17538msgstr "filtrage d'objet"1753917540#: parse-options.h:15717541msgid "expiry-date"17542msgstr "date-d'expiration"1754317544#: parse-options.h:17217545msgid "no-op (backward compatibility)"17546msgstr "sans action (rétrocompatibilité)"1754717548#: parse-options.h:25117549msgid "be more verbose"17550msgstr "être plus verbeux"1755117552#: parse-options.h:25317553msgid "be more quiet"17554msgstr "être plus silencieux"1755517556#: parse-options.h:25917557msgid "use <n> digits to display SHA-1s"17558msgstr "utiliser <n> chiffres pour afficher les SHA-1s"1755917560#: command-list.h:5017561msgid "Add file contents to the index"17562msgstr "Ajouter le contenu de fichiers dans l'index"1756317564#: command-list.h:5117565msgid "Apply a series of patches from a mailbox"17566msgstr "Appliquer une série de patchs depuis une boîte mail"1756717568#: command-list.h:5217569msgid "Annotate file lines with commit information"17570msgstr "Annoter les lignes du fichier avec l'information de commit"1757117572#: command-list.h:5317573msgid "Apply a patch to files and/or to the index"17574msgstr "Appliquer une patch à des fichiers ou à l'index"1757517576#: command-list.h:5417577msgid "Import an Arch repository into Git"17578msgstr "Importer dans Git un dépôt Arch"1757917580#: command-list.h:5517581msgid "Create an archive of files from a named tree"17582msgstr "Créer une archive des fichiers depuis un arbre nommé"1758317584#: command-list.h:5617585msgid "Use binary search to find the commit that introduced a bug"17586msgstr "Trouver par recherche binaire la modification qui a introduit un bogue"1758717588#: command-list.h:5717589msgid "Show what revision and author last modified each line of a file"17590msgstr ""17591"Montrer la révision et l'auteur qui ont modifié en dernier chaque ligne d'un "17592"fichier"1759317594#: command-list.h:5817595msgid "List, create, or delete branches"17596msgstr "Lister, créer ou supprimer des branches"1759717598#: command-list.h:5917599msgid "Move objects and refs by archive"17600msgstr "Déplacer les objets et références par archive"1760117602#: command-list.h:6017603msgid "Provide content or type and size information for repository objects"17604msgstr ""17605"Fournir les contenu ou l'information de type et taille pour les objets du "17606"dépôt"1760717608#: command-list.h:6117609msgid "Display gitattributes information"17610msgstr "Afficher les informations gitattributes"1761117612#: command-list.h:6217613msgid "Debug gitignore / exclude files"17614msgstr "Déboguer gitignore / les fichiers d'exclusion"1761517616#: command-list.h:6317617msgid "Show canonical names and email addresses of contacts"17618msgstr "Afficher les noms canoniques et les adresses courriel des contacts"1761917620#: command-list.h:6417621msgid "Switch branches or restore working tree files"17622msgstr "Basculer de branche ou restaurer la copie de travail"1762317624#: command-list.h:6517625msgid "Copy files from the index to the working tree"17626msgstr "Copier les fichiers depuis l'index dans la copie de travail"1762717628#: command-list.h:6617629msgid "Ensures that a reference name is well formed"17630msgstr "Assure qu'un nom de référence est bien formé"1763117632#: command-list.h:6717633msgid "Find commits yet to be applied to upstream"17634msgstr "Trouver les commits à appliquer en amont"1763517636#: command-list.h:6817637msgid "Apply the changes introduced by some existing commits"17638msgstr "Appliquer les modifications introduites par des commits existants"1763917640#: command-list.h:6917641msgid "Graphical alternative to git-commit"17642msgstr "Alternative graphique à git-commit"1764317644#: command-list.h:7017645msgid "Remove untracked files from the working tree"17646msgstr "Supprimer les fichiers non-suivis de l'arbre de travail"1764717648#: command-list.h:7117649msgid "Clone a repository into a new directory"17650msgstr "Cloner un dépôt dans un nouveau répertoire"1765117652#: command-list.h:7217653msgid "Display data in columns"17654msgstr "Afficher les données en colonnes"1765517656#: command-list.h:7317657msgid "Record changes to the repository"17658msgstr "Enregistrer les modifications dans le dépôt"1765917660#: command-list.h:7417661msgid "Write and verify Git commit graph files"17662msgstr "Écrire et vérifier les fichiers de graphe de commit Git"1766317664#: command-list.h:7517665msgid "Create a new commit object"17666msgstr "Créer un nouvel objet commit"1766717668#: command-list.h:7617669msgid "Get and set repository or global options"17670msgstr "voir et régler les options globales ou de dépôt"1767117672#: command-list.h:7717673msgid "Count unpacked number of objects and their disk consumption"17674msgstr ""17675"Compter le nombre d'objets non-empaquetés et leur consommation d'espace "17676"disque"1767717678#: command-list.h:7817679msgid "Retrieve and store user credentials"17680msgstr "Récupérer et sauvegarder les certificats d'utilisateur"1768117682#: command-list.h:7917683msgid "Helper to temporarily store passwords in memory"17684msgstr "Assistant pour maintenir temporairement en mémoire les mots de passe"1768517686#: command-list.h:8017687msgid "Helper to store credentials on disk"17688msgstr "Assistant pour sauvegarder les certificats sur disque"1768917690#: command-list.h:8117691msgid "Export a single commit to a CVS checkout"17692msgstr "Exporter un commit unique en extraction CVS"1769317694#: command-list.h:8217695msgid "Salvage your data out of another SCM people love to hate"17696msgstr "Sauver vos données depuis un autre SCM qu'on aime à haïr"1769717698#: command-list.h:8317699msgid "A CVS server emulator for Git"17700msgstr "Un émulateur de serveur CVS pour Git"1770117702#: command-list.h:8417703msgid "A really simple server for Git repositories"17704msgstr "Un serveur vraiment simple pour les dépôts Git"1770517706#: command-list.h:8517707msgid "Give an object a human readable name based on an available ref"17708msgstr ""17709"Baptiser un objet avec un nom lisible à partir d'une référence disponible"1771017711#: command-list.h:8617712msgid "Show changes between commits, commit and working tree, etc"17713msgstr ""17714"Afficher les changements entre les validations, entre validation et copie de "17715"travail, etc"1771617717#: command-list.h:8717718msgid "Compares files in the working tree and the index"17719msgstr "Compare des fichiers de l'arbre de travail et de l'index"1772017721#: command-list.h:8817722msgid "Compare a tree to the working tree or index"17723msgstr "Comparer un arbre avec l'arbre de travail ou l'index"1772417725#: command-list.h:8917726msgid "Compares the content and mode of blobs found via two tree objects"17727msgstr "Compare le contenu et la mode des blobs trouvés via deux objets arbre"1772817729#: command-list.h:9017730msgid "Show changes using common diff tools"17731msgstr "Afficher les modifications en utilisant les outils habituel de diff"1773217733#: command-list.h:9117734msgid "Git data exporter"17735msgstr "Exporteur de données Git"1773617737#: command-list.h:9217738msgid "Backend for fast Git data importers"17739msgstr "Moteur pour les importateurs rapides de données Git"1774017741#: command-list.h:9317742msgid "Download objects and refs from another repository"17743msgstr "Télécharger les objets et références depuis un autre dépôt"1774417745#: command-list.h:9417746msgid "Receive missing objects from another repository"17747msgstr "Télécharger les objets manquants depuis un autre dépôt"1774817749#: command-list.h:9517750msgid "Rewrite branches"17751msgstr "Réécrire les branches"1775217753#: command-list.h:9617754msgid "Produce a merge commit message"17755msgstr "Produire un message de validation de fusion"1775617757#: command-list.h:9717758msgid "Output information on each ref"17759msgstr "Afficher l'information de chaque référence"1776017761#: command-list.h:9817762msgid "Prepare patches for e-mail submission"17763msgstr "Préparer les patchs pour soumission par courriel"1776417765#: command-list.h:9917766msgid "Verifies the connectivity and validity of the objects in the database"17767msgstr ""17768"Vérifier la connectivité et la validité des objets dans la base de données"1776917770#: command-list.h:10017771msgid "Cleanup unnecessary files and optimize the local repository"17772msgstr "Effacer les fichiers non-nécessaires et optimiser le dépôt local"1777317774#: command-list.h:10117775msgid "Extract commit ID from an archive created using git-archive"17776msgstr "Extraire l'ID du commit depuis une archive créée par git-archive"1777717778#: command-list.h:10217779msgid "Print lines matching a pattern"17780msgstr "Afficher les lignes correspondant à un motif"1778117782#: command-list.h:10317783msgid "A portable graphical interface to Git"17784msgstr "Une interface graphique portable pour Git"1778517786#: command-list.h:10417787msgid "Compute object ID and optionally creates a blob from a file"17788msgstr ""17789"Calculer l'ID d'objet et créer optionnellement un blob depuis un fichier"1779017791#: command-list.h:10517792msgid "Display help information about Git"17793msgstr "Afficher l'information d'aide à propos de Git"1779417795#: command-list.h:10617796msgid "Server side implementation of Git over HTTP"17797msgstr "Implantation côté serveur de Git sur HTTP"1779817799#: command-list.h:10717800msgid "Download from a remote Git repository via HTTP"17801msgstr "Télécharger depuis un dépôt Git distant via HTTP"1780217803#: command-list.h:10817804msgid "Push objects over HTTP/DAV to another repository"17805msgstr "Pousser les objets sur un autre dépôt via HTTP/DAV"1780617807#: command-list.h:10917808msgid "Send a collection of patches from stdin to an IMAP folder"17809msgstr "Envoyer un ensemble de patchs depuis stdin vers un répertoire IMAP"1781017811#: command-list.h:11017812msgid "Build pack index file for an existing packed archive"17813msgstr ""17814"Construire un fichier d'index pack depuis une archive compactée existante"1781517816#: command-list.h:11117817msgid "Create an empty Git repository or reinitialize an existing one"17818msgstr "Créer un dépôt Git vide ou réinitialiser un existant"1781917820#: command-list.h:11217821msgid "Instantly browse your working repository in gitweb"17822msgstr "Naviguer instantanément votre dépôt de travail dans gitweb"1782317824#: command-list.h:11317825msgid "add or parse structured information in commit messages"17826msgstr ""17827"ajouter ou analyser l'information structurée dans les messages de validation"1782817829#: command-list.h:11417830msgid "The Git repository browser"17831msgstr "Le navigateur de dépôt Git"1783217833#: command-list.h:11517834msgid "Show commit logs"17835msgstr "Afficher l'historique des validations"1783617837#: command-list.h:11617838msgid "Show information about files in the index and the working tree"17839msgstr ""17840"Afficher l'information à propos des fichiers dans l'index ou l'arbre de "17841"travail"1784217843#: command-list.h:11717844msgid "List references in a remote repository"17845msgstr "Lister les références dans un dépôt distant"1784617847#: command-list.h:11817848msgid "List the contents of a tree object"17849msgstr "Afficher le contenu d'un objet arbre"1785017851#: command-list.h:11917852msgid "Extracts patch and authorship from a single e-mail message"17853msgstr ""17854"Extraire le patch et l'information de d'auteur depuis un simple message de "17855"courriel"1785617857#: command-list.h:12017858msgid "Simple UNIX mbox splitter program"17859msgstr "Programme simple de découpage de mbox UNIX"1786017861#: command-list.h:12117862msgid "Join two or more development histories together"17863msgstr "Fusionner deux ou plusieurs historiques de développement ensemble"1786417865#: command-list.h:12217866msgid "Find as good common ancestors as possible for a merge"17867msgstr "Trouver un ancêtre aussi bon que possible pour une fusion"1786817869#: command-list.h:12317870msgid "Run a three-way file merge"17871msgstr "Lancer une fusion à 3 points"1787217873#: command-list.h:12417874msgid "Run a merge for files needing merging"17875msgstr "Lancer une fusion à 3 points pour les fichiers à fusionner"1787617877#: command-list.h:12517878msgid "The standard helper program to use with git-merge-index"17879msgstr "Le programme assistant standard à utiliser avec git-merge-index"1788017881#: command-list.h:12617882msgid "Run merge conflict resolution tools to resolve merge conflicts"17883msgstr ""17884"Lancer les outils de résolution de conflit de fusion pour résoudre les "17885"conflits de fusion"1788617887#: command-list.h:12717888msgid "Show three-way merge without touching index"17889msgstr "Afficher la fusion à trois points sans modifier l'index"1789017891#: command-list.h:12817892msgid "Creates a tag object"17893msgstr "Créer un objet étiquette"1789417895#: command-list.h:12917896msgid "Build a tree-object from ls-tree formatted text"17897msgstr "Construire un objet arbre depuis une texte formaté comme ls-tree"1789817899#: command-list.h:13017900msgid "Move or rename a file, a directory, or a symlink"17901msgstr "Déplacer ou renommer un fichier, un répertoire, ou un lien symbolique"1790217903#: command-list.h:13117904msgid "Find symbolic names for given revs"17905msgstr "Trouver les noms symboliques pour des révisions données"1790617907#: command-list.h:13217908msgid "Add or inspect object notes"17909msgstr "Ajouter ou inspecter les notes d'un objets"1791017911#: command-list.h:13317912msgid "Import from and submit to Perforce repositories"17913msgstr "Importer et soumettre à des dépôt Perforce"1791417915#: command-list.h:13417916msgid "Create a packed archive of objects"17917msgstr "Créer une archive compactée d'objets"1791817919#: command-list.h:13517920msgid "Find redundant pack files"17921msgstr "Trouver les fichiers pack redondants"1792217923#: command-list.h:13617924msgid "Pack heads and tags for efficient repository access"17925msgstr "Empaqueter les têtes et les étiquettes pour un accès efficace au dépôt"1792617927#: command-list.h:13717928msgid "Routines to help parsing remote repository access parameters"17929msgstr ""17930"Routines pour aider à analyser les paramètres d'accès aux dépôts distants"1793117932#: command-list.h:13817933msgid "Compute unique ID for a patch"17934msgstr "Calculer l'ID unique d'un patch"1793517936#: command-list.h:13917937msgid "Prune all unreachable objects from the object database"17938msgstr ""17939"Éliminer les objets inatteignables depuis la base de données des objets"1794017941#: command-list.h:14017942msgid "Remove extra objects that are already in pack files"17943msgstr "Éliminer les objets qui sont déjà présents dans les fichiers pack"1794417945#: command-list.h:14117946msgid "Fetch from and integrate with another repository or a local branch"17947msgstr "Rapatrier et intégrer un autre dépôt ou une branche locale"1794817949#: command-list.h:14217950msgid "Update remote refs along with associated objects"17951msgstr "Mettre à jour les références distantes ainsi que les objets associés"1795217953#: command-list.h:14317954msgid "Applies a quilt patchset onto the current branch"17955msgstr "Appliquer un patchset quilt sur la branche courante"1795617957#: command-list.h:14417958msgid "Compare two commit ranges (e.g. two versions of a branch)"17959msgstr ""17960"Comparer deux plages de commits (par exemple deux versions d'une branche)"1796117962#: command-list.h:14517963msgid "Reads tree information into the index"17964msgstr "Lire l'information d'arbre dans l'index"1796517966#: command-list.h:14617967msgid "Reapply commits on top of another base tip"17968msgstr "Réapplication des commits sur le sommet de l'autre base"1796917970#: command-list.h:14717971msgid "Receive what is pushed into the repository"17972msgstr "Recevoir ce qui est poussé dans le dépôt"1797317974#: command-list.h:14817975msgid "Manage reflog information"17976msgstr "Gérer l'information de reflog"1797717978#: command-list.h:14917979msgid "Manage set of tracked repositories"17980msgstr "Gérer un ensemble de dépôts suivis"1798117982#: command-list.h:15017983msgid "Pack unpacked objects in a repository"17984msgstr "Empaqueter les objets non-empaquetés d'un dépôt"1798517986#: command-list.h:15117987msgid "Create, list, delete refs to replace objects"17988msgstr "Créer, lister, supprimer des référence pour remplacer des objets"1798917990#: command-list.h:15217991msgid "Generates a summary of pending changes"17992msgstr "Générer une résumé des modifications en attentes"1799317994#: command-list.h:15317995msgid "Reuse recorded resolution of conflicted merges"17996msgstr "Réutiliser une résolution enregistrée de fusions conflictuelles"1799717998#: command-list.h:15417999msgid "Reset current HEAD to the specified state"18000msgstr "Réinitialiser la HEAD courante à l'état spécifié"1800118002#: command-list.h:15518003msgid "Revert some existing commits"18004msgstr "Inverser des commits existants"1800518006#: command-list.h:15618007msgid "Lists commit objects in reverse chronological order"18008msgstr "Afficher les objets commit dans l'ordre chronologique inverse"1800918010#: command-list.h:15718011msgid "Pick out and massage parameters"18012msgstr "Analyser et préparer les paramètres"1801318014#: command-list.h:15818015msgid "Remove files from the working tree and from the index"18016msgstr "Supprimer des fichiers de la copie de travail et de l'index"1801718018#: command-list.h:15918019msgid "Send a collection of patches as emails"18020msgstr "Envoyer un ensemble de patchs comme courriels"1802118022#: command-list.h:16018023msgid "Push objects over Git protocol to another repository"18024msgstr "Pousser les objets sur un autre dépôt via le protocole Git"1802518026#: command-list.h:16118027msgid "Restricted login shell for Git-only SSH access"18028msgstr "shell de login restreint pour un accès SSH vers Git seulement"1802918030#: command-list.h:16218031msgid "Summarize 'git log' output"18032msgstr "Résumer la sortie de 'git log'"1803318034#: command-list.h:16318035msgid "Show various types of objects"18036msgstr "Afficher différents types d'objets"1803718038#: command-list.h:16418039msgid "Show branches and their commits"18040msgstr "Afficher les branches et leurs commits"1804118042#: command-list.h:16518043msgid "Show packed archive index"18044msgstr "Afficher l'index de l'archive empaquetée"1804518046#: command-list.h:16618047msgid "List references in a local repository"18048msgstr "Lister les références du dépôt local"1804918050#: command-list.h:16718051msgid "Git's i18n setup code for shell scripts"18052msgstr "Le code d'initialisation i18n pour les scripts shell"1805318054#: command-list.h:16818055msgid "Common Git shell script setup code"18056msgstr "Le code d'initialisation commun aux scripts shell Git"1805718058#: command-list.h:16918059msgid "Stash the changes in a dirty working directory away"18060msgstr "Remiser les modifications d'un répertoire de travail sale"1806118062#: command-list.h:17018063msgid "Add file contents to the staging area"18064msgstr "Ajouter le contenu de fichiers à l'index"1806518066#: command-list.h:17118067msgid "Show the working tree status"18068msgstr "Afficher l'état de la copie de travail"1806918070#: command-list.h:17218071msgid "Remove unnecessary whitespace"18072msgstr "Retirer les espaces inutiles"1807318074#: command-list.h:17318075msgid "Initialize, update or inspect submodules"18076msgstr "Initialiser, mettre à jour et inspecter les sous-modules"1807718078#: command-list.h:17418079msgid "Bidirectional operation between a Subversion repository and Git"18080msgstr "Opération Bidirectionnelles entre un dépôt Subversion et Git"1808118082#: command-list.h:17518083msgid "Read, modify and delete symbolic refs"18084msgstr "Lire, modifier et supprimer les références symboliques"1808518086#: command-list.h:17618087msgid "Create, list, delete or verify a tag object signed with GPG"18088msgstr ""18089"Créer, lister, supprimer ou vérifier un objet d'étiquette signé avec GPG"1809018091#: command-list.h:17718092msgid "Creates a temporary file with a blob's contents"18093msgstr "Créer un fichier temporaire avec le contenu d'un blob"1809418095#: command-list.h:17818096msgid "Unpack objects from a packed archive"18097msgstr "Dépaqueter les objets depuis une archive empaquetée"1809818099#: command-list.h:17918100msgid "Register file contents in the working tree to the index"18101msgstr "Enregistrer le contenu d'un fichier de l'arbre de travail dans l'index"1810218103#: command-list.h:18018104msgid "Update the object name stored in a ref safely"18105msgstr ""18106"Mettre à jour le nom d'objet stocké dans une référence en toute sécurité"1810718108#: command-list.h:18118109msgid "Update auxiliary info file to help dumb servers"18110msgstr ""18111"Mettre à jour le fichier d'informations auxiliaires pour aider les serveurs "18112"idiots"1811318114#: command-list.h:18218115msgid "Send archive back to git-archive"18116msgstr "Renvoyer une archive dans git-archive"1811718118#: command-list.h:18318119msgid "Send objects packed back to git-fetch-pack"18120msgstr "Renvoyer des objets empaquetés dans git-fetch-pack"1812118122#: command-list.h:18418123msgid "Show a Git logical variable"18124msgstr "Afficher un variable logique de Git"1812518126#: command-list.h:18518127msgid "Check the GPG signature of commits"18128msgstr "Vérifier la signature GPG de commits"1812918130#: command-list.h:18618131msgid "Validate packed Git archive files"18132msgstr "Valider des fichiers d'archive Git empaquetés"1813318134#: command-list.h:18718135msgid "Check the GPG signature of tags"18136msgstr "Vérifier la signature GPG d'étiquettes"1813718138#: command-list.h:18818139msgid "Git web interface (web frontend to Git repositories)"18140msgstr "Interface web de Git"1814118142#: command-list.h:18918143msgid "Show logs with difference each commit introduces"18144msgstr "Afficher les journaux avec la différence que chaque commit introduit"1814518146#: command-list.h:19018147msgid "Manage multiple working trees"18148msgstr "Gère de arbres de travail multiples"1814918150#: command-list.h:19118151msgid "Create a tree object from the current index"18152msgstr "Créer un objet arbre depuis l'index courant"1815318154#: command-list.h:19218155msgid "Defining attributes per path"18156msgstr "Définition des attributs par chemin"1815718158#: command-list.h:19318159msgid "Git command-line interface and conventions"18160msgstr "interface en ligne de commande et conventions de Git"1816118162#: command-list.h:19418163msgid "A Git core tutorial for developers"18164msgstr "Tutoriel du cœur de Git pour les développeurs"1816518166#: command-list.h:19518167msgid "Git for CVS users"18168msgstr "Git pour les utilisateurs de CVS"1816918170#: command-list.h:19618171msgid "Tweaking diff output"18172msgstr "Bidouillage de la sortie diff"1817318174#: command-list.h:19718175msgid "A useful minimum set of commands for Everyday Git"18176msgstr "Un ensemble minimal utile des commandes de Git pour tous les jours"1817718178#: command-list.h:19818179msgid "A Git Glossary"18180msgstr "Un glossaire Git"1818118182#: command-list.h:19918183msgid "Hooks used by Git"18184msgstr "Crochets utilisés par Git"1818518186#: command-list.h:20018187msgid "Specifies intentionally untracked files to ignore"18188msgstr "Spécifie les fichiers non-suivis à ignorer intentionnellement"1818918190#: command-list.h:20118191msgid "Defining submodule properties"18192msgstr "Définition des propriétés de sous-module"1819318194#: command-list.h:20218195msgid "Git namespaces"18196msgstr "Espaces de nom de Git"1819718198#: command-list.h:20318199msgid "Git Repository Layout"18200msgstr "Disposition d'un dépôt Git"1820118202#: command-list.h:20418203msgid "Specifying revisions and ranges for Git"18204msgstr "Spécification des révisions et portées pour Git"1820518206#: command-list.h:20518207msgid "A tutorial introduction to Git: part two"18208msgstr "Une introduction pratique à Git : deuxième partie"1820918210#: command-list.h:20618211msgid "A tutorial introduction to Git"18212msgstr "Une introduction pratique à Git"1821318214#: command-list.h:20718215msgid "An overview of recommended workflows with Git"18216msgstr "Un aperçu des flux de travail recommandés avec Git"1821718218#: rerere.h:4018219msgid "update the index with reused conflict resolution if possible"18220msgstr ""18221"met à jour l'index avec les résolutions de conflit réutilisées si possible"1822218223#: git-bisect.sh:5418224msgid "You need to start by \"git bisect start\""18225msgstr "Vous devez démarrer avec \"git bisect start\""1822618227#. TRANSLATORS: Make sure to include [Y] and [n] in your18228#. translation. The program will only accept English input18229#. at this point.18230#: git-bisect.sh:6018231msgid "Do you want me to do it for you [Y/n]? "18232msgstr "Souhaitez-vous que je le fasse pour vous [Y/n] ? "1823318234#: git-bisect.sh:12118235#, sh-format18236msgid "unrecognised option: '$arg'"18237msgstr "option inconnue : '$arg'"1823818239#: git-bisect.sh:12518240#, sh-format18241msgid "'$arg' does not appear to be a valid revision"18242msgstr "'$arg' ne semble être une révision valide"1824318244#: git-bisect.sh:15418245msgid "Bad HEAD - I need a HEAD"18246msgstr "Mauvaise HEAD - j'ai besoin d'une HEAD"1824718248#: git-bisect.sh:16718249#, sh-format18250msgid ""18251"Checking out '$start_head' failed. Try 'git bisect reset <valid-branch>'."18252msgstr ""18253"L'extraction de '$start_head' a échoué. Essayez 'git bisect reset <branche-"18254"valide>'."1825518256#: git-bisect.sh:17718257msgid "won't bisect on cg-seek'ed tree"18258msgstr "refus de bissecter sur un arbre 'cg-seeked'"1825918260#: git-bisect.sh:18118261msgid "Bad HEAD - strange symbolic ref"18262msgstr "Mauvaise HEAD - référence symbolique douteuse"1826318264#: git-bisect.sh:23318265#, sh-format18266msgid "Bad bisect_write argument: $state"18267msgstr "Mauvais argument pour bisect_write : $state"1826818269#: git-bisect.sh:24618270#, sh-format18271msgid "Bad rev input: $arg"18272msgstr "Mauvaise révision en entrée : $arg"1827318274#: git-bisect.sh:26518275#, sh-format18276msgid "Bad rev input: $bisected_head"18277msgstr "Mauvaise révision en entrée : $bisected_head"1827818279#: git-bisect.sh:27418280#, sh-format18281msgid "Bad rev input: $rev"18282msgstr "Mauvaise révision en entrée : $rev"1828318284#: git-bisect.sh:28318285#, sh-format18286msgid "'git bisect $TERM_BAD' can take only one argument."18287msgstr "'git bisect $TERM_BAD' n'accepte qu'un seul argument."1828818289#: git-bisect.sh:30618290#, sh-format18291msgid "Warning: bisecting only with a $TERM_BAD commit."18292msgstr "Attention : bissection avec seulement une validation $TERM_BAD."1829318294#. TRANSLATORS: Make sure to include [Y] and [n] in your18295#. translation. The program will only accept English input18296#. at this point.18297#: git-bisect.sh:31218298msgid "Are you sure [Y/n]? "18299msgstr "Confirmez-vous [Y/n] ? "1830018301#: git-bisect.sh:32418302#, sh-format18303msgid ""18304"You need to give me at least one $bad_syn and one $good_syn revision.\n"18305"(You can use \"git bisect $bad_syn\" and \"git bisect $good_syn\" for that.)"18306msgstr ""18307"Vous devez me donner au moins une révision $bad_syn et une révision "18308"$good_syn.\n"18309"(Vous pouvez utiliser \"git bisect $bad_syn\" et \"git bisect $good_syn\" "18310"pour cela.)"1831118312#: git-bisect.sh:32718313#, sh-format18314msgid ""18315"You need to start by \"git bisect start\".\n"18316"You then need to give me at least one $good_syn and one $bad_syn revision.\n"18317"(You can use \"git bisect $bad_syn\" and \"git bisect $good_syn\" for that.)"18318msgstr ""18319"Vous devez démarrer avec \"git bisect start\".\n"18320"Puis vous devez me donner au moins une révision $good_syn et une révision "18321"$bad_syn.\n"18322"(Vous pouvez utiliser \"git bisect $bad_syn\" et \"git bisect $good_syn\" "18323"pour cela.)"1832418325#: git-bisect.sh:398 git-bisect.sh:51218326msgid "We are not bisecting."18327msgstr "Pas de bissection en cours."1832818329#: git-bisect.sh:40518330#, sh-format18331msgid "'$invalid' is not a valid commit"18332msgstr "'$invalid' n'est pas une validation valide"1833318334#: git-bisect.sh:41418335#, sh-format18336msgid ""18337"Could not check out original HEAD '$branch'.\n"18338"Try 'git bisect reset <commit>'."18339msgstr ""18340"Échec d'extraction de la HEAD d'origine '$branch'.\n"18341"Essayez 'git bisect reset <commit>'."1834218343#: git-bisect.sh:42218344msgid "No logfile given"18345msgstr "Pas de fichier de log donné"1834618347#: git-bisect.sh:42318348#, sh-format18349msgid "cannot read $file for replaying"18350msgstr "impossible de lire $file pour rejouer"1835118352#: git-bisect.sh:44418353msgid "?? what are you talking about?"18354msgstr "?? de quoi parlez-vous ?"1835518356#: git-bisect.sh:45318357msgid "bisect run failed: no command provided."18358msgstr "la bissection a échoué : aucune commande fournie."1835918360#: git-bisect.sh:45818361#, sh-format18362msgid "running $command"18363msgstr "lancement de $command"1836418365#: git-bisect.sh:46518366#, sh-format18367msgid ""18368"bisect run failed:\n"18369"exit code $res from '$command' is < 0 or >= 128"18370msgstr ""18371"la bissection a échoué :\n"18372"le code retour $res de '$command' est < 0 ou >= 128"1837318374#: git-bisect.sh:49118375msgid "bisect run cannot continue any more"18376msgstr "la bissection ne peut plus continuer"1837718378#: git-bisect.sh:49718379#, sh-format18380msgid ""18381"bisect run failed:\n"18382"'bisect_state $state' exited with error code $res"18383msgstr ""18384"la bissection a échoué :\n"18385"'bisect_state $state' a retourné le code erreur $res"1838618387#: git-bisect.sh:50418388msgid "bisect run success"18389msgstr "succès de la bissection"1839018391#: git-bisect.sh:53318392#, sh-format18393msgid "Invalid command: you're currently in a $TERM_BAD/$TERM_GOOD bisect."18394msgstr ""18395"Commande invalide : vous êtes actuellement dans une bissection $TERM_BAD/"18396"$TERM_GOOD."1839718398#: git-bisect.sh:56718399msgid "no terms defined"18400msgstr "aucun terme défini"1840118402#: git-bisect.sh:58418403#, sh-format18404msgid ""18405"invalid argument $arg for 'git bisect terms'.\n"18406"Supported options are: --term-good|--term-old and --term-bad|--term-new."18407msgstr ""18408"argument invalide $arg pour 'git bisect terms'.\n"18409"Les options supportées sont : --term-good|--term-old et --term-bad|--term-"18410"new."1841118412#: git-merge-octopus.sh:4618413msgid ""18414"Error: Your local changes to the following files would be overwritten by "18415"merge"18416msgstr ""18417"Erreur : vos modifications locales aux fichiers suivants seraient écrasées "18418"par la fusion"1841918420#: git-merge-octopus.sh:6118421msgid "Automated merge did not work."18422msgstr "La fusion automatique a échoué."1842318424#: git-merge-octopus.sh:6218425msgid "Should not be doing an octopus."18426msgstr "L'Octopus ne devrait pas arriver."1842718428#: git-merge-octopus.sh:7318429#, sh-format18430msgid "Unable to find common commit with $pretty_name"18431msgstr "Impossible de trouver un commit commun avec $pretty_name"1843218433#: git-merge-octopus.sh:7718434#, sh-format18435msgid "Already up to date with $pretty_name"18436msgstr "Déjà à jour avec $pretty_name"1843718438#: git-merge-octopus.sh:8918439#, sh-format18440msgid "Fast-forwarding to: $pretty_name"18441msgstr "Mise à jour en avance rapide sur $pretty_name"1844218443#: git-merge-octopus.sh:9718444#, sh-format18445msgid "Trying simple merge with $pretty_name"18446msgstr "Essai de fusion simple avec $pretty_name"1844718448#: git-merge-octopus.sh:10218449msgid "Simple merge did not work, trying automatic merge."18450msgstr "La fusion simple a échoué, essai avec la fusion automatique."1845118452#: git-rebase.sh:6118453msgid ""18454"Resolve all conflicts manually, mark them as resolved with\n"18455"\"git add/rm <conflicted_files>\", then run \"git rebase --continue\".\n"18456"You can instead skip this commit: run \"git rebase --skip\".\n"18457"To abort and get back to the state before \"git rebase\", run \"git rebase --"18458"abort\"."18459msgstr ""18460"Résolvez tous les conflits manuellement, marquez-les comme résolus avec\n"18461"\"git add/rm <fichier en conflit>\", puis lancez \"git rebase --continue\".\n"18462"Si vous préférez sauter ce commit, lancez \"git rebase --skip\". Pour "18463"arrêter\n"18464"et revenir à l'état antérieur à la commande, lancez \"git rebase --abort\"."1846518466#: git-rebase.sh:173 git-rebase.sh:45418467#, sh-format18468msgid "Could not move back to $head_name"18469msgstr "Impossible de revenir à $head_name"1847018471#: git-rebase.sh:18418472msgid "Applied autostash."18473msgstr "Autoremisage appliqué."1847418475#: git-rebase.sh:18718476#, sh-format18477msgid "Cannot store $stash_sha1"18478msgstr "Impossible de stocker $stash_sha1"1847918480#: git-rebase.sh:23618481msgid "The pre-rebase hook refused to rebase."18482msgstr "Le crochet pre-rebase a refusé de rebaser."1848318484#: git-rebase.sh:24118485msgid "It looks like 'git am' is in progress. Cannot rebase."18486msgstr "Il semble que 'git-am' soit en cours. Impossible de rebaser."1848718488#: git-rebase.sh:41518489msgid "No rebase in progress?"18490msgstr "Pas de rebasage en cours ?"1849118492#: git-rebase.sh:42618493msgid "The --edit-todo action can only be used during interactive rebase."18494msgstr ""18495"L'action --edit-todo peut seulement être utilisée lors d'un rebasage "18496"interactif."1849718498#: git-rebase.sh:43318499msgid "Cannot read HEAD"18500msgstr "Impossible de lire HEAD"1850118502#: git-rebase.sh:43618503msgid ""18504"You must edit all merge conflicts and then\n"18505"mark them as resolved using git add"18506msgstr ""18507"Vous devez éditer tous les conflits de fusion et\n"18508"les marquer comme résolus avec git add"1850918510#: git-rebase.sh:48018511#, sh-format18512msgid ""18513"It seems that there is already a $state_dir_base directory, and\n"18514"I wonder if you are in the middle of another rebase. If that is the\n"18515"case, please try\n"18516"\t$cmd_live_rebase\n"18517"If that is not the case, please\n"18518"\t$cmd_clear_stale_rebase\n"18519"and run me again. I am stopping in case you still have something\n"18520"valuable there."18521msgstr ""18522"Il semble qu'il y ait déjà un répertoire $state_dir_base, et je me demande\n"18523"si un autre rebasage n'est pas déjà en cours. Si c'est le cas,\n"18524"essayez\n"18525"\t$cmd_live_rebase\n"18526"Sinon, essayez\n"18527"\t$cmd_clear_stale_rebase\n"18528"puis relancez-moi à nouveau. Je m'arrête au cas où vous auriez quelque "18529"chose\n"18530"d'important ici."1853118532#: git-rebase.sh:54518533msgid "error: cannot combine '--signoff' with '--preserve-merges'"18534msgstr "erreur : '--signoff' et '--preserve-merges' sont incompatibles"1853518536#: git-rebase.sh:55618537msgid "error: cannot combine '--preserve_merges' with '--rebase-merges'"18538msgstr "erreur : '--rebase-merges' et '--preserve-merges' sont incompatibles"1853918540#: git-rebase.sh:56218541msgid "error: cannot combine '--rebase_merges' with '--strategy-option'"18542msgstr "erreur : '--rebase-merges' et '--strategy-option' sont incompatibles"1854318544#: git-rebase.sh:56418545msgid "error: cannot combine '--rebase_merges' with '--strategy'"18546msgstr "erreur : '--rebase-merges' et '--strategy' sont incompatibles"1854718548#: git-rebase.sh:59018549#, sh-format18550msgid "invalid upstream '$upstream_name'"18551msgstr "invalide '$upstream_name' en amont"1855218553#: git-rebase.sh:61418554#, sh-format18555msgid "$onto_name: there are more than one merge bases"18556msgstr "$onto_name : il y a plus d'une base de fusion"1855718558#: git-rebase.sh:617 git-rebase.sh:62118559#, sh-format18560msgid "$onto_name: there is no merge base"18561msgstr "$onto_name : il n'y a pas de base de fusion"1856218563#: git-rebase.sh:62618564#, sh-format18565msgid "Does not point to a valid commit: $onto_name"18566msgstr "Ne pointe pas sur une validation valide : $onto_name"1856718568#: git-rebase.sh:65218569#, sh-format18570msgid "fatal: no such branch/commit '$branch_name'"18571msgstr "fatal : pas de branche ou commit '$branch_name'"1857218573#: git-rebase.sh:68518574msgid "Cannot autostash"18575msgstr "Autoremisage impossible"1857618577#: git-rebase.sh:69018578#, sh-format18579msgid "Created autostash: $stash_abbrev"18580msgstr "Autoremisage créé : $stash_abbrev"1858118582#: git-rebase.sh:69418583msgid "Please commit or stash them."18584msgstr "Veuillez les valider ou les remiser."1858518586#: git-rebase.sh:71718587#, sh-format18588msgid "HEAD is up to date."18589msgstr "HEAD est à jour."1859018591#: git-rebase.sh:71918592#, sh-format18593msgid "Current branch $branch_name is up to date."18594msgstr "La branche courante $branch_name est à jour."1859518596#: git-rebase.sh:72718597#, sh-format18598msgid "HEAD is up to date, rebase forced."18599msgstr "HEAD est à jour, rebasage forcé."1860018601#: git-rebase.sh:72918602#, sh-format18603msgid "Current branch $branch_name is up to date, rebase forced."18604msgstr "La branche courante $branch_name est à jour, rebasage forcé."1860518606#: git-rebase.sh:74118607#, sh-format18608msgid "Changes from $mb to $onto:"18609msgstr "Changements de $mb sur $onto :"1861018611#: git-rebase.sh:75018612msgid "First, rewinding head to replay your work on top of it..."18613msgstr ""18614"Rembobinage préalable de head pour pouvoir rejouer votre travail par-"18615"dessus..."1861618617#: git-rebase.sh:76018618#, sh-format18619msgid "Fast-forwarded $branch_name to $onto_name."18620msgstr "$branch_name mise à jour en avance rapide sur $onto_name."1862118622#: git-stash.sh:6118623msgid "git stash clear with parameters is unimplemented"18624msgstr "git stash clear avec des paramètres n'est pas implémenté"1862518626#: git-stash.sh:10818627msgid "You do not have the initial commit yet"18628msgstr "Vous n'avez pas encore la validation initiale"1862918630#: git-stash.sh:12318631msgid "Cannot save the current index state"18632msgstr "Impossible de sauver l'état courant de l'index"1863318634#: git-stash.sh:13818635msgid "Cannot save the untracked files"18636msgstr "Impossible de sauver les fichiers non-suivis"1863718638#: git-stash.sh:158 git-stash.sh:17118639msgid "Cannot save the current worktree state"18640msgstr "Impossible de sauver l'état courant de la copie de travail"1864118642#: git-stash.sh:17518643msgid "No changes selected"18644msgstr "Aucun changement sélectionné"1864518646#: git-stash.sh:17818647msgid "Cannot remove temporary index (can't happen)"18648msgstr "Impossible de supprimer l'index temporaire (ne peut pas se produire)"1864918650#: git-stash.sh:19118651msgid "Cannot record working tree state"18652msgstr "Impossible d'enregistrer l'état de la copie de travail"1865318654#: git-stash.sh:22918655#, sh-format18656msgid "Cannot update $ref_stash with $w_commit"18657msgstr "Impossible de mettre à jour $ref_stash avec $w_commit"1865818659#: git-stash.sh:28118660#, sh-format18661msgid "error: unknown option for 'stash push': $option"18662msgstr "erreur : option inconnue pour 'stash push' : $option"1866318664#: git-stash.sh:29518665msgid "Can't use --patch and --include-untracked or --all at the same time"18666msgstr ""18667"Impossible d'utiliser --patch et --include-untracked ou --all en même temps"1866818669#: git-stash.sh:30318670msgid "No local changes to save"18671msgstr "Pas de modifications locales à sauver"1867218673#: git-stash.sh:30818674msgid "Cannot initialize stash"18675msgstr "Impossible d'initialiser le remisage"1867618677#: git-stash.sh:31218678msgid "Cannot save the current status"18679msgstr "Impossible de sauver l'état courant"1868018681#: git-stash.sh:31318682#, sh-format18683msgid "Saved working directory and index state $stash_msg"18684msgstr "Copie de travail et état de l'index sauvegardés dans $stash_msg"1868518686#: git-stash.sh:34218687msgid "Cannot remove worktree changes"18688msgstr "Impossible de supprimer les changements de la copie de travail"1868918690#: git-stash.sh:49018691#, sh-format18692msgid "unknown option: $opt"18693msgstr "option inconnue : $opt"1869418695#: git-stash.sh:50318696msgid "No stash entries found."18697msgstr "Aucune entrée de remisage trouvée."1869818699#: git-stash.sh:51018700#, sh-format18701msgid "Too many revisions specified: $REV"18702msgstr "Trop de révisions spécifiées : $REV"1870318704#: git-stash.sh:52518705#, sh-format18706msgid "$reference is not a valid reference"18707msgstr "$reference n'est pas une référence valide"1870818709#: git-stash.sh:55318710#, sh-format18711msgid "'$args' is not a stash-like commit"18712msgstr "'$args' n'est pas une validation de type remisage"1871318714#: git-stash.sh:56418715#, sh-format18716msgid "'$args' is not a stash reference"18717msgstr "'$args' n'est pas une référence de remisage"1871818719#: git-stash.sh:57218720msgid "unable to refresh index"18721msgstr "impossible de rafraîchir l'index"1872218723#: git-stash.sh:57618724msgid "Cannot apply a stash in the middle of a merge"18725msgstr "Impossible d'appliquer un remisage en cours de fusion"1872618727#: git-stash.sh:58418728msgid "Conflicts in index. Try without --index."18729msgstr "Conflits dans l'index. Essayez sans --index."1873018731#: git-stash.sh:58618732msgid "Could not save index tree"18733msgstr "Impossible de sauvegarder l'arbre d'index"1873418735#: git-stash.sh:59518736msgid "Could not restore untracked files from stash entry"18737msgstr ""18738"Impossible de restaurer les fichiers non-suivis depuis l'entrée de remisage"1873918740#: git-stash.sh:62018741msgid "Cannot unstage modified files"18742msgstr "Impossible de désindexer les fichiers modifiés"1874318744#: git-stash.sh:63518745msgid "Index was not unstashed."18746msgstr "L'index n'a pas été sorti de remise."1874718748#: git-stash.sh:64918749msgid "The stash entry is kept in case you need it again."18750msgstr ""18751"L'entrée de remisage est conservée au cas où vous en auriez encore besoin."1875218753#: git-stash.sh:65818754#, sh-format18755msgid "Dropped ${REV} ($s)"18756msgstr "${REV} supprimé ($s)"1875718758#: git-stash.sh:65918759#, sh-format18760msgid "${REV}: Could not drop stash entry"18761msgstr "${REV}: Impossible de supprimer l'élément de stash"1876218763#: git-stash.sh:66718764msgid "No branch name specified"18765msgstr "Aucune branche spécifiée"1876618767#: git-stash.sh:74618768msgid "(To restore them type \"git stash apply\")"18769msgstr "(Pour les restaurer tapez \"git stash apply\")"1877018771#: git-submodule.sh:18818772msgid "Relative path can only be used from the toplevel of the working tree"18773msgstr ""18774"Un chemin relatif ne peut être utilisé que depuis la racine de la copie de "18775"travail"1877618777#: git-submodule.sh:19818778#, sh-format18779msgid "repo URL: '$repo' must be absolute or begin with ./|../"18780msgstr "L'URL de dépôt '$repo' doit être absolu ou commencer par ./|../"1878118782#: git-submodule.sh:21718783#, sh-format18784msgid "'$sm_path' already exists in the index"18785msgstr "'$sm_path' existe déjà dans l'index"1878618787#: git-submodule.sh:22018788#, sh-format18789msgid "'$sm_path' already exists in the index and is not a submodule"18790msgstr "'$sm_path' existe déjà dans l'index et n'est pas un sous-module"1879118792#: git-submodule.sh:22618793#, sh-format18794msgid ""18795"The following path is ignored by one of your .gitignore files:\n"18796"$sm_path\n"18797"Use -f if you really want to add it."18798msgstr ""18799"Le chemin suivant est ignoré par un de vos fichiers .gitignore :\n"18800"$sm_path\n"18801"Utilisez -f si vous voulez vraiment l'ajouter."1880218803#: git-submodule.sh:24918804#, sh-format18805msgid "Adding existing repo at '$sm_path' to the index"18806msgstr "Ajout du dépôt existant à '$sm_path' dans l'index"1880718808#: git-submodule.sh:25118809#, sh-format18810msgid "'$sm_path' already exists and is not a valid git repo"18811msgstr "'$sm_path' existe déjà et n'est pas un dépôt git valide"1881218813#: git-submodule.sh:25918814#, sh-format18815msgid "A git directory for '$sm_name' is found locally with remote(s):"18816msgstr ""18817"Un répertoire git pour '$sm_name' est trouvé en local avec le(s) serveur(s) "18818"distant(s) :"1881918820#: git-submodule.sh:26118821#, sh-format18822msgid ""18823"If you want to reuse this local git directory instead of cloning again from\n"18824" $realrepo\n"18825"use the '--force' option. If the local git directory is not the correct "18826"repo\n"18827"or you are unsure what this means choose another name with the '--name' "18828"option."18829msgstr ""18830"Si vous voulez réutiliser ce répertoire local git au lieu de le recloner "18831"depuis\n"18832" $realrepo\n"18833"utilisez l'option '--force'. Si le répertoire local git n'est pas le dépôt "18834"correct\n"18835"ou si ceci n'est pas clair, choisissez un autre nom avec l'option '--name'."1883618837#: git-submodule.sh:26718838#, sh-format18839msgid "Reactivating local git directory for submodule '$sm_name'."18840msgstr "Réactivation du répertoire git local pour le sous-module '$sm_name'."1884118842#: git-submodule.sh:27918843#, sh-format18844msgid "Unable to checkout submodule '$sm_path'"18845msgstr "Impossible d'extraire le sous-module '$sm_path'"1884618847#: git-submodule.sh:28418848#, sh-format18849msgid "Failed to add submodule '$sm_path'"18850msgstr "Échec d'ajout du sous-module '$sm_path'"1885118852#: git-submodule.sh:29318853#, sh-format18854msgid "Failed to register submodule '$sm_path'"18855msgstr "Échec d'enregistrement du sous-module '$sm_path'"1885618857#: git-submodule.sh:56518858#, sh-format18859msgid "Unable to find current revision in submodule path '$displaypath'"18860msgstr ""18861"Impossible de trouver la révision courante dans le chemin de sous-module "18862"'$displaypath'"1886318864#: git-submodule.sh:57518865#, sh-format18866msgid "Unable to fetch in submodule path '$sm_path'"18867msgstr "Impossible de rapatrier dans le chemin de sous-module '$sm_path'"1886818869#: git-submodule.sh:58018870#, sh-format18871msgid ""18872"Unable to find current ${remote_name}/${branch} revision in submodule path "18873"'$sm_path'"18874msgstr ""18875"Impossible de trouver la révision courante ${remote_name}/${branch} dans le "18876"chemin de sous-module '$sm_path'"1887718878#: git-submodule.sh:60318879#, sh-format18880msgid "Unable to fetch in submodule path '$displaypath'"18881msgstr "Impossible de rapatrier dans le chemin de sous-module '$displaypath'"1888218883#: git-submodule.sh:60918884#, sh-format18885msgid ""18886"Fetched in submodule path '$displaypath', but it did not contain $sha1. "18887"Direct fetching of that commit failed."18888msgstr ""18889"Chemin de sous-module '$displaypath' récupéré, mais il ne contenait pas "18890"$sha1. La récupération directe de ce commit a échoué."1889118892#: git-submodule.sh:61618893#, sh-format18894msgid "Unable to checkout '$sha1' in submodule path '$displaypath'"18895msgstr ""18896"Impossible d'extraire '$sha1' dans le chemin de sous-module '$displaypath'"1889718898#: git-submodule.sh:61718899#, sh-format18900msgid "Submodule path '$displaypath': checked out '$sha1'"18901msgstr "Chemin de sous-module '$displaypath' : '$sha1' extrait"1890218903#: git-submodule.sh:62118904#, sh-format18905msgid "Unable to rebase '$sha1' in submodule path '$displaypath'"18906msgstr ""18907"Impossible de rebaser '$sha1' dans le chemin de sous-module '$displaypath'"1890818909#: git-submodule.sh:62218910#, sh-format18911msgid "Submodule path '$displaypath': rebased into '$sha1'"18912msgstr "Chemin de sous-module '$displaypath' : rebasé dans '$sha1'"1891318914#: git-submodule.sh:62718915#, sh-format18916msgid "Unable to merge '$sha1' in submodule path '$displaypath'"18917msgstr ""18918"Impossible de fusionner '$sha1' dans le chemin de sous-module '$displaypath'"1891918920#: git-submodule.sh:62818921#, sh-format18922msgid "Submodule path '$displaypath': merged in '$sha1'"18923msgstr "Chemin de sous-module '$displaypath' : fusionné dans '$sha1'"1892418925#: git-submodule.sh:63318926#, sh-format18927msgid "Execution of '$command $sha1' failed in submodule path '$displaypath'"18928msgstr ""18929"L'exécution de '$command $sha1' a échoué dans le chemin de sous-module "18930"'$displaypath'"1893118932#: git-submodule.sh:63418933#, sh-format18934msgid "Submodule path '$displaypath': '$command $sha1'"18935msgstr "Chemin de sous-module '$displaypath' : '$command $sha1'"1893618937#: git-submodule.sh:66518938#, sh-format18939msgid "Failed to recurse into submodule path '$displaypath'"18940msgstr "Échec de parcours dans le chemin du sous-module '$displaypath'"1894118942#: git-submodule.sh:76118943msgid "The --cached option cannot be used with the --files option"18944msgstr "L'option --cached ne peut pas être utilisée avec l'option --files"1894518946#: git-submodule.sh:81318947#, sh-format18948msgid "unexpected mode $mod_dst"18949msgstr "mode $mod_dst inattendu"1895018951#: git-submodule.sh:83318952#, sh-format18953msgid " Warn: $display_name doesn't contain commit $sha1_src"18954msgstr " Attention : $display_name ne contient pas la validation $sha1_src"1895518956#: git-submodule.sh:83618957#, sh-format18958msgid " Warn: $display_name doesn't contain commit $sha1_dst"18959msgstr " Attention : $display_name ne contient pas la validation $sha1_dst"1896018961#: git-submodule.sh:83918962#, sh-format18963msgid " Warn: $display_name doesn't contain commits $sha1_src and $sha1_dst"18964msgstr ""18965" Attention : $display_name ne contient pas les validations $sha1_src et "18966"$sha1_dst"1896718968#: git-parse-remote.sh:8918969#, sh-format18970msgid "See git-${cmd}(1) for details."18971msgstr "Référez-vous à git-${cmd}(1) pour de plus amples détails."1897218973#: git-rebase--interactive.sh:4318974msgid ""18975"\n"18976"Commands:\n"18977"p, pick <commit> = use commit\n"18978"r, reword <commit> = use commit, but edit the commit message\n"18979"e, edit <commit> = use commit, but stop for amending\n"18980"s, squash <commit> = use commit, but meld into previous commit\n"18981"f, fixup <commit> = like \"squash\", but discard this commit's log message\n"18982"x, exec <command> = run command (the rest of the line) using shell\n"18983"d, drop <commit> = remove commit\n"18984"l, label <label> = label current HEAD with a name\n"18985"t, reset <label> = reset HEAD to a label\n"18986"m, merge [-C <commit> | -c <commit>] <label> [# <oneline>]\n"18987". create a merge commit using the original merge commit's\n"18988". message (or the oneline, if no original merge commit was\n"18989". specified). Use -c <commit> to reword the commit message.\n"18990"\n"18991"These lines can be re-ordered; they are executed from top to bottom.\n"18992msgstr ""18993"\n"18994"Commandes :\n"18995" p, pick <commit> = utiliser le commit\n"18996" r, reword <commit> = utiliser le commit, mais reformuler son message\n"18997" e, edit <commit> = utiliser le commit, mais s'arrêter pour le modifier\n"18998" s, squash <commit> = utiliser le commit, mais le fusionner avec le "18999"précédent\n"19000" f, fixup <commit> = comme \"squash\", mais en éliminant son message\n"19001" x, exec <commit> = lancer la commande (reste de la ligne) dans un shell\n"19002" d, drop <commit> = supprimer le commit\n"19003" l, label <label> = étiqueter la HEAD courante avec un nom\n"19004" t, reset <label> = réinitialiser HEAD à label\n"19005" m, merge [-C <commit> | -c <commit>] <label> [# <uniligne>]\n"19006" créer un commit de fusion utilisant le message de fusion original\n"19007" (ou l'uniligne, si aucun commit de fusion n'a été spécifié).\n"19008" Utilisez -c <commit> pour reformuler le message de validation.\n"19009"\n"19010"Vous pouvez réordonner ces lignes ; elles sont exécutées de haut en bas.\n"1901119012#: git-rebase--interactive.sh:64 git-rebase--preserve-merges.sh:17319013msgid ""19014"\n"19015"Do not remove any line. Use 'drop' explicitly to remove a commit.\n"19016msgstr ""19017"\n"19018"Ne supprimez aucune ligne. Utilisez 'drop' explicitement pour supprimer un "19019"commit.\n"1902019021#: git-rebase--interactive.sh:68 git-rebase--preserve-merges.sh:17719022msgid ""19023"\n"19024"If you remove a line here THAT COMMIT WILL BE LOST.\n"19025msgstr ""19026"\n"19027"Si vous éliminez une ligne ici, LE COMMIT CORRESPONDANT SERA PERDU.\n"1902819029#: git-rebase--interactive.sh:108 git-rebase--preserve-merges.sh:72419030msgid "could not detach HEAD"19031msgstr "Impossible de détacher HEAD"1903219033#: git-rebase--interactive.sh:147 git-rebase--preserve-merges.sh:81619034msgid ""19035"\n"19036"You are editing the todo file of an ongoing interactive rebase.\n"19037"To continue rebase after editing, run:\n"19038" git rebase --continue\n"19039"\n"19040msgstr ""19041"\n"19042"Vous êtes en train d'éditer le fichier todo d'un rebasage interactif en "19043"cours.\n"19044"Pour continuer le rebasage après édition, lancez :\n"19045" git rebase --continue\n"19046"\n"1904719048#: git-rebase--interactive.sh:155 git-rebase--interactive.sh:24119049#: git-rebase--preserve-merges.sh:824 git-rebase--preserve-merges.sh:91019050msgid "Could not execute editor"19051msgstr "Impossible de lancer l'éditeur"1905219053#: git-rebase--interactive.sh:176 git-rebase--preserve-merges.sh:84519054#, sh-format19055msgid "Could not checkout $switch_to"19056msgstr "Impossible d'extraire $switch_to"1905719058#: git-rebase--interactive.sh:183 git-rebase--preserve-merges.sh:85219059msgid "No HEAD?"19060msgstr "Pas de HEAD ?"1906119062#: git-rebase--interactive.sh:184 git-rebase--preserve-merges.sh:85319063#, sh-format19064msgid "Could not create temporary $state_dir"19065msgstr "Impossible de créer un répertoire temporaire $state_dir"1906619067#: git-rebase--interactive.sh:187 git-rebase--preserve-merges.sh:85619068msgid "Could not mark as interactive"19069msgstr "Impossible de marquer comme interactif"1907019071#: git-rebase--interactive.sh:219 git-rebase--preserve-merges.sh:88819072#, sh-format19073msgid "Rebase $shortrevisions onto $shortonto ($todocount command)"19074msgid_plural "Rebase $shortrevisions onto $shortonto ($todocount commands)"19075msgstr[0] "Rebasage de $shortrevisions sur $shortonto ($todocount commande)"19076msgstr[1] "Rebasage de $shortrevisions sur $shortonto ($todocount commandes)"1907719078#: git-rebase--interactive.sh:22419079msgid ""19080"\n"19081"\tHowever, if you remove everything, the rebase will be aborted.\n"19082"\n"19083"\t"19084msgstr ""19085"\n"19086"Cependant, si vous effacez tout, le rebasage sera annulé.\n"19087"\n"19088"\t"1908919090#: git-rebase--interactive.sh:231 git-rebase--preserve-merges.sh:90019091msgid "Note that empty commits are commented out"19092msgstr "Veuillez noter que les commits vides sont en commentaire"1909319094#: git-rebase--interactive.sh:28019095msgid "Could not generate todo list"19096msgstr "Impossible de générer la liste à-faire"1909719098#: git-rebase--preserve-merges.sh:13619099#, sh-format19100msgid "Rebasing ($new_count/$total)"19101msgstr "Rebasage ($new_count/$total)"1910219103#: git-rebase--preserve-merges.sh:15219104msgid ""19105"\n"19106"Commands:\n"19107"p, pick <commit> = use commit\n"19108"r, reword <commit> = use commit, but edit the commit message\n"19109"e, edit <commit> = use commit, but stop for amending\n"19110"s, squash <commit> = use commit, but meld into previous commit\n"19111"f, fixup <commit> = like \"squash\", but discard this commit's log message\n"19112"x, exec <commit> = run command (the rest of the line) using shell\n"19113"d, drop <commit> = remove commit\n"19114"l, label <label> = label current HEAD with a name\n"19115"t, reset <label> = reset HEAD to a label\n"19116"m, merge [-C <commit> | -c <commit>] <label> [# <oneline>]\n"19117". create a merge commit using the original merge commit's\n"19118". message (or the oneline, if no original merge commit was\n"19119". specified). Use -c <commit> to reword the commit message.\n"19120"\n"19121"These lines can be re-ordered; they are executed from top to bottom.\n"19122msgstr ""19123"\n"19124"Commandes :\n"19125" p, pick <commit> = utiliser le commit\n"19126" r, reword <commit> = utiliser le commit, mais reformuler son message\n"19127" e, edit <commit> = utiliser le commit, mais s'arrêter pour le modifier\n"19128" s, squash <commit> = utiliser le commit, mais le fusionner avec le "19129"précédent\n"19130" f, fixup <commit> = comme \"squash\", mais en éliminant son message\n"19131" x, exec <commit> = lancer la commande (reste de la ligne) dans un shell\n"19132" d, drop <commit> = supprimer le commit\n"19133" l, label <label> = étiqueter la HEAD courante avec un nom\n"19134" t, reset <label> = réinitialiser HEAD à label\n"19135" m, merge [-C <commit> | -c <commit>] <label> [# <uniligne>]\n"19136" créer un commit de fusion utilisant le message de fusion original\n"19137" (ou l'uniligne, si aucun commit de fusion n'a été spécifié).\n"19138" Utilisez -c <commit> pour reformuler le message de validation.\n"19139"\n"19140"Vous pouvez réordonner ces lignes ; elles sont exécutées de haut en bas.\n"1914119142#: git-rebase--preserve-merges.sh:21519143#, sh-format19144msgid ""19145"You can amend the commit now, with\n"19146"\n"19147"\tgit commit --amend $gpg_sign_opt_quoted\n"19148"\n"19149"Once you are satisfied with your changes, run\n"19150"\n"19151"\tgit rebase --continue"19152msgstr ""19153"Vous pouvez corriger le commit maintenant, avec\n"19154"\n"19155"\tgit commit --amend $gpg_sign_opt_quoted\n"19156"\n"19157"après avoir réalisé vos modifications, lancez\n"19158"\n"19159"\tgit rebase --continue"1916019161#: git-rebase--preserve-merges.sh:24019162#, sh-format19163msgid "$sha1: not a commit that can be picked"19164msgstr "$sha1 n'est pas un commit qui peut être picorer"1916519166#: git-rebase--preserve-merges.sh:27919167#, sh-format19168msgid "Invalid commit name: $sha1"19169msgstr "Nom de commit invalide : $sha1"1917019171#: git-rebase--preserve-merges.sh:30919172msgid "Cannot write current commit's replacement sha1"19173msgstr "Impossible de sauver le sha1 du remplaçant du commit en cours"1917419175#: git-rebase--preserve-merges.sh:36019176#, sh-format19177msgid "Fast-forward to $sha1"19178msgstr "Avance rapide sur $sha1"1917919180#: git-rebase--preserve-merges.sh:36219181#, sh-format19182msgid "Cannot fast-forward to $sha1"19183msgstr "Avance rapide impossible sur $sha1"1918419185#: git-rebase--preserve-merges.sh:37119186#, sh-format19187msgid "Cannot move HEAD to $first_parent"19188msgstr "Impossible de déplacer HEAD sur $first_parent"1918919190#: git-rebase--preserve-merges.sh:37619191#, sh-format19192msgid "Refusing to squash a merge: $sha1"19193msgstr "Refus d'écraser un commit de fusion: $sha1"1919419195#: git-rebase--preserve-merges.sh:39419196#, sh-format19197msgid "Error redoing merge $sha1"19198msgstr "Erreur lors de la réapplication de la fusion $sha1"1919919200#: git-rebase--preserve-merges.sh:40319201#, sh-format19202msgid "Could not pick $sha1"19203msgstr "Impossible de picorer $sha1"1920419205#: git-rebase--preserve-merges.sh:41219206#, sh-format19207msgid "This is the commit message #${n}:"19208msgstr "Ceci est le ${n}ième message de validation :"1920919210#: git-rebase--preserve-merges.sh:41719211#, sh-format19212msgid "The commit message #${n} will be skipped:"19213msgstr "Le message de validation ${n} sera ignoré :"1921419215#: git-rebase--preserve-merges.sh:42819216#, sh-format19217msgid "This is a combination of $count commit."19218msgid_plural "This is a combination of $count commits."19219msgstr[0] "Ceci est la combinaison de $count commit."19220msgstr[1] "Ceci est la combinaison de $count commits."1922119222#: git-rebase--preserve-merges.sh:43719223#, sh-format19224msgid "Cannot write $fixup_msg"19225msgstr "Impossible d'écrire $fixup_msg"1922619227#: git-rebase--preserve-merges.sh:44019228msgid "This is a combination of 2 commits."19229msgstr "Ceci est la combinaison de 2 commits."1923019231#: git-rebase--preserve-merges.sh:481 git-rebase--preserve-merges.sh:52419232#: git-rebase--preserve-merges.sh:52719233#, sh-format19234msgid "Could not apply $sha1... $rest"19235msgstr "Impossible d'appliquer $sha1... $rest"1923619237#: git-rebase--preserve-merges.sh:55619238#, sh-format19239msgid ""19240"Could not amend commit after successfully picking $sha1... $rest\n"19241"This is most likely due to an empty commit message, or the pre-commit hook\n"19242"failed. If the pre-commit hook failed, you may need to resolve the issue "19243"before\n"19244"you are able to reword the commit."19245msgstr ""19246"Impossible de corriger le commit après avoir réussi à picorer $sha1... "19247"$rest\n"19248"C'est probablement dû à un message de validation vide ou le crochet pre-"19249"commit\n"19250"a échoué. Si le crochet pre-commit a échoué, vous devez peut-être résoudre "19251"le\n"19252"problème avant de pouvoir reformuler le message du commit."1925319254#: git-rebase--preserve-merges.sh:57119255#, sh-format19256msgid "Stopped at $sha1_abbrev... $rest"19257msgstr "Arrêté à $sha1_abbrev... $rest"1925819259#: git-rebase--preserve-merges.sh:58619260#, sh-format19261msgid "Cannot '$squash_style' without a previous commit"19262msgstr "'$squash_style' impossible avec le commit précédent"1926319264#: git-rebase--preserve-merges.sh:62819265#, sh-format19266msgid "Executing: $rest"19267msgstr "Exécution : $rest"1926819269#: git-rebase--preserve-merges.sh:63619270#, sh-format19271msgid "Execution failed: $rest"19272msgstr "L'exécution a échoué : $rest"1927319274#: git-rebase--preserve-merges.sh:63819275msgid "and made changes to the index and/or the working tree"19276msgstr "et a mis à jour l'index ou la copie de travail"1927719278#: git-rebase--preserve-merges.sh:64019279msgid ""19280"You can fix the problem, and then run\n"19281"\n"19282"\tgit rebase --continue"19283msgstr ""19284"Vous pouvez corriger le problème, puis lancer\n"19285"\n"19286"git rebase --continue"1928719288#. TRANSLATORS: after these lines is a command to be issued by the user19289#: git-rebase--preserve-merges.sh:65319290#, sh-format19291msgid ""19292"Execution succeeded: $rest\n"19293"but left changes to the index and/or the working tree\n"19294"Commit or stash your changes, and then run\n"19295"\n"19296"\tgit rebase --continue"19297msgstr ""19298"L'exécution a réussi : $rest\n"19299"mais a laissé des modifications dans l'index ou la copie de travail\n"19300"Validez ou remisez vos modification, puis lancez\n"19301"\n"19302"\tgit rebase --continue"1930319304#: git-rebase--preserve-merges.sh:66419305#, sh-format19306msgid "Unknown command: $command $sha1 $rest"19307msgstr "Commande inconnue : $command $sha1 $rest"1930819309#: git-rebase--preserve-merges.sh:66519310msgid "Please fix this using 'git rebase --edit-todo'."19311msgstr "Veuillez corriger ceci en utilisant 'git rebase --edit-todo'."1931219313#: git-rebase--preserve-merges.sh:70019314#, sh-format19315msgid "Successfully rebased and updated $head_name."19316msgstr "Rebasage et mise à jour de $head_name avec succès."1931719318#: git-rebase--preserve-merges.sh:75719319msgid "Could not remove CHERRY_PICK_HEAD"19320msgstr "Impossible de supprimer CHERRY_PICK_HEAD"1932119322#: git-rebase--preserve-merges.sh:76219323#, sh-format19324msgid ""19325"You have staged changes in your working tree.\n"19326"If these changes are meant to be\n"19327"squashed into the previous commit, run:\n"19328"\n"19329" git commit --amend $gpg_sign_opt_quoted\n"19330"\n"19331"If they are meant to go into a new commit, run:\n"19332"\n"19333" git commit $gpg_sign_opt_quoted\n"19334"\n"19335"In both cases, once you're done, continue with:\n"19336"\n"19337" git rebase --continue\n"19338msgstr ""19339"Vous avez des modifications indexées dans votre copie de travail.\n"19340"Si ces modifications devaient être ajoutées\n"19341"dans le commit précédent, lancez :\n"19342"\n"19343" git commit --amend $gpg_sign_opt_quoted\n"19344"\n"19345"Si elles devaient aller dans un nouveau commit, lancez :\n"19346"\n"19347" git commit $gpg_sign_opt_quoted\n"19348"\n"19349"Dans les deux cas, une fois fini, continuez avec :\n"19350"\n"19351" git rebase --continue\n"1935219353#: git-rebase--preserve-merges.sh:77919354msgid "Error trying to find the author identity to amend commit"19355msgstr ""19356"Erreur lors de la recherche de l'identité de l'auteur pour corriger le commit"1935719358#: git-rebase--preserve-merges.sh:78419359msgid ""19360"You have uncommitted changes in your working tree. Please commit them\n"19361"first and then run 'git rebase --continue' again."19362msgstr ""19363"Vous avez des modifications non validées dans votre copie de travail.\n"19364"Veuillez les valider d'abord, puis relancer 'git rebase --continue'."1936519366#: git-rebase--preserve-merges.sh:789 git-rebase--preserve-merges.sh:79319367msgid "Could not commit staged changes."19368msgstr "impossible de valider les modifications indexées."1936919370#: git-rebase--preserve-merges.sh:89319371msgid ""19372"\n"19373"However, if you remove everything, the rebase will be aborted.\n"19374"\n"19375msgstr ""19376"\n"19377"Cependant, si vous effacez tout, le rebasage sera annulé.\n"19378"\n"1937919380#: git-rebase--preserve-merges.sh:942 git-rebase--preserve-merges.sh:94719381msgid "Could not init rewritten commits"19382msgstr "Impossible d'initialiser les commits réécrits"1938319384#: git-sh-setup.sh:89 git-sh-setup.sh:9419385#, sh-format19386msgid "usage: $dashless $USAGE"19387msgstr "usage : $dashless $USAGE"1938819389#: git-sh-setup.sh:19019390#, sh-format19391msgid "Cannot chdir to $cdup, the toplevel of the working tree"19392msgstr ""19393"Impossible de se placer dans le répertoire $cdup, la racine de la copie de "19394"travail"1939519396#: git-sh-setup.sh:199 git-sh-setup.sh:20619397#, sh-format19398msgid "fatal: $program_name cannot be used without a working tree."19399msgstr "fatal : $program_name ne peut pas être utilisé sans copie de travail."1940019401#: git-sh-setup.sh:22019402msgid "Cannot rebase: You have unstaged changes."19403msgstr "Impossible de rebaser : vous avez des modifications non indexées."1940419405#: git-sh-setup.sh:22319406msgid "Cannot rewrite branches: You have unstaged changes."19407msgstr ""19408"Impossible de réécrire les branches : vous avez des modifications non "19409"indexées."1941019411#: git-sh-setup.sh:22619412msgid "Cannot pull with rebase: You have unstaged changes."19413msgstr ""19414"impossible de tirer avec rebasage. Vous avez des modifications non indexées."1941519416#: git-sh-setup.sh:22919417#, sh-format19418msgid "Cannot $action: You have unstaged changes."19419msgstr "$action est impossible : vous avez des modifications non indexées."1942019421#: git-sh-setup.sh:24219422msgid "Cannot rebase: Your index contains uncommitted changes."19423msgstr ""19424"Impossible de rebaser : votre index contient des modifications non validées."1942519426#: git-sh-setup.sh:24519427msgid "Cannot pull with rebase: Your index contains uncommitted changes."19428msgstr ""19429"impossible de tirer avec rebasage : votre index contient des modifications "19430"non validées."1943119432#: git-sh-setup.sh:24819433#, sh-format19434msgid "Cannot $action: Your index contains uncommitted changes."19435msgstr ""19436"$action est impossible : votre index contient des modifications non validées."1943719438#: git-sh-setup.sh:25219439msgid "Additionally, your index contains uncommitted changes."19440msgstr "De plus, votre index contient des modifications non validées."1944119442#: git-sh-setup.sh:37219443msgid "You need to run this command from the toplevel of the working tree."19444msgstr ""19445"Vous devez lancer cette commande depuis la racine de votre copie de travail."1944619447#: git-sh-setup.sh:37719448msgid "Unable to determine absolute path of git directory"19449msgstr "Impossible de déterminer le chemin absolu du répertoire git"1945019451#. TRANSLATORS: you can adjust this to align "git add -i" status menu19452#: git-add--interactive.perl:19619453#, perl-format19454msgid "%12s %12s %s"19455msgstr "%12s %s12s %s"1945619457#: git-add--interactive.perl:19719458msgid "staged"19459msgstr "indexé"1946019461#: git-add--interactive.perl:19719462msgid "unstaged"19463msgstr "non-indexé"1946419465#: git-add--interactive.perl:253 git-add--interactive.perl:27819466msgid "binary"19467msgstr "binaire"1946819469#: git-add--interactive.perl:262 git-add--interactive.perl:31619470msgid "nothing"19471msgstr "rien"1947219473#: git-add--interactive.perl:298 git-add--interactive.perl:31319474msgid "unchanged"19475msgstr "inchangé"1947619477#: git-add--interactive.perl:60919478#, perl-format19479msgid "added %d path\n"19480msgid_plural "added %d paths\n"19481msgstr[0] "%d chemin ajouté\n"19482msgstr[1] "%d chemins ajoutés\n"1948319484#: git-add--interactive.perl:61219485#, perl-format19486msgid "updated %d path\n"19487msgid_plural "updated %d paths\n"19488msgstr[0] "%d chemin mis à jour\n"19489msgstr[1] "%d chemins mis à jour\n"1949019491#: git-add--interactive.perl:61519492#, perl-format19493msgid "reverted %d path\n"19494msgid_plural "reverted %d paths\n"19495msgstr[0] "%d chemin inversé\n"19496msgstr[1] "%d chemins inversés\n"1949719498#: git-add--interactive.perl:61819499#, perl-format19500msgid "touched %d path\n"19501msgid_plural "touched %d paths\n"19502msgstr[0] "%d chemin touché\n"19503msgstr[1] "%d chemins touchés\n"1950419505#: git-add--interactive.perl:62719506msgid "Update"19507msgstr "Mise à jour"1950819509#: git-add--interactive.perl:63919510msgid "Revert"19511msgstr "Inverser"1951219513#: git-add--interactive.perl:66219514#, perl-format19515msgid "note: %s is untracked now.\n"19516msgstr "note : %s n'est plus suivi à présent.\n"1951719518#: git-add--interactive.perl:67319519msgid "Add untracked"19520msgstr "Ajouter un fichier non-suivi"1952119522#: git-add--interactive.perl:67919523msgid "No untracked files.\n"19524msgstr "Aucun Fichier non suivi.\n"1952519526#: git-add--interactive.perl:103319527msgid ""19528"If the patch applies cleanly, the edited hunk will immediately be\n"19529"marked for staging."19530msgstr ""19531"Si le patch s'applique proprement, la section éditée sera\n"19532"immédiatement marquée comme indexée."1953319534#: git-add--interactive.perl:103619535msgid ""19536"If the patch applies cleanly, the edited hunk will immediately be\n"19537"marked for stashing."19538msgstr ""19539"Si le patch s'applique proprement, la section éditée sera\n"19540"immédiatement marquée comme remisée."1954119542#: git-add--interactive.perl:103919543msgid ""19544"If the patch applies cleanly, the edited hunk will immediately be\n"19545"marked for unstaging."19546msgstr ""19547"Si le patch s'applique proprement, la section éditée sera\n"19548"immédiatement marquée comme desindexée."1954919550#: git-add--interactive.perl:1042 git-add--interactive.perl:105119551msgid ""19552"If the patch applies cleanly, the edited hunk will immediately be\n"19553"marked for applying."19554msgstr ""19555"Si le patch s'applique proprement, la section éditée sera\n"19556"immédiatement marquée comme appliquée."1955719558#: git-add--interactive.perl:1045 git-add--interactive.perl:104819559msgid ""19560"If the patch applies cleanly, the edited hunk will immediately be\n"19561"marked for discarding."19562msgstr ""19563"Si le patch s'applique proprement, la section éditée sera\n"19564"immédiatement marquée comme éliminée."1956519566#: git-add--interactive.perl:108519567#, perl-format19568msgid "failed to open hunk edit file for writing: %s"19569msgstr "impossible d'ouvrir le fichier d'édition de section en écriture : %s"1957019571#: git-add--interactive.perl:108619572msgid "Manual hunk edit mode -- see bottom for a quick guide.\n"19573msgstr ""19574"Mode d'édition manuelle de section -- voir ci-dessous pour un guide rapide.\n"1957519576#: git-add--interactive.perl:109219577#, perl-format19578msgid ""19579"---\n"19580"To remove '%s' lines, make them ' ' lines (context).\n"19581"To remove '%s' lines, delete them.\n"19582"Lines starting with %s will be removed.\n"19583msgstr ""19584"---\n"19585"Pour éliminer les lignes '%s', rendez-les ' ' (contexte).\n"19586"Pour éliminer les lignes '%s', effacez-les.\n"19587"Les lignes commençant par %s seront éliminées.\n"1958819589#. TRANSLATORS: 'it' refers to the patch mentioned in the previous messages.19590#: git-add--interactive.perl:110019591msgid ""19592"If it does not apply cleanly, you will be given an opportunity to\n"19593"edit again. If all lines of the hunk are removed, then the edit is\n"19594"aborted and the hunk is left unchanged.\n"19595msgstr ""19596"Si ça ne s'applique pas proprement, vous aurez la possibilité de\n"19597"l'éditer à nouveau. Si toutes les lignes de la section sont supprimées,\n"19598"alors l'édition sera abandonnée et la section conservée.\n"1959919600#: git-add--interactive.perl:111419601#, perl-format19602msgid "failed to open hunk edit file for reading: %s"19603msgstr "échec de l'ouverture du fichier d'édition de section en lecture : %s"1960419605#. TRANSLATORS: do not translate [y/n]19606#. The program will only accept that input19607#. at this point.19608#. Consider translating (saying "no" discards!) as19609#. (saying "n" for "no" discards!) if the translation19610#. of the word "no" does not start with n.19611#: git-add--interactive.perl:121319612msgid ""19613"Your edited hunk does not apply. Edit again (saying \"no\" discards!) [y/n]? "19614msgstr ""19615"Votre section éditée ne s'applique pas. L'éditer à nouveau (\"no\" "19616"l'élimine !) [y|n] ? "1961719618#: git-add--interactive.perl:122219619msgid ""19620"y - stage this hunk\n"19621"n - do not stage this hunk\n"19622"q - quit; do not stage this hunk or any of the remaining ones\n"19623"a - stage this hunk and all later hunks in the file\n"19624"d - do not stage this hunk or any of the later hunks in the file"19625msgstr ""19626"y - indexer cette section\n"19627"n - ne pas indexer cette section\n"19628"q - quitter ; ne pas indexer cette section ni les autres restantes\n"19629"a - indexer cette section et toutes les suivantes de ce fichier\n"19630"d - ne pas indexer cette section ni les suivantes de ce fichier"1963119632#: git-add--interactive.perl:122819633msgid ""19634"y - stash this hunk\n"19635"n - do not stash this hunk\n"19636"q - quit; do not stash this hunk or any of the remaining ones\n"19637"a - stash this hunk and all later hunks in the file\n"19638"d - do not stash this hunk or any of the later hunks in the file"19639msgstr ""19640"y - remiser cette section\n"19641"n - ne pas remiser cette section\n"19642"q - quitter ; ne pas remiser cette section ni les autres restantes\n"19643"a - remiser cette section et toutes les suivantes de ce fichier\n"19644"d - ne pas remiser cette section ni les suivantes de ce fichier"1964519646#: git-add--interactive.perl:123419647msgid ""19648"y - unstage this hunk\n"19649"n - do not unstage this hunk\n"19650"q - quit; do not unstage this hunk or any of the remaining ones\n"19651"a - unstage this hunk and all later hunks in the file\n"19652"d - do not unstage this hunk or any of the later hunks in the file"19653msgstr ""19654"y - désindexer cette section\n"19655"n - ne pas désindexer cette section\n"19656"q - quitter ; ne pas désindexer cette section ni les autres restantes\n"19657"a - désindexer cette section et toutes les suivantes de ce fichier\n"19658"d - ne pas désindexer cette section ni les suivantes de ce fichier"1965919660#: git-add--interactive.perl:124019661msgid ""19662"y - apply this hunk to index\n"19663"n - do not apply this hunk to index\n"19664"q - quit; do not apply this hunk or any of the remaining ones\n"19665"a - apply this hunk and all later hunks in the file\n"19666"d - do not apply this hunk or any of the later hunks in the file"19667msgstr ""19668"y - appliquer cette section\n"19669"n - ne pas appliquer cette section\n"19670"q - quitter ; ne pas appliquer cette section ni les autres restantes\n"19671"a - appliquer cette section et toutes les suivantes de ce fichier\n"19672"d - ne pas appliquer cette section ni les suivantes de ce fichier"1967319674#: git-add--interactive.perl:124619675msgid ""19676"y - discard this hunk from worktree\n"19677"n - do not discard this hunk from worktree\n"19678"q - quit; do not discard this hunk or any of the remaining ones\n"19679"a - discard this hunk and all later hunks in the file\n"19680"d - do not discard this hunk or any of the later hunks in the file"19681msgstr ""19682"y - supprimer cette section\n"19683"n - ne pas supprimer cette section\n"19684"q - quitter ; ne pas supprimer cette section ni les autres restantes\n"19685"a - supprimer cette section et toutes les suivantes de ce fichier\n"19686"d - ne pas supprimer cette section ni les suivantes de ce fichier"1968719688#: git-add--interactive.perl:125219689msgid ""19690"y - discard this hunk from index and worktree\n"19691"n - do not discard this hunk from index and worktree\n"19692"q - quit; do not discard this hunk or any of the remaining ones\n"19693"a - discard this hunk and all later hunks in the file\n"19694"d - do not discard this hunk or any of the later hunks in the file"19695msgstr ""19696"y - éliminer cette section de l'index et de l'arbre de travail\n"19697"n - ne pas éliminer cette section\n"19698"q - quitter ; ne pas éliminer cette section ni les autres restantes\n"19699"a - éliminer cette section et toutes les suivantes de ce fichier\n"19700"d - ne pas éliminer cette section ni les suivantes de ce fichier"1970119702#: git-add--interactive.perl:125819703msgid ""19704"y - apply this hunk to index and worktree\n"19705"n - do not apply this hunk to index and worktree\n"19706"q - quit; do not apply this hunk or any of the remaining ones\n"19707"a - apply this hunk and all later hunks in the file\n"19708"d - do not apply this hunk or any of the later hunks in the file"19709msgstr ""19710"y - appliquer cette section à l'index et à l'arbre de travail\n"19711"n - ne pas appliquer cette section\n"19712"q - quitter ; ne pas appliquer cette section ni les autres restantes\n"19713"a - appliquer cette section et toutes les suivantes de ce fichier\n"19714"d - ne pas appliquer cette section ni les suivantes de ce fichier"1971519716#: git-add--interactive.perl:127319717msgid ""19718"g - select a hunk to go to\n"19719"/ - search for a hunk matching the given regex\n"19720"j - leave this hunk undecided, see next undecided hunk\n"19721"J - leave this hunk undecided, see next hunk\n"19722"k - leave this hunk undecided, see previous undecided hunk\n"19723"K - leave this hunk undecided, see previous hunk\n"19724"s - split the current hunk into smaller hunks\n"19725"e - manually edit the current hunk\n"19726"? - print help\n"19727msgstr ""19728"g - selectionner une section et s'y rendre\n"19729"/ - rechercher une section correspondant à une regex donnée\n"19730"j - laisser cette section non décidée et aller à la suivante non-décidée\n"19731"J - laisser cette section non décidée et aller à la suivante\n"19732"k - laisser cette section non décidée et aller à la précédente non-décidée\n"19733"K - laisser cette section non décidée et aller à la précédente\n"19734"s - découper la section en sections plus petites\n"19735"e - éditer manuellement la section actuelle\n"19736"? - afficher l'aide\n"1973719738#: git-add--interactive.perl:130419739msgid "The selected hunks do not apply to the index!\n"19740msgstr "Les sections sélectionnées ne s'applique pas à l'index !\n"1974119742#: git-add--interactive.perl:130519743msgid "Apply them to the worktree anyway? "19744msgstr "Les appliquer quand même à l'arbre de travail ? "1974519746#: git-add--interactive.perl:130819747msgid "Nothing was applied.\n"19748msgstr "Rien n'a été appliqué.\n"1974919750#: git-add--interactive.perl:131919751#, perl-format19752msgid "ignoring unmerged: %s\n"19753msgstr "fichier non-fusionné ignoré : %s\n"1975419755#: git-add--interactive.perl:132819756msgid "Only binary files changed.\n"19757msgstr "Seuls des fichiers binaires ont changé.\n"1975819759#: git-add--interactive.perl:133019760msgid "No changes.\n"19761msgstr "Aucune modification.\n"1976219763#: git-add--interactive.perl:133819764msgid "Patch update"19765msgstr "Mise à jour par patch"1976619767#: git-add--interactive.perl:139019768#, perl-format19769msgid "Stage mode change [y,n,q,a,d%s,?]? "19770msgstr "Indexer le changement de mode [y,n,q,a,d%s,?] ? "1977119772#: git-add--interactive.perl:139119773#, perl-format19774msgid "Stage deletion [y,n,q,a,d%s,?]? "19775msgstr "Indexer la suppression [y,n,q,a,d%s,?] ? "1977619777#: git-add--interactive.perl:139219778#, perl-format19779msgid "Stage this hunk [y,n,q,a,d%s,?]? "19780msgstr "Indexer cette section [y,n,q,a,d%s,?] ? "1978119782#: git-add--interactive.perl:139519783#, perl-format19784msgid "Stash mode change [y,n,q,a,d%s,?]? "19785msgstr "Remiser le changement de mode [y,n,q,a,d%s,?] ? "1978619787#: git-add--interactive.perl:139619788#, perl-format19789msgid "Stash deletion [y,n,q,a,d%s,?]? "19790msgstr "Remiser la suppression [y,n,q,a,d%s,?] ? "1979119792#: git-add--interactive.perl:139719793#, perl-format19794msgid "Stash this hunk [y,n,q,a,d%s,?]? "19795msgstr "Remiser cette section [y,n,q,a,d%s,?] ? "1979619797#: git-add--interactive.perl:140019798#, perl-format19799msgid "Unstage mode change [y,n,q,a,d%s,?]? "19800msgstr "Désindexer le changement de mode [y,n,q,a,d%s,?] ? "1980119802#: git-add--interactive.perl:140119803#, perl-format19804msgid "Unstage deletion [y,n,q,a,d%s,?]? "19805msgstr "Désindexer la suppression [y,n,q,a,d%s,?] ? "1980619807#: git-add--interactive.perl:140219808#, perl-format19809msgid "Unstage this hunk [y,n,q,a,d%s,?]? "19810msgstr "Désindexer cette section [y,n,q,a,d%s,?] ? "1981119812#: git-add--interactive.perl:140519813#, perl-format19814msgid "Apply mode change to index [y,n,q,a,d%s,?]? "19815msgstr "Appliquer le changement de mode à l'index [y,n,q,a,d%s,?] ? "1981619817#: git-add--interactive.perl:140619818#, perl-format19819msgid "Apply deletion to index [y,n,q,a,d%s,?]? "19820msgstr "Appliquer la suppression à l'index [y,n,q,a,d%s,?] ? "1982119822#: git-add--interactive.perl:140719823#, perl-format19824msgid "Apply this hunk to index [y,n,q,a,d%s,?]? "19825msgstr "Appliquer cette section à l'index [y,n,q,a,d%s,?] ? "1982619827#: git-add--interactive.perl:141019828#, perl-format19829msgid "Discard mode change from worktree [y,n,q,a,d%s,?]? "19830msgstr "Abandonner le changement de mode dans l'arbre [y,n,q,a,d%s,?] ? "1983119832#: git-add--interactive.perl:141119833#, perl-format19834msgid "Discard deletion from worktree [y,n,q,a,d%s,?]? "19835msgstr "Abandonner la suppression dans l'arbre [y,n,q,a,d%s,?] ? "1983619837#: git-add--interactive.perl:141219838#, perl-format19839msgid "Discard this hunk from worktree [y,n,q,a,d%s,?]? "19840msgstr "Abandonner cette section dans l'arbre [y,n,q,a,d%s,?] ? "1984119842#: git-add--interactive.perl:141519843#, perl-format19844msgid "Discard mode change from index and worktree [y,n,q,a,d%s,?]? "19845msgstr ""19846"Abandonner le changement de mode dans l'index et l'arbre [y,n,q,a,d%s,?] ? "1984719848#: git-add--interactive.perl:141619849#, perl-format19850msgid "Discard deletion from index and worktree [y,n,q,a,d%s,?]? "19851msgstr "Abandonner la suppression de l'index et de l'arbre [y,n,q,a,d%s,?] ? "1985219853#: git-add--interactive.perl:141719854#, perl-format19855msgid "Discard this hunk from index and worktree [y,n,q,a,d%s,?]? "19856msgstr ""19857"Supprimer la section dans l'index et l'arbre de travail [y,n,q,a,d%s,?] ? "1985819859#: git-add--interactive.perl:142019860#, perl-format19861msgid "Apply mode change to index and worktree [y,n,q,a,d%s,?]? "19862msgstr ""19863"Appliquer le changement de mode dans l'index et l'arbre de travail [y,n,q,a,d"19864"%s,?] ? "1986519866#: git-add--interactive.perl:142119867#, perl-format19868msgid "Apply deletion to index and worktree [y,n,q,a,d%s,?]? "19869msgstr ""19870"Appliquer la suppression dans l'index et l'arbre de travail [y,n,q,a,d"19871"%s,?] ? "1987219873#: git-add--interactive.perl:142219874#, perl-format19875msgid "Apply this hunk to index and worktree [y,n,q,a,d%s,?]? "19876msgstr ""19877"Appliquer la section à l'index et l'arbre de travail [y,n,q,a,d%s,?] ? "1987819879#: git-add--interactive.perl:152219880msgid "No other hunks to goto\n"19881msgstr "Aucune autre section à atteindre\n"1988219883#: git-add--interactive.perl:152919884msgid "go to which hunk (<ret> to see more)? "19885msgstr "aller à quelle section (<ret> pour voir plus) ? "1988619887#: git-add--interactive.perl:153119888msgid "go to which hunk? "19889msgstr "aller à quelle section ? "1989019891#: git-add--interactive.perl:154019892#, perl-format19893msgid "Invalid number: '%s'\n"19894msgstr "Nombre invalide : '%s'\n"1989519896#: git-add--interactive.perl:154519897#, perl-format19898msgid "Sorry, only %d hunk available.\n"19899msgid_plural "Sorry, only %d hunks available.\n"19900msgstr[0] "Désolé, %d seule section disponible.\n"19901msgstr[1] "Désolé, Seulement %d sections disponibles.\n"1990219903#: git-add--interactive.perl:157119904msgid "No other hunks to search\n"19905msgstr "aucune autre section à rechercher\n"1990619907#: git-add--interactive.perl:157519908msgid "search for regex? "19909msgstr "rechercher la regex ? "1991019911#: git-add--interactive.perl:158819912#, perl-format19913msgid "Malformed search regexp %s: %s\n"19914msgstr "Regex de recherche malformée %s : %s\n"1991519916#: git-add--interactive.perl:159819917msgid "No hunk matches the given pattern\n"19918msgstr "Aucune section ne correspond au motif donné\n"1991919920#: git-add--interactive.perl:1610 git-add--interactive.perl:163219921msgid "No previous hunk\n"19922msgstr "Pas de section précédente\n"1992319924#: git-add--interactive.perl:1619 git-add--interactive.perl:163819925msgid "No next hunk\n"19926msgstr "Pas de section suivante\n"1992719928#: git-add--interactive.perl:164419929msgid "Sorry, cannot split this hunk\n"19930msgstr "Désolé, impossible de découper cette section\n"1993119932#: git-add--interactive.perl:165019933#, perl-format19934msgid "Split into %d hunk.\n"19935msgid_plural "Split into %d hunks.\n"19936msgstr[0] "Découpée en %d section.\n"19937msgstr[1] "Découpée en %d sections.\n"1993819939#: git-add--interactive.perl:166019940msgid "Sorry, cannot edit this hunk\n"19941msgstr "Désolé, impossible d'éditer cette section\n"1994219943#: git-add--interactive.perl:170619944msgid "Review diff"19945msgstr "Réviser la différence"1994619947#. TRANSLATORS: please do not translate the command names19948#. 'status', 'update', 'revert', etc.19949#: git-add--interactive.perl:172519950msgid ""19951"status - show paths with changes\n"19952"update - add working tree state to the staged set of changes\n"19953"revert - revert staged set of changes back to the HEAD version\n"19954"patch - pick hunks and update selectively\n"19955"diff - view diff between HEAD and index\n"19956"add untracked - add contents of untracked files to the staged set of "19957"changes\n"19958msgstr ""19959"status - montrer les chemins modifiés\n"19960"update - ajouter l'état de l'arbre de travail aux modifications à "19961"indexer\n"19962"revert - faire revenir les modifications à indexer à la version HEAD\n"19963"patch - sélectionner les sections et mettre à jour sélectivement\n"19964"diff - visualiser les diff entre HEAD et l'index\n"19965"add untracked - ajouter les fichiers non-suivis aux modifications à indexer\n"1996619967#: git-add--interactive.perl:1742 git-add--interactive.perl:174719968#: git-add--interactive.perl:1750 git-add--interactive.perl:175719969#: git-add--interactive.perl:1761 git-add--interactive.perl:176719970msgid "missing --"19971msgstr "-- manquant"1997219973#: git-add--interactive.perl:176319974#, perl-format19975msgid "unknown --patch mode: %s"19976msgstr "mode de --patch inconnu : %s"1997719978#: git-add--interactive.perl:1769 git-add--interactive.perl:177519979#, perl-format19980msgid "invalid argument %s, expecting --"19981msgstr "argument invalide %s, -- attendu"1998219983#: git-send-email.perl:13019984msgid "local zone differs from GMT by a non-minute interval\n"19985msgstr ""19986"la zone locale diffère du GMT par un intervalle supérieur à une minute\n"1998719988#: git-send-email.perl:137 git-send-email.perl:14319989msgid "local time offset greater than or equal to 24 hours\n"19990msgstr "le décalage de temps local est plus grand ou égal à 24 heures\n"1999119992#: git-send-email.perl:211 git-send-email.perl:21719993msgid "the editor exited uncleanly, aborting everything"19994msgstr "l'éditeur est sorti en erreur, abandon total"1999519996#: git-send-email.perl:29419997#, perl-format19998msgid ""19999"'%s' contains an intermediate version of the email you were composing.\n"20000msgstr ""20001"'%s' contient une version intermédiaire du courriel que vous composiez.\n"2000220003#: git-send-email.perl:29920004#, perl-format20005msgid "'%s.final' contains the composed email.\n"20006msgstr "'%s.final' contient le courriel composé.\n"2000720008#: git-send-email.perl:31720009msgid "--dump-aliases incompatible with other options\n"20010msgstr "--dump-aliases est incompatible avec d'autres options\n"2001120012#: git-send-email.perl:383 git-send-email.perl:63820013msgid "Cannot run git format-patch from outside a repository\n"20014msgstr "Lancement de git format-patch impossible à l'extérieur d'un dépôt\n"2001520016#: git-send-email.perl:38620017msgid ""20018"`batch-size` and `relogin` must be specified together (via command-line or "20019"configuration option)\n"20020msgstr ""20021"`batch-size` et `relogin` doivent être spécifiés ensembles (via la ligne de "20022"commande ou des options de configuration)\n"2002320024#: git-send-email.perl:45620025#, perl-format20026msgid "Unknown --suppress-cc field: '%s'\n"20027msgstr "Champ de --suppress-cc inconnu : '%s'\n"2002820029#: git-send-email.perl:48520030#, perl-format20031msgid "Unknown --confirm setting: '%s'\n"20032msgstr "Paramètre de --confirm inconnu : '%s'\n"2003320034#: git-send-email.perl:51320035#, perl-format20036msgid "warning: sendmail alias with quotes is not supported: %s\n"20037msgstr ""20038"attention : les guillemets ne sont pas supportés dans alias sendmail : %s\n"2003920040#: git-send-email.perl:51520041#, perl-format20042msgid "warning: `:include:` not supported: %s\n"20043msgstr "attention : `:include:` n'est pas supporté : %s\n"2004420045#: git-send-email.perl:51720046#, perl-format20047msgid "warning: `/file` or `|pipe` redirection not supported: %s\n"20048msgstr ""20049"attention : les redirections `/file` ou `|pipe` ne sont pas supportées : %s\n"2005020051#: git-send-email.perl:52220052#, perl-format20053msgid "warning: sendmail line is not recognized: %s\n"20054msgstr "attention : ligne sendmail non reconnue : %s\n"2005520056#: git-send-email.perl:60420057#, perl-format20058msgid ""20059"File '%s' exists but it could also be the range of commits\n"20060"to produce patches for. Please disambiguate by...\n"20061"\n"20062" * Saying \"./%s\" if you mean a file; or\n"20063" * Giving --format-patch option if you mean a range.\n"20064msgstr ""20065"Le fichier '%s' existe mais ce pourrait aussi être la plage de commmits\n"20066"pour lequel les patches sont à produire. Veuillez préciser...\n"20067"\n"20068" * en indiquant \"./%s\" si vous désignez un fichier, ou\n"20069" * en fournissant l'option --format-patch pour une plage.\n"2007020071#: git-send-email.perl:62520072#, perl-format20073msgid "Failed to opendir %s: %s"20074msgstr "Échec à l'ouverture du répertoire %s : %s"2007520076#: git-send-email.perl:64920077#, perl-format20078msgid ""20079"fatal: %s: %s\n"20080"warning: no patches were sent\n"20081msgstr ""20082"fatal : %s : %s\n"20083"attention : aucun patch envoyé\n"2008420085#: git-send-email.perl:66020086msgid ""20087"\n"20088"No patch files specified!\n"20089"\n"20090msgstr ""20091"\n"20092"Aucun fichier patch spécifié !\n"20093"\n"2009420095#: git-send-email.perl:67320096#, perl-format20097msgid "No subject line in %s?"20098msgstr "Ligne de sujet non trouvée dans %s ?"2009920100#: git-send-email.perl:68320101#, perl-format20102msgid "Failed to open for writing %s: %s"20103msgstr "Impossible d'ouvrir %s en écriture : %s"2010420105#: git-send-email.perl:69420106msgid ""20107"Lines beginning in \"GIT:\" will be removed.\n"20108"Consider including an overall diffstat or table of contents\n"20109"for the patch you are writing.\n"20110"\n"20111"Clear the body content if you don't wish to send a summary.\n"20112msgstr ""20113"Les lignes commençant par \"GIT:\" seront supprimées.\n"20114"Envisagez d'inclure un diffstat global ou une table des matières\n"20115"pour le patch que vous êtes en train d'écrire.\n"20116"\n"20117"Effacez le corps si vous ne souhaitez pas envoyer un résumé.\n"2011820119#: git-send-email.perl:71820120#, perl-format20121msgid "Failed to open %s: %s"20122msgstr "Échec à l'ouverture de %s : %s"2012320124#: git-send-email.perl:73520125#, perl-format20126msgid "Failed to open %s.final: %s"20127msgstr "Échec à l'ouverture de %s.final : %s"2012820129#: git-send-email.perl:77820130msgid "Summary email is empty, skipping it\n"20131msgstr "Le courriel de résumé etant vide, il a été ignoré\n"2013220133#. TRANSLATORS: please keep [y/N] as is.20134#: git-send-email.perl:81320135#, perl-format20136msgid "Are you sure you want to use <%s> [y/N]? "20137msgstr "Êtes-vous sur de vouloir utiliser <%s> [y/N] ? "2013820139#: git-send-email.perl:86820140msgid ""20141"The following files are 8bit, but do not declare a Content-Transfer-"20142"Encoding.\n"20143msgstr ""20144"Les fichiers suivants sont 8bit mais ne déclarent pas de champs Content-"20145"Transfer-Encoding.\n"2014620147#: git-send-email.perl:87320148msgid "Which 8bit encoding should I declare [UTF-8]? "20149msgstr "Quel encodage 8bit doit être déclaré [UTF8] ? "2015020151#: git-send-email.perl:88120152#, perl-format20153msgid ""20154"Refusing to send because the patch\n"20155"\t%s\n"20156"has the template subject '*** SUBJECT HERE ***'. Pass --force if you really "20157"want to send.\n"20158msgstr ""20159"Envoi refusé parce que le patch\n"20160"\t%s\n"20161"a un sujet modèle '*** SUBJECT HERE ***'. Passez --force is vous souhaitez "20162"vraiment envoyer.\n"2016320164#: git-send-email.perl:90020165msgid "To whom should the emails be sent (if anyone)?"20166msgstr "À qui les courriels doivent-ils être envoyés (s'il y en a) ?"2016720168#: git-send-email.perl:91820169#, perl-format20170msgid "fatal: alias '%s' expands to itself\n"20171msgstr "fatal : l'alias '%s' se développe en lui-même\n"2017220173#: git-send-email.perl:93020174msgid "Message-ID to be used as In-Reply-To for the first email (if any)? "20175msgstr ""20176"Message-ID à utiliser comme In-Reply-To pour le premier courriel (s'il y en "20177"a) ? "2017820179#: git-send-email.perl:988 git-send-email.perl:99620180#, perl-format20181msgid "error: unable to extract a valid address from: %s\n"20182msgstr "erreur : impossible d'extraire une adresse valide depuis : %s\n"2018320184#. TRANSLATORS: Make sure to include [q] [d] [e] in your20185#. translation. The program will only accept English input20186#. at this point.20187#: git-send-email.perl:100020188msgid "What to do with this address? ([q]uit|[d]rop|[e]dit): "20189msgstr "Que faire de cette adresse ? ([q]uitter|[d]élaisser|[e]diter): "2019020191#: git-send-email.perl:131720192#, perl-format20193msgid "CA path \"%s\" does not exist"20194msgstr "le chemin vers la CA \"%s\" n'existe pas"2019520196#: git-send-email.perl:140020197msgid ""20198" The Cc list above has been expanded by additional\n"20199" addresses found in the patch commit message. By default\n"20200" send-email prompts before sending whenever this occurs.\n"20201" This behavior is controlled by the sendemail.confirm\n"20202" configuration setting.\n"20203"\n"20204" For additional information, run 'git send-email --help'.\n"20205" To retain the current behavior, but squelch this message,\n"20206" run 'git config --global sendemail.confirm auto'.\n"20207"\n"20208msgstr ""20209" La liste CC ci-dessus a été étendue avec des adresses\n"20210" supplémentaires trouvées dans le message de validation.\n"20211" Par défaut dans ce cas, send-email demande confirmation avant envoi.\n"20212" Ce comportement est géré par le paramètre de configuration\n"20213" sendemail.confirm.\n"20214"\n"20215" Pour tout information complémentaire, lancez 'git send-email --help'.\n"20216" Pour conserver le comportement actuel, mais éliminer ce message,\n"20217" lancez 'git config --global sendemail.confirm auto'.\n"20218"\n"2021920220#. TRANSLATORS: Make sure to include [y] [n] [e] [q] [a] in your20221#. translation. The program will only accept English input20222#. at this point.20223#: git-send-email.perl:141520224msgid "Send this email? ([y]es|[n]o|[e]dit|[q]uit|[a]ll): "20225msgstr "Envoyer ce courriel ? ([y]es|[n]o|[e]dit|[q]uit|[a]ll) : "2022620227#: git-send-email.perl:141820228msgid "Send this email reply required"20229msgstr "Une réponse est nécessaire"2023020231#: git-send-email.perl:144620232msgid "The required SMTP server is not properly defined."20233msgstr "Le serveur SMTP nécessaire n'est pas défini correctement."2023420235#: git-send-email.perl:149320236#, perl-format20237msgid "Server does not support STARTTLS! %s"20238msgstr "Le serveur ne supporte pas STARTTLS ! %s"2023920240#: git-send-email.perl:1498 git-send-email.perl:150220241#, perl-format20242msgid "STARTTLS failed! %s"20243msgstr "echec de STARTTLS ! %s"2024420245#: git-send-email.perl:151120246msgid "Unable to initialize SMTP properly. Check config and use --smtp-debug."20247msgstr ""20248"Impossible d'initialiser SMTP. Vérifiez la configuration et utilisez --smtp-"20249"debug."2025020251#: git-send-email.perl:152920252#, perl-format20253msgid "Failed to send %s\n"20254msgstr "échec de l'envoi de %s\n"2025520256#: git-send-email.perl:153220257#, perl-format20258msgid "Dry-Sent %s\n"20259msgstr "Envoi simulé de %s\n"2026020261#: git-send-email.perl:153220262#, perl-format20263msgid "Sent %s\n"20264msgstr "%s envoyé\n"2026520266#: git-send-email.perl:153420267msgid "Dry-OK. Log says:\n"20268msgstr "Simulation OK. Le journal indique :\n"2026920270#: git-send-email.perl:153420271msgid "OK. Log says:\n"20272msgstr "OK. Le journal indique :\n"2027320274#: git-send-email.perl:154620275msgid "Result: "20276msgstr "Résultat : "2027720278#: git-send-email.perl:154920279msgid "Result: OK\n"20280msgstr "Résultat : OK\n"2028120282#: git-send-email.perl:156720283#, perl-format20284msgid "can't open file %s"20285msgstr "impossible d'ouvrir le fichier %s"2028620287#: git-send-email.perl:1614 git-send-email.perl:163420288#, perl-format20289msgid "(mbox) Adding cc: %s from line '%s'\n"20290msgstr "(mbox) Ajout de cc: %s depuis la ligne '%s'\n"2029120292#: git-send-email.perl:162020293#, perl-format20294msgid "(mbox) Adding to: %s from line '%s'\n"20295msgstr "(mbox) Ajout de to: %s depuis la ligne '%s'\n"2029620297#: git-send-email.perl:167320298#, perl-format20299msgid "(non-mbox) Adding cc: %s from line '%s'\n"20300msgstr "(non-mbox) Ajout de cc: %s depuis la ligne '%s'\n"2030120302#: git-send-email.perl:169820303#, perl-format20304msgid "(body) Adding cc: %s from line '%s'\n"20305msgstr "(corps) Ajout de cc: %s depuis la ligne '%s'\n"2030620307#: git-send-email.perl:180920308#, perl-format20309msgid "(%s) Could not execute '%s'"20310msgstr "(%s) Impossible d'exécuter '%s'"2031120312#: git-send-email.perl:181620313#, perl-format20314msgid "(%s) Adding %s: %s from: '%s'\n"20315msgstr "(%s) Ajout de %s : %s depuis : '%s'\n"2031620317#: git-send-email.perl:182020318#, perl-format20319msgid "(%s) failed to close pipe to '%s'"20320msgstr "(%s) échec de la fermeture du pipe vers '%s'"2032120322#: git-send-email.perl:185020323msgid "cannot send message as 7bit"20324msgstr "impossible d'envoyer un message comme 7bit"2032520326#: git-send-email.perl:185820327msgid "invalid transfer encoding"20328msgstr "codage de transfert invalide"2032920330#: git-send-email.perl:1899 git-send-email.perl:1951 git-send-email.perl:196120331#, perl-format20332msgid "unable to open %s: %s\n"20333msgstr "impossible d'ouvrir %s :%s\n"2033420335#: git-send-email.perl:190220336#, perl-format20337msgid "%s: patch contains a line longer than 998 characters"20338msgstr "%s : le patch contient une ligne plus longue que 998 caractères"2033920340#: git-send-email.perl:191920341#, perl-format20342msgid "Skipping %s with backup suffix '%s'.\n"20343msgstr "%s sauté avec un suffix de sauvegarde '%s'.\n"2034420345#. TRANSLATORS: please keep "[y|N]" as is.20346#: git-send-email.perl:192320347#, perl-format20348msgid "Do you really want to send %s? [y|N]: "20349msgstr "Souhaitez-vous réellement envoyer %s ?[y|N] : "2035020351#~ msgid "could not parse '%s' (looking for '%s'"20352#~ msgstr "impossible d'analyser '%s' (à la recherche de '%s')"2035320354#~ msgid "color both diff and diff-between-diffs"20355#~ msgstr "colorer à la fois les diffs et le diff-between-diffs"2035620357#~ msgid "push|fetch"20358#~ msgstr "push|fetch"2035920360#~ msgid "Dirty index: cannot merge (dirty: %s)"20361#~ msgstr "Index sale : fusion impossible (sales : %s)"2036220363#~ msgid "(+/-)x"20364#~ msgstr "(+/-)x"2036520366#~ msgid "<command>"20367#~ msgstr "<commande>"2036820369#~ msgid "w[,i1[,i2]]"20370#~ msgstr "w[,i1[,i2]]"2037120372#~ msgid "Entering '$displaypath'"20373#~ msgstr "Entrée dans '$displaypath'"2037420375#~ msgid "Stopping at '$displaypath'; script returned non-zero status."20376#~ msgstr "Arrêt sur '$displaypath' ; le script a retourné un état non nul."2037720378#~ msgid "Everyday Git With 20 Commands Or So"20379#~ msgstr "Git de tous les jours avec à peu près 20 commandes"2038020381#~ msgid "Could not open '%s' for writing"20382#~ msgstr "Impossible d'ouvrir '%s' en écriture"2038320384#~ msgid ""20385#~ "unexpected 1st line of squash message:\n"20386#~ "\n"20387#~ "\t%.*s"20388#~ msgstr ""20389#~ "première ligne de message de compression inattendue :\n"20390#~ "\n"20391#~ "\t%.*s"2039220393#~ msgid ""20394#~ "invalid 1st line of squash message:\n"20395#~ "\n"20396#~ "\t%.*s"20397#~ msgstr ""20398#~ "première ligne de message de compression invalide :\n"20399#~ "\n"20400#~ "\t%.*s"2040120402#~ msgid "BUG: returned path string doesn't match cwd?"20403#~ msgstr "BUG : le chemin renvoyé ne correspond pas à cwd ?"2040420405#~ msgid "Error in object"20406#~ msgstr "Erreur dans l'objet"2040720408#~ msgid "git fetch-pack: expected ACK/NAK, got EOF"20409#~ msgstr "git fetch-pack : ACK/NACK attendu, EOF reçu"2041020411#~ msgid "invalid filter-spec expression '%s'"20412#~ msgstr "expression de filtre invalide : '%s'"2041320414#~ msgid "The copy of the patch that failed is found in: %s"20415#~ msgstr "La copie du patch qui a échoué se trouve dans : %s"2041620417#~ msgid "pathspec and --all are incompatible"20418#~ msgstr "un spécificateur de chemin et --all sont incompatibles"2041920420#~ msgid "Submodule '$name' ($url) unregistered for path '$displaypath'"20421#~ msgstr ""20422#~ "Le sous-module '$name' ($url) n'est pas enregistré pour le chemin "20423#~ "'$displaypath'"2042420425#~ msgid "To/Cc/Bcc fields are not interpreted yet, they have been ignored\n"20426#~ msgstr ""20427#~ "Les champs To/CC/Bcc ne sont pas encore interprétés, ils ont été ignorés\n"2042820429#~ msgid ""20430#~ "empty strings as pathspecs will be made invalid in upcoming releases. "20431#~ "please use . instead if you meant to match all paths"20432#~ msgstr ""20433#~ "les chaines de caractères vides comme spécificateurs de chemin seront "20434#~ "invalides dans les prochaines versions. Veuillez utiliser . à la place "20435#~ "pour correspondre à tous le chemins"2043620437#~ msgid "could not truncate '%s'"20438#~ msgstr "impossible de tronquer '%s'"2043920440#~ msgid "could not finish '%s'"20441#~ msgstr "impossible de finir '%s'"2044220443#~ msgid "could not write to %s"20444#~ msgstr "Impossible d'écrire dans %s"2044520446#~ msgid "could not close %s"20447#~ msgstr "impossible de fermer %s"2044820449#~ msgid "Copied a misnamed branch '%s' away"20450#~ msgstr "Copie d'une branche mal nommée '%s'"2045120452#~ msgid "it does not make sense to create 'HEAD' manually"20453#~ msgstr "créer manuellement 'HEAD' n'a pas de sens"2045420455#~ msgid "Don't know how to clone %s"20456#~ msgstr "Je ne sais pas cloner %s"2045720458#~ msgid "show ignored files"20459#~ msgstr "afficher les fichiers ignorés"2046020461#~ msgid "Don't know how to fetch from %s"20462#~ msgstr "Je ne sais pas récupérer depuis %s"2046320464#~ msgid "'$term' is not a valid term"20465#~ msgstr "'$term' n'est pas un terme valide"2046620467#~ msgid ""20468#~ "error: unknown option for 'stash save': $option\n"20469#~ " To provide a message, use git stash save -- '$option'"20470#~ msgstr ""20471#~ "erreur: option inconnue pour 'stash save': $option\n"20472#~ " Pour fournir un message, utilisez git stash save -- '$option'"2047320474#~ msgid "Failed to recurse into submodule path '$sm_path'"20475#~ msgstr "Échec de parcours dans le chemin du sous-module '$sm_path'"2047620477#~ msgid "%%(trailers) does not take arguments"20478#~ msgstr "%%(trailers) n'accepte pas d'argument"2047920480#~ msgid "submodule update strategy not supported for submodule '%s'"20481#~ msgstr ""20482#~ "stratégie de mise à jour de sous-module non supportée pour le sous-module "20483#~ "'%s'"2048420485#~ msgid "change upstream info"20486#~ msgstr "modifier l'information amont"2048720488#~ msgid ""20489#~ "\n"20490#~ "If you wanted to make '%s' track '%s', do this:\n"20491#~ "\n"20492#~ msgstr ""20493#~ "\n"20494#~ "Si vous vouliez que '%s' suive '%s', faites ceci :\n"20495#~ "\n"2049620497#~ msgid "basename"20498#~ msgstr "nom de base"2049920500#~ msgid "prepend parent project's basename to output"20501#~ msgstr "préfixer le nom de base du projet parent à la sortie"2050220503#~ msgid ""20504#~ "Warning: the SHA-1 is missing or isn't a commit in the following line:\n"20505#~ " - $line"20506#~ msgstr ""20507#~ "Attention : le SHA-1 manque ou n'est pas un commit dans la ligne "20508#~ "suivante :\n"20509#~ " - $line"2051020511#~ msgid ""20512#~ "Warning: the command isn't recognized in the following line:\n"20513#~ " - $line"20514#~ msgstr ""20515#~ "Attention : la commande n'est pas reconnue dans le ligne suivante :\n"20516#~ " - $line"2051720518#~ msgid "Or you can abort the rebase with 'git rebase --abort'."20519#~ msgstr ""20520#~ "Ou bien vous pouvez abandonner le rebasage avec 'git rebase --abort'."2052120522#~ msgid "Could not open file '%s'"20523#~ msgstr "impossible d'ouvrir le fichier '%s'"2052420525#~ msgid "in %0.1f seconds automatically..."20526#~ msgstr "dans %0.1f secondes automatiquement..."2052720528#~ msgid "dup2(%d,%d) failed"20529#~ msgstr "échec de dup2(%d,%d)"2053020531#~ msgid "Initial commit on "20532#~ msgstr "Validation initiale sur "2053320534#~ msgid "Patch is empty. Was it split wrong?"20535#~ msgstr "Le patch est vide. Le découpage était-il bon ?"2053620537#~ msgid ""20538#~ "You still have unmerged paths in your index.\n"20539#~ "Did you forget to use 'git add'?"20540#~ msgstr ""20541#~ "Vous avez toujours des chemins non fusionnés dans votre index\n"20542#~ "Auriez-vous oublié de faire 'git add' ?"2054320544#~ msgid ""20545#~ "Cannot update paths and switch to branch '%s' at the same time.\n"20546#~ "Did you intend to checkout '%s' which can not be resolved as commit?"20547#~ msgstr ""20548#~ "Impossible de mettre à jour les chemins et de basculer sur la branche "20549#~ "'%s' en même temps.\n"20550#~ "Souhaitiez-vous extraire '%s' qui ne peut être résolu comme commit ?"2055120552#~ msgid "Explicit paths specified without -i or -o; assuming --only paths..."20553#~ msgstr "Chemins explicites spécifiés sans -i ni -o ; --only supposé..."2055420555#~ msgid "default mode for recursion"20556#~ msgstr "mode par défaut pour la récursion"2055720558#~ msgid "submodule--helper subcommand must be called with a subcommand"20559#~ msgstr ""20560#~ "la sous-commande submodule--helper doit être appelée avec une sous-"20561#~ "commande"2056220563#~ msgid "could not stat '%s"20564#~ msgstr "stat impossible de '%s'"2056520566#~ msgid "tag: tagging "20567#~ msgstr "étiquette: étiquetage de "2056820569#~ msgid "commit object"20570#~ msgstr "objet commit"2057120572#~ msgid "tree object"20573#~ msgstr "objet arbre"2057420575#~ msgid "blob object"20576#~ msgstr "objet blob"2057720578#~ msgid ""20579#~ "There is nothing to exclude from by :(exclude) patterns.\n"20580#~ "Perhaps you forgot to add either ':/' or '.' ?"20581#~ msgstr ""20582#~ "Il n'y a rien dont il faut exclure par des motifs :(exclure).\n"20583#~ "Peut-être avez-vous oublié d'ajouter ':/' ou '.' ?"2058420585#~ msgid "unrecognized format: %%(%s)"20586#~ msgstr "format non reconnu %%(%s)"2058720588#~ msgid ":strip= requires a positive integer argument"20589#~ msgstr ":strip= requiert un argument entier positif"2059020591#~ msgid "ref '%s' does not have %ld components to :strip"20592#~ msgstr "la réf '%s' n'a pas %ld composants à :strip"2059320594#~ msgid "unknown %.*s format %s"20595#~ msgstr "format de %.*s inconnu %s"2059620597# féminin pour une branche20598#~ msgid "[%s: gone]"20599#~ msgstr "[%s: disparue]"2060020601#~ msgid "[%s]"20602#~ msgstr "[%s]"2060320604#~ msgid "[%s: behind %d]"20605#~ msgstr "[%s: en retard de %d]"2060620607#~ msgid "[%s: ahead %d]"20608#~ msgstr "[%s : en avance de %d]"2060920610#~ msgid "[%s: ahead %d, behind %d]"20611#~ msgstr "[%s : en avance de %d, en retard de %d]"2061220613#~ msgid " **** invalid ref ****"20614#~ msgstr " **** référence invalide ****"2061520616#~ msgid "insanely long object directory %.*s"20617#~ msgstr "objet répertoire démentiellement long %.*s"2061820619#~ msgid "git merge [<options>] <msg> HEAD <commit>"20620#~ msgstr "git merge [<options>] <message> HEAD <commit>"2062120622#~ msgid "tag name too long: %.*s..."20623#~ msgstr "nom d'étiquette trop long : %.*s..."2062420625#~ msgid "tag header too big."20626#~ msgstr "en-tête d'étiquette trop gros."2062720628#~ msgid ""20629#~ "If the patch applies cleanly, the edited hunk will immediately be\n"20630#~ "marked for discarding"20631#~ msgstr ""20632#~ "Si le patch s'applique proprement, la section éditée sera\n"20633#~ "immediatement marquée comme éliminée"2063420635#~ msgid "Use an experimental blank-line-based heuristic to improve diffs"20636#~ msgstr ""20637#~ "Utiliser une heuristique expérimentale reposant sur les lignes vides pour "20638#~ "améliorer le diffs"2063920640#~ msgid "Clever... amending the last one with dirty index."20641#~ msgstr "Malin... correction du dernier avec un index sale."2064220643#~ msgid ""20644#~ "the following submodule (or one of its nested submodules)\n"20645#~ "uses a .git directory:"20646#~ msgid_plural ""20647#~ "the following submodules (or one of their nested submodules)\n"20648#~ "use a .git directory:"20649#~ msgstr[0] ""20650#~ "le sous-module suivant (ou un de ses sous-modules imbriqués)\n"20651#~ "utilise un répertoire .git :"20652#~ msgstr[1] ""20653#~ "les sous-modules suivants (ou un de leurs sous-modules imbriqués)\n"20654#~ "utilisent un répertoire .git :"2065520656#~ msgid ""20657#~ "\n"20658#~ "(use 'rm -rf' if you really want to remove it including all of its "20659#~ "history)"20660#~ msgstr ""20661#~ "\n"20662#~ "(utilisez 'rm -rf' si vous voulez vraiment le supprimer en incluant tout "20663#~ "son historique)"2066420665#~ msgid "Error wrapping up %s."20666#~ msgstr "Erreur lors de l'emballage de %s."2066720668#~ msgid "Your local changes would be overwritten by cherry-pick."20669#~ msgstr "Vos modifications locales seraient écrasées par cherry-pick."2067020671#~ msgid "Cannot revert during another revert."20672#~ msgstr "Impossible d'annuler un commit pendant l'annulation d'un commit."2067320674#~ msgid "Cannot cherry-pick during another cherry-pick."20675#~ msgstr "Impossible de picorer pendant un autre picorage."2067620677#~ msgid "Could not parse line %d."20678#~ msgstr "Impossible d'analyser la ligne %d."2067920680#~ msgid "Could not open %s"20681#~ msgstr "Impossible d'ouvrir %s"2068220683#~ msgid "Could not format %s."20684#~ msgstr "Impossible de formater %s."2068520686#~ msgid "%s: %s"20687#~ msgstr "%s : %s"2068820689#~ msgid "cannot open %s: %s"20690#~ msgstr "impossible d'ouvrir %s : %s"2069120692#~ msgid "You need to set your committer info first"20693#~ msgstr "Vous devez d'abord définir vos informations de validateur"2069420695#~ msgid "This is the 2nd commit message:"20696#~ msgstr "Ceci est le deuxième message de validation :"2069720698#~ msgid "This is the 3rd commit message:"20699#~ msgstr "Ceci est le troisième message de validation :"2070020701#~ msgid "This is the 4th commit message:"20702#~ msgstr "Ceci est le quatrième message de validation :"2070320704#~ msgid "This is the 5th commit message:"20705#~ msgstr "Ceci est le cinquième message de validation :"2070620707#~ msgid "This is the 6th commit message:"20708#~ msgstr "Ceci est le sixième message de validation :"2070920710#~ msgid "This is the 7th commit message:"20711#~ msgstr "Ceci est le septième message de validation :"2071220713#~ msgid "This is the 8th commit message:"20714#~ msgstr "Ceci est le huitième message de validation :"2071520716#~ msgid "This is the 9th commit message:"20717#~ msgstr "Ceci est le neuvième message de validation :"2071820719#~ msgid "This is the 10th commit message:"20720#~ msgstr "Ceci est le dixième message de validation :"2072120722#~ msgid "This is the ${n}th commit message:"20723#~ msgstr "Ceci est le ${n}ième message de validation :"2072420725#~ msgid "This is the ${n}st commit message:"20726#~ msgstr "Ceci est le ${n}ième message de validation :"2072720728#~ msgid "This is the ${n}nd commit message:"20729#~ msgstr "Ceci est le ${n}ième message de validation :"2073020731#~ msgid "This is the ${n}rd commit message:"20732#~ msgstr "Ceci est le ${n}ième message de validation :"2073320734#~ msgid "The 1st commit message will be skipped:"20735#~ msgstr "Le premier message de validation sera ignoré :"2073620737#~ msgid "The 2nd commit message will be skipped:"20738#~ msgstr "Le deuxième message de validation sera ignoré :"2073920740#~ msgid "The 3rd commit message will be skipped:"20741#~ msgstr "Le troisième message de validation sera ignoré :"2074220743#~ msgid "The 4th commit message will be skipped:"20744#~ msgstr "Le quatrième message de validation sera ignoré :"2074520746#~ msgid "The 5th commit message will be skipped:"20747#~ msgstr "Le cinquième message de validation sera ignoré :"2074820749#~ msgid "The 6th commit message will be skipped:"20750#~ msgstr "Le sixième message de validation sera ignoré :"2075120752#~ msgid "The 7th commit message will be skipped:"20753#~ msgstr "Le septième message de validation sera ignoré :"2075420755#~ msgid "The 8th commit message will be skipped:"20756#~ msgstr "Le huitième message de validation sera ignoré :"2075720758#~ msgid "The 9th commit message will be skipped:"20759#~ msgstr "Le neuvième message de validation sera ignoré :"2076020761#~ msgid "The 10th commit message will be skipped:"20762#~ msgstr "Le dixième message de validation sera ignoré :"2076320764#~ msgid "The ${n}th commit message will be skipped:"20765#~ msgstr "le ${n}ième message de validation sera ignoré :"2076620767#~ msgid "The ${n}st commit message will be skipped:"20768#~ msgstr "Le message de validation ${n} sera ignoré :"2076920770#~ msgid "The ${n}nd commit message will be skipped:"20771#~ msgstr "Le message de validation ${n} sera ignoré :"2077220773#~ msgid "The ${n}rd commit message will be skipped:"20774#~ msgstr "Le message de validation ${n} sera ignoré :"2077520776#~ msgid "could not run gpg."20777#~ msgstr "impossible de lancer gpg."2077820779#~ msgid "gpg did not accept the data"20780#~ msgstr "gpg n'a pas accepté les données"2078120782#~ msgid "unsupported object type in the tree"20783#~ msgstr "type d'objet non supporté dans l'arbre"2078420785#~ msgid "Fatal merge failure, shouldn't happen."20786#~ msgstr "Échec fatal de fusion, qui ne devrait jamais arriver."2078720788#~ msgid "Unprocessed path??? %s"20789#~ msgstr "Chemin non traité ??? %s"2079020791#~ msgid "Cannot %s during a %s"20792#~ msgstr "Impossible de %s pendant un %s"2079320794#~ msgid "Can't cherry-pick into empty head"20795#~ msgstr "Impossible de picorer vers une HEAD vide"2079620797#~ msgid "could not open %s for writing"20798#~ msgstr "Impossible d'ouvrir '%s' en écriture"2079920800#~ msgid "bug: unhandled unmerged status %x"20801#~ msgstr "bogue : état de non-fusion non géré %x"2080220803#~ msgid "bug: unhandled diff status %c"20804#~ msgstr "bogue : état de diff non géré %c"2080520806#~ msgid "could not write branch description template"20807#~ msgstr "impossible d'écrire le modèle de description de branche"2080820809#~ msgid "corrupt index file"20810#~ msgstr "fichier d'index corrompu"2081120812#~ msgid "detach the HEAD at named commit"20813#~ msgstr "détacher la HEAD à la validation nommée"2081420815#~ msgid "Checking connectivity... "20816#~ msgstr "Vérification de la connectivité... "2081720818#~ msgid " (unable to update local ref)"20819#~ msgstr " (impossible de mettre à jour la référence locale)"2082020821#~ msgid "Reinitialized existing"20822#~ msgstr "existant réinitialisé"2082320824#~ msgid "Initialized empty"20825#~ msgstr "vide initialisé"2082620827#~ msgid " shared"20828#~ msgstr " partagé"2082920830#~ msgid "Verify that the named commit has a valid GPG signature"20831#~ msgstr "Vérifier que la validation a une signature GPG valide"2083220833#~ msgid "Writing SQUASH_MSG"20834#~ msgstr "Écriture de SQUASH_MSG"2083520836#~ msgid "Finishing SQUASH_MSG"20837#~ msgstr "Finition de SQUASH_MSG"2083820839#~ msgid " and with remote"20840#~ msgstr " et avec la distante"2084120842#~ msgid "removing '%s' failed"20843#~ msgstr "la suppression de '%s' a échoué"2084420845#~ msgid "Please call 'bisect_state' with at least one argument."20846#~ msgstr "Veuillez appeler 'bisect_state' avec au moins un argument."2084720848#~ msgid ""20849#~ "If you want to reuse this local git directory instead of cloning again "20850#~ "from"20851#~ msgstr ""20852#~ "Si vous voulez réutiliser ce répertoire git local au lieu de cloner à "20853#~ "nouveau depuis"2085420855#~ msgid ""20856#~ "use the '--force' option. If the local git directory is not the correct "20857#~ "repo"20858#~ msgstr ""20859#~ "utilisez l'option '--force'. Si le répertoire local git n'est pas le "20860#~ "dépôt correct"2086120862#~ msgid ""20863#~ "or you are unsure what this means choose another name with the '--name' "20864#~ "option."20865#~ msgstr ""20866#~ "ou si vous ne savez pas ce que cela signifie, choisissez un autre nom "20867#~ "avec l'option '--name'."2086820869#~ msgid "Submodule work tree '$displaypath' contains a .git directory"20870#~ msgstr ""20871#~ "La copie de travail du sous-module '$displaypath' contient un répertoire ."20872#~ "git"2087320874#~ msgid ""20875#~ "(use 'rm -rf' if you really want to remove it including all of its "20876#~ "history)"20877#~ msgstr ""20878#~ "(utilisez 'rm -rf' si vous voulez vraiment le supprimer en incluant tout "20879#~ "son historique)"2088020881#~ msgid "'%s': %s"20882#~ msgstr "'%s' : %s"2088320884#~ msgid "unable to access '%s': %s"20885#~ msgstr "impossible d'accéder à '%s' : %s"2088620887#~ msgid " git branch -d %s\n"20888#~ msgstr " git branch -d %s\n"2088920890#~ msgid " git branch --set-upstream-to %s\n"20891#~ msgstr " git branch --set-upstream-to %s\n"2089220893#~ msgid "cannot open %s: %s\n"20894#~ msgstr "impossible d'ouvrir %s : %s\n"2089520896#~ msgid "Please, stage your changes to .gitmodules or stash them to proceed"20897#~ msgstr ""20898#~ "Veuillez indexer vos modifications de .gitmodules ou remisez-les pour "20899#~ "continuer"2090020901#~ msgid "failed to remove: %s"20902#~ msgstr "échec de la suppression de %s"2090320904#~ msgid "The --exec option must be used with the --interactive option"20905#~ msgstr "L'option --exec doit être utilisée avec l'option --interactive"2090620907#~ msgid ""20908#~ "Submodule path '$displaypath' not initialized\n"20909#~ "Maybe you want to use 'update --init'?"20910#~ msgstr ""20911#~ "Chemin de sous-module '$displaypath' non initialisé\n"20912#~ "Peut-être souhaitez-vous utiliser 'update --init' ?"2091320914#~ msgid "Forward-port local commits to the updated upstream head"20915#~ msgstr ""20916#~ "Reporter les validations locales sur le sommet mis à jour d'une branche "20917#~ "amont"2091820919#~ msgid "improper format entered align:%s"20920#~ msgstr "format non convenable align:%s"2092120922#~ msgid ""20923#~ "push.default is unset; its implicit value has changed in\n"20924#~ "Git 2.0 from 'matching' to 'simple'. To squelch this message\n"20925#~ "and maintain the traditional behavior, use:\n"20926#~ "\n"20927#~ " git config --global push.default matching\n"20928#~ "\n"20929#~ "To squelch this message and adopt the new behavior now, use:\n"20930#~ "\n"20931#~ " git config --global push.default simple\n"20932#~ "\n"20933#~ "When push.default is set to 'matching', git will push local branches\n"20934#~ "to the remote branches that already exist with the same name.\n"20935#~ "\n"20936#~ "Since Git 2.0, Git defaults to the more conservative 'simple'\n"20937#~ "behavior, which only pushes the current branch to the corresponding\n"20938#~ "remote branch that 'git pull' uses to update the current branch.\n"20939#~ "\n"20940#~ "See 'git help config' and search for 'push.default' for further "20941#~ "information.\n"20942#~ "(the 'simple' mode was introduced in Git 1.7.11. Use the similar mode\n"20943#~ "'current' instead of 'simple' if you sometimes use older versions of Git)"20944#~ msgstr ""20945#~ "push.default n'est pas défini ; sa valeur implicite a changé dans Git "20946#~ "2.0\n"20947#~ "de 'matching' vers 'simple'. Pour supprimer ce message et maintenir\n"20948#~ "le comportement actuel après la modification de la valeur de défaut, "20949#~ "utilisez :\n"20950#~ "\n"20951#~ " git config --global push.default matching\n"20952#~ "\n"20953#~ "Pour supprimer ce message et adopter le nouveau comportement maintenant, "20954#~ "utilisez :\n"20955#~ "\n"20956#~ " git config --global push.default simple\n"20957#~ "\n"20958#~ "Quand push.default vaudra 'matching', git poussera les branches locales\n"20959#~ "sur les branches distantes qui existent déjà avec le même nom.\n"20960#~ "\n"20961#~ "Depuis Git 2.0, Git utilise par défaut le comportement plus conservatif "20962#~ "'simple'\n"20963#~ "qui ne pousse la branche courante que vers la branche distante "20964#~ "correspondante\n"20965#~ "que 'git pull' utilise pour mettre à jour la branche courante.\n"20966#~ " \n"20967#~ "Voir 'git help config' et chercher 'push.default' pour plus "20968#~ "d'information.\n"20969#~ "(le mode 'simple' a été introduit dans Git 1.7.11. Utilisez le mode "20970#~ "similaire\n"20971#~ "'current' au lieu de 'simple' si vous utilisez de temps en temps "20972#~ "d'anciennes versions de Git)"2097320974#~ msgid "check|on-demand|no"20975#~ msgstr "check|on-demand|no"2097620977#~ msgid "Could not append '%s'"20978#~ msgstr "Impossible d'ajouter '%s'"2097920980#~ msgid "Missing author: %s"20981#~ msgstr "Auteur manquant : %s"2098220983#~ msgid "Testing "20984#~ msgstr "Test en cours "2098520986#~ msgid "unable to look up current user in the passwd file: %s"20987#~ msgstr ""20988#~ "impossible de rechercher l'utilisateur actuel dans le fichier de mots de "20989#~ "passe : %s"2099020991#~ msgid "no such user"20992#~ msgstr "utilisateur inconnu"2099320994#~ msgid "branch '%s' does not point at a commit"20995#~ msgstr "la branche '%s' ne pointe pas sur un commit"2099620997#~ msgid "print only merged branches"20998#~ msgstr "afficher seulement les branches fusionnées"2099921000#~ msgid "--dissociate given, but there is no --reference"21001#~ msgstr "--dissociate est spécifié, mais --reference est absent"2100221003#~ msgid "show usage"21004#~ msgstr "afficher l'usage"2100521006#~ msgid "insanely long template name %s"21007#~ msgstr "nom de modèle démentiellement long %s"2100821009#~ msgid "insanely long symlink %s"21010#~ msgstr "lien symbolique démentiellement long %s"2101121012#~ msgid "insanely long template path %s"21013#~ msgstr "chemin de modèle %s démentiellement long"2101421015#~ msgid "unsupported sort specification '%s'"21016#~ msgstr "spécification de tri non supportée '%s'"2101721018#~ msgid "unsupported sort specification '%s' in variable '%s'"21019#~ msgstr "spécification de tri non supportée '%s' dans le variable '%s'"2102021021#~ msgid "switch 'points-at' requires an object"21022#~ msgstr "le commutateur 'points-at' a besoin d'un objet"2102321024#~ msgid "--sort and -n are incompatible"21025#~ msgstr "--sort et -n sont incompatibles"2102621027#~ msgid "Gitdir '$a' is part of the submodule path '$b' or vice versa"21028#~ msgstr ""21029#~ "Le répertoire Git '$a' fait partie du chemin de sous-module '$b' ou vice-"21030#~ "versa"2103121032#~ msgid "false|true|preserve"21033#~ msgstr "false|true|preserve"2103421035#~ msgid "BUG: reopen a lockfile that is still open"21036#~ msgstr "BUG: réouverture d'un fichier verrou déjà ouvert"2103721038#~ msgid "BUG: reopen a lockfile that has been committed"21039#~ msgstr "BUG: réouverture d'un fichier verrou validé"2104021041#~ msgid "option %s does not accept negative form"21042#~ msgstr "l'option %s n'accepte pas de valeur négative"2104321044#~ msgid "unable to parse value '%s' for option %s"21045#~ msgstr "impossible d'analyser la valeur '%s' pour l'option %s"2104621047#~ msgid "-b and -B are mutually exclusive"21048#~ msgstr "-b et -B sont mutuellement exclusifs"2104921050#~ msgid ""21051#~ "When you have resolved this problem, run \"$cmdline --continue\".\n"21052#~ "If you prefer to skip this patch, run \"$cmdline --skip\" instead.\n"21053#~ "To restore the original branch and stop patching, run \"$cmdline --abort"21054#~ "\"."21055#~ msgstr ""21056#~ "Lorsque vous aurez résolu ce problème, lancez \"$cmdline --continue\".\n"21057#~ "Si vous préférez sauter ce patch, lancez \"$cmdline --skip\" à la place.\n"21058#~ "Pour restaurer la branche d'origine et stopper le patchage, lancez "21059#~ "\"$cmdline --abort\"."2106021061#~ msgid "Patch format $patch_format is not supported."21062#~ msgstr "Le format de patch $patch_format n'est pas supporté."2106321064#~ msgid "Please make up your mind. --skip or --abort?"21065#~ msgstr "Décidez-vous. --skip ou --abort ?"2106621067#~ msgid ""21068#~ "Patch is empty. Was it split wrong?\n"21069#~ "If you would prefer to skip this patch, instead run \"$cmdline --skip\".\n"21070#~ "To restore the original branch and stop patching run \"$cmdline --abort\"."21071#~ msgstr ""21072#~ "Le patch est vide. Était-il mal découpé ?\n"21073#~ "Si vous préférez sauter ce patch, lancez plutôt \"$cmdline --skip\".\n"21074#~ "Pour restaurer la branche d'origine et stopper le patchage, lancez "21075#~ "\"$cmdline --abort\"."2107621077#~ msgid "Patch does not have a valid courriel address."21078#~ msgstr "Le patch n'a pas d'adresse courriel valide."2107921080#~ msgid "Applying: $FIRSTLINE"21081#~ msgstr "Application : $FIRSTLINE"2108221083#~ msgid "Patch failed at $msgnum $FIRSTLINE"21084#~ msgstr "Le patch a échoué à $msgnum $FIRSTLINE"2108521086#~ msgid ""21087#~ "Pull is not possible because you have unmerged files.\n"21088#~ "Please, fix them up in the work tree, and then use 'git add/rm <file>'\n"21089#~ "as appropriate to mark resolution and make a commit."21090#~ msgstr ""21091#~ "Le tirage n'est pas possible car vous avez des fichiers non fusionnés.\n"21092#~ "Veuillez les corriger dans votre copie de travail, utiliser alors 'git "21093#~ "add/rm <fichier>'\n"21094#~ "si nécessaire pour marquer comme résolu et valider."2109521096#~ msgid "no branch specified"21097#~ msgstr "aucune branche spécifiée"2109821099#~ msgid "prune .git/worktrees"21100#~ msgstr "éliminer .git/worktrees"2110121102#~ msgid "The most commonly used git commands are:"21103#~ msgstr "Les commandes git les plus utilisées sont :"2110421105#~ msgid "No such branch: '%s'"21106#~ msgstr "Branche inconnue : '%s'"2110721108#~ msgid "Could not create git link %s"21109#~ msgstr "Impossible de créer le lien git %s"2111021111#~ msgid "Invalid gc.pruneexpire: '%s'"21112#~ msgstr "gc.pruneexpire invalide : '%s'"2111321114#~ msgid "(detached from %s)"21115#~ msgstr "(détaché de %s)"2111621117#~ msgid "No existing author found with '%s'"21118#~ msgstr "Aucun auteur existant trouvé avec '%s'"2111921120#~ msgid "search also in ignored files"21121#~ msgstr "rechercher aussi dans les fichiers ignorés"2112221123#~ msgid "git remote set-head <name> (-a | --auto | -d | --delete |<branch>)"21124#~ msgstr "git remote set-head <nom> (-a | --auto | -d | --delete |<branche>)"2112521126#~ msgid "no files added"21127#~ msgstr "aucun fichier ajouté"2112821129#~ msgid "slot"21130#~ msgstr "emplacement"2113121132#~ msgid "Failed to lock ref for update"21133#~ msgstr "Échec du verrouillage de la référence pour mise à jour"2113421135#~ msgid "Failed to write ref"21136#~ msgstr "Échec de l'écriture de la référence"2113721138#~ msgid "Failed to lock HEAD during fast_forward_to"21139#~ msgstr "Échec du verrouillage de HEAD pendant l'avance rapide"2114021141#~ msgid "cannot lock HEAD ref"21142#~ msgstr "impossible de verrouiller la référence HEAD"2114321144#~ msgid "cannot update HEAD ref"21145#~ msgstr "impossible de mettre à jour la référence HEAD"2114621147#~ msgid "%s: cannot lock the ref"21148#~ msgstr "%s : impossible de verrouiller la référence"2114921150#~ msgid "%s: cannot update the ref"21151#~ msgstr "%s : impossible de mettre à jour la référence"2115221153#~ msgid "commit has empty message"21154#~ msgstr "le commit a un message vide"2115521156#~ msgid "Failed to chdir: %s"21157#~ msgstr "Échec de chdir: %s"2115821159#~ msgid "Tracking not set up: name too long: %s"21160#~ msgstr "Suivi de branche non paramétré : le nom est trop long : %s"2116121162#~ msgid "could not find .gitmodules in index"21163#~ msgstr "impossible de trouver .gitmodules dans l'index"2116421165#~ msgid "reading updated .gitmodules failed"21166#~ msgstr "échec de la lecture du .gitmodules mis à jour"2116721168#~ msgid "unable to stat updated .gitmodules"21169#~ msgstr "échec de stat du .gitmodules mis à jour"2117021171#~ msgid "unable to remove .gitmodules from index"21172#~ msgstr "suppression du .gitmodules dans l'index impossible"2117321174#~ msgid "adding updated .gitmodules failed"21175#~ msgstr "échec de l'ajout du .gitmodules mis à jour"2117621177#~ msgid "bug"21178#~ msgstr "bogue"2117921180#~ msgid ", behind "21181#~ msgstr ", derrière "2118221183#~ msgid ""21184#~ "The behavior of 'git add %s (or %s)' with no path argument from a\n"21185#~ "subdirectory of the tree will change in Git 2.0 and should not be used "21186#~ "anymore.\n"21187#~ "To add content for the whole tree, run:\n"21188#~ "\n"21189#~ " git add %s :/\n"21190#~ " (or git add %s :/)\n"21191#~ "\n"21192#~ "To restrict the command to the current directory, run:\n"21193#~ "\n"21194#~ " git add %s .\n"21195#~ " (or git add %s .)\n"21196#~ "\n"21197#~ "With the current Git version, the command is restricted to the current "21198#~ "directory.\n"21199#~ msgstr ""21200#~ "Le comportement de 'git add %s (ou %s)' sans argument de chemin depuis "21201#~ "un\n"21202#~ "sous-répertoire du projet va changer dans Git 2.0 et ne doit plus être "21203#~ "utilisé.\n"21204#~ "Pour ajouter le contenu de toute l'arborescence, lancez :\n"21205#~ "\n"21206#~ " git add %s :/\n"21207#~ " (ou git add %s :/)\n"21208#~ "\n"21209#~ "Pour restreindre la commande au répertoire courant, lancez :\n"21210#~ "\n"21211#~ " git add %s .\n"21212#~ " (ou git add %s .)\n"21213#~ "\n"21214#~ "Avec la version actuelle de Git, la commande est restreinte au répertoire "21215#~ "courant.\n"2121621217#~ msgid ""21218#~ "You ran 'git add' with neither '-A (--all)' or '--ignore-removal',\n"21219#~ "whose behaviour will change in Git 2.0 with respect to paths you "21220#~ "removed.\n"21221#~ "Paths like '%s' that are\n"21222#~ "removed from your working tree are ignored with this version of Git.\n"21223#~ "\n"21224#~ "* 'git add --ignore-removal <pathspec>', which is the current default,\n"21225#~ " ignores paths you removed from your working tree.\n"21226#~ "\n"21227#~ "* 'git add --all <pathspec>' will let you also record the removals.\n"21228#~ "\n"21229#~ "Run 'git status' to check the paths you removed from your working tree.\n"21230#~ msgstr ""21231#~ "Vous avez lancé 'git add' sans '-A (--all)' ni '--ignore-removal',\n"21232#~ "dont le comportement va changer dans Git 2.0 avec le respect des chemins "21233#~ "que vous supprimez.\n"21234#~ "Les chemins tels que '%s' qui ont été\n"21235#~ "retirés de votre copie de travail sont ignorés avec cette version de "21236#~ "Git.\n"21237#~ "\n"21238#~ "* 'git add --ignore-removal <chemin>', qui est l'option par défaut "21239#~ "actuelle,\n"21240#~ " ignore les chemins que vous avez supprimés de votre copie de travail.\n"21241#~ "\n"21242#~ "* 'git add --all <chemin>' permet d'enregistrer aussi les suppressions.\n"21243#~ "\n"21244#~ "Lancez 'git status' pour vérifier les chemins que vous avez supprimés de "21245#~ "votre copie de travail.\n"2124621247#~ msgid "key id"21248#~ msgstr "identifiant de clé"2124921250#~ msgid ""21251#~ "Auto packing the repository for optimum performance. You may also\n"21252#~ "run \"git gc\" manually. See \"git help gc\" for more information.\n"21253#~ msgstr ""21254#~ "Compression automatique du dépôt pour une performance optimum. Vous "21255#~ "pouvez aussi\n"21256#~ "lancer \"git gc\" manuellement. Voir \"git help gc\" pour plus "21257#~ "d'information.\n"2125821259#~ msgid ""21260#~ "Updates were rejected because a pushed branch tip is behind its remote\n"21261#~ "counterpart. If you did not intend to push that branch, you may want to\n"21262#~ "specify branches to push or set the 'push.default' configuration "21263#~ "variable\n"21264#~ "to 'simple', 'current' or 'upstream' to push only the current branch."21265#~ msgstr ""21266#~ "Les mises à jour ont été rejetées car la pointe de la branche poussée est "21267#~ "derrière\n"21268#~ "son homologue distant. Si vous ne vouliez pas pousser cette branche, vous "21269#~ "pourriez\n"21270#~ "vouloir spécifier les branches à pousser ou définir la variable de "21271#~ "configuration\n"21272#~ "'push.default' à 'simple', 'current' ou 'upstream' pour pousser seulement "21273#~ "la branche courante."2127421275#~ msgid "deleted: %s"21276#~ msgstr "supprimé : %s"2127721278#~ msgid "modified: %s"21279#~ msgstr "modifié : %s"2128021281#~ msgid "renamed: %s -> %s"21282#~ msgstr "renommé : %s -> %s"2128321284#~ msgid "unmerged: %s"21285#~ msgstr "non fus. : %s"2128621287#~ msgid "input paths are terminated by a null character"21288#~ msgstr "les chemins en entrée sont terminés par le caractère nul"2128921290#~ msgid ""21291#~ "Aborting. Consider using either the --force or --include-untracked option."21292#~ msgstr "Abandon. Utilisez l'option --force ou --include-untracked."