1 /*
2 * Help Viewer
3 *
4 * Copyright 1996 Ulrich Schmid
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * 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 #include "winhelp_res.h"
22
23 MAIN_MENU MENU LANGUAGE LANG_SLOVAK, SUBLANG_DEFAULT
24 {
25 POPUP "&Súbor" {
26 MENUITEM "&Otvoriť...", MNID_FILE_OPEN
27 MENUITEM SEPARATOR
28 MENUITEM "&Tlačiť", MNID_FILE_PRINT
29 MENUITEM "&Nastavenie tlače...", MNID_FILE_SETUP
30 MENUITEM SEPARATOR
31 MENUITEM "U&končiť", MNID_FILE_EXIT
32 }
33 POPUP "&Upraviť" {
34 MENUITEM "Kopí&rovať...", MNID_EDIT_COPYDLG
35 MENUITEM SEPARATOR
36 MENUITEM "&Skomentovať...", MNID_EDIT_ANNOTATE
37 }
38 POPUP "&Záložka" {
39 MENUITEM "&Definovať...", MNID_BKMK_DEFINE
40 }
41 POPUP "&Options" {
42 POPUP "Help always visible"
43 BEGIN
44 MENUITEM "Default", MNID_OPTS_HELP_DEFAULT
45 MENUITEM "Visible", MNID_OPTS_HELP_VISIBLE
46 MENUITEM "Non visible", MNID_OPTS_HELP_NONVISIBLE
47 END
48 MENUITEM "History", MNID_OPTS_HISTORY
49 POPUP "Fonts"
50 BEGIN
51 MENUITEM "Small", MNID_OPTS_FONTS_SMALL
52 MENUITEM "Normal", MNID_OPTS_FONTS_NORMAL
53 MENUITEM "Large", MNID_OPTS_FONTS_LARGE
54 END
55 MENUITEM "Use system colors", MNID_OPTS_SYSTEM_COLORS
56 }
57 POPUP "&Pomoc" {
58 MENUITEM "Pomoc &na pomoci", MNID_HELP_HELPON
59 MENUITEM "Vždy na &vrchu", MNID_HELP_HELPTOP
60 MENUITEM SEPARATOR
61 MENUITEM "&Info...", MNID_HELP_ABOUT
62 #ifdef WINELIB
63 MENUITEM "O& WINE", MNID_HELP_WINE
64 #endif
65 }
66 }
67
68 /* Strings */
69 STRINGTABLE DISCARDABLE LANGUAGE LANG_SLOVAK, SUBLANG_DEFAULT
70 {
71 STID_WINE_HELP, "WINE Pomoc"
72 STID_WHERROR, "CHYBA"
73 STID_WARNING, "VAROVANIE"
74 STID_INFO, "Informácie"
75 STID_NOT_IMPLEMENTED, "Neimplementované"
76 STID_HLPFILE_ERROR_s, "Chyba počas čítania súboru `%s'"
77 STID_INDEX, "&Obsah"
78 STID_CONTENTS, "Summary"
79 STID_BACK, "&Späť"
80 STID_ALL_FILES, "Všetky súbory (*.*)"
81 STID_HELP_FILES_HLP, "Súbory pomoci (*.hlp)"
82 STID_FILE_NOT_FOUND_s "Cannot find '%s'. Do you want to find this file yourself?"
83 STID_NO_RICHEDIT "Cannot find a richedit implementation... Aborting"
84 STID_PSH_INDEX, "Help topics: "
85 }
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.