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

abobrov
10.15.2009 919a12b2b8cb95569f128c123aa7e8793ce12f53
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
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License, Version 1.0 only
# (the "License").  You may not use this file except in compliance
# with the License.
#
# You can obtain a copy of the license at
# trunk/opends/resource/legal-notices/OpenDS.LICENSE
# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at
# trunk/opends/resource/legal-notices/OpenDS.LICENSE.  If applicable,
# add the following below this CDDL HEADER, with the fields enclosed
# by brackets "[]" replaced with your own identifying information:
#      Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#      Copyright 2006-2008 Sun Microsystems, Inc.
 
 
 
#
# Global directives
# 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=Adresse:Port
INFO_HOSTNAME_LABEL=Hostname:
INFO_ADMINISTRATIVE_USERS_LABEL=Administratoren:
INFO_AGE_OF_OLDEST_MISSING_CHANGE_COLUMN=Alter der \u00e4ltesten fehlenden \u00c4nderung
INFO_AUTHENTICATE_BUTTON_LABEL=Authentifizieren
INFO_AUTHENTICATE_CONTROL_PANEL_BUTTON_TOOLTIP=Als Administrator authentifizieren, um alle \u00dcberwachungsinformationen anzeigen zu k\u00f6nnen
INFO_BACKENDID_COLUMN=Backend-ID
INFO_BASEDN_COLUMN=Basis-DN
INFO_CANCEL_BUTTON_UNINSTALL_TOOLTIP=Deinstallation abbrechen
MILD_ERR_CANNOT_CONNECT_TO_LOGIN_WITH_CAUSE=Verbindung mit dem Directory Server mit den angegebenen Berechtigungsnachweisen nicht m\u00f6glich.  M\u00f6gliche Ursachen: %n%s
MILD_ERR_CANNOT_CONNECT_TO_LOGIN_WITHOUT_CAUSE=Verbindung mit dem Directory Server mit den angegebenen Berechtigungsnachweisen nicht m\u00f6glich.%nPr\u00fcfen Sie, ob DN und Passwort des Administrators g\u00fcltig sind.
MILD_ERR_CANNOT_CONNECT_WITH_ADS_CREDENTIALS_WITHOUT_CAUSE=Verbindung mit dem Directory Server mit den angegebenen Berechtigungsnachweisen nicht m\u00f6glich.%nPr\u00fcfen Sie, ob ID und Passwort des Administrators g\u00fcltig sind.
INFO_CLI_UNINSTALL_CONFIRM_BACKUPS=Sicherungsdateien in BAK-Verzeichnis entfernen?
INFO_CLI_UNINSTALL_CONFIRM_CONFIGURATION_SCHEMA=Konfigurations- und Schemadateien entfernen?
INFO_CLI_UNINSTALL_CONFIRM_DATABASES=Datenbankinhalt entfernen?
INFO_CLI_UNINSTALL_CONFIRM_DELETE_FILES=Die Dateien werden permanent gel\u00f6scht. M\u00f6chten Sie trotzdem fortfahren?
INFO_CLI_UNINSTALL_CONFIRM_LDIFS=LDIF-Export-Dateien in LDIF-Verzeichnis entfernen?
INFO_CLI_UNINSTALL_CONFIRM_LIBRARIES_BINARIES=Serverbibliotheken und administrative Tools entfernen?
INFO_CLI_UNINSTALL_CONFIRM_LOGS=Protokolldateien entfernen?
INFO_CLI_UNINSTALL_CONFIRM_OUTSIDEDBS=Der Directory Server enth\u00e4lt Datenbankdateien an den folgenden Speicherorten au\u00dferhalb des Serverpfads: %n%s%nDiese Dateien entfernen?
INFO_CLI_UNINSTALL_CONFIRM_OUTSIDELOGS=Der Directory Server enth\u00e4lt Protokolldateien an den folgenden Speicherorten au\u00dferhalb des Serverpfads: %n%s%nDiese Dateien entfernen?
INFO_CLI_UNINSTALL_CONFIRM_STOP=Der OpenDS-Server wird derzeit ausgef\u00fchrt und muss gestoppt werden, bevor die Deinstallation fortgesetzt werden kann.%nServer stoppen und Dateien permanent l\u00f6schen?
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=Der Server wurde gestoppt.
INFO_CLI_UNINSTALL_CONFIRM_UPDATE_REMOTE=Der Server ist f\u00fcr Replikation konfiguriert.%nFalls der Server tats\u00e4chlich Inhalte mit anderen Servern repliziert, m\u00fcssen Sie die Administrator-Authentifizierung bereitstellen, damit Referenzen auf diesen Server in den Replikations-OpenDS-Servern entfernt werden.%n%nGeben Sie 'Ja' ein, um die Authentifizierung zum L\u00f6schen der Remote-Referenzen bereitzustellen.%nGeben Sie 'Nein' ein, um die Deinstallation ohne Aktualisierung der Remote-Referenzen fortzusetzen.%nAuthentifizierung bereitstellen?
INFO_CLI_UNINSTALL_CONFIRM_UPDATE_REMOTE_AND_START=Der Server ist f\u00fcr Replikation konfiguriert.%nFalls der Server tats\u00e4chlich Inhalte mit anderen Servern repliziert, m\u00fcssen Sie ihn starten und die Administrator-Authentifizierung bereitstellen, damit Referenzen auf diesen Server in den Replikations-OpenDS-Servern entfernt werden.%n%nGeben Sie 'Ja' ein, um den Server zu starten, und stellen Sie anschlie\u00dfend die Authentifizierung zum Entfernen der Remote-Referenzen bereit.%nGeben Sie 'Nein' ein, um die Deinstallation ohne Aktualisierung der Remote-Referenzen fortzusetzen.%nServer starten und Authentifizierung bereitstellen?
INFO_UNINSTALL_CLI_REFERENCED_HOSTNAME_PROMPT=Der Name dieses Hosts (bzw. IP-Adresse) wie in Remote-Servern zur Replikation referenziert
INFO_UNINSTALL_CONFIRM_PROVIDE_AUTHENTICATION_AGAIN=M\u00f6chten Sie die Authentifizierung erneut bereitstellen?  (Bei 'Nein' werden die Referenzen auf diesen Server in anderen OpenDS-Servern nicht entfernt).
INFO_CLI_UNINSTALL_WHAT_TO_DELETE=M\u00f6chten Sie alle Komponenten von OpenDS entfernen oder die zu entfernenden Komponenten ausw\u00e4hlen?
INFO_CLI_UNINSTALL_REMOVE_ALL=Alle Komponenten entfernen
INFO_CLI_UNINSTALL_SPECIFY_WHAT_REMOVE=Zu entfernende Komponenten ausw\u00e4hlen
INFO_CLI_VIEW_DETAILS=Details anzeigen
INFO_CLI_DO_YOU_WANT_TO_CONTINUE=M\u00f6chten Sie fortfahren?
INFO_CLI_NUMBER_PROMPT=Geben Sie eine Zahl ein, oder dr\u00fccken Sie die Eingabetaste, um den Standardwert zu akzeptieren
INFO_CLI_INVALID_RESPONSE=Ung\u00fcltige Antwort
INFO_CLOSE_BUTTON_UNINSTALL_TOOLTIP=Deinstallationsfenster schlie\u00dfen
INFO_CONFIRM_CLOSE_UNINSTALL_MSG=OpenDS-Deinstallation ist noch nicht abgeschlossen.%nM\u00f6chten Sie das Deinstallationsfenster wirklich schlie\u00dfen?
INFO_CONFIRM_CLOSE_UNINSTALL_TITLE=Best\u00e4tigung erforderlich
INFO_CONFIRM_RESTART_MESSAGE=M\u00f6chten Sie den Directory Server wirklich neu starten?
INFO_CONFIRM_RESTART_TITLE=Best\u00e4tigung erforderlich
INFO_CONFIRM_STOP_MESSAGE=M\u00f6chten Sie den Directory Server wirklich stoppen?
INFO_CONFIRM_STOP_TITLE=Best\u00e4tigung erforderlich
INFO_CONFIRM_UNINSTALL_PANEL_INSTRUCTIONS=Das OpenDS-Deinstallations-Tool entfernt alle Komponenten des OpenDS-Servers, die Sie unten ausgew\u00e4hlt haben, von Ihrem System. Sind alle Komponenten ausgew\u00e4hlt, wird der Server komplett entfernt.
INFO_CONFIRM_UNINSTALL_PANEL_TITLE=Optionen f\u00fcr Deinstallation
INFO_CONFIRM_UNINSTALL_REPLICATION_SERVER_NOT_RUNNING_MSG=Der Server ist f\u00fcr Replikation konfiguriert.%nFalls der Server tats\u00e4chlich Inhalte mit anderen Servern repliziert, m\u00fcssen Sie ihn starten und anschlie\u00dfend die Administrator-Authentifizierung bereitstellen, damit Referenzen auf diesen Server in den Replikations-OpenDS-Servern entfernt werden.%n%nKlicken Sie auf 'Ja', um den Server zu starten, und stellen Sie anschlie\u00dfend die Authentifizierung zum Entfernen der Remote-Referenzen bereit.%nKlicken Sie auf 'Nein', um die Deinstallation ohne Aktualisierung der Remote-Referenzen fortzusetzen.
INFO_CONFIRM_UNINSTALL_REPLICATION_SERVER_NOT_RUNNING_TITLE=Best\u00e4tigung erforderlich
INFO_CONFIRM_UNINSTALL_REPLICATION_SERVER_RUNNING_MSG=Der Server ist f\u00fcr Replikation konfiguriert.%nFalls der Server tats\u00e4chlich Inhalte mit anderen Servern repliziert, m\u00fcssen Sie die Administrator-Authentifizierung bereitstellen, damit Referenzen auf diesen Server in den Replikations-OpenDS-Servern entfernt werden.%n%nKlicken Sie auf 'Ja', um die Authentifizierung zum L\u00f6schen der Remote-Referenzen bereitzustellen.%nKlicken Sie auf 'Nein', um die Deinstallation ohne Aktualisierung der Remote-Referenzen fortzusetzen.
INFO_CONFIRM_UNINSTALL_REPLICATION_SERVER_RUNNING_TITLE=Best\u00e4tigung erforderlich
INFO_CONFIRM_UNINSTALL_SERVER_NOT_RUNNING_MSG=Deinstallation best\u00e4tigen%nAlle Dateien werden permanent gel\u00f6scht. M\u00f6chten Sie trotzdem fortfahren?
INFO_CONFIRM_UNINSTALL_SERVER_NOT_RUNNING_TITLE=Deinstallation best\u00e4tigen
INFO_CONFIRM_UNINSTALL_SERVER_RUNNING_MSG=Server wird ausgef\u00fchrt%nDer OpenDS-Server wird derzeit ausgef\u00fchrt und muss gestoppt werden, bevor die Deinstallation fortgesetzt werden kann. M\u00f6chten Sie, dass das Deinstallationsprogramm den Server f\u00fcr Sie stoppt und die Deinstallation fortsetzt? Wenn Sie auf 'Nein' klicken, m\u00fcssen Sie den Server manuell stoppen, um fortfahren zu k\u00f6nnen.
MILD_ERR_UNINSTALL_READING_REGISTERED_SERVERS_CONFIRM_UPDATE_REMOTE=Beim Lesen der Konfiguration der vorhandenen Server traten folgende Fehler auf:\n%s\nM\u00f6chten Sie, dass das Deinstallationsprogramm die Referenzen auf diesen Server auf die effizienteste Weise zu entfernen versucht?
MILD_ERR_UNINSTALL_ERROR_UPDATING_REMOTE_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.  Um Remote-Referenzen entfernen zu k\u00f6nnen, m\u00fcssen Sie Berechtigungsnachweise f\u00fcr globale Administratorenunter Verwendung der Optionen %s und %s (oder %s) bereitstellen.%nDie Deinstallation wird fortgesetzt, da sich das System im Erzwingen-bei-Fehler-Modus befindet.
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.  Um Remote-Referenzen entfernen zu k\u00f6nnen, m\u00fcssen Sie Berechtigungsnachweise f\u00fcr globale Administratorenunter Verwendung der Optionen %s und %s (oder %s) bereitstellen.%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.
MILD_ERR_UNINSTALL_NOT_UPDATE_REMOTE_PROMPT=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.%nM\u00f6chten Sie fortfahren?
INFO_CONFIRM_UNINSTALL_SERVER_RUNNING_TITLE=Server wird ausgef\u00fchrt
INFO_CONNECTIONS_LABEL=Offene Verbindungen:
MILD_ERR_COULD_NOT_FIND_VALID_LDAPURL=Fehler beim Lesen der Konfigurationsdatei.%nM\u00f6gliche Ursache: Es ist kein aktivierter LDAP-Port f\u00fcr die angegebenen Verbindungsparameter vorhanden, oder Sie verf\u00fcgen nicht \u00fcber die Leseberechtigung f\u00fcr die Konfigurationsdatei.
INFO_DATABASES_TITLE=Datenquellen
INFO_DELETE_OUTSIDE_DBS_LABEL=Diese Datenbankdateien l\u00f6schen
INFO_DELETE_OUTSIDE_DBS_MSG=Der Directory Server enth\u00e4lt Datenbankdateien an folgenden Speicherorten au\u00dferhalb des Serverpfads:
INFO_DELETE_OUTSIDE_DBS_TOOLTIP=Aktivieren Sie dieses Kontrollk\u00e4stchen, um die Datenbankdateien zu l\u00f6schen, die sich au\u00dferhalb des Installationsverzeichnisses befinden
INFO_DELETE_OUTSIDE_LOGS_LABEL=Diese Protokolldateien l\u00f6schen
INFO_DELETE_OUTSIDE_LOGS_MSG=Der Directory Server enth\u00e4lt Protokolldateien an folgenden Speicherorten au\u00dferhalb des Serverpfads:
INFO_DELETE_OUTSIDE_LOGS_TOOLTIP=Aktivieren Sie dieses Kontrollk\u00e4stchen, um die Protokolldateien zu l\u00f6schen, die sich au\u00dferhalb des Installationsverzeichnisses befinden
INFO_DISABLED_LABEL=Deaktiviert
INFO_ENABLED_LABEL=Aktiviert
MILD_ERR_READING_CONFIG_FILE=Fehler beim Lesen der Konfigurationsdatei.
MILD_ERR_READING_CONFIG_LDAP=Fehler beim Lesen von Daten vom Server.  \u00dcberpr\u00fcfen Sie die bereitgestellten Authentifizierungsinformationen.%nDetails: %s
SEVERE_ERR_STARTING_SERVER_GENERIC=Could not Start server.
INFO_FINISH_BUTTON_UNINSTALL_LABEL=Deinstallieren
INFO_FINISH_BUTTON_UNINSTALL_TOOLTIP=Deinstallation fertig stellen
INFO_FRAME_UNINSTALL_TITLE=OpenDS-Deinstallationsprogramm
INFO_INSTALLATION_PATH_LABEL=Installationspfad
INFO_JAVA_VERSION_LABEL=Java-Version:
INFO_JMX_PROTOCOL_LABEL=JMX
INFO_JMX_SECURE_PROTOCOL_LABEL=JMX (sicher)
INFO_LDAP_PROTOCOL_LABEL=LDAP
INFO_LDAPS_PROTOCOL_LABEL=LDAPS
INFO_LDIF_PROTOCOL_LABEL=LDIF
INFO_SNMP_PROTOCOL_LABEL=SNMP
INFO_LISTENERS_TITLE=Verbindungs-Handler
INFO_ADMIN_LISTENER_TITLE=Administration Connector
INFO_LOGIN_CANCEL_BUTTON_TOOLTIP=Anmeldedialogfeld schlie\u00dfen
INFO_LOGIN_DIALOG_MSG=Sie m\u00fcssen einen Administrator-DN und ein Administrator-Passwort bereitstellen, um \u00dcberwachungsinformationen abrufen zu k\u00f6nnen.
INFO_LOGIN_DIALOG_SERVER_NOT_RUNNING_MSG=Der Directory Server wird nicht ausgef\u00fchrt. Click OK to continue.
INFO_LOGIN_DIALOG_SERVER_NOT_RUNNING_TITLE=Directory Server wird nicht ausgef\u00fchrt
INFO_LOGIN_DIALOG_TITLE=Authentifizierung erforderlich
INFO_LOGIN_DN_LABEL=Administrator-DN:
INFO_LOGIN_DN_TOOLTIP=Geben Sie den Distinguished Name (DN) des Kontos des Administrators ein, das zum Abrufen der \u00dcberwachungsinformationen verwendet wird
INFO_LOGIN_OK_BUTTON_TOOLTIP=Authentifizierung fortsetzen
INFO_LOGIN_PWD_LABEL=Passwort f\u00fcr Administrator:
INFO_LOGIN_PWD_TOOLTIP=Geben Sie das Passwort des Kontos des Administrators ein, das zum Abrufen der \u00dcberwachungsinformationen verwendet wird
INFO_MISSING_CHANGES_COLUMN=Fehlende \u00c4nderungen
INFO_NO_DBS_FOUND=-Keine LDAP-Datenbanken gefunden-
INFO_NO_LISTENERS_FOUND=-Keine Zielger\u00e4t-Ports gefunden-
INFO_NOT_APPLICABLE_LABEL=--
INFO_NOT_AVAILABLE_AUTHENTICATION_REQUIRED_CLI_LABEL=<nicht verf\u00fcgbar> (*)
INFO_NOT_AVAILABLE_SHORT_LABEL=N/V
INFO_NOT_AVAILABLE_AUTHENTICATION_REQUIRED_CLI_LEGEND=* Informationen nur verf\u00fcgbar, wenn Sie beim Starten des Status-Befehls g\u00fcltige Authentifizierungsinformationen angeben.
INFO_NOT_AVAILABLE_AUTHENTICATION_REQUIRED_TOOLTIP=<html>Informationen nur verf\u00fcgbar, wenn Sie als<br>Administrator authentifiziert sind.
INFO_NOT_AVAILABLE_SERVER_DOWN_CLI_LABEL=<nicht verf\u00fcgbar> (*)
INFO_NOT_AVAILABLE_SERVER_DOWN_CLI_LEGEND=* Informationen nur verf\u00fcgbar, wenn der Server ausgef\u00fchrt wird und Sie beim Starten des Status-Befehls g\u00fcltige Authentifizierungsinformationen angeben.
INFO_NOT_AVAILABLE_SERVER_DOWN_TOOLTIP=<html>Informationen nur verf\u00fcgbar, wenn der Server ausgef\u00fchrt wird und Sie als<br>Administrator authentifiziert sind.
INFO_NOTHING_SELECTED_TO_UNINSTALL=You must select something to be uninstalled.
INFO_NUMBER_ENTRIES_COLUMN=Eintr\u00e4ge
INFO_OPENDS_VERSION_LABEL=OpenDS-Version:
INFO_PROGRESS_REMOVING_REFERENCES=Referenzen auf %s werden entfernt
INFO_PROTOCOL_COLUMN=Protokoll
INFO_REMOVE_BACKUPS_LABEL=Dateien im BAK-Verzeichnis sichern
INFO_REMOVE_BACKUPS_TOOLTIP=Sicherungsdateien im BAK-Verzeichnis entfernen
INFO_REMOVE_DATABASES_LABEL=Datenbankinhalt
INFO_REMOVE_DATABASES_TOOLTIP=Datenbankinhalt entfernen
INFO_REMOVE_LABEL=Entfernen:
INFO_REMOVE_LDIFS_LABEL=Im LDIF-Verzeichnis enthaltene LDIF-Export-Dateien
INFO_REMOVE_LDIFS_TOOLTIP=LDIF-Export-Dateien in LDIF-Verzeichnis entfernen
INFO_REMOVE_LIBRARIES_AND_TOOLS_LABEL=Serverbibliotheken und administrative Tools
INFO_REMOVE_LIBRARIES_AND_TOOLS_TOOLTIP=Serverbibliotheken und administrative Tools entfernen
INFO_REMOVE_LOGS_LABEL=Protokolldateien
INFO_REMOVE_LOGS_TOOLTIP=Protokolldateien entfernen
INFO_REMOVE_SCHEMA_AND_CONFIGURATION_LABEL=Konfigurations- und Schemadateien
INFO_REMOVE_SCHEMA_AND_CONFIGURATION_TOOLTIP=Konfigurations- und Schemadateien entfernen
INFO_REPLICATED_COLUMN=Replikation
INFO_RESTART_BUTTON_LABEL=Neustart
INFO_RESTART_BUTTON_TOOLTIP=Der Directory Server wird neu gestartet
INFO_SERVER_DETAILS_TITLE=Serverdetails
INFO_SERVER_PATH_LABEL=Serverpfad:
INFO_SERVER_STARTED_LABEL=Gestartet
INFO_SERVER_STARTING_LABEL=Wird gestartet
INFO_SERVER_STATUS_LABEL=Serverausf\u00fchrungsstatus:
INFO_SERVER_STATUS_TITLE=Serverstatus
INFO_SERVER_STOPPED_LABEL=Angehalten
INFO_SERVER_STOPPING_LABEL= wird gestoppt
INFO_SERVER_UNKNOWN_STATUS_LABEL=Unbekannt
INFO_START_BUTTON_LABEL=Start
INFO_START_BUTTON_TOOLTIP=Startet den Directory Server
INFO_STATE_COLUMN=Status
INFO_STATUS_CLI_USAGE_DESCRIPTION=Dieses Dienstprogramm kann zur Anzeige grundlegender Serverinformationen verwendet werden
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=This utility can be used to display the Control Panel window which displays basic server information and allows to do some basic administration tasks on the server.
INFO_STOP_BUTTON_LABEL=Stoppen
INFO_STOP_BUTTON_TOOLTIP=Stoppt den Directory Server
INFO_BASEDN_NOT_REPLICATED_LABEL=Deaktiviert
INFO_BASEDN_REPLICATED_LABEL=Aktiviert
INFO_SUMMARY_DELETING_EXTERNAL_DB_FILES=Datenbankdateien au\u00dferhalb des Installationspfads werden gel\u00f6scht....
INFO_SUMMARY_DELETING_EXTERNAL_LOG_FILES=Protokolldateien au\u00dferhalb des Installationspfads werden gel\u00f6scht....
INFO_SUMMARY_DELETING_EXTERNAL_REFERENCES=Externe Referenzen werden gel\u00f6scht...
INFO_SUMMARY_DELETING_INSTALLATION_FILES=Dateien unter dem Installationspfad werden gel\u00f6scht...
INFO_SUMMARY_DISABLING_WINDOWS_SERVICE=Windows-Dienst wird deaktiviert...
INFO_SUMMARY_UNCONFIGURING_REPLICATION=Referenzen in Remote-OpenDS-Server werden entfernt...
INFO_SUMMARY_UNINSTALL_FINISHED_SUCCESSFULLY=<b>OpenDS-Deinstallationsprogramm erfolgreich abgeschlossen.</b>
INFO_SUMMARY_UNINSTALL_FINISHED_SUCCESSFULLY_CLI=OpenDS-Deinstallationsprogramm erfolgreich abgeschlossen.
INFO_SUMMARY_UNINSTALL_FINISHED_SUCCESSFULLY_REMOVE_JARFILES=<b>OpenDS-Deinstallationsprogramm erfolgreich abgeschlossen.</b><br><br>Um die Deinstallation abzuschlie\u00dfen, m\u00fcssen Sie die folgenden Dateien und Verzeichnisse manuell l\u00f6schen:<br>%s
INFO_SUMMARY_UNINSTALL_FINISHED_SUCCESSFULLY_REMOVE_JARFILES_CLI=OpenDS-Deinstallationsprogramm erfolgreich abgeschlossen.%nUm die Deinstallation abzuschlie\u00dfen, m\u00fcssen Sie die folgenden Dateien und Verzeichnisse manuell l\u00f6schen:%n%s
INFO_SUMMARY_UNINSTALL_FINISHED_WITH_ERROR=Ein Fehler ist aufgetreten.  Im Textbereich 'Details' finden Sie weitere Informationen.
INFO_SUMMARY_UNINSTALL_FINISHED_WITH_ERROR_ON_REMOTE=<b>OpenDS-Deinstallation erfolgreich mit Warnmeldungen abgeschlossen</b><br>OpenDS wurde von dem lokalen Rechner erfolgreich deinstalliert, aber beim Aktualisieren von Remote-Servern traten Fehler auf.  Im Textbereich 'Details' finden Sie weitere Informationen.
INFO_SUMMARY_UNINSTALL_FINISHED_WITH_ERROR_ON_REMOTE_CLI=OpenDS wurde von dem lokalen Rechner erfolgreich deinstalliert, aber beim Aktualisieren von Remote-Servern traten Fehler auf.
INFO_SUMMARY_UNINSTALL_FINISHED_WITH_ERROR_DELETING=<b>OpenDS-Deinstallation erfolgreich mit Warnmeldungen abgeschlossen</b><br>OpenDS wurde von dem lokalen Rechner erfolgreich deinstalliert, aber beim L\u00f6schen von Dateien traten Fehler auf.  Im Textbereich 'Details' finden Sie weitere Informationen zu den problematischen Dateien.<br><br>Stellen Sie sicher, dass diese Dateien von keinem anderen Programm verwendet werden, und l\u00f6schen Sie die Dateien anschlie\u00dfend manuell.
INFO_SUMMARY_UNINSTALL_FINISHED_WITH_ERROR_DELETING_CLI=OpenDS wurde von dem lokalen Rechner erfolgreich deinstalliert, aber beim L\u00f6schen von Dateien traten Fehler auf.  Im Textbereich 'Details' finden Sie weitere Informationen zu den problematischen Dateien.%n%nStellen Sie sicher, dass diese Dateien von keinem anderen Programm verwendet werden, und l\u00f6schen Sie die Dateien anschlie\u00dfend manuell.
INFO_SUMMARY_UNINSTALL_NOT_STARTED=Deinstallation wird gestartet...
INFO_UNDEFINED_PROTOCOL_LABEL=-Unbekannt-
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.  Weitere Details finden Sie in der Datei %s.%n%nLaunching command line uninstall...
INFO_UNINSTALL_LAUNCHER_LAUNCHING_CLI=Deinstallation \u00fcber Befehlszeile wird gestartet...
INFO_UNINSTALL_LAUNCHER_LAUNCHING_GUI=Deinstallation \u00fcber grafische Benutzeroberfl\u00e4che wird gestartet...
INFO_UNINSTALL_LAUNCHER_USAGE_DESCRIPTION=Dieses Dienstprogramm kann zur Deinstallation des Directory Server verwendet werden.
INFO_UNINSTALL_LOGIN_CANCEL_BUTTON_TOOLTIP=Schlie\u00dfen Sie dieses Dialogfeld, und versuchen Sie nicht, Referenzen dieses Servers in anderen OpenDS-Servern zu entfernen.
INFO_UNINSTALL_LOGIN_DIALOG_MSG=Sie m\u00fcssen die ID eines globalen Administrators bereitstellen, um die Referenzen auf diesen Server in anderen OpenDS-Servern entfernen zu k\u00f6nnen.%nSie m\u00fcssen auch den Namen dieses Hosts (bzw. die IP-Adresse) wie in den Remote-Servern referenziert angeben.
INFO_UNINSTALL_LOGIN_HOST_NAME_LABEL=Hostname:
INFO_UNINSTALL_LOGIN_HOST_NAME_TOOLTIP=Der Name dieses Hosts (bzw. IP-Adresse) wie in anderen OpenDS-Servern referenziert.
INFO_UNINSTALL_LOGIN_OK_BUTTON_TOOLTIP=Versuchen Sie eine Verbindungsherstellung mit der bereitgestellten Authentifizierung.
INFO_UNINSTALL_LOGIN_PWD_TOOLTIP=Das Passwort des globalen Administrators, das zum Lesen und Aktualisieren der Konfiguration in anderen OpenDS-Servern verwendet werden soll.
INFO_UNINSTALL_LOGIN_UID_TOOLTIP=Die Benutzer-ID des globalen Administrators, die zum Lesen und Aktualisieren der Konfiguration in anderen OpenDS-Servern verwendet werden soll.
INFO_UNKNOWN_LABEL=--
INFO_UNINSTALLDS_DESCRIPTION_FORCE=Gibt an, ob die Deinstallation fortgesetzt werden soll oder nicht, wenn bei der Aktualisierung der Referenzen auf diesen Server in Remote-OpenDS-Instanzen Fehler auftreten.  Dieses Argument kann nur mit dem Nicht-Eingabeaufforderungs-Argument %s verwendet werden.
INFO_DESCRIPTION_REFERENCED_HOST=Der Name dieses Hosts (bzw. IP-Adresse) wie in Remote-Servern zur Replikation referenziert
INFO_UNINSTALLDS_DESCRIPTION_CLI=Gibt an, dass die Befehlszeileninstallation verwendet werden soll.  Falls nicht angegeben, wird die grafische Benutzeroberfl\u00e4che gestartet.  Die \u00fcbrigen Optionen (au\u00dfer Hilfe und Version) werden nur ber\u00fccksichtigt, wenn diese Option angegeben ist
INFO_UNINSTALLDS_DESCRIPTION_QUIET=Deinstallation im stillen Modus durchf\u00fchren.  Im stillen Modus werden Fortschrittsinformationen nicht an den Standardoutput ausgegeben
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_ALL=Alle Komponenten von OpenDS entfernen (diese Option ist nicht mit den \u00fcbrigen Optionen zum Entfernen kompatibel)
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_SERVER_LIBRARIES=Serverbibliotheken und administrative Tools entfernen
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_DATABASES=Datenbankinhalt entfernen
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_LOG_FILES=Protokolldateien entfernen
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_CONFIGURATION_FILES=Konfigurationsdateien entfernen
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_BACKUP_FILES=Sicherungsdateien entfernen
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_LDIF_FILES=LDIF-Dateien entfernen
INFO_DESCRIPTION_ADMIN_UID=Benutzer-ID des globalen Administrators, die f\u00fcr die Verbindung mit dem Server verwendet werden soll
INFO_DESCRIPTION_ENABLE_REPLICATION_HOST1=Vollst\u00e4ndig qualifizierter Directory Server-Hostname oder IP-Adresse des ersten Servers, dessen Inhalt repliziert wird
INFO_DESCRIPTION_ENABLE_REPLICATION_SERVER_PORT1=Directory server administration port number of the first server whose contents will be replicated
INFO_DESCRIPTION_ENABLE_REPLICATION_BINDDN1=DN, der zur Verbindung mit dem ersten Server verwendet werden soll, dessen Inhalt repliziert wird.  Falls nicht angegeben, wird der globale Administrator f\u00fcr die Verbindung verwendet
INFO_DESCRIPTION_ENABLE_REPLICATION_BINDPASSWORD1=Passwort, das zur Verbindung mit dem ersten Server verwendet werden soll, dessen Inhalt repliziert wird.  Falls kein Verbindungs-DN f\u00fcr den ersten Server angegeben wurde, wird das Passwort des globalen Administrators f\u00fcr die Verbindung verwendet
INFO_DESCRIPTION_ENABLE_REPLICATION_BINDPASSWORDFILE1=Datei mit dem Passwort, das zur Verbindung mit dem ersten Server zu verwenden ist, dessen Inhalt repliziert wird.  Falls kein Verbindungs-DN f\u00fcr den ersten Server angegeben wurde, wird das Passwort des globalen Administrators f\u00fcr die Verbindung verwendet
INFO_DESCRIPTION_ENABLE_REPLICATION_PORT1=Port, der vom Replikationsmechanismus im ersten Server zur Kommunikation mit den \u00fcbrigen Servern verwendet wird.  Sie brauchen diese Option nur anzugeben, wenn der erste Server zuvor nicht f\u00fcr Replikation konfiguriert wurde.
INFO_DESCRIPTION_ENABLE_SECURE_REPLICATION1=Gibt an, ob die Kommunikation \u00fcber den Replikations-Port des ersten Servers verschl\u00fcsselt ist oder nicht.  Diese Option wird nur ber\u00fccksichtigt, wenn die Replikation erstmalig auf dem ersten Server konfiguriert wird.
INFO_DESCRIPTION_ENABLE_REPLICATION_HOST2=Vollst\u00e4ndig qualifizierter Directory Server-Hostname oder IP-Adresse des zweiten Servers, dessen Inhalt repliziert wird
INFO_DESCRIPTION_ENABLE_REPLICATION_SERVER_PORT2=Directory server administration port number of the second server whose contents will be replicated
INFO_DESCRIPTION_ENABLE_REPLICATION_BINDDN2=DN, der zur Verbindung mit dem zweiten Server zu verwenden ist, dessen Inhalt repliziert wird.  Falls nicht angegeben, wird der globale Administrator f\u00fcr die Verbindung verwendet
INFO_DESCRIPTION_ENABLE_REPLICATION_SKIPPORT=Pr\u00fcfung, ob die angegebenen Replikations-Ports verwendbar sind, \u00fcberspringen
INFO_DESCRIPTION_ENABLE_REPLICATION_NO_SCHEMA_REPLICATION=Schema nicht zwischen den Servern replizieren
INFO_DESCRIPTION_ENABLE_REPLICATION_USE_SECOND_AS_SCHEMA_SOURCE=Den zweiten Server zur Initialisierung des Schemas des ersten Servers verwenden.  Wenn weder diese Option noch die Option %s angegeben sind, wird das Schema des ersten Servers zur Initialisierung des Schemas des zweiten Servers verwendet
INFO_DESCRIPTION_ENABLE_REPLICATION_BINDPASSWORD2=Passwort, das zur Verbindung mit dem zweiten Server zu verwenden ist, dessen Inhalt repliziert wird.  Falls kein Verbindungs-DN f\u00fcr den zweiten Server angegeben wurde, wird das Passwort des globalen Administrators f\u00fcr die Verbindung verwendet
INFO_DESCRIPTION_ENABLE_REPLICATION_BINDPASSWORDFILE2=Die Datei mit dem Passwort, das zur Verbindung mit dem zweiten Server zu verwenden ist, dessen Inhalt repliziert wird.  Falls kein Verbindungs-DN f\u00fcr den zweiten Server angegeben wurde, wird das Passwort des globalen Administrators f\u00fcr die Verbindung verwendet
INFO_DESCRIPTION_ENABLE_REPLICATION_PORT2=Port, der vom Replikationsmechanismus auf dem zweiten Server zur Kommunikation mit den \u00fcbrigen Servern verwendet wird.  Sie brauchen diese Option nur anzugeben, wenn der zweite Server zuvor nicht f\u00fcr Replikation konfiguriert wurde.
INFO_DESCRIPTION_ENABLE_SECURE_REPLICATION2=Gibt an, ob die Kommunikation \u00fcber den Replikations-Port des zweiten Servers verschl\u00fcsselt ist oder nicht.  Diese Option wird nur ber\u00fccksichtigt, wenn die Replikation erstmalig auf dem zweiten Server konfiguriert wird.
INFO_DESCRIPTION_ENABLE_REPLICATION_STARTTLS2=StartTLS f\u00fcr sichere Kommunikation mit dem zweiten Server verwenden
INFO_DESCRIPTION_REPLICATION_BASEDNS=Basis-DN der Daten, die repliziert oder initialisiert oder f\u00fcr welche die Replikation deaktiviert werden soll.  Multiple base DN's can be provided by using this option multiple times
INFO_DESCRIPTION_REPLICATION_ADMIN_UID=Benutzer-ID des globalen Administrators, die f\u00fcr die Verbindung mit dem Server zu verwenden ist.  F\u00fcr den Unterbefehl '%s' wird ein globaler Administrator unter Verwendung der bereitgestellten Daten erstellt, falls zuvor kein globaler Administrator f\u00fcr keinen der Server definiert wurde.
INFO_DESCRIPTION_REPLICATION_ADMIN_BINDPASSWORD=Das Passwort des globalen Administrators
INFO_DESCRIPTION_REPLICATION_ADMIN_BINDPASSWORDFILE=Die Datei, die das Passwort des globalen Administrators enth\u00e4lt
INFO_DESCRIPTION_INITIALIZE_REPLICATION_HOST_SOURCE=Der Directory Server-Hostname oder die IP-Adresse des Quellservers, dessen Inhalt zur Initialisierung des Zielservers verwendet wird
INFO_DESCRIPTION_INITIALIZE_REPLICATION_SERVER_PORT_SOURCE=Directory server administration port number of the source server whose contents will be used to initialize the destination server
INFO_DESCRIPTION_INITIALIZE_REPLICATION_HOST_DESTINATION=Der Directory Server-Hostname oder die IP-Adresse des Zielservers, dessen Inhalt initialisiert wird
INFO_DESCRIPTION_INITIALIZE_REPLICATION_SERVER_PORT_DESTINATION=Directory server administration port number of the destination server whose contents will be initialized
INFO_DESCRIPTION_EXTERNAL_INITIALIZATION_LOCAL=Verwenden Sie diese Option, wenn nur der Inhalt des angegebenen Directory Servers mit einer externen Methode (import-ldif-Befehl oder Bin\u00e4rkopie) initialisiert wird
INFO_REPLICATION_TOOL_DESCRIPTION=Mit diesem Dienstprogramm k\u00f6nnen Sie die Replikation zwischen Servern so konfigurieren, dass die Daten der Server synchronisiert werden. Damit die Replikation funktioniert, m\u00fcssen Sie diese zuerst mit dem Unterbefehl '%s' aktivieren und anschlie\u00dfend den Inhalt eines der Server mit dem Inhalt des anderen mithilfe des Unterbefehls '%s' initialisieren.
INFO_REPLICATION_DESCRIPTION_QUIET=Vorgang im stillen Modus durchf\u00fchren (es werden keine Fortschrittsinformationen in die Standardausgabe geschrieben)
INFO_DESCRIPTION_DISABLE_REPLICATION_BINDDN=Der DN, der zur Verbindung mit dem Server zu verwenden ist, auf dem die Replikation deaktiviert werden soll.  Die Option muss verwendet werden, wenn kein globaler Administrator auf dem Server definiert wurde oder wenn der Benutzer keine Referenzen in den anderen replizierten Servern entfernen m\u00f6chte.  Bei dieser Option wird das Passwort f\u00fcr den globalen Administrator verwendet.
INFO_DESCRIPTION_SUBCMD_INITIALIZE_REPLICATION=Den Inhalt der Daten unter dem angegebenen Basis-DN auf dem Zielserver mit dem Inhalt auf dem Quellserver initialisieren.  Dieser Vorgang ist erforderlich, damit die Replikation nach der Aktivierung funktioniert ('%s' ist hierf\u00fcr ebenfalls verwendbar).
INFO_DESCRIPTION_SUBCMD_INITIALIZE_ALL_REPLICATION=Den Inhalt der Daten unter dem angegebenen Basis-DN auf allen Servern initialisieren, deren Inhalt mit dem Inhalt des angegebenen Servers repliziert wird.  Dieser Vorgang ist erforderlich, damit die Replikation nach der Aktivierung funktioniert ('%s', auf jeden Server angewendet, ist hierf\u00fcr ebenfalls verwendbar).
INFO_DESCRIPTION_SUBCMD_PRE_EXTERNAL_INITIALIZATION=Dieser Unterbefehl muss aufgerufen werden, bevor der Inhalt aller replizierten Server mit dem Tool import-ldif oder der Bin\u00e4rkopie-Methode initialisiert wird.  You must specify the list of Base DN's that will be initialized and you must provide the credentials of any of the servers that are being replicated.  Initialisieren Sie nach dem Aufrufen dieses Unterbefehls den Inhalt aller Server in der Topologie. Rufen Sie anschlie\u00dfend den Unterbefehl '%s' auf.
INFO_DESCRIPTION_SUBCMD_POST_EXTERNAL_INITIALIZATION=Dieser Unterbefehl muss aufgerufen werden, nachdem der Inhalt aller replizierten Server mit dem Tool import-ldif oder der Bin\u00e4rkopie-Methode initialisiert wurde.  You must specify the list of Base DN's that have been initialized and you must provide the credentials of any of the servers that are being replicated.  In der Syntax des Unterbefehls '%s' finden Sie weitere Informationen.
INFO_DESCRIPTION_SUBCMD_ENABLE_REPLICATION=Aktualisiert die Konfiguration der Server, welche die Daten unter dem angegebenen Basis-DN replizieren sollen.  Wenn einer der angegebenen Server die Daten unter dem Basis-DN bereits mit anderen Servern repliziert, wird durch die Ausf\u00fchrung dieses Unterbefehls die Konfiguration aller Server aktualisiert (d. h., die Eingabeaufforderung muss nur ein Mal f\u00fcr jeden Server ausgef\u00fchrt werden, welcher der Replikationstopologie hinzugef\u00fcgt wird).
INFO_DESCRIPTION_SUBCMD_DISABLE_REPLICATION=Deaktiviert die Replikation auf dem angegebenen Server f\u00fcr den bereitgestellten Basis-DN und entfernt Referenzen in den anderen Servern, mit denen der Server Daten repliziert.
INFO_DESCRIPTION_SUBCMD_STATUS_REPLICATION=Displays a list with the basic replication configuration of the base DN's of the servers defined in the registration information.  If no base DN's are specified as parameter the information for all base DN's is displayed.
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=Der Vorgang wurde erfolgreich abgeschlossen
INFO_REPLICATION_SUCCESSFUL_NOP=Der Vorgang wurde erfolgreich abgeschlossen, aber es war keine Aktion erforderlich
MILD_ERR_REPLICATION_USER_CANCELLED=Benutzer hat Vorgang abgebrochen
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=Es muss ein globaler Administrator erstellt werden.%nSie m\u00fcssen die Berechtigungsnachweise des globalen Administrators angeben, der zur Verwaltung der zu replizierenden OpenDS-Instanzen erstellt wird.
INFO_ADMINISTRATOR_UID_PROMPT=Benutzer-ID des globalen Administrators
INFO_ADMINISTRATOR_PWD_PROMPT=Passwort des globalen Administrators:
INFO_ADMINISTRATOR_PWD_CONFIRM_PROMPT=Passwort best\u00e4tigen:
MILD_ERR_ADMINISTRATOR_PWD_DO_NOT_MATCH=Die angegebenen Passw\u00f6rter stimmen nicht \u00fcberein.
MILD_ERR_ERROR_CONNECTING_TO_SERVER_PROMPT_AGAIN=Verbindung mit dem Directory Server %s mit den angegebenen Berechtigungsnachweisen ist nicht m\u00f6glich.%nFehlerdetails: %s%n%nGeben Sie die f\u00fcr die Verbindung zum Server erforderlichen Informationen erneut an:
INFO_REPLICATION_ENABLE_HOST1_CONNECTION_PARAMETERS=>>>> Specify OpenDS administration connection parameters for the first server
INFO_REPLICATION_ENABLE_HOSTNAME1_PROMPT=Hostname des ersten Servers
INFO_REPLICATION_ENABLE_PORT1_PROMPT=Administration port of the first server
INFO_REPLICATION_ENABLE_PROTOCOL1=Wie m\u00f6chten Sie die Verbindung zu dem ersten Server herstellen?
INFO_REPLICATION_ENABLE_REPLICATIONPORT1_PROMPT=Replikations-Port f\u00fcr den ersten Server (der Port muss frei sein)
INFO_REPLICATION_ENABLE_SECURE1_PROMPT=Soll die Replikation eine verschl\u00fcsselte Kommunikation f\u00fcr die Verbindungsherstellung zum Replikations-Port %s auf dem ersten Server verwenden?
INFO_REPLICATION_ENABLE_BINDDN1_PROMPT=Verbindungs-DN f\u00fcr den ersten Server
INFO_REPLICATION_ENABLE_PASSWORD1_PROMPT=Passwort f\u00fcr %s auf dem ersten Server:
INFO_REPLICATION_ENABLE_HOST2_CONNECTION_PARAMETERS=>>>> Specify OpenDS administration connection parameters for the second server
INFO_REPLICATION_ENABLE_HOSTNAME2_PROMPT=Hostname des zweiten Servers
INFO_REPLICATION_ENABLE_PORT2_PROMPT=Administration port of the second server
INFO_REPLICATION_ENABLE_PROTOCOL2=Wie m\u00f6chten Sie die Verbindung zu dem zweiten Server herstellen?
INFO_REPLICATION_ENABLE_REPLICATIONPORT2_PROMPT=Replikations-Port f\u00fcr den zweiten Server (der Port muss frei sein)
INFO_REPLICATION_ENABLE_SECURE2_PROMPT=Soll die Replikation eine verschl\u00fcsselte Kommunikation f\u00fcr die Verbindungsherstellung zum Replikations-Port %s auf dem zweiten Server verwenden?
INFO_REPLICATION_ENABLE_BINDDN2_PROMPT=Verbindungs-DN f\u00fcr den zweiten Server
INFO_REPLICATION_ENABLE_PASSWORD2_PROMPT=Passwort f\u00fcr %s auf dem zweiten Server:
INFO_REPLICATION_INITIALIZE_SOURCE_CONNECTION_PARAMETERS=>>>> Specify OpenDS administration connection parameters for the source server
INFO_REPLICATION_INITIALIZE_DESTINATION_CONNECTION_PARAMETERS=>>>> Specify OpenDS administration connection parameters for the destination server
SEVERE_ERR_NO_SUFFIXES_AVAILABLE_TO_ENABLE_REPLICATION=There are no base DN's available to enable replication between the two servers.
INFO_ALREADY_REPLICATED_SUFFIXES=The following base DN's are already replicated between the two servers:%n%s
INFO_ALREADY_NOT_REPLICATED_SUFFIXES=The following base DN's are not replicated:%n%s
MILD_ERR_REPLICATION_ENABLE_SUFFIXES_NOT_FOUND=The following base DN's cannot be replicated between the two servers because they could not be found in at least one of the servers:%n%s
MILD_ERR_NO_SUFFIXES_SELECTED_TO_REPLICATE=Sie m\u00fcssen mindestens einen Basis-DN f\u00fcr die Replikation ausw\u00e4hlen.
INFO_REPLICATION_ENABLE_SUFFIX_PROMPT=Basis-DN %s replizieren?
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=The following base DN's cannot be initialized because they are not replicated or they are not configured on both servers:%n%s
MILD_ERR_NO_SUFFIXES_SELECTED_TO_INITIALIZE=Sie m\u00fcssen mindestens einen Basis-DN f\u00fcr die Initialisierung ausw\u00e4hlen.
INFO_REPLICATION_INITIALIZE_SUFFIX_PROMPT=Basis-DN %s initialisieren?
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=The following base DN's could not be found on the server:%n%s
 MILD_ERR_REPLICATION_INITIALIZE_LOCAL_SUFFIXES_NOT_FOUND=The following base DN's could not be found on the server:%n%s
