xref: /trunk/main/svtools/source/control/ctrlbox.src (revision a3cbd3e50c1a12e759959b66e76b58b3aeb2b2af)
13c07ef42SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
33c07ef42SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
43c07ef42SAndrew Rist * or more contributor license agreements.  See the NOTICE file
53c07ef42SAndrew Rist * distributed with this work for additional information
63c07ef42SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
73c07ef42SAndrew Rist * to you under the Apache License, Version 2.0 (the
83c07ef42SAndrew Rist * "License"); you may not use this file except in compliance
93c07ef42SAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
113c07ef42SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
133c07ef42SAndrew Rist * Unless required by applicable law or agreed to in writing,
143c07ef42SAndrew Rist * software distributed under the License is distributed on an
153c07ef42SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
163c07ef42SAndrew Rist * KIND, either express or implied.  See the License for the
173c07ef42SAndrew Rist * specific language governing permissions and limitations
183c07ef42SAndrew Rist * under the License.
19cdf0e10cSrcweir *
203c07ef42SAndrew Rist *************************************************************/
213c07ef42SAndrew Rist
22*c91f27c4Smseidel#include <svtools/svtools.hrc>
23cdf0e10cSrcweir
24cdf0e10cSrcweirIMAGE RID_IMG_SCALABLEFONT
25cdf0e10cSrcweir{
2641f1e1a1Smseidel    ImageBitmap = Bitmap { File = "scalfont.png" ; };
27cdf0e10cSrcweir};
28cdf0e10cSrcweir
29cdf0e10cSrcweirIMAGE RID_IMG_SCALABLEFONT_HC
30cdf0e10cSrcweir{
3141f1e1a1Smseidel    ImageBitmap = Bitmap { File = "scalfont_h.png" ; };
32cdf0e10cSrcweir};
33cdf0e10cSrcweir
34cdf0e10cSrcweirIMAGE RID_IMG_PRINTERFONT
35cdf0e10cSrcweir{
3641f1e1a1Smseidel    ImageBitmap = Bitmap { File = "prnfont.png" ; };
37cdf0e10cSrcweir};
38cdf0e10cSrcweir
39cdf0e10cSrcweirIMAGE RID_IMG_PRINTERFONT_HC
40cdf0e10cSrcweir{
4141f1e1a1Smseidel    ImageBitmap = Bitmap { File = "prnfont_h.png" ; };
42cdf0e10cSrcweir};
43cdf0e10cSrcweir
44cdf0e10cSrcweirIMAGE RID_IMG_BITMAPFONT
45cdf0e10cSrcweir{
4641f1e1a1Smseidel    ImageBitmap = Bitmap { File = "bmpfont.png" ; };
47cdf0e10cSrcweir};
48cdf0e10cSrcweir
49cdf0e10cSrcweirIMAGE RID_IMG_BITMAPFONT_HC
50cdf0e10cSrcweir{
5141f1e1a1Smseidel    ImageBitmap = Bitmap { File = "bmpfont_h.png" ; };
52cdf0e10cSrcweir};
53cdf0e10cSrcweir
54cdf0e10cSrcweirString STR_SVT_AUTOMATIC_COLOR
55cdf0e10cSrcweir{
56cdf0e10cSrcweir    Text [ en-US ] = "Automatic" ;
57cdf0e10cSrcweir};
58cdf0e10cSrcweir
59cdf0e10cSrcweir/*
60*c91f27c4Smseidel * resources for CollatorRessource / CollatorRessourceData resp.
61cdf0e10cSrcweir */
62cdf0e10cSrcweir
63cdf0e10cSrcweirString STR_SVT_COLLATE_ALPHANUMERIC
64cdf0e10cSrcweir{
65cdf0e10cSrcweir    /* alphanumeric sorting algorithm */
66cdf0e10cSrcweir    Text [ en-US ] = "Alphanumeric" ;
67cdf0e10cSrcweir};
68cdf0e10cSrcweir
69cdf0e10cSrcweirString STR_SVT_COLLATE_NORMAL
70cdf0e10cSrcweir{
71cdf0e10cSrcweir    /* default or normal sorting algorithm */
72cdf0e10cSrcweir    Text [ en-US ] = "Normal" ;
73cdf0e10cSrcweir};
74cdf0e10cSrcweir
75cdf0e10cSrcweirString STR_SVT_COLLATE_CHARSET
76cdf0e10cSrcweir{
77cdf0e10cSrcweir    /* default or normal sorting algorithm */
78cdf0e10cSrcweir    Text [ en-US ] = "Character set" ;
79cdf0e10cSrcweir};
80cdf0e10cSrcweir
81cdf0e10cSrcweirString STR_SVT_COLLATE_DICTIONARY
82cdf0e10cSrcweir{
83*c91f27c4Smseidel    /* German dictionary word order / sorting */
84cdf0e10cSrcweir    Text [ en-US ] = "Dictionary" ;
85cdf0e10cSrcweir};
86cdf0e10cSrcweir
87cdf0e10cSrcweirString STR_SVT_COLLATE_PINYIN
88cdf0e10cSrcweir{
89*c91f27c4Smseidel    /* Chinese sorting algorithm */
90cdf0e10cSrcweir    Text [ en-US ] = "Pinyin" ;
91cdf0e10cSrcweir};
92cdf0e10cSrcweir
93cdf0e10cSrcweirString STR_SVT_COLLATE_STROKE
94cdf0e10cSrcweir{
95*c91f27c4Smseidel    /* Chinese sorting algorithm */
96cdf0e10cSrcweir    Text [ en-US ] = "Stroke" ;
97cdf0e10cSrcweir};
98cdf0e10cSrcweir
99cdf0e10cSrcweirString STR_SVT_COLLATE_RADICAL
100cdf0e10cSrcweir{
101*c91f27c4Smseidel    /* Chinese sorting algorithm */
102cdf0e10cSrcweir    Text [ en-US ] = "Radical" ;
103cdf0e10cSrcweir};
104cdf0e10cSrcweir
105cdf0e10cSrcweirString STR_SVT_COLLATE_UNICODE
106cdf0e10cSrcweir{
107cdf0e10cSrcweir    /* sorting according to the unicode code point of the character */
108cdf0e10cSrcweir    Text [ en-US ] = "Unicode" ;
109cdf0e10cSrcweir};
110cdf0e10cSrcweir
111cdf0e10cSrcweirString STR_SVT_COLLATE_ZHUYIN
112cdf0e10cSrcweir{
113*c91f27c4Smseidel    /* Chinese sorting algorithm */
114cdf0e10cSrcweir    Text [ en-US ] = "Zhuyin" ;
115cdf0e10cSrcweir};
116cdf0e10cSrcweir
117cdf0e10cSrcweirString STR_SVT_COLLATE_PHONEBOOK
118cdf0e10cSrcweir{
119cdf0e10cSrcweir    /* phone book sorting algorithm. e.g. German */
120cdf0e10cSrcweir    Text [ en-US ] = "Phone book" ;
121cdf0e10cSrcweir};
122cdf0e10cSrcweir
123cdf0e10cSrcweirString STR_SVT_COLLATE_PHONETIC_F
124cdf0e10cSrcweir{
125cdf0e10cSrcweir    Text [ en-US ] = "Phonetic (alphanumeric first)" ;
126cdf0e10cSrcweir};
127cdf0e10cSrcweir
128cdf0e10cSrcweirString STR_SVT_COLLATE_PHONETIC_L
129cdf0e10cSrcweir{
130cdf0e10cSrcweir    Text [ en-US ] = "Phonetic (alphanumeric last)" ;
131cdf0e10cSrcweir};
132cdf0e10cSrcweir
133cdf0e10cSrcweirString STR_SVT_INDEXENTRY_ALPHANUMERIC
134cdf0e10cSrcweir{
135cdf0e10cSrcweir    /* alphanumeric indexentry algorithm */
136cdf0e10cSrcweir    Text [ en-US ] = "Alphanumeric" ;
137cdf0e10cSrcweir};
138cdf0e10cSrcweir
139cdf0e10cSrcweirString STR_SVT_INDEXENTRY_DICTIONARY
140cdf0e10cSrcweir{
141cdf0e10cSrcweir    /* korean dictionary indexentry algorithm */
142cdf0e10cSrcweir    Text [ en-US ] = "Dictionary" ;
143cdf0e10cSrcweir};
144cdf0e10cSrcweir
145cdf0e10cSrcweirString STR_SVT_INDEXENTRY_PINYIN
146cdf0e10cSrcweir{
147*c91f27c4Smseidel    /* Chinese sorting algorithm */
148cdf0e10cSrcweir    Text [ en-US ] = "Pinyin" ;
149cdf0e10cSrcweir};
150cdf0e10cSrcweir
151cdf0e10cSrcweirString STR_SVT_INDEXENTRY_RADICAL
152cdf0e10cSrcweir{
153*c91f27c4Smseidel    /* Chinese indexentry algorithm */
154cdf0e10cSrcweir    Text [ en-US ] = "Radical" ;
155cdf0e10cSrcweir};
156cdf0e10cSrcweir
157cdf0e10cSrcweirString STR_SVT_INDEXENTRY_STROKE
158cdf0e10cSrcweir{
159*c91f27c4Smseidel    /* Chinese indexentry algorithm */
160cdf0e10cSrcweir    Text [ en-US ] = "Stroke" ;
161cdf0e10cSrcweir};
162cdf0e10cSrcweir
163cdf0e10cSrcweirString STR_SVT_INDEXENTRY_ZHUYIN
164cdf0e10cSrcweir{
165*c91f27c4Smseidel    /* Chinese indexentry algorithm */
166cdf0e10cSrcweir    Text [ en-US ] = "Zhuyin" ;
167cdf0e10cSrcweir};
168cdf0e10cSrcweir
169cdf0e10cSrcweirString STR_SVT_INDEXENTRY_PHONETIC_FS
170cdf0e10cSrcweir{
171cdf0e10cSrcweir    Text [ en-US ] = "Phonetic (alphanumeric first, grouped by syllables)" ;
172cdf0e10cSrcweir};
173cdf0e10cSrcweir
174cdf0e10cSrcweirString STR_SVT_INDEXENTRY_PHONETIC_FC
175cdf0e10cSrcweir{
176cdf0e10cSrcweir    Text [ en-US ] = "Phonetic (alphanumeric first, grouped by consonants)" ;
177cdf0e10cSrcweir};
178cdf0e10cSrcweir
179cdf0e10cSrcweirString STR_SVT_INDEXENTRY_PHONETIC_LS
180cdf0e10cSrcweir{
181cdf0e10cSrcweir    Text [ en-US ] = "Phonetic (alphanumeric last, grouped by syllables)" ;
182cdf0e10cSrcweir};
183cdf0e10cSrcweir
184cdf0e10cSrcweirString STR_SVT_INDEXENTRY_PHONETIC_LC
185cdf0e10cSrcweir{
186cdf0e10cSrcweir    Text [ en-US ] = "Phonetic (alphanumeric last, grouped by consonants)" ;
187cdf0e10cSrcweir};
188cdf0e10cSrcweir
189*c91f27c4Smseidel// ********************************************************************** EOF
190