def utterances()

in source/services/lex-bot/book_appointment/appointment_helpers.py [0:0]


def utterances(language):
    utterance_values = {
        "English": [
            {"utterance": "I would like to book an appointment"},
            {"utterance": "Book an appointment"},
            {"utterance": "Book a {AppointmentType}"},
        ],
        "French": [
            {"utterance": "Je souhaiterais prendre rendez-vous"},
            {"utterance": "Prendre rendez-vous"},
            {"utterance": "Réserver un {AppointmentType}"},
        ],
        "Italian": [
            {"utterance": "Vorrei fissare un appuntamento"},
            {"utterance": "Fissa un appuntamento"},
            {"utterance": "Prenota un'operazione di {AppointmentType}"},
        ],
        "Spanish": [
            {"utterance": "Querría pedir una cita"},
            {"utterance": "Reservar una cita"},
            {"utterance": "Pedir cita para {AppointmentType}"},
        ],
        "German": [
            {"utterance": "Ich möchte einen Termin buchen."},
            {"utterance": "Einen Termin buchen"},
            {"utterance": "Einen Termin des Typs {AppointmentType} buchen"},
        ],
        "Japanese": [
            {"utterance": "歯医者を予約したい"},
            {"utterance": "歯医者の予約をする"},
            {"utterance": "{AppointmentType}の予約をする"},
        ],
    }
    return utterance_values[language]