blob: a3df2e7242e2d2337e460b2899eacd23807aefca [file] [log] [blame]
Hans Leidekker5474ad82003-10-27 22:03:28 +00001/*
2 * WineMine (Dutch resources)
3 *
4 * Copyright 2003 Hans Leidekker
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21LANGUAGE LANG_DUTCH, SUBLANG_DEFAULT
22
23STRINGTABLE {
24 IDS_APPNAME, "WineMine"
Jacek Cabanecff61c2004-08-06 19:00:08 +000025 IDS_NOBODY, "Nobody"
Hans Leidekker5474ad82003-10-27 22:03:28 +000026}
27
28MENU_WINEMINE MENU DISCARDABLE
29{
30 POPUP "&Opties" {
Oleg Prokhorovdbcc37b2004-03-01 23:13:30 +000031 MENUITEM "&Nieuw spel\tF2", IDM_NEW
Hans Leidekker5474ad82003-10-27 22:03:28 +000032 MENUITEM SEPARATOR
33 MENUITEM "&Markeer vraag", IDM_MARKQ
34 MENUITEM SEPARATOR
35 MENUITEM "&Beginner", IDM_BEGINNER
36 MENUITEM "&Gevorderde", IDM_ADVANCED
37 MENUITEM "&Expert", IDM_EXPERT
38 MENUITEM "Aa&ngepast spel", IDM_CUSTOM
39 MENUITEM SEPARATOR
Oleg Prokhorovdbcc37b2004-03-01 23:13:30 +000040 MENUITEM "&Afsluiten\tAlt+X", IDM_EXIT
Hans Leidekker5474ad82003-10-27 22:03:28 +000041 }
42 POPUP "&Info" {
43 MENUITEM "&Snelste tijden", IDM_TIMES
44 MENUITEM "&Info", IDM_ABOUT
45 }
46}
47
48DLG_TIMES DIALOG DISCARDABLE 0, 0, 160, 80
49STYLE DS_MODALFRAME | DS_3DLOOK |
50 WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP
51CAPTION "Snelste tijden"
52{
53 GROUPBOX "Snelste tijden", IDIGNORE, 10, 10, 140, 45
54 LTEXT "Beginner", IDIGNORE, 20, 20, 40, 8
55 LTEXT "Gevorderde", IDIGNORE, 20, 30, 40, 8
56 LTEXT "Expert", IDIGNORE, 20, 40, 40, 8
57 LTEXT "999", IDC_TIME1, 70, 20, 15, 8
58 LTEXT "999", IDC_TIME2, 70, 30, 15, 8
59 LTEXT "999", IDC_TIME3, 70, 40, 15, 8
60 LTEXT "", IDC_NAME1, 90, 20, 55, 8
61 LTEXT "", IDC_NAME2, 90, 30, 55, 8
62 LTEXT "", IDC_NAME3, 90, 40, 55, 8
63 DEFPUSHBUTTON "OK", IDOK, 55, 60, 50, 15
64}
65
66DLG_CONGRATS DIALOG DISCARDABLE 0, 0, 160, 60
67STYLE DS_MODALFRAME | DS_3DLOOK |
68 WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP
69CAPTION "Gefeliciteerd!"
70{
71 LTEXT "Voer uw naam in", IDIGNORE, 10, 10, 150, 10
72 EDITTEXT IDC_EDITNAME, 25, 20, 110, 12
73 DEFPUSHBUTTON "OK", IDOK, 60, 40, 40, 15
74}
75
76DLG_CUSTOM DIALOG DISCARDABLE 0, 0, 100, 100
77STYLE DS_MODALFRAME | DS_3DLOOK |
78 WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP
79CAPTION "Aangepast spel"
80{
81 LTEXT "Rijen", IDIGNORE, 5, 5, 30, 10
82 LTEXT "Kolommen", IDIGNORE, 5, 35, 30, 10
83 LTEXT "Mijnen", IDIGNORE, 5, 65, 30, 10
84 EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER
85 EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER
86 EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER
87 DEFPUSHBUTTON "OK", IDOK, 40, 30, 50, 15
88 PUSHBUTTON "Annuleren", IDCANCEL, 40, 50, 50, 15
89}
90
91DLG_ABOUT DIALOG DISCARDABLE 0, 0, 160, 80
92STYLE DS_MODALFRAME | DS_3DLOOK |
93 WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP
94CAPTION "About"
95{
96 LTEXT "Winemine", IDIGNORE, 10, 10, 50, 10
97 LTEXT "Copyright 2000, Joshua Thielen", IDIGNORE, 35, 25, 115, 10
Richard Cohenf9026f42004-09-22 19:13:29 +000098 LTEXT "dit programma valt onder de LGPL", IDIGNORE, 35, 35, 115, 10
Hans Leidekker5474ad82003-10-27 22:03:28 +000099 ICON "WINEMINE", IDIGNORE, 10, 25, 20, 20
100 DEFPUSHBUTTON "OK", IDOK, 50, 60, 60, 15
101}