1996-05-21 17:01:41 +02:00
|
|
|
|
/*
|
|
|
|
|
* Help Viewer
|
|
|
|
|
*
|
|
|
|
|
* Copyright 1996 Ulrich Schmid
|
2002-05-14 05:48:10 +02:00
|
|
|
|
* Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
|
2002-03-10 00:29:33 +01:00
|
|
|
|
*
|
|
|
|
|
* 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
|
1996-05-21 17:01:41 +02:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* Menu */
|
|
|
|
|
|
2003-09-22 21:48:29 +02:00
|
|
|
|
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
|
|
|
|
|
|
|
|
|
|
MAIN_MENU MENU
|
2002-05-14 05:48:10 +02:00
|
|
|
|
{
|
|
|
|
|
POPUP "&Fichier" {
|
2002-10-21 21:18:42 +02:00
|
|
|
|
MENUITEM "&Ouvrir", MNID_FILE_OPEN
|
2002-06-01 04:55:48 +02:00
|
|
|
|
MENUITEM SEPARATOR
|
2002-10-21 21:18:42 +02:00
|
|
|
|
MENUITEM "Im&primer", MNID_FILE_PRINT
|
|
|
|
|
MENUITEM "&Configuration de l'imprimante...", MNID_FILE_SETUP
|
2002-06-01 04:55:48 +02:00
|
|
|
|
MENUITEM SEPARATOR
|
2002-10-21 21:18:42 +02:00
|
|
|
|
MENUITEM "&Quitter", MNID_FILE_EXIT
|
2002-05-14 05:48:10 +02:00
|
|
|
|
}
|
|
|
|
|
POPUP "&Edition" {
|
2002-10-21 21:18:42 +02:00
|
|
|
|
MENUITEM "&Copier...", MNID_EDIT_COPYDLG
|
2002-06-01 04:55:48 +02:00
|
|
|
|
MENUITEM SEPARATOR
|
2002-10-21 21:18:42 +02:00
|
|
|
|
MENUITEM "&Annotation...", MNID_EDIT_ANNOTATE
|
2002-05-14 05:48:10 +02:00
|
|
|
|
}
|
|
|
|
|
POPUP "&Signet" {
|
2002-10-21 21:18:42 +02:00
|
|
|
|
MENUITEM "&D<>finir...", MNID_BKMK_DEFINE
|
2002-05-14 05:48:10 +02:00
|
|
|
|
}
|
2003-09-22 21:48:29 +02:00
|
|
|
|
POPUP "&Aide" {
|
2002-10-21 21:18:42 +02:00
|
|
|
|
MENUITEM "&Utiliser l'aide", MNID_HELP_HELPON
|
|
|
|
|
MENUITEM "&Toujours visible", MNID_HELP_HELPTOP
|
2002-06-01 04:55:48 +02:00
|
|
|
|
MENUITEM SEPARATOR
|
2002-10-21 21:18:42 +02:00
|
|
|
|
MENUITEM "&Info...", MNID_HELP_ABOUT
|
2002-05-14 05:48:10 +02:00
|
|
|
|
#ifdef WINELIB
|
2002-10-21 21:18:42 +02:00
|
|
|
|
MENUITEM "&A propos de WINE", MNID_HELP_WINE
|
2002-05-14 05:48:10 +02:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
}
|
1996-05-21 17:01:41 +02:00
|
|
|
|
|
|
|
|
|
/* Strings */
|
2003-09-22 21:48:29 +02:00
|
|
|
|
STRINGTABLE DISCARDABLE
|
2002-05-14 05:48:10 +02:00
|
|
|
|
{
|
2002-10-21 21:18:42 +02:00
|
|
|
|
STID_WINE_HELP, "Aide de WINE"
|
|
|
|
|
STID_WHERROR, "ERREUR"
|
|
|
|
|
STID_WARNING, "ATTENTION"
|
|
|
|
|
STID_INFO, "Information"
|
2002-10-24 01:34:32 +02:00
|
|
|
|
STID_NOT_IMPLEMENTED, "Non impl<70>ment<6E>"
|
2002-10-21 21:18:42 +02:00
|
|
|
|
STID_HLPFILE_ERROR_s, "Une erreur est survenue en lisant le fichier d'aide `%s'"
|
|
|
|
|
STID_CONTENTS, "&Index"
|
|
|
|
|
STID_SEARCH, "&Rechercher"
|
|
|
|
|
STID_BACK, "&Pr<50>c<EFBFBD>dent"
|
|
|
|
|
STID_HISTORY, "&Historique"
|
2002-10-24 01:34:32 +02:00
|
|
|
|
STID_TOPICS, "&Sujets"
|
2003-09-22 21:48:29 +02:00
|
|
|
|
STID_ALL_FILES, "Tous fichiers (*.*)"
|
2002-10-21 21:18:42 +02:00
|
|
|
|
STID_HELP_FILES_HLP, "Fichiers d'aide (*.hlp)"
|
2002-05-14 05:48:10 +02:00
|
|
|
|
}
|