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

kenneth_suter
24.37.2007 f6bff1e8c31ae6ebfabfdb478771216b9773a3c4
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
# 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
#
#      Portions Copyright 2006-2007 Sun Microsystems, Inc.
#
#
# This file contains the primary Directory Server configuration.  It must not
# be directly edited while the server is online.  The server configuration
# should only be managed using the administration utilities provided with the
# Directory Server.
 
#
# Setup command line messages
#
setup-launcher-usage-unix=This utility may be used to setup the Directory \
Server.\n\Usage:  {0} {options}\n        where {options} include:\n\
--cli\n\    Specifies to use the command line setup.  If not specified the \
graphical\n\    interface will be launched.\n\
-V, --version\n    Display Directory Server version information.\n\
-?, -H , --help\n    Display this usage information.\n\n\
The following options will only be taken into account if the option --cli \n\
(command line) is specified\n\
-s, --silentInstall\n    Perform a silent installation.\n\
-b, --baseDN {baseDN}\n\    Specifies the base DN for user \
information in the Directory Server.\n    Multiple base DNs may be provided by \
using this option multiple times.\n\
-a, --addBaseEntry\n    Indicates whether to create the base entry in the \
Directory Server\n    database.\n\
-l, --ldifFile {ldifFile}\n    Specifies the path to an LDIF \
file containing data that should be added to\n    the Directory Server \
database.  Multiple LDIF files may be provided by\n    using this option \
multiple times.\n\
-d {numEntries}, --sampleData {numEntries}\n    Specifies that the \
database should be populated with the specified number\n\    of sample \
entries.\n\
-p, --ldapPort {port}\n    Specifies the port on which the \
Directory Server should listen for LDAP\n    communication.\n\
-x, --jmxPort {jmxPort}\n    Specifies the port on which the \
Directory Server should listen for JMX\n    communication.\n\
-S , --skipPortCheck\n    Skip the check to determine whether the \
specified LDAP port is usable.\n\
-D, --rootUserDN {rootUserDN}\n    Specifies the DN for the initial \
Administrative User for the Directory Server.\n\
-w, --rootUserPassword {password}\n    Specifies the password \
for the initial Administrative User for the Directory Server.\n\
-j , --rootUserPasswordFile {filename}\n    Specifies the path \
to a file containing the password for the initial Administrative\n\    User \
for the Directory Server.
setup-launcher-usage-windows=This utility may be used to setup the Directory \
Server.\n\Usage:  {0} {options}\n        where {options} include:\n\
--cli\n\    Specifies to use the command line setup.  If not specified the \
graphical\n\    interface will be launched.\n\
-V, --version\n    Display Directory Server version information.\n\
-?, -H, --help\n    Display this usage information.\n\n\
The following options will only be taken into account if the option --cli \n\
(command line) is specified\n\
-s, -silentInstall\n    Perform a silent installation.\n\
-b {baseDN}, --baseDN {baseDN}\n\    Specifies the base DN for user \
information in the Directory Server.\n    Multiple base DNs may be provided by \
using this option multiple times.\n\
-a, --addBaseEntry\n    Indicates whether to create the base entry in the \
Directory Server\n    database.\n\
-l, --ldifFile {ldifFile}\n    Specifies the path to an LDIF \
file containing data that should be added to\n    the Directory Server \
database.  Multiple LDIF files may be provided by\n    using this option \
multiple times.\n\
-d, --sampleData {numEntries}\n    Specifies that the \
database should be populated with the specified number\n\    of sample \
entries.\n\
-p, --ldapPort {port}\n    Specifies the port on which the \
Directory Server should listen for LDAP\n    communication.\n\
-x, --jmxPort {jmxPort}\n    Specifies the port on which the \
Directory Server should listen for JMX\n    communication.\n\
-S, --skipPortCheck\n    Skip the check to determine whether the \
specified LDAP port is usable.\n\
-D, --rootUserDN {rootUserDN}\n    Specifies the DN for the initial \
Administrative User for the Directory Server.\n\
-w, --rootUserPassword {password}\n    Specifies the password \
for the initial Administrative User for the Directory Server.\n\
-j, --rootUserPasswordFile {filename}\n    Specifies the path \
to a file containing the password for the initial Administrative\n\    User \
for the Directory Server.\n\
-n, --noWindowsService\n    Do not enable OpenDS to run as a Windows \
Service.
setup-launcher-launching-gui=Launching graphical setup...
setup-launcher-gui-launched-failed=\n\nThe graphical Setup launch failed.\n\n\
Launching command line Setup...
setup-launcher-gui-launched-failed-details=\n\nThe graphical Setup launch \
failed.  Check file {0} for more details.\n\n\
Launching command line Setup...
 
