forked from CenterForOpenScience/angular-osf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathen.json
More file actions
3139 lines (3138 loc) · 144 KB
/
en.json
File metadata and controls
3139 lines (3138 loc) · 144 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
{
"common": {
"buttons": {
"delete": "Delete",
"remove": "Remove",
"add": "Add",
"edit": "Edit",
"addMore": "Add More",
"cancel": "Cancel",
"save": "Save",
"send": "Send",
"create": "Create",
"close": "Close",
"download": "Download",
"copy": "Copy",
"copyTo": "Copy to",
"move": "Move",
"rename": "Rename",
"share": "Share",
"embed": "Embed",
"confirm": "Confirm",
"disconnect": "Disconnect",
"revert": "Revert",
"next": "Next",
"back": "Back",
"continue": "Continue",
"skip": "Skip",
"done": "Done",
"select": "Select",
"addToCollection": "Add to Collection",
"removeFromCollection": "Remove from Collection",
"discardChanges": "Discard Changes",
"saveAndContinue": "Save and Continue",
"clickToEdit": "Click to edit",
"deselect": "Deselect",
"yes": "Yes",
"no": "No",
"update": "Update",
"continue update": "Continue update",
"withdraw": "Withdraw",
"submit": "Submit",
"view": "View",
"review": "Review",
"upload": "Upload",
"hide": "Hide",
"customize": "Customize",
"createCustomCitation": "Create Custom Citation",
"preview": "Preview",
"continueUpdate": "Continue Update",
"editAndResubmit": "Edit And Resubmit",
"createNewVersion": "Create New Version",
"leaveThisView": "Leave this view",
"addOneMore": "Add One More",
"filter": "Filter",
"sort": "Sort",
"replace": "Replace",
"selectAll": "Select All",
"removeAll": "Remove All",
"accept": "Accept",
"reject": "Reject",
"loadMore": "Load more",
"seeMore": "See more",
"resubmit": "Resubmit"
},
"accessibility": {
"help": "Help",
"openFilters": "Open filters",
"openSortingOptions": "Open sorting options",
"goToFirstPage": "Go to first page",
"goToPreviousPage": "Go to previous page",
"goToNextPage": "Go to next page",
"mainNavigation": "Main navigation",
"searchHelp": "Search help",
"confirmationDialog": "Confirmation dialog",
"reportsLink": "Reports link",
"tooltipBtn": "Tooltip button",
"customizeOptions": "Customize options",
"toggleProjectVisibility": "Toggle project visibility",
"tagInput": "Tag input",
"toggleTreeNode": "Toggle tree node",
"copyButtonInfo": "Copy to clipboard button",
"confirmation": "Confirmation"
},
"search": {
"title": "Search",
"noResultsFound": "No results found.",
"tabs": {
"all": "All",
"preprints": "Preprints",
"registrations": "Registrations",
"projects": "Projects",
"files": "Files",
"users": "Users"
},
"filterPlaceholders": {
"affiliation": "Select institution",
"subject": "Select subject",
"funder": "Select funder",
"rights": "Select license",
"publisher": "Select provider",
"isPartOfCollection": "Select collection",
"dateCreated": "Select date",
"creator": "Creator name",
"resourceType": "Select resource type"
}
},
"sort": {
"relevance": "Relevance",
"createdNewest": "Date created (newest)",
"createdOldest": "Date created (oldest)",
"modifiedNewest": "Date modified (newest)",
"modifiedOldest": "Date modified (oldest)"
},
"labels": {
"downloads": "Downloads",
"public": "Public",
"title": "Title",
"description": "Description",
"year": "Year",
"optional": "Optional",
"makePublic": "Make Public",
"noData": "No data",
"noFiles": "No files selected",
"drafts": "Drafts",
"submitted": "Submitted",
"yes": "Yes",
"no": "No",
"available": "Available",
"unavailable": "Unavailable",
"notApplicable": "Not Applicable",
"none": "None",
"learnMore": "Learn More",
"and": "and",
"more": "more",
"data": "Data",
"forked": "Forked",
"lastUpdated": "Last Updated",
"contributors": "Contributors",
"updated": "Updated",
"dateUpdated": "Date Updated",
"dateCreated": "Date Created",
"license": "License",
"noDoi": "No DOI",
"subjects": "Subjects",
"noLicense": "No License",
"affiliatedInstitutions": "Affiliated Institutions",
"noAffiliatedInstitutions": "No affiliated institutions"
},
"deleteConfirmation": {
"header": "Delete",
"message": "Are you sure you want to proceed?"
},
"discardChanges": {
"header": "You Might Lose Unsaved Changes",
"message": "Are you sure you want to proceed?"
},
"discardChangesDialog": {
"header": "Discard changes",
"message": "Are you sure you want to discard your unsaved changes?"
},
"links": {
"clickHere": "Click here",
"helpGuide": "Help Guide",
"showExample": "Show Example",
"hideExample": "Hide Example"
},
"placeholder": {
"addTag": "Add tags"
},
"hint": {
"tagSeparators": "Use enter or comma to create a tag.",
"viewOnlyLinksBanner": "You are viewing OSF through a view-only link, which may limit the data you have permission to see."
},
"errorMessages": {
"serverError": "An unexpected error occurred. Please try again later."
}
},
"navigation": {
"profile": "Profile",
"myProfile": "My profile",
"settings": "Settings",
"logOut": "Log out",
"signIn": "Sign in",
"signUp": "Sign Up",
"home": "Home",
"searchOsf": "Search OSF",
"support": "Support",
"meetings": "Meetings",
"myProjects": "My Projects",
"projects": "Projects",
"myOsf": "My OSF",
"registries": "Registries",
"overview": "Overview",
"discover": "Discover",
"registriesSubRoutes": {
"myRegistrations": "My Registrations",
"registryDetails": "Registry Details"
},
"preprints": "Preprints",
"preprintsSubRoutes": {
"myPreprints": "My Preprints",
"myReviewing": "My Reviewing",
"preprintDetails": "Preprint details"
},
"collections": "Collections",
"moderation": "Moderation",
"donate": "Donate",
"profileSettings": "Profile Settings",
"accountSettings": "Account Settings",
"configureAddonAccounts": "Configure add-on & link service accounts",
"notifications": "Notifications",
"developerApps": "Developer Apps",
"personalAccessTokens": "Personal Access Tokens",
"projectDetails": "Project details",
"registryDetails": "Registry details",
"metadata": "Metadata",
"files": "Files",
"wiki": "Wiki",
"registrations": "Registrations",
"contributors": "Contributors",
"analytics": "Analytics",
"addons": "Add-ons",
"linkedServices": "Linked Services",
"resources": "Resources",
"components": "Components",
"links": "Links",
"institutions": "Institutions",
"recentActivity": "Recent Activity"
},
"profile": {
"mergedAccount": {
"message": "This account has been merged with "
}
},
"toast": {
"tos-consent": {
"message": "Notice: We've updated our",
"termsOfUse": " terms of use ",
"and": " and ",
"privacyPolicy": " privacy policy.",
"haveReadAndAgree": "I've read and agree to the terms and conditions",
"continue": "Continue",
"errorMessage": "We were unable to save your consent."
},
"cookie-consent": {
"message": "Notice: This website relies on cookies to help provide a better user experience. By clicking accept or continuing to use the site, you consent to our use of cookies. See our Privacy Policy and Cookie Use for more information.",
"accept": "Accept cookies"
}
},
"auth": {
"common": {
"email": "Email",
"confirmEmail": "Confirm email",
"emailPlaceholder": "email@example.com",
"password": {
"title": "Password",
"new": "New Password",
"confirm": "Confirm New Password",
"mismatch": "Passwords must match.",
"requirements": "Your password needs to be at least 8 characters long, include both lower- and upper-case characters, and have at least one number and special character",
"validation": {
"required": "Password is required.",
"minlength": "Password must be at least 8 characters long.",
"pattern": "Password must include lowercase, uppercase, and at least one number and special character."
}
}
},
"forgotPassword": {
"title": "Forgot Your Password?",
"description": "Enter your email address and we'll send a link to reset your password",
"submit": "Reset Password",
"messages": {
"success": "Thanks. Check your email to reset your password.",
"error": "Email not found."
}
},
"resetPassword": {
"title": "Reset Password",
"submit": "Reset Password",
"success": {
"title": "Thank You!",
"message": "You have successfully reset your password",
"backToSignin": "Back to Sign In"
}
},
"signUp": {
"title": "Create A Free Account",
"social": {
"orcid": "Sign up through ORCID",
"institution": "Sign up through Institution"
},
"divider": "or",
"form": {
"fullName": "Full Name",
"givenName": "Given Name",
"familyName": "Family Name",
"fullNamePlaceholder": "John Doe",
"submit": "Sign Up",
"terms": {
"agree": "I agree to the",
"termsOfUse": "Terms of Use",
"and": "and",
"privacyPolicy": "Privacy Policy"
}
},
"success": {
"title": "Registration successful",
"message": "Check your email to confirm your account"
}
}
},
"home": {
"loggedIn": {
"dashboard": {
"title": "Dashboard",
"welcome": "Welcome to OSF!",
"createProject": "Create New Project",
"noCreatedProject": "You haven’t created a project yet. Click the \"Create New Project\" button above to get started.",
"watchVideoBelow": "Watch the short video below or visit the OSF Get Started help guides to learn more.",
"getStartedHelp": "Visit Get Started Help Guides",
"images": {
"osfCollectionsImageAltText": "OSF Collections",
"osfInstitutionsImageAltText": "OSF Institutions",
"osfRegistriesImageAltTest": "OSF Registries",
"osfPreprintsImageAltTest": "OSF Preprints"
},
"quickSearch": {
"goTo": "Go to",
"myProjects": "My Projects",
"toOrganize": "to organize your work or",
"search": "search",
"osf": "OSF",
"searchPlaceholder": "Search your projects"
}
},
"publicProjects": {
"title": "Discover Public Projects"
},
"latestResearch": {
"title": "Browse the latest research",
"subtitle": "Check out the latest preprints hosted on OSF covering a variety of research areas",
"button": "View Preprints"
}
},
"loggedOut": {
"hero": {
"title": "There's a <span class='highlight'>better way</span> to manage your research",
"subtitle": "OSF is a free, open platform to support your research and enable collaboration",
"signUp": "Sign Up"
},
"discover": {
"title": "<span class='highlight'>Discover</span> Public Research",
"subtitle": "Discover projects, data, materials, and collaborators on OSF that might be helpful to your own research",
"searchPlaceholder": "Search"
},
"support": {
"title": "How OSF <span class='highlight'>Supports</span> your research",
"sections": {
"search": {
"title": "Search And Discover",
"description": "Find papers, data, and materials to inspire your next research project. Search public projects to build on the work of others and find new collaborators"
},
"design": {
"title": "Design Your Study",
"description": "Start a project and add collaborators, giving them access to protocols and other research materials. Built-in version control tracks the evolution of your study"
},
"collect": {
"title": "Collect and Analyze Data",
"description": "Store data, code, and other materials in OSF Storage, or connect your Dropbox or other third-party account. Every file gets a unique, persistent URL for citing and sharing"
},
"publish": {
"title": "Publish Your Reports",
"description": "Share papers in OSF Preprints or a community-based preprint provider, so others can find and cite your work. Track impact with metrics like downloads and view counts"
}
},
"learnMore": "Learn More"
},
"testimonials": {
"title": "What others are <span class='highlight'>saying</span>",
"slides": {
"patricia": {
"quote": "OSF is a game changer for those wanting to effectively share their research process in the spirit of collaboration.",
"facility": "Research Services Librarian | University of Toronto"
},
"maya": {
"quote": "OSF is indispensable in helping me create reproducible research pipelines from preregistration through data collection and analysis. Its versatility makes it my one-stop shop for projects. The Dropbox integration effortlessly transforms my existing local workflow to public repository.",
"facility": "Department of Epidemiology Harvard University"
},
"philip": {
"quote": "Because SocArXiv is a not-for-profit organization, researchers can be assured that they are sharing their research in an environment where access, inclusivity, and preservation, rather than profit, will remain at the heart of the mission. A great benefit of partnering with OSF is that this application is a free public good.",
"facility": "SocArXiv papers"
}
}
},
"integrations": {
"title": "OSF <span class='highlight'>integrations</span> make your workflow more efficient",
"categories": {
"authentication": "Authentication",
"discovery": "Discovery",
"references": "References",
"storage": "Storage"
}
}
},
"confirmEmail": {
"merge": {
"title": "Merge account?",
"description": "Would you like to merge ",
"description2": "into your account? This action is irreversible.",
"goToEmails": "Merge account",
"emailNotAdded": "{{name}} has not been merged into your account.",
"emailVerified": "{{name}} has been merged into your account.",
"verifyError": "There was a problem merging {{name}} into your account.",
"denyError": "There was a problem canceling the request to merge {{name}} into your account."
},
"add": {
"title": "Add alternative email?",
"description": "Do you want to add ",
"description2": "to your profile ?",
"goToEmails": "Add email",
"emailNotAdded": "{{name}} has not been added to your account.",
"emailVerified": "{{name}} has been added to your account.",
"verifyError": "There was a problem adding {{name} to your account.",
"denyError": "There was a problem canceling the request to add {{name}} to your account."
}
}
},
"myProjects": {
"header": {
"title": "My Projects",
"createProject": "Create Project"
},
"tabs": {
"myProjects": "My Projects",
"myRegistrations": "My Registrations",
"myPreprints": "My Preprints",
"bookmarks": "Bookmarks"
},
"tabOptions": {
"all": "All",
"root": "Projects",
"component": "Components"
},
"bookmarks": {
"emptyState": "You don't have any bookmarks. Click the bookmark icon on projects or registrations to add them here."
},
"table": {
"columns": {
"title": "Title",
"contributors": "Contributors",
"modified": "Modified"
},
"searchPlaceholder": "Filter by title, description, and tags"
},
"createProject": {
"title": "Title",
"storageLocation": "Storage Location",
"affiliation": {
"title": "Affiliation",
"selectAll": "Select All",
"removeAll": "Remove All"
},
"description": {
"label": "Description (Optional)"
},
"template": {
"label": "Template (Optional)",
"placeholder": "Select template or start typing to find one"
},
"actions": {
"cancel": "Cancel",
"create": "Create Project"
}
},
"settings": {
"project": "Project",
"saveChanges": "Save Changes",
"deleteProject": "Delete Project",
"deleteComponent": "Delete Component",
"viewOnlyLinks": "View-only Links",
"viewOnlySubtitle": "Create a link to share this project so those who have the link can view—but not edit—the project.",
"viewOnlyTable": {
"linkName": "Link Name",
"sharedComponents": "Shared Components",
"createdDate": "Created date",
"createdBy": "Created By",
"anonymous": "Anonymous"
},
"viewOnlyLinkCreated": "View only link successfully created.",
"viewOnlyLinkDeleted": "View only link successfully deleted.",
"current": "Current",
"anonymizeContributorList": "Anonymize contributor list for this link (e.g., for blind peer review).",
"ensureNoInformation": "Ensure the wiki pages, files, registration forms and add-ons do not contain identifying information.",
"linkName": "Link name",
"typeLinkName": "Type link name",
"whichComponentLink": "Which components would you like to associate with this link?",
"anyonePrivateLink": "Anyone with the private link can view—but not edit—the components associated with the link.",
"parentsNeedToBeChecked": "Parents need to be checked",
"accessRequests": "Access Requests",
"accessRequestsText": "Allow users to request access to this project",
"wiki": "Wiki",
"wikiText": "Enable the wiki in {{projectName}}",
"wikiConfigureTitle": "Configure",
"wikiConfigureText": "Create a link to share this project so those who have the link can view—but not edit—the project.",
"emailNotifications": "Email Notifications",
"emailNotificationsText": "These notification settings only apply to you. They do NOT affect any other contributor on this project.",
"projectAffiliation": "Project Affiliation / Branding",
"projectsCanBeAffiliated": "Projects can be affiliated with institutions that have created OSF for Institutions accounts. This allows:",
"institutionalLogos": "institutional logos to be displayed on public projects",
"publicProjectsToBeDiscoverable": "public projects to be discoverable on specific institutional landing pages",
"singleSignInToTHeOSF": "single sign-in to the OSF with institutional credentials",
"faq": "FAQ",
"contributorsOption": "Contributors (with write access)",
"anyoneOption": "Anyone with link",
"whoCanEdit": "Who can edit:",
"url": "URL",
"label": "Label",
"storageLocationMessage": "Storage location cannot be changed after project is created.",
"invalidUrl": "Please enter a valid URL, such as: https://example.com",
"disabledForWiki": "This feature is disabled for wikis of private projects.",
"enabledForWiki": "This feature is enabled for wikis of private projects.",
"delete": {
"title": "Delete Link {{name}}?",
"message": "Are you sure you want to delete this view only link?"
},
"descriptions": {
"file_updated": {
"instant": "You'll be notified immediately when files are updated.",
"daily": "You'll receive a daily summary of file updates.",
"none": "You won't receive file update notifications."
}
},
"updateProjectDetailsMessage": "Successfully updated project details.",
"updateProjectSettingsMessage": "Successfully updated project settings."
},
"redirectDialog": {
"header": "Success",
"message": "New project created successfully!",
"confirmButton": "Go to project",
"rejectButton": "Keep working here"
}
},
"myProfile": {
"editProfile": "Edit Profile",
"memberSince": "Member since"
},
"project": {
"analytics": {
"kpi": {
"forks": "Duplicates",
"linksToThisProject": "Links to this project",
"templateCopies": "Template copies",
"viewForks": "View duplicates",
"viewLinks": "View links"
},
"viewRelated": {
"linkedProjectsTitle": "Linked Projects",
"linkedProjectsMessage": "Linked Projects you have permission to view are shown here.",
"noLinkedProjectsMessage": "No Linked Projects found."
},
"charts": {
"showAnalytics": "Show analytics for date range:",
"pastWeek": "Past week",
"pastMonth": "Past month",
"pastTwoWeeks": "Past two weeks",
"uniqueVisits": "Unique visits",
"timeOfDayOfVisits": "Time of day of visits",
"topReferrers": "Top referrers",
"popularPages": "Popular pages",
"visits": "Visits"
},
"privateProject": {
"message": "Analytics are not available for private projects. To view Analytics, make your project public by switching Public from the project overview page. Public projects:",
"benefits": {
"discoverable": "are discoverable",
"citable": "are citable",
"affiliated": "can be affiliated with OSF for Institutions partners",
"openPractices": "promote open practices among peers"
},
"impact": "Receive data on visitors to your project by enabling Analytics and begin discovering the impact of your work."
}
},
"contributors": {
"addContributor": "Add Contributor",
"searchProjectPlaceholder": "Search Project Contributors",
"searchRegistrationPlaceholder": "Search Registration Contributors",
"permissionFilter": "Filter by permission",
"bibliographyFilter": "Bibliography",
"reorderDeactivateTooltip": "Remove deactivated contributors in order to enable reordering.",
"permissions": {
"administrator": "Administrator",
"readAndWrite": "Read + Write",
"read": "Read"
},
"bibliography": {
"bibliographic": "Bibliographic",
"nonBibliographic": "Non-Bibliographic"
},
"table": {
"headers": {
"name": "Name",
"permissions": "Permissions",
"contributor": "Bibliographic Contributor",
"curator": "Curator",
"employment": "Employment history",
"education": "Education history"
},
"emptyMessage": "No contributors found."
},
"viewOnly": "View-only links",
"createLink": "Create a link to share this project so those who have the link can view—but not edit—the project.",
"createButton": "Create",
"addDialog": {
"placeholder": "Search by name or user information",
"cancel": "Cancel",
"next": "Next",
"selectPermissions": "Please select which permissions you want to give to contributor",
"addingContributorsTo": "Adding contributor(s) <b>{{names}}</b> to <b>{{projectName}}</b>.",
"addContributorsToComponents": "You can also add the contributor(s) to any components on which you are an admin.",
"bibliographicContributor": "Bibliographic Contributor",
"addUnregisteredContributor": "Add Unregistered Contributor",
"addRegisteredContributor": "Add Registered Contributor",
"unregisteredContributorNotification": "We will notify the user that they have been added to your project",
"addingContributorsFromParentProject": "Import contributors from {{projectName}}"
},
"removeDialog": {
"title": "Remove contributor",
"thisProjectOnly": "This project only",
"thisProjectAndComponents": "This project and all it's components",
"message": "Are you sure you want to remove <b>{{name}}</b> contributor?",
"successMessage": "Contributor {{name}} successfully removed."
},
"createLinkDialog": {
"dialogTitle": "Create a new link to share your project"
},
"permissionInfo": {
"title": "Permission Information",
"viewProjectContent": "View project content and comment",
"viewRegistrationContent": "View registration content",
"read": "Read privileges",
"addComponents": "Add and configure components",
"editMetadata": "Edit metadata",
"addResourcesLinks": "Add resources links",
"editContent": "Add and edit content",
"readWrite": "Read and write privileges",
"manageContributors": "Manage contributor",
"deleteRegister": "Delete and register project",
"withdrawRegistration": "Withdraw registration",
"endEmbargoEarly": "End embargo early",
"publicPrivate": "Public private settings"
},
"bibliographicContributorInfo": {
"heading": "Bibliographic Contributor Information",
"projectDescription": "Only bibliographic contributors will be displayed in the Contributors list and in project citations. Non-bibliographic contributors can read and modify the project as normal.",
"registrationDescription": "Only bibliographic contributors will be displayed in the Contributors list and in registration citations. Non-bibliographic contributors can read and modify the registration as normal."
},
"curatorInfo": {
"heading": "Curator Information",
"projectDescription": "An administrator designated by your affiliated institution to curate your project.",
"registrationDescription": "An administrator designated by your affiliated institution to curate your registration."
},
"employment": {
"show": "Show employment history",
"none": "No employment history"
},
"education": {
"show": "Show education history",
"none": "No education history"
},
"toastMessages": {
"addSuccessMessage": "Contributor {{name}} successfully added.",
"multipleAddSuccessMessage": "Contributors successfully added.",
"multipleUpdateSuccessMessage": "Contributors successfully updated."
}
},
"requestAccess": {
"requestForAccess": "Requests for Access",
"followingUsers": "The following users have requested access to this project.",
"acceptDialog": {
"header": "Accept access",
"message": "Are you sure you want to accept access for <b>{{name}}</b>?",
"successMessage": "Access accepted successfully."
},
"rejectDialog": {
"header": "Reject access",
"message": "Are you sure you want to reject access for <b>{{name}}</b>?",
"successMessage": "Access rejected successfully."
}
},
"overview": {
"header": {
"privateProject": "Private Project",
"publicProject": "Public Project"
},
"wiki": {
"title": "Wiki",
"noWikiMessage": "Click the “Edit” to add important information, links, or images here to describe your project."
},
"files": {
"title": "Files",
"filesPreview": "Files Preview"
},
"components": {
"title": "Components",
"addComponentButton": "Add Component",
"linkProjectsButton": "Link Projects",
"noComponentsMessage": "<em>Add components to organize your project.</em>"
},
"parentProject": "Parent Project",
"linkedProjects": {
"title": "Linked Projects",
"noLinkedProjectsMessage": "<em>Link your project.</em>"
},
"recentActivity": {
"title": "Recent Activity",
"noActivity": "No recent activity"
},
"citations": {
"copyCitation": "Copy citation",
"viewOriginal": "View original file"
},
"collectionsModeration": {
"pending": "Pending entry into\u00A0",
"accepted": "Included in\u00A0",
"removed": "Removed from\u00A0",
"rejected": "Rejected from\u00A0"
},
"metadata": {
"anonymousContributors": "Anonymous Contributors",
"title": "Metadata",
"contributors": "Contributors",
"description": "Description",
"supplements": "Supplements",
"supplementsText1": "Has supplemental materials for",
"supplementsText2": "on OSF Preprints",
"dateCreated": "Date Created",
"dateUpdated": "Date Updated",
"projectDOI": "Project DOI",
"publicationDOI": "Publication DOI",
"registrationDOI": "Registration DOI",
"subjects": "Subjects",
"tags": "Tags",
"citation": "Citation",
"collection": "Collection",
"noCollections": "No collections",
"getMoreCitations": "Get More Citations",
"citationInputPlaceholder": "Select citation style or start typing",
"citationLoadingPlaceholder": "Loading options...",
"customCitationPlaceholder": "Enter custom citation",
"citeAs": "Cite as:",
"noCitationStylesFound": "No results found",
"noCitations": "No citations",
"affiliatedInstitutions": "Affiliated Institutions",
"affiliatedInstitutionsDescription": "This is a service provided by the OSF and is automatically applied to your registration. If you are not sure if your institution has signed up for this service, you can look for their name in this list.",
"noDescription": "No description",
"noLicense": "No License",
"noProjectDoi": "No Project DOI",
"noPublicationDoi": "No Publication DOI",
"noSubjects": "No subjects",
"noTags": "No tags",
"noSupplements": "No supplements",
"noInformation": "No information",
"noAffiliatedInstitutions": "No affiliated institutions",
"resourceInformation": "Resource Information",
"resourceType": "Resource type",
"resourceLanguage": "Resource language",
"fundingSupport": "Funding/Support Information",
"noResourceInformation": "No resource information available",
"notSpecified": "Not specified",
"loading": "Loading metadata...",
"cedarRecordCreatedSuccessfully": "CEDAR record created successfully",
"failedToCreateCedarRecord": "Failed to create CEDAR record",
"internetArchiveLink": "internet archive link",
"placeholders": {
"edit": "Edit description here",
"add": "Add description here"
}
},
"dialog": {
"makePublic": {
"header": "Make Project Public",
"confirmButton": "Make Public",
"cancelButton": "Cancel",
"message": "Please review your projects, components, and add-ons for sensitive or restricted information before making them public. <br/> <br/> Once they are made public, you should assume they will always be public. You can return them to private later, but search engines (including Google's cache) or others may access files, wiki pages, or analytics before you do. <br/> <br/>"
},
"makePrivate": {
"header": "Make Project Private",
"confirmButton": "Make Private",
"cancelButton": "Cancel",
"message": "<ul><li>• Public duplicates and registrations of this project will remain public.</li><li>• Search engines (including Google's cache) or others may have accessed files, wiki pages, or analytics while this project was public.</li><li>• The project will automatically be removed from any collections. Any pending requests will be cancelled.</li></ul><br/>"
},
"changePrivacySettings": "Change privacy settings",
"adjustPrivacySetting": "Adjust your privacy settings by checking the boxes below.",
"checkedProjects": "Checked projects and components will be public.",
"uncheckedComponents": "Unchecked components will be private.",
"privacySettingsPermissionTooltip": "You must have admin permission on this component to be able to change privacy settings",
"toast": {
"changePrivacySettings": {
"success": "Privacy settings have been successfully updated."
},
"addComponent": {
"success": "Component has been created successfully"
},
"deleteComponent": {
"success": "Component has been deleted successfully"
},
"deleteNodeLink": {
"success": "Node link has been deleted successfully"
},
"fork": {
"success": "Project has been duplicated successfully"
},
"duplicate": {
"success": "Project has been duplicated successfully"
},
"bookmark": {
"add": "Successfully added to bookmarks",
"remove": "Successfully removed from bookmarks"
},
"reorderComponents": {
"success": "Components have been reordered successfully."
}
},
"linkProject": {
"header": "Link to another OSF project or registration objects",
"searchAllObjects": "Search All Objects",
"searchMyObjects": "Search My Objects",
"searchObjectsPlaceholder": "Search objects",
"projects": "Projects",
"registrations": "Registrations",
"table": {
"title": "Title",
"created": "Created",
"modified": "Modified",
"contributors": "Contributors"
}
},
"addComponent": {
"header": "Create New Component",
"confirmButton": "Create",
"cancelButton": "Cancel",
"title": "Title",
"description": "Description (Optional)",
"storageLocation": "Storage Location",
"affiliation": {
"title": "Affiliation",
"selectAll": "Select All",
"removeAll": "Remove All"
},
"addContributors": "Add Contributors from",
"addTags": "Add Tags from",
"contributorsMessage": "admins will have read access to this component.",
"license": {
"title": "License",
"description": "This component will inherit the same license as",
"learnMore": "Learn More"
}
},
"deleteComponent": {
"header": "Delete component",
"confirmButton": "Delete",
"cancelButton": "Cancel",
"message": "It will no longer be available to other contributors on the project.",
"listMessage": "You are about to delete the following:",
"warningMessage": "This component contains subcomponents. To delete this component, you must also delete all subcomponents. This action is irreversible.",
"confirmation": "Type the following to continue:",
"noPermissionsMessage": "You do not have permissions to delete this component and its subcomponents. <br/><br/> To delete, you must have admin permissions across all objects. Please check your permissions and try again. <br/><br/> Contact support at support@osf.io if you have any questions."
},
"deleteNodeLink": {
"header": "Delete Link",
"message": "Are you sure you want to delete this link? This will not remove the project or registration this link refers to."
},
"fork": {
"headerProject": "Duplicate This Project",
"headerRegistry": "Duplicate This Registry",
"forksMessage": "Duplicates you have permission to view are shown here.",
"noForksMessage": "No duplicates found",
"confirmButton": "Duplicate",
"cancelButton": "Cancel",
"messageProject": "Are you sure you want to duplicate this project (with files)?",
"messageRegistry": "Are you sure you want to duplicate this registry (with files)?"
},
"duplicate": {
"header": "Duplicate Template",
"confirmButton": "Create",
"cancelButton": "Cancel",
"message1": "Are you sure you want to create a new project using this project as a template?",
"message2": "Any add-ons configured for this project will not be authenticated in the new project."
}
},
"actions": {
"manageContributors": "Manage Contributors",
"settings": "Settings",
"delete": "Delete",
"forkProject": "Duplicate project (with files)",
"forkProjectLabel": "Duplicate project",
"forkRegistry": "Duplicate this registration",
"forkResource": "Fork this resource",
"duplicateProject": "Duplicate project (structure only)",
"viewDuplication": "View duplicates",
"socials": {
"email": "Email",
"x": "X",
"linkedIn": "LinkedIn",
"facebook": "Facebook",
"mastodon": "Mastodon",
"bluesky": "Bluesky"
}
},
"tooltips": {
"viewOnlyLinks": "View only links",
"bookmarks": "Bookmarks",
"duplicate": "Duplicate",
"share": "Share"
}
},
"wiki": {
"addNewWiki": "Add new wiki page",
"renameWiki": "Rename wiki page",
"deleteWiki": "Delete wiki page",
"deleteWikiMessage": "Are you sure you want to delete this wiki page?",
"addNewWikiPlaceholder": "New wiki name",
"addWikiSuccess": "Wiki page has been added successfully",
"renameWikiSuccess": "Wiki page has been renamed successfully",
"renameWikiConflict": "That wiki name already exists.",
"view": "View",
"edit": "Edit",
"compare": "Compare",
"autocomplete": "Autocomplete",
"horizontalRule": "Horizontal rule",
"redo": "Redo",
"undo": "Undo",
"livePreviewTo": "Live preview to",
"version": {
"title": "Version",
"preview": "Preview",
"current": "Current",
"successSaved": "Wiki version has been saved successfully",
"noContent": "Add important information, links, or images here to describe your project.",
"unknownAuthor": "Unknown author"
},
"list": {
"header": "Project Wiki Pages",
"componentsHeader": "Components Wiki Pages"
},
"syntaxHelp": {
"header": "Wiki Syntax Help",
"startMsg": "The wiki uses the",
"endMsg": "syntax. For more information and examples, go to our",
"links": {
"markdown": "Markdown",
"guide": "Guides"
}
}
},
"registrations": {
"addRegistration": "Add a Registration",
"emptyState": "There have been no completed registrations of this project.",
"card": {
"noTitle": "(Untitled)",
"noDescription": "No description",
"registrationSupplement": "Registration Supplement",
"withdrawn": "Withdrawn",
"embargoed": "Embargoed",
"registrationTemplate": "Registration template:",
"registry": "Registry:",
"registered": "Registered:",
"lastUpdated": "Last Updated:",
"description": "Description:",
"openResources": "Open Resources"
}
},
"metadata": {
"addSubjects": "Add subjects...",
"title": "Title",
"editTitle": "Edit Title",
"editTitlePlaceholder": "Edit title here",
"titleUpdated": "Description updated successfully",
"description": {
"updated": "Description updated successfully",
"dialog": {
"header": "Edit Description",
"label": "Description",
"placeholder": "Enter description here",
"clickToRemove": "Click to remove",
"expandOrCollapse": "Expand or collapse "
}
},
"resourceInformation": {
"updated": "Resource information updated successfully",
"dialog": {
"header": "Edit Resource Information",
"resourceType": {
"label": "Resource Type",
"placeholder": "Select resource type"
},
"resourceLanguage": {
"label": "Resource Language",
"placeholder": "Select resource language"
}