function I18N()

in amplify/backend/function/amplifyIdentityBrokerCustomMessage/src/custom.js [10:42]


 function I18N() {
    this.strings = {
        en: {
            EMAIL_GREETING: "Hello",
            EMAIL_MESSAGE: "Thank you for creating an account with us. Please click on the below link to confirm the registration!",
            SMS_MESSAGE: "Click on this link to verify your contact info: ",
            EMAIL_SUBJECT: "Action Required: Verify your contact info.",
            EMAIL_LINK: "Click here"
        },
        fr: {
            EMAIL_GREETING: "Bonjour",
            EMAIL_MESSAGE: "d'avoir créé un compte avec nous. Veuillez cliquer sur le lien ci-dessous pour confirmer l'inscription!",
            SMS_MESSAGE: "Cliquez sur ce lien pour vérifier vos coordonnées: ",
            EMAIL_SUBJECT: "Action Requise: Vérifiez vos coordonnées",
            EMAIL_LINK: "Cliquez ici"
        },
        de: {
            EMAIL_GREETING: "Hallo",
            EMAIL_MESSAGE: "Vielen Dank, dass Sie ein Account bei uns erstellt haben. Bitte klicken Sie auf den unten stehenden Link, um die Registrierung zu bestätigen.",
            SMS_MESSAGE: "Klicken Sie auf den folgenden Link, um Ihre Angaben zu überprüfen: ",
            EMAIL_SUBJECT: "Erforderliche Aktion: Überprüfen Sie Ihre Kontaktinformationen.",
            EMAIL_LINK: "Hier klicken"
        },
        nl: {
            EMAIL_GREETING: "Hallo",
            EMAIL_MESSAGE: "dBedankt voor het aanmaken van een account bij ons. Klik op de onderstaande link om de registratie te bevestigen.",
            SMS_MESSAGE: "Klik op deze link om uw contactgegevens te verifiëren: ",
            EMAIL_SUBJECT: "Actie vereist: Verifieer uw contactgegevens.",
            EMAIL_LINK: "Klik hier"
        },
    };
    this.language = "en" // default language
}