1/*
2 * WineMine
3 * English Language Support
4 *
5 * Copyright 2000 Joshua Thielen
6 * Copyright 2003 Marcelo Duarte
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 */
22
23LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
24
25STRINGTABLE BEGIN
26     IDS_APPNAME, "WineMine"
27     IDS_NOBODY,  "Nobody"
28     IDS_ABOUT,   "Copyright 2000 Joshua Thielen"
29END
30
31MENU_WINEMINE MENU
32BEGIN
33    POPUP "&Options" BEGIN
34        MENUITEM "&New\tF2",       IDM_NEW
35        MENUITEM SEPARATOR
36        MENUITEM "&Mark Question", IDM_MARKQ
37        MENUITEM SEPARATOR
38        MENUITEM "&Beginner",      IDM_BEGINNER
39        MENUITEM "&Advanced",      IDM_ADVANCED
40        MENUITEM "&Expert",        IDM_EXPERT
41        MENUITEM "&Custom...",     IDM_CUSTOM
42        MENUITEM SEPARATOR
43        MENUITEM "E&xit\tAlt+X",   IDM_EXIT
44    END
45    POPUP "&Info" BEGIN
46        MENUITEM "&Fastest Times...", IDM_TIMES
47        MENUITEM "&About",         IDM_ABOUT
48    END
49END
50
51DLG_TIMES DIALOGEX 0, 0, 160, 80
52STYLE  DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
53CAPTION "Fastest Times"
54FONT 8, "MS Shell Dlg"
55BEGIN
56    GROUPBOX        "Fastest Times", -1,  10,  10, 140,  45
57    LTEXT           "Beginner",      -1,  20,  20,  40,   8
58    LTEXT           "Advanced",      -1,  20,  30,  40,   8
59    LTEXT           "Expert",        -1,  20,  40,  40,   8
60    LTEXT           "999",          IDC_TIME1,  70,  20,  15,   8
61    LTEXT           "999",          IDC_TIME2,  70,  30,  15,   8
62    LTEXT           "999",          IDC_TIME3,  70,  40,  15,   8
63    LTEXT           "",             IDC_NAME1,  90,  20,  55,   8
64    LTEXT           "",             IDC_NAME2,  90,  30,  55,   8
65    LTEXT           "",             IDC_NAME3,  90,  40,  55,   8
66    DEFPUSHBUTTON   "OK",                IDOK,  55,  60,  50,  15
67END
68
69DLG_CONGRATS DIALOGEX  0, 0, 160, 60
70STYLE  DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
71CAPTION "Congratulations!"
72FONT 8, "MS Shell Dlg"
73BEGIN
74    LTEXT           "Please enter your name", -1,  10,  10, 150,  10
75    EDITTEXT                              IDC_EDITNAME,  25,  20, 110,  12
76    DEFPUSHBUTTON   "OK",                         IDOK,  60,  40,  40,  15
77END
78
79DLG_CUSTOM DIALOGEX  0, 0, 100, 100
80STYLE  DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_SHELLFONT
81CAPTION "Custom Game"
82FONT 8, "MS Shell Dlg"
83BEGIN
84    LTEXT           "Rows",   -1,   5,   5,  30,  10
85    LTEXT           "Cols",   -1,   5,  35,  30,  10
86    LTEXT           "Mines",  -1,   5,  65,  30,  10
87    EDITTEXT              IDC_EDITROWS,   5,  15,  20,  12, ES_NUMBER
88    EDITTEXT              IDC_EDITCOLS,   5,  45,  20,  12, ES_NUMBER
89    EDITTEXT             IDC_EDITMINES,   5,  75,  20,  12, ES_NUMBER
90    DEFPUSHBUTTON   "OK",     IDOK,      40,  30,  50,  15
91    PUSHBUTTON      "Cancel", IDCANCEL,  40,  50,  50,  15
92END
93