-
Notifications
You must be signed in to change notification settings - Fork 14
/
messages.js
7688 lines (4031 loc) · 256 KB
/
messages.js
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
/*
* This file contains all messages used in cspace-ui, to be used as a reference for customization
* or translation. The default export is an object containing the default messages in the
* application, keyed by message ID. Messages may be customized by supplying overrides via the
* messages configuration property.
*
* Messages should conform to the ICU Message syntax: https://formatjs.io/guides/message-syntax/
*/
export default {
// Content of the about page. This message is interpreted as HTML, so HTML rules apply. For example, newlines are ignored, and <, >, and & must be escaped.
"about.contentHTML": "<p> CollectionSpace is a community-supported collections management application for museums, historical societies, natural science collections, and more. </p>",
// Title of the about page.
"about.title": "Welcome to CollectionSpace",
// Label of the accept selection button.
"acceptSelectionButton.label": "Use selection",
// Label of the clear button on the search bar of the account (user) admin page.
"accountSearchBar.clear": "Clear",
// Label of the input on the search bar of the account (user) admin page.
"accountSearchBar.filter": "Filter by full name",
// Notification message displayed when a record is deleted successfully.
"action.record.deleted": "{hasTitle, select, yes {Deleted {title}} other {Deleted record}}",
// Notification message displayed when a record is being deleted.
"action.record.deleting": "{hasTitle, select, yes {Deleting {title}…} other {Deleting record…}}",
// Notification message displayed when a record delete fails.
"action.record.errorDeleting": "{hasTitle, select, yes {Error deleting {title}: {error}} other {Error deleting record: {error}}}",
// Notification message displayed when a role save fails because of a duplicate name.
"action.record.errorDupRoleName": "Error saving {title}: A role already exists with this name. Please choose a different name.",
// Notification message displayed when a record save fails and there is no more specific message.
"action.record.errorSaving": "{hasTitle, select, yes {Error saving {title}: {error}} other {Error saving record: {error}}}",
// Notification message displayed when a record is saved successfully.
"action.record.saved": "{hasTitle, select, yes {Saved {title}} other {Saved record}}",
// Notification message displayed when a record is being saved.
"action.record.saving": "{hasTitle, select, yes {Saving {title}…} other {Saving record…}}",
// Notification message displayed when a delete workflow transition (soft-delete) fails.
"action.record.transition.delete.errorTransitioning": "{hasTitle, select, yes {Error deleting {title}: {error}} other {Error deleting record: {error}}}",
// Notification message displayed when a delete workflow transition (soft-delete) completes successfully.
"action.record.transition.delete.transitioned": "{hasTitle, select, yes {Deleted {title}} other {Deleted record}}",
// Notification message displayed when a delete workflow transition (soft-delete) is in progress.
"action.record.transition.delete.transitioning": "{hasTitle, select, yes {Deleting {title}…} other {Deleting record…}}",
// Notification message displayed when a lock workflow transition fails.
"action.record.transition.lock.errorTransitioning": "{hasTitle, select, yes {Error locking {title}: {error}} other {Error locking record: {error}}}",
// Notification message displayed when a lock workflow transition completes successfully.
"action.record.transition.lock.transitioned": "{hasTitle, select, yes {Locked {title}} other {Locked record}}",
// Notification message displayed when a lock workflow transition is in progress.
"action.record.transition.lock.transitioning": "{hasTitle, select, yes {Locking {title}…} other {Locking record…}}",
// Message shown when relating multiple records fails.
"action.relation.batchCreateError": "Some records could not be related: {error}",
// Message shown when unrelating multiple records fails.
"action.relation.batchUnrelateError": "Some records could not be unrelated: {error}",
// Notification message displayed when records are related successfully.
"action.relation.related": "{objectCount, plural, =0 {No records} one {# record} other {# records}} related to {subjectTitle}.",
"adminNavBar.account": "Users",
"adminNavBar.authrole": "Roles and Permissions",
"adminPage.title": "Administration",
"advancedSearchBuilder.title": "Advanced Search",
// Label of the clear button on the search bar of the role admin page.
"authRoleSearchBar.clear": "Clear",
// Label of the input on the search bar of the role admin page.
"authRoleSearchBar.filter": "Filter by name",
// Message displayed in the autocomplete input dropdown to prompt a user to add a new term.
"autocompleteInputContainer.addPrompt": "Add \"{displayName}\" to {destinationName}",
// Label of the clone option shown in the autocomplete input dropdown.
"autocompleteInputContainer.cloneOptionLabel": "Clone current record",
// Message displayed in the autocomplete input dropdown when filtering options.
"autocompleteInputContainer.count": "{count, plural, =0 {No matching terms} one {# matching term} other {# matching terms}} found",
// Label of the create new option shown in the autocomplete input dropdown.
"autocompleteInputContainer.createNewOptionLabel": "Create new record",
// Message displayed in the autocomplete input dropdown when more characters must be typed in order to begin matching.
"autocompleteInputContainer.moreCharsRequired": "Continue typing to find matching terms",
// Label of the back button.
"backButton.label": "Back",
// Notification message shown when a batch job has completed.
"batch.complete": "Completed {name}: {numAffected, plural, =0 {No records} one {# record} other {# records}} affected. {userNote}",
// Notification message shown when a batch job fails.
"batch.error": "Error running {name}: {error}",
// Notification message shown when a batch job is running.
"batch.running": "Running {name}…",
// Label of the button to add a new boolean constraint to a boolean search
"booleanConditionInput.addBoolean.label": "+ Any/All",
// Label of the button to add a new field constraint to a boolean search
"booleanConditionInput.addField.label": "+ Field",
// Label of the button to add a new group constraint to a boolean search
"booleanConditionInput.addGroup.label": "+ Group",
"booleanConditionInput.and.label": "and",
"booleanConditionInput.and.opSelectorLabel": "All",
"booleanConditionInput.opSelector.label": "{opSelectorInput} of the following conditions {operator, select, and {must} or {may}} be satisfied:",
"booleanConditionInput.or.label": "or",
"booleanConditionInput.or.opSelectorLabel": "Any",
// Default label of the cancel button.
"cancelButton.label": "Cancel",
// The textual label of a false (unchecked) value in a checkbox input. Used when search criteria are displayed in search results, for fields that were rendered as checkboxes on the search form.
"checkboxInput.false": "no",
// The textual label of an indeterminate value in a checkbox input. Currently not used anywhere, but may be in the future.
"checkboxInput.indeterminate": "indeterminate",
// The textual label of a true (checked) value in a checkbox input. Used when search criteria are displayed in search results, for fields that were rendered as checkboxes on the search form.
"checkboxInput.true": "yes",
// Label of the clone button.
"cloneButton.label": "Clone",
// Label of the close button.
"closeButton.label": "Close",
"column.account.default.screenName": "Full Name",
"column.account.default.status": "Status",
"column.acquisition.default.acquisitionReferenceNumber": "Reference number",
"column.acquisition.default.acquisitionSource": "Acquisition source",
"column.acquisition.default.updatedAt": "Updated",
"column.all.default.docName": "Summary",
"column.all.default.docNumber": "Record",
"column.all.default.docType": "Type",
"column.all.default.updatedAt": "Updated",
"column.audit.default.updatedAt": "Updated",
"column.audit.default.updatedBy": "By",
"column.authority.default.docName": "Item",
"column.authority.default.docType": "Type",
"column.authority.default.updatedAt": "Updated",
"column.authority.default.vocabulary": "Vocabulary",
"column.authRole.default.displayName": "Name",
"column.batch.default.name": "Name",
"column.chronology.default.termDisplayName": "Display name",
"column.chronology.default.termStatus": "Term status",
"column.chronology.default.vocabulary": "Vocabulary",
"column.chronology.search.updatedAt": "Updated",
"column.citation.default.termDisplayName": "Display name",
"column.citation.default.termStatus": "Term status",
"column.citation.default.vocabulary": "Vocabulary",
"column.citation.search.updatedAt": "Updated",
"column.collectionobject.default.objectNumber": "Identification number",
"column.collectionobject.default.title": "Title",
"column.collectionobject.default.updatedAt": "Updated",
"column.collectionobject.narrow.objectNumber": "ID",
"column.collectionobject.narrow.title": "Title",
"column.collectionobject.narrow.updatedAt": "Updated",
"column.concept.default.termDisplayName": "Display name",
"column.concept.default.termStatus": "Term status",
"column.concept.default.vocabulary": "Vocabulary",
"column.concept.search.updatedAt": "Updated",
"column.conditioncheck.default.condition": "Condition",
"column.conditioncheck.default.conditionCheckRefNumber": "Reference number",
"column.conditioncheck.default.updatedAt": "Updated",
"column.conservation.default.conservationNumber": "Reference number",
"column.conservation.default.status": "Status",
"column.conservation.default.updatedAt": "Updated",
"column.exhibition.default.exhibitionNumber": "Exhibition number",
"column.exhibition.default.title": "Title",
"column.exhibition.default.updatedAt": "Updated",
"column.exhibition.default.updatedAt": "Updated",
"column.group.default.owner": "Owner",
"column.group.default.title": "Title",
"column.group.default.updatedAt": "Updated",
"column.insurance.default.insuranceIndemnityReferenceNumber": "Reference number",
"column.insurance.default.insurerIndemnifier": "Insurer/indemnifier",
"column.insurance.default.updatedAt": "Updated",
"column.intake.default.currentOwner": "Current owner",
"column.intake.default.entryNumber": "Entry number",
"column.intake.default.updatedAt": "Updated",
"column.iterationreport.default.iterationIdentificationNumber": "Identification number",
"column.iterationreport.default.updatedAt": "Updated",
"column.loanin.default.lender": "Lender",
"column.loanin.default.loanInNumber": "Loan in number",
"column.loanin.default.updatedAt": "Updated",
"column.loanout.default.borrower": "Borrower",
"column.loanout.default.loanOutNumber": "Loan out number",
"column.loanout.default.updatedAt": "Updated",
"column.location.default.termDisplayName": "Display name",
"column.location.default.termStatus": "Term status",
"column.location.default.vocabulary": "Vocabulary",
"column.location.search.updatedAt": "Updated",
"column.media.default.blobCsid": "Thumbnail",
"column.media.default.identificationNumber": "Identification number",
"column.media.default.title": "Title",
"column.media.default.updatedAt": "Updated",
"column.movement.default.currentLocation": "Current location",
"column.movement.default.locationDate": "Location date",
"column.movement.default.movementReferenceNumber": "Reference number",
"column.movement.default.updatedAt": "Updated",
"column.object.default.docName": "Summary",
"column.object.default.docNumber": "Record",
"column.object.default.docType": "Type",
"column.object.default.updatedAt": "Updated",
"column.object.search.updatedAt": "Updated",
"column.objectexit.default.currentOwner": "Current owner",
"column.objectexit.default.exitNumber": "Exit number",
"column.objectexit.default.updatedAt": "Updated",
"column.organization.default.termDisplayName": "Display name",
"column.organization.default.termStatus": "Term status",
"column.organization.default.vocabulary": "Vocabulary",
"column.organization.search.updatedAt": "Updated",
"column.person.default.foreName": "Forename",
"column.person.default.surName": "Surname",
"column.person.default.termDisplayName": "Display name",
"column.person.default.vocabulary": "Vocabulary",
"column.place.default.termDisplayName": "Display name",
"column.place.default.termStatus": "Term status",
"column.place.default.vocabulary": "Vocabulary",
"column.place.search.updatedAt": "Updated",
"column.procedure.default.docName": "Summary",
"column.procedure.default.docNumber": "Record",
"column.procedure.default.docType": "Type",
"column.procedure.default.updatedAt": "Updated",
"column.refs.default.docName": "Summary",
"column.refs.default.docNumber": "Record",
"column.refs.default.docType": "Type",
"column.refs.default.sourceField": "Field",
"column.refs.narrow.docName": "Summary",
"column.refs.narrow.docNumber": "Record",
"column.refs.narrow.docType": "Type",
"column.refs.narrow.sourceField": "Field",
"column.report.default.name": "Name",
"column.terms.itemDisplayName": "Term",
"column.terms.sourceField": "Field",
"column.terms.type": "Type",
"column.terms.vocabulary": "Vocabulary",
"column.transport.default.transporter": "Transporter",
"column.transport.default.transportReferenceNumber": "Transport reference number",
"column.transport.default.updatedAt": "Updated",
"column.uoc.default.authorizedBy": "Authorized by",
"column.uoc.default.referenceNumber": "Reference number",
"column.uoc.default.title": "Title",
"column.valuation.default.updatedAt": "Updated",
"column.valuation.default.valuationcontrolRefNumber": "Reference number",
"column.valuation.default.valueType": "Type",
"column.vocabulary.default.displayName": "Name",
"column.work.default.termDisplayName": "Display name",
"column.work.default.termStatus": "Term status",
"column.work.default.vocabulary": "Vocabulary",
"column.work.search.updatedAt": "Updated",
// The message shown in the confirm delete modal when the record to be deleted has broader or narrower relations.
"confirmRecordDeleteModal.hasHierarchy": "{title} cannot be deleted because it belongs to a hierarchy. To delete this record, first remove its broader and narrower records.",
// The message shown in the confirm delete modal when deletion of records with broader relations is allowed, but the record to be deleted has narrower relations.
"confirmRecordDeleteModal.hasNarrowerHierarchy": "{title} cannot be deleted because it is a broader record in a hierarchy. To delete this record, first remove its narrower records.",
// The message shown in the confirm delete modal when the record to be deleted is related to other records.
"confirmRecordDeleteModal.hasRelations": "This record is related to other records. Deleting this record will cause those relationships to be lost.",
// The message shown in the confirm delete modal when the record to be deleted is a role that is used by user accounts.
"confirmRecordDeleteModal.hasRoleUses": "{title} cannot be deleted because it is associated with user accounts.",
// The message shown in the confirm delete modal when the record to be deleted is an authority item that is used by other records.
"confirmRecordDeleteModal.hasUses": "{title} cannot be deleted because it is used by other records.",
// The prompt shown to confirm deletion of a record.
"confirmRecordDeleteModal.prompt": "Delete {title}?",
// Title of the modal shown to confirm deletion of a record.
"confirmRecordDeleteModal.title": "Delete {recordName}",
// Label of the cancel button in the confirm navigation modal.
"confirmRecordNavigationModal.cancel": "Don't leave",
// The prompt shown to confirm navigation away from a record that has unsaved changes.
"confirmRecordNavigationModal.prompt": "You're about to leave a record that has unsaved changes.",
// Label of the revert button in the confirm navigation modal.
"confirmRecordNavigationModal.revert": "Revert and continue",
// Label of the save button in the confirm navigation modal.
"confirmRecordNavigationModal.save": "Save and continue",
// Title of the modal shown to confirm navigation away from a record that has unsaved changes.
"confirmRecordNavigationModal.title": "Leave Record?",
// The prompt shown to confirm unrelating a record.
"confirmRecordUnrelateModal.prompt": "Unrelate {title} from the primary record?",
// The prompt shown to confirm unrelating multiple selected records.
"confirmRecordUnrelateModal.promptMultiple": "Unrelate {recordCount, plural, one {the selected record} other {# selected records}} from the primary record?",
// Title of the modal shown to confirm unrelating a record.
"confirmRecordUnrelateModal.title": "Unrelate {recordName}",
// The message displayed in the unrelate modal when unrelating is in progress.
"confirmRecordUnrelateModal.unrelating": "Unrelating...",
"contentViewer.error": "Preview not available",
"contentViewer.pending": "File preview",
"contentViewer.previewTitle": "File preview",
// Label of the create button.
"createButton.label": "Create new",
"createPage.authority": "Authorities",
"createPage.object": "Objects",
"createPage.procedure": "Procedures",
"createPage.title": "Create New",
// Title of the recent records panel on the dashboard page.
"dashboardPage.recentPanelTitle": "Records Updated in Last 7 Days",
// Title of the dashboard page.
"dashboardPage.title": "My CollectionSpace",
// The value of a datetime field.
"dateTimeInputContainer.value": "{date} {time}",
// Label of the delete button.
"deleteButton.label": "Delete",
// Label of the deprecate button.
"deprecateButton.label": "Deactivate",
"errorPage.ERR_INVALID_CSID": "\"{csid}\" is not a valid CSID.",
"errorPage.ERR_INVALID_RELATED_TYPE": "The record type \"{recordType}\" does not have a related type \"{relatedRecordType}\".",
"errorPage.ERR_MISSING_VOCABULARY": "A vocabulary must be specified for the authority record type \"{recordType}\".",
"errorPage.ERR_NOT_ALLOWED": "You're not allowed to view this type of record.",
"errorPage.ERR_NOT_FOUND": "The record you're looking for doesn't seem to exist.",
"errorPage.ERR_UNKNOWN_RECORD_TYPE": "There is no record type named \"{recordType}\".",
"errorPage.ERR_UNKNOWN_SUBRESOURCE": "There is no subresource named \"{subresource}\".",
"errorPage.ERR_UNKNOWN_VOCABULARY": "There is no vocabulary named \"{vocabulary}\" for the record type \"{recordType}\".",
"errorPage.error": "Error code: {code}",
"errorPage.title": "Page Not Found",
// Notification message shown when an export fails.
"export.error": "Error generating export: {error}",
// Label of the export button.
"exportButton.label": "Export…",
// Prompt message in the field editor for exports.
"exportFieldEditor.prompt": "Select fields to include.",
// Label of the cancel button in the export modal.
"exportModal.cancel": "Cancel",
// Label of the export button in the export modal.
"exportModal.export": "Export",
"exportModal.label": "Export",
"exportModal.title": "Export as CSV",
// Message displayed when an export invocation fails.
"exportViewerPage.error": "Error generating export: {error}",
// Message displayed when a export is loading.
"exportViewerPage.loading": "Generating export…",
"field.account.role.name": "Roles",
// Message to display when the email is invalid on the user account form.
"field.accounts_common.email.errorInvalidEmail": "Email is not a valid address. Correct the value {value}.",
"field.accounts_common.email.name": "Email address",
// Message to display when the password confirmation does not match the password on a user account record.
"field.accounts_common.errorNotConfirmed": "Password and confirm password must be identical.",
// Message to display when the password is invalid on the user account form.
"field.accounts_common.password.errorInvalidPassword": "Password must be between 8 and 24 characters.",
"field.accounts_common.password.name": "Password",
"field.accounts_common.passwordConfirmation.name": "Confirm password",
"field.accounts_common.screenName.name": "Full name",
"field.accounts_common.status.name": "Status",
"field.accounts_common.userId.name": "User ID",
"field.acquisitions_common.accessionDateGroup.name": "Accession date",
"field.acquisitions_common.acquisitionAuthorizer.name": "Authorizer",
"field.acquisitions_common.acquisitionAuthorizerDate.fullName": "Authorization date",
"field.acquisitions_common.acquisitionAuthorizerDate.name": "Date",
"field.acquisitions_common.acquisitionDateGroup.name": "Acquisition date",
"field.acquisitions_common.acquisitionFunding.name": "Funding",
"field.acquisitions_common.acquisitionFundingCurrency.fullName": "Funding currency",
"field.acquisitions_common.acquisitionFundingCurrency.name": "Currency",
"field.acquisitions_common.acquisitionFundingSource.fullName": "Funding source",
"field.acquisitions_common.acquisitionFundingSource.name": "Source",
"field.acquisitions_common.acquisitionFundingSourceProvisos.fullName": "Funding source provisos",
"field.acquisitions_common.acquisitionFundingSourceProvisos.name": "Source provisos",
"field.acquisitions_common.acquisitionFundingValue.fullName": "Funding value",
"field.acquisitions_common.acquisitionFundingValue.name": "Value",
"field.acquisitions_common.acquisitionMethod.name": "Acquisition method",
"field.acquisitions_common.acquisitionNote.name": "Note",
"field.acquisitions_common.acquisitionProvisos.name": "Provisos",
"field.acquisitions_common.acquisitionReason.name": "Acquisition reason",
"field.acquisitions_common.acquisitionReferenceNumber.inUse": "The reference number {value} is in use by another record.",
"field.acquisitions_common.acquisitionReferenceNumber.name": "Reference number",
"field.acquisitions_common.acquisitionSource.name": "Acquisition source",
"field.acquisitions_common.approvalDate.fullName": "Approval status date",
"field.acquisitions_common.approvalDate.name": "Date",
"field.acquisitions_common.approvalGroup.approvalGroup.fullName": "Approval group",
"field.acquisitions_common.approvalGroup.approvalGroup.name": "Group",
"field.acquisitions_common.approvalGroup.name": "Approval",
"field.acquisitions_common.approvalIndividual.fullName": "Approval individual",
"field.acquisitions_common.approvalIndividual.name": "Individual",
"field.acquisitions_common.approvalNote.fullName": "Approval note",
"field.acquisitions_common.approvalNote.name": "Note",
"field.acquisitions_common.approvalStatus.fullName": "Approval status",
"field.acquisitions_common.approvalStatus.name": "Status",
"field.acquisitions_common.creditLine.name": "Credit line",
"field.acquisitions_common.fieldCollectionEventName.name": "Field collection event name",
"field.acquisitions_common.groupPurchasePriceCurrency.fullName": "Group purchase price currency",
"field.acquisitions_common.groupPurchasePriceCurrency.name": "Currency",
"field.acquisitions_common.groupPurchasePriceValue.fullName": "Group purchase price value",
"field.acquisitions_common.groupPurchasePriceValue.name": "Value",
"field.acquisitions_common.objectOfferPriceCurrency.fullName": "Object offer price currency",
"field.acquisitions_common.objectOfferPriceCurrency.name": "Currency",
"field.acquisitions_common.objectOfferPriceValue.fullName": "Object offer price value",
"field.acquisitions_common.objectOfferPriceValue.name": "Value",
"field.acquisitions_common.objectPurchaseOfferPriceCurrency.fullName": "Object purchaser offer price currency",
"field.acquisitions_common.objectPurchaseOfferPriceCurrency.name": "Currency",
"field.acquisitions_common.objectPurchaseOfferPriceValue.fullName": "Object purchaser offer price value",
"field.acquisitions_common.objectPurchaseOfferPriceValue.name": "Value",
"field.acquisitions_common.objectPurchasePriceCurrency.fullName": "Object purchase price currency",
"field.acquisitions_common.objectPurchasePriceCurrency.name": "Currency",
"field.acquisitions_common.objectPurchasePriceValue.fullName": "Object purchase price value",
"field.acquisitions_common.objectPurchasePriceValue.name": "Value",
"field.acquisitions_common.originalObjectPurchasePriceCurrency.fullName": "Original object purchase price currency",
"field.acquisitions_common.originalObjectPurchasePriceCurrency.name": "Currency",
"field.acquisitions_common.originalObjectPurchasePriceValue.fullName": "Original object purchase price value",
"field.acquisitions_common.originalObjectPurchasePriceValue.name": "Value",
"field.acquisitions_common.owner.name": "Owner",
"field.acquisitions_common.transferOfTitleNumber.name": "Transfer of title number",
"field.audit_common.changeReason.name": "Change reason",
"field.audit_common.csid.name": "Audit record identifier",
"field.audit_common.eventDate.name": "Updated at",
"field.audit_common.eventType.name": "Audit event type",
"field.audit_common.fieldName.name": "Field",
"field.audit_common.idNumber.fullName": "Audit record id",
"field.audit_common.idNumber.name": "Id",
"field.audit_common.key.name": "Key",
"field.audit_common.newValue.name": "New value",
"field.audit_common.originalValue.name": "Original value",
"field.audit_common.principal.name": "Updated by",
"field.audit_common.resourceCSID.name": "Audited record identifier",
"field.audit_common.resourceType.fullName": "Related record type",
"field.audit_common.resourceType.name": "Record type",
"field.audit_common.saveMessage.name": "Save message",
"field.authrole.description.name": "Description",
"field.authrole.displayName.name": "Name",
"field.authrole.permission.name": "Permissions",
"field.batch.Merge Authority Items.targetCSID.name": "Target record",
"field.batch.UpdateInventoryStatusBatchJob.inventoryStatus.name": "New inventory status",
"field.batch_common.className.name": "Java class",
"field.batch_common.createsNewFocus.name": "Navigate to new record when complete",
"field.batch_common.forDocType.name": "For record type",
"field.batch_common.name.name": "Name",
"field.batch_common.notes.name": "Description",
"field.batch_common.supportsDocList.name": "Record list",
"field.batch_common.supportsGroup.name": "Group",
"field.batch_common.supportsNoContext.name": "All records",
"field.batch_common.supportsSingleDoc.name": "Single record",
"field.blobs_common.length.name": "Size",
"field.blobs_common.length.value": "{value, number} bytes",
"field.blobs_common.mimeType.name": "Type",
"field.blobs_common.name.name": "Name",
"field.chronologies_common.primaryDateRangeStructuredDateGroup.name": "Primary date range",
"field.chronologies_common.chronologyDescription.name": "Chronology description",
"field.chronologies_common.chronologyNote.name": "Chronology note",
"field.chronologies_common.spatialCoverage.name": "Spatial coverage",
"field.chronologies_common.chronologyTermGroup.name": "Term",
"field.chronologies_common.chronologyTermGroupList.required": "At least one term display name is required. Please enter a value.",
"field.chronologies_common.chronologyType.name": "Chronology type",
"field.chronologies_common.historicalStatus.fullName": "Term historical status",
"field.chronologies_common.historicalStatus.name": "Historical status",
"field.chronologies_common.identifierCitation.fullName": "Resource identifier citation",
"field.chronologies_common.identifierCitation.name": "Citation",
"field.chronologies_common.identifierDate.fullName": "Resource identifier date",
"field.chronologies_common.identifierDate.name": "Date",
"field.chronologies_common.identifierGroup.name": "Resource identifier",
"field.chronologies_common.identifierValue.fullName": "Resource identifier value",
"field.chronologies_common.identifierValue.name": "Value",
"field.chronologies_common.altDateCitation.fullName": "Alternative date citation",
"field.chronologies_common.altDateCitation.name": "Citation",
"field.chronologies_common.altDateGroup.name": "Alternative date",
"field.chronologies_common.altDateNote.fullName": "Alternative date note",
"field.chronologies_common.altDateNote.name": "Note",
"field.chronologies_common.altDateSpatialCoverage.fullName": "Alternative date spatial coverage",
"field.chronologies_common.altDateSpatialCoverage.name": "Spatial coverage",
"field.chronologies_common.altDateRangeStructuredDateGroup.fullName": "Alternative date range",
"field.chronologies_common.altDateRangeStructuredDateGroup.name": "Range",
"field.chronologies_common.termDisplayName.fullName": "Term display name",
"field.chronologies_common.termDisplayName.name": "Display name",
"field.chronologies_common.termFlag.fullName": "Term flag",
"field.chronologies_common.termFlag.name": "Flag",
"field.chronologies_common.termLanguage.fullName": "Term language",
"field.chronologies_common.termLanguage.name": "Language",
"field.chronologies_common.termName.fullName": "Term name",
"field.chronologies_common.termName.name": "Name",
"field.chronologies_common.termPrefForLang.fullName": "Term preferred for lang",
"field.chronologies_common.termPrefForLang.name": "Preferred for lang",
"field.chronologies_common.termQualifier.fullName": "Term qualifier",
"field.chronologies_common.termQualifier.name": "Qualifier",
"field.chronologies_common.termSource.fullName": "Term source name",
"field.chronologies_common.termSource.groupName": "Source name",
"field.chronologies_common.termSource.name": "Name",
"field.chronologies_common.termSourceDetail.fullName": "Term source detail",
"field.chronologies_common.termSourceDetail.groupName": "Source detail",
"field.chronologies_common.termSourceDetail.name": "Detail",
"field.chronologies_common.termSourceID.fullName": "Term source ID",
"field.chronologies_common.termSourceID.groupName": "Source ID",
"field.chronologies_common.termSourceID.name": "ID",
"field.chronologies_common.termSourceNote.fullName": "Term source note",
"field.chronologies_common.termSourceNote.groupName": "Source note",
"field.chronologies_common.termSourceNote.name": "Note",
"field.chronologies_common.termStatus.fullName": "Term status",
"field.chronologies_common.termStatus.name": "Status",
"field.chronologies_common.termType.fullName": "Term type",
"field.chronologies_common.termType.name": "Type",
"field.citations_common.agent.fullName": "Agent name",
"field.citations_common.agent.name": "Name",
"field.citations_common.captureDate.fullName": "Resource identifier capture date",
"field.citations_common.captureDate.name": "Capture date",
"field.citations_common.citationAgentInfoGroup.name": "Agent",
"field.citations_common.citationNote.name": "Note",
"field.citations_common.citationPublicationInfoGroup.name": "Publication",
"field.citations_common.citationRecordType.name": "Citation type",
"field.citations_common.citationRelatedTermsGroup.name": "Related term",
"field.citations_common.citationResourceIdentGroup.name": "Resource identifier",
"field.citations_common.citationTermGroup.name": "Term",
"field.citations_common.citationTermGroupList.required": "At least one term display name is required. Please enter a value.",
"field.citations_common.edition.fullName": "Publication edition",
"field.citations_common.edition.name": "Edition",
"field.citations_common.note.fullName": "Agent note",
"field.citations_common.note.name": "Note",
"field.citations_common.pages.fullName": "Publication page(s)",
"field.citations_common.pages.name": "Page(s)",
"field.citations_common.publicationDate.fullName": "Publication date",
"field.citations_common.publicationDate.name": "Date",
"field.citations_common.publicationPlace.fullName": "Publication place",
"field.citations_common.publicationPlace.name": "Place",
"field.citations_common.publisher.name": "Publisher",
"field.citations_common.relatedTerm.fullName": "Related term",
"field.citations_common.relatedTerm.name": "Term",
"field.citations_common.relationType.fullName": "Related term type",
"field.citations_common.relationType.name": "Type",
"field.citations_common.resourceIdent.fullName": "Resource identifier",
"field.citations_common.resourceIdent.name": "Identifier",
"field.citations_common.role.fullName": "Agent role",
"field.citations_common.role.name": "Role",
"field.citations_common.termDisplayName.fullName": "Term display name",
"field.citations_common.termDisplayName.name": "Display name",
"field.citations_common.termFlag.fullName": "Term flag",
"field.citations_common.termFlag.name": "Flag",
"field.citations_common.termFullCitation.fullName": "Term full citation",
"field.citations_common.termFullCitation.name": "Full citation",
"field.citations_common.termIssue.fullName": "Term issue",
"field.citations_common.termIssue.name": "Issue",
"field.citations_common.termLanguage.fullName": "Term language",
"field.citations_common.termLanguage.name": "Language",
"field.citations_common.termName.fullName": "Term name",
"field.citations_common.termName.name": "Name",
"field.citations_common.termPrefForLang.fullName": "Term preferred for lang",
"field.citations_common.termPrefForLang.name": "Preferred for lang",
"field.citations_common.termQualifier.fullName": "Term qualifier",
"field.citations_common.termQualifier.name": "Qualifier",
"field.citations_common.termSectionTitle.fullName": "Term section title",
"field.citations_common.termSectionTitle.name": "Section title",
"field.citations_common.termSource.fullName": "Term source name",
"field.citations_common.termSource.groupName": "Source name",
"field.citations_common.termSource.name": "Name",
"field.citations_common.termSourceDetail.fullName": "Term source detail",
"field.citations_common.termSourceDetail.groupName": "Source detail",
"field.citations_common.termSourceDetail.name": "Detail",
"field.citations_common.termSourceID.fullName": "Term source ID",
"field.citations_common.termSourceID.groupName": "Source ID",
"field.citations_common.termSourceID.name": "ID",
"field.citations_common.termSourceNote.fullName": "Term source note",
"field.citations_common.termSourceNote.groupName": "Source note",
"field.citations_common.termSourceNote.name": "Note",
"field.citations_common.termStatus.fullName": "Term status",
"field.citations_common.termStatus.name": "Status",
"field.citations_common.termSubTitle.fullName": "Term subtitle",
"field.citations_common.termSubTitle.name": "Subtitle",
"field.citations_common.termTitle.fullName": "Term title",
"field.citations_common.termTitle.name": "Title",
"field.citations_common.termType.fullName": "Term type",
"field.citations_common.termType.name": "Type",
"field.citations_common.termVolume.fullName": "Term volume",
"field.citations_common.termVolume.name": "Volume",
"field.citations_common.type.fullName": "Resource identifier type",
"field.citations_common.type.name": "Type",
"field.collectionobjects_annotation.annotationAuthor.fullName": "Annotation author",
"field.collectionobjects_annotation.annotationAuthor.name": "Author",
"field.collectionobjects_annotation.annotationDate.fullName": "Annotation date",
"field.collectionobjects_annotation.annotationDate.name": "Date",
"field.collectionobjects_annotation.annotationGroup.name": "Annotation",
"field.collectionobjects_annotation.annotationNote.fullName": "Annotation note",
"field.collectionobjects_annotation.annotationNote.name": "Note",
"field.collectionobjects_annotation.annotationType.fullName": "Annotation type",
"field.collectionobjects_annotation.annotationType.name": "Type",
"field.collectionobjects_common.age.fullName": "Age value",
"field.collectionobjects_common.age.name": "Value",