xref: /reactos/dll/win32/browseui/lang/fr-FR.rc (revision d5399189)
1/*
2 * Copyright 2009 Andrew Hill
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17 */
18
19LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
20
21/* Menus */
22
23IDM_CABINET_CONTEXTMENU MENUEX
24BEGIN
25    POPUP "", 264,MFT_STRING,MFS_ENABLED
26    BEGIN
27        MENUITEM "Boutons &Standard", IDM_TOOLBARS_STANDARDBUTTONS, MFT_STRING, MFS_ENABLED
28        MENUITEM "Barre d'&adresse", IDM_TOOLBARS_ADDRESSBAR, MFT_STRING, MFS_ENABLED
29        MENUITEM "&Liens", IDM_TOOLBARS_LINKSBAR, MFT_STRING, MFS_ENABLED
30        MENUITEM "", -1, MFT_SEPARATOR
31        MENUITEM "Verrouiller les &barres d'outils", IDM_TOOLBARS_LOCKTOOLBARS, MFT_STRING, MFS_ENABLED
32        MENUITEM "&Personnaliser...", IDM_TOOLBARS_CUSTOMIZE, MFT_STRING, MFS_ENABLED
33        MENUITEM "&Text Labels", IDM_TOOLBARS_TEXTLABELS, MFT_STRING, MFS_ENABLED
34        MENUITEM "&Go Button", IDM_TOOLBARS_GOBUTTON, MFT_STRING, MFS_ENABLED
35    END
36END
37
38IDM_CABINET_MAINMENU MENUEX
39BEGIN
40    POPUP "&Fichier", FCIDM_MENU_FILE
41    BEGIN
42        MENUITEM "", -1, MFT_SEPARATOR
43        MENUITEM "&Fermer", IDM_FILE_CLOSE
44    END
45    POPUP "É&dition", FCIDM_MENU_EDIT
46    BEGIN
47        MENUITEM "", -1, MFT_SEPARATOR
48    END
49    POPUP "Affic&hage", FCIDM_MENU_VIEW
50    BEGIN
51        POPUP "&Barre d'outils", IDM_VIEW_TOOLBARS
52        BEGIN
53            MENUITEM "", -1, MFT_SEPARATOR
54        END
55        MENUITEM "&Barre d'état", IDM_VIEW_STATUSBAR
56        POPUP "&Volet d'exploration", IDM_VIEW_EXPLORERBAR
57        BEGIN
58            MENUITEM "&Rechercher\tCtrl+E", IDM_EXPLORERBAR_SEARCH
59            MENUITEM "&Favoris\tCtrl+I", IDM_EXPLORERBAR_FAVORITES
60            MENUITEM "&Média", IDM_EXPLORERBAR_MEDIA
61            MENUITEM "&Historique\tCtrl+H", IDM_EXPLORERBAR_HISTORY
62            MENUITEM "D&ossiers", IDM_EXPLORERBAR_FOLDERS
63            MENUITEM "", IDM_EXPLORERBAR_SEPARATOR
64        END
65        MENUITEM "", FCIDM_MENU_VIEW_SEP_OPTIONS, MFT_SEPARATOR
66        POPUP "A&ller vers", FCIDM_MENU_EXPLORE
67        BEGIN
68            MENUITEM "&Retour\tAlt+Flèche gauche", IDM_GOTO_BACK
69            MENUITEM "&Avancer\tAlt+Flèche droite", IDM_GOTO_FORWARD
70            MENUITEM "Dossier &parent", IDM_GOTO_UPONELEVEL
71            MENUITEM "", -1, MFT_SEPARATOR
72            MENUITEM "Page de &démarrage\tAlt+Origine", IDM_GOTO_HOMEPAGE
73        END
74        MENUITEM "&Rafraîchir", IDM_VIEW_REFRESH
75    END
76    POPUP "F&avoris", FCIDM_MENU_FAVORITES
77    BEGIN
78        MENUITEM "&Ajouter aux Favoris...", IDM_FAVORITES_ADDTOFAVORITES
79        MENUITEM "&Organiser les Favoris...", IDM_FAVORITES_ORGANIZEFAVORITES
80        MENUITEM "", -1, MFT_SEPARATOR
81        MENUITEM "(Vide)", IDM_FAVORITES_EMPTY
82    END
83    POPUP "&Outils", FCIDM_MENU_TOOLS
84    BEGIN
85        MENUITEM "Connecter un lecteur &réseau...", IDM_TOOLS_MAPNETWORKDRIVE
86        MENUITEM "&Déconnecter un lecteur réseau...", IDM_TOOLS_DISCONNECTNETWORKDRIVE
87        MENUITEM "&Synchroniser...", IDM_TOOLS_SYNCHRONIZE
88        MENUITEM "", -1, MFT_SEPARATOR
89        MENUITEM "&Options des dossiers...", IDM_TOOLS_FOLDEROPTIONS
90    END
91    POPUP "&Aide", FCIDM_MENU_HELP
92    BEGIN
93        MENUITEM "À &propos de ReactOS", IDM_HELP_ABOUT
94    END
95END
96
97IDM_TASKBAR_TOOLBARS MENUEX
98BEGIN
99    POPUP "&Barres d'outils", -1, MFT_STRING, MFS_ENABLED, 0
100    BEGIN
101        MENUITEM "&Bureau", IDM_TASKBAR_TOOLBARS_DESKTOP, MFT_STRING
102        MENUITEM "Lancement &rapide", IDM_TASKBAR_TOOLBARS_QUICKLAUNCH, MFT_STRING
103        MENUITEM "", -1, MFT_SEPARATOR, MFS_ENABLED
104        MENUITEM "&Nouvelle barre d'outils...", IDM_TASKBAR_TOOLBARS_NEW, MFT_STRING
105    END
106END
107
108IDM_BAND_MENU MENUEX
109BEGIN
110    MENUITEM "Sho&w Title", IDM_BAND_TITLE
111    MENUITEM "&Close Toolbar", IDM_BAND_CLOSE
112END
113
114IDM_POPUPMENU MENUEX DISCARDABLE
115BEGIN
116    POPUP ""
117    BEGIN
118        POPUP "&View", IDM_VIEW_MENU
119        BEGIN
120            MENUITEM "&Large Icons", IDM_LARGE_ICONS
121            MENUITEM "&Small Icons", IDM_SMALL_ICONS
122        END
123        MENUITEM "&Open Folder", IDM_OPEN_FOLDER
124        MENUITEM "&Show Text", IDM_SHOW_TEXT
125    END
126END
127
128/* Dialogs */
129
130IDD_PROGRESS_DLG DIALOGEX 0, 0, 260, 85
131STYLE DS_SHELLFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_VISIBLE | WS_CLIPCHILDREN | WS_CAPTION | WS_SYSMENU
132CAPTION ""
133FONT 8, "MS Shell Dlg"
134BEGIN
135    CONTROL "", IDC_ANIMATION, ANIMATE_CLASSA, 0, 12, 10, 236, 30 /* TODO: style */
136    LTEXT "", IDC_TEXT_LINE,     7, 45, 250, 10, SS_LEFT|SS_NOPREFIX
137    LTEXT "", IDC_TEXT_LINE + 1, 7, 55, 250, 10, SS_LEFT|SS_NOPREFIX
138    LTEXT "", IDC_TEXT_LINE + 2, 7, 75, 190, 10, SS_LEFT|SS_NOPREFIX
139    CONTROL "", IDC_PROGRESS_BAR, PROGRESS_CLASSA, WS_BORDER, 7, 65, 190, 8
140    PUSHBUTTON "Annuler", IDCANCEL, 205, 65, 50, 15, WS_GROUP | WS_TABSTOP | WS_VISIBLE
141END
142
143IDD_CUSTOMIZETOOLBAREX DIALOGEX 0, 0, 357, 33
144STYLE DS_SHELLFONT | DS_CONTROL | WS_CHILD | WS_VISIBLE | WS_CAPTION
145FONT 8, "MS Shell Dlg", 0, 0, 0x1
146BEGIN
147    LTEXT "Te&xt options:", -1, 4, 2, 48, 15
148    COMBOBOX IDC_TEXTOPTIONS, 52, 0, 123, 57, CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
149    LTEXT "Ico&n options:", -1, 4, 20, 48, 15
150    COMBOBOX IDC_ICONOPTIONS, 52, 18, 123, 57, CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
151END
152
153/* Accelerators */
154
155IDR_ACCELERATORS ACCELERATORS
156BEGIN
157    VK_F5, IDM_VIEW_REFRESH, VIRTKEY, NOINVERT
158    VK_F5, IDM_VIEW_REFRESH, VIRTKEY, CONTROL, NOINVERT
159    "R", IDM_VIEW_REFRESH, VIRTKEY, CONTROL, NOINVERT
160    VK_HOME, IDM_GOTO_HOMEPAGE, VIRTKEY, ALT, NOINVERT
161    "D", IDM_FAVORITES_ADDTOFAVORITES, VIRTKEY, CONTROL, NOINVERT
162    "B", IDM_FAVORITES_ORGANIZEFAVORITES, VIRTKEY, CONTROL, NOINVERT
163    VK_LEFT, IDM_GOTO_BACK, VIRTKEY, ALT
164    VK_RIGHT, IDM_GOTO_FORWARD, VIRTKEY, ALT
165    VK_UP, IDM_GOTO_UPONELEVEL, VIRTKEY, ALT
166    VK_BACK, 41010, NOINVERT, VIRTKEY
167    "W", IDM_FILE_CLOSE, VIRTKEY, CONTROL, NOINVERT
168    "E", IDM_EXPLORERBAR_SEARCH, VIRTKEY, CONTROL, NOINVERT
169    "I", IDM_EXPLORERBAR_FAVORITES, VIRTKEY, CONTROL, NOINVERT
170    "H", IDM_EXPLORERBAR_HISTORY, VIRTKEY, CONTROL, NOINVERT
171END
172
173/* Strings */
174
175STRINGTABLE
176BEGIN
177    IDS_CANCELLING "Annulation..."
178    IDS_REMAINING  "Restant"
179END
180
181STRINGTABLE
182BEGIN
183    800 "Contains commands for manipulating the selected items."
184END
185
186STRINGTABLE
187BEGIN
188    864 "Contains edit commands."
189END
190
191STRINGTABLE
192BEGIN
193    928 "Contains commands for manipulating the view."
194END
195
196STRINGTABLE
197BEGIN
198    992 "Contains tools commands."
199END
200
201STRINGTABLE
202BEGIN
203    1056 "Contains commands for displaying Help."
204END
205
206STRINGTABLE
207BEGIN
208    9025 "Ferme la fenêtre."
209    9026 "Goes up one level."
210END
211
212STRINGTABLE
213BEGIN
214    9121 "Connects to a network drive."
215    9122 "Disconnects from a network drive."
216END
217
218STRINGTABLE
219BEGIN
220    9250 "Displays program information, version number, and copyright."
221    9252 "Displays information for debugging."
222END
223
224STRINGTABLE
225BEGIN
226    9281 "Goes to the previous page."
227    9282 "Goes to the next page."
228    9283 "Enables you to change settings."
229    9285 "Goes to your home page."
230END
231
232STRINGTABLE
233BEGIN
234    9362 "Ouvre le dossier des Favoris."
235    9363 "Ajoute la page en cours à votre liste des Favoris."
236END
237
238STRINGTABLE
239BEGIN
240    9505 "Affiche ou masque les barres d'outils."
241    9506 "Affiche ou masque la barre d'état."
242    9508 "Affiche la barre d'outils Boutons Standard."
243    9509 "Affiche la barre d'adresse."
244    9510 "Affiche la barre Quick Links."
245    9516 "Verrouille la taille et la position des barres d'outils."
246END
247
248STRINGTABLE
249BEGIN
250    9533 "Personnalise la barre d'outils."
251END
252
253STRINGTABLE
254BEGIN
255    9552 "Affiche ou masque une barre d'explorateur."
256    9553 "Affiche la barre de Recherche."
257    9554 "Affiche la barre des Favoris."
258    9555 "Affiche la barre d'Historique."
259    9557 "Affiche la barre des Dossiers."
260    9559 "Affiche la barre Média."
261END
262
263STRINGTABLE
264BEGIN
265    IDS_SMALLICONS "Small icons"
266    IDS_LARGEICONS "Large icons"
267    IDS_SHOWTEXTLABELS "Show text labels"
268END
269
270STRINGTABLE
271BEGIN
272    IDS_NOTEXTLABELS "No text labels"
273    IDS_SELECTIVETEXTONRIGHT "Selective text on right"
274END
275
276STRINGTABLE
277BEGIN
278    IDS_GOBUTTONLABEL "|Aller||"
279    IDS_GOBUTTONTIPTEMPLATE "Aller vers ""%s"""
280END
281
282STRINGTABLE
283BEGIN
284    IDS_SEARCHLABEL "Recherche"
285    IDS_ADDRESSBANDLABEL "A&dresse"
286END
287
288STRINGTABLE
289BEGIN
290    IDS_FOLDERSLABEL "Dossiers"
291END
292
293STRINGTABLE
294BEGIN
295    IDS_HISTORYTEXT "&Historique\tCtrl+H"
296END
297
298STRINGTABLE
299BEGIN
300    IDS_UP "Up"
301END
302
303STRINGTABLE
304BEGIN
305    IDS_BACK "Retour vers %s"
306    IDS_FORWARD "Avancer vers %s"
307END
308
309STRINGTABLE
310BEGIN
311    IDS_STANDARD_TOOLBAR, "|Retour|Avancer|Dossier parent|Recherche|Dossiers|Aller vers|Copier dans|Supprimer|Annuler|Affichage|Stop|Rafraîchir|Home|Map Drive|Déconnecter|Favoris|Historique|Plein écran|Propriétés|Couper|Copier|Coller|Options des dossiers||"
312END
313
314STRINGTABLE
315BEGIN
316    IDS_BROWSEFORNEWTOOLAR "Choisissez un dossier"
317    IDS_TOOLBAR_ERR_TITLE "Barre d'outils"
318    IDS_TOOLBAR_ERR_TEXT "Impossible de créer une barre d'outils."
319END
320