MILD_ERR_NO_SUFFIXES_SELECTED_TO_DISABLE=Sie m\u00fcssen mindestens einen Basis-DN f\u00fcr die Deaktivierung ausw\u00e4hlen.
MILD_ERR_NO_SUFFIXES_SELECTED_TO_INITIALIZE_ALL=Sie m\u00fcssen mindestens einen Basis-DN f\u00fcr die Initialisierung ausw\u00e4hlen.
INFO_REPLICATION_PRE_EXTERNAL_INITIALIZATION_LOCAL_PROMPT=Are you going to initialize only the contents of server %s (type 'no' if you will initialize contents of all replicated servers for the given Base DN's)?
MILD_ERR_NO_SUFFIXES_SELECTED_TO_PRE_EXTERNAL_INITIALIZATION=You must specify the base DN's that will be initialized using the import-ldif command or the binary copy.
MILD_ERR_NO_SUFFIXES_SELECTED_TO_POST_EXTERNAL_INITIALIZATION=You must specify the base DN's that have been initialized using the import-ldif command or the binary copy.
INFO_REPLICATION_DISABLE_SUFFIX_PROMPT=Replikation auf Basis-DN %s deaktivieren?
INFO_REPLICATION_INITIALIZE_ALL_SUFFIX_PROMPT=Basis-DN %s initialisieren?
INFO_REPLICATION_PRE_EXTERNAL_INITIALIZATION_SUFFIX_PROMPT=Initialisieren Sie den Basis-DN %s mit dem Befehl import-ldif oder der Bin\u00e4rkopie?
INFO_REPLICATION_POST_EXTERNAL_INITIALIZATION_SUFFIX_PROMPT=Haben Sie Basis-DN %s mit dem Befehl import-ldif oder der Bin\u00e4rkopie initialisiert?
MILD_ERR_REPLICATION_READING_REGISTERED_SERVERS_CONFIRM_UPDATE_REMOTE=Beim Lesen der Konfiguration der vorhandenen Server traten folgende Fehler auf:%n%s%n%nWenn Sie fortfahren, versucht das Replikations-Tool die Konfiguration aller Server im effizientesten Modus zu aktualisieren.  Allerdings kann nicht garantiert werden, dass die Server, welche Fehler erzeugen, aktualisiert werden.  M\u00f6chten Sie fortfahren?
MILD_ERR_REPLICATION_STATUS_READING_REGISTERED_SERVERS=Die angezeigten Informationen sind m\u00f6glicherweise nicht vollst\u00e4ndig, da beim Lesen der Konfiguration der vorhandenen Server folgende Fehler aufgetreten sind:%n%s
MILD_ERR_NOT_ADMINISTRATIVE_USER=Sie haben keine Zugriffsrechte f\u00fcr die Konfiguration der Server.
INFO_REPLICATION_CONFIRM_DISABLE_ADS=Sie haben die Replikation auf Basis-DN %s deaktiviert. Dieser Basis-DN wird vom Replikationsmechanismus sowie einigen administrativen Tools verwendet, und es wird nicht empfohlen, ihn direkt zu konfigurieren.  M\u00f6chten Sie fortfahren?
INFO_REPLICATION_CONFIRM_DISABLE_SCHEMA=Sie haben die Replikation des Schemas deaktiviert.  Eine Deaktivierung der Schemareplikation ist nur in bestimmten Szenarios empfehlenswert.  M\u00f6chten Sie fortfahren?
INFO_REPLICATION_CONFIRM_DISABLE_GENERIC=Disabling replication will make the data under the selected base DN's not to be synchronized with other servers any more.  M\u00f6chten Sie fortfahren?
INFO_REPLICATION_CONFIRM_DISABLE_LAST_SUFFIXES=Disabling replication will make the data under the selected base DN's not to be synchronized with other servers any more.  Der Replikations-Port auf dem Server wird ebenfalls deaktiviert.  M\u00f6chten Sie fortfahren?
INFO_REPLICATION_CONFIRM_INITIALIZE_ADS=Sie haben entschieden, den Inhalt von Basis-DN %s auf Server %s mit dem Inhalt in Server %s zu initialisieren. Dieser Basis-DN wird vom Replikationsmechanismus sowie einigen administrativen Tools verwendet, und es wird nicht empfohlen, ihn direkt zu konfigurieren.  M\u00f6chten Sie fortfahren?
INFO_REPLICATION_CONFIRM_INITIALIZE_GENERIC=Wenn Sie den Inhalt eines Basis-DNs initialisieren, wird der gesamte vorhandene Inhalt dieses Basis-DNs entfernt.  Do you want to remove the contents of the selected base DN's on server %s and replace them with the contents of server %s?
INFO_REPLICATION_CONFIRM_INITIALIZE_ALL_ADS=Sie haben entschieden, den Inhalt von Basis-DN %s mit dem Inhalt in Server %s zu initialisieren. Dieser Basis-DN wird vom Replikationsmechanismus sowie einigen administrativen Tools verwendet, und es wird nicht empfohlen, ihn direkt zu konfigurieren.  M\u00f6chten Sie fortfahren?
INFO_REPLICATION_CONFIRM_INITIALIZE_ALL_GENERIC=Wenn Sie den Inhalt eines Basis-DNs initialisieren, wird der gesamte vorhandene Inhalt dieses Basis-DNs entfernt.  Do you want to remove the contents of the selected base DN's on the replicated servers and replace them with the contents of server %s?
MILD_ERR_REPLICATION_READING_REGISTERED_SERVERS_WARNING=Beim Lesen der Konfiguration der vorhandenen Server traten folgende Fehler auf:\n%s\nDas Replikations-Tool versucht, die Konfiguration aller Server im effizientesten Modus zu aktualisieren.  Allerdings kann nicht garantiert werden, dass die Server, welche Fehler erzeugen, aktualisiert werden.
INFO_REPLICATION_CONNECTING=Herstellen von Verbindungen
INFO_REPLICATION_ENABLE_UPDATING_ADS_CONTENTS=Pr\u00fcfen von Registrierungsinformationen
INFO_REPLICATION_ENABLE_UPDATING_REPLICATION_SERVER=Aktualisieren von Remote-Referenzen auf Server %s
INFO_REPLICATION_ENABLE_CONFIGURING_REPLICATION_SERVER=Konfigurieren von Replikations-Port auf Server %s
INFO_REPLICATION_ENABLE_CONFIGURING_BASEDN=Aktualisieren der Replikationskonfiguration f\u00fcr Basis-DN %s auf Server %s
INFO_REPLICATION_ENABLE_CONFIGURING_ADS=Aktualisieren der Registrierungskonfiguration auf Server %s
INFO_ENABLE_REPLICATION_INITIALIZING_ADS=Initialisieren der Registrierungsinformationen auf Server %s mit dem Inhalt von Server %s
INFO_ENABLE_REPLICATION_INITIALIZING_SCHEMA=Initialisieren von Schema auf Server %s mit dem Inhalt von Server %s
SEVERE_ERR_REPLICATION_ENABLE_SEEDING_TRUSTSTORE=An unexpected error occurred seeding the truststore contents.  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 is different.  This tool does not allow to handle this scenario.
SEVERE_ERR_REPLICATION_ERROR_READING_CONFIGURATION=Error reading replication configuration of server %s.%nDetails: %s
INFO_REPLICATION_REMOVING_REFERENCES_ON_REMOTE=Referenzen auf Basis-DN %s von Server %s werden entfernt
INFO_REPLICATION_DISABLING_BASEDN=Die Replikation auf Basis-DN %s von Server %s wird deaktiviert
INFO_REPLICATION_DISABLING_REPLICATION_SERVER=Der Replikations-Port %s von Server %s wird deaktiviert
INFO_REPLICATION_STATUS_NO_BASEDNS=No base DN's found.
INFO_REPLICATION_STATUS_BASEDN=Basis-DN
INFO_REPLICATION_STATUS_IS_REPLICATED=Replikation
INFO_REPLICATION_STATUS_REPLICATED=%s - Replikation aktiviert
INFO_REPLICATION_STATUS_NOT_REPLICATED=%s - Replikation deaktiviert
INFO_REPLICATION_STATUS_HEADER_SERVERPORT=Server
INFO_REPLICATION_STATUS_HEADER_NUMBER_ENTRIES=Eintr\u00e4ge
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=Port (3)
INFO_REPLICATION_STATUS_HEADER_SECURE=Sicherheit (4)
INFO_REPLICATION_STATUS_REPLICATED_LEGEND=[1] Anzahl der \u00c4nderungen, die auf diesem Server noch fehlen (und die auf mindestens einen der \u00fcbrigen Server angewendet wurden).%n[2] Alter der \u00e4ltesten fehlenden \u00c4nderung: Das Datum, an dem die \u00e4lteste, nicht auf diesem Server angekommene \u00c4nderung generiert wurde.%n[3] Der Port, der zur Kommunikation zwischen den Servern verwendet wird, deren Inhalt repliziert wird.%n[4] Gibt an, ob die Replikationskommunikation \u00fcber den Replikations-Port verschl\u00fcsselt ist oder nicht.
INFO_REPLICATION_STATUS_LABEL_SERVERPORT=Server:
INFO_REPLICATION_STATUS_LABEL_NUMBER_ENTRIES=Eintr\u00e4ge:
INFO_REPLICATION_STATUS_LABEL_MISSING_CHANGES=Fehlende \u00c4nderungen:
INFO_REPLICATION_STATUS_LABEL_AGE_OF_OLDEST_MISSING_CHANGE=Alter der \u00e4ltesten fehlenden \u00c4nderung:
INFO_REPLICATION_STATUS_LABEL_REPLICATION_PORT=Replikations-Port:
INFO_REPLICATION_STATUS_LABEL_SECURE=Sicherheit:
INFO_REPLICATION_STATUS_SECURITY_ENABLED=Aktiviert
INFO_REPLICATION_STATUS_SECURITY_DISABLED=Deaktiviert
INFO_REPLICATION_CRITICAL_ERROR_DETAILS=Details: %s
INFO_PROGRESS_PRE_EXTERNAL_INITIALIZATION=Externe Initialisierung des Basis-DN %s wird vorbereitet
INFO_PROGRESS_POST_EXTERNAL_INITIALIZATION=Replikationsinformationen auf Basis-DN %s werden aktualisiert
INFO_PROGRESS_PRE_INITIALIZATION_LOCAL_FINISHED_PROCEDURE=Now you can proceed to the initialization of the contents of the base DN's on server %s.  You can use the command import-ldif or the binary copy to do so.%n%nWhen the initialization is completed you must use the subcommand '%s' for replication to work with the new base DN's.
INFO_PROGRESS_PRE_INITIALIZATION_FINISHED_PROCEDURE=Now you can proceed to the initialization of the contents of the base DN's on all the replicated servers.  Hierf\u00fcr k\u00f6nnen Sie den Befehl import-ldif oder die Bin\u00e4rkopie verwenden.%n%nWhen the initialization is completed you must use the subcommand '%s' for replication to work with the new base DN's contents.
INFO_PROGRESS_POST_INITIALIZATION_FINISHED_PROCEDURE=Post-Initialisierungs-Verfahren erfolgreich abgeschlossen.
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=Unerwarteter Fehler w\u00e4hrend des Vorgangs.  Aufgabenstatus: %s. Pr\u00fcfen Sie die Fehlerprotokolle von %s auf weitere Informationen.
INFO_ERROR_DURING_PRE_EXTERNAL_INITIALIZATION_LOG=Unerwarteter Fehler w\u00e4hrend des Vorgangs.  Neueste Protokolldetails: %s.  Aufgabenstatus: %s. Pr\u00fcfen Sie die Fehlerprotokolle von %s auf weitere Informationen.
INFO_ERROR_DURING_POST_EXTERNAL_INITIALIZATION_NO_LOG=Unerwarteter Fehler w\u00e4hrend des Vorgangs.  Aufgabenstatus: %s. Pr\u00fcfen Sie die Fehlerprotokolle von %s auf weitere Informationen.
INFO_ERROR_DURING_POST_EXTERNAL_INITIALIZATION_LOG=Unerwarteter Fehler w\u00e4hrend des Vorgangs.  Neueste Protokolldetails: %s.  Aufgabenstatus: %s. Pr\u00fcfen Sie die Fehlerprotokolle von %s auf weitere Informationen.
SEVERE_ERR_LAUNCHING_PRE_EXTERNAL_INITIALIZATION=Error launching the operation.
SEVERE_ERR_LAUNCHING_POST_EXTERNAL_INITIALIZATION=Error launching the operation.
INFO_REPLICATION_SUBCOMMAND_PROMPT=Sie haben folgende M\u00f6glichkeiten:
INFO_REPLICATION_ENABLE_MENU_PROMPT=Replikation aktivieren
INFO_REPLICATION_DISABLE_MENU_PROMPT=Replikation deaktivieren
INFO_REPLICATION_INITIALIZE_MENU_PROMPT=Replikation auf einem Server initialisieren
INFO_REPLICATION_INITIALIZE_ALL_MENU_PROMPT=Alle Server initialisieren
INFO_REPLICATION_PRE_EXTERNAL_INITIALIZATION_MENU_PROMPT=Pre-externe Initialisierung
INFO_REPLICATION_POST_EXTERNAL_INITIALIZATION_MENU_PROMPT=Post-externe Initialisierung
INFO_REPLICATION_STATUS_MENU_PROMPT=Replikationsstatus anzeigen
INFO_REPLICATION_POST_ENABLE_INFO=Replikation wurde erfolgreich aktiviert.  Note that for replication to work you must initialize the contents of the base DN's that are being replicated (use %s %s to do so).
INFO_CONTROL_PANEL_TITLE=OpenDS Control Panel
INFO_PERSON_ICON_DESCRIPTION=Person object
INFO_ORGANIZATION_ICON_DESCRIPTION=Organization
INFO_ORGANIZATIONAL_UNIT_ICON_DESCRIPTION=Organizational unit
INFO_STATIC_GROUP_ICON_DESCRIPTION=Static group
INFO_DYNAMIC_GROUP_ICON_DESCRIPTION=Dynamic group
INFO_VIRTUAL_STATIC_GROUP_ICON_DESCRIPTION=Virtual static group
INFO_PASSWORD_POLICY_ICON_DESCRIPTION=Password policy
MILD_ERR_REFERRAL_LIMIT_EXCEEDED=Referral limit (%d) reached.
INFO_INDEX_MUST_BE_REBUILT_CELL_VALUE=Yes
INFO_INDEX_MUST_NOT_BE_REBUILT_CELL_VALUE=Nein
MILD_ERR_CANNOT_MODIFY_OBJECTCLASS_AND_RENAME=Cannot modify the objectclass and rename the entry.
 
INFO_CTRL_PANEL_CATEGORY_DIRECTORY_DATA=Verzeichnisdaten
INFO_CTRL_PANEL_ACTION_MANAGE_ENTRIES=Manage Entries
INFO_CTRL_PANEL_ACTION_NEW_BASEDN=New Base DN...
INFO_CTRL_PANEL_ACTION_IMPORT_LDIF=Import LDIF...
INFO_CTRL_PANEL_ACTION_EXPORT_LDIF=Export LDIF...
INFO_CTRL_PANEL_ACTION_BACKUP=Backup...
INFO_CTRL_PANEL_ACTION_RESTORE=Restore...
INFO_CTRL_PANEL_CATEGORY_SCHEMA=Schema
INFO_CTRL_PANEL_ACTION_MANAGE_SCHEMA=Manage Schema
INFO_CTRL_PANEL_CATEGORY_INDEXES=Indexes
INFO_CTRL_PANEL_ACTION_MANAGE_INDEXES=Manage Indexes
INFO_CTRL_PANEL_ACTION_VERIFY_INDEXES=Verify Indexes...
INFO_CTRL_PANEL_ACTION_REBUILD_INDEXES=Rebuild Indexes...
INFO_CTRL_PANEL_CATEGORY_RUNTIME_OPTIONS=Runtime Options
INFO_CTRL_PANEL_ACTION_JAVA_SETTINGS=Java Settings
INFO_CTRL_PANEL_ACTION_WINDOWS_SERVICE=Windows Service
MILD_ERR_CTRL_PANEL_DN_NOT_VALID=The DN is not valid.
MILD_ERR_CTRL_PANEL_DN_NOT_VALID_WITH_VALUE=Invalid dn value: '%s'.
MILD_ERR_CTRL_PANEL_PASSWORD_DO_NOT_MATCH=Die angegebenen Passw\u00f6rter stimmen nicht \u00fcberein.
MILD_ERR_CTRL_PANEL_ATTRIBUTE_REQUIRED=You must provide a value for attribute %s.
 
INFO_CTRL_PANEL_CONN_HANDLER_LDAP=LDAP
INFO_CTRL_PANEL_CONN_HANDLER_LDAPS=LDAPS
INFO_CTRL_PANEL_CONN_HANDLER_LDAP_STARTTLS=LDAP (allows StartTLS)
INFO_CTRL_PANEL_CONN_HANDLER_JMX=JMX
INFO_CTRL_PANEL_CONN_HANDLER_JMXS=JMX (secure)
INFO_CTRL_PANEL_CONN_HANDLER_LDIF=LDIF
INFO_CTRL_PANEL_CONN_HANDLER_SNMP=SNMP
INFO_CTRL_PANEL_CONN_HANDLER_REPLICATION=Replikation
INFO_CTRL_PANEL_CONN_HANDLER_REPLICATION_SECURE=Replication (secure)
INFO_CTRL_PANEL_CONN_HANDLER_ADMINISTRATION=Administration Connector
INFO_CTRL_PANEL_CONN_HANDLER_OTHER=Sonstige
 
INFO_CTRL_PANEL_INDEX_SUBSTRING=Substring
INFO_CTRL_PANEL_INDEX_PRESENCE=Presence
INFO_CTRL_PANEL_INDEX_EQUALITY=Equality
INFO_CTRL_PANEL_INDEX_APPROXIMATE=Approximate
INFO_CTRL_PANEL_INDEX_ORDERING=Ordering
 
INFO_CTRL_PANEL_INDEXES_HEADER_ATTRIBUTE=Attribute
INFO_CTRL_PANEL_INDEXES_HEADER_INDEX_TYPES=Index Types
INFO_CTRL_PANEL_INDEXES_HEADER_ENTRY_LIMIT=Entry Limit
INFO_CTRL_PANEL_INDEXES_HEADER_REQUIRES_REBUILD=Requires Rebuild
 
INFO_CTRL_PANEL_VLV_INDEXES_HEADER_NAME=Name
INFO_CTRL_PANEL_VLV_INDEXES_HEADER_BASE_DN=Basis-DN
INFO_CTRL_PANEL_VLV_INDEXES_HEADER_SCOPE=Scope
INFO_CTRL_PANEL_VLV_INDEXES_HEADER_FILTER=Filter
INFO_CTRL_PANEL_VLV_INDEXES_HEADER_SORT_ORDER=Sort Order
INFO_CTRL_PANEL_VLV_INDEXES_HEADER_REQUIRES_REBUILD=Requires Rebuild
 
INFO_CTRL_PANEL_BINARY_VALUE=- Binary Value -
INFO_CTRL_PANEL_VALUE_IN_BASE64=- Value in Base64 -
#
# Note that the following property contains line breaks in HTML format (<br>)
#
INFO_CTRL_PANEL_INCOMPATIBLE_TASKS=The following task is running: %s<br>It cannot run simultaneously with task %s
INFO_CTRL_PANEL_ADD_TO_GROUP_TASK_DESCRIPTION=Add entries to groups.
INFO_CTRL_PANEL_ADDING_TO_GROUP=Updating group '%s'
 
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_MODIFY=Equivalent command line to modify the entry:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_RENAME=Equivalent command line to rename the entry:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_DELETE_BASE_DN=Equivalent command line to delete the base DN:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_DELETE_BACKEND=Equivalent command line to delete the backend:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_DELETE_DOMAIN=Equivalent command line to disable replication on base DN '%s':
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_MODIFY_INDEX=Equivalent command line to modify the index:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_MODIFY_VLV_INDEX=Equivalent command line to modify the VLV index:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_CREATE_BASE_DN=Equivalent command line to update the configuration:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_CREATE_ADDITIONAL_INDEXES=Equivalent command lines to generate default indexes:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_CREATE_INDEX=Equivalent command line to create the index:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_CREATE_VLV_INDEX=Equivalent command line to create the VLV index:
#
# Note that the following property contains line breaks in HTML format (<br>)
#
INFO_CTRL_PANEL_EQUIVALENT_ACTION_TO_UPDATE_JAVA_PROPERTIES=The equivalent procedure to update the java settings from the command line is: <br> Edit the properties in file:<br><b>%s</b><br>Then run the following command-line:<br><b>%s</b><br><br>
INFO_CTRL_PANEL_DELETE_BASE_DN_DESCRIPTION=Delete base DN '%s'.
INFO_CTRL_PANEL_DELETE_BASE_DNS_DESCRIPTION=Delete base DN's %s.
INFO_CTRL_PANEL_DELETE_BACKEND_DESCRIPTION=Delete backend '%s'.
INFO_CTRL_PANEL_DELETE_BACKENDS_DESCRIPTION=Delete backends '%s'.
INFO_CTRL_PANEL_DELETING_BASE_DN=Deleting base DN '%s'
INFO_CTRL_PANEL_DELETING_BASE_DNS=Deleting base DN's %s
INFO_CTRL_PANEL_DELETING_BACKEND=Deleting backend '%s'
 
INFO_CTRL_PANEL_DELETING_DOMAIN=Disabling replication of base DN '%s'
 
INFO_CTRL_PANEL_DELETE_ENTRY_TASK_DESCRIPTION=Delete entries.
 
INFO_CTRL_PANEL_ENTRIES_DELETED=%d entries deleted.
INFO_CTRL_PANEL_DELETING_ENTRY_SUMMARY=Deleting '%s'...
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_DELETE_ENTRY=Equivalent command line to delete entry '%s':
 
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_DELETE_INDEX=Equivalent command line to delete the index:
INFO_CTRL_PANEL_DELETE_INDEX_TASK_DESCRIPTION=Delete indexes in backend '%s'.
INFO_CTRL_PANEL_DELETE_INDEX_IN_BACKENDS_TASK_DESCRIPTION=Delete indexes in backends '%s'.
INFO_CTRL_PANEL_DELETING_INDEX=Deleting index '%s'
INFO_CTRL_PANEL_DELETING_VLV_INDEX=Deleting VLV index '%s'
 
INFO_CTRL_PANEL_DELETE_SCHEMA_ELEMENT_TASK_DESCRIPTION=Delete schema elements.
INFO_CTRL_PANEL_DELETING_OBJECTCLASS=Deleting objectclass '%s'
INFO_CTRL_PANEL_DELETING_ATTRIBUTE=Deleting attribute '%s'
 
MILD_ERR_CTRL_PANEL_ERROR_UPDATING_SCHEMA=Error updating schema.  Details: %s
MILD_ERR_CTRL_PANEL_ERROR_UPDATING_CONFIGURATION=Error updating configuration.  Details: %s
MILD_ERR_CTRL_PANEL_ERROR_CHECKING_ENTRY=Error checking entry.  Details: %s
 
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_DELETE_SCHEMA_ELEMENT_OFFLINE=This operation is equivalent to removing the following attribute from the schema definition entry (cn=schema) in file '%s':
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_DELETE_SCHEMA_ELEMENT_ONLINE=Equivalent command line to update the schema:
INFO_CTRL_PANEL_MODIFY_ENTRY_TASK_DESCRIPTION=Modify entry '%s'.
INFO_CTRL_PANEL_RENAMING_ENTRY=Renaming entry '%s' to '%s'
INFO_CTRL_PANEL_MODIFYING_ENTRY=Modifying entry '%s'
 
INFO_CTRL_PANEL_NEW_ENTRY_TASK_DESCRIPTION=New entry '%s'.
INFO_CTRL_PANEL_CREATING_ENTRY=Creating entry '%s'
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_CREATE_ENTRY=Equivalent command line to create the entry:
INFO_CTRL_PANEL_REBUILD_INDEX_TASK_DESCRIPTION=Rebuild indexes in '%s'.
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_REBUILD_INDEX=Equivalent command line to rebuild indexes in '%s':
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_ENABLE_BACKEND=Equivalent command line to enable the backend '%s':
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_DISABLE_BACKEND=Equivalent command line to disable the backend '%s':
 
INFO_CTRL_PANEL_ENABLING_BACKEND=Enabling backend '%s'
INFO_CTRL_PANEL_DISABLING_BACKEND=Disabling backend '%s'
 
INFO_CTRL_PANEL_RESET_USER_PASSWORD_TASK_DESCRIPTION=Reset password for entry '%s'.
INFO_CTRL_PANEL_RESETTING_USER_PASSWORD=Updating password of entry '%s'
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_RESET_PASSWORD=Equivalent command line to reset the password:
 
INFO_CTRL_PANEL_RESTART_SERVER_TASK_DESCRIPTION=Restart Server.
INFO_CTRL_PANEL_START_SERVER_TASK_DESCRIPTION=Start Server.
INFO_CTRL_PANEL_STOP_SERVER_TASK_DESCRIPTION=Stop Server.
 
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_STOP_SERVER=Equivalent command line to stop the server:
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_START_SERVER=Equivalent command line to start the server:
INFO_CTRL_PANEL_SERVER_STOPPED=Server Stopped
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_ADD_SCHEMA_ELEMENT_OFFLINE=This operation is equivalent to adding the following attribute to the schema definition entry (cn=schema) in file '%s':
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_ADD_SCHEMA_ENTRY_OFFLINE=This operation is equivalent to adding the following entry to the file '%s':
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_ADD_SCHEMA_ELEMENT_ONLINE=Equivalent command line to update the schema:
 
MILD_ERR_CTRL_PANEL_BACKEND_NOT_FOUND_SUMMARY=Could not find backend
MILD_ERR_CTRL_PANEL_BACKEND_NOT_FOUND_DETAILS=The backend '%s' could not be found.  Check main panel for more information.
 
INFO_CTRL_PANEL_SERVER_NOT_RUNNING_SUMMARY=Server Not Running
INFO_CTRL_PANEL_SERVER_NOT_RUNNING_DETAILS=To browse data the server must be running and you must provide authentication.
 
INFO_CTRL_PANEL_INDICATES_REQUIRED_FIELD_LABEL=Indicates Required Field
 
INFO_CTRL_PANEL_INDEX_REBUILD_REQUIRED_SUMMARY=Index Rebuild Required
#
# Note that the following two properties contain line breaks in HTML format
# (<br>)
#
INFO_CTRL_PANEL_INDEX_REBUILD_REQUIRED_OFFLINE_DETAILS=The index configuration for '%s' was successfully modified.  For the configuration to be taken into account the database index files must be regenerated.  This can be done by using the 'Rebuild Indexes' tool or re-importing the contents of the backend '%s'.<br><br> Do you want to rebuild the index now?
INFO_CTRL_PANEL_INDEX_REBUILD_REQUIRED_ONLINE_DETAILS=The index configuration for '%s' was successfully modified.  For the configuration to be taken into account the database index files must be regenerated.  This can be done by using the 'Rebuild Indexes' tool or re-importing the contents of the backend '%s'.<br>During the rebuilding of the indexes the backend '%s' will be disabled and none of its suffixes will be accessible.<br><br>Do you want to rebuild the index now?
 
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_SUMMARY=Authentifizierung erforderlich
 
INFO_CTRL_PANEL_EQUIVALENT_COMMAND_LINE=Equivalent command line:
 
INFO_CTRL_PANEL_REBUILDING_INDEXES_SUMMARY=Rebuilding indexes in backend '%s'...
INFO_CTRL_PANEL_REBUILDING_INDEXES_SUCCESSFUL_SUMMARY=Index Rebuilding Complete
INFO_CTRL_PANEL_REBUILDING_INDEXES_SUCCESSFUL_DETAILS=The indexes where successfully rebuilt.
MILD_ERR_CTRL_PANEL_REBUILDING_INDEXES_ERROR_SUMMARY=Error Rebuilding Indexes
MILD_ERR_CTRL_PANEL_REBUILDING_INDEXES_ERROR_DETAILS= An error occurred rebuilding index.  Error code: %d.
 
INFO_CTRL_PANEL_DETAILS_THROWABLE=Details: %s
 
INFO_CTRL_PANEL_STARTING_SERVER_SUMMARY=Server wird gestartet...
INFO_CTRL_PANEL_STARTING_SERVER_SUCCESSFUL_SUMMARY=Start Complete
INFO_CTRL_PANEL_STARTING_SERVER_SUCCESSFUL_DETAILS=The server started successfully
MILD_ERR_CTRL_PANEL_STARTING_SERVER_ERROR_SUMMARY=Error during server start
MILD_ERR_CTRL_PANEL_STARTING_SERVER_ERROR_DETAILS=An error starting the server.  Fehlercode: %d
 
INFO_CTRL_PANEL_RESTARTING_SERVER_SUCCESSFUL_SUMMARY=Restart Complete
INFO_CTRL_PANEL_RESTARTING_SERVER_SUCCESSFUL_DETAILS=The server restarted successfully
MILD_ERR_CTRL_PANEL_RESTARTING_SERVER_ERROR_SUMMARY=Error during server restart
MILD_ERR_CTRL_PANEL_RESTARTING_SERVER_ERROR_DETAILS=An error restarting the server.  Fehlercode: %d
 
INFO_CTRL_PANEL_STOPPING_SERVER_SUMMARY=Server wird gestoppt...
INFO_CTRL_PANEL_STOPPING_SERVER_SUCCESSFUL_SUMMARY=Stop Complete
INFO_CTRL_PANEL_STOPPING_SERVER_SUCCESSFUL_DETAILS=The server stopped successfully
MILD_ERR_CTRL_PANEL_STOPPING_SERVER_ERROR_SUMMARY=Error during Server Stop
MILD_ERR_CTRL_PANEL_STOPPING_SERVER_ERROR_DETAILS=An error stopping the server.  Fehlercode: %d
 
INFO_CTRL_PANEL_CLOSE_WINDOW_WHEN_OPERATION_COMPLETES_LABEL=Close window when operation completes
INFO_CTRL_PANEL_PLEASE_WAIT_SUMMARY=Please wait...
INFO_CTRL_PANEL_PROGRESS_DIALOG_DETAILS_LABEL=Details:
 
INFO_CTRL_PANEL_START_SERVER_PROGRESS_DLG_TITLE=Start Server
INFO_CTRL_PANEL_STOP_SERVER_PROGRESS_DLG_TITLE=Stop Server
INFO_CTRL_PANEL_RESTART_SERVER_PROGRESS_DLG_TITLE=Restart Server
 
INFO_CTRL_PANEL_CONFIRMATION_REQUIRED_SUMMARY=Best\u00e4tigung erforderlich
#
# Note that the following two properties contain line breaks in HTML format
# (<br>)
#
INFO_CTRL_PANEL_CONFIRM_STOP_SERVER_DETAILS=If the server is stopped all the open connections to the server will be closed and the server will be not available.<br><br>Do you want to continue?
INFO_CTRL_PANEL_CONFIRM_RESTART_SERVER_DETAILS=During the restart process all the open connections to the server will be closed and the server will be not available.<br><br>Do you want to continue?
 
INFO_CTRL_PANEL_LOADING_PANEL_SUMMARY=Loading panel...
INFO_CTRL_PANEL_CHECKING_SUMMARY=Checking...
INFO_CTRL_PANEL_REFRESHING_LIST_SUMMARY=Refreshing List...
INFO_CTRL_PANEL_READING_SUMMARY=Reading...
INFO_CTRL_PANEL_READING_JAVA_SETTINGS_SUMMARY=Reading Java Settings...
INFO_CTRL_PANEL_VERIFYING_AUTHENTICATION_SUMMARY=Verifying Authentication...
INFO_CTRL_PANEL_READING_CONFIGURATION_SUMMARY=Reading Configuration...
 
INFO_CTRL_PANEL_BASE_DN_LABEL=Base DN:
INFO_CTRL_PANEL_FILTER_LABEL=Filter:
INFO_CTRL_PANEL_APPLY_BUTTON_LABEL=Apply
INFO_CTRL_PANEL_CLOSE_BUTTON_LABEL=Schlie\u00dfen
INFO_CTRL_PANEL_CANCEL_BUTTON_LABEL=Abbrechen
INFO_CTRL_PANEL_OK_BUTTON_LABEL=OK
INFO_CTRL_PANEL_SAVE_BUTTON_LABEL=Save
INFO_CTRL_PANEL_DO_NOT_SAVE_BUTTON_LABEL=Do Not Save
INFO_CTRL_PANEL_INVALID_DN_DETAILS=The value %s is not a valid DN.  Details: %s
INFO_CTRL_PANEL_NO_BASE_DN_SELECTED=No base DN selected.
INFO_CTRL_PANEL_INVALID_FILTER_DETAILS=The provided filter is not valid.  Details: %s
INFO_CTRL_PANEL_NO_MATCHES_FOUND_LABEL=No Matches Found
INFO_CTRL_PANEL_MAXIMUM_CHILDREN_DISPLAYED=Maximum %d Children Displayed.  Try Applying a Filter.
INFO_CTRL_PANEL_SUBSTRING_SEARCH_INLINE_HELP=Use '*' for substring search.
 
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_TO_BROWSE_SUMMARY=The server is running.  You must provide authentication to browse data.
INFO_CTRL_PANEL_AUTHENTICATION_SERVER_MUST_RUN_TO_BROWSE_SUMMARY=To browse data the server must be running and you must provide authentication.
INFO_CTRL_PANEL_ERROR_CONNECT_BROWSE_SUMMARY=An error occurred trying to connect to the server to read data.  Details: %s
INFO_CTRL_PANEL_ERROR_CONNECT_BROWSE_DETAILS=Connection Error
 
INFO_CTRL_PANEL_ATTRIBUTE_LABEL=Attribute:
INFO_CTRL_PANEL_ENTRY_LIMIT_LABEL=Entry Limit:
INFO_CTRL_PANEL_INDEX_TYPE_LABEL=Index Type:
INFO_CTRL_PANEL_APPROXIMATE_LABEL=Approximate
INFO_CTRL_PANEL_EQUALITY_LABEL=Equality
INFO_CTRL_PANEL_ORDERING_LABEL=Ordering
INFO_CTRL_PANEL_PRESENCE_LABEL=Presence
INFO_CTRL_PANEL_SUBSTRING_LABEL=Substring
INFO_CTRL_PANEL_DELETE_INDEX_LABEL=Delete Index...
INFO_CTRL_PANEL_SAVE_CHANGES_LABEL=Save Changes
INFO_CTRL_PANEL_NON_CONFIGURABLE_INDEX_LABEL=This is a non-configurable internal index
#
# Note that the following property contains line breaks in HTML format (<br>)
# and must begin with <html>
#
INFO_CTRL_PANEL_INDEX_MODIFIED_LABEL=<html>The index has been modified.<br>Rebuild of the indexes required (using 'Rebuild Index' or 'Import').
 
INFO_CTRL_PANEL_CUSTOM_ATTRIBUTES_LABEL=Custom Attributes
INFO_CTRL_PANEL_STANDARD_ATTRIBUTES_LABEL=Standard Attributes
 
INFO_CTRL_PANEL_INDEX_DETAILS_LABEL=Index Details
 
MILD_ERR_CTRL_PANEL_INVALID_ENTRY_LIMIT_LABEL=The entry limit must be an integer between %d and %d.
 
MILD_ERR_CTRL_PANEL_NO_INDEX_TYPE_SELECTED=You must select at least one index type (approximate, equality, ordering, presence or substring).
 
SEVERE_ERR_CTRL_PANEL_UNEXPECTED_DETAILS=Unexpected error.  Details: %s
MILD_ERR_CTRL_PANEL_ENTRY_ALREADY_EXISTS=Entry '%s' already exists.
 
INFO_CTRL_PANEL_CREATING_NEW_ENTRY_SUMMARY=Creating new entry...
INFO_CTRL_PANEL_CREATING_NEW_ENTRY_SUCCESSFUL_SUMMARY=Entry created
INFO_CTRL_PANEL_CREATING_NEW_ENTRY_SUCCESSFUL_DETAILS=The entry was successfully created.
MILD_ERR_CTRL_PANEL_CREATING_NEW_ENTRY_ERROR_SUMMARY=Error creating new entry
MILD_ERR_CTRL_PANEL_CREATING_NEW_ENTRY_ERROR_DETAILS=An error occurred creating new entry.
 
INFO_CTRL_PANEL_NEW_ENTRY_REQUIRES_SERVER_RUNNING=To create an entry the server must be running and you must provide authentication.
INFO_CTRL_PANEL_NEW_ENTRY_REQUIRES_AUTHENTICATION=To create an entry you must provide authentication.
MILD_ERR_LDIF_REPRESENTATION_REQUIRED=You must provide the LDIF representation of the entry.
MILD_ERR_OBJECTCLASS_FOR_ENTRY_REQUIRED=You must provide the objectclass values of the entry.
 
INFO_CTRL_PANEL_FILTER_INLINE_HELP_LABEL=For example: (|(cn=*)(sn=*))
INFO_CTRL_PANEL_SUBTREE_INLINE_HELP_LABEL=For example: dc=subtree,dc=example,dc=com
INFO_CTRL_PANEL_VLV_INDEX_DETAILS_LABEL=VLV Index Details
 
INFO_CTRL_PANEL_VLV_INDEX_NAME_LABEL=Name:
INFO_CTRL_PANEL_VLV_INDEX_BASE_DN_LABEL=Base DN:
INFO_CTRL_PANEL_VLV_INDEX_FILTER_LABEL=Filter:
INFO_CTRL_PANEL_VLV_INDEX_SEARCH_SCOPE_LABEL=Search Scope:
INFO_CTRL_PANEL_VLV_INDEX_SEARCH_FILTER_LABEL=Search Filter:
INFO_CTRL_PANEL_VLV_INDEX_SORT_ORDER_LABEL=Sort Order:
INFO_CTRL_PANEL_VLV_INDEX_MAX_BLOCK_SIZE_LABEL=Max Block Size:
INFO_CTRL_PANEL_VLV_INDEX_BASE_OBJECT_LABEL=Base Object
INFO_CTRL_PANEL_VLV_INDEX_SINGLE_LEVEL_LABEL=Single Level
INFO_CTRL_PANEL_VLV_INDEX_SUBORDINATE_SUBTREE_LABEL=Subordinate Subtree
INFO_CTRL_PANEL_VLV_INDEX_WHOLE_SUBTREE_LABEL=Whole Subtree
INFO_CTRL_PANEL_VLV_INDEX_ADD_BUTTON_LABEL=Add
INFO_CTRL_PANEL_VLV_INDEX_REMOVE_BUTTON_LABEL=Remove
INFO_CTRL_PANEL_VLV_INDEX_MOVE_UP_BUTTON_LABEL=Move Up
INFO_CTRL_PANEL_VLV_INDEX_MOVE_DOWN_BUTTON_LABEL=Move Down
 
INFO_CTRL_PANEL_VLV_OTHER_BASE_DN_LABEL=Other:
INFO_CTRL_PANEL_VLV_ASCENDING_LABEL=(ascending)
INFO_CTRL_PANEL_VLV_DESCENDING_LABEL=(descending)
 
MILD_ERR_CTRL_PANEL_SCHEMA_NOT_FOUND_SUMMARY=Could not find schema
MILD_ERR_CTRL_PANEL_SCHEMA_NOT_FOUND_DETAILS=The schema could not be found.  Check main panel for more information.
INFO_CTRL_PANEL_VLV_INDEXES_NOT_DEFINED_CONFIRMATION_TITLE=Indexes Not Defined
#
# Note that the following property contains line breaks in HTML format (<br>)
#
INFO_CTRL_PANEL_VLV_INDEXES_NOT_DEFINED_CONFIRMATION_MSG=In order this VLV index to be effective the following indexes must be configured in '%s':<br>%s <br><br>Do you want to continue?
 
INFO_CTRL_PANEL_VLV_INDEX_EQUALITY_TYPE=equality
INFO_CTRL_PANEL_VLV_INDEX_SUBSTRING_TYPE=substring
INFO_CTRL_PANEL_VLV_INDEX_ORDERING_TYPE=ordering
INFO_CTRL_PANEL_VLV_INDEX_PRESENCE_TYPE=presence
INFO_CTRL_PANEL_VLV_INDEX_APPROXIMATE_TYPE=approximate
 
INFO_CTRL_PANEL_MUST_UPDATE_INDEX_DEFINITION_TYPE=You must update the definition of index '%s' to be of type %s.
INFO_CTRL_PANEL_MUST_DEFINE_INDEX_TYPE=You must define the index '%s' to be of type %s.
INFO_CTRL_PANEL_MUST_DEFINE_INDEX=You must define the index '%s'.
MILD_ERR_CTRL_PANEL_NO_VLV_INDEX_NAME_PROVIDED=No VLV index name provided.
MILD_ERR_CTRL_PANEL_VLV_INDEX_ALREADY_DEFINED=There is already a VLV index '%s' defined in backend '%s'.
MILD_ERR_CTRL_PANEL_NO_BASE_DN_FOR_VLV_PROVIDED=You must provide a base DN.
MILD_ERR_CTRL_PANEL_INVALID_BASE_DN_FOR_VLV_PROVIDED=The provided base DN is not valid.  Details: %s
MILD_ERR_CTRL_PANEL_NO_FILTER_FOR_VLV_PROVIDED=You must provide a filter for the index.
MILD_ERR_CTRL_PANEL_INVALID_FILTER_FOR_VLV_PROVIDED=The provided filter is not valid.  Details: %s
MILD_ERR_CTRL_PANEL_NO_ATTRIBUTE_FOR_VLV_PROVIDED=You must select at least one attribute for the sort order.
MILD_ERR_CTRL_PANEL_INVALID_MAX_BLOCK_SIZE_FOR_VLV_PROVIDED=The max block size must be an integer between %d and %d.
 
INFO_CTRL_PANEL_ADD_TO_GROUP_TITLE=Add to Group
INFO_CTRL_PANEL_ADD_TO_GROUP_ENTRIES_LABEL=Entries to be added:
INFO_CTRL_PANEL_ADD_TO_GROUP_GROUPS_LABEL=Groups:
INFO_CTRL_PANEL_ADD_GROUPS_BUTTON_LABEL=Add Groups...
INFO_CTRL_PANEL_CHOOSE_GROUP_TITLE=Choose Groups
MILD_ERR_CTRL_PANEL_GROUP_COULD_NOT_BE_FOUND=The group '%s' could not be found.
MILD_ERR_CTRL_PANEL_NOT_A_STATIC_GROUP=The entry '%s' exists but it is not an static group.
MILD_ERR_CTRL_PANEL_GROUP_NOT_PROVIDED=You must specify a group.
 
 
INFO_CTRL_PANEL_ADDING_TO_GROUP_SUMMARY=Adding to Group...
INFO_CTRL_PANEL_ADDING_TO_GROUP_SUCCESSFUL_SUMMARY=Entries added to groups
INFO_CTRL_PANEL_ADDING_TO_GROUP_SUCCESSFUL_DETAILS=The entries were successfully added.
MILD_ERR_CTRL_PANEL_ADDING_TO_GROUP_ERROR_SUMMARY=Error adding to groups
MILD_ERR_CTRL_PANEL_ADDING_TO_GROUP_ERROR_DETAILS=An error occurred adding to groups.
 
INFO_CTRL_PANEL_ATTRIBUTE_SYNTAX_TITLE=Attribute Syntax
INFO_CTRL_PANEL_ATTRIBUTE_SYNTAX_DETAILS=Attribute Syntax Details
INFO_CTRL_PANEL_ATTRIBUTE_SYNTAX_NAME=Name:
INFO_CTRL_PANEL_ATTRIBUTE_SYNTAX_OID=OID:
INFO_CTRL_PANEL_ATTRIBUTE_SYNTAX_DESCRIPTION=Description:
INFO_CTRL_PANEL_USED_BY_ATTRIBUTES=Used by attributes:
 
INFO_CTRL_PANEL_BACKEND_INDEXES_TITLE=Backend Indexes
INFO_CTRL_PANEL_BACKEND_VLV_INDEXES_TITLE=Backend VLV Indexes
 
INFO_CTRL_PANEL_NO_BACKUPS_FOUND=- No Backups Found -
 
INFO_CTRL_PANEL_BROWSE_BUTTON_LABEL=Durchsuchen...
INFO_CTRL_PANEL_AVAILABLE_BACKUPS_LABEL=Available Backups:
INFO_CTRL_PANEL_REFRESH_LIST_BUTTON_LABEL=Refresh List
INFO_CTRL_PANEL_VERIFY_BACKUP_BUTTON_LABEL=Verify Backup
MILD_ERR_ERROR_SEARCHING_BACKUPS_SUMMARY=Error searching backups
 
 
INFO_CTRL_PANEL_BACKUP_PATH_LABEL=Backup Path:
 
INFO_CTRL_PANEL_BACKUP_TITLE=Run Backup
INFO_CTRL_PANEL_BACKUP_ALL_BACKENDS_LABEL=All Backends
INFO_CTRL_PANEL_BACKUP_TYPE_LABEL=Backup Type:
INFO_CTRL_PANEL_FULL_BACKUP_LABEL=Full Backup
INFO_CTRL_PANEL_INCREMENTAL_BACKUP_LABEL=Incremental Backup (Specify Parent Backup Below)
INFO_CTRL_PANEL_BACKUP_ID_LABEL=Backup ID:
INFO_CTRL_PANEL_AVAILABLE_PARENT_BACKUPS_LABEL=Available Parent Backups:
INFO_CTRL_PANEL_BACKUP_OPTIONS_LABEL=Backup Options:
INFO_CTRL_PANEL_COMPRESS_DATA_LABEL=Compress Data (.gzip)
INFO_CTRL_PANEL_ENCRYPT_DATA_LABEL=Encrypt Data
INFO_CTRL_PANEL_GENERATE_MESSAGE_DIGEST_LABEL=Generate Message Digest of Backup Contents to Use as Checksum
INFO_CTRL_PANEL_SIGN_MESSAGE_DIGEST_HASH_LABEL=Sign Message Digest Hash
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_BACKUP=The server is running.  You must provide authentication to perform the backup.
 
MILD_ERR_CTRL_PANEL_NO_BACKENDS_SELECTED=No backends selected.
MILD_ERR_CTRL_PANEL_NO_BACKENDS_AVAILABLE=No backends available.
MILD_ERR_CTRL_PANEL_NO_BACKUP_PATH_PROVIDED=No backup path provided.
MILD_ERR_CTRL_PANEL_BACKUP_PATH_IS_A_FILE=The backup path '%s" exists and is a file.
MILD_ERR_CTRL_PANEL_BACKUP_PATH_DOES_NOT_EXIST=The backup path '%s' does not exist.
MILD_ERR_CTRL_PANEL_NO_BACKUP_ID_PROVIDED=No backup ID provided.
MILD_ERR_CTRL_PANEL_BACKUP_PATH_EXISTS=The file '%s' exists.  You must provide a directory to do the new backup.
MILD_ERR_CTRL_PANEL_NO_PARENT_BACKUP_SELECTED=You have chosen to run an incremental backup.  You must select the parent backup in the list of available parent backups.
MILD_ERR_CTRL_PANEL_BACKUP_ID_ALREADY_EXIST=A backup with ID '%s' is already defined under '%s'.
INFO_CTRL_PANEL_BACKUP_TASK_DESCRIPTION=Backup contents of  '%s' to directory '%s'.
INFO_CTRL_PANEL_RUN_BACKUP_SUMMARY=Creating backup of backend '%s'...
INFO_CTRL_PANEL_RUN_BACKUP_ALL_BACKENDS=Creating backup of all backends...
INFO_CTRL_PANEL_RUN_BACKUP_SUCCESSFUL_SUMMARY=Backup Complete
INFO_CTRL_PANEL_RUN_BACKUP_SUCCESSFUL_DETAILS=The backup finished successfully.
MILD_ERR_CTRL_PANEL_RUN_BACKUP_ERROR_SUMMARY=Error during Backup
MILD_ERR_CTRL_PANEL_RUN_BACKUP_ERROR_DETAILS=An error occurred during the backup.  Error code: %d.
 
INFO_CTRL_PANEL_OTHER_BASE_DN_TITLE=Other Base DN
MILD_ERR_CTRL_PANEL_NO_BASE_DN_PROVIDED=You must provide a base DN.
MILD_ERR_CTRL_PANEL_INVALID_BASE_DN_PROVIDED=The provided base DN is not valid.  Details: %s
 
INFO_CTRL_PANEL_NO_VALUE_SPECIFIED=- No Value Specified -
MILD_ERR_CTRL_PANEL_FILE_NOT_PROVIDED=You have to provide a value for the file.
MILD_ERR_CTRL_PANEL_FILE_DOES_NOT_EXIST=The file '%s' does not exist.
MILD_ERR_CTRL_PANEL_PATH_IS_A_DIRECTORY=The path '%s' is a directory.  You must provide a file.
MILD_ERR_CTRL_PANEL_CANNOT_READ_FILE=Cannot read file '%s'.  Check that you have read rights to it.
MILD_ERR_CTRL_PANEL_VALUE_IN_BASE_64_REQUIRED=You must provide a value in Base 64 format.
MILD_ERR_CTRL_PANEL_ERROR_READING_FILE=An error occurred reading the contents of the file.  Details: %s
MILD_ERR_CTRL_PANEL_ERROR_DECODING_BASE_64=An error occurred decoding the provided base 64 string.  Details: %s
INFO_CTRL_PANEL_EDIT_BINARY_ATTRIBUTE_TITLE=Edit binary attribute
 
INFO_CTRL_PANEL_USE_CONTENTS_OF_FILE=Use contents of file:
INFO_CTRL_PANEL_USE_CONTENTS_IN_BASE_64=Specify binary contents in base 64 format:
INFO_CTRL_PANEL_REFRESH_BUTTON_LABEL=Refresh
INFO_CTRL_PANEL_IMAGE_PREVIEW_LABEL=Image Preview:
INFO_CTRL_PANEL_SPECIFY_CONTENTS_IN_BASE_64=- Specify the value in Base 64 -
INFO_CTRL_PANEL_IMAGE_OF_ATTRIBUTE_LABEL=Image of Attribute
INFO_CTRL_PANEL_PREVIEW_NOT_AVAILABLE_LABEL=Preview not available.
 
INFO_CTRL_PANEL_VIEW_BINARY_ATTRIBUTE_TITLE=View binary attribute
INFO_CTRL_PANEL_VALUE_IN_BASE_64_LABEL=Value in base 64 format:
 
INFO_CTRL_PANEL_MANAGE_ENTRIES_TITLE=Manage Entries
 
INFO_CTRL_PANEL_NEW_USER_MENU=New User...
INFO_CTRL_PANEL_NEW_GROUP_MENU=New Group...
INFO_CTRL_PANEL_NEW_ORGANIZATION_MENU=New Organization...
INFO_CTRL_PANEL_NEW_ORGANIZATIONAL_UNIT_MENU=New Organizational Unit...
INFO_CTRL_PANEL_NEW_DOMAIN_MENU=New Domain...
INFO_CTRL_PANEL_NEW_FROM_LDIF_MENU=New from LDIF...
INFO_CTRL_PANEL_RESET_USER_PASSWORD_MENU=Reset User Password...
INFO_CTRL_PANEL_ADD_TO_GROUP_MENU=Add to Group...
INFO_CTRL_PANEL_COPY_DN_MENU=Copy DN
INFO_CTRL_PANEL_DELETE_SELECTED_ENTRIES_TITLE=Delete Selected Entries
INFO_CTRL_PANEL_DELETE_ENTRIES_CONFIRMATION_DETAILS=Do you want to delete the selected entries (including all the entries below them on the tree)?
INFO_CTRL_PANEL_FILE_MENU=File
INFO_CTRL_PANEL_EXIT_MENU=Exit
INFO_CTRL_PANEL_HELP_MENU=Help
INFO_CTRL_PANEL_ADMINISTRATION_GUIDE_MENU=Administration Guide
INFO_CTRL_PANEL_DOCUMENTATION_WIKI_MENU=Documentation Wiki
INFO_CTRL_PANEL_NEW_BROWSER_WINDOW_MENU=New Window
INFO_CTRL_PANEL_VIEW_MENU=View
INFO_CTRL_PANEL_ENTRIES_MENU=Eintr\u00e4ge
INFO_CTRL_PANEL_CLOSE_MENU=Schlie\u00dfen
INFO_CTRL_PANEL_FILE_MENU_DESCRIPTION=The file menu
INFO_CTRL_PANEL_VIEW_MENU_DESCRIPTION=The view menu
INFO_CTRL_PANEL_HELP_MENU_DESCRIPTION=The help menu
INFO_CTRL_PANEL_ENTRIES_MENU_DESCRIPTION=The entries edition menu
INFO_CTRL_PANEL_SIMPLIFIED_VIEW_MENU=Simplified View
INFO_CTRL_PANEL_ATTRIBUTE_VIEW_MENU=Attribute View
INFO_CTRL_PANEL_LDIF_VIEW_MENU=LDIF View
INFO_CTRL_PANEL_DELETE_ENTRY_MENU=Delete Entry...
INFO_CTRL_PANEL_DELETE_ENTRY_BUTTON=Delete Entry...
INFO_CTRL_PANEL_DELETE_BASE_DN_MENU=Delete Base DN...
INFO_CTRL_PANEL_DELETE_BACKEND_MENU=Delete Backend...
 
INFO_CTRL_PANEL_DELETING_ENTRIES_SUMMARY=Deleting entries...
INFO_CTRL_PANEL_DELETING_ENTRIES_COMPLETE=Entries Deleted
INFO_CTRL_PANEL_DELETING_ENTRIES_SUCCESSFUL=The entries were successfully deleted.
MILD_ERR_CTRL_PANEL_DELETING_ENTRIES_ERROR_SUMMARY=Error deleting entries
MILD_ERR_CTRL_PANEL_DELETING_ENTRIES_ERROR_DETAILS=An error occurred deleting entries
INFO_CTRL_PANEL_INDEXES_CATEGORY_NODE=Indexes
INFO_CTRL_PANEL_VLV_INDEXES_CATEGORY_NODE=VLV Indexes
 
INFO_CTRL_PANEL_BACKEND_LABEL=Backend:
INFO_CTRL_PANEL_NO_BACKENDS_FOUND_LABEL=- No Backends Found -
INFO_CTRL_PANEL_NO_BASE_DNS_FOUND_LABEL=- No Base DN's Found -
INFO_CTRL_PANEL_NO_ITEM_SELECTED_LABEL=- No Item Selected -
INFO_CTRL_PANEL_MULTIPLE_ITEMS_SELECTED_LABEL=- Multiple Items Selected -
INFO_CTRL_PANEL_NO_ENTRY_SELECTED_LABEL=- No Entry Selected -
INFO_CTRL_PANEL_MULTIPLE_ENTRIES_SELECTED_LABEL=- Multiple Entries Selected -
INFO_CTRL_PANEL_NO_SCHEMA_ITEM_SELECTED_LABEL=- No Schema Item Selected -
INFO_CTRL_PANEL_NEW_INDEX_BUTTON_LABEL=New Index...
INFO_CTRL_PANEL_NEW_VLV_INDEX_BUTTON_LABEL=New VLV Index...
INFO_CTRL_PANEL_NEW_INDEX_MENU=New Index...
INFO_CTRL_PANEL_NEW_VLV_INDEX_MENU=New VLV Index...
INFO_CTRL_PANEL_DELETE_INDEX_MENU=Delete Index...
 
 
INFO_CTRL_PANEL_MANAGE_INDEXES_TITLE=Manage Indexes
MILD_ERR_CTRL_PANEL_NO_BACKENDS_FOUND_TITLE=No Backends Found
MILD_ERR_CTRL_PANEL_NO_BACKENDS_FOUND_DETAILS=There are no backends defined.  To create and manage indexes, you must create a backend.  To create a new backend you can use the action "New Base DN".
MILD_ERR_CTRL_PANEL_NO_INDEX_SELECTED=No index selected on the tree.
INFO_CTRL_PANEL_DELETE_INDEXES_TITLE=Delete Indexes
INFO_CTRL_PANEL_CONFIRMATION_INDEXES_DELETE_DETAILS=Are you sure you want to delete the indexes '%s' defined in backend '%s'?
INFO_CTRL_PANEL_DELETING_INDEXES_SUMMARY=Deleting indexes...
INFO_CTRL_PANEL_DELETING_INDEXES_COMPLETE=Indexes Deleted
INFO_CTRL_PANEL_DELETING_INDEXES_SUCCESSFUL=The indexes '%s' in backend '%s' were successfully deleted.
MILD_ERR_CTRL_PANEL_DELETING_INDEXES_ERROR_SUMMARY=Error deleting indexes
MILD_ERR_CTRL_PANEL_DELETING_INDEXES_ERROR_DETAILS=An error occurred deleting indexes '%s'.
 
 
INFO_CTRL_PANEL_ATTRIBUTES_CATEGORY_NODE=Attributes
INFO_CTRL_PANEL_OBJECTCLASSES_CATEGORY_NODE=Object Classes
INFO_CTRL_PANEL_STANDARD_OBJECTCLASSES_CATEGORY_NODE=Standard
INFO_CTRL_PANEL_CONFIGURATION_OBJECTCLASSES_CATEGORY_NODE=Server Configuration
INFO_CTRL_PANEL_CUSTOM_OBJECTCLASSES_CATEGORY_NODE=Custom
INFO_CTRL_PANEL_STANDARD_ATTRIBUTES_CATEGORY_NODE=Standard
INFO_CTRL_PANEL_CONFIGURATION_ATTRIBUTES_CATEGORY_NODE=Server Configuration
INFO_CTRL_PANEL_CUSTOM_ATTRIBUTES_CATEGORY_NODE=Custom
INFO_CTRL_PANEL_MATCHING_RULES_CATEGORY_NODE=Matching Rules
INFO_CTRL_PANEL_ATTRIBUTE_SYNTAXES_CATEGORY_NODE=Attribute Syntaxes
INFO_CTRL_PANEL_NEW_OBJECTCLASS_BUTTON=New Object Class...
INFO_CTRL_PANEL_NEW_ATTRIBUTE_BUTTON=New Attribute...
INFO_CTRL_PANEL_NEW_OBJECTCLASS_MENU=New Object Class...
INFO_CTRL_PANEL_NEW_ATTRIBUTE_MENU=New Attribute...
INFO_CTRL_PANEL_DELETE_SCHEMA_ELEMENT_MENU=Delete...
 
INFO_CTRL_PANEL_SCHEMA_ELEMENT_NAME=Name
INFO_CTRL_PANEL_SCHEMA_ELEMENT_TYPE=Typ
INFO_CTRL_PANEL_PARENT_CLASS=Parent Class
INFO_CTRL_PANEL_CHILD_CLASS=Child Class
INFO_CTRL_PANEL_REQUIRED_ATTRIBUTES=Required Attributes
INFO_CTRL_PANEL_OPTIONAL_ATTRIBUTES=Optional Attributes
 
INFO_CTRL_PANEL_NO_SCHEMA_ITEM_SELECTED=No Schema Item Selected
INFO_CTRL_PANEL_CATEGORY_ITEM_SELECTED=Category Item Selected
INFO_CTRL_PANEL_MULTIPLE_ITEMS_SELECTED=Multiple Schema Items Selected
 
MILD_ERR_CANNOT_DELETE_PARENT_OBJECTCLASS=ObjectClass '%s' is superior of the following classes: %s.  You must redefine these classes so that they do not inherit from objectClass '%s' before deleting it.
MILD_ERR_CANNOT_DELETE_PARENT_ATTRIBUTE=Attribute '%s' is superior of the following attributes: %s.  You must redefine these attributes so that they do not inherit from attribute '%s' before deleting it.
MILD_ERR_CANNOT_DELETE_ATTRIBUTE_WITH_DEPENDENCIES=Attribute '%s' is optional or required by the following objectClasses: %s.  You must redefine these classes so that they do not depend on attribute '%s' before deleting it.
INFO_CTRL_PANEL_MANAGE_SCHEMA_TITLE=Manage Schema
INFO_CTRL_PANEL_DELETE_OBJECTCLASSES_TITLE=Delete Objectclasses
INFO_CTRL_PANEL_DELETE_ATTRIBUTES_TITLE=Delete Attributes
INFO_CTRL_PANEL_DELETE_OBJECTCLASSES_AND_ATTRIBUTES_TITLE=Delete Objectclasses and Attributes
INFO_CTRL_PANEL_CONFIRMATION_DELETE_SCHEMA_ELEMENTS_DETAILS=Are you sure you want to delete the elements '%s' defined in the schema?
INFO_CTRL_PANEL_DELETING_SCHEMA_ELEMENTS_SUMMARY=Deleting...
INFO_CTRL_PANEL_DELETING_SCHEMA_ELEMENTS_COMPLETE=Schema Definitions Deleted
INFO_CTRL_PANEL_DELETING_SCHEMA_ELEMENTS_SUCCESSFUL=The schema elements '%s' were successfully deleted
MILD_ERR_CTRL_PANEL_DELETING_SCHEMA_ELEMENTS_ERROR_SUMMARY=Error deleting schema elements
MILD_ERR_CTRL_PANEL_DELETING_SCHEMA_ELEMENTS_ERROR_DETAILS=An error occurred deleting schema elements.  Check details for more information
 
INFO_CTRL_PANEL_CONFIGURATION_ATTRIBUTE_TITLE=Configuration Attribute
INFO_CTRL_PANEL_CONFIGURATION_OBJECTCLASS_TITLE=Configuration Object Class
INFO_CTRL_PANEL_CUSTOM_ATTRIBUTE_TITLE=Custom Attribute
INFO_CTRL_PANEL_CUSTOM_OBJECTCLASS_TITLE=Custom Object Class
 
INFO_CTRL_PANEL_DELETE_ATTRIBUTE_BUTTON=Delete Attribute...
INFO_CTRL_PANEL_DELETE_ATTRIBUTE_TITLE=Delete Attribute
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_ATTRIBUTE_DELETE=The server is running.  You must provide authentication to delete the attribute.
INFO_CTRL_PANEL_CONFIRMATION_DELETE_ATTRIBUTE_DETAILS=Are you sure you want to delete the attribute '%s' defined in the schema?
INFO_CTRL_PANEL_DELETING_ATTRIBUTE_SUMMARY=Deleting attribute '%s'...
INFO_CTRL_PANEL_DELETING_ATTRIBUTE_COMPLETE=Attribute Deleted
INFO_CTRL_PANEL_DELETING_ATTRIBUTE_SUCCESSFUL=The attribute '%s' was successfully deleted
MILD_ERR_CTRL_PANEL_DELETING_ATTRIBUTE_ERROR_SUMMARY=Error deleting attribute
MILD_ERR_CTRL_PANEL_DELETING_ATTRIBUTE_ERROR_DETAILS=An error occurred deleting attribute '%s'.  Check details for more information.
 
INFO_CTRL_PANEL_DELETE_OBJECTCLASS_BUTTON=Delete Object Class...
INFO_CTRL_PANEL_DELETE_OBJECTCLASS_TITLE=Delete Object Class
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_OBJECTCLASS_DELETE=The server is running.  You must provide authentication to delete the object class.
INFO_CTRL_PANEL_CONFIRMATION_DELETE_OBJECTCLASS_DETAILS=Are you sure you want to delete the object class '%s' defined in the schema?
INFO_CTRL_PANEL_DELETING_OBJECTCLASS_SUMMARY=Deleting object class '%s'...
INFO_CTRL_PANEL_DELETING_OBJECTCLASS_COMPLETE=Object class Deleted
INFO_CTRL_PANEL_DELETING_OBJECTCLASS_SUCCESSFUL=The object class '%s' was successfully deleted
MILD_ERR_CTRL_PANEL_DELETING_OBJECTCLASS_ERROR_SUMMARY=Error deleting object class
MILD_ERR_CTRL_PANEL_DELETING_OBJECTCLASS_ERROR_DETAILS=An error occurred deleting object class '%s'.  Check details for more information.
 
INFO_CTRL_PANEL_DELETE_BACKEND_TITLE=Delete Backend
INFO_CTRL_PANEL_SELECT_BACKENDS_TO_DELETE=Select the Backends to Delete:
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_BACKEND_DELETE=The server is running.  You must provide authentication to delete a backend.
 
INFO_CTRL_PANEL_DELETING_BACKENDS_SUMMARY=Deleting backends...
INFO_CTRL_PANEL_DELETING_BACKENDS_COMPLETE=Backends Deleted
INFO_CTRL_PANEL_DELETING_BACKENDS_SUCCESSFUL=The backends were successfully deleted.
MILD_ERR_CTRL_PANEL_DELETING_BACKENDS_ERROR_SUMMARY=Error deleting backends
MILD_ERR_CTRL_PANEL_DELETING_BACKENDS_ERROR_DETAILS=An error occurred deleting backends.  Check details for more information.
INFO_CTRL_PANEL_CONFIRMATION_DELETE_BACKENDS_DETAILS=The following backends will be deleted.  All the entries defined on all the base DN's of the backend and all the index configuration will be deleted.
INFO_CTRL_PANEL_DO_YOU_WANT_TO_CONTINUE=M\u00f6chten Sie fortfahren?
 
INFO_CTRL_PANEL_SELECT_ALL_BUTTON=Select All
INFO_CTRL_PANEL_CLEAR_SELECTION_BUTTON=Clear Selection
INFO_CTRL_PANEL_CONFIRMATION_DELETE_BASE_DNS_INDIRECT_DETAILS=The following backends will be deleted and all the configuration lost:
 
INFO_CTRL_PANEL_DELETE_BASE_DN_TITLE=Delete Base DN
INFO_CTRL_PANEL_SELECT_BASE_DNS_TO_DELETE=Select the Base DN's to Delete:
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_BASE_DN_DELETE=The server is running.  You must provide authentication to delete a base DN.
 
INFO_CTRL_PANEL_DELETING_BASE_DNS_SUMMARY=Deleting base DN's...
INFO_CTRL_PANEL_DELETING_BASE_DNS_COMPLETE=Base DN's Deleted
INFO_CTRL_PANEL_DELETING_BASE_DNS_SUCCESSFUL=The base DN's were successfully deleted.
MILD_ERR_CTRL_PANEL_DELETING_BASE_DNS_ERROR_SUMMARY=Error deleting base DN's
MILD_ERR_CTRL_PANEL_DELETING_BASE_DNS_ERROR_DETAILS=An error occurred deleting base DN's.  Check details for more information.
INFO_CTRL_PANEL_CONFIRMATION_DELETE_BASE_DNS_DETAILS=The following base DN's will be deleted.  All the entries defined on the base DN's will be deleted.
INFO_CTRL_PANEL_ERROR_SEARCHING_ENTRY_TITLE=Error searching entry
#
# Note that the following property contains line breaks in HTML format (<br>)
#
MILD_ERR_CTRL_PANEL_ERROR_SEARCHING_ENTRY=An error occurred searching entry '%s'.  Details:<br>%s
 
INFO_CTRL_PANEL_EXPORT_LDIF_TITLE=Export LDIF
INFO_CTRL_PANEL_EXPORT_TO_FILE_LABEL=Export to File:
INFO_CTRL_PANEL_EXPORT_OVERWRITE_LABEL=If file exists, overwrite contents of file instead of appending.
INFO_CTRL_PANEL_EXPORT_OPTIONS=Export Options:
INFO_CTRL_PANEL_EXPORT_GENERATE_SIGNED_HASH=Generate a Signed Hash
INFO_CTRL_PANEL_EXPORT_WRAP_TEXT=Wrap Text at Column
INFO_CTRL_PANEL_EXCLUDE_OPERATIONAL_ATTRIBUTES=Exclude Operational Attributes
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_EXPORT=The server is running.  You must provide authentication to perform the export.
 
MILD_ERR_CTRL_PANEL_NO_BACKEND_SELECTED=No backend selected.
MILD_ERR_CTRL_PANEL_EXPORT_DIRECTORY_PROVIDED=The provided path '%s' exists and it is a directory.
MILD_ERR_CTRL_PANEL_INVALID_WRAP_COLUMN=The value of the wrap column must be between %d and %d.
#
# Note that the following property contains line breaks in HTML format (<br>)
#
INFO_CTRL_PANEL_CONFIRMATION_EXPORT_LDIF_DETAILS=File '%s' exists and its contents will be overwritten.<br><br>Do you want to continue?
INFO_CTRL_PANEL_EXPORTING_LDIF_SUMMARY=Exporting from backend '%s'...
INFO_CTRL_PANEL_EXPORTING_LDIF_SUCCESSFUL_SUMMARY=Export Complete
INFO_CTRL_PANEL_EXPORTING_LDIF_SUCCESSFUL_DETAILS=The export finished successfully.
MILD_ERR_CTRL_PANEL_EXPORTING_LDIF_ERROR_SUMMARY=Error during Export
MILD_ERR_CTRL_PANEL_EXPORTING_LDIF_ERROR_DETAILS=An error occurred during the export.  Error code: %d.
INFO_CTRL_PANEL_EXPORT_TASK_DESCRIPTION=Export of backend '%s' to file '%s'.
 
INFO_CTRL_PANEL_IMPORT_LDIF_TITLE=Import LDIF
INFO_CTRL_PANEL_DATA_IN_FILE_COMPRESSED=Data in File is Compressed (.gzip)
INFO_CTRL_PANEL_IMPORT_TYPE_LABEL=Import Type:
INFO_CTRL_PANEL_IMPORT_OVERWRITE_LABEL=Overwrite Any Existing Data
INFO_CTRL_PANEL_IMPORT_APPEND_LABEL=Append to Existing Data
INFO_CTRL_PANEL_FILE_TO_IMPORT_LABEL=File to Import:
INFO_CTRL_PANEL_IMPORT_REPLACE_ENTRIES=Replace Entries that have Matching DN's with Imported Values
INFO_CTRL_PANEL_SCHEMA_VALIDATION_LABEL=Schema Validation:
INFO_CTRL_PANEL_REJECT_NOT_SCHEMA_COMPLIANT_LABEL=Reject Entries That are Not Schema-Compliant
INFO_CTRL_PANEL_REJECTS_FILE_LABEL=Rejects File:
INFO_CTRL_PANEL_WRITE_REJECTS_FILE_LABEL=Write Rejected Entries to a File
INFO_CTRL_PANEL_OVERWRITE_REJECTS_FILE_LABEL=If file exists, overwrite contents of file instead of appending
INFO_CTRL_PANEL_SKIPS_FILE_LABEL=Skips File:
INFO_CTRL_PANEL_WRITE_SKIPS_FILE_LABEL=Write Skipped Entries to a File
INFO_CTRL_PANEL_OVERWRITE_SKIPS_FILE_LABEL=If file exists, overwrite contents of file instead of appending
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_IMPORT=The server is running.  You must provide authentication to perform the import.
MILD_ERR_CTRL_PANEL_REJECTS_FILE_REQUIRED=You must provide a value for the rejects file.
MILD_ERR_CTRL_PANEL_REJECTS_AND_SKIPS_MUST_BE_DIFFERENT=The rejects and skips file must have different values.
MILD_ERR_CTRL_PANEL_SKIPS_FILE_REQUIRED=You must provide a value for the skips file.
#
# Note that the following property contains line breaks in HTML format (<br>)
#
INFO_CTRL_PANEL_CONFIRMATION_IMPORT_LDIF_DETAILS=All the data in backend '%s' will be overwritten.<br><br>Do you want to continue?
INFO_CTRL_PANEL_IMPORTING_LDIF_SUMMARY=Importing to backend '%s'...
INFO_CTRL_PANEL_IMPORTING_LDIF_SUCCESSFUL_SUMMARY=Import Complete
INFO_CTRL_PANEL_IMPORTING_LDIF_SUCCESSFUL_DETAILS=The import finished successfully.
MILD_ERR_CTRL_PANEL_IMPORTING_LDIF_ERROR_SUMMARY=Error during Import
MILD_ERR_CTRL_PANEL_IMPORTING_LDIF_ERROR_DETAILS=An error occurred during the import.  Error code: %d.
INFO_CTRL_PANEL_IMPORT_TASK_DESCRIPTION=Import the contents of file '%s' to backend '%s'.
INFO_CTRL_PANEL_DATA_INCLUSION_OPTIONS=Data Inclusion Options
INFO_CTRL_PANEL_DATA_EXCLUSION_OPTIONS=Data Exclusion Options
INFO_CTRL_PANEL_DNS_TO_INCLUDE=DN's to Include:
INFO_CTRL_PANEL_DNS_TO_EXCLUDE=DN's to Exclude:
INFO_CTRL_PANEL_ATTRIBUTES_TO_INCLUDE=Attributes to Include:
INFO_CTRL_PANEL_ATTRIBUTES_TO_EXCLUDE=Attributes to Exclude:
INFO_CTRL_PANEL_INCLUSION_FILTER=Inclusion Filter:
INFO_CTRL_PANEL_EXCLUSION_FILTER=Exclusion Filter:
INFO_CTRL_PANEL_SEPARATE_DNS_LINE_BREAK=Separate multiple DN's with a line break
INFO_CTRL_PANEL_SEPARATE_ATTRIBUTES_COMMA=Separate multiple attributes with a comma (,)
MILD_ERR_CTRL_PANEL_NOT_A_DESCENDANT_OF_BASE_DN=The base DN '%s' is not a descendant of any of the base DNs defined in backend '%s'.
MILD_ERR_CTRL_PANEL_NOT_VALID_ATTRIBUTE_NAME=The attribute '%s' has not a valid name.
MILD_ERR_CTRL_PANEL_INVALID_FILTER_DETAILS_WITH_VALUE=The provided value '%s' is not a valid filter.  Details: %s
 
INFO_CTRL_PANEL_INDEX_BROWSER_RIGHT_PANEL_TITLE=View Index Properties
INFO_CTRL_PANEL_SCHEMA_BROWSER_RIGHT_PANEL_TITLE=View Schema Element
 
INFO_CTRL_PANEL_INDEX_PANEL_TITLE=Index Properties
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_INDEX_EDITING=The server is running.  You must provide authentication to edit the index.
INFO_CTRL_PANEL_DELETE_INDEX_TITLE=Delete Index
INFO_CTRL_PANEL_CONFIRMATION_INDEX_DELETE_DETAILS=Are you sure you want to delete the index '%s' defined in backend '%s'?
INFO_CTRL_PANEL_DELETING_INDEX_SUMMARY=Deleting index...
INFO_CTRL_PANEL_DELETING_INDEX_COMPLETE=Index Deleted
INFO_CTRL_PANEL_DELETING_INDEX_SUCCESSFUL=The index '%s' in backend '%s' was successfully deleted.
MILD_ERR_CTRL_PANEL_DELETING_INDEX_ERROR_SUMMARY=Error deleting index
MILD_ERR_CTRL_PANEL_DELETING_INDEX_ERROR_DETAILS=An error occurred deleting index '%s'.
INFO_CTRL_PANEL_MODIFYING_INDEX_TITLE=Modifying Index
INFO_CTRL_PANEL_MODIFYING_INDEX_SUMMARY=Modifying index %s...
INFO_CTRL_PANEL_MODIFYING_INDEX_COMPLETE=Index Modified
INFO_CTRL_PANEL_MODIFYING_INDEX_SUCCESSFUL=The index '%s' in backend '%s' was successfully modified.
MILD_ERR_CTRL_PANEL_MODIFYING_INDEX_ERROR_SUMMARY=Error modifying index
MILD_ERR_CTRL_PANEL_MODIFYING_INDEX_ERROR_DETAILS=An error occurred modifying index '%s'.
INFO_CTRL_PANEL_MODIFY_INDEX_TASK_DESCRIPTION=Modify index '%s' in backend '%s'.
INFO_CTRL_PANEL_MODIFYING_INDEX_PROGRESS=Modifying index '%s'
 
INFO_CTRL_PANEL_JAVA_PROPERTIES_TITLE=Java Settings
INFO_CTRL_PANEL_JAVA_HOME_LABEL=Java Home:
INFO_CTRL_PANEL_USE_OPENDS_JAVA_HOME=Use the value of the environment variable OPENDS_JAVA_HOME
INFO_CTRL_PANEL_USE_OPENDS_JAVA_HOME_HELP=If OPENDS_JAVA_HOME is not defined the value below will be used as fallback.
INFO_CTRL_PANEL_USE_SPECIFIED_OPENDS_JAVA_HOME=Use the following value:
INFO_CTRL_PANEL_USE_SPECIFIED_OPENDS_JAVA_HOME_HELP=If the value is not found launching the command-line the value of OPENDS_JAVA_HOME will be used as fallback.
INFO_CTRL_PANEL_JAVA_ARGUMENTS_LABEL=Java Arguments:
INFO_CTRL_PANEL_USE_OPENDS_JAVA_ARGS=Use the value of the environment variable OPENDS_JAVA_ARGS
INFO_CTRL_PANEL_USE_OPENDS_JAVA_ARGS_HELP=If OPENDS_JAVA_ARGS is not defined the values specified below will be used as fallback.
INFO_CTRL_PANEL_USE_SPECIFIED_OPENDS_JAVA_ARGS=Use the values specified below
INFO_CTRL_PANEL_USE_SPECIFIED_OPENDS_JAVA_ARGS_HELP=If the value is not specified for a command-line the value of OPENDS_JAVA_ARGS will be used as fallback.
#
# Note that the following property must begin with <html>
#
INFO_CTRL_PANEL_ONLINE_COMMAND_HELP=<html>(*)The operation is executed on its own process and could benefit from more memory allocation.
#
# Note that the following property must begin with <html>
#
INFO_CTRL_PANEL_OFFLINE_COMMAND_HELP=<html>(**)The operation is executed on the server's process and the command-line does not require many resources.
MILD_ERR_CTRL_PANEL_READING_JAVA_SETTINGS_DETAILS=An unexpected error occurred reading the java settings.  Details: %s
MILD_ERR_CTRL_PANEL_ERR_READING_JAVA_SETTINGS_SUMMARY=Error reading java settings
INFO_CTRL_PANEL_CHECKING_JAVA_ARGUMENTS_SUMMARY=Checking provided java arguments...
MILD_ERR_CTRL_PANEL_JAVA_PATH_DOES_NOT_EXIST=Path '%s' does not exist.
MILD_ERR_CTRL_PANEL_JAVA_PATH_NOT_A_DIRECTORY=Path '%s' is not a directory.  You must specify the path to the java installation to be used.
MILD_ERR_CTRL_PANEL_JAVA_BINARY_NOT_FOUND=Could not find binary '%s'.  You must specify the path to the java installation to be used.
#
# Note that the following property contains line breaks in HTML format (<br>)
#
INFO_CTRL_PANEL_CONFIRM_NOT_WORKING_ARGUMENTS_DETAILS=The following java arguments could not be used with java binary '%s':<br>%s<br><br>The command-lines associated with those java arguments may not work.<br>Do you want to continue?
MILD_ERR_CTRL_PANEL_ERROR_CHECKING_JAVA_SETTINGS_SUMMARY=Error checking java settings
MILD_ERR_CTRL_PANEL_ERROR_CHECKING_JAVA_SETTINGS_DETAILS=An unexpected error occurred checking the provided java settings.  Details: %s
INFO_CTRL_PANEL_UPDATING_JAVA_SETTINGS_TITLE=Modifying Index
INFO_CTRL_PANEL_UPDATING_JAVA_SETTINGS_SUMMARY=Updating java settings...
INFO_CTRL_PANEL_UPDATING_JAVA_SETTINGS_COMPLETE=Java Settings Updated
INFO_CTRL_PANEL_UPDATING_JAVA_SETTINGS_SUCCESSFUL=The java settings were successfully updated.  When the command-lines are executed the new settings will be taken into account.
MILD_ERR_CTRL_PANEL_UPDATING_JAVA_SETTINGS_ERROR_SUMMARY=Error updating java properties
MILD_ERR_CTRL_PANEL_UPDATING_JAVA_SETTINGS_ERROR_DETAILS=An error occurred updating java settings.
MILD_ERR_CTRL_PANEL_UPDATING_JAVA_SETTINGS_ERROR_CODE=An error occurred updating java settings.  Fehlercode: %d
INFO_CTRL_PANEL_COMMAND_LINE_NAME_COLUMN=Command-Line Name
INFO_CTRL_PANEL_JAVA_ARGUMENTS_COLUMN=Java Arguments
INFO_CTRL_PANEL_SERVER_RUNTIME_CELL=%s (Server Runtime)
INFO_CTRL_PANEL_ONLINE_COMMAND_LINE_CELL=%s (Online) (**)
INFO_CTRL_PANEL_OFFLINE_COMMAND_LINE_CELL=%s (Offline) (**)
INFO_CTRL_PANEL_UPDATE_JAVA_SETTINGS_TASK_DESCRIPTION=Update Java Settings.
INFO_CTRL_PANEL_EDIT_LDAP_ENTRY_TITLE=Edit LDAP Entry
INFO_CTRL_PANEL_MODIFYING_ENTRY_CHANGES_TITLE=Save Changes
INFO_CTRL_PANEL_MODIFYING_ENTRY_SUMMARY=Saving changes of entry '%s'...
INFO_CTRL_PANEL_MODIFYING_ENTRY_COMPLETE=Entry Updated
INFO_CTRL_PANEL_MODIFYING_ENTRY_SUCCESSFUL=The entry '%s' was successfully updated.
MILD_ERR_CTRL_PANEL_MODIFYING_ENTRY_ERROR_SUMMARY=Error saving changes
MILD_ERR_CTRL_PANEL_MODIFYING_ENTRY_ERROR_DETAILS=An error occurred saving changes to entry '%s'.
MILD_ERR_CTRL_PANEL_INVALID_ENTRY=The entry is not correct.  Details: %s
 
INFO_CTRL_PANEL_UNSAVED_CHANGES_DIALOG_TITLE=Unsaved Changes
INFO_CTRL_PANEL_UNSAVED_CHANGES_SUMMARY=Unsaved Changes
INFO_CTRL_PANEL_UNSAVED_INDEX_CHANGES_DETAILS=Save Changes to: '%s'?
INFO_CTRL_PANEL_UNSAVED_ENTRY_CHANGES_DETAILS=Save Changes to: '%s'?
INFO_CTRL_PANEL_DELETING_ENTRY_TITLE=Delete Entry
INFO_CTRL_PANEL_DELETING_SUBTREE_TITLE=Delete Subtree
INFO_CTRL_PANEL_DELETE_ENTRY_CONFIRMATION_DETAILS=Do you want to delete entry '%s'?
INFO_CTRL_PANEL_DELETE_SUBTREE_CONFIRMATION_DETAILS=Do you want to delete subtree '%s' (including all the entries below it on the tree)?
INFO_CTRL_PANEL_DELETING_ENTRY_COMPLETE=Entry Deleted
INFO_CTRL_PANEL_DELETING_ENTRY_SUCCESSFUL=The entry '%s' was successfully deleted.
MILD_ERR_CTRL_PANEL_DELETING_ENTRY_ERROR_SUMMARY=Error deleting entry
MILD_ERR_CTRL_PANEL_DELETING_ENTRY_ERROR_DETAILS=An error occurred deleting entry '%s'.
INFO_CTRL_PANEL_DELETING_SUBTREE_SUMMARY=Deleting subtree '%s'...
INFO_CTRL_PANEL_DELETING_SUBTREE_COMPLETE=Subtree Deleted
INFO_CTRL_PANEL_DELETING_SUBTREE_SUCCESSFUL=The subtree '%s' was successfully deleted.
MILD_ERR_CTRL_PANEL_DELETING_SUBTREE_ERROR_SUMMARY=Error deleting subtree
MILD_ERR_CTRL_PANEL_DELETING_SUBTREE_ERROR_DETAILS=An error occurred deleting subtree '%s'.
INFO_CTRL_PANEL_ALL_BASE_DNS=All Base DNs
INFO_CTRL_PANEL_LDAP_FILTER=LDAP Filter:
INFO_CTRL_PANEL_USERS_FILTER=Users
INFO_CTRL_PANEL_GROUPS_FILTER=Groups
INFO_CTRL_PANEL_OTHER_BASE_DN=Other...
 
INFO_CTRL_PANEL_NON_EDITABLE_ATTRIBUTES=Non-editable Attributes:
 
INFO_CTRL_OBJECTCLASS_DESCRIPTOR=Objectclass: %s
INFO_CTRL_AUXILIARY_OBJECTCLASS_DESCRIPTOR=Auxiliary objectclasses: %s
 
INFO_CTRL_PANEL_LOGIN_PANEL_TITLE=Authentifizierung erforderlich
INFO_CTRL_PANEL_BIND_DN_LABEL=Bind DN:
INFO_CTRL_PANEL_BIND_PASSWORD_LABEL=Passwort:
 
#
# Note that the following two properties contain line breaks in HTML format
# (<br>)
#
INFO_CTRL_PANEL_RUNNING_TASKS_CONFIRMATION_DETAILS=The following tasks are running:<br>%s<br><br>If you exit the tasks will continue but you will have to check the error logs to see if they complete successfully.<br><br>Do you want to continue?
 
INFO_CTRL_PANEL_MATCHING_RULE_PANEL_TITLE=Matching Rule
INFO_CTRL_PANEL_MATCHING_RULE_DETAILS=Matching Rule Details
INFO_CTRL_PANEL_MATCHING_RULE_NAME=Name:
INFO_CTRL_PANEL_MATCHING_RULE_OID=OID:
INFO_CTRL_PANEL_MATCHING_RULE_DESCRIPTION=Description:
INFO_CTRL_PANEL_MATCHING_RULE_SYNTAX=Syntax:
INFO_CTRL_PANEL_MATCHING_RULE_TYPE=Typ:
INFO_CTRL_PANEL_MATCHING_RULE_USED_BY=Used by Attributes:
 
INFO_CTRL_PANEL_NO_PARENT_FOR_ATTRIBUTE=- No parent -
INFO_CTRL_PANEL_NO_MATCHING_RULE_FOR_ATTRIBUTE=- No matching rule -
INFO_CTRL_PANEL_NEW_ATTRIBUTE_PANEL_TITLE=New Attribute
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_TO_CREATE_ATTRIBUTE_SUMMARY=The server is running.  You must provide authentication to create an attribute in the schema.
MILD_ERR_CTRL_PANEL_ATTRIBUTE_NAME_REQUIRED=You must provide a name for the attribute.
MILD_ERR_CTRL_PANEL_INVALID_ATTRIBUTE_NAME=The provided name is not valid.  Details: %s
MILD_ERR_CTRL_PANEL_ATTRIBUTE_NAME_ALREADY_IN_USE=The provided name '%s' already exists in the schema (defined as %s).
MILD_ERR_CTRL_PANEL_OID_NOT_VALID=The provided OID is not valid.  Details: %s
MILD_ERR_CTRL_PANEL_OID_ALREADY_IN_USE=The provided OID '%s' already exists in the schema (defined as %s).
MILD_ERR_CTRL_PANEL_EMPTY_ALIAS=You have provided an empty alias.
MILD_ERR_CTRL_PANEL_ALIAS_ALREADY_IN_USE=The provided alias '%s' already exists in the schema (defined as %s).
INFO_CTRL_PANEL_CREATING_ATTRIBUTE_SUMMARY=Creating attribute '%s'...
INFO_CTRL_PANEL_CREATING_ATTRIBUTE_COMPLETE=Attribute created in schema
INFO_CTRL_PANEL_CREATING_ATTRIBUTE_SUCCESSFUL=The attribute '%s' was successfully created.
MILD_ERR_CTRL_PANEL_CREATING_ATTRIBUTE_ERROR_SUMMARY=Error creating attribute
MILD_ERR_CTRL_PANEL_CREATING_ATTRIBUTE_ERROR_DETAILS=An error occurred creating attribute '%s'.  Check details for more information.
INFO_CTRL_PANEL_TYPE_ATTRIBUTE=attribute
INFO_CTRL_PANEL_TYPE_OBJECT_CLASS=object class
INFO_CTRL_PANEL_TYPE_MATCHING_RULE=matching rule
INFO_CTRL_PANEL_TYPE_ATTRIBUTE_SYNTAX=syntax
INFO_CTRL_PANEL_SYNTAX_INLINE_HELP=The syntax defines the type of value of the attribute
INFO_CTRL_PANEL_EXTRA_OPTIONS_EXPANDER=Extra Options
INFO_CTRL_PANEL_ATTRIBUTE_TYPE_OPTIONS_EXPANDER=Attribute Type Options
INFO_CTRL_PANEL_MATCHING_RULE_OPTIONS_EXPANDER=Matching Rule Options
INFO_CTRL_PANEL_SEPARATED_WITH_COMMAS_HELP=Separated with commas
INFO_CTRL_PANEL_SCHEMA_FILE_ATTRIBUTE_HELP=The file (under 'config%sschema') where the attribute definition will be stored.
INFO_CTRL_PANEL_MATCHING_RULE_APPROXIMATE_HELP=The matching rule to be used for approximate requests
INFO_CTRL_PANEL_MATCHING_RULE_EQUALITY_HELP=The matching rule to be used for equality requests
INFO_CTRL_PANEL_MATCHING_RULE_ORDERING_HELP=The matching rule to be used for ordering requests
INFO_CTRL_PANEL_MATCHING_RULE_SUBSTRING_HELP=The matching rule to be used for substring requests
INFO_CTRL_PANEL_DEFAULT_DEFINED_IN_SYNTAX=- Default defined in syntax (%s) -
INFO_CTRL_PANEL_NEW_ATTRIBUTE_TASK_DESCRIPTION=Create new attribute '%s' in schema.
INFO_CTRL_PANEL_CREATING_ATTRIBUTE_PROGRESS=Creating attribute '%s'
INFO_CTRL_PANEL_ATTRIBUTE_NAME_LABEL=Name:
INFO_CTRL_PANEL_ATTRIBUTE_PARENT_LABEL=Parent:
INFO_CTRL_PANEL_ATTRIBUTE_OID_LABEL=OID:
INFO_CTRL_PANEL_ATTRIBUTE_ALIASES_LABEL=Aliases:
INFO_CTRL_PANEL_ATTRIBUTE_ORIGIN_LABEL=Origin:
INFO_CTRL_PANEL_ATTRIBUTE_FILE_LABEL=File:
INFO_CTRL_PANEL_ATTRIBUTE_DESCRIPTION_LABEL=Description:
INFO_CTRL_PANEL_ATTRIBUTE_USAGE_LABEL=Verwendung:
INFO_CTRL_PANEL_ATTRIBUTE_SYNTAX_LABEL=Syntax:
INFO_CTRL_PANEL_ATTRIBUTE_APPROXIMATE_MATCHING_RULE_LABEL=Approximate Matching Rule:
INFO_CTRL_PANEL_ATTRIBUTE_EQUALITY_MATCHING_RULE_LABEL=Equality Matching Rule:
INFO_CTRL_PANEL_ATTRIBUTE_ORDERING_MATCHING_RULE_LABEL=Ordering Matching Rule:
INFO_CTRL_PANEL_ATTRIBUTE_SUBSTRING_MATCHING_RULE_LABEL=Substring Matching Rule:
INFO_CTRL_PANEL_ATTRIBUTE_NON_MODIFIABLE_LABEL=Non Modifiable
INFO_CTRL_PANEL_ATTRIBUTE_SINGLE_VALUED_LABEL=Single Valued
INFO_CTRL_PANEL_ATTRIBUTE_MULTI_VALUED_LABEL=Multivalued
INFO_CTRL_PANEL_ATTRIBUTE_COLLECTIVE_LABEL=Collective
INFO_CTRL_PANEL_ATTRIBUTE_OBSOLETE_LABEL=Obsolete
INFO_CTRL_PANEL_ATTRIBUTE_OPERATIONAL_LABEL=Operational
 
INFO_CTRL_PANEL_NEW_BACKEND_LABEL=New Backend:
INFO_CTRL_PANEL_NEW_BASE_DN_TITLE=New Base DN
INFO_CTRL_PANEL_BASE_DN_EXAMPLE=For example: dc=example,dc=com
INFO_CTRL_PANEL_DIRECTORY_DATA_LABEL=Verzeichnisdaten:
INFO_CTRL_PANEL_ONLY_CREATE_BASE_ENTRY_LABEL=Only Create Base Entry
INFO_CTRL_PANEL_LEAVE_DATABASE_EMPTY_LABEL=Datenbank leer lassen
INFO_CTRL_PANEL_IMPORT_FROM_LDIF_LABEL=Import Data From LDIF File
INFO_CTRL_PANEL_IMPORT_AUTOMATICALLY_GENERATED_LABEL=Import Automatically Generated Example Data
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_CREATE_BASE_DN=The server is running.  You must provide authentication to create a new base DN.
INFO_CTRL_PANEL_IMPORT_LDIF_PATH_LABEL=Pfad:
INFO_CTRL_PANEL_NUMBER_OF_USER_ENTRIES_LABEL=Anzahl der Benutzereintr\u00e4ge:
MILD_ERR_NEW_BACKEND_NAME_REQUIRED=You must provide a name for the new backend.
MILD_ERR_BACKEND_ALREADY_EXISTS=There is already an existing backend with name: %s
MILD_ERR_NEW_BASE_DN_VALUE_REQUIRED=You must provide a value for the Base DN.
MILD_ERR_BASE_DN_ALREADY_EXISTS=The base DN '%s' is already defined.
MILD_ERR_BASE_DN_ANCESTOR_EXISTS=The backend already contains another base DN that is within the same hierarchical path (%s is an ancestor of the provided base DN).
MILD_ERR_BASE_DN_DN_IS_ANCESTOR_OF=The backend already contains another base DN that is within the same hierarchical path (%s is a descendant of the provided base DN).
MILD_ERR_NUMBER_OF_ENTRIES_INVALID=The number of user entries to generate must be between %d and %d.
INFO_CTRL_PANEL_CREATING_BASE_DN_SUMMARY=Creating base DN  '%s'...
INFO_CTRL_PANEL_CREATING_BASE_DN_COMPLETE=Base DN Created
INFO_CTRL_PANEL_CREATING_BASE_DN_SUCCESSFUL=The base DN '%s' was successfully created.
MILD_ERR_CTRL_PANEL_CREATING_BASE_DN_ERROR_SUMMARY=Error during creation of base DN '%s'.    Im Textbereich 'Details' finden Sie weitere Informationen.
MILD_ERR_CTRL_PANEL_CREATING_BASE_DN_ERROR_DETAILS=An error occurred during the creation of the Base DN.  Error code: %d.
INFO_CTRL_PANEL_NEW_BASE_DN_TASK_DESCRIPTION=Create new base DN '%s' in backend '%s'.
INFO_CTRL_PANEL_CREATING_BACKEND_PROGRESS=Creating backend '%s' containing base DN '%s'
INFO_CTRL_PANEL_CREATING_BASE_DN_PROGRESS=Creating base DN '%s' in backend '%s'
INFO_CTRL_PANEL_CREATING_ADDITIONAL_INDEXES_PROGRESS=Creating default indexes
 
INFO_CTRL_NEW_ORGANIZATION_PANEL_TITLE=New Organization
MILD_ERR_CTRL_PANEL_NAME_OF_ORGANIZATION_REQUIRED=You must provide a value for the name of the organization.
INFO_CTRL_PANEL_NEW_ORGANIZATION_NAME_LABEL=Name:
INFO_CTRL_PANEL_NEW_ORGANIZATION_DESCRIPTION_LABEL=Description:
INFO_CTRL_PANEL_NEW_ORGANIZATION_ENTRY_DN_LABEL=Entry DN:
 
INFO_CTRL_NEW_DOMAIN_PANEL_TITLE=New Domain
MILD_ERR_CTRL_PANEL_NAME_OF_DOMAIN_REQUIRED=You must provide a value for the name of the domain.
 
INFO_CTRL_PANEL_NEW_ENTRY_FROM_LDIF_TITLE=New Entry from LDIF
INFO_CTRL_PANEL_LDIF_SYNTAX_LABEL=Enter LDIF syntax for the new entry:
INFO_CTRL_PANEL_CHECK_SYNTAX_BUTTON=Check Syntax
 
INFO_CTRL_PANEL_NEW_GROUP_PANEL_TITLE=New Group
MILD_ERR_CTRL_PANEL_NAME_OF_GROUP_REQUIRED=You must provide a value for the name of the group.
MILD_ERR_CTRL_PANEL_MEMBER_NOT_FOUND=The entry '%s' could not be found.
MILD_ERR_CTRL_PANEL_MEMBER_VALUE_NOT_VALID=The provided value as member '%s' is not valid.  Details: %s
MILD_ERR_CTRL_PANEL_MEMBER_REQUIRED=You must provide a member for the group.
MILD_ERR_CTRL_PANEL_GROUP_FILTER_REQUIRED=You must provide an LDAP URL with a filter for the group.
MILD_ERR_CTRL_PANEL_GROUP_FILTER_NOT_VALID=The provided LDAP URL value is not valid.  Details: %s
MILD_ERR_CTRL_PANEL_REFERENCE_GROUP_NOT_FOUND=The provided Reference Group could not be found.
MILD_ERR_CTRL_PANEL_REFERENCE_GROUP_NOT_DYNAMIC=The provided Reference Group exists but it is not a dynamic group.
MILD_ERR_CTRL_PANEL_REFERENCE_GROUP_NOT_VALID=The provided Dynamic Group Reference DN is not valid.  Details: %s
INFO_CTRL_PANEL_NEW_GROUP_NAME_LABEL=Name:
INFO_CTRL_PANEL_NEW_GROUP_DESCRIPTION_LABEL=Description:
INFO_CTRL_PANEL_NEW_GROUP_ENTRY_DN_LABEL=Entry DN:
INFO_CTRL_PANEL_NEW_GROUP_MEMBERS_LABEL=Members:
INFO_CTRL_PANEL_STATIC_GROUP_LABEL=Static Group
INFO_CTRL_PANEL_DYNAMIC_GROUP_LABEL=Dynamic Group
INFO_CTRL_PANEL_VIRTUAL_STATIC_GROUP_LABEL=Virtual Static Group
INFO_CTRL_PANEL_GROUP_MEMBER_DNS_LABEL=Member DNs:
INFO_CTRL_PANEL_GROUP_FILTER_LABEL=LDAP URL:
INFO_CTRL_PANEL_ADD_MEMBERS_BUTTON=Add Members...
INFO_CTRL_PANEL_ADD_MEMBERS_LABEL=Add Members
INFO_CTRL_PANEL_DYNAMIC_GROUP_REFERENCE_LABEL=Dynamic Group Reference DN:
INFO_CTRL_PANEL_CHOOSE_REFERENCE_GROUP=Choose Reference Group
 
 
INFO_CTRL_PANEL_NEW_INDEX_TITLE=New Index
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_NEW_INDEX=The server is running.  You must provide authentication to create an index.
MILD_ERR_INFO_CTRL_ATTRIBUTE_NAME_REQUIRED=No attribute name selected.
MILD_ERR_INFO_CTRL_PANEL_ENTRY_LIMIT_NOT_VALID=The entry limit must be an integer between %d and %d.
MILD_ERR_INFO_ONE_INDEX_TYPE_MUST_BE_SELECTED=You must select at least one index type (approximate, equality, ordering, presence or substring).
INFO_CTRL_PANEL_CREATING_NEW_INDEX_SUMMARY=Creating new index '%s'...
INFO_CTRL_PANEL_CREATING_NEW_INDEX_SUCCESSFUL_SUMMARY=Index created
INFO_CTRL_PANEL_CREATING_NEW_INDEX_SUCCESSFUL_DETAILS=The new index '%s' was successfully created.
MILD_ERR_CTRL_PANEL_CREATING_NEW_INDEX_ERROR_SUMMARY=Error creating index
MILD_ERR_CTRL_PANEL_CREATING_NEW_INDEX_ERROR_DETAILS=An error occurred creating index.
INFO_CTRL_PANEL_NEW_INDEX_TASK_DESCRIPTION=Create new index '%s' in backend '%s'.
INFO_CTRL_PANEL_CREATING_NEW_INDEX_PROGRESS=Creating index '%s'
 
INFO_CTRL_PANEL_NEW_OBJECTCLASS_PANEL_TITLE=New Object Class
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_TO_CREATE_OBJECTCLASS_SUMMARY=The server is running.  You must provide authentication to create an attribute in the schema.
MILD_ERR_CTRL_PANEL_OBJECTCLASS_NAME_REQUIRED=You must provide a name for the object class.
MILD_ERR_CTRL_PANEL_INVALID_OBJECTCLASS_NAME=The provided name is not valid.  Details: %s
MILD_ERR_CTRL_PANEL_OBJECTCLASS_NAME_ALREADY_IN_USE=The provided name '%s' already exists in the schema (defined as %s).
INFO_CTRL_PANEL_CREATING_OBJECTCLASS_SUMMARY=Creating object class '%s'...
INFO_CTRL_PANEL_CREATING_OBJECTCLASS_COMPLETE=Object class created in schema
INFO_CTRL_PANEL_CREATING_OBJECTCLASS_SUCCESSFUL=The object class '%s' was successfully created.
MILD_ERR_CTRL_PANEL_CREATING_OBJECTCLASS_ERROR_SUMMARY=Error creating object class
MILD_ERR_CTRL_PANEL_CREATING_OBJECTCLASS_ERROR_DETAILS=An error occurred creating object class '%s'.  Check details for more information.
INFO_CTRL_PANEL_OBJECTCLASS_OBSOLETE_LABEL=Obsolete
INFO_CTRL_PANEL_OBJECTCLASS_ABSTRACT_LABEL=Abstract
INFO_CTRL_PANEL_OBJECTCLASS_STRUCTURAL_LABEL=Structural
INFO_CTRL_PANEL_OBJECTCLASS_AUXILIARY_LABEL=Auxiliary
INFO_CTRL_PANEL_ADDREMOVE_AVAILABLE_ATTRIBUTES=Available Attributes:
INFO_CTRL_PANEL_ADDREMOVE_REQUIRED_ATTRIBUTES=Required Attributes:
INFO_CTRL_PANEL_ADDREMOVE_OPTIONAL_ATTRIBUTES=Optional Attributes:
INFO_CTRL_PANEL_INHERITED_ATTRIBUTES_HELP=(*) Inherited Attribute
INFO_CTRL_PANEL_SCHEMA_FILE_OBJECTCLASS_HELP=The file (under 'config%sschema') where the object class definition will be stored.
INFO_CTRL_PANEL_NEW_OBJECTCLASS_TASK_DESCRIPTION=Create new object class '%s' in schema.
INFO_CTRL_PANEL_CREATING_OBJECTCLASS_PROGRESS=Creating object class '%s'
INFO_CTRL_PANEL_OBJECTCLASS_NAME_LABEL=Name:
INFO_CTRL_PANEL_OBJECTCLASS_PARENT_LABEL=Parent:
INFO_CTRL_PANEL_OBJECTCLASS_OID_LABEL=OID:
INFO_CTRL_PANEL_OBJECTCLASS_ALIASES_LABEL=Aliases:
INFO_CTRL_PANEL_OBJECTCLASS_ORIGIN_LABEL=Origin:
INFO_CTRL_PANEL_OBJECTCLASS_FILE_LABEL=File:
INFO_CTRL_PANEL_OBJECTCLASS_DESCRIPTION_LABEL=Description:
INFO_CTRL_PANEL_OBJECTCLASS_TYPE_LABEL=Typ:
INFO_CTRL_PANEL_OBJECTCLASS_ATTRIBUTES_LABEL=Attributes:
 
INFO_CTRL_PANEL_NEW_OU_NAME_LABEL=Name:
INFO_CTRL_PANEL_NEW_OU_DESCRIPTION_LABEL=Description:
INFO_CTRL_PANEL_NEW_OU_ENTRY_DN_LABEL=Entry DN:
INFO_CTRL_PANEL_NEW_OU_ADDRESS_LABEL=Address:
INFO_CTRL_PANEL_NEW_OU_TELEPHONE_NUMBER_LABEL=Telephone Number:
INFO_CTRL_PANEL_NEW_OU_FAX_NUMBER_LABEL=Fax Number:
INFO_CTRL_PANEL_NEW_OU_PANEL_TITLE=New Organizational Unit
MILD_ERR_CTRL_PANEL_NAME_OF_OU_REQUIRED=You must provide a value for the Name of the Organizational Unit.
 
INFO_CTRL_PANEL_NEW_USER_FIRST_NAME_LABEL=First Name:
INFO_CTRL_PANEL_NEW_USER_LAST_NAME_LABEL=Last Name:
INFO_CTRL_PANEL_NEW_USER_COMMON_NAMES_LABEL=Common Name:
INFO_CTRL_PANEL_NEW_USER_UID_LABEL=User ID:
INFO_CTRL_PANEL_NEW_USER_PASSWORD_LABEL=Passwort:
INFO_CTRL_PANEL_NEW_USER_CONFIRM_PASSWORD_LABEL=Password (Confirm):
INFO_CTRL_PANEL_NEW_USER_EMAIL_LABEL=E-mail:
INFO_CTRL_PANEL_NEW_USER_TELEPHONE_NUMBER_LABEL=Telephone Number:
INFO_CTRL_PANEL_NEW_USER_FAX_NUMBER_LABEL=Fax Number:
INFO_CTRL_PANEL_NEW_USER_NAMING_ATTRIBUTE_LABEL=Naming Attribute:
INFO_CTRL_PANEL_NEW_USER_ENTRY_DN_LABEL=Entry DN:
INFO_CTRL_PANEL_NEW_USER_PANEL_TITLE=New User
MILD_ERR_CTRL_PANEL_USER_LAST_NAME_REQUIRED=You must provide a value for 'Last Name\'.
MILD_ERR_CTRL_PANEL_USER_COMMON_NAME_REQUIRED=You must provide a value for 'Common Name'.
MILD_ERR_CTRL_PANEL_USER_NAMING_ATTRIBUTE_REQUIRED=You must provide a value for the naming attribute '%s'.
 
INFO_CTRL_PANEL_NEW_VLV_INDEX_TITLE=New VLV Index
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_NEW_VLV=The server is running.  You must provide authentication to create a VLV index.
INFO_CTRL_PANEL_CREATING_NEW_VLV_INDEX_SUMMARY=Creating new VLV index '%s'...
INFO_CTRL_PANEL_CREATING_NEW_VLV_INDEX_SUCCESSFUL_SUMMARY=VLV Index created
INFO_CTRL_PANEL_CREATING_NEW_VLV_INDEX_SUCCESSFUL_DETAILS=The new VLV index '%s' was successfully created.
MILD_ERR_CTRL_PANEL_CREATING_NEW_VLV_INDEX_ERROR_SUMMARY=Error creating VLV index
MILD_ERR_CTRL_PANEL_CREATING_NEW_VLV_INDEX_ERROR_DETAILS=An error occurred creating VLV index.
INFO_CTRL_PANEL_NEW_VLV_INDEX_TASK_DESCRIPTION=Create new VLV index '%s' in backend '%s'.
INFO_CTRL_PANEL_CREATING_NEW_VLV_INDEX_PROGRESS=Creating VLV index '%s'
 
INFO_CTRL_PANEL_EDIT_OBJECTCLASS_TITLE=Edit Object Class
INFO_CTRL_PANEL_STRUCTURAL_OBJECTCLASS_LABEL=Structural Object Class:
INFO_CTRL_PANEL_AUXILIARY_OBJECTCLASS_LABEL=Auxiliary Object Classes:
 
INFO_CTRL_PANEL_INDEXES_LABEL=Indexes:
INFO_CTRL_PANEL_AVAILABLE_INDEXES_LABEL=Available Indexes:
INFO_CTRL_PANEL_SELECTED_INDEXES_LABEL=Selected Indexes:
INFO_CTRL_PANEL_REQUIRES_REBUILD_LEGEND=(*) Requires Rebuild
INFO_CTRL_PANEL_REBUILD_INDEXES_TITLE=Rebuild Indexes
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_DISABLE_BACKEND=The server is running.  You must provide authentication to disable the backend before rebuilding the indexes.
MILD_ERR_CTRL_PANEL_NO_BASE_DNS_DEFINED_LABEL=No Base DN's defined.
MILD_ERR_CTRL_PANEL_MUST_SELECT_BASE_DN=You must select a Base DN.
MILD_ERR_CTRL_PANEL_MUST_SELECT_INDEX_TO_REBUILD=You must select at least one index to be rebuilt.
#
# Note that the following property contain line breaks in HTML format (<br>)
#
INFO_CTRL_PANEL_CONFIRM_REBUILD_INDEX_DETAILS=During the rebuilding of the indexes the backend '%s' will be disabled and none of its suffixes will be accessible.<br><br>Do you want to continue?
MILD_ERR_CTRL_PANEL_NEW_PASSWORD_REQUIRED=You must provide a value for the new password.
INFO_CTRL_PANEL_RESET_USER_PASSWORD_TITLE=Reset User Password
INFO_CTRL_PANEL_RESET_USER_PASSWORD_DN_LABEL=DN:
INFO_CTRL_PANEL_RESET_USER_PASSWORD_PWD_LABEL=New User Password:
INFO_CTRL_PANEL_RESET_USER_PASSWORD_CONFIRM_LABEL=Passwortbest\u00e4tigung:
INFO_CTRL_PANEL_RESET_USER_PASSWORD_NAME_LABEL=Name:
INFO_CTRL_PANEL_RESETTING_USER_PASSWORD_SUMMARY=Resetting user password...
INFO_CTRL_PANEL_RESETTING_USER_PASSWORD_SUCCESSFUL_SUMMARY=User Password Updated
INFO_CTRL_PANEL_RESETTING_USER_PASSWORD_SUCCESSFUL_DETAILS=The user password was successfully updated.
MILD_ERR_CTRL_PANEL_RESETTING_USER_PASSWORD_ERROR_SUMMARY=Error updating user password
MILD_ERR_CTRL_PANEL_RESETTING_USER_PASSWORD_ERROR_DETAILS=An error occurred updating user password.
 
INFO_CTRL_PANEL_RESTORE_PANEL_TITLE=Restore from Backup
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_RESTORE=The server is running.  You must provide authentication to restore from backup.
INFO_CTRL_PANEL_VERIFY_BACKUP_TITLE=Verify Backup
INFO_CTRL_PANEL_VERIFYING_BACKUP_SUMMARY=Verifying contents of backup '%s'...
INFO_CTRL_PANEL_VERIFYING_BACKUP_SUCCESSFUL_SUMMARY=Verify Complete
INFO_CTRL_PANEL_VERIFYING_BACKUP_SUCCESSFUL_DETAILS=The verification of the backup finished successfully.
MILD_ERR_CTRL_PANEL_VERIFYING_BACKUP_ERROR_SUMMARY=Error during Backup Verification
MILD_ERR_CTRL_PANEL_VERIFYING_BACKUP_ERROR_DETAILS= An error occurred during the backup verification.  Error code: %d.
#
# Note that the following property contain line breaks in HTML format (<br>)
#
MILD_ERR_CTRL_PANEL_NO_PARENT_BACKUP_TO_VERIFY=You must provide the parent directory containing the backup files.  Then click on 'Refresh' to update the list of available backups.<br>Finally select a backup from the list.
MILD_ERR_CTRL_PANEL_REQUIRED_BACKUP_TO_VERIFY=You must select a backup from the list of available backups.
#
# Note that the following property contains line breaks in HTML format (<br>)
#
INFO_CTRL_PANEL_CONFIRM_RESTORE_DETAILS=If you continue with the restore the contents on the server will be overwritten.<br><br>Do you want to continue?
INFO_CTRL_PANEL_RESTORING_SUMMARY=Restoring contents of backup '%s'...
INFO_CTRL_PANEL_RESTORING_SUCCESSFUL_SUMMARY=Restore Complete
INFO_CTRL_PANEL_RESTORING_SUCCESSFUL_DETAILS=The restore finished successfully
MILD_ERR_CTRL_PANEL_RESTORING_ERROR_SUMMARY=Error during Restore
MILD_ERR_CTRL_PANEL_RESTORING_ERROR_DETAILS=An error occurred during the restore.  Error code: %d.
INFO_CTRL_PANEL_VERIFY_TASK_DESCRIPTION=Verify the contents of  backup '%s' located in directory '%s'.
INFO_CTRL_PANEL_RESTORE_TASK_DESCRIPTION=Restore the contents of backup '%s' located in directory '%s'.
INFO_CTRL_PANEL_CN_FRIENDLY_NAME=Common Name
INFO_CTRL_PANEL_OBJECTCLASS_FRIENDLY_NAME=Object Class
INFO_CTRL_PANEL_GIVENNAME_FRIENDLY_NAME=First Name
INFO_CTRL_PANEL_SN_FRIENDLY_NAME=Last Name
INFO_CTRL_PANEL_UID_FRIENDLY_NAME=User ID
INFO_CTRL_PANEL_EMPLOYEENUMBER_FRIENDLY_NAME=Employee Number
INFO_CTRL_PANEL_USERPASSWORD_FRIENDLY_NAME=User Password
INFO_CTRL_PANEL_AUTHPASSWORD_FRIENDLY_NAME=Auth Password
INFO_CTRL_PANEL_MAIL_FRIENDLY_NAME=E-Mail
INFO_CTRL_PANEL_STREET_FRIENDLY_NAME=Street Address
INFO_CTRL_PANEL_L_FRIENDLY_NAME=City/Locality
INFO_CTRL_PANEL_ST_FRIENDLY_NAME=Status
INFO_CTRL_PANEL_POSTALCODE_FRIENDLY_NAME=Postal Code
INFO_CTRL_PANEL_MOBILE_FRIENDLY_NAME=Mobile Number
INFO_CTRL_PANEL_HOMEPHONE_FRIENDLY_NAME=Home Telephone Number
INFO_CTRL_PANEL_TELEPHONENUMBER_FRIENDLY_NAME=Telephone Number
INFO_CTRL_PANEL_PAGER_FRIENDLY_NAME=Pager
INFO_CTRL_PANEL_FACSIMILETELEPHONENUMBER_FRIENDLY_NAME=Fax Number
INFO_CTRL_PANEL_DESCRIPTION_FRIENDLY_NAME=Beschreibung
INFO_CTRL_PANEL_POSTALADDRESS_FRIENDLY_NAME=Address
INFO_CTRL_PANEL_UNIQUEMEMBER_FRIENDLY_NAME=Members of Group
INFO_CTRL_PANEL_MEMBERURL_FRIENDLY_NAME=LDAP URL
INFO_CTRL_PANEL_C_FRIENDLY_NAME=Country
INFO_CTRL_PANEL_DS_TARGET_GROUP_DN_FRIENDLY_NAME=Dynamic Group Reference DN
INFO_CTRL_PANEL_USERCERTIFICATE_FRIENDLY_NAME=User Certificate
INFO_CTRL_PANEL_JPEGPHOTO_FRIENDLY_NAME=JPEG Photograph
INFO_CTRL_PANEL_SUPPORTEDPWDSCHEMES_FRIENDLY_NAME=Supported Password Schemes
INFO_CTRL_PANEL_SUPPORTEDCONTROLS_FRIENDLY_NAME=Supported Controls
INFO_CTRL_PANEL_SUPPORTEDLDAPVERSIONS_FRIENDLY_NAME=Supported LDAP Versions
INFO_CTRL_PANEL_SUPPORTEDEXTENSIONS_FRIENDLY_NAME=Supported Extensions
INFO_CTRL_PANEL_SUPPORTEDFEATURES_FRIENDLY_NAME=Supported Features
INFO_CTRL_PANEL_VENDORNAME_FRIENDLY_NAME=Vendor Name
INFO_CTRL_PANEL_VENDORVERSION_FRIENDLY_NAME=Vendor Version
INFO_CTRL_PANEL_NAMINGCONTEXTS_FRIENDLY_NAME=Naming Contexts
INFO_CTRL_PANEL_PRIVATENAMINGCONTEXTS_FRIENDLY_NAME=Private Naming Contexts
INFO_CTRL_PANEL_NAME_LABEL=Name
INFO_CTRL_PANEL_SHOW_ATTRS_WITH_VALUES_LABEL=Only Show Attributes with Values
INFO_CTRL_PANEL_PASSWORD_CONFIRM_LABEL=Passwortbest\u00e4tigung:
INFO_CTRL_PANEL_CHOOSE_ENTRIES=Choose Entries
 
INFO_CTRL_PANEL_CONTENTS_OF_FILE=- Contents of file '%s' -
 
MILD_ERR_LOADING_IMAGE=Error loading image
INFO_CTRL_PANEL_THUMBNAIL_DESCRIPTION=Thumbnail
INFO_CTRL_PANEL_EDIT_BUTTON_LABEL=Edit...
INFO_CTRL_PANEL_DELETE_BUTTON_LABEL=Delete...
INFO_CTRL_PANEL_VIEW_BUTTON_LABEL=View...
 
INFO_CTRL_PANEL_STANDARD_ATTRIBUTE_TITLE=Standard Attribute
INFO_CTRL_PANEL_ATTRIBUTE_DETAILS=Attribute Details
INFO_CTRL_PANEL_REQUIRED_BY_LABEL=Required By:
INFO_CTRL_PANEL_ALLOWED_BY_LABEL=Allowed By:
 
INFO_CTRL_PANEL_STANDARD_OBJECTCLASS_TITLE=Standard Object Class
INFO_CTRL_PANEL_OBJECTCLASS_DETAILS=Object Class Details
INFO_CTRL_PANEL_REQUIRED_ATTRIBUTES_LABEL=Required Attributes:
INFO_CTRL_PANEL_OPTIONAL_ATTRIBUTES_LABEL=Optional Attributes:
INFO_CTRL_PANEL_DEFINED_IN_SCHEMA_FILE=Defined in file: %s
 
INFO_CTRL_PANEL_GENERIC_TITLE=Control Panel - %s
INFO_CTRL_PANEL_STATUS_PANEL_TITLE=General Status
MILD_ERR_CTRL_PANEL_ERROR_READING_CONFIGURATION_SUMMARY=Error Reading Configuration
INFO_CTRL_PANEL_NOT_AVAILABLE_LONG_LABEL=Not Available
INFO_CTRL_PANEL_SERVER_STATUS_TITLE_BORDER=Serverstatus
INFO_CTRL_PANEL_SERVER_STATUS_LABEL=Server Status:
INFO_CTRL_PANEL_OPEN_CONNECTIONS_LABEL=Offene Verbindungen:
INFO_CTRL_PANEL_SERVER_DETAILS_TITLE_BORDER=Serverdetails
INFO_CTRL_PANEL_HOST_NAME_LABEL=Hostname:
INFO_CTRL_PANEL_ADMINISTRATIVE_USERS_LABEL=Administratoren:
INFO_CTRL_PANEL_INSTALLATION_PATH_LABEL=Installationspfad
INFO_CTRL_PANEL_INSTANCE_PATH_LABEL=Instance Path:
INFO_CTRL_PANEL_OPENDS_VERSION_LABEL=OpenDS-Version:
INFO_CTRL_PANEL_JAVA_VERSION_LABEL=Java-Version:
INFO_CTRL_PANEL_ADMIN_CONNECTOR_LABEL=Administration Connector:
INFO_CTRL_PANEL_ADMIN_CONNECTOR_DESCRIPTION=Port %d (LDAPS)
INFO_CTRL_PANEL_CONNECTION_HANDLERS=Verbindungs-Handler
INFO_CTRL_PANEL_NO_CONNECTION_HANDLER_FOUND=- No Connection Handlers Found -
INFO_CTRL_PANEL_DATA_SOURCES=Datenquellen
INFO_CTRL_PANEL_NO_DATA_SOURCES_FOUND=- No Data Sources Found -
 
INFO_CTRL_PANEL_WINDOWS_SERVICE_TITLE=Windows Service Configuration
INFO_CTRL_PANEL_WINDOWS_SERVICE_PANEL_TEXT=This page indicates whether this OpenDS instance is configured to run as a Windows Service. To manage auto-start and other features, run the Windows Service Control Manager of the operating system.
INFO_CTRL_PANEL_WINDOWS_SERVICE_INTEGRATION_LABEL=Windows Service Integration:
INFO_CTRL_PANEL_ENABLE_WINDOWS_SERVICE_BUTTON=Enable
INFO_CTRL_PANEL_DISABLE_WINDOWS_SERVICE_BUTTON=Disable...
INFO_CTRL_PANEL_DISABLING_WINDOWS_SERVICE_SUMMARY=Windows-Dienst wird deaktiviert...
INFO_CTRL_PANEL_DISABLING_WINDOWS_SERVICE_SUCCESSFUL_SUMMARY=Windows Service Disabled
INFO_CTRL_PANEL_DISABLING_WINDOWS_SERVICE_SUCCESSFUL_DETAILS=The Windows service was successfully disabled.
MILD_ERR_CTRL_PANEL_DISABLING_WINDOWS_SERVICE_ERROR_SUMMARY=Error during Disabling of Windows Service
MILD_ERR_CTRL_PANEL_DISABLING_WINDOWS_SERVICE_ERROR_DETAILS=An error occurred during the disabling of the Windows service.  Error code: %d.
INFO_CTRL_PANEL_ENABLING_WINDOWS_SERVICE_SUMMARY=Windows-Dienst wird aktiviert...
INFO_CTRL_PANEL_ENABLING_WINDOWS_SERVICE_SUCCESSFUL_SUMMARY=Windows Service Enabled
INFO_CTRL_PANEL_ENABLING_WINDOWS_SERVICE_SUCCESSFUL_DETAILS=The Windows service was successfully enabled.
MILD_ERR_CTRL_PANEL_ENABLING_WINDOWS_SERVICE_ERROR_SUMMARY=Error during Enabling of Windows Service
MILD_ERR_CTRL_PANEL_ENABLING_WINDOWS_SERVICE_ERROR_DETAILS=An error occurred during the enabling of the Windows service.  Error code: %d.
INFO_CTRL_PANEL_ENABLE_WINDOWS_SERVICE_TASK_DESCRIPTION=Enable Windows Service
INFO_CTRL_PANEL_DISABLE_WINDOWS_SERVICE_TASK_DESCRIPTION=Disable Windows Service
 
INFO_CTRL_PANEL_DATABASE_INDEXES=Database Indexes
INFO_CTRL_PANEL_ATTRIBUTE_INDEXES=Attribute Indexes
INFO_CTRL_PANEL_VLV_INDEXES=VLV Indexes
INFO_CTRL_PANEL_ACTION_LABEL=Action:
INFO_CTRL_PANEL_VERIFY_ENTRY_CONTEXT_ARE_INDEXES=Verify Entry Contents are Properly Indexed
INFO_CTRL_PANEL_VERIFY_ALL_KEYS=Verify All Index Key Entry ID's are Clean and Refer to Existing Entries
INFO_CTRL_PANEL_INDEX_LABEL=Index:
INFO_CTRL_PANEL_VERIFY_INDEXES_PANEL_TITLE=Verify Indexes
MILD_ERR_CTRL_PANEL_INDEX_TO_BE_VERIFIED_REQUIRED=You must select at least one index to be verified.
MILD_ERR_CTRL_PANEL_NO_INDEXES_FOR_BASEDN=No indexes defined for base DN '%s'.
MILD_ERR_CTRL_PANEL_INDEX_MUST_BE_SELECTED=You must select an index.
INFO_CTRL_PANEL_VERIFYING_INDEXES_SUMMARY=Verifying contents of indexes in '%s'...
INFO_CTRL_PANEL_VERIFYING_INDEXES_SUCCESSFUL_SUMMARY=Index Verification Complete
INFO_CTRL_PANEL_VERIFYING_INDEXES_SUCCESSFUL_DETAILS=The indexes where successfully verified.
MILD_ERR_CTRL_PANEL_VERIFYING_INDEXES_ERROR_SUMMARY=Error during Index Verification
MILD_ERR_CTRL_PANEL_VERIFYING_INDEXES_ERROR_DETAILS=An error occurred during the index verification.  Error code: %d.
INFO_CTRL_PANEL_VERIFY_INDEX_TASK_DESCRIPTION=Verify indexes in '%s'.
 
#
# Note that the following property contains line breaks in HTML format (<br>)
# and must begin with <html>
#
INFO_CTRL_PANEL_INDEX_MODIFIED_MESSAGE=<html>The index has been modified.<br>Rebuild of the indexes required (using 'Rebuild Index' or 'Import').
INFO_CTRL_PANEL_VLV_INDEX_PANEL_TITLE=VLV Index Properties
INFO_CTRL_PANEL_AUTHENTICATION_REQUIRED_FOR_VLV_INDEX_EDITING=The server is running.  You must provide authentication to edit the VLV index.
INFO_CTRL_PANEL_DELETE_VLV_INDEX_TITLE=Delete VLV Index
INFO_CTRL_PANEL_CONFIRMATION_VLV_INDEX_DELETE_DETAILS=Are you sure you want to delete the VLV index '%s' defined in backend '%s'?
INFO_CTRL_PANEL_DELETING_VLV_INDEX_SUMMARY=Deleting VLV index...
INFO_CTRL_PANEL_DELETING_VLV_INDEX_COMPLETE=VLV Index Deleted
INFO_CTRL_PANEL_DELETING_VLV_INDEX_SUCCESSFUL=The VLV index '%s' in backend '%s' was successfully deleted.
MILD_ERR_CTRL_PANEL_DELETING_VLV_INDEX_ERROR_SUMMARY=Error deleting VLV index
MILD_ERR_CTRL_PANEL_DELETING_VLV_INDEX_ERROR_DETAILS=An error occurred VLV deleting index '%s'.
INFO_CTRL_PANEL_MODIFYING_VLV_INDEX_TITLE=Modifying VLV Index
INFO_CTRL_PANEL_MODIFYING_VLV_INDEX_SUMMARY=Modifying VLV index %s...
INFO_CTRL_PANEL_MODIFYING_VLV_INDEX_COMPLETE=VLV Index Modified
INFO_CTRL_PANEL_MODIFYING_VLV_INDEX_SUCCESSFUL=The VLV index '%s' in backend '%s' was successfully modified.
MILD_ERR_CTRL_PANEL_MODIFYING_VLV_INDEX_ERROR_SUMMARY=Error modifying VLV index
MILD_ERR_CTRL_PANEL_MODIFYING_VLV_INDEX_ERROR_DETAILS=An error occurred modifying VLV index '%s'.
INFO_CTRL_PANEL_MODIFY_VLV_INDEX_TASK_DESCRIPTION=Modify VLV index '%s' in backend '%s'.
INFO_CTRL_PANEL_MODIFYING_VLV_INDEX_PROGRESS=Modifying VLV index '%s'
 
INFO_CTRL_PANEL_AVAILABLE_LABEL=Available:
INFO_CTRL_PANEL_SELECTED_LABEL=Selected:
INFO_CTRL_PANEL_ADDREMOVE_ADD_BUTTON=Add >
INFO_CTRL_PANEL_ADDREMOVE_ADD_ALL_BUTTON=Add All >
INFO_CTRL_PANEL_ADDREMOVE_REMOVE_BUTTON=< Remove
INFO_CTRL_PANEL_ADDREMOVE_REMOVE_ALL_BUTTON=< Remove All
 
INFO_CTRL_PANEL_OBJECTCLASS_CELL_PANEL_AUXILIARY=Auxiliary: %s
 
INFO_CTRL_PANEL_ATTRIBUTE_USAGE_OPERATIONAL=%s (operational)
 
INFO_CTRL_PANEL_VLV_ASCENDING_VLV_INDEX=%s (ascending)
INFO_CTRL_PANEL_VLV_DESCENDING_VLV_INDEX=%s (descending)
 
SEVERE_ERR_CTRL_PANEL_SETTING_ENVIRONMENT=Error setting environment: %s
 
INFO_CTRL_PANEL_ERROR_DIALOG_TITLE=Fehler
INFO_CTRL_PANEL_PROGRESS_DONE=Done
INFO_CTRL_PANEL_VLV_INDEX_CELL=%s - VLV Index
 
INFO_CTRL_PANEL_DISPLAY_ALL_COMMAND_LINES=Display All Command-lines