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

pgamba
28.38.2009 09ef01374239f7048c2db6bb9cad2b8a807d4cf8
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
403
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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
# 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=EXTENSIONS
#
# 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_ERR_PWSCHEME_CANNOT_INITIALIZE_MESSAGE_DIGEST_1=An error occurred \
### while attempting to initialize the message digest generator for the %s \
### algorithm:  %s
MILD_ERR_PWSCHEME_CANNOT_BASE64_DECODE_STORED_PASSWORD_2=\u30d1\u30b9\u30ef\u30fc\u30c9\u5024 %s \u3092 Base64 \u3067\u5fa9\u53f7\u5316\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_PWSCHEME_NOT_REVERSIBLE_3=%s \u30d1\u30b9\u30ef\u30fc\u30c9\u8a18\u61b6\u30b9\u30ad\u30fc\u30de\u306f\u53ef\u9006\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u7b26\u53f7\u5316\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u5fa9\u65e7\u3067\u304d\u307e\u305b\u3093
MILD_ERR_JMX_ALERT_HANDLER_CANNOT_REGISTER_4=JMX \u30a2\u30e9\u30fc\u30c8\u30cf\u30f3\u30c9\u30e9\u3092 MBean \u30b5\u30fc\u30d0\u30fc\u306b\u767b\u9332\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_PWSCHEME_CANNOT_ENCODE_PASSWORD_5=\u30af\u30e9\u30b9 %s \u3067\u5b9a\u7fa9\u3055\u308c\u305f\u8a18\u61b6\u30b9\u30ad\u30fc\u30de\u3092\u4f7f\u3063\u3066\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u7b26\u53f7\u5316\u4e2d\u306b\u4e88\u671f\u3057\u306a\u3044\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f: %s
###SEVERE_ERR_CACHE_INVALID_INCLUDE_FILTER_6=The ds-cfg-include-filter \
### attribute of configuration entry %s, which specifies a set of search filters \
### that may be used to control which entries are included in the cache, has an \
### invalid value of "%s":  %s
###SEVERE_ERR_CACHE_INVALID_EXCLUDE_FILTER_7=The ds-cfg-exclude-filter \
### attribute of configuration entry %s, which specifies a set of search filters \
### that may be used to control which entries are excluded from the cache, has an \
### invalid value of "%s":  %s
###FATAL_ERR_FIFOCACHE_CANNOT_INITIALIZE_8=A fatal error occurred while trying \
### to initialize fifo entry cache:  %s
###FATAL_ERR_SOFTREFCACHE_CANNOT_INITIALIZE_9=A fatal error occurred while \
### trying to initialize soft reference entry cache:  %s
NOTICE_CACHE_PRELOAD_PROGRESS_START_10=%s \u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u306e\u30a8\u30f3\u30c8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306e\u30d7\u30ea\u30ed\u30fc\u30c9\u3092\u958b\u59cb\u3057\u3066\u3044\u307e\u3059
NOTICE_CACHE_PRELOAD_PROGRESS_REPORT_11=%s \u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u306e\u30a8\u30f3\u30c8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306e\u30d7\u30ea\u30ed\u30fc\u30c9\u306b\u3088\u3063\u3066 %d \u500b\u306e\u30a8\u30f3\u30c8\u30ea\u304c\u51e6\u7406\u3055\u308c\u307e\u3057\u305f\u3002%dM \u30d0\u30a4\u30c8\u306e\u7a7a\u304d\u30d2\u30fc\u30d7\u30e1\u30e2\u30ea\u30fc\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3059
NOTICE_CACHE_PRELOAD_PROGRESS_DONE_12=%s \u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u306e\u30a8\u30f3\u30c8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306e\u30d7\u30ea\u30ed\u30fc\u30c9\u304c\u5b8c\u4e86\u3057\u3001\u5408\u8a08 %d \u500b\u306e\u30a8\u30f3\u30c8\u30ea\u304c\u51e6\u7406\u3055\u308c\u307e\u3057\u305f
###SEVERE_WARN_CACHE_PRELOAD_INTERRUPTED_13=The entry cache preload for %s \
### backend has been interrupted
###SEVERE_WARN_CACHE_PRELOAD_BACKEND_FAILED_14=The entry cache preload is not \
### supported by %s backend, and as a result no entries from this backend will \
### be preloaded into the entry cache
###SEVERE_ERR_CACHE_PRELOAD_ENTRY_FAILED_15=Failed to preload %s entry into \
### the entry cache:  %s
MILD_ERR_EXTOP_PASSMOD_ILLEGAL_REQUEST_ELEMENT_TYPE_32=\u30d1\u30b9\u30ef\u30fc\u30c9\u5909\u66f4\u306e\u62e1\u5f35\u8981\u6c42\u30b7\u30fc\u30b1\u30f3\u30b9\u306b\u7121\u52b9\u306a\u30bf\u30a4\u30d7\u306e ASN.1 \u8981\u7d20\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3057\u305f:  %s
MILD_ERR_EXTOP_PASSMOD_CANNOT_DECODE_REQUEST_33=\u30d1\u30b9\u30ef\u30fc\u30c9\u5909\u66f4\u306e\u62e1\u5f35\u8981\u6c42\u30b7\u30fc\u30b1\u30f3\u30b9\u3092\u5fa9\u53f7\u5316\u4e2d\u306b\u4e88\u671f\u3057\u306a\u3044\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_EXTOP_PASSMOD_NO_AUTH_OR_USERID_34=\u30d1\u30b9\u30ef\u30fc\u30c9\u5909\u66f4\u306e\u62e1\u5f35\u8981\u6c42\u3092\u51e6\u7406\u3067\u304d\u307e\u305b\u3093\u3002\u8a8d\u53ef ID \u304c\u542b\u307e\u308c\u3066\u304a\u3089\u305a\u3001\u30d9\u30fc\u30b9\u3068\u306a\u308b\u63a5\u7d9a\u304c\u8a8d\u8a3c\u3055\u308c\u3066\u3044\u307e\u305b\u3093
###SEVERE_ERR_EXTOP_PASSMOD_CANNOT_LOCK_USER_ENTRY_35=The password modify \
### extended request cannot be processed because the server was unable to obtain \
### a write lock on user entry %s after multiple attempts
MILD_ERR_EXTOP_PASSMOD_CANNOT_DECODE_AUTHZ_DN_36=\u30d1\u30b9\u30ef\u30fc\u30c9\u5909\u66f4\u306e\u62e1\u5f35\u8981\u6c42\u3092\u51e6\u7406\u3067\u304d\u307e\u305b\u3093\u3002\u30b5\u30fc\u30d0\u30fc\u304c\u3053\u306e\u64cd\u4f5c\u306e\u8a8d\u53ef ID \u3067\u4f7f\u7528\u3059\u308b\u305f\u3081\u306e\u6709\u52b9\u306a DN \u3068\u3057\u3066 "%s" \u3092\u5fa9\u53f7\u5316\u3067\u304d\u307e\u305b\u3093
MILD_ERR_EXTOP_PASSMOD_INVALID_AUTHZID_STRING_37=\u30d1\u30b9\u30ef\u30fc\u30c9\u5909\u66f4\u306e\u62e1\u5f35\u8981\u6c42\u3092\u51e6\u7406\u3067\u304d\u307e\u305b\u3093\u3002\u7121\u52b9\u306a userIdentity \u30d5\u30a3\u30fc\u30eb\u30c9\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3057\u305f\u3002  \u6307\u5b9a\u3055\u308c\u305f userIdentity \u6587\u5b57\u5217\u306f "%s" \u3067\u3057\u305f
MILD_ERR_EXTOP_PASSMOD_NO_USER_ENTRY_BY_AUTHZID_38=\u30d1\u30b9\u30ef\u30fc\u30c9\u5909\u66f4\u306e\u62e1\u5f35\u8981\u6c42\u3092\u51e6\u7406\u3067\u304d\u307e\u305b\u3093\u3002"%s" \u306e\u8a8d\u53ef DN \u306b\u57fa\u3065\u3044\u3066\u66f4\u65b0\u3059\u308b\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u3092\u8b58\u5225\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_EXTOP_PASSMOD_NO_DN_BY_AUTHZID_39=\u30d1\u30b9\u30ef\u30fc\u30c9\u5909\u66f4\u306e\u62e1\u5f35\u8981\u6c42\u3092\u51e6\u7406\u3067\u304d\u307e\u305b\u3093\u3002\u6307\u5b9a\u3055\u308c\u305f\u8a8d\u53ef UID "%s" \u304c\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u5185\u306e\u3069\u306e\u30a8\u30f3\u30c8\u30ea\u3068\u3082\u4e00\u81f4\u3057\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_EXTOP_PASSMOD_MULTIPLE_ENTRIES_BY_AUTHZID_40=\u30d1\u30b9\u30ef\u30fc\u30c9\u5909\u66f4\u306e\u62e1\u5f35\u8981\u6c42\u3092\u51e6\u7406\u3067\u304d\u307e\u305b\u3093\u3002\u306e\u6307\u5b9a\u3055\u308c\u305f\u8a8d\u53ef UID "%s" \u304c\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u5185\u306e\u8907\u6570\u306e\u30a8\u30f3\u30c8\u30ea\u3068\u4e00\u81f4\u3057\u307e\u3057\u305f
MILD_ERR_EXTOP_PASSMOD_INVALID_OLD_PASSWORD_41=\u30d1\u30b9\u30ef\u30fc\u30c9\u5909\u66f4\u306e\u62e1\u5f35\u64cd\u4f5c\u3092\u51e6\u7406\u3067\u304d\u307e\u305b\u3093\u3002\u30e6\u30fc\u30b6\u30fc\u306b\u6307\u5b9a\u3055\u308c\u305f\u73fe\u5728\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u7121\u52b9\u3067\u3059
INFO_FILE_KEYMANAGER_DESCRIPTION_FILE_43=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306e\u30ad\u30fc\u30b9\u30c8\u30a2\u60c5\u5831\u304c\u542b\u307e\u308c\u308b\u30d5\u30a1\u30a4\u30eb\u3078\u306e\u30d1\u30b9\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u3001\u6b21\u56de\u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_FILE_KEYMANAGER_NO_FILE_ATTR_44=The configuration entry %s that \
### defines a file-based key manager does not contain attribute \
### ds-cfg-key-store-file that should hold the path to the keystore file
###SEVERE_ERR_FILE_KEYMANAGER_NO_SUCH_FILE_45=The keystore file %s specified in \
### attribute ds-cfg-key-store-file of configuration entry %s does  not exist
###SEVERE_ERR_FILE_KEYMANAGER_CANNOT_DETERMINE_FILE_46=An unexpected error \
### occurred while trying to determine the value of configuration attribute \
### ds-cfg-key-store-file in configuration entry %s:  %s
INFO_FILE_KEYMANAGER_DESCRIPTION_TYPE_47=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306e\u30ad\u30fc\u30b9\u30c8\u30a2\u306e\u30ad\u30fc\u30b9\u30c8\u30a2\u30bf\u30a4\u30d7\u3002  \u6709\u52b9\u306a\u5024\u306b\u306f 'JKS' \u3068 'PKCS12' \u304c\u5e38\u306b\u542b\u307e\u308c\u3066\u3044\u308b\u306f\u305a\u3067\u3059\u3002\u305f\u3060\u3057\u3001\u5225\u306e\u5b9f\u88c5\u3067\u306f\u307b\u304b\u306e\u5024\u3082\u8a31\u53ef\u3055\u308c\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002  \u5024\u3092\u6307\u5b9a\u3057\u306a\u3044\u3068\u3001JVM \u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u304c\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u3001\u6b21\u56de\u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_FILE_KEYMANAGER_CANNOT_DETERMINE_TYPE_48=An unexpected error \
### occurred while trying to determine the value of configuration attribute \
### ds-cfg-key-store-type in configuration entry %s:  %s
INFO_FILE_KEYMANAGER_DESCRIPTION_PIN_PROPERTY_49=\u30d5\u30a1\u30a4\u30eb\u30d9\u30fc\u30b9\u306e\u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3078\u306e\u30a2\u30af\u30bb\u30b9\u306b\u5fc5\u8981\u306a\u5e73\u6587 PIN \u304c\u542b\u307e\u308c\u308b Java \u30d7\u30ed\u30d1\u30c6\u30a3\u30fc\u306e\u540d\u524d\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u3001\u6b21\u56de\u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_FILE_KEYMANAGER_PIN_PROPERTY_NOT_SET_50=Java property %s which is \
### specified in attribute ds-cfg-key-store-pin-property of configuration entry \
### %s should contain the PIN needed to access the file-based key manager, but \
### this property is not set
###SEVERE_ERR_FILE_KEYMANAGER_CANNOT_DETERMINE_PIN_PROPERTY_51=An unexpected \
### error occurred while trying to determine the value of configuration attribute \
### ds-cfg-key-store-pin-property in configuration entry %s:  %s
INFO_FILE_KEYMANAGER_DESCRIPTION_PIN_ENVAR_52=\u30d5\u30a1\u30a4\u30eb\u30d9\u30fc\u30b9\u306e\u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3078\u306e\u30a2\u30af\u30bb\u30b9\u306b\u5fc5\u8981\u306a\u5e73\u6587 PIN \u304c\u542b\u307e\u308c\u308b\u74b0\u5883\u5909\u6570\u306e\u540d\u524d\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u3001\u6b21\u56de\u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_FILE_KEYMANAGER_PIN_ENVAR_NOT_SET_53=Environment variable %s which \
### is specified in attribute ds-cfg-key-store-pin-environment-variable of \
### configuration entry %s should contain the PIN needed to access the file-based \
### key manager, but this property is not set
###SEVERE_ERR_FILE_KEYMANAGER_CANNOT_DETERMINE_PIN_ENVAR_54=An unexpected error \
### occurred while trying to determine the value of configuration attribute \
### ds-cfg-key-store-pin-environment-variable in configuration entry %s:  %s
INFO_FILE_KEYMANAGER_DESCRIPTION_PIN_FILE_55=\u30d5\u30a1\u30a4\u30eb\u30d9\u30fc\u30b9\u306e\u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3078\u306e\u30a2\u30af\u30bb\u30b9\u306b\u5fc5\u8981\u306a\u5e73\u6587 PIN \u306e 1 \u884c\u306e\u307f\u304c\u542b\u307e\u308c\u308b\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3078\u306e\u30d1\u30b9\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u3001\u6b21\u56de\u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_FILE_KEYMANAGER_PIN_NO_SUCH_FILE_56=File %s specified in attribute \
### ds-cfg-key-store-pin-file of configuration entry %s should contain the PIN \
### needed to access the file-based key manager, but this file does not exist
###SEVERE_ERR_FILE_KEYMANAGER_PIN_FILE_CANNOT_READ_57=An error occurred while \
### trying to read the keystore PIN from file %s specified in configuration \
### attribute ds-cfg-key-store-pin-file of configuration entry %s:  %s
###SEVERE_ERR_FILE_KEYMANAGER_PIN_FILE_EMPTY_58=File %s specified in attribute \
### ds-cfg-key-store-pin-file of configuration entry %s should contain the PIN \
### needed to access the file-based key manager, but this file is empty
###SEVERE_ERR_FILE_KEYMANAGER_CANNOT_DETERMINE_PIN_FILE_59=An unexpected error \
### occurred while trying to determine the value of configuration attribute \
### ds-cfg-key-store-pin-file in configuration entry %s:  %s
###SEVERE_ERR_FILE_KEYMANAGER_CANNOT_DETERMINE_PIN_FROM_ATTR_60=An unexpected \
### error occurred while trying to determine the value of configuration attribute \
### ds-cfg-key-store-pin in configuration entry %s:  %s
###SEVERE_ERR_FILE_KEYMANAGER_NO_PIN_61=Configuration entry %s does not specify \
### a means of determining the PIN needed to access the contents of the \
### file-based key manager.  The PIN may be specified in a Java property (named \
### by attribute ds-cfg-key-store-pin-property), an environment variable (named \
### by attribute ds-cfg-key-store-pin-environment-variable), a text file (named \
### by attribute ds-cfg-key-store-pin-file), or directly in the entry using \
### attribute ds-cfg-key-store-pin
###SEVERE_ERR_FILE_KEYMANAGER_CANNOT_LOAD_62=An error occurred while trying to \
### load the keystore contents from file %s:  %s
###SEVERE_ERR_FILE_KEYMANAGER_INVALID_TYPE_63=The keystore type %s specified in \
### attribute ds-cfg-key-store-type of configuration entry %s is not valid:  %s
INFO_FILE_KEYMANAGER_UPDATED_FILE_64=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e ds-cfg-key-store-file \u5c5e\u6027\u306e\u5024\u304c %s \u306b\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002\u65b0\u3057\u3044\u5024\u306f\u3001\u6b21\u56de\u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059\u3002
INFO_FILE_KEYMANAGER_UPDATED_TYPE_65=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e ds-cfg-key-store-type \u5c5e\u6027\u306e\u5024\u304c %s \u306b\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002\u65b0\u3057\u3044\u5024\u306f\u3001\u6b21\u56de\u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059\u3002
INFO_FILE_KEYMANAGER_UPDATED_PIN_66=\u30d5\u30a1\u30a4\u30eb\u30d9\u30fc\u30b9\u306e\u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3078\u306e\u30a2\u30af\u30bb\u30b9\u306b\u4f7f\u7528\u3059\u308b PIN \u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002  \u65b0\u3057\u3044\u5024\u306f\u3001\u6b21\u56de\u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
INFO_PKCS11_KEYMANAGER_DESCRIPTION_PIN_PROPERTY_67=PKCS#11 \u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3078\u306e\u30a2\u30af\u30bb\u30b9\u306b\u5fc5\u8981\u306a\u5e73\u6587 PIN \u304c\u542b\u307e\u308c\u308b Java \u30d7\u30ed\u30d1\u30c6\u30a3\u30fc\u306e\u540d\u524d\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u3001\u6b21\u56de\u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_PKCS11_KEYMANAGER_PIN_PROPERTY_NOT_SET_68=Java property %s which \
### is specified in attribute ds-cfg-key-store-pin-property of configuration \
### entry %s should contain the PIN needed to access the PKCS#11 key manager, but \
### this property is not set
###SEVERE_ERR_PKCS11_KEYMANAGER_CANNOT_DETERMINE_PIN_PROPERTY_69=An unexpected \
### error occurred while trying to determine the value of configuration attribute \
### ds-cfg-key-store-pin-property in configuration entry %s:  %s
INFO_PKCS11_KEYMANAGER_DESCRIPTION_PIN_ENVAR_70=PKCS#11 \u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3078\u306e\u30a2\u30af\u30bb\u30b9\u306b\u5fc5\u8981\u306a\u5e73\u6587 PIN \u304c\u542b\u307e\u308c\u308b\u74b0\u5883\u5909\u6570\u306e\u540d\u524d\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u3001\u6b21\u56de\u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_PKCS11_KEYMANAGER_PIN_ENVAR_NOT_SET_71=Environment variable %s \
### which is specified in attribute ds-cfg-key-store-pin-environment-variable of \
### configuration entry %s should contain the PIN needed to access the PKCS#11 \
### key manager, but this property is not set
###SEVERE_ERR_PKCS11_KEYMANAGER_CANNOT_DETERMINE_PIN_ENVAR_72=An unexpected \
### error occurred while trying to determine the value of configuration attribute \
### ds-cfg-key-store-pin-environment-variable in configuration entry %s:  %s
INFO_PKCS11_KEYMANAGER_DESCRIPTION_PIN_FILE_73=PKCS#11 \u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3078\u306e\u30a2\u30af\u30bb\u30b9\u306b\u5fc5\u8981\u306a\u5e73\u6587 PIN \u306e 1 \u884c\u306e\u307f\u304c\u542b\u307e\u308c\u308b\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3078\u306e\u30d1\u30b9\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u3001\u6b21\u56de\u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_PKCS11_KEYMANAGER_PIN_NO_SUCH_FILE_74=File %s specified in \
### attribute ds-cfg-key-store-pin-file of configuration entry %s should contain \
### the PIN needed to access the PKCS#11 key manager, but this file does not \
### exist
###SEVERE_ERR_PKCS11_KEYMANAGER_PIN_FILE_CANNOT_READ_75=An error occurred while \
### trying to read the keystore PIN from file %s specified in configuration \
### attribute ds-cfg-key-store-pin-file of configuration entry %s:  %s
###SEVERE_ERR_PKCS11_KEYMANAGER_PIN_FILE_EMPTY_76=File %s specified in attribute \
### ds-cfg-key-store-pin-file of configuration entry %s should contain the PIN \
### needed to access the PKCS#11 key manager, but this file is empty
###SEVERE_ERR_PKCS11_KEYMANAGER_CANNOT_DETERMINE_PIN_FILE_77=An unexpected error \
### occurred while trying to determine the value of configuration attribute \
### ds-cfg-key-store-pin-file in configuration entry %s:  %s
INFO_PKCS11_KEYMANAGER_DESCRIPTION_PIN_ATTR_78=PKCS#11 \u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3078\u306e\u30a2\u30af\u30bb\u30b9\u306b\u5fc5\u8981\u306a\u5e73\u6587 PIN\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u3001\u6b21\u56de\u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_PKCS11_KEYMANAGER_CANNOT_DETERMINE_PIN_FROM_ATTR_79=An unexpected \
### error occurred while trying to determine the value of configuration attribute \
### ds-cfg-key-store-pin in configuration entry %s:  %s
###SEVERE_ERR_PKCS11_KEYMANAGER_NO_PIN_80=Configuration entry %s does not \
### specify a means of determining the PIN needed to access the contents of the \
### PKCS#11 key manager.  The PIN may be specified in a Java property (named by \
### attribute ds-cfg-key-store-pin-property), an environment variable (named by \
### attribute ds-cfg-key-store-pin-environment-variable), a text file (named by \
### attribute ds-cfg-key-store-pin-file), or directly in the entry using \
### attribute ds-cfg-key-store-pin
###SEVERE_ERR_PKCS11_KEYMANAGER_CANNOT_LOAD_81=An error occurred while trying to \
### access the PKCS#11 key manager:  %s
INFO_PKCS11_KEYMANAGER_UPDATED_PIN_82=PKCS#11 \u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3078\u306e\u30a2\u30af\u30bb\u30b9\u306b\u4f7f\u7528\u3059\u308b PIN \u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002  \u65b0\u3057\u3044\u5024\u306f\u3001\u6b21\u56de\u30ad\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_FILE_KEYMANAGER_CANNOT_CREATE_FACTORY_83=An error occurred while \
### trying to create a key manager factory to access the contents of keystore \
### file %s:  %s
###SEVERE_ERR_PKCS11_KEYMANAGER_CANNOT_CREATE_FACTORY_84=An error occurred while \
### trying to create a key manager factory to access the contents of the PKCS#11 \
### keystore:  %s
INFO_FILE_TRUSTMANAGER_DESCRIPTION_FILE_85=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306e\u30c8\u30e9\u30b9\u30c8\u30b9\u30c8\u30a2\u60c5\u5831\u304c\u542b\u307e\u308c\u308b\u30d5\u30a1\u30a4\u30eb\u3078\u306e\u30d1\u30b9\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u3001\u6b21\u56de\u30c8\u30e9\u30b9\u30c8\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_FILE_TRUSTMANAGER_NO_FILE_ATTR_86=The configuration entry %s that \
### defines a file-based trust manager does not contain attribute \
### ds-cfg-trust-store-file that should hold the path to the trust store file
###SEVERE_ERR_FILE_TRUSTMANAGER_NO_SUCH_FILE_87=The trust store file %s \
### specified in attribute ds-cfg-trust-store-file of configuration entry %s does \
### not exist
###SEVERE_ERR_FILE_TRUSTMANAGER_CANNOT_DETERMINE_FILE_88=An unexpected error \
### occurred while trying to determine the value of configuration attribute \
### ds-cfg-trust-store-file in configuration entry %s:  %s
INFO_FILE_TRUSTMANAGER_DESCRIPTION_TYPE_89=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306e\u30c8\u30e9\u30b9\u30c8\u30b9\u30c8\u30a2\u306e\u30ad\u30fc\u30b9\u30c8\u30a2\u30bf\u30a4\u30d7\u3002  \u6709\u52b9\u306a\u5024\u306b\u306f 'JKS' \u3068 'PKCS12' \u304c\u5e38\u306b\u542b\u307e\u308c\u3066\u3044\u308b\u306f\u305a\u3067\u3059\u3002\u305f\u3060\u3057\u3001\u5225\u306e\u5b9f\u88c5\u3067\u306f\u307b\u304b\u306e\u5024\u3082\u8a31\u53ef\u3055\u308c\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002 \u5024\u3092\u6307\u5b9a\u3057\u306a\u3044\u3068\u3001JVM \u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u304c\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u3001\u6b21\u56de\u30c8\u30e9\u30b9\u30c8\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_FILE_TRUSTMANAGER_CANNOT_DETERMINE_TYPE_90=An unexpected error \
### occurred while trying to determine the value of configuration attribute \
### ds-cfg-trust-store-type in configuration entry %s:  %s
INFO_FILE_TRUSTMANAGER_DESCRIPTION_PIN_PROPERTY_91=\u30d5\u30a1\u30a4\u30eb\u30d9\u30fc\u30b9\u306e\u30c8\u30e9\u30b9\u30c8\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3078\u306e\u30a2\u30af\u30bb\u30b9\u306b\u5fc5\u8981\u306a\u5e73\u6587 PIN \u304c\u542b\u307e\u308c\u308b Java \u30d7\u30ed\u30d1\u30c6\u30a3\u30fc\u306e\u540d\u524d\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u3001\u6b21\u56de\u30c8\u30e9\u30b9\u30c8\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_FILE_TRUSTMANAGER_PIN_PROPERTY_NOT_SET_92=Java property %s which \
### is specified in attribute ds-cfg-trust-store-pin-property of configuration \
### entry %s should contain the PIN needed to access the file-based trust \
### manager, but this property is not set
###SEVERE_ERR_FILE_TRUSTMANAGER_CANNOT_DETERMINE_PIN_PROPERTY_93=An unexpected \
### error occurred while trying to determine the value of configuration attribute \
### ds-cfg-trust-store-pin-property in configuration entry %s:  %s
INFO_FILE_TRUSTMANAGER_DESCRIPTION_PIN_ENVAR_94=\u30d5\u30a1\u30a4\u30eb\u30d9\u30fc\u30b9\u306e\u30c8\u30e9\u30b9\u30c8\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3078\u306e\u30a2\u30af\u30bb\u30b9\u306b\u5fc5\u8981\u306a\u5e73\u6587 PIN \u304c\u542b\u307e\u308c\u308b\u74b0\u5883\u5909\u6570\u306e\u540d\u524d\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u3001\u6b21\u56de\u30c8\u30e9\u30b9\u30c8\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_FILE_TRUSTMANAGER_PIN_ENVAR_NOT_SET_95=Environment variable %s \
### which is specified in attribute ds-cfg-trust-store-pin-environment-variable \
### of configuration entry %s should contain the PIN needed to access the \
### file-based trust manager, but this property is not set
###SEVERE_ERR_FILE_TRUSTMANAGER_CANNOT_DETERMINE_PIN_ENVAR_96=An unexpected \
### error occurred while trying to determine the value of configuration attribute \
### ds-cfg-trust-store-pin-environment-variable in configuration entry %s:  %s
INFO_FILE_TRUSTMANAGER_DESCRIPTION_PIN_FILE_97=\u30d5\u30a1\u30a4\u30eb\u30d9\u30fc\u30b9\u306e\u30c8\u30e9\u30b9\u30c8\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3078\u306e\u30a2\u30af\u30bb\u30b9\u306b\u5fc5\u8981\u306a\u5e73\u6587 PIN \u306e 1 \u884c\u306e\u307f\u304c\u542b\u307e\u308c\u308b\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3078\u306e\u30d1\u30b9\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u3001\u6b21\u56de\u30c8\u30e9\u30b9\u30c8\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_FILE_TRUSTMANAGER_PIN_NO_SUCH_FILE_98=File %s specified in \
### attribute ds-cfg-trust-store-pin-file of configuration entry %s should \
### contain the PIN needed to access the file-based trust manager, but this file \
### does not exist
###SEVERE_ERR_FILE_TRUSTMANAGER_PIN_FILE_CANNOT_READ_99=An error occurred while \
### trying to read the trust store PIN from file %s specified in configuration \
### attribute ds-cfg-trust-store-pin-file of configuration entry %s:  %s
###SEVERE_ERR_FILE_TRUSTMANAGER_PIN_FILE_EMPTY_100=File %s specified in \
### attribute ds-cfg-trust-store-pin-file of configuration entry %s should \
### contain the PIN needed to access the file-based trust manager, but this file \
### is empty
###SEVERE_ERR_FILE_TRUSTMANAGER_CANNOT_DETERMINE_PIN_FILE_101=An unexpected \
### error occurred while trying to determine the value of configuration attribute \
### ds-cfg-trust-store-pin-file in configuration entry %s:  %s
INFO_FILE_TRUSTMANAGER_DESCRIPTION_PIN_ATTR_102=\u30d5\u30a1\u30a4\u30eb\u30d9\u30fc\u30b9\u306e\u30c8\u30e9\u30b9\u30c8\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3078\u306e\u30a2\u30af\u30bb\u30b9\u306b\u5fc5\u8981\u306a\u5e73\u6587 PIN\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u3001\u6b21\u56de\u30c8\u30e9\u30b9\u30c8\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_FILE_TRUSTMANAGER_CANNOT_DETERMINE_PIN_FROM_ATTR_103=An unexpected \
### error occurred while trying to determine the value of configuration attribute \
### ds-cfg-trust-store-pin in configuration entry %s:  %s
###SEVERE_ERR_FILE_TRUSTMANAGER_CANNOT_LOAD_104=An error occurred while trying \
### to load the trust store contents from file %s:  %s
###SEVERE_ERR_FILE_TRUSTMANAGER_CANNOT_CREATE_FACTORY_105=An error occurred \
### while trying to create a trust manager factory to access the contents of \
### trust store file %s:  %s
###SEVERE_ERR_FILE_TRUSTMANAGER_INVALID_TYPE_106=The trust store type %s \
### specified in attribute ds-cfg-trust-store-type of configuration entry %s is \
### not valid:  %s
INFO_FILE_TRUSTMANAGER_UPDATED_FILE_107=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e ds-cfg-trust-store-file \u5c5e\u6027\u306e\u5024\u304c %s \u306b\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002\u65b0\u3057\u3044\u5024\u306f\u3001\u6b21\u56de\u30c8\u30e9\u30b9\u30c8\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059\u3002
INFO_FILE_TRUSTMANAGER_UPDATED_TYPE_108=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e ds-cfg-trust-store-type \u5c5e\u6027\u306e\u5024\u304c %s \u306b\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002\u65b0\u3057\u3044\u5024\u306f\u3001\u6b21\u56de\u30c8\u30e9\u30b9\u30c8\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059\u3002
INFO_FILE_TRUSTMANAGER_UPDATED_PIN_109=\u30d5\u30a1\u30a4\u30eb\u30d9\u30fc\u30b9\u306e\u30c8\u30e9\u30b9\u30c8\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3078\u306e\u30a2\u30af\u30bb\u30b9\u306b\u4f7f\u7528\u3059\u308b PIN \u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002  \u65b0\u3057\u3044\u5024\u306f\u3001\u6b21\u56de\u30c8\u30e9\u30b9\u30c8\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u3068\u304d\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
MILD_ERR_SEDCM_NO_PEER_CERTIFICATE_118=\u6307\u5b9a\u3055\u308c\u305f\u8a3c\u660e\u66f8\u30c1\u30a7\u30fc\u30f3\u3092\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u5229\u7528\u3067\u304d\u308b\u30d4\u30a2\u8a3c\u660e\u66f8\u304c\u3042\u308a\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_SEDCM_PEER_CERT_NOT_X509_119=\u6307\u5b9a\u3055\u308c\u305f\u8a3c\u660e\u66f8\u30c1\u30a7\u30fc\u30f3\u3092\u30e6\u30fc\u30b6\u30fc\u306b\u30de\u30c3\u30d7\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u30d4\u30a2\u8a3c\u660e\u66f8\u304c X.509 \u8a3c\u660e\u66f8\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3067\u3057\u305f (\u30d4\u30a2\u8a3c\u660e\u66f8\u306e\u5f62\u5f0f\u306f %s)
MILD_ERR_SEDCM_CANNOT_DECODE_SUBJECT_AS_DN_120=\u6307\u5b9a\u3055\u308c\u305f\u8a3c\u660e\u66f8\u30c1\u30a7\u30fc\u30f3\u3092\u30e6\u30fc\u30b6\u30fc\u306b\u30de\u30c3\u30d7\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u30d4\u30a2\u8a3c\u660e\u66f8\u306e\u30b5\u30d6\u30b8\u30a7\u30af\u30c8 "%s" \u3092 LDAP DN \u3068\u3057\u3066\u5fa9\u53f7\u5316\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f:  %s
MILD_ERR_SEDCM_CANNOT_GET_ENTRY_121=\u6307\u5b9a\u3055\u308c\u305f\u8a3c\u660e\u66f8\u30c1\u30a7\u30fc\u30f3\u3092\u30e6\u30fc\u30b6\u30fc\u306b\u30de\u30c3\u30d7\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002DN \u304c "%s" \u3067\u3042\u308b\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u3092\u53d6\u5f97\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_SEDCM_NO_USER_FOR_DN_122=\u6307\u5b9a\u3055\u308c\u305f\u8a3c\u660e\u66f8\u30c1\u30a7\u30fc\u30f3\u3092\u30e6\u30fc\u30b6\u30fc\u306b\u30de\u30c3\u30d7\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002DN \u304c %s \u3067\u3042\u308b\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u304c\u5b58\u5728\u3057\u307e\u305b\u3093
MILD_ERR_SASLEXTERNAL_NO_CLIENT_CONNECTION_123=SASL EXTERNAL \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u3092\u51e6\u7406\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u95a2\u9023\u4ed8\u3051\u3089\u308c\u305f\u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u306b\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u63a5\u7d9a\u3078\u306e\u53c2\u7167\u304c\u3042\u308a\u307e\u305b\u3093
MILD_ERR_SASLEXTERNAL_NOT_LDAP_CLIENT_INSTANCE_124=SASL EXTERNAL \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u3092\u51e6\u7406\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u305d\u306e\u8981\u6c42\u306b\u95a2\u9023\u4ed8\u3051\u3089\u308c\u3066\u3044\u308b\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u63a5\u7d9a\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u3001DAPClientConnection \u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u306a\u3044\u305f\u3081\u3067\u3059\u3002
MILD_ERR_SASLEXTERNAL_CLIENT_NOT_USING_TLS_PROVIDER_125=SASL EXTERNAL \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u3092\u51e6\u7406\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u63a5\u7d9a\u3067 TLS \u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc\u30d7\u30ed\u30d0\u30a4\u30c0\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u305b\u3093 (\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc\u30d7\u30ed\u30d0\u30a4\u30c0\u306f %s)\u3002  SASL EXTERNAL \u8a8d\u8a3c\u3092\u4f7f\u7528\u3059\u308b\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u306b\u306f\u3001TLS \u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc\u30d7\u30ed\u30d0\u30a4\u30c0\u304c\u5fc5\u8981\u3067\u3059
MILD_ERR_SASLEXTERNAL_NO_CLIENT_CERT_126=SASL EXTERNAL \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u3092\u51e6\u7406\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002SSL/TLS \u30cd\u30b4\u30b7\u30a8\u30fc\u30b7\u30e7\u30f3\u4e2d\u306b\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u304b\u3089\u8a3c\u660e\u66f8\u30c1\u30a7\u30fc\u30f3\u304c\u63d0\u793a\u3055\u308c\u306a\u304b\u3063\u305f\u305f\u3081\u3067\u3059
MILD_ERR_SASLEXTERNAL_NO_MAPPING_127=SASL EXTERNAL \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u306f\u5931\u6557\u3057\u307e\u3057\u305f\u3002SSL/TLS \u30cd\u30b4\u30b7\u30a8\u30fc\u30b7\u30e7\u30f3\u306e\u9593\u306b\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u304b\u3089\u63d0\u793a\u3055\u308c\u305f\u8a3c\u660e\u66f8\u30c1\u30a7\u30fc\u30f3\u3092\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306e\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_STARTTLS_NO_CLIENT_CONNECTION_128=StartTLS \u3092\u3053\u306e\u63a5\u7d9a\u3067\u4f7f\u7528\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002\u30d9\u30fc\u30b9\u3068\u306a\u308b\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u63a5\u7d9a\u304c\u5229\u7528\u3067\u304d\u307e\u305b\u3093
MILD_ERR_STARTTLS_NOT_TLS_CAPABLE_129=StartTLS \u3092\u3053\u306e\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u63a5\u7d9a\u3067\u4f7f\u7528\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002\u3053\u306e\u63a5\u7d9a\u30bf\u30a4\u30d7\u3067\u306f StartTLS \u3092\u4f7f\u7528\u3057\u3066\u305d\u306e\u901a\u4fe1\u3092\u4fdd\u8b77\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093
MILD_ERR_STARTTLS_ERROR_ON_ENABLE_130=StartTLS \u306e\u305f\u3081\u306b\u3001\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u63a5\u7d9a\u3067 TLS \u63a5\u7d9a\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3092\u6709\u52b9\u306b\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u3068\u304d\u306b\u3001\u4e88\u671f\u3057\u306a\u3044\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
INFO_SASLEXTERNAL_DESCRIPTION_VALIDATION_POLICY_131=SASL EXTERNAL \u6a5f\u69cb\u30cf\u30f3\u30c9\u30e9\u3067\u3001\u30d4\u30a2\u8a3c\u660e\u66f8\u306e\u59a5\u5f53\u6027\u691c\u67fb\u3092\u3001\u5bfe\u5fdc\u3059\u308b\u30e6\u30fc\u30b6\u30fc\u306e\u30a8\u30f3\u30c8\u30ea\u5185\u306e\u8a3c\u660e\u66f8\u306b\u5bfe\u3057\u3066\u884c\u3046\u3079\u304d\u304b\u3069\u3046\u304b\u3092\u793a\u3057\u307e\u3059\u3002  \u5024\u306f\u3001"true" (\u5e38\u306b\u8a3c\u660e\u66f8\u306e\u59a5\u5f53\u6027\u691c\u67fb\u3092\u8a66\u884c\u3057\u3001\u8a3c\u660e\u66f8\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f\u5931\u6557\u3059\u308b)\u3001"false" (\u30d4\u30a2\u8a3c\u660e\u66f8\u306e\u59a5\u5f53\u6027\u691c\u67fb\u3092\u8a66\u884c\u3057\u306a\u3044)\u3001\u307e\u305f\u306f "ifpresent" (\u30e6\u30fc\u30b6\u30fc\u306e\u30a8\u30f3\u30c8\u30ea\u5185\u306b 1 \u3064\u4ee5\u4e0a\u306e\u8a3c\u660e\u66f8\u304c\u3042\u308b\u5834\u5408\u306b\u30d4\u30a2\u8a3c\u660e\u66f8\u306e\u59a5\u5f53\u6027\u691c\u67fb\u3092\u884c\u3046\u3002\u305f\u3060\u3057\u3001\u30a8\u30f3\u30c8\u30ea\u5185\u306b\u8a3c\u660e\u66f8\u304c\u306a\u3044\u5834\u5408\u306f\u5931\u6557\u3057\u306a\u3044) \u306e\u3044\u305a\u308c\u304b\u306b\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_SASLEXTERNAL_INVALID_VALIDATION_VALUE_132=Configuration entry %s \
### has an invalid value %s for attribute \
### ds-cfg-certificate-validation-policy.  The value must be one of \
### "always", "never", or "ifpresent"
###SEVERE_ERR_SASLEXTERNAL_CANNOT_GET_VALIDATION_POLICY_133=An unexpected error \
### occurred while attempting to determine the value of the \
### ds-cfg-certificate-validation-policy attribute in configuration entry \
### %s:  %s
INFO_SASLEXTERNAL_DESCRIPTION_CERTIFICATE_ATTRIBUTE_134=\u59a5\u5f53\u6027\u691c\u67fb\u306e\u76ee\u7684\u3067\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b\u8a3c\u660e\u66f8\u60c5\u5831\u3092\u4fdd\u6301\u3059\u308b\u305f\u3081\u306b\u4f7f\u7528\u3059\u308b\u5c5e\u6027\u306e\u540d\u524d\u3002  \u3053\u308c\u306b\u306f\u3001\u30b5\u30fc\u30d0\u30fc\u30b9\u30ad\u30fc\u30de\u3067\u5b9a\u7fa9\u3055\u308c\u305f\u6709\u52b9\u306a\u5c5e\u6027\u578b\u306e\u540d\u524d\u3092\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_SASLEXTERNAL_CANNOT_GET_CERT_ATTR_135=An unexpected error occurred \
### while attempting to determine the value of the ds-cfg-certificate-attribute \
### attribute in configuration entry %s:  %s
###SEVERE_ERR_SASLEXTERNAL_UNKNOWN_CERT_ATTR_136=The attribute %s referenced in \
### configuration attribute ds-cfg-certificate-attribute in configuration entry \
### %s does not exist in the Directory Server schema.  The attribute that is to \
### be used for certificate validation during SASL EXTERNAL authentication must \
### be defined in the server schema
MILD_ERR_SASLEXTERNAL_NO_CERT_IN_ENTRY_137=SASL EXTERNAL \u3067\u8a8d\u8a3c\u3067\u304d\u307e\u305b\u3093\u3002\u30de\u30c3\u30d7\u3055\u308c\u305f\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea %s \u306b\u3001\u63d0\u793a\u3055\u308c\u305f\u30d4\u30a2\u8a3c\u660e\u66f8\u3092\u78ba\u8a8d\u3059\u308b\u8a3c\u660e\u66f8\u304c\u3042\u308a\u307e\u305b\u3093
MILD_ERR_SASLEXTERNAL_PEER_CERT_NOT_FOUND_138=SASL EXTERNAL \u3067\u8a8d\u8a3c\u3067\u304d\u307e\u305b\u3093\u3002\u30de\u30c3\u30d7\u3055\u308c\u305f\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea %s \u306b\u3001\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u304b\u3089\u63d0\u793a\u3055\u308c\u305f\u30d4\u30a2\u8a3c\u660e\u66f8\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_SASLEXTERNAL_CANNOT_VALIDATE_CERT_139=\u30e6\u30fc\u30b6\u30fc\u306e\u30a8\u30f3\u30c8\u30ea %s \u306e\u8a3c\u660e\u66f8\u3092\u4f7f\u3063\u3066\u3001\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u304b\u3089\u63d0\u793a\u3055\u308c\u305f\u30d4\u30a2\u8a3c\u660e\u66f8\u306e\u59a5\u5f53\u6027\u691c\u67fb\u3092\u8a66\u307f\u3066\u3044\u308b\u3068\u304d\u306b\u3001\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
INFO_SASLEXTERNAL_UPDATED_VALIDATION_POLICY_140=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e\u5c5e\u6027 ds-cfg-certificate-validation-policy \u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002  \u65b0\u3057\u3044\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u8a3c\u660e\u66f8\u306e\u59a5\u5f53\u6027\u691c\u67fb\u30dd\u30ea\u30b7\u30fc\u306f %s \u3067\u3059
INFO_SASLEXTERNAL_UPDATED_CERT_ATTR_141=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e\u5c5e\u6027 ds-cfg-certificate-attribute \u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002  \u30d4\u30a2\u8a3c\u660e\u66f8\u306e\u59a5\u5f53\u6027\u691c\u67fb\u3092\u884c\u3046\u3068\u304d\u306b\u3001%s \u5c5e\u6027\u304c\u4f7f\u7528\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059
INFO_SASLPLAIN_DESCRIPTION_USERNAME_ATTRIBUTE_142=SASL PLAIN \u8a8d\u8a3c\u306e\u3068\u304d\u306b\u6307\u5b9a\u3055\u308c\u305f\u8a8d\u8a3c ID/\u8a8d\u53ef ID \u306b\u57fa\u3065\u3044\u3066\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u3092\u8b58\u5225\u3059\u308b\u305f\u3081\u306b\u4f7f\u7528\u3059\u308b\u5c5e\u6027\u306e\u540d\u524d\u3002  \u3053\u308c\u306b\u306f\u3001\u30b5\u30fc\u30d0\u30fc\u30b9\u30ad\u30fc\u30de\u3067\u5b9a\u7fa9\u3055\u308c\u305f\u6709\u52b9\u306a\u5c5e\u6027\u578b\u306e\u540d\u524d\u3092\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_SASLPLAIN_CANNOT_GET_USERNAME_ATTR_143=An unexpected error \
### occurred while attempting to determine the value of the \
### ds-cfg-user-name-attribute attribute in configuration entry %s:  %s
###SEVERE_ERR_SASLPLAIN_UNKNOWN_USERNAME_ATTR_144=The attribute %s referenced in \
### configuration attribute ds-cfg-user-name-attribute in configuration entry %s \
### does not exist in the Directory Server schema.  The attribute that is to be \
### used for username lookups during SASL PLAIN authentication must be defined in \
### the server schema
INFO_SASLPLAIN_DESCRIPTION_USER_BASE_DN_145=SASL PLAIN \u8a8d\u8a3c\u306e\u3068\u304d\u306b\u6307\u5b9a\u3055\u308c\u305f\u8a8d\u8a3c ID/\u8a8d\u53ef ID \u306b\u57fa\u3065\u3044\u3066\u30a8\u30f3\u30c8\u30ea\u3092\u691c\u7d22\u3059\u308b\u3068\u304d\u306b\u4f7f\u7528\u3059\u3079\u304d\u30d9\u30fc\u30b9 DN\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_SASLPLAIN_CANNOT_GET_USER_BASE_DN_146=An unexpected error occurred \
### while attempting to determine the value of the ds-cfg-user-base-dn attribute \
### in configuration entry %s:  %s
MILD_ERR_SASLPLAIN_NO_SASL_CREDENTIALS_147=SASL PLAIN \u8a8d\u8a3c\u3067\u306f SASL \u8cc7\u683c\u60c5\u5831\u3092\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u304c\u3001\u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u306b\u306f\u4f55\u3082\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_SASLPLAIN_NO_NULLS_IN_CREDENTIALS_148=SASL PLAIN \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u306b NULL \u6587\u5b57\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3067\u3057\u305f\u3002  \u8a8d\u53ef ID \u3068\u8a8d\u8a3c ID \u306e\u9593\u3001\u304a\u3088\u3073\u8a8d\u8a3c ID \u3068\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u9593\u306b\u306f\u3001\u533a\u5207\u308a\u6587\u5b57\u3068\u3057\u3066 NULL \u6587\u5b57\u304c\u5fc5\u8981\u3067\u3059
MILD_ERR_SASLPLAIN_NO_SECOND_NULL_149=SASL PLAIN \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u306e\u8cc7\u683c\u60c5\u5831\u306b 2 \u756a\u76ee\u306e NULL \u6587\u5b57\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3067\u3057\u305f\u3002NULL \u6587\u5b57\u306f\u3001\u8a8d\u8a3c ID \u3068\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u9593\u306e\u533a\u5207\u308a\u6587\u5b57\u3068\u3057\u3066\u5fc5\u8981\u3067\u3059
MILD_ERR_SASLPLAIN_ZERO_LENGTH_AUTHCID_150=SASL PLAIN \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u306b\u542b\u307e\u308c\u308b\u8a8d\u8a3c ID \u306e\u9577\u3055\u304c 0 \u6587\u5b57\u3067\u3057\u305f\u304c\u3001\u3053\u308c\u306f\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093\u3002  SASL PLAIN \u8a8d\u8a3c\u3067\u306f\u3001\u7a7a\u306e\u6587\u5b57\u5217\u3092\u8a8d\u8a3c ID \u3068\u3057\u3066\u4f7f\u7528\u3059\u308b\u3053\u3068\u306f\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093
MILD_ERR_SASLPLAIN_ZERO_LENGTH_PASSWORD_151=SASL PLAIN \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u306b\u542b\u307e\u308c\u308b\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u9577\u3055\u304c 0 \u6587\u5b57\u3067\u3057\u305f\u304c\u3001\u3053\u308c\u306f\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093\u3002  SASL PLAIN \u8a8d\u8a3c\u3067\u306f\u3001\u7a7a\u306e\u6587\u5b57\u5217\u3092\u30d1\u30b9\u30ef\u30fc\u30c9\u3068\u3057\u3066\u4f7f\u7528\u3059\u308b\u3053\u3068\u306f\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093
MILD_ERR_SASLPLAIN_CANNOT_DECODE_AUTHCID_AS_DN_152=SASL PLAIN \u306e\u8a8d\u8a3c ID "%s" \u3092\u5fa9\u53f7\u5316\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002DN \u304c\u542b\u307e\u308c\u3066\u3044\u305f\u3088\u3046\u3067\u3059\u304c\u3001DN \u306e\u5fa9\u53f7\u5316\u306b\u5931\u6557\u3057\u307e\u3057\u305f:  %s
MILD_ERR_SASLPLAIN_AUTHCID_IS_NULL_DN_153=SASL PLAIN \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u5185\u306e\u8a8d\u8a3c ID \u304c\u7a7a\u306e DN \u306e\u3088\u3046\u3067\u3059\u3002  \u3053\u308c\u306f\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093
MILD_ERR_SASLPLAIN_CANNOT_GET_ENTRY_BY_DN_154=SASL PLAIN \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u306e DN \u30d9\u30fc\u30b9\u306e\u8a8d\u8a3c ID \u306b\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea %s \u3092\u53d6\u5f97\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_SASLPLAIN_CANNOT_PERFORM_INTERNAL_SEARCH_155=SASL PLAIN \u306e\u8a8d\u8a3c ID %s \u306b\u95a2\u9023\u4ed8\u3051\u3089\u308c\u305f\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306e\u5185\u90e8\u691c\u7d22\u3092\u5b9f\u884c\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u691c\u7d22\u306e\u7d50\u679c\u306f %s \u3067\u3001\u30e1\u30c3\u30bb\u30fc\u30b8\u306f %s \u3067\u3057\u305f
MILD_ERR_SASLPLAIN_MULTIPLE_MATCHING_ENTRIES_156=SASL PLAIN \u306e\u8a8d\u8a3c ID %s \u306e\u89e3\u6c7a\u3092\u8a66\u307f\u308b\u5185\u90e8\u691c\u7d22\u3067\u3001\u8907\u6570\u306e\u30a8\u30f3\u30c8\u30ea\u304c\u4e00\u81f4\u3057\u307e\u3057\u305f\u3002  \u8a8d\u8a3c ID \u304c\u6b63\u78ba\u306b 1 \u3064\u306e\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u3001\u8a8d\u8a3c\u306f\u6210\u529f\u3057\u307e\u305b\u3093
MILD_ERR_SASLPLAIN_NO_MATCHING_ENTRIES_157=\u30b5\u30fc\u30d0\u30fc\u3067\u3001\u6307\u5b9a\u3055\u308c\u305f\u8a8d\u8a3c ID %s \u306e\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_SASLPLAIN_NO_PW_ATTR_158=SASL PLAIN \u8a8d\u8a3c\u304c\u5931\u6557\u3057\u307e\u3057\u305f\u3002\u30de\u30c3\u30d7\u3055\u308c\u305f\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b %s \u5c5e\u6027\u306e\u5024\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_SASLPLAIN_UNKNOWN_STORAGE_SCHEME_159=\u30bf\u30fc\u30b2\u30c3\u30c8\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u3092 SASL PLAIN \u3067\u51e6\u7406\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u305d\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u306b\u3001\u4e0d\u660e\u306a\u8a18\u61b6\u30b9\u30ad\u30fc\u30de %s \u304c\u3042\u308a\u307e\u3059
MILD_ERR_SASLPLAIN_INVALID_PASSWORD_160=\u6307\u5b9a\u3057\u305f\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u7121\u52b9\u3067\u3059
INFO_SASLPLAIN_UPDATED_USERNAME_ATTR_161=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e\u5c5e\u6027 ds-cfg-user-name-attribute \u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002  \u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u3092\u305d\u306e\u8a8d\u8a3c ID/\u8a8d\u53ef ID \u306b\u57fa\u3065\u3044\u3066\u691c\u7d22\u3059\u308b\u3068\u304d\u306b\u3001%s \u5c5e\u6027\u304c\u4f7f\u7528\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059
INFO_SASLPLAIN_UPDATED_USER_BASE_DN_162=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e\u5c5e\u6027 ds-cfg-user-base-dn \u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002  \u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u3092\u305d\u306e\u8a8d\u8a3c ID/\u8a8d\u53ef ID \u306b\u57fa\u3065\u3044\u3066\u691c\u7d22\u3059\u308b\u3068\u304d\u306b\u3001DN %s \u304c\u691c\u7d22\u30d9\u30fc\u30b9\u3068\u3057\u3066\u4f7f\u7528\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059
INFO_SASLPLAIN_CANNOT_LOCK_ENTRY_163=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306f\u3001\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea %s \u3092\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u305d\u306e\u30a8\u30f3\u30c8\u30ea\u306e\u8aad\u307f\u53d6\u308a\u30ed\u30c3\u30af\u3092\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_SEDCM_CANNOT_LOCK_ENTRY_164=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306f\u3001\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea %s \u3092\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u305d\u306e\u30a8\u30f3\u30c8\u30ea\u306e\u8aad\u307f\u53d6\u308a\u30ed\u30c3\u30af\u3092\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f
INFO_SASLANONYMOUS_TRACE_165=SASL ANONYMOUS \u30d0\u30a4\u30f3\u30c9\u64cd\u4f5c (conn=%d\u3001op=%d) \u306b\u3088\u3063\u3066\u30c8\u30ec\u30fc\u30b9\u60c5\u5831\u304c\u6307\u5b9a\u3055\u308c\u307e\u3057\u305f:  %s
###SEVERE_ERR_SASLCRAMMD5_CANNOT_GET_MESSAGE_DIGEST_166=An unexpected error \
### occurred while attempting to obtain an MD5 digest engine for use by the \
### CRAM-MD5 SASL handler:  %s
INFO_SASLCRAMMD5_DESCRIPTION_USERNAME_ATTRIBUTE_167=SASL CRAM-MD5 \u8a8d\u8a3c\u306e\u3068\u304d\u306b\u6307\u5b9a\u3055\u308c\u305f\u30e6\u30fc\u30b6\u30fc\u540d\u306b\u57fa\u3065\u3044\u3066\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u3092\u8b58\u5225\u3059\u308b\u305f\u3081\u306b\u4f7f\u7528\u3059\u308b\u5c5e\u6027\u306e\u540d\u524d\u3002  \u3053\u308c\u306b\u306f\u3001\u30b5\u30fc\u30d0\u30fc\u30b9\u30ad\u30fc\u30de\u3067\u5b9a\u7fa9\u3055\u308c\u305f\u6709\u52b9\u306a\u5c5e\u6027\u578b\u306e\u540d\u524d\u3092\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_SASLCRAMMD5_CANNOT_GET_USERNAME_ATTR_168=An unexpected error \
### occurred while attempting to determine the value of the \
### ds-cfg-user-name-attribute attribute in configuration entry %s:  %s
###SEVERE_ERR_SASLCRAMMD5_UNKNOWN_USERNAME_ATTR_169=The attribute %s referenced \
### in configuration attribute ds-cfg-user-name-attribute in configuration entry \
### %s does not exist in the Directory Server schema.  The attribute that is to \
### be used for username lookups during SASL CRAM-MD5 authentication must be \
### defined in the server schema
INFO_SASLCRAMMD5_DESCRIPTION_USER_BASE_DN_170=SASL CRAM-MD5 \u8a8d\u8a3c\u306e\u3068\u304d\u306b\u6307\u5b9a\u3055\u308c\u305f\u30e6\u30fc\u30b6\u30fc\u540d\u306b\u57fa\u3065\u3044\u3066\u30a8\u30f3\u30c8\u30ea\u3092\u691c\u7d22\u3059\u308b\u3068\u304d\u306b\u4f7f\u7528\u3059\u3079\u304d\u30d9\u30fc\u30b9 DN\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_SASLCRAMMD5_CANNOT_GET_USER_BASE_DN_171=An unexpected error \
### occurred while attempting to determine the value of the ds-cfg-user-base-dn \
### attribute in configuration entry %s:  %s
MILD_ERR_SASLCRAMMD5_NO_STORED_CHALLENGE_172=SASL CRAM-MD5 \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u306b SASL \u8cc7\u683c\u60c5\u5831\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3057\u305f\u304c\u3001\u3053\u306e\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u63a5\u7d9a\u7528\u306b\u683c\u7d0d\u3055\u308c\u305f\u30c1\u30e3\u30ec\u30f3\u30b8\u304c\u3042\u308a\u307e\u305b\u3093\u3002  2 \u6bb5\u968e\u30d7\u30ed\u30bb\u30b9\u5185\u306e\u6700\u521d\u306e CRAM-MD5 \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u306b\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u306e SASL \u8cc7\u683c\u3092\u542b\u3081\u3066\u306f\u3044\u3051\u307e\u305b\u3093
MILD_ERR_SASLCRAMMD5_INVALID_STORED_CHALLENGE_173=SASL CRAM-MD5 \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u306b SASL \u8cc7\u683c\u60c5\u5831\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3057\u305f\u304c\u3001\u3053\u306e\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u63a5\u7d9a\u7528\u306b\u683c\u7d0d\u3055\u308c\u305f SASL \u72b6\u614b\u60c5\u5831\u304c\u30c1\u30e3\u30ec\u30f3\u30b8\u306b\u9069\u5207\u306a\u5f62\u5f0f\u3067\u306f\u3042\u308a\u307e\u305b\u3093
MILD_ERR_SASLCRAMMD5_NO_SPACE_IN_CREDENTIALS_174=\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u304b\u3089\u306e SASL CRAM-MD5 \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u306b SASL \u8cc7\u683c\u60c5\u5831\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3057\u305f\u304c\u3001\u30e6\u30fc\u30b6\u30fc\u540d\u3068\u8a8d\u8a3c\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8\u3092\u5206\u3051\u308b\u30b9\u30da\u30fc\u30b9\u304c\u3042\u308a\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_SASLCRAMMD5_INVALID_DIGEST_LENGTH_175=SASL CRAM-MD5 \u30d0\u30a4\u30f3\u30c9\u8a8d\u8a3c\u306b SASL \u8cc7\u683c\u60c5\u5831\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3057\u305f\u304c\u3001\u5fa9\u53f7\u5316\u3055\u308c\u305f\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8\u6587\u5b57\u5217\u306e\u9577\u3055\u304c %d \u30d0\u30a4\u30c8\u3067\u7121\u52b9\u3067\u3057\u305f\u300216 \u9032\u8868\u73fe\u306e MD5 \u30c0\u30a4\u30b8\u30a7\u30b9\u30c8\u306b\u671f\u5f85\u3055\u308c\u308b\u9577\u3055\u306f %d \u30d0\u30a4\u30c8\u3067\u3059
MILD_ERR_SASLCRAMMD5_INVALID_DIGEST_CONTENT_176=SASL CRAM-MD5 \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u306b SASL \u8cc7\u683c\u60c5\u5831\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3057\u305f\u304c\u3001\u5fa9\u53f7\u5316\u3055\u308c\u305f\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8\u304c 16 \u9032\u6570\u5b57\u3060\u3051\u3067\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3067\u3057\u305f:  %s
MILD_ERR_SASLCRAMMD5_CANNOT_DECODE_USERNAME_AS_DN_177=SASL CRAM-MD5 \u306e\u30e6\u30fc\u30b6\u30fc\u540d "%s" \u3092\u5fa9\u53f7\u5316\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002DN \u304c\u542b\u307e\u308c\u3066\u3044\u305f\u3088\u3046\u3067\u3059\u304c\u3001DN \u306e\u5fa9\u53f7\u5316\u306b\u5931\u6557\u3057\u307e\u3057\u305f:  %s
MILD_ERR_SASLCRAMMD5_USERNAME_IS_NULL_DN_178=SASL CRAM-MD5 \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u5185\u306e\u30e6\u30fc\u30b6\u30fc\u540d\u304c\u7a7a\u306e DN \u306e\u3088\u3046\u3067\u3059\u3002  \u3053\u308c\u306f\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093
INFO_SASLCRAMMD5_CANNOT_LOCK_ENTRY_179=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306f\u3001\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea %s \u3092\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u305d\u306e\u30a8\u30f3\u30c8\u30ea\u306e\u8aad\u307f\u53d6\u308a\u30ed\u30c3\u30af\u3092\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_SASLCRAMMD5_CANNOT_GET_ENTRY_BY_DN_180=SASL CRAM-MD5 \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u306e DN \u30d9\u30fc\u30b9\u306e\u30e6\u30fc\u30b6\u30fc\u540d\u306b\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea %s \u3092\u53d6\u5f97\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_SASLCRAMMD5_ZERO_LENGTH_USERNAME_181=SASL CRAM-MD5 \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u306b\u542b\u307e\u308c\u308b\u30e6\u30fc\u30b6\u30fc\u540d\u306e\u9577\u3055\u304c 0 \u6587\u5b57\u3067\u3057\u305f\u304c\u3001\u3053\u308c\u306f\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093\u3002  CRAM-MD5 \u8a8d\u8a3c\u3067\u306f\u3001\u7a7a\u306e\u6587\u5b57\u5217\u3092\u30e6\u30fc\u30b6\u30fc\u540d\u3068\u3057\u3066\u4f7f\u7528\u3059\u308b\u3053\u3068\u306f\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093
MILD_ERR_SASLCRAMMD5_CANNOT_PERFORM_INTERNAL_SEARCH_182=SASL CRAM-MD5 \u306e\u30e6\u30fc\u30b6\u30fc\u540d %s \u306b\u95a2\u9023\u4ed8\u3051\u3089\u308c\u305f\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306e\u5185\u90e8\u691c\u7d22\u3092\u5b9f\u884c\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u691c\u7d22\u306e\u7d50\u679c\u306f %s \u3067\u3001\u30e1\u30c3\u30bb\u30fc\u30b8\u306f %s \u3067\u3057\u305f
MILD_ERR_SASLCRAMMD5_MULTIPLE_MATCHING_ENTRIES_183=SASL CRAM-MD5 \u306e\u30e6\u30fc\u30b6\u30fc\u540d %s \u306e\u89e3\u6c7a\u3092\u8a66\u307f\u308b\u5185\u90e8\u691c\u7d22\u3067\u3001\u8907\u6570\u306e\u30a8\u30f3\u30c8\u30ea\u304c\u4e00\u81f4\u3057\u307e\u3057\u305f\u3002 \u30e6\u30fc\u30b6\u30fc\u540d\u304c\u6b63\u78ba\u306b 1 \u3064\u306e\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u3001\u8a8d\u8a3c\u306f\u6210\u529f\u3057\u307e\u305b\u3093
MILD_ERR_SASLCRAMMD5_NO_MATCHING_ENTRIES_184=\u30b5\u30fc\u30d0\u30fc\u3067\u3001\u6307\u5b9a\u3055\u308c\u305f\u30e6\u30fc\u30b6\u30fc\u540d %s \u306e\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_SASLCRAMMD5_NO_PW_ATTR_185=SASL CRAM-MD5 \u8a8d\u8a3c\u304c\u5931\u6557\u3057\u307e\u3057\u305f\u3002\u30de\u30c3\u30d7\u3055\u308c\u305f\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b %s \u5c5e\u6027\u306e\u5024\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_SASLCRAMMD5_UNKNOWN_STORAGE_SCHEME_186=\u30bf\u30fc\u30b2\u30c3\u30c8\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u3092 SASL CRAM-MD5 \u3067\u51e6\u7406\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u305d\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u306b\u3001\u4e0d\u660e\u306a\u8a18\u61b6\u30b9\u30ad\u30fc\u30de %s \u304c\u3042\u308a\u307e\u3059
MILD_ERR_SASLCRAMMD5_CANNOT_GET_CLEAR_PASSWORD_187=\u8a18\u61b6\u30b9\u30ad\u30fc\u30de %2$s \u306e\u5024\u304b\u3089\u30e6\u30fc\u30b6\u30fc %1$s \u306e\u5e73\u6587\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u53d6\u5f97\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %3$s
MILD_ERR_SASLCRAMMD5_INVALID_PASSWORD_188=\u6307\u5b9a\u3057\u305f\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u7121\u52b9\u3067\u3059
MILD_ERR_SASLCRAMMD5_NO_REVERSIBLE_PASSWORDS_189=SASL CRAM-MD5 \u8a8d\u8a3c\u306f\u30e6\u30fc\u30b6\u30fc %s \u306b\u306f\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u5185\u306b\u53ef\u9006\u5f62\u5f0f\u3067\u683c\u7d0d\u3055\u308c\u3066\u3044\u308b\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u3042\u308a\u307e\u305b\u3093
INFO_SASLCRAMMD5_UPDATED_USERNAME_ATTR_190=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e\u5c5e\u6027 ds-cfg-user-name-attribute \u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002  \u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u3092\u305d\u306e\u30e6\u30fc\u30b6\u30fc\u540d\u306b\u57fa\u3065\u3044\u3066\u691c\u7d22\u3059\u308b\u3068\u304d\u306b\u3001%s \u5c5e\u6027\u304c\u4f7f\u7528\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059
INFO_SASLCRAMMD5_UPDATED_USER_BASE_DN_191=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e\u5c5e\u6027 ds-cfg-user-base-dn \u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002  \u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u3092\u305d\u306e\u30e6\u30fc\u30b6\u30fc\u540d\u306b\u57fa\u3065\u3044\u3066\u691c\u7d22\u3059\u308b\u3068\u304d\u306b\u3001DN %s \u304c\u691c\u7d22\u30d9\u30fc\u30b9\u3068\u3057\u3066\u4f7f\u7528\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059
 INFO_SASL_UNSUPPORTED_CALLBACK_192=\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u306a\u3044\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u307e\u305f\u306f\u4e88\u671f\u3057\u306a\u3044\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u304c\u3001%s \u8a8d\u8a3c\u306e\u3068\u304d\u306b\u4f7f\u7528\u3059\u308b SASL \u30b5\u30fc\u30d0\u30fc\u306b\u5bfe\u3057\u3066\u6307\u5b9a\u3055\u308c\u307e\u3057\u305f:  %s
