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

hajma
20.44.2009 fe71aba2d7b10bc745b436304a2f5e4f3d8fbc8a
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
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
# 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-2009 Sun Microsystems, Inc.
#
# Global directives
#
global.category=TOOLS
#
# 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_TOOLS_CANNOT_CREATE_SSL_CONNECTION_1=Unable to create an SSL \
### connection to the server: %s
###SEVERE_ERR_TOOLS_SSL_CONNECTION_NOT_INITIALIZED_2=Unable to create an SSL \
### connection to the server because the connection factory has not been \
### initialized
###SEVERE_ERR_TOOLS_CANNOT_LOAD_KEYSTORE_FILE_3=Cannot load the key store file: \
### %s
###SEVERE_ERR_TOOLS_CANNOT_INIT_KEYMANAGER_4=Cannot initialize the key manager \
### for the key store:%s
###SEVERE_ERR_TOOLS_CANNOT_LOAD_TRUSTSTORE_FILE_5=Cannot load the key store \
### file: %s
###SEVERE_ERR_TOOLS_CANNOT_INIT_TRUSTMANAGER_6=Cannot initialize the key manager \
### for the key store:%s
INFO_ENCPW_DESCRIPTION_LISTSCHEMES_7=\u5217\u51fa\u53ef\u7528\u5bc6\u7801\u5b58\u50a8\u65b9\u6848
INFO_ENCPW_DESCRIPTION_CLEAR_PW_8=\u8981\u8fdb\u884c\u7f16\u7801\u6216\u8981\u4e0e\u5df2\u7f16\u7801\u5bc6\u7801\u8fdb\u884c\u6bd4\u8f83\u7684\u660e\u6587\u5bc6\u7801
INFO_ENCPW_DESCRIPTION_CLEAR_PW_FILE_9=\u660e\u6587\u5bc6\u7801\u6587\u4ef6
INFO_ENCPW_DESCRIPTION_ENCODED_PW_10=\u8981\u4e0e\u660e\u6587\u5bc6\u7801\u8fdb\u884c\u6bd4\u8f83\u7684\u5df2\u7f16\u7801\u5bc6\u7801
INFO_ENCPW_DESCRIPTION_ENCODED_PW_FILE_11=\u5df2\u7f16\u7801\u5bc6\u7801\u6587\u4ef6
INFO_DESCRIPTION_CONFIG_CLASS_12=\u5c06\u7528\u4f5c\u76ee\u5f55\u670d\u52a1\u5668\u914d\u7f6e\u5904\u7406\u7a0b\u5e8f\u7684 Java \u7c7b\u7684\u5168\u9650\u5b9a\u540d\u79f0\u3002\u5982\u679c\u672a\u63d0\u4f9b\u6b64\u540d\u79f0\uff0c\u5219\u5c06\u4f7f\u7528\u9ed8\u8ba4\u503c org.opends.server.extensions.ConfigFileHandler
INFO_DESCRIPTION_CONFIG_FILE_13=\u76ee\u5f55\u670d\u52a1\u5668\u914d\u7f6e\u6587\u4ef6\u7684\u8def\u5f84
INFO_ENCPW_DESCRIPTION_SCHEME_14=\u7528\u4e8e\u5df2\u7f16\u7801\u5bc6\u7801\u7684\u65b9\u6848
INFO_DESCRIPTION_USAGE_15=\u663e\u793a\u6b64\u7528\u6cd5\u4fe1\u606f
###SEVERE_ERR_CANNOT_INITIALIZE_ARGS_16=An unexpected error occurred while \
### attempting to initialize the command-line arguments:  %s
###SEVERE_ERR_ERROR_PARSING_ARGS_17=An error occurred while parsing the \
### command-line arguments:  %s
###SEVERE_ERR_ENCPW_NO_CLEAR_PW_18=No clear-text password was specified.  Use \
### --%s, --%s or --%s to specify the password to encode
###SEVERE_ERR_ENCPW_NO_SCHEME_19=No password storage scheme was specified.  Use \
### the --%s argument to specify the storage scheme
###SEVERE_ERR_SERVER_BOOTSTRAP_ERROR_20=An unexpected error occurred while \
### attempting to bootstrap the Directory Server client-side code:  %s
###SEVERE_ERR_CANNOT_LOAD_CONFIG_21=An error occurred while trying to load the \
### Directory Server configuration:  %s
###SEVERE_ERR_CANNOT_LOAD_SCHEMA_22=An error occurred while trying to load the \
### Directory Server schema:  %s
###SEVERE_ERR_CANNOT_INITIALIZE_CORE_CONFIG_23=An error occurred while trying to \
### initialize the core Directory Server configuration:  %s
###SEVERE_ERR_ENCPW_CANNOT_INITIALIZE_STORAGE_SCHEMES_24=An error occurred while \
### trying to initialize the Directory Server password storage schemes:  %s
###SEVERE_ERR_ENCPW_NO_STORAGE_SCHEMES_25=No password storage schemes have been \
### configured for use in the Directory Server
###SEVERE_ERR_ENCPW_NO_SUCH_SCHEME_26=Password storage scheme "%s" is not \
### configured for use in the Directory Server
INFO_ENCPW_PASSWORDS_MATCH_27=\u63d0\u4f9b\u7684\u660e\u6587\u5bc6\u7801\u548c\u5df2\u7f16\u7801\u5bc6\u7801\u76f8\u5339\u914d
INFO_ENCPW_PASSWORDS_DO_NOT_MATCH_28=\u63d0\u4f9b\u7684\u660e\u6587\u5bc6\u7801\u548c\u5df2\u7f16\u7801\u5bc6\u7801\u4e0d\u5339\u914d
###SEVERE_ERR_ENCPW_ENCODED_PASSWORD_29=Encoded Password:  "%s"
###SEVERE_ERR_ENCPW_CANNOT_ENCODE_30=An error occurred while attempting to \
### encode the clear-text password:  %s
INFO_LDIFEXPORT_DESCRIPTION_LDIF_FILE_33=\u8981\u5199\u5165\u7684 LDIF \u6587\u4ef6\u7684\u8def\u5f84
INFO_LDIFEXPORT_DESCRIPTION_APPEND_TO_LDIF_34=\u9644\u52a0\u5230\u73b0\u6709 LDIF \u6587\u4ef6\u4e2d\uff0c\u800c\u4e0d\u662f\u8986\u76d6\u8be5\u6587\u4ef6
INFO_LDIFEXPORT_DESCRIPTION_BACKEND_ID_35=\u8981\u5bfc\u51fa\u7684\u540e\u7aef\u7684 ID
INFO_LDIFEXPORT_DESCRIPTION_EXCLUDE_BRANCH_36=\u8981\u4ece LDIF \u5bfc\u51fa\u4e2d\u6392\u9664\u7684\u5206\u652f\u7684\u57fa DN
INFO_LDIFEXPORT_DESCRIPTION_INCLUDE_ATTRIBUTE_37=\u8981\u5305\u542b\u5728 LDIF \u5bfc\u51fa\u4e2d\u7684\u5c5e\u6027
INFO_LDIFEXPORT_DESCRIPTION_EXCLUDE_ATTRIBUTE_38=\u8981\u4ece LDIF \u5bfc\u51fa\u4e2d\u6392\u9664\u7684\u5c5e\u6027
INFO_LDIFEXPORT_DESCRIPTION_INCLUDE_FILTER_39=\u7528\u4e8e\u6807\u8bc6\u8981\u5305\u542b\u5728 LDIF \u5bfc\u51fa\u4e2d\u7684\u6761\u76ee\u7684\u8fc7\u6ee4\u5668
INFO_LDIFEXPORT_DESCRIPTION_EXCLUDE_FILTER_40=\u7528\u4e8e\u6807\u8bc6\u8981\u4ece LDIF \u5bfc\u51fa\u4e2d\u6392\u9664\u7684\u6761\u76ee\u7684\u8fc7\u6ee4\u5668
INFO_LDIFEXPORT_DESCRIPTION_WRAP_COLUMN_41=\u5bf9\u8f83\u957f\u7684\u884c\u8fdb\u884c\u6362\u884c\u7684\u5217\uff080 \u8868\u793a\u4e0d\u6362\u884c\uff09
INFO_LDIFEXPORT_DESCRIPTION_COMPRESS_LDIF_42=\u5728\u5bfc\u51fa LDIF \u6570\u636e\u65f6\u5bf9\u5176\u8fdb\u884c\u538b\u7f29
INFO_LDIFEXPORT_DESCRIPTION_ENCRYPT_LDIF_43=\u5728\u5bfc\u51fa LDIF \u6570\u636e\u65f6\u5bf9\u5176\u8fdb\u884c\u52a0\u5bc6
INFO_LDIFEXPORT_DESCRIPTION_SIGN_HASH_44=\u751f\u6210\u5bfc\u51fa\u6570\u636e\u7684\u7b7e\u540d\u6563\u5217
###SEVERE_ERR_LDIFEXPORT_CANNOT_PARSE_EXCLUDE_FILTER_52=Unable to decode exclude \
### filter string "%s" as a valid search filter:  %s
###SEVERE_ERR_LDIFEXPORT_CANNOT_PARSE_INCLUDE_FILTER_53=Unable to decode include \
### filter string "%s" as a valid search filter:  %s
###SEVERE_ERR_CANNOT_DECODE_BASE_DN_54=Unable to decode base DN string "%s" as a \
### valid distinguished name:  %s
###SEVERE_ERR_LDIFEXPORT_MULTIPLE_BACKENDS_FOR_ID_55=Multiple Directory Server \
### backends are configured with the requested backend ID "%s"
###SEVERE_ERR_LDIFEXPORT_NO_BACKENDS_FOR_ID_56=None of the Directory Server \
### backends are configured with the requested backend ID "%s"
###SEVERE_ERR_LDIFEXPORT_CANNOT_DECODE_EXCLUDE_BASE_57=Unable to decode exclude \
### branch string "%s" as a valid distinguished name:  %s
###SEVERE_ERR_LDIFEXPORT_CANNOT_DECODE_WRAP_COLUMN_AS_INTEGER_58=Unable to \
### decode wrap column value "%s" as an integer
###SEVERE_ERR_LDIFEXPORT_ERROR_DURING_EXPORT_59=An error occurred while \
### attempting to process the LDIF export:  %s
###SEVERE_ERR_CANNOT_DECODE_BACKEND_BASE_DN_60=Unable to decode the backend \
### configuration base DN string "%s" as a valid DN:  %s
###SEVERE_ERR_CANNOT_RETRIEVE_BACKEND_BASE_ENTRY_61=Unable to retrieve the \
### backend configuration base entry "%s" from the server configuration:  %s
###SEVERE_ERR_CANNOT_DETERMINE_BACKEND_CLASS_62=Cannot determine the name of the \
### Java class providing the logic for the backend defined in configuration entry \
### %s:  %s
###SEVERE_ERR_CANNOT_LOAD_BACKEND_CLASS_63=Unable to load class %s referenced in \
### configuration entry %s for use as a Directory Server backend:  %s
###SEVERE_ERR_CANNOT_INSTANTIATE_BACKEND_CLASS_64=Unable to create an instance \
### of class %s referenced in configuration entry %s as a Directory Server \
### backend:  %s
###SEVERE_ERR_NO_BASES_FOR_BACKEND_65=No base DNs have been defined in backend \
### configuration entry %s.  This backend will not be evaluated
###SEVERE_ERR_CANNOT_DETERMINE_BASES_FOR_BACKEND_66=Unable to determine the set \
### of base DNs defined in backend configuration entry %s:  %s
INFO_LDIFIMPORT_DESCRIPTION_LDIF_FILE_69=\u8981\u5bfc\u5165\u7684 LDIF \u6587\u4ef6\u7684\u8def\u5f84
INFO_LDIFIMPORT_DESCRIPTION_APPEND_70=\u9644\u52a0\u5230\u73b0\u6709\u6570\u636e\u5e93\u4e2d\uff0c\u800c\u4e0d\u662f\u8986\u76d6\u8be5\u6570\u636e\u5e93
INFO_LDIFIMPORT_DESCRIPTION_REPLACE_EXISTING_71=\u5728\u9644\u52a0\u5230\u6570\u636e\u5e93\u65f6\u66ff\u6362\u73b0\u6709\u6761\u76ee
INFO_LDIFIMPORT_DESCRIPTION_BACKEND_ID_72=\u8981\u5bfc\u5165\u7684\u540e\u7aef\u7684 ID
INFO_LDIFIMPORT_DESCRIPTION_EXCLUDE_BRANCH_73=\u8981\u4ece LDIF \u5bfc\u5165\u4e2d\u6392\u9664\u7684\u5206\u652f\u7684\u57fa DN
INFO_LDIFIMPORT_DESCRIPTION_INCLUDE_ATTRIBUTE_74=\u8981\u5305\u542b\u5728 LDIF \u5bfc\u5165\u4e2d\u7684\u5c5e\u6027
INFO_LDIFIMPORT_DESCRIPTION_EXCLUDE_ATTRIBUTE_75=\u8981\u4ece LDIF \u5bfc\u5165\u4e2d\u6392\u9664\u7684\u5c5e\u6027
INFO_LDIFIMPORT_DESCRIPTION_INCLUDE_FILTER_76=\u7528\u4e8e\u6807\u8bc6\u8981\u5305\u542b\u5728 LDIF \u5bfc\u5165\u4e2d\u7684\u6761\u76ee\u7684\u8fc7\u6ee4\u5668
INFO_LDIFIMPORT_DESCRIPTION_EXCLUDE_FILTER_77=\u7528\u4e8e\u6807\u8bc6\u8981\u4ece LDIF \u5bfc\u5165\u4e2d\u6392\u9664\u7684\u6761\u76ee\u7684\u8fc7\u6ee4\u5668
INFO_LDIFIMPORT_DESCRIPTION_REJECT_FILE_78=\u5c06\u62d2\u7edd\u7684\u6761\u76ee\u5199\u5165\u6307\u5b9a\u6587\u4ef6
INFO_LDIFIMPORT_DESCRIPTION_OVERWRITE_79=\u8986\u76d6\u73b0\u6709\u62d2\u7edd\u6587\u4ef6\u548c/\u6216\u8df3\u8fc7\u6587\u4ef6\uff0c\u800c\u4e0d\u662f\u9644\u52a0\u5230\u8fd9\u4e9b\u6587\u4ef6\u4e2d
INFO_LDIFIMPORT_DESCRIPTION_IS_COMPRESSED_80=\u5df2\u538b\u7f29 LDIF \u6587\u4ef6
INFO_LDIFIMPORT_DESCRIPTION_IS_ENCRYPTED_81=\u5df2\u5bf9 LDIF \u6587\u4ef6\u52a0\u5bc6
###SEVERE_ERR_LDIFIMPORT_CANNOT_PARSE_EXCLUDE_FILTER_89=Unable to decode exclude \
### filter string "%s" as a valid search filter:  %s
###SEVERE_ERR_LDIFIMPORT_CANNOT_PARSE_INCLUDE_FILTER_90=Unable to decode include \
### filter string "%s" as a valid search filter:  %s
###SEVERE_ERR_LDIFIMPORT_MULTIPLE_BACKENDS_FOR_ID_92=Imported branches or \
### backend IDs can not span across multiple Directory Server backends
###SEVERE_ERR_LDIFIMPORT_NO_BACKENDS_FOR_ID_93=None of the Directory Server \
### backends are configured with the requested backend ID or base DNs that \
### include the specified branches
###SEVERE_ERR_LDIFIMPORT_CANNOT_DECODE_EXCLUDE_BASE_94=Unable to decode exclude \
### branch string "%s" as a valid distinguished name:  %s
###SEVERE_ERR_LDIFIMPORT_CANNOT_OPEN_REJECTS_FILE_95=An error occurred while \
### trying to open the rejects file %s for writing:  %s
###SEVERE_ERR_LDIFIMPORT_ERROR_DURING_IMPORT_96=An error occurred while \
### attempting to process the LDIF import:  %s
INFO_PROCESSING_OPERATION_104=\u6b63\u5728\u5904\u7406 %2$s \u7684 %1$s \u8bf7\u6c42
INFO_OPERATION_FAILED_105=%s \u64cd\u4f5c\u5931\u8d25
INFO_OPERATION_SUCCESSFUL_106=DN %2$s \u7684 %1$s \u64cd\u4f5c\u6210\u529f
INFO_PROCESSING_COMPARE_OPERATION_107=\u6b63\u5728\u5c06\u6761\u76ee %3$s \u4e2d\u7684\u7c7b\u578b %1$s \u4e0e\u503c %2$s \u8fdb\u884c\u6bd4\u8f83
INFO_COMPARE_OPERATION_RESULT_FALSE_108=\u6761\u76ee %s \u7684\u6bd4\u8f83\u64cd\u4f5c\u8fd4\u56de\u5047
INFO_COMPARE_OPERATION_RESULT_TRUE_109=\u6761\u76ee %s \u7684\u6bd4\u8f83\u64cd\u4f5c\u8fd4\u56de\u771f
INFO_SEARCH_OPERATION_INVALID_PROTOCOL_110=\u641c\u7d22\u7ed3\u679c %s \u4e2d\u8fd4\u56de\u65e0\u6548\u7684\u64cd\u4f5c\u7c7b\u578b
INFO_DESCRIPTION_TRUSTALL_111=\u4fe1\u4efb\u6240\u6709\u670d\u52a1\u5668 SSL \u8bc1\u4e66
INFO_DESCRIPTION_BINDDN_112=\u7528\u4e8e\u7ed1\u5b9a\u5230\u670d\u52a1\u5668\u7684 DN
INFO_DESCRIPTION_BINDPASSWORD_113=\u7528\u4e8e\u7ed1\u5b9a\u5230\u670d\u52a1\u5668\u7684\u5bc6\u7801
INFO_DESCRIPTION_BINDPASSWORDFILE_114=\u7ed1\u5b9a\u5bc6\u7801\u6587\u4ef6
INFO_DESCRIPTION_ENCODING_115=\u5728\u547d\u4ee4\u884c\u8f93\u5165\u4e2d\u4f7f\u7528\u6307\u5b9a\u5b57\u7b26\u96c6
INFO_DESCRIPTION_VERBOSE_116=\u4f7f\u7528\u8be6\u7ec6\u6a21\u5f0f
INFO_DESCRIPTION_KEYSTOREPATH_117=\u8bc1\u4e66\u5bc6\u94a5\u5e93\u8def\u5f84
INFO_DESCRIPTION_TRUSTSTOREPATH_118=\u8bc1\u4e66\u4fe1\u4efb\u5e93\u8def\u5f84
INFO_DESCRIPTION_KEYSTOREPASSWORD_119=\u8bc1\u4e66\u5bc6\u94a5\u5e93 PIN
INFO_DESCRIPTION_HOST_120=\u76ee\u5f55\u670d\u52a1\u5668\u4e3b\u673a\u540d\u6216 IP \u5730\u5740
INFO_DESCRIPTION_PORT_121=\u76ee\u5f55\u670d\u52a1\u5668\u7aef\u53e3\u53f7
INFO_DESCRIPTION_SHOWUSAGE_122=\u663e\u793a\u6b64\u7528\u6cd5\u4fe1\u606f
INFO_DESCRIPTION_CONTROLS_123=\u5c06\u8bf7\u6c42\u63a7\u5236\u7528\u4e8e\u63d0\u4f9b\u7684\u4fe1\u606f
INFO_DESCRIPTION_CONTINUE_ON_ERROR_124=\u5373\u4f7f\u51fa\u73b0\u9519\u8bef\u4e5f\u7ee7\u7eed\u8fdb\u884c\u5904\u7406
INFO_DESCRIPTION_USE_SSL_125=\u4f7f\u7528 SSL \u786e\u4fdd\u4e0e\u670d\u52a1\u5668\u8fdb\u884c\u5b89\u5168\u901a\u4fe1
INFO_DESCRIPTION_START_TLS_126=\u4f7f\u7528 StartTLS \u786e\u4fdd\u4e0e\u670d\u52a1\u5668\u8fdb\u884c\u5b89\u5168\u901a\u4fe1
INFO_DESCRIPTION_USE_SASL_EXTERNAL_127=\u4f7f\u7528 SASL EXTERNAL \u9a8c\u8bc1\u673a\u5236
INFO_DELETE_DESCRIPTION_FILENAME_128=\u5305\u542b\u8981\u5220\u9664\u7684\u6761\u76ee DN \u7684\u6587\u4ef6
INFO_DELETE_DESCRIPTION_DELETE_SUBTREE_129=\u5220\u9664\u6307\u5b9a\u6761\u76ee\u53ca\u5176\u4e0b\u9762\u7684\u6240\u6709\u6761\u76ee
INFO_MODIFY_DESCRIPTION_DEFAULT_ADD_130=\u5c06\u6ca1\u6709\u66f4\u6539\u7c7b\u578b\u7684\u8bb0\u5f55\u89c6\u4e3a\u6dfb\u52a0\u64cd\u4f5c
INFO_SEARCH_DESCRIPTION_BASEDN_131=\u641c\u7d22\u57fa DN
INFO_SEARCH_DESCRIPTION_SIZE_LIMIT_132=\u4ece\u641c\u7d22\u64cd\u4f5c\u8fd4\u56de\u7684\u6700\u5927\u6761\u76ee\u6570
INFO_SEARCH_DESCRIPTION_TIME_LIMIT_133=\u641c\u7d22\u64cd\u4f5c\u5141\u8bb8\u6267\u884c\u7684\u6700\u957f\u65f6\u95f4\uff08\u4ee5\u79d2\u4e3a\u5355\u4f4d\uff09
INFO_SEARCH_DESCRIPTION_SEARCH_SCOPE_134=\u641c\u7d22\u8303\u56f4\uff08'base'\u3001'one'\u3001'sub' \u6216 'subordinate'\uff09
INFO_SEARCH_DESCRIPTION_DEREFERENCE_POLICY_135=\u522b\u540d\u89e3\u9664\u5f15\u7528\u7b56\u7565\uff08'never'\u3001'always'\u3001'search' \u6216 'find'\uff09
###SEVERE_ERR_LDAPAUTH_CANNOT_SEND_SIMPLE_BIND_136=Cannot send the simple bind \
### request:  %s
###SEVERE_ERR_LDAPAUTH_CANNOT_READ_BIND_RESPONSE_137=Cannot read the bind \
### response from the server. The port you are using may require a secured \
###communication (--useSSL). %s
###SEVERE_ERR_LDAPAUTH_SERVER_DISCONNECT_138=The Directory Server indicated that \
### it was closing the connection to the client (result code %d, message "%s"
###SEVERE_ERR_LDAPAUTH_UNEXPECTED_EXTENDED_RESPONSE_139=The Directory Server \
### sent an unexpected extended response message to the client:  %s
###SEVERE_ERR_LDAPAUTH_UNEXPECTED_RESPONSE_140=The Directory Server sent an \
### unexpected response message to the client:  %s
MILD_ERR_LDAPAUTH_SIMPLE_BIND_FAILED_141=\u7b80\u5355\u7ed1\u5b9a\u5c1d\u8bd5\u5931\u8d25
###SEVERE_ERR_LDAPAUTH_NO_SASL_MECHANISM_142=A SASL bind was requested but no \
### SASL mechanism was specified
MILD_ERR_LDAPAUTH_UNSUPPORTED_SASL_MECHANISM_143=\u6b64\u5ba2\u6237\u7aef\u4e0d\u652f\u6301\u8bf7\u6c42\u7684 SASL \u673a\u5236 "%s"
MILD_ERR_LDAPAUTH_TRACE_SINGLE_VALUED_144=\u53ea\u80fd\u4e3a\u8ddf\u8e2a SASL \u5c5e\u6027\u6307\u5b9a\u5355\u4e2a\u503c
MILD_ERR_LDAPAUTH_INVALID_SASL_PROPERTY_145=%2$s SASL \u673a\u5236\u4e0d\u5141\u8bb8\u4f7f\u7528\u5c5e\u6027 "%1$s"
###SEVERE_ERR_LDAPAUTH_CANNOT_SEND_SASL_BIND_146=Cannot send the SASL %S bind \
### request:  %s
MILD_ERR_LDAPAUTH_SASL_BIND_FAILED_147=SASL %s \u7ed1\u5b9a\u5c1d\u8bd5\u5931\u8d25
MILD_ERR_LDAPAUTH_NO_SASL_PROPERTIES_148=\u672a\u63d0\u4f9b\u4efb\u4f55\u7528\u4e8e %s \u673a\u5236\u7684 SASL \u5c5e\u6027
MILD_ERR_LDAPAUTH_AUTHID_SINGLE_VALUED_149="authid" SASL \u5c5e\u6027\u4ec5\u63a5\u53d7\u5355\u4e2a\u503c
MILD_ERR_LDAPAUTH_SASL_AUTHID_REQUIRED_150=\u9700\u8981\u5c06 "authid" SASL \u5c5e\u6027\u7528\u4e8e %s \u673a\u5236
MILD_ERR_LDAPAUTH_CANNOT_SEND_INITIAL_SASL_BIND_151=\u65e0\u6cd5\u5c06\u591a\u9636\u6bb5 %s \u7ed1\u5b9a\u4e2d\u7684\u521d\u59cb\u7ed1\u5b9a\u8bf7\u6c42\u53d1\u9001\u5230\u670d\u52a1\u5668: %s
MILD_ERR_LDAPAUTH_CANNOT_READ_INITIAL_BIND_RESPONSE_152=\u65e0\u6cd5\u4ece\u670d\u52a1\u5668\u4e2d\u8bfb\u53d6\u521d\u59cb %s \u7ed1\u5b9a\u54cd\u5e94: %s
MILD_ERR_LDAPAUTH_UNEXPECTED_INITIAL_BIND_RESPONSE_153=\u5ba2\u6237\u7aef\u63a5\u6536\u5230\u610f\u5916\u4e2d\u95f4\u7ed1\u5b9a\u54cd\u5e94\u3002\u591a\u9636\u6bb5 %s \u7ed1\u5b9a\u8fc7\u7a0b\u7684\u7b2c\u4e00\u4e2a\u54cd\u5e94\u5e94\u8be5\u4e3a\u201c\u6b63\u5728\u8fdb\u884c SASL \u7ed1\u5b9a\u201d\uff0c\u4f46\u8be5\u7ed1\u5b9a\u54cd\u5e94\u7684\u7ed3\u679c\u4ee3\u7801\u4e3a %d (%s)\uff0c\u9519\u8bef\u6d88\u606f\u4e3a "%s"
MILD_ERR_LDAPAUTH_NO_CRAMMD5_SERVER_CREDENTIALS_154=\u5728\u6765\u81ea\u670d\u52a1\u5668\u7684\u521d\u59cb\u7ed1\u5b9a\u54cd\u5e94\u4e2d\uff0c\u6ca1\u6709\u4efb\u4f55\u670d\u52a1\u5668 SASL \u51ed\u8bc1\u5305\u542b\u5b8c\u6210 CRAM-MD5 \u9a8c\u8bc1\u6240\u9700\u7684\u8d28\u8be2\u4fe1\u606f
MILD_ERR_LDAPAUTH_CANNOT_INITIALIZE_MD5_DIGEST_155=\u5728\u5c1d\u8bd5\u521d\u59cb\u5316 MD5 \u6458\u8981\u751f\u6210\u5668\u65f6\u51fa\u73b0\u610f\u5916\u9519\u8bef: %s
MILD_ERR_LDAPAUTH_CANNOT_SEND_SECOND_SASL_BIND_156=\u65e0\u6cd5\u5c06\u591a\u9636\u6bb5 %s \u7ed1\u5b9a\u4e2d\u7684\u7b2c\u4e8c\u4e2a\u7ed1\u5b9a\u8bf7\u6c42\u53d1\u9001\u5230\u670d\u52a1\u5668: %s
MILD_ERR_LDAPAUTH_CANNOT_READ_SECOND_BIND_RESPONSE_157=\u65e0\u6cd5\u4ece\u670d\u52a1\u5668\u4e2d\u8bfb\u53d6\u7b2c\u4e8c\u4e2a %s \u7ed1\u5b9a\u54cd\u5e94: %s
MILD_ERR_LDAPAUTH_NO_ALLOWED_SASL_PROPERTIES_158=\u63d0\u4f9b\u4e86\u4e00\u4e2a\u6216\u591a\u4e2a SASL \u5c5e\u6027\uff0c\u4f46 %s \u673a\u5236\u4e0d\u4f7f\u7528\u4efb\u4f55 SASL \u5c5e\u6027
MILD_ERR_LDAPAUTH_AUTHZID_SINGLE_VALUED_159="authzid" SASL \u5c5e\u6027\u4ec5\u63a5\u53d7\u5355\u4e2a\u503c
MILD_ERR_LDAPAUTH_REALM_SINGLE_VALUED_160="realm" SASL \u5c5e\u6027\u4ec5\u63a5\u53d7\u5355\u4e2a\u503c
MILD_ERR_LDAPAUTH_QOP_SINGLE_VALUED_161="qop" SASL \u5c5e\u6027\u4ec5\u63a5\u53d7\u5355\u4e2a\u503c
MILD_ERR_LDAPAUTH_DIGESTMD5_QOP_NOT_SUPPORTED_162=\u6b64\u5ba2\u6237\u7aef\u4e0d\u652f\u6301 "%s" QoP \u6a21\u5f0f\u3002\u5f53\u524d\u53ea\u80fd\u4f7f\u7528 "auth" \u6a21\u5f0f
MILD_ERR_LDAPAUTH_DIGESTMD5_INVALID_QOP_163=\u6307\u5b9a\u7684 DIGEST-MD5 \u4fdd\u62a4\u8d28\u91cf\u6a21\u5f0f "%s" \u65e0\u6548\u3002\u5f53\u524d\u552f\u4e00\u652f\u6301\u7684 QoP \u6a21\u5f0f\u4e3a "auth"
MILD_ERR_LDAPAUTH_DIGEST_URI_SINGLE_VALUED_164="digest-uri" SASL \u5c5e\u6027\u4ec5\u63a5\u53d7\u5355\u4e2a\u503c
MILD_ERR_LDAPAUTH_NO_DIGESTMD5_SERVER_CREDENTIALS_165=\u5728\u6765\u81ea\u670d\u52a1\u5668\u7684\u521d\u59cb\u7ed1\u5b9a\u54cd\u5e94\u4e2d\uff0c\u6ca1\u6709\u4efb\u4f55\u670d\u52a1\u5668 SASL \u51ed\u8bc1\u5305\u542b\u5b8c\u6210 DIGEST-MD5 \u9a8c\u8bc1\u6240\u9700\u7684\u8d28\u8be2\u4fe1\u606f
MILD_ERR_LDAPAUTH_DIGESTMD5_INVALID_TOKEN_IN_CREDENTIALS_166=\u670d\u52a1\u5668\u63d0\u4f9b\u7684 DIGEST-MD5 \u51ed\u8bc1\u5305\u542b\u65e0\u6548\u7684\u6807\u8bb0 "%s"\uff08\u4ece\u4f4d\u7f6e %d \u5904\u5f00\u59cb\uff09
MILD_ERR_LDAPAUTH_DIGESTMD5_INVALID_CHARSET_167=\u670d\u52a1\u5668\u63d0\u4f9b\u7684 DIGEST-MD5 \u51ed\u8bc1\u6307\u5b9a\u4f7f\u7528 "%s" \u5b57\u7b26\u96c6\u3002\u53ef\u4ee5\u5728 DIGEST-MD5 \u51ed\u8bc1\u4e2d\u6307\u5b9a\u7684\u5b57\u7b26\u96c6\u4e3a "utf-8"
MILD_ERR_LDAPAUTH_REQUESTED_QOP_NOT_SUPPORTED_BY_SERVER_168=\u8bf7\u6c42\u7684 QoP \u6a21\u5f0f "%s" \u6ca1\u6709\u4f5c\u4e3a\u76ee\u5f55\u670d\u52a1\u5668\u652f\u6301\u7684\u6a21\u5f0f\u5217\u51fa\u3002\u76ee\u5f55\u670d\u52a1\u5668\u652f\u6301\u7684 QoP \u6a21\u5f0f\u5217\u8868\u4e3a: "%s"
MILD_ERR_LDAPAUTH_DIGESTMD5_NO_NONCE_169=\u4e3a\u54cd\u5e94\u521d\u59cb DIGEST-MD5 \u7ed1\u5b9a\u8bf7\u6c42\u800c\u63d0\u4f9b\u7684\u670d\u52a1\u5668 SASL \u51ed\u8bc1\u4e0d\u5305\u62ec\u7528\u4e8e\u751f\u6210\u9a8c\u8bc1\u6458\u8981\u7684 nonce
MILD_ERR_LDAPAUTH_DIGESTMD5_CANNOT_CREATE_RESPONSE_DIGEST_170=\u5728\u5c1d\u8bd5\u4e3a DIGEST-MD5 \u7ed1\u5b9a\u8bf7\u6c42\u751f\u6210\u54cd\u5e94\u6458\u8981\u65f6\u51fa\u73b0\u9519\u8bef: %s
MILD_ERR_LDAPAUTH_DIGESTMD5_NO_RSPAUTH_CREDS_171=\u6765\u81ea\u670d\u52a1\u5668\u7684 DIGEST-MD5 \u7ed1\u5b9a\u54cd\u5e94\u4e0d\u5305\u62ec "rspauth" \u5143\u7d20\uff0c\u8be5\u5143\u7d20\u7528\u4e8e\u63d0\u4f9b\u54cd\u5e94\u9a8c\u8bc1\u4fe1\u606f\u6458\u8981
MILD_ERR_LDAPAUTH_DIGESTMD5_COULD_NOT_DECODE_RSPAUTH_172=\u5728\u5c1d\u8bd5\u5c06\u6765\u81ea\u670d\u52a1\u5668\u7684 DIGEST-MD5 \u7ed1\u5b9a\u54cd\u5e94\u7684 rspauth \u5143\u7d20\u89e3\u7801\u4e3a\u5341\u516d\u8fdb\u5236\u5b57\u7b26\u4e32\u65f6\u51fa\u73b0\u9519\u8bef: %s
MILD_ERR_LDAPAUTH_DIGESTMD5_COULD_NOT_CALCULATE_RSPAUTH_173=\u5728\u5c1d\u8bd5\u8ba1\u7b97\u9884\u671f rspauth \u5143\u7d20\u4ee5\u4fbf\u4e0e\u6765\u81ea\u670d\u52a1\u5668\u7684 DIGEST-MD5 \u54cd\u5e94\u4e2d\u5305\u542b\u7684\u503c\u8fdb\u884c\u6bd4\u8f83\u65f6\u51fa\u73b0\u9519\u8bef: %s
MILD_ERR_LDAPAUTH_DIGESTMD5_RSPAUTH_MISMATCH_174=\u6765\u81ea\u76ee\u5f55\u670d\u52a1\u5668\u7684 DIGEST-MD5 \u7ed1\u5b9a\u54cd\u5e94\u4e2d\u5305\u542b\u7684 rpsauth \u5143\u7d20\u4e0d\u540c\u4e8e\u5ba2\u6237\u7aef\u8ba1\u7b97\u7684\u9884\u671f\u503c
MILD_ERR_LDAPAUTH_DIGESTMD5_INVALID_CLOSING_QUOTE_POS_175=\u65e0\u6cd5\u89e3\u6790 DIGEST-MD5 \u54cd\u5e94\u8d28\u8be2\uff0c\u56e0\u4e3a\u5b83\u5728\u4f4d\u7f6e %d \u5904\u5305\u542b\u65e0\u6548\u5f15\u53f7
INFO_LDAPAUTH_PROPERTY_DESCRIPTION_TRACE_176=\u53ef\u4f5c\u4e3a\u7ed1\u5b9a\u8ddf\u8e2a\u4fe1\u606f\u5199\u5165\u76ee\u5f55\u670d\u52a1\u5668\u9519\u8bef\u65e5\u5fd7\u4e2d\u7684\u6587\u672c\u5b57\u7b26\u4e32
INFO_LDAPAUTH_PROPERTY_DESCRIPTION_AUTHID_177=\u7ed1\u5b9a\u7684\u9a8c\u8bc1 ID
INFO_LDAPAUTH_PROPERTY_DESCRIPTION_REALM_178=\u8981\u5728\u5176\u4e2d\u6267\u884c\u9a8c\u8bc1\u7684\u9886\u57df
INFO_LDAPAUTH_PROPERTY_DESCRIPTION_QOP_179=\u7528\u4e8e\u7ed1\u5b9a\u7684\u4fdd\u62a4\u8d28\u91cf
INFO_LDAPAUTH_PROPERTY_DESCRIPTION_DIGEST_URI_180=\u7528\u4e8e\u7ed1\u5b9a\u7684\u6458\u8981 URI
INFO_LDAPAUTH_PROPERTY_DESCRIPTION_AUTHZID_181=\u7528\u4e8e\u7ed1\u5b9a\u7684\u6388\u6743 ID
INFO_DESCRIPTION_SASL_PROPERTIES_182=SASL \u7ed1\u5b9a\u9009\u9879
INFO_LDAPAUTH_PROPERTY_DESCRIPTION_KDC_183=\u7528\u4e8e Kerberos \u9a8c\u8bc1\u7684 KDC
MILD_ERR_LDAPAUTH_KDC_SINGLE_VALUED_184="kdc" SASL \u5c5e\u6027\u4ec5\u63a5\u53d7\u5355\u4e2a\u503c
MILD_ERR_LDAPAUTH_GSSAPI_INVALID_QOP_185=\u6307\u5b9a\u7684 GSSAPI \u4fdd\u62a4\u8d28\u91cf\u6a21\u5f0f "%s" \u65e0\u6548\u3002\u5f53\u524d\u552f\u4e00\u652f\u6301\u7684 QoP \u6a21\u5f0f\u4e3a "auth"
###SEVERE_ERR_LDAPAUTH_GSSAPI_CANNOT_CREATE_JAAS_CONFIG_186=An error occurred \
### while trying to create the temporary JAAS configuration for GSSAPI \
### authentication:  %s
MILD_ERR_LDAPAUTH_GSSAPI_LOCAL_AUTHENTICATION_FAILED_187=\u5728 Kerberos \u9886\u57df\u4e2d\u5c1d\u8bd5\u6267\u884c\u672c\u5730\u9a8c\u8bc1\u65f6\u51fa\u73b0\u9519\u8bef: %s
MILD_ERR_LDAPAUTH_GSSAPI_REMOTE_AUTHENTICATION_FAILED_188=\u5728\u76ee\u5f55\u670d\u52a1\u5668\u4e2d\u5c1d\u8bd5\u6267\u884c GSSAPI \u9a8c\u8bc1\u65f6\u51fa\u73b0\u9519\u8bef: %s
###SEVERE_ERR_LDAPAUTH_NONSASL_RUN_INVOCATION_189=The \
### LDAPAuthenticationHandler.run() method was called for a non-SASL bind.  The \
### backtrace for this call is %s
###SEVERE_ERR_LDAPAUTH_UNEXPECTED_RUN_INVOCATION_190=The \
### LDAPAuthenticationHandler.run() method was called for a SASL bind with an \
### unexpected mechanism of "%s".  The backtrace for this call is %s
###SEVERE_ERR_LDAPAUTH_GSSAPI_CANNOT_CREATE_SASL_CLIENT_191=An error occurred \
### while attempting to create a SASL client to process the GSSAPI \
### authentication:  %s
###SEVERE_ERR_LDAPAUTH_GSSAPI_CANNOT_CREATE_INITIAL_CHALLENGE_192=An error \
### occurred while attempting to create the initial challenge for GSSAPI \
### authentication:  %s
MILD_ERR_LDAPAUTH_GSSAPI_CANNOT_VALIDATE_SERVER_CREDS_193=\u5728\u5c1d\u8bd5\u9a8c\u8bc1\u76ee\u5f55\u670d\u52a1\u5668\u5728 GSSAPI \u7ed1\u5b9a\u54cd\u5e94\u4e2d\u63d0\u4f9b\u7684 SASL \u51ed\u8bc1\u65f6\u51fa\u73b0\u9519\u8bef: %s
MILD_ERR_LDAPAUTH_GSSAPI_UNEXPECTED_SUCCESS_RESPONSE_194=\u76ee\u5f55\u670d\u52a1\u5668\u610f\u5916\u5730\u5411\u5ba2\u6237\u7aef\u8fd4\u56de\u6210\u529f\u54cd\u5e94\uff0c\u4f46\u662f\u5ba2\u6237\u7aef\u5e76\u4e0d\u8ba4\u4e3a GSSAPI \u534f\u5546\u5df2\u5b8c\u6210
MILD_ERR_LDAPAUTH_GSSAPI_BIND_FAILED_195=GSSAPI \u7ed1\u5b9a\u5c1d\u8bd5\u5931\u8d25
###SEVERE_ERR_LDAPAUTH_NONSASL_CALLBACK_INVOCATION_196=The \
### LDAPAuthenticationHandler.handle() method was called for a non-SASL bind. \
### The backtrace for this call is %s
###SEVERE_ERR_LDAPAUTH_UNEXPECTED_GSSAPI_CALLBACK_197=The \
### LDAPAuthenticationHandler.handle() method was called during a GSSAPI bind \
### attempt with an unexpected callback type of %s
###SEVERE_ERR_LDAPAUTH_UNEXPECTED_CALLBACK_INVOCATION_198=The \
### LDAPAuthenticationHandler.handle() method was called for an unexpected SASL \
### mechanism of %s.  The backtrace for this call is %s
INFO_LDAPAUTH_PASSWORD_PROMPT_199=\u7528\u6237 '%s' \u7684\u5bc6\u7801:
INFO_DESCRIPTION_VERSION_200=LDAP \u534f\u8bae\u7248\u672c\u53f7
MILD_ERR_DESCRIPTION_INVALID_VERSION_201=\u65e0\u6548\u7684 LDAP \u7248\u672c\u53f7 '%s'\u3002\u5141\u8bb8\u7684\u503c\u4e3a 2 \u548c 3
###SEVERE_ERR_LDAPAUTH_CANNOT_SEND_WHOAMI_REQUEST_202=Cannot send the 'Who Am \
### I?' request to the Directory Server:  %s
###SEVERE_ERR_LDAPAUTH_CANNOT_READ_WHOAMI_RESPONSE_203=Cannot read the 'Who Am \
### I?' response from the Directory Server:  %s
MILD_ERR_LDAPAUTH_WHOAMI_FAILED_204=\u201c\u6211\u662f\u8c01\uff1f\u201d\u8bf7\u6c42\u88ab\u76ee\u5f55\u670d\u52a1\u5668\u62d2\u7edd\u4e86
###SEVERE_ERR_SEARCH_INVALID_SEARCH_SCOPE_205=Invalid scope '%s' specified for \
### the search request
###SEVERE_ERR_SEARCH_NO_FILTERS_206=No filters specified for the search request
INFO_VERIFYINDEX_DESCRIPTION_BASE_DN_207=\u652f\u6301\u7f16\u5236\u7d22\u5f15\u7684\u540e\u7aef\u7684\u57fa DN\u3002\u5bf9\u7ed9\u5b9a\u57fa DN \u8303\u56f4\u5185\u7684\u7d22\u5f15\u6267\u884c\u9a8c\u8bc1
INFO_VERIFYINDEX_DESCRIPTION_INDEX_NAME_208=\u8981\u9a8c\u8bc1\u7684\u7d22\u5f15\u540d\u79f0\u3002\u5bf9\u4e8e\u5c5e\u6027\u7d22\u5f15\uff0c\u8fd9\u53ea\u662f\u4e00\u4e2a\u5c5e\u6027\u540d\u79f0\u3002\u53ef\u4ee5\u4e3a\u591a\u4e2a\u7d22\u5f15\u9a8c\u8bc1\u5b8c\u6574\u6027\uff1b\u5982\u679c\u672a\u6307\u5b9a\u7d22\u5f15\uff0c\u5219\u9a8c\u8bc1\u6240\u6709\u7d22\u5f15\u3002\u5982\u679c\u6bcf\u4e2a\u7d22\u5f15\u503c\u5f15\u7528\u4e86\u6240\u6709\u5305\u542b\u8be5\u503c\u7684\u6761\u76ee\uff0c\u5219\u7d22\u5f15\u662f\u5b8c\u6574\u7684
INFO_VERIFYINDEX_DESCRIPTION_VERIFY_CLEAN_209=\u6307\u5b9a\u5e94\u9a8c\u8bc1\u5355\u4e2a\u7d22\u5f15\u4ee5\u786e\u4fdd\u5176\u6e05\u6670\u6027\u3002\u5982\u679c\u6bcf\u4e2a\u7d22\u5f15\u503c\u4ec5\u5f15\u7528\u4e86\u5305\u542b\u8be5\u503c\u7684\u6761\u76ee\uff0c\u5219\u7d22\u5f15\u662f\u6e05\u6670\u7684\u3002\u6bcf\u6b21\u53ea\u80fd\u6309\u8fd9\u79cd\u65b9\u5f0f\u9a8c\u8bc1\u4e00\u4e2a\u7d22\u5f15
###SEVERE_ERR_VERIFYINDEX_ERROR_DURING_VERIFY_210=An error occurred while \
### attempting to perform index verification:  %s
###SEVERE_ERR_VERIFYINDEX_VERIFY_CLEAN_REQUIRES_SINGLE_INDEX_211=Only one index \
### at a time may be verified for cleanliness
###SEVERE_ERR_BACKEND_NO_INDEXING_SUPPORT_212=The backend does not support \
### indexing
###SEVERE_ERR_LDIFEXPORT_CANNOT_EXPORT_BACKEND_213=The Directory Server backend \
### with backend ID "%s" does not provide a mechanism for performing LDIF exports
###SEVERE_ERR_LDIFIMPORT_CANNOT_IMPORT_214=The Directory Server backend with \
### backend ID %s does not provide a mechanism for performing LDIF imports
INFO_DESCRIPTION_DONT_WRAP_215=\u4e0d\u5bf9\u8f83\u957f\u7684\u884c\u8fdb\u884c\u6362\u884c
INFO_LDIFIMPORT_DESCRIPTION_INCLUDE_BRANCH_216=\u8981\u5305\u542b\u5728 LDIF \u5bfc\u5165\u4e2d\u7684\u5206\u652f\u7684\u57fa DN
###SEVERE_ERR_CANNOT_DETERMINE_BACKEND_ID_217=Cannot determine the backend ID \
### for the backend defined in configuration entry %s:  %s
###SEVERE_ERR_LDIFIMPORT_CANNOT_DECODE_INCLUDE_BASE_218=Unable to decode include \
### branch string "%s" as a valid distinguished name:  %s
###SEVERE_ERR_LDIFIMPORT_INVALID_INCLUDE_BASE_219=Provided include base DN "%s" \
### is not handled by the backend with backend ID %s
###SEVERE_ERR_MULTIPLE_BACKENDS_FOR_BASE_230=Multiple Directory Server backends \
### are configured to support base DN "%s"
###SEVERE_ERR_NO_BACKENDS_FOR_BASE_231=None of the Directory Server backends are \
### configured to support the requested base DN "%s"
INFO_LDIFEXPORT_DESCRIPTION_INCLUDE_BRANCH_240=\u8981\u5305\u542b\u5728 LDIF \u5bfc\u51fa\u4e2d\u7684\u5206\u652f\u7684\u57fa DN
###SEVERE_ERR_LDIFEXPORT_CANNOT_DECODE_INCLUDE_BASE_241=Unable to decode include \
### branch string "%s" as a valid distinguished name:  %s
###SEVERE_ERR_LDIFEXPORT_INVALID_INCLUDE_BASE_242=Provided include base DN "%s" \
### is not handled by the backend with backend ID %s
INFO_BACKUPDB_DESCRIPTION_BACKEND_ID_245=\u8981\u5f52\u6863\u7684\u540e\u7aef\u7684 ID
INFO_BACKUPDB_DESCRIPTION_BACKUP_ID_246=\u5c06\u63d0\u4f9b\u7684\u6807\u8bc6\u7b26\u7528\u4e8e\u5907\u4efd
INFO_BACKUPDB_DESCRIPTION_BACKUP_DIR_247=\u5907\u4efd\u6587\u4ef6\u7684\u76ee\u6807\u76ee\u5f55\u7684\u8def\u5f84
INFO_BACKUPDB_DESCRIPTION_INCREMENTAL_248=\u6267\u884c\u589e\u91cf\u5907\u4efd\uff0c\u800c\u4e0d\u662f\u5b8c\u6574\u5907\u4efd
INFO_BACKUPDB_DESCRIPTION_COMPRESS_249=\u538b\u7f29\u5907\u4efd\u5185\u5bb9
INFO_BACKUPDB_DESCRIPTION_ENCRYPT_250=\u5bf9\u5907\u4efd\u5185\u5bb9\u52a0\u5bc6
INFO_BACKUPDB_DESCRIPTION_HASH_251=\u751f\u6210\u5907\u4efd\u5185\u5bb9\u6563\u5217
INFO_BACKUPDB_DESCRIPTION_SIGN_HASH_252=\u5bf9\u5907\u4efd\u5185\u5bb9\u6563\u5217\u8fdb\u884c\u7b7e\u540d
###SEVERE_ERR_BACKUPDB_MULTIPLE_BACKENDS_FOR_ID_260=Multiple Directory Server \
### backends are configured with the requested backend ID "%s"
###SEVERE_ERR_BACKUPDB_NO_BACKENDS_FOR_ID_261=None of the Directory Server \
### backends are configured with the requested backend ID "%s"
###SEVERE_ERR_BACKUPDB_CONFIG_ENTRY_MISMATCH_262=The configuration for the \
### backend with backend ID %s is held in entry "%s", but other backups in the \
### target backup directory %s were generated from a backend whose configuration \
### was held in configuration entry "%s"
###SEVERE_ERR_BACKUPDB_INVALID_BACKUP_DIR_263=An error occurred while attempting \
### to use the specified path "%s" as the target directory for the backup:  %s
###SEVERE_ERR_BACKUPDB_CANNOT_BACKUP_264=The target backend %s cannot be backed \
### up using the requested configuration:  %s
###SEVERE_ERR_BACKUPDB_ERROR_DURING_BACKUP_265=An error occurred while \
### attempting to back up backend %s with the requested configuration:  %s
INFO_BACKUPDB_DESCRIPTION_BACKUP_ALL_274=\u5907\u4efd\u670d\u52a1\u5668\u4e2d\u7684\u6240\u6709\u540e\u7aef
###SEVERE_ERR_BACKUPDB_CANNOT_MIX_BACKUP_ALL_AND_BACKEND_ID_275=The %s and %s \
### arguments may not be used together.  Exactly one of them must be provided
###SEVERE_ERR_BACKUPDB_NEED_BACKUP_ALL_OR_BACKEND_ID_276=Neither the %s argument \
### nor the %s argument was provided.  Exactly one of them is required
###SEVERE_ERR_BACKUPDB_CANNOT_CREATE_BACKUP_DIR_277=An error occurred while \
### attempting to create the backup directory %s:  %s
###SEVERE_WARN_BACKUPDB_BACKUP_NOT_SUPPORTED_278=Backend ID %s was included in \
### the set of backends to archive, but this backend does not provide support for \
### a backup mechanism.  It will be skipped
###SEVERE_WARN_BACKUPDB_NO_BACKENDS_TO_ARCHIVE_279=None of the target backends \
### provide a backup mechanism.  The backup operation has been aborted
NOTICE_BACKUPDB_STARTING_BACKUP_280=\u6b63\u5728\u4e3a\u540e\u7aef %s \u542f\u52a8\u5907\u4efd
###SEVERE_ERR_BACKUPDB_CANNOT_PARSE_BACKUP_DESCRIPTOR_281=An error occurred \
### while attempting to parse the backup descriptor file %s:  %s
NOTICE_BACKUPDB_COMPLETED_WITH_ERRORS_282=\u5df2\u5b8c\u6210\u5907\u4efd\u8fc7\u7a0b\uff0c\u4f46\u51fa\u73b0\u4e00\u4e2a\u6216\u591a\u4e2a\u9519\u8bef
NOTICE_BACKUPDB_COMPLETED_SUCCESSFULLY_283=\u5df2\u6210\u529f\u5b8c\u6210\u5907\u4efd\u8fc7\u7a0b
###SEVERE_ERR_CANNOT_INITIALIZE_CRYPTO_MANAGER_284=An error occurred while \
### attempting to initialize the crypto manager:  %s
INFO_BACKUPDB_DESCRIPTION_INCREMENTAL_BASE_ID_287=\u589e\u91cf\u5907\u4efd\u7684\u6e90\u5f52\u6863\u6587\u4ef6\u7684\u5907\u4efd ID
###SEVERE_ERR_BACKUPDB_INCREMENTAL_BASE_REQUIRES_INCREMENTAL_288=The use of the \
### %s argument requires that the %s argument is also provided
INFO_RESTOREDB_DESCRIPTION_BACKEND_ID_291=\u8981\u6062\u590d\u7684\u540e\u7aef\u7684 ID
INFO_RESTOREDB_DESCRIPTION_BACKUP_ID_292=\u8981\u6062\u590d\u7684\u5907\u4efd\u7684 ID
INFO_RESTOREDB_DESCRIPTION_BACKUP_DIR_293=\u5305\u542b\u5907\u4efd\u6587\u4ef6\u7684\u76ee\u5f55\u7684\u8def\u5f84
INFO_RESTOREDB_DESCRIPTION_LIST_BACKUPS_294=\u5217\u51fa\u5907\u4efd\u76ee\u5f55\u4e2d\u7684\u53ef\u7528\u5907\u4efd
INFO_RESTOREDB_DESCRIPTION_VERIFY_ONLY_295=\u9a8c\u8bc1\u5907\u4efd\u5185\u5bb9\uff0c\u4f46\u4e0d\u8fdb\u884c\u6062\u590d
###SEVERE_ERR_RESTOREDB_CANNOT_READ_BACKUP_DIRECTORY_304=An error occurred while \
### attempting to examine the set of backups contained in backup directory %s: \
### %s
INFO_RESTOREDB_LIST_BACKUP_ID_305=\u5907\u4efd ID:          %s
INFO_RESTOREDB_LIST_BACKUP_DATE_306=\u5907\u4efd\u65e5\u671f:        %s
INFO_RESTOREDB_LIST_INCREMENTAL_307=\u589e\u91cf:     %s
INFO_RESTOREDB_LIST_COMPRESSED_308=\u5df2\u538b\u7f29:      %s
INFO_RESTOREDB_LIST_ENCRYPTED_309=\u5df2\u52a0\u5bc6:       %s
INFO_RESTOREDB_LIST_HASHED_310=\u5177\u6709\u672a\u7b7e\u540d\u7684\u6563\u5217:  %s
INFO_RESTOREDB_LIST_SIGNED_311=\u5177\u6709\u7b7e\u540d\u7684\u6563\u5217:    %s
INFO_RESTOREDB_LIST_DEPENDENCIES_312=\u4f9d\u8d56\u9879:     %s
###SEVERE_ERR_RESTOREDB_INVALID_BACKUP_ID_313=The requested backup ID %s does \
### not exist in %s
###SEVERE_ERR_RESTOREDB_NO_BACKUPS_IN_DIRECTORY_314=There are no Directory \
### Server backups contained in %s
###SEVERE_ERR_RESTOREDB_NO_BACKENDS_FOR_DN_315=The backups contained in \
### directory %s were taken from a Directory Server backend defined in \
### configuration entry %s but no such backend is available
###SEVERE_ERR_RESTOREDB_CANNOT_RESTORE_316=The Directory Server backend \
### configured with backend ID %s does not provide a mechanism for restoring \
### backups
###SEVERE_ERR_RESTOREDB_ERROR_DURING_BACKUP_317=An unexpected error occurred \
### while attempting to restore backup %s from %s:  %s
###SEVERE_ERR_RESTOREDB_ENCRYPT_OR_SIGN_REQUIRES_ONLINE_318=Restoring an \
### encrypted or signed backup requires a connection to an online server
###SEVERE_ERR_BACKUPDB_ENCRYPT_OR_SIGN_REQUIRES_ONLINE_325=The use of the \
### %s argument or the %s argument requires a connection to an online server \
### instance
###SEVERE_ERR_BACKUPDB_SIGN_REQUIRES_HASH_326=The use of the %s argument \
### requires that the %s argument is also provided
INFO_DESCRIPTION_NOOP_327=\u663e\u793a\u5c06\u8981\u6267\u884c\u7684\u64cd\u4f5c\uff0c\u4f46\u4e0d\u6267\u884c\u4efb\u4f55\u64cd\u4f5c
###SEVERE_ERR_BACKUPDB_CANNOT_LOCK_BACKEND_328=An error occurred while \
### attempting to acquire a shared lock for backend %s:  %s.  This generally \
### means that some other process has exclusive access to this backend (e.g., a \
### restore or an LDIF import).  This backend will not be archived
###SEVERE_WARN_BACKUPDB_CANNOT_UNLOCK_BACKEND_329=An error occurred while \
### attempting to release the shared lock for backend %s:  %s.  This lock should \
### automatically be cleared when the backup process exits, so no further action \
### should be required
###SEVERE_ERR_RESTOREDB_CANNOT_LOCK_BACKEND_330=An error occurred while \
### attempting to acquire an exclusive lock for backend %s:  %s.  This generally \
### means some other process is still using this backend (e.g., it is in use by \
### the Directory Server or a backup or LDIF export is in progress).  The restore \
### cannot continue
###SEVERE_WARN_RESTOREDB_CANNOT_UNLOCK_BACKEND_331=An error occurred while \
### attempting to release the exclusive lock for backend %s:  %s.  This lock \
### should automatically be cleared when the restore process exits, so no further \
### action should be required
###SEVERE_ERR_LDIFIMPORT_CANNOT_LOCK_BACKEND_332=An error occurred while \
### attempting to acquire an exclusive lock for backend %s:  %s.  This generally \
### means some other process is still using this backend (e.g., it is in use by \
### the Directory Server or a backup or LDIF export is in progress).  The LDIF \
### import cannot continue
###SEVERE_WARN_LDIFIMPORT_CANNOT_UNLOCK_BACKEND_333=An error occurred while \
### attempting to release the exclusive lock for backend %s:  %s.  This lock \
### should automatically be cleared when the import process exits, so no further \
### action should be required
###SEVERE_ERR_LDIFEXPORT_CANNOT_LOCK_BACKEND_334=An error occurred while \
### attempting to acquire a shared lock for backend %s:  %s.  This generally \
### means that some other process has an exclusive lock on this backend (e.g., an \
### LDIF import or a restore).  The LDIF export cannot continue
###SEVERE_WARN_LDIFEXPORT_CANNOT_UNLOCK_BACKEND_335=An error occurred while \
### attempting to release the shared lock for backend %s:  %s.  This lock should \
### automatically be cleared when the export process exits, so no further action \
### should be required
###SEVERE_ERR_VERIFYINDEX_CANNOT_LOCK_BACKEND_336=An error occurred while \
### attempting to acquire a shared lock for backend %s:  %s.  This generally \
### means that some other process has an exclusive lock on this backend (e.g., an \
### LDIF import or a restore).  The index verification cannot continue
###SEVERE_WARN_VERIFYINDEX_CANNOT_UNLOCK_BACKEND_337=An error occurred while \
### attempting to release the shared lock for backend %s:  %s.  This lock should \
### automatically be cleared when the verification process exits, so no further \
### action should be required
INFO_DESCRIPTION_TYPES_ONLY_338=\u4ec5\u68c0\u7d22\u5c5e\u6027\u540d\u79f0\uff0c\u800c\u4e0d\u68c0\u7d22\u5c5e\u6027\u503c
INFO_LDIFIMPORT_DESCRIPTION_SKIP_SCHEMA_VALIDATION_339=\u5728 LDIF \u5bfc\u5165\u671f\u95f4\u8df3\u8fc7\u6a21\u5f0f\u9a8c\u8bc1
###SEVERE_ERR_LDIFEXPORT_CANNOT_INITIALIZE_PLUGINS_340=An error occurred while \
### attempting to initialize the LDIF export plugins:  %s
###SEVERE_ERR_LDIFIMPORT_CANNOT_INITIALIZE_PLUGINS_341=An error occurred while \
### attempting to initialize the LDIF import plugins:  %s
INFO_DESCRIPTION_ASSERTION_FILTER_342=\u5c06 LDAP \u58f0\u660e\u63a7\u5236\u7528\u4e8e\u63d0\u4f9b\u7684\u8fc7\u6ee4\u5668
MILD_ERR_LDAP_ASSERTION_INVALID_FILTER_343=\u4e3a LDAP \u58f0\u660e\u63a7\u5236\u63d0\u4f9b\u7684\u641c\u7d22\u8fc7\u6ee4\u5668\u65e0\u6548: %s
INFO_DESCRIPTION_PREREAD_ATTRS_346=\u4f7f\u7528 LDAP ReadEntry \u9884\u8bfb\u53d6\u63a7\u5236
INFO_DESCRIPTION_POSTREAD_ATTRS_347=\u4f7f\u7528 LDAP ReadEntry \u540e\u8bfb\u53d6\u63a7\u5236
MILD_ERR_LDAPMODIFY_PREREAD_NO_VALUE_348=\u9884\u8bfb\u53d6\u54cd\u5e94\u63a7\u5236\u4e0d\u5305\u542b\u503c
MILD_ERR_LDAPMODIFY_PREREAD_CANNOT_DECODE_VALUE_349=\u5728\u5c1d\u8bd5\u5bf9\u9884\u8bfb\u53d6\u54cd\u5e94\u63a7\u5236\u503c\u4e2d\u5305\u542b\u7684\u6761\u76ee\u8fdb\u884c\u89e3\u7801\u65f6\u51fa\u73b0\u9519\u8bef: %s
INFO_LDAPMODIFY_PREREAD_ENTRY_350=\u64cd\u4f5c\u4e4b\u524d\u7684\u76ee\u6807\u6761\u76ee:
MILD_ERR_LDAPMODIFY_POSTREAD_NO_VALUE_351=\u540e\u8bfb\u53d6\u54cd\u5e94\u63a7\u5236\u4e0d\u5305\u542b\u503c
MILD_ERR_LDAPMODIFY_POSTREAD_CANNOT_DECODE_VALUE_352=\u5728\u5c1d\u8bd5\u5bf9\u540e\u8bfb\u53d6\u54cd\u5e94\u63a7\u5236\u503c\u4e2d\u5305\u542b\u7684\u6761\u76ee\u8fdb\u884c\u89e3\u7801\u65f6\u51fa\u73b0\u9519\u8bef: %s
INFO_LDAPMODIFY_POSTREAD_ENTRY_353=\u64cd\u4f5c\u4e4b\u540e\u7684\u76ee\u6807\u6761\u76ee:
INFO_DESCRIPTION_PROXY_AUTHZID_354=\u5c06\u4ee3\u7406\u6388\u6743\u63a7\u5236\u7528\u4e8e\u7ed9\u5b9a\u6388\u6743 ID
INFO_DESCRIPTION_PSEARCH_INFO_355=\u4f7f\u7528\u6301\u4e45\u6027\u641c\u7d22\u63a7\u5236
MILD_ERR_PSEARCH_MISSING_DESCRIPTOR_356=\u4f7f\u7528\u6301\u4e45\u6027\u641c\u7d22\u63a7\u5236\u7684\u8bf7\u6c42\u4e0d\u5305\u542b\u6307\u793a\u8be5\u63a7\u5236\u4f7f\u7528\u7684\u9009\u9879\u7684\u63cf\u8ff0\u7b26
MILD_ERR_PSEARCH_DOESNT_START_WITH_PS_357=\u6301\u4e45\u6027\u641c\u7d22\u63cf\u8ff0\u7b26 %s \u6ca1\u6709\u4ee5\u5fc5\u9700\u7684 'ps' \u5b57\u7b26\u4e32\u5f00\u5934
MILD_ERR_PSEARCH_INVALID_CHANGE_TYPE_358=\u63d0\u4f9b\u7684\u66f4\u6539\u7c7b\u578b\u503c %s \u65e0\u6548\u3002\u53ef\u8bc6\u522b\u7684\u66f4\u6539\u7c7b\u578b\u4e3a add\u3001delete\u3001modify\u3001modifydn \u548c any
MILD_ERR_PSEARCH_INVALID_CHANGESONLY_359=\u63d0\u4f9b\u7684 changesOnly \u503c %s \u65e0\u6548\u3002\u5141\u8bb8\u7684\u503c\u4e3a 1\uff08\u4ec5\u8fd4\u56de\u5728\u5f00\u59cb\u641c\u7d22\u540e\u53d1\u751f\u66f4\u6539\u7684\u5339\u914d\u6761\u76ee\uff09\u6216 0\uff08\u8fd8\u5305\u62ec\u4e0e\u641c\u7d22\u6761\u4ef6\u5339\u914d\u7684\u73b0\u6709\u6761\u76ee\uff09
MILD_ERR_PSEARCH_INVALID_RETURN_ECS_360=\u63d0\u4f9b\u7684 returnECs \u503c %s \u65e0\u6548\u3002\u5141\u8bb8\u7684\u503c\u4e3a 1\uff08\u8bf7\u6c42\u5728\u66f4\u65b0\u7684\u6761\u76ee\u4e2d\u5305\u542b\u6761\u76ee\u66f4\u6539\u901a\u77e5\u63a7\u5236\uff09\u6216 0\uff08\u4ece\u5339\u914d\u6761\u76ee\u4e2d\u6392\u9664\u8be5\u63a7\u5236\uff09
INFO_DESCRIPTION_REPORT_AUTHZID_361=\u4f7f\u7528\u6388\u6743\u6807\u8bc6\u63a7\u5236
INFO_BIND_AUTHZID_RETURNED_362=# \u4e0e\u6388\u6743 ID %s \u7ed1\u5b9a\u5728\u4e00\u8d77
INFO_SEARCH_DESCRIPTION_FILENAME_363=\u5305\u542b\u641c\u7d22\u8fc7\u6ee4\u5668\u5b57\u7b26\u4e32\u5217\u8868\u7684\u6587\u4ef6
INFO_DESCRIPTION_MATCHED_VALUES_FILTER_364=\u5c06 LDAP \u5339\u914d\u503c\u63a7\u5236\u7528\u4e8e\u63d0\u4f9b\u7684\u8fc7\u6ee4\u5668
MILD_ERR_LDAP_MATCHEDVALUES_INVALID_FILTER_365=\u63d0\u4f9b\u7684\u5339\u914d\u503c\u8fc7\u6ee4\u5668\u65e0\u6548: %s
###FATAL_ERR_LDIF_FILE_CANNOT_OPEN_FOR_READ_366=An error occurred while \
### attempting to open the LDIF file %s for reading:  %s
###FATAL_ERR_LDIF_FILE_READ_ERROR_367=An error occurred while attempting to read \
### the contents of LDIF file %s:  %s
###SEVERE_ERR_LDIF_FILE_INVALID_LDIF_ENTRY_368=Error at or near line %d in LDIF \
### file %s:  %s
INFO_ENCPW_DESCRIPTION_AUTHPW_369=\u4f7f\u7528\u9a8c\u8bc1\u5bc6\u7801\u8bed\u6cd5\uff0c\u800c\u4e0d\u662f\u7528\u6237\u5bc6\u7801\u8bed\u6cd5
###SEVERE_ERR_ENCPW_NO_AUTH_STORAGE_SCHEMES_370=No authentication password \
### storage schemes have been configured for use in the Directory Server
###SEVERE_ERR_ENCPW_NO_SUCH_AUTH_SCHEME_371=Authentication password storage \
### scheme "%s" is not configured for use in the Directory Server
###SEVERE_ERR_ENCPW_INVALID_ENCODED_AUTHPW_372=The provided password is not a \
### valid encoded authentication password value:  %s
###SEVERE_ERR_LDIFIMPORT_CANNOT_INITIALIZE_PWPOLICY_373=An error occurred while \
### attempting to initialize the password policy components:  %s
INFO_STOPDS_DESCRIPTION_HOST_374=\u76ee\u5f55\u670d\u52a1\u5668\u4e3b\u673a\u540d\u6216 IP \u5730\u5740
INFO_STOPDS_DESCRIPTION_PORT_375=\u76ee\u5f55\u670d\u52a1\u5668\u7ba1\u7406\u7aef\u53e3\u53f7
INFO_STOPDS_DESCRIPTION_USESSL_376=\u4f7f\u7528 SSL \u786e\u4fdd\u4e0e\u670d\u52a1\u5668\u8fdb\u884c\u5b89\u5168\u901a\u4fe1
INFO_STOPDS_DESCRIPTION_USESTARTTLS_377=\u4f7f\u7528 StartTLS \u786e\u4fdd\u4e0e\u670d\u52a1\u5668\u8fdb\u884c\u5b89\u5168\u901a\u4fe1
INFO_STOPDS_DESCRIPTION_BINDDN_378=\u7528\u4e8e\u7ed1\u5b9a\u5230\u670d\u52a1\u5668\u7684 DN
INFO_STOPDS_DESCRIPTION_BINDPW_379=\u7528\u4e8e\u7ed1\u5b9a\u5230\u670d\u52a1\u5668\u7684\u5bc6\u7801
INFO_STOPDS_DESCRIPTION_BINDPWFILE_380=\u7ed1\u5b9a\u5bc6\u7801\u6587\u4ef6
INFO_STOPDS_DESCRIPTION_SASLOPTIONS_381=SASL \u7ed1\u5b9a\u9009\u9879
INFO_STOPDS_DESCRIPTION_PROXYAUTHZID_382=\u5c06\u4ee3\u7406\u6388\u6743\u63a7\u5236\u7528\u4e8e\u7ed9\u5b9a\u6388\u6743 ID
INFO_STOPDS_DESCRIPTION_STOP_REASON_383=\u6b63\u5728\u505c\u6b62\u6216\u91cd\u65b0\u542f\u52a8\u670d\u52a1\u5668\u7684\u539f\u56e0
INFO_STOPDS_DESCRIPTION_STOP_TIME_384=\u6307\u793a\u5c06\u5173\u95ed\u64cd\u4f5c\u4f5c\u4e3a\u670d\u52a1\u5668\u4efb\u52a1\u5f00\u59cb\u6267\u884c\u7684\u65e5\u671f/\u65f6\u95f4\uff0c\u4ee5\u683c\u5f0f 'YYYYMMDDhhmmss' \u8868\u793a\u3002\u5982\u679c\u503c\u4e3a '0'\uff0c\u5219\u4f1a\u8ba1\u5212\u7acb\u5373\u6267\u884c\u5173\u95ed\u3002\u5982\u679c\u6307\u5b9a\u6b64\u9009\u9879\uff0c\u5219\u4f1a\u8ba1\u5212\u5728\u6307\u5b9a\u7684\u65f6\u95f4\u5f00\u59cb\u6267\u884c\u64cd\u4f5c\uff0c\u968f\u540e\u6b64\u5b9e\u7528\u7a0b\u5e8f\u5c06\u7acb\u5373\u9000\u51fa
INFO_STOPDS_DESCRIPTION_TRUST_ALL_385=\u4fe1\u4efb\u6240\u6709\u670d\u52a1\u5668 SSL \u8bc1\u4e66
INFO_STOPDS_DESCRIPTION_KSFILE_386=\u8bc1\u4e66\u5bc6\u94a5\u5e93\u8def\u5f84
INFO_STOPDS_DESCRIPTION_KSPW_387=\u8bc1\u4e66\u5bc6\u94a5\u5e93 PIN
INFO_STOPDS_DESCRIPTION_KSPWFILE_388=\u8bc1\u4e66\u5bc6\u94a5\u5e93 PIN \u6587\u4ef6
INFO_STOPDS_DESCRIPTION_TSFILE_389=\u8bc1\u4e66\u4fe1\u4efb\u5e93\u8def\u5f84
INFO_STOPDS_DESCRIPTION_TSPW_390=\u8bc1\u4e66\u4fe1\u4efb\u5e93 PIN
INFO_STOPDS_DESCRIPTION_TSPWFILE_391=\u8bc1\u4e66\u4fe1\u4efb\u5e93 PIN \u6587\u4ef6
INFO_STOPDS_DESCRIPTION_SHOWUSAGE_392=\u663e\u793a\u6b64\u7528\u6cd5\u4fe1\u606f
###SEVERE_ERR_STOPDS_MUTUALLY_EXCLUSIVE_ARGUMENTS_395=ERROR:  You may not \
### provide both the %s and the %s arguments
###SEVERE_ERR_STOPDS_CANNOT_DECODE_STOP_TIME_396=ERROR:  Unable to decode the \
### provided stop time.  It should be in the form YYYYMMDDhhmmssZ for UTC time or \
### YYYYMMDDhhmmss for local time
###SEVERE_ERR_STOPDS_CANNOT_INITIALIZE_SSL_397=ERROR:  Unable to perform SSL \
### initialization:  %s
###SEVERE_ERR_STOPDS_CANNOT_PARSE_SASL_OPTION_398=ERROR:  The provided SASL \
### option string "%s" could not be parsed in the form "name=value"
###SEVERE_ERR_STOPDS_NO_SASL_MECHANISM_399=ERROR:  One or more SASL options were \
### provided, but none of them were the "mech" option to specify which SASL \
### mechanism should be used
###SEVERE_ERR_STOPDS_CANNOT_DETERMINE_PORT_400=ERROR:  Cannot parse the value of \
### the %s argument as an integer value between 1 and 65535:  %s
###SEVERE_ERR_STOPDS_CANNOT_CONNECT_401=ERROR:  Cannot establish a connection to \
### the Directory Server %s.  Verify that the server is running and that \
### the provided credentials are valid.  Details:  %s
###SEVERE_ERR_STOPDS_UNEXPECTED_CONNECTION_CLOSURE_402=NOTICE:  The connection \
### to the Directory Server was closed while waiting for a response to the \
### shutdown request.  This likely means that the server has started the shutdown \
### process
###SEVERE_ERR_STOPDS_IO_ERROR_403=ERROR:  An I/O error occurred while attempting \
### to communicate with the Directory Server:  %s
###SEVERE_ERR_STOPDS_DECODE_ERROR_404=ERROR:  An error occurred while trying to \
### decode the response from the server:  %s
###SEVERE_ERR_STOPDS_INVALID_RESPONSE_TYPE_405=ERROR:  Expected an add response \
### message but got a %s message instead
INFO_BIND_PASSWORD_EXPIRED_406=# \u5bc6\u7801\u5df2\u8fc7\u671f
INFO_BIND_PASSWORD_EXPIRING_407=# \u5bc6\u7801\u5c06\u5728 %s \u4e4b\u540e\u8fc7\u671f
INFO_BIND_ACCOUNT_LOCKED_408=# \u5e10\u6237\u5df2\u9501\u5b9a
INFO_BIND_MUST_CHANGE_PASSWORD_409=# \u5fc5\u987b\u5148\u66f4\u6539\u5bc6\u7801\uff0c\u7136\u540e\u624d\u5141\u8bb8\u6267\u884c\u4efb\u4f55\u5176\u4ed6\u64cd\u4f5c
INFO_BIND_GRACE_LOGINS_REMAINING_410=# \u8fd8\u5269 %d \u6b21\u8fc7\u6e21\u767b\u5f55
INFO_DESCRIPTION_USE_PWP_CONTROL_411=\u4f7f\u7528\u5bc6\u7801\u7b56\u7565\u8bf7\u6c42\u63a7\u5236
INFO_STOPDS_DESCRIPTION_RESTART_412=\u5c1d\u8bd5\u5728\u670d\u52a1\u5668\u505c\u6b62\u540e\u81ea\u52a8\u91cd\u65b0\u542f\u52a8\u670d\u52a1\u5668
INFO_COMPARE_DESCRIPTION_FILENAME_413=\u5305\u542b\u8981\u6bd4\u8f83\u7684\u6761\u76ee DN \u7684\u6587\u4ef6
INFO_LDIFSEARCH_DESCRIPTION_LDIF_FILE_414=\u5305\u542b\u8981\u641c\u7d22\u7684\u6570\u636e\u7684 LDIF \u6587\u4ef6\u3002\u53ef\u901a\u8fc7\u591a\u6b21\u63d0\u4f9b\u8be5\u9009\u9879\u6765\u6307\u5b9a\u591a\u4e2a\u6587\u4ef6\u3002\u5982\u679c\u672a\u63d0\u4f9b\u4efb\u4f55\u6587\u4ef6\uff0c\u5219\u4f1a\u4ece\u6807\u51c6\u8f93\u5165\u4e2d\u8bfb\u53d6\u6570\u636e
INFO_LDIFSEARCH_DESCRIPTION_BASEDN_415=\u641c\u7d22\u7684\u57fa DN\u3002\u53ef\u901a\u8fc7\u591a\u6b21\u63d0\u4f9b\u8be5\u9009\u9879\u6765\u6307\u5b9a\u591a\u4e2a\u57fa DN\u3002\u5982\u679c\u672a\u63d0\u4f9b\u4efb\u4f55\u57fa DN\uff0c\u5219\u4f1a\u4f7f\u7528\u6839 DSE
INFO_LDIFSEARCH_DESCRIPTION_SCOPE_416=\u641c\u7d22\u8303\u56f4\u3002\u5b83\u5fc5\u987b\u4e3a 'base'\u3001'one'\u3001'sub' \u6216 'subordinate' \u4e4b\u4e00\u3002\u5982\u679c\u672a\u63d0\u4f9b\u8be5\u8303\u56f4\uff0c\u5219\u4f1a\u4f7f\u7528 'sub'
INFO_LDIFSEARCH_DESCRIPTION_FILTER_FILE_419=\u5305\u542b\u8981\u4f7f\u7528\u7684\u641c\u7d22\u8fc7\u6ee4\u5668\u7684\u6587\u4ef6\u7684\u8def\u5f84\u3002\u5982\u679c\u672a\u63d0\u4f9b\u8be5\u8def\u5f84\uff0c\u5219\u5fc5\u987b\u5728\u547d\u4ee4\u884c\u4e2d\u7684\u6240\u6709\u914d\u7f6e\u9009\u9879\u540e\u9762\u63d0\u4f9b\u8fc7\u6ee4\u5668
INFO_LDIFSEARCH_DESCRIPTION_OUTPUT_FILE_420=\u5e94\u5728\u5176\u4e2d\u5199\u5165\u5339\u914d\u6761\u76ee\u7684\u8f93\u51fa\u6587\u4ef6\u7684\u8def\u5f84\u3002\u5982\u679c\u672a\u63d0\u4f9b\u8be5\u8def\u5f84\uff0c\u5219\u4f1a\u5c06\u6570\u636e\u5199\u5165\u6807\u51c6\u8f93\u51fa\u4e2d
INFO_LDIFSEARCH_DESCRIPTION_OVERWRITE_EXISTING_421=\u5e94\u8986\u76d6\u4efb\u4f55\u73b0\u6709\u8f93\u51fa\u6587\u4ef6\uff0c\u800c\u4e0d\u662f\u9644\u52a0\u5230\u8be5\u6587\u4ef6\u4e2d
INFO_LDIFSEARCH_DESCRIPTION_DONT_WRAP_422=\u4e0d\u5e94\u5bf9\u8f83\u957f\u7684\u884c\u8fdb\u884c\u6362\u884c
INFO_LDIFSEARCH_DESCRIPTION_SIZE_LIMIT_423=\u8981\u8fd4\u56de\u7684\u6700\u5927\u5339\u914d\u6761\u76ee\u6570
INFO_LDIFSEARCH_DESCRIPTION_TIME_LIMIT_424=\u5904\u7406\u82b1\u8d39\u7684\u6700\u957f\u65f6\u95f4\uff08\u4ee5\u79d2\u4e3a\u5355\u4f4d\uff09
###SEVERE_ERR_LDIFSEARCH_NO_FILTER_428=No search filter was specified.  Either a \
### filter file or an individual search filter must be provided
###SEVERE_ERR_LDIFSEARCH_CANNOT_INITIALIZE_CONFIG_429=An error occurred while \
### attempting to process the Directory Server configuration file %s:  %s
###SEVERE_ERR_LDIFSEARCH_CANNOT_INITIALIZE_SCHEMA_430=An error occurred while \
### attempting to initialize the Directory Server schema based on the information \
### in configuration file %s:  %s
###SEVERE_ERR_LDIFSEARCH_CANNOT_PARSE_FILTER_431=An error occurred while \
### attempting to parse search filter '%s':  %s
###SEVERE_ERR_LDIFSEARCH_CANNOT_PARSE_BASE_DN_432=An error occurred while \
### attempting to parse base DN '%s':  %s
###SEVERE_ERR_LDIFSEARCH_CANNOT_PARSE_TIME_LIMIT_433=An error occurred while \
### attempting to parse the time limit as an integer:  %s
###SEVERE_ERR_LDIFSEARCH_CANNOT_PARSE_SIZE_LIMIT_434=An error occurred while \
### attempting to parse the size limit as an integer:  %s
###SEVERE_ERR_LDIFSEARCH_CANNOT_CREATE_READER_435=An error occurred while \
### attempting to create the LDIF reader:  %s
###SEVERE_ERR_LDIFSEARCH_CANNOT_CREATE_WRITER_436=An error occurred while \
### attempting to create the LDIF writer used to return matching entries:  %s
MILD_WARN_LDIFSEARCH_TIME_LIMIT_EXCEEDED_437=\u5728\u641c\u7d22\u5904\u7406\u671f\u95f4\u8d85\u8fc7\u4e86\u6307\u5b9a\u7684\u65f6\u95f4\u9650\u5236
MILD_WARN_LDIFSEARCH_SIZE_LIMIT_EXCEEDED_438=\u5728\u641c\u7d22\u5904\u7406\u671f\u95f4\u8d85\u8fc7\u4e86\u6307\u5b9a\u7684\u5927\u5c0f\u9650\u5236
###SEVERE_ERR_LDIFSEARCH_CANNOT_READ_ENTRY_RECOVERABLE_439=An error occurred \
### while attempting to read an entry from the LDIF content:  %s.  Skipping this \
### entry and continuing processing
###SEVERE_ERR_LDIFSEARCH_CANNOT_READ_ENTRY_FATAL_440=An error occurred while \
### attempting to read an entry from the LDIF content:  %s.  Unable to continue \
### processing
###SEVERE_ERR_LDIFSEARCH_ERROR_DURING_PROCESSING_441=An unexpected error \
### occurred during search processing:  %s
###SEVERE_ERR_LDIFSEARCH_CANNOT_INITIALIZE_JMX_442=An error occurred while \
### attempting to initialize the Directory Server JMX subsystem based on the \
### information in configuration file %s:  %s
INFO_LDIFDIFF_DESCRIPTION_SOURCE_LDIF_443=\u7528\u4f5c\u6e90\u6570\u636e\u7684 LDIF \u6587\u4ef6
INFO_LDIFDIFF_DESCRIPTION_TARGET_LDIF_444=\u7528\u4f5c\u76ee\u6807\u6570\u636e\u7684 LDIF \u6587\u4ef6
INFO_LDIFDIFF_DESCRIPTION_OUTPUT_LDIF_445=\u5e94\u5728\u5176\u4e2d\u5199\u5165\u8f93\u51fa\u7684\u6587\u4ef6
INFO_LDIFDIFF_DESCRIPTION_OVERWRITE_EXISTING_446=\u5e94\u8986\u76d6\u4efb\u4f55\u73b0\u6709\u8f93\u51fa\u6587\u4ef6\uff0c\u800c\u4e0d\u662f\u9644\u52a0\u5230\u8be5\u6587\u4ef6\u4e2d
###SEVERE_ERR_LDIFDIFF_CANNOT_INITIALIZE_JMX_452=An error occurred while \
### attempting to initialize the Directory Server JMX subsystem based on the \
### information in configuration file %s:  %s
###SEVERE_ERR_LDIFDIFF_CANNOT_INITIALIZE_CONFIG_453=An error occurred while \
### attempting to process the Directory Server configuration file %s:  %s
###SEVERE_ERR_LDIFDIFF_CANNOT_INITIALIZE_SCHEMA_454=An error occurred while \
### attempting to initialize the Directory Server schema based on the information \
### in configuration file %s:  %s
###SEVERE_ERR_LDIFDIFF_CANNOT_OPEN_SOURCE_LDIF_455=An error occurred while \
### attempting to open source LDIF %s:  %s
###SEVERE_ERR_LDIFDIFF_ERROR_READING_SOURCE_LDIF_456=An error occurred while \
### reading the contents of source LDIF %s:  %s
###SEVERE_ERR_LDIFDIFF_CANNOT_OPEN_TARGET_LDIF_457=An error occurred while \
### attempting to open target LDIF %s:  %s
###SEVERE_ERR_LDIFDIFF_ERROR_READING_TARGET_LDIF_458=An error occurred while \
### reading the contents of target LDIF %s:  %s
###SEVERE_ERR_LDIFDIFF_CANNOT_OPEN_OUTPUT_459=An error occurred while attempting \
### to open the LDIF writer for the diff output:  %s
INFO_LDIFDIFF_NO_DIFFERENCES_460=\u672a\u68c0\u6d4b\u5230\u6e90 LDIF \u6587\u4ef6\u548c\u76ee\u6807 LDIF \u6587\u4ef6\u4e4b\u95f4\u7684\u5dee\u5f02
###SEVERE_ERR_LDIFDIFF_ERROR_WRITING_OUTPUT_461=An error occurred while \
### attempting to write the diff output:  %s
INFO_CONFIGDS_DESCRIPTION_LDAP_PORT_464=\u76ee\u5f55\u670d\u52a1\u5668\u4fa6\u542c LDAP \u901a\u4fe1\u65f6\u5e94\u4f7f\u7528\u7684\u7aef\u53e3
INFO_CONFIGDS_DESCRIPTION_BASE_DN_465=\u76ee\u5f55\u670d\u52a1\u5668\u4e2d\u7684\u7528\u6237\u4fe1\u606f\u7684\u57fa DN\u3002\u53ef\u901a\u8fc7\u591a\u6b21\u4f7f\u7528\u6b64\u9009\u9879\u6765\u63d0\u4f9b\u591a\u4e2a\u57fa DN
INFO_CONFIGDS_DESCRIPTION_ROOT_DN_466=\u76ee\u5f55\u670d\u52a1\u5668\u7684\u521d\u59cb\u8d85\u7ea7\u7528\u6237 DN
INFO_CONFIGDS_DESCRIPTION_ROOT_PW_467=\u76ee\u5f55\u670d\u52a1\u5668\u7684\u521d\u59cb\u8d85\u7ea7\u7528\u6237\u5bc6\u7801
INFO_CONFIGDS_DESCRIPTION_ROOT_PW_FILE_468=\u5305\u542b\u76ee\u5f55\u670d\u52a1\u5668\u521d\u59cb\u8d85\u7ea7\u7528\u6237\u5bc6\u7801\u7684\u6587\u4ef6\u7684\u8def\u5f84
###SEVERE_ERR_CONFIGDS_CANNOT_ACQUIRE_SERVER_LOCK_472=An error occurred while \
### attempting to acquire the server-wide lock file %s:  %s.  This generally \
### means that the Directory Server is running, or another tool that requires \
### exclusive access to the server is in use
###SEVERE_ERR_CONFIGDS_CANNOT_INITIALIZE_JMX_473=An error occurred while \
### attempting to initialize the Directory Server JMX subsystem based on the \
### information in configuration file %s:  %s
###SEVERE_ERR_CONFIGDS_CANNOT_INITIALIZE_CONFIG_474=An error occurred while \
### attempting to process the Directory Server configuration file %s:  %s
###SEVERE_ERR_CONFIGDS_CANNOT_INITIALIZE_SCHEMA_475=An error occurred while \
### attempting to initialize the Directory Server schema based on the information \
### in configuration file %s:  %s
###SEVERE_ERR_CONFIGDS_CANNOT_PARSE_BASE_DN_476=An error occurred while \
### attempting to parse base DN value "%s" as a DN:  %s
###SEVERE_ERR_CONFIGDS_CANNOT_PARSE_ROOT_DN_477=An error occurred while \
### attempting to parse root DN value "%s" as a DN:  %s
###SEVERE_ERR_CONFIGDS_NO_ROOT_PW_478=The DN for the initial root user was \
### provided, but no corresponding password was given.  If the root DN is \
### specified then the password must also be provided
###SEVERE_ERR_CONFIGDS_CANNOT_UPDATE_BASE_DN_479=An error occurred while \
### attempting to update the base DN(s) for user data in the Directory Server: \
### %s
###SEVERE_ERR_CONFIGDS_CANNOT_UPDATE_LDAP_PORT_480=An error occurred while \
### attempting to update the port on which to listen for LDAP communication:  %s
###SEVERE_ERR_CONFIGDS_CANNOT_UPDATE_ROOT_USER_481=An error occurred while \
### attempting to update the entry for the initial Directory Server root user: \
### %s
###SEVERE_ERR_CONFIGDS_CANNOT_WRITE_UPDATED_CONFIG_482=An error occurred while \
### writing the updated Directory Server configuration:  %s
###SEVERE_ERR_CONFIGDS_NO_CONFIG_CHANGES_483=ERROR:  No configuration changes \
### were specified
INFO_CONFIGDS_WROTE_UPDATED_CONFIG_484=\u5df2\u6210\u529f\u5199\u5165\u66f4\u65b0\u7684\u76ee\u5f55\u670d\u52a1\u5668\u914d\u7f6e
INFO_INSTALLDS_DESCRIPTION_TESTONLY_485=\u53ea\u9a8c\u8bc1\u662f\u5426\u53ef\u4ee5\u6b63\u786e\u542f\u52a8 JVM
INFO_INSTALLDS_DESCRIPTION_PROGNAME_486=\u7528\u4e8e\u8c03\u7528\u6b64\u7a0b\u5e8f\u7684\u5b89\u88c5\u547d\u4ee4
INFO_INSTALLDS_DESCRIPTION_SILENT_489=\u4ee5\u9759\u9ed8\u6a21\u5f0f\u8fd0\u884c\u5b89\u88c5\u3002\u5728\u9759\u9ed8\u6a21\u5f0f\u4e0b\uff0c\u8fdb\u5ea6\u4fe1\u606f\u5c06\u4e0d\u8f93\u51fa\u5230\u6807\u51c6\u8f93\u51fa\u4e2d
INFO_INSTALLDS_DESCRIPTION_BASEDN_490=\u76ee\u5f55\u670d\u52a1\u5668\u4e2d\u7684\u7528\u6237\u4fe1\u606f\u7684\u57fa DN\u3002\u53ef\u901a\u8fc7\u591a\u6b21\u4f7f\u7528\u6b64\u9009\u9879\u6765\u63d0\u4f9b\u591a\u4e2a\u57fa DN
INFO_INSTALLDS_DESCRIPTION_ADDBASE_491=\u6307\u793a\u662f\u5426\u5728\u76ee\u5f55\u670d\u52a1\u5668\u6570\u636e\u5e93\u4e2d\u521b\u5efa\u57fa\u6761\u76ee
INFO_INSTALLDS_DESCRIPTION_IMPORTLDIF_492=LDIF \u6587\u4ef6\u7684\u8def\u5f84\uff0c\u8be5\u6587\u4ef6\u5305\u542b\u5e94\u6dfb\u52a0\u5230\u76ee\u5f55\u670d\u52a1\u5668\u6570\u636e\u5e93\u4e2d\u7684\u6570\u636e\u3002\u53ef\u901a\u8fc7\u591a\u6b21\u4f7f\u7528\u6b64\u9009\u9879\u6765\u63d0\u4f9b\u591a\u4e2a LDIF \u6587\u4ef6
INFO_INSTALLDS_DESCRIPTION_LDAPPORT_493=\u76ee\u5f55\u670d\u52a1\u5668\u4fa6\u542c LDAP \u901a\u4fe1\u65f6\u5e94\u4f7f\u7528\u7684\u7aef\u53e3
INFO_INSTALLDS_DESCRIPTION_SKIPPORT_494=\u8df3\u8fc7\u7528\u4e8e\u786e\u5b9a\u6307\u5b9a\u7aef\u53e3\u662f\u5426\u53ef\u7528\u7684\u68c0\u67e5
INFO_INSTALLDS_DESCRIPTION_ROOTDN_495=\u76ee\u5f55\u670d\u52a1\u5668\u7684\u521d\u59cb\u8d85\u7ea7\u7528\u6237 DN
INFO_INSTALLDS_DESCRIPTION_ROOTPW_496=\u76ee\u5f55\u670d\u52a1\u5668\u7684\u521d\u59cb\u8d85\u7ea7\u7528\u6237\u5bc6\u7801
INFO_INSTALLDS_DESCRIPTION_ROOTPWFILE_497=\u5305\u542b\u76ee\u5f55\u670d\u52a1\u5668\u521d\u59cb\u8d85\u7ea7\u7528\u6237\u5bc6\u7801\u7684\u6587\u4ef6\u7684\u8def\u5f84
INFO_INSTALLDS_DESCRIPTION_HELP_498=\u663e\u793a\u6b64\u7528\u6cd5\u4fe1\u606f
###SEVERE_ERR_INSTALLDS_NO_CONFIG_FILE_499=ERROR:  No configuration file path \
### was provided (use the %s argument)
###SEVERE_ERR_INSTALLDS_CANNOT_INITIALIZE_JMX_500=An error occurred while \
### attempting to initialize the Directory Server JMX subsystem based on the \
### information in configuration file %s:  %s
###SEVERE_ERR_INSTALLDS_CANNOT_INITIALIZE_CONFIG_501=An error occurred while \
### attempting to process the Directory Server configuration file %s:  %s
###SEVERE_ERR_INSTALLDS_CANNOT_INITIALIZE_SCHEMA_502=An error occurred while \
### attempting to initialize the Directory Server schema based on the information \
### in configuration file %s:  %s
###SEVERE_ERR_INSTALLDS_CANNOT_PARSE_DN_503=An error occurred while attempting \
### to parse the string "%s" as a valid DN:  %s
INFO_INSTALLDS_PROMPT_BASEDN_504=\u60a8\u5e0c\u671b\u5c06\u54ea\u4e9b\u5185\u5bb9\u7528\u4f5c\u76ee\u5f55\u6570\u636e\u7684\u57fa DN\uff1f
INFO_INSTALLDS_PROMPT_IMPORT_505=\u662f\u5426\u8981\u4f7f\u7528\u73b0\u6709 LDIF \u6587\u4ef6\u4e2d\u7684\u4fe1\u606f\u586b\u5145\u76ee\u5f55\u6570\u636e\u5e93\uff1f
INFO_INSTALLDS_PROMPT_IMPORT_FILE_506=\u8bf7\u6307\u5b9a\u5305\u542b\u8981\u5bfc\u5165\u7684\u6570\u636e\u7684 LDIF \u6587\u4ef6\u7684\u8def\u5f84:
###SEVERE_ERR_INSTALLDS_TWO_CONFLICTING_ARGUMENTS_507=ERROR:  You may not \
### provide both the %s and the %s arguments at the same time
INFO_INSTALLDS_PROMPT_ADDBASE_508=\u662f\u5426\u8981\u5728\u76ee\u5f55\u6570\u636e\u5e93\u4e2d\u81ea\u52a8\u521b\u5efa\u57fa %s \u6761\u76ee\uff1f
INFO_INSTALLDS_PROMPT_LDAPPORT_509=\u60a8\u5e0c\u671b\u76ee\u5f55\u670d\u52a1\u5668\u4f7f\u7528\u54ea\u4e2a\u7aef\u53e3\u63a5\u53d7\u6765\u81ea LDAP \u5ba2\u6237\u7aef\u7684\u8fde\u63a5\uff1f
###SEVERE_ERR_INSTALLDS_CANNOT_BIND_TO_PRIVILEGED_PORT_510=ERROR:  Unable to \
### bind to port %d.  This port may already be in use, or you may not have \
### permission to bind to it.  On UNIX-based operating systems, non-root users \
### may not be allowed to bind to ports 1 through 1024
###SEVERE_ERR_INSTALLDS_CANNOT_BIND_TO_PORT_511=ERROR:  Unable to bind to port \
### %d.  This port may already be in use, or you may not have permission to bind \
### to it
INFO_INSTALLDS_PROMPT_ROOT_DN_512=\u60a8\u5e0c\u671b\u5c06\u54ea\u4e9b\u5185\u5bb9\u7528\u4f5c\u76ee\u5f55\u670d\u52a1\u5668\u7684\u521d\u59cb\u8d85\u7ea7\u7528\u6237 DN\uff1f
###SEVERE_ERR_INSTALLDS_NO_ROOT_PASSWORD_513=ERROR:  No password was provided \
### for the initial root user.  When performing a non-interactive installation, \
### this must be provided using either the %s or the %s argument
INFO_INSTALLDS_PROMPT_ROOT_PASSWORD_514=\u8bf7\u63d0\u4f9b\u7528\u4e8e\u521d\u59cb\u8d85\u7ea7\u7528\u6237\u7684\u5bc6\u7801:
INFO_INSTALLDS_PROMPT_CONFIRM_ROOT_PASSWORD_515=\u8bf7\u91cd\u65b0\u8f93\u5165\u5bc6\u7801\u4ee5\u8fdb\u884c\u786e\u8ba4:
INFO_INSTALLDS_STATUS_CONFIGURING_DS_516=\u6b63\u5728\u5c06\u8bf7\u6c42\u7684\u914d\u7f6e\u5e94\u7528\u4e8e\u76ee\u5f55\u670d\u52a1\u5668...
INFO_INSTALLDS_STATUS_CREATING_BASE_LDIF_517=\u6b63\u5728\u4f7f\u7528\u521d\u59cb\u57fa\u6761\u76ee\u5185\u5bb9\u521b\u5efa\u4e34\u65f6 LDIF \u6587\u4ef6...
###SEVERE_ERR_INSTALLDS_CANNOT_CREATE_BASE_ENTRY_LDIF_518=An error occurred \
### while attempting to create the base LDIF file:  %s
INFO_INSTALLDS_STATUS_IMPORTING_LDIF_519=\u6b63\u5728\u5c06 LDIF \u6570\u636e\u5bfc\u5165\u5230\u76ee\u5f55\u670d\u52a1\u5668\u6570\u636e\u5e93\u4e2d...
INFO_INSTALLDS_STATUS_SUCCESS_520=\u5df2\u6210\u529f\u5b8c\u6210\u670d\u52a1\u5668\u5b89\u88c5\u8fc7\u7a0b
INFO_INSTALLDS_PROMPT_VALUE_YES_521=\u662f
INFO_INSTALLDS_PROMPT_VALUE_NO_522=\u5426
MILD_ERR_INSTALLDS_INVALID_YESNO_RESPONSE_523=ERROR\uff1a\u65e0\u6cd5\u5c06\u63d0\u4f9b\u7684\u503c\u89e3\u91ca\u4e3a\u80af\u5b9a\u6216\u5426\u5b9a\u54cd\u5e94\u3002\u8bf7\u8f93\u5165\u54cd\u5e94\u201c\u662f\u201d\u6216\u201c\u5426\u201d
MILD_ERR_INSTALLDS_INVALID_INTEGER_RESPONSE_524=ERROR\uff1a\u65e0\u6cd5\u5c06\u63d0\u4f9b\u7684\u54cd\u5e94\u89e3\u91ca\u4e3a\u6574\u6570\u3002\u8bf7\u4ee5\u6574\u6570\u503c\u5f62\u5f0f\u63d0\u4f9b\u54cd\u5e94
MILD_ERR_INSTALLDS_INTEGER_BELOW_LOWER_BOUND_525=ERROR\uff1a\u63d0\u4f9b\u7684\u503c\u5c0f\u4e8e\u6700\u5c0f\u5141\u8bb8\u503c %d
MILD_ERR_INSTALLDS_INTEGER_ABOVE_UPPER_BOUND_526=ERROR\uff1a\u63d0\u4f9b\u7684\u503c\u5927\u4e8e\u6700\u5927\u5141\u8bb8\u503c %d
MILD_ERR_INSTALLDS_INVALID_DN_RESPONSE_527=ERROR\uff1a\u65e0\u6cd5\u5c06\u63d0\u4f9b\u7684\u54cd\u5e94\u89e3\u91ca\u4e3a LDAP DN
MILD_ERR_INSTALLDS_INVALID_STRING_RESPONSE_528=ERROR\uff1a\u54cd\u5e94\u503c\u4e0d\u80fd\u4e3a\u7a7a\u5b57\u7b26\u4e32
MILD_ERR_INSTALLDS_INVALID_PASSWORD_RESPONSE_529=ERROR\uff1a\u5bc6\u7801\u503c\u4e0d\u80fd\u4e3a\u7a7a\u5b57\u7b26\u4e32
MILD_ERR_INSTALLDS_PASSWORDS_DONT_MATCH_530=ERROR\uff1a\u63d0\u4f9b\u7684\u5bc6\u7801\u503c\u4e0d\u5339\u914d
MILD_ERR_INSTALLDS_ERROR_READING_FROM_STDIN_531=ERROR\uff1a\u5728\u4ece\u6807\u51c6\u8f93\u5165\u4e2d\u8bfb\u53d6\u6570\u636e\u65f6\u51fa\u73b0\u610f\u5916\u9519\u8bef: %s
INFO_LDIFIMPORT_DESCRIPTION_QUIET_532=\u4f7f\u7528\u9759\u9ed8\u6a21\u5f0f\uff08\u6ca1\u6709\u8f93\u51fa\uff09
INFO_INSTALLDS_IMPORT_SUCCESSFUL_533=\u5bfc\u5165\u5b8c\u6210
INFO_INSTALLDS_INITIALIZING_534=\u5b89\u88c5\u7a0b\u5e8f\u6b63\u5728\u521d\u59cb\u5316\uff0c\u8bf7\u7a0d\u5019...
MILD_ERR_MAKELDIF_TAG_INVALID_ARGUMENT_COUNT_535=\u4e3a\u6a21\u677f\u6587\u4ef6\u7b2c %2$d \u884c\u4e2d\u7684\u6807\u8bb0 %1$s \u63d0\u4f9b\u7684\u53c2\u6570\u6570\u76ee\u65e0\u6548\uff1a\u5e94\u8be5\u4e3a %3$d \u4e2a\uff0c\u5b9e\u9645\u4e3a %4$d \u4e2a
MILD_ERR_MAKELDIF_TAG_INVALID_ARGUMENT_RANGE_COUNT_536=\u4e3a\u6a21\u677f\u6587\u4ef6\u7b2c %2$d \u884c\u4e2d\u7684\u6807\u8bb0 %1$s \u63d0\u4f9b\u7684\u53c2\u6570\u6570\u76ee\u65e0\u6548\uff1a\u5e94\u8be5\u4ecb\u4e8e %3$d \u548c %4$d \u4e2a\u4e4b\u95f4\uff0c\u5b9e\u9645\u4e3a %5$d \u4e2a
MILD_ERR_MAKELDIF_TAG_UNDEFINED_ATTRIBUTE_537=\u6a21\u677f\u6587\u4ef6\u7684\u7b2c %2$d \u884c\u4e2d\u5f15\u7528\u4e86\u672a\u5b9a\u4e49\u7684\u5c5e\u6027 %1$s
MILD_ERR_MAKELDIF_TAG_INTEGER_BELOW_LOWER_BOUND_538=\u6a21\u677f\u6587\u4ef6\u7b2c %4$d \u884c\u4e2d\u7684\u6807\u8bb0 %3$s \u503c %1$d \u5c0f\u4e8e\u6700\u5c0f\u5141\u8bb8\u503c %2$d
MILD_ERR_MAKELDIF_TAG_CANNOT_PARSE_AS_INTEGER_539=\u65e0\u6cd5\u5c06\u6a21\u677f\u6587\u4ef6\u7b2c %3$d \u884c\u4e2d\u7684\u6807\u8bb0 %2$s \u503c "%1$s" \u89e3\u6790\u4e3a\u6574\u6570
MILD_ERR_MAKELDIF_TAG_INTEGER_ABOVE_UPPER_BOUND_540=\u6a21\u677f\u6587\u4ef6\u7b2c %4$d \u884c\u4e2d\u7684\u6807\u8bb0 %3$s \u503c %1$d \u5927\u4e8e\u6700\u5927\u5141\u8bb8\u503c %2$d
MILD_ERR_MAKELDIF_TAG_INVALID_EMPTY_STRING_ARGUMENT_541=\u7b2c %3$d \u884c\u4e2d\u7684\u6807\u8bb0 %2$s \u7684\u53c2\u6570 %1$d \u4e0d\u80fd\u4e3a\u7a7a\u5b57\u7b26\u4e32
MILD_ERR_MAKELDIF_TAG_CANNOT_PARSE_AS_BOOLEAN_542=\u65e0\u6cd5\u5c06\u6a21\u677f\u6587\u4ef6\u7b2c %3$d \u884c\u4e2d\u7684\u6807\u8bb0 %2$s \u503c "%1$s" \u89e3\u6790\u4e3a\u5e03\u5c14\u503c\u3002\u8be5\u503c\u5fc5\u987b\u4e3a\u201c\u771f\u201d\u6216\u201c\u5047\u201d
MILD_ERR_MAKELDIF_UNDEFINED_BRANCH_SUBORDINATE_543=The branch with entry DN '%s' references a subordinate template named '%s' which is not defined in the template file
MILD_ERR_MAKELDIF_CANNOT_LOAD_TAG_CLASS_544=\u65e0\u6cd5\u52a0\u8f7d\u7c7b %s \u4ee5\u7528\u4f5c MakeLDIF \u6807\u8bb0
MILD_ERR_MAKELDIF_CANNOT_INSTANTIATE_TAG_545=\u65e0\u6cd5\u5c06\u7c7b %s \u5b9e\u4f8b\u5316\u4e3a MakeLDIF \u6807\u8bb0
MILD_ERR_MAKELDIF_CONFLICTING_TAG_NAME_546=\u65e0\u6cd5\u6ce8\u518c\u7c7b %s \u4e2d\u5b9a\u4e49\u7684\u6807\u8bb0\uff0c\u56e0\u4e3a\u6807\u8bb0\u540d\u79f0 %s \u4e0e\u5df2\u6ce8\u518c\u7684\u53e6\u4e00\u4e2a\u6807\u8bb0\u7684\u540d\u79f0\u53d1\u751f\u51b2\u7a81
MILD_WARN_MAKELDIF_WARNING_UNDEFINED_CONSTANT_547=\u53ef\u80fd\u5728\u7b2c %2$d \u884c\u4e2d\u5f15\u7528\u4e86\u672a\u5b9a\u4e49\u7684\u5e38\u91cf %1$s
MILD_ERR_MAKELDIF_DEFINE_MISSING_EQUALS_548=\u7b2c %d \u884c\u4e2d\u7684\u5e38\u91cf\u5b9a\u4e49\u7f3a\u5c11\u5c06\u5e38\u91cf\u540d\u79f0\u4e0e\u503c\u9694\u5f00\u7684\u7b49\u53f7
MILD_ERR_MAKELDIF_DEFINE_NAME_EMPTY_549=\u7b2c %d \u884c\u4e2d\u7684\u5e38\u91cf\u5b9a\u4e49\u4e0d\u5305\u542b\u5e38\u91cf\u540d\u79f0
MILD_ERR_MAKELDIF_CONFLICTING_CONSTANT_NAME_550=\u7b2c %2$d \u4e2d\u7684\u5e38\u91cf %1$s \u5b9a\u4e49\u4e0e\u6a21\u677f\u4e2d\u5305\u542b\u7684\u4ee5\u524d\u5e38\u91cf\u5b9a\u4e49\u53d1\u751f\u51b2\u7a81
MILD_ERR_MAKELDIF_WARNING_DEFINE_VALUE_EMPTY_551=\u6ca1\u6709\u4e3a\u7b2c %2$d \u884c\u4e2d\u5b9a\u4e49\u7684\u5e38\u91cf %1$s \u6307\u5b9a\u503c
MILD_ERR_MAKELDIF_CONFLICTING_BRANCH_DN_552=\u5206\u652f\u5b9a\u4e49 %s\uff08\u4ece\u7b2c %d \u884c\u5f00\u59cb\uff09\u4e0e\u6a21\u677f\u6587\u4ef6\u4e2d\u5305\u542b\u7684\u4ee5\u524d\u5206\u652f\u5b9a\u4e49\u53d1\u751f\u51b2\u7a81
MILD_ERR_MAKELDIF_CONFLICTING_TEMPLATE_NAME_553=\u6a21\u677f\u5b9a\u4e49 %s\uff08\u4ece\u7b2c %d \u884c\u5f00\u59cb\uff09\u4e0e\u6a21\u677f\u6587\u4ef6\u4e2d\u5305\u542b\u7684\u4ee5\u524d\u6a21\u677f\u5b9a\u4e49\u53d1\u751f\u51b2\u7a81
MILD_ERR_MAKELDIF_UNEXPECTED_TEMPLATE_FILE_LINE_554=\u5728\u6a21\u677f\u6587\u4ef6\u7684\u7b2c %2$d \u884c\u9047\u5230\u610f\u5916\u7684\u6a21\u677f\u884c "%1$s"
MILD_ERR_MAKELDIF_UNDEFINED_TEMPLATE_SUBORDINATE_555=\u540d\u4e3a %s \u7684\u6a21\u677f\u5f15\u7528\u4e86\u6a21\u677f\u6587\u4ef6\u4e2d\u672a\u5b9a\u4e49\u7684\u4ece\u5c5e\u6a21\u677f %s
MILD_ERR_MAKELDIF_CANNOT_DECODE_BRANCH_DN_556=\u65e0\u6cd5\u5bf9\u6a21\u677f\u6587\u4ef6\u7b2c %2$d \u884c\u4e2d\u7684\u5206\u652f DN "%1$s" \u8fdb\u884c\u89e3\u7801
MILD_ERR_MAKELDIF_BRANCH_SUBORDINATE_TEMPLATE_NO_COLON_557=\u7b2c %d \u884c\u4e2d\u5206\u652f %s \u7684\u4ece\u5c5e\u6a21\u677f\u5b9a\u4e49\u7f3a\u5c11\u5c06\u6a21\u677f\u540d\u79f0\u4e0e\u6761\u76ee\u6570\u9694\u5f00\u7684\u5192\u53f7
MILD_ERR_MAKELDIF_BRANCH_SUBORDINATE_INVALID_NUM_ENTRIES_558=\u7b2c %1$d \u884c\u4e2d\u5206\u652f %2$s \u7684\u4ece\u5c5e\u6a21\u677f\u5b9a\u4e49\u4e3a\u6a21\u677f %4$s \u6307\u5b9a\u7684\u6761\u76ee\u6570 %3$d \u65e0\u6548
MILD_WARN_MAKELDIF_BRANCH_SUBORDINATE_ZERO_ENTRIES_559=\u7b2c %d \u884c\u4e2d\u5206\u652f %s \u7684\u4ece\u5c5e\u6a21\u677f\u5b9a\u4e49\u6307\u5b9a\u5e94\u751f\u6210\u96f6\u4e2a\u7c7b\u578b\u4e3a %s \u7684\u6761\u76ee
MILD_ERR_MAKELDIF_BRANCH_SUBORDINATE_CANT_PARSE_NUMENTRIES_560=\u5bf9\u4e8e\u7b2c %2$d \u884c\u4e2d\u5206\u652f %3$s \u7684\u4ece\u5c5e\u6a21\u677f\u5b9a\u4e49\uff0c\u65e0\u6cd5\u5c06\u6a21\u677f %1$s \u7684\u6761\u76ee\u6570\u89e3\u6790\u4e3a\u6574\u6570
MILD_ERR_MAKELDIF_TEMPLATE_SUBORDINATE_TEMPLATE_NO_COLON_561=\u7b2c %d \u884c\u4e2d\u6a21\u677f %s \u7684\u4ece\u5c5e\u6a21\u677f\u5b9a\u4e49\u7f3a\u5c11\u5c06\u6a21\u677f\u540d\u79f0\u4e0e\u6761\u76ee\u6570\u9694\u5f00\u7684\u5192\u53f7
MILD_ERR_MAKELDIF_TEMPLATE_SUBORDINATE_INVALID_NUM_ENTRIES_562=\u7b2c %1$d \u884c\u4e2d\u6a21\u677f %2$s \u7684\u4ece\u5c5e\u6a21\u677f\u5b9a\u4e49\u4e3a\u4ece\u5c5e\u6a21\u677f %4$s \u6307\u5b9a\u7684\u6761\u76ee\u6570 %3$d \u65e0\u6548
MILD_WARN_MAKELDIF_TEMPLATE_SUBORDINATE_ZERO_ENTRIES_563=\u7b2c %d \u884c\u4e2d\u6a21\u677f %s \u7684\u4ece\u5c5e\u6a21\u677f\u5b9a\u4e49\u6307\u5b9a\u5e94\u751f\u6210\u96f6\u4e2a\u7c7b\u578b %s \u7684\u6761\u76ee
MILD_ERR_MAKELDIF_TEMPLATE_SUBORDINATE_CANT_PARSE_NUMENTRIES_564=\u5bf9\u4e8e\u7b2c %2$d \u884c\u4e2d\u6a21\u677f %3$s \u7684\u4ece\u5c5e\u6a21\u677f\u5b9a\u4e49\uff0c\u65e0\u6cd5\u5c06\u6a21\u677f %1$s \u7684\u6761\u76ee\u6570\u89e3\u6790\u4e3a\u6574\u6570
MILD_ERR_MAKELDIF_TEMPLATE_MISSING_RDN_ATTR_565=\u540d\u4e3a %s \u7684\u6a21\u677f\u5305\u542b\u5728\u8be5\u6a21\u677f\u4e2d\u672a\u6307\u5b9a\u503c\u7684 RDN \u5c5e\u6027 %s
MILD_ERR_MAKELDIF_NO_COLON_IN_BRANCH_EXTRA_LINE_566=\u6a21\u677f\u6587\u4ef6\u7b2c %d \u884c\u4e2d\u7684\u5206\u652f %s \u5b9a\u4e49\u6ca1\u6709\u5c06\u5c5e\u6027\u540d\u79f0\u4e0e\u503c\u6a21\u5f0f\u9694\u5f00\u7684\u5192\u53f7
MILD_ERR_MAKELDIF_NO_ATTR_IN_BRANCH_EXTRA_LINE_567=\u6a21\u677f\u6587\u4ef6\u7b2c %d \u884c\u5206\u652f %s \u5b9a\u4e49\u4e2d\u7684\u5192\u53f7\u524d\u9762\u6ca1\u6709\u5c5e\u6027\u540d\u79f0
MILD_WARN_MAKELDIF_NO_VALUE_IN_BRANCH_EXTRA_LINE_568=\u6a21\u677f\u6587\u4ef6\u7b2c %d \u884c\u5206\u652f %s \u5b9a\u4e49\u4e2d\u7684\u503c\u6a21\u5f0f\u4e3a\u7a7a
MILD_ERR_MAKELDIF_NO_COLON_IN_TEMPLATE_LINE_569=\u6a21\u677f\u6587\u4ef6\u7b2c %d \u884c\u4e2d\u7684\u6a21\u677f %s \u5b9a\u4e49\u6ca1\u6709\u5c06\u5c5e\u6027\u540d\u79f0\u4e0e\u503c\u6a21\u5f0f\u9694\u5f00\u7684\u5192\u53f7
MILD_ERR_MAKELDIF_NO_ATTR_IN_TEMPLATE_LINE_570=\u6a21\u677f\u6587\u4ef6\u7b2c %d \u884c\u6a21\u677f %s \u5b9a\u4e49\u4e2d\u7684\u5192\u53f7\u524d\u9762\u6ca1\u6709\u5c5e\u6027\u540d\u79f0
MILD_WARN_MAKELDIF_NO_VALUE_IN_TEMPLATE_LINE_571=\u6a21\u677f\u6587\u4ef6\u7b2c %d \u884c\u6a21\u677f %s \u5b9a\u4e49\u4e2d\u7684\u503c\u6a21\u5f0f\u4e3a\u7a7a
MILD_ERR_MAKELDIF_NO_SUCH_TAG_572=\u6a21\u677f\u6587\u4ef6\u7684\u7b2c %2$d \u884c\u4e2d\u5f15\u7528\u4e86\u672a\u5b9a\u4e49\u7684\u6807\u8bb0 %1$s
MILD_ERR_MAKELDIF_CANNOT_INSTANTIATE_NEW_TAG_573=\u5728\u5c1d\u8bd5\u4e3a\u6a21\u677f\u6587\u4ef6\u7b2c %2$d \u884c\u4e2d\u5f15\u7528\u7684\u6807\u8bb0 %1$s \u521b\u5efa\u65b0\u5b9e\u4f8b\u65f6\u51fa\u73b0\u610f\u5916\u9519\u8bef: %3$s
INFO_MAKELDIF_DESCRIPTION_TEMPLATE_576=\u6a21\u677f\u6587\u4ef6\u7684\u8def\u5f84\uff0c\u8be5\u6587\u4ef6\u5305\u542b\u4e0e\u8981\u751f\u6210\u7684 LDIF \u6570\u636e\u76f8\u5173\u7684\u4fe1\u606f
INFO_MAKELDIF_DESCRIPTION_LDIF_577=\u8981\u5199\u5165\u7684 LDIF \u6587\u4ef6\u7684\u8def\u5f84
INFO_MAKELDIF_DESCRIPTION_SEED_578=\u7528\u4e8e\u521d\u59cb\u5316\u968f\u673a\u6570\u751f\u6210\u5668\u7684\u521d\u59cb\u5316\u5411\u91cf
INFO_MAKELDIF_DESCRIPTION_HELP_579=\u663e\u793a\u6b64\u7528\u6cd5\u4fe1\u606f
###SEVERE_ERR_MAKELDIF_CANNOT_INITIALIZE_JMX_582=An error occurred while \
### attempting to initialize the Directory Server JMX subsystem based on the \
### information in configuration file %s:  %s
###SEVERE_ERR_MAKELDIF_CANNOT_INITIALIZE_CONFIG_583=An error occurred while \
### attempting to process the Directory Server configuration file %s:  %s
###SEVERE_ERR_MAKELDIF_CANNOT_INITIALIZE_SCHEMA_584=An error occurred while \
### attempting to initialize the Directory Server schema based on the information \
### in configuration file %s:  %s
###SEVERE_ERR_MAKELDIF_IOEXCEPTION_DURING_PARSE_585=An error occurred while \
### attempting to read the template file:  %s
###SEVERE_ERR_MAKELDIF_EXCEPTION_DURING_PARSE_586=An error occurred while \
### attempting to parse the template file:  %s
MILD_ERR_MAKELDIF_TAG_INVALID_FORMAT_STRING_587=\u65e0\u6cd5\u5c06\u6a21\u677f\u6587\u4ef6\u7b2c %3$d \u884c\u4e2d\u7684\u6807\u8bb0 %2$s \u503c "%1$s" \u89e3\u6790\u4e3a\u6709\u6548\u7684\u683c\u5f0f\u5b57\u7b26\u4e32
MILD_ERR_MAKELDIF_TAG_NO_RANDOM_TYPE_ARGUMENT_588=\u6a21\u677f\u6587\u4ef6\u7b2c %d \u884c\u4e2d\u7684\u968f\u673a\u6807\u8bb0\u4e0d\u5305\u542b\u7528\u4e8e\u6307\u5b9a\u5e94\u751f\u6210\u7684\u968f\u673a\u503c\u7c7b\u578b\u7684\u53c2\u6570
MILD_WARN_MAKELDIF_TAG_WARNING_EMPTY_VALUE_589=\u901a\u8fc7\u6a21\u677f\u6587\u4ef6\u7b2c %d \u884c\u4e2d\u7684\u968f\u673a\u6807\u8bb0\u751f\u6210\u7684\u503c\u5c06\u59cb\u7ec8\u4e3a\u7a7a\u5b57\u7b26\u4e32
MILD_ERR_MAKELDIF_TAG_UNKNOWN_RANDOM_TYPE_590=\u6a21\u677f\u6587\u4ef6\u7b2c %d \u884c\u4e2d\u7684\u968f\u673a\u6807\u8bb0\u5f15\u7528\u4e86\u672a\u77e5\u7684\u968f\u673a\u7c7b\u578b %s
INFO_MAKELDIF_DESCRIPTION_RESOURCE_PATH_591=\u5728\u5f53\u524d\u5de5\u4f5c\u76ee\u5f55\u6216\u6a21\u677f\u76ee\u5f55\u8def\u5f84\u4e2d\u627e\u4e0d\u5230\u7528\u4e8e\u67e5\u627e MakeLDIF \u8d44\u6e90\uff08\u5982\u6570\u636e\u6587\u4ef6\uff09\u7684\u8def\u5f84
MILD_ERR_MAKELDIF_COULD_NOT_FIND_TEMPLATE_FILE_592=\u627e\u4e0d\u5230\u6a21\u677f\u6587\u4ef6 %s
MILD_ERR_MAKELDIF_NO_SUCH_RESOURCE_DIRECTORY_593=\u627e\u4e0d\u5230\u6307\u5b9a\u7684\u8d44\u6e90\u76ee\u5f55 %s
MILD_ERR_MAKELDIF_RESOURCE_DIRECTORY_NOT_DIRECTORY_594=\u6307\u5b9a\u7684\u8d44\u6e90\u76ee\u5f55 %s \u5b58\u5728\uff0c\u4f46\u4e0d\u662f\u76ee\u5f55
MILD_ERR_MAKELDIF_TAG_CANNOT_FIND_FILE_595=\u627e\u4e0d\u5230\u6a21\u677f\u6587\u4ef6\u7b2c %3$d \u884c\u4e2d\u7684\u6807\u8bb0 %2$s \u5f15\u7528\u7684\u6587\u4ef6 %1$s
MILD_ERR_MAKELDIF_TAG_INVALID_FILE_ACCESS_MODE_596=\u6a21\u677f\u6587\u4ef6\u7b2c %3$d \u884c\u4e2d\u7684\u6807\u8bb0 %2$s \u7684\u6587\u4ef6\u8bbf\u95ee\u6a21\u5f0f %1$s \u65e0\u6548\u3002\u5b83\u5fc5\u987b\u4e3a "sequential" \u6216 "random"
MILD_ERR_MAKELDIF_TAG_CANNOT_READ_FILE_597=\u5728\u5c1d\u8bd5\u8bfb\u53d6\u6a21\u677f\u6587\u4ef6\u7b2c %3$d \u884c\u4e2d\u7684\u6807\u8bb0 %2$s \u5f15\u7528\u7684\u6587\u4ef6 %1$s \u65f6\u51fa\u73b0\u9519\u8bef: %4$s
MILD_ERR_MAKELDIF_UNABLE_TO_CREATE_LDIF_598=\u5728\u5c1d\u8bd5\u6253\u5f00 LDIF \u6587\u4ef6 %s \u4ee5\u5199\u5165\u6570\u636e\u65f6\u51fa\u73b0\u9519\u8bef: %s
MILD_ERR_MAKELDIF_ERROR_WRITING_LDIF_599=\u5728\u5c06\u6570\u636e\u5199\u5165 LDIF \u6587\u4ef6 %s \u65f6\u51fa\u73b0\u9519\u8bef: %s
INFO_MAKELDIF_PROCESSED_N_ENTRIES_600=\u5df2\u5904\u7406 %d \u4e2a\u6761\u76ee
MILD_ERR_MAKELDIF_CANNOT_WRITE_ENTRY_601=\u5728\u5c1d\u8bd5\u5c06\u6761\u76ee %s \u5199\u5165 LDIF \u65f6\u51fa\u73b0\u9519\u8bef: %s
INFO_MAKELDIF_PROCESSING_COMPLETE_602=LDIF \u5904\u7406\u5b8c\u6210\u3002\u5df2\u5199\u5165 %d \u4e2a\u6761\u76ee
INFO_LDIFIMPORT_DESCRIPTION_TEMPLATE_FILE_603=\u7528\u4e8e\u751f\u6210\u5bfc\u5165\u6570\u636e\u7684 MakeLDIF \u6a21\u677f\u7684\u8def\u5f84
###SEVERE_ERR_LDIFIMPORT_CONFLICTING_OPTIONS_604=The %s and %s arguments are \
### incompatible and may not be used together
###SEVERE_ERR_LDIFIMPORT_MISSING_REQUIRED_ARGUMENT_605=Neither the %s or the %s \
### argument was provided.  One of these arguments must be given to specify the \
### source for the LDIF data to be imported
###SEVERE_ERR_LDIFIMPORT_CANNOT_PARSE_TEMPLATE_FILE_606=Unable to parse the \
### specified file %s as a MakeLDIF template file:  %s
MILD_ERR_MAKELDIF_INCOMPLETE_TAG_607=\u6a21\u677f\u6587\u4ef6\u7b2c %d \u884c\u4e2d\u5305\u542b\u4e0d\u5b8c\u6574\u7684\u6807\u8bb0\uff0c\u8be5\u6807\u8bb0\u4ee5 '<' \u6216 '{' \u5f00\u5934\uff0c\u4f46\u6ca1\u6709\u7ed3\u675f\u5b57\u7b26
MILD_ERR_MAKELDIF_TAG_NOT_ALLOWED_IN_BRANCH_608=\u4e0d\u5141\u8bb8\u5728\u5206\u652f\u5b9a\u4e49\u4e2d\u4f7f\u7528\u6a21\u677f\u6587\u4ef6\u7b2c %2$d \u884c\u4e2d\u5f15\u7528\u7684\u6807\u8bb0 %1$s
INFO_LDIFIMPORT_DESCRIPTION_RANDOM_SEED_609=MakeLDIF \u968f\u673a\u6570\u751f\u6210\u5668\u7684\u521d\u59cb\u5316\u5411\u91cf
MILD_ERR_LDIFMODIFY_CANNOT_ADD_ENTRY_TWICE_610=\u5728\u8981\u5e94\u7528\u7684\u66f4\u6539\u96c6\u4e2d\u5bf9\u6761\u76ee %s \u6dfb\u52a0\u4e86\u4e24\u6b21\uff0cLDIF \u4fee\u6539\u5de5\u5177\u4e0d\u652f\u6301\u6b64\u64cd\u4f5c
MILD_ERR_LDIFMODIFY_CANNOT_DELETE_AFTER_ADD_611=\u65e0\u6cd5\u5220\u9664\u6761\u76ee %s\uff0c\u56e0\u4e3a\u4e4b\u524d\u5df2\u5c06\u5176\u6dfb\u52a0\u5230\u66f4\u6539\u96c6\u4e2d\u3002LDIF \u4fee\u6539\u5de5\u5177\u4e0d\u652f\u6301\u6b64\u64cd\u4f5c
MILD_ERR_LDIFMODIFY_CANNOT_MODIFY_ADDED_OR_DELETED_612=\u65e0\u6cd5\u4fee\u6539\u6761\u76ee %s\uff0c\u56e0\u4e3a\u4e4b\u524d\u5df2\u5c06\u5176\u6dfb\u52a0\u5230\u66f4\u6539\u96c6\u4e2d\u6216\u5df2\u4ece\u66f4\u6539\u96c6\u4e2d\u5220\u9664\u3002LDIF \u4fee\u6539\u5de5\u5177\u4e0d\u652f\u6301\u6b64\u64cd\u4f5c
MILD_ERR_LDIFMODIFY_MODDN_NOT_SUPPORTED_613=\u65e0\u6cd5\u5904\u7406\u9488\u5bf9\u6761\u76ee %s \u7684\u4fee\u6539 DN \u64cd\u4f5c\uff0c\u56e0\u4e3a LDIF \u4fee\u6539\u5de5\u5177\u4e0d\u652f\u6301\u4fee\u6539 DN \u64cd\u4f5c
MILD_ERR_LDIFMODIFY_UNKNOWN_CHANGETYPE_614=\u6761\u76ee %s \u5177\u6709\u672a\u77e5\u7684\u66f4\u6539\u7c7b\u578b %s
MILD_ERR_LDIFMODIFY_ADD_ALREADY_EXISTS_615=\u65e0\u6cd5\u6dfb\u52a0\u6761\u76ee %s\uff0c\u56e0\u4e3a\u6570\u636e\u96c6\u4e2d\u5df2\u5b58\u5728\u8be5\u6761\u76ee
MILD_ERR_LDIFMODIFY_DELETE_NO_SUCH_ENTRY_616=\u65e0\u6cd5\u5220\u9664\u6761\u76ee %s\uff0c\u56e0\u4e3a\u6570\u636e\u96c6\u4e2d\u4e0d\u5b58\u5728\u8be5\u6761\u76ee
MILD_ERR_LDIFMODIFY_MODIFY_NO_SUCH_ENTRY_617=\u65e0\u6cd5\u4fee\u6539\u6761\u76ee %s\uff0c\u56e0\u4e3a\u6570\u636e\u96c6\u4e2d\u4e0d\u5b58\u5728\u8be5\u6761\u76ee
INFO_LDIFMODIFY_DESCRIPTION_SOURCE_620=\u5305\u542b\u8981\u66f4\u65b0\u7684\u6570\u636e\u7684 LDIF \u6587\u4ef6
INFO_LDIFMODIFY_DESCRIPTION_CHANGES_621=\u5305\u542b\u8981\u5e94\u7528\u7684\u66f4\u6539\u7684 LDIF \u6587\u4ef6
INFO_LDIFMODIFY_DESCRIPTION_TARGET_622=\u5e94\u5728\u5176\u4e2d\u5199\u5165\u66f4\u65b0\u6570\u636e\u7684\u6587\u4ef6
INFO_LDIFMODIFY_DESCRIPTION_HELP_623=\u663e\u793a\u6b64\u7528\u6cd5\u4fe1\u606f
###SEVERE_ERR_LDIFMODIFY_CANNOT_INITIALIZE_JMX_626=An error occurred while \
### attempting to initialize the Directory Server JMX subsystem based on the \
### information in configuration file %s:  %s
###SEVERE_ERR_LDIFMODIFY_CANNOT_INITIALIZE_CONFIG_627=An error occurred while \
### attempting to process the Directory Server configuration file %s:  %s
###SEVERE_ERR_LDIFMODIFY_CANNOT_INITIALIZE_SCHEMA_628=An error occurred while \
### attempting to initialize the Directory Server schema based on the information \
### in configuration file %s:  %s
###SEVERE_ERR_LDIFMODIFY_SOURCE_DOES_NOT_EXIST_629=The source LDIF file %s does \
### not exist
###SEVERE_ERR_LDIFMODIFY_CANNOT_OPEN_SOURCE_630=Unable to open the source LDIF \
### file %s:  %s
###SEVERE_ERR_LDIFMODIFY_CHANGES_DOES_NOT_EXIST_631=The changes LDIF file %s \
### does not exist
###SEVERE_ERR_LDIFMODIFY_CANNOT_OPEN_CHANGES_632=Unable to open the changes LDIF \
### file %s:  %s
###SEVERE_ERR_LDIFMODIFY_CANNOT_OPEN_TARGET_633=Unable to open the target LDIF \
### file %s for writing:  %s
###SEVERE_ERR_LDIFMODIFY_ERROR_PROCESSING_LDIF_634=An error occurred while \
### processing the requested changes:  %s
INFO_LDAPPWMOD_DESCRIPTION_HOST_635=\u76ee\u5f55\u670d\u52a1\u5668\u7cfb\u7edf\u5730\u5740
INFO_LDAPPWMOD_DESCRIPTION_PORT_636=\u76ee\u5f55\u670d\u52a1\u5668\u7528\u4e8e\u4fa6\u542c LDAP \u5ba2\u6237\u7aef\u8fde\u63a5\u7684\u7aef\u53e3
INFO_LDAPPWMOD_DESCRIPTION_BIND_DN_637=\u7528\u4e8e\u7ed1\u5b9a\u5230\u670d\u52a1\u5668\u7684 DN
INFO_LDAPPWMOD_DESCRIPTION_BIND_PW_638=\u7528\u4e8e\u7ed1\u5b9a\u5230\u670d\u52a1\u5668\u7684\u5bc6\u7801
INFO_LDAPPWMOD_DESCRIPTION_BIND_PW_FILE_639=\u5305\u542b\u7528\u4e8e\u7ed1\u5b9a\u5230\u670d\u52a1\u5668\u7684\u5bc6\u7801\u7684\u6587\u4ef6\u7684\u8def\u5f84
INFO_LDAPPWMOD_DESCRIPTION_AUTHZID_640=\u5e94\u66f4\u6539\u5bc6\u7801\u7684\u7528\u6237\u6761\u76ee\u7684\u6388\u6743 ID
INFO_LDAPPWMOD_DESCRIPTION_PROVIDE_DN_FOR_AUTHZID_641=\u5c06\u7ed1\u5b9a DN \u7528\u4f5c\u5bc6\u7801\u4fee\u6539\u64cd\u4f5c\u7684\u6388\u6743 ID
INFO_LDAPPWMOD_DESCRIPTION_NEWPW_642=\u4e3a\u76ee\u6807\u7528\u6237\u63d0\u4f9b\u7684\u65b0\u5bc6\u7801
INFO_LDAPPWMOD_DESCRIPTION_NEWPWFILE_643=\u5305\u542b\u4e3a\u76ee\u6807\u7528\u6237\u63d0\u4f9b\u7684\u65b0\u5bc6\u7801\u7684\u6587\u4ef6\u7684\u8def\u5f84
INFO_LDAPPWMOD_DESCRIPTION_CURRENTPW_644=\u76ee\u6807\u7528\u6237\u7684\u5f53\u524d\u5bc6\u7801
INFO_LDAPPWMOD_DESCRIPTION_CURRENTPWFILE_645=\u5305\u542b\u76ee\u6807\u7528\u6237\u7684\u5f53\u524d\u5bc6\u7801\u7684\u6587\u4ef6\u7684\u8def\u5f84
INFO_LDAPPWMOD_DESCRIPTION_USE_SSL_646=\u4f7f\u7528 SSL \u786e\u4fdd\u4e0e\u76ee\u5f55\u670d\u52a1\u5668\u8fdb\u884c\u5b89\u5168\u901a\u4fe1
INFO_LDAPPWMOD_DESCRIPTION_USE_STARTTLS_647=\u4f7f\u7528 StartTLS \u786e\u4fdd\u4e0e\u76ee\u5f55\u670d\u52a1\u5668\u8fdb\u884c\u5b89\u5168\u901a\u4fe1
INFO_LDAPPWMOD_DESCRIPTION_BLIND_TRUST_648=\u76f2\u76ee\u4fe1\u4efb\u670d\u52a1\u5668\u63d0\u4f9b\u7684\u4efb\u4f55 SSL \u8bc1\u4e66
INFO_LDAPPWMOD_DESCRIPTION_KEYSTORE_649=\u4e0e\u670d\u52a1\u5668\u5efa\u7acb SSL/TLS \u901a\u4fe1\u65f6\u4f7f\u7528\u7684\u5bc6\u94a5\u5e93\u7684\u8def\u5f84
INFO_LDAPPWMOD_DESCRIPTION_KEYSTORE_PINFILE_650=\u5305\u542b\u8bbf\u95ee\u5bc6\u94a5\u5e93\u5185\u5bb9\u6240\u9700\u7684 PIN \u7684\u6587\u4ef6\u7684\u8def\u5f84
INFO_LDAPPWMOD_DESCRIPTION_TRUSTSTORE_651=\u4e0e\u670d\u52a1\u5668\u5efa\u7acb SSL/TLS \u901a\u4fe1\u65f6\u4f7f\u7528\u7684\u4fe1\u4efb\u5e93\u7684\u8def\u5f84
INFO_LDAPPWMOD_DESCRIPTION_TRUSTSTORE_PINFILE_652=\u5305\u542b\u8bbf\u95ee\u4fe1\u4efb\u5e93\u5185\u5bb9\u6240\u9700\u7684 PIN \u7684\u6587\u4ef6\u7684\u8def\u5f84
###SEVERE_ERR_LDAPPWMOD_CONFLICTING_ARGS_656=The %s and %s arguments may not be \
### provided together
###SEVERE_ERR_LDAPPWMOD_BIND_DN_AND_PW_MUST_BE_TOGETHER_657=If either a bind DN \
### or bind password is provided, then the other must be given as well
###SEVERE_ERR_LDAPPWMOD_ANON_REQUIRES_AUTHZID_AND_CURRENTPW_658=If a bind DN and \
### password are not provided, then an authorization ID and current password must \
### be given
###SEVERE_ERR_LDAPPWMOD_DEPENDENT_ARGS_659=If the %s argument is provided, then \
### the  %s argument must also be given
###SEVERE_ERR_LDAPPWMOD_ERROR_INITIALIZING_SSL_660=Unable to initialize SSL/TLS \
### support:  %s
###SEVERE_ERR_LDAPPWMOD_CANNOT_CONNECT_661=An error occurred while attempting to \
### connect to the Directory Server:  %s
###SEVERE_ERR_LDAPPWMOD_CANNOT_SEND_PWMOD_REQUEST_662=Unable to send the LDAP \
### password modify request:  %s
###SEVERE_ERR_LDAPPWMOD_CANNOT_READ_PWMOD_RESPONSE_663=Unable to read the LDAP \
### password modify response:  %s
###SEVERE_ERR_LDAPPWMOD_FAILED_664=The LDAP password modify operation failed \
### with result code %d
###SEVERE_ERR_LDAPPWMOD_FAILURE_ERROR_MESSAGE_665=Error Message:  %s
###SEVERE_ERR_LDAPPWMOD_FAILURE_MATCHED_DN_666=Matched DN:  %s
INFO_LDAPPWMOD_SUCCESSFUL_667=LDAP \u5bc6\u7801\u4fee\u6539\u64cd\u4f5c\u6210\u529f
INFO_LDAPPWMOD_ADDITIONAL_INFO_668=\u5176\u4ed6\u4fe1\u606f: %s
INFO_LDAPPWMOD_GENERATED_PASSWORD_669=\u751f\u6210\u7684\u5bc6\u7801: %s
###SEVERE_ERR_LDAPPWMOD_UNRECOGNIZED_VALUE_TYPE_670=Unable to decode the \
### password modify response value because it contained an invalid element type \
### of %s
###SEVERE_ERR_LDAPPWMOD_COULD_NOT_DECODE_RESPONSE_VALUE_671=Unable to decode the \
### password modify response value:  %s
###SEVERE_ERR_INSTALLDS_IMPORT_UNSUCCESSFUL_672=Import failed
INFO_COMPARE_CANNOT_BASE64_DECODE_ASSERTION_VALUE_673=\u6307\u793a\u58f0\u660e\u503c\u4e3a base64 \u7f16\u7801\uff0c\u4f46\u5728\u5c1d\u8bd5\u5bf9\u8be5\u503c\u8fdb\u884c\u89e3\u7801\u65f6\u51fa\u73b0\u9519\u8bef
INFO_COMPARE_CANNOT_READ_ASSERTION_VALUE_FROM_FILE_674=\u65e0\u6cd5\u4ece\u6307\u5b9a\u7684\u6587\u4ef6\u4e2d\u8bfb\u53d6\u58f0\u660e\u503c: %s
INFO_WAIT4DEL_DESCRIPTION_TARGET_FILE_675=\u76d1\u89c6\u5220\u9664\u60c5\u51b5\u7684\u6587\u4ef6\u7684\u8def\u5f84
INFO_WAIT4DEL_DESCRIPTION_LOG_FILE_676=\u5305\u542b\u8981\u76d1\u89c6\u7684\u65e5\u5fd7\u8f93\u51fa\u7684\u6587\u4ef6\u7684\u8def\u5f84
INFO_WAIT4DEL_DESCRIPTION_TIMEOUT_677=\u5728\u9000\u51fa\u524d\u7b49\u5f85\u5220\u9664\u76ee\u6807\u6587\u4ef6\u7684\u6700\u957f\u65f6\u95f4\uff08\u4ee5\u79d2\u4e3a\u5355\u4f4d\uff09
INFO_WAIT4DEL_DESCRIPTION_HELP_678=\u663e\u793a\u6b64\u7528\u6cd5\u4fe1\u606f
###SEVERE_WARN_WAIT4DEL_CANNOT_OPEN_LOG_FILE_681=WARNING:  Unable to open log \
### file %s for reading:  %s
###SEVERE_ERR_LDAPCOMPARE_NO_DNS_682=No entry DNs provided for the compare \
### operation
INFO_BACKUPDB_TOOL_DESCRIPTION_683=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u5907\u4efd\u4e00\u4e2a\u6216\u591a\u4e2a\u76ee\u5f55\u670d\u52a1\u5668\u540e\u7aef
INFO_CONFIGDS_TOOL_DESCRIPTION_684=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u5b9a\u4e49\u76ee\u5f55\u670d\u52a1\u5668\u7684\u57fa\u672c\u914d\u7f6e
INFO_ENCPW_TOOL_DESCRIPTION_685=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u901a\u8fc7\u6307\u5b9a\u7684\u5b58\u50a8\u65b9\u6848\u5bf9\u7528\u6237\u5bc6\u7801\u8fdb\u884c\u7f16\u7801\uff0c\u6216\u786e\u5b9a\u7ed9\u5b9a\u7684\u660e\u6587\u503c\u662f\u5426\u4e0e\u63d0\u4f9b\u7684\u5df2\u7f16\u7801\u5bc6\u7801\u76f8\u5339\u914d
INFO_LDIFEXPORT_TOOL_DESCRIPTION_686=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u4ece\u76ee\u5f55\u670d\u52a1\u5668\u540e\u7aef\u4ee5 LDIF \u683c\u5f0f\u5bfc\u51fa\u6570\u636e
INFO_LDIFIMPORT_TOOL_DESCRIPTION_687=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u5c06 LDIF \u6570\u636e\u5bfc\u5165\u76ee\u5f55\u670d\u52a1\u5668\u540e\u7aef
INFO_INSTALLDS_TOOL_DESCRIPTION_688=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u8bbe\u7f6e\u76ee\u5f55\u670d\u52a1\u5668
INFO_LDAPCOMPARE_TOOL_DESCRIPTION_689=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u5728\u76ee\u5f55\u670d\u52a1\u5668\u4e2d\u6267\u884c LDAP \u6bd4\u8f83\u64cd\u4f5c
INFO_LDAPDELETE_TOOL_DESCRIPTION_690=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u5728\u76ee\u5f55\u670d\u52a1\u5668\u4e2d\u6267\u884c LDAP \u5220\u9664\u64cd\u4f5c
INFO_LDAPMODIFY_TOOL_DESCRIPTION_691=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u5728\u76ee\u5f55\u670d\u52a1\u5668\u4e2d\u6267\u884c LDAP \u4fee\u6539\u3001\u6dfb\u52a0\u3001\u5220\u9664\u548c\u4fee\u6539 DN \u64cd\u4f5c
INFO_LDAPPWMOD_TOOL_DESCRIPTION_692=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u5728\u76ee\u5f55\u670d\u52a1\u5668\u4e2d\u6267\u884c LDAP \u5bc6\u7801\u4fee\u6539\u64cd\u4f5c
INFO_LDAPSEARCH_TOOL_DESCRIPTION_693=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u5728\u76ee\u5f55\u670d\u52a1\u5668\u4e2d\u6267\u884c LDAP \u641c\u7d22\u64cd\u4f5c
INFO_LDIFDIFF_TOOL_DESCRIPTION_694=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u6bd4\u8f83\u4e24\u4e2a LDIF \u6587\u4ef6\u5e76\u4ee5 LDIF \u683c\u5f0f\u62a5\u544a\u5dee\u5f02
INFO_LDIFMODIFY_TOOL_DESCRIPTION_695=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u5bf9 LDIF \u6587\u4ef6\u4e2d\u7684\u6570\u636e\u5e94\u7528\u4e00\u7ec4\u4fee\u6539\u3001\u6dfb\u52a0\u548c\u5220\u9664\u64cd\u4f5c
INFO_LDIFSEARCH_TOOL_DESCRIPTION_696=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u5bf9 LDIF \u6587\u4ef6\u4e2d\u7684\u6570\u636e\u6267\u884c\u641c\u7d22\u64cd\u4f5c
INFO_MAKELDIF_TOOL_DESCRIPTION_697=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u57fa\u4e8e\u6a21\u677f\u6587\u4ef6\u4e2d\u7684\u5b9a\u4e49\u751f\u6210 LDIF \u6570\u636e
INFO_RESTOREDB_TOOL_DESCRIPTION_698=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u6062\u590d\u76ee\u5f55\u670d\u52a1\u5668\u540e\u7aef\u5907\u4efd
INFO_STOPDS_TOOL_DESCRIPTION_699=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u8bf7\u6c42\u76ee\u5f55\u670d\u52a1\u5668\u505c\u6b62\u8fd0\u884c\u6216\u6267\u884c\u91cd\u65b0\u542f\u52a8
INFO_VERIFYINDEX_TOOL_DESCRIPTION_700=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u786e\u4fdd\u57fa\u4e8e Berkeley \u6570\u636e\u5e93 Java Edition \u7684\u540e\u7aef\u4e2d\u7684\u7d22\u5f15\u6570\u636e\u4fdd\u6301\u4e00\u81f4
INFO_WAIT4DEL_TOOL_DESCRIPTION_701=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u7b49\u5f85\u4ece\u6587\u4ef6\u7cfb\u7edf\u4e2d\u5220\u9664\u6587\u4ef6
###SEVERE_ERR_TOOL_CONFLICTING_ARGS_702=You may not provide both the --%s and \
### the --%s arguments
###SEVERE_ERR_LDAPCOMPARE_NO_ATTR_703=No attribute was specified to use as the \
### target for the comparison
###SEVERE_ERR_LDAPCOMPARE_INVALID_ATTR_STRING_704=Invalid attribute string '%s'. \
### The attribute string must be in one of the following forms: \
### 'attribute:value', 'attribute::base64value', or 'attribute:<valueFilePath'
###SEVERE_ERR_TOOL_INVALID_CONTROL_STRING_705=Invalid control specification '%s'
###SEVERE_ERR_TOOL_SASLEXTERNAL_NEEDS_SSL_OR_TLS_706=SASL EXTERNAL \
### authentication may only be requested if SSL or StartTLS is used
###SEVERE_ERR_TOOL_SASLEXTERNAL_NEEDS_KEYSTORE_707=SASL EXTERNAL authentication \
### may only be used if a client certificate key store is specified
INFO_LDAPSEARCH_PSEARCH_CHANGE_TYPE_708=# \u6301\u4e45\u6027\u641c\u7d22\u66f4\u6539\u7c7b\u578b: %s
INFO_LDAPSEARCH_PSEARCH_PREVIOUS_DN_709=# \u4ee5\u524d\u7684\u6301\u4e45\u6027\u641c\u7d22\u6761\u76ee DN: %s
INFO_LDAPSEARCH_ACCTUSABLE_HEADER_710=# \u5e10\u6237\u53ef\u7528\u6027\u54cd\u5e94\u63a7\u5236
INFO_LDAPSEARCH_ACCTUSABLE_IS_USABLE_711=#   \u5e10\u6237\u53ef\u7528
INFO_LDAPSEARCH_ACCTUSABLE_TIME_UNTIL_EXPIRATION_712=#   \u8ddd\u5bc6\u7801\u5230\u671f\u7684\u65f6\u95f4: %s
INFO_LDAPSEARCH_ACCTUSABLE_NOT_USABLE_713=#   \u5e10\u6237\u4e0d\u53ef\u7528
INFO_LDAPSEARCH_ACCTUSABLE_ACCT_INACTIVE_714=#   \u5df2\u53d6\u6d88\u6fc0\u6d3b\u5e10\u6237
INFO_LDAPSEARCH_ACCTUSABLE_PW_RESET_715=#   \u5df2\u91cd\u7f6e\u5bc6\u7801
INFO_LDAPSEARCH_ACCTUSABLE_PW_EXPIRED_716=#   \u5bc6\u7801\u5df2\u8fc7\u671f
INFO_LDAPSEARCH_ACCTUSABLE_REMAINING_GRACE_717=#   \u8fc7\u6e21\u767b\u5f55\u5269\u4f59\u6b21\u6570: %d
INFO_LDAPSEARCH_ACCTUSABLE_LOCKED_718=#   \u5e10\u6237\u5df2\u9501\u5b9a
INFO_LDAPSEARCH_ACCTUSABLE_TIME_UNTIL_UNLOCK_719=#   \u8ddd\u89e3\u9664\u5e10\u6237\u9501\u5b9a\u7684\u65f6\u95f4: %s
INFO_DESCRIPTION_KEYSTOREPASSWORD_FILE_720=\u8bc1\u4e66\u5bc6\u94a5\u5e93 PIN \u6587\u4ef6
INFO_DESCRIPTION_TRUSTSTOREPASSWORD_721=\u8bc1\u4e66\u4fe1\u4efb\u5e93 PIN
INFO_DESCRIPTION_TRUSTSTOREPASSWORD_FILE_722=\u8bc1\u4e66\u4fe1\u4efb\u5e93 PIN \u6587\u4ef6
INFO_LISTBACKENDS_TOOL_DESCRIPTION_723=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u5217\u51fa\u5728\u76ee\u5f55\u670d\u52a1\u5668\u4e2d\u914d\u7f6e\u7684\u540e\u7aef\u548c\u57fa DN
INFO_LISTBACKENDS_DESCRIPTION_BACKEND_ID_726=\u8981\u5217\u51fa\u57fa DN \u7684\u540e\u7aef\u7684 ID
INFO_LISTBACKENDS_DESCRIPTION_BASE_DN_727=\u8981\u5217\u51fa\u540e\u7aef ID \u7684\u57fa DN
INFO_LISTBACKENDS_DESCRIPTION_HELP_728=\u663e\u793a\u6b64\u7528\u6cd5\u4fe1\u606f
###SEVERE_ERR_LISTBACKENDS_CANNOT_GET_BACKENDS_734=An error occurred while \
### trying to read backend information from the server configuration:  %s
###SEVERE_ERR_LISTBACKENDS_INVALID_DN_735=The provided base DN value '%s' could \
### not be parsed as a valid DN:  %s
INFO_LISTBACKENDS_NOT_BASE_DN_736=\u63d0\u4f9b\u7684 DN '%s' \u4e0d\u662f\u76ee\u5f55\u670d\u52a1\u5668\u4e2d\u914d\u7f6e\u7684\u4efb\u4f55\u540e\u7aef\u7684\u57fa DN
INFO_LISTBACKENDS_NO_BACKEND_FOR_DN_737=\u63d0\u4f9b\u7684 DN '%s' \u4e0d\u5728\u76ee\u5f55\u670d\u52a1\u5668\u4e2d\u914d\u7f6e\u7684\u4efb\u4f55\u540e\u7aef\u7684\u57fa DN \u4e0b\u9762
INFO_LISTBACKENDS_DN_BELOW_BASE_738=\u63d0\u4f9b\u7684 DN '%1$s' \u5728\u540e\u7aef '%3$s' \u7684\u914d\u7f6e\u57fa DN '%2$s' \u4e0b\u9762
INFO_LISTBACKENDS_BASE_FOR_ID_739=\u63d0\u4f9b\u7684 DN '%s' \u662f\u540e\u7aef '%s' \u7684\u57fa DN
INFO_LISTBACKENDS_LABEL_BACKEND_ID_740=\u540e\u7aef ID
INFO_LISTBACKENDS_LABEL_BASE_DN_741=\u57fa DN
###SEVERE_ERR_LISTBACKENDS_NO_SUCH_BACKEND_742=There is no backend with ID '%s' \
### in the server configuration
###SEVERE_ERR_LISTBACKENDS_NO_VALID_BACKENDS_743=None of the provided backend \
### IDs exist in the server configuration
###SEVERE_ERR_ENCPW_INVALID_ENCODED_USERPW_748=The provided password is not a \
### valid encoded user password value:  %s
INFO_ENCPW_DESCRIPTION_USE_COMPARE_RESULT_749=\u5c06 LDAP \u6bd4\u8f83\u7ed3\u679c\u7528\u4f5c\u5bc6\u7801\u6bd4\u8f83\u7684\u9000\u51fa\u4ee3\u7801
INFO_DESCRIPTION_COUNT_ENTRIES_750=\u8ba1\u7b97\u670d\u52a1\u5668\u8fd4\u56de\u7684\u6761\u76ee\u6570
INFO_LDAPSEARCH_MATCHING_ENTRY_COUNT_751=# \u5339\u914d\u6761\u76ee\u603b\u6570: %d
INFO_INSTALLDS_DESCRIPTION_CLI_752=\u4f7f\u7528\u547d\u4ee4\u884c\u5b89\u88c5\u3002\u5982\u679c\u672a\u6307\u5b9a\uff0c\u5c06\u4f1a\u542f\u52a8\u56fe\u5f62\u754c\u9762\u3002\u4ec5\u5f53\u6307\u5b9a\u6b64\u9009\u9879\u65f6\uff0c\u624d\u8003\u8651\u4f7f\u7528\u5176\u4f59\u9009\u9879\uff08\u4e0d\u5305\u62ec\u201c\u5e2e\u52a9\u201d\u548c\u201c\u7248\u672c\u201d\uff09
INFO_INSTALLDS_DESCRIPTION_SAMPLE_DATA_753=\u6307\u5b9a\u5e94\u4f7f\u7528\u6307\u5b9a\u6570\u91cf\u7684\u6837\u4f8b\u6761\u76ee\u586b\u5145\u6570\u636e\u5e93
INFO_INSTALLDS_HEADER_POPULATE_TYPE_754=\u7528\u4e8e\u586b\u5145\u6570\u636e\u5e93\u7684\u9009\u9879:
INFO_INSTALLDS_POPULATE_OPTION_BASE_ONLY_755=\u4ec5\u521b\u5efa\u57fa\u6761\u76ee
INFO_INSTALLDS_POPULATE_OPTION_LEAVE_EMPTY_756=\u5c06\u6570\u636e\u5e93\u4fdd\u7559\u4e3a\u7a7a
INFO_INSTALLDS_POPULATE_OPTION_IMPORT_LDIF_757=\u4ece LDIF \u6587\u4ef6\u4e2d\u5bfc\u5165\u6570\u636e
INFO_INSTALLDS_POPULATE_OPTION_GENERATE_SAMPLE_758=\u52a0\u8f7d\u81ea\u52a8\u751f\u6210\u7684\u6837\u4f8b\u6570\u636e
INFO_INSTALLDS_PROMPT_POPULATE_CHOICE_759=\u6570\u636e\u5e93\u586b\u5145\u9009\u9879:
###SEVERE_ERR_INSTALLDS_NO_SUCH_LDIF_FILE_780=ERROR:  The specified LDIF file %s \
### does not exist
INFO_INSTALLDS_PROMPT_NUM_ENTRIES_781=\u8bf7\u6307\u5b9a\u8981\u751f\u6210\u7684\u7528\u6237\u6761\u76ee\u6570:
###SEVERE_ERR_INSTALLDS_CANNOT_CREATE_TEMPLATE_FILE_782=ERROR:  Cannot create \
### the template file for generating sample data:  %s
INFO_LDAPPWMOD_DESCRIPTION_KEYSTORE_PIN_783=\u8bbf\u95ee\u5bc6\u94a5\u5e93\u5185\u5bb9\u6240\u9700\u7684 PIN
INFO_LDAPPWMOD_DESCRIPTION_TRUSTSTORE_PIN_784=\u8bbf\u95ee\u4fe1\u4efb\u5e93\u5185\u5bb9\u6240\u9700\u7684 PIN
INFO_LDIFEXPORT_DESCRIPTION_EXCLUDE_OPERATIONAL_785=\u4ece LDIF \u5bfc\u51fa\u4e2d\u6392\u9664\u64cd\u4f5c\u5c5e\u6027
INFO_LDAPPWMOD_PWPOLICY_WARNING_786=\u5bc6\u7801\u7b56\u7565\u8b66\u544a: %s = %d
INFO_LDAPPWMOD_PWPOLICY_ERROR_787=\u5bc6\u7801\u7b56\u7565\u9519\u8bef: %s
MILD_ERR_LDAPPWMOD_CANNOT_DECODE_PWPOLICY_CONTROL_788=\u65e0\u6cd5\u5bf9\u5bc6\u7801\u7b56\u7565\u54cd\u5e94\u63a7\u5236\u8fdb\u884c\u89e3\u7801: %s
###SEVERE_ERR_LDAPAUTH_CONNECTION_CLOSED_WITHOUT_BIND_RESPONSE_789=The \
### connection to the Directory Server was closed before the bind response could \
### be read
INFO_DESCRIPTION_SIMPLE_PAGE_SIZE_790=\u5c06\u7b80\u5355\u5206\u9875\u7ed3\u679c\u63a7\u5236\u7528\u4e8e\u7ed9\u5b9a\u9875\u9762\u5927\u5c0f
###SEVERE_ERR_PAGED_RESULTS_REQUIRES_SINGLE_FILTER_791=The simple paged results \
### control may only be used with a single search filter
###SEVERE_ERR_PAGED_RESULTS_CANNOT_DECODE_792=Unable to decode the simple paged \
### results control from the search response:  %s
###SEVERE_ERR_PAGED_RESULTS_RESPONSE_NOT_FOUND_793=The simple paged results \
### response control was not found in the search result done message from the \
### server
INFO_LDIFDIFF_DESCRIPTION_SINGLE_VALUE_CHANGES_794=\u5e94\u5c06\u6bcf\u4e2a\u5c5e\u6027\u7ea7\u522b\u7684\u66f4\u6539\u4f5c\u4e3a\u6bcf\u4e2a\u5c5e\u6027\u503c\u7684\u5355\u72ec\u4fee\u6539\u8fdb\u884c\u5199\u5165\uff0c\u800c\u4e0d\u662f\u4f5c\u4e3a\u6bcf\u4e2a\u6761\u76ee\u7684\u4fee\u6539\u5199\u5165
###SEVERE_ERR_PROMPTTM_REJECTING_CLIENT_CERT_795=Rejecting client certificate \
### chain because the prompt trust manager may only be used to trust server \
### certificates
###SEVERE_WARN_PROMPTTM_NO_SERVER_CERT_CHAIN_796=WARNING:  The server did not \
### present a certificate chain.  Do you still wish to attempt connecting to the \
### target server?
###SEVERE_WARN_PROMPTTM_CERT_EXPIRED_797=WARNING:  The server certificate is \
### expired (expiration time:  %s)
###SEVERE_WARN_PROMPTTM_CERT_NOT_YET_VALID_798=WARNING:  The server certificate \
### will not be valid until %s
INFO_PROMPTTM_SERVER_CERT_799=\u670d\u52a1\u5668\u6b63\u5728\u4f7f\u7528\u4ee5\u4e0b\u8bc1\u4e66: \n    \u4e3b\u4f53 DN: %s\n    \u9881\u53d1\u8005 DN: %s\n    \u6709\u6548\u671f: %s \u81f3 %s\n\u662f\u5426\u8981\u4fe1\u4efb\u6b64\u8bc1\u4e66\u5e76\u7ee7\u7eed\u8fde\u63a5\u670d\u52a1\u5668\uff1f
INFO_PROMPTTM_YESNO_PROMPT_800=\u8bf7\u8f93\u5165\u201c\u662f\u201d\u6216\u201c\u5426\u201d:
###SEVERE_ERR_PROMPTTM_USER_REJECTED_801=The server certificate has been \
### rejected by the user
INFO_STOPDS_SERVER_ALREADY_STOPPED_802=\u5df2\u505c\u6b62\u670d\u52a1\u5668
INFO_STOPDS_GOING_TO_STOP_803=\u6b63\u5728\u505c\u6b62\u670d\u52a1\u5668...\n
INFO_STOPDS_CHECK_STOPPABILITY_804=\u7528\u4e8e\u786e\u5b9a\u662f\u5426\u53ef\u4ee5\u505c\u6b62\u670d\u52a1\u5668\u4ee5\u53ca\u7528\u6765\u505c\u6b62\u670d\u52a1\u5668\u7684\u6a21\u5f0f
INFO_DESCRIPTION_CERT_NICKNAME_805=\u7528\u4e8e SSL \u5ba2\u6237\u7aef\u9a8c\u8bc1\u7684\u8bc1\u4e66\u7684\u522b\u540d
INFO_CONFIGDS_DESCRIPTION_JMX_PORT_806=\u76ee\u5f55\u670d\u52a1\u5668\u4fa6\u542c JMX \u901a\u4fe1\u65f6\u5e94\u4f7f\u7528\u7684\u7aef\u53e3
###SEVERE_ERR_CONFIGDS_CANNOT_UPDATE_JMX_PORT_807=An error occurred while \
### attempting to update the port on which to listen for JMX communication:  %s
INFO_INSTALLDS_DESCRIPTION_JMXPORT_808=\u76ee\u5f55\u670d\u52a1\u5668\u4fa6\u542c JMX \u901a\u4fe1\u65f6\u5e94\u4f7f\u7528\u7684\u7aef\u53e3
INFO_INSTALLDS_PROMPT_JMXPORT_809=\u60a8\u5e0c\u671b\u76ee\u5f55\u670d\u52a1\u5668\u4f7f\u7528\u54ea\u4e2a\u7aef\u53e3\u63a5\u53d7\u6765\u81ea JMX \u5ba2\u6237\u7aef\u7684\u8fde\u63a5\uff1f
###SEVERE_ERR_TOOL_RESULT_CODE_810=Result Code:  %d (%s)
###SEVERE_ERR_TOOL_ERROR_MESSAGE_811=Additional Information:  %s
###SEVERE_ERR_TOOL_MATCHED_DN_812=Matched DN:  %s
###SEVERE_ERR_WINDOWS_SERVICE_NOT_FOUND_813=Could not find the service name for \
### the server
###SEVERE_ERR_WINDOWS_SERVICE_START_ERROR_814=An unexpected error occurred \
### starting the server as a windows service
###SEVERE_ERR_WINDOWS_SERVICE_STOP_ERROR_815=An unexpected error occurred \
### stopping the server windows service
INFO_CONFIGURE_WINDOWS_SERVICE_TOOL_DESCRIPTION_816=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u5c06\u670d\u52a1\u5668\u914d\u7f6e\u4e3a Windows \u670d\u52a1
INFO_CONFIGURE_WINDOWS_SERVICE_DESCRIPTION_SHOWUSAGE_817=\u663e\u793a\u6b64\u7528\u6cd5\u4fe1\u606f
INFO_CONFIGURE_WINDOWS_SERVICE_DESCRIPTION_ENABLE_818=\u5c06\u670d\u52a1\u5668\u4f5c\u4e3a Windows \u670d\u52a1\u542f\u7528
INFO_CONFIGURE_WINDOWS_SERVICE_DESCRIPTION_DISABLE_819=\u5c06\u670d\u52a1\u5668\u4f5c\u4e3a Windows \u670d\u52a1\u7981\u7528\u5e76\u505c\u6b62\u670d\u52a1\u5668
INFO_CONFIGURE_WINDOWS_SERVICE_DESCRIPTION_STATE_820=\u63d0\u4f9b\u6709\u5173\u670d\u52a1\u5668\u4f5c\u4e3a Windows \u670d\u52a1\u7684\u72b6\u6001\u7684\u4fe1\u606f
###SEVERE_ERR_CONFIGURE_WINDOWS_SERVICE_TOO_MANY_ARGS_823=You can only provide \
### one of the following arguments:\nenableService, disableService, serviceState \
### or cleanupService
###SEVERE_ERR_CONFIGURE_WINDOWS_SERVICE_TOO_FEW_ARGS_824=You must provide at \
### least one of the following arguments:\nenableService, disableService or \
### serviceState or cleanupService
INFO_WINDOWS_SERVICE_NAME_825=OpenDS
INFO_WINDOWS_SERVICE_DESCRIPTION_826=\u4e0b\u4e00\u4ee3\u5f00\u6e90\u76ee\u5f55\u670d\u52a1\u5668\u3002\u5b89\u88c5\u8def\u5f84: %s
INFO_WINDOWS_SERVICE_SUCCESSULLY_ENABLED_827=\u5df2\u6210\u529f\u542f\u7528\u670d\u52a1\u5668\u4ee5\u4f5c\u4e3a Windows \u670d\u52a1\u8fd0\u884c
INFO_WINDOWS_SERVICE_ALREADY_ENABLED_828=\u5df2\u542f\u7528\u670d\u52a1\u5668\u4ee5\u4f5c\u4e3a Windows \u670d\u52a1\u8fd0\u884c
###SEVERE_ERR_WINDOWS_SERVICE_NAME_ALREADY_IN_USE_829=The server could not be \
### enabled to run as a Windows service.  The service name is already in use
###SEVERE_ERR_WINDOWS_SERVICE_ENABLE_ERROR_830=An unexpected error occurred \
### trying to enable the server as a Windows service.%nCheck that you have \
### administrator rights (only Administrators can enable the server to run as a \
### Windows Service)
INFO_WINDOWS_SERVICE_SUCCESSULLY_DISABLED_831=\u5df2\u6210\u529f\u5c06\u670d\u52a1\u5668\u4f5c\u4e3a Windows \u670d\u52a1\u7981\u7528
INFO_WINDOWS_SERVICE_ALREADY_DISABLED_832=\u5df2\u5c06\u670d\u52a1\u5668\u4f5c\u4e3a Windows \u670d\u52a1\u7981\u7528
###SEVERE_WARN_WINDOWS_SERVICE_MARKED_FOR_DELETION_833=The server has been marked \
### for deletion as a Windows Service
###SEVERE_ERR_WINDOWS_SERVICE_DISABLE_ERROR_834=An unexpected error occurred \
### trying to disable the server as a Windows service%nCheck that you have \
### administrator rights (only Administrators can disable the server as a Windows \
### Service)
INFO_WINDOWS_SERVICE_ENABLED_835=\u5df2\u5c06\u670d\u52a1\u5668\u4f5c\u4e3a Windows \u670d\u52a1\u542f\u7528\u3002\u670d\u52a1\u5668\u7684\u670d\u52a1\u540d\u79f0\u4e3a: %s
INFO_WINDOWS_SERVICE_DISABLED_836=\u5df2\u5c06\u670d\u52a1\u5668\u4f5c\u4e3a Windows \u670d\u52a1\u7981\u7528
###SEVERE_ERR_WINDOWS_SERVICE_STATE_ERROR_837=An unexpected error occurred \
### trying to retrieve the state of the server as a Windows service
INFO_STOPDS_DESCRIPTION_WINDOWS_NET_STOP_838=\u7531 Windows \u670d\u52a1\u4ee3\u7801\u4f7f\u7528\uff0c\u7528\u4e8e\u901a\u77e5\u5728\u8c03\u7528 net stop \u4e4b\u540e\u6b63\u5728\u4ece Windows \u670d\u52a1\u4e2d\u8c03\u7528 stop-ds
INFO_WAIT4DEL_DESCRIPTION_OUTPUT_FILE_839=\u547d\u4ee4\u5c06\u5728\u5176\u4e2d\u5199\u5165\u8f93\u51fa\u7684\u6587\u4ef6\u7684\u8def\u5f84
###SEVERE_WARN_WAIT4DEL_CANNOT_OPEN_OUTPUT_FILE_840=WARNING:  Unable to open \
### output file %s for writing:  %s
INFO_INSTALLDS_ENABLING_WINDOWS_SERVICE_841=\u6b63\u5728\u5c06\u670d\u52a1\u5668\u4f5c\u4e3a Windows \u670d\u52a1\u542f\u7528...
INFO_INSTALLDS_PROMPT_ENABLE_SERVICE_842=\u662f\u5426\u542f\u7528\u670d\u52a1\u5668\u4ee5\u4f5c\u4e3a Windows \u670d\u52a1\u8fd0\u884c\uff1f
INFO_INSTALLDS_DESCRIPTION_ENABLE_WINDOWS_SERVICE_843=\u542f\u7528\u670d\u52a1\u5668\u4ee5\u4f5c\u4e3a Windows \u670d\u52a1\u8fd0\u884c
INFO_CONFIGURE_WINDOWS_SERVICE_DESCRIPTION_CLEANUP_844=\u5141\u8bb8\u7981\u7528\u670d\u52a1\u5668\u670d\u52a1\u5e76\u6e05\u9664\u4e0e\u63d0\u4f9b\u7684\u670d\u52a1\u540d\u79f0\u5173\u8054\u7684 Windows \u6ce8\u518c\u8868\u4fe1\u606f
INFO_WINDOWS_SERVICE_CLEANUP_SUCCESS_845=\u5df2\u6210\u529f\u6e05\u9664\u670d\u52a1 %s
###SEVERE_ERR_WINDOWS_SERVICE_CLEANUP_NOT_FOUND_846=Could not find the service \
### with name %s
###SEVERE_WARN_WINDOWS_SERVICE_CLEANUP_MARKED_FOR_DELETION_847=Service %s has \
### been marked for deletion
###SEVERE_ERR_WINDOWS_SERVICE_CLEANUP_ERROR_848=An unexpected error occurred \
### cleaning up the service %s
INFO_REBUILDINDEX_TOOL_DESCRIPTION_849=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u5728\u57fa\u4e8e Berkeley \u6570\u636e\u5e93 Java Edition \u7684\u540e\u7aef\u4e2d\u91cd\u65b0\u751f\u6210\u7d22\u5f15\u6570\u636e
INFO_REBUILDINDEX_DESCRIPTION_BASE_DN_850=\u652f\u6301\u7f16\u5236\u7d22\u5f15\u7684\u540e\u7aef\u7684\u57fa DN\u3002\u5bf9\u7ed9\u5b9a\u57fa DN \u8303\u56f4\u5185\u7684\u7d22\u5f15\u6267\u884c\u91cd\u65b0\u751f\u6210
INFO_REBUILDINDEX_DESCRIPTION_INDEX_NAME_851=\u8981\u91cd\u65b0\u751f\u6210\u7684\u7d22\u5f15\u540d\u79f0\u3002\u5bf9\u4e8e\u5c5e\u6027\u7d22\u5f15\uff0c\u8fd9\u53ea\u662f\u4e00\u4e2a\u5c5e\u6027\u540d\u79f0\u3002\u5fc5\u987b\u4e3a\u91cd\u65b0\u751f\u6210\u8fc7\u7a0b\u81f3\u5c11\u6307\u5b9a\u4e00\u4e2a\u7d22\u5f15\u3002\u4e0d\u80fd\u4e0e "--rebuildAll" \u9009\u9879\u4e00\u8d77\u4f7f\u7528
###SEVERE_ERR_REBUILDINDEX_ERROR_DURING_REBUILD_852=An error occurred while \
### attempting to perform index rebuild:  %s
###SEVERE_ERR_REBUILDINDEX_WRONG_BACKEND_TYPE_853=The backend does not support \
### rebuilding of indexes
###SEVERE_ERR_REBUILDINDEX_REQUIRES_AT_LEAST_ONE_INDEX_854=At least one index \
### must be specified for the rebuild process
###SEVERE_ERR_REBUILDINDEX_CANNOT_EXCLUSIVE_LOCK_BACKEND_855=An error occurred \
### while attempting to acquire a exclusive lock for backend %s:  %s.  This \
### generally means that some other process has an lock on this backend or the \
### server is running with this backend online. The rebuild process cannot \
### continue
###SEVERE_WARN_REBUILDINDEX_CANNOT_UNLOCK_BACKEND_856=An error occurred while \
### attempting to release the shared lock for backend %s:  %s.  This lock should \
### automatically be cleared when the rebuild process exits, so no further action \
### should be required
###SEVERE_ERR_REBUILDINDEX_CANNOT_SHARED_LOCK_BACKEND_857=An error occurred \
### while attempting to acquire a shared lock for backend %s:  %s.  This \
### generally means that some other process has an exclusive lock on this backend \
### (e.g., an LDIF import or a restore). The rebuild process cannot continue
INFO_CONFIGDS_DESCRIPTION_LDAPS_PORT_858=\u76ee\u5f55\u670d\u52a1\u5668\u4fa6\u542c LDAPS \u901a\u4fe1\u65f6\u5e94\u4f7f\u7528\u7684\u7aef\u53e3
###SEVERE_ERR_CONFIGDS_CANNOT_UPDATE_LDAPS_PORT_859=An error occurred while \
### attempting to update the port on which to listen for LDAPS communication:  %s
INFO_CONFIGDS_DESCRIPTION_ENABLE_START_TLS_860=\u6307\u5b9a\u662f\u5426\u542f\u7528 StartTLS
INFO_CONFIGDS_DESCRIPTION_KEYMANAGER_PROVIDER_DN_861=\u7528\u4e8e SSL \u548c/\u6216 StartTLS \u7684\u5bc6\u94a5\u7ba1\u7406\u5668\u63d0\u4f9b\u7a0b\u5e8f DN
INFO_CONFIGDS_DESCRIPTION_TRUSTMANAGER_PROVIDER_DN_862=\u7528\u4e8e SSL \u548c/\u6216 StartTLS \u7684\u4fe1\u4efb\u7ba1\u7406\u5668\u63d0\u4f9b\u7a0b\u5e8f DN
###SEVERE_ERR_CONFIGDS_CANNOT_PARSE_KEYMANAGER_PROVIDER_DN_863=An error occurred \
### while attempting to parse key manager provider DN value "%s" as a DN:  %s
###SEVERE_ERR_CONFIGDS_CANNOT_PARSE_TRUSTMANAGER_PROVIDER_DN_864=An error \
### occurred while attempting to parse trust manager provider DN value "%s" as a \
### DN:  %s
###SEVERE_ERR_CONFIGDS_CANNOT_ENABLE_STARTTLS_865=An error occurred while \
### attempting to enable StartTLS: %s
###SEVERE_ERR_CONFIGDS_CANNOT_ENABLE_KEYMANAGER_866=An error occurred while \
### attempting to enable key manager provider entry: %s
###SEVERE_ERR_CONFIGDS_CANNOT_ENABLE_TRUSTMANAGER_867=An error occurred while \
### attempting to enable trust manager provider entry: %s
###SEVERE_ERR_CONFIGDS_CANNOT_UPDATE_KEYMANAGER_REFERENCE_868=An error occurred \
### while attempting to update the key manager provider DN used for LDAPS \
### communication: %s
###SEVERE_ERR_CONFIGDS_CANNOT_UPDATE_TRUSTMANAGER_REFERENCE_869=An error \
### occurred while attempting to update the trust manager provider DN used for \
### LDAPS communication: %s
INFO_CONFIGDS_DESCRIPTION_KEYMANAGER_PATH_870=\u5bc6\u94a5\u7ba1\u7406\u5668\u63d0\u4f9b\u7a0b\u5e8f\u4f7f\u7528\u7684\u5bc6\u94a5\u5e93\u7684\u8def\u5f84
INFO_CONFIGDS_DESCRIPTION_CERTNICKNAME_871=\u8fde\u63a5\u5904\u7406\u7a0b\u5e8f\u5728\u63a5\u53d7\u57fa\u4e8e SSL \u7684\u8fde\u63a5\u6216\u6267\u884c StartTLS \u534f\u5546\u65f6\u5e94\u4f7f\u7528\u7684\u8bc1\u4e66\u7684\u522b\u540d
###SEVERE_ERR_CONFIGDS_KEYMANAGER_PROVIDER_DN_REQUIRED_872=ERROR:  You must \
### provide the %s argument when providing the %s argument
###SEVERE_ERR_CONFIGDS_CANNOT_UPDATE_CERT_NICKNAME_873=An error occurred while \
### attempting to update the nickname of the certificate that the connection \
### handler should use when accepting SSL-based connections or performing \
### StartTLS negotiation: %s
INFO_LDAPMODIFY_DESCRIPTION_FILENAME_874=\u5305\u542b\u8981\u5e94\u7528\u7684\u66f4\u6539\u7684 LDIF \u6587\u4ef6
MILD_ERR_MAKELDIF_TEMPLATE_INVALID_PARENT_TEMPLATE_875=\u5728\u7b2c %2$d \u884c\u4e2d\u4e3a\u6a21\u677f %3$s \u5f15\u7528\u7684\u7236\u6a21\u677f %1$s \u65e0\u6548\uff0c\u56e0\u4e3a\u5f15\u7528\u7684\u7236\u6a21\u677f\u672a\u5728\u6269\u5c55\u5b83\u7684\u6a21\u677f\u4e4b\u524d\u8fdb\u884c\u5b9a\u4e49
INFO_DESCRIPTION_SORT_ORDER_876=\u4f7f\u7528\u63d0\u4f9b\u7684\u6392\u5e8f\u987a\u5e8f\u5bf9\u7ed3\u679c\u8fdb\u884c\u6392\u5e8f
MILD_ERR_LDAP_SORTCONTROL_INVALID_ORDER_877=\u63d0\u4f9b\u7684\u6392\u5e8f\u987a\u5e8f\u65e0\u6548: %s
INFO_DESCRIPTION_VLV_878=\u4f7f\u7528\u865a\u62df\u5217\u8868\u89c6\u56fe\u63a7\u5236\u68c0\u7d22\u6307\u5b9a\u7684\u7ed3\u679c\u9875
MILD_ERR_LDAPSEARCH_VLV_REQUIRES_SORT_879=\u5982\u679c\u63d0\u4f9b\u4e86 --%s \u53c2\u6570\uff0c\u5219\u8fd8\u5fc5\u987b\u63d0\u4f9b --%s \u53c2\u6570
MILD_ERR_LDAPSEARCH_VLV_INVALID_DESCRIPTOR_880=\u63d0\u4f9b\u7684\u865a\u62df\u5217\u8868\u89c6\u56fe\u63cf\u8ff0\u7b26\u65e0\u6548\u3002\u5b83\u5fc5\u987b\u662f\u5177\u6709\u4ee5\u4e0b\u683c\u5f0f\u7684\u503c\uff1a'beforeCount:afterCount:offset:contentCount'\uff08\u5176\u4e2d\uff0coffset \u6307\u5b9a\u76ee\u6807\u6761\u76ee\u7d22\u5f15\uff1bcontentCount \u6307\u5b9a\u4f30\u8ba1\u7684\u7ed3\u679c\u603b\u6570\uff0c\u5982\u679c\u672a\u77e5\uff0c\u5219\u4e3a\u96f6\uff09\u6216 'beforeCount:afterCount:assertionValue'\uff08\u5176\u4e2d\uff0c\u6761\u76ee\u5e94\u8be5\u662f\u4e3b\u6392\u5e8f\u503c\u5927\u4e8e\u6216\u7b49\u4e8e\u63d0\u4f9b\u7684 assertionValue \u7684\u7b2c\u4e00\u4e2a\u6761\u76ee\uff09\u3002\u5728\u8fd9\u4e24\u79cd\u683c\u5f0f\u4e2d\uff0cbeforeCount \u662f\u5728\u76ee\u6807\u503c\u4e4b\u524d\u8fd4\u56de\u7684\u6761\u76ee\u6570\uff0cafterCount \u662f\u5728\u76ee\u6807\u503c\u4e4b\u540e\u8fd4\u56de\u7684\u6761\u76ee\u6570
###SEVERE_WARN_LDAPSEARCH_SORT_ERROR_881=# Server-side sort failed:  %s
###SEVERE_WARN_LDAPSEARCH_CANNOT_DECODE_SORT_RESPONSE_882=# Unable to decode the \
### server-side sort response:  %s
INFO_LDAPSEARCH_VLV_TARGET_OFFSET_883=# VLV \u76ee\u6807\u504f\u79fb: %d
INFO_LDAPSEARCH_VLV_CONTENT_COUNT_884=# VLV \u5185\u5bb9\u8ba1\u6570: %d
###SEVERE_WARN_LDAPSEARCH_VLV_ERROR_885=# Virtual list view processing failed: \
### %s
###SEVERE_WARN_LDAPSEARCH_CANNOT_DECODE_VLV_RESPONSE_886=# Unable to decode the \
### virtual list view response:  %s
###SEVERE_ERR_LDIFIMPORT_CANNOT_READ_FILE_887=The specified LDIF file %s cannot \
### be read
INFO_DESCRIPTION_EFFECTIVERIGHTS_USER_888=\u5c06 geteffectiverights \u63a7\u5236\u7528\u4e8e\u63d0\u4f9b\u7684 authzid
INFO_DESCRIPTION_EFFECTIVERIGHTS_ATTR_889=\u6307\u5b9a\u7279\u5b9a\u4e8e geteffectiverights \u63a7\u5236\u7684\u5c5e\u6027\u5217\u8868
MILD_ERR_EFFECTIVERIGHTS_INVALID_AUTHZID_890=geteffectiverights \u63a7\u5236\u4e2d\u5305\u542b\u7684\u6388\u6743 ID "%s" \u65e0\u6548\uff0c\u56e0\u4e3a\u5b83\u4e0d\u662f\u4ee5 "dn:" \u5f00\u5934\uff08\u8868\u793a\u7528\u6237 DN\uff09
INFO_DESCRIPTION_PRODUCT_VERSION_891=\u663e\u793a\u76ee\u5f55\u670d\u52a1\u5668\u7248\u672c\u4fe1\u606f
INFO_DESCRIPTION_QUIET_1075=\u4f7f\u7528\u9759\u9ed8\u6a21\u5f0f
INFO_DESCRIPTION_SCRIPT_FRIENDLY_1076=\u4f7f\u7528\u811a\u672c\u53cb\u597d\u6a21\u5f0f
INFO_DESCRIPTION_NO_PROMPT_1077=\u4f7f\u7528\u975e\u4ea4\u4e92\u6a21\u5f0f\u3002\u5982\u679c\u547d\u4ee4\u4e2d\u7f3a\u5c11\u6570\u636e\uff0c\u5c06\u4e0d\u4f1a\u63d0\u793a\u7528\u6237\uff0c\u5e76\u4e14\u5de5\u5177\u5c06\u5931\u8d25
INFO_PWPSTATE_TOOL_DESCRIPTION_1094=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u68c0\u7d22\u548c\u5904\u7406\u5bc6\u7801\u7b56\u7565\u72b6\u6001\u53d8\u91cf\u7684\u503c
INFO_PWPSTATE_DESCRIPTION_HOST_1095=\u76ee\u5f55\u670d\u52a1\u5668\u4e3b\u673a\u540d\u6216 IP \u5730\u5740
INFO_PWPSTATE_DESCRIPTION_PORT_1096=\u76ee\u5f55\u670d\u52a1\u5668\u7ba1\u7406\u7aef\u53e3\u53f7
INFO_PWPSTATE_DESCRIPTION_USESSL_1097=\u4f7f\u7528 SSL \u786e\u4fdd\u4e0e\u670d\u52a1\u5668\u8fdb\u884c\u5b89\u5168\u901a\u4fe1
INFO_PWPSTATE_DESCRIPTION_USESTARTTLS_1098=\u4f7f\u7528 StartTLS \u786e\u4fdd\u4e0e\u670d\u52a1\u5668\u8fdb\u884c\u5b89\u5168\u901a\u4fe1
INFO_PWPSTATE_DESCRIPTION_BINDDN_1099=\u7528\u4e8e\u7ed1\u5b9a\u5230\u670d\u52a1\u5668\u7684 DN
INFO_PWPSTATE_DESCRIPTION_BINDPW_1100=\u7528\u4e8e\u7ed1\u5b9a\u5230\u670d\u52a1\u5668\u7684\u5bc6\u7801
INFO_PWPSTATE_DESCRIPTION_BINDPWFILE_1101=\u5305\u542b\u7ed1\u5b9a\u5bc6\u7801\u7684\u6587\u4ef6\u7684\u8def\u5f84
INFO_PWPSTATE_DESCRIPTION_TARGETDN_1102=\u8981\u4e3a\u5176\u83b7\u53d6\u548c\u8bbe\u7f6e\u5bc6\u7801\u7b56\u7565\u72b6\u6001\u4fe1\u606f\u7684\u7528\u6237\u6761\u76ee DN
INFO_PWPSTATE_DESCRIPTION_SASLOPTIONS_1103=SASL \u7ed1\u5b9a\u9009\u9879
INFO_PWPSTATE_DESCRIPTION_TRUST_ALL_1104=\u4fe1\u4efb\u6240\u6709\u670d\u52a1\u5668 SSL \u8bc1\u4e66
INFO_PWPSTATE_DESCRIPTION_KSFILE_1105=\u8bc1\u4e66\u5bc6\u94a5\u5e93\u8def\u5f84
INFO_PWPSTATE_DESCRIPTION_KSPW_1106=\u8bc1\u4e66\u5bc6\u94a5\u5e93 PIN
INFO_PWPSTATE_DESCRIPTION_KSPWFILE_1107=\u8bc1\u4e66\u5bc6\u94a5\u5e93 PIN \u6587\u4ef6
INFO_PWPSTATE_DESCRIPTION_TSFILE_1108=\u8bc1\u4e66\u4fe1\u4efb\u5e93\u8def\u5f84
INFO_PWPSTATE_DESCRIPTION_TSPW_1109=\u8bc1\u4e66\u4fe1\u4efb\u5e93 PIN
INFO_PWPSTATE_DESCRIPTION_TSPWFILE_1110=\u8bc1\u4e66\u4fe1\u4efb\u5e93 PIN \u6587\u4ef6
INFO_PWPSTATE_DESCRIPTION_SHOWUSAGE_1111=\u663e\u793a\u6b64\u7528\u6cd5\u4fe1\u606f
INFO_DESCRIPTION_PWPSTATE_GET_ALL_1112=\u663e\u793a\u7528\u6237\u7684\u6240\u6709\u5bc6\u7801\u7b56\u7565\u72b6\u6001\u4fe1\u606f
INFO_DESCRIPTION_PWPSTATE_GET_PASSWORD_POLICY_DN_1113=\u663e\u793a\u7528\u6237\u7684\u5bc6\u7801\u7b56\u7565 DN
INFO_DESCRIPTION_PWPSTATE_GET_ACCOUNT_DISABLED_STATE_1114=\u663e\u793a\u6709\u5173\u662f\u5426\u4ee5\u7ba1\u7406\u65b9\u5f0f\u7981\u7528\u4e86\u7528\u6237\u5e10\u6237\u7684\u4fe1\u606f
INFO_DESCRIPTION_PWPSTATE_SET_ACCOUNT_DISABLED_STATE_1115=\u6307\u5b9a\u662f\u5426\u4ee5\u7ba1\u7406\u65b9\u5f0f\u7981\u7528\u4e86\u7528\u6237\u5e10\u6237
INFO_DESCRIPTION_OPERATION_BOOLEAN_VALUE_1116=\u201c\u771f\u201d\u8868\u793a\u5df2\u7981\u7528\u5e10\u6237\uff0c\u201c\u5047\u201d\u8868\u793a\u672a\u7981\u7528\u5e10\u6237
INFO_DESCRIPTION_PWPSTATE_CLEAR_ACCOUNT_DISABLED_STATE_1117=\u4ece\u7528\u6237\u5e10\u6237\u4e2d\u6e05\u9664\u5e10\u6237\u7981\u7528\u72b6\u6001\u4fe1\u606f
INFO_DESCRIPTION_PWPSTATE_GET_ACCOUNT_EXPIRATION_TIME_1118=\u663e\u793a\u7528\u6237\u5e10\u6237\u7684\u5230\u671f\u65f6\u95f4
INFO_DESCRIPTION_PWPSTATE_SET_ACCOUNT_EXPIRATION_TIME_1119=\u6307\u5b9a\u7528\u6237\u5e10\u6237\u7684\u5230\u671f\u65f6\u95f4
INFO_DESCRIPTION_OPERATION_TIME_VALUE_1120=\u4f7f\u7528\u901a\u7528\u65f6\u95f4\u8bed\u6cd5\u7684\u65f6\u95f4\u6233\u503c
INFO_DESCRIPTION_PWPSTATE_CLEAR_ACCOUNT_EXPIRATION_TIME_1121=\u4ece\u7528\u6237\u5e10\u6237\u4e2d\u6e05\u9664\u5e10\u6237\u5230\u671f\u65f6\u95f4\u4fe1\u606f
INFO_DESCRIPTION_PWPSTATE_GET_SECONDS_UNTIL_ACCOUNT_EXPIRATION_1122=\u663e\u793a\u8ddd\u7528\u6237\u5e10\u6237\u5230\u671f\u7684\u65f6\u95f4\u957f\u5ea6\uff08\u4ee5\u79d2\u4e3a\u5355\u4f4d\uff09
INFO_DESCRIPTION_PWPSTATE_GET_PASSWORD_CHANGED_TIME_1123=\u663e\u793a\u4e0a\u6b21\u66f4\u6539\u7528\u6237\u5bc6\u7801\u7684\u65f6\u95f4
INFO_DESCRIPTION_PWPSTATE_SET_PASSWORD_CHANGED_TIME_1124=\u6307\u5b9a\u4e0a\u6b21\u66f4\u6539\u7528\u6237\u5bc6\u7801\u7684\u65f6\u95f4\u3002\u53ea\u5e94\u5c06\u5176\u7528\u4e8e\u6d4b\u8bd5\u76ee\u7684
INFO_DESCRIPTION_PWPSTATE_CLEAR_PASSWORD_CHANGED_TIME_1125=\u6e05\u9664\u4e0e\u4e0a\u6b21\u66f4\u6539\u7528\u6237\u5bc6\u7801\u7684\u65f6\u95f4\u76f8\u5173\u7684\u4fe1\u606f\u3002\u53ea\u5e94\u5c06\u5176\u7528\u4e8e\u6d4b\u8bd5\u76ee\u7684
INFO_DESCRIPTION_PWPSTATE_GET_PASSWORD_EXPIRATION_WARNED_TIME_1126=\u663e\u793a\u7528\u6237\u7b2c\u4e00\u6b21\u6536\u5230\u5230\u671f\u8b66\u544a\u901a\u77e5\u7684\u65f6\u95f4
INFO_DESCRIPTION_PWPSTATE_SET_PASSWORD_EXPIRATION_WARNED_TIME_1127=\u6307\u5b9a\u7528\u6237\u7b2c\u4e00\u6b21\u6536\u5230\u5230\u671f\u8b66\u544a\u901a\u77e5\u7684\u65f6\u95f4\u3002\u53ea\u5e94\u5c06\u5176\u7528\u4e8e\u6d4b\u8bd5\u76ee\u7684
INFO_DESCRIPTION_PWPSTATE_CLEAR_PASSWORD_EXPIRATION_WARNED_TIME_1128=\u6e05\u9664\u4e0e\u7528\u6237\u7b2c\u4e00\u6b21\u6536\u5230\u5230\u671f\u8b66\u544a\u901a\u77e5\u7684\u65f6\u95f4\u76f8\u5173\u7684\u4fe1\u606f\u3002\u53ea\u5e94\u5c06\u5176\u7528\u4e8e\u6d4b\u8bd5\u76ee\u7684
INFO_DESCRIPTION_PWPSTATE_GET_SECONDS_UNTIL_PASSWORD_EXP_1129=\u663e\u793a\u8ddd\u7528\u6237\u5bc6\u7801\u5230\u671f\u7684\u65f6\u95f4\u957f\u5ea6\uff08\u4ee5\u79d2\u4e3a\u5355\u4f4d\uff09
INFO_DESCRIPTION_PWPSTATE_GET_SECONDS_UNTIL_PASSWORD_EXP_WARNING_1130=\u663e\u793a\u8ddd\u7528\u6237\u5f00\u59cb\u63a5\u6536\u5bc6\u7801\u5230\u671f\u8b66\u544a\u901a\u77e5\u7684\u65f6\u95f4\u957f\u5ea6\uff08\u4ee5\u79d2\u4e3a\u5355\u4f4d\uff09
INFO_DESCRIPTION_PWPSTATE_GET_AUTH_FAILURE_TIMES_1131=\u663e\u793a\u7528\u6237\u7684\u9a8c\u8bc1\u5931\u8d25\u6b21\u6570
INFO_DESCRIPTION_PWPSTATE_ADD_AUTH_FAILURE_TIME_1132=\u5728\u7528\u6237\u5e10\u6237\u4e2d\u6dfb\u52a0\u9a8c\u8bc1\u5931\u8d25\u6b21\u6570\u3002\u53ea\u5e94\u5c06\u5176\u7528\u4e8e\u6d4b\u8bd5\u76ee\u7684
INFO_DESCRIPTION_PWPSTATE_SET_AUTH_FAILURE_TIMES_1133=\u6307\u5b9a\u7528\u6237\u7684\u9a8c\u8bc1\u5931\u8d25\u6b21\u6570\u3002\u53ea\u5e94\u5c06\u5176\u7528\u4e8e\u6d4b\u8bd5\u76ee\u7684
INFO_DESCRIPTION_OPERATION_TIME_VALUES_1134=\u4f7f\u7528\u901a\u7528\u65f6\u95f4\u8bed\u6cd5\u7684\u65f6\u95f4\u6233\u503c\u3002\u53ef\u901a\u8fc7\u591a\u6b21\u63d0\u4f9b\u6b64\u53c2\u6570\u6765\u63d0\u4f9b\u591a\u4e2a\u65f6\u95f4\u6233\u503c
INFO_DESCRIPTION_PWPSTATE_CLEAR_AUTH_FAILURE_TIMES_1135=\u4ece\u7528\u6237\u5e10\u6237\u4e2d\u6e05\u9664\u9a8c\u8bc1\u5931\u8d25\u6b21\u6570\u4fe1\u606f\u3002\u53ea\u5e94\u5c06\u5176\u7528\u4e8e\u6d4b\u8bd5\u76ee\u7684
INFO_DESCRIPTION_PWPSTATE_GET_SECONDS_UNTIL_AUTH_FAILURE_UNLOCK_1136=\u663e\u793a\u8ddd\u9a8c\u8bc1\u5931\u8d25\u9501\u5b9a\u5230\u671f\u7684\u65f6\u95f4\u957f\u5ea6\uff08\u4ee5\u79d2\u4e3a\u5355\u4f4d\uff09
INFO_DESCRIPTION_PWPSTATE_GET_REMAINING_AUTH_FAILURE_COUNT_1137=\u663e\u793a\u8ddd\u9501\u5b9a\u7528\u6237\u5e10\u6237\u7684\u5269\u4f59\u9a8c\u8bc1\u5931\u8d25\u6b21\u6570
INFO_DESCRIPTION_PWPSTATE_GET_LAST_LOGIN_TIME_1138=\u663e\u793a\u7528\u6237\u4e0a\u6b21\u5728\u670d\u52a1\u5668\u4e2d\u8fdb\u884c\u9a8c\u8bc1\u7684\u65f6\u95f4
INFO_DESCRIPTION_PWPSTATE_SET_LAST_LOGIN_TIME_1139=\u6307\u5b9a\u7528\u6237\u4e0a\u6b21\u5728\u670d\u52a1\u5668\u4e2d\u8fdb\u884c\u9a8c\u8bc1\u7684\u65f6\u95f4\u3002\u53ea\u5e94\u5c06\u5176\u7528\u4e8e\u6d4b\u8bd5\u76ee\u7684
INFO_DESCRIPTION_PWPSTATE_CLEAR_LAST_LOGIN_TIME_1140=\u6e05\u9664\u7528\u6237\u4e0a\u6b21\u5728\u670d\u52a1\u5668\u4e2d\u8fdb\u884c\u9a8c\u8bc1\u7684\u65f6\u95f4\u3002\u53ea\u5e94\u5c06\u5176\u7528\u4e8e\u6d4b\u8bd5\u76ee\u7684
INFO_DESCRIPTION_PWPSTATE_GET_SECONDS_UNTIL_IDLE_LOCKOUT_1141=\u663e\u793a\u8ddd\u9501\u5b9a\u7528\u6237\u5e10\u6237\uff08\u7531\u4e8e\u5e10\u6237\u5904\u4e8e\u7a7a\u95f2\u72b6\u6001\u65f6\u95f4\u592a\u957f\u6240\u81f4\uff09\u7684\u65f6\u95f4\u957f\u5ea6\uff08\u4ee5\u79d2\u4e3a\u5355\u4f4d\uff09
INFO_DESCRIPTION_PWPSTATE_GET_PASSWORD_RESET_STATE_1142=\u663e\u793a\u6709\u5173\u662f\u5426\u8981\u6c42\u7528\u6237\u5728\u4e0b\u4e00\u6b21\u6210\u529f\u9a8c\u8bc1\u65f6\u66f4\u6539\u5176\u5bc6\u7801\u7684\u4fe1\u606f
INFO_DESCRIPTION_PWPSTATE_SET_PASSWORD_RESET_STATE_1143=\u6307\u5b9a\u662f\u5426\u8981\u6c42\u7528\u6237\u5728\u4e0b\u4e00\u6b21\u6210\u529f\u9a8c\u8bc1\u65f6\u66f4\u6539\u5176\u5bc6\u7801\u3002\u53ea\u5e94\u5c06\u5176\u7528\u4e8e\u6d4b\u8bd5\u76ee\u7684
INFO_DESCRIPTION_PWPSTATE_CLEAR_PASSWORD_RESET_STATE_1144=\u6e05\u9664\u6709\u5173\u662f\u5426\u8981\u6c42\u7528\u6237\u5728\u4e0b\u4e00\u6b21\u6210\u529f\u9a8c\u8bc1\u65f6\u66f4\u6539\u5176\u5bc6\u7801\u7684\u4fe1\u606f\u3002\u53ea\u5e94\u5c06\u5176\u7528\u4e8e\u6d4b\u8bd5\u76ee\u7684
INFO_DESCRIPTION_PWPSTATE_GET_SECONDS_UNTIL_RESET_LOCKOUT_1145=\u663e\u793a\u8ddd\u9501\u5b9a\u7528\u6237\u5e10\u6237\uff08\u7531\u4e8e\u5728\u4ee5\u7ba1\u7406\u65b9\u5f0f\u91cd\u7f6e\u540e\u7528\u6237\u672a\u53ca\u65f6\u66f4\u6539\u5bc6\u7801\u6240\u81f4\uff09\u7684\u65f6\u95f4\u957f\u5ea6\uff08\u4ee5\u79d2\u4e3a\u5355\u4f4d\uff09
INFO_DESCRIPTION_PWPSTATE_GET_GRACE_LOGIN_USE_TIMES_1146=\u663e\u793a\u7528\u6237\u7684\u8fc7\u6e21\u767b\u5f55\u4f7f\u7528\u6b21\u6570
INFO_DESCRIPTION_PWPSTATE_ADD_GRACE_LOGIN_USE_TIME_1147=\u5728\u7528\u6237\u5e10\u6237\u4e2d\u6dfb\u52a0\u8fc7\u6e21\u767b\u5f55\u4f7f\u7528\u6b21\u6570\u3002\u53ea\u5e94\u5c06\u5176\u7528\u4e8e\u6d4b\u8bd5\u76ee\u7684
INFO_DESCRIPTION_PWPSTATE_SET_GRACE_LOGIN_USE_TIMES_1148=\u6307\u5b9a\u7528\u6237\u7684\u8fc7\u6e21\u767b\u5f55\u4f7f\u7528\u6b21\u6570\u3002\u53ea\u5e94\u5c06\u5176\u7528\u4e8e\u6d4b\u8bd5\u76ee\u7684
INFO_DESCRIPTION_PWPSTATE_CLEAR_GRACE_LOGIN_USE_TIMES_1149=\u6e05\u9664\u4e3a\u7528\u6237\u8bbe\u7f6e\u7684\u8fc7\u6e21\u767b\u5f55\u4f7f\u7528\u6b21\u6570\u3002\u53ea\u5e94\u5c06\u5176\u7528\u4e8e\u6d4b\u8bd5\u76ee\u7684
INFO_DESCRIPTION_PWPSTATE_GET_REMAINING_GRACE_LOGIN_COUNT_1150=\u663e\u793a\u7528\u6237\u6240\u5269\u7684\u8fc7\u6e21\u767b\u5f55\u6b21\u6570
INFO_DESCRIPTION_PWPSTATE_GET_PW_CHANGED_BY_REQUIRED_TIME_1151=\u663e\u793a\u7528\u6237\u4e0a\u6b21\u7f16\u8bd1\u65f6\u4f7f\u7528\u7684\u5bc6\u7801\u66f4\u6539\u8981\u6c42\u65f6\u95f4
INFO_DESCRIPTION_PWPSTATE_SET_PW_CHANGED_BY_REQUIRED_TIME_1152=\u6307\u5b9a\u7528\u6237\u4e0a\u6b21\u7f16\u8bd1\u65f6\u4f7f\u7528\u7684\u5bc6\u7801\u66f4\u6539\u8981\u6c42\u65f6\u95f4\u3002\u53ea\u5e94\u5c06\u5176\u7528\u4e8e\u6d4b\u8bd5\u76ee\u7684
INFO_DESCRIPTION_PWPSTATE_CLEAR_PW_CHANGED_BY_REQUIRED_TIME_1153=\u6e05\u9664\u6709\u5173\u7528\u6237\u4e0a\u6b21\u7f16\u8bd1\u65f6\u4f7f\u7528\u7684\u5bc6\u7801\u66f4\u6539\u8981\u6c42\u65f6\u95f4\u7684\u4fe1\u606f\u3002\u53ea\u5e94\u5c06\u5176\u7528\u4e8e\u6d4b\u8bd5\u76ee\u7684
INFO_DESCRIPTION_PWPSTATE_GET_SECONDS_UNTIL_REQUIRED_CHANGE_TIME_1154=\u663e\u793a\u5728\u7531\u4e8e\u5230\u8fbe\u8981\u6c42\u7684\u5bc6\u7801\u66f4\u6539\u65f6\u95f4\u800c\u9501\u5b9a\u5e10\u6237\u4e4b\u524d\uff0c\u7528\u6237\u6240\u5269\u7684\u53ef\u4ee5\u66f4\u6539\u5176\u5bc6\u7801\u7684\u65f6\u95f4\u957f\u5ea6\uff08\u4ee5\u79d2\u4e3a\u5355\u4f4d\uff09
###SEVERE_ERR_PWPSTATE_NO_SUBCOMMAND_1155=No subcommand was provided to indicate \
### which password policy state operation should be performed
###SEVERE_ERR_PWPSTATE_INVALID_BOOLEAN_VALUE_1156=The provided value '%s' was \
### invalid for the requested operation.  A Boolean value of either 'true' or \
### 'false' was expected
###SEVERE_ERR_PWPSTATE_NO_BOOLEAN_VALUE_1157=No value was specified, but the \
### requested operation requires a Boolean value of either 'true' or 'false'
###SEVERE_ERR_PWPSTATE_INVALID_SUBCOMMAND_1158=Unrecognized subcommand '%s'
###SEVERE_ERR_PWPSTATE_CANNOT_SEND_REQUEST_EXTOP_1159=An error occurred while \
### attempting to send the request to the server:  %s
###SEVERE_ERR_PWPSTATE_CONNECTION_CLOSED_READING_RESPONSE_1160=The Directory \
### Server closed the connection before the response could be read
###SEVERE_ERR_PWPSTATE_REQUEST_FAILED_1161=The server was unable to process the \
### request:  result code %d (%s), error message '%s'
###SEVERE_ERR_PWPSTATE_CANNOT_DECODE_RESPONSE_MESSAGE_1162=The server was unable \
### to decode the response message from the server:  %s
###SEVERE_ERR_PWPSTATE_CANNOT_DECODE_RESPONSE_OP_1163=Unable to decode \
### information about an operation contained in the response:  %s
INFO_PWPSTATE_LABEL_PASSWORD_POLICY_DN_1164=\u5bc6\u7801\u7b56\u7565 DN
INFO_PWPSTATE_LABEL_ACCOUNT_DISABLED_STATE_1165=\u5df2\u7981\u7528\u5e10\u6237
INFO_PWPSTATE_LABEL_ACCOUNT_EXPIRATION_TIME_1166=\u5e10\u6237\u5230\u671f\u65f6\u95f4
INFO_PWPSTATE_LABEL_SECONDS_UNTIL_ACCOUNT_EXPIRATION_1167=\u8ddd\u5e10\u6237\u5230\u671f\u7684\u79d2\u6570
INFO_PWPSTATE_LABEL_PASSWORD_CHANGED_TIME_1168=\u5bc6\u7801\u66f4\u6539\u65f6\u95f4
INFO_PWPSTATE_LABEL_PASSWORD_EXPIRATION_WARNED_TIME_1169=\u5bc6\u7801\u5230\u671f\u8b66\u544a\u65f6\u95f4
INFO_PWPSTATE_LABEL_SECONDS_UNTIL_PASSWORD_EXPIRATION_1170=\u8ddd\u5bc6\u7801\u5230\u671f\u7684\u79d2\u6570
INFO_PWPSTATE_LABEL_SECONDS_UNTIL_PASSWORD_EXPIRATION_WARNING_1171=\u8ddd\u5bc6\u7801\u5230\u671f\u8b66\u544a\u7684\u79d2\u6570
INFO_PWPSTATE_LABEL_AUTH_FAILURE_TIMES_1172=\u9a8c\u8bc1\u5931\u8d25\u6b21\u6570
INFO_PWPSTATE_LABEL_SECONDS_UNTIL_AUTH_FAILURE_UNLOCK_1173=\u8ddd\u9a8c\u8bc1\u5931\u8d25\u89e3\u9664\u9501\u5b9a\u7684\u79d2\u6570
INFO_PWPSTATE_LABEL_REMAINING_AUTH_FAILURE_COUNT_1174=\u5269\u4f59\u9a8c\u8bc1\u5931\u8d25\u8ba1\u6570
INFO_PWPSTATE_LABEL_LAST_LOGIN_TIME_1175=\u4e0a\u6b21\u767b\u5f55\u65f6\u95f4
INFO_PWPSTATE_LABEL_SECONDS_UNTIL_IDLE_LOCKOUT_1176=\u8ddd\u7a7a\u95f2\u5e10\u6237\u9501\u5b9a\u7684\u79d2\u6570
INFO_PWPSTATE_LABEL_PASSWORD_RESET_STATE_1177=\u5df2\u91cd\u7f6e\u5bc6\u7801
INFO_PWPSTATE_LABEL_SECONDS_UNTIL_PASSWORD_RESET_LOCKOUT_1178=\u8ddd\u5bc6\u7801\u91cd\u7f6e\u9501\u5b9a\u7684\u79d2\u6570
INFO_PWPSTATE_LABEL_GRACE_LOGIN_USE_TIMES_1179=\u8fc7\u6e21\u767b\u5f55\u4f7f\u7528\u6b21\u6570
INFO_PWPSTATE_LABEL_REMAINING_GRACE_LOGIN_COUNT_1180=\u5269\u4f59\u8fc7\u6e21\u767b\u5f55\u8ba1\u6570
INFO_PWPSTATE_LABEL_PASSWORD_CHANGED_BY_REQUIRED_TIME_1181=\u5df2\u5728\u8981\u6c42\u7684\u65f6\u95f4\u4e4b\u524d\u66f4\u6539\u4e86\u5bc6\u7801
INFO_PWPSTATE_LABEL_SECONDS_UNTIL_REQUIRED_CHANGE_TIME_1182=\u8ddd\u8981\u6c42\u66f4\u6539\u65f6\u95f4\u7684\u79d2\u6570
###SEVERE_ERR_PWPSTATE_INVALID_RESPONSE_OP_TYPE_1183=Unrecognized or invalid \
### operation type:  %s
###SEVERE_ERR_PWPSTATE_MUTUALLY_EXCLUSIVE_ARGUMENTS_1184=ERROR:  You may not \
### provide both the %s and the %s arguments
###SEVERE_ERR_PWPSTATE_CANNOT_INITIALIZE_SSL_1185=ERROR:  Unable to perform SSL \
### initialization:  %s
###SEVERE_ERR_PWPSTATE_CANNOT_PARSE_SASL_OPTION_1186=ERROR:  The provided SASL \
### option string "%s" could not be parsed in the form "name=value"
###SEVERE_ERR_PWPSTATE_NO_SASL_MECHANISM_1187=ERROR:  One or more SASL options \
### were provided, but none of them were the "mech" option to specify which SASL \
### mechanism should be used
###SEVERE_ERR_PWPSTATE_CANNOT_DETERMINE_PORT_1188=ERROR:  Cannot parse the value \
### of the %s argument as an integer value between 1 and 65535:  %s
###SEVERE_ERR_PWPSTATE_CANNOT_CONNECT_1189=ERROR:  Cannot establish a connection to \
### the Directory Server %s.  Verify that the server is running and that \
### the provided credentials are valid.  Details:  %s
INFO_UPGRADE_DESCRIPTION_FILE_1190=\u6307\u5b9a\u4e00\u4e2a\u73b0\u6709\u7684\u670d\u52a1\u5668\u8f6f\u4ef6\u5305 (.zip) \u6587\u4ef6\uff0c\u5c06\u4f7f\u7528\u6b64\u5de5\u5177\u7684\u547d\u4ee4\u884c\u7248\u672c\u628a\u5f53\u524d\u6784\u5efa\u7248\u672c\u5347\u7ea7\u5230\u8be5\u8f6f\u4ef6\u5305\u7248\u672c
INFO_UPGRADE_DESCRIPTION_NO_PROMPT_1191=\u4f7f\u7528\u975e\u4ea4\u4e92\u6a21\u5f0f\u3002\u63d0\u793a\u8f93\u5165\u6240\u9700\u7684\u4efb\u4f55\u4fe1\u606f\uff0c\u800c\u4e0d\u662f\u5931\u8d25
INFO_UPGRADE_DESCRIPTION_SILENT_1192=\u6267\u884c\u9759\u9ed8\u5347\u7ea7\u6216\u8fd8\u539f
INFO_LDIFIMPORT_DESCRIPTION_COUNT_REJECTS_1195=\u8ba1\u7b97\u670d\u52a1\u5668\u62d2\u7edd\u7684\u6761\u76ee\u6570\uff0c\u5e76\u4ee5\u9000\u51fa\u4ee3\u7801\u5f62\u5f0f\u8fd4\u56de\u8be5\u503c\uff08\u7531\u4e8e\u9000\u51fa\u4ee3\u7801\u9650\u5236\uff0c\u8d85\u8fc7 255 \u7684\u503c\u5c06\u51cf\u5c0f\u4e3a 255\uff09
INFO_LDIFIMPORT_DESCRIPTION_SKIP_FILE_1197=\u5c06\u8df3\u8fc7\u7684\u6761\u76ee\u5199\u5165\u6307\u5b9a\u6587\u4ef6
###SEVERE_ERR_LDIFIMPORT_CANNOT_OPEN_SKIP_FILE_1198=An error occurred while \
### trying to open the skip file %s for writing:  %s
INFO_VERIFYINDEX_DESCRIPTION_COUNT_ERRORS_1199=\u8ba1\u7b97\u5728\u9a8c\u8bc1\u671f\u95f4\u53d1\u73b0\u7684\u9519\u8bef\u6570\uff0c\u5e76\u4ee5\u9000\u51fa\u4ee3\u7801\u5f62\u5f0f\u8fd4\u56de\u8be5\u503c\uff08\u7531\u4e8e\u9000\u51fa\u4ee3\u7801\u9650\u5236\uff0c\u8d85\u8fc7 255 \u7684\u503c\u5c06\u51cf\u5c0f\u4e3a 255\uff09
INFO_PWPSTATE_LABEL_PASSWORD_HISTORY_1201=\u5bc6\u7801\u5386\u53f2\u8bb0\u5f55
INFO_DESCRIPTION_PWPSTATE_GET_PASSWORD_HISTORY_1202=\u663e\u793a\u7528\u6237\u7684\u5bc6\u7801\u5386\u53f2\u8bb0\u5f55\u72b6\u6001\u503c
INFO_DESCRIPTION_PWPSTATE_CLEAR_PASSWORD_HISTORY_1203=\u6e05\u9664\u7528\u6237\u7684\u5bc6\u7801\u5386\u53f2\u8bb0\u5f55\u72b6\u6001\u503c\u3002\u53ea\u5e94\u5c06\u5176\u7528\u4e8e\u6d4b\u8bd5\u76ee\u7684
###SEVERE_ERR_CONFIGDS_PORT_ALREADY_SPECIFIED_1211=ERROR:  You have specified \
### the value %s for different ports
###SEVERE_ERR_CLI_ERROR_PROPERTY_UNRECOGNIZED_1212=The property "%s" is not a \
### recognized property
###SEVERE_ERR_CLI_ERROR_MISSING_PROPERTY_1213=The mandatory property "%s" is \
### missing
###SEVERE_ERR_CLI_ERROR_INVALID_PROPERTY_VALUE_1214=The value "%s" specified for \
### the property "%s" is invalid
INFO_CLI_HEADING_PROPERTY_DEFAULT_VALUE_1215=\u9ed8\u8ba4\u503c
INFO_REVERT_DESCRIPTION_DIRECTORY_1219=\u5b58\u50a8\u8fd8\u539f\u6587\u4ef6\u7684\u76ee\u5f55\u3002\u6b64\u76ee\u5f55\u5e94\u8be5\u4e3a\u5728\u8fd0\u884c\u5347\u7ea7\u5de5\u5177\u65f6\u521b\u5efa\u7684 'history' \u76ee\u5f55\u7684\u5b50\u76ee\u5f55\u4e4b\u4e00
INFO_REVERT_DESCRIPTION_RECENT_1220=\u5b89\u88c5\u5c06\u8fd8\u539f\u81f3\u6700\u8fd1\u5347\u7ea7\u4e4b\u524d\u7684\u72b6\u6001
INFO_REVERT_DESCRIPTION_INTERACTIVE_1221=\u63d0\u793a\u8f93\u5165\u6240\u9700\u7684\u4efb\u4f55\u4fe1\u606f\uff0c\u800c\u4e0d\u662f\u5931\u8d25
INFO_REVERT_DESCRIPTION_SILENT_1222=\u6267\u884c\u9759\u9ed8\u8fd8\u539f
INFO_LDIFIMPORT_DESCRIPTION_CLEAR_BACKEND_1251=\u5728\u5bfc\u5165\u4e4b\u524d\u5220\u9664\u540e\u7aef\u4e2d\u6240\u6709\u57fa DN \u7684\u6240\u6709\u6761\u76ee
###SEVERE_ERR_LDIFIMPORT_MISSING_BACKEND_ARGUMENT_1252=Neither the %s or the %s \
### argument was provided.  One of these arguments must be given to specify the \
### backend for the LDIF data to be imported to
###SEVERE_ERR_LDIFIMPORT_MISSING_CLEAR_BACKEND_1253=Importing to a backend \
### without the append argument will remove all entries for all base DNs (%s) in \
### the backend. The %s argument must be given to continue with import
MILD_ERR_MAKELDIF_TAG_LIST_NO_ARGUMENTS_1291=\u6a21\u677f\u6587\u4ef6\u7b2c %d \u884c\u4e2d\u7684\u5217\u8868\u6807\u8bb0\u4e0d\u5305\u542b\u7528\u4e8e\u6307\u5b9a\u5217\u8868\u503c\u7684\u4efb\u4f55\u53c2\u6570\u3002\u5fc5\u987b\u81f3\u5c11\u63d0\u4f9b\u4e00\u4e2a\u5217\u8868\u503c
MILD_WARN_MAKELDIF_TAG_LIST_INVALID_WEIGHT_1292=\u6a21\u677f\u6587\u4ef6\u7b2c %d \u884c\u4e2d\u7684\u5217\u8868\u6807\u8bb0\u5305\u542b\u9879 '%s'\uff0c\u8be5\u9879\u5177\u6709\u4e00\u4e2a\u5206\u53f7\uff0c\u4f46\u8be5\u5206\u53f7\u6ca1\u6709\u540e\u8ddf\u6574\u6570\u3002\u5e94\u5c06\u5206\u53f7\u4f5c\u4e3a\u503c\u7684\u4e00\u90e8\u5206\uff0c\u800c\u4e0d\u662f\u4f5c\u4e3a\u5c06\u503c\u4e0e\u5176\u76f8\u5bf9\u6743\u91cd\u9694\u5f00\u7684\u5206\u754c\u7b26
###FATAL_ERR_INITIALIZE_SERVER_ROOT_1293=An unexpected error occurred \
###  attempting to set the server's root directory to %s: %s
###SEVERE_ERR_LDAP_CONN_MUTUALLY_EXCLUSIVE_ARGUMENTS_1294=ERROR:  You may not \
### provide both the %s and the %s arguments
###SEVERE_ERR_LDAP_CONN_CANNOT_INITIALIZE_SSL_1295=ERROR:  Unable to perform SSL \
### initialization:  %s
###SEVERE_ERR_LDAP_CONN_CANNOT_PARSE_SASL_OPTION_1296=ERROR:  The provided SASL \
### option string "%s" could not be parsed in the form "name=value"
###SEVERE_ERR_LDAP_CONN_NO_SASL_MECHANISM_1297=ERROR:  One or more SASL options \
### were provided, but none of them were the "mech" option to specify which SASL \
### mechanism should be used
###SEVERE_ERR_LDAP_CONN_CANNOT_DETERMINE_PORT_1298=ERROR:  Cannot parse the value \
### of the %s argument as an integer value between 1 and 65535:  %s
###SEVERE_ERR_LDAP_CONN_CANNOT_CONNECT_1299=ERROR:  Cannot establish a connection \
### to the Directory Server %s.  Verify that the server is running and that \
### the provided credentials are valid.  Details:  %s
INFO_LDAP_CONN_DESCRIPTION_HOST_1300=\u76ee\u5f55\u670d\u52a1\u5668\u4e3b\u673a\u540d\u6216 IP \u5730\u5740
INFO_LDAP_CONN_DESCRIPTION_PORT_1301=\u76ee\u5f55\u670d\u52a1\u5668\u7aef\u53e3\u53f7
INFO_LDAP_CONN_DESCRIPTION_USESSL_1302=\u4f7f\u7528 SSL \u786e\u4fdd\u4e0e\u670d\u52a1\u5668\u8fdb\u884c\u5b89\u5168\u901a\u4fe1
INFO_LDAP_CONN_DESCRIPTION_USESTARTTLS_1303=\u4f7f\u7528 StartTLS \u786e\u4fdd\u4e0e\u670d\u52a1\u5668\u8fdb\u884c\u5b89\u5168\u901a\u4fe1
INFO_LDAP_CONN_DESCRIPTION_BINDDN_1304=\u7528\u4e8e\u7ed1\u5b9a\u5230\u670d\u52a1\u5668\u7684 DN
INFO_LDAP_CONN_DESCRIPTION_BINDPW_1305=\u7528\u4e8e\u7ed1\u5b9a\u5230\u670d\u52a1\u5668\u7684\u5bc6\u7801
INFO_LDAP_CONN_DESCRIPTION_BINDPWFILE_1306=\u7ed1\u5b9a\u5bc6\u7801\u6587\u4ef6
INFO_LDAP_CONN_DESCRIPTION_SASLOPTIONS_1307=SASL \u7ed1\u5b9a\u9009\u9879
INFO_LDAP_CONN_DESCRIPTION_TRUST_ALL_1308=\u4fe1\u4efb\u6240\u6709\u670d\u52a1\u5668 SSL \u8bc1\u4e66
INFO_LDAP_CONN_DESCRIPTION_KSFILE_1309=\u8bc1\u4e66\u5bc6\u94a5\u5e93\u8def\u5f84
INFO_LDAP_CONN_DESCRIPTION_KSPW_1310=\u8bc1\u4e66\u5bc6\u94a5\u5e93 PIN
INFO_LDAP_CONN_DESCRIPTION_KSPWFILE_1311=\u8bc1\u4e66\u5bc6\u94a5\u5e93 PIN \u6587\u4ef6
INFO_LDAP_CONN_DESCRIPTION_TSFILE_1312=\u8bc1\u4e66\u4fe1\u4efb\u5e93\u8def\u5f84
INFO_LDAP_CONN_DESCRIPTION_TSPW_1313=\u8bc1\u4e66\u4fe1\u4efb\u5e93 PIN
INFO_LDAP_CONN_DESCRIPTION_TSPWFILE_1314=\u8bc1\u4e66\u4fe1\u4efb\u5e93 PIN \u6587\u4ef6
###SEVERE_ERR_TASK_CLIENT_UNEXPECTED_CONNECTION_CLOSURE_1315=NOTICE:  The \
### connection to the Directory Server was closed while waiting for a response to \
### the shutdown request.  This likely means that the server has started the \
### shutdown process
###SEVERE_ERR_TASK_TOOL_IO_ERROR_1316=ERROR:  An I/O error occurred while \
### attempting to communicate with the Directory Server:  %s
###SEVERE_ERR_TASK_TOOL_DECODE_ERROR_1317=ERROR:  An error occurred while \
### trying to decode the response from the server:  %s
###SEVERE_ERR_TASK_CLIENT_INVALID_RESPONSE_TYPE_1318=ERROR:  Expected an add \
### response message but got a %s message instead
INFO_TASK_TOOL_TASK_SCHEDULED_NOW_1319=\u8ba1\u5212\u7acb\u5373\u5f00\u59cb\u6267\u884c %s \u4efb\u52a1 %s
###SEVERE_ERR_LDAP_CONN_INCOMPATIBLE_ARGS_1320=ERROR:  argument %s is \
### incompatible with use of this tool to interact with the directory as a client
###SEVERE_ERR_CREATERC_ONLY_RUNS_ON_UNIX_1321=This tool may only be used on \
### UNIX-based systems
INFO_CREATERC_TOOL_DESCRIPTION_1322=\u521b\u5efa\u4e00\u4e2a\u53ef\u7528\u4e8e\u5728\u57fa\u4e8e UNIX \u7684\u7cfb\u7edf\u4e0a\u542f\u52a8\u3001\u505c\u6b62\u548c\u91cd\u65b0\u542f\u52a8\u76ee\u5f55\u670d\u52a1\u5668\u7684 RC \u811a\u672c
INFO_CREATERC_OUTFILE_DESCRIPTION_1323=\u8981\u521b\u5efa\u7684\u8f93\u51fa\u6587\u4ef6\u7684\u8def\u5f84
###SEVERE_ERR_CREATERC_UNABLE_TO_DETERMINE_SERVER_ROOT_1324=Unable to determine \
### the path to the server root directory.  Please ensure that the %s system \
### property or the %s environment variable is set to the path of the server \
### root directory
###SEVERE_ERR_CREATERC_CANNOT_WRITE_1325=An error occurred while attempting to \
### generate the RC script:  %s
###SEVERE_ERR_DSCFG_ERROR_QUIET_AND_INTERACTIVE_INCOMPATIBLE_1326=If you specify \
### the {%s} argument you must also specify {%s}
INFO_DESCRIPTION_DBTEST_TOOL_1327=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u8c03\u8bd5 JE \u6570\u636e\u5e93
INFO_DESCRIPTION_DBTEST_SUBCMD_LIST_ROOT_CONTAINERS_1328=\u5217\u51fa\u6240\u6709 JE \u540e\u7aef\u4f7f\u7528\u7684\u6839\u5bb9\u5668
INFO_DESCRIPTION_DBTEST_SUBCMD_LIST_ENTRY_CONTAINERS_1329=\u5217\u51fa\u6839\u5bb9\u5668\u7684\u6761\u76ee\u5bb9\u5668
INFO_DESCRIPTION_DBTEST_SUBCMD_DUMP_DATABASE_CONTAINER_1330=\u8f6c\u50a8\u6570\u636e\u5e93\u5bb9\u5668\u4e2d\u7684\u8bb0\u5f55
INFO_DESCRIPTION_DBTEST_BACKEND_ID_1331=\u8981\u8c03\u8bd5\u7684 JE \u540e\u7aef\u7684 ID
INFO_DESCRIPTION_DBTEST_BASE_DN_1332=\u8981\u8c03\u8bd5\u7684\u6761\u76ee\u5bb9\u5668\u7684\u57fa DN
INFO_DESCRIPTION_DBTEST_DATABASE_NAME_1333=\u8981\u8c03\u8bd5\u7684\u6570\u636e\u5e93\u5bb9\u5668\u7684\u540d\u79f0
INFO_DESCRIPTION_DBTEST_SKIP_DECODE_1334=\u4e0d\u8981\u5c1d\u8bd5\u5c06 JE \u6570\u636e\u89e3\u7801\u4e3a\u5176\u76f8\u5e94\u7c7b\u578b
MILD_ERR_DBTEST_DECODE_FAIL_1335=\u5728\u5bf9\u6570\u636e\u8fdb\u884c\u89e3\u7801\u65f6\u51fa\u73b0\u9519\u8bef: %s
INFO_DESCRIPTION_DBTEST_SUBCMD_LIST_INDEX_STATUS_1336=\u5217\u51fa\u6761\u76ee\u5bb9\u5668\u4e2d\u7684\u7d22\u5f15\u72b6\u6001
INFO_DESCRIPTION_DBTEST_MAX_KEY_VALUE_1337=\u4ec5\u663e\u793a\u952e\u5e94\u6392\u5728\u63d0\u4f9b\u7684\u503c\u524d\u9762\u7684\u8bb0\u5f55\uff08\u4f7f\u7528\u6570\u636e\u5e93\u5bb9\u5668\u7684\u6bd4\u8f83\u5668\uff09
INFO_DESCRIPTION_DBTEST_MIN_KEY_VALUE_1338=\u4ec5\u663e\u793a\u952e\u5e94\u6392\u5728\u63d0\u4f9b\u7684\u503c\u540e\u9762\u7684\u8bb0\u5f55\uff08\u4f7f\u7528\u6570\u636e\u5e93\u5bb9\u5668\u7684\u6bd4\u8f83\u5668\uff09
INFO_DESCRIPTION_DBTEST_MAX_DATA_SIZE_1339=\u4ec5\u663e\u793a\u6570\u636e\u4e0d\u5927\u4e8e\u63d0\u4f9b\u7684\u503c\u7684\u8bb0\u5f55
INFO_DESCRIPTION_DBTEST_MIN_DATA_SIZE_1340=\u4ec5\u663e\u793a\u6570\u636e\u4e0d\u5c0f\u4e8e\u63d0\u4f9b\u7684\u503c\u7684\u8bb0\u5f55
INFO_DESCRIPTION_DBTEST_SUBCMD_LIST_DATABASE_CONTAINERS_1341=\u5217\u51fa\u6761\u76ee\u5bb9\u5668\u7684\u6570\u636e\u5e93\u5bb9\u5668
INFO_LABEL_DBTEST_BACKEND_ID_1342=\u540e\u7aef ID
INFO_LABEL_DBTEST_DB_DIRECTORY_1343=\u6570\u636e\u5e93\u76ee\u5f55
INFO_LABEL_DBTEST_BASE_DN_1344=\u57fa DN
INFO_LABEL_DBTEST_JE_DATABASE_PREFIX_1345=JE \u6570\u636e\u5e93\u524d\u7f00
INFO_LABEL_DBTEST_ENTRY_COUNT_1346=\u6761\u76ee\u8ba1\u6570
###SEVERE_ERR_DBTEST_NO_BACKENDS_FOR_ID_1347=None of the Directory Server \
###  backends are configured with the requested backend ID %s
###SEVERE_ERR_DBTEST_NO_ENTRY_CONTAINERS_FOR_BASE_DN_1348=None of the entry \
###  containers are configured with the requested base DN %s in backend %s
###SEVERE_ERR_DBTEST_NO_DATABASE_CONTAINERS_FOR_NAME_1349=No database container \
###  exists with the requested name %s in entry container %s and backend %s
###SEVERE_ERR_DBTEST_ERROR_INITIALIZING_BACKEND_1350=An unexpected error occurred \
###  while attempting to initialize the JE backend %s: %s
###SEVERE_ERR_DBTEST_ERROR_READING_DATABASE_1351=An unexpected error occurred \
###  while attempting to read and/or decode records from the database: %s
###SEVERE_ERR_DBTEST_DECODE_BASE_DN_1352=Unable to decode base DN string "%s" as \
###  a valid distinguished name:  %s
INFO_LABEL_DBTEST_DATABASE_NAME_1353=\u6570\u636e\u5e93\u540d\u79f0
INFO_LABEL_DBTEST_DATABASE_TYPE_1354=\u6570\u636e\u5e93\u7c7b\u578b
INFO_LABEL_DBTEST_JE_DATABASE_NAME_1355=JE \u6570\u636e\u5e93\u540d\u79f0
INFO_LABEL_DBTEST_JE_RECORD_COUNT_1356=\u8bb0\u5f55\u8ba1\u6570
INFO_LABEL_DBTEST_INDEX_NAME_1357=\u7d22\u5f15\u540d\u79f0
INFO_LABEL_DBTEST_INDEX_TYPE_1358=\u7d22\u5f15\u7c7b\u578b
INFO_LABEL_DBTEST_INDEX_STATUS_1359=\u7d22\u5f15\u72b6\u6001
INFO_LABEL_DBTEST_KEY_1360=\u952e
INFO_LABEL_DBTEST_DATA_1361=\u6570\u636e
###SEVERE_WARN_DBTEST_CANNOT_UNLOCK_BACKEND_1362=An error occurred while \
### attempting to release the shared lock for backend %s:  %s.  This lock should \
### automatically be cleared when the process exits, so no further action \
### should be required
###SEVERE_ERR_DBTEST_CANNOT_LOCK_BACKEND_1363=An error occurred while \
### attempting to acquire a shared lock for backend %s:  %s.  This generally \
### means that some other process has exclusive access to this backend (e.g., a \
### restore or an LDIF import)
###SEVERE_ERR_DBTEST_CANNOT_DECODE_KEY_1364=An error occurred while decoding the \
###  min/max key value %s: %s. Values prefixed with "0x" will be decoded as raw \
###  bytes in hex. When dumping the DN2ID database, the value must be a valid \
###  distinguished name. When dumping the ID2Entry database, the value will be \
###  decoded as a entry ID. When dumping all other databases, the value will be \
###  decoded as a string
INFO_LABEL_DBTEST_ENTRY_1365=\u6761\u76ee
INFO_LABEL_DBTEST_ENTRY_ID_1366=\u6761\u76ee ID
INFO_LABEL_DBTEST_ENTRY_DN_1367=\u6761\u76ee DN
INFO_LABEL_DBTEST_URI_1368=URI
INFO_LABEL_DBTEST_INDEX_VALUE_1369=\u7d22\u5f15\u503c
INFO_LABEL_DBTEST_INDEX_ENTRY_ID_LIST_1370=\u6761\u76ee ID \u5217\u8868
INFO_LABEL_DBTEST_VLV_INDEX_LAST_SORT_KEYS_1371=\u4e0a\u6b21\u6392\u5e8f\u952e
###SEVERE_ERR_DBTEST_CANNOT_DECODE_SIZE_1372=An error occurred while parsing the \
###  min/max data size %s as a integer: %s
###SEVERE_ERR_CONFIGDS_CANNOT_ENABLE_ADS_TRUST_STORE_1373=An error occurred while \
### attempting to enable the ADS trust store: %s
###SEVERE_ERR_DBTEST_MISSING_SUBCOMMAND_1374=A sub-command must be specified
INFO_CREATERC_USER_DESCRIPTION_1375=\u8fd0\u884c\u670d\u52a1\u5668\u65f6\u5e94\u4f7f\u7528\u7684\u7528\u6237\u5e10\u6237\u540d\u79f0
INFO_CREATERC_JAVA_HOME_DESCRIPTION_1376=\u8fd0\u884c\u670d\u52a1\u5668\u65f6\u5e94\u4f7f\u7528\u7684 Java \u5b89\u88c5\u8def\u5f84
INFO_CREATERC_JAVA_ARGS_DESCRIPTION_1377=\u8fd0\u884c\u670d\u52a1\u5668\u65f6\u5e94\u4f20\u9012\u7ed9 JVM \u7684\u4e00\u7ec4\u53c2\u6570
###SEVERE_ERR_CREATERC_JAVA_HOME_DOESNT_EXIST_1378=The directory %s specified \
### as the OPENDS_JAVA_HOME path does not exist or is not a directory
INFO_INSTALLDS_STATUS_COMMAND_LINE_1379=\u8981\u67e5\u770b\u57fa\u672c\u670d\u52a1\u5668\u914d\u7f6e\u72b6\u6001\u548c\u914d\u7f6e\uff0c\u60a8\u53ef\u4ee5\u542f\u52a8 %s
INFO_INSTALLDS_PROMPT_ENABLE_SSL_1380=\u662f\u5426\u8981\u542f\u7528 SSL\uff1f
INFO_INSTALLDS_PROMPT_LDAPSPORT_1381=\u60a8\u5e0c\u671b\u76ee\u5f55\u670d\u52a1\u5668\u4f7f\u7528\u54ea\u4e2a\u7aef\u53e3\u63a5\u53d7\u6765\u81ea LDAPS \u5ba2\u6237\u7aef\u7684\u8fde\u63a5\uff1f
INFO_INSTALLDS_ENABLE_STARTTLS_1382=\u662f\u5426\u8981\u542f\u7528 StartTLS\uff1f
INFO_INSTALLDS_PROMPT_JKS_PATH_1383=Java \u5bc6\u94a5\u5e93 (Java Key Store, JKS) \u8def\u5f84:
INFO_INSTALLDS_PROMPT_PKCS12_PATH_1384=PKCS#12 \u5bc6\u94a5\u5e93\u8def\u5f84:
INFO_INSTALLDS_PROMPT_KEYSTORE_PASSWORD_1385=\u5bc6\u94a5\u5e93 PIN:
INFO_INSTALLDS_PROMPT_CERTNICKNAME_1386=\u662f\u5426\u4f7f\u7528\u522b\u540d %s\uff1f
INFO_INSTALLDS_HEADER_CERT_TYPE_1387=\u8bc1\u4e66\u670d\u52a1\u5668\u9009\u9879:
INFO_INSTALLDS_CERT_OPTION_SELF_SIGNED_1388=\u751f\u6210\u81ea\u7b7e\u540d\u8bc1\u4e66\uff08\u5efa\u8bae\u4ec5\u7528\u4e8e\u6d4b\u8bd5\uff09
INFO_INSTALLDS_CERT_OPTION_JKS_1389=\u4f7f\u7528\u4f4d\u4e8e Java \u5bc6\u94a5\u5e93 (Java Key Store, JKS) \u4e2d\u7684\u73b0\u6709\u8bc1\u4e66
INFO_INSTALLDS_CERT_OPTION_PKCS12_1390=\u4f7f\u7528\u4f4d\u4e8e PKCS#12 \u5bc6\u94a5\u5e93\u4e2d\u7684\u73b0\u6709\u8bc1\u4e66
INFO_INSTALLDS_CERT_OPTION_PKCS11_1391=\u4f7f\u7528 PKCS#11 \u4ee4\u724c\u4e2d\u7684\u73b0\u6709\u8bc1\u4e66
INFO_INSTALLDS_PROMPT_CERT_TYPE_CHOICE_1392=\u8bc1\u4e66\u7c7b\u578b\u9009\u9879:
INFO_INSTALLDS_PROMPT_START_SERVER_1393=\u662f\u5426\u8981\u5728\u5b8c\u6210\u914d\u7f6e\u65f6\u542f\u52a8\u670d\u52a1\u5668\uff1f
###SEVERE_ERR_INSTALLDS_CERTNICKNAME_NOT_FOUND_1394=The provided certificate \
### nickname could not be found.  The key store contains the following \
### certificate nicknames: %s
###SEVERE_ERR_INSTALLDS_MUST_PROVIDE_CERTNICKNAME_1395=The key store contains the \
### following certificate nicknames: %s.%nYou have to provide the nickname of the \
### certificate you want to use
INFO_INSTALLDS_DESCRIPTION_DO_NOT_START_1396=\u5728\u5b8c\u6210\u914d\u7f6e\u65f6\u4e0d\u542f\u52a8\u670d\u52a1\u5668
INFO_INSTALLDS_DESCRIPTION_ENABLE_STARTTLS_1397=\u542f\u7528 StartTLS \u4ee5\u786e\u4fdd\u4f7f\u7528 LDAP \u7aef\u53e3\u4e0e\u670d\u52a1\u5668\u8fdb\u884c\u5b89\u5168\u901a\u4fe1
INFO_INSTALLDS_DESCRIPTION_LDAPSPORT_1398=\u76ee\u5f55\u670d\u52a1\u5668\u4fa6\u542c LDAPS \u901a\u4fe1\u65f6\u5e94\u4f7f\u7528\u7684\u7aef\u53e3\u3002\u53ea\u6709\u5728\u660e\u786e\u6307\u5b9a\u6b64\u53c2\u6570\u65f6\uff0c\u624d\u4f1a\u914d\u7f6e LDAPS \u7aef\u53e3\u5e76\u542f\u7528 SSL
INFO_INSTALLDS_DESCRIPTION_USE_SELF_SIGNED_1399=\u751f\u6210\u670d\u52a1\u5668\u5728\u63a5\u53d7\u57fa\u4e8e SSL \u7684\u8fde\u63a5\u6216\u6267\u884c StartTLS \u534f\u5546\u65f6\u5e94\u4f7f\u7528\u7684\u81ea\u7b7e\u540d\u8bc1\u4e66
INFO_INSTALLDS_DESCRIPTION_USE_PKCS11_1400=\u4f7f\u7528\u670d\u52a1\u5668\u5728\u63a5\u53d7\u57fa\u4e8e SSL \u7684\u8fde\u63a5\u6216\u6267\u884c StartTLS \u534f\u5546\u65f6\u5e94\u4f7f\u7528\u7684 PKCS#11 \u4ee4\u724c\u4e2d\u7684\u8bc1\u4e66
INFO_INSTALLDS_DESCRIPTION_USE_JAVAKEYSTORE_1401=Java \u5bc6\u94a5\u5e93 (Java Key Store, JKS) \u7684\u8def\u5f84\uff0c\u8be5\u5bc6\u94a5\u5e93\u4e2d\u5305\u542b\u8981\u7528\u4f5c\u670d\u52a1\u5668\u8bc1\u4e66\u7684\u8bc1\u4e66
INFO_INSTALLDS_DESCRIPTION_USE_PKCS12_1402=PKCS#12 \u5bc6\u94a5\u5e93\u7684\u8def\u5f84\uff0c\u8be5\u5bc6\u94a5\u5e93\u4e2d\u5305\u542b\u670d\u52a1\u5668\u5728\u63a5\u53d7\u57fa\u4e8e SSL \u7684\u8fde\u63a5\u6216\u6267\u884c StartTLS \u534f\u5546\u65f6\u5e94\u4f7f\u7528\u7684\u8bc1\u4e66
INFO_INSTALLDS_DESCRIPTION_KEYSTOREPASSWORD_1403=\u8bc1\u4e66\u5bc6\u94a5\u5e93 PIN\u3002\u5728\u6307\u5b9a\u5c06\u73b0\u6709\u8bc1\u4e66\uff08JKS\u3001JCEKS\u3001PKCS#12  \u6216 PKCS#11\uff09\u7528\u4f5c\u670d\u52a1\u5668\u8bc1\u4e66\u65f6\uff0c\u9700\u8981\u63d0\u4f9b PIN
INFO_INSTALLDS_DESCRIPTION_KEYSTOREPASSWORD_FILE_1404=\u8bc1\u4e66\u5bc6\u94a5\u5e93 PIN \u6587\u4ef6\u3002\u5728\u6307\u5b9a\u5c06\u73b0\u6709\u8bc1\u4e66\uff08JKS\u3001JCEKS\u3001PKCS#12  \u6216 PKCS#11\uff09\u7528\u4f5c\u670d\u52a1\u5668\u8bc1\u4e66\u65f6\uff0c\u9700\u8981\u63d0\u4f9b PIN
INFO_INSTALLDS_DESCRIPTION_CERT_NICKNAME_1405=\u670d\u52a1\u5668\u5728\u63a5\u53d7\u57fa\u4e8e SSL \u7684\u8fde\u63a5\u6216\u6267\u884c StartTLS \u534f\u5546\u65f6\u5e94\u4f7f\u7528\u7684\u8bc1\u4e66\u7684\u522b\u540d
###SEVERE_ERR_INSTALLDS_SEVERAL_CERTIFICATE_TYPE_SPECIFIED_1406=You have \
### specified several certificate types to be used.  Only one certificate type \
### (self-signed, JKS, JCEKS, PKCS#12 or PCKS#11) is allowed
###SEVERE_ERR_INSTALLDS_CERTIFICATE_REQUIRED_FOR_SSL_OR_STARTTLS_1407=You have \
### chosen to enable SSL or StartTLS.  You must specify which type of certificate \
### you want the server to use
###SEVERE_ERR_INSTALLDS_NO_KEYSTORE_PASSWORD_1408=You must provide the PIN of the \
### keystore to retrieve the certificate to be used by the server.  You can use \
### {%s} or {%s}
INFO_INSTALLDS_DESCRIPTION_NO_PROMPT_1409=\u5728\u975e\u4ea4\u4e92\u6a21\u5f0f\u4e0b\u6267\u884c\u5b89\u88c5\u3002\u5982\u679c\u547d\u4ee4\u4e2d\u7f3a\u5c11\u67d0\u4e9b\u6570\u636e\uff0c\u5c06\u4e0d\u4f1a\u63d0\u793a\u7528\u6237\uff0c\u5e76\u4e14\u5de5\u5177\u5c06\u5931\u8d25
###SEVERE_ERR_INSTALLDS_SSL_OR_STARTTLS_REQUIRED_1410=You have specified to use a \
### certificate as server certificate.  You must enable SSL (using option {%s}) \
### or Start TLS (using option %s)
###SEVERE_ERR_UPGRADE_INCOMPATIBLE_ARGS_1411=The argument '%s' is incompatible \
### with '%s'
INFO_TASKINFO_TOOL_DESCRIPTION_1412=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u83b7\u53d6\u8ba1\u5212\u5728\u76ee\u5f55\u670d\u52a1\u5668\u4e2d\u8fd0\u884c\u7684\u4efb\u52a1\u5217\u8868\u4ee5\u53ca\u6709\u5173\u5404\u4e2a\u4efb\u52a1\u7684\u4fe1\u606f
INFO_TASKINFO_SUMMARY_ARG_DESCRIPTION_1413=\u6253\u5370\u4efb\u52a1\u6458\u8981
INFO_TASKINFO_TASK_ARG_DESCRIPTION_1414=\u7279\u5b9a\u4efb\u52a1\u7684 ID\uff0c\u6b64\u5de5\u5177\u5c06\u663e\u793a\u6709\u5173\u8be5\u4efb\u52a1\u7684\u4fe1\u606f
INFO_TASKINFO_CMD_REFRESH_1415=\u5237\u65b0
INFO_TASKINFO_CMD_CANCEL_1416=\u53d6\u6d88\u4efb\u52a1
INFO_TASKINFO_CMD_VIEW_LOGS_1417=\u67e5\u770b\u65e5\u5fd7
INFO_TASKINFO_MENU_PROMPT_1418=\u8f93\u5165\u83dc\u5355\u9879\u6216\u4efb\u52a1\u7f16\u53f7
INFO_TASKINFO_CMD_CANCEL_NUMBER_PROMPT_1419=\u8f93\u5165\u8981\u53d6\u6d88\u7684\u4efb\u52a1\u7f16\u53f7 [%d]
INFO_TASKINFO_MENU_1420=\u83dc\u5355
MILD_ERR_TASKINFO_INVALID_TASK_NUMBER_1421=\u4efb\u52a1\u7f16\u53f7\u5fc5\u987b\u4ecb\u4e8e 1 \u548c %d \u4e4b\u95f4
MILD_ERR_TASKINFO_INVALID_MENU_KEY_1422=\u83dc\u5355\u9879\u6216\u4efb\u52a1\u7f16\u53f7 '%s' \u65e0\u6548
INFO_TASKINFO_FIELD_ID_1423=ID
INFO_TASKINFO_FIELD_TYPE_1424=\u7c7b\u578b
INFO_TASKINFO_FIELD_STATUS_1425=\u72b6\u6001
INFO_TASKINFO_FIELD_SCHEDULED_START_1426=\u8ba1\u5212\u5f00\u59cb\u65f6\u95f4
INFO_TASKINFO_FIELD_ACTUAL_START_1427=\u5b9e\u9645\u5f00\u59cb\u65f6\u95f4
INFO_TASKINFO_FIELD_COMPLETION_TIME_1428=\u5b8c\u6210\u65f6\u95f4
INFO_TASKINFO_FIELD_DEPENDENCY_1429=\u4f9d\u8d56\u9879
INFO_TASKINFO_FIELD_FAILED_DEPENDENCY_ACTION_1430=\u4f9d\u8d56\u9879\u5931\u8d25\u65f6\u6267\u884c\u7684\u64cd\u4f5c
INFO_TASKINFO_FIELD_LOG_1431=\u65e5\u5fd7\u6d88\u606f
INFO_TASKINFO_FIELD_LAST_LOG_1432=\u6700\u540e\u4e00\u6761\u65e5\u5fd7\u6d88\u606f
INFO_TASKINFO_FIELD_NOTIFY_ON_COMPLETION_1433=\u5b8c\u6210\u65f6\u53d1\u9001\u7535\u5b50\u90ae\u4ef6
INFO_TASKINFO_FIELD_NOTIFY_ON_ERROR_1434=\u51fa\u73b0\u9519\u8bef\u65f6\u53d1\u9001\u7535\u5b50\u90ae\u4ef6
INFO_TASKINFO_CMD_CANCEL_SUCCESS_1435=\u5df2\u53d6\u6d88\u4efb\u52a1 %s
###SEVERE_ERR_TASKINFO_CMD_CANCEL_ERROR_1436=Error canceling task %s:  %s
###SEVERE_ERR_TASKINFO_RETRIEVING_TASK_ENTRY_1437=Error retrieving task entry \
###  %s:  %s
MILD_ERR_TASKINFO_UNKNOWN_TASK_ENTRY_1438=\u6ca1\u6709 ID \u4e3a %s \u7684\u4efb\u52a1
INFO_TASKINFO_DETAILS_1439=\u4efb\u52a1\u8be6\u7ec6\u4fe1\u606f
INFO_TASKINFO_OPTIONS_1440=%s \u9009\u9879
INFO_TASKINFO_NO_TASKS_1441=\u4e0d\u5b58\u5728\u4efb\u4f55\u4efb\u52a1
INFO_TASKINFO_NONE_1442=\u65e0
INFO_TASKINFO_NONE_SPECIFIED_1443=\u672a\u6307\u5b9a\u4efb\u4f55\u5185\u5bb9
INFO_TASKINFO_IMMEDIATE_EXECUTION_1444=\u7acb\u5373\u6267\u884c
INFO_TASKINFO_LDAP_EXCEPTION_1445=\u5728\u8fde\u63a5\u76ee\u5f55\u670d\u52a1\u5668\u65f6\u51fa\u73b0\u9519\u8bef: '%s'\u3002\u8bf7\u9a8c\u8bc1\u8fde\u63a5\u9009\u9879\u662f\u5426\u6b63\u786e\uff0c\u4ee5\u53ca\u670d\u52a1\u5668\u662f\u5426\u6b63\u5728\u8fd0\u884c
###SEVERE_ERR_INCOMPATIBLE_ARGUMENTS_1446=Options '%s' and '%s' are incompatible \
###  with each other and cannot be used together
INFO_TASKINFO_TASK_ARG_CANCEL_1447=\u8981\u53d6\u6d88\u7684\u7279\u5b9a\u4efb\u52a1 ID
###SEVERE_ERR_TASKINFO_CANCELING_TASK_1448=Error canceling task '%s': %s
###SEVERE_ERR_TASKINFO_ACCESSING_LOGS_1449=Error accessing logs for task '%s': %s
###SEVERE_ERR_TASKINFO_NOT_CANCELABLE_TASK_INDEX_1450=Task at index %d is not \
###  cancelable
###SEVERE_ERR_TASKINFO_NOT_CANCELABLE_TASK_1451=Task %s has finished and cannot \
###  be canceled
INFO_TASKINFO_NO_CANCELABLE_TASKS_1452=\u5f53\u524d\u6ca1\u6709\u53ef\u53d6\u6d88\u7684\u4efb\u52a1
###SEVERE_ERR_TASK_CLIENT_UNKNOWN_TASK_1453=There are no tasks defined with ID '%s'
###SEVERE_ERR_TASK_CLIENT_UNCANCELABLE_TASK_1454=Task '%s' has finished and \
###  cannot be canceled
###SEVERE_ERR_TASK_CLIENT_TASK_STATE_UNKNOWN_1455=State for task '%s' cannot be \
###  determined
INFO_DESCRIPTION_START_DATETIME_1456=\u6307\u793a\u8ba1\u5212\u5c06\u6b64\u64cd\u4f5c\u4f5c\u4e3a\u670d\u52a1\u5668\u4efb\u52a1\u5f00\u59cb\u6267\u884c\u7684\u65e5\u671f/\u65f6\u95f4\uff0c\u4ee5\u683c\u5f0f 'YYYYMMDDhhmmss' \u8868\u793a\u3002\u5982\u679c\u503c\u4e3a '0'\uff0c\u5219\u4f1a\u8ba1\u5212\u7acb\u5373\u6267\u884c\u8be5\u4efb\u52a1\u3002\u5982\u679c\u6307\u5b9a\u6b64\u9009\u9879\uff0c\u5219\u4f1a\u8ba1\u5212\u5728\u6307\u5b9a\u7684\u65f6\u95f4\u5f00\u59cb\u6267\u884c\u64cd\u4f5c\uff0c\u968f\u540e\u6b64\u5b9e\u7528\u7a0b\u5e8f\u5c06\u7acb\u5373\u9000\u51fa
###SEVERE_ERR_START_DATETIME_FORMAT_1457=The start date/time must in format \
###  'YYYYMMDDhhmmss'
INFO_TASK_TOOL_TASK_SCHEDULED_FUTURE_1458=\u8ba1\u5212 %3$s \u5f00\u59cb\u6267\u884c %1$s \u4efb\u52a1 %2$s
###SEVERE_ERR_TASK_TOOL_START_TIME_NO_LDAP_1459=You have provided options for \
###  scheduling this operation as a task but options provided for connecting to \
###  the server's tasks backend resulted in the following error: '%s'
INFO_DESCRIPTION_PROP_FILE_PATH_1461=\u5305\u542b\u7528\u4e8e\u547d\u4ee4\u884c\u53c2\u6570\u7684\u9ed8\u8ba4\u5c5e\u6027\u503c\u7684\u6587\u4ef6\u7684\u8def\u5f84
INFO_DESCRIPTION_NO_PROP_FILE_1462=\u4e0d\u4f1a\u4f7f\u7528\u4efb\u4f55\u5c5e\u6027\u6587\u4ef6\u6765\u83b7\u53d6\u9ed8\u8ba4\u547d\u4ee4\u884c\u53c2\u6570\u503c
INFO_DESCRIPTION_TASK_TASK_ARGS_1463=\u4efb\u52a1\u8ba1\u5212\u9009\u9879
INFO_DESCRIPTION_TASK_LDAP_ARGS_1464=\u4efb\u52a1\u540e\u7aef\u8fde\u63a5\u9009\u9879
INFO_DESCRIPTION_GENERAL_ARGS_1465=\u5e38\u89c4\u9009\u9879
INFO_DESCRIPTION_IO_ARGS_1466=\u5b9e\u7528\u7a0b\u5e8f\u8f93\u5165/\u8f93\u51fa\u9009\u9879
INFO_DESCRIPTION_LDAP_CONNECTION_ARGS_1467=LDAP \u8fde\u63a5\u9009\u9879
INFO_DESCRIPTION_CONFIG_OPTIONS_ARGS_1468=\u914d\u7f6e\u9009\u9879
INFO_DESCRIPTION_TASK_COMPLETION_NOTIFICATION_1469=\u5728\u5b8c\u6210\u4efb\u52a1\u65f6\u901a\u77e5\u7684\u6536\u4ef6\u4eba\u7684\u7535\u5b50\u90ae\u4ef6\u5730\u5740\u3002\u53ef\u4ee5\u591a\u6b21\u6307\u5b9a\u6b64\u9009\u9879
INFO_DESCRIPTION_TASK_ERROR_NOTIFICATION_1470=\u5728\u6267\u884c\u6b64\u4efb\u52a1\u671f\u95f4\u51fa\u73b0\u9519\u8bef\u65f6\u901a\u77e5\u7684\u6536\u4ef6\u4eba\u7684\u7535\u5b50\u90ae\u4ef6\u5730\u5740\u3002\u53ef\u4ee5\u591a\u6b21\u6307\u5b9a\u6b64\u9009\u9879
INFO_DESCRIPTION_TASK_DEPENDENCY_ID_1471=\u6b64\u4efb\u52a1\u6240\u4f9d\u8d56\u7684\u4efb\u52a1 ID\u3002\u5728\u6267\u884c\u5b8c\u67d0\u4e2a\u4efb\u52a1\u7684\u6240\u6709\u4f9d\u8d56\u4efb\u52a1\u540e\uff0c\u624d\u4f1a\u5f00\u59cb\u6267\u884c\u8be5\u4efb\u52a1
INFO_DESCRIPTION_TASK_FAILED_DEPENDENCY_ACTION_1472=\u5728\u67d0\u4e2a\u4f9d\u8d56\u4efb\u52a1\u5931\u8d25\u65f6\u6b64\u4efb\u52a1\u5c06\u6267\u884c\u7684\u64cd\u4f5c\u3002\u8be5\u503c\u5fc5\u987b\u4e3a %s \u4e4b\u4e00\u3002\u5982\u679c\u672a\u6307\u5b9a\uff0c\u5219\u9ed8\u8ba4\u4e3a %s
###SEVERE_ERR_TASKTOOL_OPTIONS_FOR_TASK_ONLY_1473=The option %s is only \
###  applicable when scheduling this operation as a task
###SEVERE_ERR_TASKTOOL_INVALID_EMAIL_ADDRESS_1474=The value %s for option %s is \
###  not a valid email address
###SEVERE_ERR_TASKTOOL_INVALID_FDA_1475=The failed dependency action value %s is \
###  invalid.  The value must be one of %s
###SEVERE_ERR_TASKTOOL_FDA_WITH_NO_DEPENDENCY_1476=The failed dependency action \
###  option is to be used in conjunction with one or more dependencies
###SEVERE_ERR_TASKINFO_TASK_NOT_CANCELABLE_TASK_1477=Error:  task %s is not in a \
###  cancelable state
NOTICE_BACKUPDB_CANCELLED_1478=\u5df2\u53d6\u6d88\u5907\u4efd\u8fc7\u7a0b
INFO_INSTALLDS_DESCRIPTION_REJECTED_FILE_1479=\u5c06\u62d2\u7edd\u7684\u6761\u76ee\u5199\u5165\u6307\u5b9a\u6587\u4ef6
MILD_ERR_INSTALLDS_CANNOT_WRITE_REJECTED_1480=\u65e0\u6cd5\u5c06\u62d2\u7edd\u7684\u6761\u76ee\u5199\u5165\u6587\u4ef6 %s\u3002\u8bf7\u9a8c\u8bc1\u60a8\u662f\u5426\u5bf9\u8be5\u6587\u4ef6\u5177\u6709\u8db3\u591f\u7684\u5199\u5165\u6743\u9650
INFO_INSTALLDS_PROMPT_REJECTED_FILE_1481=\u5c06\u62d2\u7edd\u7684\u6761\u76ee\u5199\u5165\u6587\u4ef6:
INFO_INSTALLDS_DESCRIPTION_SKIPPED_FILE_1482=\u5c06\u8df3\u8fc7\u7684\u6761\u76ee\u5199\u5165\u6307\u5b9a\u6587\u4ef6
MILD_ERR_INSTALLDS_CANNOT_WRITE_SKIPPED_1483=\u65e0\u6cd5\u5c06\u8df3\u8fc7\u7684\u6761\u76ee\u5199\u5165\u6587\u4ef6 %s\u3002\u8bf7\u9a8c\u8bc1\u60a8\u662f\u5426\u5bf9\u8be5\u6587\u4ef6\u5177\u6709\u8db3\u591f\u7684\u5199\u5165\u6743\u9650
INFO_INSTALLDS_PROMPT_SKIPPED_FILE_1484=\u5c06\u8df3\u8fc7\u7684\u6761\u76ee\u5199\u5165\u6587\u4ef6:
###SEVERE_ERR_INSTALLDS_TOO_MANY_KEYSTORE_PASSWORD_TRIES_1485=The maximum number \
### of tries to provide the certificate key store PIN is %s.  Install canceled
INFO_JAVAPROPERTIES_TOOL_DESCRIPTION_1486=\u6b64\u5b9e\u7528\u7a0b\u5e8f\u53ef\u7528\u4e8e\u66f4\u6539\u4e0d\u540c\u670d\u52a1\u5668\u547d\u4ee4\u4f7f\u7528\u7684 Java \u53c2\u6570\u548c Java \u4e3b\u76ee\u5f55\u3002%n%n\u5728\u542f\u52a8\u547d\u4ee4\u4e4b\u524d\uff0c\u8bf7\u7f16\u8f91\u4f4d\u4e8e %s \u4e2d\u7684\u5c5e\u6027\u6587\u4ef6\u4ee5\u6307\u5b9a Java \u53c2\u6570\u548c Java \u4e3b\u76ee\u5f55\u3002\u5728\u7f16\u8f91\u5c5e\u6027\u6587\u4ef6\u540e\uff0c\u8bf7\u8fd0\u884c\u6b64\u547d\u4ee4\u4ee5\u4f7f\u66f4\u6539\u751f\u6548\u3002%n%n\u8bf7\u6ce8\u610f\uff0c\u6240\u505a\u7684\u66f4\u6539\u4ec5\u5e94\u7528\u4e8e\u6b64\u670d\u52a1\u5668\u5b89\u88c5\u3002\u4e0d\u4f1a\u5bf9\u73af\u5883\u53d8\u91cf\u8fdb\u884c\u4efb\u4f55\u4fee\u6539
INFO_JAVAPROPERTIES_DESCRIPTION_SILENT_1487=\u5728\u9759\u9ed8\u6a21\u5f0f\u4e0b\u8fd0\u884c\u5de5\u5177\u3002\u5728\u9759\u9ed8\u6a21\u5f0f\u4e0b\uff0c\u8fdb\u5ea6\u4fe1\u606f\u5c06\u4e0d\u8f93\u51fa\u5230\u6807\u51c6\u8f93\u51fa\u4e2d
INFO_JAVAPROPERTIES_DESCRIPTION_PROPERTIES_FILE_1488=\u7528\u4e8e\u751f\u6210\u811a\u672c\u7684\u5c5e\u6027\u6587\u4ef6\u3002\u5982\u679c\u672a\u6307\u5b9a\u6b64\u5c5e\u6027\uff0c\u5c06\u4f7f\u7528 %s
INFO_JAVAPROPERTIES_DESCRIPTION_DESTINATION_FILE_1489=\u5c06\u5199\u5165\u7684\u811a\u672c\u6587\u4ef6\u3002\u5982\u679c\u672a\u6307\u5b9a\uff0c\u5c06\u5199\u5165 %s
INFO_JAVAPROPERTIES_DESCRIPTION_HELP_1490=\u663e\u793a\u6b64\u7528\u6cd5\u4fe1\u606f
###SEVERE_ERR_JAVAPROPERTIES_WITH_PROPERTIES_FILE_1491=The file properties "%s" \
### cannot be read.  Check that it exists and that you have read rights to it
###SEVERE_ERR_JAVAPROPERTIES_WITH_DESTINATION_FILE_1492=The destination file "%s" \
### cannot be written.  Check that you have right reads to it
###SEVERE_ERR_JAVAPROPERTIES_WRITING_DESTINATION_FILE_1493=The destination file \
### "%s" cannot be written.  Check that you have right reads to it
INFO_JAVAPROPERTIES_SUCCESSFUL_NON_DEFAULT_1494=\u5df2\u6210\u529f\u521b\u5efa\u811a\u672c\u6587\u4ef6 %s\u3002\u8981\u4f7f\u547d\u4ee4\u884c\u4f7f\u7528 %s \u4e2d\u6307\u5b9a\u7684 Java \u5c5e\u6027\uff0c\u5fc5\u987b\u5c06\u521b\u5efa\u7684\u811a\u672c\u6587\u4ef6\u590d\u5236\u5230 %s
INFO_JAVAPROPERTIES_SUCCESSFUL_1495=\u64cd\u4f5c\u6210\u529f\u3002\u670d\u52a1\u5668\u547d\u4ee4\u5c06\u4f7f\u7528\u4f4d\u4e8e %s \u7684\u5c5e\u6027\u6587\u4ef6\u4e2d\u6307\u5b9a\u7684 Java \u53c2\u6570\u548c Java \u4e3b\u76ee\u5f55
INFO_DESCRIPTION_TEST_IF_OFFLINE_1496=\u5982\u679c\u8bbe\u7f6e\u6b64\u9009\u9879\uff0c\u5219\u4f1a\u6d4b\u8bd5\u662f\u5fc5\u987b\u5728\u8131\u673a\u6a21\u5f0f\u8fd8\u662f\u5728\u8054\u673a\u6a21\u5f0f\u4e0b\u8fd0\u884c\u547d\u4ee4\uff0c\u4ee5\u8fd4\u56de\u76f8\u5e94\u7684\u9519\u8bef\u4ee3\u7801
###SEVERE_ERR_BACKUPDB_REPEATED_BACKEND_ID_1497=The backend ID '%s' has been \
### specified several times
MILD_ERR_INSTALLDS_EMPTY_DN_RESPONSE_1498=ERROR\uff1a\u7a7a LDAP DN \u4e0d\u662f\u6709\u6548\u503c
# Placeholders for values as they will be displayed in the usage
INFO_FILE_PLACEHOLDER_1499={\u6587\u4ef6}
INFO_DIRECTORY_PLACEHOLDER_1500={\u76ee\u5f55}
INFO_CONFIGFILE_PLACEHOLDER_1501={\u914d\u7f6e\u6587\u4ef6}
INFO_LDIFFILE_PLACEHOLDER_1502={ldif \u6587\u4ef6}
INFO_SEED_PLACEHOLDER_1503={\u521d\u59cb\u5316\u5411\u91cf}
INFO_KEYSTOREPATH_PLACEHOLDER_1504={\u5bc6\u94a5\u5e93\u8def\u5f84}
INFO_TRUSTSTOREPATH_PLACEHOLDER_1505={\u4fe1\u4efb\u5e93\u8def\u5f84}
INFO_BINDPWD_FILE_PLACEHOLDER_1506={\u7ed1\u5b9a\u5bc6\u7801\u6587\u4ef6}
INFO_CONFIGCLASS_PLACEHOLDER_1507={\u914d\u7f6e\u7c7b}
INFO_HOST_PLACEHOLDER_1508={\u4e3b\u673a}
INFO_PORT_PLACEHOLDER_1509={\u7aef\u53e3}
INFO_BASEDN_PLACEHOLDER_1510={\u57fa DN}
INFO_ROOT_USER_DN_PLACEHOLDER_1511={\u8d85\u7ea7\u7528\u6237 DN}
INFO_BINDDN_PLACEHOLDER_1512={\u7ed1\u5b9a DN}
INFO_BINDPWD_PLACEHOLDER_1513={\u7ed1\u5b9a\u5bc6\u7801}
INFO_KEYSTORE_PWD_PLACEHOLDER_1514={\u5bc6\u94a5\u5e93\u5bc6\u7801}
INFO_PATH_PLACEHOLDER_1515={\u8def\u5f84}
INFO_TRUSTSTORE_PWD_FILE_PLACEHOLDER_1516={\u8def\u5f84}
INFO_TRUSTSTORE_PWD_PLACEHOLDER_1517={\u4fe1\u4efb\u5e93\u5bc6\u7801}
INFO_NICKNAME_PLACEHOLDER_1518={\u522b\u540d}
INFO_ASSERTION_FILTER_PLACEHOLDER_1519={\u8fc7\u6ee4\u5668}
INFO_FILTER_PLACEHOLDER_1520={\u8fc7\u6ee4\u5668}
INFO_PROXYAUTHID_PLACEHOLDER_1521={\u6388\u6743 ID}
INFO_SASL_OPTION_PLACEHOLDER_1522={\u540d\u79f0=\u503c}
INFO_PROTOCOL_VERSION_PLACEHOLDER_1523={\u7248\u672c}
INFO_DESCRIPTION_PLACEHOLDER_1524={\u63cf\u8ff0}
INFO_GROUPNAME_PLACEHOLDER_1525={\u7ec4\u540d\u79f0}
INFO_MEMBERNAME_PLACEHOLDER_1526={\u6210\u5458\u540d\u79f0}
INFO_BACKENDNAME_PLACEHOLDER_1527={\u540e\u7aef\u540d\u79f0}
INFO_SERVERID_PLACEHOLDER_1528={\u670d\u52a1\u5668 ID}
INFO_USERID_PLACEHOLDER_1529={\u7528\u6237 ID}
INFO_VALUE_SET_PLACEHOLDER_1530={\u5c5e\u6027:\u503c}
INFO_START_DATETIME_PLACEHOLDER_1531={\u5f00\u59cb\u65f6\u95f4}
INFO_PROP_FILE_PATH_PLACEHOLDER_1532={\u5c5e\u6027\u6587\u4ef6\u8def\u5f84}
INFO_EMAIL_ADDRESS_PLACEHOLDER_1533={\u7535\u5b50\u90ae\u4ef6\u5730\u5740}
INFO_TASK_ID_PLACEHOLDER_1534={\u4efb\u52a1 ID}
INFO_ACTION_PLACEHOLDER_1535={\u64cd\u4f5c}
INFO_TYPE_PLACEHOLDER_1536={\u7c7b\u578b}
INFO_CATEGORY_PLACEHOLDER_1537={\u7c7b\u522b}
INFO_PROPERTY_PLACEHOLDER_1538={\u5c5e\u6027}
INFO_NAME_PLACEHOLDER_1539={\u540d\u79f0}
INFO_UNIT_PLACEHOLDER_1540={\u5355\u4f4d}
INFO_BACKUPID_PLACEHOLDER_1541={\u5907\u4efd ID}
INFO_BACKUPDIR_PLACEHOLDER_1542={\u5907\u4efd\u76ee\u5f55}
INFO_LDAPPORT_PLACEHOLDER_1543={ldap \u7aef\u53e3}
INFO_JMXPORT_PLACEHOLDER_1544={jmx \u7aef\u53e3}
INFO_KEY_MANAGER_PROVIDER_DN_PLACEHOLDER_1545={\u5bc6\u94a5\u7ba1\u7406\u5668\u63d0\u4f9b\u7a0b\u5e8f DN}
INFO_TRUST_MANAGER_PROVIDER_DN_PLACEHOLDER_1546={\u4fe1\u4efb\u7ba1\u7406\u5668\u63d0\u4f9b\u7a0b\u5e8f DN}
INFO_KEY_MANAGER_PATH_PLACEHOLDER_1547={\u5bc6\u94a5\u7ba1\u7406\u5668\u8def\u5f84}
INFO_ROOT_USER_PWD_PLACEHOLDER_1548={\u8d85\u7ea7\u7528\u6237\u5bc6\u7801}
INFO_SERVER_ROOT_DIR_PLACEHOLDER_1549={\u670d\u52a1\u5668\u6839\u76ee\u5f55}
INFO_SERVICE_NAME_PLACEHOLDER_1550={\u670d\u52a1\u540d\u79f0}
INFO_USER_NAME_PLACEHOLDER_1551={\u7528\u6237\u540d}
INFO_ARGS_PLACEHOLDER_1552={\u53c2\u6570}
INFO_DATABASE_NAME_PLACEHOLDER_1553={\u6570\u636e\u5e93\u540d\u79f0}
INFO_MAX_KEY_VALUE_PLACEHOLDER_1554={\u6700\u5927\u5bc6\u94a5\u503c}
INFO_MIN_KEY_VALUE_PLACEHOLDER_1555={\u6700\u5c0f\u5bc6\u94a5\u503c}
INFO_MAX_DATA_SIZE_PLACEHOLDER_1556={\u6700\u5927\u6570\u636e\u5927\u5c0f}
INFO_MIN_DATA_SIZE_PLACEHOLDER_1557={\u6700\u5c0f\u6570\u636e\u5927\u5c0f}
INFO_CLEAR_PWD_1558={\u6e05\u9664\u5bc6\u7801}
INFO_ENCODED_PWD_PLACEHOLDER_1559={\u5df2\u7f16\u7801\u5bc6\u7801}
INFO_STORAGE_SCHEME_PLACEHOLDER_1560={\u65b9\u6848}
INFO_BRANCH_DN_PLACEHOLDER_1561={\u5206\u652f DN}
INFO_ATTRIBUTE_PLACEHOLDER_1562={\u5c5e\u6027}
INFO_WRAP_COLUMN_PLACEHOLDER_1563={\u6362\u884c\u5217}
INFO_TEMPLATE_FILE_PLACEHOLDER_1564={\u6a21\u677f\u6587\u4ef6}
INFO_REJECT_FILE_PLACEHOLDER_1565={\u62d2\u7edd\u6587\u4ef6}
INFO_SKIP_FILE_PLACEHOLDER_1566={\u8df3\u8fc7\u6587\u4ef6}
INFO_PROGRAM_NAME_PLACEHOLDER_1567={\u7a0b\u5e8f\u540d\u79f0}
INFO_NUM_ENTRIES_PLACEHOLDER_1568={\u6761\u76ee\u6570}
INFO_ROOT_USER_PWD_FILE_PLACEHOLDER_1569={\u8d85\u7ea7\u7528\u6237\u5bc6\u7801\u6587\u4ef6}
INFO_LDAP_CONTROL_PLACEHOLDER_1570={controloid[:criticality[:value|::b64value|:<filePath]]}
INFO_ENCODING_PLACEHOLDER_1571={\u7f16\u7801}
INFO_ATTRIBUTE_LIST_PLACEHOLDER_1572={\u5c5e\u6027\u5217\u8868}
INFO_NEW_PASSWORD_PLACEHOLDER_1573={\u65b0\u5bc6\u7801}
INFO_CURRENT_PASSWORD_PLACEHOLDER_1574={\u5f53\u524d\u5bc6\u7801}
INFO_SEARCH_SCOPE_PLACEHOLDER_1575={\u641c\u7d22\u8303\u56f4}
INFO_SORT_ORDER_PLACEHOLDER_1576={\u6392\u5217\u987a\u5e8f}
INFO_VLV_PLACEHOLDER_1577={before:after:index:count | before:after:value}
INFO_DEREFERENCE_POLICE_PLACEHOLDER_1578={\u89e3\u9664\u5f15\u7528\u7b56\u7565}
INFO_SIZE_LIMIT_PLACEHOLDER_1579={\u5927\u5c0f\u9650\u5236}
INFO_TIME_LIMIT_PLACEHOLDER_1580={\u65f6\u95f4\u9650\u5236}
INFO_SCOPE_PLACEHOLDER_1581={\u8303\u56f4}
INFO_FILTER_FILE_PLACEHOLDER_1582={\u8fc7\u6ee4\u5668\u6587\u4ef6}
INFO_OUTPUT_FILE_PLACEHOLDER_1583={\u8f93\u51fa\u6587\u4ef6}
INFO_TARGETDN_PLACEHOLDER_1584={\u76ee\u6807 DN}
INFO_TIME_PLACEHOLDER_1585={\u65f6\u95f4}
INFO_TRUE_FALSE_PLACEHOLDER_1586={true|false}
INFO_INDEX_PLACEHOLDER_1587={\u7d22\u5f15}
INFO_STOP_REASON_PLACEHOLDER_1588={\u505c\u6b62\u539f\u56e0}
INFO_STOP_TIME_PLACEHOLDER_1589={\u505c\u6b62\u65f6\u95f4}
INFO_SECONDS_PLACEHOLDER_1590={\u79d2}
INFO_DATA_PLACEHOLDER_1591={\u6570\u636e}
INFO_ADDRESS_PLACEHOLDER_1592={\u5730\u5740}
INFO_SUBJECT_PLACEHOLDER_1593={\u4e3b\u4f53}
INFO_ADMINUID_PLACEHOLDER_1594={\u7ba1\u7406 UID}
INFO_KEYSTORE_PWD_FILE_PLACEHOLDER_1595={\u5bc6\u94a5\u5e93\u5bc6\u7801\u6587\u4ef6}
INFO_PSEARCH_PLACEHOLDER_1596=ps[:changetype[:changesonly[:entrychgcontrols]]]
INFO_MULTICHOICE_TRUE_VALUE_1597=true
INFO_MULTICHOICE_FALSE_VALUE_1598=false
INFO_INSTALLDS_SERVER_JMXPORT_LABEL_1599=JMX \u4fa6\u542c\u5668\u7aef\u53e3:
INFO_INSTALLDS_START_SERVER_1600=\u5728\u5b8c\u6210\u914d\u7f6e\u65f6\u542f\u52a8\u670d\u52a1\u5668
INFO_INSTALLDS_DO_NOT_START_SERVER_1601=\u5728\u5b8c\u6210\u914d\u7f6e\u65f6\u4e0d\u542f\u52a8\u670d\u52a1\u5668
INFO_INSTALLDS_SUMMARY_1602=\u5b89\u88c5\u6458\u8981%n=============
INFO_INSTALLDS_CONFIRM_INSTALL_PROMPT_1603=\u60a8\u5e0c\u671b\u6267\u884c\u54ea\u4e9b\u64cd\u4f5c\uff1f
INFO_INSTALLDS_CONFIRM_INSTALL_1604=\u4f7f\u7528\u4e0a\u9762\u7684\u53c2\u6570\u5b89\u88c5\u670d\u52a1\u5668
INFO_INSTALLDS_PROVIDE_DATA_AGAIN_1605=\u518d\u6b21\u63d0\u4f9b\u5b89\u88c5\u53c2\u6570
INFO_INSTALLDS_CANCEL_1606=\u53d6\u6d88\u5b89\u88c5
###SEVERE_ERR_CONFIGDS_CANNOT_UPDATE_CRYPTO_MANAGER_1607=An error occurred while \
### attempting to update the crypto manager in the Directory Server: %s
INFO_TASK_TOOL_TASK_SUCESSFULL_1608=\u5df2\u6210\u529f\u5b8c\u6210 %s \u4efb\u52a1 %s
INFO_TASK_TOOL_TASK_NOT_SUCESSFULL_1609=\u672a\u6210\u529f\u5b8c\u6210 %s \u4efb\u52a1 %s
###SEVERE_ERR_CANNOT_READ_TRUSTSTORE_1610=Cannot access trust store '%s'.  Verify \
### that the provided trust store exists and that you have read access rights to it
###SEVERE_ERR_CANNOT_READ_KEYSTORE_1611=Cannot access key store '%s'.  Verify \
### that the provided key store exists and that you have read access rights to it
INFO_LDIFDIFF_DESCRIPTION_IGNORE_ATTRS_1612=\u5305\u542b\u5728\u8ba1\u7b97\u5dee\u5f02\u65f6\u5ffd\u7565\u7684\u5c5e\u6027\u5217\u8868\u7684\u6587\u4ef6
INFO_LDIFDIFF_DESCRIPTION_IGNORE_ENTRIES_1613=\u5305\u542b\u5728\u8ba1\u7b97\u5dee\u5f02\u65f6\u5ffd\u7565\u7684\u6761\u76ee (DN) \u5217\u8868\u7684\u6587\u4ef6
###SEVERE_ERR_LDIFDIFF_CANNOT_READ_FILE_IGNORE_ENTRIES_1614=An error occurred while attempting \
### to read the file '%s' containing the list of ignored entries: %s
###SEVERE_ERR_LDIFDIFF_CANNOT_READ_FILE_IGNORE_ATTRIBS_1615=An error occurred while attempting \
### to read the file '%s' containing the list of ignored attributes: %s
INFO_LDIFDIFF_CANNOT_PARSE_STRING_AS_DN_1616=\u65e0\u6cd5\u5c06\u6587\u4ef6 '%2$s' \u4e2d\u7684\u5b57\u7b26\u4e32 '%1$s' \u89e3\u6790\u4e3a DN
INFO_CHANGE_NUMBER_CONTROL_RESULT_1617=%s \u64cd\u4f5c\u66f4\u6539\u53f7\u4e3a %s
INFO_INSTALLDS_PROMPT_ADMINCONNECTORPORT_1618=\u60a8\u5e0c\u671b\u7ba1\u7406\u8fde\u63a5\u5668\u5728\u54ea\u4e2a\u7aef\u53e3\u4e0a\u63a5\u53d7\u8fde\u63a5\uff1f
INFO_INSTALLDS_DESCRIPTION_ADMINCONNECTORPORT_1619=\u7ba1\u7406\u8fde\u63a5\u5668\u4fa6\u542c\u901a\u4fe1\u65f6\u5e94\u4f7f\u7528\u7684\u7aef\u53e3
###SEVERE_ERR_CONFIGDS_CANNOT_UPDATE_ADMIN_CONNECTOR_PORT_1620=An error occurred \
### while attempting to update the administration connector port:  %s
###SEVERE_ERR_TASKINFO_LDAP_EXCEPTION_SSL_1621=Error connecting to the directory server at %s on %s. \
###Check this port is an administration port
INFO_DESCRIPTION_ADMIN_PORT_1622=\u76ee\u5f55\u670d\u52a1\u5668\u7ba1\u7406\u7aef\u53e3\u53f7
INFO_INSTALLDS_DESCRIPTION_USE_JCEKS_1623=JCEKS \u8def\u5f84\u5305\u542b\u8981\u7528\u4f5c\u670d\u52a1\u5668\u8bc1\u4e66\u7684\u8bc1\u4e66
INFO_INSTALLDS_CERT_OPTION_JCEKS_1624=\u4f7f\u7528\u901a\u8fc7 JCEKS \u5bc6\u94a5\u5e93\u88c5\u5165\u7684\u73b0\u6709\u8bc1\u4e66
INFO_INSTALLDS_PROMPT_JCEKS_PATH_1625=JCEKS \u5bc6\u94a5\u5e93\u8def\u5f84:
###SEVERE_ERR_CONFIG_KEYMANAGER_CANNOT_CREATE_JCEKS_PROVIDER_1626=Error creating \
### JCEKS Key Provider configuration:  %s
###SEVERE_ERR_CONFIG_KEYMANAGER_CANNOT_CREATE_JCEKS_TRUST_MANAGER_1627=Error \
### creating JCEKS Trust Manager configuration:  %s
###SEVERE_ERR_STOPDS_CANNOT_CONNECT_SSL_1628=ERROR:  Cannot establish a connection to \
### the Directory Server at %s on port %s. Check this port is an administration port
###SEVERE_ERR_PWPSTATE_CANNOT_CONNECT_SSL_1629=ERROR:  Cannot establish a connection to \
### the Directory Server at %s on port %s. Check this port is an administration port
INFO_IPATH_PLACEHOLDER_1630={\u5b9e\u4f8b\u8def\u5f84}
INFO_CURRENT_USER_PLACEHOLDER_1631={\u5f53\u524d\u7528\u6237}
INFO_CONFIGURE_DESCRIPTION_IPATH_1632=\u5b9e\u4f8b\u5c06\u4f4d\u4e8e\u7684\u8def\u5f84
INFO_CONFIGURE_DESCRIPTION_USERNAME_1633=\u5b9e\u4f8b\u6240\u6709\u8005\u7684\u7528\u6237\u540d
INFO_CONFIGURE_DESCRIPTION_GROUPNAME_1634=\u5b9e\u4f8b\u6240\u6709\u8005\u7684\u7ec4\u540d
INFO_CONFIGURE_USAGE_DESCRIPTION_1635=\u8be5\u5b9e\u7528\u7a0b\u5e8f\u8bbe\u7f6e\u5b9e\u4f8b\u4f4d\u7f6e
###SEVERE_ERR_CONFIGURE_NOT_DIRECTORY_1636=[%s] is not a directory. Only directories can \
###be used as {instancePath}
###SEVERE_ERR_CONFIGURE_DIRECTORY_NOT_EMPTY_1637=[%s] is not empty. Only empty directories can \
###be used as {instancePath}
###SEVERE_ERR_CONFIGURE_DIRECTORY_NOT_WRITABLE_1638=[%s] is not writable. Cannot create \
###Directory Server instance
###SEVERE_ERR_CONFIGURE_BAD_USER_NAME_1639=[%s] does not start with a letter. \
###Cannot be specified as {userName}
###SEVERE_ERR_CONFIGURE_GET_GROUP_ERROR_1640=Unable to retrieve group for [%s]. \
###Check that [%s] exists
###SEVERE_ERR_CONFIGURE_CHMOD_ERROR_1641=Unable to use [%s]/[%s] as {userName}/{groupName}. \
###Check that %s exists and belongs to %s
###SEVERE_ERR_CONFIGURE_CURRENT_USER_ERROR_1642=Unauthorized user. \
###Only user that can write [%s] can use this command
INFO_CHECK_DESCRIPTION_1643=\u8be5\u5b9e\u7528\u7a0b\u5e8f\u68c0\u67e5\u5b9e\u4f8b\u7684\u7248\u672c\u548c\u6240\u6709\u8005
INFO_CHECK_DESCRIPTION_CURRENT_USER_1644=\u5e76\u53d1\u7528\u6237
INFO_CHECK_DESCRIPTION_CHECK_VERSION_1645=\u6307\u5b9a\u5e94\u5b8c\u6210\u5bf9\u7248\u672c\u7684\u68c0\u67e5
###SEVERE_ERR_CHECK_USER_ERROR_1646=Current user is not owner of the instance. Only [%s] can run this command
###SEVERE_ERR_CHECK_VERSION_NOT_MATCH_1647=Data version does not match binaries. Run upgrade script to solve this
###SEVERE_ERR_CONFIGURE_USER_NOT_EXIST_1648=User [%s] does not exist
###SEVERE_ERR_CONFIGURE_LDAPUSER_NOT_EXIST_1649=User/role [%s] does not exist. \
###Create it or use --userName option to specify another user
###SEVERE_ERR_BACKUPDB_CANNOT_BACKUP_IN_DIRECTORY_1650=The target backend %s \
### cannot be backed up to the backup directory %s: this directory is \
### already a backup location for backend %s
INFO_RECURRING_TASK_PLACEHOLDER_1651={\u9884\u5b9a\u6a21\u5f0f}
###SEVERE_ERR_ENCPW_CANNOT_INITIALIZE_SERVER_COMPONENTS_1652=An error occurred \
### while attempting to initialize server components to run the encode \
### password tool:  %s
###SEVERE_ERR_LDIFIMPORT_COUNT_REJECTS_REQUIRES_OFFLINE_1653=The %s \
### argument is not supported for online imports
INFO_DESCRIPTION_RECURRING_TASK_1654=\u6307\u51fa\u4efb\u52a1\u662f\u590d\u53d1\u6027\u7684\u5e76\u5c06\u6839\u636e\u4ee5 crontab(5) \u53ef\u517c\u5bb9\u7684\u65f6\u95f4/\u65e5\u671f\u6a21\u5f0f\u8868\u793a\u7684\u503c\u53c2\u6570\u8fdb\u884c\u9884\u5b9a
INFO_TASK_TOOL_RECURRING_TASK_SCHEDULED_1655=\u5df2\u6210\u529f\u9884\u5b9a\u590d\u53d1\u6027 %s \u4efb\u52a1 %s
INFO_UNCONFIGURE_USAGE_DESCRIPTION_1656=\u8be5\u5b9e\u7528\u7a0b\u5e8f\u53ef\u53d6\u6d88\u8bbe\u7f6e\u5b9e\u4f8b\u4f4d\u7f6e
INFO_DESCRIPTION_CHECK_OPTIONS_1657=\u68c0\u67e5\u9009\u9879\u6709\u6548
###FATAL_ERR_INTERNAL_1658=Internal Error: %s
###FATAL_ERR_INSTALL_ROOT_NOT_SPECIFIED_1659=INSTALL_ROOT property not specified
###FATAL_ERR_INSTANCE_ROOT_NOT_SPECIFIED_1660=INSTANCE_ROOT property not specified
###FATAL_ERR_CONFIG_LDIF_NOT_FOUND_1661=The "config.ldif" file is not present in \
###the instance directory %s.\nInstance directory is referenced by %s
INFO_LDIFEXPORT_PATH_TO_LDIF_FILE_1662=\u6b63\u5728\u5bfc\u51fa\u81f3 %s
#
# These are the localized version of the answers that the user can provide in
# interactive tools.
#
INFO_PROMPT_YES_COMPLETE_ANSWER_1663=\u662f
INFO_PROMPT_YES_FIRST_LETTER_ANSWER_1664=y
INFO_PROMPT_NO_COMPLETE_ANSWER_1665=\u5426
INFO_PROMPT_NO_FIRST_LETTER_ANSWER_1666=n
###SEVERE_ERR_START_DATETIME_ALREADY_PASSED_1667=The specified start time '%s' \
### has already passed
###SEVERE_ERR_LDAPCOMPARE_ERROR_READING_FILE_1668=An error occurred reading file \
### '%s'.  Check that the file exists and that you have read access rights to \
### it.  Details: %s
###SEVERE_ERR_STOPDS_DATETIME_ALREADY_PASSED_1669=The specified stop time '%s' \
### has already passed
###SEVERE_ERR_LDAPCOMPARE_FILENAME_AND_DNS_1670=Both entry DNs and a file name \
### were provided for the compare operation.  These arguments are not compatible
# The following chars correspond to the following properties:
# INFO_TASKINFO_CMD_REFRESH_1415=refresh
# INFO_TASKINFO_CMD_CANCEL_1416=cancel task
# INFO_TASKINFO_CMD_VIEW_LOGS_1417=view logs
INFO_TASKINFO_CMD_REFRESH_CHAR_1671=r
INFO_TASKINFO_CMD_CANCEL_CHAR_1672=c
INFO_TASKINFO_CMD_VIEW_LOGS_CHAR_1673=l
INFO_LDIFDIFF_DESCRIPTION_CHECK_SCHEMA_1674=\u8003\u8651\u5728\u6a21\u5f0f\u4e2d\u5b9a\u4e49\u7684\u5c5e\u6027\u8bed\u6cd5\u4ee5\u8fdb\u884c\u503c\u6bd4\u8f83\u3002\u63d0\u4f9b\u7684 LDIF \u6587\u4ef6\u5fc5\u987b\u7b26\u5408\u670d\u52a1\u5668\u6a21\u5f0f
###SEVERE_WARN_LDIFDIFF_NO_CONFIG_FILE_1675=WARNING:  no configuration file was \
### provided as argument.  No schema check will be performed.  If this is being \
### called throught the '%s' command-line, verify that the script has not been \
### modified
INFO_LDAPAUTH_NON_EMPTY_PASSWORD_1676=\u60a8\u5fc5\u987b\u63d0\u4f9b\u975e\u7a7a\u5bc6\u7801\uff0c\u624d\u80fd\u7ee7\u7eed
INFO_BATCH_FILE_PATH_PLACEHOLDER_1677={\u6279\u5904\u7406\u6587\u4ef6\u8def\u5f84}
INFO_DESCRIPTION_BATCH_FILE_PATH_1678=\u5305\u542b\u8981\u6267\u884c\u7684\u4e00\u7ec4 dsconfig \u547d\u4ee4\u7684\u6279\u5904\u7406\u6587\u4ef6\u7684\u8def\u5f84
###SEVERE_ERR_DSCFG_ERROR_BATCH_FILE_AND_INTERACTIVE_INCOMPATIBLE_1679=If you specify \
### the {%s} argument you must also specify {%s}
###SEVERE_ERR_TIMEOUT_DURING_STARTUP_1680=The timeout of '%d' seconds to start \
### the server has been reached.  You can use the argument '--%s' to increase \
### this timeout
INFO_INSTALLDS_ENABLE_WINDOWS_SERVICE_1681=\u542f\u7528\u670d\u52a1\u5668\u4ee5\u4f5c\u4e3a Windows \u670d\u52a1\u8fd0\u884c
INFO_INSTALLDS_DO_NOT_ENABLE_WINDOWS_SERVICE_1682=\u4e0d\u542f\u7528\u670d\u52a1\u5668\u4ee5\u4f5c\u4e3a Windows \u670d\u52a1\u8fd0\u884c
INFO_LDIFIMPORT_DESCRIPTION_TEMP_DIRECTORY_1683=\u5728 LDIF \u5bfc\u5165\u671f\u95f4\u6307\u5411\u7d22\u5f15\u4e34\u65f6\u6587\u4ef6\u7684\u4e34\u65f6\u76ee\u5f55\u7684\u8def\u5f84
INFO_LDIFIMPORT_TEMP_DIR_PLACEHOLDER_1684={\u76ee\u5f55}
INFO_LDIFIMPORT_DESCRIPTION_DN_VALIDATION_1685=\u5728 LDIF \u5bfc\u5165\u671f\u95f4\u7684\u540e\u671f\u6267\u884c DN \u9a8c\u8bc1
INFO_LDIFIMPORT_DESCRIPTION_THREAD_COUNT_1686=\u5728\u5bfc\u5165\u671f\u95f4\u7528\u4e8e\u8bfb\u53d6 LDIF \u6587\u4ef6\u7684\u7ebf\u7a0b\u6570\u3002\u9ed8\u8ba4\u503c (0) \u7b49\u4e8e\uff1a2 x\uff08CPU \u6570\uff09
INFO_LDIFIMPORT_THREAD_COUNT_PLACEHOLDER_1687={\u8ba1\u6570}
###SEVERE_ERR_LDIFIMPORT_CANNOT_PARSE_THREAD_COUNT_1688=The value %s for \
###threadCount cannot be parsed: %s
INFO_LDAPSEARCH_PUBLIC_CHANGELOG_COOKIE_EXC_1689=# \u516c\u5171\u66f4\u6539\u65e5\u5fd7\u4ea4\u6362\u63a7\u5236(%s): %s
INFO_ENCPW_DESCRIPTION_INPUT_PW_1690=\u4ea4\u4e92\u5f0f\u5730\u8be2\u95ee\u7528\u6237\u7528\u4e8e\u7f16\u7801\u6216\u7528\u4e8e\u4e0e\u7f16\u7801\u5bc6\u7801\u8fdb\u884c\u6bd4\u8f83\u7684\u5bc6\u7801
INFO_ENCPW_INPUT_PWD_1_1691=\u8bf7\u8f93\u5165\u5bc6\u7801: 
INFO_ENCPW_INPUT_PWD_2_1692=\u8bf7\u518d\u6b21\u8f93\u5165\u5bc6\u7801: 
###SEVERE_ERR_ENCPW_NOT_SAME_PW_1693=Provided passwords don't matched 
###SEVERE_ERR_ENCPW_CANNOT_READ_PW_1694=Cannot read password from the input: %s
INFO_REBUILDINDEX_DESCRIPTION_REBUILD_ALL_1695=\u91cd\u65b0\u751f\u6210\u6240\u6709\u7d22\u5f15\uff0c\u5305\u62ec\u4efb\u4f55 DN2ID\u3001DN2URI\u3001VLV \u548c\u53ef\u6269\u5c55\u7d22\u5f15\u3002\u4e0d\u80fd\u4e0e "-i" \u9009\u9879\u4e00\u8d77\u4f7f\u7528
INFO_REBUILDINDEX_TEMP_DIR_PLACEHOLDER_1697={\u76ee\u5f55}
INFO_REBUILDINDEX_DESCRIPTION_TEMP_DIRECTORY_1698=\u5728\u91cd\u65b0\u751f\u6210\u7d22\u5f15\u671f\u95f4\u6307\u5411\u7d22\u5f15\u4e34\u65f6\u6587\u4ef6\u7684\u4e34\u65f6\u76ee\u5f55\u7684\u8def\u5f84
###SEVERE_ERR_REBUILDINDEX_REBUILD_ALL_ERROR_1699=Index "-i" option cannot be \
###specified with the "--rebuildAll" option