mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
24.31.2016 6d0403ded49a58d3198a2162234161daa3cf6116
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
# The contents of this file are subject to the terms of the Common Development and
# Distribution License (the License). You may not use this file except in compliance with the
# License.
#
# You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
# specific language governing permission and limitations under the License.
#
# When distributing Covered Software, include this CDDL Header Notice in each file and include
# the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
# Header, with the fields enclosed by brackets [] replaced by your own identifying
# information: "Portions Copyright [year] [name of copyright owner]".
#
# Copyright 2006-2009 Sun Microsystems, Inc.
# Portions Copyright 2011-2016 ForgeRock AS.
 
 
 
#
# Global directives
#
#global.category=UTIL
#global.use.message.jar.if.webstart=true
 
#
# Format string definitions
#
# Keys must be formatted as follows:
#
# [SEVERITY]_[DESCRIPTION]_[ORDINAL]
#
# where:
#
# SEVERITY is one of:
# [ERR, WARN, NOTICE, INFO, DEBUG]
#
# DESCRIPTION is an upper case string providing a hint as to the context of
# the message in upper case with the underscore ('_') character serving as
# word separator
#
# ORDINAL is an integer unique among other ordinals in this file
#
ERR_BASE64_DECODE_INVALID_LENGTH_1=The value %s cannot be base64-decoded \
 because it does not have a length that is a multiple of four bytes
ERR_BASE64_DECODE_INVALID_CHARACTER_2=The value %s cannot be \
 base64-decoded because it contains an illegal character %c that is not \
 allowed in base64-encoded values
ERR_HEX_DECODE_INVALID_LENGTH_3=The value %s cannot be decoded as a \
 hexadecimal string because it does not have a length that is a multiple of \
 two bytes
ERR_HEX_DECODE_INVALID_CHARACTER_4=The value %s cannot be decoded as a \
 hexadecimal string because it contains an illegal character %c that is not a \
 valid hexadecimal digit
ERR_LDIF_INVALID_LEADING_SPACE_5=Unable to parse line %d ("%s") from the \
 LDIF source because the line started with a space but there were no previous \
 lines in the entry to which this line could be appended
ERR_LDIF_NO_ATTR_NAME_6=Unable to parse LDIF entry starting at line %d \
 because the line "%s" does not include an attribute name
