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