MILD_ERR_SASL_NO_CREDENTIALS_193=\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u63a5\u7d9a\u306b %s \u72b6\u614b\u60c5\u5831\u304c\u542b\u307e\u308c\u3066\u304a\u308a\u3001\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u304c %s \u30d0\u30a4\u30f3\u30c9\u306e\u5b9f\u884c\u51e6\u7406\u4e2d\u3067\u3042\u308b\u3053\u3068\u3092\u793a\u3057\u3066\u3044\u307e\u3057\u305f\u304c\u3001\u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u306b\u8cc7\u683c\u60c5\u5831\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3067\u3057\u305f
###SEVERE_ERR_SASL_CANNOT_GET_SERVER_FQDN_194=An unexpected error occurred \
### while attempting to determine the value of the ds-cfg-server-fqdn attribute \
### in configuration entry %s:  %s
 SEVERE_ERR_SASL_CONTEXT_CREATE_ERROR_195=%s \u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u306e\u4f5c\u6210\u4e2d\u306b\u4e88\u671f\u3057\u306a\u3044\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f: %s
MILD_ERR_SASL_CANNOT_DECODE_USERNAME_AS_DN_196=SASL %s \u306e\u30e6\u30fc\u30b6\u30fc\u540d "%s" \u3092\u5fa9\u53f7\u5316\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002DN \u304c\u542b\u307e\u308c\u3066\u3044\u305f\u3088\u3046\u3067\u3059\u304c\u3001DN \u306e\u5fa9\u53f7\u5316\u306b\u5931\u6557\u3057\u307e\u3057\u305f:  %s
MILD_ERR_SASL_USERNAME_IS_NULL_DN_197=SASL %s \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u5185\u306e\u30e6\u30fc\u30b6\u30fc\u540d\u304c\u7a7a\u306e DN \u306e\u3088\u3046\u3067\u3059\u3002\u3053\u308c\u306f\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093
INFO_SASL_CANNOT_LOCK_ENTRY_198=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306f\u3001\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea %s \u3092\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u305d\u306e\u30a8\u30f3\u30c8\u30ea\u306e\u8aad\u307f\u53d6\u308a\u30ed\u30c3\u30af\u3092\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_SASL_CANNOT_GET_ENTRY_BY_DN_199=SASL %s \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u306e DN \u30d9\u30fc\u30b9\u306e\u30e6\u30fc\u30b6\u30fc\u540d\u306b\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea %s \u3092\u53d6\u5f97\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f: %s
MILD_ERR_SASL_ZERO_LENGTH_USERNAME_200=SASL %s \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u306b\u542b\u307e\u308c\u308b\u30e6\u30fc\u30b6\u30fc\u540d\u306e\u9577\u3055\u304c 0 \u6587\u5b57\u3067\u3059\u3002\u3053\u308c\u306f\u8a31\u53ef\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002%s \u8a8d\u8a3c\u3067\u306f\u3001\u7a7a\u306e\u6587\u5b57\u5217\u3092\u30e6\u30fc\u30b6\u30fc\u540d\u3068\u3057\u3066\u4f7f\u7528\u3059\u308b\u3053\u3068\u306f\u8a31\u53ef\u3055\u308c\u3066\u3044\u307e\u305b\u3093
MILD_ERR_SASL_NO_MATCHING_ENTRIES_201=\u30b5\u30fc\u30d0\u30fc\u3067\u3001\u6307\u5b9a\u3055\u308c\u305f\u30e6\u30fc\u30b6\u30fc\u540d %s \u306e\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_SASL_AUTHZID_INVALID_DN_202=\u6307\u5b9a\u3055\u308c\u305f\u8a8d\u53ef ID %s \u306b\u7121\u52b9\u306a DN \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3057\u305f:  %s
 MILD_ERR_SASL_AUTHZID_NO_SUCH_ENTRY_203=\u8a8d\u53ef ID \u3068\u3057\u3066\u6307\u5b9a\u3055\u308c\u305f\u30a8\u30f3\u30c8\u30ea %s \u304c\u5b58\u5728\u3057\u307e\u305b\u3093
