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
2843 lines (2843 loc) · 129 KB
/
en.json
File metadata and controls
2843 lines (2843 loc) · 129 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",
"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",
"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"
},
"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 part of 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"
},
"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."
}
},
"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 Addon 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",
"resources": "Resources",
"components": "Components",
"links": "Links",
"institutions": "Institutions"
},
"auth": {
"common": {
"email": "Email",
"confirmEmail": "Confirm email",
"emailPlaceholder": "email@example.com",
"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 or 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",
"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",
"createProject": "Create New Project",
"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"
},
"hosting": {
"title": "Hosting a conference or meeting?",
"subtitle": "Use the OSF for Meetings service to provide a central location for conference submissions",
"button": "View Meetings"
}
},
"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": {
"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."
}
},
"myProjects": {
"header": {
"title": "My Projects",
"createProject": "Create Project"
},
"tabs": {
"myProjects": "My Projects",
"myRegistrations": "My Registrations",
"myPreprints": "My Preprints",
"bookmarks": "Bookmarks"
},
"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",
"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.",
"viewOnlyLinkCurrentProject": "(current component)",
"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.",
"accessRequests": "Access Requests",
"accessRequestsText": "Allow users to request access to this project",
"wiki": "Wiki",
"wikiText": "Enable the wiki In [Dashboard] New and Noteworthy.",
"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.",
"redirectLink": "Redirect Link",
"redirectLinkText": "Redirect visitors from your project page to an external webpage",
"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.",
"redirectUrlPlaceholder": "Send people who visit your OSF project page to this link instead",
"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."
}
},
"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"
},
"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",
"searchPlaceholder": "Search contributors",
"permissionFilter": "Filter by permission",
"bibliographyFilter": "Bibliography",
"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",
"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"
},
"removeDialog": {
"title": "Remove contributor",
"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",
"read": "Read privileges",
"addComponents": "Add and configure components",
"editContent": "Add and edit content",
"readWrite": "Read and write privileges",
"manageContributors": "Manage contributor",
"deleteRegister": "Delete and register project",
"publicPrivate": "Public private settings"
},
"bibliographicContributorInfo": {
"heading": "Bibliographic Contributor Information",
"description": "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."
},
"curatorInfo": {
"heading": "Curator Information",
"description": "An administrator designated by your affiliated institution to curate your project."
},
"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."
}
},
"overview": {
"header": {
"privateProject": "Private Project",
"publicProject": "Public Project"
},
"wiki": {
"title": "Wiki",
"noWikiMessage": "<em>Add important information, links, or images here to describe your project.</em>"
},
"components": {
"title": "Components",
"addComponentButton": "Add Component",
"linkProjectsButton": "Link Projects",
"noComponentsMessage": "<em>Add components to organize your project.</em>"
},
"linkedProjects": {
"title": "Linked Projects",
"noLinkedProjectsMessage": "<em>Link your project.</em>"
},
"recentActivity": {
"title": "Recent Activity",
"noActivity": "No recent activity"
},
"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",
"license": "License",
"publication": "Publication 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",
"affiliatedInstitutions": "Affiliated Institutions",
"noDescription": "No description",
"noLicense": "No License",
"noPublicationDoi": "No Publication DOI",
"noSubjects": "No subjects",
"noTags": "No tags",
"noSupplements": "No supplements",
"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",
"placeholders": {
"edit": "Edit description here",
"add": "Add description here"
},
"publicationDoi": {
"label": "Publication DOI"
}
},
"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/>"
},
"toast": {
"makePublic": {
"success": "Project has been made public successfully"
},
"makePrivate": {
"success": "Project has been made private successfully"
},
"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"
}
},
"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": "Are you sure you want to delete this component?",
"confirmButton": "Delete",
"cancelButton": "Cancel",
"message": "It will no longer be available to other contributors on the project.",
"confirmation": "Type the following to continue:"
},
"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"
}
},
"tooltips": {
"viewOnlyLinks": "View only links",
"bookmarks": "Bookmarks",
"duplicate": "Duplicate",
"share": "Share"
}
},
"wiki": {
"addNewWiki": "Add new 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",
"tooltip": "This page is currently connected to the collaborative wiki. All edits made will be visible to contributors with write permission in real time. Changes will be stored but not published until you click the \"Save\" button.",
"view": "View",
"edit": "Edit",
"compare": "Compare",
"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."
},
"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...",
"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"
}
},
"tooltipDialog": {
"header": "About resource information",
"mainContent": "The resource information section allows you to describe what kind of material you are sharing in a human and machine readable format. Indexes and search engines can use the resource types to filter results, increasing discoverability for works with completed metadata. For example, indicating that your resource type is “Dataset” will allow your work to be displayed in other indexes and repositories that specialize in data in addition to the OSF.",
"secondaryContent": "You can describe the resources within your entire {{ resourceName }}, and you can also describe the resource type of individual files within. Just open one of your files to edit its metadata.",
"thirdContent": "OSF enables the",
"dataTypeLink": "Datacite Resource Types",
"endText": "More information is available on our",
"helpLink": " help guides"
}
},
"license": {
"dialog": {
"header": "Edit License",
"chooseLicense": {
"label": "Choose License",
"placeholder": "Select license"
},
"year": {
"label": "Year",
"placeholder": "Enter year"
},
"copyrightHolders": {
"label": "Copyright Holders",
"placeholder": "Enter copyright holders"
},
"statementOfPurpose": {
"label": "Statement of Purpose",
"placeholder": "Enter statement of purpose"
},
"licenseTextPlaceholder": "License text will appear here when you select a license"
},
"updated": "License updated successfully",
"updateFailed": "Failed to update license"
},
"publicationDoi": {
"dialog": {
"header": "Edit Publication DOI",
"label": "Publication DOI",
"placeholder": "Enter publication DOI"
}
},
"addMetadata": {
"title": "Add community metadata record",
"selectTemplate": "Select a Metadata Template",
"cedarInfo": "OSF has partnered with <a target='_blank' href='https://metadatacenter.org/'>CEDAR</a> to provide more ways to annotate your research with domain or community-specific metadata records. If you would like to request the addition of a new metadata template, contact us at <a>support@osf.io</a>.",
"select": "Select",
"selected": "Selected",
"publish": "Publish",
"saveDraft": "Save Draft",
"changeTemplate": "Change template",
"publishedText": "This metadata has a status of 'Published' and is publicly viewable.",
"notPublishedText": "This metadata has a status of 'Draft' and is not publicly viewable. To 'Publish' this metadata please fill in all required fields and resubmit the data.",
"youAlreadyAddedText": "You have already added a record for this template",
"youAlreadyAdded": "Already Added",
"loadingCedar": "Loading CEDAR record...",
"recordCreatedSuccessfully": "Record created successfully",
"recordUpdatedSuccessfully": "Record updated successfully"
},
"funding": {
"updated": "Funding information updated successfully",
"dialog": {
"header": "Edit Funding/Support Information",
"funderName": "Funder Name",
"funderIdentifier": "Funder Identifier",
"awardTitle": "Award Title",
"awardUri": "Award URI",
"awardNumber": "Award Number",
"selectFunder": "Select a funder",
"autoPopulated": "Auto-populated from selection",
"loadingFunders": "Loading funders...",
"description": "Add funding and support information for this project."
}
},
"affiliatedInstitutions": {
"updated": "Affiliated institutions updated successfully",
"loadingInstitutions": "Loading institutions...",
"dialog": {
"header": "Edit Affiliated Institutions",
"noInstitutions": "No institutions available"
}
},
"doi": {
"created": "DOI created successfully",
"dialog": {
"header": "Edit publication DOI",
"label": "https://doi.org/",
"placeholder": "10.xxxx/xxxxx",
"createConfirm": {
"header": "Create DOI",
"message": "Are you sure you want to create a DOI for this project? A DOI is persistent and will always resolve this page."
}
}
},
"addCommunityMetadataRecord": {
"title": "Add community metadata record"
},
"contributors": {
"editContributors": "Edit contributors",
"updateSucceed": "Contributors successfully updated."
}
},
"deleteProject": {
"title": "Delete project",
"message": "Are you sure you want to delete <b>{{name}}</b> project?",
"success": "Project has been successfully deleted."
},
"deleteInstitution": {
"title": "Delete institution",
"message": "Are you sure you want to delete <b>{{name}}</b> from this project?",
"success": "Institution has been successfully deleted."
}
},
"files": {
"title": "Files",
"storageLocation": "OSF Storage",
"searchPlaceholder": "Search your projects",
"sort": {
"placeholder": "Sort",
"nameAZ": "Name: A-Z",
"nameZA": "Name: Z-A",
"lastModifiedOldest": "Last modified: oldest to newest",
"lastModifiedNewest": "Last modified: newest to oldest"
},
"actions": {
"downloadAsZip": "Download As Zip",
"createFolder": "Create Folder",
"uploadFile": "Upload File"
},
"dialogs": {
"uploadFile": {
"title": "Upload file",
"message": "Are you sure you want to update <span class=\"font-bold\">{{name}}</span>?"
},
"createFolder": {
"title": "Create folder",
"folderName": "New folder name",
"folderNamePlaceholder": "Please enter a folder name"
},
"renameFile": {
"title": "Rename file",
"newName": "New name",
"enterNewName": "Enter new name",
"renameLabel": "Please rename the file"
},
"moveFile": {
"cannotMove": "Cannot move to the same folder",
"title": "Move file",
"message": "Are you sure you want to move <span class=\"font-bold\">{{dragNodeName}}</span> to <span class=\"font-bold\">{{dropNodeName}}</span> ?",
"storage": "OSF Storage",
"pathError": "Path is not specified!"
},
"copyFile": {
"title": "Copy file"
},
"deleteFile": {
"title": "Delete File",
"message": "Are you sure you want to delete <span class=\"font-bold\">{{name}}</span>?"
}
},
"filesBrowserDialog": {
"title": "Using the OSF Files Browser",
"seeAllFiles": "See All Files in a Provider",
"seeAllFilesDescription": "All connected storage providers are displayed in the left navbar. Choose one provider to view contents.",
"selectFilesFolders": "Select Files/Folders",
"selectFilesFoldersDescription": "Click on a row (outside of the file or folder name) to show further actions in the top toolbar. Click on more rows to select multiple files. To select a range of files, click a file to begin selection and then shift+click another file to select the range.",
"openViewFiles": "Open/View Files",