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

Matthew Swift
26.58.2013 d880364f313980e530642168519e7660be84f0a4
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
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
# 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-2010 Sun Microsystems, Inc.
#      Portions Copyright 2011-2013 ForgeRock AS
 
 
 
#
# 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=List available password storage schemes
INFO_ENCPW_DESCRIPTION_CLEAR_PW_8=Clear-text password to encode or to compare \
 against an encoded password
INFO_ENCPW_DESCRIPTION_CLEAR_PW_FILE_9=Clear-text password file
INFO_ENCPW_DESCRIPTION_ENCODED_PW_10=Encoded password to compare against the \
 clear-text password
INFO_ENCPW_DESCRIPTION_ENCODED_PW_FILE_11=Encoded password file
INFO_DESCRIPTION_CONFIG_CLASS_12=The fully-qualified name of the Java class \
 to use as the Directory Server configuration handler.  If this is not \
 provided, then a default of org.opends.server.extensions.ConfigFileHandler \
 will be used
INFO_DESCRIPTION_CONFIG_FILE_13=Path to the Directory Server \
 configuration file
INFO_ENCPW_DESCRIPTION_SCHEME_14=Scheme to use for the encoded password
INFO_DESCRIPTION_USAGE_15=Displays this usage information
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=The provided clear-text and encoded passwords \
 match
INFO_ENCPW_PASSWORDS_DO_NOT_MATCH_28=The provided clear-text and encoded \
 passwords do not match
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=Path to the LDIF file to be written
INFO_LDIFEXPORT_DESCRIPTION_APPEND_TO_LDIF_34=Append an existing LDIF file \
 rather than overwriting it
INFO_LDIFEXPORT_DESCRIPTION_BACKEND_ID_35=Backend ID for the backend to \
 export
INFO_LDIFEXPORT_DESCRIPTION_EXCLUDE_BRANCH_36=Base DN of a branch to exclude \
 from the LDIF export
INFO_LDIFEXPORT_DESCRIPTION_INCLUDE_ATTRIBUTE_37=Attribute to include in the \
 LDIF export
INFO_LDIFEXPORT_DESCRIPTION_EXCLUDE_ATTRIBUTE_38=Attribute to exclude from \
 the LDIF export
INFO_LDIFEXPORT_DESCRIPTION_INCLUDE_FILTER_39=Filter to identify entries to \
 include in the LDIF export
INFO_LDIFEXPORT_DESCRIPTION_EXCLUDE_FILTER_40=Filter to identify entries to \
 exclude from the LDIF export
INFO_LDIFEXPORT_DESCRIPTION_WRAP_COLUMN_41=Column at which to wrap long lines \
 (0 for no wrapping)
INFO_LDIFEXPORT_DESCRIPTION_COMPRESS_LDIF_42=Compress the LDIF data as it is \
 exported
INFO_LDIFEXPORT_DESCRIPTION_ENCRYPT_LDIF_43=Encrypt the LDIF data as it is \
 exported
INFO_LDIFEXPORT_DESCRIPTION_SIGN_HASH_44=Generate a signed hash of the export \
 data
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=Path to the LDIF file to be imported
INFO_LDIFIMPORT_DESCRIPTION_APPEND_70=Append to an existing database rather \
 than overwriting it
INFO_LDIFIMPORT_DESCRIPTION_REPLACE_EXISTING_71=Replace existing entries when \
 appending to the database
INFO_LDIFIMPORT_DESCRIPTION_BACKEND_ID_72=Backend ID for the backend to \
 import
INFO_LDIFIMPORT_DESCRIPTION_EXCLUDE_BRANCH_73=Base DN of a branch to exclude \
 from the LDIF import
INFO_LDIFIMPORT_DESCRIPTION_INCLUDE_ATTRIBUTE_74=Attribute to include in the \
 LDIF import
INFO_LDIFIMPORT_DESCRIPTION_EXCLUDE_ATTRIBUTE_75=Attribute to exclude from \
 the LDIF import
INFO_LDIFIMPORT_DESCRIPTION_INCLUDE_FILTER_76=Filter to identify entries to \
 include in the LDIF import
INFO_LDIFIMPORT_DESCRIPTION_EXCLUDE_FILTER_77=Filter to identify entries to \
 exclude from the LDIF import
INFO_LDIFIMPORT_DESCRIPTION_REJECT_FILE_78=Write rejected entries to the \
 specified file
INFO_LDIFIMPORT_DESCRIPTION_OVERWRITE_79=Overwrite an existing rejects and/or \
 skip file rather than appending to it
INFO_LDIFIMPORT_DESCRIPTION_IS_COMPRESSED_80=LDIF file is compressed
INFO_LDIFIMPORT_DESCRIPTION_IS_ENCRYPTED_81=LDIF file is encrypted
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
SEVERE_ERR_LDIFIMPORT_ERROR_CONSTRAINT_VIOLATION_97=One or more DN \
indexes could not be built due to invalid DNs or missing parent entries. \
Please re-import the data without the --skipDNValidation option in order \
to determine the exact cause
INFO_PROCESSING_OPERATION_104=Processing %s request for %s
INFO_OPERATION_FAILED_105=%s operation failed
INFO_OPERATION_SUCCESSFUL_106=%s operation successful for DN %s
INFO_PROCESSING_COMPARE_OPERATION_107=Comparing type %s with value %s in \
 entry %s
INFO_COMPARE_OPERATION_RESULT_FALSE_108=Compare operation returned false for \
 entry %s
INFO_COMPARE_OPERATION_RESULT_TRUE_109=Compare operation returned true for \
 entry %s
INFO_SEARCH_OPERATION_INVALID_PROTOCOL_110=Invalid operation type returned in \
 search result %s
INFO_DESCRIPTION_TRUSTALL_111=Trust all server SSL certificates
INFO_DESCRIPTION_BINDDN_112=DN to use to bind to the server
INFO_DESCRIPTION_BINDPASSWORD_113=Password to use to bind to \
 the server
INFO_DESCRIPTION_BINDPASSWORDFILE_114=Bind password file
INFO_DESCRIPTION_ENCODING_115=Use the specified character set for \
 command-line input
INFO_DESCRIPTION_VERBOSE_116=Use verbose mode
INFO_DESCRIPTION_KEYSTOREPATH_117=Certificate key store path
INFO_DESCRIPTION_TRUSTSTOREPATH_118=Certificate trust store path
INFO_DESCRIPTION_KEYSTOREPASSWORD_119=Certificate key store PIN
INFO_DESCRIPTION_HOST_120=Directory server hostname or IP address
INFO_DESCRIPTION_PORT_121=Directory server port number
INFO_DESCRIPTION_SHOWUSAGE_122=Display this usage information
INFO_DESCRIPTION_CONTROLS_123=Use a request control with the provided \
 information
INFO_DESCRIPTION_CONTINUE_ON_ERROR_124=Continue processing even if there are \
 errors
INFO_DESCRIPTION_USE_SSL_125=Use SSL for secure communication with the server
INFO_DESCRIPTION_START_TLS_126=Use StartTLS to secure communication with the \
 server
INFO_DESCRIPTION_USE_SASL_EXTERNAL_127=Use the SASL EXTERNAL authentication \
 mechanism
INFO_DELETE_DESCRIPTION_FILENAME_128=File containing the DNs of the entries \
 to delete
INFO_DELETE_DESCRIPTION_DELETE_SUBTREE_129=Delete the specified entry and all \
 entries below it
INFO_MODIFY_DESCRIPTION_DEFAULT_ADD_130=Treat records with no changetype as \
 add operations
INFO_SEARCH_DESCRIPTION_BASEDN_131=Search base DN
INFO_SEARCH_DESCRIPTION_SIZE_LIMIT_132=Maximum number of entries to return \
 from the search
INFO_SEARCH_DESCRIPTION_TIME_LIMIT_133=Maximum length of time in seconds to \
 allow for the search
INFO_SEARCH_DESCRIPTION_SEARCH_SCOPE_134=Search scope ('base', 'one', 'sub', \
 or 'subordinate')
INFO_SEARCH_DESCRIPTION_DEREFERENCE_POLICY_135=Alias dereference policy \
 ('never', 'always', 'search', or 'find')
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=The simple bind attempt failed
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=The requested SASL mechanism \
 "%s" is not supported by this client
MILD_ERR_LDAPAUTH_TRACE_SINGLE_VALUED_144=The trace SASL property may only be \
 given a single value
MILD_ERR_LDAPAUTH_INVALID_SASL_PROPERTY_145=Property "%s" is not allowed for \
 the %s SASL mechanism
SEVERE_ERR_LDAPAUTH_CANNOT_SEND_SASL_BIND_146=Cannot send the SASL %S bind \
 request:  %s
MILD_ERR_LDAPAUTH_SASL_BIND_FAILED_147=The SASL %s bind attempt failed
MILD_ERR_LDAPAUTH_NO_SASL_PROPERTIES_148=No SASL properties were provided for \
 use with the %s mechanism
MILD_ERR_LDAPAUTH_AUTHID_SINGLE_VALUED_149=The "authid" SASL property only \
 accepts a single value
MILD_ERR_LDAPAUTH_SASL_AUTHID_REQUIRED_150=The "authid" SASL property is \
 required for use with the %s mechanism
MILD_ERR_LDAPAUTH_CANNOT_SEND_INITIAL_SASL_BIND_151=Cannot send the initial \
 bind request in the multi-stage %s bind to the server:  %s
MILD_ERR_LDAPAUTH_CANNOT_READ_INITIAL_BIND_RESPONSE_152=Cannot read the \
 initial %s bind response from the server:  %s
MILD_ERR_LDAPAUTH_UNEXPECTED_INITIAL_BIND_RESPONSE_153=The client received an \
 unexpected intermediate bind response.  The "SASL bind in progress" result \
 was expected for the first response in the multi-stage %s bind process, but \
 the bind response had a result code of %d (%s) and an error message of "%s"
MILD_ERR_LDAPAUTH_NO_CRAMMD5_SERVER_CREDENTIALS_154=The initial bind response \
 from the server did not include any server SASL credentials containing the \
 challenge information needed to complete the CRAM-MD5 authentication
MILD_ERR_LDAPAUTH_CANNOT_INITIALIZE_MD5_DIGEST_155=An unexpected error \
 occurred while trying to initialize the MD5 digest generator:  %s
MILD_ERR_LDAPAUTH_CANNOT_SEND_SECOND_SASL_BIND_156=Cannot send the second \
 bind request in the multi-stage %s bind to the server:  %s
MILD_ERR_LDAPAUTH_CANNOT_READ_SECOND_BIND_RESPONSE_157=Cannot read the second \
 %s bind response from the server:  %s
MILD_ERR_LDAPAUTH_NO_ALLOWED_SASL_PROPERTIES_158=One or more SASL properties \
 were provided, but the %s mechanism does not take any SASL properties
MILD_ERR_LDAPAUTH_AUTHZID_SINGLE_VALUED_159=The "authzid" SASL property only \
 accepts a single value
MILD_ERR_LDAPAUTH_REALM_SINGLE_VALUED_160=The "realm" SASL property only \
 accepts a single value
MILD_ERR_LDAPAUTH_QOP_SINGLE_VALUED_161=The "qop" SASL property only accepts \
 a single value
MILD_ERR_LDAPAUTH_DIGESTMD5_QOP_NOT_SUPPORTED_162=The "%s" QoP mode is not \
 supported by this client.  Only the "auth" mode is currently available for \
 use
MILD_ERR_LDAPAUTH_DIGESTMD5_INVALID_QOP_163=The specified DIGEST-MD5 quality \
 of protection mode "%s" is not valid.  The only QoP mode currently supported \
 is "auth"
MILD_ERR_LDAPAUTH_DIGEST_URI_SINGLE_VALUED_164=The "digest-uri" SASL property \
 only accepts a single value
MILD_ERR_LDAPAUTH_NO_DIGESTMD5_SERVER_CREDENTIALS_165=The initial bind \
 response from the server did not include any server SASL credentials \
 containing the challenge information needed to complete the DIGEST-MD5 \
 authentication
MILD_ERR_LDAPAUTH_DIGESTMD5_INVALID_TOKEN_IN_CREDENTIALS_166=The DIGEST-MD5 \
 credentials provided by the server contained an invalid token of "%s" \
 starting at position %d
MILD_ERR_LDAPAUTH_DIGESTMD5_INVALID_CHARSET_167=The DIGEST-MD5 credentials \
 provided by the server specified the use of the "%s" character set.  The \
 character set that may be specified in the DIGEST-MD5 credentials is "utf-8"
MILD_ERR_LDAPAUTH_REQUESTED_QOP_NOT_SUPPORTED_BY_SERVER_168=The requested QoP \
 mode of "%s" is not listed as supported by the Directory Server.  The \
 Directory Server's list of supported QoP modes is:  "%s"
MILD_ERR_LDAPAUTH_DIGESTMD5_NO_NONCE_169=The server SASL credentials provided \
 in response to the initial DIGEST-MD5 bind request did not include the nonce \
 to use to generate the authentication digests
MILD_ERR_LDAPAUTH_DIGESTMD5_CANNOT_CREATE_RESPONSE_DIGEST_170=An error \
 occurred while attempting to generate the response digest for the DIGEST-MD5 \
 bind request:  %s
MILD_ERR_LDAPAUTH_DIGESTMD5_NO_RSPAUTH_CREDS_171=The DIGEST-MD5 bind response \
 from the server did not include the "rspauth" element to provide a digest of \
 the response authentication information
MILD_ERR_LDAPAUTH_DIGESTMD5_COULD_NOT_DECODE_RSPAUTH_172=An error occurred \
 while trying to decode the rspauth element of the DIGEST-MD5 bind response \
 from the server as a hexadecimal string:  %s
MILD_ERR_LDAPAUTH_DIGESTMD5_COULD_NOT_CALCULATE_RSPAUTH_173=An error occurred \
 while trying to calculate the expected rspauth element to compare against the \
 value included in the DIGEST-MD5 response from the server:  %s
MILD_ERR_LDAPAUTH_DIGESTMD5_RSPAUTH_MISMATCH_174=The rpsauth element included \
 in the DIGEST-MD5 bind response from the Directory Server was different from \
 the expected value calculated by the client
MILD_ERR_LDAPAUTH_DIGESTMD5_INVALID_CLOSING_QUOTE_POS_175=The DIGEST-MD5 \
 response challenge could not be parsed because it had an invalid quotation \
 mark at position %d
INFO_LDAPAUTH_PROPERTY_DESCRIPTION_TRACE_176=Text string that may be written \
 to the Directory Server error log as trace information for the bind
INFO_LDAPAUTH_PROPERTY_DESCRIPTION_AUTHID_177=Authentication ID for the bind
INFO_LDAPAUTH_PROPERTY_DESCRIPTION_REALM_178=Realm into which \
 the authentication is to be performed
INFO_LDAPAUTH_PROPERTY_DESCRIPTION_QOP_179=Quality of \
 protection to use for the bind
INFO_LDAPAUTH_PROPERTY_DESCRIPTION_DIGEST_URI_180=Digest URI to \
 use for the bind
INFO_LDAPAUTH_PROPERTY_DESCRIPTION_AUTHZID_181=Authorization ID \
 to use for the bind
INFO_DESCRIPTION_SASL_PROPERTIES_182=SASL bind options
INFO_LDAPAUTH_PROPERTY_DESCRIPTION_KDC_183=KDC to use for the \
 Kerberos authentication
MILD_ERR_LDAPAUTH_KDC_SINGLE_VALUED_184=The "kdc" SASL property only accepts \
 a single value
