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