xref: /trunk/main/svx/source/src/errtxt.src (revision cdf0e10c)
1*cdf0e10cSrcweir/*************************************************************************
2*cdf0e10cSrcweir *
3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir *
5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir *
7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir *
9*cdf0e10cSrcweir * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir *
11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir *
15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir *
21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir *
26*cdf0e10cSrcweir ************************************************************************/
27*cdf0e10cSrcweir
28*cdf0e10cSrcweir#define __RSC
29*cdf0e10cSrcweir#include <svtools/svtools.hrc>
30*cdf0e10cSrcweir#include <svtools/sfxecode.hxx>
31*cdf0e10cSrcweir
32*cdf0e10cSrcweir// pragma ----------------------------------------------------------------
33*cdf0e10cSrcweirResource RID_ERRCTX
34*cdf0e10cSrcweir{
35*cdf0e10cSrcweir	String ERRCTX_ERROR
36*cdf0e10cSrcweir	{
37*cdf0e10cSrcweir		Text [ en-US ] = "Error" ;
38*cdf0e10cSrcweir	};
39*cdf0e10cSrcweir	String ERRCTX_WARNING
40*cdf0e10cSrcweir	{
41*cdf0e10cSrcweir		Text [ en-US ] = "Warning" ;
42*cdf0e10cSrcweir	};
43*cdf0e10cSrcweir	String ERRCTX_SFX_LOADTEMPLATE
44*cdf0e10cSrcweir	{
45*cdf0e10cSrcweir		Text [ en-US ] = "$(ERR) loading the template $(ARG1)" ;
46*cdf0e10cSrcweir	};
47*cdf0e10cSrcweir	String ERRCTX_SFX_SAVEDOC
48*cdf0e10cSrcweir	{
49*cdf0e10cSrcweir		Text [ en-US ] = "$(ERR) saving the document $(ARG1)";
50*cdf0e10cSrcweir	};
51*cdf0e10cSrcweir	String ERRCTX_SFX_SAVEASDOC
52*cdf0e10cSrcweir	{
53*cdf0e10cSrcweir		Text [ en-US ] = "$(ERR) saving the document $(ARG1)";
54*cdf0e10cSrcweir	};
55*cdf0e10cSrcweir	String ERRCTX_SFX_DOCINFO
56*cdf0e10cSrcweir	{
57*cdf0e10cSrcweir		Text [ en-US ] = "$(ERR) displaying doc. information for document $(ARG1)" ;
58*cdf0e10cSrcweir	};
59*cdf0e10cSrcweir	String ERRCTX_SFX_DOCTEMPLATE
60*cdf0e10cSrcweir	{
61*cdf0e10cSrcweir		Text [ en-US ] = "$(ERR) writing document $(ARG1) as template" ;
62*cdf0e10cSrcweir	};
63*cdf0e10cSrcweir	String ERRCTX_SFX_MOVEORCOPYCONTENTS
64*cdf0e10cSrcweir	{
65*cdf0e10cSrcweir		Text [ en-US ] = "$(ERR) copying or moving document contents" ;
66*cdf0e10cSrcweir	};
67*cdf0e10cSrcweir	String ERRCTX_SFX_DOCMANAGER
68*cdf0e10cSrcweir	{
69*cdf0e10cSrcweir		Text [ en-US ] = "$(ERR) starting the Document Manager" ;
70*cdf0e10cSrcweir	};
71*cdf0e10cSrcweir	String ERRCTX_SFX_OPENDOC
72*cdf0e10cSrcweir	{
73*cdf0e10cSrcweir		Text [ en-US ] = "$(ERR) loading document $(ARG1)" ;
74*cdf0e10cSrcweir	};
75*cdf0e10cSrcweir	String ERRCTX_SFX_NEWDOCDIRECT
76*cdf0e10cSrcweir	{
77*cdf0e10cSrcweir		Text [ en-US ] = "$(ERR) creating a new document" ;
78*cdf0e10cSrcweir	};
79*cdf0e10cSrcweir	String ERRCTX_SFX_NEWDOC
80*cdf0e10cSrcweir	{
81*cdf0e10cSrcweir		Text [ en-US ] = "$(ERR) creating a new document" ;
82*cdf0e10cSrcweir	};
83*cdf0e10cSrcweir	String ERRCTX_SFX_CREATEOBJSH
84*cdf0e10cSrcweir	{
85*cdf0e10cSrcweir		Text [ en-US ] = "$(ERR) expanding entry" ;
86*cdf0e10cSrcweir	};
87*cdf0e10cSrcweir	String ERRCTX_SFX_LOADBASIC
88*cdf0e10cSrcweir	{
89*cdf0e10cSrcweir		Text [ en-US ] = "$(ERR) loading BASIC of document $(ARG1)" ;
90*cdf0e10cSrcweir	};
91*cdf0e10cSrcweir	String ERRCTX_SFX_SEARCHADDRESS
92*cdf0e10cSrcweir	{
93*cdf0e10cSrcweir		Text [ en-US ] = "$(ERR) searching for an address";
94*cdf0e10cSrcweir	};
95*cdf0e10cSrcweir};
96*cdf0e10cSrcweirResource RID_ERRHDL
97*cdf0e10cSrcweir{
98*cdf0e10cSrcweir	String ERRCODE_CLASS_ABORT
99*cdf0e10cSrcweir	{
100*cdf0e10cSrcweir		Text [ en-US ] = "Abort" ;
101*cdf0e10cSrcweir	};
102*cdf0e10cSrcweir	String ERRCODE_CLASS_NOTEXISTS
103*cdf0e10cSrcweir	{
104*cdf0e10cSrcweir		Text [ en-US ] = "Nonexistent object" ;
105*cdf0e10cSrcweir	};
106*cdf0e10cSrcweir	String ERRCODE_CLASS_ALREADYEXISTS
107*cdf0e10cSrcweir	{
108*cdf0e10cSrcweir		Text [ en-US ] = "Object already exists" ;
109*cdf0e10cSrcweir	};
110*cdf0e10cSrcweir	String ERRCODE_CLASS_ACCESS
111*cdf0e10cSrcweir	{
112*cdf0e10cSrcweir		Text [ en-US ] = "Object not accessible" ;
113*cdf0e10cSrcweir	};
114*cdf0e10cSrcweir	String ERRCODE_CLASS_PATH
115*cdf0e10cSrcweir	{
116*cdf0e10cSrcweir		Text [ en-US ] = "Inadmissible path" ;
117*cdf0e10cSrcweir	};
118*cdf0e10cSrcweir	String ERRCODE_CLASS_LOCKING
119*cdf0e10cSrcweir	{
120*cdf0e10cSrcweir		Text [ en-US ] = "Locking problem" ;
121*cdf0e10cSrcweir	};
122*cdf0e10cSrcweir	String ERRCODE_CLASS_PARAMETER
123*cdf0e10cSrcweir	{
124*cdf0e10cSrcweir		Text [ en-US ] = "Wrong parameter" ;
125*cdf0e10cSrcweir	};
126*cdf0e10cSrcweir	String ERRCODE_CLASS_SPACE
127*cdf0e10cSrcweir	{
128*cdf0e10cSrcweir		Text [ en-US ] = "Resource exhausted" ;
129*cdf0e10cSrcweir	};
130*cdf0e10cSrcweir	String ERRCODE_CLASS_NOTSUPPORTED
131*cdf0e10cSrcweir	{
132*cdf0e10cSrcweir		Text [ en-US ] = "Action not supported" ;
133*cdf0e10cSrcweir	};
134*cdf0e10cSrcweir	String ERRCODE_CLASS_READ
135*cdf0e10cSrcweir	{
136*cdf0e10cSrcweir		Text [ en-US ] = "Read-Error" ;
137*cdf0e10cSrcweir	};
138*cdf0e10cSrcweir	String ERRCODE_CLASS_WRITE
139*cdf0e10cSrcweir	{
140*cdf0e10cSrcweir		Text [ en-US ] = "Write Error" ;
141*cdf0e10cSrcweir	};
142*cdf0e10cSrcweir	String ERRCODE_CLASS_UNKNOWN
143*cdf0e10cSrcweir	{
144*cdf0e10cSrcweir		Text [ en-US ] = "unknown" ;
145*cdf0e10cSrcweir	};
146*cdf0e10cSrcweir	String ERRCODE_CLASS_VERSION
147*cdf0e10cSrcweir	{
148*cdf0e10cSrcweir		Text [ en-US ] = "Version Incompatibility" ;
149*cdf0e10cSrcweir	};
150*cdf0e10cSrcweir	String ERRCODE_CLASS_GENERAL
151*cdf0e10cSrcweir	{
152*cdf0e10cSrcweir		Text [ en-US ] = "General Error" ;
153*cdf0e10cSrcweir	};
154*cdf0e10cSrcweir	String ERRCODE_CLASS_FORMAT
155*cdf0e10cSrcweir	{
156*cdf0e10cSrcweir		Text [ en-US ] = "Incorrect format" ;
157*cdf0e10cSrcweir	};
158*cdf0e10cSrcweir	String ERRCODE_CLASS_CREATE
159*cdf0e10cSrcweir	{
160*cdf0e10cSrcweir		Text [ en-US ] = "Error creating object" ;
161*cdf0e10cSrcweir	};
162*cdf0e10cSrcweir	String ERRCODE_CLASS_SBX
163*cdf0e10cSrcweir	{
164*cdf0e10cSrcweir		Text [ en-US ] = "Inadmissible value or data type" ;
165*cdf0e10cSrcweir	};
166*cdf0e10cSrcweir	String ERRCODE_CLASS_RUNTIME
167*cdf0e10cSrcweir	{
168*cdf0e10cSrcweir		Text [ en-US ] = "BASIC runtime error" ;
169*cdf0e10cSrcweir	};
170*cdf0e10cSrcweir	String ERRCODE_CLASS_COMPILER
171*cdf0e10cSrcweir	{
172*cdf0e10cSrcweir		Text [ en-US ] = "BASIC syntax error" ;
173*cdf0e10cSrcweir	};
174*cdf0e10cSrcweir	String 1
175*cdf0e10cSrcweir	{
176*cdf0e10cSrcweir		Text [ en-US ] = "General Error" ;
177*cdf0e10cSrcweir	};
178*cdf0e10cSrcweir	String ERRCODE_IO_GENERAL
179*cdf0e10cSrcweir	{
180*cdf0e10cSrcweir		Text [ en-US ] = "General input/output error." ;
181*cdf0e10cSrcweir	};
182*cdf0e10cSrcweir	String ERRCODE_IO_MISPLACEDCHAR
183*cdf0e10cSrcweir	{
184*cdf0e10cSrcweir		Text [ en-US ] = "Invalid file name." ;
185*cdf0e10cSrcweir	};
186*cdf0e10cSrcweir	String ERRCODE_IO_NOTEXISTS
187*cdf0e10cSrcweir	{
188*cdf0e10cSrcweir		Text [ en-US ] = "Nonexistent file." ;
189*cdf0e10cSrcweir	};
190*cdf0e10cSrcweir	String ERRCODE_IO_ALREADYEXISTS
191*cdf0e10cSrcweir	{
192*cdf0e10cSrcweir		Text [ en-US ] = "File already exists." ;
193*cdf0e10cSrcweir	};
194*cdf0e10cSrcweir	String ERRCODE_IO_NOTADIRECTORY
195*cdf0e10cSrcweir	{
196*cdf0e10cSrcweir		Text [ en-US ] = "The object is not a directory." ;
197*cdf0e10cSrcweir	};
198*cdf0e10cSrcweir	String ERRCODE_IO_NOTAFILE
199*cdf0e10cSrcweir	{
200*cdf0e10cSrcweir		Text [ en-US ] = "The object is not a file." ;
201*cdf0e10cSrcweir	};
202*cdf0e10cSrcweir	String ERRCODE_IO_INVALIDDEVICE
203*cdf0e10cSrcweir	{
204*cdf0e10cSrcweir		Text [ en-US ] = "The specified device is invalid." ;
205*cdf0e10cSrcweir	};
206*cdf0e10cSrcweir	String ERRCODE_IO_ACCESSDENIED
207*cdf0e10cSrcweir	{
208*cdf0e10cSrcweir		Text [ en-US ] = "The object cannot be accessed\ndue to insufficient user rights." ;
209*cdf0e10cSrcweir	};
210*cdf0e10cSrcweir	String ERRCODE_IO_LOCKVIOLATION
211*cdf0e10cSrcweir	{
212*cdf0e10cSrcweir		Text [ en-US ] = "Sharing violation while accessing the object." ;
213*cdf0e10cSrcweir	};
214*cdf0e10cSrcweir	String ERRCODE_IO_OUTOFSPACE
215*cdf0e10cSrcweir	{
216*cdf0e10cSrcweir		Text [ en-US ] = "No more space on device." ;
217*cdf0e10cSrcweir	};
218*cdf0e10cSrcweir	String ERRCODE_IO_ISWILDCARD
219*cdf0e10cSrcweir	{
220*cdf0e10cSrcweir		Text [ en-US ] = "This operation cannot be run on\nfiles containing wildcards." ;
221*cdf0e10cSrcweir	};
222*cdf0e10cSrcweir	String ERRCODE_IO_NOTSUPPORTED
223*cdf0e10cSrcweir	{
224*cdf0e10cSrcweir		Text [ en-US ] = "This operation is not supported on this operating system." ;
225*cdf0e10cSrcweir	};
226*cdf0e10cSrcweir	String ERRCODE_IO_TOOMANYOPENFILES
227*cdf0e10cSrcweir	{
228*cdf0e10cSrcweir		Text [ en-US ] = "There are too many files open." ;
229*cdf0e10cSrcweir	};
230*cdf0e10cSrcweir	String ERRCODE_IO_CANTREAD
231*cdf0e10cSrcweir	{
232*cdf0e10cSrcweir		Text [ en-US ] = "Data could not be read from the file." ;
233*cdf0e10cSrcweir	};
234*cdf0e10cSrcweir	String ERRCODE_IO_CANTWRITE
235*cdf0e10cSrcweir	{
236*cdf0e10cSrcweir		Text [ en-US ] = "The file could not be written." ;
237*cdf0e10cSrcweir	};
238*cdf0e10cSrcweir	String ERRCODE_IO_OUTOFMEMORY
239*cdf0e10cSrcweir	{
240*cdf0e10cSrcweir		Text [ en-US ] = "The operation could not be run due to insufficient memory." ;
241*cdf0e10cSrcweir	};
242*cdf0e10cSrcweir	String ERRCODE_IO_CANTSEEK
243*cdf0e10cSrcweir	{
244*cdf0e10cSrcweir		Text [ en-US ] = "The seek operation could not be run." ;
245*cdf0e10cSrcweir	};
246*cdf0e10cSrcweir	String ERRCODE_IO_CANTTELL
247*cdf0e10cSrcweir	{
248*cdf0e10cSrcweir		Text [ en-US ] = "The tell operation could not be run." ;
249*cdf0e10cSrcweir	};
250*cdf0e10cSrcweir	String ERRCODE_IO_WRONGVERSION
251*cdf0e10cSrcweir	{
252*cdf0e10cSrcweir		Text [ en-US ] = "Incorrect file version." ;
253*cdf0e10cSrcweir	};
254*cdf0e10cSrcweir	String ERRCODE_IO_WRONGFORMAT
255*cdf0e10cSrcweir	{
256*cdf0e10cSrcweir		Text [ en-US ] = "Incorrect file format." ;
257*cdf0e10cSrcweir	};
258*cdf0e10cSrcweir	String ERRCODE_IO_INVALIDCHAR
259*cdf0e10cSrcweir	{
260*cdf0e10cSrcweir		Text [ en-US ] = "The file name contains invalid characters." ;
261*cdf0e10cSrcweir	};
262*cdf0e10cSrcweir	String ERRCODE_IO_UNKNOWN
263*cdf0e10cSrcweir	{
264*cdf0e10cSrcweir		Text [ en-US ] = "An unknown I/O error has occurred." ;
265*cdf0e10cSrcweir	};
266*cdf0e10cSrcweir	String ERRCODE_IO_INVALIDACCESS
267*cdf0e10cSrcweir	{
268*cdf0e10cSrcweir		Text [ en-US ] = "An invalid attempt was made to access the file." ;
269*cdf0e10cSrcweir	};
270*cdf0e10cSrcweir	String ERRCODE_IO_CANTCREATE
271*cdf0e10cSrcweir	{
272*cdf0e10cSrcweir		Text [ en-US ] = "The file could not be created." ;
273*cdf0e10cSrcweir	};
274*cdf0e10cSrcweir	String ERRCODE_IO_INVALIDPARAMETER
275*cdf0e10cSrcweir	{
276*cdf0e10cSrcweir		Text [ en-US ] = "The operation was started under an invalid parameter." ;
277*cdf0e10cSrcweir	};
278*cdf0e10cSrcweir	String ERRCODE_IO_ABORT
279*cdf0e10cSrcweir	{
280*cdf0e10cSrcweir		Text [ en-US ] = "The operation on the file was aborted." ;
281*cdf0e10cSrcweir	};
282*cdf0e10cSrcweir	String ERRCODE_IO_NOTEXISTSPATH
283*cdf0e10cSrcweir	{
284*cdf0e10cSrcweir		Text [ en-US ] = "Path to the file does not exist." ;
285*cdf0e10cSrcweir	};
286*cdf0e10cSrcweir	String ERRCODE_IO_RECURSIVE
287*cdf0e10cSrcweir	{
288*cdf0e10cSrcweir		Text [ en-US ] = "An object cannot be copied into itself." ;
289*cdf0e10cSrcweir	};
290*cdf0e10cSrcweir	String ERRCODE_SFX_NOSTDTEMPLATE
291*cdf0e10cSrcweir	{
292*cdf0e10cSrcweir		Text [ en-US ] = "The default template could not be opened." ;
293*cdf0e10cSrcweir	};
294*cdf0e10cSrcweir	String ERRCODE_SFX_TEMPLATENOTFOUND
295*cdf0e10cSrcweir	{
296*cdf0e10cSrcweir		Text [ en-US ] = "The specified template could not be found." ;
297*cdf0e10cSrcweir	};
298*cdf0e10cSrcweir	String ERRCODE_SFX_NOTATEMPLATE
299*cdf0e10cSrcweir	{
300*cdf0e10cSrcweir		Text [ en-US ] = "The file cannot be used as template." ;
301*cdf0e10cSrcweir	};
302*cdf0e10cSrcweir	String ERRCODE_SFX_CANTREADDOCINFO
303*cdf0e10cSrcweir	{
304*cdf0e10cSrcweir		Text [ en-US ] = "Document information could not be read from the file because\nthe document information format is unknown or because document information does not\nexist." ;
305*cdf0e10cSrcweir	};
306*cdf0e10cSrcweir	String ERRCODE_SFX_ALREADYOPEN
307*cdf0e10cSrcweir	{
308*cdf0e10cSrcweir		Text [ en-US ] = "This document has already been opened for editing." ;
309*cdf0e10cSrcweir	};
310*cdf0e10cSrcweir	String ERRCODE_SFX_WRONGPASSWORD
311*cdf0e10cSrcweir	{
312*cdf0e10cSrcweir		Text [ en-US ] = "The wrong password has been entered." ;
313*cdf0e10cSrcweir	};
314*cdf0e10cSrcweir    String ERRCODE_SFX_DOLOADFAILED
315*cdf0e10cSrcweir	{
316*cdf0e10cSrcweir		Text [ en-US ] = "Error reading file." ;
317*cdf0e10cSrcweir	};
318*cdf0e10cSrcweir	String ERRCODE_SFX_DOCUMENTREADONLY
319*cdf0e10cSrcweir	{
320*cdf0e10cSrcweir		Text [ en-US ] = "The document was opened as read-only." ;
321*cdf0e10cSrcweir	};
322*cdf0e10cSrcweir	String ERRCODE_SFX_OLEGENERAL
323*cdf0e10cSrcweir	{
324*cdf0e10cSrcweir		Text [ en-US ] = "General OLE Error." ;
325*cdf0e10cSrcweir	};
326*cdf0e10cSrcweir	String ERRCODE_INET_NAME_RESOLVE
327*cdf0e10cSrcweir	{
328*cdf0e10cSrcweir		Text [ en-US ] = "The host name $(ARG1) could not be resolved." ;
329*cdf0e10cSrcweir	};
330*cdf0e10cSrcweir	String ERRCODE_INET_CONNECT
331*cdf0e10cSrcweir	{
332*cdf0e10cSrcweir		Text [ en-US ] = "Could not establish Internet connection to $(ARG1)." ;
333*cdf0e10cSrcweir	};
334*cdf0e10cSrcweir	String ERRCODE_INET_READ
335*cdf0e10cSrcweir	{
336*cdf0e10cSrcweir        Text [ en-US ] = "Error reading data from the Internet.\nServer error message: $(ARG1)." ;
337*cdf0e10cSrcweir	};
338*cdf0e10cSrcweir	String ERRCODE_INET_WRITE
339*cdf0e10cSrcweir	{
340*cdf0e10cSrcweir		Text [ en-US ] = "Error transferring data to the Internet.\nServer error message: $(ARG1)." ;
341*cdf0e10cSrcweir	};
342*cdf0e10cSrcweir	String ERRCODE_INET_GENERAL
343*cdf0e10cSrcweir	{
344*cdf0e10cSrcweir        Text [ en-US ] = "General Internet error has occurred." ;
345*cdf0e10cSrcweir	};
346*cdf0e10cSrcweir	String ERRCODE_INET_OFFLINE
347*cdf0e10cSrcweir	{
348*cdf0e10cSrcweir		Text [ en-US ] = "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated." ;
349*cdf0e10cSrcweir	};
350*cdf0e10cSrcweir	String ERRCODE_SFXMSG_STYLEREPLACE
351*cdf0e10cSrcweir	{
352*cdf0e10cSrcweir		ExtraData = ERRCODE_MSG_ERROR | ERRCODE_BUTTON_OK_CANCEL ;
353*cdf0e10cSrcweir		Text [ en-US ] = "Should the $(ARG1) Style be replaced?" ;
354*cdf0e10cSrcweir	};
355*cdf0e10cSrcweir	String ERRCODE_SFX_NOFILTER
356*cdf0e10cSrcweir	{
357*cdf0e10cSrcweir		Text [ en-US ] = "A filter has not been found." ;
358*cdf0e10cSrcweir	};
359*cdf0e10cSrcweir	String ERRCODE_SFX_CANTFINDORIGINAL
360*cdf0e10cSrcweir	{
361*cdf0e10cSrcweir		Text [ en-US ] = "The original could not be determined." ;
362*cdf0e10cSrcweir	};
363*cdf0e10cSrcweir	String ERRCODE_SFX_CANTCREATECONTENT
364*cdf0e10cSrcweir	{
365*cdf0e10cSrcweir		Text [ en-US ] = "The contents could not be created." ;
366*cdf0e10cSrcweir	};
367*cdf0e10cSrcweir	String ERRCODE_SFX_CANTCREATELINK
368*cdf0e10cSrcweir	{
369*cdf0e10cSrcweir		Text [ en-US ] = "The link could not be created." ;
370*cdf0e10cSrcweir	};
371*cdf0e10cSrcweir	String ERRCODE_SFX_WRONGBMKFORMAT
372*cdf0e10cSrcweir	{
373*cdf0e10cSrcweir		Text [ en-US ] = "The link format is invalid." ;
374*cdf0e10cSrcweir	};
375*cdf0e10cSrcweir	String ERRCODE_SFX_WRONGICONFILE
376*cdf0e10cSrcweir	{
377*cdf0e10cSrcweir		Text [ en-US ] = "The configuration of the icon display is invalid." ;
378*cdf0e10cSrcweir	};
379*cdf0e10cSrcweir	String ERRCODE_SFX_CANTWRITEICONFILE
380*cdf0e10cSrcweir	{
381*cdf0e10cSrcweir		Text [ en-US ] = "The configuration of the icon display can not be saved." ;
382*cdf0e10cSrcweir	};
383*cdf0e10cSrcweir	String ERRCODE_SFX_CANTDELICONFILE
384*cdf0e10cSrcweir	{
385*cdf0e10cSrcweir		Text [ en-US ] = "The configuration of the icon display could not be deleted." ;
386*cdf0e10cSrcweir	};
387*cdf0e10cSrcweir	String ERRCODE_SFX_CANTRENAMECONTENT
388*cdf0e10cSrcweir	{
389*cdf0e10cSrcweir		Text [ en-US ] = "Contents cannot be renamed." ;
390*cdf0e10cSrcweir	};
391*cdf0e10cSrcweir	String ERRCODE_SFX_INVALIDBMKPATH
392*cdf0e10cSrcweir	{
393*cdf0e10cSrcweir		Text [ en-US ] = "The bookmark folder is invalid." ;
394*cdf0e10cSrcweir	};
395*cdf0e10cSrcweir	String ERRCODE_SFX_CANTWRITEURLCFGFILE
396*cdf0e10cSrcweir	{
397*cdf0e10cSrcweir		Text [ en-US ] = "The configuration of the URLs to be saved locally could not be saved." ;
398*cdf0e10cSrcweir	};
399*cdf0e10cSrcweir	String ERRCODE_SFX_WRONGURLCFGFORMAT
400*cdf0e10cSrcweir	{
401*cdf0e10cSrcweir		Text [ en-US ] = "The configuration format of the URLs to be saved locally is invalid." ;
402*cdf0e10cSrcweir	};
403*cdf0e10cSrcweir	String ERRCODE_SFX_NODOCUMENT
404*cdf0e10cSrcweir	{
405*cdf0e10cSrcweir		Text [ en-US ] = "This action cannot be applied to a document that does not exist." ;
406*cdf0e10cSrcweir	};
407*cdf0e10cSrcweir	String ERRCODE_SFX_INVALIDLINK
408*cdf0e10cSrcweir	{
409*cdf0e10cSrcweir		Text [ en-US ] = "The link refers to an invalid target." ;
410*cdf0e10cSrcweir	};
411*cdf0e10cSrcweir	String ERRCODE_SFX_INVALIDTRASHPATH
412*cdf0e10cSrcweir	{
413*cdf0e10cSrcweir		Text [ en-US ] = "The Recycle Bin path is invalid." ;
414*cdf0e10cSrcweir	};
415*cdf0e10cSrcweir	String ERRCODE_SFX_NOTRESTORABLE
416*cdf0e10cSrcweir	{
417*cdf0e10cSrcweir		Text [ en-US ] = "The entry could not be restored." ;
418*cdf0e10cSrcweir	};
419*cdf0e10cSrcweir	String ERRCODE_IO_NAMETOOLONG
420*cdf0e10cSrcweir	{
421*cdf0e10cSrcweir		Text [ en-US ] = "The file name is too long for the target file system." ;
422*cdf0e10cSrcweir	};
423*cdf0e10cSrcweir	String ERRCODE_SFX_CONSULTUSER
424*cdf0e10cSrcweir	{
425*cdf0e10cSrcweir		Text [ en-US ] = "The details for running the function are incomplete." ;
426*cdf0e10cSrcweir	};
427*cdf0e10cSrcweir	String ERRCODE_SFX_INVALIDSYNTAX
428*cdf0e10cSrcweir	{
429*cdf0e10cSrcweir		Text [ en-US ] = "The input syntax is invalid." ;
430*cdf0e10cSrcweir	};
431*cdf0e10cSrcweir	String ERRCODE_SFX_CANTCREATEFOLDER
432*cdf0e10cSrcweir	{
433*cdf0e10cSrcweir		Text [ en-US ] = "The input syntax is invalid." ;
434*cdf0e10cSrcweir	};
435*cdf0e10cSrcweir	String ERRCODE_SFX_CANTRENAMEFOLDER
436*cdf0e10cSrcweir	{
437*cdf0e10cSrcweir		Text [ en-US ] = "The input syntax is invalid." ;
438*cdf0e10cSrcweir	};
439*cdf0e10cSrcweir	String ERRCODE_SFX_WRONG_CDF_FORMAT
440*cdf0e10cSrcweir	{
441*cdf0e10cSrcweir		Text [ en-US ] = "The channel document has an invalid format." ;
442*cdf0e10cSrcweir	};
443*cdf0e10cSrcweir	String ERRCODE_SFX_EMPTY_SERVER
444*cdf0e10cSrcweir	{
445*cdf0e10cSrcweir		Text [ en-US ] = "The server must not be empty." ;
446*cdf0e10cSrcweir	};
447*cdf0e10cSrcweir	String ERRCODE_SFX_NO_ABOBOX
448*cdf0e10cSrcweir	{
449*cdf0e10cSrcweir		Text [ en-US ] = "A subscription folder is required to install a Channel." ;
450*cdf0e10cSrcweir	};
451*cdf0e10cSrcweir	String ERRCODE_IO_NOTSTORABLEINBINARYFORMAT
452*cdf0e10cSrcweir	{
453*cdf0e10cSrcweir        Text [ en-US ] = "This document contains attributes that cannot be saved in the selected format.\nPlease save the document in a %PRODUCTNAME %PRODUCTVERSION file format.";
454*cdf0e10cSrcweir	};
455*cdf0e10cSrcweir	String ERRCODE_SFX_TARGETFILECORRUPTED
456*cdf0e10cSrcweir	{
457*cdf0e10cSrcweir		Text [ en-US ] = "The file $(FILENAME) cannot be saved. Please check your system settings. You can find an automatically generated backup copy of this file in folder $(PATH) named $(BACKUPNAME).";
458*cdf0e10cSrcweir	};
459*cdf0e10cSrcweir	String ERRCODE_SFX_NOMOREDOCUMENTSALLOWED
460*cdf0e10cSrcweir	{
461*cdf0e10cSrcweir		Text [ en-US ] = "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document.";
462*cdf0e10cSrcweir	};
463*cdf0e10cSrcweir	String ERRCODE_SFX_CANTCREATEBACKUP
464*cdf0e10cSrcweir	{
465*cdf0e10cSrcweir		Text [ en-US ] = "Could not create backup copy." ;
466*cdf0e10cSrcweir	};
467*cdf0e10cSrcweir	String ERRCODE_SFX_MACROS_SUPPORT_DISABLED
468*cdf0e10cSrcweir	{
469*cdf0e10cSrcweir    	Text [ en-US ] = "An attempt was made to execute a macro.\nFor security reasons, macro support is disabled.";
470*cdf0e10cSrcweir	};
471*cdf0e10cSrcweir	String ERRCODE_SFX_DOCUMENT_MACRO_DISABLED
472*cdf0e10cSrcweir	{
473*cdf0e10cSrcweir    	Text [ en-US ] = "This document contains macros.\n\nMacros may contain viruses. Execution of macros is disabled due to the current macro security setting in Tools - Options - %PRODUCTNAME - Security.\n\nTherefore, some functionality may not be available." ;
474*cdf0e10cSrcweir	};
475*cdf0e10cSrcweir    String ERRCODE_SFX_BROKENSIGNATURE
476*cdf0e10cSrcweir    {
477*cdf0e10cSrcweir	    Text [ en-US ] = "The digitally signed document content and/or macros do not match the current document signature.\n\nThis could be the result of document manipulation or of structural document damage due to data transmission.\n\nWe recommend that you do not trust the content of the current document.\nExecution of macros is disabled for this document.\n " ;
478*cdf0e10cSrcweir    };
479*cdf0e10cSrcweir    String ERRCODE_SFX_INCOMPLETE_ENCRYPTION
480*cdf0e10cSrcweir    {
481*cdf0e10cSrcweir	    Text [ en-US ] = "The encrypted document contains unexpected non-encrypted streams.\n\nThis could be the result of document manipulation.\n\nWe recommend that you do not trust the content of the current document.\nExecution of macros is disabled for this document.\n " ;
482*cdf0e10cSrcweir    };
483*cdf0e10cSrcweir
484*cdf0e10cSrcweir	String ERRCODE_IO_INVALIDLENGTH
485*cdf0e10cSrcweir	{
486*cdf0e10cSrcweir		Text [ en-US ] = "Invalid data length." ;
487*cdf0e10cSrcweir	};
488*cdf0e10cSrcweir	String ERRCODE_IO_CURRENTDIR
489*cdf0e10cSrcweir	{
490*cdf0e10cSrcweir		Text [ en-US ] = "Function not possible: path contains current directory." ;
491*cdf0e10cSrcweir	};
492*cdf0e10cSrcweir	String ERRCODE_IO_NOTSAMEDEVICE
493*cdf0e10cSrcweir	{
494*cdf0e10cSrcweir		Text [ en-US ] = "Function not possible: device (drive) not identical." ;
495*cdf0e10cSrcweir	};
496*cdf0e10cSrcweir	String ERRCODE_IO_DEVICENOTREADY
497*cdf0e10cSrcweir	{
498*cdf0e10cSrcweir		Text [ en-US ] = "Device (drive) not ready." ;
499*cdf0e10cSrcweir	};
500*cdf0e10cSrcweir	String ERRCODE_IO_BADCRC
501*cdf0e10cSrcweir	{
502*cdf0e10cSrcweir		Text [ en-US ] = "Wrong check amount." ;
503*cdf0e10cSrcweir	};
504*cdf0e10cSrcweir	String ERRCODE_IO_WRITEPROTECTED
505*cdf0e10cSrcweir	{
506*cdf0e10cSrcweir		Text [ en-US ] = "Function not possible: write protected." ;
507*cdf0e10cSrcweir	};
508*cdf0e10cSrcweir    String ERRCODE_SFX_SHARED_NOPASSWORDCHANGE
509*cdf0e10cSrcweir	{
510*cdf0e10cSrcweir		Text [ en-US ] = "The password of a shared spreadsheet cannot be set or changed.\nDeactivate sharing mode first.";
511*cdf0e10cSrcweir	};
512*cdf0e10cSrcweir};
513*cdf0e10cSrcweir
514*cdf0e10cSrcweir// eof ------------------------------------------------------------------------
515*cdf0e10cSrcweir
516