Message box to suggest the user not run wine as root.
[wine] / programs / view / En.rc
1 /*
2  * View
3  * English Language Support
4  *
5  * Copyright 1998 Douglas Ridgway
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
24
25 /*
26  *
27  * Menu
28  *
29  */
30
31 VIEW MENU
32 BEGIN
33     POPUP "&File"
34     BEGIN
35         MENUITEM "&Open",                       IDM_OPEN
36         MENUITEM "E&xit",                       IDM_EXIT
37     END
38     POPUP "&Pan"
39     BEGIN
40       MENUITEM "&Scale to Window",              IDM_SET_EXT_TO_WIN
41       MENUITEM SEPARATOR
42       MENUITEM "&Left",                         IDM_LEFT
43       MENUITEM "&Right",                        IDM_RIGHT
44       MENUITEM "&Up",                           IDM_UP
45       MENUITEM "&Down",                         IDM_DOWN
46     END
47     POPUP "&Info"
48     BEGIN
49         MENUITEM "&Hello",                      IDM_HELLO
50     END
51 END
52
53
54 /*
55  *
56  * Accelerator
57  *
58  */
59
60 VIEW ACCELERATORS
61 BEGIN
62     "Q", IDM_EXIT, VIRTKEY, CONTROL
63 END
64
65
66 /*
67  *
68  * String Table
69  *
70  */
71
72 STRINGTABLE DISCARDABLE
73 BEGIN
74     IDS_APPNAME             "View"
75     IDS_DESCRIPTION         "Regular Metafile Viewer"
76 END