MILD_ERR_LDAPAUTH_GSSAPI_INVALID_QOP_185=The specified GSSAPI quality of \
 protection mode "%s" is not valid.  The only QoP mode currently supported is \
 "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=An error occurred \
 while attempting to perform local authentication to the Kerberos realm:  %s
MILD_ERR_LDAPAUTH_GSSAPI_REMOTE_AUTHENTICATION_FAILED_188=An error occurred \
 while attempting to perform GSSAPI authentication to the Directory Server: \
 %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=An error occurred \
 while trying to validate the SASL credentials provided by the Directory \
 Server in the GSSAPI bind response:  %s
MILD_ERR_LDAPAUTH_GSSAPI_UNEXPECTED_SUCCESS_RESPONSE_194=The Directory Server \
 unexpectedly returned a success response to the client even though the client \
 does not believe that the GSSAPI negotiation is complete
MILD_ERR_LDAPAUTH_GSSAPI_BIND_FAILED_195=The GSSAPI bind attempt failed
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=Password for user '%s':
INFO_DESCRIPTION_VERSION_200=LDAP protocol version number
MILD_ERR_DESCRIPTION_INVALID_VERSION_201=Invalid LDAP version number '%s'. \
 Allowed values are 2 and 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=The 'Who Am I?' request was rejected by \
 the Directory Server
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=Base DN of a backend \
 supporting indexing. Verification is performed on indexes within the scope of \
 the given base DN
INFO_VERIFYINDEX_DESCRIPTION_INDEX_NAME_208=Name of an index to \
 be verified. For an attribute index this is simply an attribute name. \
 Multiple indexes may be verified for completeness, or all indexes if no \
 indexes are specified.  An index is complete if each index value references \
 all entries containing that value
INFO_VERIFYINDEX_DESCRIPTION_VERIFY_CLEAN_209=Specifies that a single index \
 should be verified to ensure it is clean.  An index is clean if each index \
 value references only entries containing that value.  Only one index at a \
 time may be verified in this way
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=Do not wrap long lines
INFO_LDIFIMPORT_DESCRIPTION_INCLUDE_BRANCH_216=Base DN of a branch to include \
 in the LDIF import
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=Base DN of a branch to include \
 in the LDIF export
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=Backend ID for the backend to \
 archive
INFO_BACKUPDB_DESCRIPTION_BACKUP_ID_246=Use the provided identifier for the \
 backup
INFO_BACKUPDB_DESCRIPTION_BACKUP_DIR_247=Path to the target directory for the \
 backup file(s)
INFO_BACKUPDB_DESCRIPTION_INCREMENTAL_248=Perform an incremental backup \
 rather than a full backup
INFO_BACKUPDB_DESCRIPTION_COMPRESS_249=Compress the backup contents
INFO_BACKUPDB_DESCRIPTION_ENCRYPT_250=Encrypt the backup contents
INFO_BACKUPDB_DESCRIPTION_HASH_251=Generate a hash of the backup contents
INFO_BACKUPDB_DESCRIPTION_SIGN_HASH_252=Sign the hash of the backup contents
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=Back up all backends in the server
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=Starting backup for backend %s
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=The backup process completed with \
 one or more errors
NOTICE_BACKUPDB_COMPLETED_SUCCESSFULLY_283=The backup process completed \
 successfully
SEVERE_ERR_CANNOT_INITIALIZE_CRYPTO_MANAGER_284=An error occurred while \
 attempting to initialize the crypto manager:  %s
SEVERE_ERR_CANNOT_INITIALIZE_SUBENTRY_MANAGER_285=An error occurred while \
 attempting to initialize the subentry manager:  %s
SEVERE_ERR_CANNOT_INITIALIZE_ROOTDN_MANAGER_286=An error occurred while \
 attempting to initialize the root DN manager:  %s
INFO_BACKUPDB_DESCRIPTION_INCREMENTAL_BASE_ID_287=Backup ID of the source \
 archive for an incremental backup
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=Backend ID for the backend to \
 restore
INFO_RESTOREDB_DESCRIPTION_BACKUP_ID_292=Backup ID of the backup to restore
INFO_RESTOREDB_DESCRIPTION_BACKUP_DIR_293=Path to the directory containing \
 the backup file(s)
INFO_RESTOREDB_DESCRIPTION_LIST_BACKUPS_294=List available backups in the \
 backup directory
INFO_RESTOREDB_DESCRIPTION_VERIFY_ONLY_295=Verify the contents of the backup \
 but do not restore it
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=Backup ID:          %s
INFO_RESTOREDB_LIST_BACKUP_DATE_306=Backup Date:        %s
INFO_RESTOREDB_LIST_INCREMENTAL_307=Is Incremental:     %s
INFO_RESTOREDB_LIST_COMPRESSED_308=Is Compressed:      %s
INFO_RESTOREDB_LIST_ENCRYPTED_309=Is Encrypted:       %s
INFO_RESTOREDB_LIST_HASHED_310=Has Unsigned Hash:  %s
INFO_RESTOREDB_LIST_SIGNED_311=Has Signed Hash:    %s
INFO_RESTOREDB_LIST_DEPENDENCIES_312=Dependent Upon:     %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=Show what would be done but do not perform any \
 operation
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=Only retrieve attribute names but not their \
 values
INFO_LDIFIMPORT_DESCRIPTION_SKIP_SCHEMA_VALIDATION_339=Skip schema validation \
 during the LDIF import
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=Use the LDAP assertion control with the \
 provided filter
MILD_ERR_LDAP_ASSERTION_INVALID_FILTER_343=The search filter provided for the \
 LDAP assertion control was invalid:  %s
INFO_DESCRIPTION_PREREAD_ATTRS_346=Use the LDAP ReadEntry pre-read control
INFO_DESCRIPTION_POSTREAD_ATTRS_347=Use the LDAP ReadEntry post-read control
MILD_ERR_LDAPMODIFY_PREREAD_NO_VALUE_348=The pre-read response control did \
 not include a value
MILD_ERR_LDAPMODIFY_PREREAD_CANNOT_DECODE_VALUE_349=An error occurred while \
 trying to decode the entry contained in the value of the pre-read response \
 control:  %s
INFO_LDAPMODIFY_PREREAD_ENTRY_350=Target entry before the operation:
MILD_ERR_LDAPMODIFY_POSTREAD_NO_VALUE_351=The post-read response control did \
 not include a value
MILD_ERR_LDAPMODIFY_POSTREAD_CANNOT_DECODE_VALUE_352=An error occurred while \
 trying to decode the entry contained in the value of the post-read response \
 control:  %s
INFO_LDAPMODIFY_POSTREAD_ENTRY_353=Target entry after the operation:
INFO_DESCRIPTION_PROXY_AUTHZID_354=Use the proxied authorization control with \
 the given authorization ID
INFO_DESCRIPTION_PSEARCH_INFO_355=Use the persistent search control
MILD_ERR_PSEARCH_MISSING_DESCRIPTOR_356=The request to use the persistent \
 search control did not include a descriptor that indicates the options to use \
 with that control
MILD_ERR_PSEARCH_DOESNT_START_WITH_PS_357=The persistent search descriptor %s \
 did not start with the required 'ps' string
MILD_ERR_PSEARCH_INVALID_CHANGE_TYPE_358=The provided change type value %s is \
 invalid.  The recognized change types are add, delete, modify, modifydn, and \
 any
MILD_ERR_PSEARCH_INVALID_CHANGESONLY_359=The provided changesOnly value %s is \
 invalid.  Allowed values are 1 to only return matching entries that have \
 changed since the beginning of the search, or 0 to also include existing \
 entries that match the search criteria
MILD_ERR_PSEARCH_INVALID_RETURN_ECS_360=The provided returnECs value %s is \
 invalid.  Allowed values are 1 to request that the entry change notification \
 control be included in updated entries, or 0 to exclude the control from \
 matching entries
INFO_DESCRIPTION_REPORT_AUTHZID_361=Use the authorization identity control
INFO_BIND_AUTHZID_RETURNED_362=# Bound with authorization ID %s
INFO_SEARCH_DESCRIPTION_FILENAME_363=File containing a list of search filter \
 strings
INFO_DESCRIPTION_MATCHED_VALUES_FILTER_364=Use the LDAP matched values \
 control with the provided filter
MILD_ERR_LDAP_MATCHEDVALUES_INVALID_FILTER_365=The provided matched values \
 filter was invalid:  %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=Use the authentication password syntax \
 rather than the user password syntax
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=Directory server hostname or IP address
INFO_STOPDS_DESCRIPTION_PORT_375=Directory server administration port number
INFO_STOPDS_DESCRIPTION_USESSL_376=Use SSL for secure communication with the \
 server
INFO_STOPDS_DESCRIPTION_USESTARTTLS_377=Use StartTLS for secure communication \
 with the server
INFO_STOPDS_DESCRIPTION_BINDDN_378=DN to use to bind to the server
INFO_STOPDS_DESCRIPTION_BINDPW_379=Password to use to bind to the server
INFO_STOPDS_DESCRIPTION_BINDPWFILE_380=Bind password file
INFO_STOPDS_DESCRIPTION_SASLOPTIONS_381=SASL bind options
INFO_STOPDS_DESCRIPTION_PROXYAUTHZID_382=Use the proxied authorization \
 control with the given authorization ID
INFO_STOPDS_DESCRIPTION_STOP_REASON_383=Reason the server is being stopped or \
 restarted
INFO_STOPDS_DESCRIPTION_STOP_TIME_384=Indicates the date/time at which the \
 shutdown operation will begin as a server task expressed in format \
 YYYYMMDDhhmmssZ for UTC time or YYYYMMDDhhmmss for local time.  A value of \
 '0' will cause the shutdown to be scheduled for \
 immediate execution.  When this option is specified the operation will be \
 scheduled to start at the specified time after which this utility will exit \
 immediately
INFO_STOPDS_DESCRIPTION_TRUST_ALL_385=Trust all server SSL certificates
INFO_STOPDS_DESCRIPTION_KSFILE_386=Certificate key store path
INFO_STOPDS_DESCRIPTION_KSPW_387=Certificate key store PIN
INFO_STOPDS_DESCRIPTION_KSPWFILE_388=Certificate key store PIN file
INFO_STOPDS_DESCRIPTION_TSFILE_389=Certificate trust store path
INFO_STOPDS_DESCRIPTION_TSPW_390=Certificate trust store PIN
INFO_STOPDS_DESCRIPTION_TSPWFILE_391=Certificate trust store PIN file
INFO_STOPDS_DESCRIPTION_SHOWUSAGE_392=Display this usage information
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=# Your password has expired
INFO_BIND_PASSWORD_EXPIRING_407=# Your password will expire in %s
INFO_BIND_ACCOUNT_LOCKED_408=# Your account has been locked
INFO_BIND_MUST_CHANGE_PASSWORD_409=# You must change your password before any \
 other operations will be allowed
INFO_BIND_GRACE_LOGINS_REMAINING_410=# You have %d grace logins remaining
INFO_DESCRIPTION_USE_PWP_CONTROL_411=Use the password policy request control
INFO_STOPDS_DESCRIPTION_RESTART_412=Attempt to automatically restart the \
 server once it has stopped
INFO_COMPARE_DESCRIPTION_FILENAME_413=File containing the DNs of the entries \
 to compare
INFO_LDIFSEARCH_DESCRIPTION_LDIF_FILE_414=LDIF file containing \
 the data to search.  Multiple files may be specified by providing the option \
 multiple times.  If no files are provided, the data will be read from \
 standard input
INFO_LDIFSEARCH_DESCRIPTION_BASEDN_415=The base DN for the search.  Multiple \
 base DNs may be specified by providing the option multiple times.  If no base \
 DN is provided, then the root DSE will be used
INFO_LDIFSEARCH_DESCRIPTION_SCOPE_416=The scope for the search.  It must be \
 one of 'base', 'one', 'sub', or 'subordinate'.  If it is not provided, then \
 'sub' will be used
INFO_LDIFSEARCH_DESCRIPTION_FILTER_FILE_419=The path to the file containing \
 the search filter(s) to use.  If this is not provided, then the filter must \
 be provided on the command line after all configuration options
INFO_LDIFSEARCH_DESCRIPTION_OUTPUT_FILE_420=The path to the output file to \
 which the matching entries should be written.  If this is not provided, then \
 the data will be written to standard output
INFO_LDIFSEARCH_DESCRIPTION_OVERWRITE_EXISTING_421=Any existing output \
 file should be overwritten rather than appending to it
INFO_LDIFSEARCH_DESCRIPTION_DONT_WRAP_422=Long lines should \
 not be wrapped
INFO_LDIFSEARCH_DESCRIPTION_SIZE_LIMIT_423=Maximum number of \
 matching entries to return
INFO_LDIFSEARCH_DESCRIPTION_TIME_LIMIT_424=Maximum length of \
 time (in seconds) to spend processing
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=The specified time limit has \
 been exceeded during search processing
MILD_WARN_LDIFSEARCH_SIZE_LIMIT_EXCEEDED_438=The specified size limit has \
 been exceeded during search processing
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=LDIF file to use as \
 the source data
INFO_LDIFDIFF_DESCRIPTION_TARGET_LDIF_444=LDIF file to use as \
 the target data
INFO_LDIFDIFF_DESCRIPTION_OUTPUT_LDIF_445=File to which the \
 output should be written
INFO_LDIFDIFF_DESCRIPTION_OVERWRITE_EXISTING_446=Any existing \
 output file should be overwritten rather than appending to it
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=No differences were detected between the \
 source and target LDIF files
SEVERE_ERR_LDIFDIFF_ERROR_WRITING_OUTPUT_461=An error occurred while \
 attempting to write the diff output:  %s
INFO_CONFIGDS_DESCRIPTION_LDAP_PORT_464=Port on which the \
 Directory Server should listen for LDAP communication
INFO_CONFIGDS_DESCRIPTION_BASE_DN_465=Base DN for user \
 information in the Directory Server.  Multiple base DNs may be provided by \
 using this option multiple times
INFO_CONFIGDS_DESCRIPTION_ROOT_DN_466=DN for the initial root \
 user for the Directory Server
INFO_CONFIGDS_DESCRIPTION_ROOT_PW_467=Password for the initial \
 root user for the Directory Server
INFO_CONFIGDS_DESCRIPTION_ROOT_PW_FILE_468=Path to a file \
 containing the password for the initial root user for the Directory Server
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=Successfully wrote the updated \
 Directory Server configuration
INFO_INSTALLDS_DESCRIPTION_TESTONLY_485=Just verify that the JVM can be \
 started properly
INFO_INSTALLDS_DESCRIPTION_PROGNAME_486=The setup command used to invoke this \
 program
INFO_INSTALLDS_DESCRIPTION_SILENT_489=Run setup in quiet mode.  Quiet mode \
 will not output progress information to standard output
INFO_INSTALLDS_DESCRIPTION_BASEDN_490=Base DN for user \
 information in the Directory Server.  Multiple base DNs may be provided by \
 using this option multiple times
INFO_INSTALLDS_DESCRIPTION_ADDBASE_491=Indicates whether to create the base \
 entry in the Directory Server database
INFO_INSTALLDS_DESCRIPTION_IMPORTLDIF_492=Path to an LDIF file \
 containing data that should be added to the Directory Server database. \
 Multiple LDIF files may be provided by using this option multiple times
INFO_INSTALLDS_DESCRIPTION_LDAPPORT_493=Port on which the \
 Directory Server should listen for LDAP communication
INFO_INSTALLDS_DESCRIPTION_SKIPPORT_494=Skip the check to determine whether \
 the specified ports are usable
INFO_INSTALLDS_DESCRIPTION_ROOTDN_495=DN for the initial root \
 user for the Directory Server