MILD_ERR_SASL_AUTHZID_CANNOT_GET_ENTRY_204=\u8a8d\u53ef ID \u3068\u3057\u3066\u6307\u5b9a\u3055\u308c\u305f\u30a8\u30f3\u30c8\u30ea %s \u3092\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f:  %s
MILD_ERR_SASL_AUTHZID_NO_MAPPED_ENTRY_205=\u30b5\u30fc\u30d0\u30fc\u306f\u3001\u8a8d\u53ef ID %s \u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u3092\u898b\u3064\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_SASL_CANNOT_MAP_AUTHZID_206=\u8a8d\u53ef ID %s \u3092\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_SASL_CANNOT_GET_REVERSIBLE_PASSWORDS_207=SASL %s \u8a8d\u8a3c\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306e\u30e6\u30fc\u30b6\u30fc %s \u306e\u5e73\u6587\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u53d6\u5f97\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %3$s
MILD_ERR_SASL_NO_REVERSIBLE_PASSWORDS_208=SASL %s \u8a8d\u8a3c\u3092\u30e6\u30fc\u30b6\u30fc %s \u306b\u306f\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093\u3002\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u5185\u306b\u53ef\u9006\u5f62\u5f0f\u3067\u683c\u7d0d\u3055\u308c\u3066\u3044\u308b\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u3042\u308a\u307e\u305b\u3093
###SEVERE_ERR_SASL_PROTOCOL_ERROR_209=SASL %s protocol error: %s
MILD_ERR_SASL_AUTHZID_INSUFFICIENT_PRIVILEGES_210=\u8a8d\u8a3c\u30e6\u30fc\u30b6\u30fc %s \u306b\u306f\u3001\u5225\u306e\u8a8d\u53ef ID \u3092\u60f3\u5b9a\u3059\u308b\u305f\u3081\u306e\u5341\u5206\u306a\u6a29\u9650\u304c\u3042\u308a\u307e\u305b\u3093
MILD_ERR_SASL_AUTHZID_INSUFFICIENT_ACCESS_211=\u8a8d\u8a3c\u30e6\u30fc\u30b6\u30fc %s \u306b\u306f\u3001\u5225\u306e\u8a8d\u53ef ID \u3092\u60f3\u5b9a\u3059\u308b\u305f\u3081\u306e\u5341\u5206\u306a\u30a2\u30af\u30bb\u30b9\u6a29\u304c\u3042\u308a\u307e\u305b\u3093
MILD_ERR_SASL_AUTHENTRY_NO_MAPPED_ENTRY_212=\u30b5\u30fc\u30d0\u30fc\u306f\u3001\u8a8d\u8a3c ID %s \u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u3092\u898b\u3064\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f
###SEVERE_ERR_SASLGSSAPI_KDC_REALM_NOT_DEFINED_213=The server was unable to \
### because both the ds-cfg-kdc-address and ds-cfg-realm attributes must be \
### defined or neither defined
MILD_ERR_SASL_CANNOT_MAP_AUTHENTRY_214=\u8a8d\u53ef ID %s \u3092\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
###SEVERE_ERR_SASLGSSAPI_CANNOT_CREATE_JAAS_CONFIG_215=An error occurred while \
### attempting to write a temporary JAAS configuration file for use during GSSAPI \
### processing:  %s
 SEVERE_ERR_SASLGSSAPI_CANNOT_CREATE_LOGIN_CONTEXT_216=GSSAPI \u8a8d\u8a3c\u306e JAAS \u30ed\u30b0\u30a4\u30f3\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u3092\u4f5c\u6210\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
 MILD_ERR_SASLGSSAPI_NO_CLIENT_CONNECTION_217=GSSAPI \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u306e\u51e6\u7406\u306b\u4f7f\u7528\u3067\u304d\u308b\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u63a5\u7d9a\u304c\u3042\u308a\u307e\u305b\u3093\u3067\u3057\u305f
 INFO_GSSAPI_PRINCIPAL_NAME_218=\u6b21\u306e\u4e3b\u4f53\u540d\u3092\u4f7f\u7528\u3057\u305f GSSAPI \u6a5f\u69cb: %s
 INFO_GSSAPI_SERVER_FQDN_219=\u6b21\u306e\u30b5\u30fc\u30d0\u30fc\u5b8c\u5168\u4fee\u98fe\u30c9\u30e1\u30a4\u30f3\u540d\u3092\u4f7f\u7528\u3057\u305f GSSAPI SASL \u6a5f\u69cb: %s
 INFO_DIGEST_MD5_REALM_220=\u6b21\u306e\u30ec\u30eb\u30e0\u3092\u4f7f\u7528\u3057\u305f DIGEST-MD5 SASL \u6a5f\u69cb: %s
 INFO_DIGEST_MD5_SERVER_FQDN_221=\u6b21\u306e\u30b5\u30fc\u30d0\u30fc\u5b8c\u5168\u4fee\u98fe\u30c9\u30e1\u30a4\u30f3\u540d\u3092\u4f7f\u7528\u3057\u305f DIGEST-MD5 SASL \u6a5f\u69cb: %s
