Skip to content

Commit

Permalink
Message for each type
Browse files Browse the repository at this point in the history
  • Loading branch information
n8-dev committed Jan 6, 2025
1 parent 45ce3d7 commit 6492fa3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/dist/js/bundle.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion client/lang/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ if (typeof(ss) === 'undefined' || typeof(ss.i18n) === 'undefined') {
"LinkField.LINK_DRAFT_TITLE": "Link has draft changes",
"LinkField.LINK_MODIFIED_LABEL": "Modified",
"LinkField.LINK_MODIFIED_TITLE": "Link has unpublished changes",
"LinkField.SAVE_RECORD_FIRST": "Cannot add link(s) until the record has been saved",
"LinkField.SAVE_RECORD_FIRST": "Cannot add link until the record has been saved",
"LinkField.SAVE_RECORD_FIRST_MULTI": "Cannot add links until the record has been saved",
"LinkField.SAVE_SUCCESS": "Saved link",
"LinkField.SORT_ERROR": "Unable to sort links",
"LinkField.SORT_SUCCESS": "Updated link sort order"
Expand Down
3 changes: 2 additions & 1 deletion client/lang/src/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"LinkField.LINK_DRAFT_TITLE": "Link has draft changes",
"LinkField.LINK_MODIFIED_LABEL": "Modified",
"LinkField.LINK_MODIFIED_TITLE": "Link has unpublished changes",
"LinkField.SAVE_RECORD_FIRST": "Cannot add link(s) until the record has been saved",
"LinkField.SAVE_RECORD_FIRST": "Cannot add link until the record has been saved",
"LinkField.SAVE_RECORD_FIRST_MULTI": "Cannot add links until the record has been saved",
"LinkField.SAVE_SUCCESS": "Saved link",
"LinkField.SORT_ERROR": "Unable to sort links",
"LinkField.SORT_SUCCESS": "Updated link sort order"
Expand Down
4 changes: 3 additions & 1 deletion client/src/components/LinkField/LinkField.js
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,9 @@ const LinkField = ({
const renderPicker = !loadingError && !inHistoryViewer && !saveRecordFirst && (isMulti || linkIDs.length === 0);
const renderModal = !loadingError && !saveRecordFirst && Boolean(editingID);
const loadingErrorText = i18n._t('LinkField.FAILED_TO_LOAD_LINKS', 'Failed to load link(s)');
const saveRecordFirstText = i18n._t('LinkField.SAVE_RECORD_FIRST', 'Cannot add link(s) until the record has been saved');
const saveRecordFirstText = isMulti
? i18n._t('LinkField.SAVE_RECORD_FIRST_MULTI', 'Cannot add links until the record has been saved')
: i18n._t('LinkField.SAVE_RECORD_FIRST', 'Cannot add link until the record has been saved');
const links = renderLinks();

return <LinkFieldContext.Provider value={{
Expand Down

0 comments on commit 6492fa3

Please sign in to comment.