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 <svtools/svtools.hrc> 23 24IMAGE RID_IMG_SCALABLEFONT 25{ 26 ImageBitmap = Bitmap { File = "scalfont.png" ; }; 27}; 28 29IMAGE RID_IMG_SCALABLEFONT_HC 30{ 31 ImageBitmap = Bitmap { File = "scalfont_h.png" ; }; 32}; 33 34IMAGE RID_IMG_PRINTERFONT 35{ 36 ImageBitmap = Bitmap { File = "prnfont.png" ; }; 37}; 38 39IMAGE RID_IMG_PRINTERFONT_HC 40{ 41 ImageBitmap = Bitmap { File = "prnfont_h.png" ; }; 42}; 43 44IMAGE RID_IMG_BITMAPFONT 45{ 46 ImageBitmap = Bitmap { File = "bmpfont.png" ; }; 47}; 48 49IMAGE RID_IMG_BITMAPFONT_HC 50{ 51 ImageBitmap = Bitmap { File = "bmpfont_h.png" ; }; 52}; 53 54String STR_SVT_AUTOMATIC_COLOR 55{ 56 Text [ en-US ] = "Automatic" ; 57}; 58 59/* 60 * resources for CollatorRessource / CollatorRessourceData resp. 61 */ 62 63String STR_SVT_COLLATE_ALPHANUMERIC 64{ 65 /* alphanumeric sorting algorithm */ 66 Text [ en-US ] = "Alphanumeric" ; 67}; 68 69String STR_SVT_COLLATE_NORMAL 70{ 71 /* default or normal sorting algorithm */ 72 Text [ en-US ] = "Normal" ; 73}; 74 75String STR_SVT_COLLATE_CHARSET 76{ 77 /* default or normal sorting algorithm */ 78 Text [ en-US ] = "Character set" ; 79}; 80 81String STR_SVT_COLLATE_DICTIONARY 82{ 83 /* German dictionary word order / sorting */ 84 Text [ en-US ] = "Dictionary" ; 85}; 86 87String STR_SVT_COLLATE_PINYIN 88{ 89 /* Chinese sorting algorithm */ 90 Text [ en-US ] = "Pinyin" ; 91}; 92 93String STR_SVT_COLLATE_STROKE 94{ 95 /* Chinese sorting algorithm */ 96 Text [ en-US ] = "Stroke" ; 97}; 98 99String STR_SVT_COLLATE_RADICAL 100{ 101 /* Chinese sorting algorithm */ 102 Text [ en-US ] = "Radical" ; 103}; 104 105String STR_SVT_COLLATE_UNICODE 106{ 107 /* sorting according to the unicode code point of the character */ 108 Text [ en-US ] = "Unicode" ; 109}; 110 111String STR_SVT_COLLATE_ZHUYIN 112{ 113 /* Chinese sorting algorithm */ 114 Text [ en-US ] = "Zhuyin" ; 115}; 116 117String STR_SVT_COLLATE_PHONEBOOK 118{ 119 /* phone book sorting algorithm. e.g. German */ 120 Text [ en-US ] = "Phone book" ; 121}; 122 123String STR_SVT_COLLATE_PHONETIC_F 124{ 125 Text [ en-US ] = "Phonetic (alphanumeric first)" ; 126}; 127 128String STR_SVT_COLLATE_PHONETIC_L 129{ 130 Text [ en-US ] = "Phonetic (alphanumeric last)" ; 131}; 132 133String STR_SVT_INDEXENTRY_ALPHANUMERIC 134{ 135 /* alphanumeric indexentry algorithm */ 136 Text [ en-US ] = "Alphanumeric" ; 137}; 138 139String STR_SVT_INDEXENTRY_DICTIONARY 140{ 141 /* korean dictionary indexentry algorithm */ 142 Text [ en-US ] = "Dictionary" ; 143}; 144 145String STR_SVT_INDEXENTRY_PINYIN 146{ 147 /* Chinese sorting algorithm */ 148 Text [ en-US ] = "Pinyin" ; 149}; 150 151String STR_SVT_INDEXENTRY_RADICAL 152{ 153 /* Chinese indexentry algorithm */ 154 Text [ en-US ] = "Radical" ; 155}; 156 157String STR_SVT_INDEXENTRY_STROKE 158{ 159 /* Chinese indexentry algorithm */ 160 Text [ en-US ] = "Stroke" ; 161}; 162 163String STR_SVT_INDEXENTRY_ZHUYIN 164{ 165 /* Chinese indexentry algorithm */ 166 Text [ en-US ] = "Zhuyin" ; 167}; 168 169String STR_SVT_INDEXENTRY_PHONETIC_FS 170{ 171 Text [ en-US ] = "Phonetic (alphanumeric first, grouped by syllables)" ; 172}; 173 174String STR_SVT_INDEXENTRY_PHONETIC_FC 175{ 176 Text [ en-US ] = "Phonetic (alphanumeric first, grouped by consonants)" ; 177}; 178 179String STR_SVT_INDEXENTRY_PHONETIC_LS 180{ 181 Text [ en-US ] = "Phonetic (alphanumeric last, grouped by syllables)" ; 182}; 183 184String STR_SVT_INDEXENTRY_PHONETIC_LC 185{ 186 Text [ en-US ] = "Phonetic (alphanumeric last, grouped by consonants)" ; 187}; 188 189// ********************************************************************** EOF 190