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

jvergara
17.11.2009 013494192c189ce5bd101f198c4d33230374d4b8
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
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License, Version 1.0 only
# (the "License").  You may not use this file except in compliance
# with the License.
#
# You can obtain a copy of the license at
# trunk/opends/resource/legal-notices/OpenDS.LICENSE
# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at
# trunk/opends/resource/legal-notices/OpenDS.LICENSE.  If applicable,
# add the following below this CDDL HEADER, with the fields enclosed
# by brackets "[]" replaced with your own identifying information:
#      Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#      Copyright 2006-2009 Sun Microsystems, Inc.
#
# Global directives
# Do not translate
#
global.category=ADMIN_TOOL
global.ordinal=-1
#
# Format string definitions
#
# Keys must be formatted as follows:
#
# [SEVERITY]_[DESCRIPTION]
#
# 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
#
INFO_ADDRESS_PORT_COLUMN=\u30a2\u30c9\u30ec\u30b9:\u30dd\u30fc\u30c8
INFO_HOSTNAME_LABEL=\u30db\u30b9\u30c8\u540d: 
INFO_ADMINISTRATIVE_USERS_LABEL=\u7ba1\u7406\u30e6\u30fc\u30b6\u30fc:
INFO_AGE_OF_OLDEST_MISSING_CHANGE_COLUMN=\u8907\u88fd\u3055\u308c\u3066\u3044\u306a\u3044\u6700\u3082\u53e4\u3044\u5909\u66f4\u306e\u7d4c\u904e\u65e5\u6570
INFO_AUTHENTICATE_BUTTON_LABEL=\u8a8d\u8a3c
INFO_AUTHENTICATE_CONTROL_PANEL_BUTTON_TOOLTIP=\u7ba1\u7406\u30e6\u30fc\u30b6\u30fc\u3068\u3057\u3066\u8a8d\u8a3c\u3057\u3066\u3001\u76e3\u8996\u4e2d\u306e\u60c5\u5831\u3092\u3059\u3079\u3066\u8868\u793a\u3057\u307e\u3059
INFO_BACKENDID_COLUMN=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 ID
INFO_BASEDN_COLUMN=\u30d9\u30fc\u30b9 DN
INFO_CANCEL_BUTTON_UNINSTALL_TOOLTIP=\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u53d6\u308a\u6d88\u3059
MILD_ERR_CANNOT_CONNECT_TO_LOGIN_WITH_CAUSE=\u6307\u5b9a\u3055\u308c\u305f\u8cc7\u683c\u3092\u4f7f\u7528\u3057\u3066\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306b\u63a5\u7d9a\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002  \u8003\u3048\u3089\u308c\u308b\u539f\u56e0\u306f\u6b21\u306e\u901a\u308a\u3067\u3059: %n%s
INFO_CLI_UNINSTALL_CONFIRM_BACKUPS=bak \u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u542b\u307e\u308c\u308b\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u30d5\u30a1\u30a4\u30eb\u3092\u524a\u9664\u3057\u307e\u3059\u304b ?
INFO_CLI_UNINSTALL_CONFIRM_CONFIGURATION_SCHEMA=\u69cb\u6210\u30d5\u30a1\u30a4\u30eb\u3068\u30b9\u30ad\u30fc\u30de\u30d5\u30a1\u30a4\u30eb\u3092\u524a\u9664\u3057\u307e\u3059\u304b ?
INFO_CLI_UNINSTALL_CONFIRM_DATABASES=\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u524a\u9664\u3057\u307e\u3059\u304b ?
INFO_CLI_UNINSTALL_CONFIRM_DELETE_FILES=\u30d5\u30a1\u30a4\u30eb\u304c\u6052\u4e45\u7684\u306b\u524a\u9664\u3055\u308c\u307e\u3059\u3002\u7d9a\u884c\u3057\u3066\u3088\u308d\u3057\u3044\u3067\u3059\u304b ?
INFO_CLI_UNINSTALL_CONFIRM_LDIFS=ldif \u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u542b\u307e\u308c\u308b LDIF \u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u524a\u9664\u3057\u307e\u3059\u304b ?
INFO_CLI_UNINSTALL_CONFIRM_LIBRARIES_BINARIES=\u30b5\u30fc\u30d0\u30fc\u30e9\u30a4\u30d6\u30e9\u30ea\u3068\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u524a\u9664\u3057\u307e\u3059\u304b ?
INFO_CLI_UNINSTALL_CONFIRM_LOGS=\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u524a\u9664\u3057\u307e\u3059\u304b ?
INFO_CLI_UNINSTALL_CONFIRM_OUTSIDEDBS=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306b\u306f\u3001\u30b5\u30fc\u30d0\u30fc\u30d1\u30b9\u5916\u90e8\u306e\u6b21\u306e\u5834\u6240\u306b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb\u304c\u542b\u307e\u308c\u307e\u3059:%n%s%n\u3053\u308c\u3089\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u524a\u9664\u3057\u307e\u3059\u304b ?
INFO_CLI_UNINSTALL_CONFIRM_OUTSIDELOGS=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306b\u306f\u3001\u30b5\u30fc\u30d0\u30fc\u30d1\u30b9\u5916\u90e8\u306e\u6b21\u306e\u5834\u6240\u306b\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u542b\u307e\u308c\u307e\u3059:%n%s%n\u3053\u308c\u3089\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u524a\u9664\u3057\u307e\u3059\u304b ?
INFO_CLI_UNINSTALL_CONFIRM_STOP=\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u4e2d\u3067\u3042\u308b\u305f\u3081\u3001\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u7d9a\u884c\u3059\u308b\u524d\u306b\u505c\u6b62\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002%n\u30b5\u30fc\u30d0\u30fc\u3092\u505c\u6b62\u3057\u3066\u3001\u30d5\u30a1\u30a4\u30eb\u3092\u6052\u4e45\u7684\u306b\u524a\u9664\u3057\u307e\u3059\u304b ?
###SEVERE_ERR_CLI_UNINSTALL_NOTHING_TO_BE_UNINSTALLED_NON_INTERACTIVE=You must \
### select the elements to uninstall.  Use the options described in the usage to \
### specify what must be uninstalled.
###SEVERE_ERR_CLI_UNINSTALL_NOTHING_TO_BE_UNINSTALLED=You must select something \
### to be uninstalled.
INFO_CLI_UNINSTALL_SERVER_STOPPED=\u30b5\u30fc\u30d0\u30fc\u306f\u505c\u6b62\u3057\u3066\u3044\u307e\u3059\u3002
INFO_CLI_UNINSTALL_CONFIRM_UPDATE_REMOTE=\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u306f\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u4e00\u90e8\u3068\u3057\u3066\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u3059\u3002%n\u30b5\u30fc\u30d0\u30fc\u304c\u5b9f\u969b\u306b\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3059\u308b\u5834\u5408\u306f\u3001\u7ba1\u7406\u8005\u8a8d\u8a3c\u3092\u6307\u5b9a\u3057\u3066\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u4e2d\u306e\u30b5\u30fc\u30d0\u30fc\u5185\u306b\u5b58\u5728\u3059\u308b\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u53c2\u7167\u3092\u524a\u9664\u3057\u3066\u304f\u3060\u3055\u3044\u3002%n%n\u30ea\u30e2\u30fc\u30c8\u53c2\u7167\u3092\u524a\u9664\u3059\u308b\u305f\u3081\u306e\u8a8d\u8a3c\u3092\u6307\u5b9a\u3059\u308b\u306b\u306f\u3001'Yes' \u3068\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002%n\u30ea\u30e2\u30fc\u30c8\u53c2\u7167\u3092\u66f4\u65b0\u305b\u305a\u306b\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u7d9a\u884c\u3059\u308b\u306b\u306f\u3001'No' \u3068\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002%n\u8a8d\u8a3c\u3092\u6307\u5b9a\u3057\u307e\u3059\u304b ?
INFO_CLI_UNINSTALL_CONFIRM_UPDATE_REMOTE_AND_START=\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u306f\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u4e00\u90e8\u3068\u3057\u3066\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u3059\u3002%n\u30b5\u30fc\u30d0\u30fc\u304c\u5b9f\u969b\u306b\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3059\u308b\u5834\u5408\u306f\u3001\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u3092\u8d77\u52d5\u3057\u3066\u7ba1\u7406\u8005\u8a8d\u8a3c\u3092\u6307\u5b9a\u3057\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u4e2d\u306e\u30b5\u30fc\u30d0\u30fc\u5185\u306b\u5b58\u5728\u3059\u308b\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u53c2\u7167\u3092\u524a\u9664\u3057\u3066\u304f\u3060\u3055\u3044\u3002%n%n\u30b5\u30fc\u30d0\u30fc\u3092\u8d77\u52d5\u3057\u3066\u304b\u3089\u3001\u8a8d\u8a3c\u3092\u6307\u5b9a\u3057\u3066\u30ea\u30e2\u30fc\u30c8\u53c2\u7167\u3092\u524a\u9664\u3059\u308b\u306b\u306f\u3001'Yes' \u3068\u5165\u529b\u3057\u307e\u3059\u3002%n\u30ea\u30e2\u30fc\u30c8\u53c2\u7167\u3092\u66f4\u65b0\u305b\u305a\u306b\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u7d9a\u884c\u3059\u308b\u306b\u306f\u3001'No' \u3068\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002%n\u30b5\u30fc\u30d0\u30fc\u3092\u8d77\u52d5\u3057\u3066\u3001\u8a8d\u8a3c\u3092\u6307\u5b9a\u3057\u307e\u3059\u304b ?
INFO_UNINSTALL_CLI_REFERENCED_HOSTNAME_PROMPT=\u30ea\u30e2\u30fc\u30c8\u30b5\u30fc\u30d0\u30fc\u5185\u3067\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u7528\u306b\u53c2\u7167\u3055\u308c\u3066\u3044\u308b\u3001\u3053\u306e\u30db\u30b9\u30c8\u306e\u540d\u524d (\u307e\u305f\u306f IP \u30a2\u30c9\u30ec\u30b9)
INFO_UNINSTALL_CONFIRM_PROVIDE_AUTHENTICATION_AGAIN=\u8a8d\u8a3c\u3092\u518d\u5ea6\u6307\u5b9a\u3057\u307e\u3059\u304b ?  (\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u3001\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u5185\u306b\u5b58\u5728\u3059\u308b\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u53c2\u7167\u306f\u524a\u9664\u3055\u308c\u306a\u3044)
INFO_CLI_UNINSTALL_WHAT_TO_DELETE=\u30b5\u30fc\u30d0\u30fc\u306e\u3059\u3079\u3066\u306e\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u3092\u524a\u9664\u3057\u307e\u3059\u304b\u3001\u305d\u308c\u3068\u3082\u524a\u9664\u3059\u308b\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u3092\u9078\u629e\u3057\u307e\u3059\u304b ?
INFO_CLI_UNINSTALL_REMOVE_ALL=\u3059\u3079\u3066\u306e\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u3092\u524a\u9664\u3059\u308b
INFO_CLI_UNINSTALL_SPECIFY_WHAT_REMOVE=\u524a\u9664\u3059\u308b\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u3092\u9078\u629e\u3059\u308b
INFO_CLI_VIEW_DETAILS=\u8a73\u7d30\u306e\u8868\u793a
INFO_CLI_DO_YOU_WANT_TO_CONTINUE=\u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_CLI_NUMBER_PROMPT=\u6570\u3092\u5165\u529b\u3059\u308b\u304b\u3001Enter \u30ad\u30fc\u3092\u62bc\u3057\u3066\u30c7\u30d5\u30a9\u30eb\u30c8\u3092\u53d7\u3051\u5165\u308c\u307e\u3059
INFO_CLI_INVALID_RESPONSE=\u7121\u52b9\u306a\u5fdc\u7b54
INFO_CLOSE_BUTTON_UNINSTALL_TOOLTIP=\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30a6\u30a3\u30f3\u30c9\u30a6\u3092\u9589\u3058\u308b
INFO_CONFIRM_CLOSE_UNINSTALL_MSG=\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u5b8c\u4e86\u3057\u3066\u3044\u307e\u305b\u3093\u3002%n\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30a6\u30a3\u30f3\u30c9\u30a6\u3092\u9589\u3058\u3066\u3088\u308d\u3057\u3044\u3067\u3059\u304b ?
INFO_CONFIRM_CLOSE_UNINSTALL_TITLE=\u78ba\u8a8d\u304c\u5fc5\u8981
INFO_CONFIRM_RESTART_MESSAGE=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u3092\u518d\u8d77\u52d5\u3057\u3066\u3088\u308d\u3057\u3044\u3067\u3059\u304b ?
INFO_CONFIRM_RESTART_TITLE=\u78ba\u8a8d\u304c\u5fc5\u8981
INFO_CONFIRM_STOP_MESSAGE=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u3092\u505c\u6b62\u3057\u3066\u3088\u308d\u3057\u3044\u3067\u3059\u304b ?
INFO_CONFIRM_STOP_TITLE=\u78ba\u8a8d\u304c\u5fc5\u8981
INFO_CONFIRM_UNINSTALL_PANEL_INSTRUCTIONS=\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c4\u30fc\u30eb\u306b\u3088\u308a\u3001\u4e0b\u3067\u9078\u629e\u3057\u305f\u30b5\u30fc\u30d0\u30fc\u306e\u90e8\u5206\u3059\u3079\u3066\u304c\u30b7\u30b9\u30c6\u30e0\u304b\u3089\u524a\u9664\u3055\u308c\u307e\u3059\u3002\u3059\u3079\u3066\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u3001\u30b5\u30fc\u30d0\u30fc\u5168\u4f53\u304c\u524a\u9664\u3055\u308c\u307e\u3059\u3002
INFO_CONFIRM_UNINSTALL_PANEL_TITLE=\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30aa\u30d7\u30b7\u30e7\u30f3
INFO_CONFIRM_UNINSTALL_REPLICATION_SERVER_NOT_RUNNING_MSG=\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u306f\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u4e00\u90e8\u3068\u3057\u3066\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u3059\u3002%n\u30b5\u30fc\u30d0\u30fc\u304c\u5b9f\u969b\u306b\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3057\u3066\u3044\u308b\u5834\u5408\u306f\u3001\u3053\u308c\u3092\u8d77\u52d5\u3057\u3066\u7ba1\u7406\u8005\u8a8d\u8a3c\u3092\u6307\u5b9a\u3057\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u4e2d\u306e\u30b5\u30fc\u30d0\u30fc\u5185\u306b\u5b58\u5728\u3059\u308b\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u53c2\u7167\u3092\u524a\u9664\u3057\u3066\u304f\u3060\u3055\u3044\u3002%n%n\u30b5\u30fc\u30d0\u30fc\u3092\u8d77\u52d5\u3057\u3066\u304b\u3089\u8a8d\u8a3c\u3092\u6307\u5b9a\u3057\u3001\u30ea\u30e2\u30fc\u30c8\u53c2\u7167\u3092\u524a\u9664\u3059\u308b\u306b\u306f\u3001\u300c\u306f\u3044\u300d\u3092\u30af\u30ea\u30c3\u30af\u3057\u307e\u3059\u3002%n\u30ea\u30e2\u30fc\u30c8\u53c2\u7167\u3092\u66f4\u65b0\u305b\u305a\u306b\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u7d9a\u884c\u3059\u308b\u306b\u306f\u3001\u300c\u3044\u3044\u3048\u300d\u3092\u30af\u30ea\u30c3\u30af\u3057\u307e\u3059\u3002
INFO_CONFIRM_UNINSTALL_REPLICATION_SERVER_NOT_RUNNING_TITLE=\u78ba\u8a8d\u304c\u5fc5\u8981
INFO_CONFIRM_UNINSTALL_REPLICATION_SERVER_RUNNING_MSG=\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u306f\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u4e00\u90e8\u3068\u3057\u3066\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u3059\u3002%n\u30b5\u30fc\u30d0\u30fc\u304c\u5b9f\u969b\u306b\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3059\u308b\u5834\u5408\u306f\u3001\u7ba1\u7406\u8005\u8a8d\u8a3c\u3092\u6307\u5b9a\u3057\u3066\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u4e2d\u306e\u30b5\u30fc\u30d0\u30fc\u5185\u306b\u5b58\u5728\u3059\u308b\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u53c2\u7167\u3092\u524a\u9664\u3057\u3066\u304f\u3060\u3055\u3044\u3002%n%n\u8a8d\u8a3c\u3092\u6307\u5b9a\u3057\u3066\u30ea\u30e2\u30fc\u30c8\u53c2\u7167\u3092\u524a\u9664\u3059\u308b\u306b\u306f\u3001\u300c\u306f\u3044\u300d\u3092\u30af\u30ea\u30c3\u30af\u3057\u307e\u3059\u3002%n\u30ea\u30e2\u30fc\u30c8\u53c2\u7167\u3092\u66f4\u65b0\u305b\u305a\u306b\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u7d9a\u884c\u3059\u308b\u306b\u306f\u3001\u300c\u3044\u3044\u3048\u300d\u3092\u30af\u30ea\u30c3\u30af\u3057\u307e\u3059\u3002
INFO_CONFIRM_UNINSTALL_REPLICATION_SERVER_RUNNING_TITLE=\u78ba\u8a8d\u304c\u5fc5\u8981
INFO_CONFIRM_UNINSTALL_SERVER_NOT_RUNNING_MSG=\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306e\u78ba\u8a8d%n\u9078\u629e\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u3059\u3079\u3066\u304c\u6052\u4e45\u7684\u306b\u524a\u9664\u3055\u308c\u307e\u3059\u3002\u7d9a\u884c\u3057\u3066\u3088\u308d\u3057\u3044\u3067\u3059\u304b ?
INFO_CONFIRM_UNINSTALL_SERVER_NOT_RUNNING_TITLE=\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306e\u78ba\u8a8d
INFO_CONFIRM_UNINSTALL_SERVER_RUNNING_MSG=\u30b5\u30fc\u30d0\u30fc\u304c\u7a3c\u50cd\u4e2d%n\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u4e2d\u3067\u3042\u308b\u305f\u3081\u3001\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u7d9a\u884c\u3059\u308b\u524d\u306b\u505c\u6b62\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\u30b5\u30fc\u30d0\u30fc\u3092\u505c\u6b62\u3057\u3001\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u7d9a\u884c\u3057\u3066\u3088\u308d\u3057\u3044\u3067\u3059\u304b ? \u300c\u3044\u3044\u3048\u300d\u3092\u30af\u30ea\u30c3\u30af\u3059\u308b\u5834\u5408\u306f\u3001\u30b5\u30fc\u30d0\u30fc\u3092\u624b\u52d5\u3067\u505c\u6b62\u3057\u3066\u304b\u3089\u7d9a\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
MILD_ERR_UNINSTALL_READING_REGISTERED_SERVERS_CONFIRM_UPDATE_REMOTE=\u65e2\u5b58\u30b5\u30fc\u30d0\u30fc\u306e\u69cb\u6210\u306e\u8aad\u307f\u53d6\u308a\u4e2d\u306b\u6b21\u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:\n%s\n\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u304c\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u53c2\u7167\u306e\u524a\u9664\u3092\u30d9\u30b9\u30c8\u30a8\u30d5\u30a9\u30fc\u30c8\u30e2\u30fc\u30c9\u3067\u8a66\u307f\u308b\u3088\u3046\u306b\u3057\u307e\u3059\u304b ?
MILD_ERR_UNINSTALL_ERROR_UPDATING_REMOTE_FORCE=\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u306f\u3001\u305d\u306e\u30d9\u30fc\u30b9 DN \u306e\u4e00\u90e8\u3092\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u30b5\u30fc\u30d0\u30fc\u3067\u30d9\u30fc\u30b9 DN \u3078\u306e\u53c2\u7167\u3092\u53d6\u5f97\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u30ea\u30e2\u30fc\u30c8\u53c2\u7167\u3092\u524a\u9664\u3059\u308b\u306b\u306f\u3001%s \u304a\u3088\u3073 %s (\u307e\u305f\u306f %s) \u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u3063\u3066\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u306e\u8cc7\u683c\u3092\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u3053\u3068\u306b\u7559\u610f\u3057\u3066\u304f\u3060\u3055\u3044\u3002%n\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u3066\u3082\u5f37\u5236\u7684\u306b\u7d9a\u884c\u3059\u308b\u30e2\u30fc\u30c9\u3067\u3042\u308b\u305f\u3081\u3001\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u7d9a\u884c\u3057\u3066\u3044\u307e\u3059\u3002%n%n\u898b\u3064\u304b\u3063\u305f\u30a8\u30e9\u30fc:%n%s
###SEVERE_ERR_UNINSTALL_ERROR_UPDATING_REMOTE_NO_FORCE=This server is configured \
### to replicate some of its Base DN's.  There was an error retrieving the \
### references to it in the replicated servers.  Note that to be able to remove \
### remote references you must provide Global Administrator credentials using the \
### %s and %s (or %s) options.%nCheck that the connection parameters you \
### provided are correct.%nIf you want to uninstall the server even when remote \
### references cannot be removed, you can use the %s option.%n%nThe error found \
### was:%n%s
MILD_ERR_UNINSTALL_NOT_UPDATE_REMOTE_PROMPT=\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u306f\u3001\u305d\u306e\u30d9\u30fc\u30b9 DN \u306e\u4e00\u90e8\u3092\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u30b5\u30fc\u30d0\u30fc\u3067\u30d9\u30fc\u30b9 DN \u3078\u306e\u53c2\u7167\u3092\u53d6\u5f97\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002%n\u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_CONFIRM_UNINSTALL_SERVER_RUNNING_TITLE=\u30b5\u30fc\u30d0\u30fc\u304c\u7a3c\u50cd\u4e2d\u3067\u3059
INFO_CONNECTIONS_LABEL=\u958b\u3044\u3066\u3044\u308b\u63a5\u7d9a\u6570: 
MILD_ERR_COULD_NOT_FIND_VALID_LDAPURL=\u69cb\u6210\u30d5\u30a1\u30a4\u30eb\u306e\u8aad\u307f\u53d6\u308a\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002%n\u3053\u308c\u306f\u3001\u6307\u5b9a\u3057\u305f\u63a5\u7d9a\u30d1\u30e9\u30e1\u30fc\u30bf\u7528\u306e\u6709\u52b9\u306a LDAP \u30dd\u30fc\u30c8\u304c\u5b58\u5728\u3057\u306a\u3044\u305f\u3081\u3001\u307e\u305f\u306f\u69cb\u6210\u30d5\u30a1\u30a4\u30eb\u3078\u306e\u8aad\u307f\u53d6\u308a\u6a29\u304c\u306a\u3044\u305f\u3081\u306b\u3001\u767a\u751f\u3057\u305f\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002
INFO_DATABASES_TITLE=\u30c7\u30fc\u30bf\u30bd\u30fc\u30b9
INFO_DELETE_OUTSIDE_DBS_LABEL=\u3053\u308c\u3089\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb\u3092\u524a\u9664
INFO_DELETE_OUTSIDE_DBS_MSG=\u30b5\u30fc\u30d0\u30fc\u30d1\u30b9\u5916\u90e8\u306e\u6b21\u306e\u5834\u6240\u306b\u3001\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb\u304c\u3042\u308a\u307e\u3059: 
INFO_DELETE_OUTSIDE_DBS_TOOLTIP=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u5916\u90e8\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb\u3092\u524a\u9664\u3059\u308b\u5834\u5408\u306f\u3001\u3053\u306e\u30dc\u30c3\u30af\u30b9\u306b\u30c1\u30a7\u30c3\u30af\u30de\u30fc\u30af\u3092\u4ed8\u3051\u307e\u3059
INFO_DELETE_OUTSIDE_LOGS_LABEL=\u3053\u308c\u3089\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u524a\u9664
INFO_DELETE_OUTSIDE_LOGS_MSG=\u30b5\u30fc\u30d0\u30fc\u30d1\u30b9\u5916\u90e8\u306e\u6b21\u306e\u5834\u6240\u306b\u3001\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u3042\u308a\u307e\u3059: 
INFO_DELETE_OUTSIDE_LOGS_TOOLTIP=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u5916\u90e8\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u524a\u9664\u3059\u308b\u5834\u5408\u306f\u3001\u3053\u306e\u30dc\u30c3\u30af\u30b9\u306b\u30c1\u30a7\u30c3\u30af\u30de\u30fc\u30af\u3092\u4ed8\u3051\u307e\u3059
INFO_DISABLED_LABEL=\u7121\u52b9
INFO_ENABLED_LABEL=\u6709\u52b9
MILD_ERR_READING_CONFIG_FILE=\u69cb\u6210\u30d5\u30a1\u30a4\u30eb\u306e\u8aad\u307f\u53d6\u308a\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
MILD_ERR_READING_CONFIG_LDAP=\u30b5\u30fc\u30d0\u30fc\u304b\u3089\u30c7\u30fc\u30bf\u3092\u8aad\u307f\u53d6\u308a\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002  \u6307\u5b9a\u3055\u308c\u305f\u8a8d\u8a3c\u60c5\u5831\u3092\u691c\u8a3c\u3057\u307e\u3059\u3002%n\u8a73\u7d30: %s
MILD_ERR_READING_SCHEMA_LDAP=\u30ea\u30e2\u30fc\u30c8\u30b5\u30fc\u30d0\u30fc\u304b\u3089\u30b9\u30ad\u30fc\u30de\u3092\u8aad\u307f\u53d6\u308a\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002%n\u8a73\u7d30: %s
###SEVERE_ERR_STARTING_SERVER_GENERIC=Could not Start server.
INFO_FINISH_BUTTON_UNINSTALL_LABEL=\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb
INFO_FINISH_BUTTON_UNINSTALL_TOOLTIP=\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306e\u5b8c\u4e86
INFO_FRAME_UNINSTALL_TITLE=%s \u306e\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb
INFO_INSTALLATION_PATH_LABEL=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30d1\u30b9: 
INFO_JAVA_VERSION_LABEL=Java \u306e\u30d0\u30fc\u30b8\u30e7\u30f3: 
INFO_JMX_PROTOCOL_LABEL=JMX
INFO_JMX_SECURE_PROTOCOL_LABEL=JMX (\u30bb\u30ad\u30e5\u30a2)
INFO_LDAP_PROTOCOL_LABEL=LDAP
INFO_LDAPS_PROTOCOL_LABEL=LDAPS
INFO_LDIF_PROTOCOL_LABEL=LDIF
INFO_SNMP_PROTOCOL_LABEL=SNMP
INFO_LISTENERS_TITLE=\u63a5\u7d9a\u30cf\u30f3\u30c9\u30e9
INFO_ADMIN_LISTENER_TITLE=\u7ba1\u7406\u30b3\u30cd\u30af\u30bf
INFO_LOGIN_CANCEL_BUTTON_TOOLTIP=\u30ed\u30b0\u30a4\u30f3\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u9589\u3058\u308b
INFO_LOGIN_DIALOG_MSG=\u7ba1\u7406\u30e6\u30fc\u30b6\u30fc DN \u3068\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u6307\u5b9a\u3057\u3066\u3001\u76e3\u8996\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_LOGIN_DIALOG_SERVER_NOT_RUNNING_MSG=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u304c\u7a3c\u52d5\u3057\u3066\u3044\u307e\u305b\u3093\u3002 \u7d9a\u884c\u3059\u308b\u306b\u306f\u300cOK\u300d\u3092\u30af\u30ea\u30c3\u30af\u3057\u307e\u3059\u3002
INFO_LOGIN_DIALOG_SERVER_NOT_RUNNING_TITLE=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u304c\u7a3c\u52d5\u3057\u3066\u3044\u307e\u305b\u3093
INFO_LOGIN_DIALOG_TITLE=\u8a8d\u8a3c\u304c\u5fc5\u8981
INFO_LOGIN_DN_LABEL=\u7ba1\u7406\u30e6\u30fc\u30b6\u30fc DN: 
INFO_LOGIN_DN_TOOLTIP=\u76e3\u8996\u60c5\u5831\u306e\u53d6\u5f97\u306b\u4f7f\u7528\u3059\u308b\u7ba1\u7406\u30e6\u30fc\u30b6\u30fc\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u8b58\u5225\u540d (DN) \u3092\u5165\u529b\u3057\u307e\u3059
INFO_LOGIN_OK_BUTTON_TOOLTIP=\u8a8d\u8a3c\u306b\u9032\u3080
INFO_LOGIN_PWD_LABEL=\u7ba1\u7406\u30e6\u30fc\u30b6\u30fc\u30d1\u30b9\u30ef\u30fc\u30c9: 
INFO_LOGIN_PWD_TOOLTIP=\u76e3\u8996\u60c5\u5831\u306e\u53d6\u5f97\u306b\u4f7f\u7528\u3059\u308b\u7ba1\u7406\u30e6\u30fc\u30b6\u30fc\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5165\u529b\u3057\u307e\u3059
INFO_MISSING_CHANGES_COLUMN=\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u3066\u306a\u3044\u5909\u66f4
INFO_NO_DBS_FOUND=-LDAP \u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093-
INFO_NO_LISTENERS_FOUND=-\u30ea\u30b9\u30ca\u30fc\u30dd\u30fc\u30c8\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093-
INFO_NOT_APPLICABLE_LABEL=--
INFO_NOT_AVAILABLE_AUTHENTICATION_REQUIRED_CLI_LABEL=<\u53c2\u7167\u3067\u304d\u307e\u305b\u3093> (*)
INFO_NOT_AVAILABLE_SHORT_LABEL=\u306a\u3057
INFO_NOT_AVAILABLE_AUTHENTICATION_REQUIRED_CLI_LEGEND=* \u60c5\u5831\u3092\u53c2\u7167\u3067\u304d\u308b\u306e\u306f\u3001\u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30de\u30f3\u30c9\u306e\u8d77\u52d5\u6642\u306b\u6709\u52b9\u306a\u8a8d\u8a3c\u60c5\u5831\u3092\u5165\u529b\u3057\u305f\u5834\u5408\u3060\u3051\u3067\u3059\u3002
INFO_NOT_AVAILABLE_AUTHENTICATION_REQUIRED_TOOLTIP=<html>\u60c5\u5831\u3092\u53c2\u7167\u3067\u304d\u308b\u306e\u306f\u3001\u7ba1\u7406\u30e6\u30fc\u30b6\u30fc\u3068\u3057\u3066\u8a8d\u8a3c\u3055\u308c\u3066<br>\u3044\u308b\u5834\u5408\u3060\u3051\u3067\u3059\u3002
INFO_NOT_AVAILABLE_SERVER_DOWN_CLI_LABEL=<\u53c2\u7167\u3067\u304d\u307e\u305b\u3093> (*)
INFO_NOT_AVAILABLE_SERVER_DOWN_CLI_LEGEND=* \u60c5\u5831\u3092\u53c2\u7167\u3067\u304d\u308b\u306e\u306f\u3001\u30b5\u30fc\u30d0\u30fc\u304c\u7a3c\u52d5\u3057\u3066\u3044\u3066\u3001\u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30de\u30f3\u30c9\u306e\u8d77\u52d5\u6642\u306b\u6709\u52b9\u306a\u8a8d\u8a3c\u60c5\u5831\u3092\u5165\u529b\u3057\u305f\u5834\u5408\u3060\u3051\u3067\u3059\u3002
INFO_NOT_AVAILABLE_SERVER_DOWN_TOOLTIP=<html>\u60c5\u5831\u3092\u53c2\u7167\u3067\u304d\u308b\u306e\u306f\u3001\u30b5\u30fc\u30d0\u30fc\u304c\u7a3c\u52d5\u4e2d\u3067\u3042\u308a\u3001\u304b\u3064\u7ba1\u7406\u30e6\u30fc\u30b6\u30fc\u3068\u3057\u3066\u8a8d\u8a3c\u3055\u308c\u3066<br>\u3044\u308b\u5834\u5408\u3060\u3051\u3067\u3059\u3002
INFO_NOTHING_SELECTED_TO_UNINSTALL=\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5bfe\u8c61\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_NUMBER_ENTRIES_COLUMN=\u30a8\u30f3\u30c8\u30ea
INFO_OPENDS_VERSION_LABEL=\u30d0\u30fc\u30b8\u30e7\u30f3:
INFO_PROGRESS_REMOVING_REFERENCES=%s \u4e0a\u306e\u53c2\u7167\u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059
INFO_PROTOCOL_COLUMN=\u30d7\u30ed\u30c8\u30b3\u30eb
INFO_REMOVE_BACKUPS_LABEL=bak \u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u542b\u307e\u308c\u308b\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u30d5\u30a1\u30a4\u30eb
INFO_REMOVE_BACKUPS_TOOLTIP=bak \u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u542b\u307e\u308c\u308b\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u30d5\u30a1\u30a4\u30eb\u306e\u524a\u9664
INFO_REMOVE_DATABASES_LABEL=\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b3\u30f3\u30c6\u30f3\u30c4
INFO_REMOVE_DATABASES_TOOLTIP=\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u524a\u9664
INFO_REMOVE_LABEL=\u524a\u9664:
INFO_REMOVE_LDIFS_LABEL=ldif \u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u542b\u307e\u308c\u308b LDIF \u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u30d5\u30a1\u30a4\u30eb
INFO_REMOVE_LDIFS_TOOLTIP=ldif \u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u542b\u307e\u308c\u308b LDIF \u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u524a\u9664
INFO_REMOVE_LIBRARIES_AND_TOOLS_LABEL=\u30b5\u30fc\u30d0\u30fc\u30e9\u30a4\u30d6\u30e9\u30ea\u3068\u7ba1\u7406\u30c4\u30fc\u30eb
INFO_REMOVE_LIBRARIES_AND_TOOLS_TOOLTIP=\u30b5\u30fc\u30d0\u30fc\u30e9\u30a4\u30d6\u30e9\u30ea\u3068\u7ba1\u7406\u30c4\u30fc\u30eb\u306e\u524a\u9664
INFO_REMOVE_LOGS_LABEL=\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb
INFO_REMOVE_LOGS_TOOLTIP=\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u524a\u9664
INFO_REMOVE_SCHEMA_AND_CONFIGURATION_LABEL=\u69cb\u6210\u30d5\u30a1\u30a4\u30eb\u3068\u30b9\u30ad\u30fc\u30de\u30d5\u30a1\u30a4\u30eb
INFO_REMOVE_SCHEMA_AND_CONFIGURATION_TOOLTIP=\u69cb\u6210\u30d5\u30a1\u30a4\u30eb\u3068\u30b9\u30ad\u30fc\u30de\u30d5\u30a1\u30a4\u30eb\u306e\u524a\u9664
INFO_REPLICATED_COLUMN=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
INFO_RESTART_BUTTON_LABEL=\u518d\u8d77\u52d5
INFO_RESTART_BUTTON_TOOLTIP=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306e\u518d\u8d77\u52d5
INFO_SERVER_DETAILS_TITLE=\u30b5\u30fc\u30d0\u30fc\u306e\u8a73\u7d30
INFO_SERVER_PATH_LABEL=\u30b5\u30fc\u30d0\u30fc\u30d1\u30b9: 
INFO_SERVER_STARTED_LABEL=\u8d77\u52d5\u4e2d
INFO_SERVER_STARTING_LABEL=\u8d77\u52d5\u4e2d
INFO_SERVER_STATUS_LABEL=\u30b5\u30fc\u30d0\u30fc\u306e\u7a3c\u52d5\u72b6\u614b: 
INFO_SERVER_STATUS_TITLE=\u30b5\u30fc\u30d0\u30fc\u306e\u72b6\u614b
INFO_SERVER_STOPPED_LABEL=\u505c\u6b62\u4e2d
INFO_SERVER_STOPPING_LABEL=\u505c\u6b62\u4e2d
INFO_SERVER_UNKNOWN_STATUS_LABEL=\u4e0d\u660e
INFO_SERVER_NOT_CONNECTED_TO_REMOTE_STATUS_LABEL=\u30ea\u30e2\u30fc\u30c8\u306b\u63a5\u7d9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093
INFO_START_BUTTON_LABEL=\u8d77\u52d5
INFO_START_BUTTON_TOOLTIP=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306e\u8d77\u52d5
INFO_STATE_COLUMN=\u72b6\u614b
INFO_STATUS_CLI_USAGE_DESCRIPTION=\u3053\u306e\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30fc\u3092\u4f7f\u3063\u3066\u3001\u30b5\u30fc\u30d0\u30fc\u306e\u57fa\u672c\u60c5\u5831\u3092\u8868\u793a\u3067\u304d\u307e\u3059
###SEVERE_ERR_CONTROL_PANEL_LAUNCHER_GUI_LAUNCH_FAILED=Could not launch Control \
###Panel.  Check that you have access to the display.
###SEVERE_ERR_CONTROL_PANEL_LAUNCHER_GUI_LAUNCH_FAILED_DETAILS=Could not launch \
### Control Panel.  Check that you have access to the display.   Check file %s for \
### details.
INFO_CONTROL_PANEL_LAUNCHER_USAGE_DESCRIPTION=\u3053\u306e\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30fc\u3092\u4f7f\u7528\u3059\u308b\u3068\u3001\u57fa\u672c\u7684\u306a\u30b5\u30fc\u30d0\u30fc\u306e\u60c5\u5831\u3092\u8868\u793a\u3057\u3001\u30b5\u30fc\u30d0\u30fc\u4e0a\u3067\u3044\u304f\u3064\u304b\u306e\u57fa\u672c\u7684\u306a\u7ba1\u7406\u30bf\u30b9\u30af\u3092\u5b9f\u884c\u3067\u304d\u308b\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u30d1\u30cd\u30eb\u30a6\u30a3\u30f3\u30c9\u30a6\u3092\u8868\u793a\u3067\u304d\u307e\u3059\u3002
INFO_STOP_BUTTON_LABEL=\u505c\u6b62
INFO_STOP_BUTTON_TOOLTIP=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u3092\u505c\u6b62\u3059\u308b
INFO_BASEDN_NOT_REPLICATED_LABEL=\u7121\u52b9
INFO_BASEDN_REPLICATED_LABEL=\u6709\u52b9
INFO_SUMMARY_DELETING_EXTERNAL_DB_FILES=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30d1\u30b9\u5916\u90e8\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb\u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059...
INFO_SUMMARY_DELETING_EXTERNAL_LOG_FILES=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30d1\u30b9\u5916\u90e8\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059...
INFO_SUMMARY_DELETING_EXTERNAL_REFERENCES=\u5916\u90e8\u53c2\u7167\u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059...
INFO_SUMMARY_DELETING_INSTALLATION_FILES=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30d1\u30b9\u5185\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059...
INFO_SUMMARY_DISABLING_WINDOWS_SERVICE=Windows \u30b5\u30fc\u30d3\u30b9\u3092\u7121\u52b9\u306b\u3057\u3066\u3044\u307e\u3059...
INFO_SUMMARY_UNCONFIGURING_REPLICATION=\u30ea\u30e2\u30fc\u30c8 \u30b5\u30fc\u30d0\u30fc\u5185\u306e\u53c2\u7167\u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059...
INFO_SUMMARY_UNINSTALL_FINISHED_SUCCESSFULLY=<b>\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u6b63\u5e38\u306b\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002</b>
INFO_SUMMARY_UNINSTALL_FINISHED_SUCCESSFULLY_CLI=\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u6b63\u5e38\u306b\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002
INFO_SUMMARY_UNINSTALL_FINISHED_SUCCESSFULLY_REMOVE_JARFILES=<b>\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u6b63\u5e38\u306b\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002</b><br><br>\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u5b8c\u4e86\u3059\u308b\u306b\u306f\u3001\u6b21\u306e\u30d5\u30a1\u30a4\u30eb\u304a\u3088\u3073\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u624b\u4f5c\u696d\u3067\u524a\u9664\u3057\u3066\u304f\u3060\u3055\u3044:<br>%s
INFO_SUMMARY_UNINSTALL_FINISHED_SUCCESSFULLY_REMOVE_JARFILES_CLI=\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u6b63\u5e38\u306b\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002%n\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u5b8c\u4e86\u3059\u308b\u306b\u306f\u3001\u6b21\u306e\u30d5\u30a1\u30a4\u30eb\u304a\u3088\u3073\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u624b\u52d5\u3067\u524a\u9664\u3057\u3066\u304f\u3060\u3055\u3044: %n%s
INFO_SUMMARY_UNINSTALL_FINISHED_WITH_ERROR=\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u3057\u304f\u306f '\u8a73\u7d30' \u30c6\u30ad\u30b9\u30c8\u9818\u57df\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_SUMMARY_UNINSTALL_FINISHED_WITH_ERROR_ON_REMOTE=<b>\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u6210\u529f\u3057\u307e\u3057\u305f\u304c\u3001\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f</b><br>\u30b5\u30fc\u30d0\u30fc\u3092\u30ed\u30fc\u30ab\u30eb\u30de\u30b7\u30f3\u304b\u3089\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3053\u3068\u306b\u6210\u529f\u3057\u307e\u3057\u305f\u304c\u3001\u30ea\u30e2\u30fc\u30c8\u30b5\u30fc\u30d0\u30fc\u306e\u66f4\u65b0\u4e2d\u306b\u3044\u304f\u3064\u304b\u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u3057\u304f\u306f '\u8a73\u7d30' \u30c6\u30ad\u30b9\u30c8\u9818\u57df\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_SUMMARY_UNINSTALL_FINISHED_WITH_ERROR_ON_REMOTE_CLI=\u30b5\u30fc\u30d0\u30fc\u3092\u30ed\u30fc\u30ab\u30eb\u30de\u30b7\u30f3\u304b\u3089\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3053\u3068\u306b\u6210\u529f\u3057\u307e\u3057\u305f\u304c\u3001\u30ea\u30e2\u30fc\u30c8\u30b5\u30fc\u30d0\u30fc\u306e\u66f4\u65b0\u4e2d\u306b\u3044\u304f\u3064\u304b\u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
INFO_SUMMARY_UNINSTALL_FINISHED_WITH_ERROR_DELETING=<b>\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u6210\u529f\u3057\u307e\u3057\u305f\u304c\u3001\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f</b><br>\u30b5\u30fc\u30d0\u30fc\u3092\u30ed\u30fc\u30ab\u30eb\u30de\u30b7\u30f3\u304b\u3089\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3053\u3068\u306b\u6210\u529f\u3057\u307e\u3057\u305f\u304c\u3001\u30d5\u30a1\u30a4\u30eb\u306e\u524a\u9664\u4e2d\u306b\u3044\u304f\u3064\u304b\u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u554f\u984c\u306e\u539f\u56e0\u306b\u306a\u3063\u305f\u30d5\u30a1\u30a4\u30eb\u306b\u3064\u3044\u3066\u8a73\u3057\u304f\u306f\u3001'\u8a73\u7d30' \u30c6\u30ad\u30b9\u30c8\u9818\u57df\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002<br><br>\u307b\u304b\u306e\u30d7\u30ed\u30b0\u30e9\u30e0\u304c\u3053\u308c\u3089\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304b\u3089\u3001\u30d5\u30a1\u30a4\u30eb\u3092\u624b\u4f5c\u696d\u3067\u524a\u9664\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_SUMMARY_UNINSTALL_FINISHED_WITH_ERROR_DELETING_CLI=\u30b5\u30fc\u30d0\u30fc\u30ed\u30fc\u30ab\u30eb\u30de\u30b7\u30f3\u304b\u3089\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3053\u3068\u306b\u6210\u529f\u3057\u307e\u3057\u305f\u304c\u3001\u30d5\u30a1\u30a4\u30eb\u306e\u524a\u9664\u4e2d\u306b\u3044\u304f\u3064\u304b\u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u554f\u984c\u306e\u539f\u56e0\u306b\u306a\u3063\u305f\u30d5\u30a1\u30a4\u30eb\u306b\u3064\u3044\u3066\u8a73\u3057\u304f\u306f\u3001'\u8a73\u7d30' \u30c6\u30ad\u30b9\u30c8\u9818\u57df\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002%n%n\u307b\u304b\u306e\u30d7\u30ed\u30b0\u30e9\u30e0\u304c\u3053\u308c\u3089\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304b\u3089\u3001\u30d5\u30a1\u30a4\u30eb\u3092\u624b\u4f5c\u696d\u3067\u524a\u9664\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_SUMMARY_UNINSTALL_NOT_STARTED=\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u958b\u59cb\u3057\u3066\u3044\u307e\u3059...
INFO_UNDEFINED_PROTOCOL_LABEL=-\u4e0d\u660e-
###SEVERE_ERR_UNINSTALL_LAUNCHER_GUI_LAUNCHED_FAILED=%n%nThe graphical Uninstall \
### launch failed.%n%nLaunching command line uninstall...
###SEVERE_ERR_UNINSTALL_LAUNCHER_GUI_LAUNCHED_FAILED_DETAILS=%n%nThe graphical \
### Uninstall launch failed.  Check file %s for more details.%n%nLaunching \
### command line uninstall...
INFO_UNINSTALL_LAUNCHER_LAUNCHING_CLI=\u30b3\u30de\u30f3\u30c9\u884c\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u8d77\u52d5\u3057\u3066\u3044\u307e\u3059...
INFO_UNINSTALL_LAUNCHER_LAUNCHING_GUI=\u30b0\u30e9\u30d5\u30a3\u30ab\u30eb\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u8d77\u52d5\u3057\u3066\u3044\u307e\u3059...
INFO_UNINSTALL_LAUNCHER_USAGE_DESCRIPTION=\u3053\u306e\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30fc\u3092\u4f7f\u3063\u3066\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u3092\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059\u3002
INFO_UNINSTALL_LOGIN_CANCEL_BUTTON_TOOLTIP=\u3053\u306e\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u9589\u3058\u3066\u3001\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u5185\u306b\u5b58\u5728\u3059\u308b\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u53c2\u7167\u3092\u524a\u9664\u3057\u3088\u3046\u3068\u3057\u306a\u3044\u3067\u304f\u3060\u3055\u3044\u3002
INFO_UNINSTALL_LOGIN_DIALOG_MSG=\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u5185\u306b\u5b58\u5728\u3059\u308b\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u53c2\u7167\u3092\u524a\u9664\u3059\u308b\u306b\u306f\u3001\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u306e\u30e6\u30fc\u30b6\u30fc ID \u3092\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002%n\u30ea\u30e2\u30fc\u30c8\u30b5\u30fc\u30d0\u30fc\u5185\u3067\u53c2\u7167\u3055\u308c\u308b\u30db\u30b9\u30c8\u540d (\u307e\u305f\u306f IP \u30a2\u30c9\u30ec\u30b9) \u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_UNINSTALL_LOGIN_HOST_NAME_LABEL=\u30db\u30b9\u30c8\u540d: 
INFO_UNINSTALL_LOGIN_HOST_NAME_TOOLTIP=\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u5185\u3067\u53c2\u7167\u3055\u308c\u308b\u3001\u3053\u306e\u30db\u30b9\u30c8\u306e\u540d\u524d (\u307e\u305f\u306f IP \u30a2\u30c9\u30ec\u30b9)\u3002
INFO_UNINSTALL_LOGIN_OK_BUTTON_TOOLTIP=\u6307\u5b9a\u3055\u308c\u305f\u8a8d\u8a3c\u3092\u4f7f\u3063\u3066\u63a5\u7d9a\u3092\u8a66\u307f\u307e\u3059\u3002
INFO_UNINSTALL_LOGIN_PWD_TOOLTIP=\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u5185\u306e\u69cb\u6210\u306e\u8aad\u307f\u53d6\u308a\u304a\u3088\u3073\u66f4\u65b0\u306b\u4f7f\u7528\u3059\u308b\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u3002
INFO_UNINSTALL_LOGIN_UID_TOOLTIP=\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u5185\u306e\u69cb\u6210\u306e\u8aad\u307f\u53d6\u308a\u304a\u3088\u3073\u66f4\u65b0\u306b\u4f7f\u7528\u3059\u308b\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u306e\u30e6\u30fc\u30b6\u30fc ID\u3002
INFO_UNKNOWN_LABEL=--
INFO_UNINSTALLDS_DESCRIPTION_FORCE=\u30ea\u30e2\u30fc\u30c8\u30b5\u30fc\u30d0\u30fc\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5185\u3067\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u53c2\u7167\u3092\u66f4\u65b0\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u5834\u5408\u306b\u3001\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u7d9a\u884c\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059\u3002\u3053\u306e\u5f15\u6570\u3092\u4f7f\u7528\u3067\u304d\u308b\u306e\u306f\u3001\u30d7\u30ed\u30f3\u30d7\u30c8\u5f15\u6570\u306a\u3057\u306e %s \u306e\u5834\u5408\u3060\u3051\u3067\u3059\u3002
INFO_DESCRIPTION_REFERENCED_HOST=\u30ea\u30e2\u30fc\u30c8\u30b5\u30fc\u30d0\u30fc\u5185\u3067\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u7528\u306b\u53c2\u7167\u3055\u308c\u3066\u3044\u308b\u3001\u3053\u306e\u30db\u30b9\u30c8\u306e\u540d\u524d (\u307e\u305f\u306f IP \u30a2\u30c9\u30ec\u30b9)
INFO_UNINSTALLDS_DESCRIPTION_CLI=\u30b3\u30de\u30f3\u30c9\u884c\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306e\u4f7f\u7528\u3092\u6307\u5b9a\u3057\u307e\u3059\u3002  \u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u3001\u30b0\u30e9\u30d5\u30a3\u30ab\u30eb\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304c\u8d77\u52d5\u3057\u307e\u3059\u3002  \u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306b\u306e\u307f\u3001\u6b8b\u308a\u306e\u30aa\u30d7\u30b7\u30e7\u30f3 (help \u3068 version \u3092\u9664\u304f) \u304c\u8003\u616e\u3055\u308c\u307e\u3059
INFO_UNINSTALLDS_DESCRIPTION_QUIET=\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u975e\u51fa\u529b\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3057\u307e\u3059\u3002  \u975e\u51fa\u529b\u30e2\u30fc\u30c9\u3067\u306f\u3001\u9032\u6357\u60c5\u5831\u304c\u6a19\u6e96\u51fa\u529b\u306b\u51fa\u529b\u3055\u308c\u307e\u305b\u3093\u3002
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_ALL=\u30b5\u30fc\u30d0\u30fc\u306e\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u3092\u3059\u3079\u3066\u524a\u9664\u3057\u307e\u3059 (\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u6b8b\u308a\u306e\u524a\u9664\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u4e92\u63db\u6027\u304c\u3042\u308a\u307e\u305b\u3093)
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_SERVER_LIBRARIES=\u30b5\u30fc\u30d0\u30fc\u30e9\u30a4\u30d6\u30e9\u30ea\u3068\u7ba1\u7406\u30c4\u30fc\u30eb\u306e\u524a\u9664
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_DATABASES=\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u524a\u9664
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_LOG_FILES=\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u524a\u9664
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_CONFIGURATION_FILES=\u69cb\u6210\u30d5\u30a1\u30a4\u30eb\u306e\u524a\u9664
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_BACKUP_FILES=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u30d5\u30a1\u30a4\u30eb\u306e\u524a\u9664
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_LDIF_FILES=LDIF \u30d5\u30a1\u30a4\u30eb\u306e\u524a\u9664
INFO_DESCRIPTION_ADMIN_UID=\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u30d0\u30a4\u30f3\u30c9\u306b\u4f7f\u7528\u3059\u308b\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u306e\u30e6\u30fc\u30b6\u30fc ID
INFO_DESCRIPTION_ENABLE_REPLICATION_HOST1=\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3059\u308b\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u5b8c\u5168\u4fee\u98fe\u30db\u30b9\u30c8\u540d\u307e\u305f\u306f IP \u30a2\u30c9\u30ec\u30b9
INFO_DESCRIPTION_ENABLE_REPLICATION_SERVER_PORT1=\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3059\u308b\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u7ba1\u7406\u30dd\u30fc\u30c8\u756a\u53f7
INFO_DESCRIPTION_ENABLE_REPLICATION_BINDDN1=\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3059\u308b\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u30d0\u30a4\u30f3\u30c9\u306b\u4f7f\u7528\u3059\u308b DN\u3002  \u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306f\u3001\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u304c\u30d0\u30a4\u30f3\u30c9\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059
INFO_DESCRIPTION_ENABLE_REPLICATION_BINDPASSWORD1=\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3059\u308b\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u30d0\u30a4\u30f3\u30c9\u306b\u4f7f\u7528\u3059\u308b\u30d1\u30b9\u30ef\u30fc\u30c9\u3002  \u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30d0\u30a4\u30f3\u30c9 DN \u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306f\u3001\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u30d0\u30a4\u30f3\u30c9\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002
INFO_DESCRIPTION_ENABLE_REPLICATION_BINDPASSWORDFILE1=\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3059\u308b\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u30d0\u30a4\u30f3\u30c9\u306b\u4f7f\u7528\u3059\u308b\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u542b\u3080\u30d5\u30a1\u30a4\u30eb\u3002  \u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30d0\u30a4\u30f3\u30c9 DN \u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306f\u3001\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u30d0\u30a4\u30f3\u30c9\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002
INFO_DESCRIPTION_ENABLE_REPLICATION_PORT1=\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u6a5f\u69cb\u304c\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u3068\u306e\u901a\u4fe1\u306b\u4f7f\u7528\u3059\u308b\u30dd\u30fc\u30c8\u3002  \u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u3067\u4ee5\u524d\u306b\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u304c\u69cb\u6210\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306b\u306e\u307f\u3001\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u307e\u3059
INFO_DESCRIPTION_ENABLE_SECURE_REPLICATION1=\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8\u7d4c\u7531\u3067\u306e\u901a\u4fe1\u3092\u6697\u53f7\u5316\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059\u3002  \u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u4e0a\u3067\u521d\u56de\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u69cb\u6210\u3059\u308b\u5834\u5408\u306b\u306e\u307f\u3001\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u4f7f\u7528\u306f\u8003\u616e\u3055\u308c\u307e\u3059\u3002
INFO_DESCRIPTION_ENABLE_REPLICATION_NO_REPLICATION_SERVER1=\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8\u3092\u69cb\u6210\u3057\u305f\u308a\u3001\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u3092\u5909\u66f4\u3057\u305f\u308a\u3057\u306a\u3044\u3067\u304f\u3060\u3055\u3044\u3002\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u306f\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u30c7\u30fc\u30bf\u304c\u542b\u307e\u308c\u307e\u3059\u304c\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u30c7\u30fc\u30bf\u306b\u52a0\u3048\u3089\u308c\u305f\u5909\u66f4\u306e\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u306f\u542b\u307e\u308c\u307e\u305b\u3093\u3002\u30b7\u30f3\u30b0\u30eb\u30dd\u30a4\u30f3\u30c8\u969c\u5bb3\u3092\u56de\u907f\u3059\u308b\u305f\u3081\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u5404\u30c8\u30dd\u30ed\u30b8\u306b\u306f\u3001\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u3092\u6301\u3064\u30b5\u30fc\u30d0\u30fc\u3092\u5c11\u306a\u304f\u3068\u3082 2 \u3064\u4ee5\u4e0a\u542b\u3081\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059
INFO_DESCRIPTION_ENABLE_REPLICATION_ONLY_REPLICATION_SERVER1=\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u304a\u3088\u3073\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8\u306e\u307f\u3092\u5909\u66f4\u3057\u307e\u3059\u3002\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u306f\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u30c7\u30fc\u30bf\u306f\u542b\u307e\u308c\u307e\u305b\u3093\u304c\u3001\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u4e0a\u306b\u3042\u308b\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u30c7\u30fc\u30bf\u306b\u52a0\u3048\u3089\u308c\u305f\u5909\u66f4\u306e\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u304c\u542b\u307e\u308c\u307e\u3059
INFO_DESCRIPTION_ENABLE_REPLICATION_HOST2=\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3059\u308b 2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u5b8c\u5168\u4fee\u98fe\u30db\u30b9\u30c8\u540d\u307e\u305f\u306f IP \u30a2\u30c9\u30ec\u30b9
INFO_DESCRIPTION_ENABLE_REPLICATION_SERVER_PORT2=\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3059\u308b 2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u7ba1\u7406\u30dd\u30fc\u30c8\u756a\u53f7
INFO_DESCRIPTION_ENABLE_REPLICATION_BINDDN2=\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3059\u308b 2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u30d0\u30a4\u30f3\u30c9\u306b\u4f7f\u7528\u3059\u308b DN\u3002  \u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306f\u3001\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u304c\u30d0\u30a4\u30f3\u30c9\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059
INFO_DESCRIPTION_ENABLE_REPLICATION_SKIPPORT=\u6307\u5b9a\u3057\u305f\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8\u304c\u4f7f\u7528\u53ef\u80fd\u304b\u3069\u3046\u304b\u3092\u5224\u5b9a\u3059\u308b\u305f\u3081\u306e\u30c1\u30a7\u30c3\u30af\u3092\u30b9\u30ad\u30c3\u30d7\u3057\u307e\u3059\u3002
INFO_DESCRIPTION_ENABLE_REPLICATION_NO_SCHEMA_REPLICATION=\u30b5\u30fc\u30d0\u30fc\u9593\u306e\u30b9\u30ad\u30fc\u30de\u3092\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3057\u307e\u305b\u3093
INFO_DESCRIPTION_ENABLE_REPLICATION_USE_SECOND_AS_SCHEMA_SOURCE=2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u3092\u4f7f\u7528\u3057\u3066\u3001\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30b9\u30ad\u30fc\u30de\u3092\u521d\u671f\u5316\u3057\u307e\u3059\u3002  \u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3082\u30aa\u30d7\u30b7\u30e7\u30f3 %s \u3082\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u3001\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30b9\u30ad\u30fc\u30de\u3092\u4f7f\u7528\u3057\u3066 2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30b9\u30ad\u30fc\u30de\u304c\u521d\u671f\u5316\u3055\u308c\u307e\u3059
INFO_DESCRIPTION_ENABLE_REPLICATION_BINDPASSWORD2=\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3059\u308b 2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u30d0\u30a4\u30f3\u30c9\u306b\u4f7f\u7528\u3059\u308b\u30d1\u30b9\u30ef\u30fc\u30c9\u3002  2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30d0\u30a4\u30f3\u30c9 DN \u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306f\u3001\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u30d0\u30a4\u30f3\u30c9\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002
INFO_DESCRIPTION_ENABLE_REPLICATION_BINDPASSWORDFILE2=\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3059\u308b 2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u30d0\u30a4\u30f3\u30c9\u306b\u4f7f\u7528\u3059\u308b\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u542b\u3080\u30d5\u30a1\u30a4\u30eb\u3002  2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30d0\u30a4\u30f3\u30c9 DN \u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306f\u3001\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u30d0\u30a4\u30f3\u30c9\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002
INFO_DESCRIPTION_ENABLE_REPLICATION_PORT2=2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u6a5f\u69cb\u304c\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u3068\u306e\u901a\u4fe1\u306b\u4f7f\u7528\u3059\u308b\u30dd\u30fc\u30c8\u3002  2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u3067\u4ee5\u524d\u306b\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u304c\u69cb\u6210\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306b\u306e\u307f\u3001\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_DESCRIPTION_ENABLE_SECURE_REPLICATION2=2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8\u7d4c\u7531\u3067\u306e\u901a\u4fe1\u3092\u6697\u53f7\u5316\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059\u3002  2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u3067\u521d\u56de\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u69cb\u6210\u3059\u308b\u5834\u5408\u306b\u306e\u307f\u3001\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u4f7f\u7528\u3092\u8003\u616e\u3057\u307e\u3059\u3002
INFO_DESCRIPTION_ENABLE_REPLICATION_NO_REPLICATION_SERVER2=2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8\u3092\u69cb\u6210\u3057\u305f\u308a\u3001\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u3092\u5909\u66f4\u3057\u305f\u308a\u3057\u306a\u3044\u3067\u304f\u3060\u3055\u3044\u30022 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u306f\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u30c7\u30fc\u30bf\u304c\u542b\u307e\u308c\u307e\u3059\u304c\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u30c7\u30fc\u30bf\u306b\u52a0\u3048\u3089\u308c\u305f\u5909\u66f4\u306e\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u306f\u542b\u307e\u308c\u307e\u305b\u3093\u3002\u30b7\u30f3\u30b0\u30eb\u30dd\u30a4\u30f3\u30c8\u969c\u5bb3\u3092\u56de\u907f\u3059\u308b\u305f\u3081\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u5404\u30c8\u30dd\u30ed\u30b8\u306b\u306f\u3001\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u3092\u6301\u3064\u30b5\u30fc\u30d0\u30fc\u3092\u5c11\u306a\u304f\u3068\u3082 2 \u3064\u4ee5\u4e0a\u542b\u3081\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059
INFO_DESCRIPTION_ENABLE_REPLICATION_ONLY_REPLICATION_SERVER2=2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u304a\u3088\u3073\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8\u306e\u307f\u3092\u5909\u66f4\u3057\u307e\u3059\u30022 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u306f\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u30c7\u30fc\u30bf\u306f\u542b\u307e\u308c\u307e\u305b\u3093\u304c\u3001\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u4e0a\u306b\u3042\u308b\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u30c7\u30fc\u30bf\u306b\u52a0\u3048\u3089\u308c\u305f\u5909\u66f4\u306e\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u304c\u542b\u307e\u308c\u307e\u3059
INFO_DESCRIPTION_ENABLE_REPLICATION_STARTTLS2=2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u3068\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc\u4fdd\u8b77\u3055\u308c\u305f\u901a\u4fe1\u306b StartTLS \u3092\u4f7f\u7528\u3057\u307e\u3059
INFO_DESCRIPTION_REPLICATION_BASEDNS=\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3059\u308b\u30c7\u30fc\u30bf\u3001\u521d\u671f\u5316\u3059\u308b\u30c7\u30fc\u30bf\u3001\u307e\u305f\u306f\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u7121\u52b9\u306b\u3059\u308b\u30c7\u30fc\u30bf\u306e\u30d9\u30fc\u30b9 DN\u3002  \u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8907\u6570\u56de\u4f7f\u7528\u3059\u308b\u3053\u3068\u3067\u3001\u8907\u6570\u306e\u30d9\u30fc\u30b9 DN \u3092\u6307\u5b9a\u3067\u304d\u307e\u3059
INFO_DESCRIPTION_REPLICATION_ADMIN_UID=\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u30d0\u30a4\u30f3\u30c9\u306b\u4f7f\u7528\u3059\u308b\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u306e\u30e6\u30fc\u30b6\u30fc ID\u3002   '%s' \u30b5\u30d6\u30b3\u30de\u30f3\u30c9\u3092\u4f7f\u7528\u3059\u308b\u3068\u3001\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u304c\u4ee5\u524d\u306b\u3044\u305a\u308c\u306e\u30b5\u30fc\u30d0\u30fc\u3067\u3082\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306b\u3001\u6307\u5b9a\u3057\u305f\u30c7\u30fc\u30bf\u3092\u4f7f\u3063\u3066\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059\u3002
INFO_DESCRIPTION_REPLICATION_ADMIN_BINDPASSWORD=\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u306e\u30d1\u30b9\u30ef\u30fc\u30c9
INFO_DESCRIPTION_REPLICATION_ADMIN_BINDPASSWORDFILE=\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u542b\u3080\u30d5\u30a1\u30a4\u30eb
INFO_DESCRIPTION_INITIALIZE_REPLICATION_HOST_SOURCE=\u5b9b\u5148\u30b5\u30fc\u30d0\u30fc\u306e\u521d\u671f\u5316\u306b\u4f7f\u7528\u3059\u308b\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u542b\u3080\u30bd\u30fc\u30b9\u30b5\u30fc\u30d0\u30fc\u306e\u5b8c\u5168\u4fee\u98fe\u30db\u30b9\u30c8\u540d\u307e\u305f\u306f IP \u30a2\u30c9\u30ec\u30b9
INFO_DESCRIPTION_INITIALIZE_REPLICATION_SERVER_PORT_SOURCE=\u5b9b\u5148\u30b5\u30fc\u30d0\u30fc\u306e\u521d\u671f\u5316\u306b\u4f7f\u7528\u3059\u308b\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u542b\u3080\u30bd\u30fc\u30b9\u30b5\u30fc\u30d0\u30fc\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u7ba1\u7406\u30dd\u30fc\u30c8\u756a\u53f7
INFO_DESCRIPTION_INITIALIZE_REPLICATION_HOST_DESTINATION=\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u521d\u671f\u5316\u3059\u308b\u5b9b\u5148\u30b5\u30fc\u30d0\u30fc\u306e\u5b8c\u5168\u4fee\u98fe\u30db\u30b9\u30c8\u540d\u307e\u305f\u306f IP \u30a2\u30c9\u30ec\u30b9
INFO_DESCRIPTION_INITIALIZE_REPLICATION_SERVER_PORT_DESTINATION=\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u521d\u671f\u5316\u3059\u308b\u5b9b\u5148\u30b5\u30fc\u30d0\u30fc\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u7ba1\u7406\u30dd\u30fc\u30c8\u756a\u53f7
INFO_DESCRIPTION_EXTERNAL_INITIALIZATION_LOCAL=\u5916\u90e8\u30e1\u30bd\u30c3\u30c9 (import-ldif \u30b3\u30de\u30f3\u30c9\u307e\u305f\u306f\u30d0\u30a4\u30ca\u30ea\u30b3\u30d4\u30fc) \u3092\u4f7f\u7528\u3057\u3066\u6307\u5b9a\u3057\u305f\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3060\u3051\u3092\u521d\u671f\u5316\u3059\u308b\u5834\u5408\u306b\u3001\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002
INFO_REPLICATION_TOOL_DESCRIPTION=\u3053\u306e\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30fc\u3092\u4f7f\u7528\u3057\u3066\u30b5\u30fc\u30d0\u30fc\u9593\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u69cb\u6210\u3059\u308b\u3053\u3068\u3067\u3001\u30b5\u30fc\u30d0\u30fc\u306e\u30c7\u30fc\u30bf\u3092\u540c\u671f\u3067\u304d\u307e\u3059\u3002\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u52d5\u4f5c\u3055\u305b\u308b\u306b\u306f\u3001\u6700\u521d\u306b '%s' \u30b5\u30d6\u30b3\u30de\u30f3\u30c9\u3092\u4f7f\u7528\u3057\u3066\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u6709\u52b9\u306b\u3057\u3066\u304b\u3089\u3001'%s' \u30b5\u30d6\u30b3\u30de\u30f3\u30c9\u3092\u4f7f\u7528\u3057\u3066\u3001\u3042\u308b\u30b5\u30fc\u30d0\u30fc\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3067\u521d\u671f\u5316\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059
INFO_REPLICATION_DESCRIPTION_QUIET=\u975e\u51fa\u529b\u64cd\u4f5c\u3092\u5b9f\u884c\u3057\u307e\u3059 (\u9032\u6357\u60c5\u5831\u306f\u6a19\u6e96\u51fa\u529b\u306b\u51fa\u529b\u3055\u308c\u306a\u3044)
INFO_DESCRIPTION_DISABLE_REPLICATION_BINDDN=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u7121\u52b9\u306b\u3059\u308b\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u30d0\u30a4\u30f3\u30c9\u306b\u4f7f\u7528\u3059\u308b DN\u3002  \u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u304c\u30b5\u30fc\u30d0\u30fc\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u3001\u307e\u305f\u306f\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u5185\u306e\u53c2\u7167\u3092\u524a\u9664\u3059\u308b\u3053\u3068\u3092\u30e6\u30fc\u30b6\u30fc\u304c\u671b\u307e\u306a\u3044\u5834\u5408\u306b\u3001\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002  \u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f\u3001\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002
INFO_DESCRIPTION_DISABLE_REPLICATION_SERVER=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u3092\u7121\u52b9\u306b\u3057\u307e\u3059\u3002\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8\u304a\u3088\u3073\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u306f\u6307\u5b9a\u3055\u308c\u305f\u30b5\u30fc\u30d0\u30fc\u3067\u7121\u52b9\u306b\u306a\u308a\u307e\u3059
INFO_DESCRIPTION_DISABLE_ALL=\u6307\u5b9a\u3057\u305f\u30b5\u30fc\u30d0\u30fc\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u69cb\u6210\u3092\u7121\u52b9\u306b\u3057\u307e\u3059\u3002\u30b5\u30fc\u30d0\u30fc\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u306f\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u306a\u304f\u306a\u308a\u3001\u69cb\u6210\u3055\u308c\u305f\u5834\u5408\u306f\u3001\u305d\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc (\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u304a\u3088\u3073\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8) \u306f\u7121\u52b9\u306b\u306a\u308a\u307e\u3059
INFO_DESCRIPTION_SUBCMD_INITIALIZE_REPLICATION=\u5b9b\u5148\u30b5\u30fc\u30d0\u30fc\u306e\u6307\u5b9a\u3057\u305f\u30d9\u30fc\u30b9 DN \u5185\u306b\u3042\u308b\u30c7\u30fc\u30bf\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3001\u30bd\u30fc\u30b9\u30b5\u30fc\u30d0\u30fc\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3067\u521d\u671f\u5316\u3057\u307e\u3059\u3002  \u3053\u306e\u64cd\u4f5c\u306f\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u6709\u52b9\u306b\u3057\u305f\u3042\u3068\u3067\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u6a5f\u80fd\u3055\u305b\u308b\u305f\u3081\u306b\u5fc5\u8981\u3067\u3059 ('%s' \u3082\u540c\u3058\u76ee\u7684\u3067\u4f7f\u7528\u53ef\u80fd)\u3002
INFO_DESCRIPTION_SUBCMD_INITIALIZE_ALL_REPLICATION=\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3059\u308b\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u542b\u3080\u3059\u3079\u3066\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u3001\u6307\u5b9a\u3057\u305f\u30d9\u30fc\u30b9 DN \u5185\u306e\u30c7\u30fc\u30bf\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u3001\u6307\u5b9a\u3057\u305f\u30b5\u30fc\u30d0\u30fc\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3067\u521d\u671f\u5316\u3057\u307e\u3059\u3002  \u3053\u306e\u64cd\u4f5c\u306f\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u6709\u52b9\u306b\u3057\u305f\u3042\u3068\u3067\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u6a5f\u80fd\u3055\u305b\u308b\u305f\u3081\u306b\u5fc5\u8981\u3067\u3059 (\u5404\u30b5\u30fc\u30d0\u30fc\u306b\u9069\u7528\u3055\u308c\u308b '%s' \u3082\u540c\u3058\u76ee\u7684\u3067\u4f7f\u7528\u53ef\u80fd)\u3002
INFO_DESCRIPTION_SUBCMD_PRE_EXTERNAL_INITIALIZATION=import-ldif \u30c4\u30fc\u30eb\u307e\u305f\u306f\u30d0\u30a4\u30ca\u30ea\u30b3\u30d4\u30fc\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u5bfe\u8c61\u306e\u5168\u30b5\u30fc\u30d0\u30fc\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u521d\u671f\u5316\u3059\u308b\u524d\u306b\u3001\u3053\u306e\u30b5\u30d6\u30b3\u30de\u30f3\u30c9\u3092\u547c\u3073\u51fa\u3057\u3066\u304f\u3060\u3055\u3044\u3002  \u521d\u671f\u5316\u3059\u308b\u30d9\u30fc\u30b9 DN \u306e\u30ea\u30b9\u30c8\u3092\u6307\u5b9a\u3057\u3066\u304b\u3089\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u4e2d\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u8cc7\u683c\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u3053\u306e\u30b5\u30d6\u30b3\u30de\u30f3\u30c9\u3092\u547c\u3073\u51fa\u3057\u305f\u3042\u3068\u306f\u3001\u30c8\u30dd\u30ed\u30b8\u5185\u306e\u3059\u3079\u3066\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u521d\u671f\u5316\u3057 (\u5404\u30b5\u30fc\u30d0\u30fc\u4e0a\u3067\u540c\u3058 LDIF \u30d5\u30a1\u30a4\u30eb/\u30d0\u30a4\u30ca\u30ea\u30b3\u30d4\u30fc\u3092\u4f7f\u7528\u3057)\u3001\u305d\u308c\u304b\u3089\u30b5\u30d6\u30b3\u30de\u30f3\u30c9 '%s' \u3092\u547c\u3073\u51fa\u3057\u3066\u304f\u3060\u3055\u3044
INFO_DESCRIPTION_SUBCMD_POST_EXTERNAL_INITIALIZATION=import-ldif \u30c4\u30fc\u30eb\u307e\u305f\u306f\u30d0\u30a4\u30ca\u30ea\u30b3\u30d4\u30fc\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u5bfe\u8c61\u306e\u5168\u30b5\u30fc\u30d0\u30fc\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u521d\u671f\u5316\u3057\u3066\u304b\u3089\u3001\u3053\u306e\u30b5\u30d6\u30b3\u30de\u30f3\u30c9\u3092\u547c\u3073\u51fa\u3057\u3066\u304f\u3060\u3055\u3044\u3002  \u521d\u671f\u5316\u3057\u305f\u30d9\u30fc\u30b9 DN \u306e\u30ea\u30b9\u30c8\u3092\u6307\u5b9a\u3057\u3066\u304b\u3089\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u4e2d\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u8cc7\u683c\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u8a73\u7d30\u306f\u3001\u30b5\u30d6\u30b3\u30de\u30f3\u30c9 '%s' \u306e\u4f7f\u7528\u6cd5\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_DESCRIPTION_SUBCMD_ENABLE_REPLICATION=\u30b5\u30fc\u30d0\u30fc\u306e\u69cb\u6210\u3092\u66f4\u65b0\u3057\u3066\u3001\u6307\u5b9a\u3057\u305f\u30d9\u30fc\u30b9 DN \u5185\u306e\u30c7\u30fc\u30bf\u3092\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3057\u307e\u3059\u3002  \u6307\u5b9a\u3057\u305f\u30b5\u30fc\u30d0\u30fc\u306e\u3044\u305a\u308c\u304b\u304c\u30d9\u30fc\u30b9 DN \u5185\u306e\u30c7\u30fc\u30bf\u3092\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u3059\u3067\u306b\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u4e2d\u3067\u3042\u308b\u5834\u5408\u3001\u3053\u306e\u30b5\u30d6\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3068\u3001\u3059\u3079\u3066\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u69cb\u6210\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059 (\u3053\u306e\u305f\u3081\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30c8\u30dd\u30ed\u30b8\u306b\u8ffd\u52a0\u3059\u308b\u30b5\u30fc\u30d0\u30fc\u3054\u3068\u306b\u3001\u3053\u306e\u30b3\u30de\u30f3\u30c9\u884c\u3092 1 \u56de\u5b9f\u884c\u3059\u308c\u3070\u5341\u5206\u3067\u3059)\u3002
INFO_DESCRIPTION_SUBCMD_DISABLE_REPLICATION=\u6307\u5b9a\u3057\u305f\u30b5\u30fc\u30d0\u30fc\u4e0a\u3067\u7279\u5b9a\u306e\u30d9\u30fc\u30b9 DN \u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u7121\u52b9\u306b\u3057\u3066\u3001\u30c7\u30fc\u30bf\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u5148\u306e\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u5185\u306e\u53c2\u7167\u3092\u524a\u9664\u3057\u307e\u3059\u3002
INFO_DESCRIPTION_SUBCMD_STATUS_REPLICATION=\u767b\u9332\u60c5\u5831\u5185\u3067\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30b5\u30fc\u30d0\u30fc\u306e\u30d9\u30fc\u30b9 DN \u306e\u57fa\u672c\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u69cb\u6210\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059\u3002  \u30d9\u30fc\u30b9 DN \u304c\u30d1\u30e9\u30e1\u30fc\u30bf\u3068\u3057\u3066\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u3001\u3059\u3079\u3066\u306e\u30d9\u30fc\u30b9 DN \u306e\u60c5\u5831\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002
###SEVERE_ERR_REPLICATION_NO_BASE_DN_PROVIDED=You must provide at least one base \
### DN in no interactive mode.
###SEVERE_ERR_REPLICATION_NO_ADMINISTRATOR_PASSWORD_PROVIDED=You must provide the \
### password of the global administrator in non interactive mode.  You can \
### provide it using the %s or the %s options.
###SEVERE_ERR_REPLICATION_NOT_A_VALID_BASEDN=The provided value %s is not a valid \
### base DN.
###SEVERE_ERR_REPLICATION_ENABLE_SAME_SERVER_PORT=You have to provide two \
### different servers to enable replication.  You have provided twice the server \
### %s:%s
###SEVERE_ERR_REPLICATION_INITIALIZE_SAME_SERVER_PORT=You have to provide two \
### different servers as source and destination of the initialization.  You have \
### provided twice the server %s:%s
###SEVERE_ERR_REPLICATION_PORT_AND_REPLICATION_PORT_EQUAL=The server administration port \
### and the replication port have the same value in host %s.  You provided %s \
### for both.
###SEVERE_ERR_REPLICATION_SAME_REPLICATION_PORT=You have provided the same \
### replication port (%s) for two servers located on the same machine (%s).
###SEVERE_ERR_REPLICATION_VALID_SUBCOMMAND_NOT_FOUND=Could not find a valid \
### subcommand.  You must specify a subcommand when using the option %s.
###SEVERE_ERR_REPLICATION_STATUS_QUIET=The '%s' subcommand is not compatible with \
### the %s argument.
INFO_REPLICATION_SUCCESSFUL=\u64cd\u4f5c\u304c\u6b63\u5e38\u306b\u5b8c\u4e86\u3057\u307e\u3057\u305f
INFO_REPLICATION_SUCCESSFUL_NOP=\u64cd\u4f5c\u304c\u6b63\u5e38\u306b\u5b8c\u4e86\u3057\u307e\u3057\u305f\u304c\u3001\u30a2\u30af\u30b7\u30e7\u30f3\u306f\u5fc5\u8981\u3042\u308a\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_REPLICATION_USER_CANCELLED=\u30e6\u30fc\u30b6\u30fc\u304c\u64cd\u4f5c\u3092\u30ad\u30e3\u30f3\u30bb\u30eb\u3057\u307e\u3057\u305f
###SEVERE_ERR_REPLICATION_NO_MESSAGE=
###SEVERE_ERR_UNINSTALL_FORCE_REQUIRES_NO_PROMPT=The %s argument only can be \
### used when %s has been specified
INFO_REPLICATION_ENABLE_ADMINISTRATOR_MUST_BE_CREATED=\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u3092\u4f5c\u6210\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002%n\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u4e2d\u306e\u30b5\u30fc\u30d0\u30fc\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u7ba1\u7406\u7528\u306b\u4f5c\u6210\u3059\u308b\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u306e\u8cc7\u683c\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_ADMINISTRATOR_UID_PROMPT=\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u306e\u30e6\u30fc\u30b6\u30fc ID
INFO_ADMINISTRATOR_PWD_PROMPT=\u30b0\u30ed\u30fc\u30d0\u30eb\u7ba1\u7406\u8005\u306e\u30d1\u30b9\u30ef\u30fc\u30c9: 
INFO_ADMINISTRATOR_PWD_CONFIRM_PROMPT=\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u78ba\u8a8d:
MILD_ERR_ADMINISTRATOR_PWD_DO_NOT_MATCH=\u6307\u5b9a\u3057\u305f\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002
MILD_ERR_ERROR_CONNECTING_TO_SERVER_PROMPT_AGAIN=\u6307\u5b9a\u3055\u308c\u305f\u8cc7\u683c\u3092\u4f7f\u7528\u3057\u3066\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30b5\u30fc\u30d0\u30fc %s \u306b\u63a5\u7d9a\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002%n\u30a8\u30e9\u30fc\u306e\u8a73\u7d30: %s%n%n\u5fc5\u8981\u306a\u60c5\u5831\u3092\u3082\u3046\u4e00\u5ea6\u6307\u5b9a\u3057\u3066\u3001\u30b5\u30fc\u30d0\u30fc\u306b\u63a5\u7d9a\u3057\u3066\u304f\u3060\u3055\u3044: 
INFO_REPLICATION_ENABLE_HOST1_CONNECTION_PARAMETERS=>>>> \u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30b5\u30fc\u30d0\u30fc\u7ba1\u7406\u63a5\u7d9a\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059
INFO_REPLICATION_ENABLE_HOSTNAME1_PROMPT=\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30db\u30b9\u30c8\u540d
INFO_REPLICATION_ENABLE_PORT1_PROMPT=\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u7ba1\u7406\u30dd\u30fc\u30c8
INFO_REPLICATION_ENABLE_PROTOCOL1=\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u63a5\u7d9a\u65b9\u6cd5\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_REPLICATION_ENABLE_REPLICATION_SERVER1_PROMPT=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u306b\u306f\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u5909\u66f4\u3092\u8a18\u9332\u3059\u308b\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u304c\u542b\u307e\u308c\u3066\u3044\u308b\u305f\u3081\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8\u3092\u69cb\u6210\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002%n\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u3092\u542b\u3081\u307e\u3059\u304b ?
INFO_REPLICATION_ENABLE_REPLICATION_DOMAIN1_PROMPT=\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u5bfe\u8c61\u3068\u306a\u308b\u30c7\u30fc\u30bf\u3092\u542b\u3081\u307e\u3059\u304b ?
INFO_REPLICATION_ENABLE_REPLICATIONPORT1_PROMPT=\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8 (\u672a\u4f7f\u7528\u306e\u30dd\u30fc\u30c8)
INFO_REPLICATION_ENABLE_SECURE1_PROMPT=\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8 %s \u3078\u306e\u63a5\u7d9a\u6642\u306b\u3001\u6697\u53f7\u5316\u3055\u308c\u305f\u901a\u4fe1\u3092\u4f7f\u3063\u3066\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3057\u307e\u3059\u304b ?
INFO_REPLICATION_ENABLE_BINDDN1_PROMPT=\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30d0\u30a4\u30f3\u30c9 DN
INFO_REPLICATION_ENABLE_PASSWORD1_PROMPT=\u6700\u521d\u306e\u30b5\u30fc\u30d0\u30fc\u4e0a\u306e %s \u306e\u30d1\u30b9\u30ef\u30fc\u30c9: 
INFO_REPLICATION_ENABLE_HOST2_CONNECTION_PARAMETERS=>>>> 2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30b5\u30fc\u30d0\u30fc\u7ba1\u7406\u63a5\u7d9a\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059
INFO_REPLICATION_ENABLE_HOSTNAME2_PROMPT=2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30db\u30b9\u30c8\u540d
INFO_REPLICATION_ENABLE_PORT2_PROMPT=2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u7ba1\u7406\u30dd\u30fc\u30c8
INFO_REPLICATION_ENABLE_PROTOCOL2=2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u63a5\u7d9a\u65b9\u6cd5\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_REPLICATION_ENABLE_REPLICATION_SERVER2_PROMPT=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u306b\u306f\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u5909\u66f4\u3092\u8a18\u9332\u3059\u308b\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u304c\u542b\u307e\u308c\u3066\u3044\u308b\u305f\u3081\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8\u3092\u69cb\u6210\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002%n2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u3092\u542b\u3081\u307e\u3059\u304b ?
INFO_REPLICATION_ENABLE_REPLICATION_DOMAIN2_PROMPT=\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u5bfe\u8c61\u3068\u306a\u308b\u30c7\u30fc\u30bf\u3092\u542b\u3081\u307e\u3059\u304b ?
INFO_REPLICATION_ENABLE_REPLICATIONPORT2_PROMPT=2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8 (\u672a\u4f7f\u7528\u306e\u30dd\u30fc\u30c8)
INFO_REPLICATION_ENABLE_SECURE2_PROMPT=2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8 %s \u3078\u306e\u63a5\u7d9a\u6642\u306b\u3001\u6697\u53f7\u5316\u3055\u308c\u305f\u901a\u4fe1\u3092\u4f7f\u3063\u3066\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3057\u307e\u3059\u304b ?
INFO_REPLICATION_ENABLE_BINDDN2_PROMPT=2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u30d0\u30a4\u30f3\u30c9 DN
INFO_REPLICATION_ENABLE_PASSWORD2_PROMPT=2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u4e0a\u306e %s \u306e\u30d1\u30b9\u30ef\u30fc\u30c9: 
INFO_REPLICATION_INITIALIZE_SOURCE_CONNECTION_PARAMETERS=>>>> \u30bd\u30fc\u30b9\u30b5\u30fc\u30d0\u30fc\u306e\u30b5\u30fc\u30d0\u30fc\u7ba1\u7406\u63a5\u7d9a\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059
INFO_REPLICATION_INITIALIZE_DESTINATION_CONNECTION_PARAMETERS=>>>> \u5b9b\u5148\u30b5\u30fc\u30d0\u30fc\u306e\u30b5\u30fc\u30d0\u30fc\u7ba1\u7406\u63a5\u7d9a\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059
###SEVERE_ERR_NO_SUFFIXES_AVAILABLE_TO_ENABLE_REPLICATION=There are no base DN's \
### available to enable replication between the two servers.
###SEVERE_ERR_NO_SUFFIXES_AVAILABLE_TO_ENABLE_REPLICATION_NO_DOMAIN=There are no \
### base DN's available to enable replication between the two servers.  You must \
### specify at least one server that will contain the replicated data, before \
### configuring servers that will only contain the replication changelog \
### (replication servers).
INFO_ALREADY_REPLICATED_SUFFIXES=\u6b21\u306e\u30d9\u30fc\u30b9 DN \u304c 2 \u3064\u306e\u30b5\u30fc\u30d0\u30fc\u9593\u3067\u3059\u3067\u306b\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u3059: %n%s
INFO_ALREADY_NOT_REPLICATED_SUFFIXES=\u6b21\u306e\u30d9\u30fc\u30b9 DN \u306f\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093: %n%s
MILD_ERR_REPLICATION_ENABLE_SUFFIXES_NOT_FOUND=\u6b21\u306e\u30d9\u30fc\u30b9 DN \u304c\u5c11\u306a\u304f\u3068\u3082 1 \u3064\u306e\u30b5\u30fc\u30d0\u30fc\u3067\u898b\u3064\u304b\u3089\u306a\u304b\u3063\u305f\u305f\u3081\u30012 \u3064\u306e\u30b5\u30fc\u30d0\u30fc\u9593\u3067\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3067\u304d\u307e\u305b\u3093: %n%s
MILD_ERR_NO_SUFFIXES_SELECTED_TO_REPLICATE=\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3059\u308b\u30d9\u30fc\u30b9 DN \u3092 1 \u3064\u4ee5\u4e0a\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_REPLICATION_ENABLE_SUFFIX_PROMPT=\u30d9\u30fc\u30b9 DN %s \u3092\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3057\u307e\u3059\u304b ?
###SEVERE_ERR_NO_SUFFIXES_AVAILABLE_TO_INITIALIZE_REPLICATION=There are no base \
### DN's replicated between the two servers.
MILD_ERR_SUFFIXES_CANNOT_BE_INITIALIZED=\u6b21\u306e\u30d9\u30fc\u30b9 DN \u306f\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u3066\u3044\u306a\u3044\u304b\u3001\u4e21\u65b9\u306e\u30b5\u30fc\u30d0\u30fc\u3067\u69cb\u6210\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u521d\u671f\u5316\u3067\u304d\u307e\u305b\u3093: %n%s
MILD_ERR_NO_SUFFIXES_SELECTED_TO_INITIALIZE=\u521d\u671f\u5316\u3059\u308b\u30d9\u30fc\u30b9 DN \u3092 1 \u3064\u4ee5\u4e0a\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_REPLICATION_INITIALIZE_SUFFIX_PROMPT=\u30d9\u30fc\u30b9 DN %s \u3092\u521d\u671f\u5316\u3057\u307e\u3059\u304b ?
###SEVERE_ERR_NO_SUFFIXES_AVAILABLE_TO_DISABLE_REPLICATION=There are no base \
### DN's replicated in the server.
###SEVERE_ERR_NO_SUFFIXES_AVAILABLE_TO_INITIALIZE_ALL_REPLICATION=There are no \
### base DN's replicated in the server.  The base DN's must be replicated to be \
### able to use their contents to initialize the base DN's on the other servers.
MILD_ERR_NO_SUFFIXES_AVAILABLE_TO_INITIALIZE_LOCAL_REPLICATION=There are no base DN's replicated in the server.
MILD_ERR_REPLICATION_DISABLE_SUFFIXES_NOT_FOUND=\u6b21\u306e\u30d9\u30fc\u30b9 DN \u304c\u30b5\u30fc\u30d0\u30fc\u306b\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f: %n%s
MILD_ERR_REPLICATION_INITIALIZE_LOCAL_SUFFIXES_NOT_FOUND=\u6b21\u306e\u30d9\u30fc\u30b9 DN \u304c\u30b5\u30fc\u30d0\u30fc\u306b\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f: %n%s
MILD_ERR_NO_SUFFIXES_SELECTED_TO_DISABLE=\u7121\u52b9\u306b\u3059\u308b\u30d9\u30fc\u30b9 DN \u3092 1 \u3064\u4ee5\u4e0a\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_NO_SUFFIXES_SELECTED_TO_INITIALIZE_ALL=\u521d\u671f\u5316\u3059\u308b\u30d9\u30fc\u30b9 DN \u3092 1 \u3064\u4ee5\u4e0a\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_REPLICATION_PRE_EXTERNAL_INITIALIZATION_LOCAL_PROMPT=\u30b5\u30fc\u30d0\u30fc %s \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3060\u3051\u3092\u521d\u671f\u5316\u3057\u307e\u3059\u304b (\u6307\u5b9a\u3057\u305f\u30d9\u30fc\u30b9 DN \u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u30b5\u30fc\u30d0\u30fc\u3059\u3079\u3066\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u521d\u671f\u5316\u3059\u308b\u5834\u5408\u306f\u300cno\u300d\u3068\u5165\u529b\u3059\u308b) ?
MILD_ERR_NO_SUFFIXES_SELECTED_TO_PRE_EXTERNAL_INITIALIZATION=import-ldif \u30b3\u30de\u30f3\u30c9\u307e\u305f\u306f\u30d0\u30a4\u30ca\u30ea\u30b3\u30d4\u30fc\u3092\u4f7f\u7528\u3057\u3066\u521d\u671f\u5316\u3059\u308b\u30d9\u30fc\u30b9 DN \u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_NO_SUFFIXES_SELECTED_TO_POST_EXTERNAL_INITIALIZATION=import-ldif \u30b3\u30de\u30f3\u30c9\u307e\u305f\u306f\u30d0\u30a4\u30ca\u30ea\u30b3\u30d4\u30fc\u3092\u4f7f\u7528\u3057\u3066\u521d\u671f\u5316\u3057\u305f\u30d9\u30fc\u30b9 DN \u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_REPLICATION_DISABLE_SUFFIX_PROMPT=\u30d9\u30fc\u30b9 DN %s \u4e0a\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u7121\u52b9\u306b\u3057\u307e\u3059\u304b ?
INFO_REPLICATION_DISABLE_ALL_SUFFIXES_KEEP_REPLICATION_SERVER='%s' \u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u3059\u3079\u3066\u306e\u30d9\u30fc\u30b9 DN \u4e0a\u3067\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u7121\u52b9\u306b\u3059\u308b\u3088\u3046\u9078\u629e\u3057\u307e\u3057\u305f\u3002\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc (\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u304a\u3088\u3073\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8) \u3082\u7121\u52b9\u306b\u3059\u308b\u5834\u5408\u3001'--%s' \u307e\u305f\u306f '--%s' \u5f15\u6570\u3082\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
INFO_REPLICATION_DISABLE_ALL_SUFFIXES_DISABLE_REPLICATION_SERVER=\u30b5\u30fc\u30d0\u30fc '%s' \u4e0a\u3067\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u3059\u3079\u3066\u306e\u30d9\u30fc\u30b9 DN \u3092\u7121\u52b9\u306b\u3059\u308b\u3088\u3046\u9078\u629e\u3057\u307e\u3057\u305f\u3002\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8 '%d' \u3082\u7121\u52b9\u306b\u3057\u307e\u3059\u304b ?
INFO_DISABLE_REPLICATION_ONE_POINT_OF_FAILURE=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u3092\u7121\u52b9\u306b\u3059\u308b\u3088\u3046\u9078\u629e\u3057\u307e\u3057\u305f\u3002\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u3092\u7121\u52b9\u306b\u3057\u305f\u3042\u3068\u30011 \u3064\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u307f\u3092\u6b21\u306e\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u7528\u306b\u69cb\u6210\u3057\u307e\u3059:%n%s%n\u30b7\u30f3\u30b0\u30eb\u30dd\u30a4\u30f3\u30c8\u969c\u5bb3\u3092\u56de\u907f\u3059\u308b\u305f\u3081\u3001\u5c11\u306a\u304f\u3068\u3082 2 \u3064\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u3092\u69cb\u6210\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
INFO_DISABLE_REPLICATION_ONE_POINT_OF_FAILURE_PROMPT=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u3092\u7121\u52b9\u306b\u3059\u308b\u3088\u3046\u9078\u629e\u3057\u307e\u3057\u305f\u3002\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u3092\u7121\u52b9\u306b\u3057\u305f\u3042\u3068\u30011 \u3064\u306e\u30b5\u30fc\u30d0\u30fc\u306e\u307f\u3092\u6b21\u306e\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u7528\u306b\u69cb\u6210\u3057\u307e\u3059:%n%s%n\u30b7\u30f3\u30b0\u30eb\u30dd\u30a4\u30f3\u30c8\u969c\u5bb3\u3092\u56de\u907f\u3059\u308b\u305f\u3081\u3001\u5c11\u306a\u304f\u3068\u3082 2 \u3064\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u3092\u69cb\u6210\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002%n\u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_DISABLE_REPLICATION_DISABLE_IN_REMOTE=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u3092\u7121\u52b9\u306b\u3059\u308b\u3088\u3046\u9078\u629e\u3057\u307e\u3057\u305f\u3002\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30c8\u30dd\u30ed\u30b8\u5185\u306b\u306f\u5c11\u306a\u304f\u3068\u3082 1 \u3064\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u304c\u5fc5\u8981\u3067\u3001\u3053\u308c\u304c\u6b21\u306e\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u6700\u5f8c\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u3067\u3059:%n%s%n\u3053\u308c\u3089\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u5bfe\u3059\u308b\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306f\u7121\u52b9\u306b\u306a\u308a\u307e\u3059\u3002
INFO_DISABLE_REPLICATION_DISABLE_IN_REMOTE_PROMPT=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u3092\u7121\u52b9\u306b\u3059\u308b\u3088\u3046\u9078\u629e\u3057\u307e\u3057\u305f\u3002\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30c8\u30dd\u30ed\u30b8\u5185\u306b\u306f\u5c11\u306a\u304f\u3068\u3082 1 \u3064\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u304c\u5fc5\u8981\u3067\u3001\u3053\u308c\u304c\u6b21\u306e\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u6700\u5f8c\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u3067\u3059:%n%s%n\u3053\u308c\u3089\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u5bfe\u3059\u308b\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306f\u7121\u52b9\u306b\u306a\u308a\u307e\u3059\u3002%n\u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_REPLICATION_REMOVE_ADS_CONTENTS=\u767b\u9332\u60c5\u5831\u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059
INFO_REPLICATION_REMOVE_TRUSTSTORE_CONTENTS=\u30c8\u30e9\u30b9\u30c8\u30b9\u30c8\u30a2\u60c5\u5831\u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059
INFO_REPLICATION_INITIALIZE_ALL_SUFFIX_PROMPT=\u30d9\u30fc\u30b9 DN %s \u3092\u521d\u671f\u5316\u3057\u307e\u3059\u304b ?
INFO_REPLICATION_PRE_EXTERNAL_INITIALIZATION_SUFFIX_PROMPT=import-ldif \u307e\u305f\u306f\u30d0\u30a4\u30ca\u30ea\u30b3\u30d4\u30fc\u3092\u4f7f\u7528\u3057\u3066\u30d9\u30fc\u30b9 DN %s \u3092\u521d\u671f\u5316\u3057\u307e\u3059\u304b ?
INFO_REPLICATION_POST_EXTERNAL_INITIALIZATION_SUFFIX_PROMPT=import-ldif \u307e\u305f\u306f\u30d0\u30a4\u30ca\u30ea\u30b3\u30d4\u30fc\u3092\u4f7f\u7528\u3057\u3066\u30d9\u30fc\u30b9 DN %s \u3092\u521d\u671f\u5316\u3057\u307e\u3057\u305f\u304b ?
MILD_ERR_REPLICATION_READING_REGISTERED_SERVERS_CONFIRM_UPDATE_REMOTE=\u65e2\u5b58\u306e\u30b5\u30fc\u30d0\u30fc\u69cb\u6210\u306e\u8aad\u307f\u53d6\u308a\u4e2d\u306b\u6b21\u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:%n%s%n%n\u7d9a\u884c\u3059\u308b\u3068\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30c4\u30fc\u30eb\u306b\u3088\u308a\u3001\u3059\u3079\u3066\u306e\u30b5\u30fc\u30d0\u30fc\u69cb\u6210\u306e\u66f4\u65b0\u304c\u30d9\u30b9\u30c8\u30a8\u30d5\u30a9\u30fc\u30c8\u30e2\u30fc\u30c9\u3067\u8a66\u307f\u3089\u308c\u307e\u3059\u3002  \u305f\u3060\u3057\u3001\u30a8\u30e9\u30fc\u3092\u751f\u6210\u3057\u3066\u3044\u308b\u30b5\u30fc\u30d0\u30fc\u306e\u66f4\u65b0\u306f\u4fdd\u8a3c\u3067\u304d\u307e\u305b\u3093\u3002  \u7d9a\u884c\u3057\u307e\u3059\u304b ?
MILD_ERR_REPLICATION_STATUS_READING_REGISTERED_SERVERS=\u65e2\u5b58\u306e\u30b5\u30fc\u30d0\u30fc\u69cb\u6210\u306e\u8aad\u307f\u53d6\u308a\u4e2d\u306b\u6b21\u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u305f\u3081\u3001\u8868\u793a\u3055\u308c\u3066\u3044\u308b\u60c5\u5831\u306f\u5b8c\u5168\u3067\u306f\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002:%n%s
MILD_ERR_NOT_ADMINISTRATIVE_USER=\u30b5\u30fc\u30d0\u30fc\u69cb\u6210\u3078\u306e\u30a2\u30af\u30bb\u30b9\u6a29\u9650\u304c\u3042\u308a\u307e\u305b\u3093\u3002
INFO_REPLICATION_CONFIRM_DISABLE_ADS=\u30d9\u30fc\u30b9 DN %s \u4e0a\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u7121\u52b9\u5316\u304c\u9078\u629e\u3055\u308c\u307e\u3057\u305f\u3002\u3053\u306e\u30d9\u30fc\u30b9 DN \u306f\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u6a5f\u69cb\u304a\u3088\u3073\u4e00\u90e8\u306e\u7ba1\u7406\u30c4\u30fc\u30eb\u306b\u3088\u308a\u4f7f\u7528\u3055\u308c\u308b\u305f\u3081\u3001\u3053\u308c\u3092\u76f4\u63a5\u69cb\u6210\u3059\u308b\u3053\u3068\u306f\u63a8\u5968\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002  \u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_REPLICATION_CONFIRM_DISABLE_SCHEMA=\u30b9\u30ad\u30fc\u30de\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u7121\u52b9\u5316\u304c\u9078\u629e\u3055\u308c\u307e\u3057\u305f\u3002  \u30b9\u30ad\u30fc\u30de\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u7121\u52b9\u5316\u304c\u63a8\u5968\u3055\u308c\u3066\u3044\u308b\u306e\u306f\u3001\u7279\u5b9a\u306e\u30b7\u30ca\u30ea\u30aa\u3060\u3051\u3067\u3059\u3002  \u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_REPLICATION_CONFIRM_DISABLE_GENERIC=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u7121\u52b9\u306b\u3059\u308b\u3068\u3001\u9078\u629e\u3057\u305f\u30d9\u30fc\u30b9 DN \u5185\u306e\u30c7\u30fc\u30bf\u304c\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u3068\u540c\u671f\u3057\u306a\u304f\u306a\u308a\u307e\u3059\u3002\u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_REPLICATION_PROMPT_DISABLE_ALL=\u30b5\u30fc\u30d0\u30fc\u4e0a\u306e\u3059\u3079\u3066\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u7121\u52b9\u306b\u3059\u308b\u3088\u3046\u9078\u629e\u3067\u304d\u307e\u3059\u3002\u300c\u306f\u3044\u300d\u3092\u9078\u629e\u3057\u305f\u5834\u5408\u3001\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u304a\u3088\u3073\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8 (\u5b9a\u7fa9\u3057\u3066\u3044\u308b\u5834\u5408) \u306f\u7121\u52b9\u306b\u306a\u308a\u307e\u3059\u3002\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u30c7\u30fc\u30bf\u304c\u542b\u307e\u308c\u3066\u3044\u308b\u5834\u5408\u3001\u305d\u306e\u30c7\u30fc\u30bf\u306f\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u3088\u3063\u3066\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u306a\u304f\u306a\u308a\u307e\u3059\u3002\u307e\u305f\u3001\u3059\u3079\u3066\u306e\u767b\u9332\u60c5\u5831\u304c\u524a\u9664\u3055\u308c\u307e\u3059\u3002%n\u3059\u3079\u3066\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u69cb\u6210\u3092\u7121\u52b9\u306b\u3057\u307e\u3059\u304b ?
INFO_REPLICATION_PROMPT_NO_REPLICATION_SERVER_TO_DISABLE='%s' \u3067\u69cb\u6210\u3055\u308c\u3066\u3044\u308b\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_REPLICATION_WARNING_NO_REPLICATION_SERVER_TO_DISABLE='%s' \u3067\u69cb\u6210\u3055\u308c\u3066\u3044\u308b\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u306f\u3042\u308a\u307e\u305b\u3093\u3002
INFO_REPLICATION_CONFIRM_DISABLE_ALL=\u3059\u3079\u3066\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u7121\u52b9\u306b\u3059\u308b\u3068\u3001\u30d9\u30fc\u30b9 DN \u5185\u306e\u30c7\u30fc\u30bf\u304c\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u3068\u540c\u671f\u3057\u306a\u304f\u306a\u308a\u307e\u3059\u3002\u307e\u305f\u3001\u30b5\u30fc\u30d0\u30fc\u4e0a\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc (\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u304a\u3088\u3073\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8) \u3082\u7121\u52b9\u306b\u306a\u308a\u307e\u3059\u3002\u3059\u3079\u3066\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u7121\u52b9\u306b\u3057\u307e\u3059\u304b ?
INFO_REPLICATION_PROMPT_DISABLE_REPLICATION_SERVER=\u30b5\u30fc\u30d0\u30fc\u4e0a\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc (\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u304a\u3088\u3073\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8 '%d') \u3092\u7121\u52b9\u306b\u3057\u307e\u3059\u304b ?
INFO_REPLICATION_CONFIRM_INITIALIZE_ADS=\u30b5\u30fc\u30d0\u30fc %2$s \u4e0a\u306e\u30d9\u30fc\u30b9 DN %1$s \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u3001\u30b5\u30fc\u30d0\u30fc %3$s \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u4f7f\u7528\u3057\u305f\u521d\u671f\u5316\u304c\u9078\u629e\u3055\u308c\u307e\u3057\u305f\u3002\u3053\u306e\u30d9\u30fc\u30b9 DN \u306f\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u6a5f\u69cb\u304a\u3088\u3073\u4e00\u90e8\u306e\u7ba1\u7406\u30c4\u30fc\u30eb\u306b\u3088\u308a\u4f7f\u7528\u3055\u308c\u308b\u305f\u3081\u3001\u3053\u308c\u3092\u76f4\u63a5\u69cb\u6210\u3059\u308b\u3053\u3068\u306f\u63a8\u5968\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002  \u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_REPLICATION_CONFIRM_INITIALIZE_GENERIC=\u30d9\u30fc\u30b9 DN \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u521d\u671f\u5316\u3059\u308b\u3068\u3001\u305d\u306e\u30d9\u30fc\u30b9 DN \u306e\u65e2\u5b58\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u3059\u3079\u3066\u524a\u9664\u3055\u308c\u307e\u3059\u3002  \u30b5\u30fc\u30d0\u30fc %s \u4e0a\u306e\u9078\u629e\u3057\u305f\u30d9\u30fc\u30b9 DN \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u524a\u9664\u3057\u3066\u3001\u30b5\u30fc\u30d0\u30fc %s \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3067\u7f6e\u304d\u63db\u3048\u307e\u3059\u304b ?
INFO_REPLICATION_CONFIRM_INITIALIZE_ALL_ADS=\u30b5\u30fc\u30d0\u30fc %2$s \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u4f7f\u7528\u3057\u305f\u30d9\u30fc\u30b9 DN %1$s \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u521d\u671f\u5316\u304c\u9078\u629e\u3055\u308c\u307e\u3057\u305f\u3002\u3053\u306e\u30d9\u30fc\u30b9 DN \u306f\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u6a5f\u69cb\u304a\u3088\u3073\u4e00\u90e8\u306e\u7ba1\u7406\u30c4\u30fc\u30eb\u306b\u3088\u308a\u4f7f\u7528\u3055\u308c\u308b\u305f\u3081\u3001\u3053\u308c\u3092\u76f4\u63a5\u69cb\u6210\u3059\u308b\u3053\u3068\u306f\u63a8\u5968\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002  \u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_REPLICATION_CONFIRM_INITIALIZE_ALL_GENERIC=\u30d9\u30fc\u30b9 DN \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u521d\u671f\u5316\u3059\u308b\u3068\u3001\u305d\u306e\u30d9\u30fc\u30b9 DN \u306e\u65e2\u5b58\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u3059\u3079\u3066\u524a\u9664\u3055\u308c\u307e\u3059\u3002  \u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3057\u305f\u30b5\u30fc\u30d0\u30fc\u4e0a\u306e\u9078\u629e\u3057\u305f\u30d9\u30fc\u30b9 DN \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u524a\u9664\u3057\u3066\u3001\u30b5\u30fc\u30d0\u30fc %s \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3067\u7f6e\u304d\u63db\u3048\u307e\u3059\u304b ?
MILD_ERR_REPLICATION_READING_REGISTERED_SERVERS_WARNING=\u65e2\u5b58\u306e\u30b5\u30fc\u30d0\u30fc\u69cb\u6210\u306e\u8aad\u307f\u53d6\u308a\u4e2d\u306b\u6b21\u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:\n%s\n\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30c4\u30fc\u30eb\u306b\u3088\u308a\u3001\u3059\u3079\u3066\u306e\u30b5\u30fc\u30d0\u30fc\u69cb\u6210\u306e\u66f4\u65b0\u304c\u30d9\u30b9\u30c8\u30a8\u30d5\u30a9\u30fc\u30c8\u30e2\u30fc\u30c9\u3067\u8a66\u307f\u3089\u308c\u307e\u3059\u3002  \u305f\u3060\u3057\u3001\u30a8\u30e9\u30fc\u3092\u751f\u6210\u3057\u3066\u3044\u308b\u30b5\u30fc\u30d0\u30fc\u306e\u66f4\u65b0\u306f\u4fdd\u8a3c\u3067\u304d\u307e\u305b\u3093\u3002
INFO_REPLICATION_SERVER_CONFIGURED_WARNING='%s' \u3067\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u3092\u69cb\u6210\u3057\u306a\u3044\u3088\u3046\u306b\u6307\u5b9a\u3057\u307e\u3057\u305f\u304c\u3001\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u3067\u306f\u3059\u3067\u306b\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc (\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8 '%d') \u304c\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u3059\u3002
INFO_REPLICATION_SERVER_CONFIGURED_WARNING_PROMPT='%s' \u3067\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u3092\u69cb\u6210\u3057\u306a\u3044\u3088\u3046\u306b\u6307\u5b9a\u3057\u307e\u3057\u305f\u304c\u3001\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u3067\u306f\u3059\u3067\u306b\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc (\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8 '%d') \u304c\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_REPLICATION_CONNECTING=\u63a5\u7d9a\u3092\u78ba\u7acb\u3057\u3066\u3044\u307e\u3059
INFO_REPLICATION_ENABLE_UPDATING_ADS_CONTENTS=\u767b\u9332\u60c5\u5831\u3092\u78ba\u8a8d\u3057\u3066\u3044\u307e\u3059
INFO_REPLICATION_ENABLE_UPDATING_REPLICATION_SERVER=\u30b5\u30fc\u30d0\u30fc %s \u4e0a\u306e\u30ea\u30e2\u30fc\u30c8\u53c2\u7167\u3092\u66f4\u65b0\u3057\u3066\u3044\u307e\u3059
INFO_REPLICATION_ENABLE_CONFIGURING_REPLICATION_SERVER=\u30b5\u30fc\u30d0\u30fc %s \u4e0a\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8\u3092\u69cb\u6210\u3057\u3066\u3044\u307e\u3059
INFO_REPLICATION_ENABLE_CONFIGURING_BASEDN=\u30b5\u30fc\u30d0\u30fc %2$s \u4e0a\u306e\u30d9\u30fc\u30b9 DN %1$s \u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u69cb\u6210\u3092\u66f4\u65b0\u3057\u3066\u3044\u307e\u3059
INFO_REPLICATION_ENABLE_CONFIGURING_ADS=\u30b5\u30fc\u30d0\u30fc %s \u4e0a\u306e\u767b\u9332\u69cb\u6210\u3092\u66f4\u65b0\u3057\u3066\u3044\u307e\u3059
INFO_ENABLE_REPLICATION_INITIALIZING_ADS=\u30b5\u30fc\u30d0\u30fc %s \u4e0a\u306e\u767b\u9332\u60c5\u5831\u3092\u3001\u30b5\u30fc\u30d0\u30fc %s \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3067\u521d\u671f\u5316\u3057\u3066\u3044\u307e\u3059
INFO_ENABLE_REPLICATION_INITIALIZING_ADS_ALL=\u767b\u9332\u60c5\u5831\u3092\u3001\u30b5\u30fc\u30d0\u30fc %s \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3067\u521d\u671f\u5316\u3057\u3066\u3044\u307e\u3059
INFO_ENABLE_REPLICATION_INITIALIZING_SCHEMA=\u30b5\u30fc\u30d0\u30fc %s \u4e0a\u306e\u30b9\u30ad\u30fc\u30de\u3092\u3001\u30b5\u30fc\u30d0\u30fc %s \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3067\u521d\u671f\u5316\u3057\u3066\u3044\u307e\u3059
###SEVERE_ERR_REPLICATION_ENABLE_SEEDING_TRUSTSTORE=An unexpected error occurred \
### seeding the truststore contents of server %s with truststore of server %s.  \
### Details: %s
###SEVERE_ERR_INITIALIZING_REPLICATIONID_NOT_FOUND=Error initializing.  Could not \
### find replication ID in the server %s for base DN %s.
###SEVERE_ERR_REPLICATION_INITIALIZING_TRIES_COMPLETED=Error initializing.  Could \
### not find a peer to start the initialization after several tries.  Details: %s
###SEVERE_ERR_REPLICATION_CONFIGURING_REPLICATIONSERVER=Error configuring \
### replication port on server %s.
###SEVERE_ERR_REPLICATION_DISABLING_REPLICATIONSERVER=Error disabling \
### replication port on server %s.
###SEVERE_ERR_REPLICATION_CONFIGURING_BASEDN=Error updating replication \
### configuration on base DN %s of server %s.
###SEVERE_ERR_REPLICATION_UPDATING_ADS=Error updating registration information.  \
### Details: %s
###SEVERE_ERR_REPLICATION_READING_ADS=Error reading registration information.  \
### Details: %s
###SEVERE_ERR_REPLICATION_ADS_MERGE_NOT_SUPPORTED=The registry information found \
### in servers %s and %s could not be merged.  Details: %s
###SEVERE_ERR_REPLICATION_ENABLE_COMMON_DOMAIN_ID_ARG=Server %s (base DN '%s') \
### and server %s (base DN '%s') have the same domain ID: %d.
###SEVERE_ERR_REPLICATION_ENABLE_COMMON_DOMAIN_ID=The following servers in the \
### two topologies have the same domain ID%n%s%n%nThe replication topologies \
### cannot be merged.  To fix this problem please refer to the documentation.
###SEVERE_ERR_REPLICATION_ENABLE_COMMON_REPLICATION_SERVER_ID_ARG=Server %s \
### and server %s have the same replication server ID: %d.
###SEVERE_ERR_REPLICATION_ENABLE_COMMON_REPLICATION_SERVER_ID=The following \
### servers in the two topologies have the same replication server ID%n%s%n%nThe \
### replication topologies cannot be merged.  To fix this problem please refer to \
### the documentation.
###SEVERE_ERR_REPLICATION_CANNOT_MERGE_WITH_ERRORS=The errors reading the \
### registry information on %s do not allow to do the merge between the \
### replication topologies.  You will have to fix the following problems before \
### merging the topologies:%n%s
INFO_REPLICATION_MERGING_REGISTRIES_CONFIRMATION=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u69cb\u6210\u53ef\u80fd\u306b\u3059\u308b\u305f\u3081\u306b\u3001\u30b5\u30fc\u30d0\u30fc %s \u3068 %s \u306e\u767b\u9332\u60c5\u5831\u3092\u30de\u30fc\u30b8\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\u7af6\u5408\u304c\u691c\u51fa\u3055\u308c\u305f\u5834\u5408\u3001\u30b5\u30fc\u30d0\u30fc %s \u306e\u60c5\u5831\u306f\u4fdd\u6301\u3055\u308c\u3001\u30b5\u30fc\u30d0\u30fc %s \u306e\u60c5\u5831\u306f\u30aa\u30fc\u30d0\u30fc\u30e9\u30a4\u30c9\u3055\u308c\u307e\u3059\u3002%n\u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_REPLICATION_MERGING_REGISTRIES_DESCRIPTION=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u69cb\u6210\u53ef\u80fd\u306b\u3059\u308b\u305f\u3081\u306b\u3001\u30b5\u30fc\u30d0\u30fc %s \u3068 %s \u306e\u767b\u9332\u60c5\u5831\u3092\u30de\u30fc\u30b8\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\u7af6\u5408\u304c\u691c\u51fa\u3055\u308c\u305f\u5834\u5408\u3001\u30b5\u30fc\u30d0\u30fc %s \u306e\u60c5\u5831\u306f\u4fdd\u6301\u3055\u308c\u3001\u30b5\u30fc\u30d0\u30fc %s \u306e\u60c5\u5831\u306f\u30aa\u30fc\u30d0\u30fc\u30e9\u30a4\u30c9\u3055\u308c\u307e\u3059\u3002
INFO_REPLICATION_MERGING_REGISTRIES_PROGRESS=\u767b\u9332\u60c5\u5831\u3092\u30de\u30fc\u30b8\u3057\u3066\u3044\u307e\u3059
###SEVERE_ERR_REPLICATION_ERROR_READING_CONFIGURATION=Error reading replication \
### configuration of server %s.%nDetails: %s
INFO_REPLICATION_REMOVING_REFERENCES_ON_REMOTE=\u30b5\u30fc\u30d0\u30fc %2$s \u306e\u30d9\u30fc\u30b9 DN %1$s \u4e0a\u306b\u3042\u308b\u53c2\u7167\u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059
INFO_REPLICATION_DISABLING_BASEDN=\u30b5\u30fc\u30d0\u30fc %2$s \u306e\u30d9\u30fc\u30b9 DN %1$s \u4e0a\u306b\u3042\u308b\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u7121\u52b9\u306b\u3057\u3066\u3044\u307e\u3059
INFO_REPLICATION_DISABLING_REPLICATION_SERVER=\u30b5\u30fc\u30d0\u30fc %2$s \u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8 %1$s \u3092\u7121\u52b9\u306b\u3057\u3066\u3044\u307e\u3059
INFO_REPLICATION_STATUS_NO_BASEDNS=\u30d9\u30fc\u30b9 DN \u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u60c5\u5831\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002
INFO_REPLICATION_STATUS_NO_REPLICATION_INFORMATION=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u60c5\u5831\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002
INFO_REPLICATION_STATUS_BASEDN=\u30d9\u30fc\u30b9 DN
INFO_REPLICATION_STATUS_IS_REPLICATED=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
INFO_REPLICATION_STATUS_REPLICATED=%s - \u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u304c\u6709\u52b9
INFO_REPLICATION_STATUS_NOT_REPLICATED=%s - \u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u304c\u7121\u52b9
INFO_REPLICATION_STATUS_HEADER_SERVERPORT=\u30b5\u30fc\u30d0\u30fc
INFO_REPLICATION_STATUS_HEADER_NUMBER_ENTRIES=\u30a8\u30f3\u30c8\u30ea
INFO_REPLICATION_STATUS_HEADER_MISSING_CHANGES=M.C. (1)
INFO_REPLICATION_STATUS_HEADER_AGE_OF_OLDEST_MISSING_CHANGE=A.O.M.C. (2)
INFO_REPLICATION_STATUS_HEADER_REPLICATION_PORT=\u30dd\u30fc\u30c8 (3)
INFO_REPLICATION_STATUS_HEADER_SECURE=\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc (4)
INFO_REPLICATION_STATUS_REPLICATED_LEGEND=[1] \u3053\u306e\u30b5\u30fc\u30d0\u30fc\u4e0a\u3067\u307e\u3060\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u3066\u3044\u306a\u3044 (\u304b\u3064\u3001\u307b\u304b\u306e 1 \u3064\u4ee5\u4e0a\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u9069\u7528\u6e08\u307f\u306e) \u5909\u66f4\u306e\u6570\u3002%n[2] \u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u3066\u3044\u306a\u3044\u6700\u3082\u53e4\u3044\u5909\u66f4\u306e\u7d4c\u904e\u65e5\u6570: \u3053\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u5c4a\u3044\u3066\u3044\u306a\u3044\u6700\u3082\u53e4\u3044\u5909\u66f4\u304c\u751f\u6210\u3055\u308c\u305f\u65e5\u4ed8\u3002%n[3] \u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u4e2d\u306e\u30b5\u30fc\u30d0\u30fc\u9593\u306e\u901a\u4fe1\u306b\u4f7f\u7528\u3059\u308b\u30dd\u30fc\u30c8\u3002%n[4] \u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8\u7d4c\u7531\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u901a\u4fe1\u3092\u6697\u53f7\u5316\u3059\u308b\u304b\u3069\u3046\u304b\u3002
INFO_REPLICATION_STATUS_LABEL_SERVERPORT=\u30b5\u30fc\u30d0\u30fc:
INFO_REPLICATION_STATUS_LABEL_NUMBER_ENTRIES=\u30a8\u30f3\u30c8\u30ea: 
INFO_REPLICATION_STATUS_LABEL_MISSING_CHANGES=\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u3066\u306a\u3044\u5909\u66f4:
INFO_REPLICATION_STATUS_LABEL_AGE_OF_OLDEST_MISSING_CHANGE=\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u3066\u3044\u306a\u3044\u6700\u3082\u53e4\u3044\u5909\u66f4\u306e\u7d4c\u904e\u65e5\u6570: 
INFO_REPLICATION_STATUS_LABEL_REPLICATION_PORT=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8: 
INFO_REPLICATION_STATUS_LABEL_SECURE=\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc: 
INFO_REPLICATION_STATUS_NOT_A_REPLICATION_SERVER_LEGEND=[5] \u30b5\u30fc\u30d0\u30fc\u304c\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u3068\u3057\u3066\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u305b\u3093 (\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u304c\u3042\u308a\u307e\u305b\u3093)\u3002
INFO_REPLICATION_STATUS_NOT_A_REPLICATION_DOMAIN_LEGEND=[6] \u30b5\u30fc\u30d0\u30fc\u306b\u306f\u3001\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u30c7\u30fc\u30bf\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3002
INFO_REPLICATION_STATUS_NOT_A_REPLICATION_SERVER_SHORT=-- (5)
INFO_REPLICATION_STATUS_NOT_A_REPLICATION_DOMAIN_SHORT=-- (6)
INFO_REPLICATION_STATUS_NOT_A_REPLICATION_SERVER_LONG=\u30b5\u30fc\u30d0\u30fc\u304c\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u3068\u3057\u3066\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u305b\u3093 (\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u304c\u3042\u308a\u307e\u305b\u3093)
INFO_REPLICATION_STATUS_NOT_A_REPLICATION_DOMAIN_LONG=\u30b5\u30fc\u30d0\u30fc\u306b\u306f\u3001\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u30c7\u30fc\u30bf\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093
INFO_REPLICATION_STATUS_INDEPENDENT_REPLICATION_SERVERS=\u6b21\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u306f\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc (\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0\u304a\u3088\u3073\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8) \u304c\u3042\u308a\u307e\u3059\u304c\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u30c7\u30fc\u30bf\u3092\u542b\u3080\u30b5\u30fc\u30d0\u30fc\u306b\u306f\u95a2\u9023\u4ed8\u3051\u3089\u308c\u3066\u3044\u307e\u305b\u3093\u3002
INFO_REPLICATION_ONLY_ONE_REPLICATION_SERVER_CONFIRM=1 \u3064\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u306e\u307f\u3092\u6b21\u306e\u30d9\u30fc\u30b9 DN \u7528\u306b\u5b9a\u7fa9\u3057\u307e\u3059:%n%s%n\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30c8\u30dd\u30ed\u30b8\u5185\u3067\u30b7\u30f3\u30b0\u30eb\u30dd\u30a4\u30f3\u30c8\u969c\u5bb3\u3092\u56de\u907f\u3059\u308b\u305f\u3081\u3001\u5c11\u306a\u304f\u3068\u3082 2 \u3064\u4ee5\u4e0a\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc (2 \u3064\u306e\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0) \u3092\u542b\u3081\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u3066\u3044\u307e\u3059\u3002%n\u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_REPLICATION_ONLY_ONE_REPLICATION_SERVER_WARNING=1 \u3064\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u306e\u307f\u3092\u6b21\u306e\u30d9\u30fc\u30b9 DN \u7528\u306b\u5b9a\u7fa9\u3057\u307e\u3059:%n%s%n\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30c8\u30dd\u30ed\u30b8\u5185\u3067\u30b7\u30f3\u30b0\u30eb\u30dd\u30a4\u30f3\u30c8\u969c\u5bb3\u3092\u56de\u907f\u3059\u308b\u305f\u3081\u3001\u5c11\u306a\u304f\u3068\u3082 2 \u3064\u4ee5\u4e0a\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc (2 \u3064\u306e\u66f4\u65b0\u5c65\u6b74\u30ed\u30b0) \u3092\u542b\u3081\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u3066\u3044\u307e\u3059\u3002
###SEVERE_ERR_REPLICATION_NO_REPLICATION_SERVER=No replication server is defined \
### for the following base DN's:%n%s%nAt least one replication server (a \
### changelog) is required in the replication topology.  It is recommended to \
### have at least two replication servers (two changelogs) to avoid a single \
### point of failure in the replication topology.
INFO_REPLICATION_STATUS_SECURITY_ENABLED=\u6709\u52b9
INFO_REPLICATION_STATUS_SECURITY_DISABLED=\u7121\u52b9
INFO_REPLICATION_CRITICAL_ERROR_DETAILS=\u8a73\u7d30: %s
INFO_PROGRESS_PRE_EXTERNAL_INITIALIZATION=\u5916\u90e8\u3067\u521d\u671f\u5316\u3059\u308b\u30d9\u30fc\u30b9 DN %s \u3092\u6e96\u5099\u3057\u3066\u3044\u307e\u3059
INFO_PROGRESS_POST_EXTERNAL_INITIALIZATION=\u30d9\u30fc\u30b9 DN %s \u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u60c5\u5831\u3092\u66f4\u65b0\u3057\u3066\u3044\u307e\u3059
INFO_PROGRESS_PRE_INITIALIZATION_LOCAL_FINISHED_PROCEDURE=\u3053\u308c\u3067\u3001\u30b5\u30fc\u30d0\u30fc %s \u4e0a\u3067\u30d9\u30fc\u30b9 DN \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u521d\u671f\u5316\u3067\u304d\u307e\u3059\u3002\u3053\u306e\u64cd\u4f5c\u306b\u306f import-ldif \u30b3\u30de\u30f3\u30c9\u307e\u305f\u306f\u30d0\u30a4\u30ca\u30ea\u30b3\u30d4\u30fc\u3092\u4f7f\u7528\u3067\u304d\u307e\u3059\u3002%n%n\u521d\u671f\u5316\u304c\u5b8c\u4e86\u3057\u305f\u3089\u3001\u65b0\u3057\u3044\u30d9\u30fc\u30b9 DN \u306b\u5bfe\u3057\u3066\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u6709\u52b9\u306b\u3059\u308b\u305f\u3081\u306b\u3001\u30b5\u30d6\u30b3\u30de\u30f3\u30c9 '%s' \u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_PROGRESS_PRE_INITIALIZATION_FINISHED_PROCEDURE=\u3053\u308c\u3067\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3055\u308c\u305f\u3059\u3079\u3066\u306e\u30b5\u30fc\u30d0\u30fc\u4e0a\u3067\u30d9\u30fc\u30b9 DN \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u521d\u671f\u5316\u3092\u5b9f\u884c\u3067\u304d\u307e\u3059\u3002  \u3053\u306e\u64cd\u4f5c\u306b\u306f import-ldif \u307e\u305f\u306f\u30d0\u30a4\u30ca\u30ea\u30b3\u30d4\u30fc\u3092\u4f7f\u7528\u3067\u304d\u307e\u3059\u3002\u5404\u30b5\u30fc\u30d0\u30fc\u4e0a\u3067\u3001\u540c\u3058 LDIF \u30d5\u30a1\u30a4\u30eb/\u30d0\u30a4\u30ca\u30ea\u30b3\u30d4\u30fc\u3092\u4f7f\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002%n%n\u521d\u671f\u5316\u304c\u5b8c\u4e86\u3057\u305f\u3089\u3001\u65b0\u3057\u3044\u30d9\u30fc\u30b9 DN \u30b3\u30f3\u30c6\u30f3\u30c4\u306b\u5bfe\u3057\u3066\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u6709\u52b9\u306b\u3059\u308b\u305f\u3081\u306b\u3001\u30b5\u30d6\u30b3\u30de\u30f3\u30c9 '%s' \u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_PROGRESS_POST_INITIALIZATION_FINISHED_PROCEDURE=\u521d\u671f\u5316\u5f8c\u306e\u624b\u9806\u304c\u6b63\u5e38\u306b\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002
###SEVERE_ERR_POOLING_PRE_EXTERNAL_INITIALIZATION=Error reading the progress of \
### the operation.
###SEVERE_ERR_POOLING_POST_EXTERNAL_INITIALIZATION=Error reading the progress of \
### the operation.
INFO_ERROR_DURING_PRE_EXTERNAL_INITIALIZATION_NO_LOG=\u64cd\u4f5c\u4e2d\u306b\u4e88\u671f\u3057\u306a\u3044\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002  \u30bf\u30b9\u30af\u72b6\u614b: %s\u3002\u8a73\u7d30\u306f %s \u306e\u30a8\u30e9\u30fc\u30ed\u30b0\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_ERROR_DURING_PRE_EXTERNAL_INITIALIZATION_LOG=\u64cd\u4f5c\u4e2d\u306b\u4e88\u671f\u3057\u306a\u3044\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002  \u6700\u65b0\u30ed\u30b0\u306e\u8a73\u7d30: %s\u3002\u30bf\u30b9\u30af\u72b6\u614b: %s\u3002\u8a73\u7d30\u306f %s \u306e\u30a8\u30e9\u30fc\u30ed\u30b0\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_ERROR_DURING_POST_EXTERNAL_INITIALIZATION_NO_LOG=\u64cd\u4f5c\u4e2d\u306b\u4e88\u671f\u3057\u306a\u3044\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002  \u30bf\u30b9\u30af\u72b6\u614b: %s\u3002\u8a73\u7d30\u306f %s \u306e\u30a8\u30e9\u30fc\u30ed\u30b0\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_ERROR_DURING_POST_EXTERNAL_INITIALIZATION_LOG=\u64cd\u4f5c\u4e2d\u306b\u4e88\u671f\u3057\u306a\u3044\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002  \u6700\u65b0\u30ed\u30b0\u306e\u8a73\u7d30: %s\u3002\u30bf\u30b9\u30af\u72b6\u614b: %s\u3002\u8a73\u7d30\u306f %s \u306e\u30a8\u30e9\u30fc\u30ed\u30b0\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002
###SEVERE_ERR_LAUNCHING_PRE_EXTERNAL_INITIALIZATION=Error launching the operation.
###SEVERE_ERR_LAUNCHING_POST_EXTERNAL_INITIALIZATION=Error launching the operation.
INFO_REPLICATION_SUBCOMMAND_PROMPT=\u3069\u306e\u51e6\u7406\u3092\u5b9f\u884c\u3057\u307e\u3059\u304b?
INFO_REPLICATION_ENABLE_MENU_PROMPT=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u6709\u52b9\u306b\u3059\u308b
INFO_REPLICATION_DISABLE_MENU_PROMPT=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u7121\u52b9\u306b\u3059\u308b
INFO_REPLICATION_INITIALIZE_MENU_PROMPT=1 \u53f0\u306e\u30b5\u30fc\u30d0\u30fc\u3067\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u521d\u671f\u5316
INFO_REPLICATION_INITIALIZE_ALL_MENU_PROMPT=\u3059\u3079\u3066\u306e\u30b5\u30fc\u30d0\u30fc\u3092\u521d\u671f\u5316
INFO_REPLICATION_PRE_EXTERNAL_INITIALIZATION_MENU_PROMPT=\u5916\u90e8\u521d\u671f\u5316\u524d
INFO_REPLICATION_POST_EXTERNAL_INITIALIZATION_MENU_PROMPT=\u5916\u90e8\u521d\u671f\u5316\u5f8c
INFO_REPLICATION_STATUS_MENU_PROMPT=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u72b6\u614b\u3092\u8868\u793a
INFO_REPLICATION_POST_ENABLE_INFO=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u304c\u6b63\u5e38\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3057\u305f\u3002  \u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u304c\u6a5f\u80fd\u3059\u308b\u306b\u306f\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30c8\u3059\u308b\u30d9\u30fc\u30b9 DN \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u521d\u671f\u5316\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059 (%s %s \u3092\u4f7f\u7528\u3057\u3066\u521d\u671f\u5316)\u3002
###SEVERE_ERR_REPLICATION_ERROR_MISSING_NON_INTERACTIVE_ARG=The argument \
### "--%s" must be specified when this application is used non-interactively
INFO_REPLICATION_NON_INTERACTIVE=\u7b49\u4fa1\u306e\u975e\u5bfe\u8a71\u578b\u30b3\u30de\u30f3\u30c9\u884c: %n%s
INFO_REPLICATION_DESCRIPTION_DISPLAY_EQUIVALENT=\u3053\u306e\u30b3\u30de\u30f3\u30c9\u304c\u5bfe\u8a71\u578b\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3055\u308c\u308b\u3068\u304d\u306b\u3001\u6a19\u6e96\u51fa\u529b\u306b\u7b49\u4fa1\u306e\u975e\u5bfe\u8a71\u578b\u5f15\u6570\u3092\u8868\u793a\u3057\u307e\u3059
INFO_REPLICATION_DESCRIPTION_EQUIVALENT_COMMAND_FILE_PATH=\u3053\u306e\u30b3\u30de\u30f3\u30c9\u304c\u5bfe\u8a71\u578b\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3055\u308c\u308b\u3068\u304d\u306b\u3001\u7b49\u4fa1\u306e\u975e\u5bfe\u8a71\u578b\u30b3\u30de\u30f3\u30c9\u304c\u66f8\u304d\u8fbc\u307e\u308c\u308b\u30d5\u30a1\u30a4\u30eb\u3078\u306e\u30d5\u30eb\u30d1\u30b9
INFO_REPLICATION_DESCRIPTION_ADVANCED=\u3053\u306e\u30b3\u30de\u30f3\u30c9\u304c\u5bfe\u8a71\u578b\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3055\u308c\u308b\u5834\u5408\u306f\u3001\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u3066\u8a73\u7d30\u8a2d\u5b9a\u3092\u8868\u793a\u3057\u307e\u3059
MILD_ERR_REPLICATION_ERROR_WRITING_EQUIVALENT_COMMAND_LINE=\u7b49\u4fa1\u306e\u975e\u5bfe\u8a71\u578b\u30b3\u30de\u30f3\u30c9\u884c\u3092\u30d5\u30a1\u30a4\u30eb %s \u306b\u66f8\u304d\u8fbc\u3082\u3046\u3068\u3057\u3066\u3044\u308b\u3068\u304d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u30a8\u30e9\u30fc\u8a73\u7d30: %s
###SEVERE_ERR_REPLICATION_CANNOT_WRITE_EQUIVALENT_COMMAND_LINE_FILE=Cannot \
### write to file %s.  Verify that you have access rights to that file and that \
### you provided the full path of the file
###SEVERE_ERR_REPLICATION_EQUIVALENT_COMMAND_LINE_FILE_DIRECTORY=The \
### specified path %s to write the equivalent command is a directory.  You must \
### specify a path to a file
MILD_WARN_FIRST_REPLICATION_SERVER_ALREADY_CONFIGURED=1 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u306f\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8 '%d' \u3067\u3059\u3067\u306b\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u6307\u5b9a\u3057\u305f\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u30dd\u30fc\u30c8 '%d' \u306f\u7121\u8996\u3055\u308c\u307e\u3057\u305f\u3002
MILD_WARN_SECOND_REPLICATION_SERVER_ALREADY_CONFIGURED=2 \u756a\u76ee\u306e\u30b5\u30fc\u30d0\u30fc\u306f\u3001\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30dd\u30fc\u30c8 '%d' \u3067\u3059\u3067\u306b\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u6307\u5b9a\u3057\u305f\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30b5\u30fc\u30d0\u30fc\u30dd\u30fc\u30c8 '%d' \u306f\u7121\u8996\u3055\u308c\u307e\u3057\u305f\u3002
INFO_CONTROL_PANEL_TITLE=%s \u5236\u5fa1\u30d1\u30cd\u30eb
INFO_PERSON_ICON_DESCRIPTION=\u500b\u4eba\u30aa\u30d6\u30b8\u30a7\u30af\u30c8
INFO_ORGANIZATION_ICON_DESCRIPTION=\u7d44\u7e54
INFO_ORGANIZATIONAL_UNIT_ICON_DESCRIPTION=\u7d44\u7e54\u5358\u4f4d
INFO_STATIC_GROUP_ICON_DESCRIPTION=\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7
INFO_DYNAMIC_GROUP_ICON_DESCRIPTION=\u30c0\u30a4\u30ca\u30df\u30c3\u30af\u30b0\u30eb\u30fc\u30d7
INFO_VIRTUAL_STATIC_GROUP_ICON_DESCRIPTION=\u4eee\u60f3\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7
INFO_PASSWORD_POLICY_ICON_DESCRIPTION=\u30d1\u30b9\u30ef\u30fc\u30c9\u30dd\u30ea\u30b7\u30fc
MILD_ERR_REFERRAL_LIMIT_EXCEEDED=\u30ea\u30d5\u30a7\u30e9\u30eb\u5236\u9650 (%d) \u306b\u9054\u3057\u307e\u3057\u305f\u3002
INFO_INDEX_MUST_BE_REBUILT_CELL_VALUE=\u306f\u3044
INFO_INDEX_MUST_NOT_BE_REBUILT_CELL_VALUE=\u3044\u3044\u3048
MILD_ERR_CANNOT_MODIFY_OBJECTCLASS_AND_RENAME=objectclass \u3092\u5909\u66f4\u3057\u3001\u30a8\u30f3\u30c8\u30ea\u306e\u540d\u524d\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3002
INFO_CTRL_PANEL_CATEGORY_DIRECTORY_DATA=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30c7\u30fc\u30bf
INFO_CTRL_PANEL_ACTION_MANAGE_ENTRIES=\u30a8\u30f3\u30c8\u30ea\u306e\u7ba1\u7406
INFO_CTRL_PANEL_ACTION_NEW_BASEDN=\u65b0\u898f\u30d9\u30fc\u30b9 DN...
INFO_CTRL_PANEL_ACTION_IMPORT_LDIF=LDIF \u306e\u30a4\u30f3\u30dd\u30fc\u30c8...
INFO_CTRL_PANEL_ACTION_EXPORT_LDIF=LDIF \u306e\u30a8\u30af\u30b9\u30dd\u30fc\u30c8...
INFO_CTRL_PANEL_ACTION_BACKUP=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7...
INFO_CTRL_PANEL_ACTION_RESTORE=\u5fa9\u5143...
INFO_CTRL_PANEL_CATEGORY_SCHEMA=\u30b9\u30ad\u30fc\u30de
INFO_CTRL_PANEL_ACTION_MANAGE_SCHEMA=\u30b9\u30ad\u30fc\u30de\u306e\u7ba1\u7406
INFO_CTRL_PANEL_CATEGORY_INDEXES=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9
INFO_CTRL_PANEL_ACTION_MANAGE_INDEXES=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u7ba1\u7406
INFO_CTRL_PANEL_ACTION_VERIFY_INDEXES=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u691c\u8a3c...
INFO_CTRL_PANEL_ACTION_REBUILD_INDEXES=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u518d\u69cb\u7bc9...
INFO_CTRL_PANEL_CATEGORY_RUNTIME_OPTIONS=\u5b9f\u884c\u6642\u30aa\u30d7\u30b7\u30e7\u30f3
INFO_CTRL_PANEL_ACTION_JAVA_SETTINGS=Java \u8a2d\u5b9a
INFO_CTRL_PANEL_ACTION_WINDOWS_SERVICE=Windows \u30b5\u30fc\u30d3\u30b9
MILD_ERR_CTRL_PANEL_DN_NOT_VALID=DN \u304c\u7121\u52b9\u3067\u3059\u3002
MILD_ERR_CTRL_PANEL_DN_NOT_VALID_WITH_VALUE=\u7121\u52b9\u306a dn \u5024: '%s'\u3002
MILD_ERR_CTRL_PANEL_PASSWORD_DO_NOT_MATCH=\u6307\u5b9a\u3057\u305f\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002
MILD_ERR_CTRL_PANEL_ATTRIBUTE_REQUIRED=\u5c5e\u6027 %s \u306b\u5024\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_CONN_HANDLER_LDAP=LDAP
INFO_CTRL_PANEL_CONN_HANDLER_LDAPS=LDAPS
INFO_CTRL_PANEL_CONN_HANDLER_LDAP_STARTTLS=LDAP (StartTLS \u3092\u8a31\u53ef)
INFO_CTRL_PANEL_CONN_HANDLER_JMX=JMX
INFO_CTRL_PANEL_CONN_HANDLER_JMXS=JMX (\u30bb\u30ad\u30e5\u30a2)
INFO_CTRL_PANEL_CONN_HANDLER_LDIF=LDIF
INFO_CTRL_PANEL_CONN_HANDLER_SNMP=SNMP
INFO_CTRL_PANEL_CONN_HANDLER_REPLICATION=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
INFO_CTRL_PANEL_CONN_HANDLER_REPLICATION_SECURE=\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3 (\u30bb\u30ad\u30e5\u30a2)
INFO_CTRL_PANEL_CONN_HANDLER_ADMINISTRATION=\u7ba1\u7406\u30b3\u30cd\u30af\u30bf
INFO_CTRL_PANEL_CONN_HANDLER_OTHER=\u305d\u306e\u4ed6
INFO_CTRL_PANEL_INDEX_SUBSTRING=\u90e8\u5206\u6587\u5b57\u5217
INFO_CTRL_PANEL_INDEX_PRESENCE=\u30d7\u30ec\u30bc\u30f3\u30b9
INFO_CTRL_PANEL_INDEX_EQUALITY=\u7b49\u4fa1
INFO_CTRL_PANEL_INDEX_APPROXIMATE=\u8fd1\u4f3c
INFO_CTRL_PANEL_INDEX_ORDERING=\u9806\u5e8f\u4ed8\u3051
INFO_CTRL_PANEL_INDEXES_HEADER_ATTRIBUTE=\u5c5e\u6027
INFO_CTRL_PANEL_INDEXES_HEADER_INDEX_TYPES=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u30bf\u30a4\u30d7
INFO_CTRL_PANEL_INDEXES_HEADER_ENTRY_LIMIT=\u30a8\u30f3\u30c8\u30ea\u5236\u9650
INFO_CTRL_PANEL_INDEXES_HEADER_REQUIRES_REBUILD=\u518d\u69cb\u7bc9\u304c\u5fc5\u8981
INFO_CTRL_PANEL_VLV_INDEXES_HEADER_NAME=\u540d\u524d
INFO_CTRL_PANEL_VLV_INDEXES_HEADER_BASE_DN=\u30d9\u30fc\u30b9 DN
INFO_CTRL_PANEL_VLV_INDEXES_HEADER_SCOPE=\u6709\u52b9\u7bc4\u56f2
INFO_CTRL_PANEL_VLV_INDEXES_HEADER_FILTER=\u30d5\u30a3\u30eb\u30bf
INFO_CTRL_PANEL_VLV_INDEXES_HEADER_SORT_ORDER=\u30bd\u30fc\u30c8\u9806\u5e8f
INFO_CTRL_PANEL_VLV_INDEXES_HEADER_REQUIRES_REBUILD=\u518d\u69cb\u7bc9\u304c\u5fc5\u8981
INFO_CTRL_PANEL_BINARY_VALUE=- \u30d0\u30a4\u30ca\u30ea\u5024 -
INFO_CTRL_PANEL_VALUE_IN_BASE64=- Base64 \u306e\u5024 -
#
# Note that the following property contains line breaks in HTML format (<br>)
#
INFO_CTRL_PANEL_INCOMPATIBLE_TASKS=\u6b21\u306e\u30bf\u30b9\u30af\u304c\u5b9f\u884c\u4e2d\u3067\u3059: %s<br>\u30bf\u30b9\u30af %s \u3068\u540c\u6642\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093
INFO_CTRL_PANEL_ADD_TO_GROUP_TASK_DESCRIPTION=\u30b0\u30eb\u30fc\u30d7\u306b\u30a8\u30f3\u30c8\u30ea\u3092\u8ffd\u52a0\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_ADDING_TO_GROUP=\u30b0\u30eb\u30fc\u30d7 '%s' \u3092\u66f4\u65b0\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_MODIFY=\u30a8\u30f3\u30c8\u30ea\u3092\u5909\u66f4\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_RENAME=\u30a8\u30f3\u30c8\u30ea\u306e\u540d\u524d\u3092\u5909\u66f4\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_DELETE_BASE_DN=\u30d9\u30fc\u30b9 DN \u3092\u524a\u9664\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_DELETE_BACKEND=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u3092\u524a\u9664\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_DELETE_DOMAIN=\u30d9\u30fc\u30b9 DN '%s' \u3067\u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u7121\u52b9\u306b\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_MODIFY_INDEX=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u5909\u66f4\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_MODIFY_VLV_INDEX=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u5909\u66f4\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_CREATE_BASE_DN=\u8a2d\u5b9a\u3092\u66f4\u65b0\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_CREATE_ADDITIONAL_INDEXES=\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u751f\u6210\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_CREATE_INDEX=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_CREATE_VLV_INDEX=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
#
# Note that the following property contains line breaks in HTML format (<br>)
#
INFO_CTRL_PANEL_EQUIVALENT_ACTION_TO_UPDATE_JAVA_PROPERTIES=\u30b3\u30de\u30f3\u30c9\u884c\u304b\u3089 Java \u8a2d\u5b9a\u3092\u66f4\u65b0\u3059\u308b\u540c\u7b49\u306e\u624b\u9806\u306f\u3001\u6b21\u306e\u3068\u304a\u308a\u3067\u3059: <br> \u6b21\u306e\u30d5\u30a1\u30a4\u30eb\u3067\u30d7\u30ed\u30d1\u30c6\u30a3\u30fc\u3092\u7de8\u96c6\u3057\u307e\u3059:<br><b>%s</b><br>\u6b21\u306e\u30b3\u30de\u30f3\u30c9\u884c\u3092\u5b9f\u884c\u3057\u307e\u3059:<br><b>%s</b><br><br>
INFO_CTRL_PANEL_DELETE_BASE_DN_DESCRIPTION=\u30d9\u30fc\u30b9 DN '%s' \u3092\u524a\u9664\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_DELETE_BASE_DNS_DESCRIPTION=\u30d9\u30fc\u30b9 DN %s \u3092\u524a\u9664\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_DELETE_BACKEND_DESCRIPTION=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u3092\u524a\u9664\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_DELETE_BACKENDS_DESCRIPTION=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u3092\u524a\u9664\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_DELETING_BASE_DN=\u30d9\u30fc\u30b9 DN '%s' \u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_DELETING_BASE_DNS=\u30d9\u30fc\u30b9 DN %s \u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_DELETING_BACKEND=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_DELETING_DOMAIN=\u30d9\u30fc\u30b9 DN '%s' \u306e\u30ec\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u7121\u52b9\u306b\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_DELETE_ENTRY_TASK_DESCRIPTION=\u30a8\u30f3\u30c8\u30ea\u3092\u524a\u9664\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_ENTRIES_DELETED=%d \u500b\u306e\u30a8\u30f3\u30c8\u30ea\u304c\u524a\u9664\u3055\u308c\u307e\u3057\u305f\u3002
INFO_CTRL_PANEL_DELETING_ENTRY_SUMMARY='%s' \u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_DELETE_ENTRY=\u30a8\u30f3\u30c8\u30ea '%s' \u3092\u524a\u9664\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_DELETE_INDEX=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u524a\u9664\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_DELETE_INDEX_TASK_DESCRIPTION=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u524a\u9664\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_DELETE_INDEX_IN_BACKENDS_TASK_DESCRIPTION=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u524a\u9664\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_DELETING_INDEX=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_DELETING_VLV_INDEX=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_DELETE_SCHEMA_ELEMENT_TASK_DESCRIPTION=\u30b9\u30ad\u30fc\u30de\u8981\u7d20\u3092\u524a\u9664\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_DELETING_OBJECTCLASS=objectclass '%s' \u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_DELETING_ATTRIBUTE=\u5c5e\u6027 '%s' \u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059
MILD_ERR_CTRL_PANEL_ERROR_UPDATING_SCHEMA=\u30b9\u30ad\u30fc\u30de\u306e\u66f4\u65b0\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u7d30: %s
MILD_ERR_CTRL_PANEL_ERROR_UPDATING_CONFIGURATION=\u8a2d\u5b9a\u306e\u66f4\u65b0\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u7d30: %s
MILD_ERR_CTRL_PANEL_ERROR_CHECKING_ENTRY=\u30a8\u30f3\u30c8\u30ea\u306e\u691c\u67fb\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u7d30: %s
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_DELETE_SCHEMA_ELEMENT_OFFLINE=\u3053\u306e\u64cd\u4f5c\u306f\u3001\u30d5\u30a1\u30a4\u30eb '%s' \u306e\u30b9\u30ad\u30fc\u30de\u5b9a\u7fa9\u30a8\u30f3\u30c8\u30ea (cn=schema) \u304b\u3089\u6b21\u306e\u5c5e\u6027\u3092\u524a\u9664\u3059\u308b\u306e\u3068\u540c\u7b49\u3067\u3059\u3002
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_DELETE_SCHEMA_ELEMENT_ONLINE=\u30b9\u30ad\u30fc\u30de\u3092\u66f4\u65b0\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_MODIFY_ENTRY_TASK_DESCRIPTION=\u30a8\u30f3\u30c8\u30ea '%s' \u3092\u5909\u66f4\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_RENAMING_ENTRY=\u30a8\u30f3\u30c8\u30ea\u306e\u540d\u524d\u3092 '%s' \u304b\u3089 '%s' \u306b\u5909\u66f4\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_MODIFYING_ENTRY=\u30a8\u30f3\u30c8\u30ea '%s' \u3092\u5909\u66f4\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_NEW_ENTRY_TASK_DESCRIPTION=\u65b0\u898f\u30a8\u30f3\u30c8\u30ea '%s'\u3002
INFO_CTRL_PANEL_CREATING_ENTRY=\u30a8\u30f3\u30c8\u30ea '%s' \u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_CREATE_ENTRY=\u30a8\u30f3\u30c8\u30ea\u3092\u4f5c\u6210\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_REBUILD_INDEX_TASK_DESCRIPTION='%s' \u3067\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u518d\u69cb\u7bc9\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_REBUILD_INDEX='%s' \u3067\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u518d\u69cb\u7bc9\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_ENABLE_BACKEND=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u3092\u6709\u52b9\u306b\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_DISABLE_BACKEND=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u3092\u7121\u52b9\u306b\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_ENABLING_BACKEND=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u3092\u6709\u52b9\u306b\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_DISABLING_BACKEND=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u3092\u7121\u52b9\u306b\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_RESET_USER_PASSWORD_TASK_DESCRIPTION=\u30a8\u30f3\u30c8\u30ea '%s' \u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u30ea\u30bb\u30c3\u30c8\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_RESETTING_USER_PASSWORD=\u30a8\u30f3\u30c8\u30ea '%s' \u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u66f4\u65b0\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_RESET_PASSWORD=\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u30ea\u30bb\u30c3\u30c8\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_RESTART_SERVER_TASK_DESCRIPTION=\u30b5\u30fc\u30d0\u30fc\u3092\u518d\u8d77\u52d5\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_START_SERVER_TASK_DESCRIPTION=\u30b5\u30fc\u30d0\u30fc\u3092\u8d77\u52d5\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_STOP_SERVER_TASK_DESCRIPTION=\u30b5\u30fc\u30d0\u30fc\u3092\u505c\u6b62\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_STOP_SERVER=\u30b5\u30fc\u30d0\u30fc\u3092\u505c\u6b62\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_START_SERVER=\u30b5\u30fc\u30d0\u30fc\u3092\u8d77\u52d5\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_SERVER_STOPPED=\u30b5\u30fc\u30d0\u30fc\u304c\u505c\u6b62\u3057\u307e\u3057\u305f
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_ADD_SCHEMA_ELEMENT_OFFLINE=\u3053\u306e\u64cd\u4f5c\u306f\u3001\u30d5\u30a1\u30a4\u30eb '%s' \u306e\u30b9\u30ad\u30fc\u30de\u5b9a\u7fa9\u30a8\u30f3\u30c8\u30ea (cn=schema) \u306b\u6b21\u306e\u5c5e\u6027\u3092\u8ffd\u52a0\u3059\u308b\u306e\u3068\u540c\u7b49\u3067\u3059\u3002
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_ADD_SCHEMA_ENTRY_OFFLINE=\u3053\u306e\u64cd\u4f5c\u306f\u3001\u30d5\u30a1\u30a4\u30eb '%s' \u306b\u6b21\u306e\u30a8\u30f3\u30c8\u30ea\u3092\u8ffd\u52a0\u3059\u308b\u306e\u3068\u540c\u7b49\u3067\u3059\u3002
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_ADD_SCHEMA_ELEMENT_ONLINE=\u30b9\u30ad\u30fc\u30de\u3092\u66f4\u65b0\u3059\u308b\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
MILD_ERR_CTRL_PANEL_BACKEND_NOT_FOUND_SUMMARY=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_CTRL_PANEL_BACKEND_NOT_FOUND_DETAILS=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u8a73\u7d30\u306f\u30e1\u30a4\u30f3\u30d1\u30cd\u30eb\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_SERVER_NOT_RUNNING_SUMMARY=\u30b5\u30fc\u30d0\u30fc\u304c\u7a3c\u50cd\u3057\u3066\u3044\u307e\u305b\u3093
INFO_CTRL_PANEL_SERVER_NOT_RUNNING_DETAILS=\u30c7\u30fc\u30bf\u3092\u53c2\u7167\u3059\u308b\u306b\u306f\u3001\u30b5\u30fc\u30d0\u30fc\u3092\u7a3c\u50cd\u3057\u3066\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_INDICATES_REQUIRED_FIELD_LABEL=\u5fc5\u9808\u30d5\u30a3\u30fc\u30eb\u30c9\u3092\u793a\u3057\u307e\u3059
INFO_CTRL_PANEL_INDEX_REBUILD_REQUIRED_SUMMARY=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u518d\u69cb\u7bc9\u304c\u5fc5\u8981
#
# Note that the following two properties contain line breaks in HTML format
# (<br>)
#
INFO_CTRL_PANEL_INDEX_REBUILD_REQUIRED_OFFLINE_DETAILS='%s' \u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u6210\u304c\u6b63\u5e38\u306b\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002\u8a2d\u5b9a\u3092\u53cd\u6620\u3059\u308b\u306b\u306f\u3001\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u751f\u6210\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\u3053\u308c\u306f\u3001\u300c\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u518d\u69cb\u7bc9\u300d\u30c4\u30fc\u30eb\u3092\u4f7f\u7528\u3059\u308b\u304b\u3001\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u518d\u30a4\u30f3\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<br><br> \u4eca\u3059\u3050\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u518d\u69cb\u7bc9\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_INDEX_REBUILD_REQUIRED_ONLINE_DETAILS='%s' \u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u6210\u304c\u6b63\u5e38\u306b\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002\u8a2d\u5b9a\u3092\u53cd\u6620\u3059\u308b\u306b\u306f\u3001\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u751f\u6210\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\u3053\u308c\u306f\u3001\u300c\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u518d\u69cb\u7bc9\u300d\u30c4\u30fc\u30eb\u3092\u4f7f\u7528\u3059\u308b\u304b\u3001\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u518d\u30a4\u30f3\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<br>\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u518d\u69cb\u7bc9\u4e2d\u3001\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u306f\u7121\u52b9\u306b\u306a\u308a\u3001\u305d\u306e\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u306e\u3069\u308c\u306b\u3082\u30a2\u30af\u30bb\u30b9\u3067\u304d\u306a\u304f\u306a\u308a\u307e\u3059\u3002<br><br> \u4eca\u3059\u3050\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u518d\u69cb\u7bc9\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_SUMMARY=\u8a8d\u8a3c\u304c\u5fc5\u8981
INFO_CTRL_PANEL_EQUIVALENT_COMMAND_LINE=\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_REBUILDING_INDEXES_SUMMARY=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u518d\u69cb\u7bc9\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_REBUILDING_INDEXES_SUCCESSFUL_SUMMARY=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u518d\u69cb\u7bc9\u5b8c\u4e86
INFO_CTRL_PANEL_REBUILDING_INDEXES_SUCCESSFUL_DETAILS=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u6b63\u5e38\u306b\u518d\u69cb\u7bc9\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_REBUILDING_INDEXES_ERROR_SUMMARY=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u518d\u69cb\u7bc9\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_REBUILDING_INDEXES_ERROR_DETAILS= \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u518d\u69cb\u7bc9\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9: %d.
INFO_CTRL_PANEL_DETAILS_THROWABLE=\u8a73\u7d30: %s
INFO_CTRL_PANEL_STARTING_SERVER_SUMMARY=\u30b5\u30fc\u30d0\u30fc\u3092\u8d77\u52d5\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_STARTING_SERVER_SUCCESSFUL_SUMMARY=\u8d77\u52d5\u5b8c\u4e86
INFO_CTRL_PANEL_STARTING_SERVER_SUCCESSFUL_DETAILS=\u30b5\u30fc\u30d0\u30fc\u304c\u6b63\u5e38\u306b\u8d77\u52d5\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_STARTING_SERVER_ERROR_SUMMARY=\u30b5\u30fc\u30d0\u30fc\u306e\u8d77\u52d5\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_STARTING_SERVER_ERROR_DETAILS=\u30b5\u30fc\u30d0\u30fc\u306e\u8d77\u52d5\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9: %d
INFO_CTRL_PANEL_RESTARTING_SERVER_SUCCESSFUL_SUMMARY=\u518d\u8d77\u52d5\u5b8c\u4e86
INFO_CTRL_PANEL_RESTARTING_SERVER_SUCCESSFUL_DETAILS=\u30b5\u30fc\u30d0\u30fc\u304c\u6b63\u5e38\u306b\u518d\u8d77\u52d5\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_RESTARTING_SERVER_ERROR_SUMMARY=\u30b5\u30fc\u30d0\u30fc\u306e\u518d\u8d77\u52d5\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_RESTARTING_SERVER_ERROR_DETAILS=\u30b5\u30fc\u30d0\u30fc\u306e\u518d\u8d77\u52d5\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9: %d
INFO_CTRL_PANEL_STOPPING_SERVER_SUMMARY=\u30b5\u30fc\u30d0\u30fc\u3092\u505c\u6b62\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_STOPPING_SERVER_SUCCESSFUL_SUMMARY=\u505c\u6b62\u5b8c\u4e86
INFO_CTRL_PANEL_STOPPING_SERVER_SUCCESSFUL_DETAILS=\u30b5\u30fc\u30d0\u30fc\u304c\u6b63\u5e38\u306b\u505c\u6b62\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_STOPPING_SERVER_ERROR_SUMMARY=\u30b5\u30fc\u30d0\u30fc\u306e\u505c\u6b62\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_STOPPING_SERVER_ERROR_DETAILS=\u30b5\u30fc\u30d0\u30fc\u306e\u505c\u6b62\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9: %d
INFO_CTRL_PANEL_CLOSE_WINDOW_WHEN_OPERATION_COMPLETES_LABEL=\u64cd\u4f5c\u5b8c\u4e86\u6642\u306b\u30a6\u30a3\u30f3\u30c9\u30a6\u3092\u9589\u3058\u308b
INFO_CTRL_PANEL_PLEASE_WAIT_SUMMARY=\u304a\u5f85\u3061\u304f\u3060\u3055\u3044...
INFO_CTRL_PANEL_PROGRESS_DIALOG_DETAILS_LABEL=\u8a73\u7d30: 
INFO_CTRL_PANEL_START_SERVER_PROGRESS_DLG_TITLE=\u30b5\u30fc\u30d0\u30fc\u306e\u8d77\u52d5
INFO_CTRL_PANEL_STOP_SERVER_PROGRESS_DLG_TITLE=\u30b5\u30fc\u30d0\u30fc\u306e\u505c\u6b62
INFO_CTRL_PANEL_RESTART_SERVER_PROGRESS_DLG_TITLE=\u30b5\u30fc\u30d0\u30fc\u306e\u518d\u8d77\u52d5
INFO_CTRL_PANEL_CONFIRMATION_REQUIRED_SUMMARY=\u78ba\u8a8d\u304c\u5fc5\u8981
#
# Note that the following two properties contain line breaks in HTML format
# (<br>)
#
INFO_CTRL_PANEL_CONFIRM_STOP_SERVER_DETAILS=\u30b5\u30fc\u30d0\u30fc\u304c\u505c\u6b62\u3057\u305f\u5834\u5408\u3001\u305d\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u5bfe\u3057\u3066\u958b\u3044\u3066\u3044\u308b\u3059\u3079\u3066\u306e\u63a5\u7d9a\u304c\u9589\u3058\u3089\u308c\u3001\u30b5\u30fc\u30d0\u30fc\u306f\u4f7f\u7528\u3067\u304d\u306a\u304f\u306a\u308a\u307e\u3059\u3002<br><br>\u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_CONFIRM_RESTART_SERVER_DETAILS=\u518d\u8d77\u52d5\u51e6\u7406\u6642\u306b\u306f\u3001\u305d\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u5bfe\u3057\u3066\u958b\u3044\u3066\u3044\u308b\u3059\u3079\u3066\u306e\u63a5\u7d9a\u304c\u9589\u3058\u3089\u308c\u3001\u30b5\u30fc\u30d0\u30fc\u306f\u4f7f\u7528\u3067\u304d\u306a\u304f\u306a\u308a\u307e\u3059\u3002<br><br>\u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_LOADING_PANEL_SUMMARY=\u30d1\u30cd\u30eb\u3092\u30ed\u30fc\u30c9\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_CHECKING_SUMMARY=\u691c\u67fb\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_REFRESHING_LIST_SUMMARY=\u30ea\u30b9\u30c8\u3092\u518d\u8868\u793a\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_READING_SUMMARY=\u8aad\u307f\u53d6\u3063\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_READING_JAVA_SETTINGS_SUMMARY=Java \u8a2d\u5b9a\u3092\u8aad\u307f\u53d6\u3063\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_VERIFYING_AUTHENTICATION_SUMMARY=\u8a8d\u8a3c\u3092\u691c\u8a3c\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_READING_CONFIGURATION_SUMMARY=\u8a2d\u5b9a\u3092\u8aad\u307f\u53d6\u3063\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_BASE_DN_LABEL=\u30d9\u30fc\u30b9 DN:
INFO_CTRL_PANEL_FILTER_LABEL=\u30d5\u30a3\u30eb\u30bf:
INFO_CTRL_PANEL_APPLY_BUTTON_LABEL=\u9069\u7528
INFO_CTRL_PANEL_CLOSE_BUTTON_LABEL=\u9589\u3058\u308b
INFO_CTRL_PANEL_CANCEL_BUTTON_LABEL=\u53d6\u6d88\u3057
INFO_CTRL_PANEL_OK_BUTTON_LABEL=OK
INFO_CTRL_PANEL_SAVE_BUTTON_LABEL=\u4fdd\u5b58
INFO_CTRL_PANEL_DO_NOT_SAVE_BUTTON_LABEL=\u4fdd\u5b58\u3057\u306a\u3044
INFO_CTRL_PANEL_INVALID_DN_DETAILS=\u5024 %s \u306f\u6709\u52b9\u306a DN \u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 \u8a73\u7d30: %s
INFO_CTRL_PANEL_NO_BASE_DN_SELECTED=\u30d9\u30fc\u30b9 DN \u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
INFO_CTRL_PANEL_INVALID_FILTER_DETAILS=\u6307\u5b9a\u3055\u308c\u305f\u30d5\u30a3\u30eb\u30bf\u304c\u6709\u52b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u8a73\u7d30: %s
INFO_CTRL_PANEL_NO_MATCHES_FOUND_LABEL=1 \u4ef6\u3082\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f
INFO_CTRL_PANEL_MAXIMUM_CHILDREN_DISPLAYED=\u6700\u5927 %d \u500b\u306e\u5b50\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002\u30d5\u30a3\u30eb\u30bf\u306e\u9069\u7528\u3092\u8a66\u884c\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_SUBSTRING_SEARCH_INLINE_HELP=\u90e8\u5206\u6587\u5b57\u5217\u691c\u7d22\u7528\u306e\u300c*\u300d\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_TO_BROWSE_SUMMARY=\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u3057\u3066\u3044\u307e\u3059\u3002\u30c7\u30fc\u30bf\u3092\u53c2\u7167\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_AUTHENTICATION_SERVER_MUST_RUN_TO_BROWSE_SUMMARY=\u30c7\u30fc\u30bf\u3092\u53c2\u7167\u3059\u308b\u306b\u306f\u3001\u30b5\u30fc\u30d0\u30fc\u3092\u7a3c\u50cd\u3057\u3066\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_ERROR_CONNECT_BROWSE_SUMMARY=\u30c7\u30fc\u30bf\u3092\u8aad\u307f\u53d6\u308b\u305f\u3081\u306b\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u63a5\u7d9a\u306e\u8a66\u884c\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u7d30: %s
INFO_CTRL_PANEL_ERROR_CONNECT_BROWSE_DETAILS=\u63a5\u7d9a\u30a8\u30e9\u30fc
INFO_CTRL_PANEL_ATTRIBUTE_LABEL=\u5c5e\u6027:
INFO_CTRL_PANEL_ENTRY_LIMIT_LABEL=\u30a8\u30f3\u30c8\u30ea\u5236\u9650:
INFO_CTRL_PANEL_INDEX_TYPE_LABEL=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u30bf\u30a4\u30d7:
INFO_CTRL_PANEL_APPROXIMATE_LABEL=\u8fd1\u4f3c
INFO_CTRL_PANEL_EQUALITY_LABEL=\u7b49\u4fa1
INFO_CTRL_PANEL_ORDERING_LABEL=\u9806\u5e8f\u4ed8\u3051
INFO_CTRL_PANEL_PRESENCE_LABEL=\u30d7\u30ec\u30bc\u30f3\u30b9
INFO_CTRL_PANEL_SUBSTRING_LABEL=\u90e8\u5206\u6587\u5b57\u5217
INFO_CTRL_PANEL_DELETE_INDEX_LABEL=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u524a\u9664...
INFO_CTRL_PANEL_SAVE_CHANGES_LABEL=\u5909\u66f4\u306e\u4fdd\u5b58
INFO_CTRL_PANEL_NON_CONFIGURABLE_INDEX_LABEL=\u3053\u308c\u306f\u69cb\u6210\u4e0d\u53ef\u306a\u5185\u90e8\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3067\u3059
#
# Note that the following property contains line breaks in HTML format (<br>)
# and must begin with <html>
#
INFO_CTRL_PANEL_INDEX_MODIFIED_LABEL=<html>\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002<br>\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u518d\u69cb\u7bc9\u304c\u5fc5\u8981\u3067\u3059 (\u300c\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u518d\u69cb\u7bc9\u300d\u307e\u305f\u306f\u300c\u30a4\u30f3\u30dd\u30fc\u30c8\u300d\u3092\u4f7f\u7528)\u3002
INFO_CTRL_PANEL_CUSTOM_ATTRIBUTES_LABEL=\u30ab\u30b9\u30bf\u30e0\u5c5e\u6027
INFO_CTRL_PANEL_STANDARD_ATTRIBUTES_LABEL=\u6a19\u6e96\u5c5e\u6027
INFO_CTRL_PANEL_INDEX_DETAILS_LABEL=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u8a73\u7d30
MILD_ERR_CTRL_PANEL_INVALID_ENTRY_LIMIT_LABEL=\u30a8\u30f3\u30c8\u30ea\u5236\u9650\u306f\u3001%d \u304b\u3089 %d \u307e\u3067\u306e\u9593\u306e\u6574\u6570\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_NO_INDEX_TYPE_SELECTED=\u5c11\u306a\u304f\u3068\u3082 1 \u3064\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u30bf\u30a4\u30d7\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044 (\u8fd1\u4f3c\u3001\u7b49\u4fa1\u3001\u9806\u5e8f\u4ed8\u3051\u3001\u5b9f\u5728\u3001\u307e\u305f\u306f\u90e8\u5206\u6587\u5b57\u5217)\u3002
###SEVERE_ERR_CTRL_PANEL_UNEXPECTED_DETAILS=Unexpected error. Details: %s
MILD_ERR_CTRL_PANEL_ENTRY_ALREADY_EXISTS=\u30a8\u30f3\u30c8\u30ea '%s' \u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_CREATING_NEW_ENTRY_SUMMARY=\u65b0\u898f\u30a8\u30f3\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_CREATING_NEW_ENTRY_SUCCESSFUL_SUMMARY=\u30a8\u30f3\u30c8\u30ea\u304c\u4f5c\u6210\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_CREATING_NEW_ENTRY_SUCCESSFUL_DETAILS=\u30a8\u30f3\u30c8\u30ea\u304c\u6b63\u5e38\u306b\u4f5c\u6210\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_CREATING_NEW_ENTRY_ERROR_SUMMARY=\u65b0\u898f\u30a8\u30f3\u30c8\u30ea\u306e\u4f5c\u6210\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_CREATING_NEW_ENTRY_ERROR_DETAILS=\u65b0\u898f\u30a8\u30f3\u30c8\u30ea\u306e\u4f5c\u6210\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
INFO_CTRL_PANEL_NEW_ENTRY_REQUIRES_SERVER_RUNNING=\u30a8\u30f3\u30c8\u30ea\u3092\u4f5c\u6210\u3059\u308b\u306b\u306f\u3001\u30b5\u30fc\u30d0\u30fc\u3092\u7a3c\u50cd\u3057\u3066\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_NEW_ENTRY_REQUIRES_AUTHENTICATION=\u30a8\u30f3\u30c8\u30ea\u3092\u4f5c\u6210\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_LDIF_REPRESENTATION_REQUIRED=\u30a8\u30f3\u30c8\u30ea\u306e LDIF \u8868\u73fe\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_OBJECTCLASS_FOR_ENTRY_REQUIRED=\u30a8\u30f3\u30c8\u30ea\u306e objectclass \u5024\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_FILTER_INLINE_HELP_LABEL=\u4f8b: (|(cn=*)(sn=*))
INFO_CTRL_PANEL_SUBTREE_INLINE_HELP_LABEL=\u4f8b: dc=subtree,dc=example,dc=com
INFO_CTRL_PANEL_VLV_INDEX_DETAILS_LABEL=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u8a73\u7d30
INFO_CTRL_PANEL_VLV_INDEX_NAME_LABEL=\u540d\u524d:
INFO_CTRL_PANEL_VLV_INDEX_BASE_DN_LABEL=\u30d9\u30fc\u30b9 DN:
INFO_CTRL_PANEL_VLV_INDEX_FILTER_LABEL=\u30d5\u30a3\u30eb\u30bf:
INFO_CTRL_PANEL_VLV_INDEX_SEARCH_SCOPE_LABEL=\u691c\u7d22\u7bc4\u56f2:
INFO_CTRL_PANEL_VLV_INDEX_SEARCH_FILTER_LABEL=\u691c\u7d22\u30d5\u30a3\u30eb\u30bf:
INFO_CTRL_PANEL_VLV_INDEX_SORT_ORDER_LABEL=\u30bd\u30fc\u30c8\u9806\u5e8f:
INFO_CTRL_PANEL_VLV_INDEX_MAX_BLOCK_SIZE_LABEL=\u6700\u5927\u30d6\u30ed\u30c3\u30af\u30b5\u30a4\u30ba:
INFO_CTRL_PANEL_VLV_INDEX_BASE_OBJECT_LABEL=\u30d9\u30fc\u30b9\u30aa\u30d6\u30b8\u30a7\u30af\u30c8
INFO_CTRL_PANEL_VLV_INDEX_SINGLE_LEVEL_LABEL=\u5358\u4e00\u30ec\u30d9\u30eb
INFO_CTRL_PANEL_VLV_INDEX_SUBORDINATE_SUBTREE_LABEL=\u4e0b\u4f4d\u30b5\u30d6\u30c4\u30ea\u30fc
INFO_CTRL_PANEL_VLV_INDEX_WHOLE_SUBTREE_LABEL=\u30b5\u30d6\u30c4\u30ea\u30fc\u5168\u4f53
INFO_CTRL_PANEL_VLV_INDEX_ADD_BUTTON_LABEL=\u8ffd\u52a0
INFO_CTRL_PANEL_VLV_INDEX_REMOVE_BUTTON_LABEL=\u524a\u9664
INFO_CTRL_PANEL_VLV_INDEX_MOVE_UP_BUTTON_LABEL=\u4e0a\u306b\u79fb\u52d5
INFO_CTRL_PANEL_VLV_INDEX_MOVE_DOWN_BUTTON_LABEL=\u4e0b\u306b\u79fb\u52d5
INFO_CTRL_PANEL_VLV_OTHER_BASE_DN_LABEL=\u305d\u306e\u4ed6:
INFO_CTRL_PANEL_VLV_ASCENDING_LABEL=(\u6607\u9806)
INFO_CTRL_PANEL_VLV_DESCENDING_LABEL=(\u964d\u9806)
MILD_ERR_CTRL_PANEL_SCHEMA_NOT_FOUND_SUMMARY=\u30b9\u30ad\u30fc\u30de\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f
MILD_ERR_CTRL_PANEL_SCHEMA_NOT_FOUND_DETAILS=\u30b9\u30ad\u30fc\u30de\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u8a73\u7d30\u306f\u30e1\u30a4\u30f3\u30d1\u30cd\u30eb\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_VLV_INDEXES_NOT_DEFINED_CONFIRMATION_TITLE=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306f\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u305b\u3093
#
# Note that the following property contains line breaks in HTML format (<br>)
#
INFO_CTRL_PANEL_VLV_INDEXES_NOT_DEFINED_CONFIRMATION_MSG=\u3053\u306e VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u6709\u52b9\u306b\u3059\u308b\u306b\u306f\u3001'%s' \u3067\u6b21\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u8a2d\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044: <br>%s<br><br>\u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_VLV_INDEX_EQUALITY_TYPE=\u7b49\u4fa1
INFO_CTRL_PANEL_VLV_INDEX_SUBSTRING_TYPE=\u90e8\u5206\u6587\u5b57\u5217
INFO_CTRL_PANEL_VLV_INDEX_ORDERING_TYPE=\u9806\u5e8f\u4ed8\u3051
INFO_CTRL_PANEL_VLV_INDEX_PRESENCE_TYPE=\u5b9f\u5728
INFO_CTRL_PANEL_VLV_INDEX_APPROXIMATE_TYPE=\u8fd1\u4f3c
INFO_CTRL_PANEL_MUST_UPDATE_INDEX_DEFINITION_TYPE=\u30bf\u30a4\u30d7 % \u306b\u306a\u308b\u3088\u3046\u306b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u306e\u5b9a\u7fa9\u3092\u66f4\u65b0\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_MUST_DEFINE_INDEX_TYPE=\u30bf\u30a4\u30d7 %s \u306b\u306a\u308b\u3088\u3046\u306b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u3092\u5b9a\u7fa9\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_MUST_DEFINE_INDEX=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u3092\u5b9a\u7fa9\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_NO_VLV_INDEX_NAME_PROVIDED=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u540d\u524d\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
MILD_ERR_CTRL_PANEL_VLV_INDEX_ALREADY_DEFINED=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u3067\u5b9a\u7fa9\u3055\u308c\u305f VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u304c\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059\u3002
MILD_ERR_CTRL_PANEL_NO_BASE_DN_FOR_VLV_PROVIDED=\u30d9\u30fc\u30b9 DN \u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_INVALID_BASE_DN_FOR_VLV_PROVIDED=\u6307\u5b9a\u3055\u308c\u305f\u30d9\u30fc\u30b9 DN \u304c\u6709\u52b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u8a73\u7d30: %s
MILD_ERR_CTRL_PANEL_NO_FILTER_FOR_VLV_PROVIDED=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u30d5\u30a3\u30eb\u30bf\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_INVALID_FILTER_FOR_VLV_PROVIDED=\u6307\u5b9a\u3055\u308c\u305f\u30d5\u30a3\u30eb\u30bf\u304c\u6709\u52b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u8a73\u7d30: %s
MILD_ERR_CTRL_PANEL_NO_ATTRIBUTE_FOR_VLV_PROVIDED=\u30bd\u30fc\u30c8\u9806\u5e8f\u306b\u95a2\u3059\u308b\u5c5e\u6027\u3092\u5c11\u306a\u304f\u3068\u3082 1 \u3064\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_INVALID_MAX_BLOCK_SIZE_FOR_VLV_PROVIDED=\u6700\u5927\u30d6\u30ed\u30c3\u30af\u30b5\u30a4\u30ba\u306f\u3001%d \u304b\u3089 %d \u307e\u3067\u306e\u9593\u306e\u6574\u6570\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_ADD_TO_GROUP_TITLE=\u30b0\u30eb\u30fc\u30d7\u306b\u8ffd\u52a0
INFO_CTRL_PANEL_ADD_TO_GROUP_ENTRIES_LABEL=\u8ffd\u52a0\u3059\u308b\u30a8\u30f3\u30c8\u30ea:
INFO_CTRL_PANEL_ADD_TO_GROUP_GROUPS_LABEL=\u30b0\u30eb\u30fc\u30d7:
INFO_CTRL_PANEL_ADD_GROUPS_BUTTON_LABEL=\u30b0\u30eb\u30fc\u30d7\u306e\u8ffd\u52a0...
INFO_CTRL_PANEL_CHOOSE_GROUP_TITLE=\u30b0\u30eb\u30fc\u30d7\u306e\u9078\u629e
MILD_ERR_CTRL_PANEL_GROUP_COULD_NOT_BE_FOUND=\u30b0\u30eb\u30fc\u30d7 '%s' \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_NOT_A_STATIC_GROUP=\u30a8\u30f3\u30c8\u30ea '%s' \u306f\u5b58\u5728\u3057\u307e\u3059\u304c\u3001\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002
MILD_ERR_CTRL_PANEL_GROUP_NOT_PROVIDED=\u30b0\u30eb\u30fc\u30d7\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_ADDING_TO_GROUP_SUMMARY=\u30b0\u30eb\u30fc\u30d7\u306b\u8ffd\u52a0\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_ADDING_TO_GROUP_SUCCESSFUL_SUMMARY=\u30a8\u30f3\u30c8\u30ea\u304c\u30b0\u30eb\u30fc\u30d7\u306b\u8ffd\u52a0\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_ADDING_TO_GROUP_SUCCESSFUL_DETAILS=\u30a8\u30f3\u30c8\u30ea\u304c\u6b63\u5e38\u306b\u8ffd\u52a0\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_ADDING_TO_GROUP_ERROR_SUMMARY=\u30b0\u30eb\u30fc\u30d7\u306b\u8ffd\u52a0\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_ADDING_TO_GROUP_ERROR_DETAILS=\u30b0\u30eb\u30fc\u30d7\u306b\u8ffd\u52a0\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
INFO_CTRL_PANEL_ATTRIBUTE_SYNTAX_TITLE=\u5c5e\u6027\u69cb\u6587
INFO_CTRL_PANEL_ATTRIBUTE_SYNTAX_DETAILS=\u5c5e\u6027\u69cb\u6587\u306e\u8a73\u7d30
INFO_CTRL_PANEL_ATTRIBUTE_SYNTAX_NAME=\u540d\u524d:
INFO_CTRL_PANEL_ATTRIBUTE_SYNTAX_OID=OID:
INFO_CTRL_PANEL_ATTRIBUTE_SYNTAX_DESCRIPTION=\u8aac\u660e:
INFO_CTRL_PANEL_USED_BY_ATTRIBUTES=\u5c5e\u6027\u306b\u3088\u308b\u4f7f\u7528:
INFO_CTRL_PANEL_BACKEND_INDEXES_TITLE=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u30a4\u30f3\u30c7\u30c3\u30af\u30b9
INFO_CTRL_PANEL_BACKEND_VLV_INDEXES_TITLE=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9
INFO_CTRL_PANEL_NO_BACKUPS_FOUND=- \u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093 -
INFO_CTRL_PANEL_BROWSE_BUTTON_LABEL=\u53c2\u7167...
INFO_CTRL_PANEL_AVAILABLE_BACKUPS_LABEL=\u4f7f\u7528\u53ef\u80fd\u306a\u30d0\u30c3\u30af\u30a2\u30c3\u30d7:
INFO_CTRL_PANEL_REFRESH_LIST_BUTTON_LABEL=\u30ea\u30b9\u30c8\u306e\u518d\u8868\u793a
INFO_CTRL_PANEL_VERIFY_BACKUP_BUTTON_LABEL=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u306e\u691c\u8a3c
MILD_ERR_ERROR_SEARCHING_BACKUPS_SUMMARY=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u3092\u691c\u7d22\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
INFO_CTRL_PANEL_BACKUP_PATH_LABEL=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u30d1\u30b9:
INFO_CTRL_PANEL_BACKUP_TITLE=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u306e\u5b9f\u884c
INFO_CTRL_PANEL_BACKUP_ALL_BACKENDS_LABEL=\u3059\u3079\u3066\u306e\u30d0\u30c3\u30af\u30a8\u30f3\u30c9
INFO_CTRL_PANEL_BACKUP_TYPE_LABEL=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u306e\u30bf\u30a4\u30d7:
INFO_CTRL_PANEL_FULL_BACKUP_LABEL=\u30d5\u30eb\u30d0\u30c3\u30af\u30a2\u30c3\u30d7
INFO_CTRL_PANEL_INCREMENTAL_BACKUP_LABEL=\u5897\u5206\u30d0\u30c3\u30af\u30a2\u30c3\u30d7 (\u89aa\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u4ee5\u4e0b\u3092\u6307\u5b9a)
INFO_CTRL_PANEL_BACKUP_ID_LABEL=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7 ID:
INFO_CTRL_PANEL_AVAILABLE_PARENT_BACKUPS_LABEL=\u4f7f\u7528\u53ef\u80fd\u306a\u89aa\u30d0\u30c3\u30af\u30a2\u30c3\u30d7:
INFO_CTRL_PANEL_BACKUP_OPTIONS_LABEL=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u30aa\u30d7\u30b7\u30e7\u30f3:
INFO_CTRL_PANEL_COMPRESS_DATA_LABEL=\u30c7\u30fc\u30bf\u306e\u5727\u7e2e (.gzip)
INFO_CTRL_PANEL_ENCRYPT_DATA_LABEL=\u30c7\u30fc\u30bf\u306e\u6697\u53f7\u5316
INFO_CTRL_PANEL_GENERATE_MESSAGE_DIGEST_LABEL=\u30c1\u30a7\u30c3\u30af\u30b5\u30e0\u3068\u3057\u3066\u4f7f\u7528\u3059\u308b\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8\u3092\u751f\u6210\u3059\u308b
INFO_CTRL_PANEL_SIGN_MESSAGE_DIGEST_HASH_LABEL=\u30e1\u30c3\u30bb\u30fc\u30b8\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8\u306e\u30cf\u30c3\u30b7\u30e5\u306b\u7f72\u540d\u3059\u308b
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_BACKUP=\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u3057\u3066\u3044\u307e\u3059\u3002\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u3092\u5b9f\u884c\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_NO_BACKENDS_SELECTED=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
MILD_ERR_CTRL_PANEL_NO_BACKENDS_AVAILABLE=\u4f7f\u7528\u53ef\u80fd\u306a\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u304c\u3042\u308a\u307e\u305b\u3093\u3002
MILD_ERR_CTRL_PANEL_NO_BACKUP_PATH_PROVIDED=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u306e\u30d1\u30b9\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
MILD_ERR_CTRL_PANEL_BACKUP_PATH_IS_A_FILE=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u306e\u30d1\u30b9 '%s' \u306f\u5b58\u5728\u3057\u307e\u3059\u3002\u3053\u308c\u306f\u30d5\u30a1\u30a4\u30eb\u3067\u3059\u3002
MILD_ERR_CTRL_PANEL_BACKUP_PATH_DOES_NOT_EXIST=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u306e\u30d1\u30b9 '%s' \u306f\u5b58\u5728\u3057\u307e\u305b\u3093\u3002
MILD_ERR_CTRL_PANEL_NO_BACKUP_ID_PROVIDED=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7 ID \u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
MILD_ERR_CTRL_PANEL_BACKUP_PATH_EXISTS=\u30d5\u30a1\u30a4\u30eb '%s' \u306f\u5b58\u5728\u3057\u307e\u3059\u3002\u65b0\u3057\u304f\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u3092\u5b9f\u884c\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_NO_PARENT_BACKUP_SELECTED=\u5897\u5206\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u306e\u5b9f\u884c\u3092\u9078\u629e\u3057\u307e\u3057\u305f\u3002\u4f7f\u7528\u53ef\u80fd\u306a\u89aa\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u306e\u30ea\u30b9\u30c8\u306b\u3042\u308b\u89aa\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_BACKUP_ID_ALREADY_EXIST=ID '%s' \u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u306f\u3001\u3059\u3067\u306b '%s' \u306e\u4e0b\u3067\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059\u3002
INFO_CTRL_PANEL_BACKUP_TASK_DESCRIPTION='%s' \u306e\u5185\u5bb9\u3092\u30c7\u30a3\u30ec\u30af\u30c8\u30ea '%s' \u306b\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_RUN_BACKUP_SUMMARY=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_RUN_BACKUP_ALL_BACKENDS=\u3059\u3079\u3066\u306e\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_RUN_BACKUP_SUCCESSFUL_SUMMARY=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u5b8c\u4e86
INFO_CTRL_PANEL_RUN_BACKUP_SUCCESSFUL_DETAILS=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u6b63\u5e38\u306b\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_RUN_BACKUP_ERROR_SUMMARY=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_RUN_BACKUP_ERROR_DETAILS=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9: %d.
INFO_CTRL_PANEL_BACKUP_TASK_NAME=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7
INFO_CTRL_PANEL_OTHER_BASE_DN_TITLE=\u307b\u304b\u306e\u30d9\u30fc\u30b9 DN
MILD_ERR_CTRL_PANEL_NO_BASE_DN_PROVIDED=\u30d9\u30fc\u30b9 DN \u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_INVALID_BASE_DN_PROVIDED=\u6307\u5b9a\u3055\u308c\u305f\u30d9\u30fc\u30b9 DN \u304c\u6709\u52b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u8a73\u7d30: %s
INFO_CTRL_PANEL_NO_VALUE_SPECIFIED=- \u5024\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093 -
MILD_ERR_CTRL_PANEL_FILE_NOT_PROVIDED=\u30d5\u30a1\u30a4\u30eb\u306e\u5024\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_FILE_DOES_NOT_EXIST=\u30d5\u30a1\u30a4\u30eb '%s' \u304c\u5b58\u5728\u3057\u307e\u305b\u3093\u3002
MILD_ERR_CTRL_PANEL_PATH_IS_A_DIRECTORY=\u30d1\u30b9 '%s' \u306f\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u3059\u3002\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_CANNOT_READ_FILE=\u30d5\u30a1\u30a4\u30eb '%s' \u3092\u8aad\u307f\u53d6\u308c\u307e\u305b\u3093\u3002\u305d\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u5bfe\u3059\u308b\u8aad\u307f\u53d6\u308a\u6a29\u9650\u304c\u3042\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_VALUE_IN_BASE_64_REQUIRED=\u5024\u3092 Base 64 \u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_ERROR_READING_FILE=\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u8aad\u307f\u53d6\u308a\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u7d30: %s
MILD_ERR_CTRL_PANEL_ERROR_DECODING_BASE_64=\u6307\u5b9a\u3055\u308c\u305f Base 64 \u6587\u5b57\u5217\u306e\u5fa9\u53f7\u5316\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u7d30: %s
INFO_CTRL_PANEL_EDIT_BINARY_ATTRIBUTE_TITLE=\u30d0\u30a4\u30ca\u30ea\u5c5e\u6027\u306e\u7de8\u96c6
INFO_CTRL_PANEL_USE_CONTENTS_OF_FILE=\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u4f7f\u7528:
INFO_CTRL_PANEL_USE_CONTENTS_IN_BASE_64=\u30d0\u30a4\u30ca\u30ea\u30b3\u30f3\u30c6\u30f3\u30c4\u3092 Base 64 \u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_REFRESH_BUTTON_LABEL=\u66f4\u65b0
INFO_CTRL_PANEL_IMAGE_PREVIEW_LABEL=\u30a4\u30e1\u30fc\u30b8\u306e\u30d7\u30ec\u30d3\u30e5\u30fc:
INFO_CTRL_PANEL_SPECIFY_CONTENTS_IN_BASE_64=- Base 64 \u3067\u5024\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044 -
INFO_CTRL_PANEL_IMAGE_OF_ATTRIBUTE_LABEL=\u5c5e\u6027\u306e\u30a4\u30e1\u30fc\u30b8
INFO_CTRL_PANEL_PREVIEW_NOT_AVAILABLE_LABEL=\u30d7\u30ec\u30d3\u30e5\u30fc\u306f\u5229\u7528\u3067\u304d\u307e\u305b\u3093\u3002
INFO_CTRL_PANEL_VIEW_BINARY_ATTRIBUTE_TITLE=\u30d0\u30a4\u30ca\u30ea\u5c5e\u6027\u306e\u8868\u793a
INFO_CTRL_PANEL_VALUE_IN_BASE_64_LABEL=Base 64 \u5f62\u5f0f\u306e\u5024:
INFO_CTRL_PANEL_MANAGE_ENTRIES_TITLE=\u30a8\u30f3\u30c8\u30ea\u306e\u7ba1\u7406
INFO_CTRL_PANEL_NEW_USER_MENU=\u65b0\u898f\u30e6\u30fc\u30b6\u30fc...
INFO_CTRL_PANEL_NEW_GROUP_MENU=\u65b0\u898f\u30b0\u30eb\u30fc\u30d7...
INFO_CTRL_PANEL_NEW_ORGANIZATION_MENU=\u65b0\u898f\u7d44\u7e54...
INFO_CTRL_PANEL_NEW_ORGANIZATIONAL_UNIT_MENU=\u65b0\u898f\u7d44\u7e54\u5358\u4f4d...
INFO_CTRL_PANEL_NEW_DOMAIN_MENU=\u65b0\u898f\u30c9\u30e1\u30a4\u30f3...
INFO_CTRL_PANEL_NEW_FROM_LDIF_MENU=LDIF \u304b\u3089\u65b0\u898f\u4f5c\u6210...
INFO_CTRL_PANEL_RESET_USER_PASSWORD_MENU=\u30e6\u30fc\u30b6\u30fc\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u30ea\u30bb\u30c3\u30c8...
INFO_CTRL_PANEL_ADD_TO_GROUP_MENU=\u30b0\u30eb\u30fc\u30d7\u306b\u8ffd\u52a0...
INFO_CTRL_PANEL_COPY_DN_MENU=DN \u306e\u30b3\u30d4\u30fc
INFO_CTRL_PANEL_DELETE_SELECTED_ENTRIES_TITLE=\u9078\u629e\u3057\u305f\u30a8\u30f3\u30c8\u30ea\u306e\u524a\u9664
INFO_CTRL_PANEL_DELETE_ENTRIES_CONFIRMATION_DETAILS=\u9078\u629e\u3057\u305f\u30a8\u30f3\u30c8\u30ea (\u30c4\u30ea\u30fc\u4e0a\u306b\u3042\u308b\u305d\u308c\u3089\u306e\u30a8\u30f3\u30c8\u30ea\u306e\u4e0b\u4f4d\u306b\u3042\u308b\u3059\u3079\u3066\u306e\u30a8\u30f3\u30c8\u30ea\u3092\u542b\u3080) \u3092\u524a\u9664\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_FILE_MENU=\u30d5\u30a1\u30a4\u30eb
INFO_CTRL_PANEL_EXIT_MENU=\u7d42\u4e86
INFO_CTRL_PANEL_HELP_MENU=\u30d8\u30eb\u30d7
INFO_CTRL_PANEL_ADMINISTRATION_GUIDE_MENU=\u7ba1\u7406\u30ac\u30a4\u30c9
INFO_CTRL_PANEL_DOCUMENTATION_WIKI_MENU=\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8 Wiki
INFO_CTRL_PANEL_NEW_BROWSER_WINDOW_MENU=\u65b0\u898f\u30a6\u30a3\u30f3\u30c9\u30a6
INFO_CTRL_PANEL_VIEW_MENU=\u8868\u793a
INFO_CTRL_PANEL_ENTRIES_MENU=\u30a8\u30f3\u30c8\u30ea
INFO_CTRL_PANEL_CLOSE_MENU=\u9589\u3058\u308b
INFO_CTRL_PANEL_FILE_MENU_DESCRIPTION=\u30d5\u30a1\u30a4\u30eb\u30e1\u30cb\u30e5\u30fc
INFO_CTRL_PANEL_VIEW_MENU_DESCRIPTION=\u8868\u793a\u30e1\u30cb\u30e5\u30fc
INFO_CTRL_PANEL_HELP_MENU_DESCRIPTION=\u30d8\u30eb\u30d7\u30e1\u30cb\u30e5\u30fc
INFO_CTRL_PANEL_ENTRIES_MENU_DESCRIPTION=\u30a8\u30f3\u30c8\u30ea\u30a8\u30c7\u30a3\u30b7\u30e7\u30f3\u30e1\u30cb\u30e5\u30fc
INFO_CTRL_PANEL_SIMPLIFIED_VIEW_MENU=\u7c21\u6613\u30d3\u30e5\u30fc
INFO_CTRL_PANEL_ATTRIBUTE_VIEW_MENU=\u5c5e\u6027\u30d3\u30e5\u30fc
INFO_CTRL_PANEL_LDIF_VIEW_MENU=LDIF \u30d3\u30e5\u30fc
INFO_CTRL_PANEL_DELETE_ENTRY_MENU=\u30a8\u30f3\u30c8\u30ea\u3092\u524a\u9664...
INFO_CTRL_PANEL_DELETE_ENTRY_BUTTON=\u30a8\u30f3\u30c8\u30ea\u3092\u524a\u9664...
INFO_CTRL_PANEL_DELETE_BASE_DN_MENU=\u30d9\u30fc\u30b9 DN \u306e\u524a\u9664...
INFO_CTRL_PANEL_DELETE_BACKEND_MENU=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u306e\u524a\u9664...
INFO_CTRL_PANEL_DELETING_ENTRIES_SUMMARY=\u30a8\u30f3\u30c8\u30ea\u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_DELETING_ENTRIES_COMPLETE=\u30a8\u30f3\u30c8\u30ea\u304c\u524a\u9664\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_DELETING_ENTRIES_SUCCESSFUL=\u30a8\u30f3\u30c8\u30ea\u304c\u524a\u9664\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_DELETING_ENTRIES_ERROR_SUMMARY=\u30a8\u30f3\u30c8\u30ea\u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_DELETING_ENTRIES_ERROR_DETAILS=\u30a8\u30f3\u30c8\u30ea\u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
INFO_CTRL_PANEL_INDEXES_CATEGORY_NODE=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9
INFO_CTRL_PANEL_VLV_INDEXES_CATEGORY_NODE=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9
INFO_CTRL_PANEL_BACKEND_LABEL=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9:
INFO_CTRL_PANEL_NO_BACKENDS_FOUND_LABEL=- \u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093 -
INFO_CTRL_PANEL_NO_BASE_DNS_FOUND_LABEL=- \u30d9\u30fc\u30b9 DN \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093 -
INFO_CTRL_PANEL_NO_ITEM_SELECTED_LABEL=- \u9805\u76ee\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u305b\u3093 -
INFO_CTRL_PANEL_MULTIPLE_ITEMS_SELECTED_LABEL=- \u8907\u6570\u306e\u9805\u76ee\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u3059 -
INFO_CTRL_PANEL_NO_ENTRY_SELECTED_LABEL=- \u30a8\u30f3\u30c8\u30ea\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u305b\u3093 -
INFO_CTRL_PANEL_MULTIPLE_ENTRIES_SELECTED_LABEL=- \u8907\u6570\u306e\u30a8\u30f3\u30c8\u30ea\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u3059 -
INFO_CTRL_PANEL_NO_SCHEMA_ITEM_SELECTED_LABEL=- \u30b9\u30ad\u30fc\u30de\u9805\u76ee\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u305b\u3093 -
INFO_CTRL_PANEL_NEW_INDEX_BUTTON_LABEL=\u65b0\u898f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9...
INFO_CTRL_PANEL_NEW_VLV_INDEX_BUTTON_LABEL=\u65b0\u898f VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9...
INFO_CTRL_PANEL_NEW_INDEX_MENU=\u65b0\u898f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9...
INFO_CTRL_PANEL_NEW_VLV_INDEX_MENU=\u65b0\u898f VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9...
INFO_CTRL_PANEL_DELETE_INDEX_MENU=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u524a\u9664...
INFO_CTRL_PANEL_MANAGE_INDEXES_TITLE=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u7ba1\u7406
MILD_ERR_CTRL_PANEL_NO_BACKENDS_FOUND_TITLE=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093
MILD_ERR_CTRL_PANEL_NO_BACKENDS_FOUND_DETAILS=\u5b9a\u7fa9\u6e08\u307f\u306e\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u304c\u3042\u308a\u307e\u305b\u3093\u3002\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u3066\u7ba1\u7406\u3059\u308b\u306b\u306f\u3001\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u3092\u4f5c\u6210\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u65b0\u898f\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u3092\u4f5c\u6210\u3059\u308b\u306b\u306f\u3001\u300c\u65b0\u898f\u30d9\u30fc\u30b9 DN\u300d\u30a2\u30af\u30b7\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002
MILD_ERR_CTRL_PANEL_NO_INDEX_SELECTED=\u30c4\u30ea\u30fc\u3067\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
INFO_CTRL_PANEL_DELETE_INDEXES_TITLE=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u524a\u9664
INFO_CTRL_PANEL_CONFIRMATION_INDEXES_DELETE_DETAILS=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u3067\u5b9a\u7fa9\u3055\u308c\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u3092\u524a\u9664\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_DELETING_INDEXES_SUMMARY=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_DELETING_INDEXES_COMPLETE=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_DELETING_INDEXES_SUCCESSFUL=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u304c\u6b63\u5e38\u306b\u524a\u9664\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_DELETING_INDEXES_ERROR_SUMMARY=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_DELETING_INDEXES_ERROR_DETAILS=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
INFO_CTRL_PANEL_ATTRIBUTES_CATEGORY_NODE=\u5c5e\u6027
INFO_CTRL_PANEL_OBJECTCLASSES_CATEGORY_NODE=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9
INFO_CTRL_PANEL_STANDARD_OBJECTCLASSES_CATEGORY_NODE=\u6a19\u6e96
INFO_CTRL_PANEL_CONFIGURATION_OBJECTCLASSES_CATEGORY_NODE=\u30b5\u30fc\u30d0\u30fc\u8a2d\u5b9a
INFO_CTRL_PANEL_CUSTOM_OBJECTCLASSES_CATEGORY_NODE=\u30ab\u30b9\u30bf\u30e0
INFO_CTRL_PANEL_STANDARD_ATTRIBUTES_CATEGORY_NODE=\u6a19\u6e96
INFO_CTRL_PANEL_CONFIGURATION_ATTRIBUTES_CATEGORY_NODE=\u30b5\u30fc\u30d0\u30fc\u8a2d\u5b9a
INFO_CTRL_PANEL_CUSTOM_ATTRIBUTES_CATEGORY_NODE=\u30ab\u30b9\u30bf\u30e0
INFO_CTRL_PANEL_MATCHING_RULES_CATEGORY_NODE=\u30de\u30c3\u30c1\u30f3\u30b0\u30eb\u30fc\u30eb
INFO_CTRL_PANEL_ATTRIBUTE_SYNTAXES_CATEGORY_NODE=\u5c5e\u6027\u69cb\u6587
INFO_CTRL_PANEL_NEW_OBJECTCLASS_BUTTON=\u65b0\u898f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9...
INFO_CTRL_PANEL_NEW_ATTRIBUTE_BUTTON=\u65b0\u898f\u5c5e\u6027...
INFO_CTRL_PANEL_NEW_OBJECTCLASS_MENU=\u65b0\u898f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9...
INFO_CTRL_PANEL_NEW_ATTRIBUTE_MENU=\u65b0\u898f\u5c5e\u6027...
INFO_CTRL_PANEL_DELETE_SCHEMA_ELEMENT_MENU=\u524a\u9664...
INFO_CTRL_PANEL_SCHEMA_ELEMENT_NAME=\u540d\u524d
INFO_CTRL_PANEL_SCHEMA_ELEMENT_TYPE=\u30bf\u30a4\u30d7
INFO_CTRL_PANEL_PARENT_CLASS=\u89aa\u30af\u30e9\u30b9
INFO_CTRL_PANEL_CHILD_CLASS=\u5b50\u30af\u30e9\u30b9
INFO_CTRL_PANEL_REQUIRED_ATTRIBUTES=\u5fc5\u9808\u5c5e\u6027
INFO_CTRL_PANEL_OPTIONAL_ATTRIBUTES=\u30aa\u30d7\u30b7\u30e7\u30f3\u5c5e\u6027
INFO_CTRL_PANEL_NO_SCHEMA_ITEM_SELECTED=\u30b9\u30ad\u30fc\u30de\u9805\u76ee\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u305b\u3093
INFO_CTRL_PANEL_CATEGORY_ITEM_SELECTED=\u30ab\u30c6\u30b4\u30ea\u9805\u76ee\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_MULTIPLE_SCHEMA_ITEMS_SELECTED=\u8907\u6570\u306e\u30b9\u30ad\u30fc\u30de\u9805\u76ee\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u3059
MILD_ERR_CANNOT_DELETE_PARENT_OBJECTCLASS=objectClass '%s' \u306f\u6b21\u306e\u30af\u30e9\u30b9\u306e\u4e0a\u4f4d\u30af\u30e9\u30b9\u3067\u3059: %s\u3002\u3053\u308c\u3092\u524a\u9664\u3059\u308b\u524d\u306b\u3001objectClass '%s' \u304b\u3089\u7d99\u627f\u3057\u306a\u3044\u3088\u3046\u306b\u3053\u308c\u3089\u306e\u30af\u30e9\u30b9\u3092\u518d\u5b9a\u7fa9\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CANNOT_DELETE_PARENT_ATTRIBUTE=\u5c5e\u6027 '%s' \u306f\u6b21\u306e\u5c5e\u6027\u306e\u4e0a\u4f4d\u5c5e\u6027\u3067\u3059: %s\u3002\u3053\u308c\u3092\u524a\u9664\u3059\u308b\u524d\u306b\u3001\u5c5e\u6027 '%s' \u304b\u3089\u7d99\u627f\u3057\u306a\u3044\u3088\u3046\u306b\u3053\u308c\u3089\u306e\u5c5e\u6027\u3092\u518d\u5b9a\u7fa9\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CANNOT_DELETE_ATTRIBUTE_WITH_DEPENDENCIES=\u5c5e\u6027 '%s' \u306f\u6b21\u306e objectClasses \u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u5c5e\u6027\u307e\u305f\u306f\u5fc5\u9808\u5c5e\u6027\u3067\u3059: %s\u3002\u3053\u308c\u3092\u524a\u9664\u3059\u308b\u524d\u306b\u3001\u5c5e\u6027 '%s' \u306b\u4f9d\u5b58\u3057\u306a\u3044\u3088\u3046\u306b\u3053\u308c\u3089\u306e\u30af\u30e9\u30b9\u3092\u518d\u5b9a\u7fa9\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_MANAGE_SCHEMA_TITLE=\u30b9\u30ad\u30fc\u30de\u306e\u7ba1\u7406
INFO_CTRL_PANEL_DELETE_OBJECTCLASSES_TITLE=objectclass \u306e\u524a\u9664
INFO_CTRL_PANEL_DELETE_ATTRIBUTES_TITLE=\u5c5e\u6027\u306e\u524a\u9664
INFO_CTRL_PANEL_DELETE_OBJECTCLASSES_AND_ATTRIBUTES_TITLE=objectclass \u304a\u3088\u3073\u5c5e\u6027\u306e\u524a\u9664
INFO_CTRL_PANEL_CONFIRMATION_DELETE_SCHEMA_ELEMENTS_DETAILS=\u30b9\u30ad\u30fc\u30de\u3067\u5b9a\u7fa9\u3055\u308c\u305f\u8981\u7d20 '%s' \u3092\u524a\u9664\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_DELETING_SCHEMA_ELEMENTS_SUMMARY=\u524a\u9664\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_DELETING_SCHEMA_ELEMENTS_COMPLETE=\u30b9\u30ad\u30fc\u30de\u306e\u5b9a\u7fa9\u304c\u524a\u9664\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_DELETING_SCHEMA_ELEMENTS_SUCCESSFUL=\u30b9\u30ad\u30fc\u30de\u306e\u8981\u7d20 '%s' \u304c\u6b63\u5e38\u306b\u524a\u9664\u3055\u308c\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_DELETING_SCHEMA_ELEMENTS_ERROR_SUMMARY=\u30b9\u30ad\u30fc\u30de\u306e\u8981\u7d20\u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_DELETING_SCHEMA_ELEMENTS_ERROR_DETAILS=\u30b9\u30ad\u30fc\u30de\u306e\u8981\u7d20\u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u7d30\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044
INFO_CTRL_PANEL_CONFIGURATION_ATTRIBUTE_TITLE=\u8a2d\u5b9a\u5c5e\u6027
INFO_CTRL_PANEL_CONFIGURATION_OBJECTCLASS_TITLE=\u8a2d\u5b9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9
INFO_CTRL_PANEL_CUSTOM_ATTRIBUTE_TITLE=\u30ab\u30b9\u30bf\u30e0\u5c5e\u6027
INFO_CTRL_PANEL_CUSTOM_OBJECTCLASS_TITLE=\u30ab\u30b9\u30bf\u30e0\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9
INFO_CTRL_PANEL_DELETE_ATTRIBUTE_BUTTON=\u5c5e\u6027\u306e\u524a\u9664...
INFO_CTRL_PANEL_DELETE_ATTRIBUTE_TITLE=\u5c5e\u6027\u306e\u524a\u9664
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_ATTRIBUTE_DELETE=\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u3057\u3066\u3044\u307e\u3059\u3002\u5c5e\u6027\u3092\u524a\u9664\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_CONFIRMATION_DELETE_ATTRIBUTE_DETAILS=\u30b9\u30ad\u30fc\u30de\u3067\u5b9a\u7fa9\u3055\u308c\u305f\u5c5e\u6027 '%s' \u3092\u524a\u9664\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_DELETING_ATTRIBUTE_SUMMARY=\u5c5e\u6027 '%s' \u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_DELETING_ATTRIBUTE_COMPLETE=\u5c5e\u6027\u304c\u524a\u9664\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_DELETING_ATTRIBUTE_SUCCESSFUL=\u5c5e\u6027 '%s' \u304c\u6b63\u5e38\u306b\u524a\u9664\u3055\u308c\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_DELETING_ATTRIBUTE_ERROR_SUMMARY=\u5c5e\u6027\u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_DELETING_ATTRIBUTE_ERROR_DETAILS=\u5c5e\u6027 '%s' \u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u7d30\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_DELETE_OBJECTCLASS_BUTTON=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9\u306e\u524a\u9664...
INFO_CTRL_PANEL_DELETE_OBJECTCLASS_TITLE=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9\u306e\u524a\u9664
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_OBJECTCLASS_DELETE=\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u3057\u3066\u3044\u307e\u3059\u3002\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9\u3092\u524a\u9664\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_CONFIRMATION_DELETE_OBJECTCLASS_DETAILS=\u30b9\u30ad\u30fc\u30de\u3067\u5b9a\u7fa9\u3055\u308c\u305f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9 '%s' \u3092\u524a\u9664\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_DELETING_OBJECTCLASS_SUMMARY=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9 '%s' \u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_DELETING_OBJECTCLASS_COMPLETE=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_DELETING_OBJECTCLASS_SUCCESSFUL=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9 '%s' \u304c\u6b63\u5e38\u306b\u524a\u9664\u3055\u308c\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_DELETING_OBJECTCLASS_ERROR_SUMMARY=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9\u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_DELETING_OBJECTCLASS_ERROR_DETAILS=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9 '%s' \u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 \u8a73\u7d30\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_DELETE_BACKEND_TITLE=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u306e\u524a\u9664
INFO_CTRL_PANEL_SELECT_BACKENDS_TO_DELETE=\u524a\u9664\u3059\u308b\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u306e\u9078\u629e:
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_BACKEND_DELETE=\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u3057\u3066\u3044\u307e\u3059\u3002\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u3092\u524a\u9664\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_DELETING_BACKENDS_SUMMARY=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_DELETING_BACKENDS_COMPLETE=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u304c\u524a\u9664\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_DELETING_BACKENDS_SUCCESSFUL=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u304c\u6b63\u5e38\u306b\u524a\u9664\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_DELETING_BACKENDS_ERROR_SUMMARY=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_DELETING_BACKENDS_ERROR_DETAILS=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u7d30\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_CONFIRMATION_DELETE_BACKENDS_DETAILS=\u6b21\u306e\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u304c\u524a\u9664\u3055\u308c\u307e\u3059\u3002\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u306e\u3059\u3079\u3066\u306e\u30d9\u30fc\u30b9 DN \u3067\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u3059\u3079\u3066\u306e\u30a8\u30f3\u30c8\u30ea\u3001\u304a\u3088\u3073\u3059\u3079\u3066\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u6210\u304c\u524a\u9664\u3055\u308c\u307e\u3059\u3002
INFO_CTRL_PANEL_DO_YOU_WANT_TO_CONTINUE=\u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_SELECT_ALL_BUTTON=\u3059\u3079\u3066\u3092\u9078\u629e
INFO_CTRL_PANEL_CLEAR_SELECTION_BUTTON=\u9078\u629e\u3092\u3059\u3079\u3066\u89e3\u9664
INFO_CTRL_PANEL_CONFIRMATION_DELETE_BASE_DNS_INDIRECT_DETAILS=\u6b21\u306e\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u304c\u524a\u9664\u3055\u308c\u3001\u3059\u3079\u3066\u306e\u8a2d\u5b9a\u304c\u5931\u308f\u308c\u307e\u3059\u3002
INFO_CTRL_PANEL_DELETE_BASE_DN_TITLE=\u30d9\u30fc\u30b9 DN \u306e\u524a\u9664
INFO_CTRL_PANEL_SELECT_BASE_DNS_TO_DELETE=\u524a\u9664\u3059\u308b\u30d9\u30fc\u30b9 DN \u306e\u9078\u629e:
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_BASE_DN_DELETE=\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u3057\u3066\u3044\u307e\u3059\u3002\u30d9\u30fc\u30b9 DN \u3092\u524a\u9664\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_DELETING_BASE_DNS_SUMMARY=\u30d9\u30fc\u30b9 DN \u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_DELETING_BASE_DNS_COMPLETE=\u30d9\u30fc\u30b9 DN \u304c\u524a\u9664\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_DELETING_BASE_DNS_SUCCESSFUL=\u30d9\u30fc\u30b9 DN \u304c\u6b63\u5e38\u306b\u524a\u9664\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_DELETING_BASE_DNS_ERROR_SUMMARY=\u30d9\u30fc\u30b9 DN \u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_DELETING_BASE_DNS_ERROR_DETAILS=\u30d9\u30fc\u30b9 DN \u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u7d30\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_CONFIRMATION_DELETE_BASE_DNS_DETAILS=\u6b21\u306e\u30d9\u30fc\u30b9 DN \u304c\u524a\u9664\u3055\u308c\u307e\u3059\u3002\u30d9\u30fc\u30b9 DN \u4e0a\u3067\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u3059\u3079\u3066\u306e\u30a8\u30f3\u30c8\u30ea\u304c\u524a\u9664\u3055\u308c\u307e\u3059\u3002
INFO_CTRL_PANEL_ERROR_SEARCHING_ENTRY_TITLE=\u30a8\u30f3\u30c8\u30ea\u306e\u691c\u7d22\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
#
# Note that the following property contains line breaks in HTML format (<br>)
#
MILD_ERR_CTRL_PANEL_ERROR_SEARCHING_ENTRY=\u30a8\u30f3\u30c8\u30ea '%s' \u306e\u691c\u7d22\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u7d30:<br>%s
INFO_CTRL_PANEL_EXPORT_LDIF_TITLE=LDIF \u306e\u30a8\u30af\u30b9\u30dd\u30fc\u30c8
INFO_CTRL_PANEL_EXPORT_TO_FILE_LABEL=\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u5148\u30d5\u30a1\u30a4\u30eb:
INFO_CTRL_PANEL_EXPORT_OVERWRITE_LABEL=\u30d5\u30a1\u30a4\u30eb\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u3001\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u306f\u8ffd\u52a0\u3059\u308b\u4ee3\u308f\u308a\u306b\u4e0a\u66f8\u304d\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_EXPORT_OPTIONS=\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u30aa\u30d7\u30b7\u30e7\u30f3:
INFO_CTRL_PANEL_EXPORT_GENERATE_SIGNED_HASH=\u7f72\u540d\u4ed8\u304d\u30cf\u30c3\u30b7\u30e5\u306e\u751f\u6210
INFO_CTRL_PANEL_EXPORT_WRAP_TEXT=\u5217\u3067\u30c6\u30ad\u30b9\u30c8\u3092\u6298\u308a\u8fd4\u3059
INFO_CTRL_PANEL_EXCLUDE_OPERATIONAL_ATTRIBUTES=\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30ca\u30eb\u5c5e\u6027\u306e\u9664\u5916
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_EXPORT=\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u3057\u3066\u3044\u307e\u3059\u3002\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3092\u5b9f\u884c\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_NO_BACKEND_SELECTED=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
MILD_ERR_CTRL_PANEL_EXPORT_DIRECTORY_PROVIDED=\u6307\u5b9a\u3055\u308c\u305f\u30d1\u30b9 '%s' \u306f\u5b58\u5728\u3057\u307e\u3059\u3002\u3053\u308c\u306f\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u3059\u3002
MILD_ERR_CTRL_PANEL_INVALID_WRAP_COLUMN=\u5217\u306e\u6298\u8fd4\u3057\u306e\u5024\u306f\u3001%d \u304b\u3089 %d \u307e\u3067\u306e\u9593\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002
#
# Note that the following property contains line breaks in HTML format (<br>)
#
INFO_CTRL_PANEL_CONFIRMATION_EXPORT_LDIF_DETAILS=\u30d5\u30a1\u30a4\u30eb '%s' \u306f\u5b58\u5728\u3057\u307e\u3059\u3002\u305d\u306e\u5185\u5bb9\u306f\u4e0a\u66f8\u304d\u3055\u308c\u307e\u3059\u3002<br><br>\u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_EXPORTING_LDIF_SUMMARY=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u304b\u3089\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_EXPORTING_LDIF_SUCCESSFUL_SUMMARY=\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u5b8c\u4e86
INFO_CTRL_PANEL_EXPORTING_LDIF_SUCCESSFUL_DETAILS=\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u304c\u6b63\u5e38\u306b\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_EXPORTING_LDIF_ERROR_SUMMARY=\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_EXPORTING_LDIF_ERROR_DETAILS=\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9: %d.
INFO_CTRL_PANEL_EXPORT_TASK_DESCRIPTION=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u306e\u30d5\u30a1\u30a4\u30eb '%s' \u3078\u306e\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3002
INFO_CTRL_PANEL_IMPORT_LDIF_TITLE=LDIF \u306e\u30a4\u30f3\u30dd\u30fc\u30c8
INFO_CTRL_PANEL_DATA_IN_FILE_COMPRESSED=\u30d5\u30a1\u30a4\u30eb\u5185\u306e\u30c7\u30fc\u30bf\u306f\u5727\u7e2e\u3055\u308c\u307e\u3059 (.gzip)
INFO_CTRL_PANEL_IMPORT_TYPE_LABEL=\u30a4\u30f3\u30dd\u30fc\u30c8\u306e\u30bf\u30a4\u30d7:
INFO_CTRL_PANEL_IMPORT_OVERWRITE_LABEL=\u3059\u3079\u3066\u306e\u65e2\u5b58\u30c7\u30fc\u30bf\u306e\u4e0a\u66f8\u304d
INFO_CTRL_PANEL_IMPORT_APPEND_LABEL=\u65e2\u5b58\u30c7\u30fc\u30bf\u3078\u306e\u8ffd\u52a0
INFO_CTRL_PANEL_FILE_TO_IMPORT_LABEL=\u30a4\u30f3\u30dd\u30fc\u30c8\u3059\u308b\u30d5\u30a1\u30a4\u30eb:
INFO_CTRL_PANEL_IMPORT_REPLACE_ENTRIES=\u30a4\u30f3\u30dd\u30fc\u30c8\u3055\u308c\u305f\u5024\u3068\u4e00\u81f4\u3059\u308b DN \u3092\u6301\u3064\u30a8\u30f3\u30c8\u30ea\u306e\u7f6e\u304d\u63db\u3048
INFO_CTRL_PANEL_SCHEMA_VALIDATION_LABEL=\u30b9\u30ad\u30fc\u30de\u306e\u691c\u8a3c:
INFO_CTRL_PANEL_REJECT_NOT_SCHEMA_COMPLIANT_LABEL=\u30b9\u30ad\u30fc\u30de\u306b\u6e96\u62e0\u3057\u3066\u3044\u306a\u3044\u30a8\u30f3\u30c8\u30ea\u306e\u62d2\u5426
INFO_CTRL_PANEL_REJECTS_FILE_LABEL=\u62d2\u5426\u30d5\u30a1\u30a4\u30eb:
INFO_CTRL_PANEL_WRITE_REJECTS_FILE_LABEL=\u62d2\u5426\u3055\u308c\u305f\u30a8\u30f3\u30c8\u30ea\u3092\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307f\u307e\u3059
INFO_CTRL_PANEL_OVERWRITE_REJECTS_FILE_LABEL=\u30d5\u30a1\u30a4\u30eb\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u3001\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u306f\u8ffd\u52a0\u3059\u308b\u4ee3\u308f\u308a\u306b\u4e0a\u66f8\u304d\u3057\u307e\u3059
INFO_CTRL_PANEL_SKIPS_FILE_LABEL=\u30b9\u30ad\u30c3\u30d7\u30d5\u30a1\u30a4\u30eb:
INFO_CTRL_PANEL_WRITE_SKIPS_FILE_LABEL=\u30b9\u30ad\u30c3\u30d7\u3055\u308c\u305f\u30a8\u30f3\u30c8\u30ea\u3092\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307f\u307e\u3059
INFO_CTRL_PANEL_OVERWRITE_SKIPS_FILE_LABEL=\u30d5\u30a1\u30a4\u30eb\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u3001\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u306f\u8ffd\u52a0\u3059\u308b\u4ee3\u308f\u308a\u306b\u4e0a\u66f8\u304d\u3057\u307e\u3059
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_IMPORT=\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u3057\u3066\u3044\u307e\u3059\u3002\u30a4\u30f3\u30dd\u30fc\u30c8\u3092\u5b9f\u884c\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_REJECTS_FILE_REQUIRED=\u62d2\u5426\u30d5\u30a1\u30a4\u30eb\u306e\u5024\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_REJECTS_AND_SKIPS_MUST_BE_DIFFERENT=\u62d2\u5426\u30d5\u30a1\u30a4\u30eb\u3068\u30b9\u30ad\u30c3\u30d7\u30d5\u30a1\u30a4\u30eb\u306b\u306f\u5225\u3005\u306e\u5024\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_SKIPS_FILE_REQUIRED=\u30b9\u30ad\u30c3\u30d7\u30d5\u30a1\u30a4\u30eb\u306e\u5024\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
#
# Note that the following property contains line breaks in HTML format (<br>)
#
INFO_CTRL_PANEL_CONFIRMATION_IMPORT_LDIF_DETAILS=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u306b\u3042\u308b\u3059\u3079\u3066\u306e\u30c7\u30fc\u30bf\u304c\u4e0a\u66f8\u304d\u3055\u308c\u307e\u3059\u3002<br><br>\u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_IMPORTING_LDIF_SUMMARY=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u306b\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_IMPORTING_LDIF_SUCCESSFUL_SUMMARY=\u30a4\u30f3\u30dd\u30fc\u30c8\u5b8c\u4e86
INFO_CTRL_PANEL_IMPORTING_LDIF_SUCCESSFUL_DETAILS=\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u6b63\u5e38\u306b\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_IMPORTING_LDIF_ERROR_SUMMARY=\u30a4\u30f3\u30dd\u30fc\u30c8\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_IMPORTING_LDIF_ERROR_DETAILS=\u30a4\u30f3\u30dd\u30fc\u30c8\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9: %d.
INFO_CTRL_PANEL_IMPORT_TASK_DESCRIPTION=\u30d5\u30a1\u30a4\u30eb '%s' \u306e\u5185\u5bb9\u3092\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u306b\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_DATA_INCLUSION_OPTIONS=\u30c7\u30fc\u30bf\u53d6\u308a\u8fbc\u307f\u30aa\u30d7\u30b7\u30e7\u30f3
INFO_CTRL_PANEL_DATA_EXCLUSION_OPTIONS=\u30c7\u30fc\u30bf\u9664\u5916\u30aa\u30d7\u30b7\u30e7\u30f3
INFO_CTRL_PANEL_DNS_TO_INCLUDE=\u53d6\u308a\u8fbc\u3080 DN:
INFO_CTRL_PANEL_DNS_TO_EXCLUDE=\u9664\u5916\u3059\u308b DN:
INFO_CTRL_PANEL_ATTRIBUTES_TO_INCLUDE=\u53d6\u308a\u8fbc\u3080\u5c5e\u6027:
INFO_CTRL_PANEL_ATTRIBUTES_TO_EXCLUDE=\u9664\u5916\u3059\u308b\u5c5e\u6027:
INFO_CTRL_PANEL_INCLUSION_FILTER=\u53d6\u308a\u8fbc\u307f\u30d5\u30a3\u30eb\u30bf:
INFO_CTRL_PANEL_EXCLUSION_FILTER=\u9664\u5916\u30d5\u30a3\u30eb\u30bf:
INFO_CTRL_PANEL_SEPARATE_DNS_LINE_BREAK=\u8907\u6570\u306e DN \u3092\u884c\u30d6\u30ec\u30fc\u30af\u3067\u533a\u5207\u308b
INFO_CTRL_PANEL_SEPARATE_ATTRIBUTES_COMMA=\u8907\u6570\u306e\u5c5e\u6027\u3092\u30b3\u30f3\u30de (,) \u3067\u533a\u5207\u308b
MILD_ERR_CTRL_PANEL_NOT_A_DESCENDANT_OF_BASE_DN=\u30d9\u30fc\u30b9 DN '%s' \u306f\u3001\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u3067\u5b9a\u7fa9\u3055\u308c\u305f\u3069\u306e\u30d9\u30fc\u30b9 DN \u306e\u5b50\u5b6b\u3067\u3082\u3042\u308a\u307e\u305b\u3093\u3002
MILD_ERR_CTRL_PANEL_NOT_VALID_ATTRIBUTE_NAME=\u5c5e\u6027 '%s' \u306e\u540d\u524d\u304c\u6709\u52b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002
MILD_ERR_CTRL_PANEL_INVALID_FILTER_DETAILS_WITH_VALUE=\u6307\u5b9a\u3055\u308c\u305f\u5024 '%s' \u306f\u3001\u6709\u52b9\u306a\u30d5\u30a3\u30eb\u30bf\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u8a73\u7d30: %s
INFO_CTRL_PANEL_INDEX_BROWSER_RIGHT_PANEL_TITLE=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\u30fc\u306e\u8868\u793a
INFO_CTRL_PANEL_SCHEMA_BROWSER_RIGHT_PANEL_TITLE=\u30b9\u30ad\u30fc\u30de\u306e\u8981\u7d20\u306e\u8868\u793a
INFO_CTRL_PANEL_INDEX_PANEL_TITLE=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\u30fc
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_INDEX_EDITING=\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u3057\u3066\u3044\u307e\u3059\u3002\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u7de8\u96c6\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_DELETE_INDEX_TITLE=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u524a\u9664
INFO_CTRL_PANEL_CONFIRMATION_INDEX_DELETE_DETAILS=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u3067\u5b9a\u7fa9\u3055\u308c\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u3092\u524a\u9664\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_DELETING_INDEX_SUMMARY=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_DELETING_INDEX_COMPLETE=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_DELETING_INDEX_SUCCESSFUL=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u304c\u6b63\u5e38\u306b\u524a\u9664\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_DELETING_INDEX_ERROR_SUMMARY=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_DELETING_INDEX_ERROR_DETAILS=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
INFO_CTRL_PANEL_MODIFYING_INDEX_TITLE=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5909\u66f4
INFO_CTRL_PANEL_MODIFYING_INDEX_SUMMARY=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9 %s \u3092\u5909\u66f4\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_MODIFYING_INDEX_COMPLETE=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u5909\u66f4\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_MODIFYING_INDEX_SUCCESSFUL=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u304c\u6b63\u5e38\u306b\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_MODIFYING_INDEX_ERROR_SUMMARY=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5909\u66f4\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_MODIFYING_INDEX_ERROR_DETAILS=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u306e\u5909\u66f4\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
INFO_CTRL_PANEL_MODIFY_INDEX_TASK_DESCRIPTION=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u3092\u5909\u66f4\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_MODIFYING_INDEX_PROGRESS=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9 %s \u3092\u5909\u66f4\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_JAVA_PROPERTIES_TITLE=Java \u8a2d\u5b9a
INFO_CTRL_PANEL_JAVA_HOME_LABEL=Java \u30db\u30fc\u30e0:
INFO_CTRL_PANEL_USE_OPENDS_JAVA_HOME=\u74b0\u5883\u5909\u6570 OPENDS_JAVA_HOME \u306e\u5024\u3092\u4f7f\u7528\u3057\u307e\u3059
INFO_CTRL_PANEL_USE_OPENDS_JAVA_HOME_HELP=OPENDS_JAVA_HOME \u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306f\u3001\u4e0b\u4f4d\u306e\u5024\u304c\u30d5\u30a9\u30fc\u30eb\u30d0\u30c3\u30af\u3068\u3057\u3066\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002
INFO_CTRL_PANEL_USE_SPECIFIED_OPENDS_JAVA_HOME=\u6b21\u306e\u5024\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_USE_SPECIFIED_OPENDS_JAVA_HOME_HELP=\u30b3\u30de\u30f3\u30c9\u884c\u306e\u8d77\u52d5\u6642\u306b\u5024\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u5834\u5408\u306f\u3001OPENDS_JAVA_HOME \u306e\u5024\u304c\u30d5\u30a9\u30fc\u30eb\u30d0\u30c3\u30af\u3068\u3057\u3066\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002
INFO_CTRL_PANEL_JAVA_ARGUMENTS_LABEL=Java \u5f15\u6570:
INFO_CTRL_PANEL_USE_OPENDS_JAVA_ARGS=\u74b0\u5883\u5909\u6570 OPENDS_JAVA_ARGS \u306e\u5024\u3092\u4f7f\u7528\u3057\u307e\u3059
INFO_CTRL_PANEL_USE_OPENDS_JAVA_ARGS_HELP=OPENDS_JAVA_ARGS \u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306f\u3001\u4e0b\u4f4d\u306b\u6307\u5b9a\u3055\u308c\u305f\u5024\u304c\u30d5\u30a9\u30fc\u30eb\u30d0\u30c3\u30af\u3068\u3057\u3066\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002
INFO_CTRL_PANEL_USE_SPECIFIED_OPENDS_JAVA_ARGS=\u4e0b\u4f4d\u306b\u6307\u5b9a\u3055\u308c\u305f\u5024\u3092\u4f7f\u7528\u3057\u307e\u3059
INFO_CTRL_PANEL_USE_SPECIFIED_OPENDS_JAVA_ARGS_HELP=\u30b3\u30de\u30f3\u30c9\u884c\u3067\u5024\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306f\u3001OPENDS_JAVA_ARGS \u306e\u5024\u304c\u30d5\u30a9\u30fc\u30eb\u30d0\u30c3\u30af\u3068\u3057\u3066\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002
#
# Note that the following property must begin with <html>
#
INFO_CTRL_PANEL_ONLINE_COMMAND_HELP=<html>(*)\u64cd\u4f5c\u306f\u30b5\u30fc\u30d0\u30fc\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u5b9f\u884c\u3055\u308c\u3001\u30b3\u30de\u30f3\u30c9\u884c\u3067\u591a\u304f\u306e\u30ea\u30bd\u30fc\u30b9\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u305b\u3093\u3002
#
# Note that the following property must begin with <html>
#
INFO_CTRL_PANEL_OFFLINE_COMMAND_HELP=<html>(**)\u64cd\u4f5c\u306f\u72ec\u81ea\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u5b9f\u884c\u3055\u308c\u3001\u3088\u308a\u591a\u304f\u306e\u8a18\u61b6\u57df\u5272\u308a\u5f53\u3066\u3092\u53d7\u3051\u3089\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002
MILD_ERR_CTRL_PANEL_READING_JAVA_SETTINGS_DETAILS=Java \u8a2d\u5b9a\u306e\u8aad\u307f\u53d6\u308a\u4e2d\u306b\u3001\u4e88\u671f\u3057\u306a\u3044\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u7d30: %s
MILD_ERR_CTRL_PANEL_ERR_READING_JAVA_SETTINGS_SUMMARY=Java \u8a2d\u5b9a\u306e\u8aad\u307f\u53d6\u308a\u4e2d\u306b\u3001\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
INFO_CTRL_PANEL_CHECKING_JAVA_OPTIONS_SUMMARY=\u6307\u5b9a\u3055\u308c\u305f Java \u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u30c1\u30a7\u30c3\u30af\u3057\u3066\u3044\u307e\u3059...
MILD_ERR_CTRL_PANEL_JAVA_PATH_DOES_NOT_EXIST=\u30d1\u30b9 '%s' \u304c\u5b58\u5728\u3057\u307e\u305b\u3093\u3002
MILD_ERR_CTRL_PANEL_JAVA_PATH_NOT_A_DIRECTORY=\u30d1\u30b9 '%s' \u306f\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u4f7f\u7528\u3059\u308b Java \u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3078\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_JAVA_BINARY_NOT_FOUND=\u30d0\u30a4\u30ca\u30ea '%s' \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u4f7f\u7528\u3059\u308b Java \u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3078\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
#
# Note that the following five properties contain line breaks in HTML format
# (<br>)
#
INFO_CTRL_PANEL_CONFIRM_NOT_WORKING_ARGUMENTS_DETAILS= \u30d0\u30a4\u30ca\u30ea '%s' \u3067\u6b21\u306e Java \u5f15\u6570\u3092\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f:<br>%s<br><br>\u3053\u308c\u3089\u306e Java \u5f15\u6570\u3068\u95a2\u9023\u4ed8\u3051\u3089\u308c\u305f\u30b3\u30de\u30f3\u30c9\u884c\u306f\u6a5f\u80fd\u3057\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002<br>\u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_CONFIRM_NOT_WORKING_FALLBACK_ARGUMENTS_DETAILS=\u6b21\u306e Java \u5f15\u6570\u306f\u3001\u30d0\u30a4\u30ca\u30ea '%s' \u3067\u306f\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f:<br>%s<br><br>\u3053\u308c\u3089\u306e\u5f15\u6570\u306f\u3001OPENDS_JAVA_ARGS \u304c\u672a\u5b9a\u7fa9\u306e\u5834\u5408\u306e\u30d5\u30a9\u30fc\u30eb\u30d0\u30c3\u30af\u3068\u3057\u3066\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002\u30d5\u30a9\u30fc\u30eb\u30d0\u30c3\u30af\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306f\u3001\u305d\u308c\u3089\u306e\u5f15\u6570\u3092\u7a7a\u306b\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044\u3002<br><br>\u3053\u308c\u3089\u306e Java \u5f15\u6570\u3068\u95a2\u9023\u4ed8\u3051\u3089\u308c\u305f\u30b3\u30de\u30f3\u30c9\u884c\u306f\u6a5f\u80fd\u3057\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002<br>\u7d9a\u884c\u3057\u307e\u3059\u304b ?
###SEVERE_ERR_CTRL_PANEL_GENERIC_ERROR_FALLBACK_JAVAHOME=The Java home value '%s' \
### is not valid.  This value will be used as fall back when the OPENDS_JAVA_HOME \
### environment variable is not defined.  If you do not want to specify a fall \
### back, leave the Java Home text field empty or specify a valid Java home.<br>\
### Error details:<br>%s
###SEVERE_ERR_CTRL_PANEL_NOT_WORKING_JVM_DETAILS=The Java binary '%s' \
### could not be used to launch the server scripts.<br>The server cannot run using \
### the provided Java Home.
###SEVERE_ERR_CTRL_PANEL_NOT_WORKING_FALLBACK_JVM_DETAILS=The Java binary '%s' \
### could not be used to launch the server scripts.  This value will be used as \
### fall back when the OPENDS_JAVA_HOME environment variable is not defined.  If \
### you do not want to specify a fall back, leave the Java Home text field empty \
### or specify a valid Java home.
MILD_ERR_CTRL_PANEL_ERROR_CHECKING_JAVA_SETTINGS_SUMMARY=Java \u8a2d\u5b9a\u306e\u691c\u67fb\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_ERROR_CHECKING_JAVA_SETTINGS_DETAILS=\u6307\u5b9a\u3055\u308c\u305f Java \u8a2d\u5b9a\u306e\u691c\u67fb\u4e2d\u306b\u3001\u4e88\u671f\u3057\u306a\u3044\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u7d30: %s
INFO_CTRL_PANEL_UPDATING_JAVA_SETTINGS_TITLE=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5909\u66f4
INFO_CTRL_PANEL_UPDATING_JAVA_SETTINGS_SUMMARY=Java \u8a2d\u5b9a\u3092\u66f4\u65b0\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_UPDATING_JAVA_SETTINGS_COMPLETE=Java \u8a2d\u5b9a\u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_UPDATING_JAVA_SETTINGS_SUCCESSFUL=Java \u8a2d\u5b9a\u304c\u6b63\u5e38\u306b\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002\u65b0\u3057\u3044\u8a2d\u5b9a\u306f\u3001\u30b3\u30de\u30f3\u30c9\u884c\u3092\u5b9f\u884c\u3057\u305f\u969b\u306b\u53cd\u6620\u3055\u308c\u307e\u3059\u3002
MILD_ERR_CTRL_PANEL_UPDATING_JAVA_SETTINGS_ERROR_SUMMARY=Java \u30d7\u30ed\u30d1\u30c6\u30a3\u30fc\u306e\u66f4\u65b0\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_UPDATING_JAVA_SETTINGS_ERROR_DETAILS=Java \u8a2d\u5b9a\u306e\u66f4\u65b0\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_UPDATING_JAVA_SETTINGS_ERROR_CODE=Java \u8a2d\u5b9a\u306e\u66f4\u65b0\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9: %d
INFO_CTRL_PANEL_COMMAND_LINE_NAME_COLUMN=\u30b3\u30de\u30f3\u30c9\u884c\u540d
INFO_CTRL_PANEL_JAVA_ARGUMENTS_COLUMN=Java \u5f15\u6570
INFO_CTRL_PANEL_SERVER_RUNTIME_CELL=%s (\u30b5\u30fc\u30d0\u30fc\u5b9f\u884c\u6642)
INFO_CTRL_PANEL_ONLINE_COMMAND_LINE_CELL=%s (\u30aa\u30f3\u30e9\u30a4\u30f3) (*)
INFO_CTRL_PANEL_OFFLINE_COMMAND_LINE_CELL=%s (\u30aa\u30d5\u30e9\u30a4\u30f3) (**)
INFO_CTRL_PANEL_UPDATE_JAVA_SETTINGS_TASK_DESCRIPTION=Java \u8a2d\u5b9a\u3092\u66f4\u65b0\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_EDIT_LDAP_ENTRY_TITLE=LDAP \u30a8\u30f3\u30c8\u30ea\u306e\u7de8\u96c6
INFO_CTRL_PANEL_MODIFYING_ENTRY_CHANGES_TITLE=\u5909\u66f4\u306e\u4fdd\u5b58
INFO_CTRL_PANEL_MODIFYING_ENTRY_SUMMARY=\u30a8\u30f3\u30c8\u30ea '%s' \u306e\u5909\u66f4\u3092\u4fdd\u5b58\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_MODIFYING_ENTRY_COMPLETE=\u30a8\u30f3\u30c8\u30ea\u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_MODIFYING_ENTRY_SUCCESSFUL=\u30a8\u30f3\u30c8\u30ea '%s' \u304c\u6b63\u5e38\u306b\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_MODIFYING_ENTRY_ERROR_SUMMARY=\u5909\u66f4\u306e\u4fdd\u5b58\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_MODIFYING_ENTRY_ERROR_DETAILS=\u30a8\u30f3\u30c8\u30ea '%s' \u306b\u5bfe\u3059\u308b\u5909\u66f4\u306e\u4fdd\u5b58\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_INVALID_ENTRY=\u30a8\u30f3\u30c8\u30ea\u304c\u6b63\u3057\u304f\u3042\u308a\u307e\u305b\u3093\u3002\u8a73\u7d30: %s
INFO_CTRL_PANEL_UNSAVED_CHANGES_DIALOG_TITLE=\u672a\u4fdd\u5b58\u306e\u5909\u66f4
INFO_CTRL_PANEL_UNSAVED_CHANGES_SUMMARY=\u672a\u4fdd\u5b58\u306e\u5909\u66f4
INFO_CTRL_PANEL_UNSAVED_INDEX_CHANGES_DETAILS=\u6b21\u306e\u5834\u6240\u306b\u5909\u66f4\u3092\u4fdd\u5b58\u3057\u307e\u3059\u304b: '%s'?
INFO_CTRL_PANEL_UNSAVED_ENTRY_CHANGES_DETAILS=\u6b21\u306e\u5834\u6240\u306b\u5909\u66f4\u3092\u4fdd\u5b58\u3057\u307e\u3059\u304b: '%s'?
INFO_CTRL_PANEL_DELETING_ENTRY_TITLE=\u30a8\u30f3\u30c8\u30ea\u306e\u524a\u9664
INFO_CTRL_PANEL_DELETING_SUBTREE_TITLE=\u30b5\u30d6\u30c4\u30ea\u30fc\u306e\u524a\u9664
INFO_CTRL_PANEL_DELETE_ENTRY_CONFIRMATION_DETAILS=\u30a8\u30f3\u30c8\u30ea '%s' \u3092\u524a\u9664\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_DELETE_SUBTREE_CONFIRMATION_DETAILS=\u30b5\u30d6\u30c4\u30ea\u30fc '%s' (\u30c4\u30ea\u30fc\u4e0a\u306b\u3042\u308b\u305d\u306e\u30b5\u30d6\u30c4\u30ea\u30fc\u306e\u4e0b\u4f4d\u306e\u3059\u3079\u3066\u306e\u30a8\u30f3\u30c8\u30ea\u3092\u542b\u3080) \u3092\u524a\u9664\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_DELETING_ENTRY_COMPLETE=\u30a8\u30f3\u30c8\u30ea\u304c\u524a\u9664\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_DELETING_ENTRY_SUCCESSFUL=\u30a8\u30f3\u30c8\u30ea '%s' \u304c\u6b63\u5e38\u306b\u524a\u9664\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_DELETING_ENTRY_ERROR_SUMMARY=\u30a8\u30f3\u30c8\u30ea\u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_DELETING_ENTRY_ERROR_DETAILS=\u30a8\u30f3\u30c8\u30ea '%s' \u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
INFO_CTRL_PANEL_DELETING_SUBTREE_SUMMARY=\u30b5\u30d6\u30c4\u30ea\u30fc '%s' \u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_DELETING_SUBTREE_COMPLETE=\u30b5\u30d6\u30c4\u30ea\u30fc\u304c\u524a\u9664\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_DELETING_SUBTREE_SUCCESSFUL=\u30b5\u30d6\u30c4\u30ea\u30fc '%s' \u304c\u6b63\u5e38\u306b\u524a\u9664\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_DELETING_SUBTREE_ERROR_SUMMARY=\u30b5\u30d6\u30c4\u30ea\u30fc\u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_DELETING_SUBTREE_ERROR_DETAILS=\u30b5\u30d6\u30c4\u30ea\u30fc '%s' \u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
INFO_CTRL_PANEL_ALL_BASE_DNS=\u3059\u3079\u3066\u306e\u30d9\u30fc\u30b9 DN
INFO_CTRL_PANEL_LDAP_FILTER=LDAP \u30d5\u30a3\u30eb\u30bf:
INFO_CTRL_PANEL_USERS_FILTER=\u30e6\u30fc\u30b6\u30fc
INFO_CTRL_PANEL_GROUPS_FILTER=\u30b0\u30eb\u30fc\u30d7
INFO_CTRL_PANEL_OTHER_BASE_DN=\u305d\u306e\u4ed6...
INFO_CTRL_PANEL_NON_EDITABLE_ATTRIBUTES=\u7de8\u96c6\u4e0d\u53ef\u5c5e\u6027:
INFO_CTRL_OBJECTCLASS_DESCRIPTOR=objectclass: %s
INFO_CTRL_AUXILIARY_OBJECTCLASS_DESCRIPTOR=\u88dc\u52a9 objectclass: %s
INFO_CTRL_PANEL_LOCAL_OR_REMOTE_LABEL=\u7ba1\u7406\u3059\u308b\u30b5\u30fc\u30d0\u30fc\u3092\u6b21\u304b\u3089\u9078\u629e\u3057\u307e\u3059:
INFO_CTRL_PANEL_REMOTE_SERVER=\u30ea\u30e2\u30fc\u30c8\u30b5\u30fc\u30d0\u30fc:
INFO_CTRL_PANEL_LOCAL_SERVER=\u30ed\u30fc\u30ab\u30eb\u30b5\u30fc\u30d0\u30fc
INFO_CTRL_PANEL_ADMINISTRATION_PORT=\u7ba1\u7406\u30dd\u30fc\u30c8:
INFO_CTRL_PANEL_LOCAL_SERVER_NOT_RUNNING=\u7a3c\u50cd\u3057\u3066\u3044\u307e\u305b\u3093
INFO_EMPTY_REMOTE_HOST_NAME=\u30ea\u30e2\u30fc\u30c8\u30db\u30b9\u30c8\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_INVALID_REMOTE_SERVER_PORT=\u30ea\u30e2\u30fc\u30c8\u30b5\u30fc\u30d0\u30fc\u306e\u7ba1\u7406\u30dd\u30fc\u30c8\u306e\u5024\u306f\u3001%d \u304b\u3089 %d \u307e\u3067\u306e\u9593\u306e\u6574\u6570\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_LOCAL_OR_REMOTE_PANEL_TITLE=\u7ba1\u7406\u3059\u308b\u30b5\u30fc\u30d0\u30fc
#
# Note that the following two properties contain line breaks in HTML format
# (<br>)
#
INFO_CTRL_PANEL_ERROR_CONNECTING_TO_LOCAL=\u30ed\u30fc\u30ab\u30eb\u30b5\u30fc\u30d0\u30fc\u3078\u306e\u63a5\u7d9a\u4e2d\u306b\u6b21\u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f:<br>%s<br>\u8a8d\u8a3c\u3092\u6307\u5b9a\u305b\u305a\u306b\u7d9a\u884c\u3059\u308b\u5834\u5408\u3001\u76e3\u8996\u60c5\u5831\u306f\u8868\u793a\u3055\u308c\u307e\u305b\u3093\u3002<br><br>\u7d9a\u884c\u3057\u307e\u3059\u304b ?
MILD_ERR_CANNOT_CONNECT_TO_REMOTE=\u30b5\u30fc\u30d0\u30fc '%s' \u306e\u30dd\u30fc\u30c8 '%s' \u306b\u63a5\u7d9a\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u6307\u5b9a\u3055\u308c\u305f\u60c5\u5831\u304c\u6b63\u3057\u3044\u3053\u3068\u3001\u304a\u3088\u3073\u30b5\u30fc\u30d0\u30fc\u304c\u7a3c\u50cd\u4e2d\u3067\u3042\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u8a73\u7d30: %s
INFO_CTRL_PANEL_LOGIN_PANEL_TITLE=\u8a8d\u8a3c\u304c\u5fc5\u8981
INFO_CTRL_PANEL_BIND_DN_LABEL=\u30d0\u30a4\u30f3\u30c9 DN:
INFO_CTRL_PANEL_BIND_PASSWORD_LABEL=\u30d1\u30b9\u30ef\u30fc\u30c9:
#
# Note that the following two properties contain line breaks in HTML format
# (<br>)
#
INFO_CTRL_PANEL_RUNNING_TASKS_CONFIRMATION_DETAILS=\u6b21\u306e\u30bf\u30b9\u30af\u304c\u5b9f\u884c\u3055\u308c\u3066\u3044\u307e\u3059:<br>%s<br><br>\u7d42\u4e86\u3057\u3066\u3082\u30bf\u30b9\u30af\u306f\u7d9a\u884c\u3055\u308c\u307e\u3059\u304c\u3001\u30bf\u30b9\u30af\u304c\u6b63\u5e38\u306b\u5b8c\u4e86\u3057\u305f\u304b\u3069\u3046\u304b\u3092\u77e5\u308b\u306b\u306f\u3001\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u78ba\u8a8d\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002<br><br>\u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_RUNNING_TASKS_CHANGE_SERVER_CONFIRMATION_DETAILS=\u6b21\u306e\u30bf\u30b9\u30af\u304c\u5b9f\u884c\u3055\u308c\u3066\u3044\u307e\u3059:<br>%s<br><br>\u307b\u304b\u306e\u30b5\u30fc\u30d0\u30fc\u306b\u63a5\u7d9a\u3057\u3066\u3082\u30bf\u30b9\u30af\u306f\u7d9a\u884c\u3055\u308c\u307e\u3059\u304c\u3001\u30bf\u30b9\u30af\u304c\u6b63\u5e38\u306b\u5b8c\u4e86\u3057\u305f\u304b\u3069\u3046\u304b\u3092\u77e5\u308b\u306b\u306f\u3001\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u78ba\u8a8d\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002<br><br>\u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_MATCHING_RULE_PANEL_TITLE=\u30de\u30c3\u30c1\u30f3\u30b0\u30eb\u30fc\u30eb
INFO_CTRL_PANEL_MATCHING_RULE_DETAILS=\u30de\u30c3\u30c1\u30f3\u30b0\u30eb\u30fc\u30eb\u306e\u8a73\u7d30
INFO_CTRL_PANEL_MATCHING_RULE_NAME=\u540d\u524d:
INFO_CTRL_PANEL_MATCHING_RULE_OID=OID:
INFO_CTRL_PANEL_MATCHING_RULE_DESCRIPTION=\u8aac\u660e:
INFO_CTRL_PANEL_MATCHING_RULE_SYNTAX=\u69cb\u6587:
INFO_CTRL_PANEL_MATCHING_RULE_TYPE=\u30bf\u30a4\u30d7:
INFO_CTRL_PANEL_MATCHING_RULE_USED_BY=\u5c5e\u6027\u306b\u3088\u308b\u4f7f\u7528:
INFO_CTRL_PANEL_NO_PARENT_FOR_ATTRIBUTE=- \u89aa\u304c\u3042\u308a\u307e\u305b\u3093 -
INFO_CTRL_PANEL_NO_MATCHING_RULE_FOR_ATTRIBUTE=- \u30de\u30c3\u30c1\u30f3\u30b0\u30eb\u30fc\u30eb\u304c\u3042\u308a\u307e\u305b\u3093 -
INFO_CTRL_PANEL_NEW_ATTRIBUTE_PANEL_TITLE=\u65b0\u898f\u5c5e\u6027
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_TO_CREATE_ATTRIBUTE_SUMMARY=\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u3057\u3066\u3044\u307e\u3059\u3002\u30b9\u30ad\u30fc\u30de\u3067\u5c5e\u6027\u3092\u4f5c\u6210\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_ATTRIBUTE_NAME_REQUIRED=\u5c5e\u6027\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_INVALID_ATTRIBUTE_NAME=\u6307\u5b9a\u3055\u308c\u305f\u540d\u524d\u304c\u6709\u52b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u8a73\u7d30: %s
MILD_ERR_CTRL_PANEL_ATTRIBUTE_NAME_ALREADY_IN_USE=\u6307\u5b9a\u3055\u308c\u305f\u540d\u524d '%s' \u306f\u3001\u3059\u3067\u306b\u30b9\u30ad\u30fc\u30de\u5185\u306b\u5b58\u5728\u3057\u307e\u3059 (%s \u3068\u3057\u3066\u5b9a\u7fa9)\u3002
MILD_ERR_CTRL_PANEL_OID_NOT_VALID=\u6307\u5b9a\u3055\u308c\u305f OID \u304c\u6709\u52b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u8a73\u7d30: %s
MILD_ERR_CTRL_PANEL_OID_ALREADY_IN_USE=\u6307\u5b9a\u3055\u308c\u305f OID '%s' \u306f\u3001\u3059\u3067\u306b\u30b9\u30ad\u30fc\u30de\u5185\u306b\u5b58\u5728\u3057\u307e\u3059 (%s \u3068\u3057\u3066\u5b9a\u7fa9)\u3002
MILD_ERR_CTRL_PANEL_EMPTY_ALIAS=\u7a7a\u306e\u30a8\u30a4\u30ea\u30a2\u30b9\u304c\u6307\u5b9a\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_ALIAS_ALREADY_IN_USE=\u6307\u5b9a\u3055\u308c\u305f\u30a8\u30a4\u30ea\u30a2\u30b9 '%s' \u306f\u3001\u3059\u3067\u306b\u30b9\u30ad\u30fc\u30de\u5185\u306b\u5b58\u5728\u3057\u307e\u3059 (%s \u3068\u3057\u3066\u5b9a\u7fa9)\u3002
INFO_CTRL_PANEL_CREATING_ATTRIBUTE_SUMMARY=\u5c5e\u6027 '%s' \u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_CREATING_ATTRIBUTE_COMPLETE=\u30b9\u30ad\u30fc\u30de\u3067\u4f5c\u6210\u3055\u308c\u305f\u5c5e\u6027
INFO_CTRL_PANEL_CREATING_ATTRIBUTE_SUCCESSFUL=\u5c5e\u6027 '%s' \u304c\u6b63\u5e38\u306b\u4f5c\u6210\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_CREATING_ATTRIBUTE_ERROR_SUMMARY=\u5c5e\u6027\u306e\u4f5c\u6210\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_CREATING_ATTRIBUTE_ERROR_DETAILS=\u5c5e\u6027 '%s' \u306e\u4f5c\u6210\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u7d30\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_TYPE_ATTRIBUTE=\u5c5e\u6027
INFO_CTRL_PANEL_TYPE_OBJECT_CLASS=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9
INFO_CTRL_PANEL_TYPE_MATCHING_RULE=\u30de\u30c3\u30c1\u30f3\u30b0\u30eb\u30fc\u30eb
INFO_CTRL_PANEL_TYPE_ATTRIBUTE_SYNTAX=\u69cb\u6587
INFO_CTRL_PANEL_SYNTAX_INLINE_HELP=\u3053\u306e\u69cb\u6587\u306f\u3001\u5c5e\u6027\u306e\u5024\u306e\u578b\u3092\u5b9a\u7fa9\u3057\u307e\u3059
INFO_CTRL_PANEL_EXTRA_OPTIONS_EXPANDER=\u8ffd\u52a0\u30aa\u30d7\u30b7\u30e7\u30f3
INFO_CTRL_PANEL_ATTRIBUTE_TYPE_OPTIONS_EXPANDER=\u5c5e\u6027\u578b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3
INFO_CTRL_PANEL_MATCHING_RULE_OPTIONS_EXPANDER=\u30de\u30c3\u30c1\u30f3\u30b0\u30eb\u30fc\u30eb\u306e\u30aa\u30d7\u30b7\u30e7\u30f3
INFO_CTRL_PANEL_SEPARATED_WITH_COMMAS_HELP=\u30b3\u30f3\u30de\u533a\u5207\u308a
INFO_CTRL_PANEL_SCHEMA_FILE_ATTRIBUTE_HELP=\u5c5e\u6027\u306e\u5b9a\u7fa9\u304c\u683c\u7d0d\u3055\u308c\u308b\u30d5\u30a1\u30a4\u30eb ('config%sschema' \u306b\u3042\u308b)\u3002
INFO_CTRL_PANEL_MATCHING_RULE_APPROXIMATE_HELP=\u8fd1\u4f3c\u8981\u6c42\u306b\u4f7f\u7528\u3055\u308c\u308b\u30de\u30c3\u30c1\u30f3\u30b0\u30eb\u30fc\u30eb
INFO_CTRL_PANEL_MATCHING_RULE_EQUALITY_HELP=\u7b49\u4fa1\u8981\u6c42\u306b\u4f7f\u7528\u3055\u308c\u308b\u30de\u30c3\u30c1\u30f3\u30b0\u30eb\u30fc\u30eb
INFO_CTRL_PANEL_MATCHING_RULE_ORDERING_HELP=\u9806\u5e8f\u4ed8\u3051\u8981\u6c42\u306b\u4f7f\u7528\u3055\u308c\u308b\u30de\u30c3\u30c1\u30f3\u30b0\u30eb\u30fc\u30eb
INFO_CTRL_PANEL_MATCHING_RULE_SUBSTRING_HELP=\u90e8\u5206\u6587\u5b57\u5217\u8981\u6c42\u306b\u4f7f\u7528\u3055\u308c\u308b\u30de\u30c3\u30c1\u30f3\u30b0\u30eb\u30fc\u30eb
INFO_CTRL_PANEL_DEFAULT_DEFINED_IN_SYNTAX=- \u69cb\u6587\u3067\u5b9a\u7fa9\u3055\u308c\u305f\u30c7\u30d5\u30a9\u30eb\u30c8 (%s) -
INFO_CTRL_PANEL_NEW_ATTRIBUTE_TASK_DESCRIPTION=\u30b9\u30ad\u30fc\u30de\u3067\u65b0\u898f\u5c5e\u6027 '%s' \u3092\u4f5c\u6210\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_CREATING_ATTRIBUTE_PROGRESS=\u5c5e\u6027 '%s' \u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_ATTRIBUTE_NAME_LABEL=\u540d\u524d:
INFO_CTRL_PANEL_ATTRIBUTE_PARENT_LABEL=\u89aa:
INFO_CTRL_PANEL_ATTRIBUTE_OID_LABEL=OID:
INFO_CTRL_PANEL_ATTRIBUTE_ALIASES_LABEL=\u30a8\u30a4\u30ea\u30a2\u30b9:
INFO_CTRL_PANEL_ATTRIBUTE_ORIGIN_LABEL=ORIGIN:
INFO_CTRL_PANEL_ATTRIBUTE_FILE_LABEL=\u30d5\u30a1\u30a4\u30eb:
INFO_CTRL_PANEL_ATTRIBUTE_DESCRIPTION_LABEL=\u8aac\u660e:
INFO_CTRL_PANEL_ATTRIBUTE_USAGE_LABEL=\u4f7f\u7528\u6cd5: 
INFO_CTRL_PANEL_ATTRIBUTE_SYNTAX_LABEL=\u69cb\u6587:
INFO_CTRL_PANEL_ATTRIBUTE_TYPE_LABEL=\u30bf\u30a4\u30d7:
INFO_CTRL_PANEL_ATTRIBUTE_APPROXIMATE_MATCHING_RULE_LABEL=\u8fd1\u4f3c\u30de\u30c3\u30c1\u30f3\u30b0\u30eb\u30fc\u30eb:
INFO_CTRL_PANEL_ATTRIBUTE_EQUALITY_MATCHING_RULE_LABEL=\u7b49\u4fa1\u30de\u30c3\u30c1\u30f3\u30b0\u30eb\u30fc\u30eb:
INFO_CTRL_PANEL_ATTRIBUTE_ORDERING_MATCHING_RULE_LABEL=\u9806\u5e8f\u4ed8\u3051\u30de\u30c3\u30c1\u30f3\u30b0\u30eb\u30fc\u30eb:
INFO_CTRL_PANEL_ATTRIBUTE_SUBSTRING_MATCHING_RULE_LABEL=\u90e8\u5206\u6587\u5b57\u5217\u30de\u30c3\u30c1\u30f3\u30b0\u30eb\u30fc\u30eb:
INFO_CTRL_PANEL_ATTRIBUTE_NON_MODIFIABLE_LABEL=\u5909\u66f4\u4e0d\u53ef
INFO_CTRL_PANEL_ATTRIBUTE_SINGLE_VALUED_LABEL=\u5358\u4e00\u5024
INFO_CTRL_PANEL_ATTRIBUTE_MULTI_VALUED_LABEL=\u8907\u6570\u5024
INFO_CTRL_PANEL_ATTRIBUTE_COLLECTIVE_LABEL=\u96c6\u5408
INFO_CTRL_PANEL_ATTRIBUTE_OBSOLETE_LABEL=\u5ec3\u6b62
INFO_CTRL_PANEL_ATTRIBUTE_OPERATIONAL_LABEL=\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30ca\u30eb
INFO_CTRL_PANEL_NEW_BACKEND_LABEL=\u65b0\u898f\u30d0\u30c3\u30af\u30a8\u30f3\u30c9:
INFO_CTRL_PANEL_NEW_BASE_DN_TITLE=\u65b0\u898f\u30d9\u30fc\u30b9 DN
INFO_CTRL_PANEL_BASE_DN_EXAMPLE=\u4f8b: dc=example,dc=com
INFO_CTRL_PANEL_DIRECTORY_DATA_LABEL=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30c7\u30fc\u30bf: 
INFO_CTRL_PANEL_ONLY_CREATE_BASE_ENTRY_LABEL=\u30d9\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306e\u307f\u3092\u4f5c\u6210\u3059\u308b
INFO_CTRL_PANEL_LEAVE_DATABASE_EMPTY_LABEL=\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u7a7a\u306e\u307e\u307e\u306b\u3059\u308b
INFO_CTRL_PANEL_IMPORT_FROM_LDIF_LABEL=LDIF \u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30c7\u30fc\u30bf\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3059\u308b
INFO_CTRL_PANEL_IMPORT_AUTOMATICALLY_GENERATED_LABEL=\u81ea\u52d5\u751f\u6210\u3055\u308c\u305f\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf\u306e\u30a4\u30f3\u30dd\u30fc\u30c8
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_CREATE_BASE_DN=\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u3057\u3066\u3044\u307e\u3059\u3002\u65b0\u898f\u30d9\u30fc\u30b9 DN \u3092\u4f5c\u6210\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_IMPORT_LDIF_PATH_LABEL=\u30d1\u30b9:
INFO_CTRL_PANEL_NUMBER_OF_USER_ENTRIES_LABEL=\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306e\u6570: 
MILD_ERR_NEW_BACKEND_NAME_REQUIRED=\u65b0\u898f\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_BACKEND_ALREADY_EXISTS=\u6b21\u306e\u540d\u524d\u306e\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059: %s
MILD_ERR_NEW_BASE_DN_VALUE_REQUIRED=\u30d9\u30fc\u30b9 DN \u306e\u5024\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_BASE_DN_ALREADY_EXISTS=\u30d9\u30fc\u30b9 DN '%s' \u306f\u3059\u3067\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059\u3002
MILD_ERR_BASE_DN_ANCESTOR_EXISTS=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u306b\u3001\u540c\u3058\u968e\u5c64\u30d1\u30b9\u5185\u306b\u3042\u308b\u5225\u306e\u30d9\u30fc\u30b9 DN \u304c\u3059\u3067\u306b\u542b\u307e\u308c\u3066\u3044\u307e\u3059 (%s \u306f\u3001\u6307\u5b9a\u3055\u308c\u305f\u30d9\u30fc\u30b9 DN \u306e\u7956\u5148)\u3002
MILD_ERR_BASE_DN_DN_IS_ANCESTOR_OF=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u306b\u3001\u540c\u3058\u968e\u5c64\u30d1\u30b9\u5185\u306b\u3042\u308b\u5225\u306e\u30d9\u30fc\u30b9 DN \u304c\u3059\u3067\u306b\u542b\u307e\u308c\u3066\u3044\u307e\u3059 (%s \u306f\u3001\u6307\u5b9a\u3055\u308c\u305f\u30d9\u30fc\u30b9 DN \u306e\u5b50\u5b6b)\u3002
MILD_ERR_NUMBER_OF_ENTRIES_INVALID=\u751f\u6210\u3059\u308b\u30e6\u30fc\u30b6\u30fc\u30a8\u30f3\u30c8\u30ea\u306e\u6570\u306f\u3001%d \u304b\u3089 %d \u307e\u3067\u306e\u9593\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_CREATING_BASE_DN_SUMMARY=\u30d9\u30fc\u30b9 DN '%s' \u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_CREATING_BASE_DN_COMPLETE=\u30d9\u30fc\u30b9 DN \u304c\u4f5c\u6210\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_CREATING_BASE_DN_SUCCESSFUL=\u30d9\u30fc\u30b9 DN '%s' \u304c\u6b63\u5e38\u306b\u4f5c\u6210\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_CREATING_BASE_DN_ERROR_SUMMARY=\u30d9\u30fc\u30b9 DN '%s' \u306e\u4f5c\u6210\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u3057\u304f\u306f '\u8a73\u7d30' \u30c6\u30ad\u30b9\u30c8\u9818\u57df\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_CREATING_BASE_DN_ERROR_DETAILS=\u30d9\u30fc\u30b9 DN \u306e\u4f5c\u6210\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9: %d.
INFO_CTRL_PANEL_NEW_BASE_DN_TASK_DESCRIPTION=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u3067\u65b0\u898f\u30d9\u30fc\u30b9 DN '%s' \u3092\u4f5c\u6210\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_CREATING_BACKEND_PROGRESS=\u30d9\u30fc\u30b9 DN '%s' \u3092\u542b\u3080\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_CREATING_BASE_DN_PROGRESS=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u3067\u30d9\u30fc\u30b9 DN '%s' \u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_CREATING_ADDITIONAL_INDEXES_PROGRESS=\u30c7\u30d5\u30a9\u30eb\u30c8\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_NEW_ORGANIZATION_PANEL_TITLE=\u65b0\u898f\u7d44\u7e54
MILD_ERR_CTRL_PANEL_NAME_OF_ORGANIZATION_REQUIRED=\u7d44\u7e54\u306e\u540d\u524d\u306b\u5024\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_NEW_ORGANIZATION_NAME_LABEL=\u540d\u524d:
INFO_CTRL_PANEL_NEW_ORGANIZATION_DESCRIPTION_LABEL=\u8aac\u660e:
INFO_CTRL_PANEL_NEW_ORGANIZATION_ENTRY_DN_LABEL=\u30a8\u30f3\u30c8\u30ea DN:
INFO_CTRL_NEW_DOMAIN_PANEL_TITLE=\u65b0\u898f\u30c9\u30e1\u30a4\u30f3
MILD_ERR_CTRL_PANEL_NAME_OF_DOMAIN_REQUIRED=\u30c9\u30e1\u30a4\u30f3\u306e\u540d\u524d\u306b\u5024\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_NEW_ENTRY_FROM_LDIF_TITLE=LDIF \u304b\u3089\u30a8\u30f3\u30c8\u30ea\u3092\u65b0\u898f\u4f5c\u6210
INFO_CTRL_PANEL_LDIF_SYNTAX_LABEL=\u65b0\u898f\u30a8\u30f3\u30c8\u30ea\u306e LDIF \u69cb\u6587\u306e\u5165\u529b:
INFO_CTRL_PANEL_CHECK_SYNTAX_BUTTON=\u69cb\u6587\u3092\u30c1\u30a7\u30c3\u30af
INFO_CTRL_PANEL_NEW_GROUP_PANEL_TITLE=\u65b0\u898f\u30b0\u30eb\u30fc\u30d7
MILD_ERR_CTRL_PANEL_NAME_OF_GROUP_REQUIRED=\u30b0\u30eb\u30fc\u30d7\u306e\u540d\u524d\u306b\u5024\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_MEMBER_NOT_FOUND=\u30a8\u30f3\u30c8\u30ea '%s' \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_MEMBER_VALUE_NOT_VALID=\u30e1\u30f3\u30d0\u30fc '%s' \u3068\u3057\u3066\u6307\u5b9a\u3055\u308c\u305f\u5024\u304c\u6709\u52b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u8a73\u7d30: %s
MILD_ERR_CTRL_PANEL_MEMBER_REQUIRED=\u30b0\u30eb\u30fc\u30d7\u306e\u30e1\u30f3\u30d0\u30fc\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_GROUP_FILTER_REQUIRED=\u30b0\u30eb\u30fc\u30d7\u306e\u30d5\u30a3\u30eb\u30bf\u3092\u4f7f\u7528\u3057\u3066\u3001LDAP URL \u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_GROUP_FILTER_NOT_VALID=\u6307\u5b9a\u3055\u308c\u305f LDAP URL \u5024\u304c\u6709\u52b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u8a73\u7d30: %s
MILD_ERR_CTRL_PANEL_REFERENCE_GROUP_NOT_FOUND=\u6307\u5b9a\u3055\u308c\u305f\u53c2\u7167\u30b0\u30eb\u30fc\u30d7\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_REFERENCE_GROUP_NOT_DYNAMIC=\u6307\u5b9a\u3055\u308c\u305f\u53c2\u7167\u30b0\u30eb\u30fc\u30d7\u306f\u5b58\u5728\u3057\u307e\u3059\u304c\u3001\u30c0\u30a4\u30ca\u30df\u30c3\u30af\u30b0\u30eb\u30fc\u30d7\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002
MILD_ERR_CTRL_PANEL_REFERENCE_GROUP_NOT_VALID=\u6307\u5b9a\u3055\u308c\u305f\u30c0\u30a4\u30ca\u30df\u30c3\u30af\u30b0\u30eb\u30fc\u30d7\u53c2\u7167 DN \u304c\u6709\u52b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u8a73\u7d30: %s
INFO_CTRL_PANEL_NEW_GROUP_NAME_LABEL=\u540d\u524d:
INFO_CTRL_PANEL_NEW_GROUP_DESCRIPTION_LABEL=\u8aac\u660e:
INFO_CTRL_PANEL_NEW_GROUP_ENTRY_DN_LABEL=\u30a8\u30f3\u30c8\u30ea DN:
INFO_CTRL_PANEL_NEW_GROUP_MEMBERS_LABEL=\u30e1\u30f3\u30d0\u30fc:
INFO_CTRL_PANEL_STATIC_GROUP_LABEL=\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7
INFO_CTRL_PANEL_DYNAMIC_GROUP_LABEL=\u30c0\u30a4\u30ca\u30df\u30c3\u30af\u30b0\u30eb\u30fc\u30d7
INFO_CTRL_PANEL_VIRTUAL_STATIC_GROUP_LABEL=\u4eee\u60f3\u30b9\u30bf\u30c6\u30a3\u30c3\u30af\u30b0\u30eb\u30fc\u30d7
INFO_CTRL_PANEL_GROUP_MEMBER_DNS_LABEL=\u30e1\u30f3\u30d0\u30fc DN:
INFO_CTRL_PANEL_GROUP_FILTER_LABEL=LDAP URL:
INFO_CTRL_PANEL_ADD_MEMBERS_BUTTON=\u30e1\u30f3\u30d0\u30fc\u306e\u8ffd\u52a0...
INFO_CTRL_PANEL_ADD_MEMBERS_LABEL=\u30e1\u30f3\u30d0\u30fc\u306e\u8ffd\u52a0
INFO_CTRL_PANEL_DYNAMIC_GROUP_REFERENCE_LABEL=\u30c0\u30a4\u30ca\u30df\u30c3\u30af\u30b0\u30eb\u30fc\u30d7\u53c2\u7167 DN:
INFO_CTRL_PANEL_CHOOSE_REFERENCE_GROUP=\u53c2\u7167\u30b0\u30eb\u30fc\u30d7\u306e\u9078\u629e
INFO_CTRL_PANEL_NEW_INDEX_TITLE=\u65b0\u898f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_NEW_INDEX=\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u3057\u3066\u3044\u307e\u3059\u3002\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_INFO_CTRL_ATTRIBUTE_NAME_REQUIRED=\u5c5e\u6027\u540d\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
MILD_ERR_INFO_CTRL_PANEL_ENTRY_LIMIT_NOT_VALID=\u30a8\u30f3\u30c8\u30ea\u5236\u9650\u306f\u3001%d \u304b\u3089 %d \u307e\u3067\u306e\u9593\u306e\u6574\u6570\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_INFO_ONE_INDEX_TYPE_MUST_BE_SELECTED=\u5c11\u306a\u304f\u3068\u3082 1 \u3064\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u30bf\u30a4\u30d7\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044 (\u8fd1\u4f3c\u3001\u7b49\u4fa1\u3001\u9806\u5e8f\u4ed8\u3051\u3001\u5b9f\u5728\u3001\u307e\u305f\u306f\u90e8\u5206\u6587\u5b57\u5217)\u3002
INFO_CTRL_PANEL_CREATING_NEW_INDEX_SUMMARY=\u65b0\u898f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_CREATING_NEW_INDEX_SUCCESSFUL_SUMMARY=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u4f5c\u6210\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_CREATING_NEW_INDEX_SUCCESSFUL_DETAILS=\u65b0\u898f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u304c\u6b63\u5e38\u306b\u4f5c\u6210\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_CREATING_NEW_INDEX_ERROR_SUMMARY=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4f5c\u6210\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_CREATING_NEW_INDEX_ERROR_DETAILS=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4f5c\u6210\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
INFO_CTRL_PANEL_NEW_INDEX_TASK_DESCRIPTION=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u3067\u65b0\u898f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u3092\u4f5c\u6210\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_CREATING_NEW_INDEX_PROGRESS=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_NEW_OBJECTCLASS_PANEL_TITLE=\u65b0\u898f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_TO_CREATE_OBJECTCLASS_SUMMARY=\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u3057\u3066\u3044\u307e\u3059\u3002\u30b9\u30ad\u30fc\u30de\u3067\u5c5e\u6027\u3092\u4f5c\u6210\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_OBJECTCLASS_NAME_REQUIRED=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_INVALID_OBJECTCLASS_NAME=\u6307\u5b9a\u3055\u308c\u305f\u540d\u524d\u304c\u6709\u52b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u8a73\u7d30: %s
MILD_ERR_CTRL_PANEL_OBJECTCLASS_NAME_ALREADY_IN_USE=\u6307\u5b9a\u3055\u308c\u305f\u540d\u524d '%s' \u306f\u3001\u3059\u3067\u306b\u30b9\u30ad\u30fc\u30de\u5185\u306b\u5b58\u5728\u3057\u307e\u3059 (%s \u3068\u3057\u3066\u5b9a\u7fa9)\u3002
INFO_CTRL_PANEL_CREATING_OBJECTCLASS_SUMMARY=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9 '%s' \u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_CREATING_OBJECTCLASS_COMPLETE=\u30b9\u30ad\u30fc\u30de\u3067\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9\u304c\u4f5c\u6210\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_CREATING_OBJECTCLASS_SUCCESSFUL=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9 '%s' \u304c\u6b63\u5e38\u306b\u4f5c\u6210\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_CREATING_OBJECTCLASS_ERROR_SUMMARY=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9\u306e\u4f5c\u6210\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_CREATING_OBJECTCLASS_ERROR_DETAILS=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9 '%s' \u306e\u4f5c\u6210\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u8a73\u7d30\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_OBJECTCLASS_OBSOLETE_LABEL=\u5ec3\u6b62
INFO_CTRL_PANEL_OBJECTCLASS_ABSTRACT_LABEL=\u62bd\u8c61
INFO_CTRL_PANEL_OBJECTCLASS_STRUCTURAL_LABEL=\u69cb\u9020
INFO_CTRL_PANEL_OBJECTCLASS_AUXILIARY_LABEL=\u88dc\u52a9
INFO_CTRL_PANEL_ADDREMOVE_AVAILABLE_ATTRIBUTES=\u5229\u7528\u53ef\u80fd\u306a\u5c5e\u6027:
INFO_CTRL_PANEL_ADDREMOVE_REQUIRED_ATTRIBUTES=\u5fc5\u9808\u5c5e\u6027:
INFO_CTRL_PANEL_ADDREMOVE_OPTIONAL_ATTRIBUTES=\u30aa\u30d7\u30b7\u30e7\u30f3\u5c5e\u6027:
INFO_CTRL_PANEL_INHERITED_ATTRIBUTES_HELP=(*) \u7d99\u627f\u3055\u308c\u305f\u5c5e\u6027
INFO_CTRL_PANEL_SCHEMA_FILE_OBJECTCLASS_HELP=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9\u306e\u5b9a\u7fa9\u304c\u683c\u7d0d\u3055\u308c\u308b\u30d5\u30a1\u30a4\u30eb ('config%sschema' \u306b\u3042\u308b)\u3002
INFO_CTRL_PANEL_NEW_OBJECTCLASS_TASK_DESCRIPTION=\u30b9\u30ad\u30fc\u30de\u3067\u65b0\u898f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9 '%s' \u3092\u4f5c\u6210\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_CREATING_OBJECTCLASS_PROGRESS=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9 '%s' \u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_OBJECTCLASS_NAME_LABEL=\u540d\u524d:
INFO_CTRL_PANEL_OBJECTCLASS_PARENT_LABEL=\u89aa:
INFO_CTRL_PANEL_OBJECTCLASS_OID_LABEL=OID:
INFO_CTRL_PANEL_OBJECTCLASS_ALIASES_LABEL=\u30a8\u30a4\u30ea\u30a2\u30b9:
INFO_CTRL_PANEL_OBJECTCLASS_ORIGIN_LABEL=ORIGIN:
INFO_CTRL_PANEL_OBJECTCLASS_FILE_LABEL=\u30d5\u30a1\u30a4\u30eb:
INFO_CTRL_PANEL_OBJECTCLASS_DESCRIPTION_LABEL=\u8aac\u660e:
INFO_CTRL_PANEL_OBJECTCLASS_TYPE_LABEL=\u30bf\u30a4\u30d7:
INFO_CTRL_PANEL_OBJECTCLASS_ATTRIBUTES_LABEL=\u5c5e\u6027:
INFO_CTRL_PANEL_NEW_OU_NAME_LABEL=\u540d\u524d:
INFO_CTRL_PANEL_NEW_OU_DESCRIPTION_LABEL=\u8aac\u660e:
INFO_CTRL_PANEL_NEW_OU_ENTRY_DN_LABEL=\u30a8\u30f3\u30c8\u30ea DN:
INFO_CTRL_PANEL_NEW_OU_ADDRESS_LABEL=\u30a2\u30c9\u30ec\u30b9:
INFO_CTRL_PANEL_NEW_OU_TELEPHONE_NUMBER_LABEL=\u96fb\u8a71\u756a\u53f7:
INFO_CTRL_PANEL_NEW_OU_FAX_NUMBER_LABEL=FAX \u756a\u53f7:
INFO_CTRL_PANEL_NEW_OU_PANEL_TITLE=\u65b0\u898f\u7d44\u7e54\u5358\u4f4d
MILD_ERR_CTRL_PANEL_NAME_OF_OU_REQUIRED=\u7d44\u7e54\u5358\u4f4d\u306e\u540d\u524d\u306b\u5024\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_NEW_USER_FIRST_NAME_LABEL=\u540d:
INFO_CTRL_PANEL_NEW_USER_LAST_NAME_LABEL=\u59d3:
INFO_CTRL_PANEL_NEW_USER_COMMON_NAMES_LABEL=\u5171\u901a\u540d:
INFO_CTRL_PANEL_NEW_USER_UID_LABEL=\u30e6\u30fc\u30b6\u30fc ID:
INFO_CTRL_PANEL_NEW_USER_PASSWORD_LABEL=\u30d1\u30b9\u30ef\u30fc\u30c9:
INFO_CTRL_PANEL_NEW_USER_CONFIRM_PASSWORD_LABEL=\u30d1\u30b9\u30ef\u30fc\u30c9 (\u78ba\u8a8d):
INFO_CTRL_PANEL_NEW_USER_EMAIL_LABEL=\u96fb\u5b50\u30e1\u30fc\u30eb:
INFO_CTRL_PANEL_NEW_USER_TELEPHONE_NUMBER_LABEL=\u96fb\u8a71\u756a\u53f7:
INFO_CTRL_PANEL_NEW_USER_FAX_NUMBER_LABEL=FAX \u756a\u53f7:
INFO_CTRL_PANEL_NEW_USER_NAMING_ATTRIBUTE_LABEL=\u30cd\u30fc\u30df\u30f3\u30b0\u5c5e\u6027:
INFO_CTRL_PANEL_NEW_USER_ENTRY_DN_LABEL=\u30a8\u30f3\u30c8\u30ea DN:
INFO_CTRL_PANEL_NEW_USER_PANEL_TITLE=\u65b0\u898f\u30e6\u30fc\u30b6\u30fc
MILD_ERR_CTRL_PANEL_USER_LAST_NAME_REQUIRED=\u300c\u59d3\\u300d\u306b\u5024\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_USER_COMMON_NAME_REQUIRED=\u300c\u5171\u901a\u540d\u300d\u306b\u5024\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_USER_NAMING_ATTRIBUTE_REQUIRED=\u30cd\u30fc\u30df\u30f3\u30b0\u5c5e\u6027 '%s' \u306b\u5024\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_NEW_VLV_INDEX_TITLE=\u65b0\u898f VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_NEW_VLV=\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u3057\u3066\u3044\u307e\u3059\u3002VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_CREATING_NEW_VLV_INDEX_SUMMARY=\u65b0\u898f VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_CREATING_NEW_VLV_INDEX_SUCCESSFUL_SUMMARY=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u4f5c\u6210\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_CREATING_NEW_VLV_INDEX_SUCCESSFUL_DETAILS=\u65b0\u898f VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u304c\u6b63\u5e38\u306b\u4f5c\u6210\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_CREATING_NEW_VLV_INDEX_ERROR_SUMMARY=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4f5c\u6210\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_CREATING_NEW_VLV_INDEX_ERROR_DETAILS=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4f5c\u6210\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
INFO_CTRL_PANEL_NEW_VLV_INDEX_TASK_DESCRIPTION=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u3067\u65b0\u898f VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u3092\u4f5c\u6210\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_CREATING_NEW_VLV_INDEX_PROGRESS=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_EDIT_OBJECTCLASS_TITLE=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9\u306e\u7de8\u96c6
INFO_CTRL_PANEL_STRUCTURAL_OBJECTCLASS_LABEL=\u69cb\u9020\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9:
INFO_CTRL_PANEL_AUXILIARY_OBJECTCLASS_LABEL=\u88dc\u52a9\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9:
INFO_CTRL_PANEL_INDEXES_LABEL=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9:
INFO_CTRL_PANEL_AVAILABLE_INDEXES_LABEL=\u4f7f\u7528\u53ef\u80fd\u306a\u30a4\u30f3\u30c7\u30c3\u30af\u30b9:
INFO_CTRL_PANEL_SELECTED_INDEXES_LABEL=\u9078\u629e\u3055\u308c\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9:
INFO_CTRL_PANEL_REQUIRES_REBUILD_LEGEND=(*) \u518d\u69cb\u7bc9\u304c\u5fc5\u8981
INFO_CTRL_PANEL_REBUILD_INDEXES_TITLE=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u518d\u69cb\u7bc9
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_DISABLE_BACKEND=\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u3057\u3066\u3044\u307e\u3059\u3002\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u518d\u69cb\u7bc9\u3059\u308b\u524d\u306b\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u3092\u7121\u52b9\u306b\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_NO_BASE_DNS_DEFINED_LABEL=\u30d9\u30fc\u30b9 DN \u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
MILD_ERR_CTRL_PANEL_MUST_SELECT_BASE_DN=\u30d9\u30fc\u30b9 DN \u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_MUST_SELECT_INDEX_TO_REBUILD=\u518d\u69cb\u7bc9\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u5c11\u306a\u304f\u3068\u3082 1 \u3064\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002
#
# Note that the following property contain line breaks in HTML format (<br>)
#
INFO_CTRL_PANEL_CONFIRM_REBUILD_INDEX_DETAILS=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u518d\u69cb\u7bc9\u4e2d\u3001\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u306f\u7121\u52b9\u306b\u306a\u308a\u3001\u305d\u306e\u3059\u3079\u3066\u306e\u30b5\u30d5\u30a3\u30c3\u30af\u30b9\u306b\u30a2\u30af\u30bb\u30b9\u3067\u304d\u306a\u304f\u306a\u308a\u307e\u3059\u3002<br><br>\u7d9a\u884c\u3057\u307e\u3059\u304b ?
MILD_ERR_CTRL_PANEL_NEW_PASSWORD_REQUIRED=\u65b0\u898f\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u5024\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_RESET_USER_PASSWORD_TITLE=\u30e6\u30fc\u30b6\u30fc\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u30ea\u30bb\u30c3\u30c8
INFO_CTRL_PANEL_RESET_USER_PASSWORD_DN_LABEL=DN:
INFO_CTRL_PANEL_RESET_USER_PASSWORD_PWD_LABEL=\u65b0\u898f\u30e6\u30fc\u30b6\u30fc\u30d1\u30b9\u30ef\u30fc\u30c9:
INFO_CTRL_PANEL_RESET_USER_PASSWORD_CONFIRM_LABEL=\u30d1\u30b9\u30ef\u30fc\u30c9 (\u78ba\u8a8d): 
INFO_CTRL_PANEL_RESET_USER_PASSWORD_NAME_LABEL=\u540d\u524d:
INFO_CTRL_PANEL_RESETTING_USER_PASSWORD_SUMMARY=\u30e6\u30fc\u30b6\u30fc\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u30ea\u30bb\u30c3\u30c8\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_RESETTING_USER_PASSWORD_SUCCESSFUL_SUMMARY=\u30e6\u30fc\u30b6\u30fc\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_RESETTING_USER_PASSWORD_SUCCESSFUL_DETAILS=\u30e6\u30fc\u30b6\u30fc\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u6b63\u5e38\u306b\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_RESETTING_USER_PASSWORD_ERROR_SUMMARY=\u30e6\u30fc\u30b6\u30fc\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u66f4\u65b0\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_RESETTING_USER_PASSWORD_ERROR_DETAILS=\u30e6\u30fc\u30b6\u30fc\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u66f4\u65b0\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
INFO_CTRL_PANEL_RESTORE_PANEL_TITLE=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304b\u3089\u306e\u5fa9\u5143
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_RESTORE=\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u3057\u3066\u3044\u307e\u3059\u3002\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304b\u3089\u5fa9\u5143\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_VERIFY_BACKUP_TITLE=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u306e\u691c\u8a3c
INFO_CTRL_PANEL_VERIFYING_BACKUP_SUMMARY=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7 '%s' \u306e\u5185\u5bb9\u3092\u691c\u8a3c\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_VERIFYING_BACKUP_SUCCESSFUL_SUMMARY=\u691c\u8a3c\u5b8c\u4e86
INFO_CTRL_PANEL_VERIFYING_BACKUP_SUCCESSFUL_DETAILS=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u306e\u691c\u8a3c\u304c\u6b63\u5e38\u306b\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_VERIFYING_BACKUP_ERROR_SUMMARY=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u306e\u691c\u8a3c\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_VERIFYING_BACKUP_ERROR_DETAILS= \u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u306e\u691c\u8a3c\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9: %d.
#
# Note that the following property contain line breaks in HTML format (<br>)
#
MILD_ERR_CTRL_PANEL_NO_PARENT_BACKUP_TO_VERIFY=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u30d5\u30a1\u30a4\u30eb\u3092\u542b\u3093\u3060\u89aa\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u6b21\u306b\u3001\u300c\u518d\u8868\u793a\u300d\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u3001\u4f7f\u7528\u53ef\u80fd\u306a\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u306e\u30ea\u30b9\u30c8\u3092\u66f4\u65b0\u3057\u307e\u3059\u3002<br>\u6700\u5f8c\u306b\u3001\u30ea\u30b9\u30c8\u304b\u3089\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u3092\u9078\u629e\u3057\u307e\u3059\u3002
MILD_ERR_CTRL_PANEL_REQUIRED_BACKUP_TO_VERIFY=\u4f7f\u7528\u53ef\u80fd\u306a\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u306e\u30ea\u30b9\u30c8\u304b\u3089\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002
#
# Note that the following property contains line breaks in HTML format (<br>)
#
INFO_CTRL_PANEL_CONFIRM_RESTORE_DETAILS=\u5fa9\u5143\u64cd\u4f5c\u3092\u7d9a\u884c\u3059\u308b\u3068\u3001\u30b5\u30fc\u30d0\u30fc\u4e0a\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u306f\u4e0a\u66f8\u304d\u3055\u308c\u307e\u3059\u3002<br><br>\u7d9a\u884c\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_RESTORING_SUMMARY=\u30d0\u30c3\u30af\u30a2\u30c3\u30d7 '%s' \u306e\u5185\u5bb9\u3092\u5fa9\u5143\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_RESTORING_SUCCESSFUL_SUMMARY=\u5fa9\u5143\u5b8c\u4e86
INFO_CTRL_PANEL_RESTORING_SUCCESSFUL_DETAILS=\u5fa9\u5143\u304c\u6b63\u5e38\u306b\u5b8c\u4e86\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_RESTORING_ERROR_SUMMARY=\u5fa9\u5143\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_RESTORING_ERROR_DETAILS=\u5fa9\u5143\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9: %d.
INFO_CTRL_PANEL_VERIFY_TASK_DESCRIPTION=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea '%s' \u306b\u3042\u308b\u30d0\u30c3\u30af\u30a2\u30c3\u30d7 '%s' \u306e\u5185\u5bb9\u3092\u691c\u8a3c\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_RESTORE_TASK_DESCRIPTION=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea '%s' \u306b\u3042\u308b\u30d0\u30c3\u30af\u30a2\u30c3\u30d7 '%s' \u306e\u5185\u5bb9\u3092\u5fa9\u5143\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_CN_FRIENDLY_NAME=\u5171\u901a\u540d
INFO_CTRL_PANEL_OBJECTCLASS_FRIENDLY_NAME=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9
INFO_CTRL_PANEL_GIVENNAME_FRIENDLY_NAME=\u540d
INFO_CTRL_PANEL_SN_FRIENDLY_NAME=\u59d3
INFO_CTRL_PANEL_UID_FRIENDLY_NAME=\u30e6\u30fc\u30b6\u30fc ID
INFO_CTRL_PANEL_EMPLOYEENUMBER_FRIENDLY_NAME=\u5f93\u696d\u54e1\u756a\u53f7
INFO_CTRL_PANEL_USERPASSWORD_FRIENDLY_NAME=\u30e6\u30fc\u30b6\u30fc\u30d1\u30b9\u30ef\u30fc\u30c9
INFO_CTRL_PANEL_AUTHPASSWORD_FRIENDLY_NAME=\u8a8d\u8a3c\u30d1\u30b9\u30ef\u30fc\u30c9
INFO_CTRL_PANEL_MAIL_FRIENDLY_NAME=\u96fb\u5b50\u30e1\u30fc\u30eb
INFO_CTRL_PANEL_STREET_FRIENDLY_NAME=\u756a\u5730
INFO_CTRL_PANEL_L_FRIENDLY_NAME=\u5e02\u533a\u753a\u6751/\u5730\u57df
INFO_CTRL_PANEL_ST_FRIENDLY_NAME=\u72b6\u614b
INFO_CTRL_PANEL_POSTALCODE_FRIENDLY_NAME=\u90f5\u4fbf\u756a\u53f7
INFO_CTRL_PANEL_MOBILE_FRIENDLY_NAME=\u643a\u5e2f\u96fb\u8a71\u756a\u53f7
INFO_CTRL_PANEL_HOMEPHONE_FRIENDLY_NAME=\u81ea\u5b85\u96fb\u8a71\u756a\u53f7
INFO_CTRL_PANEL_TELEPHONENUMBER_FRIENDLY_NAME=\u96fb\u8a71\u756a\u53f7
INFO_CTRL_PANEL_PAGER_FRIENDLY_NAME=\u30dd\u30b1\u30c3\u30c8\u30d9\u30eb
INFO_CTRL_PANEL_FACSIMILETELEPHONENUMBER_FRIENDLY_NAME=FAX \u756a\u53f7
INFO_CTRL_PANEL_DESCRIPTION_FRIENDLY_NAME=\u8aac\u660e
INFO_CTRL_PANEL_POSTALADDRESS_FRIENDLY_NAME=\u4f4f\u6240
INFO_CTRL_PANEL_UNIQUEMEMBER_FRIENDLY_NAME=\u30b0\u30eb\u30fc\u30d7\u306e\u30e1\u30f3\u30d0\u30fc
INFO_CTRL_PANEL_MEMBERURL_FRIENDLY_NAME=LDAP URL
INFO_CTRL_PANEL_C_FRIENDLY_NAME=\u56fd\u540d
INFO_CTRL_PANEL_DS_TARGET_GROUP_DN_FRIENDLY_NAME=\u30c0\u30a4\u30ca\u30df\u30c3\u30af\u30b0\u30eb\u30fc\u30d7\u53c2\u7167 DN
INFO_CTRL_PANEL_USERCERTIFICATE_FRIENDLY_NAME=\u30e6\u30fc\u30b6\u30fc\u8a3c\u660e\u66f8
INFO_CTRL_PANEL_JPEGPHOTO_FRIENDLY_NAME=JPEG \u5199\u771f
INFO_CTRL_PANEL_SUPPORTEDPWDSCHEMES_FRIENDLY_NAME=\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u30d1\u30b9\u30ef\u30fc\u30c9\u30b9\u30ad\u30fc\u30de
INFO_CTRL_PANEL_SUPPORTEDCONTROLS_FRIENDLY_NAME=\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u5236\u5fa1
INFO_CTRL_PANEL_SUPPORTEDLDAPVERSIONS_FRIENDLY_NAME=\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b LDAP \u30d0\u30fc\u30b8\u30e7\u30f3
INFO_CTRL_PANEL_SUPPORTEDEXTENSIONS_FRIENDLY_NAME=\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u62e1\u5f35\u6a5f\u80fd
INFO_CTRL_PANEL_SUPPORTEDFEATURES_FRIENDLY_NAME=\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u6a5f\u80fd
INFO_CTRL_PANEL_VENDORNAME_FRIENDLY_NAME=\u30d9\u30f3\u30c0\u30fc\u540d
INFO_CTRL_PANEL_VENDORVERSION_FRIENDLY_NAME=\u30d9\u30f3\u30c0\u30fc\u30d0\u30fc\u30b8\u30e7\u30f3
INFO_CTRL_PANEL_NAMINGCONTEXTS_FRIENDLY_NAME=\u30cd\u30fc\u30df\u30f3\u30b0\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8
INFO_CTRL_PANEL_PRIVATENAMINGCONTEXTS_FRIENDLY_NAME=\u975e\u516c\u958b\u30cd\u30fc\u30df\u30f3\u30b0\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8
INFO_CTRL_PANEL_NAME_LABEL=\u540d\u524d
INFO_CTRL_PANEL_SHOW_ATTRS_WITH_VALUES_LABEL=\u5024\u306e\u3042\u308b\u5c5e\u6027\u306e\u307f\u3092\u8868\u793a\u3059\u308b
INFO_CTRL_PANEL_PASSWORD_CONFIRM_LABEL=\u30d1\u30b9\u30ef\u30fc\u30c9 (\u78ba\u8a8d): 
INFO_CTRL_PANEL_CHOOSE_ENTRIES=\u30a8\u30f3\u30c8\u30ea\u306e\u9078\u629e
INFO_CTRL_PANEL_CONTENTS_OF_FILE=- \u30d5\u30a1\u30a4\u30eb '%s' \u306e\u5185\u5bb9 -
MILD_ERR_LOADING_IMAGE=\u30a4\u30e1\u30fc\u30b8\u306e\u30ed\u30fc\u30c9\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
INFO_CTRL_PANEL_THUMBNAIL_DESCRIPTION=\u30b5\u30e0\u30cd\u30a4\u30eb
INFO_CTRL_PANEL_EDIT_BUTTON_LABEL=\u7de8\u96c6...
INFO_CTRL_PANEL_DELETE_BUTTON_LABEL=\u524a\u9664...
INFO_CTRL_PANEL_VIEW_BUTTON_LABEL=\u8868\u793a...
INFO_CTRL_PANEL_STANDARD_ATTRIBUTE_TITLE=\u6a19\u6e96\u5c5e\u6027
INFO_CTRL_PANEL_ATTRIBUTE_DETAILS=\u5c5e\u6027\u306e\u8a73\u7d30
INFO_CTRL_PANEL_REQUIRED_BY_LABEL=\u8981\u6c42\u5143:
INFO_CTRL_PANEL_ALLOWED_BY_LABEL=\u8a31\u53ef\u5143:
INFO_CTRL_PANEL_STANDARD_OBJECTCLASS_TITLE=\u6a19\u6e96\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9
INFO_CTRL_PANEL_OBJECTCLASS_DETAILS=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30af\u30e9\u30b9\u306e\u8a73\u7d30
INFO_CTRL_PANEL_REQUIRED_ATTRIBUTES_LABEL=\u5fc5\u9808\u5c5e\u6027:
INFO_CTRL_PANEL_OPTIONAL_ATTRIBUTES_LABEL=\u30aa\u30d7\u30b7\u30e7\u30f3\u5c5e\u6027:
INFO_CTRL_PANEL_DEFINED_IN_SCHEMA_FILE=\u30d5\u30a1\u30a4\u30eb\u3067\u5b9a\u7fa9: %s
INFO_CTRL_PANEL_GENERIC_TITLE=%s \u5236\u5fa1\u30d1\u30cd\u30eb - %s
INFO_CTRL_PANEL_STATUS_PANEL_TITLE=\u4e00\u822c\u306e\u72b6\u614b
MILD_ERR_CTRL_PANEL_ERROR_READING_CONFIGURATION_SUMMARY=\u8a2d\u5b9a\u306e\u8aad\u307f\u53d6\u308a\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
INFO_CTRL_PANEL_NOT_AVAILABLE_LONG_LABEL=\u5229\u7528\u4e0d\u53ef
INFO_CTRL_PANEL_SERVER_STATUS_TITLE_BORDER=\u30b5\u30fc\u30d0\u30fc\u306e\u72b6\u614b
INFO_CTRL_PANEL_SERVER_STATUS_LABEL=\u30b5\u30fc\u30d0\u30fc\u306e\u72b6\u614b:
INFO_CTRL_PANEL_OPEN_CONNECTIONS_LABEL=\u958b\u3044\u3066\u3044\u308b\u63a5\u7d9a\u6570: 
INFO_CTRL_PANEL_SERVER_DETAILS_TITLE_BORDER=\u30b5\u30fc\u30d0\u30fc\u306e\u8a73\u7d30
INFO_CTRL_PANEL_HOST_NAME_LABEL=\u30db\u30b9\u30c8\u540d: 
INFO_CTRL_PANEL_ADMINISTRATIVE_USERS_LABEL=\u7ba1\u7406\u30e6\u30fc\u30b6\u30fc:
INFO_CTRL_PANEL_INSTALLATION_PATH_LABEL=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30d1\u30b9: 
INFO_CTRL_PANEL_INSTANCE_PATH_LABEL=\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30d1\u30b9:
INFO_CTRL_PANEL_OPENDS_VERSION_LABEL=\u30d0\u30fc\u30b8\u30e7\u30f3:
INFO_CTRL_PANEL_JAVA_VERSION_LABEL=Java \u306e\u30d0\u30fc\u30b8\u30e7\u30f3: 
INFO_CTRL_PANEL_ADMIN_CONNECTOR_LABEL=\u7ba1\u7406\u30b3\u30cd\u30af\u30bf:
INFO_CTRL_PANEL_ADMIN_CONNECTOR_DESCRIPTION=\u30dd\u30fc\u30c8 %d (LDAPS)
INFO_CTRL_PANEL_CONNECTION_HANDLERS=\u63a5\u7d9a\u30cf\u30f3\u30c9\u30e9
INFO_CTRL_PANEL_NO_CONNECTION_HANDLER_FOUND=- \u63a5\u7d9a\u30cf\u30f3\u30c9\u30e9\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093 -
INFO_CTRL_PANEL_DATA_SOURCES=\u30c7\u30fc\u30bf\u30bd\u30fc\u30b9
INFO_CTRL_PANEL_NO_DATA_SOURCES_FOUND=-\u30c7\u30fc\u30bf\u30bd\u30fc\u30b9\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093-
INFO_CTRL_PANEL_WINDOWS_SERVICE_TITLE=Windows \u30b5\u30fc\u30d3\u30b9\u306e\u69cb\u6210
INFO_CTRL_PANEL_WINDOWS_SERVICE_PANEL_TEXT=\u3053\u306e\u30da\u30fc\u30b8\u306f\u3001\u3053\u306e\u30b5\u30fc\u30d0\u30fc\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u304c Windows \u30b5\u30fc\u30d3\u30b9\u3068\u3057\u3066\u5b9f\u884c\u3055\u308c\u308b\u3088\u3046\u306b\u69cb\u6210\u3055\u308c\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u3092\u793a\u3057\u307e\u3059\u3002\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308b\u6a5f\u80fd\u3068\u305d\u306e\u4ed6\u306e\u6a5f\u80fd\u3092\u7ba1\u7406\u3059\u308b\u306b\u306f\u3001\u30aa\u30da\u30ec\u30fc\u30c6\u30a3\u30f3\u30b0\u30b7\u30b9\u30c6\u30e0\u306e Windows \u30b5\u30fc\u30d3\u30b9\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u30de\u30cd\u30fc\u30b8\u30e3\u3092\u5b9f\u884c\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_WINDOWS_SERVICE_INTEGRATION_LABEL=Windows \u30b5\u30fc\u30d3\u30b9\u306e\u7d71\u5408:
INFO_CTRL_PANEL_ENABLE_WINDOWS_SERVICE_BUTTON=\u6709\u52b9\u5316
INFO_CTRL_PANEL_DISABLE_WINDOWS_SERVICE_BUTTON=\u7121\u52b9\u5316...
INFO_CTRL_PANEL_DISABLING_WINDOWS_SERVICE_SUMMARY=Windows \u30b5\u30fc\u30d3\u30b9\u3092\u7121\u52b9\u306b\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_DISABLING_WINDOWS_SERVICE_SUCCESSFUL_SUMMARY=Windows \u30b5\u30fc\u30d3\u30b9\u304c\u7121\u52b9\u306b\u306a\u308a\u307e\u3057\u305f
INFO_CTRL_PANEL_DISABLING_WINDOWS_SERVICE_SUCCESSFUL_DETAILS=Windows \u30b5\u30fc\u30d3\u30b9\u304c\u6b63\u5e38\u306b\u7121\u52b9\u306b\u306a\u308a\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_DISABLING_WINDOWS_SERVICE_ERROR_SUMMARY=Windows \u30b5\u30fc\u30d3\u30b9\u306e\u7121\u52b9\u5316\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_DISABLING_WINDOWS_SERVICE_ERROR_DETAILS=Windows \u30b5\u30fc\u30d3\u30b9\u306e\u7121\u52b9\u5316\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9: %d.
INFO_CTRL_PANEL_ENABLING_WINDOWS_SERVICE_SUMMARY=Windows \u30b5\u30fc\u30d3\u30b9\u3092\u6709\u52b9\u5316\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_ENABLING_WINDOWS_SERVICE_SUCCESSFUL_SUMMARY=Windows \u30b5\u30fc\u30d3\u30b9\u304c\u6709\u52b9\u306b\u306a\u308a\u307e\u3057\u305f
INFO_CTRL_PANEL_ENABLING_WINDOWS_SERVICE_SUCCESSFUL_DETAILS=Windows \u30b5\u30fc\u30d3\u30b9\u304c\u6b63\u5e38\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_ENABLING_WINDOWS_SERVICE_ERROR_SUMMARY=Windows \u30b5\u30fc\u30d3\u30b9\u306e\u6709\u52b9\u5316\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_ENABLING_WINDOWS_SERVICE_ERROR_DETAILS=Windows \u30b5\u30fc\u30d3\u30b9\u306e\u6709\u52b9\u5316\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9: %d.
INFO_CTRL_PANEL_ENABLE_WINDOWS_SERVICE_TASK_DESCRIPTION=Windows \u30b5\u30fc\u30d3\u30b9\u3092\u6709\u52b9\u306b\u3057\u307e\u3059
INFO_CTRL_PANEL_DISABLE_WINDOWS_SERVICE_TASK_DESCRIPTION=Windows \u30b5\u30fc\u30d3\u30b9\u3092\u7121\u52b9\u306b\u3057\u307e\u3059
INFO_CTRL_PANEL_DATABASE_INDEXES=\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30a4\u30f3\u30c7\u30c3\u30af\u30b9
INFO_CTRL_PANEL_ATTRIBUTE_INDEXES=\u5c5e\u6027\u30a4\u30f3\u30c7\u30c3\u30af\u30b9
INFO_CTRL_PANEL_VLV_INDEXES=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9
INFO_CTRL_PANEL_ACTION_LABEL=\u30a2\u30af\u30b7\u30e7\u30f3:
INFO_CTRL_PANEL_VERIFY_ENTRY_CONTEXT_ARE_INDEXES=\u30a8\u30f3\u30c8\u30ea\u30b3\u30f3\u30c6\u30f3\u30c4\u306b\u6b63\u3057\u304f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u4f5c\u6210\u3055\u308c\u3066\u3044\u308b\u304b\u691c\u8a3c\u3059\u308b
INFO_CTRL_PANEL_VERIFY_ALL_KEYS=\u3059\u3079\u3066\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ad\u30fc\u306e\u30a8\u30f3\u30c8\u30ea ID \u304c\u524a\u9664\u3055\u308c\u3001\u65e2\u5b58\u306e\u30a8\u30f3\u30c8\u30ea\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u304b\u691c\u8a3c\u3059\u308b
INFO_CTRL_PANEL_INDEX_LABEL=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9:
INFO_CTRL_PANEL_VERIFY_INDEXES_PANEL_TITLE=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u691c\u8a3c
MILD_ERR_CTRL_PANEL_INDEX_TO_BE_VERIFIED_REQUIRED=\u691c\u8a3c\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u5c11\u306a\u304f\u3068\u3082 1 \u3064\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002
MILD_ERR_CTRL_PANEL_NO_INDEXES_FOR_BASEDN=\u30d9\u30fc\u30b9 DN '%s' \u306b\u5bfe\u3057\u3066\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
MILD_ERR_CTRL_PANEL_INDEX_MUST_BE_SELECTED=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_VERIFYING_INDEXES_SUMMARY='%s' \u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5185\u5bb9\u3092\u691c\u8a3c\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_VERIFYING_INDEXES_SUCCESSFUL_SUMMARY=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u691c\u8a3c\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f
INFO_CTRL_PANEL_VERIFYING_INDEXES_SUCCESSFUL_DETAILS=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u6b63\u5e38\u306b\u691c\u8a3c\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_VERIFYING_INDEXES_ERROR_SUMMARY=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u691c\u8a3c\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_VERIFYING_INDEXES_ERROR_DETAILS=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u691c\u8a3c\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9: %d.
INFO_CTRL_PANEL_VERIFY_INDEX_TASK_DESCRIPTION='%s' \u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u691c\u8a3c\u3057\u307e\u3059\u3002
#
# Note that the following property contains line breaks in HTML format (<br>)
# and must begin with <html>
#
INFO_CTRL_PANEL_INDEX_MODIFIED_MESSAGE=<html>\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002<br>\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u518d\u69cb\u7bc9\u304c\u5fc5\u8981\u3067\u3059 (\u300c\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u518d\u69cb\u7bc9\u300d\u307e\u305f\u306f\u300c\u30a4\u30f3\u30dd\u30fc\u30c8\u300d\u3092\u4f7f\u7528)\u3002
INFO_CTRL_PANEL_VLV_INDEX_PANEL_TITLE=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\u30fc
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_VLV_INDEX_EDITING=\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u3057\u3066\u3044\u307e\u3059\u3002VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u7de8\u96c6\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_DELETE_VLV_INDEX_TITLE=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u524a\u9664
INFO_CTRL_PANEL_CONFIRMATION_VLV_INDEX_DELETE_DETAILS=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u3067\u5b9a\u7fa9\u3055\u308c\u305f VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u3092\u524a\u9664\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_DELETING_VLV_INDEX_SUMMARY=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_DELETING_VLV_INDEX_COMPLETE=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_DELETING_VLV_INDEX_SUCCESSFUL=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u306e VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u304c\u6b63\u5e38\u306b\u524a\u9664\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_DELETING_VLV_INDEX_ERROR_SUMMARY=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_DELETING_VLV_INDEX_ERROR_DETAILS=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u306e\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
INFO_CTRL_PANEL_MODIFYING_VLV_INDEX_TITLE=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5909\u66f4
INFO_CTRL_PANEL_MODIFYING_VLV_INDEX_SUMMARY=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9 %s \u3092\u5909\u66f4\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_MODIFYING_VLV_INDEX_COMPLETE=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u5909\u66f4\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_MODIFYING_VLV_INDEX_SUCCESSFUL=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u306e VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u304c\u6b63\u5e38\u306b\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_MODIFYING_VLV_INDEX_ERROR_SUMMARY=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5909\u66f4\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_MODIFYING_VLV_INDEX_ERROR_DETAILS=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u306e\u5909\u66f4\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
INFO_CTRL_PANEL_MODIFY_VLV_INDEX_TASK_DESCRIPTION=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u306e VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u3092\u5909\u66f4\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_MODIFYING_VLV_INDEX_PROGRESS=VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9 '%s' \u3092\u5909\u66f4\u3057\u3066\u3044\u307e\u3059
INFO_CTRL_PANEL_AVAILABLE_LABEL=\u9078\u629e\u53ef\u80fd:
INFO_CTRL_PANEL_SELECTED_LABEL=\u9078\u629e:
INFO_CTRL_PANEL_ADDREMOVE_ADD_BUTTON=\u8ffd\u52a0 >
INFO_CTRL_PANEL_ADDREMOVE_ADD_ALL_BUTTON=\u3059\u3079\u3066\u3092\u8ffd\u52a0 >
INFO_CTRL_PANEL_ADDREMOVE_REMOVE_BUTTON=< \u524a\u9664
INFO_CTRL_PANEL_ADDREMOVE_REMOVE_ALL_BUTTON=< \u3059\u3079\u3066\u3092\u524a\u9664
INFO_CTRL_PANEL_OBJECTCLASS_CELL_PANEL_AUXILIARY=\u88dc\u52a9: %s
INFO_CTRL_PANEL_ATTRIBUTE_USAGE_OPERATIONAL=%s (\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30ca\u30eb)
INFO_CTRL_PANEL_VLV_ASCENDING_VLV_INDEX=%s (\u6607\u9806)
INFO_CTRL_PANEL_VLV_DESCENDING_VLV_INDEX=%s (\u964d\u9806)
###SEVERE_ERR_CTRL_PANEL_SETTING_ENVIRONMENT=Error setting environment: %s
INFO_CTRL_PANEL_ERROR_DIALOG_TITLE=\u30a8\u30e9\u30fc
INFO_CTRL_PANEL_PROGRESS_DONE=\u5b8c\u4e86
INFO_CTRL_PANEL_VLV_INDEX_CELL=%s - VLV \u30a4\u30f3\u30c7\u30c3\u30af\u30b9
INFO_CTRL_PANEL_DISPLAY_ALL_COMMAND_LINES=\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u884c\u3092\u8868\u793a\u3059\u308b
INFO_CTRL_PANEL_HELP_VIEW_DESCRIPTION=\u30b0\u30ed\u30fc\u30d0\u30eb\u8868\u793a\u30aa\u30d7\u30b7\u30e7\u30f3\u3002
INFO_CTRL_PANEL_REFRESH_MENU=\u518d\u8868\u793a\u30aa\u30d7\u30b7\u30e7\u30f3...
INFO_CTRL_PANEL_REFRESH_PANEL_TITLE=\u518d\u8868\u793a\u30aa\u30d7\u30b7\u30e7\u30f3
INFO_CTRL_PANEL_REFRESH_OPTIONS_PANEL_TEXT=\u8868\u793a\u3055\u308c\u3066\u3044\u308b\u76e3\u8996/\u69cb\u6210\u60c5\u5831\u306e\u518d\u8868\u793a\u5468\u671f (\u79d2\u6570) \u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_REFRESH_OPTIONS_LABEL=\u518d\u8868\u793a\u5468\u671f (\u79d2):
INFO_CTRL_PANEL_INVALID_PERIOD_VALUE=\u3053\u306e\u5468\u671f\u6642\u9593\u306b\u306f\u3001%d \u79d2\u672a\u6e80\u306e\u6b63\u306e\u6574\u6570\u5024\u3092\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
INFO_CTRL_PANEL_CATEGORY_MONITORING=\u76e3\u8996
INFO_CTRL_PANEL_BROWSE_GENERAL_MONITORING=\u4e00\u822c\u60c5\u5831
INFO_CTRL_PANEL_GENERAL_MONITORING_NO_ITEM_SELECTED=- \u9805\u76ee\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u305b\u3093 -
INFO_CTRL_PANEL_GENERAL_MONITORING_TITLE=\u4e00\u822c\u60c5\u5831
INFO_CTRL_PANEL_AUTH_REQUIRED_TO_BROWSE_MONITORING_SUMMARY=\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u3057\u3066\u3044\u307e\u3059\u3002\u76e3\u8996\u30c7\u30fc\u30bf\u3092\u8868\u793a\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
INFO_CTRL_PANEL_SERVER_MUST_RUN_TO_BROWSE_MONITORING_SUMMARY=\u76e3\u8996\u30c7\u30fc\u30bf\u3092\u8868\u793a\u3059\u308b\u306b\u306f\u3001\u30b5\u30fc\u30d0\u30fc\u3092\u7a3c\u50cd\u3057\u3066\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_GENERAL_MONITORING_ROOT_TREE_NODE=ds-directory.png
INFO_CTRL_PANEL_SYSTEM_INFORMATION_TREE_NODE=ds-generic.png
INFO_CTRL_PANEL_JVM_MEMORY_USAGE_TREE_NODE=ds-generic.png
INFO_CTRL_PANEL_WORK_QUEUE_TREE_NODE=ds-generic.png
INFO_CTRL_PANEL_ENTRY_CACHES_TREE_NODE=ds-generic.png
INFO_CTRL_PANEL_DB_ENVIRONMENT_TREE_NODE=ds-suffix.png
INFO_CTRL_PANEL_GENERAL_MONITORING_ROOT=\u76e3\u8996\u30eb\u30fc\u30c8
INFO_CTRL_PANEL_SYSTEM_INFORMATION=\u30b7\u30b9\u30c6\u30e0\u60c5\u5831
INFO_CTRL_PANEL_JAVA_INFORMATION=Java \u60c5\u5831
INFO_CTRL_PANEL_WORK_QUEUE=\u30ef\u30fc\u30af\u30ad\u30e5\u30fc
INFO_CTRL_PANEL_ENTRY_CACHES=\u30a8\u30f3\u30c8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5
INFO_CTRL_PANEL_DB_ENVIRONMENT=\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u74b0\u5883
INFO_CTRL_PANEL_UP_TIME_LABEL=\u7a3c\u50cd\u6642\u9593:
INFO_CTRL_PANEL_MAX_CONNECTIONS_LABEL=\u6700\u5927\u63a5\u7d9a\u6570:
INFO_CTRL_PANEL_TOTAL_CONNECTIONS_LABEL=\u7dcf\u63a5\u7d9a\u6570:
INFO_CTRL_PANEL_START_TIME_LABEL=\u958b\u59cb\u6642\u523b:
INFO_CTRL_PANEL_AVERAGE_REQUEST_BACKLOG=\u5e73\u5747\u306e\u8981\u6c42\u30d0\u30c3\u30af\u30ed\u30b0
INFO_CTRL_PANEL_MAX_REQUEST_BACKLOG=\u6700\u5927\u306e\u8981\u6c42\u30d0\u30c3\u30af\u30ed\u30b0
INFO_CTRL_PANEL_CURRENT_REQUEST_BACKLOG=\u73fe\u5728\u306e\u8981\u6c42\u30d0\u30c3\u30af\u30ed\u30b0
INFO_CTRL_PANEL_REQUESTS_SUBMITTED=\u9001\u4fe1\u6e08\u307f\u306e\u8981\u6c42\u6570
INFO_CTRL_PANEL_REQUESTS_REJECTED=\u30ad\u30e5\u30fc\u304c\u6e80\u676f\u306e\u305f\u3081\u306b\u62d2\u5426\u3055\u308c\u305f\u8981\u6c42\u6570
INFO_CTRL_PANEL_ENTRY_CACHE_HITS=\u30a8\u30f3\u30c8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306e\u30d2\u30c3\u30c8\u6570
INFO_CTRL_PANEL_CURRENT_ENTRY_CACHE_COUNT=\u30a8\u30f3\u30c8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306e\u6570
INFO_CTRL_PANEL_ENTRY_CACHE_TRIES=\u30a8\u30f3\u30c8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306e\u8a66\u884c\u56de\u6570
INFO_CTRL_PANEL_ENTRY_CACHE_HIT_RATIO=\u30a8\u30f3\u30c8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306e\u30d2\u30c3\u30c8\u7387
INFO_CTRL_PANEL_CURRENT_ENTRY_CACHE_SIZE=\u30a8\u30f3\u30c8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306e\u30b5\u30a4\u30ba
INFO_CTRL_PANEL_MAX_ENTRY_CACHE_SIZE=\u30a8\u30f3\u30c8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306e\u6700\u5927\u30b5\u30a4\u30ba
INFO_CTRL_PANEL_MAX_ENTRY_CACHE_COUNT=\u30a8\u30f3\u30c8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306e\u6700\u5927\u6570
INFO_CTRL_PANEL_NO_DBS_FOUND=- \u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093 -
INFO_CTRL_PANEL_DB_HEADER=\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 ID
INFO_CTRL_PANEL_NO_DB_MONITORING_FOUND=- \u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u74b0\u5883\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093 -
INFO_CTRL_PANEL_AVAILABLE_CPUS=\u4f7f\u7528\u53ef\u80fd\u306a CPU \u6570
INFO_CTRL_PANEL_SYSTEM_NAME=\u30b7\u30b9\u30c6\u30e0\u540d
INFO_CTRL_PANEL_OPERATING_SYSTEM=\u30aa\u30da\u30ec\u30fc\u30c6\u30a3\u30f3\u30b0\u30b7\u30b9\u30c6\u30e0
INFO_CTRL_PANEL_FREE_USED_MEMORY=JVM \u5185\u306e\u7a7a\u304d\u30e1\u30e2\u30ea\u30fc
INFO_CTRL_PANEL_MAX_MEMORY=JVM \u5185\u306e\u6700\u5927\u30e1\u30e2\u30ea\u30fc
INFO_CTRL_PANEL_USED_MEMORY=JVM \u5185\u306e\u4f7f\u7528\u30e1\u30e2\u30ea\u30fc
INFO_CTRL_PANEL_CLASS_PATH=\u30af\u30e9\u30b9\u30d1\u30b9
INFO_CTRL_PANEL_JAVA_VENDOR=Java \u30d9\u30f3\u30c0\u30fc
INFO_CTRL_PANEL_JVM_VENDOR=JVM \u30d9\u30f3\u30c0\u30fc
INFO_CTRL_PANEL_JAVA_VERSION=Java \u306e\u30d0\u30fc\u30b8\u30e7\u30f3
INFO_CTRL_PANEL_JVM_VERSION=JVM \u30d0\u30fc\u30b8\u30e7\u30f3
INFO_CTRL_PANEL_JVM_ARCHITECTURE=JVM \u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u30fc
INFO_CTRL_PANEL_JVM_ARGUMENTS=JVM \u5f15\u6570
INFO_CTRL_PANEL_MEMORY_VALUE=%d Mb\u3001%d Kb
INFO_CTRL_PANEL_EXTRA_JAVA_ATTRIBUTES=\u305d\u306e\u4ed6\u306e\u5c5e\u6027
INFO_CTRL_PANEL_JAVA_MEMORY_ATTRIBUTES=\u30e1\u30e2\u30ea\u30fc\u5c5e\u6027
INFO_CTRL_PANEL_NOT_IMPLEMENTED=\u5b9f\u88c5\u3055\u308c\u3066\u3044\u307e\u305b\u3093
INFO_CTRL_PANEL_NO_MONITORING_VALUE=-
INFO_CTRL_PANEL_TOTAL_LABEL=\u5408\u8a08
INFO_CTRL_PANEL_ATTRIBUTE_VIEW_OPTIONS_TITLE=\u5c5e\u6027\u8868\u793a\u30aa\u30d7\u30b7\u30e7\u30f3
INFO_CTRL_PANEL_NO_OPERATION_SELECTED=\u64cd\u4f5c\u3092\u5c11\u306a\u304f\u3068\u3082 1 \u3064\u9078\u629e\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
INFO_CTRL_PANEL_OPERATION_VIEW_LABEL=\u5217\u306e\u8868\u793a
INFO_CTRL_PANEL_OPERATIONS_VIEW=\u64cd\u4f5c\u306e\u8868\u793a...
INFO_CTRL_PANEL_OPERATION_NAME_AS_LABEL=%s:
INFO_CTRL_PANEL_ADD_REQUESTS_LABEL=\u8981\u6c42\u306e\u8ffd\u52a0
INFO_CTRL_PANEL_ADD_RESPONSES_LABEL=\u5fdc\u7b54\u306e\u8ffd\u52a0
INFO_CTRL_PANEL_BIND_REQUESTS_LABEL=\u8981\u6c42\u306e\u30d0\u30a4\u30f3\u30c9
INFO_CTRL_PANEL_BIND_RESPONSES_LABEL=\u5fdc\u7b54\u306e\u30d0\u30a4\u30f3\u30c9
INFO_CTRL_PANEL_COMPARE_REQUESTS_LABEL=\u8981\u6c42\u306e\u6bd4\u8f03
INFO_CTRL_PANEL_COMPARE_RESPONSES_LABEL=\u5fdc\u7b54\u306e\u6bd4\u8f03
INFO_CTRL_PANEL_DELETE_REQUESTS_LABEL=\u8981\u6c42\u306e\u524a\u9664
INFO_CTRL_PANEL_DELETE_RESPONSES_LABEL=\u5fdc\u7b54\u306e\u524a\u9664
INFO_CTRL_PANEL_EXTENDED_REQUESTS_LABEL=\u62e1\u5f35\u8981\u6c42
INFO_CTRL_PANEL_EXTENDED_RESPONSES_LABEL=\u62e1\u5f35\u5fdc\u7b54
INFO_CTRL_PANEL_MOD_DN_REQUESTS_LABEL=DN \u4fee\u6b63\u8981\u6c42
INFO_CTRL_PANEL_MOD_DN_RESPONSES_LABEL=DN \u4fee\u6b63\u5fdc\u7b54
INFO_CTRL_PANEL_MOD_REQUESTS_LABEL=\u4fee\u6b63\u8981\u6c42
INFO_CTRL_PANEL_MOD_RESPONSES_LABEL=\u4fee\u6b63\u5fdc\u7b54
INFO_CTRL_PANEL_SEARCH_REQUESTS_LABEL=\u691c\u7d22\u8981\u6c42
INFO_CTRL_PANEL_SEARCH_DONE_LABEL=\u691c\u7d22\u5b8c\u4e86
INFO_CTRL_PANEL_UNBIND_REQUESTS_LABEL=\u30a2\u30f3\u30d0\u30a4\u30f3\u30c9\u8981\u6c42
INFO_CTRL_PANEL_ALL_CONNECTION_HANDLERS=\u3059\u3079\u3066
INFO_CTRL_PANEL_CONNECTION_HANDLERS_LABEL=\u63a5\u7d9a\u30cf\u30f3\u30c9\u30e9:
INFO_CTRL_PANEL_CONNECTION_HANDLER_MONITORING_TITLE=\u63a5\u7d9a\u30cf\u30f3\u30c9\u30e9\u76e3\u8996
INFO_CTRL_PANEL_AUTH_REQUIRED_TO_SEE_TRAFFIC_MONITORING_SUMMARY=\u30b5\u30fc\u30d0\u30fc\u306f\u7a3c\u50cd\u3057\u3066\u3044\u307e\u3059\u3002\u76e3\u8996\u30c7\u30fc\u30bf\u3092\u8868\u793a\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
INFO_CTRL_PANEL_SERVER_MUST_RUN_TO_SEE_TRAFFIC_MONITORING_SUMMARY=\u76e3\u8996\u30c7\u30fc\u30bf\u3092\u8868\u793a\u3059\u308b\u306b\u306f\u3001\u30b5\u30fc\u30d0\u30fc\u3092\u7a3c\u50cd\u3057\u3066\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_ADMINISTRATION_CONNECTOR_NAME=%d - \u7ba1\u7406\u30b3\u30cd\u30af\u30bf
INFO_CTRL_PANEL_CONNECTION_HANDLER_VIEW_MENU=\u8868\u793a
INFO_CTRL_PANEL_CONNECTION_HANDLER_VIEW_MENU_DESCRIPTION=\u63a5\u7d9a\u30cf\u30f3\u30c9\u30e9\u76e3\u8996\u7528\u306e\u8868\u793a\u30aa\u30d7\u30b7\u30e7\u30f3
INFO_CTRL_PANEL_SHOW_AVERAGES=\u30b5\u30fc\u30d0\u30fc\u8d77\u52d5\u4ee5\u964d\u306e\u5e73\u5747\u3092\u8868\u793a
INFO_CTRL_PANEL_CONNECTION_HANDLER_HEADER=\u63a5\u7d9a\u30cf\u30f3\u30c9\u30e9
INFO_CTRL_PANEL_CONNECTION_HANDLER_MONITORING=\u63a5\u7d9a\u30cf\u30f3\u30c9\u30e9
INFO_CTRL_PANEL_AVERAGE_HEADER=%s \u5e73\u5747/\u79d2
INFO_CTRL_PANEL_AUTHENTICATED_AS='%s' \u3068\u3057\u3066\u8a8d\u8a3c\u3055\u308c\u307e\u3057\u305f
INFO_CTRL_PANEL_NOT_AUTHENTICATED=\u30e6\u30fc\u30b6\u30fc\u304c\u8a8d\u8a3c\u3055\u308c\u3066\u3044\u307e\u305b\u3093
INFO_CTRL_PANEL_NOT_AUTHENTICATED_SERVER_NOT_RUNNING=\u30e6\u30fc\u30b6\u30fc\u304c\u8a8d\u8a3c\u3055\u308c\u3066\u3044\u307e\u305b\u3093 (\u30b5\u30fc\u30d0\u30fc\u304c\u7a3c\u50cd\u3057\u3066\u3044\u307e\u305b\u3093)
INFO_CTRL_PANEL_NOT_AUTHENTICATED_SERVER_REMOTE=\u30e6\u30fc\u30b6\u30fc\u304c\u8a8d\u8a3c\u3055\u308c\u3066\u3044\u307e\u305b\u3093 (\u30b5\u30fc\u30d0\u30fc '%s' \u306b\u63a5\u7d9a\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f)
INFO_CTRL_PANEL_LOCAL_OR_REMOTE=\u7ba1\u7406\u3059\u308b\u30b5\u30fc\u30d0\u30fc\u3092\u9078\u629e\u3057\u307e\u3059:
INFO_CTRL_PANEL_SERVER_REMOTE_SUMMARY=\u30b5\u30fc\u30d0\u30fc\u306f\u30ea\u30e2\u30fc\u30c8\u3067\u3059
INFO_CTRL_PANEL_SERVER_MUST_BE_LOCAL_JAVA_PROPERTIES_SUMMARY=Java \u8a2d\u5b9a\u306f\u3001\u7ba1\u7406\u5bfe\u8c61\u306e\u30b5\u30fc\u30d0\u30fc\u304c\u30ed\u30fc\u30ab\u30eb\u30b5\u30fc\u30d0\u30fc\u3067\u3042\u308b\u5834\u5408\u306e\u307f\u306b\u5909\u66f4\u3067\u304d\u307e\u3059\u3002
INFO_CTRL_PANEL_SERVER_MUST_BE_LOCAL_VERIFY_INDEX_SUMMARY=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306f\u3001\u7ba1\u7406\u5bfe\u8c61\u306e\u30b5\u30fc\u30d0\u30fc\u304c\u30ed\u30fc\u30ab\u30eb\u30b5\u30fc\u30d0\u30fc\u3067\u3042\u308b\u5834\u5408\u306e\u307f\u306b\u691c\u8a3c\u3067\u304d\u307e\u3059
INFO_CTRL_PANEL_SERVER_MUST_BE_LOCAL_REBUILD_INDEX_SUMMARY=\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306f\u3001\u7ba1\u7406\u5bfe\u8c61\u306e\u30b5\u30fc\u30d0\u30fc\u304c\u30ed\u30fc\u30ab\u30eb\u30b5\u30fc\u30d0\u30fc\u3067\u3042\u308b\u5834\u5408\u306e\u307f\u306b\u518d\u69cb\u7bc9\u3067\u304d\u307e\u3059
INFO_CTRL_PANEL_REMOTE_SERVER_PATH=\u30d1\u30b9\u306f\u30ea\u30e2\u30fc\u30c8\u30b5\u30fc\u30d0\u30fc\u304b\u3089\u30a2\u30af\u30bb\u30b9\u53ef\u80fd\u306a\u72b6\u614b\u306b\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
INFO_CTRL_PANEL_SERVER_MUST_BE_LOCAL_WINDOWS_SERVICE_SUMMARY=Windows \u30b5\u30fc\u30d3\u30b9\u306e\u69cb\u6210\u306f\u3001\u7ba1\u7406\u5bfe\u8c61\u306e\u30b5\u30fc\u30d0\u30fc\u304c\u30ed\u30fc\u30ab\u30eb\u30b5\u30fc\u30d0\u30fc\u3067\u3042\u308b\u5834\u5408\u306e\u307f\u8868\u793a\u304a\u3088\u3073\u5909\u66f4\u3067\u304d\u307e\u3059\u3002
###SEVERE_ERR_CTRL_PANEL_ERROR_CREATING_NEW_DATA_LDIF=Could not created local \
### LDIF to populate new base DN with automatically generated data.  Error code: \
### %d.
INFO_CTRL_PANEL_PARENT_BACKUP_ID_LABEL=\u89aa\u30d0\u30c3\u30af\u30a2\u30c3\u30d7 ID:
INFO_CTRL_PANEL_PARENT_BACKUP_PATH_LABEL=\u89aa\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u30d1\u30b9:
MILD_ERR_CTRL_PANEL_NO_PARENT_BACKUP_ID_PROVIDED=\u89aa\u30d0\u30c3\u30af\u30a2\u30c3\u30d7 ID \u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
INFO_CTRL_PANEL_CANNOT_CONNECT_TO_REMOTE_SUMMARY=\u30ea\u30e2\u30fc\u30c8\u30b5\u30fc\u30d0\u30fc\u306b\u63a5\u7d9a\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f
INFO_CTRL_PANEL_CANNOT_CONNECT_TO_REMOTE_DETAILS=\u30ea\u30e2\u30fc\u30c8\u30b5\u30fc\u30d0\u30fc '%s' \u304c\u505c\u6b62\u3057\u3066\u3044\u308b\u3001\u307e\u305f\u306f\u6307\u5b9a\u3055\u308c\u305f\u8a8d\u8a3c\u304c\u6709\u52b9\u3067\u306f\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u30b5\u30fc\u30d0\u30fc\u3092\u9060\u9694\u7ba1\u7406\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u306b\u306f\u3001\u30b5\u30fc\u30d0\u30fc\u3092\u7a3c\u50cd\u3057\u3066\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_CONNECT_TO_SERVER_MENU=\u7ba1\u7406\u3059\u308b\u30b5\u30fc\u30d0\u30fc...
INFO_CTRL_PANEL_INDEX_REBUILD_REQUIRED_REMOTE_DETAILS='%s' \u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u6210\u304c\u6b63\u5e38\u306b\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002\u8a2d\u5b9a\u3092\u53cd\u6620\u3059\u308b\u306b\u306f\u3001\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u751f\u6210\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\u3053\u308c\u306f\u3001\u30ea\u30e2\u30fc\u30c8\u30b5\u30fc\u30d0\u30fc\u4e0a\u306e\u300crebuild-index\u300d\u30b3\u30de\u30f3\u30c9\u884c\u3092\u4f7f\u7528\u3059\u308b\u304b\u3001\u30d0\u30c3\u30af\u30a8\u30f3\u30c9 '%s' \u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u518d\u30a4\u30f3\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002
INFO_PROGRESS_IMPORT_AUTOMATICALLY_GENERATED_REMOTE=\u81ea\u52d5\u751f\u6210\u3055\u308c\u305f\u30c7\u30fc\u30bf (%s \u30a8\u30f3\u30c8\u30ea) \u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059
###SEVERE_ERR_NOT_SAME_PRODUCT_IN_REMOTE_SERVER_NOT_FOUND=The remote server in \
### '%s' is cannot be managed by this control panel.  The remote server product \
### name is '%s' and the control panel product name is '%s'.
###SEVERE_ERR_INCOMPATIBLE_VERSION_IN_REMOTE_SERVER=The remote server in '%s' has \
### not the same version as the control panel.  The remote server version is \
### '%s.%s.%s' and the control panel version is '%d.%d.%d'.
###SEVERE_ERR_VERSION_IN_REMOTE_SERVER_NOT_FOUND=Could not find version \
### information in the remote server.  The remote LDAP server does not seem to be \
### manageable remotely by the control panel.
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_TITLE='%s' \u30bf\u30b9\u30af\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_SUMMARY='%s' \u30bf\u30b9\u30af\u3092\u3044\u3064\u5b9f\u884c\u3059\u308b\u304b\u6307\u5b9a\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_LAUNCH_NOW=\u4eca\u3059\u3050\u5b9f\u884c
INFO_CTRL_PANEL_LAUNCH_LATER=\u3042\u3068\u3067\u5b9f\u884c
INFO_CTRL_PANEL_DAYS=\u65e5/\u66dc\u65e5:
INFO_CTRL_PANEL_JANUARY=1 \u6708
INFO_CTRL_PANEL_FEBRUARY=2 \u6708
INFO_CTRL_PANEL_MARS=3 \u6708
INFO_CTRL_PANEL_APRIL=4 \u6708
INFO_CTRL_PANEL_MAY=5 \u6708
INFO_CTRL_PANEL_JUNE=6 \u6708
INFO_CTRL_PANEL_JULY=7 \u6708
INFO_CTRL_PANEL_AUGUST=8 \u6708
INFO_CTRL_PANEL_SEPTEMBER=9 \u6708
INFO_CTRL_PANEL_OCTOBER=10 \u6708
INFO_CTRL_PANEL_NOVEMBER=11 \u6708
INFO_CTRL_PANEL_DECEMBER=12 \u6708
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_TIME=\u6642\u523b: 
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_DAY=\u65e5:
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_MONTH=\u6708:
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_YEAR=\u5e74:
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_DAILY=\u65e5\u6b21\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3092\u4f7f\u7528\u3057\u3066\u5b9a\u671f\u7684\u306b\u5b9f\u884c\u3059\u308b
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_WEEKLY=\u9031\u6b21\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3092\u4f7f\u7528\u3057\u3066\u5b9a\u671f\u7684\u306b\u5b9f\u884c\u3059\u308b
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_MONTHLY=\u6708\u6b21\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3092\u4f7f\u7528\u3057\u3066\u5b9a\u671f\u7684\u306b\u5b9f\u884c\u3059\u308b
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_SUNDAY=\u65e5\u66dc\u65e5
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_MONDAY=\u6708\u66dc\u65e5
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_TUESDAY=\u706b\u66dc\u65e5
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_WEDNESDAY=\u6c34\u66dc\u65e5
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_THURSDAY=\u76ee\u6a19\u65e5
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_FRIDAY=\u91d1\u66dc\u65e5
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_SATURDAY=\u571f\u66dc\u65e5
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_CRON=CRON \u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3092\u4f7f\u7528\u3057\u3066\u5b9a\u671f\u7684\u306b\u5b9f\u884c\u3059\u308b
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_CRON_MINUTE=\u5206:
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_CRON_HOUR=\u6642:
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_CRON_WEEK_DAY=\u66dc\u65e5:
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_CRON_MONTH_DAY=\u65e5\u4ed8:
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_CRON_MONTH=\u6708:
INFO_CTRL_PANEL_CRON_MINUTE_HELP=\u6709\u52b9\u306a\u5024\u306f 0 \uff5e 59 \u3067\u3059
INFO_CTRL_PANEL_CRON_HOUR_HELP=\u6709\u52b9\u306a\u5024\u306f 0 \uff5e 23 \u3067\u3059
INFO_CTRL_PANEL_CRON_WEEK_DAY_HELP=\u6709\u52b9\u306a\u5024\u306f 0 \uff5e 6 \u3067\u3059 (0 \u306f\u65e5\u66dc\u65e5\u30011 \u306f\u6708\u66dc\u65e5...)
INFO_CTRL_PANEL_CRON_MONTH_DAY_HELP=1 \uff5e 31
INFO_CTRL_PANEL_CRON_MONTH_HELP=\u6709\u52b9\u306a\u5024\u306f 0 \uff5e 12 \u3067\u3059 (1 \u306f 1 \u6708\u30012 \u306f 2 \u6708...)
#
# Note that the following property contains line breaks in HTML format (<br>).
#
INFO_CTRL_PANEL_CRON_HELP=\u300c,\u300d\u3092\u4f7f\u7528\u3057\u3066\u5024\u3092\u533a\u5207\u308a\u307e\u3059\u3002\u305f\u3068\u3048\u3070\u300c1,4,5\u300d\u306e\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u3002<br>\u300c-\u300d\u3092\u4f7f\u7528\u3057\u3066\u7bc4\u56f2\u3092\u8868\u3057\u307e\u3059\u3002\u305f\u3068\u3048\u3070\u300c1-5\u300d\u306e\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u3002\<br>\u300c*\u300d\u3092\u4f7f\u7528\u3057\u3066\u4efb\u610f\u306e\u5024\u3092\u8868\u3057\u307e\u3059\u3002
###SEVERE_ERR_CTRL_PANEL_INVALID_HOUR=The provided hour value is not valid.
###SEVERE_ERR_CTRL_PANEL_INVALID_MINUTE=The provided minute value is not valid.
###SEVERE_ERR_CTRL_PANEL_INVALID_DAY=The provided day value is not valid.
###SEVERE_ERR_CTRL_PANEL_INVALID_TIME=The provided time value is not valid.
###SEVERE_ERR_CTRL_PANEL_INVALID_DAY_IN_MONTH=The day '%d' does not exist in \
### %s.
###SEVERE_ERR_CTRL_PANEL_NO_WEEK_DAY_SELECTED=You must select at least one \
### day of the week.
###SEVERE_ERR_CTRL_PANEL_NO_MONTH_DAY_SELECTED=You must select at least one \
### day of the month.
###SEVERE_ERR_CTRL_PANEL_DATE_ALREADY_PASSED=The provided date already passed.
###SEVERE_ERR_CTRL_PANEL_NO_CRON_MINUTE_PROVIDED=No minute provided.  Use '*' \
### to indicate any value.
###SEVERE_ERR_CTRL_PANEL_NO_CRON_HOUR_PROVIDED=No hour provided.  Use '*' \
### to indicate any value.
###SEVERE_ERR_CTRL_PANEL_NO_CRON_MONTH_DAY_PROVIDED=No day of month \
### provided.  Use '*' to indicate any value.
###SEVERE_ERR_CTRL_PANEL_NO_CRON_MONTH_PROVIDED=No month provided.  Use '*' \
### to indicate any value.
###SEVERE_ERR_CTRL_PANEL_NO_CRON_WEEK_DAY_PROVIDED=No day of week provided.  \
### Use '*' to indicate any value.
###SEVERE_ERR_CTRL_PANEL_NOT_VALID_CRON_MINUTE_PROVIDED=The minute value \
### provided is not valid.
###SEVERE_ERR_CTRL_PANEL_NOT_VALID_CRON_HOUR_PROVIDED=The hour value \
### provided is not valid.
###SEVERE_ERR_CTRL_PANEL_NOT_VALID_CRON_MONTH_DAY_PROVIDED=The day of month \
### value provided is not valid.
###SEVERE_ERR_CTRL_PANEL_NOT_VALID_CRON_MONTH_PROVIDED=The month value \
### provided is not valid.
###SEVERE_ERR_CTRL_PANEL_NOT_VALID_CRON_WEEK_DAY_PROVIDED=The day of week \
### value provided is not valid.
INFO_CTRL_PANEL_TASK_TO_SCHEDULE_LIST_TITLE=\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3055\u308c\u305f\u30bf\u30b9\u30af
INFO_CTRL_PANEL_NO_TASKS_FOUND=- \u30bf\u30b9\u30af\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093 -
INFO_CTRL_PANEL_CANCEL_TASK_BUTTON_LABEL=\u30bf\u30b9\u30af\u306e\u53d6\u308a\u6d88\u3057
INFO_CTRL_PANEL_SCHEDULED_TASK_LIST_REQUIRES_SERVER_RUNNING=\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3055\u308c\u305f\u30bf\u30b9\u30af\u306e\u4e00\u89a7\u3092\u8868\u793a\u3059\u308b\u306b\u306f\u3001\u30b5\u30fc\u30d0\u30fc\u3092\u7a3c\u50cd\u3057\u3066\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_SCHEDULED_TASK_LIST_AUTHENTICATION=\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3055\u308c\u305f\u30bf\u30b9\u30af\u306e\u4e00\u89a7\u3092\u8868\u793a\u3059\u308b\u306b\u306f\u3001\u8a8d\u8a3c\u3092\u884c\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002
INFO_CTRL_PANEL_CANCEL_TASK_MSG=\u9078\u629e\u3057\u305f\u30bf\u30b9\u30af\u3092\u53d6\u308a\u6d88\u3057\u307e\u3059\u304b ?
INFO_CTRL_PANEL_CANCEL_TASK_DESCRIPTION=\u9078\u629e\u3057\u305f\u30bf\u30b9\u30af\u3092\u53d6\u308a\u6d88\u3057\u307e\u3059\u3002
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_CANCEL_TASK=\u30bf\u30b9\u30af '%s' \u3092\u53d6\u308a\u6d88\u3059\u540c\u7b49\u306e\u30b3\u30de\u30f3\u30c9\u884c:
INFO_CTRL_PANEL_TASK_CANCELABLE=\u53d6\u308a\u6d88\u3057\u53ef\u80fd
INFO_CTRL_PANEL_CANCELING_TASK_SUMMARY=\u30bf\u30b9\u30af\u3092\u53d6\u308a\u6d88\u3057\u3066\u3044\u307e\u3059...
INFO_CTRL_PANEL_CANCELING_TASK_COMPLETE=\u30bf\u30b9\u30af\u306f\u6b63\u5e38\u306b\u53d6\u308a\u6d88\u3055\u308c\u307e\u3057\u305f\u3002
INFO_CTRL_PANEL_CANCELING_TASK_SUCCESSFUL=\u30bf\u30b9\u30af\u306f\u6b63\u5e38\u306b\u53d6\u308a\u6d88\u3055\u308c\u307e\u3057\u305f\u3002
MILD_ERR_CTRL_PANEL_CANCELING_TASK_ERROR_SUMMARY=\u30bf\u30b9\u30af\u306e\u53d6\u308a\u6d88\u3057\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
MILD_ERR_CTRL_PANEL_CANCELING_TASK_ERROR_DETAILS=\u9078\u629e\u3057\u305f\u30bf\u30b9\u30af\u306e\u53d6\u308a\u6d88\u3057\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
INFO_CTRL_PANEL_CANCEL_TASK_TITLE=\u30bf\u30b9\u30af\u306e\u53d6\u308a\u6d88\u3057
INFO_CTRL_PANEL_TASK_IS_CANCELABLE=\u53d6\u308a\u6d88\u3057\u53ef\u80fd
INFO_CTRL_PANEL_TASK_IS_NOT_CANCELABLE=\u53d6\u308a\u6d88\u3057\u4e0d\u53ef\u80fd
INFO_CTRL_PANEL_MANAGE_TASKS=\u30bf\u30b9\u30af\u306e\u7ba1\u7406
INFO_CTRL_PANEL_CHANGE_SCHEDULE=\u5909\u66f4...
INFO_CTRL_PANEL_LAUNCH_NOW_SUMMARY=\u4eca\u3059\u3050\u5b9f\u884c
INFO_CTRL_PANEL_LAUNCH_LATER_SUMMARY=%s \u306b\u5b9f\u884c
INFO_CTRL_PANEL_LAUNCH_PERIODICALLY_SUMMARY=CRON \u30b9\u30b1\u30b8\u30e5\u30fc\u30eb '%s' \u3092\u4f7f\u7528\u3057\u3066\u5b9a\u671f\u7684\u306b\u5b9f\u884c\u3059\u308b
MILD_ERR_CTRL_PANEL_LAUNCH_LATER_REQUIRES_SERVER_RUNNING=\u5c06\u6765\u306e\u65e5\u4ed8\u306b\u30bf\u30b9\u30af\u3092\u5b9f\u884c\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u306b\u306f\u3001\u30b5\u30fc\u30d0\u30fc\u304c\u7a3c\u50cd\u3057\u3066\u3044\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
MILD_ERR_CTRL_PANEL_LAUNCH_SCHEDULE_REQUIRES_SERVER_RUNNING=\u5b9a\u671f\u7684\u306b\u30bf\u30b9\u30af\u3092\u5b9f\u884c\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u306b\u306f\u3001\u30b5\u30fc\u30d0\u30fc\u304c\u7a3c\u50cd\u3057\u3066\u3044\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
INFO_CTRL_PANEL_TASK_SPECIFIC_DETAILS=\u30bf\u30b9\u30af\u306e\u5177\u4f53\u7684\u306a\u8a73\u7d30
INFO_CTRL_PANEL_NO_TASK_SELECTED=- \u30bf\u30b9\u30af\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u305b\u3093 -
INFO_CTRL_PANEL_MULTIPLE_TASKS_SELECTED=- \u8907\u6570\u306e\u30bf\u30b9\u30af\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u3059 -
INFO_CTRL_PANEL_NO_TASK_SPECIFIC_DETAILS=- \u30bf\u30b9\u30af\u306e\u5177\u4f53\u7684\u306a\u8a73\u7d30\u306f\u3042\u308a\u307e\u305b\u3093 -
INFO_OPERATION_START_TIME_MESSAGE=\u5b9f\u884c\u65e5: %s