INFO_INSTALLDS_DESCRIPTION_ROOTPW_496=Password for the initial \
 root user for the Directory Server
INFO_INSTALLDS_DESCRIPTION_ROOTPWFILE_497=Path to a file \
 containing the password for the initial root user for the Directory Server
INFO_INSTALLDS_DESCRIPTION_HELP_498=Display this usage information
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=Provide the base DN for the directory data:
INFO_INSTALLDS_PROMPT_IMPORT_505=Do you wish to populate the directory \
 database with information from an existing LDIF file?
INFO_INSTALLDS_PROMPT_IMPORT_FILE_506=Please specify the path to the LDIF \
 file containing the data to import:
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=Would you like to have the base %s entry \
 automatically created in the directory database?
INFO_INSTALLDS_PROMPT_LDAPPORT_509=On which port would you like the Directory \
 Server to accept connections from LDAP clients?
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=What would you like to use as the initial \
 root user DN for the Directory Server?
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=Please provide the password to use \
 for the initial root user:
INFO_INSTALLDS_PROMPT_CONFIRM_ROOT_PASSWORD_515=Please re-enter the password \
 for confirmation:
INFO_INSTALLDS_STATUS_CONFIGURING_DS_516=Applying the requested configuration \
 to the Directory Server...
INFO_INSTALLDS_STATUS_CREATING_BASE_LDIF_517=Creating a temporary LDIF file \
 with the initial base entry contents...
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=Importing the LDIF data into the \
 Directory Server database...
INFO_INSTALLDS_STATUS_SUCCESS_520=The server setup process has completed \
 successfully
INFO_INSTALLDS_PROMPT_VALUE_YES_521=yes
INFO_INSTALLDS_PROMPT_VALUE_NO_522=no
MILD_ERR_INSTALLDS_INVALID_YESNO_RESPONSE_523=ERROR:  The provided value \
 could not be interpreted as a yes or no response.  Please enter a response of \
 either "yes" or "no"
MILD_ERR_INSTALLDS_INVALID_INTEGER_RESPONSE_524=ERROR:  The provided response \
 could not be interpreted as an integer.  Please provide the response as an \
 integer value
MILD_ERR_INSTALLDS_INTEGER_BELOW_LOWER_BOUND_525=ERROR:  The provided value \
 is less than the lowest allowed value of %d
MILD_ERR_INSTALLDS_INTEGER_ABOVE_UPPER_BOUND_526=ERROR:  The provided value \
 is greater than the largest allowed value of %d
MILD_ERR_INSTALLDS_INVALID_DN_RESPONSE_527=ERROR:  The provided response \
 could not be interpreted as an LDAP DN
MILD_ERR_INSTALLDS_INVALID_STRING_RESPONSE_528=ERROR:  The response value may \
 not be an empty string
MILD_ERR_INSTALLDS_INVALID_PASSWORD_RESPONSE_529=ERROR:  The password value \
 may not be an empty string
MILD_ERR_INSTALLDS_PASSWORDS_DONT_MATCH_530=ERROR:  The provided password \
 values do not match
MILD_ERR_INSTALLDS_ERROR_READING_FROM_STDIN_531=ERROR:  Unexpected failure \
 while reading from standard input:  %s
INFO_LDIFIMPORT_DESCRIPTION_QUIET_532=Use quiet mode (no output)
INFO_INSTALLDS_IMPORT_SUCCESSFUL_533=Import complete
INFO_INSTALLDS_INITIALIZING_534=Please wait while the setup program \
 initializes...
MILD_ERR_MAKELDIF_TAG_INVALID_ARGUMENT_COUNT_535=Invalid number of arguments \
 provided for tag %s on line number %d of the template file:  expected %d, got \
 %d
MILD_ERR_MAKELDIF_TAG_INVALID_ARGUMENT_RANGE_COUNT_536=Invalid number of \
 arguments provided for tag %s on line number %d of the template file: \
 expected between %d and %d, got %d
MILD_ERR_MAKELDIF_TAG_UNDEFINED_ATTRIBUTE_537=Undefined attribute %s \
 referenced on line %d of the template file
MILD_ERR_MAKELDIF_TAG_INTEGER_BELOW_LOWER_BOUND_538=Value %d is below the \
 lowest allowed value of %d for tag %s on line %d of the template file
MILD_ERR_MAKELDIF_TAG_CANNOT_PARSE_AS_INTEGER_539=Cannot parse value "%s" as \
 an integer for tag %s on line %d of the template file
MILD_ERR_MAKELDIF_TAG_INTEGER_ABOVE_UPPER_BOUND_540=Value %d is above the \
 largest allowed value of %d for tag %s on line %d of the template file
MILD_ERR_MAKELDIF_TAG_INVALID_EMPTY_STRING_ARGUMENT_541=Argument %d for tag \
 %s on line number %d may not be an empty string
MILD_ERR_MAKELDIF_TAG_CANNOT_PARSE_AS_BOOLEAN_542=Cannot parse value "%s" as \
 a Boolean value for tag %s on line %d of the template file.  The value must \
 be either 'true' or 'false'
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=Unable to load class %s for use \
 as a MakeLDIF tag
MILD_ERR_MAKELDIF_CANNOT_INSTANTIATE_TAG_545=Cannot instantiate class %s as a \
 MakeLDIF tag
MILD_ERR_MAKELDIF_CONFLICTING_TAG_NAME_546=Cannot register the tag defined in \
 class %s because the tag name %s conflicts with the name of another tag that \
 has already been registered
MILD_WARN_MAKELDIF_WARNING_UNDEFINED_CONSTANT_547=Possible reference to an \
 undefined constant %s on line %d
MILD_ERR_MAKELDIF_DEFINE_MISSING_EQUALS_548=The constant definition on line \
 %d is missing an equal sign to delimit the constant name from the value
MILD_ERR_MAKELDIF_DEFINE_NAME_EMPTY_549=The constant definition on line %d \
 does not include a name for the constant
MILD_ERR_MAKELDIF_CONFLICTING_CONSTANT_NAME_550=The definition for constant \
 %s on line %d conflicts with an earlier constant definition included in the \
 template
MILD_ERR_MAKELDIF_WARNING_DEFINE_VALUE_EMPTY_551=Constant %s defined on line \
 %d has not been assigned a value
MILD_ERR_MAKELDIF_CONFLICTING_BRANCH_DN_552=The branch definition %s starting \
 on line %d conflicts with an earlier branch definition contained in the \
 template file
MILD_ERR_MAKELDIF_CONFLICTING_TEMPLATE_NAME_553=The template definition %s \
 starting on line %d conflicts with an earlier template definition contained \
 in the template file
MILD_ERR_MAKELDIF_UNEXPECTED_TEMPLATE_FILE_LINE_554=Unexpected template line \
 "%s" encountered on line %d of the template file
MILD_ERR_MAKELDIF_UNDEFINED_TEMPLATE_SUBORDINATE_555=The template named %s \
 references a subordinate template named %s which is not defined in the \
 template file
MILD_ERR_MAKELDIF_CANNOT_DECODE_BRANCH_DN_556=Unable to decode branch DN "%s" \
 on line %d of the template file
MILD_ERR_MAKELDIF_BRANCH_SUBORDINATE_TEMPLATE_NO_COLON_557=Subordinate \
 template definition on line %d for branch %s is missing a colon to separate \
 the template name from the number of entries
MILD_ERR_MAKELDIF_BRANCH_SUBORDINATE_INVALID_NUM_ENTRIES_558=Subordinate \
 template definition on line %d for branch %s specified invalid number of \
 entries %d for template %s
MILD_WARN_MAKELDIF_BRANCH_SUBORDINATE_ZERO_ENTRIES_559=Subordinate template \
 definition on line %d for branch %s specifies that zero entries of type %s \
 should be generated
MILD_ERR_MAKELDIF_BRANCH_SUBORDINATE_CANT_PARSE_NUMENTRIES_560=Unable to \
 parse the number of entries for template %s as an integer for the subordinate \
 template definition on line %d for branch %s
MILD_ERR_MAKELDIF_TEMPLATE_SUBORDINATE_TEMPLATE_NO_COLON_561=Subordinate \
 template definition on line %d for template %s is missing a colon to separate \
 the template name from the number of entries
MILD_ERR_MAKELDIF_TEMPLATE_SUBORDINATE_INVALID_NUM_ENTRIES_562=Subordinate \
 template definition on line %d for template %s specified invalid number of \
 entries %d for subordinate template %s
MILD_WARN_MAKELDIF_TEMPLATE_SUBORDINATE_ZERO_ENTRIES_563=Subordinate template \
 definition on line %d for template %s specifies that zero entries of type %s \
 should be generated
MILD_ERR_MAKELDIF_TEMPLATE_SUBORDINATE_CANT_PARSE_NUMENTRIES_564=Unable to \
 parse the number of entries for template %s as an integer for the subordinate \
 template definition on line %d for template %s
MILD_ERR_MAKELDIF_TEMPLATE_MISSING_RDN_ATTR_565=The template named %s \
 includes RDN attribute %s that is not assigned a value in that template
MILD_ERR_MAKELDIF_NO_COLON_IN_BRANCH_EXTRA_LINE_566=There is no colon to \
 separate the attribute name from the value pattern on line %d of the template \
 file in the definition for branch %s
MILD_ERR_MAKELDIF_NO_ATTR_IN_BRANCH_EXTRA_LINE_567=There is no attribute name \
 before the colon on line %d of the template file in the definition for branch \
 %s
MILD_WARN_MAKELDIF_NO_VALUE_IN_BRANCH_EXTRA_LINE_568=The value pattern for \
 line %d of the template file in the definition for branch %s is empty
MILD_ERR_MAKELDIF_NO_COLON_IN_TEMPLATE_LINE_569=There is no colon to separate \
 the attribute name from the value pattern on line %d of the template file in \
 the definition for template %s
MILD_ERR_MAKELDIF_NO_ATTR_IN_TEMPLATE_LINE_570=There is no attribute name \
 before the colon on line %d of the template file in the definition for \
 template %s
MILD_WARN_MAKELDIF_NO_VALUE_IN_TEMPLATE_LINE_571=The value pattern for line \
 %d of the template file in the definition for template %s is empty
MILD_ERR_MAKELDIF_NO_SUCH_TAG_572=An undefined tag %s is referenced on line \
 %d of the template file
MILD_ERR_MAKELDIF_CANNOT_INSTANTIATE_NEW_TAG_573=An unexpected error occurred \
 while trying to create a new instance of tag %s referenced on line %d of the \
 template file:  %s
INFO_MAKELDIF_DESCRIPTION_TEMPLATE_576=The path to the template file with \
 information about the LDIF data to generate
INFO_MAKELDIF_DESCRIPTION_LDIF_577=The path to the LDIF file to be written
INFO_MAKELDIF_DESCRIPTION_SEED_578=The seed to use to initialize the random \
 number generator
INFO_MAKELDIF_DESCRIPTION_HELP_579=Show this usage information
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=Cannot parse value "%s" as an \
 valid format string for tag %s on line %d of the template file
MILD_ERR_MAKELDIF_TAG_NO_RANDOM_TYPE_ARGUMENT_588=The random tag on line %d \
 of the template file does not include an argument to specify the type of \
 random value that should be generated
MILD_WARN_MAKELDIF_TAG_WARNING_EMPTY_VALUE_589=The value generated from the \
 random tag on line %d of the template file will always be an empty string
MILD_ERR_MAKELDIF_TAG_UNKNOWN_RANDOM_TYPE_590=The random tag on line %d of \
 the template file references an unknown random type of %s
INFO_MAKELDIF_DESCRIPTION_RESOURCE_PATH_591=Path to look for \
 MakeLDIF resources (e.g., data files) not found in the current working \
 directory or template directory path
MILD_ERR_MAKELDIF_COULD_NOT_FIND_TEMPLATE_FILE_592=Could not find template \
 file %s
MILD_ERR_MAKELDIF_NO_SUCH_RESOURCE_DIRECTORY_593=The specified resource \
 directory %s could not be found
MILD_ERR_MAKELDIF_RESOURCE_DIRECTORY_NOT_DIRECTORY_594=The specified resource \
 directory %s exists but is not a directory
MILD_ERR_MAKELDIF_TAG_CANNOT_FIND_FILE_595=Cannot find file %s referenced by \
 tag %s on line %d of the template file
MILD_ERR_MAKELDIF_TAG_INVALID_FILE_ACCESS_MODE_596=Invalid file access mode \
 %s for tag %s on line %d of the template file.  It must be either \
 "sequential" or "random"
MILD_ERR_MAKELDIF_TAG_CANNOT_READ_FILE_597=An error occurred while trying to \
 read file %s referenced by tag %s on line %d of the template file:  %s
MILD_ERR_MAKELDIF_UNABLE_TO_CREATE_LDIF_598=An error occurred while \
 attempting to open LDIF file %s for writing:  %s
MILD_ERR_MAKELDIF_ERROR_WRITING_LDIF_599=An error occurred while writing data \
 to LDIF file %s:  %s
INFO_MAKELDIF_PROCESSED_N_ENTRIES_600=Processed %d entries
MILD_ERR_MAKELDIF_CANNOT_WRITE_ENTRY_601=An error occurred while attempting \
 to write entry %s to LDIF:  %s
INFO_MAKELDIF_PROCESSING_COMPLETE_602=LDIF processing complete.  %d entries \
 written
INFO_LDIFIMPORT_DESCRIPTION_TEMPLATE_FILE_603=Path to a MakeLDIF template to \
 use to generate the import data
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=Line %d of the template file contains an \
 incomplete tag that starts with either '<' or '{' but does get closed
MILD_ERR_MAKELDIF_TAG_NOT_ALLOWED_IN_BRANCH_608=Tag %s referenced on line %d \
 of the template file is not allowed for use in branch definitions
INFO_LDIFIMPORT_DESCRIPTION_RANDOM_SEED_609=Seed for the MakeLDIF random \
 number generator
MILD_ERR_LDIFMODIFY_CANNOT_ADD_ENTRY_TWICE_610=Entry %s is added twice in the \
 set of changes to apply, which is not supported by the LDIF modify tool
MILD_ERR_LDIFMODIFY_CANNOT_DELETE_AFTER_ADD_611=Entry %s cannot be deleted \
 because it was previously added in the set of changes.  This is not supported \
 by the LDIF modify tool
MILD_ERR_LDIFMODIFY_CANNOT_MODIFY_ADDED_OR_DELETED_612=Cannot modify entry %s \
 because it was previously added or deleted in the set of changes.  This is \
 not supported by the LDIF modify tool
MILD_ERR_LDIFMODIFY_MODDN_NOT_SUPPORTED_613=The modify DN operation targeted \
 at entry %s cannot be processed because modify DN operations are not \
 supported by the LDIF modify tool
MILD_ERR_LDIFMODIFY_UNKNOWN_CHANGETYPE_614=Entry %s has an unknown changetype \
 of %s
MILD_ERR_LDIFMODIFY_ADD_ALREADY_EXISTS_615=Unable to add entry %s because it \
 already exists in the data set
MILD_ERR_LDIFMODIFY_DELETE_NO_SUCH_ENTRY_616=Unable to delete entry %s \
 because it does not exist in the data set
MILD_ERR_LDIFMODIFY_MODIFY_NO_SUCH_ENTRY_617=Unable to modify entry %s \
 because it does not exist in the data set
INFO_LDIFMODIFY_DESCRIPTION_SOURCE_620=LDIF file containing the \
 data to be updated
INFO_LDIFMODIFY_DESCRIPTION_CHANGES_621=LDIF file containing \
 the changes to apply
INFO_LDIFMODIFY_DESCRIPTION_TARGET_622=File to which the \
 updated data should be written
