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

mrossign
06.11.2009 3a9e211d36ee94ff99941943b3b51e0f768624f5
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
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License, Version 1.0 only
# (the "License").  You may not use this file except in compliance
# with the License.
#
# You can obtain a copy of the license at
# trunk/opends/resource/legal-notices/OpenDS.LICENSE
# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at
# trunk/opends/resource/legal-notices/OpenDS.LICENSE.  If applicable,
# add the following below this CDDL HEADER, with the fields enclosed
# by brackets "[]" replaced with your own identifying information:
#      Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#      Copyright 2006-2008 Sun Microsystems, Inc.
#
# Global directives
#
global.category=ACCESS_CONTROL
#
# Format string definitions
#
# Keys must be formatted as follows:
#
# [SEVERITY]_[DESCRIPTION]_[ORDINAL]
#
# where:
#
# SEVERITY is one of:
# [INFO, MILD_WARN, SEVERE_WARN, MILD_ERR, SEVERE_ERR, FATAL_ERR, DEBUG, NOTICE]
#
# 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
#
###SEVERE_WARN_ACI_SYNTAX_GENERAL_PARSE_FAILED_1=The provided string  "%s" could \
### not be parsed as a valid Access Control Instruction (ACI) because it failed \
### general ACI syntax evaluation
###SEVERE_WARN_ACI_SYNTAX_INVAILD_VERSION_2=The provided Access Control \
### Instruction (ACI) version value  "%s" is invalid, only the version 3.0 is \
### supported
###SEVERE_WARN_ACI_SYNTAX_INVALID_ACCESS_TYPE_VERSION_3=The provided Access \
### Control Instruction access type value  "%s" is invalid. A valid access type \
### value is either allow or deny
###SEVERE_WARN_ACI_SYNTAX_INVALID_RIGHTS_SYNTAX_4=The provided Access Control \
### Instruction (ACI) rights values "%s" are invalid. The rights must be a list \
### of 1 to 6 comma-separated keywords enclosed in parentheses
###SEVERE_WARN_ACI_SYNTAX_INVALID_RIGHTS_KEYWORD_5=The provided Access Control \
### Instruction (ACI) rights keyword values "%s" are invalid. The valid rights \
### keyword values are one or more of the following: read, write, add, delete, \
### search, compare or the single value all
MILD_ERR_ACI_SYNTAX_BIND_RULE_MISSING_CLOSE_PAREN_6=El valor "%s" de la regla enlace de la instrucci\u00f3n de control de acceso (ACI, Access Control Instruction) proporcionado no es v\u00e1lido porque le falta el par\u00e9ntesis de cierre que corresponde al par\u00e9ntesis inicial de apertura
MILD_ERR_ACI_SYNTAX_INVALID_BIND_RULE_SYNTAX_7=El valor "%s" de la regla enlace de la instrucci\u00f3n de control de acceso (ACI, Access Control Instruction) proporcionado no es v\u00e1lido. Un valor de la regla de enlace debe tener el siguiente formato: operador de palabra clave "expresi\u00f3n"
###SEVERE_WARN_ACI_SYNTAX_INVALID_BIND_RULE_KEYWORD_8=The provided Access \
### Control Instruction (ACI) bind rule keyword value "%s" is invalid. A valid \
### keyword value is one of the following: userdn, groupdn, roledn, userattr,ip, \
### dns, dayofweek, timeofday or authmethod
###SEVERE_WARN_ACI_SYNTAX_INVALID_BIND_RULE_OPERATOR_9=The provided Access \
### Control Instruction (ACI) bind rule operator value  "%s" is invalid. A valid \
### bind rule operator value is either '=' or "!="
###SEVERE_WARN_ACI_SYNTAX_MISSING_BIND_RULE_EXPRESSION_10=The provided Access \
### Control Instruction (ACI) bind rule expression value corresponding to the \
### keyword value "%s" is missing an expression. A valid bind rule value must be \
### in the following form: keyword operator "expression"
###SEVERE_WARN_ACI_SYNTAX_INVALID_BIND_RULE_BOOLEAN_OPERATOR_11=The provided \
### Access Control Instruction (ACI) bind rule boolean operator value "%s" is \
### invalid. A valid bind rule boolean operator value is either "OR" or "AND"
###SEVERE_WARN_ACI_SYNTAX_INVALID_BIND_RULE_KEYWORD_OPERATOR_COMBO_12=The \
### provided Access Control Instruction (ACI) bind rule keyword string  "%s" is \
### invalid for the bind rule operator string "%s"
###SEVERE_WARN_ACI_SYNTAX_INVALID_USERDN_URL_13=The provided Access Control \
### Instruction (ACI) bind rule userdn expression failed to URL decode for the \
### following reason: %s
###SEVERE_WARN_ACI_SYNTAX_INVALID_ROLEDN_EXPRESSION_14=The provided Access \
### Control Instruction (ACI) bind rule roledn expression value "%s" is invalid. \
### A valid roledn keyword expression value requires one or more LDAP URLs in the \
### following format: ldap:///dn [|| ldap:///dn] ... [|| ldap:///dn]
###SEVERE_WARN_ACI_SYNTAX_INVALID_ROLEDN_URL_15=The provided Access Control \
### Instruction (ACI) bind rule roledn expression failed to URL decode for the \
### following reason: %s
###SEVERE_WARN_ACI_SYNTAX_INVALID_GROUPDN_EXPRESSION_16=The provided Access \
### Control Instruction (ACI) bind rule groupdn expression value "%s" is invalid. \
### A valid groupdn keyword expression  value requires one or more LDAP URLs in \
### the following format: ldap:///groupdn [|| ldap:///groupdn] ... [|| \
### ldap:///groupdn]
###SEVERE_WARN_ACI_SYNTAX_INVALID_GROUPDN_URL_17=The provided Access Control \
### Instruction (ACI) bind rule groupdn expression value failed to URL decode for \
### the following reason: %s
###SEVERE_WARN_ACI_SYNTAX_ADDRESS_FAMILY_MISMATCH_18=The network mask value "%s" \
### is not valid for the ip expression network address "%s"
###SEVERE_WARN_ACI_SYNTAX_INVALID_NETWORK_BIT_MATCH_19=The bit mask for address \
### type value "%s" is not valid.%s
###SEVERE_WARN_ACI_SYNTAX_INVALID_IP_CRITERIA_DECODE_20=The provided Access \
### Control Instruction (ACI) bind rule ip expression value failed to decode for \
### the following reason: %s
###SEVERE_WARN_ACI_SYNTAX_INVALID_IP_EXPRESSION_21=The provided Access Control \
### Instruction (ACI) bind rule ip expression value "%s" is invalid. A valid ip \
### keyword expression requires one or more comma-separated elements of a valid \
### IP address list expression
###SEVERE_WARN_ACI_SYNTAX_INVALID_DNS_EXPRESSION_22=The provided Access Control \
### Instruction (ACI) bind rule dns expression value "%s" is invalid. A valid dns \
### keyword expression value requires a valid fully qualified DNS domain name
###SEVERE_WARN_ACI_SYNTAX_INVALID_DNS_WILDCARD_23=The provided Access Control \
### Instruction (ACI) bind rule dns expression value "%s" is invalid, because a \
### wild-card pattern was found in the wrong position. A valid dns keyword \
### wild-card expression value requires the '*' character only be in the leftmost \
### position of the domain name
###SEVERE_WARN_ACI_SYNTAX_INVALID_DAYOFWEEK_24=The provided Access Control \
### Instruction (ACI) bind rule dayofweek expression value "%s" is invalid, \
### because of an invalid day of week value. A valid dayofweek value is one of \
### the following English three-letter abbreviations for the days of the week: \
### sun, mon, tue, wed, thu, fri, or sat
###SEVERE_WARN_ACI_SYNTAX_INVALID_TIMEOFDAY_25=The provided Access Control \
### Instruction (ACI) bind rule timeofday expression value "%s" is invalid. A \
### valid timeofday value is expressed as four digits representing hours and \
### minutes in the 24-hour clock (0 to 2359)
###SEVERE_WARN_ACI_SYNTAX_INVALID_TIMEOFDAY_RANGE_26=The provided Access Control \
### Instruction (ACI) bind rule timeofday expression value "%s" is not in the \
### valid range. A valid timeofday value is expressed as four digits representing \
### hours and minutes in the 24-hour clock (0 to 2359)
###SEVERE_WARN_ACI_SYNTAX_INVALID_AUTHMETHOD_EXPRESSION_27=The provided Access \
### Control Instruction (ACI) bind rule authmethod expression value "%s" is \
### invalid. A valid authmethod value is one of the following: none, simple,SSL, \
### or "sasl mechanism", where mechanism is one of the supported SASL mechanisms \
### including CRAM-MD5, DIGEST-MD5, and GSSAPI
###SEVERE_WARN_ACI_SYNTAX_INVALID_USERATTR_EXPRESSION_28=The provided Access \
### Control Instruction (ACI) bind rule userattr expression value "%s" is invalid
###SEVERE_WARN_ACI_SYNTAX_INVALID_USERATTR_KEYWORD_29=The provided Access \
### Control Instruction (ACI) bind rule userattr expression value "%s" is not \
### supported
###SEVERE_WARN_ACI_SYNTAX_INVALID_USERATTR_INHERITANCE_PATTERN_30=The provided \
### Access Control Instruction (ACI) bind rule userattr expression inheritance \
### pattern value "%s" is invalid. A valid inheritance pattern value must have the \
### following format: parent[inheritance_level].attribute#bindType
###SEVERE_WARN_ACI_SYNTAX_MAX_USERATTR_INHERITANCE_LEVEL_EXCEEDED_31=The \
### provided Access Control Instruction (ACI) bind rule userattr expression \
### inheritance pattern value "%s" is invalid. The inheritance level value cannot \
### exceed the max level limit of %s
###SEVERE_WARN_ACI_SYNTAX_INVALID_INHERITANCE_VALUE_32=The provided Access \
### Control Instruction (ACI) bind rule userattr expression inheritance pattern \
### value "%s" is invalid because it is non-numeric
###SEVERE_WARN_ACI_SYNTAX_INVALID_TARGET_SYNTAX_33=The provided Access Control \
### Instruction (ACI) target rule value "%s" is invalid. A valid target rule value \
### must be in the following form: keyword operator "expression"
###SEVERE_WARN_ACI_SYNTAX_INVALID_TARGET_KEYWORD_34=The provided Access Control \
### Instruction (ACI) target keyword value "%s" is invalid. A valid target \
### keyword value is one of the following: target, targetscope, targetfilter, \
### targetattr or targetattrfilters
###SEVERE_WARN_ACI_SYNTAX_INVALID_TARGET_NOT_OPERATOR_35=The provided Access \
### Control Instruction (ACI) target operator value "%s" is invalid. The only \
### valid target operator value for the "%s" keyword is '='
###SEVERE_WARN_ACI_SYNTAX_TARGET_KEYWORD_NOT_SUPPORTED_36=The provided Access \
### Control Instruction (ACI) target keyword value "%s" is not supported at this \
### time
###SEVERE_WARN_ACI_SYNTAX_INVALID_TARGET_DUPLICATE_KEYWORDS_37=The provided \
### Access Control Instruction (ACI) target keyword value "%s" was seen multiple \
### times in the ACI "%s"
###SEVERE_WARN_ACI_SYNTAX_INVALID_TARGETS_OPERATOR_38=The provided Access \
### Control Instruction (ACI) target keyword operator value  "%s" is invalid. A \
### valid target keyword operator value is either '=' or "!="
###SEVERE_WARN_ACI_SYNTAX_INVALID_TARGETSCOPE_EXPRESSION_39=The provided Access \
### Control Instruction (ACI) targetscope expression operator value  "%s" is \
### invalid. A valid targetscope expression value is one of the following: one, \
### onelevel, subtree or subordinate
###SEVERE_WARN_ACI_SYNTAX_INVALID_TARGETKEYWORD_EXPRESSION_40=The provided \
### Access Control Instruction (ACI) target expression value "%s" is invalid. A \
### valid target keyword expression  value requires a LDAP URL in the following \
### format: ldap:///distinguished_name_pattern
###SEVERE_WARN_ACI_SYNTAX_TARGET_DN_NOT_DESCENDENTOF_41=The provided Access \
### Control Instruction (ACI) target expression DN value "%s" is invalid. The \
### target expression DN value must be a descendant of the ACI entry DN "%s", if \
### no wild-card is specified in the target expression DN
###SEVERE_WARN_ACI_SYNTAX_INVALID_TARGETATTRKEYWORD_EXPRESSION_42=The provided \
### Access Control Instruction (ACI) targetattr expression value "%s" is invalid. \
### A valid targetattr keyword expression value requires one or more valid \
### attribute type names in the following format: attribute1 [|| attribute1] ... \
### [|| attributeN]
###SEVERE_WARN_ACI_SYNTAX_INVALID_TARGETFILTERKEYWORD_EXPRESSION_43=The provided \
### Access Control Instruction (ACI) targetfilter expression value "%s" is \
### invalid because it is not a valid LDAP filter
INFO_ACI_ADD_FAILED_PRIVILEGE_44=Se ha producido un error al intentar a\u00f1adir la entrada "%s", que contiene un tipo de atributo de la ACI, porque al ND de autorizaci\u00f3n "%s" le faltaban los privilegios para modificar ACL
INFO_ACI_MODIFY_FAILED_PRIVILEGE_45=Se ha producido un error al intentar modificar un tipo de atributo de la ACI en la entrada "%s" porque al ND de autorizaci\u00f3n "%s" le faltaban los privilegios para modificar ACL
###SEVERE_WARN_ACI_ADD_FAILED_DECODE_46=An attempt to add the entry "%s" \
### containing an aci attribute type failed because of the following reason: %s
###SEVERE_WARN_ACI_MODIFY_FAILED_DECODE_47=An attempt to modify an aci attribute \
### type in the entry "%s" failed because of the following reason: %s
###SEVERE_WARN_ACI_ADD_LIST_FAILED_DECODE_48= "%s", located in the entry "%s", \
### because of the following reason: %s
INFO_ACI_ADD_LIST_NO_ACIS_49=No se han encontrado tipos de atributos de la instrucci\u00f3n de control de acceso (ACI, Access Control Instruction) en el contexto "%s"
INFO_ACI_ADD_LIST_ACIS_50=Los tipos de atributo %s de la instrucci\u00f3n de control de acceso (ACI, Access Control Instruction) encontrados en el contexto "%s" que se han a\u00f1adido a la m\u00e1quina de evaluaci\u00f3n del control de acceso
###SEVERE_WARN_ACI_SYNTAX_INVALID_USERATTR_ROLEDN_INHERITANCE_PATTERN_51=The \
### provided Access Control Instruction (ACI) bind rule userattr expression \
### inheritance pattern value "%s" is invalid for the roledn keyword because it \
### starts with the string "parent["
###SEVERE_WARN_ACI_SYNTAX_INVALID_TARGATTRFILTERS_OPERATION_52=The provided \
### Access Control Instruction (ACI) targattrfilter expression value %s is \
### invalid because %s
###SEVERE_WARN_ACI_SYNTAX_INVALID_TARGATTRFILTERS_EXPRESSION_53=The provided \
### Access Control Instruction (ACI) targattrfilter expression value %s is \
### invalid because it is not in the correct format.A valid targattrsfilters \
### expression value must be in the following format: "add=attr1: F1 && attr2: F2 \
### ... && attrN: FN,del= attr1: F1 && attr2: F2 ... && attrN: FN"
###SEVERE_WARN_ACI_SYNTAX_INVALID_TARGATTRFILTERS_OPS_MATCH_54=The provided \
### Access Control Instruction (ACI) targattrfilter expression value %s is \
### invalid because the both operation tokens match in the two filter lists
###SEVERE_WARN_ACI_SYNTAX_INVALID_TARGATTRFILTERS_MAX_FILTER_LISTS_55=The \
### provided Access Control Instruction (ACI) targattrfilters expression value %s \
### is invalid because there are more than two filter list statements
###SEVERE_WARN_ACI_SYNTAX_INVALID_TARGATTRFILTERS_FILTER_LIST_FORMAT_56=The \
### provided Access Control Instruction (ACI) targattrfilters expression value %s \
### is invalid because the provided filter list string is in the wrong format. A \
### valid targattrfilters filter list must be in the following format: add=attr1: \
### F1 && attr2: F2 ... && attrN: FN
###SEVERE_WARN_ACI_SYNTAX_INVALID_TARGATTRFILTERS_FILTER_LISTS_FILTER_57=The \
### provided Access Control Instruction (ACI) targattrfilters expression value %s \
### is invalid because one or more of the specified filters are invalid for the \
### following reason: %s
###SEVERE_WARN_ACI_SYNTAX_INVALID_TARGATTRFILTERS_FILTER_LISTS_ATTR_FILTER_58=The \
### provided Access Control Instruction (ACI) targattrfilters expression value %s \
### is invalid because one or more of the specified filters are invalid because \
### of non-matching attribute type names in the filter
###SEVERE_WARN_ACI_SYNTAX_INVALID_ATTRIBUTE_TYPE_NAME_59=The provided Access \
### Control Instruction (ACI) attribute name value %s is invalid. A valid \
### attribute type name must begin with an ASCII letter and must contain only \
### ASCII letters,digits or the "-" character
NOTICE_ACI_SYNTAX_DUBIOUS_AUTHMETHOD_SASL_MECHANISM_60=El mecanismo "%s" de SASL proporcionado en la expresi\u00f3n authmethod de la regla de expresi\u00f3n de la instrucci\u00f3n de control de acceso (ACI, Access Control Instruction) no es uno de los mecanismos registrados actualmente en el servidor
###SEVERE_WARN_ACI_LOCALHOST_DOESNT_MATCH_CANONICAL_VALUE_61=The provided Access \
### Control Instruction (ACI) bind rule dns expression value "%s" references \
### hostname %s, but the canonical representation for that hostname is configured \
### to be %s.  The server will attempt to automatically interpret the correct \
### localhost value
###SEVERE_WARN_ACI_HOSTNAME_DOESNT_MATCH_CANONICAL_VALUE_62=The provided Access \
### Control Instruction (ACI) bind rule dns expression value "%s" references \
### hostname %s, which resolves to IP address %s, but the canonical hostname for \
### that IP address is %s.  This likely means that the provided hostname will \
### never match any clients
###SEVERE_WARN_ACI_ERROR_CHECKING_CANONICAL_HOSTNAME_63=An error occurred while \
### attempting to determine whether hostname %s referenced in dns expression bind \
### rule "%s" used the correct canonical representation:  %s.  This likely means \
### that the provided hostname will never match any clients
INFO_ACI_DESCRIPTION_GLOBAL_ACI_64=Especifica un tipo de atributo de la instrucci\u00f3n de control de acceso (ACI, Access Control Instruction) que se puede utilizar para definir las ACI de \u00e1mbito global en los contextos de los nombres
INFO_ACI_ADD_LIST_NO_GLOBAL_ACIS_65=No se han encontrado tipos de atributo de la instrucci\u00f3n de control de acceso (ACI, Access Control Instruction)
INFO_ACI_ADD_LIST_GLOBAL_ACIS_66=Los tipos de atributo %s de la instrucci\u00f3n de control de acceso (ACI, Access Control Instruction) a\u00f1adidos a la m\u00e1quina de evaluaci\u00f3n del control de acceso
INFO_ACI_HANDLER_FAIL_PROCESS_GLOBAL_ACI_67=Se ha producido un error inesperado al procesar el atributo ds-cfg-global-aci en la entrada de configuraci\u00f3n %s
INFO_ACI_HANDLER_FAIL_PROCESS_ACI_68=Se ha producido un error inesperado al procesar los atributos de la ACI en el sistema de configuraci\u00f3n
###SEVERE_WARN_PATTERN_DN_CONSECUTIVE_WILDCARDS_IN_VALUE_69=The pattern DN %s is \
### not valid because it contains two consecutive wildcards in an attribute value
###SEVERE_WARN_PATTERN_DN_TYPE_CONTAINS_SUBSTRINGS_70=The pattern DN %s is not \
### valid because it uses wildcards for substring matching on an attribute type. \
### A single wildcard is allowed in place of an attribute type
###SEVERE_WARN_PATTERN_DN_TYPE_WILDCARD_IN_MULTIVALUED_RDN_71=The pattern DN %s \
### is not valid because it contains a wildcard in an attribute type in a \
### multi-valued RDN
###SEVERE_WARN_ACI_HANDLER_CANNOT_LOCK_NEW_SUPERIOR_USER_72=Unable to obtain a \
### lock on the ModifyDN new superior entry %s
###SEVERE_WARN_ACI_NOT_VALID_DN_73=Selfwrite check skipped because an attribute \
### "%s" with a distinguished name syntax was not a valid DN
###SEVERE_WARN_ACI_TARGETATTR_INVALID_ATTR_TOKEN_74=The provided Access Control \
### Instruction (ACI) targetattr expression value "%s" is invalid because the \
### expression contains invalid or duplicate tokens
###SEVERE_WARN_ACI_SYNTAX_ROLEDN_NOT_SUPPORTED_75=The provided Access Control \
### Instruction (ACI) expression value "%s" is invalid because it contains the \
### roledn keyword, which is not supported,  replace it with the groupdn keyword
###SEVERE_WARN_ACI_SERVER_DECODE_FAILED_76=Failed to decode the Access Control \
### Instruction (ACI)%s
###SEVERE_WARN_ACI_ENTER_LOCKDOWN_MODE_77=The server is being put into lockdown \
### mode because invalid ACIs rules were detected either when the server was \
### started or during a backend initialization
###SEVERE_WARN_ACI_SYNTAX_INVALID_USERATTR_URL_78=The provided Access Control \
### Instruction (ACI) bind rule userattr expression value failed to URL decode \
### for the following reason: %s
###SEVERE_WARN_ACI_SYNTAX_INVALID_USERATTR_BASEDN_URL_79=The provided Access \
### Control Instruction (ACI) bind rule userattr expression value failed to parse \
### because the ldap URL "%s" contains an empty base DN
###SEVERE_WARN_ACI_SYNTAX_INVALID_USERATTR_ATTR_URL_80=The provided Access \
### Control Instruction (ACI) bind rule userattr expression value failed to parse \
### because the attribute field of the ldap URL "%s" either contains more than \
### one description or the field is empty
###SEVERE_WARN_ACI_SYNTAX_INVALID_PREFIX_FORMAT_81=The provided Access Control \
### Instruction (ACI) bind rule IP address expression failed to parse because the \
### prefix part of the expression "%s" has an invalid format
###SEVERE_WARN_ACI_SYNTAX_INVALID_PREFIX_VALUE_82=The provided Access Control \
### Instruction (ACI) bind rule IP address expression failed to parse because the \
### prefix value of the expression "%s" was an invalid value. All values must \
### greater than or equal to 0 and either less than or equal 32 for IPV4 \
### addresses or less than or equal to 128 for IPV6 addresses
###SEVERE_WARN_ACI_SYNTAX_PREFIX_NOT_NUMERIC_83=The provided Access Control \
### Instruction (ACI) bind rule IP address expression failed to parse because the \
### prefix part of the expression "%s" has an non-numeric value
###SEVERE_WARN_ACI_SYNTAX_INVALID_IPV4_FORMAT_84=The provided Access Control \
### Instruction (ACI) bind rule IP address expression failed to parse because the \
### the IPv4 address expression "%s" format was invalid
###SEVERE_WARN_ACI_SYNTAX_INVALID_IPV4_VALUE_85=The provided Access Control \
### Instruction (ACI) bind rule IP address expression failed to parse because the \
### IPv4 address expression "%s" contains an invalid value.  All values of the \
### address must be between 0 and 255
###SEVERE_WARN_ACI_SYNTAX_IPV4_NOT_NUMERIC_86=The provided Access Control \
### Instruction (ACI) bind rule IP address expression failed to parse because the \
### the IPv4 address expression "%s" contains a non-numeric value
###SEVERE_WARN_ACI_SYNTAX_IPV6_WILDCARD_INVALID_87=The provided Access Control \
### Instruction (ACI) bind rule IP address expression failed to parse because the \
### the IPv6 address expression "%s" contains an illegal wildcard character. \
### Wildcards are not supported when using IPv6 addresses in a IP bind rule \
### expression
###SEVERE_WARN_ACI_SYNTAX_INVALID_IPV6_FORMAT_88=The provided Access Control \
### Instruction (ACI) bind rule IP address expression "%s" failed to parse for \
### the following reason: "%s"
###SEVERE_WARN_ACI_SYNTAX_INVALID_NETMASK_FORMAT_89=The provided Access Control \
### Instruction (ACI) bind rule IP address expression failed to parse because the \
### netmask part of the expression "%s" has an invalid format
###SEVERE_WARN_ACI_SYNTAX_INVALID_NETMASK_90=The provided Access Control \
### Instruction (ACI) bind rule IP address expression failed to parse because the \
### netmask part of the expression "%s" has an invalid value
###SEVERE_WARN_ACI_SYNTAX_INVALID_TARGETCONTROL_EXPRESSION_91=The provided \
### Access Control Instruction (ACI) targetcontrol expression value "%s" is \
### invalid. A valid targetcontrol keyword expression value requires one or more \
### valid control OID strings in the following format: oid [|| oid1] ... [|| \
### oidN]
###SEVERE_WARN_ACI_SYNTAX_ILLEGAL_CHAR_IN_NUMERIC_OID_92=The provided Access \
### Control Instruction (ACI) targetcontrol OID value "%s" could not be parsed \
### because the value contained an illegal character %c at position %d
###SEVERE_WARN_ACI_SYNTAX_DOUBLE_PERIOD_IN_NUMERIC_OID_93=The provided Access \
### Control Instruction (ACI) targetcontrol OID value "%s" could not be parsed \
### because the numeric OID contained two consecutive periods at position %d
###SEVERE_WARN_ACI_SYNTAX_DECODE_EFFECTIVERIGHTS_FAIL_94=The access control \
### check failed because a geteffectiverights control could not be decoded \
### because of the following reason: "%s"
###SEVERE_WARN_ACI_SYNTAX_INVALID_TARGEXTOP_EXPRESSION_95=The provided Access \
### Control Instruction (ACI) extop expression value "%s" is invalid. A valid \
### extop keyword expression value requires one or more valid extended operation \
### request OID strings in the following format: oid [|| oid1] ... [|| oidN]
###SEVERE_WARN_ACI_ATTRIBUTE_NOT_INDEXED_96=Backend %s does not have a \
### presence index defined for attribute type %s.  Access control initialization \
### may take a very long time to complete in this backend
 SEVERE_WARN_ACI_SYNTAX_INVALID_SSF_FORMAT_97=Se ha producido un error al analizar la expresi\u00f3n SSF "%s" de la regla enlace de la instrucci\u00f3n de control de acceso (ACI, Access Control Instruction) proporcionada debido al siguiente motivo: "%s"
 SEVERE_WARN_ACI_SYNTAX_INVALID_SSF_RANGE_98=El valor "%s" de la expresi\u00f3n SSF de la regla enlace de la instrucci\u00f3n de control de acceso (ACI, Access Control Instruction) proporcionada no se encuentra dentro del rango v\u00e1lido. Para que un valor de SSF sea v\u00e1lido debe encontrarse en el rango de 1 a 1.024
 SEVERE_WARN_ACI_SYNTAX_INVALID_TIMEOFDAY_FORMAT_99=Se ha producido un error al analizar la expresi\u00f3n de hora del d\u00eda "%s" de la regla enlace de la instrucci\u00f3n de control de acceso (ACI, Access Control Instruction) debido al siguiente motivo: "%s"