###SEVERE_ERR_EXTOP_WHOAMI_PROXYAUTH_INSUFFICIENT_PRIVILEGES_277=You do not have \
### sufficient privileges to use the proxied authorization control
INFO_EXACTMAP_DESCRIPTION_MATCH_ATTR_298=\u5024\u304c\u3053\u306e\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u306b\u6307\u5b9a\u3055\u308c\u305f ID \u6587\u5b57\u5217\u3068\u6b63\u78ba\u306b\u4e00\u81f4\u3059\u3079\u304d\u5c5e\u6027\u306e\u540d\u524d\u307e\u305f\u306f OID\u3002  1 \u3064\u4ee5\u4e0a\u306e\u5024\u3092\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002  \u3059\u3079\u3066\u306e\u5024\u304c\u3001\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306e\u30b9\u30ad\u30fc\u30de\u3067\u5b9a\u7fa9\u3055\u308c\u305f\u5c5e\u6027\u578b\u306e\u540d\u524d\u307e\u305f\u306f OID \u3092\u53c2\u7167\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002  \u8907\u6570\u306e\u5c5e\u6027\u578b\u540d\u307e\u305f\u306f OID \u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f\u3001\u305d\u308c\u3089\u306e\u5c5e\u6027\u306e 1 \u3064\u4ee5\u4e0a\u3067\u3001\u6307\u5b9a\u3055\u308c\u305f ID \u6587\u5b57\u5217\u5024\u304c\u6b63\u78ba\u306b 1 \u3064\u306e\u30a8\u30f3\u30c8\u30ea\u306b\u542b\u307e\u308c\u3066\u3044\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059
MILD_ERR_EXACTMAP_NO_MATCH_ATTR_299=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u306b\u3001\u5c5e\u6027 ds-cfg-match-attribute \u306e\u5024\u304c\u3042\u308a\u307e\u305b\u3093\u3002\u3053\u306e\u5024\u306f\u3001\u6307\u5b9a\u3055\u308c\u305f ID \u6587\u5b57\u5217\u3092\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u3059\u308b\u305f\u3081\u306b\u4f7f\u7528\u3067\u304d\u308b\u5c5e\u6027\u3092\u6307\u5b9a\u3059\u308b\u305f\u3081\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059
MILD_ERR_EXACTMAP_UNKNOWN_ATTR_300=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u306b\u5c5e\u6027 ds-cfg-match-attribute \u306e\u5024 %s \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059\u304c\u3001\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306e\u30b9\u30ad\u30fc\u30de\u3067\u5b9a\u7fa9\u3055\u308c\u305f\u5c5e\u6027\u578b\u306e\u6709\u52b9\u306a\u540d\u524d\u307e\u305f\u306f OID \u3067\u306f\u3042\u308a\u307e\u305b\u3093
MILD_ERR_EXACTMAP_CANNOT_DETERMINE_MATCH_ATTR_301=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e\u5c5e\u6027 ds-cfg-match-attribute \u306e\u5024\u3092\u51e6\u7406\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f: %s
INFO_EXACTMAP_DESCRIPTION_SEARCH_BASE_302=\u6307\u5b9a\u3055\u308c\u305f ID \u6587\u5b57\u5217\u3092\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u3059\u308b\u305f\u3081\u306e\u691c\u7d22\u3092\u5b9f\u884c\u3059\u308b\u3068\u304d\u306b\u4f7f\u7528\u3059\u3079\u304d\u30d9\u30fc\u30b9 DN\u3002  \u5024\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306f\u3001\u30eb\u30fc\u30c8 DSE \u304c\u691c\u7d22\u30d9\u30fc\u30b9\u3068\u3057\u3066\u4f7f\u7528\u3055\u308c\u307e\u3059
MILD_ERR_EXACTMAP_CANNOT_DETERMINE_MATCH_BASE_303=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e\u5c5e\u6027 ds-cfg-match-base-dn \u306e\u5024\u3092\u51e6\u7406\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f: %s
INFO_EXACTMAP_UPDATED_MATCH_ATTRS_304=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u306e\u5c5e\u6027 ds-cfg-match-attribute \u306b\u542b\u307e\u308c\u308b\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u3068\u4e00\u81f4\u3059\u308b ID \u6587\u5b57\u5217\u304c\u66f4\u65b0\u3055\u308c\u305f\u3068\u304d\u306b\u4f7f\u7528\u3059\u308b\u5c5e\u6027\u30bb\u30c3\u30c8
INFO_EXACTMAP_UPDATED_MATCH_BASES_305=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u306e\u5c5e\u6027 ds-cfg-match-base-dn \u306b\u542b\u307e\u308c\u308b\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u3068\u4e00\u81f4\u3059\u308b ID \u6587\u5b57\u5217\u304c\u66f4\u65b0\u3055\u308c\u305f\u3068\u304d\u306b\u4f7f\u7528\u3059\u308b\u691c\u7d22\u30d9\u30fc\u30b9 DN \u30bb\u30c3\u30c8
MILD_ERR_EXACTMAP_MULTIPLE_MATCHING_ENTRIES_306=ID \u6587\u5b57\u5217 %s \u304c\u8907\u6570\u306e\u30e6\u30fc\u30b6\u30fc\u306b\u30de\u30c3\u30d7\u3055\u308c\u3066\u3044\u307e\u3059
MILD_ERR_EXACTMAP_INEFFICIENT_SEARCH_307=ID \u6587\u5b57\u5217 %s \u306b\u57fa\u3065\u304f\u5185\u90e8\u691c\u7d22\u3092\u52b9\u7387\u7684\u306b\u51e6\u7406\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f:  %s\u3002\u30b5\u30fc\u30d0\u30fc\u69cb\u6210\u3092\u78ba\u8a8d\u3057\u3066\u3001\u95a2\u9023\u3059\u308b\u3059\u3079\u3066\u306e\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u304c\u3053\u308c\u3089\u306e\u30bf\u30a4\u30d7\u306e\u691c\u7d22\u306b\u5bfe\u3057\u3066\u6b63\u3057\u304f\u69cb\u6210\u3055\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044
MILD_ERR_EXACTMAP_SEARCH_FAILED_308=ID \u6587\u5b57\u5217 %s \u3092\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u3078\u89e3\u6c7a\u4e2d\u306b\u5185\u90e8\u969c\u5bb3\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
INFO_SASLCRAMMD5_DESCRIPTION_IDENTITY_MAPPER_DN_309=CRAM-MD5 \u30e6\u30fc\u30b6\u30fc\u540d\u3092\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306e\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u3059\u308b\u3068\u304d\u306b\u4f7f\u7528\u3059\u3079\u304d\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u306e\u69cb\u6210\u3092\u4fdd\u6301\u3059\u308b\u69cb\u6210\u30a8\u30f3\u30c8\u30ea\u306e DN\u3002 \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
MILD_ERR_SASLCRAMMD5_NO_IDENTITY_MAPPER_ATTR_310=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u306b\u5c5e\u6027 ds-cfg-identity-mapper \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u3053\u306e\u5c5e\u6027\u306f\u3001CRAM-MD5 SASL \u6a5f\u69cb\u3068\u3068\u3082\u306b\u4f7f\u7528\u3059\u308b\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u306e DN \u3092\u6307\u5b9a\u3057\u307e\u3059\u3002  \u3053\u308c\u306f\u5fc5\u9808\u5c5e\u6027\u3067\u3059
MILD_ERR_SASLCRAMMD5_NO_SUCH_IDENTITY_MAPPER_311=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %2$s \u306e\u5c5e\u6027 ds-cfg-identity-mapper \u3067\u6307\u5b9a\u3055\u308c\u305f\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc %1$s \u304c\u3001\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u3067\u4f7f\u7528\u3067\u304d\u308b\u6709\u52b9\u306a\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u69cb\u6210\u3092\u53c2\u7167\u3057\u3066\u3044\u307e\u305b\u3093
MILD_ERR_SASLCRAMMD5_CANNOT_GET_IDENTITY_MAPPER_312=CRAM-MD5 SASL \u6a5f\u69cb\u3068\u3068\u3082\u306b\u4f7f\u7528\u3059\u3079\u304d\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u3092\u5224\u5b9a\u3059\u308b\u305f\u3081\u306b\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e ds-cfg-identity-mapper \u5c5e\u6027\u306e\u5024\u3092\u51e6\u7406\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_SASLCRAMMD5_CANNOT_MAP_USERNAME_313=\u30e6\u30fc\u30b6\u30fc\u540d %s \u3092\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306e\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
INFO_SASLCRAMMD5_UPDATED_IDENTITY_MAPPER_314=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e\u5c5e\u6027 ds-cfg-identity-mapper \u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002  \u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u3067\u5b9a\u7fa9\u3055\u308c\u305f\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u306f\u3001SASL CRAM-MD5 \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u3092\u51e6\u7406\u3059\u308b\u3068\u304d\u306b\u30e6\u30fc\u30b6\u30fc\u540d\u3092\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u3059\u308b\u305f\u3081\u306b\u4f7f\u7528\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059
INFO_SASLDIGESTMD5_DESCRIPTION_IDENTITY_MAPPER_DN_315=DIGEST-MD5 \u30e6\u30fc\u30b6\u30fc\u540d\u3092\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306e\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u3059\u308b\u3068\u304d\u306b\u4f7f\u7528\u3059\u3079\u304d\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u306e\u69cb\u6210\u3092\u4fdd\u6301\u3059\u308b\u69cb\u6210\u30a8\u30f3\u30c8\u30ea\u306e DN\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
MILD_ERR_SASLDIGESTMD5_NO_IDENTITY_MAPPER_ATTR_316=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u306b\u5c5e\u6027 ds-cfg-identity-mapper \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u3053\u306e\u5c5e\u6027\u306f\u3001DIGEST-MD5 SASL \u6a5f\u69cb\u3068\u3068\u3082\u306b\u4f7f\u7528\u3059\u308b\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u306e DN \u3092\u6307\u5b9a\u3057\u307e\u3059\u3002  \u3053\u308c\u306f\u5fc5\u9808\u5c5e\u6027\u3067\u3059
MILD_ERR_SASLDIGESTMD5_NO_SUCH_IDENTITY_MAPPER_317=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %2$s \u306e\u5c5e\u6027 ds-cfg-identity-mapper \u3067\u6307\u5b9a\u3055\u308c\u305f\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc %1$s \u304c\u3001\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u3067\u4f7f\u7528\u3067\u304d\u308b\u6709\u52b9\u306a\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u69cb\u6210\u3092\u53c2\u7167\u3057\u3066\u3044\u307e\u305b\u3093
MILD_ERR_SASLDIGESTMD5_CANNOT_GET_IDENTITY_MAPPER_318=DIGEST-MD5 SASL \u6a5f\u69cb\u3068\u3068\u3082\u306b\u4f7f\u7528\u3059\u3079\u304d\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u3092\u5224\u5b9a\u3059\u308b\u305f\u3081\u306b\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e ds-cfg-identity-mapper \u5c5e\u6027\u306e\u5024\u3092\u51e6\u7406\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_SASLDIGESTMD5_CANNOT_MAP_USERNAME_319=\u30e6\u30fc\u30b6\u30fc\u540d %s \u3092\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306e\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
INFO_SASLDIGESTMD5_UPDATED_IDENTITY_MAPPER_320=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e\u5c5e\u6027 ds-cfg-identity-mapper \u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002  \u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u3067\u5b9a\u7fa9\u3055\u308c\u305f\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u306f\u3001SASL DIGEST-MD5 \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u3092\u51e6\u7406\u3059\u308b\u3068\u304d\u306b\u30e6\u30fc\u30b6\u30fc\u540d\u3092\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u3059\u308b\u305f\u3081\u306b\u4f7f\u7528\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059
INFO_SASLPLAIN_DESCRIPTION_IDENTITY_MAPPER_DN_321=\u6307\u5b9a\u3055\u308c\u305f\u30e6\u30fc\u30b6\u30fc\u540d\u3092\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306e\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u3059\u308b\u3068\u304d\u306b\u4f7f\u7528\u3059\u3079\u304d\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u306e\u69cb\u6210\u3092\u4fdd\u6301\u3059\u308b\u69cb\u6210\u30a8\u30f3\u30c8\u30ea\u306e DN\u3002 \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
MILD_ERR_SASLPLAIN_NO_IDENTITY_MAPPER_ATTR_322=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u306b\u5c5e\u6027 ds-cfg-identity-mapper \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u3053\u306e\u5c5e\u6027\u306f\u3001PLAIN SASL \u6a5f\u69cb\u3068\u3068\u3082\u306b\u4f7f\u7528\u3059\u308b\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u306e DN \u3092\u6307\u5b9a\u3057\u307e\u3059\u3002  \u3053\u308c\u306f\u5fc5\u9808\u5c5e\u6027\u3067\u3059
MILD_ERR_SASLPLAIN_NO_SUCH_IDENTITY_MAPPER_323=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %2$s \u306e\u5c5e\u6027 ds-cfg-identity-mapper \u3067\u6307\u5b9a\u3055\u308c\u305f\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc %1$s \u304c\u3001\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u3067\u4f7f\u7528\u3067\u304d\u308b\u6709\u52b9\u306a\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u69cb\u6210\u3092\u53c2\u7167\u3057\u3066\u3044\u307e\u305b\u3093
MILD_ERR_SASLPLAIN_CANNOT_GET_IDENTITY_MAPPER_324=PLAIN SASL \u6a5f\u69cb\u3068\u3068\u3082\u306b\u4f7f\u7528\u3059\u3079\u304d\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u3092\u5224\u5b9a\u3059\u308b\u305f\u3081\u306b\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e ds-cfg-identity-mapper \u5c5e\u6027\u306e\u5024\u3092\u51e6\u7406\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_SASLPLAIN_CANNOT_MAP_USERNAME_325=\u30e6\u30fc\u30b6\u30fc\u540d %s \u3092\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306e\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
INFO_SASLPLAIN_UPDATED_IDENTITY_MAPPER_326=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e\u5c5e\u6027 ds-cfg-identity-mapper \u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002  \u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u3067\u5b9a\u7fa9\u3055\u308c\u305f\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u306f\u3001SASL PLAIN \u30d0\u30a4\u30f3\u30c9\u8981\u6c42\u3092\u51e6\u7406\u3059\u308b\u3068\u304d\u306b\u30e6\u30fc\u30b6\u30fc\u540d\u3092\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u3059\u308b\u305f\u3081\u306b\u4f7f\u7528\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059
MILD_ERR_EXTOP_CANCEL_NO_REQUEST_VALUE_327=\u53d6\u308a\u6d88\u3057\u8981\u6c42\u3092\u51e6\u7406\u3067\u304d\u307e\u305b\u3093\u3002\u62e1\u5f35\u64cd\u4f5c\u306b\u8981\u6c42\u5024\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_EXTOP_CANCEL_CANNOT_DECODE_REQUEST_VALUE_328=\u53d6\u308a\u6d88\u3057\u62e1\u5f35\u8981\u6c42\u306e\u5024\u3092\u5fa9\u53f7\u5316\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
INFO_EXTOP_CANCEL_REASON_329=\u53d6\u308a\u6d88\u3057\u8981\u6c42\u3092\u53d7\u3051\u53d6\u3063\u305f\u7d50\u679c\u3001\u3053\u306e\u64cd\u4f5c\u306b\u5bfe\u3059\u308b\u51e6\u7406\u306f\u7d42\u4e86\u3057\u307e\u3057\u305f (\u30e1\u30c3\u30bb\u30fc\u30b8 ID %d)
MILD_ERR_PWSCHEME_DOES_NOT_SUPPORT_AUTH_PASSWORD_330=\u30d1\u30b9\u30ef\u30fc\u30c9\u8a18\u61b6\u30b9\u30ad\u30fc\u30de %s \u306f\u3001\u8a8d\u8a3c\u30d1\u30b9\u30ef\u30fc\u30c9\u5c5e\u6027\u69cb\u6587\u3067\u306e\u4f7f\u7528\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u305b\u3093
INFO_PWLENGTHVALIDATOR_DESCRIPTION_MIN_LENGTH_331=\u30d1\u30b9\u30ef\u30fc\u30c9\u306b\u8a2d\u5b9a\u3067\u304d\u308b\u6700\u5c0f\u6587\u5b57\u6570\u3002  0 \u306e\u5024\u306f\u3001\u6700\u4f4e\u306e\u9577\u3055\u306b\u5236\u9650\u304c\u306a\u3044\u3053\u3068\u3092\u793a\u3057\u307e\u3059\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
MILD_ERR_PWLENGTHVALIDATOR_CANNOT_DETERMINE_MIN_LENGTH_332=\u8a31\u53ef\u3055\u308c\u308b\u6700\u5c0f\u30d1\u30b9\u30ef\u30fc\u30c9\u9577\u3092 ds-cfg-min-password-length \u5c5e\u6027\u304b\u3089\u53d6\u5f97\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
INFO_PWLENGTHVALIDATOR_DESCRIPTION_MAX_LENGTH_333=\u30d1\u30b9\u30ef\u30fc\u30c9\u306b\u8a2d\u5b9a\u3067\u304d\u308b\u6700\u5927\u6587\u5b57\u6570\u3002  0 \u306e\u5024\u306f\u3001\u6700\u9577\u306e\u9577\u3055\u306b\u5236\u9650\u304c\u306a\u3044\u3053\u3068\u3092\u793a\u3057\u307e\u3059\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
MILD_ERR_PWLENGTHVALIDATOR_CANNOT_DETERMINE_MAX_LENGTH_334=\u8a31\u53ef\u3055\u308c\u308b\u6700\u5927\u30d1\u30b9\u30ef\u30fc\u30c9\u9577\u3092 ds-cfg-max-password-length \u5c5e\u6027\u304b\u3089\u53d6\u5f97\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_PWLENGTHVALIDATOR_MIN_GREATER_THAN_MAX_335=\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u6700\u5c0f\u30d1\u30b9\u30ef\u30fc\u30c9\u9577\u306e %d \u6587\u5b57\u306f\u3001\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u6700\u5927\u30d1\u30b9\u30ef\u30fc\u30c9\u9577\u306e %d \u3088\u308a\u3082\u5927\u304d\u304f\u306a\u3063\u3066\u3044\u307e\u3059
MILD_ERR_PWLENGTHVALIDATOR_TOO_SHORT_336=\u6307\u5b9a\u3055\u308c\u305f\u30d1\u30b9\u30ef\u30fc\u30c9\u306f\u3001\u6700\u4f4e\u306e\u9577\u3055\u306b\u5fc5\u9808\u306e %d \u6587\u5b57\u306b\u9054\u3057\u3066\u3044\u307e\u305b\u3093
MILD_ERR_PWLENGTHVALIDATOR_TOO_LONG_337=\u6307\u5b9a\u3055\u308c\u305f\u30d1\u30b9\u30ef\u30fc\u30c9\u306f\u3001\u8a31\u53ef\u3055\u308c\u305f\u6700\u9577\u306e\u9577\u3055\u306e %d \u6587\u5b57\u3092\u8d85\u3048\u3066\u3044\u307e\u3059
INFO_PWLENGTHVALIDATOR_UPDATED_MIN_LENGTH_338=\u6700\u5c0f\u30d1\u30b9\u30ef\u30fc\u30c9\u9577\u304c %d \u306b\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f
INFO_PWLENGTHVALIDATOR_UPDATED_MAX_LENGTH_339=\u6700\u5927\u30d1\u30b9\u30ef\u30fc\u30c9\u9577\u304c %d \u306b\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f
INFO_RANDOMPWGEN_DESCRIPTION_CHARSET_340=\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u751f\u6210\u3059\u308b\u3068\u304d\u306b\u4f7f\u7528\u3059\u3079\u304d\u6587\u5b57\u30bb\u30c3\u30c8\u3002  \u5404\u6587\u5b57\u30bb\u30c3\u30c8\u306b\u306f\u3001\u540d\u524d (ASCII \u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u3060\u3051\u3067\u69cb\u6210\u3055\u308c\u308b) \u3068\u3001\u305d\u306e\u76f4\u5f8c\u306b\u30b3\u30ed\u30f3\u3068\u305d\u306e\u6587\u5b57\u30bb\u30c3\u30c8\u306b\u542b\u307e\u308c\u308b\u4e00\u9023\u306e\u6587\u5b57\u3092\u8a2d\u5b9a\u3059\u308b\u3088\u3046\u306b\u3057\u307e\u3059\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
MILD_ERR_RANDOMPWGEN_NO_CHARSETS_341=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea "%s" \u306b\u5c5e\u6027 ds-cfg-password-character-set \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u3053\u306e\u5c5e\u6027\u306f\u3001\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u751f\u6210\u3059\u308b\u3068\u304d\u306b\u4f7f\u7528\u3059\u3079\u304d\u4e00\u9023\u306e\u6587\u5b57\u3092\u6307\u5b9a\u3057\u307e\u3059\u3002  \u3053\u308c\u306f\u5fc5\u9808\u5c5e\u6027\u3067\u3059
MILD_ERR_RANDOMPWGEN_CHARSET_NAME_CONFLICT_342=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea "%s" \u306b\u3001%s \u6587\u5b57\u30bb\u30c3\u30c8\u306e\u8907\u6570\u306e\u5b9a\u7fa9\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059
MILD_ERR_RANDOMPWGEN_CANNOT_DETERMINE_CHARSETS_343=\u8a2d\u5b9a\u5c5e\u6027 ds-cfg-password-character-set \u306e\u5024\u3092\u5fa9\u53f7\u5316\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u3053\u306e\u5c5e\u6027\u306f\u3001\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u751f\u6210\u3067\u4f7f\u7528\u3059\u308b\u6587\u5b57\u30bb\u30c3\u30c8\u3092\u4fdd\u6301\u3059\u308b\u305f\u3081\u306b\u4f7f\u7528\u3057\u307e\u3059:  %s
INFO_RANDOMPWGEN_DESCRIPTION_PWFORMAT_344=\u3053\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u30b8\u30a7\u30cd\u30ec\u30fc\u30bf\u3067\u69cb\u7bc9\u3059\u308b\u30d1\u30b9\u30ef\u30fc\u30c9\u306b\u4f7f\u7528\u3059\u3079\u304d\u5f62\u5f0f\u3002  \u5024\u306e\u8981\u7d20\u306f\u30b3\u30f3\u30de\u3067\u533a\u5207\u308a\u307e\u3059\u3002\u5404\u8981\u7d20\u306f\u6587\u5b57\u30bb\u30c3\u30c8\u306e\u540d\u524d\u3067\u3001\u30b3\u30ed\u30f3\u3068\u305d\u306e\u6587\u5b57\u30bb\u30c3\u30c8\u304b\u3089\u30e9\u30f3\u30c0\u30e0\u306b\u9078\u3076\u6587\u5b57\u6570\u304c\u3042\u3068\u306b\u7d9a\u304d\u307e\u3059\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
MILD_ERR_RANDOMPWGEN_NO_PWFORMAT_345=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea "%s" \u306b\u5c5e\u6027 ds-cfg-password-format \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u3053\u306e\u5c5e\u6027\u306f\u3001\u751f\u6210\u3055\u308c\u308b\u30d1\u30b9\u30ef\u30fc\u30c9\u3067\u4f7f\u7528\u3059\u308b\u5f62\u5f0f\u3092\u6307\u5b9a\u3057\u307e\u3059\u3002  \u3053\u308c\u306f\u5fc5\u9808\u5c5e\u6027\u3067\u3059
MILD_ERR_RANDOMPWGEN_UNKNOWN_CHARSET_346=\u30d1\u30b9\u30ef\u30fc\u30c9\u5f62\u5f0f\u306e\u6587\u5b57\u5217 "%s" \u304c\u3001\u672a\u5b9a\u7fa9\u306e\u6587\u5b57\u30bb\u30c3\u30c8 "%s" \u3092\u53c2\u7167\u3057\u3066\u3044\u307e\u3059
MILD_ERR_RANDOMPWGEN_INVALID_PWFORMAT_347=\u30d1\u30b9\u30ef\u30fc\u30c9\u5f62\u5f0f\u306e\u6587\u5b57\u5217 "%s" \u306b\u7121\u52b9\u306a\u69cb\u6587\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059\u3002  \u3053\u306e\u5024\u306e\u8981\u7d20\u306f\u30b3\u30f3\u30de\u3067\u533a\u5207\u308a\u307e\u3059\u3002\u5404\u8981\u7d20\u306f\u6587\u5b57\u30bb\u30c3\u30c8\u306e\u540d\u524d\u3067\u3001\u30b3\u30ed\u30f3\u3068\u305d\u306e\u6587\u5b57\u30bb\u30c3\u30c8\u304b\u3089\u30e9\u30f3\u30c0\u30e0\u306b\u9078\u3076\u6587\u5b57\u6570\u304c\u3042\u3068\u306b\u7d9a\u304d\u307e\u3059
MILD_ERR_RANDOMPWGEN_CANNOT_DETERMINE_PWFORMAT_348=\u8a2d\u5b9a\u5c5e\u6027 ds-cfg-password-format \u306e\u5024\u3092\u5fa9\u53f7\u5316\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u3053\u306e\u5c5e\u6027\u306f\u3001\u751f\u6210\u3055\u308c\u308b\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u5f62\u5f0f\u3092\u6307\u5b9a\u3059\u308b\u305f\u3081\u306b\u4f7f\u7528\u3057\u307e\u3059:  %s
INFO_SASLGSSAPI_DESCRIPTION_IDENTITY_MAPPER_DN_349=GSSAPI \u4e3b\u4f53\u3092\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306e\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u3059\u308b\u3068\u304d\u306b\u4f7f\u7528\u3059\u3079\u304d\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u306e\u69cb\u6210\u3092\u4fdd\u6301\u3059\u308b\u69cb\u6210\u30a8\u30f3\u30c8\u30ea\u306e DN\u3002 \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
MILD_ERR_SASLGSSAPI_NO_IDENTITY_MAPPER_ATTR_350=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u306b\u5c5e\u6027 ds-cfg-identity-mapper \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u3053\u306e\u5c5e\u6027\u306f\u3001GSSAPI SASL \u6a5f\u69cb\u3068\u3068\u3082\u306b\u4f7f\u7528\u3059\u308b\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u306e DN \u3092\u6307\u5b9a\u3057\u307e\u3059\u3002  \u3053\u308c\u306f\u5fc5\u9808\u5c5e\u6027\u3067\u3059
MILD_ERR_SASLGSSAPI_NO_SUCH_IDENTITY_MAPPER_351=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %2$s \u306e\u5c5e\u6027 ds-cfg-identity-mapper \u3067\u6307\u5b9a\u3055\u308c\u305f\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc %1$s \u304c\u3001\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u3067\u4f7f\u7528\u3067\u304d\u308b\u6709\u52b9\u306a\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u69cb\u6210\u3092\u53c2\u7167\u3057\u3066\u3044\u307e\u305b\u3093
MILD_ERR_SASLGSSAPI_CANNOT_GET_IDENTITY_MAPPER_352=GSSAPI SASL \u6a5f\u69cb\u3068\u3068\u3082\u306b\u4f7f\u7528\u3059\u3079\u304d\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u3092\u5224\u5b9a\u3059\u308b\u305f\u3081\u306b\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e ds-cfg-identity-mapper \u5c5e\u6027\u306e\u5024\u3092\u51e6\u7406\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
INFO_SASLGSSAPI_UPDATED_IDENTITY_MAPPER_353=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e\u5c5e\u6027 ds-cfg-identity-mapper \u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002  \u5024 "%s" \u306f\u3001GSSAPI \u8a8d\u8a3c\u306e\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u69cb\u6210\u30a8\u30f3\u30c8\u30ea\u306e DN \u3068\u3057\u3066\u4f7f\u7528\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059
MILD_ERR_EXTOP_PASSMOD_CANNOT_GET_PW_POLICY_354=\u30e6\u30fc\u30b6\u30fc %s \u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u30dd\u30ea\u30b7\u30fc\u3092\u53d6\u5f97\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f: %s
MILD_ERR_EXTOP_PASSMOD_REQUIRE_CURRENT_PW_355=\u81ea\u8eab\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5909\u66f4\u3059\u308b\u306b\u306f\u73fe\u5728\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059
MILD_ERR_EXTOP_PASSMOD_SECURE_AUTH_REQUIRED_356=\u30e6\u30fc\u30b6\u30fc\u306e\u73fe\u5728\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5165\u529b\u3059\u308b\u30d1\u30b9\u30ef\u30fc\u30c9\u5909\u66f4\u64cd\u4f5c\u306f\u3001\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc\u4fdd\u8b77\u3055\u308c\u305f\u901a\u4fe1\u30c1\u30e3\u30cd\u30eb\u7d4c\u7531\u3067\u5b9f\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059
MILD_ERR_EXTOP_PASSMOD_USER_PW_CHANGES_NOT_ALLOWED_357=\u30a8\u30f3\u30c9\u30e6\u30fc\u30b6\u30fc\u306f\u81ea\u5206\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u3092\u8a31\u53ef\u3055\u308c\u3066\u3044\u307e\u305b\u3093
MILD_ERR_EXTOP_PASSMOD_SECURE_CHANGES_REQUIRED_358=\u30d1\u30b9\u30ef\u30fc\u30c9\u5909\u66f4\u306f\u3001\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc\u4fdd\u8b77\u3055\u308c\u305f\u901a\u4fe1\u30c1\u30e3\u30cd\u30eb\u7d4c\u7531\u3067\u5b9f\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059
MILD_ERR_EXTOP_PASSMOD_IN_MIN_AGE_359=\u524d\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u5909\u66f4\u306e\u6642\u671f\u304c\u8fd1\u3059\u304e\u308b\u305f\u3081\u3001\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093
MILD_ERR_EXTOP_PASSMOD_PASSWORD_IS_EXPIRED_360=\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u671f\u9650\u5207\u308c\u306e\u305f\u3081\u3001\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093
MILD_ERR_EXTOP_PASSMOD_NO_PW_GENERATOR_361=\u65b0\u3057\u3044\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u5165\u529b\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u307e\u305f\u3001\u65b0\u3057\u3044\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3059\u308b\u305f\u3081\u306b\u4f7f\u7528\u3067\u304d\u308b\u30d1\u30b9\u30ef\u30fc\u30c9\u30b8\u30a7\u30cd\u30ec\u30fc\u30bf\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u305b\u3093
MILD_ERR_EXTOP_PASSMOD_CANNOT_GENERATE_PW_362=\u30d1\u30b9\u30ef\u30fc\u30c9\u30b8\u30a7\u30cd\u30ec\u30fc\u30bf\u3092\u4f7f\u7528\u3057\u3066\u65b0\u3057\u3044\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u4f5c\u6210\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_EXTOP_PASSMOD_PRE_ENCODED_NOT_ALLOWED_363=\u30d1\u30b9\u30ef\u30fc\u30c9\u30dd\u30ea\u30b7\u30fc\u3067\u306f\u3001\u30e6\u30fc\u30b6\u30fc\u304c\u7b26\u53f7\u5316\u6e08\u307f\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u8a31\u53ef\u3055\u308c\u3066\u3044\u307e\u305b\u3093
MILD_ERR_EXTOP_PASSMOD_UNACCEPTABLE_PW_364=\u6307\u5b9a\u3055\u308c\u305f\u65b0\u3057\u3044\u30d1\u30b9\u30ef\u30fc\u30c9\u306f\u3001\u30b5\u30fc\u30d0\u30fc\u3067\u5b9a\u7fa9\u3055\u308c\u305f\u59a5\u5f53\u6027\u691c\u67fb\u306b\u5931\u6557\u3057\u307e\u3057\u305f:  %s
MILD_ERR_EXTOP_PASSMOD_CANNOT_ENCODE_PASSWORD_365=\u6307\u5b9a\u3055\u308c\u305f\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30b9\u30ad\u30fc\u30de\u3092\u4f7f\u3063\u3066\u7b26\u53f7\u5316\u3067\u304d\u307e\u305b\u3093:  %s
MILD_ERR_EXTOP_PASSMOD_NO_SUCH_ID_MAPPER_368=\u30a8\u30f3\u30c8\u30ea %s \u3067\u5b9a\u7fa9\u3055\u308c\u305f\u30d1\u30b9\u30ef\u30fc\u30c9\u5909\u66f4\u306e\u62e1\u5f35\u64cd\u4f5c\u3067\u4f7f\u7528\u3059\u308b\u3088\u3046\u306b\u6307\u5b9a\u3055\u308c\u305f\u69cb\u6210\u30a8\u30f3\u30c8\u30ea DN %s \u3092\u6301\u3064\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u304c\u5b58\u5728\u3057\u306a\u3044\u304b\u3001\u6709\u52b9\u306b\u306a\u3063\u3066\u3044\u307e\u305b\u3093\u3002  \u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u306f\u5fc5\u9808\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u306a\u306e\u3067\u3001\u30d1\u30b9\u30ef\u30fc\u30c9\u5909\u66f4\u306e\u62e1\u5f35\u64cd\u4f5c\u306f\u6709\u52b9\u306b\u306a\u308a\u307e\u305b\u3093
MILD_ERR_EXTOP_PASSMOD_CANNOT_DETERMINE_ID_MAPPER_369=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u3067\u5b9a\u7fa9\u3055\u308c\u305f\u30d1\u30b9\u30ef\u30fc\u30c9\u5909\u66f4\u306e\u62e1\u5f35\u64cd\u4f5c\u3068\u3068\u3082\u306b\u4f7f\u7528\u3059\u308b\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u30fc\u30de\u30c3\u30d1\u30fc\u3092\u5224\u5b9a\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s\u3002\u30b5\u30fc\u30d0\u30fc\u3067\u30d1\u30b9\u30ef\u30fc\u30c9\u5909\u66f4\u306e\u62e1\u5f35\u64cd\u4f5c\u306f\u4f7f\u7528\u3067\u304d\u306a\u304f\u306a\u308a\u307e\u3059
MILD_ERR_EXTOP_PASSMOD_CANNOT_MAP_USER_370=\u6307\u5b9a\u3055\u308c\u305f\u8a8d\u53ef ID \u6587\u5b57\u5217 "%s" \u3092\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u5185\u306e\u30e6\u30fc\u30b6\u30fc\u306b\u30de\u30c3\u30d7\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_EXTOP_PASSMOD_ERROR_MAPPING_USER_371=\u8a8d\u53ef ID \u6587\u5b57\u5217 "%s" \u3092\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
INFO_ERRORLOG_ACCTNOTHANDLER_DESCRIPTION_NOTIFICATION_TYPES_372=\u30ed\u30b0\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u751f\u6210\u3059\u3079\u304d\u72b6\u614b\u306e\u901a\u77e5\u306e\u7a2e\u985e\u3002  \u8907\u6570\u306e\u5024\u3092\u53d6\u308b\u5c5e\u6027\u3067\u3042\u308a\u3001\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
MILD_ERR_ERRORLOG_ACCTNOTHANDLER_INVALID_TYPE_373=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u306b\u3001\u8a8d\u8b58\u3055\u308c\u306a\u3044\u30a2\u30ab\u30a6\u30f3\u30c8\u72b6\u614b\u306e\u901a\u77e5\u306e\u7a2e\u985e %s \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059
MILD_ERR_ERRORLOG_ACCTNOTHANDLER_CANNOT_GET_NOTIFICATION_TYPES_374=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u304b\u3089\u30a2\u30ab\u30a6\u30f3\u30c8\u72b6\u614b\u306e\u901a\u77e5\u306e\u7a2e\u985e\u3092\u5224\u5b9a\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
NOTICE_ERRORLOG_ACCTNOTHANDLER_NOTIFICATION_375=\u30a2\u30ab\u30a6\u30f3\u30c8-\u72b6\u614b-\u901a\u77e5\u306e\u7a2e\u985e='%s' \u30e6\u30fc\u30b6\u30fc DN='%s' ID=%d \u30e1\u30c3\u30bb\u30fc\u30b8='%s'
MILD_ERR_SASLCRAMMD5_CANNOT_GET_REVERSIBLE_PASSWORDS_377=SASL CRAM-MD5 \u8a8d\u8a3c\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306e\u30e6\u30fc\u30b6\u30fc %s \u306e\u5e73\u6587\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u53d6\u5f97\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_SASLPLAIN_CANNOT_CHECK_PASSWORD_VALIDITY_378=SASL PLAIN \u8a8d\u8a3c\u306e\u3068\u304d\u306b\u30e6\u30fc\u30b6\u30fc %s \u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u691c\u8a3c\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_STARTTLS_ERROR_SENDING_CLEAR_RESPONSE_379=TLS \u30cd\u30b4\u30b7\u30a8\u30fc\u30b7\u30e7\u30f3\u306e\u958b\u59cb\u5f8c\u306b\u5e73\u6587\u5fdc\u7b54\u3092\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u306b\u9001\u4fe1\u4e2d\u306b\u4e88\u671f\u3057\u306a\u3044\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_WARN_EXTOP_PASSMOD_NOOP_380=\u30d1\u30b9\u30ef\u30fc\u30c9\u5909\u66f4\u64cd\u4f5c\u304c\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u3067\u5b9f\u969b\u306b\u306f\u5b9f\u884c\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u8981\u6c42\u306b LDAP no-op \u5236\u5fa1\u304c\u5b58\u5728\u3057\u3066\u3044\u307e\u3057\u305f
MILD_ERR_EXTOP_PASSMOD_ACCOUNT_DISABLED_381=\u30e6\u30fc\u30b6\u30fc\u30a2\u30ab\u30a6\u30f3\u30c8\u304c\u7ba1\u7406\u8005\u306b\u3088\u308a\u7121\u52b9\u306b\u3055\u308c\u3066\u3044\u307e\u3059
MILD_ERR_EXTOP_PASSMOD_ACCOUNT_LOCKED_382=\u30e6\u30fc\u30b6\u30fc\u30a2\u30ab\u30a6\u30f3\u30c8\u304c\u30ed\u30c3\u30af\u3055\u308c\u3066\u3044\u307e\u3059
MILD_ERR_STATICMEMBERS_NO_SUCH_ENTRY_383=\u30a8\u30f3\u30c8\u30ea %s \u3092\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7 %s \u306e\u6f5c\u5728\u7684\u30e1\u30f3\u30d0\u30fc\u3068\u3057\u3066\u691c\u67fb\u3067\u304d\u307e\u305b\u3093\u3002\u305d\u306e\u30a8\u30f3\u30c8\u30ea\u306f\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306b\u5b58\u5728\u3057\u307e\u305b\u3093
MILD_ERR_STATICMEMBERS_CANNOT_GET_ENTRY_384=\u30a8\u30f3\u30c8\u30ea %s \u3092\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7 %s \u306e\u6f5c\u5728\u7684\u30e1\u30f3\u30d0\u30fc\u3068\u3057\u3066\u53d6\u5f97\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_STATICGROUP_INVALID_OC_COMBINATION_385=\u30a8\u30f3\u30c8\u30ea %s \u3092\u6709\u52b9\u306a\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7\u3068\u3057\u3066\u89e3\u6790\u3067\u304d\u307e\u305b\u3093\u3002\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7\u306f\u3001%s \u3068 %s \u306e\u4e21\u65b9\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9\u3092\u6301\u3064\u3053\u3068\u306f\u8a31\u53ef\u3055\u308c\u3066\u3044\u307e\u305b\u3093
MILD_ERR_STATICGROUP_NO_VALID_OC_386=\u30a8\u30f3\u30c8\u30ea %s \u3092\u6709\u52b9\u306a\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7\u3068\u3057\u3066\u89e3\u6790\u3067\u304d\u307e\u305b\u3093\u3002\u3053\u306e\u30a8\u30f3\u30c8\u30ea\u306b\u306f\u3001%s \u307e\u305f\u306f %s \u306e\u3046\u3061\u3001\u6b63\u78ba\u306b 1 \u3064\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093
MILD_ERR_STATICGROUP_CANNOT_DECODE_MEMBER_VALUE_AS_DN_387=\u30a8\u30f3\u30c8\u30ea %3$s \u5185\u306e\u5c5e\u6027 %2$s \u306e\u5024 %1$s \u3092\u6709\u52b9\u306a DN \u3068\u3057\u3066\u89e3\u6790\u3067\u304d\u307e\u305b\u3093:  %4$s\u3002\u3053\u306e\u5024\u306f\u3001\u30b0\u30eb\u30fc\u30d7\u30e1\u30f3\u30d0\u30fc\u30bb\u30c3\u30c8\u304b\u3089\u9664\u5916\u3055\u308c\u307e\u3059
MILD_ERR_STATICGROUP_ADD_MEMBER_ALREADY_EXISTS_388=\u30e6\u30fc\u30b6\u30fc %s \u3092\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7 %s \u306e\u65b0\u3057\u3044\u30e1\u30f3\u30d0\u30fc\u3068\u3057\u3066\u8ffd\u52a0\u3067\u304d\u307e\u305b\u3093\u3002\u3053\u306e\u30e6\u30fc\u30b6\u30fc\u306f\u3001\u3059\u3067\u306b\u30b0\u30eb\u30fc\u30d7\u306e\u30e1\u30f3\u30d0\u30fc\u30ea\u30b9\u30c8\u306b\u542b\u307e\u308c\u3066\u3044\u307e\u3059
MILD_ERR_STATICGROUP_REMOVE_MEMBER_NO_SUCH_MEMBER_389=\u30e6\u30fc\u30b6\u30fc %s \u3092\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7 %s \u306e\u30e1\u30f3\u30d0\u30fc\u304b\u3089\u524a\u9664\u3067\u304d\u307e\u305b\u3093\u3002\u3053\u306e\u30e6\u30fc\u30b6\u30fc\u306f\u3001\u30b0\u30eb\u30fc\u30d7\u306e\u30e1\u30f3\u30d0\u30fc\u30ea\u30b9\u30c8\u306b\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093
MILD_ERR_STATICGROUP_ADD_MEMBER_UPDATE_FAILED_390=\u30e6\u30fc\u30b6\u30fc %s \u3092\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7 %s \u306e\u65b0\u3057\u3044\u30e1\u30f3\u30d0\u30fc\u3068\u3057\u3066\u8ffd\u52a0\u3067\u304d\u307e\u305b\u3093\u3002\u30b0\u30eb\u30fc\u30d7\u3092\u66f4\u65b0\u3059\u308b\u305f\u3081\u306e\u5185\u90e8\u5909\u66f4\u3092\u5b9f\u884c\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_STATICGROUP_REMOVE_MEMBER_UPDATE_FAILED_391=\u30e6\u30fc\u30b6\u30fc %s \u3092\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7 %s \u306e\u30e1\u30f3\u30d0\u30fc\u304b\u3089\u524a\u9664\u3067\u304d\u307e\u305b\u3093\u3002\u30b0\u30eb\u30fc\u30d7\u3092\u66f4\u65b0\u3059\u308b\u305f\u3081\u306e\u5185\u90e8\u5909\u66f4\u3092\u5b9f\u884c\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_EXTOP_PASSMOD_INSUFFICIENT_PRIVILEGES_392=\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u30ea\u30bb\u30c3\u30c8\u64cd\u4f5c\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306e\u5341\u5206\u306a\u6a29\u9650\u304c\u3042\u308a\u307e\u305b\u3093
MILD_ERR_SASLDIGESTMD5_EMPTY_AUTHZID_393=\u6307\u5b9a\u3055\u308c\u305f\u8a8d\u53ef ID \u306f\u7a7a\u3067\u3057\u305f\u3002\u3053\u306e ID \u306f DIGEST-MD5 \u8a8d\u8a3c\u306b\u306f\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093
MILD_ERR_SASLDIGESTMD5_AUTHZID_INVALID_DN_394=\u6307\u5b9a\u3055\u308c\u305f\u8a8d\u53ef ID %s \u306b\u7121\u52b9\u306a DN \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3057\u305f:  %s
MILD_ERR_SASLDIGESTMD5_AUTHZID_NO_SUCH_ENTRY_396=\u8a8d\u53ef ID \u3068\u3057\u3066\u6307\u5b9a\u3055\u308c\u305f\u30a8\u30f3\u30c8\u30ea %s \u304c\u5b58\u5728\u3057\u307e\u305b\u3093
MILD_ERR_SASLDIGESTMD5_AUTHZID_CANNOT_GET_ENTRY_397=\u8a8d\u53ef ID \u3068\u3057\u3066\u6307\u5b9a\u3055\u308c\u305f\u30a8\u30f3\u30c8\u30ea %s \u3092\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f:  %s
MILD_ERR_SASLDIGESTMD5_AUTHZID_NO_MAPPED_ENTRY_398=\u30b5\u30fc\u30d0\u30fc\u306f\u3001\u8a8d\u53ef ID %s \u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u3092\u898b\u3064\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_SASLDIGESTMD5_CANNOT_MAP_AUTHZID_399=\u8a8d\u53ef ID %s \u3092\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_SASLPLAIN_AUTHZID_INVALID_DN_400=\u6307\u5b9a\u3055\u308c\u305f\u8a8d\u53ef ID %s \u306b\u7121\u52b9\u306a DN \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3057\u305f:  %s
MILD_ERR_SASLPLAIN_AUTHZID_INSUFFICIENT_PRIVILEGES_401=\u8a8d\u8a3c\u30e6\u30fc\u30b6\u30fc %s \u306b\u306f\u3001\u5225\u306e\u8a8d\u53ef ID \u3092\u6307\u5b9a\u3059\u308b\u305f\u3081\u306e\u5341\u5206\u306a\u6a29\u9650\u304c\u3042\u308a\u307e\u305b\u3093
MILD_ERR_SASLPLAIN_AUTHZID_NO_SUCH_ENTRY_402=\u8a8d\u53ef DN %s \u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u304c\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306b\u5b58\u5728\u3057\u307e\u305b\u3093
MILD_ERR_SASLPLAIN_AUTHZID_CANNOT_GET_ENTRY_403=\u8a8d\u53ef ID \u3068\u3057\u3066\u6307\u5b9a\u3055\u308c\u305f\u30a8\u30f3\u30c8\u30ea %s \u3092\u53d6\u5f97\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_SASLPLAIN_AUTHZID_NO_MAPPED_ENTRY_404=\u8a8d\u53ef ID %s \u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u304c\u30b5\u30fc\u30d0\u30fc\u306b\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_SASLPLAIN_AUTHZID_CANNOT_MAP_AUTHZID_405=\u8a8d\u53ef ID %s \u3092\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
INFO_SASLEXTERNAL_DESCRIPTION_CERT_MAPPER_DN_406=\u8a3c\u660e\u66f8\u3092\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d4\u30f3\u30b0\u3059\u308b\u3068\u304d\u306b\u4f7f\u7528\u3059\u308b\u8a3c\u660e\u66f8\u30de\u30c3\u30d1\u30fc\u3092\u5b9a\u7fa9\u3059\u308b\u69cb\u6210\u30a8\u30f3\u30c8\u30ea\u306e DN\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
MILD_ERR_SASLEXTERNAL_NO_CERTIFICATE_MAPPER_DN_407=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u306b\u5c5e\u6027 ds-cfg-certificate-mapper \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u3053\u306e\u5c5e\u6027\u306f\u3001\u8a3c\u660e\u66f8\u3092\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u3059\u308b\u305f\u3081\u306b\u4f7f\u7528\u3059\u3079\u304d\u8a3c\u660e\u66f8\u30de\u30c3\u30d1\u30fc\u3092\u6307\u5b9a\u3059\u308b\u305f\u3081\u306b\u5fc5\u8981\u3067\u3059
MILD_ERR_SASLEXTERNAL_INVALID_CERTIFICATE_MAPPER_DN_408=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u306b %s \u306e\u8a3c\u660e\u66f8\u30de\u30c3\u30d1\u30fc DN \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059\u304c\u3001\u4f7f\u7528\u3067\u304d\u308b\u8a72\u5f53\u306e\u8a3c\u660e\u66f8\u30de\u30c3\u30d1\u30fc\u304c\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306b\u3042\u308a\u307e\u305b\u3093
MILD_ERR_SASLEXTERNAL_CANNOT_GET_CERT_MAPPER_DN_409=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u304b\u3089\u8a3c\u660e\u66f8\u30de\u30c3\u30d1\u30fc DN \u3092\u53d6\u5f97\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f: %s
INFO_SASLEXTERNAL_UPDATED_CERT_MAPPER_DN_410=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u5185\u306e\u5c5e\u6027 ds-cfg-certificate-mapper \u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002 \u8a3c\u660e\u66f8\u30de\u30c3\u30d1\u30fc %s \u306f\u3001\u8a3c\u660e\u66f8\u3092\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306b\u30de\u30c3\u30d7\u3059\u308b\u305f\u3081\u306b\u4f7f\u7528\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059
INFO_SDTUACM_DESCRIPTION_SUBJECT_ATTR_411=\u30e6\u30fc\u30b6\u30fc\u304c\u4fdd\u6301\u3059\u308b\u8a3c\u660e\u66f8\u306e\u30b5\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u542b\u307e\u308c\u308b\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u5185\u306e\u5c5e\u6027\u578b\u306e\u540d\u524d\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_SDTUACM_NO_SUBJECT_ATTR_412=Configuration entry %s does not \
### contain required attribute %s, which is used to specify which attribute \
### should contain the subjects of the certificates held by users
###SEVERE_ERR_SDTUACM_NO_SUCH_ATTR_413=Configuration entry %s indicates that \
### certificate subjects should be held in attribute %s, but this attribute is \
### not defined in the server schema
###SEVERE_ERR_SDTUACM_CANNOT_GET_SUBJECT_ATTR_414=An error occurred while \
### attempting to determine which attribute type should be used to hold \
### certificate subjects from configuration entry %s:  %s
INFO_SDTUACM_DESCRIPTION_BASE_DN_415=\u4e00\u81f4\u3059\u308b\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u3092\u898b\u3064\u3051\u308b\u305f\u3081\u306b\u914d\u4e0b\u304c\u691c\u7d22\u3055\u308c\u308b\u30d9\u30fc\u30b9 DN\u3002  \u30d9\u30fc\u30b9 DN \u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u3001\u30b5\u30fc\u30d0\u30fc\u306f\u3059\u3079\u3066\u306e\u30d1\u30d6\u30ea\u30c3\u30af\u30cd\u30fc\u30df\u30f3\u30b0\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u3067\u691c\u7d22\u3092\u884c\u3044\u307e\u3059\u3002 \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_SDTUACM_CANNOT_GET_BASE_DN_416=An error occurred while attempting \
### to determine the search base DN(s) from configuration entry %s:  %s
###SEVERE_ERR_SDTUACM_NO_PEER_CERTIFICATE_417=Could not map the provided \
### certificate chain to a user entry because no peer certificate was available
###SEVERE_ERR_SDTUACM_PEER_CERT_NOT_X509_418=Could not map the provided \
### certificate chain to a user because the peer certificate was not an X.509 \
### certificate (peer certificate format was %s)
###SEVERE_ERR_SDTUACM_MULTIPLE_MATCHING_ENTRIES_419=The certificate with subject \
### %s could not be mapped to exactly one user.  It maps to both %s and %s
INFO_SATUACM_DESCRIPTION_ATTR_MAP_420=\u8a3c\u660e\u66f8\u30b5\u30d6\u30b8\u30a7\u30af\u30c8\u5185\u306e\u5c5e\u6027\u3068\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u5185\u306e\u5c5e\u6027\u306e\u9593\u306e\u30de\u30c3\u30d4\u30f3\u30b0\u3092\u5b9a\u7fa9\u3059\u308b\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u5185\u306e\u5c5e\u6027\u578b\u306e\u540d\u524d\u3002  \u5024\u306f 'certattr:userattr' \u306e\u5f62\u5f0f\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_SATUACM_NO_MAP_ATTR_421=Configuration entry %s does not contain \
### required attribute %s, which is used to specify the mappings between \
### attributes in certificate subjects and attributes in user entries
###SEVERE_ERR_SATUACM_INVALID_MAP_FORMAT_422=Configuration entry %s has value \
### '%s' which violates the format required for attribute mappings.  The expected \
### format is 'certattr:userattr'
###SEVERE_ERR_SATUACM_DUPLICATE_CERT_ATTR_423=Configuration entry %s contains \
### multiple mappings for certificate attribute %s
###SEVERE_ERR_SATUACM_NO_SUCH_ATTR_424=Mapping %s in configuration entry %s \
### references attribute %s which is not defined in the server schema
###SEVERE_ERR_SATUACM_DUPLICATE_USER_ATTR_425=Configuration entry %s contains \
### multiple mappings for user attribute %s
###SEVERE_ERR_SATUACM_CANNOT_GET_ATTR_MAP_426=An error occurred while attempting \
### to determine the set of attribute mappings from configuration entry %s:  %s
INFO_SATUACM_DESCRIPTION_BASE_DN_427=\u4e00\u81f4\u3059\u308b\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u3092\u898b\u3064\u3051\u308b\u305f\u3081\u306b\u914d\u4e0b\u304c\u691c\u7d22\u3055\u308c\u308b\u30d9\u30fc\u30b9 DN\u3002  \u30d9\u30fc\u30b9 DN \u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u3001\u30b5\u30fc\u30d0\u30fc\u306f\u3059\u3079\u3066\u306e\u30d1\u30d6\u30ea\u30c3\u30af\u30cd\u30fc\u30df\u30f3\u30b0\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u3067\u691c\u7d22\u3092\u884c\u3044\u307e\u3059\u3002 \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_SATUACM_CANNOT_GET_BASE_DN_428=An error occurred while attempting \
### to determine the search base DN(s) from configuration entry %s:  %s
###SEVERE_ERR_SATUACM_NO_PEER_CERTIFICATE_429=Could not map the provided \
### certificate chain to a user entry because no peer certificate was available
###SEVERE_ERR_SATUACM_PEER_CERT_NOT_X509_430=Could not map the provided \
### certificate chain to a user because the peer certificate was not an X.509 \
### certificate (peer certificate format was %s)
###SEVERE_ERR_SATUACM_CANNOT_DECODE_SUBJECT_AS_DN_431=Unable to decode peer \
### certificate subject %s as a DN:  %s
###SEVERE_ERR_SATUACM_NO_MAPPABLE_ATTRIBUTES_432=Peer certificate subject %s \
### does not contain any attributes for which a mapping has been established
###SEVERE_ERR_SATUACM_MULTIPLE_MATCHING_ENTRIES_433=The certificate with subject \
### %s could not be mapped to exactly one user.  It maps to both %s and %s
INFO_FCM_DESCRIPTION_FINGERPRINT_ATTR_434=\u305d\u306e\u30e6\u30fc\u30b6\u30fc\u304c\u4fdd\u6301\u3059\u308b\u8a3c\u660e\u66f8\u306e\u30d5\u30a3\u30f3\u30ac\u30fc\u30d7\u30ea\u30f3\u30c8\u304c\u542b\u307e\u308c\u308b\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u5185\u306e\u5c5e\u6027\u578b\u306e\u540d\u524d\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_FCM_NO_FINGERPRINT_ATTR_435=Configuration entry %s does not \
### contain required attribute %s, which is used to specify which attribute \
### should contain the fingerprints of the certificates held by users
###SEVERE_ERR_FCM_NO_SUCH_ATTR_436=Configuration entry %s indicates that \
### certificate fingerprints should be held in attribute %s, but this attribute \
### is not defined in the server schema
###SEVERE_ERR_FCM_CANNOT_GET_FINGERPRINT_ATTR_437=An error occurred while \
### attempting to determine which attribute type should be used to hold \
### certificate fingerprints from configuration entry %s:  %s
INFO_FCM_DESCRIPTION_FINGERPRINT_ALGORITHM_438=\u8a3c\u660e\u66f8\u30d5\u30a3\u30f3\u30ac\u30fc\u30d7\u30ea\u30f3\u30c8\u306b\u4f7f\u7528\u3059\u308b\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\u306e\u540d\u524d\u3002  \u5024\u306f 'MD5' \u307e\u305f\u306f 'SHA1' \u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_FCM_NO_FINGERPRINT_ALGORITHM_439=Configuration entry %s does not \
### contain required attribute %s, which is used to specify which digest \
### algorithm should be used to compute certificate fingerprints
###SEVERE_ERR_FCM_CANNOT_GET_FINGERPRINT_ALGORITHM_440=An error occurred while \
### attempting to determine the digest algorithm from configuration entry %s:  %s
INFO_FCM_DESCRIPTION_BASE_DN_441=\u4e00\u81f4\u3059\u308b\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u3092\u898b\u3064\u3051\u308b\u305f\u3081\u306b\u914d\u4e0b\u304c\u691c\u7d22\u3055\u308c\u308b\u30d9\u30fc\u30b9 DN\u3002  \u30d9\u30fc\u30b9 DN \u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u3001\u30b5\u30fc\u30d0\u30fc\u306f\u3059\u3079\u3066\u306e\u30d1\u30d6\u30ea\u30c3\u30af\u30cd\u30fc\u30df\u30f3\u30b0\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u3067\u691c\u7d22\u3092\u884c\u3044\u307e\u3059\u3002 \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
###SEVERE_ERR_FCM_CANNOT_GET_BASE_DN_442=An error occurred while attempting to \
### determine the search base DN(s) from configuration entry %s:  %s
###SEVERE_ERR_FCM_NO_PEER_CERTIFICATE_443=Could not map the provided certificate \
### chain to a user entry because no peer certificate was available
###SEVERE_ERR_FCM_PEER_CERT_NOT_X509_444=Could not map the provided certificate \
### chain to a user because the peer certificate was not an X.509 certificate \
### (peer certificate format was %s)
###SEVERE_ERR_FCM_CANNOT_CALCULATE_FINGERPRINT_445=An error occurred while \
### attempting to calculate the fingerprint for the peer certificate with subject \
### %s:  %s
###SEVERE_ERR_FCM_MULTIPLE_MATCHING_ENTRIES_446=The certificate with fingerprint \
### %s could not be mapped to exactly one user.  It maps to both %s and %s
MILD_ERR_DYNAMICGROUP_CANNOT_DECODE_MEMBERURL_447=\u30a8\u30f3\u30c8\u30ea "%2$s" \u5185\u306e\u5024 "%1$s" \u3092 LDAP URL \u3068\u3057\u3066\u5fa9\u53f7\u5316\u3067\u304d\u307e\u305b\u3093:  %3$s
MILD_ERR_DYNAMICGROUP_NESTING_NOT_SUPPORTED_448=\u52d5\u7684\u30b0\u30eb\u30fc\u30d7\u3067\u306f\u3001\u5165\u308c\u5b50\u306e\u30b0\u30eb\u30fc\u30d7\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093
MILD_ERR_DYNAMICGROUP_ALTERING_MEMBERS_NOT_SUPPORTED_449=\u52d5\u7684\u30b0\u30eb\u30fc\u30d7\u3067\u306f\u3001\u30e1\u30f3\u30d0\u30fc\u30b7\u30c3\u30d7\u306e\u660e\u793a\u7684\u306a\u5909\u66f4\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093
MILD_WARN_DYNAMICGROUP_NONEXISTENT_BASE_DN_450=\u52d5\u7684\u30b0\u30eb\u30fc\u30d7 %2$s \u3067\u6307\u5b9a\u3055\u308c\u305f\u30d9\u30fc\u30b9 DN %1$s \u304c\u30b5\u30fc\u30d0\u30fc\u306b\u5b58\u5728\u3057\u307e\u305b\u3093
###SEVERE_ERR_DYNAMICGROUP_INTERNAL_SEARCH_FAILED_451=An error occurred while \
### attempting perform an internal search with base DN %s and filter %s to \
### resolve the member list for dynamic group %s:  result code %s, error message \
### %s
###SEVERE_ERR_DYNAMICGROUP_CANNOT_RETURN_ENTRY_452=The server encountered a \
### timeout while attempting to add user %s to the member list for dynamic group \
### %s
INFO_PWDIFFERENCEVALIDATOR_DESCRIPTION_MIN_DIFFERENCE_453=\u30d1\u30b9\u30ef\u30fc\u30c9\u306b\u8a31\u53ef\u3055\u308c\u308b\u6700\u5c0f\u5dee\u3002  0 \u306e\u5024\u306f\u3001\u6700\u5c0f\u5dee\u304c\u306a\u3044\u3053\u3068\u3092\u793a\u3057\u307e\u3059\u3002  \u3053\u306e\u8a2d\u5b9a\u5c5e\u6027\u3078\u306e\u5909\u66f4\u306f\u305f\u3060\u3061\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059
MILD_ERR_PWDIFFERENCEVALIDATOR_CANNOT_DETERMINE_MIN_DIFFERENCE_454=\u8a31\u53ef\u3055\u308c\u308b\u6700\u5c0f\u30d1\u30b9\u30ef\u30fc\u30c9\u5dee\u3092 ds-cfg-min-password-difference \u5c5e\u6027\u304b\u3089\u53d6\u5f97\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
INFO_PWDIFFERENCEVALIDATOR_UPDATED_MIN_DIFFERENCE_455=\u6700\u5c0f\u30d1\u30b9\u30ef\u30fc\u30c9\u5dee\u304c %d \u306b\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f
MILD_ERR_PWDIFFERENCEVALIDATOR_TOO_SMALL_456=\u6307\u5b9a\u3055\u308c\u305f\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u5dee\u306f\u3001\u5fc5\u9808\u306e\u6700\u5c0f\u5dee\u3067\u3042\u308b %d \u6587\u5b57\u306b\u9054\u3057\u3066\u3044\u307e\u305b\u3093
MILD_ERR_REPEATEDCHARS_VALIDATOR_TOO_MANY_CONSECUTIVE_457=\u6307\u5b9a\u3055\u308c\u305f\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u3001\u540c\u3058\u6587\u5b57\u304c\u9023\u7d9a\u3057\u3066\u51fa\u73fe\u3059\u308b\u56de\u6570\u304c\u591a\u3059\u304e\u307e\u3057\u305f\u3002  \u30d1\u30b9\u30ef\u30fc\u30c9\u3067\u540c\u3058\u6587\u5b57\u304c\u9023\u7d9a\u3057\u3066\u51fa\u73fe\u53ef\u80fd\u306a\u6700\u5927\u56de\u6570\u306f %d \u3067\u3059
MILD_ERR_UNIQUECHARS_VALIDATOR_NOT_ENOUGH_UNIQUE_CHARS_458=\u6307\u5b9a\u3055\u308c\u305f\u30d1\u30b9\u30ef\u30fc\u30c9\u306b\u3001\u4e00\u610f\u306e\u6587\u5b57\u304c\u5341\u5206\u306b\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3002  \u30e6\u30fc\u30b6\u30fc\u30d1\u30b9\u30ef\u30fc\u30c9\u3067\u51fa\u73fe\u304c\u5fc5\u9808\u306e\u4e00\u610f\u306e\u6587\u5b57\u306e\u6700\u5c0f\u6570\u306f %d \u3067\u3059
MILD_ERR_VATTR_NOT_SEARCHABLE_459=%s \u5c5e\u6027\u306f\u691c\u7d22\u53ef\u80fd\u3067\u306a\u3044\u305f\u3081\u3001\u307b\u304b\u306e\u65b9\u6cd5\u3067\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u691c\u7d22\u30d5\u30a3\u30eb\u30bf\u306b\u306f\u542b\u3081\u306a\u3044\u3067\u304f\u3060\u3055\u3044
MILD_ERR_DICTIONARY_VALIDATOR_PASSWORD_IN_DICTIONARY_460=\u6307\u5b9a\u3055\u308c\u305f\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u30b5\u30fc\u30d0\u30fc\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u898b\u3064\u304b\u308a\u307e\u3057\u305f
MILD_ERR_DICTIONARY_VALIDATOR_NO_SUCH_FILE_461=\u6307\u5b9a\u3055\u308c\u305f\u8f9e\u66f8\u30d5\u30a1\u30a4\u30eb %s \u304c\u5b58\u5728\u3057\u307e\u305b\u3093
MILD_ERR_DICTIONARY_VALIDATOR_CANNOT_READ_FILE_462=\u30d5\u30a1\u30a4\u30eb %s \u304b\u3089\u8f9e\u66f8\u3092\u8aad\u307f\u8fbc\u307f\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_ATTRVALUE_VALIDATOR_PASSWORD_IN_ENTRY_463=\u6307\u5b9a\u3055\u308c\u305f\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u5185\u306e\u5225\u306e\u5c5e\u6027\u3067\u898b\u3064\u304b\u308a\u307e\u3057\u305f
MILD_ERR_CHARSET_VALIDATOR_ILLEGAL_CHARACTER_464=\u6307\u5b9a\u3055\u308c\u305f\u30d1\u30b9\u30ef\u30fc\u30c9\u306b\u3001\u30d1\u30b9\u30ef\u30fc\u30c9\u3067\u306e\u4f7f\u7528\u304c\u8a31\u53ef\u3055\u308c\u306a\u3044\u6587\u5b57 '%s' \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3057\u305f
MILD_ERR_CHARSET_VALIDATOR_TOO_FEW_CHARS_FROM_SET_465=\u6307\u5b9a\u3055\u308c\u305f\u30d1\u30b9\u30ef\u30fc\u30c9\u306b\u3001\u6587\u5b57\u30bb\u30c3\u30c8 '%s' \u306e\u6587\u5b57\u304c\u5341\u5206\u306b\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3067\u3057\u305f\u3002  \u305d\u306e\u6587\u5b57\u30bb\u30c3\u30c8\u304b\u3089\u30e6\u30fc\u30b6\u30fc\u30d1\u30b9\u30ef\u30fc\u30c9\u306b\u542b\u3081\u308b\u5fc5\u8981\u306e\u3042\u308b\u6700\u5c0f\u6587\u5b57\u6570\u306f %d \u3067\u3059
MILD_ERR_CHARSET_VALIDATOR_NO_COLON_466=\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u30bb\u30c3\u30c8\u306e\u5b9a\u7fa9 '%s' \u304c\u7121\u52b9\u3067\u3059\u3002\u6700\u5c0f\u30ab\u30a6\u30f3\u30c8\u3068\u6587\u5b57\u30bb\u30c3\u30c8\u3092\u533a\u5207\u308b\u30b3\u30ed\u30f3\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093
MILD_ERR_CHARSET_VALIDATOR_NO_CHARS_467=\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u30bb\u30c3\u30c8\u306e\u5b9a\u7fa9 '%s' \u304c\u7121\u52b9\u3067\u3059\u3002\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u30bb\u30c3\u30c8\u304c\u7a7a\u3067\u3059
MILD_ERR_CHARSET_VALIDATOR_INVALID_COUNT_468=\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u30bb\u30c3\u30c8\u306e\u5b9a\u7fa9 '%s' \u304c\u7121\u52b9\u3067\u3059\u3002\u30b3\u30ed\u30f3\u306e\u524d\u306e\u5024\u306f 0 \u3088\u308a\u5927\u304d\u3044\u6574\u6570\u306b\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059
MILD_ERR_CHARSET_VALIDATOR_DUPLICATE_CHAR_469=\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u30bb\u30c3\u30c8\u306e\u5b9a\u7fa9 '%s' \u304c\u7121\u52b9\u3067\u3059\u3002\u3059\u3067\u306b\u4f7f\u7528\u3055\u308c\u3066\u3044\u308b\u6587\u5b57 '%s' \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059
MILD_ERR_VIRTUAL_STATIC_GROUP_MULTIPLE_TARGETS_470=\u30a8\u30f3\u30c8\u30ea %s \u3067\u5b9a\u7fa9\u3055\u308c\u305f\u4eee\u60f3\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7\u306b\u8907\u6570\u306e\u30bf\u30fc\u30b2\u30c3\u30c8\u30b0\u30eb\u30fc\u30d7 DN \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059\u304c\u3001\u5b9a\u7fa9\u3067\u304d\u308b\u306e\u306f 1 \u3064\u3060\u3051\u3067\u3059
MILD_ERR_VIRTUAL_STATIC_GROUP_CANNOT_DECODE_TARGET_471="%s" \u3092\u30b0\u30eb\u30fc\u30d7 %s \u306e\u30bf\u30fc\u30b2\u30c3\u30c8 DN \u3068\u3057\u3066\u5fa9\u53f7\u5316\u3067\u304d\u307e\u305b\u3093:  %s
MILD_ERR_VIRTUAL_STATIC_GROUP_NO_TARGET_472=\u30a8\u30f3\u30c8\u30ea %s \u3067\u5b9a\u7fa9\u3055\u308c\u305f\u4eee\u60f3\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7\u306b\u30bf\u30fc\u30b2\u30c3\u30c8\u30b0\u30eb\u30fc\u30d7\u5b9a\u7fa9\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093
MILD_ERR_VIRTUAL_STATIC_GROUP_NESTING_NOT_SUPPORTED_473=\u4eee\u60f3\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7\u3067\u306f\u3001\u5165\u308c\u5b50\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093
MILD_ERR_VIRTUAL_STATIC_GROUP_NO_TARGET_GROUP_474=\u4eee\u60f3\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7 %2$s \u306b\u3088\u3063\u3066\u53c2\u7167\u3055\u308c\u308b\u30bf\u30fc\u30b2\u30c3\u30c8\u30b0\u30eb\u30fc\u30d7 %1$s \u304c\u5b58\u5728\u3057\u307e\u305b\u3093
MILD_ERR_VIRTUAL_STATIC_GROUP_ALTERING_MEMBERS_NOT_SUPPORTED_475=\u4eee\u60f3\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7 %s \u306e\u30e1\u30f3\u30d0\u30fc\u30b7\u30c3\u30d7\u306e\u5909\u66f4\u306f\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093
MILD_ERR_VIRTUAL_STATIC_GROUP_TARGET_CANNOT_BE_VIRTUAL_476=\u4eee\u60f3\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7 %s \u306f\u3001\u305d\u308c\u81ea\u4f53\u304c\u4eee\u60f3\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7\u3067\u3042\u308b\u30bf\u30fc\u30b2\u30c3\u30c8\u30b0\u30eb\u30fc\u30d7 %s \u3092\u53c2\u7167\u3057\u3066\u3044\u307e\u3059\u3002 \u4eee\u60f3\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7\u304c\u5225\u306e\u4eee\u60f3\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7\u3092\u30bf\u30fc\u30b2\u30c3\u30c8\u30b0\u30eb\u30fc\u30d7\u3068\u3057\u3066\u53c2\u7167\u3059\u308b\u3053\u3068\u306f\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093
NOTICE_FSCACHE_RESTORE_484=\u6301\u7d9a\u7684\u30a8\u30f3\u30c8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u72b6\u614b\u306e\u5fa9\u5143\u3092\u958b\u59cb\u3057\u3066\u3044\u307e\u3059\u3002\u3053\u308c\u306b\u306f\u3057\u3070\u3089\u304f\u6642\u9593\u304c\u304b\u304b\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059
NOTICE_FSCACHE_SAVE_485=\u30a8\u30f3\u30c8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u72b6\u614b\u3092\u6301\u7d9a\u7684\u306b\u3057\u3066\u3044\u307e\u3059\u3002\u3053\u308c\u306b\u306f\u3057\u3070\u3089\u304f\u6642\u9593\u304c\u304b\u304b\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059
###FATAL_ERR_FSCACHE_CANNOT_INITIALIZE_486=A fatal error occurred while trying \
### to initialize file system entry cache:  %s
###SEVERE_ERR_FSCACHE_CANNOT_LOAD_PERSISTENT_DATA_487=An error occurred while \
### trying to load persistent cache. Persistent cache will be flushed now
###SEVERE_ERR_FSCACHE_CANNOT_STORE_PERSISTENT_DATA_488=An error occurred while \
### trying to store persistent cache. Persistent cache will be flushed now
###SEVERE_ERR_FSCACHE_CANNOT_STORE_ENTRY_489=Unable to store new cache entry in \
### the file system entry cache
###SEVERE_ERR_FSCACHE_CANNOT_RETRIEVE_ENTRY_490=Unable to retrieve an existing \
### cache entry from the file system entry cache
###SEVERE_ERR_FSCACHE_CANNOT_SET_JE_MEMORY_PCT_491=Internal error occurred while \
### trying to set the entry cache backend internal cache size as percentage. The \
### previous or default value will be used instead
###SEVERE_ERR_FSCACHE_CANNOT_SET_JE_MEMORY_SIZE_492=Internal error occurred \
### while trying to set the entry cache backend internal cache size in bytes. The \
### previous or default value will be used instead
###SEVERE_ERR_FSCACHE_CANNOT_SET_JE_PROPERTIES_493=Internal error occurred \
### while trying to set the entry cache backend Berkeley DB JE properties:  %s
###FATAL_ERR_FSCACHE_HOMELESS_494=A fatal error occurred while trying to setup \
### file system entry cache home. No suitable path can be found to host the cache \
### home
###SEVERE_WARN_FSCACHE_SET_PERMISSIONS_FAILED_495=Unable to set file permissions \
### for the file system entry cache backend database directory %s
###SEVERE_WARN_FSCACHE_OFFLINE_STATE_FAIL_496=%s backend current offline state \
### does not match persistent cache last recorded offline state. All cached data \
### for this backend is now discarded
NOTICE_FSCACHE_RESTORE_REPORT_497=%d \u500b\u306e\u6301\u7d9a\u7684\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u3092\u30a8\u30f3\u30c8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u5fa9\u5143\u3057\u307e\u3057\u305f
NOTICE_FSCACHE_SAVE_REPORT_498=%d \u500b\u306e\u6301\u7d9a\u7684\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3057\u305f
NOTICE_FSCACHE_INDEX_NOT_FOUND_499=\u524d\u306e\u6301\u7d9a\u7684\u30ad\u30e3\u30c3\u30b7\u30e5\u72b6\u614b\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002 \u7a7a\u306e\u30ad\u30e3\u30c3\u30b7\u30e5\u3067\u958b\u59cb\u3057\u3066\u3044\u307e\u3059
###SEVERE_ERR_FSCACHE_INDEX_IMPAIRED_500=The persistent cache index is \
### inconsistent or damaged. Persistent cache will be flushed now
MILD_ERR_ENTRYUUID_VATTR_NOT_SEARCHABLE_501=%s \u5c5e\u6027\u306f\u691c\u7d22\u53ef\u80fd\u3067\u306a\u3044\u305f\u3081\u3001\u307b\u304b\u306e\u65b9\u6cd5\u3067\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u691c\u7d22\u30d5\u30a3\u30eb\u30bf\u306b\u306f\u542b\u3081\u306a\u3044\u3067\u304f\u3060\u3055\u3044
###SEVERE_ERR_PWPSTATE_EXTOP_NO_PRIVILEGE_502=You do not have sufficient \
### privileges to use the password policy state extended operation
###SEVERE_ERR_PWPSTATE_EXTOP_NO_REQUEST_VALUE_503=The provided password policy \
### state extended request did not include a request value
###SEVERE_ERR_PWPSTATE_EXTOP_DECODE_FAILURE_504=An unexpected error occurred \
### while attempting to decode password policy state extended request value:  %s
###SEVERE_ERR_PWPSTATE_EXTOP_MULTIPLE_ENTRIES_505=Multiple entries were found \
### with DN %s
###SEVERE_ERR_PWPSTATE_EXTOP_INVALID_OP_ENCODING_506=An unexpected error \
### occurred while attempting to decode an operation from the password policy \
### state extended request:  %s
###SEVERE_ERR_PWPSTATE_EXTOP_NO_DISABLED_VALUE_507=No value was provided for the \
### password policy state operation intended to set the disabled state for the \
### user.  Exactly one value (either 'true' or 'false') must be given
###SEVERE_ERR_PWPSTATE_EXTOP_BAD_DISABLED_VALUE_COUNT_508=Multiple values were \
### provided for the password policy state operation intended to set the disabled \
### state for the user.  Exactly one value (either 'true' or 'false') must be \
### given
###SEVERE_ERR_PWPSTATE_EXTOP_BAD_DISABLED_VALUE_509=The value provided for the \
### password policy state operation  intended to set the disabled state for the \
### user was invalid.  The value must be either 'true' or 'false'
###SEVERE_ERR_PWPSTATE_EXTOP_BAD_ACCT_EXP_VALUE_COUNT_510=Multiple values were \
### provided for the password policy state operation intended to set the account \
### expiration time for the user.  Exactly one value must be given
###SEVERE_ERR_PWPSTATE_EXTOP_BAD_ACCT_EXP_VALUE_511=The value %s provided for \
### the password policy state operation used to set the account expiration time \
### was invalid:  %s.  The value should be specified using the generalized time \
### format
###SEVERE_ERR_PWPSTATE_EXTOP_BAD_PWCHANGETIME_VALUE_COUNT_512=Multiple values \
### were provided for the password policy state operation intended to set the \
### password changed time for the user.  Exactly one value must be given
###SEVERE_ERR_PWPSTATE_EXTOP_BAD_PWCHANGETIME_VALUE_513=The value %s provided \
### for the password policy state operation used to set the password changed time \
### was invalid:  %s.  The value should be specified using the generalized time \
### format
###SEVERE_ERR_PWPSTATE_EXTOP_BAD_PWWARNEDTIME_VALUE_COUNT_514=Multiple values \
### were provided for the password policy state operation intended to set the \
### password warned time for the user.  Exactly one value must be given
###SEVERE_ERR_PWPSTATE_EXTOP_BAD_PWWARNEDTIME_VALUE_515=The value %s provided \
### for the password policy state operation used to set the password warned time \
### was invalid:  %s.  The value should be specified using the generalized time \
### format
###SEVERE_ERR_PWPSTATE_EXTOP_BAD_ADD_FAILURE_TIME_COUNT_516=Multiple values were \
### provided for the password policy state operation intended to add an \
### authentication failure time for the user.  Exactly one value must be given
###SEVERE_ERR_PWPSTATE_EXTOP_BAD_AUTH_FAILURE_TIME_517=The value %s provided for \
### the password policy state operation used to update the authentication failure \
### times was invalid:  %s.  The value should be specified using the generalized \
### time format
###SEVERE_ERR_PWPSTATE_EXTOP_BAD_LAST_LOGIN_TIME_COUNT_518=Multiple values were \
### provided for the password policy state operation intended to set the last \
### login time for the user.  Exactly one value must be given
###SEVERE_ERR_PWPSTATE_EXTOP_BAD_LAST_LOGIN_TIME_519=The value %s provided for \
### the password policy state operation used to set the last login time was \
### invalid:  %s.  The value should be specified using the generalized time format
###SEVERE_ERR_PWPSTATE_EXTOP_NO_RESET_STATE_VALUE_520=No value was provided for \
### the password policy state operation intended to set the reset state for the \
### user.  Exactly one value (either 'true' or 'false') must be given
###SEVERE_ERR_PWPSTATE_EXTOP_BAD_RESET_STATE_VALUE_COUNT_521=Multiple values \
### were provided for the password policy state operation intended to set the \
### reset state for the user.  Exactly one value (either 'true' or 'false') must \
### be given
###SEVERE_ERR_PWPSTATE_EXTOP_BAD_RESET_STATE_VALUE_522=The value provided for \
### the password policy state operation  intended to set the reset state for the \
### user was invalid.  The value must be either 'true' or 'false'
###SEVERE_ERR_PWPSTATE_EXTOP_BAD_ADD_GRACE_LOGIN_TIME_COUNT_523=Multiple values \
### were provided for the password policy state operation intended to add a grace \
### login use time for the user.  Exactly one value must be given
###SEVERE_ERR_PWPSTATE_EXTOP_BAD_GRACE_LOGIN_TIME_524=The value %s provided for \
### the password policy state operation used to update the grace login use times \
### was invalid:  %s.  The value should be specified using the generalized time \
### format
###SEVERE_ERR_PWPSTATE_EXTOP_BAD_REQUIRED_CHANGE_TIME_COUNT_525=Multiple values \
### were provided for the password policy state operation intended to set the \
### required change time for the user.  Exactly one value must be given
###SEVERE_ERR_PWPSTATE_EXTOP_BAD_REQUIRED_CHANGE_TIME_526=The value %s provided \
### for the password policy state operation used to set the required change time \
### was invalid:  %s.  The value should be specified using the generalized time \
### format
###SEVERE_ERR_PWPSTATE_EXTOP_UNKNOWN_OP_TYPE_527=The password policy state \
### extended request included an operation with an invalid or unsupported \
### operation type of %s
MILD_WARN_EXTOP_PASSMOD_CANNOT_UPDATE_PWP_STATE_528=\u30d1\u30b9\u30ef\u30fc\u30c9\u5909\u66f4\u306e\u62e1\u5f35\u64cd\u4f5c\u306e\u4e00\u90e8\u3068\u3057\u3066\u30e6\u30fc\u30b6\u30fc %s \u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u30dd\u30ea\u30b7\u30fc\u72b6\u614b\u60c5\u5831\u3092\u66f4\u65b0\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f (\u7d50\u679c\u30b3\u30fc\u30c9='%s'\u3001\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8='%s')
MILD_ERR_SASLDIGESTMD5_INVALID_DIGEST_URI_529=\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u304b\u3089\u6307\u5b9a\u3055\u308c\u305f DIGEST-MD5 \u8cc7\u683c\u60c5\u5831\u306b\u3088\u3063\u3066\u3001\u7121\u52b9\u306a\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8 URI \u306e %s \u304c\u8981\u6c42\u3055\u308c\u307e\u3057\u305f\u3002\u671f\u5f85\u3055\u308c\u308b\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8 URI \u306f %s \u3067\u3057\u305f
MILD_ERR_EXTOP_PASSMOD_PW_IN_HISTORY_530=\u6307\u5b9a\u3055\u308c\u305f\u65b0\u3057\u3044\u30d1\u30b9\u30ef\u30fc\u30c9\u306f\u3001\u3059\u3067\u306b\u30d1\u30b9\u30ef\u30fc\u30c9\u5c65\u6b74\u306b\u542b\u307e\u308c\u3066\u3044\u307e\u3057\u305f
MILD_ERR_SMTPALERTHANDLER_NO_SMTP_SERVERS_531=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306b\u3001SMTP \u30b5\u30fc\u30d0\u30fc\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002  1 \u3064\u4ee5\u4e0a\u306e SMTP \u30b5\u30fc\u30d0\u30fc\u306e\u60c5\u5831\u304c\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306b\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u3001SMTP \u30a2\u30e9\u30fc\u30c8\u30cf\u30f3\u30c9\u30e9\u306f\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093
###SEVERE_WARN_SMTPALERTHANDLER_ERROR_SENDING_MESSAGE_532=An error occurred when \
### trying to send an e-mail message for administrative alert with type %s and \
### message %s:  %s
MILD_ERR_REGEXMAP_INVALID_MATCH_PATTERN_533=\u6307\u5b9a\u3055\u308c\u305f\u30d1\u30bf\u30fc\u30f3\u4e00\u81f4 "%s" \u3092\u6b63\u898f\u8868\u73fe\u3068\u3057\u3066\u89e3\u6790\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f:  %s
MILD_ERR_REGEXMAP_UNKNOWN_ATTR_534=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u306b\u5c5e\u6027 ds-cfg-match-attribute \u306e\u5024 %s \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059\u304c\u3001\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306e\u30b9\u30ad\u30fc\u30de\u3067\u5b9a\u7fa9\u3055\u308c\u305f\u5c5e\u6027\u578b\u306e\u6709\u52b9\u306a\u540d\u524d\u307e\u305f\u306f OID \u3067\u306f\u3042\u308a\u307e\u305b\u3093
MILD_ERR_REGEXMAP_MULTIPLE_MATCHING_ENTRIES_535=\u51e6\u7406\u6e08\u307f\u306e ID \u6587\u5b57\u5217 %s \u304c\u8907\u6570\u306e\u30e6\u30fc\u30b6\u30fc\u306b\u30de\u30c3\u30d7\u3055\u308c\u307e\u3057\u305f
MILD_ERR_REGEXMAP_INEFFICIENT_SEARCH_536=\u51e6\u7406\u6e08\u307f\u306e ID \u6587\u5b57\u5217 %s \u306b\u57fa\u3065\u304f\u5185\u90e8\u691c\u7d22\u3092\u52b9\u7387\u7684\u306b\u51e6\u7406\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f:  %s\u3002\u30b5\u30fc\u30d0\u30fc\u69cb\u6210\u3092\u78ba\u8a8d\u3057\u3066\u3001\u95a2\u9023\u3059\u308b\u3059\u3079\u3066\u306e\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u304c\u3053\u308c\u3089\u306e\u30bf\u30a4\u30d7\u306e\u691c\u7d22\u306b\u5bfe\u3057\u3066\u6b63\u3057\u304f\u69cb\u6210\u3055\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044
MILD_ERR_REGEXMAP_SEARCH_FAILED_537=\u51e6\u7406\u6e08\u307f\u306e ID \u6587\u5b57\u5217 %s \u3092\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u3078\u89e3\u6c7a\u4e2d\u306b\u5185\u90e8\u969c\u5bb3\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %s
MILD_ERR_STATICGROUP_ADD_NESTED_GROUP_ALREADY_EXISTS_538=\u30b0\u30eb\u30fc\u30d7 %s \u3092\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7 %s \u306e\u65b0\u3057\u3044\u5165\u308c\u5b50\u306e\u30b0\u30eb\u30fc\u30d7\u3068\u3057\u3066\u8ffd\u52a0\u3067\u304d\u307e\u305b\u3093\u3002\u3053\u306e\u30b0\u30eb\u30fc\u30d7\u306f\u3001\u30b0\u30eb\u30fc\u30d7\u306e\u5165\u308c\u5b50\u306e\u30b0\u30eb\u30fc\u30d7\u30ea\u30b9\u30c8\u306b\u3059\u3067\u306b\u542b\u307e\u308c\u3066\u3044\u307e\u3059
MILD_ERR_STATICGROUP_REMOVE_NESTED_GROUP_NO_SUCH_GROUP_539=\u30b0\u30eb\u30fc\u30d7 %s \u3092\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7 %s \u306e\u5165\u308c\u5b50\u306e\u30b0\u30eb\u30fc\u30d7\u304b\u3089\u524a\u9664\u3067\u304d\u307e\u305b\u3093\u3002\u3053\u306e\u30b0\u30eb\u30fc\u30d7\u306f\u3001\u30b0\u30eb\u30fc\u30d7\u306e\u5165\u308c\u5b50\u306e\u30b0\u30eb\u30fc\u30d7\u30ea\u30b9\u30c8\u306b\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093
MILD_ERR_STATICGROUP_GROUP_INSTANCE_INVALID_540=DN %s \u3092\u6301\u3064\u30b0\u30eb\u30fc\u30d7\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306f\u524a\u9664\u3055\u308c\u305f\u305f\u3081\u3001\u6709\u52b9\u3067\u306f\u306a\u304f\u306a\u308a\u307e\u3057\u305f
MILD_ERR_NUMSUBORDINATES_VATTR_NOT_SEARCHABLE_541=%s \u5c5e\u6027\u306f\u691c\u7d22\u53ef\u80fd\u3067\u306a\u3044\u305f\u3081\u3001\u307b\u304b\u306e\u65b9\u6cd5\u3067\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u691c\u7d22\u30d5\u30a3\u30eb\u30bf\u306b\u306f\u542b\u3081\u306a\u3044\u3067\u304f\u3060\u3055\u3044
MILD_ERR_HASSUBORDINATES_VATTR_NOT_SEARCHABLE_542=%s \u5c5e\u6027\u306f\u691c\u7d22\u53ef\u80fd\u3067\u306a\u3044\u305f\u3081\u3001\u307b\u304b\u306e\u65b9\u6cd5\u3067\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u691c\u7d22\u30d5\u30a3\u30eb\u30bf\u306b\u306f\u542b\u3081\u306a\u3044\u3067\u304f\u3060\u3055\u3044
MILD_ERR_SMTP_ASNH_NO_MAIL_SERVERS_CONFIGURED_543=1 \u3064\u4ee5\u4e0a\u306e SMTP \u30b5\u30fc\u30d0\u30fc\u306e\u60c5\u5831\u304c\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306b\u306a\u3044\u5834\u5408\u3001\u69cb\u6210\u30a8\u30f3\u30c8\u30ea %s \u3067\u5b9a\u7fa9\u3055\u308c\u305f SMTP \u30a2\u30ab\u30a6\u30f3\u30c8\u30b9\u30c6\u30fc\u30bf\u30b9\u901a\u77e5\u30cf\u30f3\u30c9\u30e9\u306f\u6709\u52b9\u306b\u3067\u304d\u307e\u305b\u3093
MILD_ERR_SMTP_ASNH_NO_RECIPIENTS_544=SMTP \u30a2\u30ab\u30a6\u30f3\u30c8\u30b9\u30c6\u30fc\u30bf\u30b9\u901a\u77e5\u30cf\u30f3\u30c9\u30e9\u306e\u69cb\u6210\u30a8\u30f3\u30c8\u30ea '%s' \u306b\u3001\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u306e\u5c5e\u6027\u578b\u307e\u305f\u306f\u53d7\u4fe1\u30a2\u30c9\u30ec\u30b9\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3002  \u3053\u308c\u3089\u306e\u5c11\u306a\u304f\u3068\u3082 1 \u3064\u3092\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059
MILD_ERR_SMTP_ASNH_SUBJECT_NO_COLON_545=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea '%2$s' \u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u4ef6\u540d\u5024 '%1$s' \u3092\u89e3\u6790\u3067\u304d\u307e\u305b\u3093\u3002\u5024\u306b\u3001\u901a\u77e5\u306e\u7a2e\u985e\u3068\u4ef6\u540d\u3092\u533a\u5207\u308b\u30b3\u30ed\u30f3\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093
MILD_ERR_SMTP_ASNH_SUBJECT_INVALID_NOTIFICATION_TYPE_546=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea '%2$s' \u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u4ef6\u540d\u5024 '%1$s' \u3092\u89e3\u6790\u3067\u304d\u307e\u305b\u3093\u3002\u30a2\u30ab\u30a6\u30f3\u30c8\u72b6\u614b\u306e\u901a\u77e5\u306e\u7a2e\u985e\u3068\u3057\u3066 '%3$s' \u306f\u7121\u52b9\u3067\u3059
MILD_ERR_SMTP_ASNH_SUBJECT_DUPLICATE_TYPE_547=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea '%s' \u306b\u542b\u307e\u308c\u308b\u30e1\u30c3\u30bb\u30fc\u30b8\u4ef6\u540d\u5b9a\u7fa9\u306b\u3001\u901a\u77e5\u306e\u7a2e\u985e %s \u7528\u306b\u5b9a\u7fa9\u3055\u308c\u305f\u8907\u6570\u306e\u4ef6\u540d\u304c\u3042\u308a\u307e\u3059
MILD_ERR_SMTP_ASNH_TEMPLATE_NO_COLON_548=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea '%2$s' \u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u5024 '%1$s' \u3092\u89e3\u6790\u3067\u304d\u307e\u305b\u3093\u3002\u5024\u306b\u3001\u901a\u77e5\u306e\u7a2e\u985e\u3068\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u533a\u5207\u308b\u30b3\u30ed\u30f3\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093
MILD_ERR_SMTP_ASNH_TEMPLATE_INVALID_NOTIFICATION_TYPE_549=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea '%2$s' \u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u5024 '%1$s' \u3092\u89e3\u6790\u3067\u304d\u307e\u305b\u3093\u3002\u30a2\u30ab\u30a6\u30f3\u30c8\u72b6\u614b\u306e\u901a\u77e5\u306e\u7a2e\u985e\u3068\u3057\u3066 '%3$s' \u306f\u7121\u52b9\u3067\u3059
MILD_ERR_SMTP_ASNH_TEMPLATE_DUPLICATE_TYPE_550=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea '%s' \u306b\u542b\u307e\u308c\u308b\u30e1\u30c3\u30bb\u30fc\u30b8\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u5b9a\u7fa9\u306b\u3001\u901a\u77e5\u306e\u7a2e\u985e %s \u7528\u306b\u5b9a\u7fa9\u3055\u308c\u305f\u8907\u6570\u306e\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u304c\u3042\u308a\u307e\u3059
MILD_ERR_SMTP_ASNH_TEMPLATE_NO_SUCH_FILE_551=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea '%2$s' \u3067\u53c2\u7167\u3055\u308c\u308b\u30e1\u30c3\u30bb\u30fc\u30b8\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u30d5\u30a1\u30a4\u30eb '%1$s' \u304c\u5b58\u5728\u3057\u307e\u305b\u3093
MILD_ERR_SMTP_ASNH_TEMPLATE_UNCLOSED_TOKEN_552=\u884c %2$d \u306e\u5217 %1$d \u304b\u3089\u59cb\u307e\u308b\u3001\u9589\u3058\u3089\u308c\u3066\u3044\u306a\u3044\u30c8\u30fc\u30af\u30f3\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f
MILD_ERR_SMTP_ASNH_TEMPLATE_UNDEFINED_ATTR_TYPE_553=\u884c %2$d \u306e\u5217 %1$d \u304b\u3089\u59cb\u307e\u308b notification-user-attr \u30c8\u30fc\u30af\u30f3\u304c\u3001\u672a\u5b9a\u7fa9\u306e\u5c5e\u6027\u578b %3$s \u3092\u53c2\u7167\u3057\u3066\u3044\u307e\u3059
MILD_ERR_SMTP_ASNH_TEMPLATE_UNDEFINED_PROPERTY_554=\u884c %2$d \u306e\u5217 %1$d \u304b\u3089\u59cb\u307e\u308b notification-property \u30c8\u30fc\u30af\u30f3\u304c\u3001\u672a\u5b9a\u7fa9\u306e\u901a\u77e5\u30d7\u30ed\u30d1\u30c6\u30a3\u30fc %3$s \u3092\u53c2\u7167\u3057\u3066\u3044\u307e\u3059
MILD_ERR_SMTP_ASNH_TEMPLATE_UNRECOGNIZED_TOKEN_555=\u8a8d\u8b58\u3055\u308c\u306a\u3044\u30c8\u30fc\u30af\u30f3 %1$s \u304c\u884c %3$d \u306e\u5217 %2$d \u306b\u898b\u3064\u304b\u308a\u307e\u3057\u305f
MILD_ERR_SMTP_ASNH_TEMPLATE_CANNOT_PARSE_556=\u69cb\u6210\u30a8\u30f3\u30c8\u30ea '%2$s' \u3067\u53c2\u7167\u3055\u308c\u308b\u30e1\u30c3\u30bb\u30fc\u30b8\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u30d5\u30a1\u30a4\u30eb '%1$s' \u3092\u89e3\u6790\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:  %3$s
INFO_SMTP_ASNH_DEFAULT_SUBJECT_557=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30a2\u30ab\u30a6\u30f3\u30c8\u30b9\u30c6\u30fc\u30bf\u30b9\u901a\u77e5
###SEVERE_ERR_SMTP_ASNH_CANNOT_SEND_MESSAGE_558=An error occurred while \
### attempting to send an account status notification message for notification \
### type %s for user entry %s:  %s
###SEVERE_ERR_PWSCHEME_CANNOT_ENCRYPT_559=An error occurred while trying to \
### encrypt a value using password storage scheme %s:  %s
###SEVERE_ERR_PWSCHEME_CANNOT_DECRYPT_560=An error occurred while trying to \
### decrypt a value using password storage scheme %s:  %s
MILD_ERR_GET_SYMMETRIC_KEY_NO_VALUE_561=\u6307\u5b9a\u3055\u308c\u305f\u5bfe\u79f0\u9375\u306e\u62e1\u5f35\u64cd\u4f5c\u3092\u5fa9\u53f7\u5316\u3067\u304d\u307e\u305b\u3093\u3002\u5024\u304c\u3042\u308a\u307e\u305b\u3093
MILD_ERR_GET_SYMMETRIC_KEY_INVALID_TYPE_562=\u6307\u5b9a\u3055\u308c\u305f\u5bfe\u79f0\u9375\u306e\u62e1\u5f35\u64cd\u4f5c\u3092\u5fa9\u53f7\u5316\u3067\u304d\u307e\u305b\u3093\u3002\u5024\u30b7\u30fc\u30b1\u30f3\u30b9\u306b\u3001\u7121\u52b9\u306a\u30bf\u30a4\u30d7\u306e %s \u3092\u6301\u3064\u8981\u7d20\u304c\u3042\u308a\u307e\u3059
MILD_ERR_GET_SYMMETRIC_KEY_ASN1_DECODE_EXCEPTION_563=\u6307\u5b9a\u3055\u308c\u305f\u5bfe\u79f0\u9375\u306e\u62e1\u5f35\u8981\u6c42\u3092\u5fa9\u53f7\u5316\u3067\u304d\u307e\u305b\u3093: %s
MILD_ERR_GET_SYMMETRIC_KEY_DECODE_EXCEPTION_564=\u5bfe\u79f0\u9375\u306e\u62e1\u5f35\u8981\u6c42\u30b7\u30fc\u30b1\u30f3\u30b9\u3092\u5fa9\u53f7\u5316\u4e2d\u306b\u4e88\u671f\u3057\u306a\u3044\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f: %s
###SEVERE_ERR_EXACTMAP_ATTR_UNINDEXED_565=The exact match identity mapper \
### defined in configuration entry %s references attribute type %s which is does \
### not have an equality index defined in backend %s
###SEVERE_ERR_REGEXMAP_ATTR_UNINDEXED_566=The regular expression identity mapper \
### defined in configuration entry %s references attribute type %s which is does \
### not have an equality index defined in backend %s
###SEVERE_ERR_FCM_ATTR_UNINDEXED_567=The fingerprint certificate mapper defined \
### in configuration entry %s references attribute type %s which is does not \
### have an equality index defined in backend %s
###SEVERE_WARN_SATUACM_ATTR_UNINDEXED_568=The subject attribute to user attribute \
### certificate mapper defined in configuration entry %s references attribute \
### type %s which is does not have an equality index defined in backend %s
###SEVERE_ERR_SDTUACM_ATTR_UNINDEXED_569=The subject DN to user attribute \
### certificate mapper defined in configuration entry %s references attribute \
### type %s which is does not have an equality index defined in backend %s
###SEVERE_ERR_SASLDIGESTMD5_PROTOCOL_ERROR_570=SASL DIGEST MD5 protocol error: %s
INFO_LOG_EXTENSION_INFORMATION_571=\u30d5\u30a1\u30a4\u30eb '%s' (\u30d3\u30eb\u30c9 %s\u3001\u30d0\u30fc\u30b8\u30e7\u30f3 %s) \u304b\u3089\u62e1\u5f35\u3092\u30ed\u30fc\u30c9\u3057\u307e\u3057\u305f
 SEVERE_ERR_SASL_CREATE_SASL_SERVER_FAILED_572=%2$s \u306e\u30b5\u30fc\u30d0\u30fc FQDN \u3092\u4f7f\u7528\u3057\u305f SASL \u6a5f\u69cb %1$s \u306e SASL \u30b5\u30fc\u30d0\u30fc\u306e\u4f5c\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f
###SEVERE_ERR_SASL_GSSAPI_KEYTAB_INVALID_573=GSSAPI SASL mechanism handler initalization \
###failed because the keytab file %s does not exist
INFO_GSSAPI_STARTED_574=GSSAPI SASL \u30e1\u30ab\u30cb\u30ba\u30e0\u30cf\u30f3\u30c9\u30e9\u306e\u521d\u671f\u8a2d\u5b9a\u306b\u6210\u529f\u3057\u307e\u3057\u305f
INFO_GSSAPI_STOPPED_575=GSSAPI SASL \u30e1\u30ab\u30cb\u30ba\u30e0\u30cf\u30f3\u30c9\u30e9\u304c\u505c\u6b62\u3057\u307e\u3057\u305f