xref: /trunk/main/sc/source/ui/cctrl/dpcontrol.src (revision 6fd2419af095b9e12baf06e33db2129edf4d719b)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22#include "dpcontrol.hrc"
23
24Resource RID_POPUP_FILTER
25{
26    String STR_MENU_SORT_ASC
27    {
28        Text [ en-US ] = "Sort Ascending" ;
29    };
30
31    String STR_MENU_SORT_DESC
32    {
33        Text [ en-US ] = "Sort Descending" ;
34    };
35
36    String STR_MENU_SORT_CUSTOM
37    {
38        Text [ en-US ] = "Custom Sort" ;
39    };
40
41    String STR_BTN_TOGGLE_ALL
42    {
43        Text [ en-US ] = "All" ;
44    };
45
46    String STR_BTN_SELECT_CURRENT
47    {
48        Text [ en-US ] = "Show only the current item." ;
49    };
50
51    String STR_BTN_UNSELECT_CURRENT
52    {
53        Text [ en-US ] = "Hide only the current item." ;
54    };
55};
56
57Image RID_IMG_SELECT_CURRENT
58{
59    ImageBitmap = Bitmap
60    {
61        File = "popup_select_current.png";
62    };
63};
64
65Image RID_IMG_UNSELECT_CURRENT
66{
67    ImageBitmap = Bitmap
68    {
69        File = "popup_unselect_current.png";
70    };
71};
72
73// ********************************************************************** EOF
74