INFO_LDIFMODIFY_DESCRIPTION_HELP_623=Displays this usage information
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=Address of the Directory \
 Server system
INFO_LDAPPWMOD_DESCRIPTION_PORT_636=Port on which the Directory \
 Server listens for LDAP client connections
INFO_LDAPPWMOD_DESCRIPTION_BIND_DN_637=DN to use to bind to the server
INFO_LDAPPWMOD_DESCRIPTION_BIND_PW_638=Password to use to bind to the server
INFO_LDAPPWMOD_DESCRIPTION_BIND_PW_FILE_639=Path to a file \
 containing the password to use to bind to the server
INFO_LDAPPWMOD_DESCRIPTION_AUTHZID_640=Authorization ID for the \
 user entry whose password should be changed
INFO_LDAPPWMOD_DESCRIPTION_PROVIDE_DN_FOR_AUTHZID_641=Use the bind \
 DN as the authorization ID for the password modify operation
INFO_LDAPPWMOD_DESCRIPTION_NEWPW_642=New password to provide \
 for the target user
INFO_LDAPPWMOD_DESCRIPTION_NEWPWFILE_643=Path to a file \
 containing the new password to provide for the target user
INFO_LDAPPWMOD_DESCRIPTION_CURRENTPW_644=Current password for \
 the target user
INFO_LDAPPWMOD_DESCRIPTION_CURRENTPWFILE_645=Path to a file \
 containing the current password for the target user
INFO_LDAPPWMOD_DESCRIPTION_USE_SSL_646=Use SSL to secure the communication \
 with the Directory Server
INFO_LDAPPWMOD_DESCRIPTION_USE_STARTTLS_647=Use StartTLS to secure the \
 communication with the Directory Server
INFO_LDAPPWMOD_DESCRIPTION_BLIND_TRUST_648=Blindly trust any SSL certificate \
 presented by the server
INFO_LDAPPWMOD_DESCRIPTION_KEYSTORE_649=Path to the key store to use when \
 establishing SSL/TLS communication with the server
INFO_LDAPPWMOD_DESCRIPTION_KEYSTORE_PINFILE_650=Path to a file containing \
 the PIN needed to access the contents of the key store
INFO_LDAPPWMOD_DESCRIPTION_TRUSTSTORE_651=Path to the trust store to use \
 when establishing SSL/TLS communication with the server
INFO_LDAPPWMOD_DESCRIPTION_TRUSTSTORE_PINFILE_652=Path to a file \
 containing the PIN needed to access the contents of the trust store
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=The LDAP password modify operation was \
 successful
INFO_LDAPPWMOD_ADDITIONAL_INFO_668=Additional Info:  %s
INFO_LDAPPWMOD_GENERATED_PASSWORD_669=Generated Password:  %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=The assertion value was \
 indicated to be base64-encoded, but an error occurred while trying to decode \
 the value
INFO_COMPARE_CANNOT_READ_ASSERTION_VALUE_FROM_FILE_674=Unable to read the \
 assertion value from the specified file:  %s
INFO_WAIT4DEL_DESCRIPTION_TARGET_FILE_675=Path to the file to \
 watch for deletion
INFO_WAIT4DEL_DESCRIPTION_LOG_FILE_676=Path to a file \
 containing log output to monitor
INFO_WAIT4DEL_DESCRIPTION_TIMEOUT_677=Maximum length of time in seconds \
 to wait for the target file to be deleted before exiting
INFO_WAIT4DEL_DESCRIPTION_HELP_678=Displays this usage information
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=This utility can be used to back up one or \
 more Directory Server backends
INFO_CONFIGDS_TOOL_DESCRIPTION_684=This utility can be used to define a base \
 configuration for the Directory Server
INFO_ENCPW_TOOL_DESCRIPTION_685=This utility can be used to encode user \
 passwords with a specified storage scheme, or to determine whether a given \
 clear-text value matches a provided encoded password
INFO_LDIFEXPORT_TOOL_DESCRIPTION_686=This utility can be used to export data \
 from a Directory Server backend in LDIF form
INFO_LDIFIMPORT_TOOL_DESCRIPTION_687=This utility can be used to import LDIF \
 data into a Directory Server backend
INFO_INSTALLDS_TOOL_DESCRIPTION_688=This utility can be used to setup the \
 Directory Server
INFO_LDAPCOMPARE_TOOL_DESCRIPTION_689=This utility can be used to perform \
 LDAP compare operations in the Directory Server
INFO_LDAPDELETE_TOOL_DESCRIPTION_690=This utility can be used to perform LDAP \
 delete operations in the Directory Server
INFO_LDAPMODIFY_TOOL_DESCRIPTION_691=This utility can be used to perform LDAP \
 modify, add, delete, and modify DN operations in the Directory Server
INFO_LDAPPWMOD_TOOL_DESCRIPTION_692=This utility can be used to perform LDAP \
 password modify operations in the Directory Server
INFO_LDAPSEARCH_TOOL_DESCRIPTION_693=This utility can be used to perform LDAP \
 search operations in the Directory Server
INFO_LDIFDIFF_TOOL_DESCRIPTION_694=This utility can be used to compare two \
 LDIF files and report the differences in LDIF format
INFO_LDIFMODIFY_TOOL_DESCRIPTION_695=This utility can be used to apply a set \
 of modify, add, and delete operations against data in an LDIF file
INFO_LDIFSEARCH_TOOL_DESCRIPTION_696=This utility can be used to perform \
 search operations against data in an LDIF file
INFO_MAKELDIF_TOOL_DESCRIPTION_697=This utility can be used to generate LDIF \
 data based on a definition in a template file
INFO_RESTOREDB_TOOL_DESCRIPTION_698=This utility can be used to restore a \
 backup of a Directory Server backend
INFO_STOPDS_TOOL_DESCRIPTION_699=This utility can be used to request that the \
 Directory Server stop running or perform a restart
INFO_VERIFYINDEX_TOOL_DESCRIPTION_700=This utility can be used to ensure that \
 index data is consistent within a backend based on the Berkeley DB Java \
 Edition
INFO_WAIT4DEL_TOOL_DESCRIPTION_701=This utility can be used to wait for a \
 file to be removed from the filesystem
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=# Persistent search change type:  %s
INFO_LDAPSEARCH_PSEARCH_PREVIOUS_DN_709=# Persistent search previous entry \
 DN:  %s
INFO_LDAPSEARCH_ACCTUSABLE_HEADER_710=# Account Usability Response Control
INFO_LDAPSEARCH_ACCTUSABLE_IS_USABLE_711=#   The account is usable
INFO_LDAPSEARCH_ACCTUSABLE_TIME_UNTIL_EXPIRATION_712=#   Time until password \
 expiration:  %s
INFO_LDAPSEARCH_ACCTUSABLE_NOT_USABLE_713=#   The account is not usable
INFO_LDAPSEARCH_ACCTUSABLE_ACCT_INACTIVE_714=#   The account has been \
 deactivated
INFO_LDAPSEARCH_ACCTUSABLE_PW_RESET_715=#   The password has been reset
INFO_LDAPSEARCH_ACCTUSABLE_PW_EXPIRED_716=#   The password has expired
INFO_LDAPSEARCH_ACCTUSABLE_REMAINING_GRACE_717=#   Number of grace logins \
 remaining:  %d
INFO_LDAPSEARCH_ACCTUSABLE_LOCKED_718=#   The account is locked
INFO_LDAPSEARCH_ACCTUSABLE_TIME_UNTIL_UNLOCK_719=#   Time until the account \
 is unlocked:  %s
INFO_DESCRIPTION_KEYSTOREPASSWORD_FILE_720=Certificate key store PIN file
INFO_DESCRIPTION_TRUSTSTOREPASSWORD_721=Certificate trust store PIN
INFO_DESCRIPTION_TRUSTSTOREPASSWORD_FILE_722=Certificate trust store PIN file
INFO_LISTBACKENDS_TOOL_DESCRIPTION_723=This utility can be used to list the \
 backends and base DNs configured in the Directory Server
INFO_LISTBACKENDS_DESCRIPTION_BACKEND_ID_726=Backend ID of the backend for \
 which to list the base DNs
INFO_LISTBACKENDS_DESCRIPTION_BASE_DN_727=Base DN for which to list the \
 backend ID
INFO_LISTBACKENDS_DESCRIPTION_HELP_728=Display this usage information
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=The provided DN '%s' is not a base DN for \
 any backend configured in the Directory Server
INFO_LISTBACKENDS_NO_BACKEND_FOR_DN_737=The provided DN '%s' is not below any \
 base DN for any of the backends configured in the Directory Server
INFO_LISTBACKENDS_DN_BELOW_BASE_738=The provided DN '%s' is below '%s' which \
 is configured as a base DN for backend '%s'
INFO_LISTBACKENDS_BASE_FOR_ID_739=The provided DN '%s' is a base DN for \
 backend '%s'
INFO_LISTBACKENDS_LABEL_BACKEND_ID_740=Backend ID
INFO_LISTBACKENDS_LABEL_BASE_DN_741=Base 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=Use the LDAP compare result as \
 an exit code for the password comparison
INFO_DESCRIPTION_COUNT_ENTRIES_750=Count the number of entries returned by \
 the server
INFO_LDAPSEARCH_MATCHING_ENTRY_COUNT_751=# Total number of matching entries: \
 %d
INFO_INSTALLDS_DESCRIPTION_CLI_752=Use the command line install. \
 If not specified the graphical interface will be launched.  The rest of the \
 options (excluding help and version) will only be taken into account if this \
 option is specified
INFO_INSTALLDS_DESCRIPTION_SAMPLE_DATA_753=Specifies that the database should \
 be populated with the specified number of sample entries
INFO_INSTALLDS_HEADER_POPULATE_TYPE_754=Options for populating the database:
INFO_INSTALLDS_POPULATE_OPTION_BASE_ONLY_755=Only create the base entry
INFO_INSTALLDS_POPULATE_OPTION_LEAVE_EMPTY_756=Leave the database empty
INFO_INSTALLDS_POPULATE_OPTION_IMPORT_LDIF_757=Import data from an LDIF file
INFO_INSTALLDS_POPULATE_OPTION_GENERATE_SAMPLE_758=Load \
 automatically-generated sample data
INFO_INSTALLDS_PROMPT_POPULATE_CHOICE_759=Database population selection:
SEVERE_ERR_INSTALLDS_NO_SUCH_LDIF_FILE_780=ERROR:  The specified LDIF file %s \
 does not exist
INFO_INSTALLDS_PROMPT_NUM_ENTRIES_781=Please specify the number of user \
 entries to generate:
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=The PIN needed to access the \
 contents of the key store
INFO_LDAPPWMOD_DESCRIPTION_TRUSTSTORE_PIN_784=The PIN needed to access the \
 contents of the trust store
INFO_LDIFEXPORT_DESCRIPTION_EXCLUDE_OPERATIONAL_785=Exclude operational \
 attributes from the LDIF export
INFO_LDAPPWMOD_PWPOLICY_WARNING_786=Password Policy Warning:  %s = %d
INFO_LDAPPWMOD_PWPOLICY_ERROR_787=Password Policy Error:  %s
MILD_ERR_LDAPPWMOD_CANNOT_DECODE_PWPOLICY_CONTROL_788=Unable to decode the \
 password policy response control:  %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=Use the simple paged results control \
 with the given page size
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=Each \
 attribute-level change should be written as a separate modification per \
 attribute value rather than one modification per entry
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=The server is using the following certificate: \
 \n    Subject DN:  %s\n    Issuer DN:  %s\n    Validity:  %s through %s\nDo \
 you wish to trust this certificate and continue connecting to the server?
INFO_PROMPTTM_YESNO_PROMPT_800=Please enter "yes" or "no":
SEVERE_ERR_PROMPTTM_USER_REJECTED_801=The server certificate has been \
 rejected by the user
INFO_STOPDS_SERVER_ALREADY_STOPPED_802=Server already stopped
INFO_STOPDS_GOING_TO_STOP_803=Stopping Server...
INFO_STOPDS_CHECK_STOPPABILITY_804=Used to determine whether the server can \
 be stopped or not and the mode to be used to stop it
INFO_DESCRIPTION_CERT_NICKNAME_805=Nickname of certificate for SSL client \
 authentication
INFO_CONFIGDS_DESCRIPTION_JMX_PORT_806=Port on which the \
 Directory Server should listen for JMX communication
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=Port on which the \
 Directory Server should listen for JMX communication
INFO_INSTALLDS_PROMPT_JMXPORT_809=On which port would you like the Directory \
 Server to accept connections from JMX clients?
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=This utility can be used \
 to configure the server as a Windows service
INFO_CONFIGURE_WINDOWS_SERVICE_DESCRIPTION_SHOWUSAGE_817=Display this usage \
 information
INFO_CONFIGURE_WINDOWS_SERVICE_DESCRIPTION_ENABLE_818=Enables the server as a \
 Windows service
INFO_CONFIGURE_WINDOWS_SERVICE_DESCRIPTION_DISABLE_819=Disables the server as \
 a Windows service and stops the server
INFO_CONFIGURE_WINDOWS_SERVICE_DESCRIPTION_STATE_820=Provides information \
 about the state of the server as a Windows service
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=%s
INFO_WINDOWS_SERVICE_DESCRIPTION_826=Next Generation Directory \
 Server.  Installation path: %s
INFO_WINDOWS_SERVICE_SUCCESSULLY_ENABLED_827=The server was successfully \
 enabled to run as a Windows service
INFO_WINDOWS_SERVICE_ALREADY_ENABLED_828=The server was already enabled to run \
 as a Windows service
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=The server was successfully \
 disabled as a Windows service
INFO_WINDOWS_SERVICE_ALREADY_DISABLED_832=The server was already disabled as a \
 Windows service
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=The server is enabled as a Windows service.  \
 The service name for the server is: %s
INFO_WINDOWS_SERVICE_DISABLED_836=The server is disabled as a Windows service
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=Used by the window service code \
 to inform that stop-ds is being called from the window services after a call \
 to net stop
INFO_WAIT4DEL_DESCRIPTION_OUTPUT_FILE_839=Path to a file to \
 which the command will write the output
SEVERE_WARN_WAIT4DEL_CANNOT_OPEN_OUTPUT_FILE_840=WARNING:  Unable to open \
 output file %s for writing:  %s
INFO_INSTALLDS_ENABLING_WINDOWS_SERVICE_841=Enabling the server as a Windows \
 service...
INFO_INSTALLDS_PROMPT_ENABLE_SERVICE_842=Enable the server to run as a Windows \
 Service?
INFO_INSTALLDS_DESCRIPTION_ENABLE_WINDOWS_SERVICE_843=Enable the server to run \
 as a Windows Service
INFO_CONFIGURE_WINDOWS_SERVICE_DESCRIPTION_CLEANUP_844=Allows to disable the \
 server service and to clean up the windows registry information associated \
 with the provided service name
INFO_WINDOWS_SERVICE_CLEANUP_SUCCESS_845=Clean up of service %s was \
 successful
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=This utility can be used to rebuild \
 index data within a backend based on the Berkeley DB Java Edition
INFO_REBUILDINDEX_DESCRIPTION_BASE_DN_850=Base DN of a backend \
 supporting indexing. Rebuild is performed on indexes within the scope of the \
 given base DN
INFO_REBUILDINDEX_DESCRIPTION_INDEX_NAME_851=Names of index(es) \
 to rebuild. For an attribute index this is simply an attribute name.  At \
 least one index must be specified for rebuild. Cannot be used with the \
 "--rebuildAll" option
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=Port on which the \
 Directory Server should listen for LDAPS communication
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=Specifies whether to enable or \
 not StartTLS
