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

sin
15.38.2009 be7229164665d731e28aff50068366a1733b9f07
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=Nom d'h\u00f4te\u00a0:
INFO_ADMINISTRATIVE_USERS_LABEL=Utilisateurs administratifs\u00a0:
INFO_AGE_OF_OLDEST_MISSING_CHANGE_COLUMN=\u00c2ge de la plus ancienne modification manquante
INFO_AUTHENTICATE_BUTTON_LABEL=Authentifier
INFO_AUTHENTICATE_CONTROL_PANEL_BUTTON_TOOLTIP=Authentifier en tant qu'administrateur pour afficher toutes les informations de contr\u00f4le
INFO_BACKENDID_COLUMN=ID du backend
INFO_BASEDN_COLUMN=DN de base
INFO_CANCEL_BUTTON_UNINSTALL_TOOLTIP=Annuler la d\u00e9sinstallation
MILD_ERR_CANNOT_CONNECT_TO_LOGIN_WITH_CAUSE=Impossible de se connecter \u00e0 Directory Server avec les informations d'authentification fournies.  Les causes possibles sont\u00a0:%n%s
MILD_ERR_CANNOT_CONNECT_TO_LOGIN_WITHOUT_CAUSE=Impossible de se connecter \u00e0 Directory Server avec les informations d'authentification fournies.%nAssurez-vous que le DN et le mot de passe de l'administrateur sont valides.
MILD_ERR_CANNOT_CONNECT_WITH_ADS_CREDENTIALS_WITHOUT_CAUSE=Impossible de se connecter \u00e0 Directory Server avec les informations d'authentification fournies.%nAssurez-vous que l'ID et le mot de passe de l'administrateur sont valides.
INFO_CLI_UNINSTALL_CONFIRM_BACKUPS=Supprimer les fichiers de sauvegarde contenus dans le r\u00e9pertoire bak\u00a0?
INFO_CLI_UNINSTALL_CONFIRM_CONFIGURATION_SCHEMA=Supprimer les fichiers de configuration et de sch\u00e9ma\u00a0?
INFO_CLI_UNINSTALL_CONFIRM_DATABASES=Supprimer le contenu de la base de donn\u00e9es\u00a0?
INFO_CLI_UNINSTALL_CONFIRM_DELETE_FILES=Les fichiers seront supprim\u00e9s d\u00e9finitivement, voulez-vous continuer\u00a0?
INFO_CLI_UNINSTALL_CONFIRM_LDIFS=Supprimer les fichiers d'exportation LDIF du r\u00e9pertoire ldif\u00a0?
INFO_CLI_UNINSTALL_CONFIRM_LIBRARIES_BINARIES=Supprimer les biblioth\u00e8ques de serveur et les outils d'administration\u00a0?
INFO_CLI_UNINSTALL_CONFIRM_LOGS=Supprimer les fichiers journaux\u00a0?
INFO_CLI_UNINSTALL_CONFIRM_OUTSIDEDBS=Directory Server contient des fichiers de base de donn\u00e9es aux emplacements suivants en dehors du chemin de serveur\u00a0: %n%s%nSupprimer ces fichiers\u00a0?
INFO_CLI_UNINSTALL_CONFIRM_OUTSIDELOGS=Directory Server contient des fichiers journaux aux emplacements suivants en dehors du chemin de serveur\u00a0:%n%s%nSupprimer ces fichiers\u00a0?
INFO_CLI_UNINSTALL_CONFIRM_STOP=Le serveur OpenDS est en cours d'ex\u00e9cution et doit \u00eatre arr\u00eat\u00e9 pour poursuivre la d\u00e9sinstallation.%nArr\u00eater le serveur et supprimer d\u00e9finitivement ces fichiers\u00a0?
SEVERE_ERR_CLI_UNINSTALL_NOTHING_TO_BE_UNINSTALLED_NON_INTERACTIVE=Vous devez s\u00e9lectionner les \u00e9l\u00e9ments \u00e0 d\u00e9sinstaller.  Utilisez les options d\u00e9crites dans les instructions pour sp\u00e9cifier les \u00e9l\u00e9ments \u00e0 d\u00e9sinstaller.
SEVERE_ERR_CLI_UNINSTALL_NOTHING_TO_BE_UNINSTALLED=Vous devez s\u00e9lectionner un \u00e9l\u00e9ment \u00e0 d\u00e9sinstaller.
INFO_CLI_UNINSTALL_SERVER_STOPPED=Le serveur a \u00e9t\u00e9 arr\u00eat\u00e9.
INFO_CLI_UNINSTALL_CONFIRM_UPDATE_REMOTE=Le serveur est configur\u00e9 pour la r\u00e9plication.%nSi le serveur est en train de r\u00e9pliquer des contenus sur d'autres serveurs, vous devez vous authentifier en tant qu'administrateur pour pouvoir supprimer les r\u00e9f\u00e9rences \u00e0 ce serveur dans les serveurs OpenDS r\u00e9pliqu\u00e9s.%n%nEntrez 'Oui' pour vous authentifier et supprimer les r\u00e9f\u00e9rences distantes.%nEntrez 'Non' pour poursuivre la d\u00e9sinstallation sans mettre \u00e0 jour les r\u00e9f\u00e9rences distantes.%nS'authentifier\u00a0?
INFO_CLI_UNINSTALL_CONFIRM_UPDATE_REMOTE_AND_START=Le serveur est configur\u00e9 pour la r\u00e9plication.%nSi le serveur est en train de r\u00e9pliquer des contenus sur d'autres serveurs, il doit \u00eatre d\u00e9marr\u00e9 et vous devez vous authentifier en tant qu'administrateur pour supprimer les r\u00e9f\u00e9rences \u00e0 ce serveur sur les serveurs OpenDS r\u00e9pliqu\u00e9s.%n%nTapez 'Oui' pour d\u00e9marrer le serveur, puis authentifiez-vous pour pouvoir supprimer les r\u00e9f\u00e9rences distantes.%nEntrez 'Non' pour poursuivre la d\u00e9sinstallation sans mettre \u00e0 jour les r\u00e9f\u00e9rences distantes.%nD\u00e9marrer le serveur et vous authentifier\u00a0?
INFO_UNINSTALL_CLI_REFERENCED_HOSTNAME_PROMPT=Le nom de cet h\u00f4te (ou adresse IP) tel que r\u00e9f\u00e9renc\u00e9 sur les serveurs distants pour la r\u00e9plication
INFO_UNINSTALL_CONFIRM_PROVIDE_AUTHENTICATION_AGAIN=Souhaitez-vous vous r\u00e9authentifier\u00a0?  (Si vous entrez Non, les r\u00e9f\u00e9rences \u00e0 ce serveur dans d'autres serveurs OpenDS ne seront pas supprim\u00e9es).
INFO_CLI_UNINSTALL_WHAT_TO_DELETE=Souhaitez-vous supprimer tous les composants OpenDS ou s\u00e9lectionner les composants \u00e0 supprimer\u00a0?
INFO_CLI_UNINSTALL_REMOVE_ALL=Supprimer tous les composants
INFO_CLI_UNINSTALL_SPECIFY_WHAT_REMOVE=S\u00e9lectionnez les composants \u00e0 supprimer
INFO_CLI_VIEW_DETAILS=Afficher les d\u00e9tails
INFO_CLI_DO_YOU_WANT_TO_CONTINUE=Voulez-vous continuer\u00a0?
INFO_CLI_NUMBER_PROMPT=Entrez un nombre ou appuyez sur Entr\u00e9e pour accepter la valeur par d\u00e9faut
INFO_CLI_INVALID_RESPONSE=R\u00e9ponse non valide
INFO_CLOSE_BUTTON_UNINSTALL_TOOLTIP=Fermer la fen\u00eatre de d\u00e9sinstallation
INFO_CONFIRM_CLOSE_UNINSTALL_MSG=La d\u00e9sinstallation d'OpenDS n'est pas encore termin\u00e9e.%n\u00cates-vous s\u00fbr de vouloir fermer la fen\u00eatre de d\u00e9sinstallation\u00a0?
INFO_CONFIRM_CLOSE_UNINSTALL_TITLE=Confirmation requise
INFO_CONFIRM_RESTART_MESSAGE=\u00cates-vous s\u00fbr de vouloir red\u00e9marrer Directory Server\u00a0?
INFO_CONFIRM_RESTART_TITLE=Confirmation requise
INFO_CONFIRM_STOP_MESSAGE=\u00cates-vous s\u00fbr de vouloir arr\u00eater Directory Server\u00a0?
INFO_CONFIRM_STOP_TITLE=Confirmation requise
INFO_CONFIRM_UNINSTALL_PANEL_INSTRUCTIONS=L'outil de d\u00e9sinstallation d'OpenDS va supprimer de votre syst\u00e8me tous les composants du serveur OpenDS s\u00e9lectionn\u00e9s ci-dessous. Si tous les composants sont s\u00e9lectionn\u00e9s, le serveur sera int\u00e9gralement supprim\u00e9.
INFO_CONFIRM_UNINSTALL_PANEL_TITLE=Options de d\u00e9sinstallation
INFO_CONFIRM_UNINSTALL_REPLICATION_SERVER_NOT_RUNNING_MSG=Le serveur est configur\u00e9 pour la r\u00e9plication.%nSi le serveur est en train de r\u00e9pliquer des contenus sur d'autres serveurs, il doit \u00eatre d\u00e9marr\u00e9 et vous devez vous authentifier en tant qu'administrateur pour supprimer les r\u00e9f\u00e9rences \u00e0 ce serveur sur les serveurs OpenDS r\u00e9pliqu\u00e9s.%n%nCliquez sur 'Oui' pour d\u00e9marrer le serveur et vous authentifier afin de supprimer les r\u00e9f\u00e9rences distantes.%nCliquez sur 'Non' pour poursuivre la d\u00e9sinstallation sans mettre \u00e0 jour les r\u00e9f\u00e9rences distantes.
INFO_CONFIRM_UNINSTALL_REPLICATION_SERVER_NOT_RUNNING_TITLE=Confirmation requise
INFO_CONFIRM_UNINSTALL_REPLICATION_SERVER_RUNNING_MSG=Le serveur est configur\u00e9 pour la r\u00e9plication.%nSi le serveur est en train de r\u00e9pliquer des contenus sur d'autres serveurs, vous devez vous authentifier en tant qu'administrateur pour pouvoir supprimer les r\u00e9f\u00e9rences \u00e0 ce serveur dans les serveurs OpenDS r\u00e9pliqu\u00e9s.%n%nCliquez sur 'Oui' pour vous authentifier et supprimer les r\u00e9f\u00e9rences distantes.%nCliquez sur 'Non' pour poursuivre la d\u00e9sinstallation sans mettre \u00e0 jour les r\u00e9f\u00e9rences distantes.
INFO_CONFIRM_UNINSTALL_REPLICATION_SERVER_RUNNING_TITLE=Confirmation requise
INFO_CONFIRM_UNINSTALL_SERVER_NOT_RUNNING_MSG=Confirmer la d\u00e9sinstallation%nTous les fichiers s\u00e9lectionn\u00e9s seront d\u00e9finitivement supprim\u00e9s, \u00eates-vous s\u00fbr de vouloir continuer\u00a0?
INFO_CONFIRM_UNINSTALL_SERVER_NOT_RUNNING_TITLE=Confirmer la d\u00e9sinstallation
INFO_CONFIRM_UNINSTALL_SERVER_RUNNING_MSG=Le serveur est en cours d'ex\u00e9cution%nLe serveur OpenDS est en cours d'ex\u00e9cution et doit \u00eatre arr\u00eat\u00e9 avant de poursuivre la d\u00e9sinstallation. Souhaitez-vous que l'outil de d\u00e9sinstallation arr\u00eate le serveur et poursuive la d\u00e9sinstallation\u00a0? Si vous cliquez sur Non, vous devrez arr\u00eater le serveur manuellement avant de poursuivre.
MILD_ERR_UNINSTALL_READING_REGISTERED_SERVERS_CONFIRM_UPDATE_REMOTE=Les erreurs suivantes se sont produites lors de la lecture de la configuration des serveurs existants\u00a0:\n%s\nSouhaitez-vous que l'outil de d\u00e9sinstallation tente de supprimer les r\u00e9f\u00e9rences \u00e0 ce serveur via le mode best-effort\u00a0?
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.  Note that to be able to remove remote references you must provide Global Administrator credentials using the %s and %s (or %s) options.%nPoursuivre la d\u00e9sinstallation avec le mode d'erreur activ\u00e9.
SEVERE_ERR_UNINSTALL_ERROR_UPDATING_REMOTE_NO_FORCE=This server is configured to replicate some of its Base DN's.  There was an error retrieving the references to it in the replicated servers.  Note that to be able to remove remote references you must provide Global Administrator credentials using the %s and %s (or %s) options.%nAssurez-vous que les param\u00e8tres de connexion que vous avez fournis sont corrects.%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.%nVoulez-vous continuer\u00a0?
INFO_CONFIRM_UNINSTALL_SERVER_RUNNING_TITLE=Le serveur est en cours d'ex\u00e9cution
INFO_CONNECTIONS_LABEL=Connexions ouvertes:
MILD_ERR_COULD_NOT_FIND_VALID_LDAPURL=Une erreur s'est produite lors de la lecture du fichier de configuration.%nPeut-\u00eatre qu'aucun port LDAP n'est activ\u00e9 pour les param\u00e8tres de connexion sp\u00e9cifi\u00e9s ou que vous ne disposez pas des droits en \u00e9criture pour le fichier de configuration.
INFO_DATABASES_TITLE=Sources de donn\u00e9es
INFO_DELETE_OUTSIDE_DBS_LABEL=Supprimer ces fichiers de base de donn\u00e9es
INFO_DELETE_OUTSIDE_DBS_MSG=Directory Server contient des fichiers de base de donn\u00e9es aux emplacements suivants en dehors du chemin de serveur\u00a0:
INFO_DELETE_OUTSIDE_DBS_TOOLTIP=Cochez cette case si vous souhaitez supprimer les fichiers de base de donn\u00e9es ne se trouvant pas dans le r\u00e9pertoire d'installation
INFO_DELETE_OUTSIDE_LOGS_LABEL=Supprimer ces fichiers journaux
INFO_DELETE_OUTSIDE_LOGS_MSG=Directory Server contient des fichiers journaux aux emplacements suivants en dehors du chemin de serveur\u00a0:
INFO_DELETE_OUTSIDE_LOGS_TOOLTIP=Cochez cette case si vous souhaitez supprimer les fichiers journaux ne se trouvant pas dans le r\u00e9pertoire d'installation
INFO_DISABLED_LABEL=D\u00e9sactiv\u00e9
INFO_ENABLED_LABEL=Activ\u00e9
MILD_ERR_READING_CONFIG_FILE=Une erreur s'est produite lors de la lecture du fichier de configuration.
MILD_ERR_READING_CONFIG_LDAP=Une erreur s'est produite lors de la lecture des donn\u00e9es \u00e0 partir du serveur.  V\u00e9rifiez les informations d'authentification fournies.%nD\u00e9tails\u00a0: %s
SEVERE_ERR_STARTING_SERVER_GENERIC=Impossible de d\u00e9marrer le serveur.
INFO_FINISH_BUTTON_UNINSTALL_LABEL=D\u00e9sinstaller
INFO_FINISH_BUTTON_UNINSTALL_TOOLTIP=Terminer la d\u00e9sinstallation
INFO_FRAME_UNINSTALL_TITLE=D\u00e9sinstallation d'OpenDS
INFO_INSTALLATION_PATH_LABEL=Chemin d'installation :
INFO_JAVA_VERSION_LABEL=Version Java\u00a0:
INFO_JMX_PROTOCOL_LABEL=JMX
INFO_JMX_SECURE_PROTOCOL_LABEL=JMX (s\u00e9curis\u00e9)
INFO_LDAP_PROTOCOL_LABEL=LDAP
INFO_LDAPS_PROTOCOL_LABEL= LDAPS
INFO_LDIF_PROTOCOL_LABEL=LDIF
INFO_SNMP_PROTOCOL_LABEL=SNMP
INFO_LISTENERS_TITLE=Gestionnaires de connexion
INFO_ADMIN_LISTENER_TITLE=Administration Connector
INFO_LOGIN_CANCEL_BUTTON_TOOLTIP=Fermer la bo\u00eete de dialogue de connexion
INFO_LOGIN_DIALOG_MSG=Vous devez fournir un DN et un mot de passe d'utilisateur administratif pour pouvoir extraire les informations de contr\u00f4le.
INFO_LOGIN_DIALOG_SERVER_NOT_RUNNING_MSG=Directory Server n'est pas en cours d'ex\u00e9cution. Click OK to continue.
INFO_LOGIN_DIALOG_SERVER_NOT_RUNNING_TITLE=Directory Server n'est pas en cours d'ex\u00e9cution
INFO_LOGIN_DIALOG_TITLE=Authentification requise
INFO_LOGIN_DN_LABEL=DN d'utilisateur administratif
INFO_LOGIN_DN_TOOLTIP=Entrez le DN (Distinguished name) du compte de l'utilisateur administratif utilis\u00e9 pour l'extraction des informations de contr\u00f4le
INFO_LOGIN_OK_BUTTON_TOOLTIP=Proc\u00e9der \u00e0 l'authentification
INFO_LOGIN_PWD_LABEL=Mot de passe de l'utilisateur administratif\u00a0:
INFO_LOGIN_PWD_TOOLTIP=Entrez le mot de passe du compte de l'utilisateur administratif utilis\u00e9 pour extraire les informations de contr\u00f4le
INFO_MISSING_CHANGES_COLUMN=Modifications manquantes
INFO_NO_DBS_FOUND=-Aucune base de donn\u00e9es LDAP trouv\u00e9e-
INFO_NO_LISTENERS_FOUND=-Aucun port listener trouv\u00e9-
INFO_NOT_APPLICABLE_LABEL=--
INFO_NOT_AVAILABLE_AUTHENTICATION_REQUIRED_CLI_LABEL=<indisponible> (*)
INFO_NOT_AVAILABLE_SHORT_LABEL=s/o
INFO_NOT_AVAILABLE_AUTHENTICATION_REQUIRED_CLI_LEGEND=* Pour avoir acc\u00e8s \u00e0 ces informations, vous devez fournir des informations d'authentification valides lors du lancement de la commande d'\u00e9tat.
INFO_NOT_AVAILABLE_AUTHENTICATION_REQUIRED_TOOLTIP=<html>Les informations sont disponibles uniquement si vous \u00eates authentifi\u00e9<br>en tant qu'utilisateur administratif.
INFO_NOT_AVAILABLE_SERVER_DOWN_CLI_LABEL=<indisponible> (*)
INFO_NOT_AVAILABLE_SERVER_DOWN_CLI_LEGEND=* Pour avoir acc\u00e8s \u00e0 ces informations, le serveur doit \u00eatre en cours d'ex\u00e9cution et vous devez fournir des informations d'authentification valides lors du lancement de la commande d'\u00e9tat.
INFO_NOT_AVAILABLE_SERVER_DOWN_TOOLTIP=<html>Les informations sont disponibles uniquement si le serveur est en cours d'ex\u00e9cution et que vous \u00eates authentifi\u00e9<br>en tant qu'utilisateur administratif.
INFO_NOTHING_SELECTED_TO_UNINSTALL=Vous devez s\u00e9lectionner un \u00e9l\u00e9ment \u00e0 d\u00e9sinstaller.
INFO_NUMBER_ENTRIES_COLUMN=Entr\u00e9es
INFO_OPENDS_VERSION_LABEL=Version OpenDS\u00a0:
INFO_PROGRESS_REMOVING_REFERENCES=Suppression des r\u00e9f\u00e9rences sur %s
INFO_PROTOCOL_COLUMN=Protocole
INFO_REMOVE_BACKUPS_LABEL=Fichiers de sauvegarde contenus dans le r\u00e9pertoire bak
INFO_REMOVE_BACKUPS_TOOLTIP=Supprimer les fichiers de sauvegarde contenus dans le r\u00e9pertoire bak
INFO_REMOVE_DATABASES_LABEL=Contenu de la base de donn\u00e9es
INFO_REMOVE_DATABASES_TOOLTIP=Supprimer le contenu de la base de donn\u00e9es
INFO_REMOVE_LABEL=Supprimer\u00a0:
INFO_REMOVE_LDIFS_LABEL=Fichiers d'exportation LDIF contenus dans le r\u00e9pertoire ldif
INFO_REMOVE_LDIFS_TOOLTIP=Supprimer les fichiers d'exportation LDIF contenus dans le r\u00e9pertoire ldif
INFO_REMOVE_LIBRARIES_AND_TOOLS_LABEL=Biblioth\u00e8ques de serveur et outils d'administration
INFO_REMOVE_LIBRARIES_AND_TOOLS_TOOLTIP=Supprimer les biblioth\u00e8ques de serveur et les outils d'administration
INFO_REMOVE_LOGS_LABEL=Fichiers journaux
INFO_REMOVE_LOGS_TOOLTIP=Supprimer les fichiers journaux
INFO_REMOVE_SCHEMA_AND_CONFIGURATION_LABEL=Fichiers de configuration et de sch\u00e9ma
INFO_REMOVE_SCHEMA_AND_CONFIGURATION_TOOLTIP=Supprimer les fichiers de configuration et de sch\u00e9ma
INFO_REPLICATED_COLUMN=R\u00e9plication
INFO_RESTART_BUTTON_LABEL=Red\u00e9marrer
INFO_RESTART_BUTTON_TOOLTIP=Red\u00e9marre Directory Server
INFO_SERVER_DETAILS_TITLE=D\u00e9tails du serveur
INFO_SERVER_PATH_LABEL=Chemin du serveur\u00a0:
INFO_SERVER_STARTED_LABEL=D\u00e9marr\u00e9
INFO_SERVER_STARTING_LABEL=D\u00e9marrage
INFO_SERVER_STATUS_LABEL=\u00c9tat d'ex\u00e9cution du serveur\u00a0:
INFO_SERVER_STATUS_TITLE=Statut du serveur
INFO_SERVER_STOPPED_LABEL=Arr\u00eat\u00e9
INFO_SERVER_STOPPING_LABEL=Arr\u00eat
INFO_SERVER_UNKNOWN_STATUS_LABEL=Inconnu
INFO_START_BUTTON_LABEL=D\u00e9marrer
INFO_START_BUTTON_TOOLTIP=D\u00e9marre Directory Server
INFO_STATE_COLUMN=\u00c9tat
INFO_STATUS_CLI_USAGE_DESCRIPTION=Cet utilitaire permet d'afficher les informations de base sur le serveur
SEVERE_ERR_CONTROL_PANEL_LAUNCHER_GUI_LAUNCH_FAILED=Could not launch Control Panel.  Assurez-vous que vous avez acc\u00e8s \u00e0 l'affichage.
SEVERE_ERR_CONTROL_PANEL_LAUNCHER_GUI_LAUNCH_FAILED_DETAILS=Could not launch Control Panel.  Assurez-vous que vous avez acc\u00e8s \u00e0 l'affichage.   Pour plus d'informations, consultez le fichier journal %s.
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=Arr\u00eater
INFO_STOP_BUTTON_TOOLTIP=Arr\u00eate Directory Server
INFO_BASEDN_NOT_REPLICATED_LABEL=D\u00e9sactiv\u00e9
INFO_BASEDN_REPLICATED_LABEL=Activ\u00e9
INFO_SUMMARY_DELETING_EXTERNAL_DB_FILES=Suppression des fichiers de base de donn\u00e9es en dehors du r\u00e9pertoire d'installation...
INFO_SUMMARY_DELETING_EXTERNAL_LOG_FILES=Suppression des fichiers journaux en dehors du r\u00e9pertoire d'installation...
INFO_SUMMARY_DELETING_EXTERNAL_REFERENCES=Suppression des r\u00e9f\u00e9rences externes...
INFO_SUMMARY_DELETING_INSTALLATION_FILES=Suppression des fichiers dans le r\u00e9pertoire d'installation...
INFO_SUMMARY_DISABLING_WINDOWS_SERVICE=D\u00e9sactivation du service Windows...
INFO_SUMMARY_UNCONFIGURING_REPLICATION=Suppression des r\u00e9f\u00e9rences dans les serveurs OpenDS distants...
INFO_SUMMARY_UNINSTALL_FINISHED_SUCCESSFULLY=<b>Fin de la d\u00e9sinstallation d'OpenDS.</b>
INFO_SUMMARY_UNINSTALL_FINISHED_SUCCESSFULLY_CLI=Fin de la d\u00e9sinstallation d'OpenDS.
INFO_SUMMARY_UNINSTALL_FINISHED_SUCCESSFULLY_REMOVE_JARFILES=<b>Fin de la d\u00e9sinstallation d'OpenDS.</b><br><br>Pour terminer la d\u00e9sinstallation, vous devez supprimer manuellement les fichiers et r\u00e9pertoires suivants\u00a0:<br>%s
INFO_SUMMARY_UNINSTALL_FINISHED_SUCCESSFULLY_REMOVE_JARFILES_CLI=Fin de la d\u00e9sinstallation d'OpenDS.%nPour terminer la d\u00e9sinstallation, vous devez supprimer manuellement les fichiers et r\u00e9pertoires suivants\u00a0:%n%s
INFO_SUMMARY_UNINSTALL_FINISHED_WITH_ERROR=Une erreur s'est produite.  Reportez-vous \u00e0 la zone de texte "D\u00e9tails" pour plus d'informations.
INFO_SUMMARY_UNINSTALL_FINISHED_WITH_ERROR_ON_REMOTE=<b>La d\u00e9sinstallation d'OpenDS est termin\u00e9e avec des avertissements</b><br>OpenDS a \u00e9t\u00e9 d\u00e9sinstall\u00e9 de l'ordinateur local mais des erreurs se sont produites lors de la mise \u00e0 jour des serveurs distants.  Reportez-vous \u00e0 la zone de texte "D\u00e9tails" pour plus d'informations.
INFO_SUMMARY_UNINSTALL_FINISHED_WITH_ERROR_ON_REMOTE_CLI=OpenDS a \u00e9t\u00e9 d\u00e9sinstall\u00e9 de l'ordinateur local mais des erreurs se sont produites lors de la mise \u00e0 jour des serveurs distants.
INFO_SUMMARY_UNINSTALL_FINISHED_WITH_ERROR_DELETING=<b>La d\u00e9sinstallation d'OpenDS est termin\u00e9e avec des avertissements</b><br>OpenDS a \u00e9t\u00e9 d\u00e9sinstall\u00e9 de l'ordinateur local mais des erreurs se sont produites lors de la suppression des fichiers.  Reportez-vous \u00e0 la zone de texte "D\u00e9tails" pour plus d'informations sur les fichiers ayant caus\u00e9 l'erreur.<br><br>Assurez-vous qu'aucun autre programme n'utilise ces fichiers et supprimez-les manuellement.
INFO_SUMMARY_UNINSTALL_FINISHED_WITH_ERROR_DELETING_CLI=OpenDS a \u00e9t\u00e9 d\u00e9sinstall\u00e9 de l'ordinateur local mais des erreurs se sont produites lors de la suppression des fichiers.  Reportez-vous \u00e0 la zone de texte "D\u00e9tails" pour plus d'informations sur les fichiers ayant caus\u00e9 l'erreur.%n%nAssurez-vous qu'aucun autre programme n'utilise ces fichiers et supprimez-les manuellement.
INFO_SUMMARY_UNINSTALL_NOT_STARTED=D\u00e9but de la d\u00e9sinstallation...
INFO_UNDEFINED_PROTOCOL_LABEL=-Inconnu-
SEVERE_ERR_UNINSTALL_LAUNCHER_GUI_LAUNCHED_FAILED=%n%n\u00c9chec du lancement de la d\u00e9sinstallation graphique.%n%nD\u00e9but de la d\u00e9sinstallation via la ligne de commande...
SEVERE_ERR_UNINSTALL_LAUNCHER_GUI_LAUNCHED_FAILED_DETAILS=%n%n\u00c9chec du lancement de la d\u00e9sinstallation graphique.  Reportez-vous au fichier %s pour plus d'informations.%n%nD\u00e9but de la d\u00e9sinstallation via la ligne de commande...
INFO_UNINSTALL_LAUNCHER_LAUNCHING_CLI=D\u00e9but de la d\u00e9sinstallation via la ligne de commande...
INFO_UNINSTALL_LAUNCHER_LAUNCHING_GUI=D\u00e9but de la d\u00e9sinstallation graphique...
INFO_UNINSTALL_LAUNCHER_USAGE_DESCRIPTION=Cet utilitaire permet de d\u00e9sinstaller Directory Server.
INFO_UNINSTALL_LOGIN_CANCEL_BUTTON_TOOLTIP=Fermez cette bo\u00eete de dialogue et ne tentez pas de supprimer des r\u00e9f\u00e9rences de ce serveur sur d'autres serveurs OpenDS.
INFO_UNINSTALL_LOGIN_DIALOG_MSG=Vous devez fournir un ID d'utilisateur administratif global pour pouvoir supprimer les r\u00e9f\u00e9rences \u00e0 ce serveur dans d'autres serveurs OpenDS.%nVous devez \u00e9galement indiquer le nom de cet h\u00f4te (ou adresse IP) car il est r\u00e9f\u00e9renc\u00e9 sur les serveurs distants.
INFO_UNINSTALL_LOGIN_HOST_NAME_LABEL=Nom d'h\u00f4te\u00a0:
INFO_UNINSTALL_LOGIN_HOST_NAME_TOOLTIP=Le nom de cet h\u00f4te (ou adresse IP) tel que r\u00e9f\u00e9renc\u00e9 dans d'autres serveurs OpenDS.
INFO_UNINSTALL_LOGIN_OK_BUTTON_TOOLTIP=Essayez de vous connecter \u00e0 l'aide des informations d'authentification fournies.
INFO_UNINSTALL_LOGIN_PWD_TOOLTIP=Le mot de passe de l'administrateur global \u00e0 utiliser pour lire et mettre \u00e0 jour la configuration dans d'autres serveurs OpenDS.
INFO_UNINSTALL_LOGIN_UID_TOOLTIP=L'ID d'utilisateur administratif global \u00e0 utiliser pour lire et mettre \u00e0 jour la configuration sur d'autres serveurs OpenDS.
INFO_UNKNOWN_LABEL=--
INFO_UNINSTALLDS_DESCRIPTION_FORCE=Indique si la d\u00e9sinstallation doit se poursuivre ou non lorsqu'une erreur se produit lors de la mise \u00e0 jour des r\u00e9f\u00e9rences sur ce serveur dans les instances distantes d'OpenDS.  Cet argument ne peut \u00eatre utilis\u00e9 qu'avec l'argument %s, qui n'est pas un argument d'invite.
INFO_DESCRIPTION_REFERENCED_HOST=Le nom de cet h\u00f4te (ou adresse IP) tel que r\u00e9f\u00e9renc\u00e9 sur les serveurs distants pour la r\u00e9plication
INFO_UNINSTALLDS_DESCRIPTION_CLI=Indique de proc\u00e9der \u00e0 l'installation via la ligne de commande.  Si rien n'est sp\u00e9cifi\u00e9, l'interface graphique sera lanc\u00e9e.  Le reste des options (\u00e0 l'exception de help et de version) ne sera pris en compte que si cette option est sp\u00e9cifi\u00e9e
INFO_UNINSTALLDS_DESCRIPTION_QUIET=Effectuer la d\u00e9sinstallation en mode silencieux.  Le mode silencieux va envoyer les informations de progression vers la sortie standard
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_ALL=Supprimer tous les composants d'OpenDS (cette option n'est pas compatible avec les autres options de suppression)
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_SERVER_LIBRARIES=Supprimer les biblioth\u00e8ques de serveur et les outils d'administration
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_DATABASES=Supprimer le contenu de la base de donn\u00e9es
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_LOG_FILES=Supprimer les fichiers journaux
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_CONFIGURATION_FILES=Supprimer les fichiers de configuration
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_BACKUP_FILES=Supprimer les fichiers de sauvegarde
INFO_UNINSTALLDS_DESCRIPTION_REMOVE_LDIF_FILES=Supprimer les fichiers LDIF
INFO_DESCRIPTION_ADMIN_UID=ID utilisateur de l'administrateur global \u00e0 utiliser pour \u00e9tablir la liaison vers le serveur
INFO_DESCRIPTION_ENABLE_REPLICATION_HOST1=Nom d'h\u00f4te du serveur d'annuaire enti\u00e8rement qualifi\u00e9 ou adresse IP du premier serveur dont le contenu sera r\u00e9pliqu\u00e9
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 \u00e0 utiliser pour \u00e9tablir la liaison vers le premier serveur dont le contenu sera r\u00e9pliqu\u00e9.  Si rien n'est sp\u00e9cifi\u00e9, l'administrateur global sera utilis\u00e9 pour la liaison
INFO_DESCRIPTION_ENABLE_REPLICATION_BINDPASSWORD1=Mot de passe \u00e0 utiliser pour \u00e9tablir la liaison vers le premier serveur dont le contenu sera r\u00e9pliqu\u00e9.  Si aucun DN de liaison n'a \u00e9t\u00e9 sp\u00e9cifi\u00e9 pour le serveur, le mot de passe de l'administrateur global sera utilis\u00e9 pour la liaison
INFO_DESCRIPTION_ENABLE_REPLICATION_BINDPASSWORDFILE1=Fichier contenant le mot de passe \u00e0 utiliser pour \u00e9tablir la liaison vers le premier serveur dont le contenu doit \u00eatre r\u00e9pliqu\u00e9.  Si aucun DN de liaison n'a \u00e9t\u00e9 sp\u00e9cifi\u00e9 pour le serveur, le mot de passe de l'administrateur global sera utilis\u00e9 pour la liaison
INFO_DESCRIPTION_ENABLE_REPLICATION_PORT1=Port utilis\u00e9 par le m\u00e9canisme de r\u00e9plication du premier serveur pour communiquer avec les autres serveurs.  Ne sp\u00e9cifiez cette option que si le premier serveur n'\u00e9tait pas configur\u00e9 pour la r\u00e9plication.
INFO_DESCRIPTION_ENABLE_SECURE_REPLICATION1=Sp\u00e9cifie si la communication via le port de r\u00e9plication du premier serveur est chiffr\u00e9e ou non.  Cette option ne sera prise en compte qu'une fois la r\u00e9plication configur\u00e9e sur le premier serveur pour la premi\u00e8re fois.
INFO_DESCRIPTION_ENABLE_REPLICATION_HOST2=Nom d'h\u00f4te du serveur d'annuaire enti\u00e8rement qualifi\u00e9 ou adresse IP du second serveur dont le contenu sera r\u00e9pliqu\u00e9
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 \u00e0 utiliser pour \u00e9tablir la liaison avec le second serveur dont le contenu sera r\u00e9pliqu\u00e9.  Si rien n'est sp\u00e9cifi\u00e9, l'administrateur global sera utilis\u00e9 pour la liaison
INFO_DESCRIPTION_ENABLE_REPLICATION_SKIPPORT=Ignorer la v\u00e9rification visant \u00e0 d\u00e9terminer si les ports de r\u00e9plication sp\u00e9cifi\u00e9s sont utilisables
INFO_DESCRIPTION_ENABLE_REPLICATION_NO_SCHEMA_REPLICATION=Ne pas r\u00e9pliquer le sch\u00e9ma entre les serveurs
INFO_DESCRIPTION_ENABLE_REPLICATION_USE_SECOND_AS_SCHEMA_SOURCE=Utiliser le second serveur pour initialiser le sch\u00e9ma du premier serveur.  Si cette option et l'option %s ne sont pas sp\u00e9cifi\u00e9es, le sch\u00e9ma du premier serveur sera utilis\u00e9 pour initialiser le sch\u00e9ma du second
INFO_DESCRIPTION_ENABLE_REPLICATION_BINDPASSWORD2=Mot de passe \u00e0 utiliser pour \u00e9tablir la liaison avec le second serveur dont le contenu sera r\u00e9pliqu\u00e9.  Si aucun DN de liaison n'a \u00e9t\u00e9 sp\u00e9cifi\u00e9 pour le second serveur, le mot de passe de l'administrateur global sera utilis\u00e9 pour la liaison
INFO_DESCRIPTION_ENABLE_REPLICATION_BINDPASSWORDFILE2=Fichier contenant le mot de passe \u00e0 utiliser pour le second serveur dont le contenu sera r\u00e9pliqu\u00e9.  Si aucun DN de liaison n'a \u00e9t\u00e9 sp\u00e9cifi\u00e9 pour le second serveur, le mot de passe de l'administrateur global sera utilis\u00e9 pour la liaison
INFO_DESCRIPTION_ENABLE_REPLICATION_PORT2=Port utilis\u00e9 par le m\u00e9canisme de r\u00e9plication dans le second serveur pour communiquer avec les autres serveurs.  Vous n'avez pas besoin de sp\u00e9cifier cette option si la r\u00e9plication a d\u00e9j\u00e0 \u00e9t\u00e9 configur\u00e9e sur le second serveur.
INFO_DESCRIPTION_ENABLE_SECURE_REPLICATION2=Sp\u00e9cifie si la communication via le port de r\u00e9plication du second serveur est chiffr\u00e9e ou non.  Cette option ne sera prise en compte qu'une fois la r\u00e9plication configur\u00e9e sur le second serveur.
INFO_DESCRIPTION_ENABLE_REPLICATION_STARTTLS2=Utiliser StartTLS pour s\u00e9curiser la communication avec le second serveur
INFO_DESCRIPTION_REPLICATION_BASEDNS=DN de base des donn\u00e9es \u00e0 r\u00e9pliquer, \u00e0 initialiser ou pour lesquelles la r\u00e9plication doit \u00eatre d\u00e9sactiv\u00e9e.  Multiple base DN's can be provided by using this option multiple times
INFO_DESCRIPTION_REPLICATION_ADMIN_UID=ID utilisateur de l'administrateur global \u00e0 utiliser pour \u00e9tablir la liaison avec le serveur.  Pour la sous-commande '%s', si aucun administrateur global n'a \u00e9t\u00e9 d\u00e9fini pour aucun des serveurs, les donn\u00e9es fournies serviront \u00e0 en cr\u00e9er un.
INFO_DESCRIPTION_REPLICATION_ADMIN_BINDPASSWORD=Le mot de passe de l'administrateur global
INFO_DESCRIPTION_REPLICATION_ADMIN_BINDPASSWORDFILE=Le fichier contenant le mot de passe de l'administrateur global
INFO_DESCRIPTION_INITIALIZE_REPLICATION_HOST_SOURCE=Nom d'h\u00f4te du serveur d'annuaire ou adresse IP du serveur source dont le contenu sera utilis\u00e9 pour initialiser le serveur de destination
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=Nom d'h\u00f4te du serveur d'annuaire ou adresse IP du serveur de destination dont le contenu sera initialis\u00e9
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=Utilisez cette option lorsque seul le contenu du serveur d'annuaire sp\u00e9cifi\u00e9 sera initialis\u00e9 via une m\u00e9thode externe (commande import-ldif ou copie binaire)
INFO_REPLICATION_TOOL_DESCRIPTION=Cet utilitaire peut \u00eatre utilis\u00e9 pour configurer la r\u00e9plication entre les serveurs de sorte que leurs donn\u00e9es soient synchronis\u00e9es. Pour que la r\u00e9plication fonctionne, vous devez commencer par activer la r\u00e9plication via la sous-commande '%s', puis initialiser le contenu de l'un des serveurs avec le contenu de l'autre \u00e0 l'aide de la sous-commande '%s'.
INFO_REPLICATION_DESCRIPTION_QUIET=Effectuer une op\u00e9ration silencieuse (aucune information de progression n'est \u00e9crite dans la sortie standard)
INFO_DESCRIPTION_DISABLE_REPLICATION_BINDDN=DN \u00e0 utiliser pour \u00e9tablir la liaison avec le serveur pour lequel la r\u00e9plication doit \u00eatre d\u00e9sactiv\u00e9e.  Cette option doit \u00eatre utilis\u00e9e lorsqu'aucun administrateur global n'a \u00e9t\u00e9 d\u00e9fini sur le serveur ou si l'utilisateur ne souhaite pas supprimer les r\u00e9f\u00e9rences sur les autres serveurs r\u00e9pliqu\u00e9s.  Si vous d\u00e9finissez cette option, le mot de passe de l'administrateur global sera utilis\u00e9.
INFO_DESCRIPTION_SUBCMD_INITIALIZE_REPLICATION=Initialiser le contenu des donn\u00e9es sous le DN de base sp\u00e9cifi\u00e9 sur le serveur de destination avec le contenu sur le serveur source.  Cette op\u00e9ration doit \u00eatre effectu\u00e9e apr\u00e8s activation de la r\u00e9plication pour que celle-ci puisse fonctionner (vous pouvez \u00e9galement utiliser '%s').
INFO_DESCRIPTION_SUBCMD_INITIALIZE_ALL_REPLICATION=Initialiser le contenu des donn\u00e9es sous le DN de base sp\u00e9cifi\u00e9 sur tous les serveurs dont le contenu est r\u00e9pliqu\u00e9 avec le contenu sur le serveur sp\u00e9cifi\u00e9.  Cette op\u00e9ration doit \u00eatre effectu\u00e9e apr\u00e8s activation de la r\u00e9plication pour que celle-ci puisse fonctionner (vous pouvez \u00e9galement utiliser '%s' appliqu\u00e9 \u00e0 chaque serveur).
INFO_DESCRIPTION_SUBCMD_PRE_EXTERNAL_INITIALIZATION=Cette sous-commande doit \u00eatre appel\u00e9e avant d'initialiser le contenu de tous les serveurs r\u00e9pliqu\u00e9s \u00e0 l'aide de l'outil import-ldif ou de la m\u00e9thode de copie binaire.  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.  Apr\u00e8s avoir appel\u00e9 cette sous-commande, initialisez le contenu de tous les serveurs de la topologie, puis appelez la sous-commande '%s'.
INFO_DESCRIPTION_SUBCMD_POST_EXTERNAL_INITIALIZATION=Cette sous-commande doit \u00eatre appel\u00e9e apr\u00e8s avoir initialis\u00e9 le contenu de tous les serveurs r\u00e9pliqu\u00e9s \u00e0 l'aide de l'outil import-ldif ou de la m\u00e9thode de copie binaire.  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.  Pour plus d'informations, reportez-vous aux instructions d'utilisation de la sous-commande '%s'.
INFO_DESCRIPTION_SUBCMD_ENABLE_REPLICATION=Met \u00e0 jour la configuration des serveurs pour r\u00e9pliquer les donn\u00e9es sous le DN de base sp\u00e9cifi\u00e9.  Si un des serveurs sp\u00e9cifi\u00e9s effectue d\u00e9j\u00e0 la r\u00e9plication des donn\u00e9es sous le DN de base avec d'autres serveurs, la configuration de tous les serveurs sera mise \u00e0 jour lorsque vous ex\u00e9cutez cette sous-commande (il suffit d'ex\u00e9cuter la ligne de commande une fois pour chaque serveur ajout\u00e9 \u00e0 la topologie de r\u00e9plication).
INFO_DESCRIPTION_SUBCMD_DISABLE_REPLICATION=D\u00e9sactive la r\u00e9plication sur le serveur sp\u00e9cifi\u00e9 pour le DN de base fourni et supprime les r\u00e9f\u00e9rences dans les autres serveurs avec lesquels il r\u00e9plique des donn\u00e9es.
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=Vous devez fournir au moins un DN de base en mode non interactif.
SEVERE_ERR_REPLICATION_NO_ADMINISTRATOR_PASSWORD_PROVIDED=Vous devez fournir le mot de passe de l'administrateur global en mode non interactif.  You can provide it using the %s or the %s options.
SEVERE_ERR_REPLICATION_NOT_A_VALID_BASEDN=La valeur %s fournie n'est pas un DN de base valide.
SEVERE_ERR_REPLICATION_ENABLE_SAME_SERVER_PORT=Vous devez indiquer deux serveurs diff\u00e9rents pour activer la r\u00e9plication.  Vous avez indiqu\u00e9 deux fois le serveur %s:%s
SEVERE_ERR_REPLICATION_INITIALIZE_SAME_SERVER_PORT=Le serveur source et le serveur de destination de l'initialisation doivent \u00eatre diff\u00e9rents.  Vous avez indiqu\u00e9 deux fois le serveur %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=Vous avez indiqu\u00e9 le m\u00eame port de r\u00e9plication (%s) pour deux serveurs situ\u00e9s sur le m\u00eame ordinateur (%s).
SEVERE_ERR_REPLICATION_VALID_SUBCOMMAND_NOT_FOUND=Aucune sous-commande valide trouv\u00e9e.  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=L'op\u00e9ration est termin\u00e9e
INFO_REPLICATION_SUCCESSFUL_NOP=L'op\u00e9ration est termin\u00e9e, mais aucune action n'a \u00e9t\u00e9 requise
MILD_ERR_REPLICATION_USER_CANCELLED=L'op\u00e9ration a \u00e9t\u00e9 annul\u00e9e par l'utilisateur
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=Un administrateur global doit \u00eatre cr\u00e9\u00e9.%nVous devez fournir les informations d'authentification de l'administrateur global qui seront cr\u00e9\u00e9es pour g\u00e9rer les instances OpenDS r\u00e9pliqu\u00e9es.
INFO_ADMINISTRATOR_UID_PROMPT=ID utilisateur de l'administrateur global
INFO_ADMINISTRATOR_PWD_PROMPT=Mot de passe de l'administrateur global\u00a0:
INFO_ADMINISTRATOR_PWD_CONFIRM_PROMPT=Confirmation du mot de passe\u00a0:
MILD_ERR_ADMINISTRATOR_PWD_DO_NOT_MATCH=Les mots de passe entr\u00e9s ne correspondent pas.
MILD_ERR_ERROR_CONNECTING_TO_SERVER_PROMPT_AGAIN=Impossible de se connecter au %s de Directory Server avec les informations de connexion fournies.%nD\u00e9tails de l'erreur\u00a0: %s%n%nVeuillez entrer \u00e0 nouveau les informations requises pour la connexion au serveur\u00a0:
INFO_REPLICATION_ENABLE_HOST1_CONNECTION_PARAMETERS=>>>> Specify OpenDS administration connection parameters for the first server
INFO_REPLICATION_ENABLE_HOSTNAME1_PROMPT=Nom d'h\u00f4te du premier serveur
INFO_REPLICATION_ENABLE_PORT1_PROMPT=Administration port of the first server
INFO_REPLICATION_ENABLE_PROTOCOL1=Comment souhaitez-vous vous connecter au premier serveur\u00a0?
INFO_REPLICATION_ENABLE_REPLICATIONPORT1_PROMPT=Port de r\u00e9plication pour le premier serveur (le port doit \u00eatre libre)
INFO_REPLICATION_ENABLE_SECURE1_PROMPT=Souhaitez-vous que la r\u00e9plication utilise la communication chiffr\u00e9e pour la connexion au port de r\u00e9plication %s sur le premier serveur\u00a0?
INFO_REPLICATION_ENABLE_BINDDN1_PROMPT=DN de liaison pour le premier serveur
INFO_REPLICATION_ENABLE_PASSWORD1_PROMPT=Mot de passe pour %s sur le premier serveur\u00a0:
INFO_REPLICATION_ENABLE_HOST2_CONNECTION_PARAMETERS=>>>> Specify OpenDS administration connection parameters for the second server
INFO_REPLICATION_ENABLE_HOSTNAME2_PROMPT=Nom d'h\u00f4te du second serveur
INFO_REPLICATION_ENABLE_PORT2_PROMPT=Administration port of the second server
INFO_REPLICATION_ENABLE_PROTOCOL2=Comment souhaitez-vous vous connecter au second serveur\u00a0?
INFO_REPLICATION_ENABLE_REPLICATIONPORT2_PROMPT=Port de r\u00e9plication pour le second serveur (le port doit \u00eatre libre)
INFO_REPLICATION_ENABLE_SECURE2_PROMPT=Souhaitez-vous que la r\u00e9plication utilise la communication chiffr\u00e9e pour la connexion au port de r\u00e9plication %s sur le deuxi\u00e8me serveur\u00a0?
INFO_REPLICATION_ENABLE_BINDDN2_PROMPT=DN de liaison pour le second serveur
INFO_REPLICATION_ENABLE_PASSWORD2_PROMPT=Mot de passe pour %s sur le second serveur\u00a0:
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=Vous devez s\u00e9lectionner au moins un DN de base \u00e0 r\u00e9pliquer.
INFO_REPLICATION_ENABLE_SUFFIX_PROMPT=R\u00e9pliquer DN de base %s\u00a0?
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=Vous devez s\u00e9lectionner au moins une DN de base \u00e0 initialiser.
INFO_REPLICATION_INITIALIZE_SUFFIX_PROMPT=Initialiser DN de base %s\u00a0?
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=Vous devez s\u00e9lectionner au moins un DN de base \u00e0 d\u00e9sactiver.
MILD_ERR_NO_SUFFIXES_SELECTED_TO_INITIALIZE_ALL=Vous devez s\u00e9lectionner au moins un DN de base \u00e0 initialiser.
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=D\u00e9sactiver la r\u00e9plication sur le DN de base %s\u00a0?
INFO_REPLICATION_INITIALIZE_ALL_SUFFIX_PROMPT=Initialiser DN de base %s\u00a0?
INFO_REPLICATION_PRE_EXTERNAL_INITIALIZATION_SUFFIX_PROMPT=Allez-vous proc\u00e9der \u00e0 l'initialisation du DN de base %s en utilisant la commande import-ldif ou la copie binaire\u00a0?
INFO_REPLICATION_POST_EXTERNAL_INITIALIZATION_SUFFIX_PROMPT=Avez-vous proc\u00e9d\u00e9 \u00e0 l'initialisation du DN de base %s via la commande import-ldif ou la copie binaire\u00a0?
MILD_ERR_REPLICATION_READING_REGISTERED_SERVERS_CONFIRM_UPDATE_REMOTE=Les erreurs suivantes se sont produites lors de la lecture de la configuration des serveurs existants\u00a0:%n%s%n%nSi vous continuez, l'outil de r\u00e9plication tentera de mettre \u00e0 jour la configuration de tous les serveurs en mode best-effort.  Il n'est toutefois pas certain que les serveurs ayant g\u00e9n\u00e9r\u00e9 des erreurs seront mis \u00e0 jour.  Voulez-vous continuer\u00a0?
MILD_ERR_REPLICATION_STATUS_READING_REGISTERED_SERVERS=Les informations qui s'affichent risquent d'\u00eatre incompl\u00e8tes car les erreurs suivantes se sont produites lors de la lecture de la configuration des serveurs existants\u00a0:%n%s
MILD_ERR_NOT_ADMINISTRATIVE_USER=Vous ne disposez pas des droits d'acc\u00e8s pour la configuration du serveur.
INFO_REPLICATION_CONFIRM_DISABLE_ADS=Vous avez choisi de d\u00e9sactiver la r\u00e9plication sur le DN de base %s.  Ce DN de base est utilis\u00e9 par le m\u00e9canisme de r\u00e9plication, ainsi que par certains outils administratifs\u00a0; il est d\u00e9conseill\u00e9 de le configurer directement.  Voulez-vous continuer\u00a0?
INFO_REPLICATION_CONFIRM_DISABLE_SCHEMA=Vous avez choisi de d\u00e9sactiver la r\u00e9plication du sch\u00e9ma.  Ne d\u00e9sactivez la r\u00e9plication du sch\u00e9ma que dans certains cas bien sp\u00e9cifiques.  Voulez-vous continuer\u00a0?
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.  Voulez-vous continuer\u00a0?
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.  Le port de r\u00e9plication sur le serveur va \u00e9galement \u00eatre d\u00e9sactiv\u00e9.  Voulez-vous continuer\u00a0?
INFO_REPLICATION_CONFIRM_INITIALIZE_ADS=Vous avez choisi d'initialiser le contenu du DN de base %s sur le serveur %s avec le contenu du serveur %s.  Ce DN de base est utilis\u00e9 par le m\u00e9canisme de r\u00e9plication, ainsi que par certains outils d'administration\u00a0; il est d\u00e9conseill\u00e9 de le configurer directement.  Voulez-vous continuer\u00a0?
INFO_REPLICATION_CONFIRM_INITIALIZE_GENERIC=L'initialisation du contenu d'un DN de base a pour effet de supprimer tout le contenu existant de ce DN de base.  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=Vous avez choisi d'initialiser le contenu du DN de base %s avec le contenu du serveur %s.  Ce DN de base est utilis\u00e9 par le m\u00e9canisme de r\u00e9plication, ainsi que par certains outils d'administration\u00a0; il est d\u00e9conseill\u00e9 de le configurer directement.  Voulez-vous continuer\u00a0?
INFO_REPLICATION_CONFIRM_INITIALIZE_ALL_GENERIC=L'initialisation du contenu d'un DN de base a pour effet de supprimer tout le contenu existant de ce DN de base.  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=Les erreurs suivantes se sont produites lors de la lecture de la configuration des serveurs existants\u00a0:\n%s\n l'outil de r\u00e9plication tentera de mettre \u00e0 jour la configuration de tous les serveurs en mode best-effort.  Il n'est toutefois pas certain que les serveurs ayant g\u00e9n\u00e9r\u00e9 des erreurs seront mis \u00e0 jour.
INFO_REPLICATION_CONNECTING=\u00c9tablissement des connexions
INFO_REPLICATION_ENABLE_UPDATING_ADS_CONTENTS=V\u00e9rification des informations d'enregistrement
INFO_REPLICATION_ENABLE_UPDATING_REPLICATION_SERVER=Mise \u00e0 jour des r\u00e9f\u00e9rences distantes sur le serveur %s
INFO_REPLICATION_ENABLE_CONFIGURING_REPLICATION_SERVER=Configuration du port de r\u00e9plication sur le serveur %s
INFO_REPLICATION_ENABLE_CONFIGURING_BASEDN=Mise \u00e0 jour de la configuration de la r\u00e9plication pour le DN de base %s sur le serveur %s
INFO_REPLICATION_ENABLE_CONFIGURING_ADS=Mise \u00e0 jour de la configuration de l'enregistrement sur le serveur %s
INFO_ENABLE_REPLICATION_INITIALIZING_ADS=Initialisation des informations d'enregistrement sur le serveur %s avec le contenu du serveur %s
INFO_ENABLE_REPLICATION_INITIALIZING_SCHEMA=Initialisation du sch\u00e9ma sur le serveur %s avec le contenu du serveur %s
SEVERE_ERR_REPLICATION_ENABLE_SEEDING_TRUSTSTORE=Une erreur inattendue s'est produite lors de l'amor\u00e7age du contenu truststore.  D\u00e9tails\u00a0: %s
SEVERE_ERR_INITIALIZING_REPLICATIONID_NOT_FOUND=Erreur lors de l'initialisation.  ID de r\u00e9plication introuvable dans le serveur %s pour le DN de base %s.
SEVERE_ERR_REPLICATION_INITIALIZING_TRIES_COMPLETED=Erreur lors de l'initialisation.  Aucun pair n'a \u00e9t\u00e9 trouv\u00e9 pour d\u00e9marrer l'initialisation.  D\u00e9tails\u00a0: %s
SEVERE_ERR_REPLICATION_CONFIGURING_REPLICATIONSERVER=Une erreur s'est produite lors de la configuration du port de r\u00e9plication sur le serveur %s.
SEVERE_ERR_REPLICATION_DISABLING_REPLICATIONSERVER=Une erreur s'est produite lors de la d\u00e9sactivation du port de r\u00e9plication sur le serveur %s.
SEVERE_ERR_REPLICATION_CONFIGURING_BASEDN=Une erreur s'est produite lors de la mise \u00e0 jour de la configuration de la r\u00e9plication sur le DN de base %s du serveur %s.
SEVERE_ERR_REPLICATION_UPDATING_ADS=Erreur lors de la mise \u00e0 jour des informations d'enregistrement.  D\u00e9tails\u00a0: %s
SEVERE_ERR_REPLICATION_READING_ADS=Erreur de lecture des information de r\u00e9plication.  D\u00e9tails\u00a0: %s
SEVERE_ERR_REPLICATION_ADS_MERGE_NOT_SUPPORTED=Les informations d'enregistrement trouv\u00e9es sur les serveurs %s et %s diff\u00e8rent.  Cet outil ne permet pas de traiter ce sc\u00e9nario.
SEVERE_ERR_REPLICATION_ERROR_READING_CONFIGURATION=Une erreur s'est produite lors de la lecture de la configuration de la r\u00e9plication sur le serveur %s.%nD\u00e9tails\u00a0: %s
INFO_REPLICATION_REMOVING_REFERENCES_ON_REMOTE=Suppression des r\u00e9f\u00e9rences sur le DN de base %s du serveur %s
INFO_REPLICATION_DISABLING_BASEDN=D\u00e9sactivation de la r\u00e9plication sur le DN de base %s du serveur %s
INFO_REPLICATION_DISABLING_REPLICATION_SERVER=D\u00e9sactivation du port de r\u00e9plication %s sur le serveur %s
INFO_REPLICATION_STATUS_NO_BASEDNS=No base DN's found.
INFO_REPLICATION_STATUS_BASEDN=DN de base
INFO_REPLICATION_STATUS_IS_REPLICATED=R\u00e9plication
INFO_REPLICATION_STATUS_REPLICATED=%s - R\u00e9plication activ\u00e9e
INFO_REPLICATION_STATUS_NOT_REPLICATED=%s - R\u00e9plication d\u00e9sactiv\u00e9e
INFO_REPLICATION_STATUS_HEADER_SERVERPORT=Serveur
INFO_REPLICATION_STATUS_HEADER_NUMBER_ENTRIES=Entr\u00e9es
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=S\u00e9curit\u00e9 (4)
INFO_REPLICATION_STATUS_REPLICATED_LEGEND=[1] Nombre de modifications manquantes sur ce serveur (et ayant \u00e9t\u00e9 appliqu\u00e9es \u00e0 au moins un des autres serveurs).%n[2] \u00c2ge de la plus ancienne modification manquante\u00a0: date \u00e0 laquelle la modification la plus ancienne n'ayant pas \u00e9t\u00e9 effectu\u00e9e sur ce serveur a eu lieu.%n[3] Le port utilis\u00e9 pour la communication entre les serveurs dont les contenus sont r\u00e9pliqu\u00e9s.%n[4] Indique si la communication via le port de r\u00e9plication est chiffr\u00e9e ou non.
INFO_REPLICATION_STATUS_LABEL_SERVERPORT=Serveur\u00a0:
INFO_REPLICATION_STATUS_LABEL_NUMBER_ENTRIES=Entr\u00e9es\u00a0:
INFO_REPLICATION_STATUS_LABEL_MISSING_CHANGES=Modifications manquantes\u00a0:
INFO_REPLICATION_STATUS_LABEL_AGE_OF_OLDEST_MISSING_CHANGE=\u00c2ge de la plus ancienne modification manquante\u00a0:
INFO_REPLICATION_STATUS_LABEL_REPLICATION_PORT=Port de r\u00e9plication\u00a0:
INFO_REPLICATION_STATUS_LABEL_SECURE=S\u00e9curit\u00e9\u00a0:
INFO_REPLICATION_STATUS_SECURITY_ENABLED=Activ\u00e9
INFO_REPLICATION_STATUS_SECURITY_DISABLED=D\u00e9sactiv\u00e9
INFO_REPLICATION_CRITICAL_ERROR_DETAILS=D\u00e9tails\u00a0: %s
INFO_PROGRESS_PRE_EXTERNAL_INITIALIZATION=Pr\u00e9paration du DN de base %s pour l'initialisation externe
INFO_PROGRESS_POST_EXTERNAL_INITIALIZATION=Mise \u00e0 jour des informations de r\u00e9plication sur le DN de base %s
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.  Pour ce faire, vous pouvez utiliser la commander import-ldif ou bien la copie binaire.%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=Proc\u00e9dure post-initialisation termin\u00e9e.
SEVERE_ERR_POOLING_PRE_EXTERNAL_INITIALIZATION=Une erreur s'est produite lors de la lecture de la progression de l'op\u00e9ration.
SEVERE_ERR_POOLING_POST_EXTERNAL_INITIALIZATION=Une erreur s'est produite lors de la lecture de la progression de l'op\u00e9ration.
INFO_ERROR_DURING_PRE_EXTERNAL_INITIALIZATION_NO_LOG=Une erreur inattendue s'est produite au cours de l'op\u00e9ration.  Statut de la t\u00e2che\u00a0: %s.  Consultez les journaux d'erreurs de %s pour plus d'informations.
INFO_ERROR_DURING_PRE_EXTERNAL_INITIALIZATION_LOG=Une erreur inattendue s'est produite au cours de l'op\u00e9ration.  Derniers d\u00e9tails du fichier journal\u00a0: %s.  Statut de la t\u00e2che\u00a0 %s.  Consultez les journaux d'erreurs de %s pour plus d'informations.
INFO_ERROR_DURING_POST_EXTERNAL_INITIALIZATION_NO_LOG=Une erreur inattendue s'est produite au cours de l'op\u00e9ration.  Statut de la t\u00e2che\u00a0: %s.  Consultez les journaux d'erreurs de %s pour plus d'informations.
INFO_ERROR_DURING_POST_EXTERNAL_INITIALIZATION_LOG=Une erreur inattendue s'est produite au cours de l'op\u00e9ration.  Derniers d\u00e9tails du fichier journal\u00a0: %s.  Statut de la t\u00e2che\u00a0 %s.  Consultez les journaux d'erreurs de %s pour plus d'informations.
SEVERE_ERR_LAUNCHING_PRE_EXTERNAL_INITIALIZATION=Une erreur s'est produite lors du lancement de l'op\u00e9ration.
SEVERE_ERR_LAUNCHING_POST_EXTERNAL_INITIALIZATION=Une erreur s'est produite lors du lancement de l'op\u00e9ration.
INFO_REPLICATION_SUBCOMMAND_PROMPT=Que souhaitez-vous faire\u00a0?
INFO_REPLICATION_ENABLE_MENU_PROMPT=Activer la r\u00e9plication
INFO_REPLICATION_DISABLE_MENU_PROMPT=D\u00e9sactiver la r\u00e9plication
INFO_REPLICATION_INITIALIZE_MENU_PROMPT=Initialiser la r\u00e9plication sur un serveur
INFO_REPLICATION_INITIALIZE_ALL_MENU_PROMPT=Initialiser tous les serveurs
INFO_REPLICATION_PRE_EXTERNAL_INITIALIZATION_MENU_PROMPT=Initialisation pr\u00e9-externe
INFO_REPLICATION_POST_EXTERNAL_INITIALIZATION_MENU_PROMPT=Initialisation post-externe
INFO_REPLICATION_STATUS_MENU_PROMPT=Statut de la r\u00e9plication de l'affichage
INFO_REPLICATION_POST_ENABLE_INFO=La r\u00e9plication a bien \u00e9t\u00e9 activ\u00e9e.  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=Non
MILD_ERR_CANNOT_MODIFY_OBJECTCLASS_AND_RENAME=Cannot modify the objectclass and rename the entry.
 
