xref: /AOO41X/main/uui/source/ids.src (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
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
28#define __RSC
29
30#ifndef UUI_IDS_HRC
31#include "ids.hrc"
32#endif
33
34String RID_KEEP_PASSWORD
35{
36    Text [ en-US ] = "~Remember password until end of session";
37};
38
39String RID_SAVE_PASSWORD
40{
41    Text [ en-US ] = "~Remember password";
42};
43
44
45String STR_WARNING_BROKENSIGNATURE_TITLE
46{
47    Text [ en-US ] = "Invalid Document Signature" ;
48};
49
50String STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE
51{
52    Text [ en-US ] = "Non-Encrypted Streams" ;
53};
54
55Resource RID_UUI_ERRHDL
56{
57    String (ERRCODE_UUI_IO_ABORT & ERRCODE_RES_MASK)
58    {
59        Text [ en-US ] = "The operation executed on $(ARG1) was aborted.";
60    };
61
62    String (ERRCODE_UUI_IO_ACCESSDENIED & ERRCODE_RES_MASK)
63    {
64        Text [ en-US ] = "Access to $(ARG1) was denied.";
65    };
66
67    String (ERRCODE_UUI_IO_ALREADYEXISTS & ERRCODE_RES_MASK)
68    {
69        Text [ en-US ] = "$(ARG1) already exists.";
70    };
71
72    String (ERRCODE_UUI_IO_TARGETALREADYEXISTS & ERRCODE_RES_MASK)
73    {
74        Text [ en-US ] = "Target already exists.";
75    };
76
77    String (ERRCODE_UUI_IO_MODULESIZEEXCEEDED & ERRCODE_RES_MASK)
78    {
79        Text [ en-US ] = "You are about to save/export a password protected basic library containing module(s) \n$(ARG1)\nwhich are too large to store in binary format. If you wish users that don't have access to the library password to be able to run macros in those module(s) you must split those modules into a number of smaller modules. Do you wish to continue to save/export this library?" ;
80    };
81
82    String (ERRCODE_UUI_IO_BADCRC & ERRCODE_RES_MASK)
83    {
84        Text [ en-US ] = "The data from $(ARG1) has an incorrect checksum.";
85    };
86
87    String (ERRCODE_UUI_IO_CANTCREATE & ERRCODE_RES_MASK)
88    {
89        Text [ en-US ] = "The object $(ARG1) cannot be created in directory $(ARG2).";
90    };
91
92    String (ERRCODE_UUI_IO_CANTREAD & ERRCODE_RES_MASK)
93    {
94        Text [ en-US ] = "Data of $(ARG1) could not be read.";
95    };
96
97    String (ERRCODE_UUI_IO_CANTSEEK & ERRCODE_RES_MASK)
98    {
99        Text [ en-US ] = "The seek operation on $(ARG1) could not be performed.";
100    };
101
102    String (ERRCODE_UUI_IO_CANTTELL & ERRCODE_RES_MASK)
103    {
104        Text [ en-US ] = "The tell operation on $(ARG1) could not be performed.";
105    };
106
107    String (ERRCODE_UUI_IO_CANTWRITE & ERRCODE_RES_MASK)
108    {
109        Text [ en-US ] = "Data for $(ARG1) could not be written.";
110    };
111
112    String (ERRCODE_UUI_IO_CURRENTDIR & ERRCODE_RES_MASK)
113    {
114        Text [ en-US ] = "Action impossible: $(ARG1) is the current directory.";
115    };
116
117    String (ERRCODE_UUI_IO_NOTREADY & ERRCODE_RES_MASK)
118    {
119        Text [ en-US ] = "$(ARG1) is not ready.";
120    };
121
122    String (ERRCODE_UUI_IO_NOTSAMEDEVICE & ERRCODE_RES_MASK)
123    {
124        Text [ en-US ] = "Action impossible: $(ARG1) and $(ARG2) are different devices (drives).";
125    };
126
127    String (ERRCODE_UUI_IO_GENERAL & ERRCODE_RES_MASK)
128    {
129        Text [ en-US ] = "General input/output error while accessing $(ARG1).";
130    };
131
132    String (ERRCODE_UUI_IO_INVALIDACCESS & ERRCODE_RES_MASK)
133    {
134        Text [ en-US ] = "An attempt was made to access $(ARG1) in an invalid way.";
135    };
136
137    String (ERRCODE_UUI_IO_INVALIDCHAR & ERRCODE_RES_MASK)
138    {
139        Text [ en-US ] = "$(ARG1) contains invalid characters.";
140    };
141
142    String (ERRCODE_UUI_IO_INVALIDDEVICE & ERRCODE_RES_MASK)
143    {
144        Text [ en-US ] = "The device (drive) $(ARG1) is invalid.";
145    };
146
147    String (ERRCODE_UUI_IO_INVALIDLENGTH & ERRCODE_RES_MASK)
148    {
149        Text [ en-US ] = "The data from $(ARG1) has an invalid length.";
150    };
151
152    String (ERRCODE_UUI_IO_INVALIDPARAMETER & ERRCODE_RES_MASK)
153    {
154        Text [ en-US ] = "The operation on $(ARG1) was started with an invalid parameter.";
155    };
156
157    String (ERRCODE_UUI_IO_ISWILDCARD & ERRCODE_RES_MASK)
158    {
159        Text [ en-US ] = "The operation cannot be performed because $(ARG1) contains wildcards.";
160    };
161
162    String (ERRCODE_UUI_IO_LOCKVIOLATION & ERRCODE_RES_MASK)
163    {
164        Text [ en-US ] = "Error during shared access to $(ARG1).";
165    };
166
167    String (ERRCODE_UUI_IO_MISPLACEDCHAR & ERRCODE_RES_MASK)
168    {
169        Text [ en-US ] = "$(ARG1) contains misplaced characters.";
170    };
171
172    String (ERRCODE_UUI_IO_NAMETOOLONG & ERRCODE_RES_MASK)
173    {
174        Text [ en-US ] = "The name $(ARG1) contains too many characters.";
175    };
176
177    String (ERRCODE_UUI_IO_NOTEXISTS & ERRCODE_RES_MASK)
178    {
179        Text [ en-US ] = "$(ARG1) does not exist.";
180    };
181
182    String (ERRCODE_UUI_IO_NOTEXISTSPATH & ERRCODE_RES_MASK)
183    {
184        Text [ en-US ] = "The path $(ARG1) does not exist.";
185    };
186
187    String (ERRCODE_UUI_IO_NOTSUPPORTED & ERRCODE_RES_MASK)
188    {
189        Text [ en-US ] = "The operation on $(ARG1) is not supported on this operating system.";
190    };
191
192    String (ERRCODE_UUI_IO_NOTADIRECTORY & ERRCODE_RES_MASK)
193    {
194        Text [ en-US ] = "$(ARG1) is not a directory.";
195    };
196
197    String (ERRCODE_UUI_IO_NOTAFILE & ERRCODE_RES_MASK)
198    {
199        Text [ en-US ] = "$(ARG1) is not a file.";
200    };
201
202    String (ERRCODE_UUI_IO_OUTOFSPACE & ERRCODE_RES_MASK)
203    {
204        Text [ en-US ] = "There is no space left on device $(ARG1).";
205    };
206
207    String (ERRCODE_UUI_IO_TOOMANYOPENFILES & ERRCODE_RES_MASK)
208    {
209        Text [ en-US ] = "The operation on $(ARG1) cannot be performed because too many files are already open.";
210    };
211
212    String (ERRCODE_UUI_IO_OUTOFMEMORY & ERRCODE_RES_MASK)
213    {
214        Text [ en-US ] = "The operation on $(ARG1) cannot be performed because there is no more memory available.";
215    };
216
217    String (ERRCODE_UUI_IO_PENDING & ERRCODE_RES_MASK)
218    {
219        Text [ en-US ] = "The operation on $(ARG1) cannot continue because more data is pending.";
220    };
221
222    String (ERRCODE_UUI_IO_RECURSIVE & ERRCODE_RES_MASK)
223    {
224        Text [ en-US ] = "$(ARG1) cannot be copied into itself.";
225    };
226
227    String (ERRCODE_UUI_IO_UNKNOWN & ERRCODE_RES_MASK)
228    {
229        Text [ en-US ] = "Unknown input/output error while accessing $(ARG1).";
230    };
231
232    String (ERRCODE_UUI_IO_WRITEPROTECTED & ERRCODE_RES_MASK)
233    {
234        Text [ en-US ] = "$(ARG1) is write protected.";
235    };
236
237    String (ERRCODE_UUI_IO_WRONGFORMAT & ERRCODE_RES_MASK)
238    {
239        Text [ en-US ] = "$(ARG1) is not in the correct format.";
240    };
241
242    String (ERRCODE_UUI_IO_WRONGVERSION & ERRCODE_RES_MASK)
243    {
244        Text [ en-US ] = "The version of $(ARG1) is not correct.";
245    };
246
247    String (ERRCODE_UUI_IO_NOTEXISTS_VOLUME & ERRCODE_RES_MASK)
248    {
249        Text [ en-US ] = "Drive $(ARG1) does not exist.";
250    };
251
252    String (ERRCODE_UUI_IO_NOTEXISTS_FOLDER & ERRCODE_RES_MASK)
253    {
254        Text [ en-US ] = "Folder $(ARG1) does not exist.";
255    };
256
257    String (ERRCODE_UUI_WRONGJAVA & ERRCODE_RES_MASK)
258    {
259        Text [ en-US ] = "The installed Java version is not supported.";
260    };
261
262    String (ERRCODE_UUI_WRONGJAVA_VERSION & ERRCODE_RES_MASK)
263    {
264        Text [ en-US ] = "The installed Java version $(ARG1) is not supported.";
265    };
266    String (ERRCODE_UUI_WRONGJAVA_MIN & ERRCODE_RES_MASK)
267    {
268        Text [ en-US ] = "The installed Java version is not supported, at least version $(ARG1) is required.";
269    };
270
271    String (ERRCODE_UUI_WRONGJAVA_VERSION_MIN & ERRCODE_RES_MASK)
272    {
273        Text [ en-US ] = "The installed Java version $(ARG1) is not supported, at least version $(ARG2) is required.";
274    };
275
276    String (ERRCODE_UUI_BADPARTNERSHIP & ERRCODE_RES_MASK)
277    {
278        Text [ en-US ] = "The data associated with the partnership is corrupted.";
279    };
280
281    String (ERRCODE_UUI_BADPARTNERSHIP_NAME & ERRCODE_RES_MASK)
282    {
283        Text [ en-US ] = "The data associated with the partnership $(ARG1) is corrupted.";
284    };
285
286    String (ERRCODE_UUI_IO_NOTREADY_VOLUME & ERRCODE_RES_MASK)
287    {
288        Text [ en-US ] = "Volume $(ARG1) is not ready.";
289    };
290
291    String (ERRCODE_UUI_IO_NOTREADY_REMOVABLE & ERRCODE_RES_MASK)
292    {
293        Text [ en-US ] = "$(ARG1) is not ready; please insert a storage medium.";
294    };
295
296    String (ERRCODE_UUI_IO_NOTREADY_VOLUME_REMOVABLE & ERRCODE_RES_MASK)
297    {
298        Text [ en-US ] = "Volume $(ARG1) is not ready; please insert a storage medium.";
299    };
300
301    String (ERRCODE_UUI_WRONGMEDIUM & ERRCODE_RES_MASK)
302    {
303        Text [ en-US ] = "Please insert disk $(ARG1).";
304    };
305
306    String (ERRCODE_UUI_IO_CANTCREATE_NONAME & ERRCODE_RES_MASK)
307    {
308        Text[ en-US ] = "The object cannot be created in directory $(ARG1).";
309    };
310
311    String (ERRCODE_UUI_IO_UNSUPPORTEDOVERWRITE & ERRCODE_RES_MASK)
312    {
313        Text [ en-US ] = "%PRODUCTNAME cannot keep files from being overwritten when this transmission protocol is used. Do you want to continue anyway?";
314    };
315
316    String (ERRCODE_UUI_IO_BROKENPACKAGE & ERRCODE_RES_MASK)
317    {
318        Text [ en-US ] = "The file '$(ARG1)' is corrupt and therefore cannot be opened. %PRODUCTNAME can try to repair the file.\n\nThe corruption 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 repaired document.\nExecution of macros is disabled for this document.\n\nShould %PRODUCTNAME repair the file?\n";
319    };
320
321    String (ERRCODE_UUI_IO_BROKENPACKAGE_CANTREPAIR & ERRCODE_RES_MASK)
322    {
323        Text [ en-US ] = "The file '$(ARG1)' could not be repaired and therefore cannot be opened.";
324    };
325
326    String (ERRCODE_UUI_CONFIGURATION_BROKENDATA_NOREMOVE & ERRCODE_RES_MASK)
327    {
328        Text [ en-US ] = "Configuration data in '$(ARG1)' is corrupted. Without this data some functions may not operate correctly.\nDo you want to continue startup of %PRODUCTNAME without the corrupted configuration data?";
329    };
330
331    String (ERRCODE_UUI_CONFIGURATION_BROKENDATA_WITHREMOVE & ERRCODE_RES_MASK)
332    {
333        Text [ en-US ] = "The personal configuration file '$(ARG1)' is corrupted and must be deleted to continue. Some of your personal settings may be lost.\nDo you want to continue startup of %PRODUCTNAME without the corrupted configuration data?";
334    };
335
336    String (ERRCODE_UUI_CONFIGURATION_BACKENDMISSING & ERRCODE_RES_MASK)
337    {
338        Text [ en-US ] = "The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly.";
339    };
340
341    String (ERRCODE_UUI_CONFIGURATION_BACKENDMISSING_WITHRECOVER & ERRCODE_RES_MASK)
342    {
343        Text [ en-US ] = "The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly.\nDo you want to continue startup of %PRODUCTNAME without the missing configuration data?";
344    };
345
346    STRING (ERRCODE_UUI_INVALID_XFORMS_SUBMISSION_DATA & ERRCODE_RES_MASK)
347    {
348        Text [ en-US ] = "The form contains invalid data. Do you still want to continue?";
349    };
350
351    String (ERRCODE_UUI_LOCKING_LOCKED & ERRCODE_RES_MASK)
352    {
353        Text [ en-US ] = "The file $(ARG1) is locked by another user. Currently, another write access to this file cannot be granted.";
354
355    };
356
357    String (ERRCODE_UUI_LOCKING_LOCKED_SELF & ERRCODE_RES_MASK)
358    {
359        Text [ en-US ] = "The file $(ARG1) is locked by yourself. Currently, another write access to this file cannot be granted.";
360    };
361
362    String (ERRCODE_UUI_LOCKING_NOT_LOCKED & ERRCODE_RES_MASK)
363    {
364        Text [ en-US ] = "The file $(ARG1) is currently not locked by yourself.";
365    };
366
367    String (ERRCODE_UUI_LOCKING_LOCK_EXPIRED & ERRCODE_RES_MASK)
368    {
369        Text [ en-US ] = "The previously obtained lock for file $(ARG1) has expired.\nThis can happen due to problems on the server managing the file lock. It cannot be guaranteed that write operations on this file will not overwrite changes done by other users!";
370    };
371
372    STRING (ERRCODE_UUI_UNKNOWNAUTH_UNTRUSTED)
373    {
374        Text [ en-US ] = "Unable to verify the identity of $(ARG1) site.\n\nBefore accepting this certificate, you should examine this site's certificate carefully. Are you willing to accept this certificate for the purpose of identifying the Web site $(ARG1)?";
375    };
376
377    STRING (ERRCODE_UUI_SSLWARN_EXPIRED_1)
378    {
379        Text [ en-US ] = "$(ARG1) is a site that uses a security certificate to encrypt data during transmission, but its certificate expired on $(ARG2).\n\nYou should check to make sure that your computer's time is correct.";
380    };
381
382    STRING (ERRCODE_UUI_SSLWARN_DOMAINMISMATCH_1)
383    {
384        Text [ en-US ] = "You have attempted to establish a connection with $(ARG1). However, the security certificate presented belongs to $(ARG2). It is possible, though unlikely, that someone may be trying to intercept your communication with this web site.\n\nIf you suspect the certificate shown does not belong to $(ARG1), please cancel the connection and notify the site administrator.\n\nWould you like to continue anyway?";
385    };
386
387    STRING (ERRCODE_UUI_SSLWARN_INVALID_1)
388    {
389        Text [ en-US ] = "The certificate could not be validated. You should examine this site's certificate carefully.\n\nIf you suspect the certificate shown, please cancel the connection and notify the site administrator.";
390    };
391    STRING (TITLE_UUI_SSLWARN_DOMAINMISMATCH)
392    {
393        Text [ en-US ] = "Security Warning: Domain Name Mismatch";
394    };
395
396    STRING (TITLE_UUI_SSLWARN_EXPIRED)
397    {
398        Text [ en-US ] = "Security Warning: Server Certificate Expired";
399    };
400
401    STRING (TITLE_UUI_SSLWARN_INVALID)
402    {
403        Text [ en-US ] = "Security Warning: Server Certificate Invalid";
404    };
405
406
407};
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435