ERR_LDIF_NO_DN_7=Unable to parse LDIF entry starting at line %d because \
 the first line does not contain a DN (the first line was "%s"
ERR_LDIF_INVALID_DN_9=Unable to parse LDIF entry starting at line %d \
 because an error occurred while trying to parse the value of line "%s" as a \
 distinguished name: %s
ERR_LDIF_COULD_NOT_BASE64_DECODE_DN_11=Unable to parse LDIF entry \
 starting at line %d because it was not possible to base64-decode the DN on \
 line "%s": %s
ERR_LDIF_COULD_NOT_BASE64_DECODE_ATTR_12=Unable to parse LDIF entry %s \
 starting at line %d because it was not possible to base64-decode the \
 attribute on line "%s": %s
WARN_LDIF_DUPLICATE_OBJECTCLASS_13=Entry %s read from LDIF starting at \
 line %d includes a duplicate objectclass value %s. The second occurrence of \
 that objectclass has been skipped
WARN_LDIF_DUPLICATE_ATTR_14=Entry %s read from LDIF starting at line %d \
 includes a duplicate attribute %s with value %s. The second occurrence of \
 that attribute value has been skipped
ERR_LDIF_MULTIPLE_VALUES_FOR_SINGLE_VALUED_ATTR_15=Entry %s starting at \
 line %d includes multiple values for single-valued attribute %s
ERR_LDIF_SCHEMA_VIOLATION_17=Entry %s read from LDIF starting at line %d \
 is not valid because it violates the server's schema configuration: %s
ERR_LDIF_FILE_EXISTS_18=The specified LDIF file %s already exists and \
 the export configuration indicates that no attempt should be made to append \
 to or replace the file
ERR_LDIF_INVALID_URL_19=Unable to parse LDIF entry %s starting at line \
 %d because the value of attribute %s was to be read from a URL but the URL \
 was invalid: %s
ERR_LDIF_URL_IO_ERROR_20=Unable to parse LDIF entry %s starting at line \
 %d because the value of attribute %s was to be read from URL %s but an error \
 occurred while trying to read that content: %s
ERR_REJECT_FILE_EXISTS_21=The specified reject file %s already exists \
 and the import configuration indicates that no attempt should be made to \
 append to or replace the file
ERR_LDIF_COULD_NOT_EVALUATE_FILTERS_FOR_IMPORT_22=An error occurred \
 while attempting to determine whether LDIF entry "%s" starting at line %d \
 should be imported as a result of the include and exclude filter \
 configuration: %s
ERR_LDIF_COULD_NOT_EVALUATE_FILTERS_FOR_EXPORT_23=An error occurred \
 while attempting to determine whether LDIF entry "%s" should be exported as a \
 result of the include and exclude filter configuration: %s
ERR_LDIF_INVALID_DELETE_ATTRIBUTES_24=Error in the LDIF change record \
 entry. Invalid attributes specified for the delete operation
ERR_LDIF_NO_MOD_DN_ATTRIBUTES_25=Error in the LDIF change record \
 entry. No attributes specified for the mod DN operation
ERR_LDIF_NO_DELETE_OLDRDN_ATTRIBUTE_26=Error in the LDIF change record \
 entry. No delete old RDN attribute specified for the mod DN operation
ERR_LDIF_INVALID_DELETE_OLDRDN_ATTRIBUTE_27=Error in the LDIF change \
 record entry. Invalid value "%s" for the delete old RDN attribute specified \
 for the mod DN operation
ERR_LDIF_INVALID_CHANGERECORD_ATTRIBUTE_28=Error in the LDIF change \
 record entry. Invalid attribute "%s" specified. Expecting attribute "%s"
ERR_LDIF_INVALID_MODIFY_ATTRIBUTE_29=Error in the LDIF change record \
 entry. Invalid attribute "%s" specified. Expecting one of the following \
 attributes "%s"
ERR_LDIF_INVALID_CHANGETYPE_ATTRIBUTE_30=Error in the LDIF change \
 record entry. Invalid value "%s" for the changetype specified. Expecting one \
 of the following values "%s"
ERR_SCHEMANAME_EMPTY_VALUE_32=The provided value could not be parsed \
 to determine whether it contained a valid schema element name or OID because \
 it was null or empty
ERR_SCHEMANAME_ILLEGAL_CHAR_33=The provided value "%s" does not \
 contain a valid schema element name or OID because it contains an illegal \
 character %c at position %d
ERR_SCHEMANAME_CONSECUTIVE_PERIODS_34=The provided value "%s" does not \
 contain a valid schema element name or OID because the numeric OID contains \
 two consecutive periods at position %d
ERR_MOVEFILE_NO_SUCH_FILE_72=The file to move %s does not exist
ERR_MOVEFILE_NOT_FILE_73=The file to move %s exists but is not a file
ERR_MOVEFILE_NO_SUCH_DIRECTORY_74=The target directory %s does not \
 exist
ERR_MOVEFILE_NOT_DIRECTORY_75=The target directory %s exists but is \
 not a directory
ERR_EMAILMSG_INVALID_SENDER_ADDRESS_76=The provided sender address %s \
 is invalid: %s
ERR_EMAILMSG_INVALID_RECIPIENT_ADDRESS_77=The provided recipient \
 address %s is invalid: %s
ERR_EMAILMSG_CANNOT_SEND_78=The specified e-mail message could not be \
 sent using any of the configured mail servers
ERR_LDAPURL_NO_COLON_SLASH_SLASH_110=The provided string "%s" cannot \
 be decoded as an LDAP URL because it does not contain the necessary :// \
 component to separate the scheme from the rest of the URL
ERR_LDAPURL_NO_SCHEME_111=The provided string "%s" cannot be decoded \
 as an LDAP URL because it does not contain a protocol scheme
ERR_LDAPURL_NO_HOST_112=The provided string "%s" cannot be decoded as \
 an LDAP URL because it does not contain a host before the colon to specify \
 the port number
ERR_LDAPURL_NO_PORT_113=The provided string "%s" cannot be decoded as \
 an LDAP URL because it does not contain a port number after the colon \
 following the host
ERR_LDAPURL_CANNOT_DECODE_PORT_114=The provided string "%s" cannot be \
 decoded as an LDAP URL because the port number portion %s cannot be decoded \
 as an integer
ERR_LDAPURL_INVALID_PORT_115=The provided string "%s" cannot be \
 decoded as an LDAP URL because the provided port number %d is not within the \
 valid range between 1 and 65535
ERR_LDAPURL_INVALID_SCOPE_STRING_116=The provided string "%s" cannot \
 be decoded as an LDAP URL because the scope string %s was not one of the \
 allowed values of base, one, sub, or subordinate
ERR_LDAPURL_PERCENT_TOO_CLOSE_TO_END_117=The provided URL component \
 "%s" could not be decoded because the percent character at byte %d was not \
 followed by two hexadecimal digits
ERR_LDAPURL_INVALID_HEX_BYTE_118=The provided URL component "%s" could \
 not be decoded because the character at byte %d was not a valid hexadecimal \
 digit
ERR_LDAPURL_CANNOT_CREATE_UTF8_STRING_119=An error occurred while \
 attempting to represent a byte array as a UTF-8 string during the course of \
 decoding a portion of an LDAP URL: %s
ERR_CHARSET_NO_COLON_120=Cannot decode value "%s" as a named character \
 set because it does not contain a colon to separate the name from the set of \
 characters
ERR_CHARSET_CONSTRUCTOR_NO_NAME_121=The named character set is invalid \
 because it does not contain a name
ERR_CHARSET_CONSTRUCTOR_INVALID_NAME_CHAR_122=The named character set is \
 invalid because the provide name "%s" has an invalid character at position \
 %d. Only ASCII alphabetic characters are allowed in the name
ERR_CHARSET_NO_NAME_123=Cannot decode value "%s" as a named character \
 set because it does not contain a name to use for the character set
ERR_CHARSET_NO_CHARS_124=Cannot decode value "%s" as a named character \
 set because there are no characters to include in the set
INFO_TIME_IN_SECONDS_125=%d seconds
INFO_TIME_IN_MINUTES_SECONDS_126=%d minutes, %d seconds
INFO_TIME_IN_HOURS_MINUTES_SECONDS_127=%d hours, %d minutes, %d seconds
INFO_TIME_IN_DAYS_HOURS_MINUTES_SECONDS_128=%d days, %d hours, %d minutes, %d \
 seconds
ERR_FILEPERM_SET_NO_SUCH_FILE_141=Unable to set permissions for file %s \
 because it does not exist
ERR_FILEPERM_SET_JAVA_EXCEPTION_143=One or more exceptions were thrown \
 in the process of updating the file permissions for %s. Some of the \
 permissions for the file may have been altered
ERR_FILEPERM_INVALID_UNIX_MODE_STRING_146=The provided string %s does \
 not represent a valid UNIX file mode. UNIX file modes must be a \
 three-character string in which each character is a numeric digit between \
 zero and seven
ERR_EXEC_DISABLED_147=The %s command will not be allowed because the \
 Directory Server has been configured to refuse the use of the exec method
ERR_RENAMEFILE_CANNOT_RENAME_157=Failed to rename file %s to %s
ERR_RENAMEFILE_CANNOT_DELETE_TARGET_158=Failed to delete target file \
 %s. Make sure the file is not currently in use by this or another \
 application
ERR_EXPCHECK_TRUSTMGR_CLIENT_CERT_EXPIRED_159=Refusing to trust client \
 or issuer certificate '%s' because it expired on %s
ERR_EXPCHECK_TRUSTMGR_CLIENT_CERT_NOT_YET_VALID_160=Refusing to trust \
 client or issuer certificate '%s' because it is not valid until %s
ERR_EXPCHECK_TRUSTMGR_SERVER_CERT_EXPIRED_161=Refusing to trust server \
 or issuer certificate '%s' because it expired on %s
ERR_EXPCHECK_TRUSTMGR_SERVER_CERT_NOT_YET_VALID_162=Refusing to trust \
 server or issuer certificate '%s' because it is not valid until %s
WARN_LDIF_VALUE_VIOLATES_SYNTAX_163=Entry %s read from LDIF starting at \
 line %d includes value "%s" for attribute %s that is invalid according to the \
 associated syntax: %s
ERR_SKIP_FILE_EXISTS_164=The specified skip file %s already exists and \
 the import configuration indicates that no attempt should be made to append \
 to or replace the file
ERR_LDIF_SKIP_165=Skipping entry %s because the DN is not one that \
 should be included based on the include and exclude branches
ERR_EMBEDUTILS_SERVER_ALREADY_RUNNING_167=The Directory Server cannot \
 be started because it is already running
INFO_EMAIL_TOOL_DESCRIPTION_171=Send an e-mail message via SMTP
INFO_EMAIL_HOST_DESCRIPTION_172=The address of the SMTP server to use to send \
 the message
INFO_EMAIL_FROM_DESCRIPTION_173=The address to use for the message sender
INFO_EMAIL_TO_DESCRIPTION_174=The address to use for the message recipient
INFO_EMAIL_SUBJECT_DESCRIPTION_175=The subject to use for the e-mail message
INFO_EMAIL_BODY_DESCRIPTION_176=The path to the file containing the text for \
 the message body
INFO_EMAIL_ATTACH_DESCRIPTION_177=The path to a file to attach to the e-mail \
 message
ERR_EMAIL_NO_SUCH_BODY_FILE_181=The file %s specified as the body file \
 for the e-mail message does not exist
ERR_EMAIL_CANNOT_PROCESS_BODY_FILE_182=An error occurred while \
 attempting to process message body file %s: %s
ERR_EMAIL_NO_SUCH_ATTACHMENT_FILE_183=The attachment file %s does not \
 exist
ERR_EMAIL_CANNOT_ATTACH_FILE_184=An error occurred while trying to \
 attach file %s: %s
ERR_EMAIL_CANNOT_SEND_MESSAGE_185=An error occurred while trying to \
 send the e-mail message: %s
INFO_BASE64_TOOL_DESCRIPTION_186=This utility can be used to encode and \
 decode information using base64
INFO_BASE64_DECODE_DESCRIPTION_188=Decode base64-encoded information into \
 raw data. When no options are specified, \
 this subcommand reads from standard input and writes to standard output
INFO_BASE64_ENCODE_DESCRIPTION_189=Encode raw data using base64. \
 When no options are specified, this subcommand reads from standard input and \
 writes to standard output
INFO_BASE64_ENCODED_DATA_DESCRIPTION_190=The base64-encoded data to be decoded
INFO_BASE64_ENCODED_FILE_DESCRIPTION_191=The path to a file containing the \
 base64-encoded data to be decoded
INFO_BASE64_RAW_DATA_DESCRIPTION_192=The raw data to be base64 encoded
INFO_BASE64_RAW_FILE_DESCRIPTION_193=The path to a file containing the raw \
 data to be base64 encoded
INFO_BASE64_TO_ENCODED_FILE_DESCRIPTION_194=The path to a file to which the \
 base64-encoded data should be written
INFO_BASE64_TO_RAW_FILE_DESCRIPTION_195=The path to a file to which the raw \
 base64-decoded data should be written
ERR_BASE64_CANNOT_READ_RAW_DATA_196=An error occurred while attempting \
 to read the raw data to encode: %s
ERR_BASE64_CANNOT_WRITE_ENCODED_DATA_197=An error occurred while \
 attempting to write the encoded data: %s
ERR_BASE64_CANNOT_READ_ENCODED_DATA_198=An error occurred while \
 attempting to read the base64-encoded data: %s
ERR_BASE64_CANNOT_WRITE_RAW_DATA_199=An error occurred while \
 attempting to write the decoded data: %s
ERR_BASE64_UNKNOWN_SUBCOMMAND_200=Unknown subcommand %s
ERR_LDIF_REJECTED_BY_PLUGIN_NOMESSAGE_224=Rejecting entry %s because \
 it was rejected by a plugin
ERR_LDIF_REJECTED_BY_PLUGIN_225=Rejecting entry %s because it was \
 rejected by a plugin: %s
INFO_LDAP_CONN_PROMPT_SECURITY_LDAP_226=LDAP
INFO_LDAP_CONN_PROMPT_SECURITY_USE_SSL_227=LDAP with SSL
INFO_LDAP_CONN_PROMPT_SECURITY_USE_START_TLS_228=LDAP with StartTLS
INFO_LDAP_CONN_PROMPT_SECURITY_USE_TRUST_ALL_229=Automatically trust
INFO_LDAP_CONN_PROMPT_SECURITY_TRUSTSTORE_PATH_230=Truststore path:
INFO_LDAP_CONN_PROMPT_SECURITY_TRUSTSTORE_PASSWORD_231=Password for truststore '%s':
INFO_LDAP_CONN_PROMPT_SECURITY_KEYSTORE_PATH_233=Keystore path:
INFO_LDAP_CONN_PROMPT_SECURITY_KEYSTORE_PASSWORD_234=Password for keystore '%s':
INFO_LDAP_CONN_HEADING_CONNECTION_PARAMETERS_236=>>>> Specify OpenDJ LDAP \
 connection parameters
ERR_LDAP_CONN_BAD_HOST_NAME_237=The hostname "%s" could not be \
 resolved. Please check you have provided the correct address
ERR_LDAP_CONN_BAD_PORT_NUMBER_238=Invalid port number "%s". Please \
 enter a valid port number between 1 and 65535
INFO_LDAP_CONN_PROMPT_HOST_NAME_239=Directory server hostname or IP address [%s]:
INFO_LDAP_CONN_PROMPT_PORT_NUMBER_240=Directory server port number [%d]:
INFO_LDAP_CONN_PROMPT_BIND_DN_241=Administrator user bind DN [%s]:
INFO_LDAP_CONN_PROMPT_SECURITY_USE_SECURE_CTX_242=How do you want to connect?
INFO_LDAP_CONN_PROMPT_SECURITY_PROTOCOL_DEFAULT_CHOICE_243=%d
ERR_LDAP_CONN_PROMPT_SECURITY_INVALID_FILE_PATH_244=The provided path is not valid
INFO_LDAP_CONN_PROMPT_SECURITY_TRUST_METHOD_245=How do you want to trust the server certificate?
INFO_LDAP_CONN_PROMPT_SECURITY_TRUSTSTORE_246=Use a truststore
INFO_LDAP_CONN_PROMPT_SECURITY_MANUAL_CHECK_247=Manually validate
INFO_LDAP_CONN_PROMPT_SECURITY_SERVER_CERTIFICATE_248=Server Certificate:
INFO_LDAP_CONN_SECURITY_SERVER_CERTIFICATE_249=%s
INFO_LDAP_CONN_PROMPT_SECURITY_TRUST_OPTION_250=Do you trust this server certificate?
INFO_LDAP_CONN_PROMPT_SECURITY_TRUST_OPTION_NO_251=No
INFO_LDAP_CONN_PROMPT_SECURITY_TRUST_OPTION_SESSION_252=Yes, for this session only
INFO_LDAP_CONN_PROMPT_SECURITY_TRUST_OPTION_ALWAYS_253=Yes, also add it to a truststore
INFO_LDAP_CONN_PROMPT_SECURITY_CERTIFICATE_DETAILS_254=View certificate details
INFO_LDAP_CONN_SECURITY_SERVER_CERTIFICATE_USER_DN_255 =User DN  : %s
INFO_LDAP_CONN_SECURITY_SERVER_CERTIFICATE_VALIDITY_256=Validity : From '%s'%n             To '%s'
INFO_LDAP_CONN_SECURITY_SERVER_CERTIFICATE_ISSUER_257  =Issuer   : %s
INFO_LDAP_CONN_PROMPT_SECURITY_CERTIFICATE_ALIASES_258=Which certificate do you want to use?
INFO_LDAP_CONN_PROMPT_SECURITY_CERTIFICATE_ALIAS_259=%s (%s)
INFO_PROMPT_SINGLE_DEFAULT_261=%s [%s]:
INFO_LDAP_CONN_PROMPT_ADMINISTRATOR_UID_262=Global Administrator User ID [%s]:
INFO_LDAP_CONN_GLOBAL_ADMINISTRATOR_OR_BINDDN_PROMPT_263=Global Administrator \
 User ID, or bind DN if no Global Administrator is defined [%s]:
ERR_CONFIRMATION_TRIES_LIMIT_REACHED_267=Confirmation tries limit reached (%d)
ERR_UNEXPECTED_268=Unexpected error. Details: %s
ERR_TRIES_LIMIT_REACHED_269=Input tries limit reached (%d)
INFO_ADMIN_CONN_PROMPT_PORT_NUMBER_270=Directory server administration port number [%d]:
ERR_LDIF_INVALID_ATTR_OPTION_271=Unable to parse LDIF entry %s starting \
 at line %d because it has an invalid binary option for attribute %s
ERR_CERTMGR_INVALID_PKCS11_PATH_272=Invalid key store path for PKCS11 \
keystore, it must be %s
ERR_CERTMGR_INVALID_KEYSTORE_PATH_273=Key store path %s exists but is \
not a file
ERR_CERTMGR_INVALID_PARENT_274=Parent directory for key store path \
 %s does not exist or is not a directory
ERR_CERTMGR_INVALID_STORETYPE_275=Invalid key store type, it must \
be one of the following: %s, %s, %s or %s
ERR_CERTMGR_KEYSTORE_NONEXISTANT_276=Keystore does not exist, \
it must exist to retrieve an alias, delete an alias or generate a \
certificate request
ERR_CERTMGR_VALIDITY_277=Validity value %d is invalid, it must \
be a positive integer
ERR_CERTMGR_ALIAS_ALREADY_EXISTS_278= A certificate with the alias \
%s already exists in the key store
ERR_CERTMGR_ADD_CERT_279=The following error occurred when \
adding a certificate with alias %s to the keystore: %s
ERR_CERTMGR_ALIAS_INVALID_280=The alias %s cannot be added to the \
keystore for one of the following reasons: it already exists in the \
keystore, or, it is not an instance of a trusted certificate class
ERR_CERTMGR_CERT_REPLIES_INVALID_281=The alias %s is an instance of \
a private key entry, which is not supported being added to the keystore \
at this time
ERR_CERTMGR_DELETE_ALIAS_282=The following error occurred when \
deleting a certificate with alias %s from the keystore: %s
ERR_CERTMGR_GEN_SELF_SIGNED_CERT_284=The following error occurred when \
generating a self-signed certificate using the alias %s: %s
ERR_CERTMGR_INVALID_CERT_FILE_285=The certificate file %s is \
invalid because it does not exists, or exists, but is not a file
ERR_CERTMGR_ALIAS_CAN_NOT_DELETE_286=The alias %s cannot be \
deleted from the keystore because it does not exist
ERR_CERTMGR_TRUSTED_CERT_292=The trusted certificate associated \
with alias %s could not be added to keystore because of the following \
reason: %s
ERR_CERTMGR_FILE_NAME_INVALID_293=The %s is invalid because it is \
null
ERR_CERTMGR_VALUE_INVALID_294=The argument %s is invalid because it \
is either null, or has zero length
ERR_CERTMGR_CLASS_NOT_FOUND_295=A security class cannot be found \
in this JVM because of the following reason: %s
ERR_CERTMGR_SECURITY_296=The security classes could not be \
initialized because of the following reason: %s
ERR_CERTMGR_NO_METHOD_297=A method needed in the security classes \
could not be located because of the following reason: %s
ERR_CERTMGR_CERTGEN_NOT_FOUND_298=The CertAndKeyGen security class cannot be \
found, consider setting -D%s=
WARN_EXPORT_LDIF_SET_PERMISSION_FAILED_300=An error occurred while \
 setting file permissions for the LDIF file %s: %s
ERR_LDIF_READ_ATTR_SKIP_301=Skipping entry %s because the following error \
was received when reading its attributes: %s
ERR_BACKUP_CANNOT_GET_MAC_305=An error occurred while attempting to \
 obtain the %s MAC provider to create the signed hash for the backup: %s
ERR_BACKUP_CANNOT_GET_DIGEST_306=An error occurred while attempting \
 to obtain the %s message digest to create the hash for the backup: %s
ERR_BACKUP_CANNOT_CREATE_ARCHIVE_FILE_307=An error occurred while \
 trying to create the archive file %s in directory %s for the backup %s: %s
ERR_BACKUP_CANNOT_GET_CIPHER_308=An error occurred while attempting \
 to obtain the cipher to use to encrypt the backup: %s
ERR_BACKUP_ZIP_COMMENT_309=%s backup %s
ERR_BACKUP_CANNOT_LIST_LOG_FILES_310=An error occurred while \
 attempting to obtain a list of the files in directory %s to include in the \
 backup: %s
ERR_BACKUP_CANNOT_WRITE_ARCHIVE_FILE_311=An error occurred while \
 attempting to back up file %s of backup %s: %s
ERR_BACKUP_CANNOT_CLOSE_ZIP_STREAM_312=An error occurred while \
 trying to close the archive file %s in directory %s: %s
ERR_BACKUP_UNSIGNED_HASH_ERROR_313=The computed hash of backup %s \
 is different to the value computed at time of backup
ERR_BACKUP_SIGNED_HASH_ERROR_314=The computed signed hash of backup \
 %s is different to the value computed at time of backup
ERR_CANNOT_RENAME_RESTORE_DIRECTORY_315=The directory %s, \
 containing the files restored from backup, could not be renamed to the \
 directory %s
ERR_BACKUP_CANNOT_UPDATE_BACKUP_DESCRIPTOR_316=An error occurred \
 while attempting to update the backup descriptor file %s with information \
 about the backup: %s
ERR_BACKUP_CANNOT_RESTORE_317=An error occurred while attempting to \
 restore the files from backup %s: %s
NOTE_BACKUP_FILE_UNCHANGED_318=Backup file has not changed: %s
NOTE_BACKUP_VERIFY_FILE_319=Verifying backup file: %s
NOTE_BACKUP_RESTORED_FILE_320=Restored backup file: %s (size %d)
NOTE_BACKUP_ARCHIVED_FILE_321=Archived backup file: %s
ERR_BACKUP_CANNOT_GET_MAC_KEY_ID_323=An error occurred while attempting to \
 obtain the MAC key ID to create the signed hash for the backup %s : %s
ERR_BACKUP_CANNOT_CREATE_DIRECTORY_TO_RESTORE_FILE_324=An error occurred while \
 attempting to create a directory to restore the file %s for backup of %s
ERR_BACKUP_CANNOT_SAVE_FILES_BEFORE_RESTORE_325=An error occurred while \
 attempting to save files from root directory %s to target directory %s, for \
 backup of %s : %s
ERR_BACKUP_CANNOT_CREATE_SAVE_DIRECTORY_326=An error occurred while \
 attempting to create a save directory with base path %s before restore of \
 backup of %s: %s