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

73 lines
3.0 KiB
Plaintext
Raw Normal View History

2018-07-04 09:06:45 +00:00
# Copyright (C) 2001-2018, Python Software Foundation
2016-10-30 09:46:26 +00:00
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
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"
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"
"Language-Team: LANGUAGE <LL@li.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"
#: ../Doc/library/tkinter.scrolledtext.rst:2
msgid ":mod:`tkinter.scrolledtext` --- Scrolled Text Widget"
2018-06-17 20:28:31 +00:00
msgstr ":mod:`tkinter.scrolledtext` --- Gadget texte avec barre de défilement"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/tkinter.scrolledtext.rst:10
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
#: ../Doc/library/tkinter.scrolledtext.rst:14
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 "
"is a lot easier than setting up a text widget and scroll bar directly. The "
"constructor is the same as that of the :class:`tkinter.Text` class."
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
#: ../Doc/library/tkinter.scrolledtext.rst:20
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
#: ../Doc/library/tkinter.scrolledtext.rst:25
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
#: ../Doc/library/tkinter.scrolledtext.rst:31
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
#: ../Doc/library/tkinter.scrolledtext.rst:36
msgid "The scroll bar widget."
2018-06-17 10:27:27 +00:00
msgstr "Le gadget de la barre de défilement."