xref: /trunk/main/svx/source/stbctrls/stbctrls.src (revision ab088861)
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 ---------------------------------------------------------------
25#include <svx/dialogs.hrc>
26#include "helpid.hrc"
27#include "stbctrls.h"
28// pragma ----------------------------------------------------------------
29
30// Strings ---------------------------------------------------------------
31String RID_SVXSTR_INSERT_TEXT
32{
33	// 'Insert' shortened to max. 5 characters
34	Text [ en-US ] = "INSRT" ;
35};
36String RID_SVXSTR_OVERWRITE_TEXT
37{
38	// 'Overwrite' shortened to max. 5 characters
39	Text [ en-US ] = "OVER" ;
40};
41String RID_SVXSTR_SELMODE_STD
42{
43	// 'Standard' shortened to max. 3 characters
44	Text [ en-US ] = "STD" ;
45};
46String RID_SVXSTR_SELMODE_ER
47{
48	// 'Extended' shortened to max. 3 characters
49	Text [ en-US ] = "EXT" ;
50};
51String RID_SVXSTR_SELMODE_ERG
52{
53	// 'Added' shortened to max. 3 characters
54	Text [ en-US ] = "ADD" ;
55};
56
57String RID_SVXSTR_SELMODE_BLK
58{
59	// 'Block' shortened to max. 3 characters
60	Text [ en-US ] = "BLK" ;
61};
62
63String RID_SVXSTR_XMLSEC_SIG_OK
64{
65	Text [ en-US ] = "Digital Signature: The document signature is OK." ;
66};
67
68String RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY
69{
70	Text [ en-US ] = "Digital Signature: The document signature is OK, but the certificates could not be validated." ;
71};
72
73String RID_SVXSTR_XMLSEC_SIG_NOT_OK
74{
75	Text [ en-US ] = "Digital Signature: The document signature does not match the document content. We strongly recommend that you do not trust this document." ;
76};
77
78String RID_SVXSTR_XMLSEC_NO_SIG
79{
80	Text [ en-US ] = "Digital Signature: The document is not signed." ;
81};
82
83String RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG
84{
85	Text [ en-US ] = "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed." ;
86};
87
88// PopupMenu -------------------------------------------------------------
89Menu RID_SVXMNU_ZOOM
90{
91	ItemList =
92	{
93		MenuItem
94		{
95			Identifier = ZOOM_200 ;
96			HelpId = HID_MNU_ZOOM_200 ;
97			Text [ en-US ] = "200 %" ;
98		};
99		MenuItem
100		{
101			Identifier = ZOOM_150 ;
102			HelpId = HID_MNU_ZOOM_150 ;
103			Text [ en-US ] = "150 %" ;
104		};
105		MenuItem
106		{
107			Identifier = ZOOM_100 ;
108			HelpId = HID_MNU_ZOOM_100 ;
109			Text [ en-US ] = "100 %" ;
110		};
111		MenuItem
112		{
113			Identifier = ZOOM_75 ;
114			HelpId = HID_MNU_ZOOM_75 ;
115			Text [ en-US ] = "75 %" ;
116		};
117		MenuItem
118		{
119			Identifier = ZOOM_50 ;
120			HelpId = HID_MNU_ZOOM_50 ;
121			Text [ en-US ] = "50 %" ;
122		};
123		MenuItem
124		{
125			Identifier = ZOOM_OPTIMAL ;
126			HelpId = HID_MNU_ZOOM_OPTIMAL ;
127			Text [ en-US ] = "Optimal" ;
128		};
129		MenuItem
130		{
131			Identifier = ZOOM_PAGE_WIDTH ;
132			HelpId = HID_MNU_ZOOM_PAGE_WIDTH ;
133			Text [ en-US ] = "Page Width" ;
134		};
135		MenuItem
136		{
137			Identifier = ZOOM_WHOLE_PAGE ;
138			HelpId = HID_MNU_ZOOM_WHOLE_PAGE ;
139			Text [ en-US ] = "Entire Page" ;
140		};
141	};
142};
143// Function selection for SvxPosSizeStatusBarControl in Calc
144Menu RID_SVXMNU_PSZ_FUNC
145{
146	ItemList =
147	{
148		MenuItem
149		{
150			Identifier = PSZ_FUNC_AVG ;
151			HelpId = HID_MNU_FUNC_AVG ;
152			Text [ en-US ] = "Average" ;
153		};
154		MenuItem
155		{
156			Identifier = PSZ_FUNC_COUNT2 ;
157			HelpId = HID_MNU_FUNC_COUNT2 ;
158			Text [ en-US ] = "CountA" ;
159		};
160		MenuItem
161		{
162			Identifier = PSZ_FUNC_COUNT ;
163			HelpId = HID_MNU_FUNC_COUNT ;
164			Text [ en-US ] = "Count" ;
165		};
166		MenuItem
167		{
168			Identifier = PSZ_FUNC_MAX ;
169			HelpId = HID_MNU_FUNC_MAX ;
170			Text [ en-US ] = "Maximum" ;
171		};
172		MenuItem
173		{
174			Identifier = PSZ_FUNC_MIN ;
175			HelpId = HID_MNU_FUNC_MIN ;
176			Text [ en-US ] = "Minimum" ;
177		};
178		MenuItem
179		{
180			Identifier = PSZ_FUNC_SUM ;
181			HelpId = HID_MNU_FUNC_SUM ;
182			Text [ en-US ] = "Sum" ;
183		};
184		MenuItem
185		{
186			Identifier = PSZ_FUNC_NONE ;
187			HelpId = HID_MNU_FUNC_NONE ;
188			Text [ en-US ] = "None" ;
189		};
190	};
191};
192Menu RID_SVXMNU_XMLSECSTATBAR
193{
194	ItemList =
195	{
196		MenuItem
197		{
198			Identifier = XMLSEC_CALL ;
199			HelpId = HID_XMLSEC_CALL ;
200			Text [ en-US ] = "Digital Signatures..." ;
201		};
202	};
203};
204
205// Images ----------------------------------------------------------------
206
207Image RID_SVXBMP_POSITION
208{
209	ImageBitmap = Bitmap
210	{
211		File = "sc10223.png" ;
212	};
213};
214Image RID_SVXBMP_SIZE
215{
216	ImageBitmap = Bitmap
217	{
218		File = "sc10224.png" ;
219	};
220};
221Image RID_SVXBMP_SIGNET
222{
223	ImageBitmap = Bitmap
224	{
225		File = "signet_11x16.png" ;
226	};
227};
228Image RID_SVXBMP_SIGNET_BROKEN
229{
230	ImageBitmap = Bitmap
231	{
232		File = "caution_11x16.png" ;
233	};
234};
235Image RID_SVXBMP_SIGNET_NOTVALIDATED
236{
237	ImageBitmap = Bitmap
238	{
239		File = "notcertificate_11x16.png" ;
240	};
241};
242Image RID_SVXBMP_SIGNET_H
243{
244	ImageBitmap = Bitmap
245	{
246		File = "signet_11x16_h.png" ;
247	};
248};
249Image RID_SVXBMP_SIGNET_BROKEN_H
250{
251	ImageBitmap = Bitmap
252	{
253		File = "caution_11x16_h.png" ;
254	};
255};
256Image RID_SVXBMP_SIGNET_NOTVALIDATED_H
257{
258    ImageBitmap = Bitmap
259    {
260        File = "notcertificate_11x16_h.png" ;
261    };
262};
263
264
265Image RID_SVXBMP_SLIDERBUTTON
266{
267	ImageBitmap = Bitmap
268	{
269		File = "navigationball_10.png" ;
270	};
271};
272Image RID_SVXBMP_SLIDERDECREASE
273{
274    ImageBitmap = Bitmap
275    {
276        File = "slidezoomout_11.png" ;
277    };
278};
279Image RID_SVXBMP_SLIDERINCREASE
280{
281    ImageBitmap = Bitmap
282    {
283        File = "slidezoomin_11.png" ;
284    };
285};
286Image RID_SVXBMP_SLIDERBUTTON_HC
287{
288    ImageBitmap = Bitmap
289    {
290        File = "navigationball_10_h.png" ;
291    };
292};
293Image RID_SVXBMP_SLIDERDECREASE_HC
294{
295	ImageBitmap = Bitmap
296	{
297		File = "slidezoomout_11_h.png" ;
298	};
299};
300Image RID_SVXBMP_SLIDERINCREASE_HC
301{
302	ImageBitmap = Bitmap
303	{
304		File = "slidezoomin_11_h.png" ;
305	};
306};
307
308// ********************************************************************** EOF
309