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

70 lines
3.2 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 ""
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"
"POT-Creation-Date: 2021-09-23 16:16+0200\n"
2018-09-28 09:36:32 +00:00
"PO-Revision-Date: 2018-09-28 11:34+0200\n"
2017-11-05 11:40:52 +00:00
"Last-Translator: Julien Palard <julien@palard.fr>\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/tk.rst:5
2016-10-30 09:46:26 +00:00
msgid "Graphical User Interfaces with Tk"
2018-03-20 23:16:43 +00:00
msgstr "Interfaces Utilisateur Graphiques avec Tk"
2016-10-30 09:46:26 +00:00
#: library/tk.rst:13
2016-10-30 09:46:26 +00:00
msgid ""
"Tk/Tcl has long been an integral part of Python. It provides a robust and "
"platform independent windowing toolkit, that is available to Python "
"programmers using the :mod:`tkinter` package, and its extension, the :mod:"
"`tkinter.tix` and the :mod:`tkinter.ttk` modules."
msgstr ""
2018-09-28 09:36:32 +00:00
"*Tk/Tcl* fait depuis longtemps partie intégrante de Python. Il fournit un "
"jeu d'outils robustes et indépendants de la plateforme pour gérer des "
"fenêtres. Disponible aux développeurs via le paquet :mod:`tkinter` et ses "
"extensions, les modules :mod:`tkinter.tix` et :mod:`tkinter.ttk`."
2016-10-30 09:46:26 +00:00
#: library/tk.rst:18
#, fuzzy
2016-10-30 09:46:26 +00:00
msgid ""
"The :mod:`tkinter` package is a thin object-oriented layer on top of Tcl/Tk. "
"To use :mod:`tkinter`, you don't need to write Tcl code, but you will need "
"to consult the Tk documentation, and occasionally the Tcl documentation. :"
"mod:`tkinter` is a set of wrappers that implement the Tk widgets as Python "
"classes."
2016-10-30 09:46:26 +00:00
msgstr ""
2017-11-05 11:40:52 +00:00
"Le paquet :mod:`tkinter` est une fine couche orientée objet au dessus de Tcl/"
"Tk. Pour utiliser le module :mod:`tkinter`, vous n'avez pas à écrire de code "
"Tcl, mais vous devrez consulter la documentation de Tk, et parfois la "
"documentation de Tcl. Le module :mod:`tkinter` est un ensemble de surcouches "
"implémentant les *widgets* Tk en classes Python. De plus, le module interne :"
2018-09-28 09:36:32 +00:00
"mod:`_tkinter` fournit un mécanisme robuste permettant à des fils "
2017-12-08 11:58:06 +00:00
"d'exécution Python et Tcl d'interagir."
2016-10-30 09:46:26 +00:00
#: library/tk.rst:24
#, fuzzy
2016-10-30 09:46:26 +00:00
msgid ""
":mod:`tkinter`'s chief virtues are that it is fast, and that it usually "
"comes bundled with Python. Although its standard documentation is weak, good "
"material is available, which includes: references, tutorials, a book and "
"others. :mod:`tkinter` is also famous for having an outdated look and feel, "
"which has been vastly improved in Tk 8.5. Nevertheless, there are many other "
"GUI libraries that you could be interested in. The Python wiki lists several "
"alternative `GUI frameworks and tools <https://wiki.python.org/moin/"
"GuiProgramming>`_."
2016-10-30 09:46:26 +00:00
msgstr ""
2017-11-05 11:40:52 +00:00
"Les avantages de :mod:`tkinter` sont sa rapidité, et qu'il est généralement "
"fourni nativement avec Python. Bien que sa documentation soit mauvaise, "
2018-09-28 09:36:32 +00:00
"d'autres ressources existent : des références, tutoriels, livres, … Le "
2017-11-05 11:40:52 +00:00
"module :mod:`tkinter` est aussi célèbre pour son aspect vieillot, cependant "
"il à été grandement amélioré depuis Tk 8.5. Néanmoins, il existe bien "
"d'autres bibliothèques d'interfaces graphiques qui pourraient vous "
"intéresser. Pour plus d'informations sur les alternatives, consultez le "
"chapitre :ref:`other-gui-packages`."