xref: /reactos/base/applications/winhlp32/lang/Da.rc (revision 84ccccab)
1/*
2 * Help Viewer
3 *
4 * Copyright 1997 Henrik Olsen
5 * Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
6 * Copyright 2008 Jens Albretsen<jens@albretsen.dk>
7 *           2010 Thomas Larsen
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#pragma code_page(65001)
25
26LANGUAGE LANG_DANISH, SUBLANG_DEFAULT
27
28MAIN_MENU MENU
29{
30 POPUP "&Filer" {
31  MENUITEM "Å&ben...", MNID_FILE_OPEN
32  MENUITEM SEPARATOR
33  MENUITEM "&Udskriv emne", MNID_FILE_PRINT
34  MENUITEM "&Indstil printer", MNID_FILE_SETUP
35   MENUITEM SEPARATOR
36  MENUITEM "&Afslut", MNID_FILE_EXIT
37 }
38 POPUP "&Rediger" {
39   MENUITEM "K&opier...", MNID_EDIT_COPYDLG
40   MENUITEM SEPARATOR
41   MENUITEM "&Anmærk...", MNID_EDIT_ANNOTATE
42 }
43 POPUP "Bog&mærke" {
44   MENUITEM "&Definer...", MNID_BKMK_DEFINE
45 }
46 POPUP "&Options" {
47  MENUITEM "Altid &øverst", MNID_HELP_HELPTOP
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 }
56 POPUP "&Hjælp" {
57   MENUITEM "&Brug af Hjælp", MNID_HELP_HELPON
58   MENUITEM "&Information...", MNID_HELP_ABOUT
59 }
60}
61
62CONTEXT_MENU MENU
63BEGIN
64	POPUP ""
65	BEGIN
66		MENUITEM "Notat...",            MNID_CTXT_ANNOTATE
67		MENUITEM "Kopier",              MNID_CTXT_COPY
68		MENUITEM "Udskriv...",          MNID_CTXT_PRINT
69		POPUP    "Skrifttype"
70		BEGIN
71			MENUITEM "Lille",       MNID_CTXT_FONTS_SMALL
72			MENUITEM "Normal",      MNID_CTXT_FONTS_NORMAL
73			MENUITEM "Stor",        MNID_CTXT_FONTS_LARGE
74		END
75	END
76END
77
78STRINGTABLE
79{
80STID_WINE_HELP, 	"ReactOS Hjælp"
81STID_WHERROR, 		"FEJL"
82STID_WARNING,  		"ADVARSEL"
83STID_INFO,  		"Information"
84STID_NOT_IMPLEMENTED, 	"Ikke implementeret"
85STID_HLPFILE_ERROR_s, 	"Fejl ved indlæsning af filen `%s'"
86STID_INDEX, 		"&Indhold"
87STID_CONTENTS,		"Summary"
88STID_BACK, 		"&Tilbage"
89STID_ALL_FILES, 	"Alle filer (*.*)"
90STID_HELP_FILES_HLP, 	"Hjælpe filer (*.hlp)"
91STID_FILE_NOT_FOUND_s	"Kan ikke finde '%s'. Vil du selv finde filen?"
92STID_NO_RICHEDIT	"Kan ikke finde en 'richedit' implementering... Afbryder"
93STID_PSH_INDEX,		"Help topics: "
94}
95
96IDD_INDEX DIALOGEX 0, 0, 200, 190
97STYLE DS_SHELLFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
98FONT 8, "MS Shell Dlg"
99CAPTION "Index"
100{
101    LISTBOX IDC_INDEXLIST, 10, 10, 180, 150, LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_BORDER
102}
103
104IDD_SEARCH DIALOGEX 0, 0, 200, 190
105STYLE DS_SHELLFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
106FONT 8, "MS Shell Dlg"
107CAPTION "Søg"
108{
109    LTEXT  "Er ikke blevet implementeret endnu", -1, 10, 10, 180, 150
110}
111