export const prescriptionVisibilityTranslations = {
  fr: {
    practitionerVisibility: {
      open: 'Visible pour tous les prescripteurs',
      locked: 'Visible uniquement pour moi-même',
      gmd_prescriber: 'Visible uniquement pour le titulaire du DMG',
    },
    pharmacistVisibility: {
      null: 'Le médicament est visible par tous les pharmaciens',
      locked: 'Le médicament n`est pas visible par tous les pharmaciens',
    },
  },
  en: {
    practitionerVisibility: {
      open: 'Visible to all prescribers',
      locked: 'Visible only to myself',
      gmd_prescriber: 'Visible only to the GMD holder',
    },
    pharmacistVisibility: {
      null: 'The medication is visible to all pharmacists',
      locked: 'The medication is not visible to all pharmacists',
    },
  },
  nl: {
    practitionerVisibility: {
      open: 'Zichtbaar voor alle voorschrijvers',
      locked: 'Alleen zichtbaar voor mezelf',
      gmd_prescriber: 'Alleen zichtbaar voor de GMD-houder',
    },
    pharmacistVisibility: {
      null: 'Het geneesmiddel is zichtbaar voor alle apothekers',
      locked: 'Het geneesmiddel is niet zichtbaar voor alle apothekers',
    },
  },
  de: {
    practitionerVisibility: {
      open: 'Sichtbar für alle verschreiber',
      locked: 'Nur für mich sichtbar',
      gmd_prescriber: 'Nur für den GMD-inhaber sichtbar',
    },
    pharmacistVisibility: {
      null: 'Das medikament ist für alle apotheker sichtbar',
      locked: 'Das medikament ist nicht für alle apotheker sichtbar',
    },
  },
};