#
# Uninstall command line messages
#
uninstall-launcher-usage=This utility may be used to uninstall the \
Directory Server.\n\
Usage:  {0} {options}\n        where {options} include:\n\
--cli\n\    Specifies to use the command line uninstall.  If not specified the \
graphical\n\    interface will be launched.\n\
-?, -H, --help\n    Display this usage information.\n\
-V, --version\n    Display Directory Server version information.\n\n\
The following options will only be taken into account if the option --cli \n\
(command line) is specified\n\
-s, --silentUninstall\n    Perform a silent uninstall.
uninstall-launcher-launching-gui=Launching graphical uninstall...
uninstall-launcher-launching-cli=Launching command line uninstall...
uninstall-launcher-gui-launched-failed=\n\nThe graphical Uninstall launch \
failed.\n\nLaunching command line Uninstall...
uninstall-launcher-gui-launched-failed-details=\n\nThe graphical Uninstall \
launch failed.  Check file {0} for more details.\n\nLaunching command line \
Uninstall...
cli-uninstall-unknown-argument=Unknown argument {0}
cli-uninstall-yes-short=y
cli-uninstall-yes-long=yes
cli-uninstall-no-short=n
cli-uninstall-no-long=no
cli-uninstall-confirm-prompt={0}\n[{1}]:
cli-uninstall-string-prompt={0}\n[{1}]:
cli-uninstall-error-reading-stdin=Unexpected error reading standard input.
cli-uninstall-what-to-delete=Do you want to remove all components of \
OpenDS or select the components to remove?\n\
1. Remove all components\n\
2. Select the components to be removed\n\
3. Neither; Quit the uninstaller
cli-uninstall-confirm-libraries-binaries=Remove Server Libraries and \
Administrative Tools?
cli-uninstall-confirm-databases=Remove Database Contents?
cli-uninstall-confirm-logs=Remove Log Files?
cli-uninstall-confirm-configuration-schema=Remove Configuration and Schema \
Files?
cli-uninstall-confirm-backups=Remove Backup Files Contained in bak Directory?
cli-uninstall-confirm-ldifs=Remove LDIF Export Files Contained in ldif \
Directory?
cli-uninstall-confirm-outsidedbs=The Directory Server contains database files \
in the following locations outside the server path:\n{0}\nRemove these files?
cli-uninstall-confirm-outsidelogs=The Directory Server contains log files in \
the following locations outside the server path:\n{0}\nRemove these files?
cli-uninstall-nothing-to-be-uninstalled=You must select something to be \
uninstalled.
cli-uninstall-confirm-stop=The OpenDS server is currently running and \
must be stopped before uninstallation can continue.\nStop the Server and \
permanently delete the files?
cli-uninstall-confirm-delete-files=The files will be permanently deleted, are \
you sure you want to continue?
cli-uninstall-server-stopped=The Server is Stopped.
 
#
# Upgrade command line messages
#
upgrade-launcher-description=This utility may be used to upgrade the Directory \
  Server to a newer version.
upgrade-launcher-usage=This utility may be used to upgrade the Directory Server \
   to a newer version.  Use of this tool assumes that you have already downloaded an \
   OpenDS install package (.zip) file.  You can also upgrade your server using \
   the Java Web Start version of this tool by visiting the OpenDS web site at opends.org.\n\n\
   Usage:  {0} {options}\n        where {options} include:\n\
     -V, --version\n    Display Directory Server version information.\n\
     -f, --file\n    Specifies an existing OpenDS package (.zip) \
   file to which the\n    current build will be upgraded using the command line \
   \n    version of this tool\n-?, -H , --help\n    Display this usage information.\n
upgrade-launcher-launching-gui=Launching graphical upgrade...
upgrade-launcher-launching-cli=Launching command line upgrade...
upgrade-launcher-gui-launched-failed=\n\nThe graphical upgrade launch \
failed.\n\nLaunching command line upgrade...
upgrade-launcher-gui-launched-failed-details=\n\nThe graphical upgrade launch \
failed.  Check file {0} for more details.\n\nLaunching command line upgrade...
cli-upgrade-unknown-argument=Unknown argument {0}
 
 
#
# Dialog titles
#
frame-install-title=OpenDS QuickSetup
frame-uninstall-title=OpenDS Uninstall
frame-upgrade-title=OpenDS QuickUpgrade
 
#
# Wizard buttons (labels and tooltips)
#
next-button-label=Next >
next-button-tooltip=Go to Next Step
previous-button-label=< Previous
previous-button-tooltip=Go to Previous Step
finish-button-label=Finish
finish-button-install-label=Finish
finish-button-uninstall-label=Uninstall
finish-button-install-tooltip=Finish Installation and Setup
finish-button-uninstall-tooltip=Finish Uninstall
finish-button-upgrade-tooltip=Finish Upgrade
finish-button-tooltip=Finish Setup
close-button-label=Close
close-button-tooltip=Close Setup Window
close-button-install-tooltip=Close Setup Window
close-button-uninstall-tooltip=Close Uninstall Window
quit-button-label=Quit
quit-button-install-tooltip=Quit Setup
quit-button-upgrade-tooltip=Quit Upgrade
cancel-button-label=Cancel
cancel-button-tooltip=Cancel the currently running operation
cancel-button-uninstall-tooltip=Cancel Uninstall
shutdown-button-label=Shutdown
continue-button-label=Continue
continue-button-install-tooltip=Continue with Setup
ok-button-label=OK
 
#
# Confirmation dialogs
#
confirm-close-install-title=Confirmation Required
confirm-close-install-msg=OpenDS QuickSetup has not yet completed.\nAre you \
sure you want to close the QuickSetup Window?
confirm-cancel-install-title=Confirmation Required
confirm-cancel-install-msg=Are you sure you want to cancel OpenDS \
QuickSetup?\nIf you click 'Yes' nothing will be installed on your system.
confirm-close-uninstall-title=Confirmation Required
confirm-close-uninstall-msg=OpenDS Uninstall has not yet completed.\nAre you \
sure you want to close the Uninstall Window?
confirm-cancel-upgrade-title=Confirmation Required
confirm-cancel-upgrade-msg=OpenDS QuickUpgrade has not yet completed.\nIf you \
  click 'Yes' any changes that have been\nmade to the server being upgraded \
  will\nbe backed out.\n\nAre you sure you want to close the QuickUpgrade Window?\n
confirm-quit-upgrade-title=Confirmation Required
confirm-quit-upgrade-msg=Are you sure you want to quit OpenDS \
QuickUpgrade?\nIf you click 'Yes' nothing will be upgraded on your system.
confirm-uninstall-server-not-running-msg=Confirm Uninstall\n\
All selected files will be permanently deleted, are you sure you\n\
want to continue?
confirm-uninstall-server-not-running-title=Confirm Uninstall
confirm-uninstall-server-running-msg=Server is Running\n\
The OpenDS server is currently running and must be stopped before\n\
uninstallation can continue. Do you want the uninstaller to stop\n\
the server for you and continue with the uninstall? If you click\n\
No, you will need to stop the server manually to continue.
confirm-uninstall-server-running-title=Server is Running
confirm-cancel-title=Confirmation Required
confirm-cancel-prompt=Cancel the running operation?
 
 
#
# Error dialog title
#
error-title=Error
 
#
# Confirmation dialog title
#
confirmation-title=Confirmation Required
 
