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 23 24#include "dpcontrol.hrc" 25 26Resource RID_POPUP_FILTER 27{ 28 String STR_MENU_SORT_ASC 29 { 30 Text [ en-US ] = "Sort Ascending" ; 31 }; 32 33 String STR_MENU_SORT_DESC 34 { 35 Text [ en-US ] = "Sort Descending" ; 36 }; 37 38 String STR_MENU_SORT_CUSTOM 39 { 40 Text [ en-US ] = "Custom Sort" ; 41 }; 42 43 String STR_BTN_TOGGLE_ALL 44 { 45 Text [ en-US ] = "All" ; 46 }; 47 48 String STR_BTN_SELECT_CURRENT 49 { 50 Text [ en-US ] = "Show only the current item." ; 51 }; 52 53 String STR_BTN_UNSELECT_CURRENT 54 { 55 Text [ en-US ] = "Hide only the current item." ; 56 }; 57}; 58 59Image RID_IMG_SELECT_CURRENT 60{ 61 ImageBitmap = Bitmap 62 { 63 File = "popup_select_current.png"; 64 }; 65 MaskColor = STD_MASKCOLOR; 66}; 67 68Image RID_IMG_UNSELECT_CURRENT 69{ 70 ImageBitmap = Bitmap 71 { 72 File = "popup_unselect_current.png"; 73 }; 74 MaskColor = STD_MASKCOLOR; 75}; 76