Fr.rc 2.08 KB
Newer Older
Alexandre Julliard's avatar
Alexandre Julliard committed
1 2 3 4
/*
 * Help Viewer
 *
 * Copyright 1996 Ulrich Schmid
5
 * Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
6 7 8 9 10 11 12 13 14 15 16 17 18 19
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
Alexandre Julliard's avatar
Alexandre Julliard committed
20 21 22 23
 */

/* Menu */

24 25 26
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL

MAIN_MENU MENU
27 28
{
 POPUP "&Fichier" {
29
  MENUITEM "&Ouvrir", MNID_FILE_OPEN
30
  MENUITEM SEPARATOR
31 32
  MENUITEM "Im&primer", MNID_FILE_PRINT
  MENUITEM "&Configuration de l'imprimante...", MNID_FILE_SETUP
33
   MENUITEM SEPARATOR
34
  MENUITEM "&Quitter", MNID_FILE_EXIT
35 36
 }
 POPUP "&Edition" {
37
   MENUITEM "&Copier...", MNID_EDIT_COPYDLG
38
   MENUITEM SEPARATOR
39
   MENUITEM "&Annotation...", MNID_EDIT_ANNOTATE
40 41
 }
 POPUP "&Signet" {
42
   MENUITEM "&Dfinir...", MNID_BKMK_DEFINE
43
 }
44
 POPUP "&Aide" {
45 46
   MENUITEM "&Utiliser l'aide", MNID_HELP_HELPON
   MENUITEM "&Toujours visible", MNID_HELP_HELPTOP
47
   MENUITEM SEPARATOR
48
   MENUITEM "&Info...", MNID_HELP_ABOUT
49
#ifdef WINELIB
50
   MENUITEM "&A propos de WINE", MNID_HELP_WINE
51 52 53
#endif
 }
}
Alexandre Julliard's avatar
Alexandre Julliard committed
54 55

/* Strings */
56
STRINGTABLE DISCARDABLE
57
{
58 59 60 61
STID_WINE_HELP, 	"Aide de WINE"
STID_WHERROR, 		"ERREUR"
STID_WARNING,  		"ATTENTION"
STID_INFO,  		"Information"
62
STID_NOT_IMPLEMENTED, 	"Non implment"
63 64 65 66 67
STID_HLPFILE_ERROR_s, 	"Une erreur est survenue en lisant le fichier d'aide `%s'"
STID_CONTENTS, 		"&Index"
STID_SEARCH, 		"&Rechercher"
STID_BACK, 		"&Prcdent"
STID_HISTORY, 		"&Historique"
68
STID_TOPICS,		"&Sujets"
69
STID_ALL_FILES, 	"Tous fichiers (*.*)"
70
STID_HELP_FILES_HLP, 	"Fichiers d'aide (*.hlp)"
71
}