#
# Error when we cannot launch the status panel
#
could-not-launch-status-panel-msg=An unexpected error occurred launching the \
Status Panel.
 
#
# Browser launching error dialog
#
error-browser-display-msg=Could not launch the web browser.<br>You can copy \
and paste the following URL manually into your web browser:<br>\
<span style="font-style:italic">{0}</span>
error-browser-display-title=Error
error-browser-copy-button-label=Copy URL
error-browser-copy-button-tooltip=Copies the URL to the system clipboard
error-browser-close-button-tooltip=Close this window
 
#
# Dialog asking Directory manager credentials to shutdown server through
# Protocol.
#
shutdown-directory-manager-dialog-title=Authentication Required
shutdown-directory-manager-dialog-msg=<b>Directory Server is Running</b><br>\
The server is currently running and must be stopped before uninstallation can \
continue.  Provide the information below to allow the uninstaller to \
shut it down. You can also click Cancel and then shut the server down yourself.
shutdown-directory-manager-dn-label=Administrative User DN:
shutdown-directory-manager-dn-tooltip=Enter the distinguished name (DN) of the \
Administrative User account that will used to shutdown OpenDS
shutdown-directory-manager-pwd-label=Password:
shutdown-directory-manager-pwd-tooltip=Enter the password of the OpenDS \
Administrative User account
shutdown-directory-manager-cancel-button-tooltip=Close this window
shutdown-directory-manager-shutdown-button-tooltip=Click here to shutdown the \
server with the provided authentication
 
#
# Data validation errors
#
# Server Settings
empty-server-location=Invalid Directory Selected\nYou must provide a valid \
  OpenDS root installation directory.
parent-directory-could-not-be-found=Could not find a parent directory for {0}.
parent-directory-does-not-exist-confirmation=The parent directory of {0} does \
not exist.\nWould you like to create this directory?
file-exists=The file {0} already exists.
directory-exists-not-empty=The directory {0} is not empty.
directory-not-writable=You do not have write access on the directory {0}. \
You must have file right access on the Installation directory.
not-enough-disk-space=There is not enough free disk space under {0}.\nAt \
least {1} megabytes of free disk space are required to install OpenDS.
invalid-port-value-range=The LDAP Listener Port must be an integer between \
{0} and {1}.
invalid-secure-port-value-range=The LDAPS Listener Port must be an \
integer between {0} and {1}.
cannot-bind-priviledged-port=Cannot bind to privileged port {0}.\n\nThe port \
could be already in use by another application or maybe you do not have the \
rights to access it.
cannot-bind-port=Cannot bind to port {0}.\n\nThe port could be already in use \
by another application or maybe you do not have the rights to access it.
equal-ports=You must specify different ports LDAP and LDAPS communication.
empty-directory-manager-dn=You must provide an Administrative User DN.
not-a-directory-manager-dn=The provided Administrative User DN is not a valid \
DN.
directory-manager-dn-is-config-dn=The provided Administrative User DN is \
used for the configuration of the Directory Server.
not-equal-pwd=The passwords you have provided do not match.
pwd-too-short=The minimum length required for the Administrative User \
password is {0} characters.
# Data Replication Panel
empty-remote-host=You must provide the fully qualified name of the host.
invalid-remote-port=The provided port is not valid.
empty-remote-dn=You must provide a value for the Administrative User.
empty-remote-pwd=You must provide an Admin User password.
cannot-connect-to-remote-permissions=You do not have enough access rights \
to read the configuration in {0}. \nProvide credentials with enough rights.
cannot-connect-to-remote-generic=Could not connect to {0}. \nCheck that the \
server is running and that the provided credentials are valid.
remote-ads-exception=An unexpected error occurred reading the \
configuration in {0}.\nThe error is: {1}
no-suffixes-chosen-to-replicate=You must select at least one suffix to \
replicate contents with.
# Create Global Administrator Panel
empty-administrator-uid=You must provide a Global Administrative User ID.
empty-administrator-pwd=You must provide a Global Administrative User \
Password.
# New Suffix Options Panel
empty-base-dn=You must provide a Directory Base DN.
not-a-base-dn=The provided Directory Base DN is not a valid DN.
base-dn-is-configuration-dn=The provided Directory Base DN is used for \
storing the server configuration data. You must specify a different DN.
no-ldif-path=You must provide the path of the LDIF file to import.
ldif-file-does-not-exist=The provided LDIF file does not exist.
no-number-entries=You must provide the number of user entries to generate \
automatically.
invalid-number-entries-range=The number of user entries to generate \
automatically must be an integer between {0} and {1}.
# Confirm Uninstall Panel
nothing-selected-to-uninstall=You must select something to be uninstalled.
# Directory Manager authentication to shutdown in Windows
not-a-directory-manager-in-config=The provided DN is not one of the \
Administrative User DN.
empty-pwd=You must provide the password of the Administrative User.
cannot-connect-to-shutdown-with-cause=Could not connect to the Directory \
Server with the provided credentials.  The possible causes for this are:\n{0}
cannot-connect-to-shutdown-without-cause=Could not connect to the Directory \
Server with the provided credentials.\nCheck that the Administrative User DN \
and password are valid.
server-not-running-msg=The Directory Server is not running.  Click OK to \
continue the uninstall.
server-not-running-title=Directory Server not Running
 
#
# Steps labels (on the left side of the wizard)
#
welcome-step=Welcome
server-settings-step=Server Settings
data-replication-step=Topology Options
create-global-administrator-step=Global Administrator
suffixes-step=Data Replication
data-options-step=Directory Data
review-step=Review
progress-step=Progress
confirm-uninstall-step=Uninstall Options
step-upgrade-choose-version=Choose Version
 
#
# Icon descriptions.  Used for accessibility.
#
current-step-icon-description=Current Step Indicator.
splash-icon-description=OpenDS QuickSetup Launching.
minimized-icon-description=OpenDS QuickSetup minimized.
background-icon-description=OpenDS QuickSetup.
warning-icon-description=Warning.
error-icon-description=Error.
information-icon-description=Information.
opends-small-icon-description=OpenDS icon.
subsection-left-icon-description=Decoration icon.
subsection-right-icon-description=Decoration icon.
help-small-icon-description=Help icon.
help-wait-description=Busy, please wait.
 
