Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions dspace/config/submission-forms.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,7 @@
<input-type>onebox</input-type>
<!-- UMD Customization -->
<hint>
Enter the name(s) of the author(s) of this item. To add
multiple authors, enter one name (last and first)
at a time and then click "Add more".
submission.hint.dc.contributor.author
</hint>
<!-- End UMD Customization -->
<required></required>
Expand Down Expand Up @@ -102,10 +100,7 @@
<label>Contributor(s)</label>
<input-type>onebox</input-type>
<hint>
Enter the name(s) of any other contributors to the item
(e.g. editors, illustrators, narrators, etc.). To add
multiple contributors, enter one name (last and first)
at a time and then click "Add more".
submission.hint.dc.contributor
</hint>
<required></required>
</field>
Expand All @@ -120,11 +115,8 @@
<label>Advisor(s)</label>
<input-type>onebox</input-type>
<hint>
If applicable, enter the name(s) of the advisor(s) who
oversaw the creation of this item. To add multiple
advisors, enter one name (last and first) at a time and
then click "Add more".
</hint>
submission.hint.dc.contributor.advisor
</hint>
<required></required>
</field>
</row>
Expand Down
17 changes: 17 additions & 0 deletions dspace/docs/SubmissionForm.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,23 @@ Fields are listed in the order that they appear on the form.
* Note (4): Dropdown using "common_iso_languages" value-pairs list
* Note (5): In DSpace 6, uses Solr-based auto-suggest

## Form Field Hints

The "hint" attribute for the following fields uses an I18n key instead of
hard-coding the text:

| Schema Field | "hint" I18n Key |
| ---------------------- | -------------------------------------- |
| dc.contributor.author | submission.hint.dc.contributor.author |
| dc.contributor.advisor | submission.hint.dc.contributor.advisor |
| dc.contributor | submission.hint.dc.contributor |

The text for the hints is specified in the “src/assets/i18n/en.json5”
localization file in the Angular front-end.

I18n keys are used for these fields to allow for HTML tags to be used as part of
hint text.

## Value-Pairs Lists

The following value-pair lists were customized in DSpace 6, and seemed
Expand Down