INFO_CONFIGDS_DESCRIPTION_KEYMANAGER_PROVIDER_DN_861=DN of the \
 key manager provider to use for SSL and/or StartTLS
INFO_CONFIGDS_DESCRIPTION_TRUSTMANAGER_PROVIDER_DN_862=DN of \
 the trust manager provider to use for SSL and/or StartTLS
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=Path of the \
 key store to be used by the key manager provider
INFO_CONFIGDS_DESCRIPTION_CERTNICKNAME_871=Nickname of the \
 certificate that the connection handler should use when accepting SSL-based \
 connections or performing StartTLS negotiation
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=LDIF file containing \
 the changes to apply
MILD_ERR_MAKELDIF_TEMPLATE_INVALID_PARENT_TEMPLATE_875=The parent template %s \
 referenced on line %d for template %s is invalid because the referenced \
 parent template is not defined before the template that extends it
INFO_DESCRIPTION_SORT_ORDER_876=Sort the results using the provided sort \
 order
MILD_ERR_LDAP_SORTCONTROL_INVALID_ORDER_877=The provided sort order was \
 invalid:  %s
INFO_DESCRIPTION_VLV_878=Use the virtual list view control to retrieve the \
 specified results page
MILD_ERR_LDAPSEARCH_VLV_REQUIRES_SORT_879=If the --%s argument is provided, \
 then the --%s argument must also be given
MILD_ERR_LDAPSEARCH_VLV_INVALID_DESCRIPTOR_880=The provided virtual list view \
 descriptor was invalid.  It must be a value in the form \
 'beforeCount:afterCount:offset:contentCount' (where offset specifies the \
 index of the target entry and contentCount specifies the estimated total \
 number of results or zero if it is not known), or \
 'beforeCount:afterCount:assertionValue' (where the entry should be the first \
 entry whose primary sort value is greater than or equal to the provided \
 assertionValue).  In either case, beforeCount is the number of entries to \
 return before the target value and afterCount is the number of entries to \
 return after the target value
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 Target Offset:  %d
INFO_LDAPSEARCH_VLV_CONTENT_COUNT_884=# VLV Content Count:  %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=Use geteffectiverights control with \
 the provided authzid
INFO_DESCRIPTION_EFFECTIVERIGHTS_ATTR_889=Specifies geteffectiverights \
 control specific attribute list
MILD_ERR_EFFECTIVERIGHTS_INVALID_AUTHZID_890=The authorization ID "%s" \
 contained in the geteffectiverights control is invalid because it does not \
 start with "dn:" to indicate a user DN
INFO_DESCRIPTION_PRODUCT_VERSION_891=Display Directory Server version \
 information
INFO_DESCRIPTION_QUIET_1075=Use quiet mode
INFO_DESCRIPTION_SCRIPT_FRIENDLY_1076=Use script-friendly mode
INFO_DESCRIPTION_NO_PROMPT_1077=Use non-interactive mode.  If data in \
the command is missing, the user is not prompted and the tool will fail
INFO_PWPSTATE_TOOL_DESCRIPTION_1094=This utility can be used to retrieve and \
 manipulate the values of password policy state variables
INFO_PWPSTATE_DESCRIPTION_HOST_1095=Directory server hostname or IP address
INFO_PWPSTATE_DESCRIPTION_PORT_1096=Directory server administration port number
INFO_PWPSTATE_DESCRIPTION_USESSL_1097=Use SSL for secure communication with \
 the server
INFO_PWPSTATE_DESCRIPTION_USESTARTTLS_1098=Use StartTLS to secure \
 communication with the server
INFO_PWPSTATE_DESCRIPTION_BINDDN_1099=The DN to use to bind to the server
INFO_PWPSTATE_DESCRIPTION_BINDPW_1100=The password to use to bind to the \
 server
INFO_PWPSTATE_DESCRIPTION_BINDPWFILE_1101=The path to the file containing the \
 bind password
INFO_PWPSTATE_DESCRIPTION_TARGETDN_1102=The DN of the user entry for which to \
 get and set password policy state information
INFO_PWPSTATE_DESCRIPTION_SASLOPTIONS_1103=SASL bind options
INFO_PWPSTATE_DESCRIPTION_TRUST_ALL_1104=Trust all server SSL certificates
INFO_PWPSTATE_DESCRIPTION_KSFILE_1105=Certificate key store path
INFO_PWPSTATE_DESCRIPTION_KSPW_1106=Certificate key store PIN
INFO_PWPSTATE_DESCRIPTION_KSPWFILE_1107=Certificate key store PIN file
INFO_PWPSTATE_DESCRIPTION_TSFILE_1108=Certificate trust store path
INFO_PWPSTATE_DESCRIPTION_TSPW_1109=Certificate trust store PIN
INFO_PWPSTATE_DESCRIPTION_TSPWFILE_1110=Certificate trust store PIN file
INFO_PWPSTATE_DESCRIPTION_SHOWUSAGE_1111=Display this usage information
INFO_DESCRIPTION_PWPSTATE_GET_ALL_1112=Display all password policy state \
 information for the user
INFO_DESCRIPTION_PWPSTATE_GET_PASSWORD_POLICY_DN_1113=Display the DN of the \
 password policy for the user
INFO_DESCRIPTION_PWPSTATE_GET_ACCOUNT_DISABLED_STATE_1114=Display information \
 about whether the user account has been administratively disabled
INFO_DESCRIPTION_PWPSTATE_SET_ACCOUNT_DISABLED_STATE_1115=Specify whether the \
 user account has been administratively disabled
INFO_DESCRIPTION_OPERATION_BOOLEAN_VALUE_1116='true' to indicate that the \
 account is disabled, or 'false' to indicate that it is not disabled
INFO_DESCRIPTION_PWPSTATE_CLEAR_ACCOUNT_DISABLED_STATE_1117=Clear account \
 disabled state information from the user account
INFO_DESCRIPTION_PWPSTATE_GET_ACCOUNT_EXPIRATION_TIME_1118=Display when the \
 user account will expire
INFO_DESCRIPTION_PWPSTATE_SET_ACCOUNT_EXPIRATION_TIME_1119=Specify when the \
 user account will expire
INFO_DESCRIPTION_OPERATION_TIME_VALUE_1120=A timestamp value using the \
 generalized time syntax
INFO_DESCRIPTION_PWPSTATE_CLEAR_ACCOUNT_EXPIRATION_TIME_1121=Clear account \
 expiration time information from the user account
INFO_DESCRIPTION_PWPSTATE_GET_SECONDS_UNTIL_ACCOUNT_EXPIRATION_1122=Display \
 the length of time in seconds until the user account expires
INFO_DESCRIPTION_PWPSTATE_GET_PASSWORD_CHANGED_TIME_1123=Display the time \
 that the user's password was last changed
INFO_DESCRIPTION_PWPSTATE_SET_PASSWORD_CHANGED_TIME_1124=Specify the time \
 that the user's password was last changed.  This should be used only for \
 testing purposes
INFO_DESCRIPTION_PWPSTATE_CLEAR_PASSWORD_CHANGED_TIME_1125=Clear information \
 about the time that the user's password was last changed.  This should be \
 used only for testing purposes
INFO_DESCRIPTION_PWPSTATE_GET_PASSWORD_EXPIRATION_WARNED_TIME_1126=Display \
 the time that the user first received an expiration warning notice
INFO_DESCRIPTION_PWPSTATE_SET_PASSWORD_EXPIRATION_WARNED_TIME_1127=Specify \
 the time that the user first received an expiration warning notice.  This \
 should be used only for testing purposes
INFO_DESCRIPTION_PWPSTATE_CLEAR_PASSWORD_EXPIRATION_WARNED_TIME_1128=Clear \
 information about the time that the user first received an expiration warning \
 notice.  This should be used only for testing purposes
INFO_DESCRIPTION_PWPSTATE_GET_SECONDS_UNTIL_PASSWORD_EXP_1129=Display length \
 of time in seconds until the user's password expires
INFO_DESCRIPTION_PWPSTATE_GET_SECONDS_UNTIL_PASSWORD_EXP_WARNING_1130=Display \
 the length of time in seconds until the user should start receiving password \
 expiration warning notices
INFO_DESCRIPTION_PWPSTATE_GET_AUTH_FAILURE_TIMES_1131=Display the \
 authentication failure times for the user
INFO_DESCRIPTION_PWPSTATE_ADD_AUTH_FAILURE_TIME_1132=Add an authentication \
 failure time to the user account.  This should be used only for testing \
 purposes
INFO_DESCRIPTION_PWPSTATE_SET_AUTH_FAILURE_TIMES_1133=Specify the \
 authentication failure times for the user.  This should be used only for \
 testing purposes
INFO_DESCRIPTION_OPERATION_TIME_VALUES_1134=A timestamp value using the \
 generalized time syntax.  Multiple timestamp values may be given by providing \
 this argument multiple times
INFO_DESCRIPTION_PWPSTATE_CLEAR_AUTH_FAILURE_TIMES_1135=Clear authentication \
 failure time information from the user's account.  This should be used only \
 for testing purposes
INFO_DESCRIPTION_PWPSTATE_GET_SECONDS_UNTIL_AUTH_FAILURE_UNLOCK_1136=Display \
 the length of time in seconds until the authentication failure lockout \
 expires
INFO_DESCRIPTION_PWPSTATE_GET_REMAINING_AUTH_FAILURE_COUNT_1137=Display the \
 number of remaining authentication failures until the user's account is \
 locked
INFO_DESCRIPTION_PWPSTATE_GET_LAST_LOGIN_TIME_1138=Display the time that the \
 user last authenticated to the server
INFO_DESCRIPTION_PWPSTATE_SET_LAST_LOGIN_TIME_1139=Specify the time that the \
 user last authenticated to the server.  This should be used only for testing \
 purposes
INFO_DESCRIPTION_PWPSTATE_CLEAR_LAST_LOGIN_TIME_1140=Clear the time that the \
 user last authenticated to the server.  This should be used only for testing \
 purposes
INFO_DESCRIPTION_PWPSTATE_GET_SECONDS_UNTIL_IDLE_LOCKOUT_1141=Display the \
 length of time in seconds until user's account is locked because it has \
 remained idle for too long
INFO_DESCRIPTION_PWPSTATE_GET_PASSWORD_RESET_STATE_1142=Display information \
 about whether the user will be required to change his or her password on the \
 next successful authentication
INFO_DESCRIPTION_PWPSTATE_SET_PASSWORD_RESET_STATE_1143=Specify whether the \
 user will be required to change his or her password on the next successful \
 authentication.  This should be used only for testing purposes
INFO_DESCRIPTION_PWPSTATE_CLEAR_PASSWORD_RESET_STATE_1144=Clear information \
 about whether the user will be required to change his or her password on the \
 next successful authentication.  This should be used only for testing \
 purposes
INFO_DESCRIPTION_PWPSTATE_GET_SECONDS_UNTIL_RESET_LOCKOUT_1145=Display the \
 length of time in seconds until user's account is locked because the user \
 failed to change the password in a timely manner after an administrative \
 reset
INFO_DESCRIPTION_PWPSTATE_GET_GRACE_LOGIN_USE_TIMES_1146=Display the grace \
 login use times for the user
INFO_DESCRIPTION_PWPSTATE_ADD_GRACE_LOGIN_USE_TIME_1147=Add a grace login use \
 time to the user account.  This should be used only for testing purposes
INFO_DESCRIPTION_PWPSTATE_SET_GRACE_LOGIN_USE_TIMES_1148=Specify the grace \
 login use times for the user.  This should be used only for testing purposes
INFO_DESCRIPTION_PWPSTATE_CLEAR_GRACE_LOGIN_USE_TIMES_1149=Clear the set of \
 grace login use times for the user.  This should be used only for testing \
 purposes
INFO_DESCRIPTION_PWPSTATE_GET_REMAINING_GRACE_LOGIN_COUNT_1150=Display the \
 number of grace logins remaining for the user
INFO_DESCRIPTION_PWPSTATE_GET_PW_CHANGED_BY_REQUIRED_TIME_1151=Display the \
 required password change time with which the user last complied
INFO_DESCRIPTION_PWPSTATE_SET_PW_CHANGED_BY_REQUIRED_TIME_1152=Specify the \
 required password change time with which the user last complied.  This should \
 be used only for testing purposes
INFO_DESCRIPTION_PWPSTATE_CLEAR_PW_CHANGED_BY_REQUIRED_TIME_1153=Clear \
 information about the required password change time with which the user last \
 complied.  This should be used only for testing purposes
INFO_DESCRIPTION_PWPSTATE_GET_SECONDS_UNTIL_REQUIRED_CHANGE_TIME_1154=Display \
 the length of time in seconds that the user has remaining to change his or \
 her password before the account becomes locked due to the required change \
 time
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=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=Password Policy DN
INFO_PWPSTATE_LABEL_ACCOUNT_DISABLED_STATE_1165=Account Is Disabled
INFO_PWPSTATE_LABEL_ACCOUNT_EXPIRATION_TIME_1166=Account Expiration Time
INFO_PWPSTATE_LABEL_SECONDS_UNTIL_ACCOUNT_EXPIRATION_1167=Seconds Until \
 Account Expiration
INFO_PWPSTATE_LABEL_PASSWORD_CHANGED_TIME_1168=Password Changed Time
INFO_PWPSTATE_LABEL_PASSWORD_EXPIRATION_WARNED_TIME_1169=Password Expiration \
 Warned Time
INFO_PWPSTATE_LABEL_SECONDS_UNTIL_PASSWORD_EXPIRATION_1170=Seconds Until \
 Password Expiration
INFO_PWPSTATE_LABEL_SECONDS_UNTIL_PASSWORD_EXPIRATION_WARNING_1171=Seconds \
 Until Password Expiration Warning
INFO_PWPSTATE_LABEL_AUTH_FAILURE_TIMES_1172=Authentication Failure Times
INFO_PWPSTATE_LABEL_SECONDS_UNTIL_AUTH_FAILURE_UNLOCK_1173=Seconds Until \
 Authentication Failure Unlock
INFO_PWPSTATE_LABEL_REMAINING_AUTH_FAILURE_COUNT_1174=Remaining \
 Authentication Failure Count
INFO_PWPSTATE_LABEL_LAST_LOGIN_TIME_1175=Last Login Time
INFO_PWPSTATE_LABEL_SECONDS_UNTIL_IDLE_LOCKOUT_1176=Seconds Until Idle \
 Account Lockout
INFO_PWPSTATE_LABEL_PASSWORD_RESET_STATE_1177=Password Is Reset
INFO_PWPSTATE_LABEL_SECONDS_UNTIL_PASSWORD_RESET_LOCKOUT_1178=Seconds Until \
 Password Reset Lockout
INFO_PWPSTATE_LABEL_GRACE_LOGIN_USE_TIMES_1179=Grace Login Use Times
INFO_PWPSTATE_LABEL_REMAINING_GRACE_LOGIN_COUNT_1180=Remaining Grace Login \
 Count
INFO_PWPSTATE_LABEL_PASSWORD_CHANGED_BY_REQUIRED_TIME_1181=Password Changed \
 by Required Time
INFO_PWPSTATE_LABEL_SECONDS_UNTIL_REQUIRED_CHANGE_TIME_1182=Seconds Until \
 Required Change Time
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=Specifies an existing server package \
 (.zip) file to which the current build will be upgraded using the command \
 line version of this tool
INFO_UPGRADE_DESCRIPTION_NO_PROMPT_1191=Use non-interactive mode.  Prompt for \
 any required information rather than fail
