From b9db68998138ab4f12ec34da2e6ca74f2c418c70 Mon Sep 17 00:00:00 2001 From: juanatsap Date: Mon, 4 May 2026 15:20:04 +0100 Subject: [PATCH] fix: remove emojis from chat loading phrases --- templates/partials/widgets/chat-widget.html | 56 ++++++++++----------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/templates/partials/widgets/chat-widget.html b/templates/partials/widgets/chat-widget.html index 1a01b25..da68fc5 100644 --- a/templates/partials/widgets/chat-widget.html +++ b/templates/partials/widgets/chat-widget.html @@ -120,35 +120,35 @@ var chatWarmedUp = false; // Fun loading phrases — random per request var chatLoadingPhrases = {{if eq .Lang "es"}}[ - 'Repasando mi currículum… 📄', - 'Recordando mis proyectos… 🧠', - 'Calentando neuronas… ⚡', - 'Preparando mi mejor versión… 💪', - 'Buscando en mis recuerdos… 🔍', - 'Consultando mi experiencia… 💼', - 'Un momento, que me concentro… 🎯', - 'Revisando 21 años de código… ⏳', - 'Encendiendo el cerebro digital… 🤖', - 'Organizando ideas… 💡', - 'Dame un segundo… ☕', - 'Casi listo, paciencia… 🏗️', - 'Activando modo profesional… 👨‍💻', - 'Conectando con mi yo digital… 🔌' + 'Repasando mi curriculum…', + 'Recordando mis proyectos…', + 'Calentando neuronas…', + 'Preparando mi mejor version…', + 'Buscando en mis recuerdos…', + 'Consultando mi experiencia…', + 'Un momento, que me concentro…', + 'Revisando 21 anos de codigo…', + 'Encendiendo el cerebro digital…', + 'Organizando ideas…', + 'Dame un segundo…', + 'Casi listo, paciencia…', + 'Activando modo profesional…', + 'Conectando con mi yo digital…' ]{{else}}[ - 'Reviewing my CV… 📄', - 'Remembering my projects… 🧠', - 'Warming up neurons… ⚡', - 'Preparing my best self… 💪', - 'Searching my memories… 🔍', - 'Consulting my experience… 💼', - 'One moment, focusing… 🎯', - 'Scanning 21 years of code… ⏳', - 'Booting up the digital brain… 🤖', - 'Organizing thoughts… 💡', - 'Give me a second… ☕', - 'Almost there, hang tight… 🏗️', - 'Activating professional mode… 👨‍💻', - 'Connecting to my digital self… 🔌' + 'Reviewing my CV…', + 'Remembering my projects…', + 'Warming up neurons…', + 'Preparing my best self…', + 'Searching my memories…', + 'Consulting my experience…', + 'One moment, focusing…', + 'Scanning 21 years of code…', + 'Booting up the digital brain…', + 'Organizing thoughts…', + 'Give me a second…', + 'Almost there, hang tight…', + 'Activating professional mode…', + 'Connecting to my digital self…' ]{{end}}; function chatLoadingPhrase() { return chatLoadingPhrases[Math.floor(Math.random() * chatLoadingPhrases.length)];