#
# Icon tooltips.
#
current-step-icon-tooltip=Current Step Indicator
splash-icon-tooltip=OpenDS QuickSetup Launching
minimized-icon-tooltip=OpenDS QuickSetup
background-icon-tooltip=OpenDS QuickSetup
warning-icon-tooltip=Warning
error-icon-tooltip=Error
information-icon-tooltip=Information
 
#
# Icon paths.  This is done to be able  to provide localizable icons (for
# instance for those icons containing a text).  If there is not a localized
# version of the icon it should be left as it is.
# The path specified here are the relative resource name to the images.
#
current-step-icon=images/currentstep.png
minimized-icon=images/opendsminimized.gif
minimized-mac-icon=images/opendsminimizedmac.png
splash-icon=images/opendssplash.png
background-icon=images/opendsbackground.png
error-icon=images/error_small.gif
error-large-icon=images/error_large.gif
warning-icon=images/warning_small.gif
warning-large-icon=images/warning_large.gif
information-icon=images/info_small.gif
information-large-icon=images/info_large.gif
subsection-left-icon=images/divider-left.png
subsection-right-icon=images/divider-right.png
opends-small-icon=images/opends_logo_small.png
help-small-icon=images/help_small.gif
wait-tiny=images/wait_tiny.png
 
#
# Welcome Panel specific labels
#
welcome-panel-title=Welcome
# The following line contains some HTML tags.  translators should respect them.
# Concerning the URL, depending on how works the product page translators
# have to modify it or not: if the server uses the locale of the browser to display
# a language there is no translation to be done but if we have specific URL for
# each language the URL must be localized.
welcome-panel-offline-instructions=The OpenDS QuickSetup tool will ask you for \
some basic server and data configuration settings and will get your server up \
and running quickly.<br><br>Note that you can also install the latest weekly \
build launching the setup via Java Web Start from the <a \
href="https://opends.dev.java.net/public/downloads_index.html">OpenDS \
Downloads Page</a>.  This instance of QuickSetup will use the following OpenDS \
build: {0} (Build ID: {1}) <br><br> \
OpenDS requires a Java SE 5.0 or higher runtime.<br><br> \
Additional information on QuickSetup is available on the <a href="https://www.opends.org/wiki/page/OverviewOfTheQuickSetupTool"> \
OpenDS documentation wiki</a>.
welcome-panel-webstart-instructions=The OpenDS QuickSetup tool will ask you for some \
basic server and data configuration settings and will get your server up \
and running quickly.<br><br>QuickSetup will install and configure the latest \
weekly build. You can also use QuickSetup to set up a weekly build you have \
downloaded manually. To run QuickSetup in this case, use the {0} command at \
the top level of the OpenDS directory.  This instance of QuickSetup will use \
the following OpenDS build: {1} (Build ID: {2}) <br><br> \
OpenDS requires a Java SE 5.0 or higher runtime.<br><br> \
Additional information on QuickSetup is available on the <a href="https://www.opends.org/wiki/page/OverviewOfTheQuickSetupTool"> \
OpenDS documentation wiki</a>.
 
#
# Server Settings Panel specific labels
#
server-settings-panel-title=Server Settings
server-settings-panel-instructions-webstart=Choose a location for the server \
files and enter a password for the OpenDS administrative user.
server-settings-panel-instructions=Enter a port to listen for LDAP requests \
and enter a password for the OpenDS administrative user.
server-location-label=Installation Path:
server-location-parent-tooltip=Enter the full path to the parent location \
where the server files will be stored
server-location-relative-tooltip=Enter the relative path to the location \
where the server files will be stored
server-port-label=LDAP Listener Port:
server-port-tooltip=Enter the port number that the server will use to listen \
for LDAP requests
server-security-label=LDAP Secure Access:
server-security-tooltip=The LDAP Secure Access Configuration for the new \
OpenDS server.
cannot-update-security-warning=Disabled.  A valid keytool command could not be \
found.
server-security-button-label=Configure...
server-security-button-tooltip=Click to configure the LDAP Secure Access.
server-directory-manager-dn-label=Administrative User DN:
server-directory-manager-dn-tooltip=Enter the distinguished name (DN) of the \
Administrative User account that will used for managing OpenDS
server-directory-manager-pwd-label=Password:
server-directory-manager-pwd-tooltip=Enter a password for the OpenDS \
Administrative User account
server-directory-manager-pwd-confirm-label=Password (confirm):
server-directory-manager-pwd-confirm-tooltip=Re-enter the password for the \
OpenDS Administrative User account
cannot-use-default-port=Could not use 389. Port in use or user not authorized.
cannot-use-default-secure-port=Could not use 636. Port in use or user not \
authorized.
no-security=disabled
enable-starttls=Enable StartTLS
enable-ssl=Enable SSL on LDAP Port {0}
self-signed-certificate=Create a new Self-Signed Certificate
jks-certificate=Use existing Java Key Store File
pkcs11-certificate=Use existing PKCS#11 Token
pkcs12-certificate=Use existing PKCS#12 File
 
#
# Data Replication Panel specific labels
#
data-replication-options-panel-title=Topology Options
data-replication-options-panel-instructions=Choose the Data \
Replication Options.
remote-server-dn-label=Admin User:
remote-server-dn-tooltip=The DN or the UID of an administrator in the OpenDS \
you want to replicate data with.
remote-server-pwd-label=Admin Password:
remote-server-pwd-tooltip=The password of an administrator in the OpenDS \
you want to replicate data with.
remote-server-host-label=Host Name:
remote-server-host-tooltip=The fully qualified name of the host where the \
OpenDS you want to replicate data with is located.
remote-server-port-label=Port:
remote-server-port-tooltip=The LDAP port of the OpenDS you want to \
replicate data with.
standalone-server-label=This will be a standalone server
standalone-server-tooltip=Check this if you do not want to replicate the \
data on the server that you are creating with other servers.
replicated-server-label=This server will be part of a replication \
topology
replicated-server-tooltip=Check this if you want to replicate the data on \
the server that you are creating with other servers.
topology-exists-label=There is already a server in the topology
topology-exists-tooltip=Check this if you already created a server that you \
want to replicate data with.
 
