1997-02-15 15:29:56 +01: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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
1997-02-15 15:29:56 +01:00
|
|
|
*/
|
|
|
|
|
2009-07-02 00:31:44 +02:00
|
|
|
#include "winhelp_res.h"
|
|
|
|
|
2009-07-30 20:01:25 +02:00
|
|
|
#pragma code_page(65001)
|
|
|
|
|
1997-02-15 15:29:56 +01:00
|
|
|
/* Menu */
|
|
|
|
|
2006-12-04 20:12:07 +01:00
|
|
|
MAIN_MENU MENU LANGUAGE LANG_ITALIAN, SUBLANG_NEUTRAL
|
2002-05-14 05:48:10 +02:00
|
|
|
{
|
|
|
|
POPUP "&File" {
|
2002-10-21 21:18:42 +02:00
|
|
|
MENUITEM "&Apri...", MNID_FILE_OPEN
|
2002-06-01 04:55:48 +02:00
|
|
|
MENUITEM SEPARATOR
|
2003-11-21 22:33:02 +01:00
|
|
|
MENUITEM "S&tampa", MNID_FILE_PRINT
|
2009-08-25 22:49:52 +02:00
|
|
|
MENUITEM "&Installazione stampante...", MNID_FILE_SETUP
|
2002-06-01 04:55:48 +02:00
|
|
|
MENUITEM SEPARATOR
|
2002-10-21 21:18:42 +02:00
|
|
|
MENUITEM "&Esci", MNID_FILE_EXIT
|
2002-05-14 05:48:10 +02:00
|
|
|
}
|
|
|
|
POPUP "&Modifica" {
|
2002-10-21 21:18:42 +02:00
|
|
|
MENUITEM "&Copia...", MNID_EDIT_COPYDLG
|
2002-06-01 04:55:48 +02:00
|
|
|
MENUITEM SEPARATOR
|
2002-10-21 21:18:42 +02:00
|
|
|
MENUITEM "&Annota...", MNID_EDIT_ANNOTATE
|
2002-05-14 05:48:10 +02:00
|
|
|
}
|
|
|
|
POPUP "&Segnalibro" {
|
2002-10-21 21:18:42 +02:00
|
|
|
MENUITEM "&Definisci...", MNID_BKMK_DEFINE
|
2002-05-14 05:48:10 +02:00
|
|
|
}
|
2009-06-25 00:00:50 +02:00
|
|
|
POPUP "&Opzioni" {
|
|
|
|
POPUP "Aiuto sempre visibile"
|
2008-06-21 11:00:07 +02:00
|
|
|
BEGIN
|
2009-06-25 00:00:50 +02:00
|
|
|
MENUITEM "Predefinito", MNID_OPTS_HELP_DEFAULT
|
|
|
|
MENUITEM "Visibile", MNID_OPTS_HELP_VISIBLE
|
|
|
|
MENUITEM "Non visibile", MNID_OPTS_HELP_NONVISIBLE
|
2008-06-21 11:00:07 +02:00
|
|
|
END
|
2009-06-25 00:00:50 +02:00
|
|
|
MENUITEM "Cronologia", MNID_OPTS_HISTORY
|
|
|
|
POPUP "Caratteri"
|
2008-06-21 11:00:07 +02:00
|
|
|
BEGIN
|
2009-06-25 00:00:50 +02:00
|
|
|
MENUITEM "Piccolo", MNID_OPTS_FONTS_SMALL
|
|
|
|
MENUITEM "Normale", MNID_OPTS_FONTS_NORMAL
|
|
|
|
MENUITEM "Grande", MNID_OPTS_FONTS_LARGE
|
2008-06-21 11:00:07 +02:00
|
|
|
END
|
2009-06-25 00:00:50 +02:00
|
|
|
MENUITEM "Usa colori di sistema", MNID_OPTS_SYSTEM_COLORS
|
2008-06-21 11:00:07 +02:00
|
|
|
}
|
2002-05-14 05:48:10 +02:00
|
|
|
POPUP "&?" {
|
2002-10-21 21:18:42 +02:00
|
|
|
MENUITEM "&Aiuto sulla guida", MNID_HELP_HELPON
|
|
|
|
MENUITEM "Sempre in primo &piano", MNID_HELP_HELPTOP
|
2002-06-01 04:55:48 +02:00
|
|
|
MENUITEM SEPARATOR
|
2002-10-21 21:18:42 +02:00
|
|
|
MENUITEM "&Informazioni su...", MNID_HELP_ABOUT
|
2002-05-14 05:48:10 +02:00
|
|
|
#ifdef WINELIB
|
2009-06-25 00:00:50 +02:00
|
|
|
MENUITEM "&Informazioni su WINE", MNID_HELP_WINE
|
2002-05-14 05:48:10 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
1997-02-15 15:29:56 +01:00
|
|
|
|
|
|
|
/* Strings */
|
|
|
|
|
2006-12-04 20:12:07 +01:00
|
|
|
STRINGTABLE DISCARDABLE LANGUAGE LANG_ITALIAN, SUBLANG_NEUTRAL
|
2002-05-14 05:48:10 +02:00
|
|
|
{
|
2002-10-21 21:18:42 +02:00
|
|
|
STID_WINE_HELP, "Guida di WINE"
|
|
|
|
STID_WHERROR, "ERRORE"
|
|
|
|
STID_WARNING, "ATTENZIONE"
|
|
|
|
STID_INFO, "Informazione"
|
|
|
|
STID_NOT_IMPLEMENTED, "Non ancora implementato"
|
2003-11-21 22:33:02 +01:00
|
|
|
STID_HLPFILE_ERROR_s, "Errore di lettura del file della Guida `%s'"
|
2009-06-25 00:00:50 +02:00
|
|
|
STID_INDEX, "Indice"
|
2008-07-05 21:33:37 +02:00
|
|
|
STID_CONTENTS, "&Sommario"
|
2002-10-21 21:18:42 +02:00
|
|
|
STID_BACK, "&Precedente"
|
|
|
|
STID_ALL_FILES, "Tutti i file (*.*)"
|
2003-11-21 22:33:02 +01:00
|
|
|
STID_HELP_FILES_HLP, "File della Guida (*.hlp)"
|
2009-06-25 00:00:50 +02:00
|
|
|
STID_FILE_NOT_FOUND_s "Non è stato possibile trovare '%s'. Vuoi cercare questo file?"
|
|
|
|
STID_NO_RICHEDIT "Non è stato possibile trovare un'implementazione richedit... Annullando"
|
|
|
|
STID_PSH_INDEX, "Argomenti di aiuto: "
|
2002-05-14 05:48:10 +02:00
|
|
|
}
|