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

513 lines
19 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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: 2023-01-15 22:33+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: library/tkinter.tix.rst:2
msgid ":mod:`tkinter.tix` --- Extension widgets for Tk"
msgstr ""
#: library/tkinter.tix.rst:9
#, fuzzy
msgid "**Source code:** :source:`Lib/tkinter/tix.py`"
msgstr "**Code source :** :source:`Lib/tkinter/__init__.py`"
#: library/tkinter.tix.rst:13
msgid ""
"This Tk extension is unmaintained and should not be used in new code. Use :"
"mod:`tkinter.ttk` instead."
msgstr ""
#: library/tkinter.tix.rst:19
msgid ""
"The :mod:`tkinter.tix` (Tk Interface Extension) module provides an "
"additional rich set of widgets. Although the standard Tk library has many "
"useful widgets, they are far from complete. The :mod:`tkinter.tix` library "
"provides most of the commonly needed widgets that are missing from standard "
"Tk: :class:`HList`, :class:`ComboBox`, :class:`Control` (a.k.a. SpinBox) and "
"an assortment of scrollable widgets. :mod:`tkinter.tix` also includes many "
"more widgets that are generally useful in a wide range of applications: :"
"class:`NoteBook`, :class:`FileEntry`, :class:`PanedWindow`, etc; there are "
"more than 40 of them."
msgstr ""
#: library/tkinter.tix.rst:29
msgid ""
"With all these new widgets, you can introduce new interaction techniques "
"into applications, creating more useful and more intuitive user interfaces. "
"You can design your application by choosing the most appropriate widgets to "
"match the special needs of your application and users."
msgstr ""
#: library/tkinter.tix.rst:38
msgid "`Tix Homepage <https://tix.sourceforge.net/>`_"
msgstr ""
#: library/tkinter.tix.rst:37
msgid ""
"The home page for :mod:`Tix`. This includes links to additional "
"documentation and downloads."
msgstr ""
#: library/tkinter.tix.rst:41
msgid "`Tix Man Pages <https://tix.sourceforge.net/dist/current/man/>`_"
msgstr ""
#: library/tkinter.tix.rst:41
msgid "On-line version of the man pages and reference material."
msgstr ""
#: library/tkinter.tix.rst:44
msgid ""
"`Tix Programming Guide <https://tix.sourceforge.net/dist/current/docs/tix-"
"book/tix.book.html>`_"
msgstr ""
#: library/tkinter.tix.rst:44
msgid "On-line version of the programmer's reference material."
msgstr ""
#: library/tkinter.tix.rst:48
msgid ""
"`Tix Development Applications <https://tix.sourceforge.net/Tixapps/src/Tide."
"html>`_"
msgstr ""
#: library/tkinter.tix.rst:47
msgid ""
"Tix applications for development of Tix and Tkinter programs. Tide "
"applications work under Tk or Tkinter, and include :program:`TixInspect`, an "
"inspector to remotely modify and debug Tix/Tk/Tkinter applications."
msgstr ""
#: library/tkinter.tix.rst:53
msgid "Using Tix"
msgstr ""
#: library/tkinter.tix.rst:58
msgid ""
"Toplevel widget of Tix which represents mostly the main window of an "
"application. It has an associated Tcl interpreter."
msgstr ""
#: library/tkinter.tix.rst:61
msgid ""
"Classes in the :mod:`tkinter.tix` module subclasses the classes in the :mod:"
"`tkinter`. The former imports the latter, so to use :mod:`tkinter.tix` with "
"Tkinter, all you need to do is to import one module. In general, you can "
"just import :mod:`tkinter.tix`, and replace the toplevel call to :class:"
"`tkinter.Tk` with :class:`tix.Tk`::"
msgstr ""
#: library/tkinter.tix.rst:71
msgid ""
"To use :mod:`tkinter.tix`, you must have the Tix widgets installed, usually "
"alongside your installation of the Tk widgets. To test your installation, "
"try the following::"
msgstr ""
#: library/tkinter.tix.rst:81
msgid "Tix Widgets"
msgstr ""
#: library/tkinter.tix.rst:83
msgid ""
"`Tix <https://tix.sourceforge.net/dist/current/man/html/TixCmd/TixIntro."
"htm>`_ introduces over 40 widget classes to the :mod:`tkinter` repertoire."
msgstr ""
#: library/tkinter.tix.rst:88
msgid "Basic Widgets"
msgstr ""
#: library/tkinter.tix.rst:93
msgid ""
"A `Balloon <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixBalloon.htm>`_ that pops up over a widget to provide help. When the user "
"moves the cursor inside a widget to which a Balloon widget has been bound, a "
"small pop-up window with a descriptive message will be shown on the screen."
msgstr ""
#: library/tkinter.tix.rst:105
msgid ""
"The `ButtonBox <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixButtonBox.htm>`_ widget creates a box of buttons, such as is commonly "
"used for ``Ok Cancel``."
msgstr ""
#: library/tkinter.tix.rst:115
msgid ""
"The `ComboBox <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixComboBox.htm>`_ widget is similar to the combo box control in MS Windows. "
"The user can select a choice by either typing in the entry subwidget or "
"selecting from the listbox subwidget."
msgstr ""
#: library/tkinter.tix.rst:127
msgid ""
"The `Control <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixControl.htm>`_ widget is also known as the :class:`SpinBox` widget. The "
"user can adjust the value by pressing the two arrow buttons or by entering "
"the value directly into the entry. The new value will be checked against the "
"user-defined upper and lower limits."
msgstr ""
#: library/tkinter.tix.rst:140
msgid ""
"The `LabelEntry <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixLabelEntry.htm>`_ widget packages an entry widget and a label into one "
"mega widget. It can be used to simplify the creation of \"entry-form\" type "
"of interface."
msgstr ""
#: library/tkinter.tix.rst:151
msgid ""
"The `LabelFrame <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixLabelFrame.htm>`_ widget packages a frame widget and a label into one "
"mega widget. To create widgets inside a LabelFrame widget, one creates the "
"new widgets relative to the :attr:`frame` subwidget and manage them inside "
"the :attr:`frame` subwidget."
msgstr ""
#: library/tkinter.tix.rst:163
msgid ""
"The `Meter <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixMeter.htm>`_ widget can be used to show the progress of a background job "
"which may take a long time to execute."
msgstr ""
#: library/tkinter.tix.rst:174
msgid ""
"The `OptionMenu <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixOptionMenu.htm>`_ creates a menu button of options."
msgstr ""
#: library/tkinter.tix.rst:184
msgid ""
"The `PopupMenu <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixPopupMenu.htm>`_ widget can be used as a replacement of the ``tk_popup`` "
"command. The advantage of the :mod:`Tix` :class:`PopupMenu` widget is it "
"requires less application code to manipulate."
msgstr ""
#: library/tkinter.tix.rst:196
msgid ""
"The `Select <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixSelect.htm>`_ widget is a container of button subwidgets. It can be used "
"to provide radio-box or check-box style of selection options for the user."
msgstr ""
#: library/tkinter.tix.rst:207
msgid ""
"The `StdButtonBox <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixStdButtonBox.htm>`_ widget is a group of standard buttons for Motif-like "
"dialog boxes."
msgstr ""
#: library/tkinter.tix.rst:216
msgid "File Selectors"
msgstr ""
#: library/tkinter.tix.rst:221
msgid ""
"The `DirList <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixDirList.htm>`_ widget displays a list view of a directory, its previous "
"directories and its sub-directories. The user can choose one of the "
"directories displayed in the list or change to another directory."
msgstr ""
#: library/tkinter.tix.rst:233
msgid ""
"The `DirTree <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixDirTree.htm>`_ widget displays a tree view of a directory, its previous "
"directories and its sub-directories. The user can choose one of the "
"directories displayed in the list or change to another directory."
msgstr ""
#: library/tkinter.tix.rst:245
msgid ""
"The `DirSelectDialog <https://tix.sourceforge.net/dist/current/man/html/"
"TixCmd/tixDirSelectDialog.htm>`_ widget presents the directories in the file "
"system in a dialog window. The user can use this dialog window to navigate "
"through the file system to select the desired directory."
msgstr ""
#: library/tkinter.tix.rst:257
msgid ""
"The :class:`DirSelectBox` is similar to the standard Motif(TM) directory-"
"selection box. It is generally used for the user to choose a directory. "
"DirSelectBox stores the directories mostly recently selected into a ComboBox "
"widget so that they can be quickly selected again."
msgstr ""
#: library/tkinter.tix.rst:265
msgid ""
"The `ExFileSelectBox <https://tix.sourceforge.net/dist/current/man/html/"
"TixCmd/tixExFileSelectBox.htm>`_ widget is usually embedded in a "
"tixExFileSelectDialog widget. It provides a convenient method for the user "
"to select files. The style of the :class:`ExFileSelectBox` widget is very "
"similar to the standard file dialog on MS Windows 3.1."
msgstr ""
#: library/tkinter.tix.rst:278
msgid ""
"The `FileSelectBox <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixFileSelectBox.htm>`_ is similar to the standard Motif(TM) file-selection "
"box. It is generally used for the user to choose a file. FileSelectBox "
"stores the files mostly recently selected into a :class:`ComboBox` widget so "
"that they can be quickly selected again."
msgstr ""
#: library/tkinter.tix.rst:291
msgid ""
"The `FileEntry <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixFileEntry.htm>`_ widget can be used to input a filename. The user can "
"type in the filename manually. Alternatively, the user can press the button "
"widget that sits next to the entry, which will bring up a file selection "
"dialog."
msgstr ""
#: library/tkinter.tix.rst:302
msgid "Hierarchical ListBox"
msgstr ""
#: library/tkinter.tix.rst:307
msgid ""
"The `HList <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixHList.htm>`_ widget can be used to display any data that have a "
"hierarchical structure, for example, file system directory trees. The list "
"entries are indented and connected by branch lines according to their places "
"in the hierarchy."
msgstr ""
#: library/tkinter.tix.rst:319
msgid ""
"The `CheckList <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixCheckList.htm>`_ widget displays a list of items to be selected by the "
"user. CheckList acts similarly to the Tk checkbutton or radiobutton widgets, "
"except it is capable of handling many more items than checkbuttons or "
"radiobuttons."
msgstr ""
#: library/tkinter.tix.rst:335
msgid ""
"The `Tree <https://tix.sourceforge.net/dist/current/man/html/TixCmd/tixTree."
"htm>`_ widget can be used to display hierarchical data in a tree form. The "
"user can adjust the view of the tree by opening or closing parts of the tree."
msgstr ""
#: library/tkinter.tix.rst:347
msgid "Tabular ListBox"
msgstr ""
#: library/tkinter.tix.rst:352
msgid ""
"The `TList <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixTList.htm>`_ widget can be used to display data in a tabular format. The "
"list entries of a :class:`TList` widget are similar to the entries in the Tk "
"listbox widget. The main differences are (1) the :class:`TList` widget can "
"display the list entries in a two dimensional format and (2) you can use "
"graphical images as well as multiple colors and fonts for the list entries."
msgstr ""
#: library/tkinter.tix.rst:375
msgid "Manager Widgets"
msgstr ""
#: library/tkinter.tix.rst:380
msgid ""
"The `PanedWindow <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixPanedWindow.htm>`_ widget allows the user to interactively manipulate the "
"sizes of several panes. The panes can be arranged either vertically or "
"horizontally. The user changes the sizes of the panes by dragging the "
"resize handle between two panes."
msgstr ""
#: library/tkinter.tix.rst:392
msgid ""
"The `ListNoteBook <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixListNoteBook.htm>`_ widget is very similar to the :class:`TixNoteBook` "
"widget: it can be used to display many windows in a limited space using a "
"notebook metaphor. The notebook is divided into a stack of pages (windows). "
"At one time only one of these pages can be shown. The user can navigate "
"through these pages by choosing the name of the desired page in the :attr:"
"`hlist` subwidget."
msgstr ""
#: library/tkinter.tix.rst:406
msgid ""
"The `NoteBook <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixNoteBook.htm>`_ widget can be used to display many windows in a limited "
"space using a notebook metaphor. The notebook is divided into a stack of "
"pages. At one time only one of these pages can be shown. The user can "
"navigate through these pages by choosing the visual \"tabs\" at the top of "
"the NoteBook widget."
msgstr ""
#: library/tkinter.tix.rst:428
msgid "Image Types"
msgstr ""
#: library/tkinter.tix.rst:430
msgid "The :mod:`tkinter.tix` module adds:"
msgstr ""
#: library/tkinter.tix.rst:432
msgid ""
"`pixmap <https://tix.sourceforge.net/dist/current/man/html/TixCmd/pixmap."
"htm>`_ capabilities to all :mod:`tkinter.tix` and :mod:`tkinter` widgets to "
"create color images from XPM files."
msgstr ""
#: library/tkinter.tix.rst:441
msgid ""
"`Compound <https://tix.sourceforge.net/dist/current/man/html/TixCmd/compound."
"htm>`_ image types can be used to create images that consists of multiple "
"horizontal lines; each line is composed of a series of items (texts, "
"bitmaps, images or spaces) arranged from left to right. For example, a "
"compound image can be used to display a bitmap and a text string "
"simultaneously in a Tk :class:`Button` widget."
msgstr ""
#: library/tkinter.tix.rst:460
msgid "Miscellaneous Widgets"
msgstr ""
#: library/tkinter.tix.rst:465
msgid ""
"The `InputOnly <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tixInputOnly.htm>`_ widgets are to accept inputs from the user, which can be "
"done with the ``bind`` command (Unix only)."
msgstr ""
#: library/tkinter.tix.rst:472
msgid "Form Geometry Manager"
msgstr ""
#: library/tkinter.tix.rst:474
msgid "In addition, :mod:`tkinter.tix` augments :mod:`tkinter` by providing:"
msgstr ""
#: library/tkinter.tix.rst:479
msgid ""
"The `Form <https://tix.sourceforge.net/dist/current/man/html/TixCmd/tixForm."
"htm>`_ geometry manager based on attachment rules for all Tk widgets."
msgstr ""
#: library/tkinter.tix.rst:485
msgid "Tix Commands"
msgstr ""
#: library/tkinter.tix.rst:490
msgid ""
"The `tix commands <https://tix.sourceforge.net/dist/current/man/html/TixCmd/"
"tix.htm>`_ provide access to miscellaneous elements of :mod:`Tix`'s internal "
"state and the :mod:`Tix` application context. Most of the information "
"manipulated by these methods pertains to the application as a whole, or to a "
"screen or display, rather than to a particular window."
msgstr ""
#: library/tkinter.tix.rst:497
msgid "To view the current settings, the common usage is::"
msgstr ""
#: library/tkinter.tix.rst:506
msgid ""
"Query or modify the configuration options of the Tix application context. If "
"no option is specified, returns a dictionary all of the available options. "
"If option is specified with no value, then the method returns a list "
"describing the one named option (this list will be identical to the "
"corresponding sublist of the value returned if no option is specified). If "
"one or more option-value pairs are specified, then the method modifies the "
"given option(s) to have the given value(s); in this case the method returns "
"an empty string. Option may be any of the configuration options."
msgstr ""
#: library/tkinter.tix.rst:518
msgid ""
"Returns the current value of the configuration option given by *option*. "
"Option may be any of the configuration options."
msgstr ""
#: library/tkinter.tix.rst:524
msgid ""
"Locates a bitmap file of the name ``name.xpm`` or ``name`` in one of the "
"bitmap directories (see the :meth:`tix_addbitmapdir` method). By using :"
"meth:`tix_getbitmap`, you can avoid hard coding the pathnames of the bitmap "
"files in your application. When successful, it returns the complete pathname "
"of the bitmap file, prefixed with the character ``@``. The returned value "
"can be used to configure the ``bitmap`` option of the Tk and Tix widgets."
msgstr ""
#: library/tkinter.tix.rst:534
msgid ""
"Tix maintains a list of directories under which the :meth:`tix_getimage` "
"and :meth:`tix_getbitmap` methods will search for image files. The standard "
"bitmap directory is :file:`$TIX_LIBRARY/bitmaps`. The :meth:"
"`tix_addbitmapdir` method adds *directory* into this list. By using this "
"method, the image files of an applications can also be located using the :"
"meth:`tix_getimage` or :meth:`tix_getbitmap` method."
msgstr ""
#: library/tkinter.tix.rst:544
msgid ""
"Returns the file selection dialog that may be shared among different calls "
"from this application. This method will create a file selection dialog "
"widget when it is called the first time. This dialog will be returned by all "
"subsequent calls to :meth:`tix_filedialog`. An optional dlgclass parameter "
"can be passed as a string to specified what type of file selection dialog "
"widget is desired. Possible options are ``tix``, ``FileSelectDialog`` or "
"``tixExFileSelectDialog``."
msgstr ""
#: library/tkinter.tix.rst:554
msgid ""
"Locates an image file of the name :file:`name.xpm`, :file:`name.xbm` or :"
"file:`name.ppm` in one of the bitmap directories (see the :meth:"
"`tix_addbitmapdir` method above). If more than one file with the same name "
"(but different extensions) exist, then the image type is chosen according to "
"the depth of the X display: xbm images are chosen on monochrome displays and "
"color images are chosen on color displays. By using :meth:`tix_getimage`, "
"you can avoid hard coding the pathnames of the image files in your "
"application. When successful, this method returns the name of the newly "
"created image, which can be used to configure the ``image`` option of the Tk "
"and Tix widgets."
msgstr ""
#: library/tkinter.tix.rst:567
msgid "Gets the options maintained by the Tix scheme mechanism."
msgstr ""
#: library/tkinter.tix.rst:572
msgid ""
"Resets the scheme and fontset of the Tix application to *newScheme* and "
"*newFontSet*, respectively. This affects only those widgets created after "
"this call. Therefore, it is best to call the resetoptions method before the "
"creation of any widgets in a Tix application."
msgstr ""
#: library/tkinter.tix.rst:577
msgid ""
"The optional parameter *newScmPrio* can be given to reset the priority level "
"of the Tk options set by the Tix schemes."
msgstr ""
#: library/tkinter.tix.rst:580
msgid ""
"Because of the way Tk handles the X option database, after Tix has been has "
"imported and inited, it is not possible to reset the color schemes and font "
"sets using the :meth:`tix_config` method. Instead, the :meth:"
"`tix_resetoptions` method must be used."
msgstr ""