#
# Global Administrator specific labels
#
global-administrator-panel-instructions=Provide the informaton to create a \
Global Administrator that will able to manage your whole replication \
topology.
global-administrator-panel-title=Create Global Administrator
global-administrator-uid-label=Global Administrator ID:
global-administrator-uid-tooltip=The Global Administrator ID.
global-administrator-pwd-label=Global Administrator Password:
global-administrator-pwd-tooltip=The Global Administrator Password.
global-administrator-pwd-confirm-label=Global Administrator Password \
(confirm):
global-administrator-pwd-confirm-tooltip=Confirm the password of the \
Global Administrator.
 
#
# Suffixes to Replicate Panel specific labels
#
suffixes-to-replicate-panel-instructions=Choose whether to create suffixes \
as defined on remote servers or to create a new suffix.
suffixes-to-replicate-panel-title=Data Replication
create-new-suffix-label=Create first instance of suffix to be replicated
create-new-suffix-tooltip=Check this to create a new suffix.
replicate-with-suffixes-label=Create local instance of existing suffixes and \
configure replication:
replicate-with-suffixes-tooltip=Check this to Create Suffixes whose \
Contents are replicated with Existing Suffixes.
suffixes-to-replicate-dn-tooltip=The Distinguished Name (DN) of the suffix \
to replicate.
suffix-list-replica-display-entries={0}  ({1} entries)
suffix-list-replica-display-no-entries={0}  (no entries)
suffix-list-unknown-label=<unknown>
suffix-list-empty=-No Suffixes Found-
 
#
# Security Options dialog specific labels
#
security-options-dialog-title=OpenDS QuickSetup
security-options-title=Configure Secure Access
security-options-instructions=Specify the options for enabling secure access \
to the server.
security-options-ok-button-tooltip=Close this dialog and accept configuration.
security-options-cancel-button-tooltip=Close this dialog and discard \
configuration.
enable-ssl-label=Enable SSL on Port:
enable-ssl-tooltip=Enables SSL on the specified port.
ssl-port-textfield-tooltip=The LDAPS port.
enable-starttls-label=Enable StartTLS for LDAP
enable-starttls-tooltip=Allows encrypted communication over the standard \
LDAP port.
use-self-signed-label=Generate Self-Signed Certificate (recommended for \
testing only)
use-self-signed-tooltip=Create a new Self-Signed Certificate to encrypt \
communication.
self-signed-certificate-name-label=Host Name:
self-signed-certificate-name-tooltip=The host name will be used to name the \
certificate.
use-existing-certificate-label=Use an Existing Certificate:
use-existing-certificate-tooltip=Select this if you have already a certificate \
you want the new server to use.
keystore-type-label=Key Store Type:
jks-certificate-label=Java Key Store (JKS) File
jks-certificate-tooltip=Select this option if you have a JKS certificate.
pkcs11-certificate-label=PKCS#11 Token
pkcs11-certificate-tooltip=Select this option if you have a PKCS#11 token.
pkcs12-certificate-label=PKCS#12 File
pkcs12-certificate-tooltip=Select this option if you have a PKCS#12 certificate.
keystore-path-label=Key Store Path:
keystore-path-tooltip=Absolute path to the keystore.
keystore-pwd-label=Key Store Password:
keystore-pwd-tooltip=Provide the password required to access the existing \
key store.
ssl-access-label=SSL Access:
starttls-access-label=StartTLS Access:
certificate-label=Certificate:
no-self-signed-cert-name-provided=You must provide the host name for the \
Self-Signed Certificate.
keystore-path-not-provided=You must provide the path of the key store.
keystore-path-does-not-exist=The provided key store path does not exist.
keystore-path-not-a-file=The provided key store path is not a file.
keystore-pwd-empty=You must provide the password of the key store.
error-accessing-jks-keystore=Could not access the JKS key store.  Check that \
the contents of the file\ncorrespond to a valid JKS key store, that you have \
access rights to it and\nthat the provided password is valid.
error-accessing-pkcs11-keystore=Could not access the PKCS#11 key store.  Check \
that is installed and that the\nprovided password is valid.
error-accessing-pkcs12-keystore=Could not access the PKCS#12 key store.  Check \
that the contents of the file\ncorrespond to a valid PKCS#12 key store, that \
you have access rights to it and\nthat the provided password is valid.
pkcs11-keystore-does-not-exist=No certificates for the PCKS#11 key store could \
be found.  Check that is\ninstalled, that you have access rights to it and \
that the key store contains certificates.
pkcs12-keystore-does-not-exist=No certificates for the PCKS#12 key store could \
be found.  Check that the\nprovided path and password are valid and that the \
key store contains certificates.
jks-keystore-does-not-exist=No certificates for the Java Key Store could be \
found.  Check that the provided\npath is valid.
 
#
# Select Alias dialog specific labels
#
select-alias-title=OpenDS QuickSetup
select-alias-msg=The provided Key Store contains multiple certificates.<br>\
Select the alias of the certificate that you want to be used as Server \
Certificate:
select-alias-ok-button-tooltip=Close this dialog and accept \
selected alias.
select-alias-cancel-button-tooltip=Close this dialog and discard \
selected alias.
 
#
# Data Options Panel specific labels
#
data-options-panel-title=Directory Data
data-options-panel-instructions=Choose options for the LDAP data to be hosted \
by OpenDS.
base-dn-label=Directory Base DN:
base-dn-tooltip=Enter the DN of the top entry where your data will be stored
directory-data-label=Directory Data:
create-base-entry-label=Only Create Base Entry ({0})
create-base-entry-tooltip=Only create the top entry for the Directory Base DN
leave-database-empty-label=Leave Database Empty
leave-database-empty-tooltip=Do not create any entry for the Directory Base DN
import-data-from-ldif-label=Import Data from LDIF File
import-data-from-ldif-tooltip=Use the contents of an LDIF file to populate the \
suffix with data
import-path-label=Path:
import-path-tooltip=Enter the full path of the LDIF file containing the \
data to be imported
import-automatically-generated-label=Import Automatically-Generated Example \
Data
import-automatically-generated-tooltip=Populate the suffix with \
automatically-generated LDAP data
number-entries-label=Number of User Entries:
number-entries-tooltip=Enter the number of user entries to be generated
 
#
# Review Panel specific labels
#
review-panel-title=Review
review-panel-instructions=Review your settings and click Finish if they are \
correct.
review-create-base-entry-label=Only Create Base Entry ({0})
review-leave-database-empty-label=Leave Database Empty
review-import-ldif=Import Data from LDIF File ({0})
review-import-automatically-generated=Import Automatically-Generated Data ({0} \
Entries)
review-create-suffix=Create New Suffix {0}.\nSuffix Data: {1}
review-replicate-suffix=Replicate contents with suffixes:\n{0}
start-server-label=Start Server when Configuration has Completed
start-server-tooltip=Check this check box if you want to start the server once \
the installation and configuration has completed
 
#
# Progress Panel specific labels
#
progress-panel-title=Progress
progress-details-label=Details:
progressbar-initial-label=Starting...
progressbar-tooltip=Progress Bar
 
#
# Confirm Uninstall Panel specific labels
#
confirm-uninstall-panel-title=Uninstall Options
# The following line contains some HTML tags.  translators should respect them.
# Concerning the URL, depending on how works the product page translators
# have to modify it or not: if the server uses the locale of the browser to display
# a language there is no translation to be done but if we have specific URL for
# each language the URL must be localized.
confirm-uninstall-panel-instructions=The OpenDS Uninstall tool will remove all \
parts of the OpenDS server you have selected below from your system. If all \
are selected, the server will be removed entirely.
server-path-label=Server Path:
remove-label=Remove:
remove-libraries-and-tools-label=Server Libraries and Administrative Tools
remove-databases-label=Database Contents
remove-logs-label=Log Files
remove-schema-and-configuration-label=Configuration and Schema Files
remove-backups-label=Backup Files Contained in bak Directory
remove-ldifs-label=LDIF Export Files Contained in ldif Directory
remove-libraries-and-tools-tooltip=Remove Server Libraries and Administrative \
Tools
remove-databases-tooltip=Remove Database Contents
remove-logs-tooltip=Remove Log Files
remove-schema-and-configuration-tooltip=Remove Configuration and Schema Files
remove-backups-tooltip=Remove Backup Files Contained in bak Directory
remove-ldifs-tooltip=Remove LDIF Export Files Contained in ldif Directory
delete-outside-dbs-msg=The Directory Server contains database files in the \
following locations outside the server path:
delete-outside-dbs-label=Delete these Database Files
delete-outside-dbs-tooltip=Check this box to Delete the Database Files located \
outside the install directory
delete-outside-logs-msg=The Directory Server contains log files in the \
following locations outside the server path:
delete-outside-logs-label=Delete these Log Files
delete-outside-logs-tooltip=Check this box to Delete the Log Files located \
outside the install directory
 
#
# Miscellaneous labels
#
browse-button-label=Browse...
browse-button-tooltip=Click to display a file system browser
ldif-files-description=LDAP Data Interchange Format (*.ldif)
zip-files-description=OpenDS Installation Package (.zip)
open-server-location-dialog-title=Choose Installation Path
open-ldif-file-dialog-title=Choose an LDIF File
open-zip-file-dialog-title=Choose an OpenDS Installation Package (.zip)
open-generic-file-dialog-title=Choose a File
 
#
# Progress Summary Labels
#
summary-install-not-started=Starting QuickSetup...
summary-uninstall-not-started=Starting Uninstallation...
summary-downloading=Downloading Binary Files...
summary-extracting=Extracting Binary Files...
summary-configuring=Configuring Directory Server...
summary-creating-base-entry=Creating Base Entry...
summary-importing-ldif=Importing LDIF File...
summary-importing-automatically-generated=Importing Automatically-Generated \
Data...
summary-starting=Starting Directory Server...
summary-enabling-windows-service=Enabling Windows Service...
summary-install-finished-successfully=<b>OpenDS QuickSetup Completed \
Successfully.</b><br>OpenDS is now installed in {0}.<br><br>Visit the \
<a href="https://www.opends.org/wiki/page/QuickReferenceGuide"> \
OpenDS Quick Reference</a> page for an overview of server management and \
configuration.<br>To see basic server configuration status and to start/stop \
the server, click Launch Status Panel.  Note that you can launch this tool \
later using {1}.<br><INPUT type="submit" value="Launch Status Panel"></INPUT>
summary-install-finished-with-error=An error occurred.  Check 'Details' text \
area for more information.
summary-stopping=Stopping Directory Server...
summary-disabling-windows-service=Disabling Windows Service...
summary-deleting-external-db-files=Deleting Database Files outside the \
Installation Path...
summary-deleting-external-log-files=Deleting Log Files outside the \
Installation Path...
summary-deleting-external-references=Deleting External References...
summary-deleting-installation-files=Deleting Files under the Installation \
Path...
summary-uninstall-finished-successfully-remove-jarfiles=<b>OpenDS Uninstall \
Completed Successfully.</b><br><br>To complete the uninstallation, you must \
delete manually the following files and directories:\n{0}
summary-uninstall-finished-successfully=<b>OpenDS Uninstall Completed \
Successfully.</b>
summary-uninstall-finished-successfully-remove-jarfiles-cli=OpenDS Uninstall \
Completed Successfully.\nTo complete the uninstallation, you must \
delete manually the following files and directories:\n{0}
summary-uninstall-finished-successfully-cli=OpenDS Uninstall Completed \
Successfully.
summary-uninstall-finished-with-error=An error occurred.  Check 'Details' text \
area for more information.
 
