diff --git a/crabfit-frontend/public/i18n/en-US/event.json b/crabfit-frontend/public/i18n/en-US/event.json index 08a5df6..569723a 100644 --- a/crabfit-frontend/public/i18n/en-US/event.json +++ b/crabfit-frontend/public/i18n/en-US/event.json @@ -5,6 +5,7 @@ "title": "Click to copy", "copied": "Copied!", "shareinfo": "Copy the link to this page, or share via <1>email.", + "shareinfo_alt": "Click the link above to copy it to your clipboard, or share via <1>email.", "email_subject": "Scheduling {{event_name}}", "email_body": "Visit this link to enter your availabilities:" }, diff --git a/crabfit-frontend/public/i18n/en-US/home.json b/crabfit-frontend/public/i18n/en-US/home.json index 6639efd..a2c7c45 100644 --- a/crabfit-frontend/public/i18n/en-US/home.json +++ b/crabfit-frontend/public/i18n/en-US/home.json @@ -34,10 +34,10 @@ "button": "Create", "errors": { - "no_dates": "You haven't selected any dates!", + "no_dates": "There aren't any dates selected", "same_times": "The start and end times can't be the same", - "no_time": "You don't have any time selected", - "unknown": "An error ocurred while creating the event. Please try again later." + "no_time": "There isn't any time selected", + "unknown": "Something went wrong. Please try again later." } }, "offline": "You can't create a Crab Fit when you don't have an internet connection. Please make sure you're connected.", diff --git a/crabfit-frontend/src/components/Footer/Footer.tsx b/crabfit-frontend/src/components/Footer/Footer.tsx index ab3c515..cbbfcef 100644 --- a/crabfit-frontend/src/components/Footer/Footer.tsx +++ b/crabfit-frontend/src/components/Footer/Footer.tsx @@ -4,12 +4,12 @@ import { useTranslation } from 'react-i18next'; import { Donate } from 'components'; import { Wrapper, Link } from './footerStyle'; -const Footer = () => { +const Footer = (props) => { const [donateMode, setDonateMode] = useState(false); const { t } = useTranslation('common'); return ( -