Custom language support 🔄

You can add additional autoresponse parameters: firstAutoResponse and lastAutoResponse (translated into Spanish language or any other) like so:

<script src="https://birdychat.com/js/chat-widget.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
    AdminChatWidget.init({
        widgetId: '1234-567-890', 
        chatTitle: 'Chat with me',
        primaryColor: '#2196f3',
        position: 'right', 
        firstAutoResponse: 'Por favor, deme un momento para responder a su petición.',
        lastAutoResponse: 'Lo siento, no puedo responderle en este momento.'
    });
});
</script>