xref: /aoo41x/main/svx/source/stbctrls/stbctrls.src (revision 1986472f)
109a1d057SAndrew Rist/**************************************************************
2b25ba935Smseidel *
309a1d057SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
409a1d057SAndrew Rist * or more contributor license agreements.  See the NOTICE file
509a1d057SAndrew Rist * distributed with this work for additional information
609a1d057SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
709a1d057SAndrew Rist * to you under the Apache License, Version 2.0 (the
809a1d057SAndrew Rist * "License"); you may not use this file except in compliance
909a1d057SAndrew Rist * with the License.  You may obtain a copy of the License at
10b25ba935Smseidel *
1109a1d057SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12b25ba935Smseidel *
1309a1d057SAndrew Rist * Unless required by applicable law or agreed to in writing,
1409a1d057SAndrew Rist * software distributed under the License is distributed on an
1509a1d057SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1609a1d057SAndrew Rist * KIND, either express or implied.  See the License for the
1709a1d057SAndrew Rist * specific language governing permissions and limitations
1809a1d057SAndrew Rist * under the License.
19b25ba935Smseidel *
2009a1d057SAndrew Rist *************************************************************/
2109a1d057SAndrew Rist
22b25ba935Smseidel
23b25ba935Smseidel
24b25ba935Smseidel// include ---------------------------------------------------------------
25cdf0e10cSrcweir#include <svx/dialogs.hrc>
26cdf0e10cSrcweir#include "helpid.hrc"
27cdf0e10cSrcweir#include "stbctrls.h"
28b25ba935Smseidel// pragma ----------------------------------------------------------------
29cdf0e10cSrcweir
30b25ba935Smseidel// Strings ---------------------------------------------------------------
31cdf0e10cSrcweirString RID_SVXSTR_INSERT_TEXT
32cdf0e10cSrcweir{
33b25ba935Smseidel	// 'Insert' shortened to max. 5 characters
34cdf0e10cSrcweir	Text [ en-US ] = "INSRT" ;
35cdf0e10cSrcweir};
36cdf0e10cSrcweirString RID_SVXSTR_OVERWRITE_TEXT
37cdf0e10cSrcweir{
38b25ba935Smseidel	// 'Overwrite' shortened to max. 5 characters
39cdf0e10cSrcweir	Text [ en-US ] = "OVER" ;
40cdf0e10cSrcweir};
41cdf0e10cSrcweirString RID_SVXSTR_SELMODE_STD
42cdf0e10cSrcweir{
43b25ba935Smseidel	// 'Standard' shortened to max. 3 characters
44cdf0e10cSrcweir	Text [ en-US ] = "STD" ;
45cdf0e10cSrcweir};
46cdf0e10cSrcweirString RID_SVXSTR_SELMODE_ER
47cdf0e10cSrcweir{
48b25ba935Smseidel	// 'Extended' shortened to max. 3 characters
49cdf0e10cSrcweir	Text [ en-US ] = "EXT" ;
50cdf0e10cSrcweir};
51cdf0e10cSrcweirString RID_SVXSTR_SELMODE_ERG
52cdf0e10cSrcweir{
53b25ba935Smseidel	// 'Added' shortened to max. 3 characters
54cdf0e10cSrcweir	Text [ en-US ] = "ADD" ;
55cdf0e10cSrcweir};
56cdf0e10cSrcweir
57cdf0e10cSrcweirString RID_SVXSTR_SELMODE_BLK
58cdf0e10cSrcweir{
59b25ba935Smseidel	// 'Block' shortened to max. 3 characters
60cdf0e10cSrcweir	Text [ en-US ] = "BLK" ;
61cdf0e10cSrcweir};
62cdf0e10cSrcweir
63cdf0e10cSrcweirString RID_SVXSTR_XMLSEC_SIG_OK
64cdf0e10cSrcweir{
65b25ba935Smseidel	Text [ en-US ] = "Digital Signature: The document signature is OK." ;
66cdf0e10cSrcweir};
67cdf0e10cSrcweir
68cdf0e10cSrcweirString RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY
69cdf0e10cSrcweir{
70b25ba935Smseidel	Text [ en-US ] = "Digital Signature: The document signature is OK, but the certificates could not be validated." ;
71cdf0e10cSrcweir};
72cdf0e10cSrcweir
73cdf0e10cSrcweirString RID_SVXSTR_XMLSEC_SIG_NOT_OK
74cdf0e10cSrcweir{
75b25ba935Smseidel	Text [ en-US ] = "Digital Signature: The document signature does not match the document content. We strongly recommend that you do not trust this document." ;
76cdf0e10cSrcweir};
77cdf0e10cSrcweir
78cdf0e10cSrcweirString RID_SVXSTR_XMLSEC_NO_SIG
79cdf0e10cSrcweir{
80b25ba935Smseidel	Text [ en-US ] = "Digital Signature: The document is not signed." ;
81cdf0e10cSrcweir};
82cdf0e10cSrcweir
83cdf0e10cSrcweirString RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG
84cdf0e10cSrcweir{
85b25ba935Smseidel	Text [ en-US ] = "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed." ;
86cdf0e10cSrcweir};
87cdf0e10cSrcweir
88b25ba935Smseidel// PopupMenu -------------------------------------------------------------
89cdf0e10cSrcweirMenu RID_SVXMNU_ZOOM
90cdf0e10cSrcweir{
91cdf0e10cSrcweir	ItemList =
92cdf0e10cSrcweir	{
93cdf0e10cSrcweir		MenuItem
94cdf0e10cSrcweir		{
95cdf0e10cSrcweir			Identifier = ZOOM_200 ;
96cdf0e10cSrcweir			HelpId = HID_MNU_ZOOM_200 ;
97*1986472fSmseidel			Text = "200 %" ;
98cdf0e10cSrcweir		};
99cdf0e10cSrcweir		MenuItem
100cdf0e10cSrcweir		{
101cdf0e10cSrcweir			Identifier = ZOOM_150 ;
102cdf0e10cSrcweir			HelpId = HID_MNU_ZOOM_150 ;
103*1986472fSmseidel			Text = "150 %" ;
104cdf0e10cSrcweir		};
105cdf0e10cSrcweir		MenuItem
106cdf0e10cSrcweir		{
107cdf0e10cSrcweir			Identifier = ZOOM_100 ;
108cdf0e10cSrcweir			HelpId = HID_MNU_ZOOM_100 ;
109*1986472fSmseidel			Text = "100 %" ;
110cdf0e10cSrcweir		};
111cdf0e10cSrcweir		MenuItem
112cdf0e10cSrcweir		{
113cdf0e10cSrcweir			Identifier = ZOOM_75 ;
114cdf0e10cSrcweir			HelpId = HID_MNU_ZOOM_75 ;
115*1986472fSmseidel			Text = "75 %" ;
116cdf0e10cSrcweir		};
117cdf0e10cSrcweir		MenuItem
118cdf0e10cSrcweir		{
119cdf0e10cSrcweir			Identifier = ZOOM_50 ;
120cdf0e10cSrcweir			HelpId = HID_MNU_ZOOM_50 ;
121*1986472fSmseidel			Text = "50 %" ;
122cdf0e10cSrcweir		};
123cdf0e10cSrcweir		MenuItem
124cdf0e10cSrcweir		{
125cdf0e10cSrcweir			Identifier = ZOOM_OPTIMAL ;
126cdf0e10cSrcweir			HelpId = HID_MNU_ZOOM_OPTIMAL ;
127cdf0e10cSrcweir			Text [ en-US ] = "Optimal" ;
128cdf0e10cSrcweir		};
129cdf0e10cSrcweir		MenuItem
130cdf0e10cSrcweir		{
131cdf0e10cSrcweir			Identifier = ZOOM_PAGE_WIDTH ;
132cdf0e10cSrcweir			HelpId = HID_MNU_ZOOM_PAGE_WIDTH ;
133cdf0e10cSrcweir			Text [ en-US ] = "Page Width" ;
134cdf0e10cSrcweir		};
135cdf0e10cSrcweir		MenuItem
136cdf0e10cSrcweir		{
137cdf0e10cSrcweir			Identifier = ZOOM_WHOLE_PAGE ;
138cdf0e10cSrcweir			HelpId = HID_MNU_ZOOM_WHOLE_PAGE ;
139cdf0e10cSrcweir			Text [ en-US ] = "Entire Page" ;
140cdf0e10cSrcweir		};
141cdf0e10cSrcweir	};
142cdf0e10cSrcweir};
143b25ba935Smseidel// Function selection for SvxPosSizeStatusBarControl in Calc
144cdf0e10cSrcweirMenu RID_SVXMNU_PSZ_FUNC
145cdf0e10cSrcweir{
146cdf0e10cSrcweir	ItemList =
147cdf0e10cSrcweir	{
148cdf0e10cSrcweir		MenuItem
149cdf0e10cSrcweir		{
150cdf0e10cSrcweir			Identifier = PSZ_FUNC_AVG ;
151cdf0e10cSrcweir			HelpId = HID_MNU_FUNC_AVG ;
152cdf0e10cSrcweir			Text [ en-US ] = "Average" ;
153cdf0e10cSrcweir		};
154cdf0e10cSrcweir		MenuItem
155cdf0e10cSrcweir		{
156cdf0e10cSrcweir			Identifier = PSZ_FUNC_COUNT2 ;
157cdf0e10cSrcweir			HelpId = HID_MNU_FUNC_COUNT2 ;
158cdf0e10cSrcweir			Text [ en-US ] = "CountA" ;
159cdf0e10cSrcweir		};
160cdf0e10cSrcweir		MenuItem
161cdf0e10cSrcweir		{
162cdf0e10cSrcweir			Identifier = PSZ_FUNC_COUNT ;
163cdf0e10cSrcweir			HelpId = HID_MNU_FUNC_COUNT ;
164cdf0e10cSrcweir			Text [ en-US ] = "Count" ;
165cdf0e10cSrcweir		};
166cdf0e10cSrcweir		MenuItem
167cdf0e10cSrcweir		{
168cdf0e10cSrcweir			Identifier = PSZ_FUNC_MAX ;
169cdf0e10cSrcweir			HelpId = HID_MNU_FUNC_MAX ;
170cdf0e10cSrcweir			Text [ en-US ] = "Maximum" ;
171cdf0e10cSrcweir		};
172cdf0e10cSrcweir		MenuItem
173cdf0e10cSrcweir		{
174cdf0e10cSrcweir			Identifier = PSZ_FUNC_MIN ;
175cdf0e10cSrcweir			HelpId = HID_MNU_FUNC_MIN ;
176cdf0e10cSrcweir			Text [ en-US ] = "Minimum" ;
177cdf0e10cSrcweir		};
178cdf0e10cSrcweir		MenuItem
179cdf0e10cSrcweir		{
180cdf0e10cSrcweir			Identifier = PSZ_FUNC_SUM ;
181cdf0e10cSrcweir			HelpId = HID_MNU_FUNC_SUM ;
182cdf0e10cSrcweir			Text [ en-US ] = "Sum" ;
183cdf0e10cSrcweir		};
184cdf0e10cSrcweir		MenuItem
185cdf0e10cSrcweir		{
186cdf0e10cSrcweir			Identifier = PSZ_FUNC_NONE ;
187cdf0e10cSrcweir			HelpId = HID_MNU_FUNC_NONE ;
188cdf0e10cSrcweir			Text [ en-US ] = "None" ;
189cdf0e10cSrcweir		};
190cdf0e10cSrcweir	};
191cdf0e10cSrcweir};
192cdf0e10cSrcweirMenu RID_SVXMNU_XMLSECSTATBAR
193cdf0e10cSrcweir{
194cdf0e10cSrcweir	ItemList =
195cdf0e10cSrcweir	{
196cdf0e10cSrcweir		MenuItem
197cdf0e10cSrcweir		{
198cdf0e10cSrcweir			Identifier = XMLSEC_CALL ;
199cdf0e10cSrcweir			HelpId = HID_XMLSEC_CALL ;
200cdf0e10cSrcweir			Text [ en-US ] = "Digital Signatures..." ;
201cdf0e10cSrcweir		};
202cdf0e10cSrcweir	};
203cdf0e10cSrcweir};
204cdf0e10cSrcweir
205cdf0e10cSrcweir// Images ----------------------------------------------------------------
206cdf0e10cSrcweir
207cdf0e10cSrcweirImage RID_SVXBMP_POSITION
208cdf0e10cSrcweir{
209cdf0e10cSrcweir	ImageBitmap = Bitmap
210cdf0e10cSrcweir	{
211b25ba935Smseidel		File = "sc10223.png" ;
212cdf0e10cSrcweir	};
213cdf0e10cSrcweir};
214cdf0e10cSrcweirImage RID_SVXBMP_SIZE
215cdf0e10cSrcweir{
216cdf0e10cSrcweir	ImageBitmap = Bitmap
217cdf0e10cSrcweir	{
218b25ba935Smseidel		File = "sc10224.png" ;
219cdf0e10cSrcweir	};
220cdf0e10cSrcweir};
221cdf0e10cSrcweirImage RID_SVXBMP_SIGNET
222cdf0e10cSrcweir{
223cdf0e10cSrcweir	ImageBitmap = Bitmap
224cdf0e10cSrcweir	{
225cdf0e10cSrcweir		File = "signet_11x16.png" ;
226cdf0e10cSrcweir	};
227cdf0e10cSrcweir};
228cdf0e10cSrcweirImage RID_SVXBMP_SIGNET_BROKEN
229cdf0e10cSrcweir{
230cdf0e10cSrcweir	ImageBitmap = Bitmap
231cdf0e10cSrcweir	{
232cdf0e10cSrcweir		File = "caution_11x16.png" ;
233cdf0e10cSrcweir	};
234cdf0e10cSrcweir};
235cdf0e10cSrcweirImage RID_SVXBMP_SIGNET_NOTVALIDATED
236cdf0e10cSrcweir{
237cdf0e10cSrcweir	ImageBitmap = Bitmap
238cdf0e10cSrcweir	{
239*1986472fSmseidel		File = "notcertificate_16.png" ;
240cdf0e10cSrcweir	};
241cdf0e10cSrcweir};
242cdf0e10cSrcweirImage RID_SVXBMP_SIGNET_H
243cdf0e10cSrcweir{
244b25ba935Smseidel	ImageBitmap = Bitmap
245b25ba935Smseidel	{
246b25ba935Smseidel		File = "signet_11x16_h.png" ;
247b25ba935Smseidel	};
248cdf0e10cSrcweir};
249cdf0e10cSrcweirImage RID_SVXBMP_SIGNET_BROKEN_H
250cdf0e10cSrcweir{
251b25ba935Smseidel	ImageBitmap = Bitmap
252b25ba935Smseidel	{
253b25ba935Smseidel		File = "caution_11x16_h.png" ;
254b25ba935Smseidel	};
255cdf0e10cSrcweir};
256cdf0e10cSrcweirImage RID_SVXBMP_SIGNET_NOTVALIDATED_H
257cdf0e10cSrcweir{
258cdf0e10cSrcweir    ImageBitmap = Bitmap
259cdf0e10cSrcweir    {
260*1986472fSmseidel        File = "notcertificate_16_h.png" ;
261cdf0e10cSrcweir    };
262cdf0e10cSrcweir};
263cdf0e10cSrcweir
264cdf0e10cSrcweir
265cdf0e10cSrcweirImage RID_SVXBMP_SLIDERBUTTON
266cdf0e10cSrcweir{
267b25ba935Smseidel	ImageBitmap = Bitmap
268b25ba935Smseidel	{
269b25ba935Smseidel		File = "slidecontrol.png" ;
270b25ba935Smseidel	};
271cdf0e10cSrcweir};
272cdf0e10cSrcweirImage RID_SVXBMP_SLIDERDECREASE
273cdf0e10cSrcweir{
274cdf0e10cSrcweir    ImageBitmap = Bitmap
275cdf0e10cSrcweir    {
276cdf0e10cSrcweir        File = "slidezoomout_11.png" ;
277cdf0e10cSrcweir    };
278cdf0e10cSrcweir};
279cdf0e10cSrcweirImage RID_SVXBMP_SLIDERINCREASE
280cdf0e10cSrcweir{
281cdf0e10cSrcweir    ImageBitmap = Bitmap
282cdf0e10cSrcweir    {
283cdf0e10cSrcweir        File = "slidezoomin_11.png" ;
284cdf0e10cSrcweir    };
285cdf0e10cSrcweir};
286cdf0e10cSrcweirImage RID_SVXBMP_SLIDERBUTTON_HC
287cdf0e10cSrcweir{
288cdf0e10cSrcweir    ImageBitmap = Bitmap
289cdf0e10cSrcweir    {
290b25ba935Smseidel        File = "slidecontrol_h.png" ;
291cdf0e10cSrcweir    };
292cdf0e10cSrcweir};
293cdf0e10cSrcweirImage RID_SVXBMP_SLIDERDECREASE_HC
294cdf0e10cSrcweir{
295b25ba935Smseidel	ImageBitmap = Bitmap
296b25ba935Smseidel	{
297b25ba935Smseidel		File = "slidezoomout_11_h.png" ;
298b25ba935Smseidel	};
299cdf0e10cSrcweir};
300cdf0e10cSrcweirImage RID_SVXBMP_SLIDERINCREASE_HC
301cdf0e10cSrcweir{
302b25ba935Smseidel	ImageBitmap = Bitmap
303b25ba935Smseidel	{
304b25ba935Smseidel		File = "slidezoomin_11_h.png" ;
305b25ba935Smseidel	};
306cdf0e10cSrcweir};
307cdf0e10cSrcweir
308b25ba935Smseidel// ********************************************************************** EOF
309b25ba935Smseidel
310