python-docs-fr/library/tkinter.font.po

183 lines
6.7 KiB
Plaintext
Raw Normal View History

2020-06-05 07:32:47 +00:00
# Copyright (C) 2001-2018, Python Software Foundation
# For licence information, see README file.
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-09-23 16:16+0200\n"
"PO-Revision-Date: 2023-07-08 10:48+0200\n"
"Last-Translator: Christophe Nanteuil <christophe.nanteuil@gmail.com>\n"
2020-06-05 07:32:47 +00:00
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
2020-07-20 13:06:06 +00:00
"Language: fr\n"
2020-06-05 07:32:47 +00:00
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.2.2\n"
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:2
2020-06-05 07:32:47 +00:00
msgid ":mod:`tkinter.font` --- Tkinter font wrapper"
msgstr ":mod:`tkinter.font` — enveloppe pour les polices *Tkinter*"
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:8
2020-06-05 07:32:47 +00:00
msgid "**Source code:** :source:`Lib/tkinter/font.py`"
msgstr "**Code source :** :source:`Lib/tkinter/font.py`"
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:12
2020-06-05 07:32:47 +00:00
msgid ""
"The :mod:`tkinter.font` module provides the :class:`Font` class for creating "
"and using named fonts."
msgstr ""
"Le module :mod:`tkinter.font` fournit la classe :class:`Font` pour créer et "
"utiliser des polices nommées."
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:15
2020-06-05 07:32:47 +00:00
msgid "The different font weights and slants are:"
msgstr "Les différentes épaisseurs et inclinaisons des polices sont :"
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:24
2020-06-05 07:32:47 +00:00
msgid ""
"The :class:`Font` class represents a named font. *Font* instances are given "
"unique names and can be specified by their family, size, and style "
"configuration. Named fonts are Tk's method of creating and identifying fonts "
"as a single object, rather than specifying a font by its attributes with "
"each occurrence."
msgstr ""
"La classe :class:`Font` représente une police nommée. Les instances *Font* "
"reçoivent des noms uniques et peuvent être spécifiées par leur configuration "
"de famille, de taille et de style. Les polices nommées sont la méthode de "
"*Tk* pour créer et identifier les polices comme un seul objet, plutôt que de "
"spécifier une police par ses attributs à chaque occurrence."
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:30
2020-06-05 07:32:47 +00:00
msgid "arguments:"
msgstr "arguments :"
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:0
2020-06-05 07:32:47 +00:00
msgid "*font* - font specifier tuple (family, size, options)"
msgstr "*font* *n*-uplet spécificateur de police (famille, taille, options)"
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:0
2020-06-05 07:32:47 +00:00
msgid "*name* - unique font name"
msgstr "*name* nom de police unique"
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:0
2020-06-05 07:32:47 +00:00
msgid "*exists* - self points to existing named font if true"
msgstr ""
"*exists* s'il est vrai, *self* pointe vers la police nommée existante"
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:36
2020-06-05 07:32:47 +00:00
msgid "additional keyword options (ignored if *font* is specified):"
msgstr "options nommées supplémentaires (ignorées si *font* est spécifié) :"
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:0
2020-06-05 07:32:47 +00:00
msgid "*family* - font family i.e. Courier, Times"
msgstr "*family* famille de polices, c'est-à-dire *Courier*, *Times*"
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:0
2020-06-05 07:32:47 +00:00
msgid "*size* - font size"
msgstr "*size* taille de la police"
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:0
2020-06-05 07:32:47 +00:00
msgid "If *size* is positive it is interpreted as size in points."
msgstr "Si *size* est positif, il est interprété comme une taille en points."
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:0
2020-10-02 08:55:01 +00:00
msgid "If *size* is a negative number its absolute value is treated"
msgstr "Si *size* est un nombre négatif sa valeur absolue est traitée"
2020-10-02 08:55:01 +00:00
#: library/tkinter.font.rst:0
msgid "as size in pixels."
msgstr "comme taille en pixels."
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:0
2020-06-05 07:32:47 +00:00
msgid "*weight* - font emphasis (NORMAL, BOLD)"
msgstr "*weight* accentuation de la police (*NORMAL*, *BOLD* pour gras)"
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:0
2020-06-05 07:32:47 +00:00
msgid "*slant* - ROMAN, ITALIC"
msgstr "*slant* *ROMAN* pour romain, *ITALIC* pour italique"
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:0
2020-06-05 07:32:47 +00:00
msgid "*underline* - font underlining (0 - none, 1 - underline)"
msgstr "*underline* soulignement de la police (0 aucun, 1 souligné)"
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:0
2020-06-05 07:32:47 +00:00
msgid "*overstrike* - font strikeout (0 - none, 1 - strikeout)"
msgstr "*overstrike* police barrée (0 aucune, 1 barré)"
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:50
2020-06-05 07:32:47 +00:00
msgid "Return the attributes of the font."
msgstr "Renvoie les attributs de la police."
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:54
2020-06-05 07:32:47 +00:00
msgid "Retrieve an attribute of the font."
msgstr "Récupère un attribut de la police."
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:58
2020-06-05 07:32:47 +00:00
msgid "Modify attributes of the font."
msgstr "Modifie les attributs de la police."
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:62
2020-06-05 07:32:47 +00:00
msgid "Return new instance of the current font."
msgstr "Renvoie une nouvelle instance de la police actuelle."
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:66
2020-06-05 07:32:47 +00:00
msgid ""
"Return amount of space the text would occupy on the specified display when "
"formatted in the current font. If no display is specified then the main "
"application window is assumed."
msgstr ""
"Renvoie la quantité d'espace que le texte occuperait sur l'affichage "
"spécifié s'il était formaté dans la police actuelle. Si *displayof* n'est "
"pas spécifié, *tk* suppose que c'est la fenêtre principale de l'application."
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:72
2020-06-05 07:32:47 +00:00
msgid "Return font-specific data. Options include:"
msgstr "Renvoie des données spécifiques à la police. Les options incluent :"
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:76
2020-06-05 07:32:47 +00:00
msgid "*ascent* - distance between baseline and highest point that a"
msgstr ""
"*ascent* distance entre la ligne de base et le point le plus haut qu'un"
2020-06-05 07:32:47 +00:00
2020-10-02 08:55:01 +00:00
#: library/tkinter.font.rst:79
2020-06-05 07:32:47 +00:00
msgid "character of the font can occupy"
msgstr "caractère de la police peut occuper"
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:79
2020-06-05 07:32:47 +00:00
msgid "*descent* - distance between baseline and lowest point that a"
msgstr ""
"*descent* distance entre la ligne de base et le point le plus bas qu'un"
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:82
2020-06-05 07:32:47 +00:00
msgid "*linespace* - minimum vertical separation necessary between any two"
msgstr "*linespace* séparation verticale minimale nécessaire entre deux"
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:82
2020-06-05 07:32:47 +00:00
msgid "characters of the font that ensures no vertical overlap between lines."
msgstr ""
"caractères de la police qui assure l'absence de chevauchement vertical entre "
"les lignes."
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:84
2020-06-05 07:32:47 +00:00
msgid "*fixed* - 1 if font is fixed-width else 0"
msgstr "*fixed* 1 si la police est à largeur fixe sinon 0"
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:88
2020-06-05 07:32:47 +00:00
msgid "Return the different font families."
msgstr "Renvoie les différentes familles de polices."
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:92
2020-06-05 07:32:47 +00:00
msgid "Return the names of defined fonts."
msgstr "Renvoie les noms des polices définies."
2020-06-05 07:32:47 +00:00
#: library/tkinter.font.rst:96
2020-06-05 07:32:47 +00:00
msgid "Return a :class:`Font` representation of a tk named font."
msgstr "Renvoie une représentation :class:`Font` d'une police *tk* nommée."
# suit un :
#: library/tkinter.font.rst:98
msgid "The *root* parameter was added."
msgstr "le paramètre *root* a été ajouté."