Bump version to 5.0-14
[LibreOffice.git] / svtools / source / contnr / fileview.src
blob54119f394d2eef7abe508f30c8c3bf02b0932621
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 ] = "Name";
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" ;
66 String STR_SVT_GB
68     Text [ en-US ] = "GB" ;
71 // Images ---------------------------------------------------------------------
73 Image IMG_SVT_FOLDER
75     ImageBitmap = Bitmap { File = "folder.png" ; };
76     MaskColor = Color { Red = 0xFFFF ; Green = 0x0000 ; Blue = 0xFFFF ; };
79 Image IMG_SVT_FOLDER_OPEN
81     ImageBitmap = Bitmap { File = "folderop.png" ; };
82     MaskColor = Color { Red = 0xFFFF ; Green = 0x0000 ; Blue = 0xFFFF ; };
85 // Menus -----------------------------------------------------------------
87 Menu RID_FILEVIEW_CONTEXTMENU
89     ItemList =
90     {
91         MenuItem
92         {
93             Identifier = MID_FILEVIEW_DELETE ;
94             HelpId = HID_FILEVIEW_MENU_DELETE ;
95             Text [ en-US ] = "~Delete";
96         };
97         MenuItem
98         {
99             Identifier = MID_FILEVIEW_RENAME ;
100             HelpId = HID_FILEVIEW_MENU_RENAME ;
101             Text [ en-US ] = "~Rename";
102         };
103     };
106 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */