1
0
Fork 0
python-docs-fr/library/tkinter.scrolledtext.po

71 lines
2.8 KiB
Plaintext
Raw Permalink 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 ""
2019-12-05 22:15:54 +00:00
"Project-Id-Version: Python 3\n"
2016-10-30 09:46:26 +00:00
"Report-Msgid-Bugs-To: \n"
2020-09-11 07:11:46 +00:00
"POT-Creation-Date: 2020-08-24 09:01+0200\n"
2018-06-17 20:28:31 +00:00
"PO-Revision-Date: 2018-06-17 22:27+0200\n"
2016-10-30 09:46:26 +00:00
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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"
#: library/tkinter.scrolledtext.rst:2
2016-10-30 09:46:26 +00:00
msgid ":mod:`tkinter.scrolledtext` --- Scrolled Text Widget"
msgstr ":mod:`tkinter.scrolledtext` — Gadget texte avec barre de défilement"
2016-10-30 09:46:26 +00:00
#: library/tkinter.scrolledtext.rst:10
2016-10-30 09:46:26 +00:00
msgid "**Source code:** :source:`Lib/tkinter/scrolledtext.py`"
2018-06-17 10:27:27 +00:00
msgstr "**Code source :** :source:`Lib/tkinter/scrolledtext.py`"
2016-10-30 09:46:26 +00:00
#: library/tkinter.scrolledtext.rst:14
2020-07-20 08:56:42 +00:00
#, fuzzy
2016-10-30 09:46:26 +00:00
msgid ""
"The :mod:`tkinter.scrolledtext` module provides a class of the same name "
"which implements a basic text widget which has a vertical scroll bar "
"configured to do the \"right thing.\" Using the :class:`ScrolledText` class "
2020-07-20 08:56:42 +00:00
"is a lot easier than setting up a text widget and scroll bar directly."
2016-10-30 09:46:26 +00:00
msgstr ""
2018-06-17 10:27:27 +00:00
"Le module :mod:`tkinter.scrolledtext` fournit une classe, de même nom, "
2018-06-17 20:28:31 +00:00
"implémentant un simple gadget texte avec une barre de défilement verticale, "
2018-06-17 10:27:27 +00:00
"configuré \"pour faire ce qu'on attend de lui\". Utiliser :class:"
2018-06-17 20:28:31 +00:00
"`ScrolledText` est beaucoup plus simple que configurer un gadget texte et "
"une barre de défilement. Le constructeur est le même que celui de la classe :"
2018-06-17 10:27:27 +00:00
"class:`tkinter.Text`."
2016-10-30 09:46:26 +00:00
2020-07-20 08:56:42 +00:00
#: library/tkinter.scrolledtext.rst:19
2016-10-30 09:46:26 +00:00
msgid ""
"The text widget and scrollbar are packed together in a :class:`Frame`, and "
"the methods of the :class:`Grid` and :class:`Pack` geometry managers are "
"acquired from the :class:`Frame` object. This allows the :class:"
"`ScrolledText` widget to be used directly to achieve most normal geometry "
"management behavior."
msgstr ""
2018-06-17 10:27:27 +00:00
"Le gadget texte et la barre de défilement sont regroupés dans une :class:"
"`Frame`, et les méthodes gestionnaires de géométrie :class:`Grid` et :class:"
2018-06-17 20:28:31 +00:00
"`Pack` sont récupérées de l'objet :class:`Frame`. L'objet :class:"
2018-06-17 10:27:27 +00:00
"`ScrolledText` a donc tous les attributs classiques pour la gestion de la "
"géométrie."
2016-10-30 09:46:26 +00:00
2020-07-20 08:56:42 +00:00
#: library/tkinter.scrolledtext.rst:24
2016-10-30 09:46:26 +00:00
msgid ""
"Should more specific control be necessary, the following attributes are "
"available:"
msgstr ""
2018-06-17 10:27:27 +00:00
"Si un contrôle plus fin est nécessaire, les attributs suivants sont "
"disponibles :"
2016-10-30 09:46:26 +00:00
2020-07-20 08:56:42 +00:00
#: library/tkinter.scrolledtext.rst:32
2016-10-30 09:46:26 +00:00
msgid "The frame which surrounds the text and scroll bar widgets."
msgstr ""
2018-06-17 10:27:27 +00:00
"Le cadre (objet *Frame*) qui englobe le gadget texte et le gadget de la "
"barre de défilement."
2016-10-30 09:46:26 +00:00
2020-07-20 08:56:42 +00:00
#: library/tkinter.scrolledtext.rst:37
2016-10-30 09:46:26 +00:00
msgid "The scroll bar widget."
2018-06-17 10:27:27 +00:00
msgstr "Le gadget de la barre de défilement."