diff --git a/src/lib/components/FormFeedback.js b/src/lib/components/FormFeedback.js index 301b945d..c71e7c89 100644 --- a/src/lib/components/FormFeedback.js +++ b/src/lib/components/FormFeedback.js @@ -123,7 +123,7 @@ const ACTIONS = { [FILE_IMPORT_FAILED]: { feedback: "negative", message: i18next.t( - "Oops, something went wrong! Importing files from the previous draft version failed. Please try again. If the problem persists, contact user support." + "Oops, something went wrong! Importing files from the previous version failed. Please try again. If the problem persists, contact user support." ), }, }; diff --git a/src/lib/components/Funding/FundingModal.js b/src/lib/components/Funding/FundingModal.js index bc0a9b08..67f9ce41 100644 --- a/src/lib/components/Funding/FundingModal.js +++ b/src/lib/components/Funding/FundingModal.js @@ -79,7 +79,7 @@ const CustomFundingSchema = Yup.object().shape({ }, }), url: Yup.string() - .url(i18next.t("Url must be a valid url.")) + .url(i18next.t("Url must be valid.")) .test({ name: "validateUrlDependencies", message: i18next.t("Url must be set alongside title and number."), diff --git a/src/lib/components/PublishButton/SubmitReviewModal.js b/src/lib/components/PublishButton/SubmitReviewModal.js index a198e92e..3963b889 100644 --- a/src/lib/components/PublishButton/SubmitReviewModal.js +++ b/src/lib/components/PublishButton/SubmitReviewModal.js @@ -17,10 +17,10 @@ import * as Yup from "yup"; export class SubmitReviewModal extends Component { ConfirmSubmitReviewSchema = Yup.object({ acceptAccessToRecord: Yup.string().required( - i18next.t("You must click and accept this.") + i18next.t("You must accept this.") ), acceptAfterPublishRecord: Yup.string().required( - i18next.t("You must click and accept this.") + i18next.t("You must accept this.") ), reviewComment: Yup.string(), });