-
Notifications
You must be signed in to change notification settings - Fork 541
Expand file tree
/
Copy pathBundle.properties
More file actions
3207 lines (3043 loc) · 241 KB
/
Bundle.properties
File metadata and controls
3207 lines (3043 loc) · 241 KB
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
dataverse=Dataverse
newDataverse=New Dataverse
hostDataverse=Host Dataverse
dataverses=Dataverses
passwd=Password
# BEGIN dataset types
# `dataset=Dataset` has been here since 4.0 but now that we have dataset types,
# we need to add the rest of the types here for two reasons. First, we want
# translators to be able to translate these types. Second, in English it looks
# weird to have only "Dataset" capitalized in the facet but not "software" and
# "workflow". This capitalization (looking up here in the bundle) is done by
# SearchServiceBean near the comment "This is where facets are capitalized".
dataset=Dataset
software=Software
workflow=Workflow
# END dataset types
datasets=Datasets
newDataset=New Dataset
files=Files
file=File
public=Public
restricted=Restricted
restrictedaccess=Restricted with Access Granted
embargoed=Embargoed
embargoedaccess=Embargoed with Access
embargoedandrestricted=Embargoed and then Restricted
embargoedandrestrictedaccess=Embargoed and then Restricted with Access
retentionExpired=Retention Period Expired
incomplete=Incomplete metadata
valid=Valid
find=Find
search=Search
language=Language
created=Created
deposited=Deposited
published=Published
metadatareleased=Metadata Released
unpublished=Unpublished
embargoed.until=Embargoed until
embargoed.wasthrough=Was embargoed until
embargoed.willbeuntil=Draft: will be embargoed until
embargo.date.invalid=Date is outside the allowed range: ({0} to {1})
embargo.date.required=An embargo date is required
retention.after=Was retained until
retention.isfrom=Is retained until
retention.willbeafter=Draft: will be retained until
retention.enddateinfo=after which it will no longer be accessible
retention.date.invalid=Date is outside the allowed range: ({0} to {1})
retention.date.required=A retention period end date is required
cancel=Cancel
ok=OK
saveChanges=Save Changes
acceptTerms=Accept
submit=Submit
signup=Sign Up
login=Log In
email=Email
account=Account
requiredField=Required field
new=New
identifier=Identifier
description=Description
subject=Subject
close=Close
preview=Preview
query=Query
continue=Continue
name=Name
institution=Institution
position=Position
affiliation=Affiliation
storage=Storage
curationLabels=Curation Labels
metadataLanguage=Dataset Metadata Language
guestbookEntryOption=Guestbook Mode
pidProviderOption=PID Provider Option
createDataverse=Create Dataverse
remove=Remove
done=Done
editor=Contributor
manager=Manager
curator=Curator
explore=Explore
download=Download
transfer=Globus Transfer
downloadOriginal=Original Format
downloadArchival=Archival Format (.tab)
deaccession=Deaccession
share=Share
link=Link
linked=Linked
harvested=Harvested
apply=Apply
add=Add
delete=Delete
copyClipboard=Copy to Clipboard
truncateMoreBtn=Read full {0} [+]
truncateMoreTip=Click to read the full {0}.
truncateLessBtn=Collapse {0} [-]
truncateLessTip=Click to collapse the {0}.
yes=Yes
no=No
previous=Previous
next=Next
first=First
last=Last
more=More...
less=Less...
select=Select...
selectedFiles=Selected Files
htmlAllowedTitle=Allowed HTML Tags
htmlAllowedMsg=This field supports only certain <a class="popoverHTML" tabindex="0" role="button">HTML tags</a>.
htmlAllowedTags=<a>, <b>, <blockquote>, <br>, <code>, <del>, <dd>, <dl>, <dt>, <em>, <hr>, <h1>-<h3>, <i>, <img>, <kbd>, <li>, <ol>, <p>, <pre>, <s>, <sup>, <sub>, <strong>, <strike>, <u>, <ul>
conditionalRequiredMsg=One or more of these fields may become required if you add to one or more of these optional fields.
conditionalRequiredMsg.tooltip=This field will become required if you choose to enter values in one or more of these optional fields.
toggleNavigation=Toggle navigation
defaultBody=Default Body
loading=Loading...
filter=Filter
to=to
of=of
alt.logo={0} logo
alt.homepage={0} homepage
# dataverse_header.xhtml
header.noscript=Please enable JavaScript in your browser. It is required to use most of the features of Dataverse.
header.status.header=Status
header.search.title=Search all dataverses...
header.about=About
header.support=Support
header.guides=Guides
header.guides.user=User Guide
header.guides.developer=Developer Guide
header.guides.installation=Installation Guide
header.guides.api=API Guide
header.guides.admin=Admin Guide
header.signUp=Sign Up
header.logOut=Log Out
header.accountInfo=Account Information
header.dashboard=Dashboard
header.user.selectTab.dataRelated=My Data
header.user.selectTab.notifications=Notifications
header.user.selectTab.accountInfo=Account Information
header.user.selectTab.groupsAndRoles=Groups + Roles
header.user.selectTab.apiToken=API Token
# dataverse_template.xhtml
head.meta.description=The Dataverse Project is an open source software application to share, cite and archive data. Dataverse provides a robust infrastructure for data stewards to host and archive data, while offering researchers an easy way to share and get credit for their data.
body.skip=Skip to main content
# dataverse_footer.xhtml
footer.copyright=Copyright © {0}
footer.widget.datastored=Data is stored at {0}.
footer.widget.login=Log in to
footer.privacyPolicy=Privacy Policy
footer.poweredby=Powered by
footer.dataverseProject=The Dataverse Project
# messages.xhtml
messages.error=Error
messages.success=Success!
messages.info=Info
messages.validation=Validation Error
messages.validation.msg=Required fields were missed or there was a validation error. Please scroll down to see details.
# contactFormFragment.xhtml
contact.header=Contact {0}
contact.dataverse.header=Email Dataverse Contact
contact.dataset.header=Email Dataset Contact
contact.to=To
contact.cc=CC
contact.support=Support
contact.from=From
contact.from.required=User email is required.
contact.from.invalid=Email is invalid.
contact.from.emailPlaceholder=name@email.xyz
contact.subject=Subject
contact.subject.required=Subject is required.
contact.subject.selectTab.top=Select subject...
contact.subject.selectTab.support=Support Question
contact.subject.selectTab.dataIssue=Data Issue
contact.msg=Message
contact.msg.required=Message text is required.
contact.send=Send Message
contact.question=Please fill this out to prove you are not a robot.
contact.sum.title=Human Access Validation Answer
contact.sum.required=Value is required.
contact.sum.invalid=Incorrect sum, please try again.
contact.sum.converterMessage=Please enter a number.
contact.contact=Contact
# Bundle file editors, please note that these "contact.context" messages are used in tests.
contact.context.subject.dvobject={0} contact: {1}
contact.context.subject.support={0} support request: {1}
contact.context.dataverse.intro={0}You have just been sent the following message from {1} via the {2} hosted dataverse named "{3}":\n\n---\n\n
contact.context.dataverse.ending=\n\n---\n\n{0}\n{1}\n\nGo to dataverse {2}/dataverse/{3}\n\nYou received this email because you have been listed as a contact for the dataverse. If you believe this was an error, please contact {4} at {5}. To respond directly to the individual who sent the message, simply reply to this email.
contact.context.dataverse.noContact=There is no contact address on file for this dataverse so this message is being sent to the system address.\n\n
contact.context.dataset.greeting.helloFirstLast=Hello {0},
contact.context.dataset.greeting.organization=Attention Dataset Contact:
contact.context.dataset.intro={0}\n\nYou have just been sent the following message from {1} via the {2} hosted dataset titled "{3}" ({4}):\n\n---\n\n
contact.context.dataset.ending=\n\n---\n\n{0}\n{1}\n\nGo to dataset {2}/dataset.xhtml?persistentId={3}\n\nYou received this email because you have been listed as a contact for the dataset. If you believe this was an error, please contact {4} at {5}. To respond directly to the individual who sent the message, simply reply to this email.
contact.context.dataset.noContact=There is no contact address on file for this dataset so this message is being sent to the system address.\n\n---\n\n
contact.context.file.intro={0}\n\nYou have just been sent the following message from {1} via the {2} hosted file named "{3}" from the dataset titled "{4}" ({5}):\n\n---\n\n
contact.context.file.ending=\n\n---\n\n{0}\n{1}\n\nGo to file {2}/file.xhtml?fileId={3}\n\nYou received this email because you have been listed as a contact for the dataset. If you believe this was an error, please contact {4} at {5}. To respond directly to the individual who sent the message, simply reply to this email.
contact.context.support.intro={0},\n\nThe following message was sent from {1}.\n\n---\n\n
contact.context.support.ending=\n\n---\n\nMessage sent from Support contact form.
contact.sent=Message sent.
# dataverseuser.xhtml
account.info=Account Information
account.edit=Edit Account
account.apiToken=API Token
user.isShibUser=Account information cannot be edited when logged in through an institutional account.
user.helpShibUserMigrateOffShibBeforeLink=Leaving your institution? Please contact
user.helpShibUserMigrateOffShibAfterLink=for assistance.
user.helpOAuthBeforeLink=Your Dataverse account uses {0} for login. If you are interested in changing login methods, please contact
user.helpOAuthAfterLink=for assistance.
user.lostPasswdTip=If you have lost or forgotten your password, please enter your username or email address below and click Submit. We will send you an e-mail with your new password.
user.orcid=ORCID
user.orcid.link=Link to ORCID profile
user.orcid.authenticate=Add Authenticated ORCID
user.orcid.remove=Remove ORCID
user.orcid.callback.message=<strong>Authentication Error</strong> - Dataverse could not authenticate your login at ORCID and will not add your ORCID to your profile. Please make sure you authorize your account to connect with Dataverse.
user.dataRelatedToMe=My Data
wasCreatedIn=, was created in
wasCreatedTo=, was added to
wasSubmittedForReview=, was submitted for review to be published in
wasPublished=, was published in
wasReturnedByReviewer=, was returned by the curator of
# TODO: Confirm that "toReview" can be deleted.
toReview=Don't forget to publish it or send it back to the contributor!
# Bundle file editors, please note that "notification.welcome" is used in a unit test.
notification.welcome=Welcome to {0}! Get started by adding or finding data. Have questions? Check out the {1}. Want to test out Dataverse features? Use our {2}.
notification.welcomeConfirmEmail=Also, check for your welcome email to verify your address.
notification.demoSite=Demo Site
notification.requestFileAccess=File access requested for dataset: {0} was made by {1} ({2}).
notification.requestedFileAccess=You have requested access to files in dataset: {0}.
notification.grantFileAccess=Access granted for files in dataset: {0}.
notification.rejectFileAccess=Access rejected for requested files in dataset: {0}.
notification.createDataverse={0} was created in {1} . To learn more about what you can do with your dataverse, check out the {2}.
notification.dataverse.management.title=Dataverse Management - Dataverse User Guide
notification.createDataset={0} was created in {1}. To learn more about what you can do with a dataset, check out the {2}.
notification.datasetCreated={0} was created in {1} by {2}.
notification.dataset.management.title=Dataset Management - Dataset User Guide
notification.wasSubmittedForReview={0} was submitted for review to be published in {1}. Don''t forget to publish it or send it back to the contributor, {2} ({3})\!
notification.wasReturnedByReviewer={0} was returned by the curator of {1}.
notification.wasPublished={0} was published in {1}.
notification.publishFailedPidReg={0} in {1} could not be published due to a failure to register, or update the Global Identifier for the dataset or one of the files in it. Contact support if this continues to happen.
notification.workflowFailed=An external workflow run on {0} in {1} has failed. Check your email and/or view the Dataset page which may have additional details. Contact support if this continues to happen.
notification.workflowSucceeded=An external workflow run on {0} in {1} has succeeded. Check your email and/or view the Dataset page which may have additional details.
notification.statusUpdated=The status of dataset {0} has been updated to {1}.
notification.pidreconciled=The persistent identifier of dataset {0} has been updated to `{1}`.
notification.datasetMentioned=Announcement Received: Newly released {0} <a href="{1}">{2}</a> {3} Dataset {4}.
notification.ingestCompleted=Dataset <a href="/dataset.xhtml?persistentId={0}" title="{1}">{1}</a> has one or more tabular files that completed the <a href="{2}/{3}/user/dataset-management.html#tabular-data-files" title="Tabular Data Files - Dataverse User Guide" target="_blank" rel="noopener">tabular ingest process</a> and are available in archival formats.
notification.ingestCompletedWithErrors=Dataset <a href="/dataset.xhtml?persistentId={0}" title="{1}">{1}</a> has one or more tabular files that are available but are not supported for <a href="{2}/{3}/user/dataset-management.html#tabular-data-files" title="Tabular Data Files- Dataverse User Guide" target="_blank" rel="noopener">tabular ingest</a>.
notification.generic.objectDeleted=The dataverse, dataset, or file for this notification has been deleted.
notification.access.granted.dataverse=You have been granted the {0} role for {1}.
notification.access.granted.dataset=You have been granted the {0} role for {1}.
notification.access.granted.datafile=You have been granted the {0} role for file in {1}.
notification.access.granted.fileDownloader.additionalDataverse={0} You now have access to all published restricted and unrestricted files in this dataverse.
notification.access.granted.fileDownloader.additionalDataset={0} You now have access to all published restricted and unrestricted files in this dataset.
notification.access.revoked.dataverse=You have been removed from a role in {0}.
notification.access.revoked.dataset=You have been removed from a role in {0}.
notification.access.revoked.datafile=You have been removed from a role in {0}.
notification.checksumfail=One or more files in your upload failed checksum validation for dataset <a href="/dataset.xhtml?persistentId={0}" title="{1}">{1}</a>. Please re-run the upload script. If the problem persists, please contact support.
notification.ingest.completed=Your Dataset <a href="{0}/dataset.xhtml?persistentId={1}" title="{2}">{2}</a> has one or more tabular files that completed the tabular ingest process. These files will be available for download in their original formats and other formats for enhanced archival purposes after you publish the dataset. The archival .tab files are displayed in the file table. Please see <a href="{3}/{4}/user/dataset-management.html#tabular-data-files" title="Tabular Data Files - Dataverse User Guide" target="_blank" rel="noopener">the guides</a> for more information about ingest and support for tabular files.
notification.ingest.completedwitherrors=Your Dataset <a href="{0}/dataset.xhtml?persistentId={1}" title="{2}">{2}</a> has one or more tabular files that have been uploaded successfully but are not supported for tabular ingest. After you publish the dataset, these files will not have additional archival features. Please see <a href="{3}/{4}/user/dataset-management.html#tabular-data-files" title="Tabular Data Files - Dataverse User Guide" target="_blank" rel="noopener">the guides</a> for more information about ingest and support for tabular files.<br><br>Files with incomplete ingest:{5}
notification.mail.import.filesystem=Dataset {2} ({0}/dataset.xhtml?persistentId={1}) has been successfully uploaded and verified.
notification.mail.globus.upload.completed=Globus transfer to Dataset <a href="{0}/dataset.xhtml?persistentId={1}" title="{2}">{2}</a> was successful. File(s) have been uploaded and verified. <br><br> {3}<br>
notification.mail.globus.download.completed=Globus transfer of file(s) from the dataset <a href="{0}/dataset.xhtml?persistentId={1}" title="{2}">{2}</a> was successful. <br><br> {3}<br>
notification.mail.globus.upload.completedWithErrors=Globus transfer to Dataset <a href="{0}/dataset.xhtml?persistentId={1}" title="{2}">{2}</a> is complete with errors. <br><br> {3}<br>
notification.mail.globus.upload.failedRemotely=Remote data transfer between Globus endpoints for Dataset <a href="{0}/dataset.xhtml?persistentId={1}" title="{2}">{2}</a> failed, as reported via Globus API. <br><br> {3}<br>
notification.mail.globus.upload.failedLocally=Dataverse received a confirmation of a successful Globus data transfer for Dataset <a href="{0}/dataset.xhtml?persistentId={1}" title="{2}">{2}</a>, but failed to add the files to the dataset locally. <br><br> {3}<br>
notification.mail.globus.download.completedWithErrors=Globus transfer from the dataset <a href="{0}/dataset.xhtml?persistentId={1}" title="{2}">{2}</a> is complete with errors. <br><br> {3}<br>
notification.import.filesystem=Dataset <a href="/dataset.xhtml?persistentId={0}" title="{1}">{1}</a> has been successfully uploaded and verified.
notification.globus.upload.completed=Globus transfer to Dataset <a href="/dataset.xhtml?persistentId={0}" title="{1}">{1}</a> was successful. File(s) have been uploaded and verified.
notification.globus.download.completed=Globus transfer from the dataset <a href="/dataset.xhtml?persistentId={0}" title="{1}">{1}</a> was successful.
notification.globus.upload.completedWithErrors=Globus transfer to Dataset <a href="/dataset.xhtml?persistentId={0}" title="{1}">{1}</a> is complete with errors.
notification.globus.upload.failedRemotely=Remote data transfer between Globus collections for Dataset <a href="{0}/dataset.xhtml?persistentId={1}" title="{2}">{2}</a> failed, reported via Globus API. <br><br> {3}<br>
notification.globus.upload.failedLocally=Dataverse received a confirmation of a successful Globus data transfer for Dataset <a href="{0}/dataset.xhtml?persistentId={1}" title="{2}">{2}</a>, but failed to add the files to the dataset locally. <br><br> {3}<br>
notification.globus.download.completedWithErrors=Globus transfer from the dataset <a href="/dataset.xhtml?persistentId={0}" title="{1}">{1}</a> is complete with errors.
notification.import.checksum=<a href="/dataset.xhtml?persistentId={0}" title="{1}">{1}</a>, dataset had file checksums added via a batch job.
removeNotification=Remove Notification
# These are the labels of the options where the muted notifications can be selected by the users
notification.muteOptions=Notification settings
notification.mutedEmails=Select the email notifications you wish to receive:
notification.mutedNotifications=Select the in-app notifications you wish to receive:
# Notification types descriptions as presentend to the user. Leave the description empty or leave it out entirely in order to make it not selectable for muting by the user.
notification.typeDescription.ASSIGNROLE=Role is assigned
notification.typeDescription.REVOKEROLE=Role is revoked
notification.typeDescription.CREATEDV=Dataverse collection is created
notification.typeDescription.CREATEDS=Your dataset is created
notification.typeDescription.CREATEACC=Account is created
notification.typeDescription.SUBMITTEDDS=Submitted for review
notification.typeDescription.RETURNEDDS=Returned from review
notification.typeDescription.PUBLISHEDDS=Dataset is published
notification.typeDescription.REQUESTFILEACCESS=Access to file is requested
notification.typeDescription.GRANTFILEACCESS=Access to file is granted
notification.typeDescription.REJECTFILEACCESS=Access to file is rejected
notification.typeDescription.FILESYSTEMIMPORT=Dataset has been successfully uploaded and verified
notification.typeDescription.CHECKSUMIMPORT=Dataset had file checksums added via a batch job
notification.typeDescription.CHECKSUMFAIL=Checksum validation failed
notification.typeDescription.CONFIRMEMAIL=Email Verification
notification.typeDescription.APIGENERATED=API token is generated
notification.typeDescription.INGESTCOMPLETED=Ingest is completed
notification.typeDescription.INGESTCOMPLETEDWITHERRORS=Ingest completed with errors
notification.typeDescription.PUBLISHFAILED_PIDREG=Publish has failed
notification.typeDescription.WORKFLOW_SUCCESS=External workflow run has succeeded
notification.typeDescription.WORKFLOW_FAILURE=External workflow run has failed
notification.typeDescription.STATUSUPDATED=Status of dataset has been updated
notification.typeDescription.DATASETCREATED=Dataset was created by user
notification.typeDescription.DATASETMENTIONED=Dataset was referenced in remote system
notification.typeDescription.PIDRECONCILED=The Persistent identifier of dataset has been updated
notification.typeDescription.GLOBUSUPLOADCOMPLETED=Globus upload is completed
notification.typeDescription.GLOBUSUPLOADCOMPLETEDWITHERRORS=Globus upload completed with errors
notification.typeDescription.GLOBUSDOWNLOADCOMPLETED=Globus download is completed
notification.typeDescription.GLOBUSDOWNLOADCOMPLETEDWITHERRORS=Globus download completed with errors
notification.typeDescription.GLOBUSUPLOADLOCALFAILURE=Globus upload failed, internal error
notification.typeDescription.GLOBUSUPLOADREMOTEFAILURE=Globus upload failed, remote transfer error
notification.typeDescription.REQUESTEDFILEACCESS=File access requested
groupAndRoles.manageTips=Here is where you can access and manage all the groups you belong to, and the roles you have been assigned.
user.message.signup.label=Create Account
user.message.signup.tip=Why have a Dataverse account? To create your own dataverse and customize it, add datasets, or request access to restricted files.
user.signup.otherLogInOptions.tip=You can also create a Dataverse account with one of our other <a href="/loginpage.xhtml" title="Dataverse Log In">log in options</a>.
user.username.illegal.tip=Between 2-60 characters, and can use "a-z", "0-9", "_" for your username.
user.username=Username
user.username.taken=This username is already taken.
user.username.invalid=This username contains an invalid character or is outside the length requirement (2-60 characters).
user.username.valid=Create a valid username of 2 to 60 characters in length containing letters (a-Z), numbers (0-9), dashes (-), underscores (_), and periods (.).
user.noPasswd=No Password
user.currentPasswd=Current Password
user.currentPasswd.tip=Please enter the current password for this account.
user.passwd.illegal.tip=Password needs to be at least 6 characters, include one letter and one number, and special characters may be used.
user.rePasswd=Retype Password
user.rePasswd.tip=Please retype the password you entered above.
user.firstName=Given Name
user.firstName.tip=The first name or name you would like to use for this account.
user.lastName=Family Name
user.lastName.tip=The last name you would like to use for this account.
user.email.tip=A valid email address you have access to in order to be contacted.
user.email.taken=This email address is already taken.
user.affiliation.tip=The organization with which you are affiliated.
user.position=Position
user.position.tip=Your role or title at the organization you are affiliated with; such as staff, faculty, student, etc.
user.acccountterms=General Terms of Use
user.acccountterms.tip=The terms and conditions for using the application and services.
user.acccountterms.required=Please check the box to indicate your acceptance of the General Terms of Use.
user.acccountterms.iagree=I have read and accept the Dataverse General Terms of Use as outlined above.
user.createBtn=Create Account
user.updatePassword.welcome=Welcome to Dataverse {0}
user.updatePassword.warning=Our terms of use have changed, please check the box below and click Continue.
user.updatePassword.password={0}
user.password=Password
user.newPassword=New Password
authenticationProvidersAvailable.tip={0}There are no active authentication providers{1}If you are a system administrator, please enable one using the API.{2}If you are not a system administrator, please contact the one for your institution.
passwdVal.passwdReq.title=Your password must contain:
passwdVal.passwdReq.goodStrength=passwords of at least {0} characters are exempt from all other requirements
passwdVal.passwdReq.lengthReq=At least {0} characters
passwdVal.passwdReq.characteristicsReq=At least 1 character from {0} of the following types:
passwdVal.passwdReq.notInclude=It may not include:
passwdVal.passwdReq.consecutiveDigits=More than {0} numbers in a row
passwdVal.passwdReq.dictionaryWords=Dictionary words
passwdVal.passwdReq.unknownPasswordRule=Unknown, contact your administrator
#printf syntax used to pass to passay library
passwdVal.expireRule.errorCode=EXPIRED
passwdVal.expireRule.errorMsg=The password is over %1$s days old and has expired.
passwdVal.goodStrengthRule.errorMsg=Note: passwords are always valid with a %1$s or more character length regardless.
passwdVal.goodStrengthRule.errorCode=NO_GOODSTRENGTH
passwdVal.passwdReset.resetLinkTitle=Password Reset Link
passwdVal.passwdReset.resetLinkDesc=Your password reset link is not valid
passwdVal.passwdReset.resetInitiated=Password Reset Initiated
passwdVal.passwdReset.valBlankLog=new password is blank
passwdVal.passwdReset.valFacesError=Password Error
passwdVal.passwdReset.valFacesErrorDesc=Please enter a new password for your account.
passwdVal.passwdValBean.warnDictionaryRead=Dictionary was set, but none was read in.
passwdVal.passwdValBean.warnDictionaryObj=PwDictionaries not set and no default password file found:
passwdVal.passwdValBean.warnSetStrength=The PwGoodStrength {0} value competes with the PwMinLength value of {1} and is added to {2}
# passwordreset.xhtml
pageTitle.passwdReset.pre=Account Password Reset
passwdReset.token=token :
passwdReset.userLookedUp=user looked up :
passwdReset.emailSubmitted=email submitted :
passwdReset.details={0} Password Reset{1} - To initiate the password reset process, please provide your email address.
passwdReset.submitRequest=Submit Password Request
passwdReset.successSubmit.tip=If this email is associated with an account, then an email will be sent with further instructions to {0}.
passwdReset.debug=DEBUG
passwdReset.resetUrl=The reset URL is
passwdReset.noEmail.tip=No email was actually sent because a user could not be found using the provided email address {0} but we don''t mention this because we don''t malicious users to use the form to determine if there is an account associated with an email address.
passwdReset.illegalLink.tip=Your password reset link is not valid. If you need to reset your password, {0}click here{1} in order to request that your password to be reset again.
passwdReset.newPasswd.details=Please pick a strong password that matches the criteria below.
passwdReset.newPasswd=New Password
passwdReset.rePasswd=Retype Password
passwdReset.resetBtn=Continue
#loginpage.xhtml
login.System=Login System
login.forgot.text=Forgot your password?
login.builtin=Dataverse Account
login.institution=Institutional Account
login.institution.blurb=Log in or sign up with your institutional account — more <a href="{0}/{1}/user/account.html" title="Account Creation + Management - Dataverse User Guide" target="_blank" rel="noopener">information about account creation</a>.
login.institution.support.blurbwithLink=Leaving your institution? Please contact {0} for assistance.
login.builtin.credential.usernameOrEmail=Username/Email
login.builtin.credential.password=Password
login.builtin.invalidUsernameEmailOrPassword=The username, email address, or password you entered is invalid. Need assistance accessing your account?
login.signup.blurb=<a href="{0}">Sign up for a Dataverse account</a>.
login.echo.credential.name=Name
login.echo.credential.email=Email
login.echo.credential.affiliation=Affiliation
# how do we exercise login.error? Via a password upgrade failure? See https://github.com/IQSS/dataverse/pull/2922
login.error=Error validating the username, email address, or password. Please try again. If the problem persists, contact an administrator.
user.error.cannotChangePassword=Sorry, your password cannot be changed. Please contact your system administrator.
user.error.wrongPassword=Sorry, wrong password.
login.button=Log In with {0}
login.button.orcid=Create or Connect your ORCID
# authentication providers
auth.providers.title=Other options
auth.providers.tip=You can convert a Dataverse account to use one of the options above. More <a href="{0}/{1}/user/account.html" title="Account Creation + Management - Dataverse User Guide" target="_blank" rel="noopener">information about account creation</a>.
auth.providers.title.builtin=Username/Email
auth.providers.title.shib=Your Institution
auth.providers.title.orcid=ORCID
auth.providers.title.google=Google
auth.providers.title.github=GitHub
auth.providers.blurb=Log in or sign up with your {0} account — more <a href="{1}/{2}/user/account.html" title="Account Creation + Management - Dataverse User Guide" target="_blank" rel="noopener">information about account creation</a>. Having trouble? Please contact {3} for assistance.
auth.providers.persistentUserIdName.orcid=ORCID iD
auth.providers.persistentUserIdName.github=ID
auth.providers.persistentUserIdTooltip.orcid=ORCID provides a persistent digital identifier that distinguishes you from other researchers.
auth.providers.persistentUserIdTooltip.github=GitHub assigns a unique number to every user.
auth.providers.insufficientScope=Dataverse was not granted the permission to read user data from {0}.
auth.providers.exception.userinfo=Error getting the user info record from {0}.
auth.providers.token.failRetrieveToken=Dataverse could not retrieve an access token.
auth.providers.token.failParseToken=Dataverse could not parse the access token.
auth.providers.token.failGetUser=Dataverse could not get your user record. Please consult your administrator.
auth.providers.orcid.helpmessage1=ORCID is an open, non-profit, community-based effort to provide a registry of unique researcher identifiers and a transparent method of linking research activities and outputs to these identifiers. ORCID is unique in its ability to reach across disciplines, research sectors, and national boundaries and its cooperation with other identifier systems. Find out more at <a href="https://orcid.org/about" title="About ORCID" target="_blank" rel="noopener">orcid.org/about</a>.
auth.providers.orcid.helpmessage2=This repository uses your ORCID for authentication (so you don't need another username/password combination). Having your ORCID associated with your datasets also makes it easier for people to find the datasets you have published.
# Friendly AuthenticationProvider names
authenticationProvider.name.builtin=Dataverse
authenticationProvider.name.null=(provider is unknown)
authenticationProvider.name.github=GitHub
authenticationProvider.name.google=Google
authenticationProvider.name.orcid=ORCiD
authenticationProvider.name.orcid-sandbox=ORCiD Sandbox
authenticationProvider.name.shib=Shibboleth
#confirmemail.xhtml
confirmEmail.pageTitle=Email Verification
confirmEmail.submitRequest=Send Verification Email
confirmEmail.submitRequest.success=A verification email has been sent to {0}. Note, the verify link will expire after {1}.
confirmEmail.details.success=Email address verified!
confirmEmail.details.failure=We were unable to verify your email address: {0}. Please navigate to your Account Information page and click the "Send Verification Email" button.
confirmEmail.details.failure.invalidToken=Invalid token
confirmEmail.details.failure.lookupFailed=Lookup by token failed
confirmEmail.details.failure.tokenExpired=Token expired
confirmEmail.details.failure.userDeactivated=User deactivated
confirmEmail.details.failure.noToken=No token provided
confirmEmail.details.failure.noConfirmEmailDataFromToken=Problem processing token
confirmEmail.details.goToAccountPageButton=Go to Account Information
confirmEmail.notVerified=Not Verified
confirmEmail.verified=Verified
#shib.xhtml
shib.btn.convertAccount=Convert Account
shib.btn.createAccount=Create Account
shib.askToConvert=Would you like to convert your Dataverse account to always use your institutional log in?
# Bundle file editors, please note that "shib.welcomeExistingUserMessage" is used in a unit test
shib.welcomeExistingUserMessage=Your institutional log in for {0} matches an email address already being used for a Dataverse account. By entering your current Dataverse password below, your existing Dataverse account can be converted to use your institutional log in. After converting, you will only need to use your institutional log in.
# Bundle file editors, please note that "shib.welcomeExistingUserMessageDefaultInstitution" is used in a unit test
shib.welcomeExistingUserMessageDefaultInstitution=your institution
shib.dataverseUsername=Dataverse Username
shib.currentDataversePassword=Current Dataverse Password
shib.accountInformation=Account Information
shib.offerToCreateNewAccount=This information is provided by your institution and will be used to create your Dataverse account.
shib.passwordRejected=<strong>Validation Error</strong> - Your account can only be converted if you provide the correct password for your existing account. If your existing account has been deactivated by an administrator, you cannot convert your account.
# oauth2/firstLogin.xhtml
oauth2.btn.convertAccount=Convert Existing Account
oauth2.btn.createAccount=Create New Account
oauth2.askToConvert=Would you like to convert your Dataverse account to always use your institutional log in?
oauth2.welcomeExistingUserMessage=Your institutional log in for {0} matches an email address already being used for a Dataverse account. By entering your current Dataverse password below, your existing Dataverse account can be converted to use your institutional log in. After converting, you will only need to use your institutional log in.
oauth2.welcomeExistingUserMessageDefaultInstitution=your institution
oauth2.dataverseUsername=Dataverse Username
oauth2.currentDataversePassword=Current Dataverse Password
oauth2.chooseUsername=Username:
oauth2.passwordRejected=<strong>Validation Error</strong> - Wrong username or password.
# oauth2.newAccount.title=Account Creation
oauth2.newAccount.welcomeWithName=Welcome to Dataverse, {0}
oauth2.newAccount.welcomeNoName=Welcome to Dataverse
# oauth2.newAccount.email=Email
# oauth2.newAccount.email.tip=Dataverse uses this email to notify you of issues regarding your data.
oauth2.newAccount.suggestedEmails=Suggested Email Addresses:
oauth2.newAccount.username=Username
oauth2.newAccount.username.tip=This username will be your unique identifier as a Dataverse user.
oauth2.newAccount.explanation=This information is provided by {0} and will be used to create your {1} account. To log in again, you will have to use the {0} log in option.
oauth2.newAccount.suggestConvertInsteadOfCreate=If you already have a {0} account, you will need to <a href="/oauth2/convert.xhtml">convert your account.</a>
# oauth2.newAccount.tabs.convertAccount=Convert Existing Account
oauth2.newAccount.buttons.convertNewAccount=Convert Account
oauth2.newAccount.emailTaken=Email already taken. Consider merging the corresponding account instead.
oauth2.newAccount.emailOk=Email OK.
oauth2.newAccount.emailInvalid=Invalid email address.
# oauth2.newAccount.usernameTaken=Username already taken.
# oauth2.newAccount.usernameOk=Username OK.
# oauth2/convert.xhtml
# oauth2.convertAccount.title=Account Conversion
oauth2.convertAccount.explanation=Please enter your {0} account username or email and password to convert your account to the {1} log in option. <a href="{2}/{3}/user/account.html" target="_blank">Learn more</a> about converting your account.
oauth2.convertAccount.username=Existing username
oauth2.convertAccount.password=Password
oauth2.convertAccount.authenticationFailed=Your account can only be converted if you provide the correct username and password for your existing account. If your existing account has been deactivated by an administrator, you cannot convert your account.
oauth2.convertAccount.buttonTitle=Convert Account
oauth2.convertAccount.success=Your Dataverse account is now associated with your {0} account.
oauth2.convertAccount.failedDeactivated=Your existing account cannot be converted because it has been deactivated.
# oauth2/callback.xhtml
oauth2.callback.page.title=OAuth Callback
oauth2.callback.message=<strong>Authentication Error</strong> - Dataverse could not authenticate your login with the provider that you selected. Please make sure you authorize your account to connect with Dataverse. For more details about the information being requested, see the <a href="{0}/{1}/user/account.html#remote-authentication" title="Remote Authentication - Dataverse User Guide" target="_blank">User Guide</a>.
oauth2.callback.error.providerDisabled=This authentication method ({0}) is currently disabled. Please log in using one of the supported methods.
oauth2.callback.error.signupDisabledForProvider=Sorry, signup for new accounts using {0} authentication is currently disabled.
oauth2.callback.error.accountNotFound=You must be logged in to associate an ORCID with your account.
oauth2.callback.error.orcidInUse=This ORCID ({0}) is already associated with another user account.
# deactivated user accounts
deactivated.error=Sorry, your account has been deactivated.
# tab on dataverseuser.xhtml
apitoken.title=API Token
apitoken.message=Your API Token is valid for a year. Check out our {0}API Guide{1} for more information on using your API Token with the Dataverse APIs.
apitoken.notFound=API Token for {0} has not been created.
apitoken.expired.warning=This token is about to expire, please generate a new one.
apitoken.expired.error=This token is expired, please generate a new one.
apitoken.generateBtn=Create Token
apitoken.regenerateBtn=Recreate Token
apitoken.revokeBtn=Revoke Token
apitoken.expirationDate.label=Expiration Date
#dashboard.xhtml
dashboard.title=Dashboard
dashboard.card.harvestingclients.header=Harvesting Clients
dashboard.card.harvestingclients.btn.manage=Manage Clients
dashboard.card.harvestingclients.clients={0, choice, 0#Clients|1#Client|2#Clients}
dashboard.card.harvestingclients.datasets={0, choice, 0#Datasets|1#Dataset|2#Datasets}
dashboard.card.harvestingserver.header=Harvesting Server
dashboard.card.harvestingserver.enabled=OAI server enabled
dashboard.card.harvestingserver.disabled=OAI server disabled
dashboard.card.harvestingserver.status=Status
dashboard.card.harvestingserver.sets={0, choice, 0#Sets|1#Set|2#Sets}
dashboard.card.harvestingserver.btn.manage=Manage Server
dashboard.card.metadataexport.header=Metadata Export
dashboard.card.metadataexport.message=Dataset metadata export is only available through the {0} API. Learn more in the {0} {1}API Guide{2}.
dashboard.card.move.data=Data
dashboard.card.move.dataset.manage=Move Dataset
dashboard.card.move.dataverse.manage=Move Dataverse
#harvestclients.xhtml
harvestclients.title=Manage Harvesting Clients
harvestclients.toptip=Harvesting can be scheduled to run at a specific time or on demand. Harvesting can be initiated here or via the REST API.
harvestclients.noClients.label=No clients are configured.
harvestclients.noClients.why.header=What is Harvesting?
harvestclients.noClients.why.reason1=Harvesting is a process of exchanging metadata with other repositories. As a harvesting <b><i>client</i></b>, your Dataverse gathers metadata records from remote sources. These can be other Dataverse instances, or other archives that support OAI-PMH, the standard harvesting protocol.
harvestclients.noClients.why.reason2=Harvested metadata records are searchable by users. Clicking on a harvested dataset in the search results takes the user to the original repository. Harvested datasets cannot be edited in your Dataverse installation.
harvestclients.noClients.how.header=How To Use Harvesting
harvestclients.noClients.how.tip1=To harvest metadata, a <i>Harvesting Client</i> is created and configured for each remote repository. Note that when creating a client you will need to select an existing local dataverse to host harvested datasets.
harvestclients.noClients.how.tip2=Harvested records can be kept in sync with the original repository through scheduled incremental updates, for example, daily or weekly. Alternatively, harvests can be run on demand, from this page or via the REST API.
harvestclients.noClients.getStarted=To get started, click on the Add Client button above. To learn more about Harvesting, visit the <a href="{0}/{1}/admin/dashboard.html#harvesting" title="Harvesting - Dataverse Admin Guide" target="_blank">Harvesting</a> section on the Dashboard page of the Admin Guide.
harvestclients.btn.add=Add Client
harvestclients.tab.header.name=Nickname
harvestclients.tab.header.url=URL
harvestclients.tab.header.lastrun=Last Run
harvestclients.tab.header.lastresults=Last Result
harvestclients.tab.header.action=Actions
harvestclients.tab.header.action.btn.run=Run Harvesting
harvestclients.tab.header.action.btn.edit=Edit
harvestclients.tab.header.action.btn.delete=Delete
harvestclients.tab.header.action.btn.delete.dialog.header=Delete Harvesting Client
harvestclients.tab.header.action.btn.delete.dialog.warning=Are you sure you want to delete the harvesting client "{0}"? Deleting the client will delete all datasets harvested from this remote server.
harvestclients.tab.header.action.btn.delete.dialog.tip=Note, this action may take a while to process, depending on the number of harvested datasets.
harvestclients.tab.header.action.delete.infomessage=Harvesting client is being deleted. Note, that this may take a while, depending on the amount of harvested content.
harvestclients.actions.runharvest.success=Successfully started an asynchronous harvest for client "{0}" . Please reload the page to check on the harvest results.
harvestclients.newClientDialog.step1=Step 1 of 4 - Client Information
harvestclients.newClientDialog.title.new=Create Harvesting Client
harvestclients.newClientDialog.help=Configure a client to harvest content from a remote server.
harvestclients.newClientDialog.nickname=Nickname
harvestclients.newClientDialog.nickname.helptext=Consists of letters, digits, underscores (_) and dashes (-).
harvestclients.newClientDialog.nickname.required=Client nickname cannot be empty!
harvestclients.newClientDialog.nickname.invalid=Client nickname can contain only letters, digits, underscores (_) and dashes (-); and must be at most 30 characters.
harvestclients.newClientDialog.nickname.alreadyused=This nickname is already used.
harvestclients.newClientDialog.sourcename=Source Name
harvestclients.newClientDialog.sourcename.helptext=When the feature flag "index-harvested-metadata-source" is enabled, the source name will override the nickname in the "Metadata Source" facet. You can group multiple harvesting clients together under that facet by using the same source name.
harvestclients.newClientDialog.customHeader=Custom HTTP Header
harvestclients.newClientDialog.customHeader.helptext=(Optional) Custom HTTP header to add to requests, if required by this OAI server.
harvestclients.newClientDialog.customHeader.watermark=Enter an http header, as in header-name: header-value
harvestclients.newClientDialog.customHeader.invalid=Client header name can only contain letters, digits, underscores (_) and dashes (-); the entire header string must be in the form of "header-name: header-value"
harvestclients.newClientDialog.type=Server Protocol
harvestclients.newClientDialog.type.helptext=Only the OAI server protocol is currently supported.
harvestclients.newClientDialog.type.OAI=OAI
harvestclients.newClientDialog.type.Nesstar=Nesstar
harvestclients.newClientDialog.url=Server URL
harvestclients.newClientDialog.url.tip=URL of a harvesting resource.
harvestclients.newClientDialog.url.watermark=Remote harvesting server, http://...
harvestclients.newClientDialog.url.helptext.notvalidated=URL of a harvesting resource. Once you click 'Next', we will try to establish a connection to the server in order to verify that it is working, and to obtain extra information about its capabilities.
harvestclients.newClientDialog.url.required=A valid harvesting server address is required.
harvestclients.newClientDialog.url.invalid=Invalid URL. Failed to establish connection and receive a valid server response.
harvestclients.newClientDialog.url.noresponse=Failed to establish connection to the server.
harvestclients.newClientDialog.url.badresponse=Invalid response from the server.
harvestclients.newClientDialog.dataverse=Local Dataverse
harvestclients.newClientDialog.dataverse.tip=Dataverse that will host the datasets harvested from this remote resource.
harvestclients.newClientDialog.dataverse.menu.enterName=Enter Dataverse Alias
harvestclients.newClientDialog.dataverse.menu.header=Dataverse Name (Affiliate), Alias
harvestclients.newClientDialog.dataverse.menu.invalidMsg=No matches found
harvestclients.newClientDialog.dataverse.required=You must select an existing dataverse for this harvesting client.
harvestclients.newClientDialog.step2=Step 2 of 4 - Format
harvestclients.newClientDialog.oaiSets=OAI Set
harvestclients.newClientDialog.oaiSets.tip=Harvesting sets offered by this OAI server.
harvestclients.newClientDialog.oaiSets.noset=None
harvestclients.newClientDialog.oaiSets.helptext=Selecting "none" will harvest the default set, as defined by the server. Often this will be the entire body of content across all sub-sets.
harvestclients.newClientDialog.oaiSets.helptext.noset=This OAI server does not support named sets. The entire body of content offered by the server will be harvested.
harvestclients.newClientDialog.oaiSets.listTruncated=Please note that the remote server was taking too long to return the full list of available OAI sets, so the list was truncated. Please select a set from the current list (or select the "no set" option), and try again later, if you need to change it.
harvestclients.newClientDialog.oaiMetadataFormat=Metadata Format
harvestclients.newClientDialog.oaiMetadataFormat.tip=Metadata formats offered by the remote server.
harvestclients.newClientDialog.oaiMetadataFormat.required=Please select the metadata format to harvest from this archive.
harvestclients.newClientDialog.step3=Step 3 of 4 - Schedule
harvestclients.newClientDialog.schedule=Schedule
harvestclients.newClientDialog.schedule.tip=Schedule harvesting to run automatically daily or weekly.
harvestclients.newClientDialog.schedule.time.none.helptext=Leave harvesting unscheduled to run on demand only.
harvestclients.newClientDialog.schedule.none=None
harvestclients.newClientDialog.schedule.daily=Daily
harvestclients.newClientDialog.schedule.weekly=Weekly
harvestclients.newClientDialog.schedule.time=Time
harvestclients.newClientDialog.schedule.day=Day
harvestclients.newClientDialog.schedule.time.am=AM
harvestclients.newClientDialog.schedule.time.pm=PM
harvestclients.newClientDialog.schedule.time.helptext=Scheduled times are in your local time.
harvestclients.newClientDialog.btn.create=Create Client
harvestclients.newClientDialog.success=Successfully created harvesting client "{0}".
harvestclients.newClientDialog.step4=Step 4 of 4 - Display
harvestclients.newClientDialog.harvestingStyle=Archive Type
harvestclients.newClientDialog.harvestingStyle.tip=Type of remote archive.
harvestclients.newClientDialog.harvestingStyle.helptext=Select the archive type that best describes this remote server in order to properly apply formatting rules and styles to the harvested metadata as they are shown in the search results. Note that improperly selecting the type of the remote archive can result in incomplete entries in the search results, and a failure to redirect the user to the archival source of the data.
harvestclients.newClientDialog.harvestingStyle.required=Please select one of the values from the menu.
harvestclients.viewEditDialog.title=Edit Harvesting Client
harvestclients.viewEditDialog.archiveUrl=Archive URL
harvestclients.viewEditDialog.archiveUrl.tip=The URL of the archive that serves the data harvested by this client, which is used in search results for links to the original sources of the harvested content.
harvestclients.viewEditDialog.archiveUrl.helptext=Edit if this URL differs from the Server URL.
harvestclients.viewEditDialog.archiveDescription=Archive Description
harvestclients.viewEditDialog.archiveDescription.tip=Description of the archival source of the harvested content, displayed in search results.
harvestclients.viewEditDialog.archiveDescription.default.generic=This Dataset is harvested from our partners. Clicking the link will take you directly to the archival source of the data.
harvestclients.viewEditDialog.btn.save=Save Changes
harvestclients.newClientDialog.title.edit=Edit Group {0}
harvestclients.result.completed=Completed
harvestclients.result.completedWithFailures=Completed with failures
harvestclients.result.failure=FAILED
harvestclients.result.inProgess=IN PROGRESS
harvestclients.result.deleteInProgress=DELETE IN PROGRESS
harvestclients.result.interrupted=INTERRUPTED
harvestclients.result.details={0} harvested, {1} deleted, {2} failed.
#harvestset.xhtml
harvestserver.title=Manage Harvesting Server
harvestserver.toptip=Define sets of local datasets that will be available for harvesting by remote clients.
harvestserver.service.label=OAI Server
harvestserver.service.enabled=Enabled
harvestserver.service.disabled=Disabled
harvestserver.service.disabled.msg=Harvesting Server is currently disabled.
harvestserver.service.empty=No sets are configured.
harvestserver.service.enable.success=OAI Service has been successfully enabled.
harvestserver.noSets.why.header=What is a Harvesting Server?
harvestserver.noSets.why.reason1=Harvesting is a process of exchanging metadata with other repositories. As a harvesting <b><i>server</i></b>, your Dataverse can make some of the local dataset metadata available to remote harvesting clients. These can be other Dataverse instances, or any other clients that support OAI-PMH harvesting protocol.
harvestserver.noSets.why.reason2=Only the published, unrestricted datasets in your Dataverse can be harvested. Remote clients normally keep their records in sync through scheduled incremental updates, daily or weekly, thus minimizing the load on your server. Note that it is only the metadata that are harvested. Remote harvesters will generally not attempt to download the data files themselves.
harvestserver.noSets.how.header=How to run a Harvesting Server?
harvestserver.noSets.how.tip1=Harvesting server can be enabled or disabled on this page.
harvestserver.noSets.how.tip2=Once the service is enabled, you can define collections of local datasets that will be available to remote harvesters as <i>OAI Sets</i>. Sets are defined by search queries (for example, authorName:king; or parentId:1234 - to select all the datasets that belong to the dataverse specified; or dsPersistentId:"doi:1234/" to select all the datasets with the persistent identifier authority specified). Consult the Search API section of the Dataverse User Guide for more information on the search queries.
harvestserver.noSets.getStarted=To get started, enable the OAI server and click on the Add Set button. To learn more about Harvesting, visit the <a href="{0}/{1}/admin/dashboard.html#harvesting" title="Harvesting - Dataverse Admin Guide" target="_blank">Harvesting</a> section on the Dashboard page of the Admin Guide.
harvestserver.btn.add=Add Set
harvestserver.tab.header.spec=OAI setSpec
harvestserver.tab.col.spec.default=DEFAULT
harvestserver.tab.header.description=Description
harvestserver.tab.header.definition=Definition Query
harvestserver.tab.col.definition.default=All Published Local Datasets
harvestserver.tab.header.stats=Datasets
harvestserver.tab.col.stats.empty=No active records ({2} {2, choice, 0#records|1#record|2#records} marked as deleted)
harvestserver.tab.col.stats.results={0} {0, choice, 0#datasets|1#dataset|2#datasets} ({1} {1, choice, 0#records|1#record|2#records} exported, {2} marked as deleted)
harvestserver.tab.header.action=Actions
harvestserver.tab.header.action.btn.export=Run Export
harvestserver.actions.runreexport.success=Successfully started an asynchronous re-export job for OAI set "{0}" (please reload the page to check on the export progress).
harvestserver.tab.header.action.btn.edit=Edit
harvestserver.tab.header.action.btn.delete=Delete
harvestserver.tab.header.action.btn.delete.dialog.header=Delete Harvesting Set
harvestserver.tab.header.action.btn.delete.dialog.tip=Are you sure you want to delete the OAI set "{0}"? You cannot undo a delete!
harvestserver.tab.header.action.delete.infomessage=Selected harvesting set is being deleted. (this may take a few moments)
harvestserver.newSetDialog.title.new=Create Harvesting Set
harvestserver.newSetDialog.help=Define a set of local datasets available for harvesting to remote clients.
harvestserver.newSetDialog.setspec=Name/OAI setSpec
harvestserver.newSetDialog.setspec.tip=A unique name (OAI setSpec) identifying this set.
harvestserver.newSetDialog.setspec.helptext=Consists of letters, digits, underscores (_) and dashes (-).
harvestserver.editSetDialog.setspec.helptext=The name can not be changed once the set has been created.
harvestserver.editSetDialog.setspec.helptext.default=this is the default, unnamed set
harvestserver.editSetDialog.setspec.notFound=Set for editing not found!
harvestserver.editSetDialog.setspec.noChanges=Invalid update! You must provide a definition and/or description to be updated.
harvestserver.newSetDialog.setspec.required=Name (OAI setSpec) cannot be empty!
harvestserver.newSetDialog.setspec.invalid=Name (OAI setSpec) can contain only letters, digits, underscores (_) and dashes (-).
harvestserver.newSetDialog.setspec.alreadyused=This set name (OAI setSpec) is already used.
harvestserver.newSetDialog.setspec.sizelimit=This set name (OAI setSpec) may be no longer than 30 characters.
harvestserver.newSetDialog.setspec.superUser.required=Only superusers may create OAI sets.
harvestserver.newSetDialog.setdescription=Description
harvestserver.newSetDialog.setdescription.tip=Provide a brief description for this OAI set.
harvestserver.newSetDialog.setdescription.required=Set description cannot be empty!
harvestserver.newSetDialog.setdescription.default=The default, "no name" set. The OAI server will serve the records from this set when no "setspec" argument is specified by the client.
harvestserver.newSetDialog.setquery=Definition Query
harvestserver.newSetDialog.setquery.tip=Search query that defines the content of the dataset.
harvestserver.newSetDialog.setquery.helptext=Example query: authorName:king
harvestserver.newSetDialog.setquery.required=Search query cannot be left empty!
harvestserver.newSetDialog.setquery.results=Search query returned {0} datasets!
harvestserver.newSetDialog.setquery.empty=WARNING: Search query returned no results!
harvestserver.newSetDialog.btn.create=Create Set
harvestserver.newSetDialog.success=Successfully created harvesting set "{0}".
harvestserver.viewEditDialog.title=Edit Harvesting Set
harvestserver.viewEditDialog.btn.save=Save Changes
harvestserver.deleteSetDialog.setspec.superUser.required=Only superusers may delete OAI sets.
#dashboard-users.xhtml
dashboard.card.users=Users
dashboard.card.users.header=Dashboard - User List
dashboard.card.users.super=Superusers
dashboard.card.users.manage=Manage Users
dashboard.card.users.message=List and manage users.
dashboard.list_users.searchTerm.watermark=Search these users...
dashboard.list_users.tbl_header.userId=ID
dashboard.list_users.tbl_header.userIdAZ=ID (A-Z)
dashboard.list_users.tbl_header.userIdZA=ID (Z-A)
dashboard.list_users.tbl_header.userIdentifier=Username
dashboard.list_users.tbl_header.userIdentifierAZ=Username (A-Z)
dashboard.list_users.tbl_header.userIdentifierZA=Username (Z-A)
dashboard.list_users.tbl_header.name=Name
dashboard.list_users.tbl_header.lastName=Last Name
dashboard.list_users.tbl_header.lastNameAZ=Last Name (A-Z)
dashboard.list_users.tbl_header.lastNameZA=Last Name (Z-A)
dashboard.list_users.tbl_header.firstName=First Name
dashboard.list_users.tbl_header.email=Email
dashboard.list_users.tbl_header.emailAZ=Email (A-Z)
dashboard.list_users.tbl_header.emailZA=Email (Z-A)
dashboard.list_users.tbl_header.affiliation=Affiliation
dashboard.list_users.tbl_header.affiliationAZ=Affiliation (A-Z)
dashboard.list_users.tbl_header.affiliationZA=Affiliation (Z-A)
dashboard.list_users.tbl_header.roles=Roles
dashboard.list_users.tbl_header.position=Position
dashboard.list_users.tbl_header.isSuperuser=Superuser
dashboard.list_users.tbl_header.superuserAZ=Superuser (A-Z)
dashboard.list_users.tbl_header.superuserZA=Superuser (Z-A)
dashboard.list_users.tbl_header.authProviderFactoryAlias=Authentication
dashboard.list_users.tbl_header.authProviderFactoryAliasAZ=Authentication (A-Z)
dashboard.list_users.tbl_header.authProviderFactoryAliasZA=Authentication (Z-A)
dashboard.list_users.tbl_header.createdTime=Created Time
dashboard.list_users.tbl_header.lastLoginTime=Last Login Time
dashboard.list_users.tbl_header.lastApiUseTime=Last API Use Time
dashboard.list_users.tbl_header.deactivated=deactivated
dashboard.list_users.tbl_header.roles.removeAll=Remove All
dashboard.list_users.tbl_header.roles.removeAll.header=Remove All Roles
dashboard.list_users.tbl_header.roles.removeAll.confirmationText=Are you sure you want to remove all roles for user {0}?
dashboard.list_users.removeAll.message.success=All roles have been removed for user {0}.
dashboard.list_users.removeAll.message.failure=Failed to remove roles for user {0}.
dashboard.list_users.toggleSuperuser=Edit Superuser Status
dashboard.list_users.toggleSuperuser.confirmationText.add=Are you sure you want to enable superuser status for user {0}?
dashboard.list_users.toggleSuperuser.confirmationText.remove=Are you sure you want to disable superuser status for user {0}?
dashboard.list_users.api.auth.invalid_apikey=The API key is invalid.
dashboard.list_users.api.auth.not_superuser=Forbidden. You must be a superuser.
#dashboard-movedataset.xhtml
dashboard.move.dataset.header=Dashboard - Move Data
dashboard.move.dataset.message=Manage and curate your installation by moving datasets from one host dataverse to another. See also <a href="{0}/{1}/admin/dataverses-datasets.html">Managing Datasets and Dataverses</a> in the Admin Guide.
dashboard.move.dataset.selectdataset.header=Dataset to move
dashboard.move.dataset.newdataverse.header=New dataverse collection host
dashboard.move.dataset.dataset.label=Dataset
dashboard.move.dataset.dataverse.label=Dataverse
dashboard.move.dataset.confirm.dialog=Are you sure you want to move this dataset?
dashboard.move.dataset.confirm.yes=Yes, move this dataset
dashboard.move.dataset.message.success=The dataset "{0}" ({1}) has been successfully moved to {2}.
dashboard.move.dataset.message.failure.summary=Failed to moved dataset
dashboard.move.dataset.message.failure.details=The dataset "{0}" ({1}) could not be moved to {2}. {3}{4}
dashboard.move.dataset.dataverse.placeholder=Enter Dataverse Identifier...
dashboard.move.dataset.dataverse.menu.header=Dataverse Name (Affiliate), Identifier
dashboard.move.dataset.dataverse.menu.invalidMsg=No matches found
dashboard.move.dataset.placeholder=Enter Dataset Persistent ID, doi:...
dashboard.move.dataset.menu.header=Dataset Persistent ID, Title, Host Dataverse Identifier
dashboard.move.dataset.menu.invalidMsg=No matches found
dashboard.move.dataset.command.error.targetDataverseUnpublishedDatasetPublished=A published dataset may not be moved to an unpublished dataverse. You can retry the move after publishing {0}.
dashboard.move.dataset.command.error.targetDataverseSameAsOriginalDataverse=This dataset is already in this dataverse.
dashboard.move.dataset.command.error.unforced.datasetGuestbookNotInTargetDataverse=The guestbook would be removed from this dataset if you moved it because the guestbook is not in the new host dataverse.
dashboard.move.dataset.command.error.unforced.linkedToTargetDataverseOrOneOfItsParents=This dataset is linked to the new host dataverse or one of its parents. This move would remove the link to this dataset.
dashboard.move.dataset.command.error.unforced.suggestForce=Forcing this move is currently only available via API. Please see "Move a Dataset" under <a href="{0}/{1}/admin/dataverses-datasets.html">Managing Datasets and Dataverses</a> in the Admin Guide for details.
#dashboard-movedataverse.xhtml
dashboard.move.dataverse.header=Dashboard - Move Data
dashboard.move.dataverse.message.summary=Move Dataverse Collection
dashboard.move.dataverse.message.detail=Manage and curate your installation by moving a dataverse collection from one host dataverse collection to another. See also <a href="{0}/{1}/admin/dataverses-datasets.html">Managing Datasets and Dataverses</a> in the Admin Guide.
dashboard.move.dataverse.selectdataverse.header=Dataverse collection to move
dashboard.move.dataverse.newdataverse.header=New dataverse collection host
dashboard.move.dataverse.label=Dataverse
dashboard.move.dataverse.confirm.dialog=Are you sure you want to move this dataverse collection?
dashboard.move.dataverse.confirm.yes=Yes, move this collection
dashboard.move.dataverse.message.success=The dataverse "{0}" has been successfully moved to {1}.
dashboard.move.dataverse.message.failure.summary=Failed to moved dataverse
dashboard.move.dataverse.message.failure.details=The dataverse "{0}" could not be moved to {1}. {2}
dashboard.move.dataverse.placeholder=Enter Dataverse Identifier...
dashboard.move.dataverse.menu.header=Dataverse Name (Affiliate), Identifier
dashboard.move.dataverse.menu.invalidMsg=No matches found
#MailServiceBean.java
notification.email.create.dataverse.subject={0}: Your dataverse has been created
notification.email.create.dataset.subject={0}: Dataset "{1}" has been created
notification.email.dataset.created.subject={0}: Dataset "{1}" has been created
notification.email.request.file.access.subject={0}: {1} {2} ({3}) requested access to dataset "{4}"
notification.email.requested.file.access.subject={0}: You have requested access to a restricted file in dataset "{1}"
notification.email.grant.file.access.subject={0}: You have been granted access to a restricted file
notification.email.rejected.file.access.subject={0}: Your request for access to a restricted file has been rejected
notification.email.submit.dataset.subject={0}: Dataset "{1}" has been submitted for review
notification.email.publish.dataset.subject={0}: Dataset "{1}" has been published
notification.email.publishFailure.dataset.subject={0}: Failed to publish your dataset "{1}"
notification.email.returned.dataset.subject={0}: Dataset "{1}" has been returned
notification.email.workflow.success.subject={0}: Dataset "{1}" has been processed
notification.email.workflow.success=A workflow running on {0} (view at {1} ) succeeded: {2}
notification.email.workflow.failure.subject={0}: Failed to process your dataset "{1}"
notification.email.workflow.failure=A workflow running on {0} (view at {1} ) failed: {2}
notification.email.status.change.subject={0}: Dataset "{1}" Status Change
notification.email.status.change=The Status of the dataset ({0}) has changed to {1}
notification.email.pid.reconciled.subject={0}: Dataset "{1}" persistent identifier change
notification.email.pid.reconciled=The persistent identifier of dataset {0} has been updated to `{1}`.
notification.email.workflow.nullMessage=No additional message sent from the workflow.
notification.email.create.account.subject={0}: Your account has been created
notification.email.assign.role.subject={0}: You have been assigned a role
notification.email.revoke.role.subject={0}: Your role has been revoked
notification.email.verifyEmail.subject={0}: Verify your email address
notification.email.ingestCompleted.subject={0}: Dataset "{1}" status
notification.email.ingestCompletedWithErrors.subject={0}: Dataset "{1}" status
notification.email.greeting=Hello, \n
notification.email.greeting.html=Hello, <br>
# Bundle file editors, please note that "notification.email.welcome" is used in a unit test
notification.email.welcome=Welcome to {0}! Get started by adding or finding data. Have questions? Check out the User Guide at {1}/{2}/user or contact {3} at {4} for assistance.
notification.email.welcomeConfirmEmailAddOn=\n\nPlease verify your email address at {0} . Note, the verify link will expire after {1}. Send another verification email by visiting your account page.
notification.email.requestFileAccess=File access requested for dataset: {0} by {1} ({2}). Manage permissions at {3} .
notification.email.requestFileAccess.guestbookResponse=<br><br>Guestbook Response:<br><br>{0}
notification.email.grantFileAccess=Access granted for files in dataset: {0} (view at {1} ).
notification.email.rejectFileAccess=Your request for access was rejected for the requested files in the dataset: {0} (view at {1} ). If you have any questions about why your request was rejected, you may reach the dataset owner using the "Contact" link on the upper right corner of the dataset page.
# Bundle file editors, please note that "notification.email.createDataverse" is used in a unit test
notification.email.createDataverse=Your new dataverse named {0} (view at {1} ) was created in {2} (view at {3} ). To learn more about what you can do with your dataverse, check out the Dataverse Management - User Guide at {4}/{5}/user/dataverse-management.html .
# Bundle file editors, please note that "notification.email.createDataset" is used in a unit test
notification.email.createDataset=Your new dataset named {0} (view at {1} ) was created in {2} (view at {3} ). To learn more about what you can do with a dataset, check out the Dataset Management - User Guide at {4}/{5}/user/dataset-management.html .
notification.email.wasSubmittedForReview=Your dataset named {0} (view at {1} ) was submitted for review to be published in {2} (view at {3} ). Don''t forget to publish it or send it back to the contributor, {4} ({5})\!
notification.email.wasReturnedByReviewer=Your dataset named {0} (view at {1} ) was returned by the curator of {2} (view at {3} ).
notification.email.wasReturnedByReviewerReason=Here is the curator comment: {0}
notification.email.wasReturnedByReviewer.collectionContacts=You may contact the collection administrator for more information: {0}
notification.email.wasPublished=Your dataset named {0} (view at {1} ) was published in {2} (view at {3} ).
notification.email.publishFailedPidReg=Your dataset named {0} (view at {1} ) in {2} (view at {3} ) could not be published due to a failure to register, or update the Global Identifier for the dataset or one of the files in it. Contact support if this continues to happen.
notification.email.closing=\n\nYou may contact us for support at {0}.\n\nThank you,\n{1}
notification.email.closing.html=<br><br>You may contact us for support at {0}.<br><br>Thank you,<br>{1}
notification.email.assignRole=You are now {0} for the {1} "{2}" (view at {3} ).
notification.email.revokeRole=One of your roles for the {0} "{1}" has been revoked (view at {2} ).
notification.email.changeEmail=Hello, {0}.{1}\n\nPlease contact us if you did not intend this change or if you need assistance.
notification.email.passwordReset=Hi {0},\n\nSomeone, hopefully you, requested a password reset for {1}.\n\nPlease click the link below to reset your Dataverse account password:\n\n {2} \n\n The link above will only work for the next {3} minutes.\n\n Please contact us if you did not request this password reset or need further help.
notification.email.passwordReset.subject=Dataverse Password Reset Requested
notification.email.datasetWasCreated=Dataset "<a href = "{0}">{1}</a>" was just created by {2} in the {3} collection.
notification.email.requestedFileAccess=You have requested access to a file(s) in dataset "<a href = "{0}">{1}</a>". Your request has been sent to the managers of this dataset who will grant or reject your request. If you have any questions, you may reach the dataset managers using the "Contact" link on the upper right corner of the dataset page.
hours=hours
hour=hour
minutes=minutes
minute=minute
notification.email.checksumfail.subject={0}: Your upload failed checksum validation
notification.email.import.filesystem.subject=Dataset {0} has been successfully uploaded and verified
notification.email.import.checksum.subject={0}: Your file checksum job has completed
contact.delegation={0} on behalf of {1}
contact.delegation.default_personal=Dataverse Installation Admin
notification.email.info.unavailable=Unavailable
notification.email.apiTokenGenerated=Hello {0} {1},\n\nAPI Token has been generated. Please keep it secure as you would do with a password.
notification.email.apiTokenGenerated.subject=API Token was generated
notification.email.datasetWasMentioned=Hello {0},<br><br> The {1} has just been notified that the {2}, <a href=''{3}''>{4}</a>, {5} "<a href=''{6}/dataset.xhtml?persistentId={7}''>{8}</a>" in this repository.
notification.email.datasetWasMentioned.subject={0}: A Dataset Relationship has been reported!
notification.email.globus.uploadCompleted.subject={0}: Files uploaded successfully via Globus and verified
notification.email.globus.downloadCompleted.subject={0}: Files downloaded successfully via Globus
notification.email.globus.downloadCompletedWithErrors.subject={0}: Globus download task completed, errors encountered
notification.email.globus.uploadCompletedWithErrors.subject={0}: Globus upload task completed with errors
notification.email.globus.uploadFailedRemotely.subject={0}: Failed to upload files via Globus
notification.email.globus.uploadFailedLocally.subject={0}: Failed to add files uploaded via Globus to dataset
# dataverse.xhtml
dataverse.name=Dataverse Name
dataverse.name.title=The project, department, university, professor, or journal this dataverse will contain data for.
dataverse.enterName=Enter name...
dataverse.host.title=The dataverse which contains this data.
dataverse.host.tip=Changing the host dataverse will clear any fields you may have entered data into.
dataverse.host.autocomplete.nomatches=No matches
dataverse.identifier.title=Short name used for the URL of this dataverse.
dataverse.affiliation.title=The organization with which this dataverse is affiliated.
dataverse.storage.title=A storage service to be used for datasets in this dataverse.
dataverse.metadatalanguage.title=Metadata entered for datasets in this dataverse will be assumed to be in the selected language.
dataverse.curationLabels.title=A set of curation status labels that are used to indicate the curation status of draft datasets.
dataverse.curationLabels.disabled=Disabled
dataverse.category=Category
dataverse.category.title=The type that most closely reflects this dataverse.
dataverse.guestbookentryatrequest.title=Whether Guestbooks (when configured for a dataset) are displayed to users when they request file access or when they download files.
dataverse.pidProvider.title=The source of PIDs (DOIs, Handles, etc.) when a new PID is created.
dataverse.type.selectTab.top=Select one...
dataverse.type.selectTab.researchers=Researcher
dataverse.type.selectTab.researchProjects=Research Project
dataverse.type.selectTab.journals=Journal
dataverse.type.selectTab.organizationsAndInsitutions=Organization or Institution
dataverse.type.selectTab.teachingCourses=Teaching Course
dataverse.type.selectTab.uncategorized=Uncategorized
dataverse.type.selectTab.researchGroup=Research Group
dataverse.type.selectTab.laboratory=Laboratory
dataverse.type.selectTab.department=Department
dataverse.description.title=A summary describing the purpose, nature, or scope of this dataverse.
dataverse.email=Email
dataverse.email.title=The e-mail address(es) of the contact(s) for the dataverse.
dataverse.share.dataverseShare=Share Dataverse
dataverse.share.dataverseShare.tip=Share this dataverse on your favorite social media networks.
dataverse.share.dataverseShare.shareText=View this dataverse.
dataverse.subject.title=Subject(s) covered in this dataverse.
dataverse.metadataElements=Metadata Fields
dataverse.metadataElements.tip=Choose the metadata fields to use in dataset templates and when adding a dataset to this dataverse.
dataverse.metadataElements.from.tip=Use metadata fields from {0}
dataverse.resetModifications=Reset Modifications
dataverse.resetModifications.text=Are you sure you want to reset the selected metadata fields? If you do this, any customizations (hidden, required, optional) you have done will no longer appear.
dataverse.field.required=(Required)
dataverse.field.example1= (Examples:
dataverse.field.example2=)
dataverse.field.set.tip=[+] View fields + set as hidden, required, or optional
dataverse.field.set.view=[+] View fields
dataverse.field.requiredByDataverse=Required by Dataverse
dataverse.facetPickList.text=Browse/Search Facets
dataverse.facetPickList.tip=Choose the metadata fields to use as facets for browsing datasets and dataverses in this dataverse.
dataverse.facetPickList.facetsFromHost.text=Use browse/search facets from {0}
dataverse.facetPickList.metadataBlockList.all=All Metadata Fields
dataverse.edit=Edit
dataverse.option.generalInfo=General Information
dataverse.option.themeAndWidgets=Theme + Widgets
dataverse.option.featuredDataverse=Featured Dataverses
dataverse.option.permissions=Permissions
dataverse.option.dataverseGroups=Groups
dataverse.option.datasetTemplates=Dataset Templates
dataverse.option.datasetGuestbooks=Dataset Guestbooks
dataverse.option.deleteDataverse=Delete Dataverse
dataverse.publish.btn=Publish
dataverse.publish.header=Publish Dataverse
dataverse.nopublished=No Published Dataverses
dataverse.nopublished.tip=In order to use this feature you must have at least one published or linked dataverse.
dataverse.contact=Email Dataverse Contact
dataverse.link=Link Dataverse
dataverse.link.btn.tip=Link to Your Dataverse
dataverse.link.yourDataverses=Your Dataverse
dataverse.link.yourDataverses.inputPlaceholder=Enter Dataverse Name
dataverse.link.save=Save Linked Dataverse
dataverse.link.dataverse.choose=Choose which of your dataverses you would like to link this dataverse to.
dataverse.link.dataset.choose=Enter the name of the dataverse you would like to link this dataset to. If you need to remove this link in the future, please contact {0}.
dataverse.link.dataset.none=No linkable dataverses available.
dataverse.link.no.choice=You have one dataverse you can add linked dataverses and datasets in.
dataverse.link.no.linkable=To be able to link a dataverse or dataset, you need to have your own dataverse. Create a dataverse to get started.
dataverse.link.no.linkable.remaining=You have already linked all of your eligible dataverses.
dataverse.unlink.dataset.choose=Enter the name of the dataverse you would like to unlink this dataset from.
dataverse.unlink.dataset.none=No linked dataverses available.
dataverse.savedsearch.link=Link Search
dataverse.savedsearch.searchquery=Search
dataverse.savedsearch.filterQueries=Facets
dataverse.savedsearch.save=Save Linked Search
dataverse.savedsearch.dataverse.choose=Choose which of your dataverses you would like to link this search to.
dataverse.savedsearch.no.choice=You have one dataverse to which you may add a saved search.
# Bundle file editors, please note that "dataverse.savedsearch.save.success" is used in a unit test
dataverse.saved.search.success=The saved search has been successfully linked to {0}.
dataverse.saved.search.failure=The saved search was not able to be linked.
dataverse.linked.success= {0} has been successfully linked to {1}.
dataverse.linked.success.wait= {0} has been successfully linked to {1}. Please wait for its contents to appear.
dataverse.linked.internalerror={0} has been successfully linked to {1} but contents will not appear until an internal error has been fixed.
dataverse.linked.error.alreadyLinked={0} has already been linked to {1}.
dataverse.unlinked.success= {0} has been successfully unlinked from {1}.
dataverse.page.pre=Previous
dataverse.page.next=Next
dataverse.byCategory=Dataverses by Category
dataverse.displayFeatured=Display the dataverses selected below on the landing page of this dataverse.
dataverse.selectToFeature=Select dataverses to feature on the landing page of this dataverse.
dataverse.publish.tip=Are you sure you want to publish your dataverse? Once you do so it must remain published.
dataverse.publish.failed.tip=This dataverse cannot be published because the dataverse it is in has not been published.
dataverse.publish.failed=Cannot publish dataverse.
dataverse.publish.success=Your dataverse is now public.
dataverse.publish.failure=This dataverse was not able to be published.
dataverse.delete.tip=Are you sure you want to delete your dataverse? You cannot undelete this dataverse.
dataverse.delete=Delete Dataverse
dataverse.delete.success=Your dataverse has been deleted.
dataverse.delete.failure=This dataverse was not able to be deleted.
# Bundle file editors, please note that "dataverse.create.success" is used in a unit test because it's so fancy with two parameters
dataverse.create.success=You have successfully created your dataverse! To learn more about what you can do with your dataverse, check out the <a href="{0}/{1}/user/dataverse-management.html" title="Dataverse Management - Dataverse User Guide" target="_blank">User Guide</a>.
dataverse.create.failure=This dataverse was not able to be created.
dataverse.create.authenticatedUsersOnly=Only authenticated users can create dataverses.
dataverse.update.success=You have successfully updated your dataverse!
dataverse.update.failure=This dataverse was not able to be updated.
dataverse.selected=Selected
dataverse.listing.error=Fatal error trying to list the contents of the dataverse. Please report this error to the Dataverse administrator.
dataverse.datasize=Total size of the files stored in this dataverse: {0} bytes