blob: b18de0274a8730ab954abe08225f4e9e20a4a3d4 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001# This properties file is used to create a PropertyResourceBundle
2# It contains Locale specific strings used in Swing
3# Currently, the following components need this for support:
4#
5# ColorChooser
6# FileChooser
7# OptionPane
8#
9# When this file is read in, the strings are put into the
10# defaults table. This is an implementation detail of the current
11# workings of Swing. DO NOT DEPEND ON THIS.
12# This may change in future versions of Swing as we improve localization
13# support.
14#
15# MNEMONIC NOTE:
16# Many of strings in this file are used by widgets that have a
17# mnemonic, for example:
18# ColorChooser.rgbNameText=RGB
19# ColorChooser.rgbMnemonic=71
20# ColorChooser.rgbDisplayedMnemonicIndex=1
21# Indicates that the tab in the ColorChooser for RGB colors will have
22# the text 'RGB', further the mnemonic character will be 'g' and that
23# a decoration will be provided under the 'G'. This will typically
24# look like: RGB
25# -
26# 71 corresponds to the decimal value of the VK constant defined
27# in java/awt/KeyEvent.java. VK_G is defined as:
28#
29# public static final int VK_G = 0x47;
30#
31# 0x47 is a hex number and needs to be converted to decimal.
32# A simple way to calculate this for a-z is to add 64 to the index of
33# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
34# for 'a' is 65, 'b' is 66...
35#
36# The xxDisplayedMnemonicIndex is used to indicate the index of the
37# character that should be underlined in the String, with 0
38# corresponding to the first character in the String.
39#
40# One important thing to remember is that the mnemonic MUST exist in
41# the String, if it does not exist you should add text that makes it
42# exist. This will typically take the form 'XXXX (M)' where M is the
43# character for the mnemonic.
44#
45# @author Steve Wilson
46
47############ FILE CHOOSER STRINGS #############
48FileChooser.fileDescriptionText=Fichier g\u00e9n\u00e9rique
49FileChooser.directoryDescriptionText=R\u00e9pertoire
50FileChooser.newFolderErrorText=Erreur lors de la cr\u00e9ation du nouveau dossier
51FileChooser.newFolderErrorSeparator= :
52FileChooser.newFolderParentDoesntExistTitleText=Unable to create folder
53FileChooser.newFolderParentDoesntExistText=Unable to create the folder.\n\nThe system cannot find the path specified.
54FileChooser.renameErrorTitleText=Error Renaming File or Folder
55FileChooser.renameErrorText=Cannot rename {0}
56FileChooser.renameErrorFileExistsText=Cannot rename {0}: A file with the name you specified already exists. \
57 Specify a different file name.
58FileChooser.acceptAllFileFilterText=Tous les fichiers
59FileChooser.cancelButtonText=Annuler
60FileChooser.cancelButtonMnemonic=65
61FileChooser.saveButtonText=Enregistrer
62FileChooser.saveButtonMnemonic=69
63FileChooser.openButtonText=Ouvrir
64FileChooser.openButtonMnemonic=79
65FileChooser.saveDialogTitleText=Enregistrer
66FileChooser.openDialogTitleText=Ouvrir
67FileChooser.updateButtonText=Mise \u00e0 jour
68FileChooser.updateButtonMnemonic=77
69FileChooser.helpButtonText=Aide
70FileChooser.helpButtonMnemonic=68
71FileChooser.directoryOpenButtonText=Ouvrir
72FileChooser.directoryOpenButtonMnemonic=79
73
74# File Size Units
75FileChooser.fileSizeKiloBytes={0} Ko
76FileChooser.fileSizeMegaBytes={0} Mo
77FileChooser.fileSizeGigaBytes={0} Go
78
79# These strings are platform dependent not look and feel dependent.
80FileChooser.win32.newFolder=Nouveau dossier
81FileChooser.win32.newFolder.subsequent=Nouveau dossier ({0})
82FileChooser.other.newFolder=Nouveau dossier
83FileChooser.other.newFolder.subsequent=Nouveau dossier.{0}
84
85
86## file chooser tooltips ###
87FileChooser.cancelButtonToolTipText=Ferme la bo\u00eete de dialogue du s\u00e9lecteur de fichiers
88FileChooser.saveButtonToolTipText=Enregistre le fichier s\u00e9lectionn\u00e9
89FileChooser.openButtonToolTipText=Ouvre le fichier s\u00e9lectionn\u00e9
90FileChooser.updateButtonToolTipText=Met \u00e0 jour la liste des r\u00e9pertoires
91FileChooser.helpButtonToolTipText=Aide sur le s\u00e9lecteur de fichiers
92FileChooser.directoryOpenButtonToolTipText=Ouvrir le r\u00e9pertoire s\u00e9lectionn\u00e9
93
94############ COLOR CHOOSER STRINGS #############
95ColorChooser.previewText=Aper\u00e7u
96ColorChooser.okText=OK
97ColorChooser.cancelText=Annuler
98ColorChooser.resetText=Restaurer
99# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
100ColorChooser.resetMnemonic=82
101ColorChooser.sampleText=Echantillon de texte Echantillon de texte
102ColorChooser.swatchesNameText=Echantillons
103ColorChooser.swatchesMnemonic=69
104ColorChooser.swatchesDisplayedMnemonicIndex=0
105ColorChooser.swatchesRecentText=Dernier :
106ColorChooser.hsbNameText=HSB
107# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
108# constant, and an index into the text to render the mnemonic as. The
109# mnemonic is xxxMnemonic and the index of the character to underline is
110# xxxDisplayedMnemonicIndex.
111ColorChooser.hsbMnemonic=72
112ColorChooser.hsbDisplayedMnemonicIndex=0
113ColorChooser.hsbHueText=H
114ColorChooser.hsbSaturationText=S
115ColorChooser.hsbBrightnessText=B
116ColorChooser.hsbRedText=R
117ColorChooser.hsbGreenText=V
118ColorChooser.hsbBlueText=B
119ColorChooser.rgbNameText=RVB
120ColorChooser.rgbMnemonic=86
121ColorChooser.rgbDisplayedMnemonicIndex=1
122ColorChooser.rgbRedText=Rouge
123ColorChooser.rgbRedMnemonic=71
124ColorChooser.rgbGreenText=Vert
125ColorChooser.rgbGreenMnemonic=84
126ColorChooser.rgbBlueText=Bleu
127ColorChooser.rgbBlueMnemonic=66
128
129############ OPTION PANE STRINGS #############
130# Mnemonic keys correspond to KeyEvent.VK_XXX constant
131# We only define mnemonics for YES/NO, but for completeness you can
132# define mnemonics for any of the buttons.
133OptionPane.yesButtonText=Oui
134OptionPane.yesButtonMnemonic=79
135OptionPane.noButtonText=Non
136OptionPane.noButtonMnemonic=78
137OptionPane.okButtonText=OK
138OptionPane.okButtonMnemonic=0
139OptionPane.cancelButtonText=Annuler
140OptionPane.cancelButtonMnemonic=0
141OptionPane.titleText=S\u00e9lectionnez une option
142# Title for the dialog for the showInputDialog methods. Only used if
143# the developer uses one of the variants that doesn't take a title.
144OptionPane.inputDialogTitle=Entr\u00e9e
145# Title for the dialog for the showMessageDialog methods. Only used if
146# the developer uses one of the variants that doesn't take a title.
147OptionPane.messageDialogTitle=Message
148
149############ Printing Dialog Strings ############
150PrintingDialog.titleProgressText=Impression
151PrintingDialog.titleAbortingText=Impression (Abandon)
152
153PrintingDialog.contentInitialText=Impression en cours...
154
155# The following string will be formatted by a MessageFormat
156# and {0} will be replaced by page number being printed
157PrintingDialog.contentProgressText=Page imprim\u00e9e {0}...
158
159PrintingDialog.contentAbortingText=Abandon de l'impression...
160
161PrintingDialog.abortButtonText=Abandonner
162PrintingDialog.abortButtonMnemonic=65
163PrintingDialog.abortButtonDisplayedMnemonicIndex=0
164PrintingDialog.abortButtonToolTipText=Abandonner l'impression
165
166############ Internal Frame Strings ############
167InternalFrame.iconButtonToolTip=R\u00e9duire
168InternalFrame.maxButtonToolTip=Agrandir
169InternalFrame.restoreButtonToolTip=Restaurer
170InternalFrame.closeButtonToolTip=Fermer
171
172############ Internal Frame Title Pane Strings ############
173InternalFrameTitlePane.restoreButtonText=Restaurer
174InternalFrameTitlePane.moveButtonText=D\u00e9placer
175InternalFrameTitlePane.sizeButtonText=Taille
176InternalFrameTitlePane.minimizeButtonText=R\u00e9duire
177InternalFrameTitlePane.maximizeButtonText=Agrandir
178InternalFrameTitlePane.closeButtonText=Fermer
179
180############ Text strings #############
181# Used for html forms
182FormView.submitButtonText=Soumettre la requ\u00eate
183FormView.resetButtonText=Restaurer
184FormView.browseFileButtonText=Parcourir...
185
186############ Abstract Document Strings ############
187AbstractDocument.styleChangeText=modification de style
188AbstractDocument.additionText=ajout
189AbstractDocument.deletionText=suppression
190AbstractDocument.undoText=D\u00e9faire
191AbstractDocument.redoText=Refaire
192
193############ Abstract Button Strings ############
194AbstractButton.clickText=cliquez sur
195
196############ Abstract Undoable Edit Strings ############
197AbstractUndoableEdit.undoText=D\u00e9faire
198AbstractUndoableEdit.redoText=Refaire
199
200############ Combo Box Strings ############
201ComboBox.togglePopupText=togglePopup
202
203############ Progress Monitor Strings ############
204ProgressMonitor.progressText=Progression...
205
206############ Split Pane Strings ############
207SplitPane.leftButtonText=bouton gauche
208SplitPane.rightButtonText=bouton droit
209# Used for Isindex
210IsindexView.prompt=Ceci est un index de recherche. Tapez des mots-cl\u00e9s pour la recherche :
211
212############ InternalFrameTitlePane Strings ############
213InternalFrameTitlePane.iconifyButtonAccessibleName=R\u00e9duire
214InternalFrameTitlePane.maximizeButtonAccessibleName=Agrandir
215InternalFrameTitlePane.closeButtonAccessibleName=Fermer