summary-upgrade-not-started=Starting Upgrade...
summary-upgrade-initializing=Initializing Upgrade...
summary-upgrade-downloading=Downloading Build...
summary-upgrade-extracting=Extracting Build...
summary-upgrade-backing-up-db=Backing Up Data...
summary-upgrade-backing-up-files=Backing Up Files...
summary-upgrade-check-server-health=Checking Server Health...
summary-upgrade-calculating-schema-customization=Calculating Schema \
  Customizations...
summary-upgrade-calculating-config-customization=Calculating Configuration \
  Customizations...
summary-upgrade-upgrading-components=Upgrading Components...
summary-upgrade-preparing-customizations=Preparing Customizations...
summary-upgrade-applying-schema-customization=Applying Schema \
  Customizations...
summary-upgrade-applying-config-customization=Applying Configuration \
  Customizations...
summary-upgrade-verifying=Verifying Upgrade...
summary-upgrade-history=Recording Upgrade History...
summary-upgrade-cleanup=Cleaning Up...
summary-upgrade-abort=Canceling Upgrade...
summary-upgrade-finished-successfully=<b>OpenDS QuickUpgrade Completed \
  Successfully.</b><br>The OpenDS installation at {0} has now been upgraded \
  to version {1}.<br><br><INPUT type="submit" value="Launch Status Panel"></INPUT>
summary-upgrade-finished-successfully-cli=OpenDS QuickUpgrade Completed \
  Successfully.  The OpenDS installation at {0} has now been upgraded \
  to version {1}.
summary-upgrade-finished-with-errors=<b>OpenDS QuickUpgrade Failed</b><br>\
  The upgrade operation could not complete successfully due to errors and \
  the installation has been restored to the state it was in before the upgrade \
  operation.  See the 'Details' text for more information on why the upgrade \
  operation failed.<br><br><INPUT type="submit" value="Launch Status Panel"></INPUT>
summary-upgrade-finished-with-errors-cli=OpenDS QuickUpgrade Failed. \
  The upgrade operation could not complete successfully due to errors and \
  the installation has been restored to the state it was in before the upgrade \
  operation.  See the logs for details on why the upgrade operation failed.
summary-upgrade-finished-with-warnings=<b>OpenDS QuickUpgrade Succeeded With \
  Warnings</b><br>The upgrade operation completed successfully but the upgrader \
  had problems that require attention. See the 'Details' text for more \
  information on the problems.<br><br><INPUT type="submit" value="Launch Status Panel"></INPUT>
summary-upgrade-finished-with-warnings-cli=OpenDS QuickUpgrade Succeeded With \
  Warnings. The upgrade operation completed successfully but the upgrader \
  had problems that require attention. See the logs for details on the \
  problems.
summary-upgrade-finished-canceled=<b>OpenDS QuickUpgrade Canceled.</b> \
  <br>The upgrade operation was canceled and the installation has been \
  restored to the state it was in before the upgrade operation.\
  <br><br><INPUT type="submit" value="Launch Status Panel"></INPUT>
summary-upgrade-finished-canceled-cli=<b>OpenDS QuickUpgrade Canceled. \
  The upgrade operation was canceled and the installation has been \
  restored to the state it was in before the upgrade operation.
#
# Progress messages
#
progress-downloading=Downloading
progress-done=Done.
progress-points=.....
progress-error=Error.
progress-extracting=Extracting {0}
progress-configuring=Configuring Directory Server
progress-updating-certificates=Configuring Certificates
downloading=Downloading...
downloading-ratio=Downloading: {0}% Completed.
validating-ratio=Downloading: {0}% Completed - Validating file: {1} % Completed.
upgrading-ratio=Downloading: {0}% Completed - Upgrading file: {1} % Completed.
progress-creating-base-entry=Creating Base Entry {0}
progress-importing-ldif=Importing LDIF file {0}:
progress-import-automatically-generated=Importing Automatically-Generated Data \
({0} Entries):
progress-starting=Starting Directory Server:
progress-stopping=Stopping Directory Server:
progress-enabling-windows-service=Enabling Windows Service...
progress-disabling-windows-service=Disabling Windows Service...
progress-deleting-external-db-files=Deleting Database Files outside the \
Installation Path:
progress-deleting-external-log-files=Deleting Log Files outside the \
Installation Path:
progress-deleting-installation-files=Deleting Files under the Installation Path:
progress-deleting-file=Deleting file {0}
progress-deleting-directory=Deleting directory {0}
progress-copying-file=Copying file {0} to {1}
progress-server-already-stopped=The Directory Server is already stopped.
progress-server-waiting-to-stop=Waiting for Server to stop...
progress-server-stopped=Server stopped.
file-does-not-exist=Path {0} does not exist.
 
