GPU-Calc: remove Alloc_Host_Ptr for clmem of NAN vector
[LibreOffice.git] / svtools / source / contnr / fileview.src
blob79c122e3245bb437860233b34da36efa40e7e166
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  *   Licensed to the Apache Software Foundation (ASF) under one or more
12  *   contributor license agreements. See the NOTICE file distributed
13  *   with this work for additional information regarding copyright
14  *   ownership. The ASF licenses this file to you under the Apache
15  *   License, Version 2.0 (the "License"); you may not use this file
16  *   except in compliance with the License. You may obtain a copy of
17  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
20 #include <svtools/svtools.hrc>
21 #include "fileview.hrc"
22 #include <svtools/helpid.hrc>
24 // strings --------------------------------------------------------------------
26 String STR_SVT_FILEVIEW_COLUMN_TITLE
28     Text [ en-US ] = "Title";
31 String STR_SVT_FILEVIEW_COLUMN_SIZE
33     Text [ en-US ] = "Size";
36 String STR_SVT_FILEVIEW_COLUMN_DATE
38     Text [ en-US ] = "Date modified";
41 String STR_SVT_FILEVIEW_COLUMN_TYPE
43     Text [ en-US ] = "Type";
46 String STR_SVT_FILEVIEW_ERR_MAKEFOLDER
48     Text [ en-US ] = "Could not create the folder %1.";
51 String STR_SVT_BYTES
53     Text [ en-US ] = "Bytes" ;
56 String STR_SVT_KB
58     Text [ en-US ] = "KB" ;
61 String STR_SVT_MB
63     Text [ en-US ] = "MB" ;
67 String STR_SVT_GB
69     Text [ en-US ] = "GB" ;
72 // Images ---------------------------------------------------------------------
74 Image IMG_SVT_FOLDER
76     ImageBitmap = Bitmap { File = "folder.png" ; };
77     MaskColor = Color { Red = 0xFFFF ; Green = 0x0000 ; Blue = 0xFFFF ; };
80 // Menus -----------------------------------------------------------------
82 Menu RID_FILEVIEW_CONTEXTMENU
84     ItemList =
85     {
86         MenuItem
87         {
88             Identifier = MID_FILEVIEW_DELETE ;
89             HelpId = HID_FILEVIEW_MENU_DELETE ;
90             Text [ en-US ] = "~Delete";
91         };
92         MenuItem
93         {
94             Identifier = MID_FILEVIEW_RENAME ;
95             HelpId = HID_FILEVIEW_MENU_RENAME ;
96             Text [ en-US ] = "~Rename";
97         };
98     };
101 ModalDialog DLG_SVT_QUERYDELETE
103     HelpID = "svtools:ModalDialog:DLG_SVT_QUERYDELETE";
104     SVLook = TRUE ;
105     OutputSize = TRUE ;
106     Moveable = TRUE ;
107     Size = MAP_APPFONT ( 221 , 67 ) ;
108     Text [ en-US ] = "Confirm Delete" ;
110     FixedText TXT_ENTRY
111     {
112         NoLabel = TRUE;
113         Pos = MAP_APPFONT ( 6 , 6 ) ;
114         Size = MAP_APPFONT ( 40 , 10 ) ;
115         Text [ en-US ] = "Entry:" ;
116     };
118     FixedText TXT_ENTRYNAME
119     {
120         Pos = MAP_APPFONT ( 52 , 6 ) ;
121         Size = MAP_APPFONT ( 163 , 10 ) ;
122         NoLabel = TRUE ;
123     };
125     FixedText TXT_QUERYMSG
126     {
127         NoLabel = TRUE;
128         WordBreak = TRUE;
129         Pos = MAP_APPFONT ( 6 , 19 ) ;
130         Size = MAP_APPFONT ( 209 , 22 ) ;
131         Text [ en-US ] = "Are you sure you want to delete the selected data?" ;
132     };
134     PushButton BTN_YES
135     {
136         HelpID = "svtools:PushButton:DLG_SVT_QUERYDELETE:BTN_YES";
137         Pos = MAP_APPFONT ( 6 , 47 ) ;
138         Size = MAP_APPFONT ( 50 , 14 ) ;
139         TabStop = TRUE ;
140         DefButton = TRUE ;
141         Text [ en-US ] = "~Delete" ;
142     };
144     PushButton BTN_ALL
145     {
146         HelpID = "svtools:PushButton:DLG_SVT_QUERYDELETE:BTN_ALL";
147         Pos = MAP_APPFONT ( 59 , 47 ) ;
148         Size = MAP_APPFONT ( 50 , 14 ) ;
149         TabStop = TRUE ;
150         Disable = TRUE ;
151         Text [ en-US ] = "Delete ~All" ;
152     };
154     PushButton BTN_NO
155     {
156         HelpID = "svtools:PushButton:DLG_SVT_QUERYDELETE:BTN_NO";
157         Pos = MAP_APPFONT ( 112 , 47 ) ;
158         Size = MAP_APPFONT ( 50 , 14 ) ;
159         TabStop = TRUE ;
160         Text [ en-US ] = "Do ~Not Delete" ;
161     };
163     CancelButton BTN_CANCEL
164     {
165         Pos = MAP_APPFONT ( 165 , 47 ) ;
166         Size = MAP_APPFONT ( 50 , 14 ) ;
167         TabStop = TRUE ;
168     };
171 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */