Skip to content
Merged
Changes from 1 commit
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
18 changes: 14 additions & 4 deletions src/components/sections/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,21 @@ const messages = defineMessages({
id: 'footer.copyright',
defaultMessage: 'Copyright © {startYear}–{endYear} CollectionSpace',
},
documentation: {
id: 'footer.documentation',
defaultMessage: 'Access CollectionSpace Documentation',
},
about: {
id: 'footer.about',
defaultMessage: 'About CollectionSpace',
defaultMessage: 'Visit the CollectionSpace Website',
},
feedback: {
id: 'footer.feedback',
defaultMessage: 'Leave Feedback',
defaultMessage: 'Share Feedback with CollectionSpace Program',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This might read better as 'Share feedback with the CollectionSpace Program'.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I checked with Jessi in the task and we change all the wordings to include "the"

},
feedbackUrl: {
id: 'footer.feedbackUrl',
defaultMessage: 'http://www.collectionspace.org/contact',
defaultMessage: 'https://www.collectionspace.org/contact',
},
release: {
id: 'footer.release',
Expand Down Expand Up @@ -241,7 +245,13 @@ export default function Footer(props) {
</li>

<li>
<a href="http://www.collectionspace.org">
<a href="https://collectionspace.atlassian.net/wiki/spaces/CO/overview?mode=global">
<FormattedMessage {...messages.documentation} />
</a>
</li>

<li>
<a href="https://www.collectionspace.org">
<FormattedMessage {...messages.about} />
</a>
</li>
Expand Down