tutorbook
Version:
Web app connecting students with expert mentors and tutors.
151 lines (149 loc) • 4.45 kB
text/typescript
import { defineMessages } from 'react-intl';
export default defineMessages({
switchAccountTitle: {
id: 'form.switch-account.title',
defaultMessage: 'Switch to Personal Account',
},
switchAccountBody: {
id: 'form.switch-account.body',
defaultMessage:
'You must use a personal account to sign-up as a tutor or mentor. Click' +
' on the profile picture in the top-right and select a personal account.',
},
mentorToggle: {
id: 'mentor-form.toggle',
defaultMessage: 'Mentor',
},
tutorToggle: {
id: 'tutor-form.toggle',
defaultMessage: 'Tutor',
},
updateSubmit: {
id: 'form.update-submit',
defaultMessage: 'Update profile',
},
mentorSubmit: {
id: 'mentor-form.submit',
defaultMessage: 'Become a mentor',
},
tutorSubmit: {
id: 'tutor-form.submit',
defaultMessage: 'Become a tutor',
},
mentorHeader: {
id: 'mentor-form.header',
defaultMessage: 'Guide the next generation.',
},
tutorHeader: {
id: 'tutor-form.header',
defaultMessage: 'Support students amidst COVID-19.',
},
mentorDesc: {
id: 'mentor-form.desc',
defaultMessage:
"Help us redefine mentorship. We're connecting high performing " +
'and underserved 9-12 students with experts (like you) to collaborate on ' +
"meaningful projects that you're both passionate about. Complete the " +
'form below to create your profile and sign-up as a mentor.',
},
tutorDesc: {
id: 'tutor-form.desc',
defaultMessage:
'Help us support the millions of K-12 students who no longer have ' +
"individualized instruction due to COVID-19. We're making sure that no " +
'one loses out on education in these difficult times by connecting ' +
'students with free, volunteer tutors like you.',
},
name: {
id: 'form.name',
defaultMessage: 'Your name',
},
email: {
id: 'form.email',
defaultMessage: 'Your email address',
},
phone: {
id: 'form.phone',
defaultMessage: 'Your phone number',
},
photo: {
id: 'form.photo',
defaultMessage: 'Your profile photo',
},
lang: {
id: 'form.lang',
defaultMessage: 'What languages do you speak?',
},
expertise: {
id: 'mentor-form.expertise',
defaultMessage: 'What are your fields of expertise?',
},
expertisePlaceholder: {
id: 'form.expertise-placeholder',
defaultMessage: 'Ex. Computer Science or Music',
},
project: {
id: 'mentor-form.project',
defaultMessage: "What's your background? What projects are you working on?",
},
projectPlaceholder: {
id: 'mentor-form.project-placeholder',
defaultMessage: 'Hint: Copy-and-paste your LinkedIn or Facebook bio',
},
subjects: {
id: 'tutor-form.subjects',
defaultMessage: 'What can you tutor?',
description: 'Label for the subjects-you-can-tutor field.',
},
subjectsPlaceholder: {
id: 'tutor-form.subjects-placeholder',
defaultMessage: 'Ex. Algebra or Chemistry',
},
availability: {
id: 'tutor-form.availability',
defaultMessage: 'When can you tutor?',
description: 'Label for the when-you-can-tutor field.',
},
experience: {
id: 'tutor-form.experience',
defaultMessage: "What's your background? Why are you a good tutor?",
description: 'Label for the education and experience field.',
},
experiencePlaceholder: {
id: 'tutor-form.experience-placeholder',
defaultMessage: 'Hint: Copy-and-paste your LinkedIn or Facebook bio',
},
website: {
id: 'form.website',
defaultMessage: 'Your portfolio website',
description: 'Label for the portfolio website URL field.',
},
linkedin: {
id: 'form.linkedin',
defaultMessage: 'Your LinkedIn profile',
description: 'Label for the LinkedIn profile URL field.',
},
twitter: {
id: 'form.twitter',
defaultMessage: 'Your Twitter profile',
description: 'Label for the Twitter profile URL field.',
},
facebook: {
id: 'form.facebook',
defaultMessage: 'Your Facebook profile',
description: 'Label for the Facebook profile URL field.',
},
instagram: {
id: 'form.instagram',
defaultMessage: 'Your Instagram profile',
description: 'Label for the Instagram profile URL field.',
},
github: {
id: 'form.github',
defaultMessage: 'Your GitHub profile',
},
indiehackers: {
id: 'form.indiehackers',
defaultMessage: 'Your IndieHackers profile',
},
});