feat: added the translation for thinking... in the chatbot

This commit is contained in:
Lion Arar 2025-10-08 10:54:50 -04:00
parent 1ce5c35a31
commit 19b2dd934c
3 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,7 @@ export default {
chat_initial_message: chat_initial_message:
"Welcome to your technical assistant.\nPlease provide the Client ID and \na description of the problem.", "Welcome to your technical assistant.\nPlease provide the Client ID and \na description of the problem.",
chat_placeholder: "Enter a Message", chat_placeholder: "Enter a Message",
chat_thinking: "Thinking...",
}, },
employee_list: { employee_list: {
page_header: "Employee Directory", page_header: "Employee Directory",

View File

@ -4,6 +4,7 @@ export default {
chat_initial_message: chat_initial_message:
"Bienvenue à votre assistant technique.\nVeuillez fournir le ID du Client et \nune description du problème.", "Bienvenue à votre assistant technique.\nVeuillez fournir le ID du Client et \nune description du problème.",
chat_placeholder: "Entré un Message", chat_placeholder: "Entré un Message",
chat_thinking: "Réflexion en cours...",
}, },
employee_list: { employee_list: {
page_header: "Répertoire du personnel", page_header: "Répertoire du personnel",

View File

@ -42,7 +42,7 @@ watch(props.messages, async () => {
size="20px" size="20px"
color="primary" color="primary"
/> />
<span class="q-ml-sm text-grey-7">Thinking...</span> <span class="q-ml-sm text-grey-7">{{ $t('chatbot.chat_thinking') }}</span>
</div> </div>
</template> </template>
</q-infinite-scroll> </q-infinite-scroll>