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