diff --git a/src/components/instance/settings/Chatwoot.vue b/src/components/instance/settings/Chatwoot.vue
index 570949d..f6a86ab 100644
--- a/src/components/instance/settings/Chatwoot.vue
+++ b/src/components/instance/settings/Chatwoot.vue
@@ -86,21 +86,37 @@
/>
+
-
-
-
- {{ $t("chatwoot.signMsg") }}
- {{ $t("chatwoot.signMsgHelp") }}
-
-
-
({
account_id: "",
token: "",
sign_msg: true,
+ sign_delimiter: "\n",
reopen_conversation: true,
conversation_pending: false,
auto_create: undefined,
@@ -222,6 +239,7 @@ export default {
account_id: "",
token: "",
sign_msg: true,
+ sign_delimiter: "\n",
reopen_conversation: true,
conversation_pending: false,
},
@@ -231,6 +249,7 @@ export default {
account_id: "",
token: "",
sign_msg: true,
+ sign_delimiter: "\n",
reopen_conversation: true,
conversation_pending: false,
},
diff --git a/src/i18n/en.js b/src/i18n/en.js
index 941c989..1bad96b 100644
--- a/src/i18n/en.js
+++ b/src/i18n/en.js
@@ -84,6 +84,8 @@ export default {
token: "Account Token",
signMsg: "Sign messages",
signMsgHelp: "Adds the agent name at the first line of the message",
+ signDelimiter: "Signature delimiter",
+ signDelimiterHelp: "Delimiter used to separate the signature from the message (\\n for line break)",
reopenConversation: "Reopen conversation",
reopenConversationHelp: "Reopens the customer's conversation when he starts a new conversation instead of creating a new conversation",
conversationPending: "Start conversation as pending",
diff --git a/src/i18n/pt.js b/src/i18n/pt.js
index 8f15e3a..46347ca 100644
--- a/src/i18n/pt.js
+++ b/src/i18n/pt.js
@@ -84,6 +84,8 @@ export default {
token: "Token da conta",
signMsg: "Assinar mensagens",
signMsgHelp: "Adiciona o nome do atendente na primeira linha da mensagem",
+ signDelimiter: "Separador da assinatura da mensagem",
+ signDelimiterHelp: "Delimitador utilizado para separar a assinatura da mensagem (\\n para quebra de linha)",
reopenConversation: "Reabrir conversa",
reopenConversationHelp: "Reabre a conversa do cliente quando ele inicia uma nova conversa em vez de criar uma nova conversa",
conversationPending: "Iniciar conversa como pendente",