2005-08-02 16:55:11 +02:00
|
|
|
/*
|
|
|
|
* HTML Help resources
|
|
|
|
*
|
|
|
|
* Copyright 2005 James Hawkins
|
2011-01-17 23:26:50 +01:00
|
|
|
* Copyright 2011 Owen Rudge for CodeWeavers
|
2005-08-02 16:55:11 +02: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
|
2005-08-02 16:55:11 +02:00
|
|
|
*/
|
|
|
|
|
2009-07-01 10:17:48 +02:00
|
|
|
#include "resource.h"
|
|
|
|
|
2013-11-05 17:53:42 +01:00
|
|
|
#pragma makedep po
|
|
|
|
|
2008-06-10 18:34:06 +02:00
|
|
|
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
|
2005-08-02 16:55:11 +02:00
|
|
|
|
2005-08-03 13:46:52 +02:00
|
|
|
STRINGTABLE
|
|
|
|
BEGIN
|
|
|
|
IDS_CONTENTS "&Contents"
|
|
|
|
IDS_INDEX "I&ndex"
|
|
|
|
IDS_SEARCH "&Search"
|
|
|
|
IDS_FAVORITES "Favor&ites"
|
2011-01-17 23:26:50 +01:00
|
|
|
|
|
|
|
IDS_HIDETABS "Hide &Tabs"
|
|
|
|
IDS_SHOWTABS "Show &Tabs"
|
2005-08-03 13:46:52 +02:00
|
|
|
END
|
|
|
|
|
2005-08-02 16:55:11 +02:00
|
|
|
STRINGTABLE
|
|
|
|
BEGIN
|
|
|
|
IDTB_EXPAND "Show"
|
|
|
|
IDTB_CONTRACT "Hide"
|
|
|
|
IDTB_STOP "Stop"
|
|
|
|
IDTB_REFRESH "Refresh"
|
|
|
|
IDTB_BACK "Back"
|
2011-04-24 04:33:09 +02:00
|
|
|
IDTB_HOME "#msgctxt#table of contents#Home"
|
2005-08-02 16:55:11 +02:00
|
|
|
IDTB_SYNC "Sync"
|
|
|
|
IDTB_PRINT "Print"
|
|
|
|
IDTB_OPTIONS "Options"
|
|
|
|
IDTB_FORWARD "Forward"
|
|
|
|
END
|
2009-07-07 13:23:34 +02:00
|
|
|
|
2011-01-19 23:45:34 +01:00
|
|
|
MENU_POPUP MENU
|
2011-01-17 23:26:50 +01:00
|
|
|
{
|
2011-08-23 14:37:09 +02:00
|
|
|
POPUP "" /* Options */
|
2011-01-17 23:26:50 +01:00
|
|
|
{
|
|
|
|
MENUITEM "", IDTB_EXPAND,
|
|
|
|
MENUITEM "S&ync", IDTB_SYNC
|
|
|
|
MENUITEM "&Back", IDTB_BACK
|
|
|
|
MENUITEM "&Forward", IDTB_FORWARD
|
2011-04-24 04:33:09 +02:00
|
|
|
MENUITEM "#msgctxt#table of contents#&Home", IDTB_HOME
|
2011-01-17 23:26:50 +01:00
|
|
|
MENUITEM "&Stop", IDTB_STOP
|
|
|
|
MENUITEM "&Refresh", IDTB_REFRESH
|
|
|
|
MENUITEM "&Print...", IDTB_PRINT
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-23 14:09:57 +01:00
|
|
|
MENU_WEBBROWSER MENU
|
|
|
|
{
|
|
|
|
POPUP ""
|
|
|
|
{
|
|
|
|
MENUITEM "&Back", IDTB_BACK
|
|
|
|
MENUITEM "&Forward", IDTB_FORWARD
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "Select &All", MIID_SELECTALL
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "&View Source", MIID_VIEWSOURCE
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "&Print...", IDTB_PRINT
|
|
|
|
MENUITEM "&Refresh", IDTB_REFRESH
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "Proper&ties", MIID_PROPERTIES
|
|
|
|
}
|
|
|
|
POPUP ""
|
|
|
|
{
|
|
|
|
MENUITEM "Cu&t", MIID_CUT
|
|
|
|
MENUITEM "&Copy", MIID_COPY
|
|
|
|
MENUITEM "Paste", MIID_PASTE
|
|
|
|
MENUITEM "Select &All", MIID_SELECTALL
|
|
|
|
MENUITEM "&Print", IDTB_PRINT
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-06 13:19:58 +01:00
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
2009-07-07 13:23:34 +02:00
|
|
|
|
2011-01-06 13:19:58 +01:00
|
|
|
#define WINE_FILEDESCRIPTION_STR "Wine htmlhelp OCX"
|
|
|
|
#define WINE_FILENAME_STR "hhctrl.ocx"
|
|
|
|
#define WINE_FILEVERSION 5,2,3790,2744
|
|
|
|
#define WINE_FILEVERSION_STR "5.2.3790.2744"
|
|
|
|
#define WINE_PRODUCTVERSION 5,2,3790,2744
|
|
|
|
#define WINE_PRODUCTVERSION_STR "5.2.3790.2744"
|
|
|
|
|
|
|
|
#include "wine/wine_common_ver.rc"
|
2011-01-20 19:01:03 +01:00
|
|
|
|
|
|
|
/* @makedep: hhtoolbar.bmp */
|
|
|
|
IDB_HHTOOLBAR BITMAP hhtoolbar.bmp
|
2012-06-22 19:07:19 +02:00
|
|
|
|
|
|
|
/* @makedep: hhtreeview.bmp */
|
|
|
|
IDB_HHTREEVIEW BITMAP hhtreeview.bmp
|