INFO_UPGRADE_DESCRIPTION_SILENT_1192=Perform a quiet upgrade or reversion
INFO_LDIFIMPORT_DESCRIPTION_COUNT_REJECTS_1195=Count the number of entries \
 rejected by the server and return that value as the exit code (values > 255 \
 will be reduced to 255 due to exit code restrictions)
INFO_LDIFIMPORT_DESCRIPTION_SKIP_FILE_1197=Write skipped entries to the \
 specified file
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=Count the number of errors \
 found during the verification and return that value as the exit code (values \
 > 255 will be reduced to 255 due to exit code restrictions)
INFO_PWPSTATE_LABEL_PASSWORD_HISTORY_1201=Password History
INFO_DESCRIPTION_PWPSTATE_GET_PASSWORD_HISTORY_1202=Display password history \
 state values for the user
INFO_DESCRIPTION_PWPSTATE_CLEAR_PASSWORD_HISTORY_1203=Clear password history \
 state values for the user.  This should be used only for testing purposes
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=Default value
INFO_REVERT_DESCRIPTION_DIRECTORY_1219=Directory where reversion files are \
 stored.  This should be one of the child directories of the 'history' \
 directory that is created when the upgrade tool is run
INFO_REVERT_DESCRIPTION_RECENT_1220=The installation will be \
 reverted to the state before the most recent upgrade
INFO_REVERT_DESCRIPTION_INTERACTIVE_1221=Prompt for any required information \
 rather than fail
INFO_REVERT_DESCRIPTION_SILENT_1222=Perform a quiet reversion
INFO_LDIFIMPORT_DESCRIPTION_CLEAR_BACKEND_1251=Remove all entries for all \
 base DNs in the backend before importing
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=The list tag on line %d of the \
 template file does not contain any arguments to specify the list values.  At \
 least one list value must be provided
MILD_WARN_MAKELDIF_TAG_LIST_INVALID_WEIGHT_1292=The list tag on line %d of \
 the template file contains item '%s' that includes a semicolon but that \
 semicolon is not followed by an integer.  The semicolon will be assumed to be \
 part of the value and not a delimiter to separate the value from its relative \
 weight
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=Directory server hostname or IP address
INFO_LDAP_CONN_DESCRIPTION_PORT_1301=Directory server port number
INFO_LDAP_CONN_DESCRIPTION_USESSL_1302=Use SSL for secure communication with \
 the server
INFO_LDAP_CONN_DESCRIPTION_USESTARTTLS_1303=Use StartTLS for secure \
 communication with the server
INFO_LDAP_CONN_DESCRIPTION_BINDDN_1304=DN to use to bind to the server
INFO_LDAP_CONN_DESCRIPTION_BINDPW_1305=Password to use to bind to the server
INFO_LDAP_CONN_DESCRIPTION_BINDPWFILE_1306=Bind password file
INFO_LDAP_CONN_DESCRIPTION_SASLOPTIONS_1307=SASL bind options
INFO_LDAP_CONN_DESCRIPTION_TRUST_ALL_1308=Trust all server SSL certificates
INFO_LDAP_CONN_DESCRIPTION_KSFILE_1309=Certificate key store path
INFO_LDAP_CONN_DESCRIPTION_KSPW_1310=Certificate key store PIN
INFO_LDAP_CONN_DESCRIPTION_KSPWFILE_1311=Certificate key store PIN file
INFO_LDAP_CONN_DESCRIPTION_TSFILE_1312=Certificate trust store path
INFO_LDAP_CONN_DESCRIPTION_TSPW_1313=Certificate trust store PIN
INFO_LDAP_CONN_DESCRIPTION_TSPWFILE_1314=Certificate trust store PIN file
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=%s task %s scheduled to start \
  immediately
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=Create an RC script that may be used to \
 start, stop, and restart the Directory Server on UNIX-based systems
INFO_CREATERC_OUTFILE_DESCRIPTION_1323=The path to the output file to create
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=This utility can be used to debug the JE \
  database
INFO_DESCRIPTION_DBTEST_SUBCMD_LIST_ROOT_CONTAINERS_1328=List the root \
  containers used by all JE backends
INFO_DESCRIPTION_DBTEST_SUBCMD_LIST_ENTRY_CONTAINERS_1329=List the entry \
  containers for a root container
INFO_DESCRIPTION_DBTEST_SUBCMD_DUMP_DATABASE_CONTAINER_1330=Dump records from \
  a database container
INFO_DESCRIPTION_DBTEST_BACKEND_ID_1331=The backend ID of the JE backend to \
  debug
INFO_DESCRIPTION_DBTEST_BASE_DN_1332=The base DN of the entry container to debug
INFO_DESCRIPTION_DBTEST_DATABASE_NAME_1333=The name of the database container \
  to debug
INFO_DESCRIPTION_DBTEST_SKIP_DECODE_1334=Do not try to decode the JE data to \
  their appropriate types
MILD_ERR_DBTEST_DECODE_FAIL_1335=An error occurred while decoding data: %s
INFO_DESCRIPTION_DBTEST_SUBCMD_LIST_INDEX_STATUS_1336=List the status of \
  indexes in an entry container
INFO_DESCRIPTION_DBTEST_MAX_KEY_VALUE_1337=Only show records with keys that \
  should be ordered before the provided value using the comparator for the \
  database container
INFO_DESCRIPTION_DBTEST_MIN_KEY_VALUE_1338=Only show records with keys that \
  should be ordered after the provided value using the comparator for the \
  database container
INFO_DESCRIPTION_DBTEST_MAX_DATA_SIZE_1339=Only show records whose data is no \
  larger than the provided value
INFO_DESCRIPTION_DBTEST_MIN_DATA_SIZE_1340=Only show records whose data is no \
  smaller than the provided value
INFO_DESCRIPTION_DBTEST_SUBCMD_LIST_DATABASE_CONTAINERS_1341=List the database \
  containers for an entry container
INFO_LABEL_DBTEST_BACKEND_ID_1342=Backend ID
INFO_LABEL_DBTEST_DB_DIRECTORY_1343=Database Directory
INFO_LABEL_DBTEST_BASE_DN_1344=Base DN
INFO_LABEL_DBTEST_JE_DATABASE_PREFIX_1345=JE Database Prefix
INFO_LABEL_DBTEST_ENTRY_COUNT_1346=Entry Count
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=Database Name
INFO_LABEL_DBTEST_DATABASE_TYPE_1354=Database Type
INFO_LABEL_DBTEST_JE_DATABASE_NAME_1355=JE Database Name
INFO_LABEL_DBTEST_JE_RECORD_COUNT_1356=Record Count
INFO_LABEL_DBTEST_INDEX_NAME_1357=Index Name
INFO_LABEL_DBTEST_INDEX_TYPE_1358=Index Type
INFO_LABEL_DBTEST_INDEX_STATUS_1359=Index Valid
INFO_LABEL_DBTEST_KEY_1360=Key
INFO_LABEL_DBTEST_DATA_1361=Data
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=Entry
INFO_LABEL_DBTEST_ENTRY_ID_1366=Entry ID
INFO_LABEL_DBTEST_ENTRY_DN_1367=Entry DN
INFO_LABEL_DBTEST_URI_1368=URI
INFO_LABEL_DBTEST_INDEX_VALUE_1369=Indexed Value
INFO_LABEL_DBTEST_INDEX_ENTRY_ID_LIST_1370=Entry ID List
INFO_LABEL_DBTEST_VLV_INDEX_LAST_SORT_KEYS_1371=Last Sort Keys
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=The name of the user account under which \
 the server should run
INFO_CREATERC_JAVA_HOME_DESCRIPTION_1376=The path to the Java installation \
 that should be used to run the server
INFO_CREATERC_JAVA_ARGS_DESCRIPTION_1377=A set of arguments that should be \
 passed to the JVM when running the server
SEVERE_ERR_CREATERC_JAVA_HOME_DOESNT_EXIST_1378=The directory %s specified \
 as the OPENDJ_JAVA_HOME path does not exist or is not a directory
INFO_INSTALLDS_STATUS_COMMAND_LINE_1379=To see basic server configuration \
status and configuration you can launch %s
INFO_INSTALLDS_PROMPT_ENABLE_SSL_1380=Do you want to enable SSL?
INFO_INSTALLDS_PROMPT_LDAPSPORT_1381=On which port would you like the \
 Directory Server to accept connections from LDAPS clients?
INFO_INSTALLDS_ENABLE_STARTTLS_1382=Do you want to enable Start TLS?
INFO_INSTALLDS_PROMPT_JKS_PATH_1383=Java Key Store (JKS) path:
INFO_INSTALLDS_PROMPT_PKCS12_PATH_1384=PKCS#12 key Store path:
INFO_INSTALLDS_PROMPT_KEYSTORE_PASSWORD_1385=Key store PIN:
INFO_INSTALLDS_PROMPT_CERTNICKNAME_1386=Use nickname %s?
INFO_INSTALLDS_HEADER_CERT_TYPE_1387=Certificate server options:
INFO_INSTALLDS_CERT_OPTION_SELF_SIGNED_1388=Generate self-signed certificate \
 (recommended for testing purposes only)
INFO_INSTALLDS_CERT_OPTION_JKS_1389=Use an existing certificate located on a \
 Java Key Store (JKS)
INFO_INSTALLDS_CERT_OPTION_PKCS12_1390=Use an existing certificate located on \
 a PKCS#12 key store
INFO_INSTALLDS_CERT_OPTION_PKCS11_1391=Use an existing certificate on a \
 PKCS#11 token
INFO_INSTALLDS_PROMPT_CERT_TYPE_CHOICE_1392=Certificate type selection:
INFO_INSTALLDS_PROMPT_START_SERVER_1393=Do you want to start the server when \
 the configuration is completed?
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=Do not start the server when the \
 configuration is completed
INFO_INSTALLDS_DESCRIPTION_ENABLE_STARTTLS_1397=Enable StartTLS to allow \
 secure communication with the server using the LDAP port
INFO_INSTALLDS_DESCRIPTION_LDAPSPORT_1398=Port on which the \
 Directory Server should listen for LDAPS communication.  The LDAPS port will \
 be configured and SSL will be enabled only if this argument is explicitly \
 specified
INFO_INSTALLDS_DESCRIPTION_USE_SELF_SIGNED_1399=Generate a \
 self-signed certificate that the server should use when accepting SSL-based \
 connections or performing StartTLS negotiation
INFO_INSTALLDS_DESCRIPTION_USE_PKCS11_1400=Use a certificate in a \
 PKCS#11 token that the server should use when accepting SSL-based \
 connections or performing StartTLS negotiation
INFO_INSTALLDS_DESCRIPTION_USE_JAVAKEYSTORE_1401=Path of a Java \
 Key Store (JKS) containing a certificate to be used as the server certificate
INFO_INSTALLDS_DESCRIPTION_USE_PKCS12_1402=Path of a PKCS#12 key \
 store containing the certificate that the server should use when accepting \
 SSL-based connections or performing StartTLS negotiation
