new 818051de2c8769029049ce3d36c6b856f47496c9
[wine/hacks.git] / programs / wordpad / Nl.rc
blob389e1df0f424ee50efe4d95248946f183fef7ba1
1 /*
2  * Copyright 2006 by Hans Leidekker
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
19 LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
21 MAINMENU MENU DISCARDABLE 
22 BEGIN
23     POPUP "&Bestand"
24     BEGIN
25         MENUITEM "&Nieuw\tCtrl+N"         ID_FILE_NEW
26         MENUITEM "&Openen...\tCtrl+O",    ID_FILE_OPEN
27         MENUITEM "O&pslaan\tCtrl+S",      ID_FILE_SAVE
28         MENUITEM "Ops&laan als...",       ID_FILE_SAVEAS
29         MENUITEM SEPARATOR
30         MENUITEM "&Afsluiten",    ID_FILE_EXIT
31     END
32     POPUP "Be&werken"
33     BEGIN
34         MENUITEM "&Ongedaan maken\tCtrl+Z",     ID_EDIT_UNDO
35         MENUITEM "O&pnieuw\tCtrl+Y",            ID_EDIT_REDO
36         MENUITEM SEPARATOR
37         MENUITEM "K&nippen\tCtrl+X",            ID_EDIT_CUT
38         MENUITEM "&Kopieren\tCtrl+C",           ID_EDIT_COPY
39         MENUITEM "&Plakken\tCtrl+V",            ID_EDIT_PASTE
40         MENUITEM "&Verwijderen\tDel",           ID_EDIT_CLEAR
41         MENUITEM "&Alles selecteren\tCtrl+A",   ID_EDIT_SELECTALL
42         MENUITEM SEPARATOR
43         MENUITEM "Alleen &lezen",               ID_EDIT_READONLY
44         MENUITEM "&Gewijzigd",                  ID_EDIT_MODIFIED
45         MENUITEM SEPARATOR
46         POPUP "&Extra's"
47         BEGIN
48             MENUITEM "Selectie&informatie",          ID_EDIT_SELECTIONINFO
49             MENUITEM "&Karakterformaat",             ID_EDIT_CHARFORMAT
50             MENUITEM "&Standaard karakterformaat",   ID_EDIT_DEFCHARFORMAT
51             MENUITEM "&Paragraafformaat",            ID_EDIT_PARAFORMAT
52             MENUITEM "&Haal tekst",                  ID_EDIT_GETTEXT
53         END
54     END
55     POPUP "&View"
56     BEGIN
57         MENUITEM "&Toolbar",        ID_TOGGLE_TOOLBAR
58         MENUITEM "&Formatbar",      ID_TOGGLE_FORMATBAR
59         MENUITEM "&Statusbar",      ID_TOGGLE_STATUSBAR
60     END
61     POPUP "&Insert"
62     BEGIN
63         MENUITEM "&Date and time . . .",  ID_DATETIME
64     END
65     POPUP "&Opmaak"
66     BEGIN
67         POPUP "&Achtergrond"
68         BEGIN
69             MENUITEM "&Systeem\tCtrl+1",   ID_BACK_1
70             MENUITEM "&Geeltje\tCtrl+2",   ID_BACK_2
71         END
72         POPUP "&Uitlijning"
73         BEGIN
74             MENUITEM "&Links\tCtrl+L",        ID_ALIGN_LEFT
75             MENUITEM "&Gecentreerd\tCtrl+E",  ID_ALIGN_CENTER
76             MENUITEM "&Rechts\tCtrl+R",       ID_ALIGN_RIGHT
77         END
78     END
79 END
81 IDD_DATETIME DIALOG DISCARDABLE 30, 20, 130, 80
82 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
83 CAPTION "Date and time"
84 FONT 10, "MS Sans Serif"
85 BEGIN
86     LTEXT        "Available formats",0,3,2,100,15
87     LISTBOX      IDC_DATETIME,3,12,80,65,LBS_NOINTEGRALHEIGHT
88     PUSHBUTTON   "&OK",IDOK,87,12,40,12
89     PUSHBUTTON   "&Cancel",IDCANCEL,87,26,40,12
90 END
92 STRINGTABLE DISCARDABLE
93 BEGIN
94     STRING_RICHTEXT_FILES_RTF,  "Rich text format (*.rtf)"
95     STRING_TEXT_FILES_TXT,      "Text files (*.txt)"
96     STRING_ALL_FILES,           "All documents (*.*)"
97 END
99 STRINGTABLE DISCARDABLE
100 BEGIN
101     STRING_DEFAULT_FILENAME,     "Document"
102     STRING_PROMPT_SAVE_CHANGES,  "Save changes to '%s'?"