winhlp32: Update Swedish translation.
[wine] / programs / winhlp32 / Sv.rc
1 /*
2  * Help Viewer
3  *
4  * Copyright 1996 Ulrich Schmid
5  * Swedish language by Karl Backström <karl_b@geocities.com>
6  * Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
7  * Copyright 2007, 2008 Daniel Nylander <po@danielnylander.se>
8  * Copyright 2009 Anders Jonsson
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with this library; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23  */
24
25 /* Menu */
26
27 MAIN_MENU MENU LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
28 {
29  POPUP "&Arkiv" {
30   MENUITEM "&Öppna", MNID_FILE_OPEN
31   MENUITEM SEPARATOR
32   MENUITEM "&Skriv ut", MNID_FILE_PRINT
33   MENUITEM "Skrivar&konfiguration...", MNID_FILE_SETUP
34    MENUITEM SEPARATOR
35   MENUITEM "A&vsluta", MNID_FILE_EXIT
36  }
37  POPUP "R&edigera" {
38    MENUITEM "&Kopiera...", MNID_EDIT_COPYDLG
39    MENUITEM SEPARATOR
40    MENUITEM "&Kommentera...", MNID_EDIT_ANNOTATE
41  }
42  POPUP "&Bokmärke" {
43    MENUITEM "&Definiera...", MNID_BKMK_DEFINE
44  }
45  POPUP "A&lternativ" {
46    POPUP        "Hjälpen alltid synlig"
47    BEGIN
48      MENUITEM "Standard",       MNID_OPTS_HELP_DEFAULT
49      MENUITEM "Synlig", MNID_OPTS_HELP_VISIBLE
50      MENUITEM "Inte synlig",    MNID_OPTS_HELP_NONVISIBLE
51   END
52   MENUITEM "Historik",          MNID_OPTS_HISTORY
53   POPUP    "Typsnitt"
54   BEGIN
55     MENUITEM "Litet",           MNID_OPTS_FONTS_SMALL
56     MENUITEM "Normalt",         MNID_OPTS_FONTS_NORMAL
57     MENUITEM "Stort",           MNID_OPTS_FONTS_LARGE
58   END
59   MENUITEM "Använd systemfärger",       MNID_OPTS_SYSTEM_COLORS
60  }
61  POPUP "&Hjälp" {
62    MENUITEM "Hjälp &för hjälp", MNID_HELP_HELPON
63    MENUITEM "Alltid &överst", MNID_HELP_HELPTOP
64    MENUITEM SEPARATOR
65    MENUITEM "&Info...", MNID_HELP_ABOUT
66 #ifdef WINELIB
67    MENUITEM "&Om Wine", MNID_HELP_WINE
68 #endif
69  }
70 }
71
72 IDD_INDEX DIALOG DISCARDABLE 0, 0, 200, 190 LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
73 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
74 FONT 8, "MS Shell Dlg"
75 CAPTION "Index"
76 {
77     LISTBOX IDC_INDEXLIST, 10, 10, 180, 150, LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_BORDER
78 }
79
80 IDD_SEARCH DIALOG DISCARDABLE 0, 0, 200, 190 LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
81 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
82 FONT 8, "MS Shell Dlg"
83 CAPTION "Sök"
84 {
85     LTEXT  "Inte implementerat ännu", -1, 10, 10, 180, 150
86 }
87
88 /* Strings */
89 STRINGTABLE DISCARDABLE LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
90 {
91 STID_WINE_HELP,         "Wine Hjälp"
92 STID_WHERROR,           "FEL"
93 STID_WARNING,           "VARNING"
94 STID_INFO,              "Information"
95 STID_NOT_IMPLEMENTED,   "Inte implementerat"
96 STID_HLPFILE_ERROR_s,   "Fel vid läsning av hjälpfilen `%s'"
97 STID_INDEX,             "&Innehåll"
98 STID_CONTENTS,          "Sammandrag"
99 STID_BACK,              "&Bakåt"
100 STID_ALL_FILES,         "Alla filer (*.*)"
101 STID_HELP_FILES_HLP,    "Hjälpfiler (*.hlp)"
102 STID_FILE_NOT_FOUND_s   "Kan inte hitta '%s'. Vill du söka efter denna fil?"
103 STID_NO_RICHEDIT        "Kan inte hitta en implementation av richedit... Avslutar"
104 STID_PSH_INDEX,         "Hjälprubriker: "
105 }
106
107 CONTEXT_MENU MENU LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
108 BEGIN
109     POPUP ""
110     BEGIN
111         MENUITEM "Kommentar...",        MNID_CTXT_ANNOTATE
112         MENUITEM "Kopiera",              MNID_CTXT_COPY
113         MENUITEM "Skriv ut...",         MNID_CTXT_PRINT
114         POPUP    "Typsnitt"
115         BEGIN
116             MENUITEM "Litet",       MNID_CTXT_FONTS_SMALL
117             MENUITEM "Normalt",      MNID_CTXT_FONTS_NORMAL
118             MENUITEM "Stort",        MNID_CTXT_FONTS_LARGE
119         END
120         POPUP   "Hjälp alltid synlig"
121         BEGIN
122             MENUITEM "Standard",     MNID_CTXT_HELP_DEFAULT
123             MENUITEM "Synlig",       MNID_CTXT_HELP_VISIBLE
124             MENUITEM "Ej synlig",  MNID_CTXT_HELP_NONVISIBLE
125         END
126         MENUITEM "Använd systemfärger",   MNID_CTXT_SYSTEM_COLORS
127     END
128 END