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>
|
2008-04-14 23:28:16 +02:00
|
|
|
|
* Copyright 2008 Jonathan Ernst
|
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
|
2006-05-18 14:49:52 +02:00
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
1996-05-21 17:01:41 +02:00
|
|
|
|
*/
|
|
|
|
|
|
2009-07-02 00:31:44 +02:00
|
|
|
|
#include "winhelp_res.h"
|
|
|
|
|
|
2009-07-06 16:44:23 +02:00
|
|
|
|
/* UTF-8 */
|
|
|
|
|
#pragma code_page(65001)
|
|
|
|
|
|
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
|
2008-04-14 23:28:16 +02:00
|
|
|
|
MENUITEM "&Imprimer", MNID_FILE_PRINT
|
2002-10-21 21:18:42 +02:00
|
|
|
|
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
|
|
|
|
}
|
2009-07-06 16:44:23 +02:00
|
|
|
|
POPUP "É&dition" {
|
2002-10-21 21:18:42 +02:00
|
|
|
|
MENUITEM "&Copier...", MNID_EDIT_COPYDLG
|
2002-06-01 04:55:48 +02:00
|
|
|
|
MENUITEM SEPARATOR
|
2009-07-06 16:44:23 +02:00
|
|
|
|
MENUITEM "&Annoter...", MNID_EDIT_ANNOTATE
|
2002-05-14 05:48:10 +02:00
|
|
|
|
}
|
2009-07-06 16:44:23 +02:00
|
|
|
|
POPUP "&Signets" {
|
|
|
|
|
MENUITEM "&Définir...", MNID_BKMK_DEFINE
|
2002-05-14 05:48:10 +02:00
|
|
|
|
}
|
2008-06-21 11:00:07 +02:00
|
|
|
|
POPUP "&Options" {
|
|
|
|
|
POPUP "Aide toujours visible"
|
|
|
|
|
BEGIN
|
2009-07-06 16:44:23 +02:00
|
|
|
|
MENUITEM "Par défaut", MNID_OPTS_HELP_DEFAULT
|
2008-06-21 11:00:07 +02:00
|
|
|
|
MENUITEM "Visible", MNID_OPTS_HELP_VISIBLE
|
|
|
|
|
MENUITEM "Non visible", MNID_OPTS_HELP_NONVISIBLE
|
|
|
|
|
END
|
|
|
|
|
MENUITEM "Historique", MNID_OPTS_HISTORY
|
|
|
|
|
POPUP "Polices"
|
|
|
|
|
BEGIN
|
|
|
|
|
MENUITEM "Petite", MNID_OPTS_FONTS_SMALL
|
|
|
|
|
MENUITEM "Normale", MNID_OPTS_FONTS_NORMAL
|
|
|
|
|
MENUITEM "Grande", MNID_OPTS_FONTS_LARGE
|
|
|
|
|
END
|
2009-07-06 16:44:23 +02:00
|
|
|
|
MENUITEM "Utiliser les couleurs système", MNID_OPTS_SYSTEM_COLORS
|
2008-06-21 11:00:07 +02:00
|
|
|
|
}
|
2006-05-23 12:39:05 +02:00
|
|
|
|
POPUP "Aid&e" {
|
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
|
2009-07-06 16:44:23 +02:00
|
|
|
|
MENUITEM "À &propos de Wine", MNID_HELP_WINE
|
2002-05-14 05:48:10 +02:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
}
|
1996-05-21 17:01:41 +02:00
|
|
|
|
|
2008-05-09 21:21:26 +02:00
|
|
|
|
IDD_INDEX DIALOG DISCARDABLE 0, 0, 200, 190 LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
|
2008-04-14 23:28:16 +02:00
|
|
|
|
STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
|
|
|
|
|
FONT 8, "MS Shell Dlg"
|
|
|
|
|
CAPTION "Index"
|
|
|
|
|
{
|
|
|
|
|
LISTBOX IDC_INDEXLIST, 10, 10, 180, 150, LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_BORDER
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-16 19:13:14 +01:00
|
|
|
|
IDD_SEARCH DIALOG DISCARDABLE 0, 0, 200, 190 LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
|
|
|
|
|
STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
|
|
|
|
|
FONT 8, "MS Shell Dlg"
|
|
|
|
|
CAPTION "Recherche"
|
|
|
|
|
{
|
2009-07-06 16:44:23 +02:00
|
|
|
|
LTEXT "Pas encore implémenté", -1, 10, 10, 180, 150
|
2008-12-16 19:13:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
1996-05-21 17:01:41 +02:00
|
|
|
|
/* Strings */
|
2008-05-09 21:21:26 +02:00
|
|
|
|
STRINGTABLE DISCARDABLE LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
|
2002-05-14 05:48:10 +02:00
|
|
|
|
{
|
2008-12-16 19:13:14 +01:00
|
|
|
|
STID_WINE_HELP, "Aide de Wine"
|
2002-10-21 21:18:42 +02:00
|
|
|
|
STID_WHERROR, "ERREUR"
|
|
|
|
|
STID_WARNING, "ATTENTION"
|
|
|
|
|
STID_INFO, "Information"
|
2009-07-06 16:44:23 +02:00
|
|
|
|
STID_NOT_IMPLEMENTED, "Non implémenté"
|
|
|
|
|
STID_HLPFILE_ERROR_s, "Une erreur est survenue en lisant le fichier d'aide « %s »"
|
2008-07-05 21:33:37 +02:00
|
|
|
|
STID_INDEX, "&Index"
|
|
|
|
|
STID_CONTENTS, "Sommaire"
|
2009-07-06 16:44:23 +02:00
|
|
|
|
STID_BACK, "&Précédent"
|
|
|
|
|
STID_ALL_FILES, "Tous les fichiers (*.*)"
|
2002-10-21 21:18:42 +02:00
|
|
|
|
STID_HELP_FILES_HLP, "Fichiers d'aide (*.hlp)"
|
2009-07-06 16:44:23 +02:00
|
|
|
|
STID_FILE_NOT_FOUND_s "Impossible de trouver « %s ». Souhaitez-vous rechercher ce fichier vous-même ?"
|
|
|
|
|
STID_NO_RICHEDIT "La bibliothèque RichEdit n'a pu être localisée... Abandon"
|
2008-06-27 21:28:44 +02:00
|
|
|
|
STID_PSH_INDEX, "Rubriques d'aide : "
|
2002-05-14 05:48:10 +02:00
|
|
|
|
}
|
2008-05-01 21:17:29 +02:00
|
|
|
|
|
|
|
|
|
CONTEXT_MENU MENU
|
|
|
|
|
BEGIN
|
|
|
|
|
POPUP ""
|
|
|
|
|
BEGIN
|
|
|
|
|
MENUITEM "Annotation...", MNID_CTXT_ANNOTATE
|
|
|
|
|
MENUITEM "Copier", MNID_CTXT_COPY
|
|
|
|
|
MENUITEM "Imprimer la rubrique...", MNID_CTXT_PRINT
|
|
|
|
|
POPUP "Polices"
|
|
|
|
|
BEGIN
|
|
|
|
|
MENUITEM "Petite", MNID_CTXT_FONTS_SMALL
|
|
|
|
|
MENUITEM "Normale", MNID_CTXT_FONTS_NORMAL
|
|
|
|
|
MENUITEM "Grande", MNID_CTXT_FONTS_LARGE
|
|
|
|
|
END
|
|
|
|
|
POPUP "Aide toujours visible"
|
|
|
|
|
BEGIN
|
2009-07-06 16:44:23 +02:00
|
|
|
|
MENUITEM "Par défaut", MNID_CTXT_HELP_DEFAULT
|
2008-05-01 21:17:29 +02:00
|
|
|
|
MENUITEM "Visible", MNID_CTXT_HELP_VISIBLE
|
|
|
|
|
MENUITEM "Non visible", MNID_CTXT_HELP_NONVISIBLE
|
|
|
|
|
END
|
2009-07-06 16:44:23 +02:00
|
|
|
|
MENUITEM "Utiliser les couleurs système", MNID_CTXT_SYSTEM_COLORS
|
2008-05-01 21:17:29 +02:00
|
|
|
|
END
|
|
|
|
|
END
|