NewsletterCreator / src / i18n / en-US / index.js
index.js
Raw
// This is only for testing purposes, not production ready

export default {
  // Common
  title: 'Title',
  en: 'English',
  de: 'German',
  save: 'Save',
  export: 'Export',

  // IndexPage
  inspiring: 'Inspiring.',
  innovative: 'Innovative.',
  informative: 'Informative.',
  credit: 'An application of the Department for Teaching Development',
  create: 'Create',
  createSubSlogan: 'a new project',
  open: 'Open',
  openSubSlogan: 'an existing project',

  // EditorPage
  errorMessage: 'Check inputs',
  unsavedChangesMessage: 'Unsaved changes.',
  unsavedChangesConfirm: 'Leave anyway',

  // Section Names
  section: {
    preface: 'Preface',
    offer: 'LE.Offer',
    onTheGo: 'LE.OnTheRoad',
    informed: 'LE.GetInvolved',
    connected: 'LE.Network',
    outro: 'Outro'
  },

  // Element Names
  element: {
    title: 'Title Element',
    text: 'Text Element',
    appointment: 'Appointment Element',
    contact: 'Contact Element',
    spacer: 'Spacer Element'
  },

  // NewsletterElements
  titleElement: {
    title: 'Title',
    shortTitle: 'Short Title',
    error1: 'Short title is required',
    error2: 'Short title must be less than 30 characters',
    error3: 'Title is required'
  },
  appointmentElement: {
    dateTime: 'Date and Time DD.MM.YYYY HH:MM',
    duration: 'Duration',
    hours: 'Hours',
    hour: 'Hour',
    minutes: 'Minutes',
    when: 'When',
    where: 'Where',
    who: 'Who',
    notSpecified: 'not specified',
    close: 'Close',
    title: 'Title',
    place: 'Place',
    person: 'Person',
    error1: 'Date and time are required',
    error2: 'Date and time must be in the format DD.MM.YYYY HH:MM',
    error3: 'Title is required',
    error4: 'Place is required',
    error5: 'Person is required'
  },
  contactElement: {
    title: 'Title',
    name: 'Name',
    role: 'Role / Position',
    email: 'Email',
    phone: 'Phone',
    error1: 'Name is required',
    error2: 'Name must be no longer than 30 characters',
    error3: 'Email must have a valid format',
    error4: 'Phone must have a valid format'
  },
  spacerElement: {
    height: 'Height'
  },
  headerElement: {
    title: 'Teaching Development News',
    subtitle: 'Latest from Teaching Development'
  },
  footerElement: {
    credit: 'A newsletter of the Department of Teaching Development',
    unsubscribe: 'Unsubscribe'
  }
  // TODO: Error Messages
}