mirror of
https://github.com/EvolutionAPI/evolution-manager.git
synced 2025-07-13 15:14:49 -06:00
127 lines
3.9 KiB
JavaScript
127 lines
3.9 KiB
JavaScript
// src/i18n/en.js
|
|
import { en } from 'vuetify/locale'
|
|
|
|
export default {
|
|
$vuetify: { ...en },
|
|
all: "All",
|
|
close: "Close",
|
|
cancel: "Cancel",
|
|
restart: "Restart",
|
|
restarted: "Restarted",
|
|
refresh: "Refresh",
|
|
disconnect: "Disconnect",
|
|
sure: "Sure?",
|
|
save: "Save",
|
|
step: "Passo {step}",
|
|
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",
|
|
open: "Connected",
|
|
},
|
|
about: {
|
|
title: "About",
|
|
version: "Version",
|
|
},
|
|
contribute: {
|
|
title: "Contribute",
|
|
via: "Contribute via",
|
|
button: "Contribute",
|
|
},
|
|
connection: {
|
|
title: "Configure connection",
|
|
action: "Connect",
|
|
saved: "Connection saved | Connections saved",
|
|
},
|
|
instanceTabs: {
|
|
settings: "Settings",
|
|
message: "Messages",
|
|
profile: "Profile",
|
|
},
|
|
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",
|
|
config: {
|
|
btn: "How to configure Chatwoot?",
|
|
title: "How to configure Chatwoot inbox?",
|
|
fullDoc: "View full documentation",
|
|
steps: {
|
|
"1": "Access settings > Inbox and click on \"Add Inbox\"",
|
|
"2": "Select \"API\" as the inbox type",
|
|
"3": "Fill in the inbox name and webhook. The values should be exactly as follows:",
|
|
"4": "Add agents to the inbox.",
|
|
"5": "Done! Now you can receive messages.",
|
|
}
|
|
}
|
|
},
|
|
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",
|
|
}
|
|
},
|
|
} |