wscript: Implemented Arguments2_Item.
[wine] / programs / progman / progman.rc
1 /*
2  * Program Manager
3  *
4  * Copyright 1996 Ulrich Schmid
5  * Copyright 2002 Sylvain Petreolle
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 #include "winuser.h"
23 #include "progman.h"
24
25 LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
26
27 MAIN_MENU MENU
28 {
29  POPUP "&File" {
30    MENUITEM "&New...",              PM_NEW
31    MENUITEM "O&pen\tEnter",             PM_OPEN
32    MENUITEM "&Move...\tF7",             PM_MOVE,      GRAYED
33    MENUITEM "&Copy...\tF8",             PM_COPY,      GRAYED
34    MENUITEM "&Delete\tDel",             PM_DELETE
35    MENUITEM "&Properties\tAlt+Enter",   PM_ATTRIBUTES
36    MENUITEM SEPARATOR
37    MENUITEM "&Execute...",          PM_EXECUTE
38    MENUITEM SEPARATOR
39    MENUITEM "E&xit Windows",            PM_EXIT
40  }
41  POPUP "&Options" {
42    MENUITEM "&Arrange automatically",  PM_AUTO_ARRANGE
43    MENUITEM "&Minimize on run",    PM_MIN_ON_RUN
44    MENUITEM "&Save settings on exit", PM_SAVE_SETTINGS
45  }
46  POPUP "&Windows" {
47    MENUITEM "&Overlapped\tShift+F5",       PM_OVERLAP
48    MENUITEM "&Side by side\tShift+F4",  PM_SIDE_BY_SIDE
49    MENUITEM "&Arrange Icons",       PM_ARRANGE
50  }
51  
52 POPUP "&Help" {
53    MENUITEM "&Contents\tF1",            PM_CONTENTS
54    MENUITEM "&About Program Manager",   PM_ABOUT_WINE
55  }
56 }
57
58 STRINGTABLE
59 {
60 IDS_PROGRAM_MANAGER,            "Program Manager"
61 IDS_ERROR,                      "ERROR"
62 IDS_WARNING,                    "WARNING"
63 IDS_INFO,                       "Information"
64 IDS_DELETE,                     "Delete"
65 IDS_DELETE_GROUP_s,             "Delete group `%s'?"
66 IDS_DELETE_PROGRAM_s,           "Delete program `%s'?"
67 IDS_NOT_IMPLEMENTED,            "Not implemented"
68 IDS_FILE_READ_ERROR_s,          "Error reading `%s'."
69 IDS_FILE_WRITE_ERROR_s,         "Error writing `%s'."
70 IDS_GRPFILE_READ_ERROR_s,       "\
71 The group file `%s' cannot be opened.\n\
72 Should it be tried further on?"
73 IDS_OUT_OF_MEMORY,              "Out of memory."
74 IDS_WINHELP_ERROR,              "Help not available."
75 IDS_UNKNOWN_FEATURE_s,          "Unknown feature in %s"
76 IDS_FILE_NOT_OVERWRITTEN_s,     "File `%s' exists. Not overwritten."
77 IDS_SAVE_GROUP_AS_s,            "Save group as `%s to prevent overwriting original files."
78 IDS_NO_HOT_KEY,                 "#msgctxt#hotkey#None"
79 IDS_ALL_FILES,                  "All files (*.*)"
80 IDS_PROGRAMS,                   "Programs"
81 IDS_LIBRARIES_DLL,              "Libraries (*.dll)"
82 IDS_SYMBOL_FILES,               "Icon files"
83 IDS_SYMBOLS_ICO,                "Icons (*.ico)"
84 }
85
86 ACCEL ACCELERATORS
87 {
88 VK_F1,     PM_CONTENTS, VIRTKEY
89 VK_RETURN, PM_ATTRIBUTES, VIRTKEY, ALT
90 }