#
# Progress errors
#
error-copying=An unexpected error occurred extracting file {0}.
error-zip-stream=An unexpected error occurred reading the zip file {0}.
exception-details=Details: {0}
exception-out-of-memory-details=Not enough memory to perform the operation.  \
Details: {0}
error-could-not-create-parent-dir=Could not create parent directory {0}.  \
Check that you have file system access rights.  
downloading-error=An error occurred downloading remote file(s) {0}.
error-zipinputstreamnull=Could not retrieve zip file {0}.  The input stream \
is null.
bug-msg=An unexpected error occurred.
error-reflection=An unexpected error occurred while loading classes.
error-creating-temp-file=An error occurred creating the temporary file.
error-writing-to-temp-file=An error occurred writing to temporary file {0}.
error-configuring=Error Configuring Directory Server.
error-configuring-certificate=Error Configuring Certificates.
error-enabling-windows-service=Error Enabling Windows service.
error-disabling-windows-service=Error Disabling Windows service.  Try to kill \
the process opends_service.exe and the running the \
{0}\\bat\\windows-service.bat -d command-line to disable the service manually. 
error-creating-base-entry=Error Creating Base Entry.
error-importing-ldif=Error Importing LDIF File.
error-import-automatically-generated=Error Importing Automatically- Generated \
Data when invoked with arguments: {0}".
error-starting-server-with-no-connection-handlers=Error Starting Server with \
no connection handlers: {0}.
error-starting-server=Error Starting Directory Server.
error-starting-server-in-windows=Could not connect to the server after requesting start.  \
If you have a firewall configured check that it allows connections to port {0}.
error-starting-server-in-unix=Could not connect to the server after after requesting start.  \
Verify that the server has access rights to port {0}.
error-stopping-server=Error Stopping Directory Server.
error-stopping-server-code=Error Stopping Directory Server.  Error code: {0}.
error-reading-erroroutput=Error Reading error output.
error-reading-output=Error Reading output.
hide-exception-details=Hide Details
show-exception-details=Show Details
exception-root-cause=Root Cause:
error-deleting-file=Error deleting file {0}.  Check that you have the rights \
to delete this file and that there is no other application using it.
error-deleting-directory=Error deleting directory {0}.  Check that you have \
the rights to delete this directory and that there is no other application \
using it.
error-copying-file=Error copying file {0} to {1}.
info-ignoring-file=Ignoring {0} since {1} exists.
#
# Install Status: messages displayed in the offline quick setup
# if server is already installed.
#
installstatus-serverrunning=Is currently running on port {0}
installstatus-dbfileexist=Contains data
installstatus-configfilemodified=Has already been configured
installstatus-installed=OpenDS Server Already Configured<br> \
QuickSetup can only be used with OpenDS Servers that have not yet been \
configured.  The current server:{0}
installstatus-not-installed=The Directory Server is not installed.
installstatus-canoverwritecurrentinstall-msg=The Directory Server contains \
some database files.<br>If you continue with the setup the contents of these \
database files will be deleted.
 
upgrade-hypothetical-upgrade-success=Upgrade from version {0} to version {1} \
  is supported.
upgrade-hypothetical-reversion-success=Reversion from version {0} to version \
  {1} is supported.
upgrade-hypothetical-upgrade-failure=Upgrade from version {0} to version {1} \
  is not supported.  To upgrade You must uninstall the current server, install \
  the new server, and manually migrate your data.
upgrade-hypothetical-reversion-failure=Reversion from version {0} to version \
  {1} is not supported.  To revert versions you must uninstall the current \
  server, install the new server, and manually migrate your data.
upgrade-hypothetical-versions-the-same=Both the 'upgrade to' and 'upgrade from' \
  numbers are the same: {0}
upgrade-mod-no-schema=Processed server modifications \
  (schema checking disabled): {0}
upgrade-mod=Processed server modifications: {0}
upgrade-mod-ignore=Attribute or value already exists: {0}
 
#
# Upgrader Panels
#
#
# Welcome Panel specific labels
#
upgrade-welcome-panel-title=Welcome
# The following line contains some HTML tags.  translators should respect them.
# Concerning the URL, depending on how works the product page translators
# have to modify it or not: if the server uses the locale of the browser to display
# a language there is no translation to be done but if we have specific URL for
# each language the URL must be localized.
upgrade-welcome-panel-webstart-instructions=The OpenDS QuickUpgrade tool will upgrade \
  an existing build in place.<br><br>This instance of QuickUpgrade will upgrade the \
  server you specify below to the following OpenDS build: {0} (Build ID: {1}) .<br><br> \
  Additional information on this tool is available on the <a href="https://www.opends.org/wiki/"> \
  OpenDS documentation wiki</a>.<br><br>\
  <b>Note:</b> The upgrade tool will need to stop and start the OpenDS server
upgrade-location-label=Server to Upgrade:
upgrade-location-tooltip=File system location of the build that will be upgraded
upgrade-build-id-label=Build Version:
upgrade-build-id-tooltip=The ID of the build version installed in the above location
upgrade-build-id-unknown=Unknown
error-invalid-server-location=Invalid Directory Selected: {0}\n\
  Either the selected directory is not a valid OpenDS root installation\n\
  directory or you do not have access permissions for this directory.
 
#
# Upgrader Choose Version Panel
#
upgrade-choose-version-panel-title=Choose New Version
upgrade-choose-version-panel-instructions=Choose a new version or reference \
  build to use for the upgrading.
upgrade-choose-version-remote-label=Choose New Version from opends.dev.java.net
upgrade-choose-version-remote-tooltip=Download and upgrade to a build publicly \
  available on the OpenDS website.
upgrade-choose-version-remote-weekly=Weekly Builds
upgrade-choose-version-remote-nightly=Nightly Builds
upgrade-choose-version-local-label=Upgrade Based on Downloaded Weekly Build (.zip)
upgrade-choose-version-local-tooltip=Upgrade to a build whose .zip file you have \
  already downloaded.
upgrade-choose-version-local-path=Path:
upgrade-choose-version-build-list-error=<b>Error Accessing Build Information.</b>\
  <br>Unable to retrieve the list of builds from {0} due to: {1}.<br>\
  Possible Causes:<br>\
  <ul><li>Need to specify a proxy.<br><table><tr><td>\
  <input value="Specify Proxy" type="submit"></input></td><td>Current Proxy: {2}<td>\
  </tr></table><br></li><li>{0} \
  is down or experiencing difficulty.</li></ul><br>You can still continue with \
  upgrade but will need to download a build separately and then point to it in \
  the wizard.
 
upgrade-review-panel-title=Review
upgrade-review-panel-instructions=Review your settings and click Finish if they \
are correct.
upgrade-review-panel-server-label=Server to Upgrade:
upgrade-review-panel-server-tooltip=File system location of the build that will be upgraded
upgrade-review-panel-old-version-label=Current Version:
upgrade-review-panel-old-version-tooltip=The current version of the server
upgrade-review-panel-new-version-label=New Version:
upgrade-review-panel-new-version-tooltip=The target version of the server
upgrade-review-panel-start-server=Start Server when the Upgrade has Completed
upgrade-review-panel-start-server-tooltip=Check this check box if you want to \
  start the server once the upgrade has completed
 
build-manager-downloading-build-progress=Downloading Build: {0}% Completed
build-manager-downloading-build=Downloading Build...
build-manager-downloading-build-done=Finished Downloading Build
 
general-loading=Loading...
general-see-for-details=See {0} for a detailed log of this operation.
general-build-id=Build ID