Ru.rc 3.62 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * Help Viewer (Russian resources)
 *
 * Copyright 2003 Igor Stepin
 *
 * 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
18
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 20
 */

21 22
#include "winhelp_res.h"

23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
/* Menu */

MAIN_MENU MENU LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
{
 POPUP "&" {
  MENUITEM "&", MNID_FILE_OPEN
  MENUITEM SEPARATOR
  MENUITEM "&", MNID_FILE_PRINT
  MENUITEM " &...", MNID_FILE_SETUP
   MENUITEM SEPARATOR
  MENUITEM "&", MNID_FILE_EXIT
 }
 POPUP "&" {
   MENUITEM "&...", MNID_EDIT_COPYDLG
   MENUITEM SEPARATOR
   MENUITEM "&...", MNID_EDIT_ANNOTATE
 }
 POPUP "&" {
   MENUITEM "&...", MNID_BKMK_DEFINE
 }
43 44
 POPUP "&" {
   POPUP	"  "
45
   BEGIN
46 47 48
     MENUITEM " ",	MNID_OPTS_HELP_DEFAULT
     MENUITEM "",	MNID_OPTS_HELP_VISIBLE
     MENUITEM " ",	MNID_OPTS_HELP_NONVISIBLE
49
  END
50 51
  MENUITEM "",		MNID_OPTS_HISTORY
  POPUP    ""
52
  BEGIN
53 54 55
    MENUITEM "",		MNID_OPTS_FONTS_SMALL
    MENUITEM "",    	MNID_OPTS_FONTS_NORMAL
    MENUITEM "",     	MNID_OPTS_FONTS_LARGE
56
  END
57
  MENUITEM "  ",	MNID_OPTS_SYSTEM_COLORS
58
 }
59 60 61 62 63 64 65 66 67 68 69
 POPUP "&" {
   MENUITEM " & ", MNID_HELP_HELPON
   MENUITEM " &", MNID_HELP_HELPTOP
   MENUITEM SEPARATOR
   MENUITEM "&...", MNID_HELP_ABOUT
#ifdef WINELIB
   MENUITEM "& Wine", MNID_HELP_WINE
#endif
 }
}

70 71 72 73 74 75 76 77
IDD_INDEX DIALOG DISCARDABLE 0, 0, 200, 190 LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
FONT 8, "MS Shell Dlg"
CAPTION ""
{
    LISTBOX IDC_INDEXLIST, 10, 10, 180, 150, LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_BORDER
}

78 79 80 81 82 83 84 85 86
/* Strings */
STRINGTABLE DISCARDABLE LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
{
STID_WINE_HELP, 	" WINE"
STID_WHERROR, 		""
STID_WARNING,  		""
STID_INFO,  		""
STID_NOT_IMPLEMENTED, 	" "
STID_HLPFILE_ERROR_s, 	"     `%s'"
87
STID_INDEX, 		"&"
88
STID_CONTENTS,		""
89 90 91
STID_BACK, 		"&"
STID_ALL_FILES, 	"  (*.*)"
STID_HELP_FILES_HLP, 	"  (*.hlp)"
92
STID_FILE_NOT_FOUND_s	"   '%s'.      ?"
93
STID_NO_RICHEDIT	"   richedit"
94
STID_PSH_INDEX,		": "
95
}
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118

CONTEXT_MENU MENU LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
BEGIN
	POPUP ""
	BEGIN
		MENUITEM "...",       MNID_CTXT_ANNOTATE
		MENUITEM "",                MNID_CTXT_COPY
		MENUITEM "...",            MNID_CTXT_PRINT
		POPUP    ""
		BEGIN
			MENUITEM "",       MNID_CTXT_FONTS_SMALL
			MENUITEM "",      MNID_CTXT_FONTS_NORMAL
			MENUITEM "",       MNID_CTXT_FONTS_LARGE
		END
		POPUP   "  "
		BEGIN
			MENUITEM " ",     MNID_CTXT_HELP_DEFAULT
			MENUITEM "",     MNID_CTXT_HELP_VISIBLE
			MENUITEM " ", MNID_CTXT_HELP_NONVISIBLE
		END
		MENUITEM "  ",   MNID_CTXT_SYSTEM_COLORS
	END
END