Date: Fri, 6 Sep 2024 19:47:32 +0200
Subject: [PATCH 2/4] Triple dot to ellipsis
Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
---
src/components/ChattyLLM/ChattyLLMInputForm.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/ChattyLLM/ChattyLLMInputForm.vue b/src/components/ChattyLLM/ChattyLLMInputForm.vue
index a83d71e8..9c33964a 100644
--- a/src/components/ChattyLLM/ChattyLLMInputForm.vue
+++ b/src/components/ChattyLLM/ChattyLLMInputForm.vue
@@ -11,7 +11,7 @@
- {{ t('assistant', 'Loading conversations...') }}
+ {{ t('assistant', 'Loading conversations…') }}
{{ t('assistant', 'No conversations yet') }}
From af595cd8032a6733aa5f4a3699581d090feaf5f8 Mon Sep 17 00:00:00 2001
From: rakekniven <2069590+rakekniven@users.noreply.github.com>
Date: Fri, 6 Sep 2024 19:49:15 +0200
Subject: [PATCH 3/4] Triple dot to ellipsis
Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
---
src/components/ChattyLLM/ConversationBox.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/ChattyLLM/ConversationBox.vue b/src/components/ChattyLLM/ConversationBox.vue
index 8a101a12..6c5bcc20 100644
--- a/src/components/ChattyLLM/ConversationBox.vue
+++ b/src/components/ChattyLLM/ConversationBox.vue
@@ -8,7 +8,7 @@
From 2e44beb3e7c9ac125d254e241c38815755cafa34 Mon Sep 17 00:00:00 2001
From: rakekniven <2069590+rakekniven@users.noreply.github.com>
Date: Fri, 6 Sep 2024 19:50:07 +0200
Subject: [PATCH 4/4] Triple dot to ellipsis
Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
---
src/components/ChattyLLM/InputArea.vue | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/components/ChattyLLM/InputArea.vue b/src/components/ChattyLLM/InputArea.vue
index 2b176440..64d73797 100644
--- a/src/components/ChattyLLM/InputArea.vue
+++ b/src/components/ChattyLLM/InputArea.vue
@@ -77,8 +77,8 @@ export default {
data: () => {
return {
- placeholderText: t('assistant', 'Type a message...'),
- thinkingText: t('assistant', 'Thinking...'),
+ placeholderText: t('assistant', 'Type a message…'),
+ thinkingText: t('assistant', 'Thinking…'),
submitBtnAriaText: t('assistant', 'Submit'),
}
},