update dev300-m57
[ooovba.git] / svtools / source / contnr / fileview.src
blob00628037661d838725d46e8b50a9e562306e3fb0
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  * 
5  * Copyright 2008 by Sun Microsystems, Inc.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * $RCSfile: fileview.src,v $
10  * $Revision: 1.35 $
11  *
12  * This file is part of OpenOffice.org.
13  *
14  * OpenOffice.org is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU Lesser General Public License version 3
16  * only, as published by the Free Software Foundation.
17  *
18  * OpenOffice.org is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU Lesser General Public License version 3 for more details
22  * (a copy is included in the LICENSE file that accompanied this code).
23  *
24  * You should have received a copy of the GNU Lesser General Public License
25  * version 3 along with OpenOffice.org.  If not, see
26  * <http://www.openoffice.org/license.html>
27  * for a copy of the LGPLv3 License.
28  *
29  ************************************************************************/
31  // includes ------------------------------------------------------------------
33 #include <svtools/svtools.hrc>
34 #include "fileview.hrc"
35 #include <svtools/helpid.hrc>
37 // strings --------------------------------------------------------------------
39 String STR_SVT_FILEVIEW_COLUMN_TITLE
41     Text [ en-US ] = "Title";
44 String STR_SVT_FILEVIEW_COLUMN_SIZE
46     Text [ en-US ] = "Size";
49 String STR_SVT_FILEVIEW_COLUMN_DATE
51     Text [ en-US ] = "Date modified";
54 String STR_SVT_FILEVIEW_COLUMN_TYPE
56     Text [ en-US ] = "Type";
59 String STR_SVT_FILEVIEW_ERR_MAKEFOLDER
61     Text [ en-US ] = "Could not create the folder %1.";
64 String STR_SVT_BYTES
66     Text [ en-US ] = "Bytes" ;
69 String STR_SVT_KB
71     Text [ en-US ] = "KB" ;
74 String STR_SVT_MB
76     Text [ en-US ] = "MB" ;
80 String STR_SVT_GB
82     Text [ en-US ] = "GB" ;
85 // Images ---------------------------------------------------------------------
87 Image IMG_SVT_FOLDER
89     ImageBitmap = Bitmap { File = "folder.bmp" ; };
90     MaskColor = Color { Red = 0xFFFF ; Green = 0x0000 ; Blue = 0xFFFF ; };
93 // Menus -----------------------------------------------------------------
95 Menu RID_FILEVIEW_CONTEXTMENU
97     ItemList =
98     {
99         MenuItem
100         {
101             Identifier = MID_FILEVIEW_DELETE ;
102             HelpId = HID_FILEVIEW_MENU_DELETE ;
103             Text [ en-US ] = "~Delete";
104         };
105         MenuItem
106         {
107             Identifier = MID_FILEVIEW_RENAME ;
108             HelpId = HID_FILEVIEW_MENU_RENAME ;
109             Text [ en-US ] = "~Rename";
110         };
111     };
114 ModalDialog DLG_SVT_QUERYDELETE
116     SVLook = TRUE ;
117     OutputSize = TRUE ;
118     Moveable = TRUE ;
119     Size = MAP_APPFONT ( 221 , 67 ) ;
120     Text [ en-US ] = "Confirm Delete" ;
122     FixedText TXT_ENTRY
123     {
124         NoLabel = TRUE;
125         Pos = MAP_APPFONT ( 6 , 6 ) ;
126         Size = MAP_APPFONT ( 40 , 10 ) ;
127         Text [ en-US ] = "Entry:" ;
128     };
130     FixedText TXT_ENTRYNAME
131     {
132         Pos = MAP_APPFONT ( 52 , 6 ) ;
133         Size = MAP_APPFONT ( 163 , 10 ) ;
134         NoLabel = TRUE ;
135     };
137     FixedText TXT_QUERYMSG
138     {
139         NoLabel = TRUE;
140         WordBreak = TRUE;
141         Pos = MAP_APPFONT ( 6 , 19 ) ;
142         Size = MAP_APPFONT ( 209 , 22 ) ;
143         Text [ en-US ] = "Are you sure you want to delete the selected data?" ;
144     };
146     PushButton BTN_YES
147     {
148         Pos = MAP_APPFONT ( 6 , 47 ) ;
149         Size = MAP_APPFONT ( 50 , 14 ) ;
150         TabStop = TRUE ;
151         DefButton = TRUE ;
152         Text [ en-US ] = "~Delete" ;
153     };
155     PushButton BTN_ALL
156     {
157         Pos = MAP_APPFONT ( 59 , 47 ) ;
158         Size = MAP_APPFONT ( 50 , 14 ) ;
159         TabStop = TRUE ;
160         Disable = TRUE ;
161         Text [ en-US ] = "Delete ~All" ;
162     };
164     PushButton BTN_NO
165     {
166         Pos = MAP_APPFONT ( 112 , 47 ) ;
167         Size = MAP_APPFONT ( 50 , 14 ) ;
168         TabStop = TRUE ;
169         Text [ en-US ] = "Do ~Not Delete" ;
170     };
172     CancelButton BTN_CANCEL
173     {
174         Pos = MAP_APPFONT ( 165 , 47 ) ;
175         Size = MAP_APPFONT ( 50 , 14 ) ;
176         TabStop = TRUE ;
177     };