full translate of settings tab

This commit is contained in:
Gabriel Pastori
2023-12-14 15:48:10 -03:00
parent b75a794ec3
commit 19aff45664
10 changed files with 269 additions and 107 deletions

View File

@@ -11,11 +11,20 @@ export default {
refresh: "Refresh",
disconnect: "Disconnect",
sure: "Sure?",
save: "Save",
instance: "Instance | Instances",
search: "Search",
loading: "Loading",
noInstances: "No instances found",
unknown: "Unknown",
required: "{field} is required",
https: "{field} must start with https://",
httpHttps: "{field} must start with http:// or https://",
enabled: "Enabled",
events: "Events",
version: {
availableFrom: "Available from version {version}",
},
status: {
close: "Disconnected",
connecting: "Connecting",
@@ -43,5 +52,63 @@ export default {
connectPhone: {
title: "Phone not connected",
apiGenericError: "Could not load QR Code, if the error persists, restart the API and try again."
},
options: {
title: "Behavior",
rejectCall: "Reject call",
msgCall: "Rejection message",
groupsIgnore: "Ignore groups",
alwaysOnline: "Always online",
readMessages: "Mark messages as read",
readStatus: "Mark status as seen",
},
webhook: {
byEvents: "Webhook by events",
byEventsHelp: "Adds the event name at the end of the URL (ex: /webhook/event_name )",
},
rabbitmq: {
info: "RabbitMQ is used by the API to queue notifications. It is NOT used to send messages."
},
chatwoot: {
account_id: "Account ID",
token: "Account Token",
signMsg: "Sign messages",
signMsgHelp: "Adds the agent name at the first line of the message",
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",
conversationPendingHelp: "Starts the conversation as pending instead of open",
autoCreate: "Create Inbox",
autoCreateHelp: "Creates the inbox in Chatwoot if it doesn't exist",
},
typebot: {
typebot: "Typebot flow name",
typebotHelp: "The name of the Typebot flow to be used",
keywordFinish: "Finish keyword",
keywordFinishHelp: "Keyword to finish the flow",
expire: "Expiration time (in minutes)",
expireHelp: "Time to end the session if there is no interaction",
delayMessage: "Message typing time",
delayMessageUnit: "in milliseconds",
delayMessageHelp: "Typing simulation time",
unknownMessage: "Unknown message format",
unknownMessageHelp: "Message sent when the message format is not recognized",
listeningFromMe: "Listen to messages sent by me",
listeningFromMeHelp: "Sends the messages sent by you to the Typebot flow",
session: {
title: "Typebot sessions",
btn: "See 0 sessions | See one session | See {count} sessions",
noData: "No sessions found",
headers: {
variable: "Variables",
createdAt: "Started at",
updatedAt: "Last message",
}
},
status: {
opened: "Open",
paused: "Paused",
closed: "Closed",
}
}
}

View File

@@ -11,11 +11,20 @@ export default {
refresh: "Atualizar",
disconnect: "Desconectar",
sure: "Tem certeza?",
save: "Salvar",
instance: "Instância | Instâncias",
search: "Pesquisar",
loading: "Carregando",
noInstances: "Nenhuma instância encontrada",
unknown: "Desconhecido",
required: "{field} é obrigatório",
https: "{field} deve começar com https://",
httpHttps: "{field} deve começar com http:// ou https://",
enabled: "Habilitado",
events: "Eventos",
version: {
availableFrom: "Disponível a partir da versão {version}",
},
status: {
close: "Desconectado",
connecting: "Conectando",
@@ -43,5 +52,63 @@ export default {
connectPhone: {
title: "Telefone não conectado",
apiGenericError: "Não foi possível carregar o QR Code, se o erro persistir, reinicie a API e tente novamente."
},
options: {
title: "Comportamento",
rejectCall: "Rejeitar chamada",
msgCall: "Mensagem de rejeição",
groupsIgnore: "Ignorar grupos",
alwaysOnline: "Sempre online",
readMessages: "Marcar mensagens como lidas",
readStatus: "Marcar status como visto",
},
webhook: {
byEvents: "Webhook por eventos",
byEventsHelp: "Adiciona o nome do evento no final da URL (ex: /webhook/event_name )",
},
rabbitmq: {
info: "O RabbitMQ é utilizado pela API para o enfileiramento das notificações. Ele NÃO é utilizado para o envio de mensagens."
},
chatwoot: {
account_id: "ID da conta",
token: "Token da conta",
signMsg: "Assinar mensagens",
signMsgHelp: "Adiciona o nome do atendente na primeira linha da mensagem",
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",
conversationPendingHelp: "Inicia a conversa como pendente ao invés de aberta",
autoCreate: "Criar Caixa de Entrada",
autoCreateHelp: "Cria a caixa de entrada no Chatwoot caso ela não exista",
},
typebot: {
typebot: "Nome do fluxo do Typebot",
typebotHelp: "O nome do fluxo do Typebot que será utilizado",
keywordFinish: "Palavra-chave de finalização",
keywordFinishHelp: "Palavra-chave para finalizar o fluxo",
expire: "Tempo de expiração (em minutos)",
expireHelp: "Tempo para encerrar a sessão caso não haja interação",
delayMessage: "Tempo de digitação da mensagem",
delayMessageUnit: "em milisegundos",
delayMessageHelp: "Tempo de simulação de digitação",
unknownMessage: "Mensagem formato desconhecido",
unknownMessageHelp: "Mensagem enviada quando o formato da mensagem não é reconhecido",
listeningFromMe: "Ouvir mensagens enviadas por mim",
listeningFromMeHelp: "Envia as mensagens enviadas por você para o fluxo do Typebot",
session: {
title: "Sessões do Typebot",
btn: "Ver 0 sessões | Ver uma sessão | Ver {count} sessões",
noData: "Nenhuma sessão encontrada",
headers: {
variables: "Variáveis",
createdAt: "Iniciada em",
updatedAt: "Última mensagem",
}
},
status: {
opened: "Aberto",
paused: "Pausado",
closed: "Fechado",
}
}
}