fix: remove emojis from chat loading phrases

This commit is contained in:
juanatsap
2026-05-04 15:20:04 +01:00
parent 88ecfed5c5
commit b9db689981
+28 -28
View File
@@ -120,35 +120,35 @@ var chatWarmedUp = false;
// Fun loading phrases — random per request // Fun loading phrases — random per request
var chatLoadingPhrases = {{if eq .Lang "es"}}[ var chatLoadingPhrases = {{if eq .Lang "es"}}[
'Repasando mi currículum… 📄', 'Repasando mi curriculum…',
'Recordando mis proyectos… 🧠', 'Recordando mis proyectos…',
'Calentando neuronas…', 'Calentando neuronas…',
'Preparando mi mejor versión… 💪', 'Preparando mi mejor version…',
'Buscando en mis recuerdos… 🔍', 'Buscando en mis recuerdos…',
'Consultando mi experiencia… 💼', 'Consultando mi experiencia…',
'Un momento, que me concentro… 🎯', 'Un momento, que me concentro…',
'Revisando 21 años de código…', 'Revisando 21 anos de codigo…',
'Encendiendo el cerebro digital… 🤖', 'Encendiendo el cerebro digital…',
'Organizando ideas… 💡', 'Organizando ideas…',
'Dame un segundo…', 'Dame un segundo…',
'Casi listo, paciencia… 🏗️', 'Casi listo, paciencia…',
'Activando modo profesional… 👨‍💻', 'Activando modo profesional…',
'Conectando con mi yo digital… 🔌' 'Conectando con mi yo digital…'
]{{else}}[ ]{{else}}[
'Reviewing my CV… 📄', 'Reviewing my CV…',
'Remembering my projects… 🧠', 'Remembering my projects…',
'Warming up neurons…', 'Warming up neurons…',
'Preparing my best self… 💪', 'Preparing my best self…',
'Searching my memories… 🔍', 'Searching my memories…',
'Consulting my experience… 💼', 'Consulting my experience…',
'One moment, focusing… 🎯', 'One moment, focusing…',
'Scanning 21 years of code…', 'Scanning 21 years of code…',
'Booting up the digital brain… 🤖', 'Booting up the digital brain…',
'Organizing thoughts… 💡', 'Organizing thoughts…',
'Give me a second…', 'Give me a second…',
'Almost there, hang tight… 🏗️', 'Almost there, hang tight…',
'Activating professional mode… 👨‍💻', 'Activating professional mode…',
'Connecting to my digital self… 🔌' 'Connecting to my digital self…'
]{{end}}; ]{{end}};
function chatLoadingPhrase() { function chatLoadingPhrase() {
return chatLoadingPhrases[Math.floor(Math.random() * chatLoadingPhrases.length)]; return chatLoadingPhrases[Math.floor(Math.random() * chatLoadingPhrases.length)];