xref: /aoo41x/main/svtools/source/control/ctrlbox.src (revision cdf0e10c)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27#include <svtools/svtools.hrc>
28
29#ifndef IMAGE_STDBTN_COLOR
30#define IMAGE_STDBTN_COLOR Color { Red = 0xFFFF; Green = 0x0000; Blue = 0xFFFF; }
31#endif
32
33
34IMAGE RID_IMG_SCALABLEFONT
35{
36	ImageBitmap = Bitmap { File = "scalfont.bmp" ; };
37	MaskColor = IMAGE_STDBTN_COLOR ;
38};
39
40IMAGE RID_IMG_SCALABLEFONT_HC
41{
42	ImageBitmap = Bitmap { File = "scalfont_h.bmp" ; };
43	MaskColor = IMAGE_STDBTN_COLOR ;
44};
45
46IMAGE RID_IMG_PRINTERFONT
47{
48	ImageBitmap = Bitmap { File = "prnfont.bmp" ; };
49	MaskColor = IMAGE_STDBTN_COLOR ;
50};
51
52IMAGE RID_IMG_PRINTERFONT_HC
53{
54	ImageBitmap = Bitmap { File = "prnfont_h.bmp" ; };
55	MaskColor = IMAGE_STDBTN_COLOR ;
56};
57
58IMAGE RID_IMG_BITMAPFONT
59{
60	ImageBitmap = Bitmap { File = "bmpfont.bmp" ; };
61	MaskColor = IMAGE_STDBTN_COLOR ;
62};
63
64IMAGE RID_IMG_BITMAPFONT_HC
65{
66	ImageBitmap = Bitmap { File = "bmpfont_h.bmp" ; };
67	MaskColor = IMAGE_STDBTN_COLOR ;
68};
69
70String STR_SVT_AUTOMATIC_COLOR
71{
72	Text [ en-US ] = "Automatic";
73};
74
75/*
76 * ressources for CollatorRessource / CollatorRessourceData resp.
77 */
78
79String STR_SVT_COLLATE_ALPHANUMERIC
80{
81	/* alphanumeric sorting algorithm */
82	Text [ en-US ] = "Alphanumeric";
83};
84
85String STR_SVT_COLLATE_NORMAL
86{
87	/* default or normal sorting algorithm */
88	Text [ en-US ] = "Normal";
89};
90
91String STR_SVT_COLLATE_CHARSET
92{
93	/* default or normal sorting algorithm */
94	Text [ en-US ] = "Character set";
95};
96
97String STR_SVT_COLLATE_DICTIONARY
98{
99	/* german dictionary word order / sorting */
100	Text [ en-US ] = "Dictionary";
101};
102
103String STR_SVT_COLLATE_PINYIN
104{
105	/* chinese sorting algorithm */
106	Text [ en-US ] = "Pinyin";
107};
108
109String STR_SVT_COLLATE_STROKE
110{
111	/* chinese sorting algorithm */
112	Text [ en-US ] = "Stroke";
113};
114
115String STR_SVT_COLLATE_RADICAL
116{
117	/* chinese sorting algorithm */
118	Text [ en-US ] = "Radical";
119};
120
121String STR_SVT_COLLATE_UNICODE
122{
123	/* sorting according to the unicode code point of the character */
124	Text [ en-US ] = "Unicode";
125};
126
127String STR_SVT_COLLATE_ZHUYIN
128{
129	/* chinese sorting algorithm */
130	Text [ en-US ] = "Zhuyin";
131};
132
133String STR_SVT_COLLATE_PHONEBOOK
134{
135	/* phone book sorting algorithm. e.g. German */
136	Text [ en-US ] = "Phone book";
137};
138
139String STR_SVT_COLLATE_PHONETIC_F
140{
141    Text [ en-US ] = "Phonetic (alphanumeric first)";
142};
143
144String STR_SVT_COLLATE_PHONETIC_L
145{
146    Text [ en-US ] = "Phonetic (alphanumeric last)";
147};
148
149String STR_SVT_INDEXENTRY_ALPHANUMERIC
150{
151	/* alphanumeric indexentry algorithm */
152    Text [ en-US ] = "Alphanumeric";
153};
154
155String STR_SVT_INDEXENTRY_DICTIONARY
156{
157	/* korean dictionary indexentry algorithm */
158    Text [ en-US ] = "Dictionary";
159};
160
161String STR_SVT_INDEXENTRY_PINYIN
162{
163	/* chinese sorting algorithm */
164    Text [ en-US ] = "Pinyin";
165};
166
167String STR_SVT_INDEXENTRY_RADICAL
168{
169	/* chinese indexentry algorithm */
170    Text [ en-US ] = "Radical";
171};
172
173String STR_SVT_INDEXENTRY_STROKE
174{
175	/* chinese indexentry algorithm */
176    Text [ en-US ] = "Stroke";
177};
178
179String STR_SVT_INDEXENTRY_ZHUYIN
180{
181	/* chinese indexentry algorithm */
182    Text [ en-US ] = "Zhuyin";
183};
184
185String STR_SVT_INDEXENTRY_PHONETIC_FS
186{
187    Text [ en-US ] = "Phonetic (alphanumeric first, grouped by syllables)";
188};
189
190String STR_SVT_INDEXENTRY_PHONETIC_FC
191{
192    Text [ en-US ] = "Phonetic (alphanumeric first, grouped by consonants)";
193};
194
195String STR_SVT_INDEXENTRY_PHONETIC_LS
196{
197    Text [ en-US ] = "Phonetic (alphanumeric last, grouped by syllables)";
198};
199
200String STR_SVT_INDEXENTRY_PHONETIC_LC
201{
202    Text [ en-US ] = "Phonetic (alphanumeric last, grouped by consonants)";
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
230
231
232
233