blob: 2ad99c12cf91822fcf7c1f4e38d3abf47784edd2 [file] [log] [blame]
Alexandre Julliard65a42162002-06-04 21:29:40 +00001/*
2 * WineFile
3 * English Language Support
4 *
5 * Copyright 2000 Martin Fuchs
6 * Copyright 2002 Steven Edwards
7 * Copyright 2002 Alexandre Julliard
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
24LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
Alexandre Julliard65a42162002-06-04 21:29:40 +000025
26/* Menu */
27
28IDM_WINEFILE MENU FIXED IMPURE
29{
30 POPUP "&File" {
31 MENUITEM "&Open\tEnter" , 101
32 MENUITEM "&Move...\tF7" , 106
33 MENUITEM "&Copy...\tF8" , 107
34 MENUITEM "&In Clipboard...\tF9" , 118
35 MENUITEM "&Delete\tDel" , 108
36 MENUITEM "Re&name..." , 109
37 MENUITEM "Propert&ies...\tAlt+Enter" , ID_EDIT_PROPERTIES
38 MENUITEM SEPARATOR
39 MENUITEM "C&ompress..." , 119
40 MENUITEM "Dec&ompress..." , 120
41 MENUITEM SEPARATOR
42 MENUITEM "&Run..." , ID_EXECUTE
43 MENUITEM "&Print..." , 102
44 MENUITEM "Associate..." , 103
45 MENUITEM SEPARATOR
46 MENUITEM "Cr&eate Directory..." , 111
47 MENUITEM "Searc&h..." , 104
48 MENUITEM "&Select Files..." , 116
49 MENUITEM SEPARATOR
50#ifndef _NO_EXTENSIONS
51 MENUITEM "E&xit\tAlt+X" , ID_FILE_EXIT
52#else
53 MENUITEM "E&xit", ID_FILE_EXIT
54#endif
55 }
56
57 POPUP "&Disk" {
58 MENUITEM "&Copy Disk..." , 201
59 MENUITEM "&Label Disk..." , 202
60 MENUITEM SEPARATOR
61 MENUITEM "&Format Disk..." , 203
62#ifdef _WIN95
Sylvain Petreolled4782612003-06-18 03:20:14 +000063 MENUITEM "&Make System Disk...", -1 /*@@ */
Alexandre Julliard65a42162002-06-04 21:29:40 +000064#endif
65 MENUITEM SEPARATOR
66 MENUITEM "Connect &Network Drive" , 252
67 MENUITEM "&Disconnect Network Drive" , 253
68 MENUITEM SEPARATOR
69 MENUITEM "Share as..." , 254
70 MENUITEM "&Remove Share..." , 255
71 MENUITEM SEPARATOR
72 MENUITEM "&Select Drive..." , 251
73 }
74
75 POPUP "&Directories" {
76 MENUITEM "&Next Level\t+" , 301
77 MENUITEM "Expand &Tree\t*" , 302
78 MENUITEM "Expand &all\tStrg+*" , 303
79 MENUITEM "Collapse &Tree\t-" , 304
80 MENUITEM SEPARATOR
81 MENUITEM "&Mark Childs" , 505
82 }
83
84 POPUP "&View" {
85 MENUITEM "T&ree and Directory" , 413
86 MENUITEM "Tr&ee Only" , 411
87 MENUITEM "Directory &Only" , 412
88 MENUITEM SEPARATOR
89 MENUITEM "Sp&lit" , 414
90 MENUITEM SEPARATOR
91 MENUITEM "&Name" , ID_VIEW_NAME
92 MENUITEM "&All File Details" , ID_VIEW_ALL_ATTRIBUTES, CHECKED
93 MENUITEM "&Partial Details..." , ID_VIEW_SELECTED_ATTRIBUTES
94 MENUITEM SEPARATOR
95 MENUITEM "&Sort by Name" , 404
96 MENUITEM "Sort &by Type" , 405
97 MENUITEM "Sort by Si&ze" , 406
98 MENUITEM "Sort by &Date" , 407
99 MENUITEM SEPARATOR
100 MENUITEM "Sort by &..." , 409
101 }
102
103 POPUP "&Options" {
104 MENUITEM "&Confirmation..." , -1
105 MENUITEM "&Font..." , -1
106 MENUITEM "Customize Tool&bar..." , -1
107 MENUITEM SEPARATOR
108 MENUITEM "&Toolbar" , ID_VIEW_TOOL_BAR, CHECKED
109 MENUITEM "&Drivebar" , ID_VIEW_DRIVE_BAR, CHECKED
110 MENUITEM "&Status Bar" , ID_VIEW_STATUSBAR, CHECKED
111#ifndef _NO_EXTENSIONS
112 MENUITEM "F&ull Screen\tCtrl+Shift+S" , ID_VIEW_FULLSCREEN
113#endif
114 MENUITEM SEPARATOR
Sylvain Petreolled4782612003-06-18 03:20:14 +0000115 MENUITEM "&Minize on run" , -1
116 MENUITEM "&Save settings on exit" , 511
Alexandre Julliard65a42162002-06-04 21:29:40 +0000117 }
118
119
120 POPUP "&Security" {
121 MENUITEM "&Access..." , 605
122 MENUITEM "&Logging..." , 606
123 MENUITEM "&Owner..." , 607
124 }
125
126 POPUP "&Window" {
127 MENUITEM "New &Window" , ID_WINDOW_NEW
128 MENUITEM "Cascading\tCtrl+F5" , ID_WINDOW_CASCADE
129 MENUITEM "Tile &Horizontally" , ID_WINDOW_TILE_HORZ
130 MENUITEM "Tile &Vertically\tCtrl+F4" , ID_WINDOW_TILE_VERT
131#ifndef _NO_EXTENSIONS
132 MENUITEM "Arrange Automatically" , ID_WINDOW_AUTOSORT
133#endif
134 MENUITEM "Arrange &Symbols" , ID_WINDOW_ARRANGE
135 MENUITEM "&Refresh\tF5" , ID_REFRESH
136 }
137
138 POPUP "&?" {
139 MENUITEM "&Help Topics\tF1" , ID_HELP
140 MENUITEM "Help &Search...\tF1" , ID_HELP
141 MENUITEM "&Using Help\tF1" , ID_HELP_USING
142 MENUITEM SEPARATOR
143 POPUP "Info..." {
144 MENUITEM "Info about &Wine..." , ID_ABOUT_WINE
Sylvain Petreolled4782612003-06-18 03:20:14 +0000145/*
146 * MENUITEM "&License..." ID_LICENSE
147 * MENUITEM "&NO WARRANTY" ID_NO_WARRANTY
148 */
Alexandre Julliard65a42162002-06-04 21:29:40 +0000149 }
150 }
151}
152
153
154IDD_EXECUTE DIALOG FIXED IMPURE 15, 13, 210, 63
155STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
156CAPTION "Execute"
157FONT 8, "MS Shell Dlg"
158{
159 CONTROL "", 101, "Static", SS_SIMPLE|SS_NOPREFIX, 3, 6, 162, 10
160 CONTROL "&Command:" , -1, "Static", SS_LEFTNOWORDWRAP|WS_GROUP, 3, 18, 60, 10
161 EDITTEXT 201, 3, 29, 134, 12, ES_AUTOHSCROLL
162 CONTROL "As &Symbol" , 214, "Button", BS_AUTOCHECKBOX|WS_TABSTOP,3, 45, 71, 12
163 DEFPUSHBUTTON "OK" , 1, 158, 6, 47, 14
164 PUSHBUTTON "Cancel" , 2, 158, 23, 47, 14
165 PUSHBUTTON "&Help" , 254, 158, 43, 47, 14
166}