INFO_INSTALLDS_DESCRIPTION_KEYSTOREPASSWORD_1403=Certificate key store PIN.  \
 A PIN is required when you specify to use an existing certificate (JKS, \
 JCEKS, PKCS#12 or PKCS#11) as server certificate
INFO_INSTALLDS_DESCRIPTION_KEYSTOREPASSWORD_FILE_1404=Certificate key store \
 PIN file.  A PIN is required when you specify to use an existing certificate \
 (JKS, JCEKS, PKCS#12 or PKCS#11) as server certificate
INFO_INSTALLDS_DESCRIPTION_CERT_NICKNAME_1405=Nickname of the \
 certificate that the server should use when accepting SSL-based \
 connections or performing StartTLS negotiation
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=Perform an installation in \
 non-interactive mode.  If some data in the command is missing the user will \
 not be prompted and the tool will fail
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=This utility can be used to obtain a list \
 of tasks scheduled to run within the Directory Server as well as information \
 about individual tasks
INFO_TASKINFO_SUMMARY_ARG_DESCRIPTION_1413=Print a summary of tasks
INFO_TASKINFO_TASK_ARG_DESCRIPTION_1414=ID of a particular task \
 about which this tool will display information
INFO_TASKINFO_CMD_REFRESH_1415=refresh
INFO_TASKINFO_CMD_CANCEL_1416=cancel task
INFO_TASKINFO_CMD_VIEW_LOGS_1417=view logs
INFO_TASKINFO_MENU_PROMPT_1418=Enter a menu item or task number
INFO_TASKINFO_CMD_CANCEL_NUMBER_PROMPT_1419=Enter the number of a task to \
  cancel [%d]
INFO_TASKINFO_MENU_1420=Menu
MILD_ERR_TASKINFO_INVALID_TASK_NUMBER_1421=Task number must be between 1 and \
  %d
MILD_ERR_TASKINFO_INVALID_MENU_KEY_1422=Invalid menu item or task number '%s'
INFO_TASKINFO_FIELD_ID_1423=ID
INFO_TASKINFO_FIELD_TYPE_1424=Type
INFO_TASKINFO_FIELD_STATUS_1425=Status
INFO_TASKINFO_FIELD_SCHEDULED_START_1426=Scheduled Start Time
INFO_TASKINFO_FIELD_ACTUAL_START_1427=Actual Start Time
INFO_TASKINFO_FIELD_COMPLETION_TIME_1428=Completion Time
INFO_TASKINFO_FIELD_DEPENDENCY_1429=Dependencies
INFO_TASKINFO_FIELD_FAILED_DEPENDENCY_ACTION_1430=Failed Dependency Action
INFO_TASKINFO_FIELD_LOG_1431=Log Message(s)
INFO_TASKINFO_FIELD_LAST_LOG_1432=Last Log Message
INFO_TASKINFO_FIELD_NOTIFY_ON_COMPLETION_1433=Email Upon Completion
INFO_TASKINFO_FIELD_NOTIFY_ON_ERROR_1434=Email Upon Error
INFO_TASKINFO_CMD_CANCEL_SUCCESS_1435=Task %s canceled
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=There are no tasks with ID %s
INFO_TASKINFO_DETAILS_1439=Task Details
INFO_TASKINFO_OPTIONS_1440=%s Options
INFO_TASKINFO_NO_TASKS_1441=No tasks exist
INFO_TASKINFO_NONE_1442=None
INFO_TASKINFO_NONE_SPECIFIED_1443=None Specified
INFO_TASKINFO_IMMEDIATE_EXECUTION_1444=Immediate execution
INFO_TASKINFO_LDAP_EXCEPTION_1445=Error connecting to the directory server: \
  '%s'. Verify that the connection options are correct and that the server is \
  running
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=ID of a particular task to cancel
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=There are currently no cancelable tasks
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=Indicates the date/time at which this \
  operation will start when scheduled as a server task expressed in \
  YYYYMMDDhhmmssZ format for UTC time or YYYYMMDDhhmmss for local time.  A \
  value of '0' will cause the task to be scheduled for \
  immediate execution.  When this option is specified the operation will be \
  scheduled to start at the specified time after which this utility will exit \
  immediately
SEVERE_ERR_START_DATETIME_FORMAT_1457=The start date/time must in \
  YYYYMMDDhhmmssZ format for UTC time or YYYYMMDDhhmmss for local time
INFO_TASK_TOOL_TASK_SCHEDULED_FUTURE_1458=%s task %s scheduled to start %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'
SEVERE_ERR_TASK_TOOL_NO_VALID_LDAP_OPTIONS_1460=You have provided options for \
  scheduling this operation as a task but options provided for connecting to \
  the server's tasks backend are invalid or missing
INFO_DESCRIPTION_PROP_FILE_PATH_1461=Path to the file containing default \
  property values used for command line arguments
INFO_DESCRIPTION_NO_PROP_FILE_1462=No properties file will be \
  used to get default command line argument values
INFO_DESCRIPTION_TASK_TASK_ARGS_1463=Task Scheduling Options
INFO_DESCRIPTION_TASK_LDAP_ARGS_1464=Task Backend Connection Options
INFO_DESCRIPTION_GENERAL_ARGS_1465=General Options
INFO_DESCRIPTION_IO_ARGS_1466=Utility Input/Output Options
INFO_DESCRIPTION_LDAP_CONNECTION_ARGS_1467=LDAP Connection Options
INFO_DESCRIPTION_CONFIG_OPTIONS_ARGS_1468=Configuration Options
INFO_DESCRIPTION_TASK_COMPLETION_NOTIFICATION_1469=Email address \
  of a recipient to be notified when the task completes.  This option may be \
  specified more than once
INFO_DESCRIPTION_TASK_ERROR_NOTIFICATION_1470=Email address \
  of a recipient to be notified if an error occurs when this task executes.  \
  This option may be specified more than once
INFO_DESCRIPTION_TASK_DEPENDENCY_ID_1471=ID of a task upon which \
  this task depends.  A task will not start execution until all its \
  dependencies have completed execution
INFO_DESCRIPTION_TASK_FAILED_DEPENDENCY_ACTION_1472=Action this task will \
  take should one if its dependent tasks fail.  The value must be one of %s.  \
  If not specified defaults to %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=The backup process was cancelled
INFO_INSTALLDS_DESCRIPTION_REJECTED_FILE_1479=Write rejected entries to the \
 specified file
MILD_ERR_INSTALLDS_CANNOT_WRITE_REJECTED_1480=Cannot write to rejected entries \
 file %s.  Verify that you have enough write rights on the file
INFO_INSTALLDS_PROMPT_REJECTED_FILE_1481=Write rejected entries to file:
INFO_INSTALLDS_DESCRIPTION_SKIPPED_FILE_1482=Write skipped entries to the \
 specified file
MILD_ERR_INSTALLDS_CANNOT_WRITE_SKIPPED_1483=Cannot write to skipped entries \
 file %s.  Verify that you have enough write rights on the file
INFO_INSTALLDS_PROMPT_SKIPPED_FILE_1484=Write skipped entries to file:
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=This utility can be used to change \
 the java arguments and java home that are used by the different server \
 commands.%n%nBefore launching the command, edit the properties file located \
 in %s to specify the java arguments and java home. When you have edited the \
 properties file, run this command for the changes to be taken into account.\
 %n%nNote that the changes will only apply to this server installation. No \
 modifications will be made to your environment variables
INFO_JAVAPROPERTIES_DESCRIPTION_SILENT_1487=Run the tool in quiet mode.  Quiet \
 mode will not output progress information to standard output
INFO_JAVAPROPERTIES_DESCRIPTION_PROPERTIES_FILE_1488=The properties file to \
 be used to generate the scripts.  If this attribute is not specified %s will \
 be used
INFO_JAVAPROPERTIES_DESCRIPTION_DESTINATION_FILE_1489=The script file that \
 will be written.  If not specified %s will be written
INFO_JAVAPROPERTIES_DESCRIPTION_HELP_1490=Display this usage information
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 write rights 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=The script file %s was \
 successfully created.  For the command-lines to use the java properties \
 specified on %s you must copy the created script file to %s
INFO_JAVAPROPERTIES_SUCCESSFUL_1495=The operation was successful.  The server \
 commands will use the java arguments and java home specified in the \
 properties file located in %s
INFO_DESCRIPTION_TEST_IF_OFFLINE_1496=When this is set test if the command \
 must be run in offline or online mode, returning the appropriate error code
SEVERE_ERR_BACKUPDB_REPEATED_BACKEND_ID_1497=The backend ID '%s' has been \
 specified several times
MILD_ERR_INSTALLDS_EMPTY_DN_RESPONSE_1498=ERROR:  The empty LDAP DN is not \
 a valid value
 
# Placeholders for values as they will be displayed in the usage
INFO_FILE_PLACEHOLDER_1499={file}
INFO_DIRECTORY_PLACEHOLDER_1500={directory}
INFO_CONFIGFILE_PLACEHOLDER_1501={configFile}
INFO_LDIFFILE_PLACEHOLDER_1502={ldifFile}
INFO_SEED_PLACEHOLDER_1503={seed}
INFO_KEYSTOREPATH_PLACEHOLDER_1504={keyStorePath}
INFO_TRUSTSTOREPATH_PLACEHOLDER_1505={trustStorePath}
INFO_BINDPWD_FILE_PLACEHOLDER_1506={bindPasswordFile}
INFO_CONFIGCLASS_PLACEHOLDER_1507={configClass}
INFO_HOST_PLACEHOLDER_1508={host}
INFO_PORT_PLACEHOLDER_1509={port}
INFO_BASEDN_PLACEHOLDER_1510={baseDN}
INFO_ROOT_USER_DN_PLACEHOLDER_1511={rootUserDN}
INFO_BINDDN_PLACEHOLDER_1512={bindDN}
INFO_BINDPWD_PLACEHOLDER_1513={bindPassword}
INFO_KEYSTORE_PWD_PLACEHOLDER_1514={keyStorePassword}
INFO_PATH_PLACEHOLDER_1515={path}
INFO_TRUSTSTORE_PWD_FILE_PLACEHOLDER_1516={path}
INFO_TRUSTSTORE_PWD_PLACEHOLDER_1517={trustStorePassword}
INFO_NICKNAME_PLACEHOLDER_1518={nickname}
INFO_ASSERTION_FILTER_PLACEHOLDER_1519={filter}
INFO_FILTER_PLACEHOLDER_1520={filter}
INFO_PROXYAUTHID_PLACEHOLDER_1521={authzID}
INFO_SASL_OPTION_PLACEHOLDER_1522={name=value}
INFO_PROTOCOL_VERSION_PLACEHOLDER_1523={version}
INFO_DESCRIPTION_PLACEHOLDER_1524={description}
INFO_GROUPNAME_PLACEHOLDER_1525={groupName}
INFO_MEMBERNAME_PLACEHOLDER_1526={memberName}
INFO_BACKENDNAME_PLACEHOLDER_1527={backendName}
INFO_SERVERID_PLACEHOLDER_1528={serverID}
INFO_USERID_PLACEHOLDER_1529={userID}
INFO_VALUE_SET_PLACEHOLDER_1530={PROP:VALUE}
INFO_START_DATETIME_PLACEHOLDER_1531={startTime}
INFO_PROP_FILE_PATH_PLACEHOLDER_1532={propertiesFilePath}
INFO_EMAIL_ADDRESS_PLACEHOLDER_1533={emailAddress}
INFO_TASK_ID_PLACEHOLDER_1534={taskID}
INFO_ACTION_PLACEHOLDER_1535={action}
INFO_TYPE_PLACEHOLDER_1536={type}
INFO_CATEGORY_PLACEHOLDER_1537={category}
INFO_PROPERTY_PLACEHOLDER_1538={property}
INFO_NAME_PLACEHOLDER_1539={name}
INFO_UNIT_PLACEHOLDER_1540={unit}
INFO_BACKUPID_PLACEHOLDER_1541={backupID}
INFO_BACKUPDIR_PLACEHOLDER_1542={backupDir}
INFO_LDAPPORT_PLACEHOLDER_1543={ldapPort}
INFO_JMXPORT_PLACEHOLDER_1544={jmxPort}
INFO_KEY_MANAGER_PROVIDER_DN_PLACEHOLDER_1545={keyManagerProviderDN}
INFO_TRUST_MANAGER_PROVIDER_DN_PLACEHOLDER_1546={trustManagerProviderDN}
INFO_KEY_MANAGER_PATH_PLACEHOLDER_1547={keyManagerPath}
INFO_ROOT_USER_PWD_PLACEHOLDER_1548={rootUserPassword}
INFO_SERVER_ROOT_DIR_PLACEHOLDER_1549={serverRootDir}
INFO_SERVICE_NAME_PLACEHOLDER_1550={serviceName}
INFO_USER_NAME_PLACEHOLDER_1551={userName}
INFO_ARGS_PLACEHOLDER_1552={args}
INFO_DATABASE_NAME_PLACEHOLDER_1553={databaseName}
INFO_MAX_KEY_VALUE_PLACEHOLDER_1554={maxKeyValue}
INFO_MIN_KEY_VALUE_PLACEHOLDER_1555={minKeyValue}
INFO_MAX_DATA_SIZE_PLACEHOLDER_1556={maxDataSize}
INFO_MIN_DATA_SIZE_PLACEHOLDER_1557={minDataSize}
INFO_CLEAR_PWD_1558={clearPW}
INFO_ENCODED_PWD_PLACEHOLDER_1559={encodedPW}
INFO_STORAGE_SCHEME_PLACEHOLDER_1560={scheme}
INFO_BRANCH_DN_PLACEHOLDER_1561={branchDN}
INFO_ATTRIBUTE_PLACEHOLDER_1562={attribute}
INFO_WRAP_COLUMN_PLACEHOLDER_1563={wrapColumn}
INFO_TEMPLATE_FILE_PLACEHOLDER_1564={templateFile}
INFO_REJECT_FILE_PLACEHOLDER_1565={rejectFile}
INFO_SKIP_FILE_PLACEHOLDER_1566={skipFile}
INFO_PROGRAM_NAME_PLACEHOLDER_1567={programName}
INFO_NUM_ENTRIES_PLACEHOLDER_1568={numEntries}
INFO_ROOT_USER_PWD_FILE_PLACEHOLDER_1569={rootUserPasswordFile}
INFO_LDAP_CONTROL_PLACEHOLDER_1570={controloid[:criticality[:value|::b64value|:<filePath]]}
INFO_ENCODING_PLACEHOLDER_1571={encoding}
INFO_ATTRIBUTE_LIST_PLACEHOLDER_1572={attrList}
INFO_NEW_PASSWORD_PLACEHOLDER_1573={newPassword}
INFO_CURRENT_PASSWORD_PLACEHOLDER_1574={currentPassword}
INFO_SEARCH_SCOPE_PLACEHOLDER_1575={searchScope}
INFO_SORT_ORDER_PLACEHOLDER_1576={sortOrder}
INFO_VLV_PLACEHOLDER_1577={before:after:index:count | before:after:value}
INFO_DEREFERENCE_POLICE_PLACEHOLDER_1578={dereferencePolicy}
INFO_SIZE_LIMIT_PLACEHOLDER_1579={sizeLimit}
INFO_TIME_LIMIT_PLACEHOLDER_1580={timeLimit}
INFO_SCOPE_PLACEHOLDER_1581={scope}
INFO_FILTER_FILE_PLACEHOLDER_1582={filterFile}
INFO_OUTPUT_FILE_PLACEHOLDER_1583={outputFile}
INFO_TARGETDN_PLACEHOLDER_1584={targetDN}
INFO_TIME_PLACEHOLDER_1585={time}
INFO_TRUE_FALSE_PLACEHOLDER_1586={true|false}
INFO_INDEX_PLACEHOLDER_1587={index}
INFO_STOP_REASON_PLACEHOLDER_1588={stopReason}
INFO_STOP_TIME_PLACEHOLDER_1589={stopTime}
INFO_SECONDS_PLACEHOLDER_1590={seconds}
INFO_DATA_PLACEHOLDER_1591={data}
INFO_ADDRESS_PLACEHOLDER_1592={address}
INFO_SUBJECT_PLACEHOLDER_1593={subject}
INFO_ADMINUID_PLACEHOLDER_1594={adminUID}
INFO_KEYSTORE_PWD_FILE_PLACEHOLDER_1595={keyStorePasswordFile}
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 Listener Port:
INFO_INSTALLDS_START_SERVER_1600=Start Server when the configuration is completed
INFO_INSTALLDS_DO_NOT_START_SERVER_1601=Do not start Server when the configuration \
 is completed
INFO_INSTALLDS_SUMMARY_1602=Setup Summary%n=============
INFO_INSTALLDS_CONFIRM_INSTALL_PROMPT_1603=What would you like to do?
INFO_INSTALLDS_CONFIRM_INSTALL_1604=Set up the server with the parameters above
INFO_INSTALLDS_PROVIDE_DATA_AGAIN_1605=Provide the setup parameters again
INFO_INSTALLDS_CANCEL_1606=Cancel and exit
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=%s task %s has been successfully completed
INFO_TASK_TOOL_TASK_NOT_SUCESSFULL_1609=%s task %s did not complete \
 successfully
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=File containing a list of attributes \
 to ignore when computing the difference
INFO_LDIFDIFF_DESCRIPTION_IGNORE_ENTRIES_1613=File containing a list of entries (DN) \
 to ignore when computing the difference
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=The string '%s' from file '%s' could \
 not be parsed as a dn
INFO_CHANGE_NUMBER_CONTROL_RESULT_1617=The %s operation change number is %s
INFO_INSTALLDS_PROMPT_ADMINCONNECTORPORT_1618=On which port would you like the \
 Administration Connector to accept connections?
INFO_INSTALLDS_DESCRIPTION_ADMINCONNECTORPORT_1619=Port on which the \
 Administration Connector should listen for communication
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=Directory server administration port number
INFO_INSTALLDS_DESCRIPTION_USE_JCEKS_1623=Path of a JCEKS containing a \
 certificate to be used as the server certificate
INFO_INSTALLDS_CERT_OPTION_JCEKS_1624=Use an existing certificate located on a \
 JCEKS key store
INFO_INSTALLDS_PROMPT_JCEKS_PATH_1625=JCEKS Key Store path:
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={instancePath}
INFO_CURRENT_USER_PLACEHOLDER_1631={currentUser}
 
INFO_CONFIGURE_DESCRIPTION_IPATH_1632=Path where the instance will be located
INFO_CONFIGURE_DESCRIPTION_USERNAME_1633=User name of the owner of the instance
INFO_CONFIGURE_DESCRIPTION_GROUPNAME_1634=Group name of the owner of the instance
INFO_CONFIGURE_USAGE_DESCRIPTION_1635=This utility sets the instance location
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=This utility checks version and owner of the instance
INFO_CHECK_DESCRIPTION_CURRENT_USER_1644=Current user
INFO_CHECK_DESCRIPTION_CHECK_VERSION_1645=Specifies that check on version should be done
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={schedulePattern}
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=Indicates the task is recurring and will \
 be scheduled according to the value argument expressed in crontab(5) \
 compatible time/date pattern
INFO_TASK_TOOL_RECURRING_TASK_SCHEDULED_1655=Recurring %s task %s scheduled \
 successfully
 
INFO_UNCONFIGURE_USAGE_DESCRIPTION_1656=This utility unsets the instance location
INFO_DESCRIPTION_CHECK_OPTIONS_1657=Checks options are valid
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=Exporting to %s
 
#
# These are the localized version of the answers that the user can provide in
# interactive tools.
#
INFO_PROMPT_YES_COMPLETE_ANSWER_1663=yes
INFO_PROMPT_YES_FIRST_LETTER_ANSWER_1664=y
INFO_PROMPT_NO_COMPLETE_ANSWER_1665=no
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=Takes into account the syntax of \
 the attributes as defined in the schema to make the value comparison.  The \
 provided LDIF files must be conform to the server schema
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=You must provide a non-empty password \
to continue
 
INFO_BATCH_FILE_PATH_PLACEHOLDER_1677={batchFilePath}
INFO_DESCRIPTION_BATCH_FILE_PATH_1678=Path to a batch file containing \
a set of dsconfig commands to be executed
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=Enable the server to run as a \
 Windows Service
INFO_INSTALLDS_DO_NOT_ENABLE_WINDOWS_SERVICE_1682=Do not enable the server to \
 run as a Windows Service
INFO_LDIFIMPORT_DESCRIPTION_TEMP_DIRECTORY_1683=Path to temporary directory \
for index scratch files during LDIF import
INFO_LDIFIMPORT_TEMP_DIR_PLACEHOLDER_1684={directory}
INFO_LDIFIMPORT_DESCRIPTION_DN_VALIDATION_1685=Perform DN validation \
 during later part of LDIF import
INFO_LDIFIMPORT_DESCRIPTION_THREAD_COUNT_1686=Number of threads used to \
 read LDIF file during import. Default value (0) equals: 2 x (number of CPUs)
INFO_LDIFIMPORT_THREAD_COUNT_PLACEHOLDER_1687={count}
SEVERE_ERR_LDIFIMPORT_CANNOT_PARSE_THREAD_COUNT_1688=The value %s for \
threadCount cannot be parsed: %s
 
INFO_LDAPSEARCH_PUBLIC_CHANGELOG_COOKIE_EXC_1689=# Public \
 changelog exchange control(%s): %s
 
INFO_ENCPW_DESCRIPTION_INPUT_PW_1690=The password to encode or to compare \
 against an encoded password is interactively asked to the user
INFO_ENCPW_INPUT_PWD_1_1691=Please enter the password :
INFO_ENCPW_INPUT_PWD_2_1692=Please renter the password:
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=Rebuild all indexes, including \
any DN2ID, DN2URI, VLV and extensible indexes. Cannot be used \
with the "-i" option or the "--rebuildDegraded" option
INFO_REBUILDINDEX_TEMP_DIR_PLACEHOLDER_1697={directory}
INFO_REBUILDINDEX_DESCRIPTION_TEMP_DIRECTORY_1698=Path to temporary directory \
for index scratch files during index rebuilding
SEVERE_ERR_REBUILDINDEX_REBUILD_ALL_ERROR_1699=Index "-i" option cannot be \
specified with the "--rebuildAll" option
INFO_INSTALLDS_PROVIDE_BASE_DN_PROMPT_1700=Do you want to create base DNs in \
 the server?
SEVERE_ERR_INSTALLDS_NO_BASE_DN_AND_CONFLICTING_ARG_1701=You have specified \
 not to create a base DN.  If no base DN is to be created you cannot specify \
 argument '%s'
INFO_DESCRIPTION_SUBENTRIES_1702=Use subentries control to specify that \
 subentries are visible and normal entries are not
INFO_INSTALLDS_DESCRIPTION_HOST_NAME_1703=The fully-qualified directory server \
 host name that will be used when generating self-signed \
 certificates for LDAP SSL/StartTLS, the administration connector, and \
 replication
INFO_INSTALLDS_PROMPT_HOST_NAME_1704=Provide the fully-qualified directory server \
 host name that will be used when generating self-signed \
 certificates for LDAP SSL/StartTLS, the administration connector, and \
 replication
INFO_PERIOD_PLACEHOLDER_1705={period}
INFO_DESCRIPTION_REFRESH_PERIOD_1706=When this argument is specified, the \
 status command will display its contents periodically.  Used to specify \
 the period (in seconds) between two displays of the status
INFO_INSTALLDS_PRINT_EQUIVALENT_COMMAND_LINE_1708=Print equivalent \
 non-interactive command-line
MILD_ERR_WINDOWS_SERVICE_ENABLING_ERROR_STARTING_SERVER_1709=The Windows \
 Service was successfully configured but there was an error starting it.  \
 Error code starting Windows Service: %d
INFO_DESCRIPTION_DBTEST_STATS_ONLY_1710=Do not display the JE data, \
just statistics
INFO_TIMEOUT_PLACEHOLDER_1711={timeout}
INFO_DESCRIPTION_CONNECTION_TIMEOUT_1712=Maximum length of time (in \
 milliseconds) that can be taken to establish a connection.  Use '0' to \
 specify no time out
MILD_ERR_MAKELDIF_CANNOT_WRITE_ENTRY_WITHOUT_DN_1713=An error occurred while \
attempting to write entry to LDIF:  Could not calculate the DN for the \
entry (no value found for the RDN attribute %s)
SEVERE_ERR_CLIENT_SIDE_TIMEOUT_1714=A client side timeout occurred.\
 %nAdditional Information:  %s
INFO_LABEL_DBTEST_INDEX_UNDEFINED_RECORD_COUNT_1715=Undefined
INFO_MAXIMUM_DURATION_PLACEHOLDER_1716={maximum duration}
INFO_DESCRIPTION_PURGE_HISTORICAL_MAXIMUM_DURATION_1717=This argument specifies \
the maximum duration the purge processing must last expressed in seconds
SEVERE_ERR_RECURRING_SCHEDULE_FORMAT_ERROR_1718=The provided schedule value \
 has an invalid format.  The schedule must be expressed using a crontab(5) \
 format.  Error details: %s
INFO_DESCRIPTION_REMOTE_1719=Connect to a remote server
INFO_REBUILDINDEX_DESCRIPTION_REBUILD_DEGRADED_1720=Rebuild all degraded \
 indexes, including any DN2ID, DN2URI, VLV and extensible indexes. Cannot be used \
 with the "-i" option or the "--rebuildAll" option
SEVERE_ERR_REBUILDINDEX_REBUILD_DEGRADED_ERROR_1721=Option "--rebuildDegraded" cannot be \
 specified with the "--%s" option
SEVERE_ERR_REBUILDINDEX_REBUILD_ALL_DEGRADED_ERROR_1722=Option "--rebuildAll" \
 cannot be specified with the "--%s" option
SEVERE_ERR_CONFIGDS_CANNOT_UPDATE_DIGEST_MD5_FQDN_1733=An error occurred while \
 attempting to update the FQDN for the DIGEST-MD5 SASL mechanism:  %s
INFO_REBUILDINDEX_DESCRIPTION_CLEAR_DEGRADED_STATE_1734=Indicates that indexes do not need \
rebuilding because they are known to be empty and forcefully marks them as valid. \
This is an advanced option which must only be used in cases where a degraded index \
is known to be empty and does not therefore need rebuilding. \
This situation typically arises when an index is created for an attribute \
which has just been added to the schema
INFO_LDIFDIFF_DESCRIPTION_USE_COMPARE_RESULT_1735=Use the LDAP compare result \
as an exit code for reporting differences between the two LDIF files
INFO_LDAPCOMPARE_DESCRIPTION_USE_COMPARE_RESULT_1736=Use the LDAP compare result \
as an exit code for the LDAP compare operations
SEVERE_ERR_BUILDVERSION_NOT_FOUND_1737=The version of the installed OpenDJ could not be determined \
because the version file '%s' could not be found. Restore it from backup before continuing
SEVERE_ERR_BUILDVERSION_MALFORMED_1738=The version of the installed OpenDJ could not be determined \
because the version file '%s' exists but contains invalid data. \
Restore it from backup before continuing
SEVERE_ERR_BUILDVERSION_MISMATCH_1739=The OpenDJ binary version '%s' does not match the installed \
version '%s'. Please run upgrade before continuing
INFO_UPGRADE_OPTION_IGNORE_ERRORS_1740=Ignores any errors which occur during the upgrade. This option \
should be used with caution and may be useful in automated deployments where potential errors are \
known in advance and resolved after the upgrade has completed
INFO_UPGRADE_OPTION_FORCE_1741=Forces a non-interactive upgrade to continue even if it requires user \
interaction. In particular, long running or critical upgrade tasks, such as re-indexing, which \
require user confirmation will be skipped. This option may only be used with the '%s' option
SEVERE_ERR_UPGRADE_USER_INTERACTION_REQUIRED_1742=The upgrade cannot be performed non-interactively \
because one or more upgrade tasks are critical and require user interaction in order to complete. \
Please re-run upgrade interactively by removing the '%s' option, or force the upgrade to complete \
by specifying the '%s' option
INFO_UPGRADE_DESCRIPTION_CLI_1743=Upgrades OpenDJ configuration and application data so that it is \
compatible with the installed binaries.%n%nThis tool should be run immediately after upgrading \
the OpenDJ binaries and before restarting the server.%n%nNOTE: this tool does not provide backup \
or restore capabilities. Therefore, it is the responsibility of the OpenDJ administrator to take \
necessary precautions before performing the upgrade
SEVERE_ERR_UPGRADE_MAIN_UPGRADE_PROCESS_1800=The upgrade failed to complete for the following reason: %s
INFO_UPGRADE_SUCCESSFUL_1801=OpenDJ was successfully upgraded from version %s to %s
INFO_UPGRADE_PERFORMING_TASKS_1802=Performing upgrade
INFO_UPGRADE_TITLE_1803=OpenDJ Upgrade Utility
INFO_UPGRADE_SUMMARY_1804=OpenDJ will be upgraded from version %s to %s
SEVERE_ERR_UPGRADE_REQUIRES_SERVER_OFFLINE_1805=OpenDJ cannot be upgraded because the server is currently \
running. Please stop the server and try again
SEVERE_ERR_UPGRADE_VERSION_UP_TO_DATE_1806=OpenDJ has already been upgraded to version %s
SEVERE_ERR_UPGRADE_DISPLAY_NOTIFICATION_ERROR_1807=An unexpected error occurred \
while attempting to display a notification: %s
SEVERE_ERR_UPGRADE_DISPLAY_CONFIRM_ERROR_1808=An unexpected error occurred \
while attempting to display a confirmation : %s
SEVERE_ERR_UPGRADE_INVALID_USER_OPTIONS_SELECTED_1809=Invalid user's \
options selected
INFO_UPGRADE_CHANGE_DONE_IN_SPECIFIC_FILE_1810=...Change(s) done in %s (x%s)
INFO_UPGRADE_NO_CHANGE_DONE_IN_SPECIFIC_FILE_1811=...No change applied in %s
SEVERE_ERR_UPGRADE_TASKS_FAIL_1812=\nAn error occurred while performing an upgrade task: %s
INFO_UPGRADE_TASK_NEEDS_USER_CONFIRM_1813=%s.%nDo you want to make this configuration change?
INFO_UPGRADE_DISPLAY_CONFIRM_START_1814=The upgrade is ready to proceed. Do you \
wish to continue?
INFO_UPGRADE_ABORTED_BY_USER_1815=The upgrade has been canceled
SEVERE_ERR_UPGRADE_UNKNOWN_OC_ATT_1816=The %s %s doesn't exist \
in the template configuration
SEVERE_ERR_UPGRADE_CONFIG_ERROR_UPGRADE_FOLDER_1817=An error occurred when \
trying to upgrade the config/upgrade folder: %s
INFO_UPGRADE_REQUIREMENTS_1818=Preparing to upgrade
INFO_UPGRADE_VERSION_IS_NOT_SUPPORTED_1819=This tool cannot be used for \
upgrading versions of OpenDJ which are older than '%s'. Please upgrade to \
'%s' first before attempting further upgrades
INFO_LICENSE_CLI_ACCEPT_INVALID_RESPONSE_1820=Invalid response
INFO_LICENSE_DETAILS_CLI_LABEL_1821=Please read the License Agreement above.%n\
 You must accept the terms of the agreement before continuing with the \
 installation
INFO_LICENSE_ACCEPT_1822=Do you accept the License Agreement?
INFO_ERROR_COPYING_FILE_1823=An error occurred while copying the file '%s' to '%s'
INFO_ERROR_DELETING_DIRECTORY_1824=An error occurred while deleting directory '%s'. \
 Check that you have the rights to delete this directory and that there is no other \
 application using it
INFO_ERROR_DELETING_FILE_1825=An error occurred while deleting file '%s'. Check \
that you have the rights to delete this file and that there is no other application using it
INFO_ERROR_RENAMING_FILE_1826=An error occurred while renaming file '%s' to '%s'
SEVERE_ERR_UPGRADE_FAILS_1827=The upgrade failed because %d errors were \
encountered. Please check log for further details
SEVERE_ERR_UPGRADE_COPYSCHEMA_FAILS_1828=An error occurred while copying \
the schema file '%s': %s
SEVERE_ERR_UPGRADE_ADDATTRIBUTE_FAILS_1829=An error occurred while adding \
one or more attributes to the schema file '%s': %s
SEVERE_ERR_UPGRADE_ADDOBJECTCLASS_FAILS_1830=An error occurred while adding \
one or more object classes to the schema file '%s': %s
INFO_UPGRADE_GENERAL_SEE_FOR_DETAILS_1831=See '%s' for a detailed log of this operation
INFO_UPGRADE_TASK_REPLACE_SCHEMA_FILE_1832=Replacing schema file '%s'
INFO_UPGRADE_TASK_REFRESH_UPGRADE_DIRECTORY_1833=Archiving concatenated schema
INFO_UPGRADE_TASK_ADD_CONFIG_FILE_1834=Adding '%s' configuration file
SEVERE_ERR_UPGRADE_ADD_CONFIG_FILE_FAILS_1835=An error occurred while adding \
configuration file '%s': %s
INFO_OPTION_ACCEPT_LICENSE_1836=Automatically accepts the product license \
(if present)
SEVERE_ERR_UPGRADE_RENAME_SNMP_SECURITY_CONFIG_FILE_1838=An error occurred when \
trying to rename the SNMP security config file: %s
 
# Upgrade tasks
INFO_UPGRADE_TASK_6869_SUMMARY_10000=Fixing de-DE collation matching rule OID
INFO_UPGRADE_TASK_7192_SUMMARY_10001=Updating password policy configurations
INFO_UPGRADE_TASK_7364_SUMMARY_10002=Updating audit log publisher configuration
INFO_UPGRADE_TASK_7748_1_SUMMARY_10003=Adding 'etag' virtual attribute schema
INFO_UPGRADE_TASK_7748_2_SUMMARY_10004=Configuring 'etag' virtual attribute
INFO_UPGRADE_TASK_7834_SUMMARY_10005=Configuring 'ds-pwp-password-expiration-time' virtual attribute
INFO_UPGRADE_TASK_7979_SUMMARY_10006=Updating certificate syntax configuration
INFO_UPGRADE_TASK_8124_SUMMARY_10007=Updating JPEG syntax configuration
INFO_UPGRADE_TASK_8133_SUMMARY_10008=Updating country string syntax configuration
INFO_UPGRADE_TASK_8214_SUMMARY_10009=Modifying filter in 'isMemberOf' virtual attribute configuration
INFO_UPGRADE_TASK_8214_DESCRIPTION_10010=OpenDJ 2.5.0 modified the default configuration of the 'isMemberOf' \
virtual attribute so that it is included with group entries. This was done in order to make it easier \
for users to determine which groups a 'nested' group belongs to
INFO_UPGRADE_TASK_8387_SUMMARY_10011=Updating dictionary password validator configuration
INFO_UPGRADE_TASK_8389_SUMMARY_10012=Updating attribute value password validator configuration
INFO_UPGRADE_TASK_8487_SUMMARY_10013=Adding PBKDF2 password storage scheme configuration
INFO_UPGRADE_TASK_8613_SUMMARY_10014=Adding HTTP connection handler configuration
INFO_UPGRADE_TASK_8832_SUMMARY_10015=Adding file-based HTTP access logger
INFO_UPGRADE_TASK_7466_SUMMARY_10016=Rename SNMP security config file
INFO_UPGRADE_TASK_8985_1_SUMMARY_10017=Adding 'emailAddress' attribute
INFO_UPGRADE_TASK_8985_2_SUMMARY_10018=Updating subject attribute to user attribute configuration
INFO_UPGRADE_TASK_9013_DESCRIPTION_10019=OpenDJ 2.5.0-Xpress1 introduced a \
 regression in the ds-sync-hist ordering index. This index must be rebuilt \
 after the upgrade has completed and before restarting OpenDJ. Do you wish to \
 continue?