INFO_CTRL_PANEL_CATEGORY_DIRECTORY_DATA=Donn\u00e9es de r\u00e9pertoire
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=Les mots de passe entr\u00e9s ne correspondent pas.
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=R\u00e9plication
INFO_CTRL_PANEL_CONN_HANDLER_REPLICATION_SECURE=Replication (secure)
INFO_CTRL_PANEL_CONN_HANDLER_ADMINISTRATION=Administration Connector
INFO_CTRL_PANEL_CONN_HANDLER_OTHER=Autre
 
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=DN de base
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.  D\u00e9tails\u00a0: %s
MILD_ERR_CTRL_PANEL_ERROR_UPDATING_CONFIGURATION=Error updating configuration.  D\u00e9tails\u00a0: %s
MILD_ERR_CTRL_PANEL_ERROR_CHECKING_ENTRY=Error checking entry.  D\u00e9tails\u00a0: %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=Authentification requise
 
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=D\u00e9tails\u00a0: %s
 
INFO_CTRL_PANEL_STARTING_SERVER_SUMMARY=D\u00e9marrage du serveur...
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.  Code d'erreur : %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.  Code d'erreur : %d
 
INFO_CTRL_PANEL_STOPPING_SERVER_SUMMARY=Arr\u00eat du serveur...
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.  Code d'erreur : %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=D\u00e9tails :
 
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=Confirmation requise
#
# 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=Fermer
INFO_CTRL_PANEL_CANCEL_BUTTON_LABEL=Annuler
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.  D\u00e9tails\u00a0: %s
INFO_CTRL_PANEL_NO_BASE_DN_SELECTED=No base DN selected.
INFO_CTRL_PANEL_INVALID_FILTER_DETAILS=The provided filter is not valid.  D\u00e9tails\u00a0: %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.  D\u00e9tails\u00a0: %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.  D\u00e9tails\u00a0: %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.  D\u00e9tails\u00a0: %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.  D\u00e9tails\u00a0: %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=Parcourir...
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.  D\u00e9tails\u00a0: %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.  D\u00e9tails\u00a0: %s
MILD_ERR_CTRL_PANEL_ERROR_DECODING_BASE_64=An error occurred decoding the provided base 64 string.  D\u00e9tails\u00a0: %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=Entr\u00e9es
INFO_CTRL_PANEL_CLOSE_MENU=Fermer
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=Type
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=Voulez-vous continuer\u00a0?
 
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.  D\u00e9tails\u00a0: %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.  D\u00e9tails\u00a0: %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.  D\u00e9tails\u00a0: %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.  Code d'erreur : %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.  D\u00e9tails\u00a0: %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=Authentification requise
INFO_CTRL_PANEL_BIND_DN_LABEL=Bind DN:
INFO_CTRL_PANEL_BIND_PASSWORD_LABEL=Mot de passe :
 
