winefile: Don't parse colons as stream separators when splitting paths.
[wine] / programs / winefile / winefile.rc
1 /*
2  * Copyright 2000 Martin Fuchs
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #include "resource.h"
20
21 LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
22
23 IDM_WINEFILE MENU
24 {
25     POPUP "&File"  {
26         MENUITEM "&Open\tEnter",                ID_ACTIVATE
27         MENUITEM "&Move...\tF7",                ID_FILE_MOVE
28         MENUITEM "&Copy...\tF8",                ID_FILE_COPY
29         MENUITEM "&Delete\tDel",                ID_FILE_DELETE
30         MENUITEM "Re&name...",                  109
31         MENUITEM "Propert&ies\tAlt+Enter",   ID_EDIT_PROPERTIES
32         MENUITEM SEPARATOR
33         MENUITEM "&Run...",                     ID_RUN
34         MENUITEM SEPARATOR
35         MENUITEM "Cr&eate Directory...",        111
36         MENUITEM SEPARATOR
37 #ifndef _NO_EXTENSIONS
38         MENUITEM "E&xit\tAlt+X",                ID_FILE_EXIT
39 #else
40         MENUITEM "E&xit",                       ID_FILE_EXIT
41 #endif
42     }
43
44     POPUP "&Disk"  {
45         MENUITEM "Connect &Network Drive...",      ID_CONNECT_NETWORK_DRIVE
46         MENUITEM "&Disconnect Network Drive",   ID_DISCONNECT_NETWORK_DRIVE
47     }
48
49     POPUP "&View"  {
50         MENUITEM "Sp&lit",                      ID_VIEW_SPLIT
51         MENUITEM SEPARATOR
52         MENUITEM "&Name",                       ID_VIEW_NAME
53         MENUITEM "&All File Details",           ID_VIEW_ALL_ATTRIBUTES, CHECKED
54         MENUITEM SEPARATOR
55         MENUITEM "&Sort by Name",               ID_VIEW_SORT_NAME
56         MENUITEM "Sort &by Type",               ID_VIEW_SORT_TYPE
57         MENUITEM "Sort by Si&ze",               ID_VIEW_SORT_SIZE
58         MENUITEM "Sort by &Date",               ID_VIEW_SORT_DATE
59         MENUITEM SEPARATOR
60         MENUITEM "Filter by&...",               ID_VIEW_FILTER
61     }
62
63     POPUP "&Options"  {
64         MENUITEM "&Font...",                    ID_SELECT_FONT
65         MENUITEM SEPARATOR
66         MENUITEM "&Toolbar",                    ID_VIEW_TOOL_BAR, CHECKED
67         MENUITEM "&Drivebar",                   ID_VIEW_DRIVE_BAR, CHECKED
68         MENUITEM "&Status Bar",                 ID_VIEW_STATUSBAR, CHECKED
69 #ifndef _NO_EXTENSIONS
70         MENUITEM "F&ull Screen\tCtrl+Shift+S",  ID_VIEW_FULLSCREEN
71 #endif
72         MENUITEM SEPARATOR
73         MENUITEM "&Save settings on exit",      ID_VIEW_SAVESETTINGS
74     }
75
76     POPUP "&Window"  {
77         MENUITEM "New &Window",                 ID_WINDOW_NEW
78         MENUITEM "Cascading\tCtrl+F5",          ID_WINDOW_CASCADE
79         MENUITEM "Tile &Horizontally",          ID_WINDOW_TILE_HORZ
80         MENUITEM "Tile &Vertically\tCtrl+F4",   ID_WINDOW_TILE_VERT
81         MENUITEM "Arrange &Icons",              ID_WINDOW_ARRANGE
82         MENUITEM "&Refresh\tF5",                ID_REFRESH
83     }
84
85     POPUP "&Help"  {
86         MENUITEM "&Contents\tF1",               ID_HELP
87         MENUITEM "&About Wine File",            ID_ABOUT
88     }
89 }
90
91 STRINGTABLE
92 {
93     IDS_FONT_SEL_DLG_NAME   "Applying font settings"
94     IDS_FONT_SEL_ERROR      "Error while selecting new font."
95 }
96
97 STRINGTABLE
98 {
99     IDS_WINEFILE            "Wine File Manager"
100     IDS_ERROR               "Error"
101     IDS_ROOT_FS             "root fs"
102     IDS_UNIXFS              "unixfs"
103     IDS_DESKTOP             "#msgctxt#display name#Desktop"
104     IDS_SHELL               "Shell"
105     IDS_NO_IMPL             "Not yet implemented"
106     IDS_WINE_FILE           "Wine File"
107 }
108
109 STRINGTABLE
110 {
111     IDS_COL_NAME            "Name"
112     IDS_COL_SIZE            "Size"
113     IDS_COL_CDATE           "CDate"
114     IDS_COL_ADATE           "ADate"
115     IDS_COL_MDATE           "MDate"
116     IDS_COL_IDX             "Index/Inode"
117     IDS_COL_LINKS           "Links"
118     IDS_COL_ATTR            "Attributes"
119     IDS_COL_SEC             "Security"
120
121     IDS_FREE_SPACE_FMT      "%s of %s free"
122 }
123
124 LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
125
126 /* @makedep: winefile.ico */
127 IDI_WINEFILE ICON winefile.ico
128
129 /* @makedep: toolbar.bmp */
130 IDB_TOOLBAR BITMAP toolbar.bmp
131
132 /* @makedep: drivebar.bmp */
133 IDB_DRIVEBAR BITMAP drivebar.bmp
134
135 /* @makedep: images.bmp */
136 IDB_IMAGES BITMAP images.bmp