1
0
Fork 0
python-docs-fr/library/errno.po

549 lines
15 KiB
Plaintext
Raw Normal View History

2018-07-04 09:06:45 +00:00
# Copyright (C) 2001-2018, Python Software Foundation
2018-07-04 09:08:42 +00:00
# For licence information, see README file.
2016-10-30 09:46:26 +00:00
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
2017-04-02 20:14:06 +00:00
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
2019-01-11 22:08:21 +00:00
"PO-Revision-Date: 2019-01-11 23:06+0100\n"
2018-07-04 09:14:25 +00:00
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
2017-05-23 22:40:56 +00:00
"Language: fr\n"
2016-10-30 09:46:26 +00:00
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
2019-01-11 22:08:21 +00:00
"Last-Translator: \n"
"X-Generator: Poedit 2.2\n"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:2
msgid ":mod:`errno` --- Standard errno system symbols"
2019-01-11 22:08:21 +00:00
msgstr ":mod:`errno` --- Symboles du système errno standard"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:9
msgid ""
"This module makes available standard ``errno`` system symbols. The value of "
"each symbol is the corresponding integer value. The names and descriptions "
"are borrowed from :file:`linux/include/errno.h`, which should be pretty all-"
"inclusive."
msgstr ""
2019-01-11 22:08:21 +00:00
"Ce module met à disposition des symboles système standard ``errno``. La "
"valeur de chaque symbole est la valeur entière correspondante. Les noms et "
"les descriptions sont empruntés à :file:'Linux/include/errno.h', qui devrait "
"être assez inclusive."
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:17
msgid ""
"Dictionary providing a mapping from the errno value to the string name in "
"the underlying system. For instance, ``errno.errorcode[errno.EPERM]`` maps "
"to ``'EPERM'``."
msgstr ""
2019-01-11 22:08:21 +00:00
"Dictionnaire associant la valeur errno au nom de chaîne dans le système sous-"
"jacent. Par exemple, ``errno.errorcode[errno.EPERM]`` correspond à ``'EPERM'``."
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:21
msgid ""
"To translate a numeric error code to an error message, use :func:`os."
"strerror`."
msgstr ""
2019-01-11 22:08:21 +00:00
"Pour traduire un code d'erreur en message d'erreur, utilisez :func:`os."
"strerror`."
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:23
msgid ""
"Of the following list, symbols that are not used on the current platform are "
"not defined by the module. The specific list of defined symbols is "
"available as ``errno.errorcode.keys()``. Symbols available can include:"
msgstr ""
2019-01-11 22:08:21 +00:00
"De la liste suivante, les symboles qui ne sont pas utilisés dans la "
"plateforme actuelle ne sont pas définis par le module. La liste spécifique des "
2019-01-11 22:08:21 +00:00
"symboles définis est disponible comme ``errno.errorcode.keys()``. Les "
"symboles disponibles font partie de cette liste :"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:30
msgid "Operation not permitted"
2019-01-11 22:08:21 +00:00
msgstr "Opération interdite"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:35
msgid "No such file or directory"
2019-01-11 22:08:21 +00:00
msgstr "Fichier ou répertoire inexistant"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:40
msgid "No such process"
msgstr "Processus inexistant"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:45
msgid "Interrupted system call."
msgstr "Appel système interrompu"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:48
msgid "This error is mapped to the exception :exc:`InterruptedError`."
2019-01-11 22:08:21 +00:00
msgstr "Cette erreur est associé à :exc:`InterruptedError`."
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:53
msgid "I/O error"
2019-01-11 22:08:21 +00:00
msgstr "Erreur d'entrée-sortie"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:58
msgid "No such device or address"
2019-01-11 22:08:21 +00:00
msgstr "Périphérique ou adresse inexistant"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:63
msgid "Arg list too long"
2019-01-11 22:08:21 +00:00
msgstr "Liste d'arguments trop longue"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:68
msgid "Exec format error"
2019-01-11 22:08:21 +00:00
msgstr "Erreur de format d'exécution"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:73
msgid "Bad file number"
2019-01-11 22:08:21 +00:00
msgstr "Mauvais descripteur de fichier"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:78
msgid "No child processes"
2019-01-11 22:08:21 +00:00
msgstr "Pas de processus fils."
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:83
msgid "Try again"
2019-01-11 22:08:21 +00:00
msgstr "Ressource temporairement indisponible (réessaye)"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:88
msgid "Out of memory"
2019-01-11 22:08:21 +00:00
msgstr "Pas assez de mémoire"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:93
msgid "Permission denied"
2019-01-11 22:08:21 +00:00
msgstr "Permission interdite"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:98
msgid "Bad address"
2019-01-11 22:08:21 +00:00
msgstr "Mauvaise addresse"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:103
msgid "Block device required"
2019-01-11 22:08:21 +00:00
msgstr "Périphérique de bloc requis"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:113
msgid "File exists"
2019-01-11 22:08:21 +00:00
msgstr "Fichier existant"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:118
msgid "Cross-device link"
2019-01-11 22:08:21 +00:00
msgstr "Lien inapproprié"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:123
msgid "No such device"
2019-01-11 22:08:21 +00:00
msgstr "Périphérique inexistant"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:128
msgid "Not a directory"
2019-01-11 22:08:21 +00:00
msgstr "Pas un répertoire"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:133
msgid "Is a directory"
2019-01-11 22:08:21 +00:00
msgstr "Est un répertoire"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:138
msgid "Invalid argument"
msgstr "Argument invalide"
#: ../Doc/library/errno.rst:143
msgid "File table overflow"
2019-01-11 22:08:21 +00:00
msgstr "Plus de descripteur de fichier disponibles"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:148
msgid "Too many open files"
2019-01-11 22:08:21 +00:00
msgstr "Trop de fichiers ouverts"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:153
msgid "Not a typewriter"
2019-01-11 22:08:21 +00:00
msgstr "Opération de contrôle d'entrée-sortie invalide"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:158
msgid "Text file busy"
2019-01-11 22:08:21 +00:00
msgstr "Fichier texte occupé"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:163
msgid "File too large"
2019-01-11 22:08:21 +00:00
msgstr "Fichier trop grand"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:168
msgid "No space left on device"
2019-01-11 22:08:21 +00:00
msgstr "Plus de place sur le périphérique"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:173
msgid "Illegal seek"
2019-01-11 22:08:21 +00:00
msgstr "Recherche invalide"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:178
msgid "Read-only file system"
2019-01-11 22:08:21 +00:00
msgstr "Système de fichiers en lecture seule"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:183
msgid "Too many links"
2019-01-11 22:08:21 +00:00
msgstr "Trop de liens symboliques"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:188
msgid "Broken pipe"
2019-01-11 22:08:21 +00:00
msgstr "Tube brisé"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:193
msgid "Math argument out of domain of func"
2019-01-11 22:08:21 +00:00
msgstr "Argument mathématique hors du domaine de définition de la fonction"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:198
msgid "Math result not representable"
2019-01-11 22:08:21 +00:00
msgstr "Résultat mathématique non-representable"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:203
msgid "Resource deadlock would occur"
2019-01-11 22:08:21 +00:00
msgstr "Un impasse dans les ressources se produirait"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:208
msgid "File name too long"
2019-01-11 22:08:21 +00:00
msgstr "Nom de fichier trop long"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:213
msgid "No record locks available"
2019-01-11 22:08:21 +00:00
msgstr "Plus de vérrouillement de fichiers disponibles "
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:218
msgid "Function not implemented"
2019-01-11 22:08:21 +00:00
msgstr "Fonction non implementée"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:223
msgid "Directory not empty"
2019-01-11 22:08:21 +00:00
msgstr "Dossier non vide"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:228
msgid "Too many symbolic links encountered"
2019-01-11 22:08:21 +00:00
msgstr "Trop de liens symboliques trouvés"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:233
msgid "Operation would block"
2019-01-11 22:08:21 +00:00
msgstr "L'opération bloquerait"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:238
msgid "No message of desired type"
2019-01-11 22:08:21 +00:00
msgstr "Pas de message du type desiré"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:243
msgid "Identifier removed"
2019-01-11 22:08:21 +00:00
msgstr "Identifiant enlevé"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:248
msgid "Channel number out of range"
2019-01-11 22:08:21 +00:00
msgstr "Le numéro de canal est hors de portée"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:253
msgid "Level 2 not synchronized"
2019-01-11 22:08:21 +00:00
msgstr "Le niveau 2 n'est pas synchronisé"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:258
msgid "Level 3 halted"
2019-01-11 22:08:21 +00:00
msgstr "Niveau 3 stoppé"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:263
msgid "Level 3 reset"
2019-01-11 22:08:21 +00:00
msgstr "Niveau 3 reinitialisé"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:268
msgid "Link number out of range"
2019-01-11 22:08:21 +00:00
msgstr "Le numéro de lien est hors de portée"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:273
msgid "Protocol driver not attached"
2019-01-11 22:08:21 +00:00
msgstr "Le pilote de protocole non attaché"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:278
msgid "No CSI structure available"
2019-01-11 22:08:21 +00:00
msgstr "Pas de structure *CSI* disponible"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:283
msgid "Level 2 halted"
2019-01-11 22:08:21 +00:00
msgstr "Niveau 2 stoppé"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:288
msgid "Invalid exchange"
2019-01-11 22:08:21 +00:00
msgstr "Échange invalide"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:293
msgid "Invalid request descriptor"
2019-01-11 22:08:21 +00:00
msgstr "Descripteur de requête invalide"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:298
msgid "Exchange full"
2019-01-11 22:08:21 +00:00
msgstr "Changement complet"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:303
msgid "No anode"
2019-01-11 22:08:21 +00:00
msgstr "Pas de *anode*"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:308
msgid "Invalid request code"
2019-01-11 22:08:21 +00:00
msgstr "Code de requête invalide"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:313
msgid "Invalid slot"
2019-01-11 22:08:21 +00:00
msgstr "Créneau invalide"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:318
msgid "File locking deadlock error"
2019-01-11 22:08:21 +00:00
msgstr "Fichier bloquant une erreur d'impasse"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:323
msgid "Bad font file format"
2019-01-11 22:08:21 +00:00
msgstr "Mauvais format de fichier de polices"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:328
msgid "Device not a stream"
2019-01-11 22:08:21 +00:00
msgstr "Le périphérique n'est pas influx"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:333
msgid "No data available"
2019-01-11 22:08:21 +00:00
msgstr "Pas de données disponibles"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:338
msgid "Timer expired"
2019-01-11 22:08:21 +00:00
msgstr "Temps expiré"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:343
msgid "Out of streams resources"
2019-01-11 22:08:21 +00:00
msgstr "Pas de ressources influx"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:348
msgid "Machine is not on the network"
2019-01-11 22:08:21 +00:00
msgstr "La machine n'est pas sur le réseau"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:353
msgid "Package not installed"
2019-01-11 22:08:21 +00:00
msgstr "Paquet non installé"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:358
msgid "Object is remote"
2019-01-11 22:08:21 +00:00
msgstr "L'objet est à distance"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:363
msgid "Link has been severed"
2019-01-11 22:08:21 +00:00
msgstr "Le lien a été coupé"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:368
msgid "Advertise error"
2019-01-11 22:08:21 +00:00
msgstr "Erreur d'annonce"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:373
msgid "Srmount error"
2019-01-11 22:08:21 +00:00
msgstr "Erreur *Srmount*"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:378
msgid "Communication error on send"
2019-01-11 22:08:21 +00:00
msgstr "Erreur de communication lors de l'envoi"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:383
msgid "Protocol error"
2019-01-11 22:08:21 +00:00
msgstr "Erreur de protocole"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:388
msgid "Multihop attempted"
2019-01-11 22:08:21 +00:00
msgstr "Transfert à sauts multiples attendu"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:393
msgid "RFS specific error"
2019-01-11 22:08:21 +00:00
msgstr "erreur spécifique *RFS*"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:398
msgid "Not a data message"
2019-01-11 22:08:21 +00:00
msgstr "Pas un message de données"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:403
msgid "Value too large for defined data type"
2019-01-11 22:08:21 +00:00
msgstr "Valeur trop grande être stocké dans ce type de donnée"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:408
msgid "Name not unique on network"
2019-01-11 22:08:21 +00:00
msgstr "Nom non-unique dans le réseau"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:413
msgid "File descriptor in bad state"
2019-01-11 22:08:21 +00:00
msgstr "Descripteur de fichier en mauvais état"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:418
msgid "Remote address changed"
2019-01-11 22:08:21 +00:00
msgstr "Adresse distante changée"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:423
msgid "Can not access a needed shared library"
2019-01-11 22:08:21 +00:00
msgstr "Pas d'accès a une librairie partagée nécessaire"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:428
msgid "Accessing a corrupted shared library"
2019-01-11 22:08:21 +00:00
msgstr "Essai d'accès à une librairie partagée corrompue"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:433
msgid ".lib section in a.out corrupted"
2019-01-11 22:08:21 +00:00
msgstr "La section *.lib* dans le *a.out* est corrompue"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:438
msgid "Attempting to link in too many shared libraries"
2019-01-11 22:08:21 +00:00
msgstr "Essai de relier trop de librairies partagées"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:443
msgid "Cannot exec a shared library directly"
2019-01-11 22:08:21 +00:00
msgstr "Imposible d'exécuter directement une librairie partagée"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:448
msgid "Illegal byte sequence"
2019-01-11 22:08:21 +00:00
msgstr "Séquence de byte illégale"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:453
msgid "Interrupted system call should be restarted"
2019-01-11 22:08:21 +00:00
msgstr "Appel système interrompu devrait être relancé"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:458
msgid "Streams pipe error"
2019-01-11 22:08:21 +00:00
msgstr "Erreur des flux"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:463
msgid "Too many users"
2019-01-11 22:08:21 +00:00
msgstr "Trop d'utilisateurs"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:468
msgid "Socket operation on non-socket"
2019-01-11 22:08:21 +00:00
msgstr "Opération *socket* sur *non-socket*"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:473
msgid "Destination address required"
2019-01-11 22:08:21 +00:00
msgstr "Adresse de destination demandée"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:478
msgid "Message too long"
2019-01-11 22:08:21 +00:00
msgstr "Message trop long"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:483
msgid "Protocol wrong type for socket"
2019-01-11 22:08:21 +00:00
msgstr "Mauvais type de protocole pour ce *socket*"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:488
msgid "Protocol not available"
2019-01-11 22:08:21 +00:00
msgstr "Protocole pas disponible"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:493
msgid "Protocol not supported"
2019-01-11 22:08:21 +00:00
msgstr "Protocole non soutenu"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:498
msgid "Socket type not supported"
2019-01-11 22:08:21 +00:00
msgstr "Tipe de *socket* non soutenu"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:503
msgid "Operation not supported on transport endpoint"
2019-01-11 22:08:21 +00:00
msgstr "Opération non supportée par la *socket*"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:508
msgid "Protocol family not supported"
2019-01-11 22:08:21 +00:00
msgstr "Famille de protocole non supportée"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:513
msgid "Address family not supported by protocol"
2019-01-11 22:08:21 +00:00
msgstr "Famille d'adresses non supportée"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:518
msgid "Address already in use"
2019-01-11 22:08:21 +00:00
msgstr "Adresse déjà utilisée"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:523
msgid "Cannot assign requested address"
2019-01-11 22:08:21 +00:00
msgstr "Impossible d'assigner l'adresse demandée"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:528
msgid "Network is down"
2019-01-11 22:08:21 +00:00
msgstr "Le réseau est désactivé "
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:533
msgid "Network is unreachable"
2019-01-11 22:08:21 +00:00
msgstr "Réseau inaccessible"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:538
msgid "Network dropped connection because of reset"
2019-01-11 22:08:21 +00:00
msgstr "Connexion annulée par le réseau"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:543
msgid "Software caused connection abort"
2019-01-11 22:08:21 +00:00
msgstr "Connexion abandonnée"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:548
msgid "Connection reset by peer"
2019-01-11 22:08:21 +00:00
msgstr "Connexion réinitialisée"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:553
msgid "No buffer space available"
2019-01-11 22:08:21 +00:00
msgstr "Plus de tampons disponibles"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:558
msgid "Transport endpoint is already connected"
2019-01-11 22:08:21 +00:00
msgstr "La socket est connectée"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:563
msgid "Transport endpoint is not connected"
2019-01-11 22:08:21 +00:00
msgstr "La socket n'est pas connectée"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:568
msgid "Cannot send after transport endpoint shutdown"
2019-01-11 22:08:21 +00:00
msgstr "Impossible d'envoyer après l'arrêt du point final du transport"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:573
msgid "Too many references: cannot splice"
msgstr "Trop de descripteurs : impossible d'effectuer la liaison"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:578
msgid "Connection timed out"
2019-01-11 22:08:21 +00:00
msgstr "Délai maximal de connexion écoulé"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:583
msgid "Connection refused"
2019-01-11 22:08:21 +00:00
msgstr "Connexion refusée"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:588
msgid "Host is down"
msgstr "Hôte éteint"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:593
msgid "No route to host"
2019-01-11 22:08:21 +00:00
msgstr "Hôte non accessible"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:598
msgid "Operation already in progress"
2019-01-11 22:08:21 +00:00
msgstr "Connexion déjà en cours"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:603
msgid "Operation now in progress"
2019-01-11 22:08:21 +00:00
msgstr "Opération en cours"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:608
msgid "Stale NFS file handle"
msgstr "Descripteur de fichier NFS corrompu"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:613
msgid "Structure needs cleaning"
2019-01-11 22:08:21 +00:00
msgstr "La structure a besoin d'être nettoyée"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:618
msgid "Not a XENIX named type file"
2019-01-11 22:08:21 +00:00
msgstr "*Not a XENIX named type file*"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:623
msgid "No XENIX semaphores available"
msgstr "*Pas de sémaphore XENIX disponible*"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:628
msgid "Is a named type file"
2019-01-11 22:08:21 +00:00
msgstr "Est un fichier de type nommé"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:633
msgid "Remote I/O error"
2019-01-11 22:08:21 +00:00
msgstr "Erreur d'entrées-sorties distante"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/errno.rst:638
msgid "Quota exceeded"
2019-01-11 22:08:21 +00:00
msgstr "Quota dépassé"