#
# 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=Syntaxe :
INFO_CTRL_PANEL_MATCHING_RULE_TYPE=Type :
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.  D\u00e9tails\u00a0: %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.  D\u00e9tails\u00a0: %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=Utilisation\u00a0:
INFO_CTRL_PANEL_ATTRIBUTE_SYNTAX_LABEL=Syntaxe :
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=Donn\u00e9es de r\u00e9pertoire :
INFO_CTRL_PANEL_ONLY_CREATE_BASE_ENTRY_LABEL=Only Create Base Entry
INFO_CTRL_PANEL_LEAVE_DATABASE_EMPTY_LABEL=Conserver la base de donn\u00e9es vide
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=Chemin :
INFO_CTRL_PANEL_NUMBER_OF_USER_ENTRIES_LABEL=Nombre d'entr\u00e9es utilisateur :
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'.    Reportez-vous \u00e0 la zone de texte "D\u00e9tails" pour plus d'informations.
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.  D\u00e9tails\u00a0: %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.  D\u00e9tails\u00a0: %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.  D\u00e9tails\u00a0: %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.  D\u00e9tails\u00a0: %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=Type :
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=Mot de passe :
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=Mot de passe (confirmation) :
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=\u00c9tat
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=Description
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=Mot de passe (confirmation) :
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=Statut du serveur
INFO_CTRL_PANEL_SERVER_STATUS_LABEL=Server Status:
INFO_CTRL_PANEL_OPEN_CONNECTIONS_LABEL=Connexions ouvertes:
INFO_CTRL_PANEL_SERVER_DETAILS_TITLE_BORDER=D\u00e9tails du serveur
INFO_CTRL_PANEL_HOST_NAME_LABEL=Nom d'h\u00f4te\u00a0:
INFO_CTRL_PANEL_ADMINISTRATIVE_USERS_LABEL=Utilisateurs administratifs\u00a0:
INFO_CTRL_PANEL_INSTALLATION_PATH_LABEL=Chemin d'installation :
INFO_CTRL_PANEL_INSTANCE_PATH_LABEL=Instance Path:
INFO_CTRL_PANEL_OPENDS_VERSION_LABEL=Version OpenDS\u00a0:
INFO_CTRL_PANEL_JAVA_VERSION_LABEL=Version Java\u00a0:
INFO_CTRL_PANEL_ADMIN_CONNECTOR_LABEL=Administration Connector:
INFO_CTRL_PANEL_ADMIN_CONNECTOR_DESCRIPTION=Port %d (LDAPS)
INFO_CTRL_PANEL_CONNECTION_HANDLERS=Gestionnaires de connexion
INFO_CTRL_PANEL_NO_CONNECTION_HANDLER_FOUND=- No Connection Handlers Found -
INFO_CTRL_PANEL_DATA_SOURCES=Sources de donn\u00e9es
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=D\u00e9sactivation du service Windows...
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=Activation du service Windows...
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=Erreur
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